diff --git a/.clang-tidy b/.clang-tidy index caf62ab7f..7687ec11f 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,4 +1,24 @@ -Checks: '-*,readability-braces-around-statements,readability-inconsistent-declaration-parameter-name' +Checks: ' + -*, + readability-*, + performance-*, + bugprone-*, + cppcoreguidelines-*, + llvm-include-order, + + -readability-magic-numbers, + -readability-identifier-length, + -readability-convert-member-functions-to-static, + -readability-uppercase-literal-suffix, + + -bugprone-narrowing-conversions, + -bugprone-easily-swappable-parameters, + -bugprone-signed-char-misuse, + + -cppcoreguidelines-avoid-c-arrays, + -cppcoreguidelines-avoid-magic-numbers, + -cppcoreguidelines-avoid-non-const-global-variables, + ' WarningsAsErrors: '' HeaderFilterRegex: '(src|include)\/.*\.h$' FormatStyle: 'file' diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6ee069aa7..5d35c7006 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -72,6 +72,7 @@ jobs: mv build/x64/${{ matrix.config }}/spaghetti.o2r spaghetti-${{ matrix.config }}/ mv config.yml spaghetti-${{ matrix.config }}/ mv yamls spaghetti-${{ matrix.config }}/ + mv meta spaghetti-${{ matrix.config }}/ Invoke-WebRequest -Uri "https://raw.githubusercontent.com/mdqinc/SDL_GameControllerDB/master/gamecontrollerdb.txt" -OutFile "spaghetti-${{ matrix.config }}/gamecontrollerdb.txt" - name: Upload build if: matrix.config == 'Release' @@ -114,6 +115,7 @@ jobs: mv build-cmake/spaghetti.o2r spaghetti-${{ matrix.config }}/ mv config.yml spaghetti-${{ matrix.config }}/ mv yamls spaghetti-${{ matrix.config }}/ + mv meta spaghetti-${{ matrix.config }}/ wget -O spaghetti-${{ matrix.config }}/gamecontrollerdb.txt https://raw.githubusercontent.com/mdqinc/SDL_GameControllerDB/master/gamecontrollerdb.txt - name: Publish packaged artifacts if: matrix.config == 'Release' @@ -156,6 +158,7 @@ jobs: mv build-cmake/spaghetti.o2r spaghetti-${{ matrix.config }}/ mv config.yml spaghetti-${{ matrix.config }}/ mv yamls spaghetti-${{ matrix.config }}/ + mv meta spaghetti-${{ matrix.config }}/ wget -O spaghetti-${{ matrix.config }}/gamecontrollerdb.txt https://raw.githubusercontent.com/mdqinc/SDL_GameControllerDB/master/gamecontrollerdb.txt - name: Publish packaged artifacts if: matrix.config == 'Release' diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c2012167..ab9c6cc7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -259,6 +259,9 @@ file(GLOB_RECURSE ALL_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "src/port/*.h" "src/port/*.c" "src/port/*.cpp" + "src/mods/*.h" + "src/mods/*.c" + "src/mods/*.cpp" "assets/code/*.c" "courses/*.c" "courses/*.h" @@ -348,6 +351,12 @@ file(DOWNLOAD "https://raw.githubusercontent.com/DLTcollab/sse2neon/refs/heads/m include_directories(${SSE2NEON_DIR}) +#================== SEMVER =================== +set(SEMVER_DIR ${CMAKE_BINARY_DIR}/_deps/semver) +file(DOWNLOAD "https://raw.githubusercontent.com/Neargye/semver/refs/tags/v1.0.0-rc/include/semver.hpp" "${SEMVER_DIR}/semver.hpp") + +include_directories(${SEMVER_DIR}) + #=================== DRLibs =================== FetchContent_Declare( dr_libs @@ -359,6 +368,16 @@ FetchContent_MakeAvailable(dr_libs) #=================== STB =================== include_directories(${STB_DIR}) +#=================== tomlplusplus =================== +include(FetchContent) +FetchContent_Declare( + tomlplusplus + GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git + GIT_TAG v3.4.0 +) +FetchContent_MakeAvailable(tomlplusplus) +target_link_libraries(${PROJECT_NAME} PRIVATE tomlplusplus::tomlplusplus) + #==============================================================================# # Libultraship Integration # #==============================================================================# @@ -660,6 +679,7 @@ add_custom_command( COMMENT "Copying asset yamls..." COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_SOURCE_DIR}/config.yml" "$/config.yml" COMMAND ${CMAKE_COMMAND} -E copy_directory "${CMAKE_SOURCE_DIR}/yamls/" "$/yamls/" + COMMAND ${CMAKE_COMMAND} -E copy_directory "${CMAKE_SOURCE_DIR}/meta/" "$/meta/" ) if(NOT CMAKE_SYSTEM_NAME STREQUAL "NintendoSwitch") @@ -682,7 +702,7 @@ add_custom_target( DEPENDS TorchExternal WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ${TORCH_EXECUTABLE} header -o baserom.us.z64 - COMMAND ${TORCH_EXECUTABLE} o2r baserom.us.z64 + COMMAND ${TORCH_EXECUTABLE} o2r baserom.us.z64 --additional-files meta/mods.toml COMMAND ${TORCH_EXECUTABLE} pack assets spaghetti.o2r o2r COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_SOURCE_DIR}/mk64.o2r" "${CMAKE_BINARY_DIR}/mk64.o2r" COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_SOURCE_DIR}/spaghetti.o2r" "${CMAKE_BINARY_DIR}/spaghetti.o2r" diff --git a/assets/mods.toml b/assets/mods.toml new file mode 100644 index 000000000..b04e850d3 --- /dev/null +++ b/assets/mods.toml @@ -0,0 +1,3 @@ +[mod] +name="extended-assets" +version="1.0.0-alpha1" diff --git a/assets/shaders/metal/default.shader.metal b/assets/shaders/metal/default.shader.metal index 846a68e5f..9a59fb87e 100644 --- a/assets/shaders/metal/default.shader.metal +++ b/assets/shaders/metal/default.shader.metal @@ -273,8 +273,8 @@ fragment float4 fragmentShader(ProjectedVertex in [[stage_in]], constant FrameUn @end @if(o_alpha && o_noise) - float2 coords = in.position.xy * frameUniforms.noiseScale; - texel.w *= round(saturate(random(float3(floor(coords), float(frameUniforms.frameCount))) + texel.w - 0.5)); + float2 coords = screenSpace.xy * noise_scale; + texel.w *= round(saturate(random(float3(floor(coords), noise_frame)) + texel.w - 0.5)); @end @if(o_alpha) @@ -288,4 +288,4 @@ fragment float4 fragmentShader(ProjectedVertex in [[stage_in]], constant FrameUn @else return float4(texel, 1.0); @end -} +} \ No newline at end of file diff --git a/check_type_yamls.py b/check_type_yamls.py new file mode 100644 index 000000000..5ad5edb41 --- /dev/null +++ b/check_type_yamls.py @@ -0,0 +1,42 @@ +import os +import yaml + +def enumerate_yaml_files(directory): + """Recursively enumerate all YAML files in the given directory.""" + for root, dirs, files in os.walk(directory): + for filename in files: + if filename.endswith(".yaml") or filename.endswith(".yml"): + yield os.path.join(root, filename) + +folder_path = "yamls/us" + +def is_models(element): + """Check if the element is a gfx or vtx type.""" + return element.get("type").lower() in ["gfx", "vtx", "mk64:course_vtx", "blob"] + +def is_textures(element): + """Check if the element is a texture type.""" + return element.get("type").lower() == "texture" + +def is_other(element): + """Check if the element is of any other type.""" + return element.get("type").lower() not in ["gfx", "vtx", "texture", "mk64:course_vtx"] + +def check_element_type(directory, fun): + """Check the type of elements in YAML files.""" + for yaml_file in enumerate_yaml_files(directory): + with open(yaml_file, 'r') as file: + try: + data = yaml.safe_load(file) + assert isinstance(data, dict), "YAML file must contain a dictionary" + for key, value in data.items(): + if key == ":config": + continue + if not fun(value): + print(f"Element '{key}' in {yaml_file} does not match the expected type") + except yaml.YAMLError as e: + print(f"Error parsing {yaml_file}: {e}") + +check_element_type(os.path.join(folder_path, "models"), is_models) +check_element_type(os.path.join(folder_path, "textures"), is_textures) +check_element_type(os.path.join(folder_path, "other"), is_other) \ No newline at end of file diff --git a/cmake/packaging.cmake b/cmake/packaging.cmake index 924a97489..08d57f73a 100644 --- a/cmake/packaging.cmake +++ b/cmake/packaging.cmake @@ -71,6 +71,7 @@ endif() execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CPACK_PACKAGE_DIRECTORY}/config.yml" "${CPACK_TEMPORARY_DIRECTORY}/usr/bin/config.yml" COMMAND ${CMAKE_COMMAND} -E copy_directory "${CPACK_PACKAGE_DIRECTORY}/yamls/" "${CPACK_TEMPORARY_DIRECTORY}/usr/bin/yamls/" + COMMAND ${CMAKE_COMMAND} -E copy_directory "${CPACK_PACKAGE_DIRECTORY}/meta/" "${CPACK_TEMPORARY_DIRECTORY}/usr/bin/meta/" COMMAND ${CMAKE_COMMAND} -E env OUTPUT=${CPACK_PACKAGE_FILE_NAME}.appimage diff --git a/config.yml b/config.yml index 8a95052c8..c97adf027 100644 --- a/config.yml +++ b/config.yml @@ -11,19 +11,19 @@ headers: include/assets code: assets/code segments: - - 0x000000 - - 0x000000 - - 0x12AAE0 - - 0x000000 - - 0x000000 - - 0x000000 - - 0x825800 - - 0x000000 - - 0x000000 - - 0x88CD70 - - 0x729A30 - - 0x821D10 - - 0x7FA3C0 - - 0x132B50 - - 0x000000 - - 0x145470 + - 0x000000 # 0x00 + - 0x000000 # 0x01 + - 0x12AAE0 # 0x02 + - 0x000000 # 0x03 + - 0x000000 # 0x04 + - 0x000000 # 0x05 + - 0x825800 # 0x06 + - 0x000000 # 0x07 + - 0x000000 # 0x08 + - 0x88CD70 # 0x09 + - 0x729A30 # 0x0A + - 0x821D10 # 0x0B + - 0x7FA3C0 # 0x0C + - 0x132B50 # 0x0D + - 0x000000 # 0x0E + - 0x145470 # 0x0F diff --git a/courses/all_course_data.h b/courses/all_course_data.h index e8ec62bba..b3e96edaf 100644 --- a/courses/all_course_data.h +++ b/courses/all_course_data.h @@ -3,26 +3,26 @@ #include "mk64.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #endif // ALL_COURSE_DATA_H diff --git a/courses/all_course_model.h b/courses/all_course_model.h index bcf9c41d1..63b92bc0e 100644 --- a/courses/all_course_model.h +++ b/courses/all_course_model.h @@ -10,27 +10,27 @@ * in this file or problems will arise in other parts of the code **/ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #define d_course_big_donut_vertex_count ARRAY_COUNT(d_course_big_donut_vertex) #define d_course_block_fort_vertex_count ARRAY_COUNT(d_course_block_fort_vertex) diff --git a/courses/all_course_packed.h b/courses/all_course_packed.h index 7c02b7c4f..1f202ec0f 100644 --- a/courses/all_course_packed.h +++ b/courses/all_course_packed.h @@ -8,25 +8,25 @@ * incorrect **/ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #endif // ALL_COURSE_PACKED_H diff --git a/courses/banshee_boardwalk/course_offsets.c b/courses/banshee_boardwalk/course_offsets.c index 3ccec5dd7..eb8d4223f 100644 --- a/courses/banshee_boardwalk/course_offsets.c +++ b/courses/banshee_boardwalk/course_offsets.c @@ -6,7 +6,7 @@ #include #endif #include "course_offsets.h" -#include +#include #include const Gfx* banshee_boardwalk_dls[] = { diff --git a/courses/block_fort/course_offsets.c b/courses/block_fort/course_offsets.c index 03416690a..6e81477ea 100644 --- a/courses/block_fort/course_offsets.c +++ b/courses/block_fort/course_offsets.c @@ -1,3 +1,3 @@ #include #include "course_offsets.h" -#include +#include diff --git a/courses/bowsers_castle/course_offsets.c b/courses/bowsers_castle/course_offsets.c index 1565c754c..d1d308d93 100644 --- a/courses/bowsers_castle/course_offsets.c +++ b/courses/bowsers_castle/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include const Gfx* bowsers_castle_dls[] = { d_course_bowsers_castle_dl_0, d_course_bowsers_castle_dl_230, d_course_bowsers_castle_dl_110, diff --git a/courses/choco_mountain/course_offsets.c b/courses/choco_mountain/course_offsets.c index 99babf668..736f67384 100644 --- a/courses/choco_mountain/course_offsets.c +++ b/courses/choco_mountain/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include 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/dks_jungle_parkway/course_offsets.c b/courses/dks_jungle_parkway/course_offsets.c index 587df1c59..3623d9fce 100644 --- a/courses/dks_jungle_parkway/course_offsets.c +++ b/courses/dks_jungle_parkway/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include const Gfx* d_course_dks_jungle_parkway_unknown_dl_list[] = { d_course_dks_jungle_parkway_dl_20, d_course_dks_jungle_parkway_dl_210, d_course_dks_jungle_parkway_dl_180, diff --git a/courses/frappe_snowland/course_offsets.c b/courses/frappe_snowland/course_offsets.c index f832eb03e..f12173e39 100644 --- a/courses/frappe_snowland/course_offsets.c +++ b/courses/frappe_snowland/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include const Gfx* d_course_frappe_snowland_dl_list[] = { d_course_frappe_snowland_dl_0, d_course_frappe_snowland_dl_1B8, d_course_frappe_snowland_dl_C8, diff --git a/courses/kalimari_desert/course_offsets.c b/courses/kalimari_desert/course_offsets.c index 2f7f876bd..5f77668db 100644 --- a/courses/kalimari_desert/course_offsets.c +++ b/courses/kalimari_desert/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include 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/koopa_troopa_beach/course_offsets.c b/courses/koopa_troopa_beach/course_offsets.c index 50ab4c90c..cb7e555c6 100644 --- a/courses/koopa_troopa_beach/course_offsets.c +++ b/courses/koopa_troopa_beach/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include #include "animation.h" Gfx* d_course_koopa_troopa_beach_dl_list1[] = { diff --git a/courses/luigi_raceway/course_offsets.c b/courses/luigi_raceway/course_offsets.c index b740bcccd..33ef33cad 100644 --- a/courses/luigi_raceway/course_offsets.c +++ b/courses/luigi_raceway/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include 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/mario_raceway/course_offsets.c b/courses/mario_raceway/course_offsets.c index cc81a4dc9..8620c792d 100644 --- a/courses/mario_raceway/course_offsets.c +++ b/courses/mario_raceway/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include #ifndef TARGET_N64 const char* mario_raceway_dls[] = { diff --git a/courses/moo_moo_farm/course_offsets.c b/courses/moo_moo_farm/course_offsets.c index 32f40dfda..b04d53e49 100644 --- a/courses/moo_moo_farm/course_offsets.c +++ b/courses/moo_moo_farm/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include 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/rainbow_road/course_offsets.c b/courses/rainbow_road/course_offsets.c index 579c5fef1..f1ea210e4 100644 --- a/courses/rainbow_road/course_offsets.c +++ b/courses/rainbow_road/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include Gfx* rainbow_road_dls[] = { d_course_rainbow_road_dl_D8, d_course_rainbow_road_dl_210, d_course_rainbow_road_dl_178, diff --git a/courses/royal_raceway/course_offsets.c b/courses/royal_raceway/course_offsets.c index 108ee5825..f7d18b2c2 100644 --- a/courses/royal_raceway/course_offsets.c +++ b/courses/royal_raceway/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include 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/sherbet_land/course_offsets.c b/courses/sherbet_land/course_offsets.c index b81dba828..cb1e5f1db 100644 --- a/courses/sherbet_land/course_offsets.c +++ b/courses/sherbet_land/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include #include "animation.h" const Gfx* sherbet_land_dls[] = { diff --git a/courses/test_course/model.c b/courses/test_course/model.c index 61405fff1..286c7dfd0 100644 --- a/courses/test_course/model.c +++ b/courses/test_course/model.c @@ -1,6 +1,6 @@ #include #include -#include "assets/other_textures.h" +#include "assets/textures/other_textures.h" Lights1 mario_f3dlite_material_009_lights = gdSPDefLights1( 0x0, 0x0, 0x0, diff --git a/courses/toads_turnpike/course_offsets.c b/courses/toads_turnpike/course_offsets.c index 885d06bed..e91387986 100644 --- a/courses/toads_turnpike/course_offsets.c +++ b/courses/toads_turnpike/course_offsets.c @@ -1,7 +1,7 @@ #include -#include +#include #include "course_offsets.h" -#include +#include Gfx* d_course_toads_turnpike_dl_list[] = { d_course_toads_turnpike_dl_80, d_course_toads_turnpike_dl_1F8, d_course_toads_turnpike_dl_158, diff --git a/courses/wario_stadium/course_offsets.c b/courses/wario_stadium/course_offsets.c index 3111bcba9..bd9a5a47d 100644 --- a/courses/wario_stadium/course_offsets.c +++ b/courses/wario_stadium/course_offsets.c @@ -1,6 +1,6 @@ #include #include "course_offsets.h" -#include +#include const Gfx* wario_stadium_dls[] = { d_course_wario_stadium_dl_0, d_course_wario_stadium_dl_158, d_course_wario_stadium_dl_B8, diff --git a/courses/yoshi_valley/course_offsets.c b/courses/yoshi_valley/course_offsets.c index b6b229ad3..d505f5eef 100644 --- a/courses/yoshi_valley/course_offsets.c +++ b/courses/yoshi_valley/course_offsets.c @@ -1,7 +1,7 @@ #include #include "course_offsets.h" -#include -#include +#include +#include #ifdef TARGET_N64 extern u8 gTexture66EBF0[]; diff --git a/docs/migrations.md b/docs/migrations.md new file mode 100644 index 000000000..b3e1385b4 --- /dev/null +++ b/docs/migrations.md @@ -0,0 +1,186 @@ +# Migration: Beta to v1.0 + +This guide explains how to migrate your existing resource packs and mods from the **Beta version** to the **future first stable release (v1.0)** of SpaghettiKart. + +## Overview + +With the v1.0 release approaching, the YAML structure and resource paths have been reorganized to be more logical and maintainable. If you have existing mods or texture packs created for the Beta version, you will need to update them to work with v1.0 and later versions. + +## Migration Script + +A Python migration script ([`migration.py`](https://gist.github.com/coco875/5865b6a8e480990e4f75752206e9c728)) is provided at the root of the repository to help automate the migration process. You can customize the `folder` variable to point to your mod folder. + +### Usage + +1. Download the [migration.py](https://gist.github.com/coco875/5865b6a8e480990e4f75752206e9c728) script +2. Edit `migration.py` and set the `folder` variable to your mod folder name +3. Run the script: +```bash +python migration.py +``` +4. The migrated mod will be created in a new folder with `_Migrated` suffix + +### Generated Files + +The migration script will automatically generate a `mods.toml` file at the root of your migrated mod. This file is required for SpaghettiKart to properly recognize and load your mod. See [mods.toml documentation](mods-toml.md) for more details about this file. + +## Path Changes + +### Textures + +The main change is that textures are now organized into a `textures/` subfolder with proper categorization. + +#### Track Textures + +| Old Path | New Path | +|----------|----------| +| `banshee_boardwalk_data/` | `textures/tracks/banshee_boardwalk/banshee_boardwalk_data/` | +| `bowsers_castle_data/` | `textures/tracks/bowsers_castle/bowsers_castle_data/` | +| `choco_mountain_data/` | `textures/tracks/choco_mountain/choco_mountain_data/` | +| `dks_jungle_parkway_data/` | `textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/` | +| `frappe_snowland_data/` | `textures/tracks/frappe_snowland/frappe_snowland_data/` | +| `kalimari_desert_data/` | `textures/tracks/kalimari_desert/kalimari_desert_data/` | +| `koopa_troopa_beach_data/` | `textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/` | +| `luigi_raceway_data/` | `textures/tracks/luigi_raceway/luigi_raceway_data/` | +| `mario_raceway_data/` | `textures/tracks/mario_raceway/mario_raceway_data/` | +| `moo_moo_farm_data/` | `textures/tracks/moo_moo_farm/moo_moo_farm_data/` | +| `rainbow_road_data/` | `textures/tracks/rainbow_road/rainbow_road_data/` | +| `royal_raceway_data/` | `textures/tracks/royal_raceway/royal_raceway_data/` | +| `sherbet_land_data/` | `textures/tracks/sherbet_land/sherbet_land_data/` | +| `toads_turnpike_data/` | `textures/tracks/toads_turnpike/toads_turnpike_data/` | +| `wario_stadium_data/` | `textures/tracks/wario_stadium/wario_stadium_data/` | +| `yoshis_valley_data/` | `textures/tracks/yoshis_valley/yoshis_valley_data/` | + +#### Kart Textures + +| Old Path | New Path | +|----------|----------| +| `bowser_kart/` | `textures/karts/bowser_kart/` | +| `donkeykong_kart/` | `textures/karts/donkeykong_kart/` | +| `luigi_kart/` | `textures/karts/luigi_kart/` | +| `mario_kart/` | `textures/karts/mario_kart/` | +| `peach_kart/` | `textures/karts/peach_kart/` | +| `toad_kart/` | `textures/karts/toad_kart/` | +| `wario_kart/` | `textures/karts/wario_kart/` | +| `yoshi_kart/` | `textures/karts/yoshi_kart/` | + +#### Other Textures + +| Old Path | New Path | +|----------|----------| +| `boo_frames/` | `textures/boo_frames/` | +| `ceremony_data/` | `textures/ceremony_data/` | +| `common_data/` | `textures/common_data/` | +| `other_textures/` | `textures/other_textures/` | +| `player_selection/` | `textures/player_selection/` | +| `startup_logo/` | `textures/startup_logo/` | +| `texture_data_2/` | `textures/texture_data_2/` | +| `texture_tkmk00/` | `textures/texture_tkmk00/` | + +## Kart Frame Textures + +Kart textures have been split into separate wheel textures. Each kart frame now has 4 associated wheel textures. That makes them possible to spin. + +### Old Structure +``` +mario_kart_frame001.png +``` + +### New Structure +``` +mario_kart_frame001_wheel0.png +mario_kart_frame001_wheel1.png +mario_kart_frame001_wheel2.png +mario_kart_frame001_wheel3.png +``` + +This applies to all 289 frames (frame000 to frame288) for each kart: +- `bowser_kart` +- `donkeykong_kart` +- `luigi_kart` +- `mario_kart` +- `peach_kart` +- `toad_kart` +- `wario_kart` +- `yoshi_kart` + +The migration script automatically duplicates your original kart frame texture to all 4 wheel variants. + +## New Folder Structure + +The new YAML and resource structure is organized as follows: + +``` +yamls/us/ +├── models/ +│ ├── ceremony_data.yml +│ ├── common_data.yml +│ ├── data_800E8700.yml +│ ├── data_segment2.yml +│ ├── startup_logo.yml +│ └── tracks/ +│ ├── banshee_boardwalk/ +│ ├── big_donut/ +│ ├── block_fort/ +│ ├── bowsers_castle/ +│ ├── choco_mountain/ +│ └── ... +├── other/ +│ ├── ceremony_data.yml +│ ├── common_data.yml +│ ├── startup_logo.yml +│ └── tracks/ +│ └── ... +├── sound/ +│ ├── banks.yml +│ ├── root.yml +│ ├── samples.yml +│ └── sequences.yml +└── textures/ + ├── boo_frames.yml + ├── ceremony_data.yml + ├── common_data.yml + ├── data_800E45C0.yml + ├── other_textures.yml + ├── player_selection.yml + ├── some_data.yml + ├── startup_logo.yml + ├── texture_data_2.yml + ├── texture_tkmk00.yml + ├── karts/ + │ ├── bowser_kart.yml + │ ├── donkeykong_kart.yml + │ ├── luigi_kart.yml + │ ├── mario_kart.yml + │ ├── peach_kart.yml + │ ├── toad_kart.yml + │ ├── wario_kart.yml + │ └── yoshi_kart.yml + └── tracks/ + ├── banshee_boardwalk/ + ├── bowsers_castle/ + ├── choco_mountain/ + └── ... +``` + +## Manual Migration + +If you prefer to migrate manually: + +1. Create the new folder structure in your mod +2. Move texture files according to the path mapping tables above +3. For kart textures, duplicate each frame texture to the 4 wheel variants +4. Create a `mods.toml` file at the root of your mod (see [mods.toml documentation](mods-toml.md)) +5. Test your mod with the new version of SpaghettiKart + +## Troubleshooting + +- **Textures not loading**: Verify that your paths match exactly with the new structure +- **Missing wheel textures**: Make sure all 4 wheel variants exist for each kart frame +- **Wrong track textures**: Double-check the track name in the path (e.g., `yoshi_valley` vs `yoshis_valley`) + +## See Also + +- [mods.toml File Structure](mods-toml.md) - Required metadata file for mods +- [Texture Pack Guide](textures-pack.md) - How to create texture packs +- [Modding Guide](modding.md) - General modding information diff --git a/docs/modding.md b/docs/modding.md index c20ca831d..492e053b9 100644 --- a/docs/modding.md +++ b/docs/modding.md @@ -1,11 +1,48 @@ # Modding -Modding are really early stages so a lot of features are not implemented yet. We don't use Retro and we want to make it as simple as possible to mod the game (so no weird format or obscure tools). +* Very focused on ease of modding without weird formats or obscure tools. +* Early stages of modding and as such some features are not fully implemented yet +* SpaghettiKart does not use Retro + +## General Structure + +Mods in SpaghettiKart are packaged as `.o2r` or `.zip` archives, or as folders placed in the `mods/` directory. + +``` +mods/ +├── MyTexturePack.o2r +├── CustomTracks.zip +└── MyDevMod/ <- Folder-based mod for development + ├── mods.toml + └── textures/ +``` + +Every mod **must** include a `mods.toml` file at its root. This file contains metadata about the mod (name, version, dependencies). See [mods.toml File Structure](mods-toml.md) for details. + +### Supported Formats + +| Format | Extension | Description | +|--------|-----------|-------------| +| O2R Archive | `.o2r` | Recommended format for distribution | +| ZIP Archive | `.zip` | Standard zip file | +| Folder | - | Useful for development | +| Disabled | `.disabled` | Renamed archives are skipped | + +### Mod Loading Order + +Mods are loaded in dependency order. If mod A depends on mod B, then B will be loaded first. Mods loaded later can override resources from earlier mods. + +## Getting Started + +* [mods.toml File Structure](mods-toml.md) - Required metadata file for all mods +* [Migration Guide](migrations.md) - Migrate existing mods to the new structure + +## Mod Types * Textures Pack * Some texture might not be possible to change yet, but most of them can be changed. * [link](textures-pack.md) * Custom Tracks (CT) - * Custom tracks are reserved for advanced users. We plan to simply the process in the future. + * Custom tracks are reserved for advanced users. We plan to simplify the process in the future. * [link](custom-track.md) * Custom Characters * Custom characters can only replace existing characters for now. We plan to allow to add new characters in the future. diff --git a/docs/mods-toml.md b/docs/mods-toml.md new file mode 100644 index 000000000..e275a5a00 --- /dev/null +++ b/docs/mods-toml.md @@ -0,0 +1,115 @@ +# mods.toml File Structure + +The `mods.toml` file is a metadata file required for all mods and resource packs in SpaghettiKart. It uses the [TOML](https://toml.io/) format and defines important information about your mod, including its name, version, and dependencies. + +## Location + +The `mods.toml` file must be placed at the **root** of your mod archive (`.o2r`, `.zip`) or folder. + +``` +MyMod/ +├── mods.toml <- Required at root level +├── textures/ +│ └── ... +└── ... +``` + +## Basic Structure + +Here's a minimal `mods.toml` file: + +```toml +[mod] +name = "my-awesome-mod" +version = "1.0.0" +``` + +## Complete Structure + +Here's a complete example with all supported fields: + +```toml +[mod] +name = "my-awesome-mod" +version = "1.0.0" + +[dependencies] +spaghettikart-assets = "=1.0.0-alpha1" +another-mod = ">=2.0.0" +``` + +## Fields Reference + +### [mod] Section + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `name` | String | Yes | Unique identifier for your mod. Use lowercase letters, numbers, and hyphens. | +| `version` | String | Yes | Version of your mod following [Semantic Versioning](https://semver.org/) (e.g., `1.0.0`, `1.0.0-alpha1`). | + +### [dependencies] Section + +The `[dependencies]` section is optional and allows you to specify other mods that your mod requires. + +Each dependency is defined as: +```toml +[dependencies] +mod-name = "version-requirement" +``` + +#### Version Requirements + +Version requirements follow semantic versioning ranges: + +| Format | Description | Example | +|--------|-------------|---------| +| `1.0.0` | Exact version | Only version 1.0.0 | +| `>=1.0.0` | Greater than or equal | Version 1.0.0 or higher | +| `>=1.0.0 <2.0.0` | Range | Between 1.0.0 (inclusive) and 2.0.0 (exclusive) | +| `>=1.0.0-alpha1` | With prerelease | Version 1.0.0-alpha1 or higher | +see [Semantic Versioning](https://semver.org/) for more details. + +## Core Dependencies + +SpaghettiKart defines three core packages that are always available: + +- `mk64-assets` - The base game resources (version `1.0.0-alpha1`) (`mk64.o2r`) +- `extended-assets` - SpaghettiKart additional assets (version `1.0.0-alpha1`) (`spaghetti.o2r`) +- `spaghettikart-core` - SpaghettiKart core engine (For verifying that mods support your game version) + +If your mod depends on touching base game assets or SpaghettiKart assets, you should declare a dependency on these packages. For example: + +```toml +[dependencies] +mk64-assets = "=1.0.0-alpha1" +``` + +## Validation + +When SpaghettiKart loads mods, it performs the following validations: + +1. **Missing mods.toml**: A warning is shown if the file is missing. The mod may still load but is considered incompatible. +2. **Cyclic dependencies**: If mod A depends on mod B and mod B depends on mod A, an error is shown. +3. **Missing dependencies**: If a required dependency is not found or has an incompatible version, an error is shown. + +## Load Order + +Mods are automatically sorted based on their dependencies: +- Mods without dependencies are loaded first +- Mods are loaded after their dependencies + +## Best Practices + +1. **Follow semantic versioning**: Use proper version numbers (MAJOR.MINOR.PATCH) +2. **Specify minimal dependencies**: Only declare dependencies you actually need +3. **Use version ranges**: Prefer `=1.0.0` because assets may change between versions + +## Migration Script Support + +When using the migration script (`migrations.py`), a `mods.toml` file can be automatically generated for your migrated mod. See [Migration Guide](migrations.md) for details. + +## See Also + +- [Modding Guide](modding.md) - General modding information +- [Migration Guide](migrations.md) - How to migrate existing mods +- [Texture Pack Guide](textures-pack.md) - Creating texture packs diff --git a/docs/textures-pack.md b/docs/textures-pack.md index bc533080b..2d96ae0fb 100644 --- a/docs/textures-pack.md +++ b/docs/textures-pack.md @@ -1,11 +1,12 @@ # Texture Pack -To replace textures you should only create a zip file with textures to replace at the same path as mk64.o2r. Only png, jpg and bmp files are supported. +To replace textures you should only create a zip file or a folder with textures to replace at the same path as mk64.o2r. Only png, jpg and bmp files are supported. ## Example: -You want to change other_textures/logo_mario_kart_64 then you just need to create a zip file with the following structure: +You want to change textures/other_textures/logo_mario_kart_64 then you just need to create a zip file or folder with the following structure: ``` textures_pack.zip -└── other_textures - └── logo_mario_kart_64.png +└── textures + └── other_textures + └── logo_mario_kart_64.png ``` ## Tools To Help diff --git a/include/assets/banshee_boardwalk_data.h b/include/assets/banshee_boardwalk_data.h deleted file mode 100644 index 55716f809..000000000 --- a/include/assets/banshee_boardwalk_data.h +++ /dev/null @@ -1,327 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_0"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_0[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_38[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_38"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_38[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_38"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_40[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_40"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_68[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_68"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_68[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_68"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_160[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_160"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_210[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_210"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_270[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_270"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_358[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_358"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_408[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_408"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4F0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4F0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_540[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_540"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_620[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_620"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_6D0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_6D0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7C0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7C0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_870[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_870"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_940[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_940"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_9E0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_9E0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_AD0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_AD0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_B80[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_B80"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_C30[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_C30"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_CD0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_CD0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_D80[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_D80"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_E10[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_E10"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_EE0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_EE0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_F50[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_F50"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1000[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1000"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1070[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1070"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1160[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1160"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_11C8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_11C8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_12A8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_12A8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_12E8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_12E8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_13F0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_13F0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1448[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1448"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1520[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1520"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1580[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1580"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1678[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1678"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_16B8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_16B8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_17A0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_17A0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1820[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1820"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_18D8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_18D8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1940[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1940"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1A30[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1A30"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1B00[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1B00"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1BA0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1BA0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1C20[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1C20"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1CC8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1CC8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1D90[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1D90"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1E28[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1E28"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1EA0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1EA0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1F40[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1F40"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2028[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2028"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_20A0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_20A0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2138[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2138"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_21C8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_21C8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_22D8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_22D8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2340[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2340"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2448[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2448"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_24E8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_24E8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2610[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2610"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2650[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2650"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2718[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2718"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2790[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2790"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2868[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2868"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_28A8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_28A8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2980[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2980"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2A18[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2A18"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2AE0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2AE0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2B88[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2B88"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2C30[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2C30"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2CE0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2CE0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2DB0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2DB0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2E20[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2E20"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2EE0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2EE0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2FA0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2FA0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3050[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3050"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3100[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3100"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3200[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3200"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_32B0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_32B0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3390[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3390"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3468[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3468"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_35A0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_35A0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3660[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3660"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3710[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3710"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_37F0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_37F0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3920[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3920"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3980[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3980"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3A20[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3A20"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3AF8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3AF8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3C00[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3C00"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3C40[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3C40"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3CD0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3CD0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3D98[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3D98"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3EB0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3EB0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3EF0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3EF0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3F60[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3F60"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4038[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4038"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4118[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4118"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4188[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4188"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_41F0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_41F0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_42D0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_42D0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_43A8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_43A8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4428[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4428"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4480[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4480"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_unknown_waypoints[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_track_waypoints[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_boo_tlut[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_boo_tlut"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep1[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep1"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep2[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep2"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep3[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep3"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep4[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep4"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep5[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep5"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep6[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep6"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep7[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep7"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep9[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep9"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep10[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep10"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_fish_eyes[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_fish_eyes"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_7650[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_7650"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7650[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7650"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_78C0[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_78C0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_78C0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_78C0"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_7978[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_7978"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7978[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7978"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_7B38[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_7B38"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7B38[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7B38"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_7B78[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_7B78"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7B78[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7B78"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_cheep_cheep[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_cheep_cheep"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_bat_tlut[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_bat_tlut"; - -static const ALIGN_ASSET(2) char gTextureBat1[] = "__OTR__banshee_boardwalk_data/gTextureBat1"; - -static const ALIGN_ASSET(2) char gTextureBat2[] = "__OTR__banshee_boardwalk_data/gTextureBat2"; - -static const ALIGN_ASSET(2) char gTextureBat3[] = "__OTR__banshee_boardwalk_data/gTextureBat3"; - -static const ALIGN_ASSET(2) char gTextureBat4[] = "__OTR__banshee_boardwalk_data/gTextureBat4"; - -static const char* d_course_banshee_boardwalk_bat[] = { - gTextureBat1, - gTextureBat2, - gTextureBat3, - gTextureBat4, -}; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_vtx_9DB8[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_vtx_9DB8"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_vtx_9EF8[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_vtx_9EF8"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_lights_A038[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_lights_A038"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_texture[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_texture"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A850[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A850"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_A850[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_A850"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A900[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A900"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_A900[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_A900"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_A9B0[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_A9B0"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A9B0[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A9B0"; - -static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_gfx_A9C8[] = "__OTR__banshee_boardwalk_data/banshee_boardwalk_data_seg6_gfx_A9C8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A9C8[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A9C8"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_trash_bin[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_trash_bin"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_model_unk[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_model_unk"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_texture2[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_texture2"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_B278[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_B278"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_B308[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_dl_B308"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_item_box_spawns[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_track_sections[] = "__OTR__banshee_boardwalk_data/d_course_banshee_boardwalk_track_sections"; - diff --git a/include/assets/banshee_boardwalk_displaylists.h b/include/assets/banshee_boardwalk_displaylists.h deleted file mode 100644 index f8566e524..000000000 --- a/include/assets/banshee_boardwalk_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dls[] = "__OTR__banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dls"; - diff --git a/include/assets/banshee_boardwalk_vertices.h b/include/assets/banshee_boardwalk_vertices.h deleted file mode 100644 index eafe05e2c..000000000 --- a/include/assets/banshee_boardwalk_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex[] = "__OTR__banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex"; - diff --git a/include/assets/big_donut_data.h b/include/assets/big_donut_data.h deleted file mode 100644 index 0ab0a9860..000000000 --- a/include/assets/big_donut_data.h +++ /dev/null @@ -1,10 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_big_donut_dl[] = "__OTR__big_donut_data/d_course_big_donut_dl"; - -static const ALIGN_ASSET(2) char d_course_big_donut_item_box_spawns[] = "__OTR__big_donut_data/d_course_big_donut_item_box_spawns"; - diff --git a/include/assets/big_donut_displaylists.h b/include/assets/big_donut_displaylists.h deleted file mode 100644 index 3ad0d35b6..000000000 --- a/include/assets/big_donut_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_big_donut_packed_dls[] = "__OTR__big_donut_displaylists/d_course_big_donut_packed_dls"; - diff --git a/include/assets/big_donut_vertices.h b/include/assets/big_donut_vertices.h deleted file mode 100644 index f94b03304..000000000 --- a/include/assets/big_donut_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_big_donut_vertex[] = "__OTR__big_donut_vertices/d_course_big_donut_vertex"; - diff --git a/include/assets/block_fort_data.h b/include/assets/block_fort_data.h deleted file mode 100644 index ce8b82701..000000000 --- a/include/assets/block_fort_data.h +++ /dev/null @@ -1,10 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_block_fort_dl[] = "__OTR__block_fort_data/d_course_block_fort_dl"; - -static const ALIGN_ASSET(2) char d_course_block_fort_item_box_spawns[] = "__OTR__block_fort_data/d_course_block_fort_item_box_spawns"; - diff --git a/include/assets/block_fort_displaylists.h b/include/assets/block_fort_displaylists.h deleted file mode 100644 index d7ebb214e..000000000 --- a/include/assets/block_fort_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_block_fort_packed_dls[] = "__OTR__block_fort_displaylists/d_course_block_fort_packed_dls"; - diff --git a/include/assets/block_fort_vertices.h b/include/assets/block_fort_vertices.h deleted file mode 100644 index 718788cc0..000000000 --- a/include/assets/block_fort_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_block_fort_vertex[] = "__OTR__block_fort_vertices/d_course_block_fort_vertex"; - diff --git a/include/assets/boo_frames.h b/include/assets/boo_frames.h deleted file mode 100644 index 7c0e10cba..000000000 --- a/include/assets/boo_frames.h +++ /dev/null @@ -1,95 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gTextureBoo01[] = "__OTR__boo_frames/gTextureBoo01"; - -static const ALIGN_ASSET(2) char gTextureBoo02[] = "__OTR__boo_frames/gTextureBoo02"; - -static const ALIGN_ASSET(2) char gTextureBoo03[] = "__OTR__boo_frames/gTextureBoo03"; - -static const ALIGN_ASSET(2) char gTextureBoo04[] = "__OTR__boo_frames/gTextureBoo04"; - -static const ALIGN_ASSET(2) char gTextureBoo05[] = "__OTR__boo_frames/gTextureBoo05"; - -static const ALIGN_ASSET(2) char gTextureBoo06[] = "__OTR__boo_frames/gTextureBoo06"; - -static const ALIGN_ASSET(2) char gTextureBoo07[] = "__OTR__boo_frames/gTextureBoo07"; - -static const ALIGN_ASSET(2) char gTextureBoo08[] = "__OTR__boo_frames/gTextureBoo08"; - -static const ALIGN_ASSET(2) char gTextureBoo09[] = "__OTR__boo_frames/gTextureBoo09"; - -static const ALIGN_ASSET(2) char gTextureBoo10[] = "__OTR__boo_frames/gTextureBoo10"; - -static const ALIGN_ASSET(2) char gTextureBoo11[] = "__OTR__boo_frames/gTextureBoo11"; - -static const ALIGN_ASSET(2) char gTextureBoo12[] = "__OTR__boo_frames/gTextureBoo12"; - -static const ALIGN_ASSET(2) char gTextureBoo13[] = "__OTR__boo_frames/gTextureBoo13"; - -static const ALIGN_ASSET(2) char gTextureBoo14[] = "__OTR__boo_frames/gTextureBoo14"; - -static const ALIGN_ASSET(2) char gTextureBoo15[] = "__OTR__boo_frames/gTextureBoo15"; - -static const ALIGN_ASSET(2) char gTextureBoo16[] = "__OTR__boo_frames/gTextureBoo16"; - -static const ALIGN_ASSET(2) char gTextureBoo17[] = "__OTR__boo_frames/gTextureBoo17"; - -static const ALIGN_ASSET(2) char gTextureBoo18[] = "__OTR__boo_frames/gTextureBoo18"; - -static const ALIGN_ASSET(2) char gTextureBoo19[] = "__OTR__boo_frames/gTextureBoo19"; - -static const ALIGN_ASSET(2) char gTextureBoo20[] = "__OTR__boo_frames/gTextureBoo20"; - -static const ALIGN_ASSET(2) char gTextureBoo21[] = "__OTR__boo_frames/gTextureBoo21"; - -static const ALIGN_ASSET(2) char gTextureBoo22[] = "__OTR__boo_frames/gTextureBoo22"; - -static const ALIGN_ASSET(2) char gTextureBoo23[] = "__OTR__boo_frames/gTextureBoo23"; - -static const ALIGN_ASSET(2) char gTextureBoo24[] = "__OTR__boo_frames/gTextureBoo24"; - -static const ALIGN_ASSET(2) char gTextureBoo25[] = "__OTR__boo_frames/gTextureBoo25"; - -static const ALIGN_ASSET(2) char gTextureBoo26[] = "__OTR__boo_frames/gTextureBoo26"; - -static const ALIGN_ASSET(2) char gTextureBoo27[] = "__OTR__boo_frames/gTextureBoo27"; - -static const ALIGN_ASSET(2) char gTextureBoo28[] = "__OTR__boo_frames/gTextureBoo28"; - -static const ALIGN_ASSET(2) char gTextureBoo29[] = "__OTR__boo_frames/gTextureBoo29"; - -static const char* gTextureGhosts[] = { - gTextureBoo01, - gTextureBoo02, - gTextureBoo03, - gTextureBoo04, - gTextureBoo05, - gTextureBoo06, - gTextureBoo07, - gTextureBoo08, - gTextureBoo09, - gTextureBoo10, - gTextureBoo11, - gTextureBoo12, - gTextureBoo13, - gTextureBoo14, - gTextureBoo15, - gTextureBoo16, - gTextureBoo17, - gTextureBoo18, - gTextureBoo19, - gTextureBoo20, - gTextureBoo21, - gTextureBoo22, - gTextureBoo23, - gTextureBoo24, - gTextureBoo25, - gTextureBoo26, - gTextureBoo27, - gTextureBoo28, - gTextureBoo29, -}; - diff --git a/include/assets/bowser_kart.h b/include/assets/bowser_kart.h deleted file mode 100644 index 24e57a3ae..000000000 --- a/include/assets/bowser_kart.h +++ /dev/null @@ -1,4120 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gKartBowser000[] = "__OTR__bowser_kart/bowser_kart_frame000"; - -static const ALIGN_ASSET(2) char gKartBowser001[] = "__OTR__bowser_kart/bowser_kart_frame001"; - -static const ALIGN_ASSET(2) char gKartBowser002[] = "__OTR__bowser_kart/bowser_kart_frame002"; - -static const ALIGN_ASSET(2) char gKartBowser003[] = "__OTR__bowser_kart/bowser_kart_frame003"; - -static const ALIGN_ASSET(2) char gKartBowser004[] = "__OTR__bowser_kart/bowser_kart_frame004"; - -static const ALIGN_ASSET(2) char gKartBowser005[] = "__OTR__bowser_kart/bowser_kart_frame005"; - -static const ALIGN_ASSET(2) char gKartBowser006[] = "__OTR__bowser_kart/bowser_kart_frame006"; - -static const ALIGN_ASSET(2) char gKartBowser007[] = "__OTR__bowser_kart/bowser_kart_frame007"; - -static const ALIGN_ASSET(2) char gKartBowser008[] = "__OTR__bowser_kart/bowser_kart_frame008"; - -static const ALIGN_ASSET(2) char gKartBowser009[] = "__OTR__bowser_kart/bowser_kart_frame009"; - -static const ALIGN_ASSET(2) char gKartBowser010[] = "__OTR__bowser_kart/bowser_kart_frame010"; - -static const ALIGN_ASSET(2) char gKartBowser011[] = "__OTR__bowser_kart/bowser_kart_frame011"; - -static const ALIGN_ASSET(2) char gKartBowser012[] = "__OTR__bowser_kart/bowser_kart_frame012"; - -static const ALIGN_ASSET(2) char gKartBowser013[] = "__OTR__bowser_kart/bowser_kart_frame013"; - -static const ALIGN_ASSET(2) char gKartBowser014[] = "__OTR__bowser_kart/bowser_kart_frame014"; - -static const ALIGN_ASSET(2) char gKartBowser015[] = "__OTR__bowser_kart/bowser_kart_frame015"; - -static const ALIGN_ASSET(2) char gKartBowser016[] = "__OTR__bowser_kart/bowser_kart_frame016"; - -static const ALIGN_ASSET(2) char gKartBowser017[] = "__OTR__bowser_kart/bowser_kart_frame017"; - -static const ALIGN_ASSET(2) char gKartBowser018[] = "__OTR__bowser_kart/bowser_kart_frame018"; - -static const ALIGN_ASSET(2) char gKartBowser019[] = "__OTR__bowser_kart/bowser_kart_frame019"; - -static const ALIGN_ASSET(2) char gKartBowser020[] = "__OTR__bowser_kart/bowser_kart_frame020"; - -static const ALIGN_ASSET(2) char gKartBowser021[] = "__OTR__bowser_kart/bowser_kart_frame021"; - -static const ALIGN_ASSET(2) char gKartBowser022[] = "__OTR__bowser_kart/bowser_kart_frame022"; - -static const ALIGN_ASSET(2) char gKartBowser023[] = "__OTR__bowser_kart/bowser_kart_frame023"; - -static const ALIGN_ASSET(2) char gKartBowser024[] = "__OTR__bowser_kart/bowser_kart_frame024"; - -static const ALIGN_ASSET(2) char gKartBowser025[] = "__OTR__bowser_kart/bowser_kart_frame025"; - -static const ALIGN_ASSET(2) char gKartBowser026[] = "__OTR__bowser_kart/bowser_kart_frame026"; - -static const ALIGN_ASSET(2) char gKartBowser027[] = "__OTR__bowser_kart/bowser_kart_frame027"; - -static const ALIGN_ASSET(2) char gKartBowser028[] = "__OTR__bowser_kart/bowser_kart_frame028"; - -static const ALIGN_ASSET(2) char gKartBowser029[] = "__OTR__bowser_kart/bowser_kart_frame029"; - -static const ALIGN_ASSET(2) char gKartBowser030[] = "__OTR__bowser_kart/bowser_kart_frame030"; - -static const ALIGN_ASSET(2) char gKartBowser031[] = "__OTR__bowser_kart/bowser_kart_frame031"; - -static const ALIGN_ASSET(2) char gKartBowser032[] = "__OTR__bowser_kart/bowser_kart_frame032"; - -static const ALIGN_ASSET(2) char gKartBowser033[] = "__OTR__bowser_kart/bowser_kart_frame033"; - -static const ALIGN_ASSET(2) char gKartBowser034[] = "__OTR__bowser_kart/bowser_kart_frame034"; - -static const ALIGN_ASSET(2) char gKartBowser035[] = "__OTR__bowser_kart/bowser_kart_frame035"; - -static const ALIGN_ASSET(2) char gKartBowser036[] = "__OTR__bowser_kart/bowser_kart_frame036"; - -static const ALIGN_ASSET(2) char gKartBowser037[] = "__OTR__bowser_kart/bowser_kart_frame037"; - -static const ALIGN_ASSET(2) char gKartBowser038[] = "__OTR__bowser_kart/bowser_kart_frame038"; - -static const ALIGN_ASSET(2) char gKartBowser039[] = "__OTR__bowser_kart/bowser_kart_frame039"; - -static const ALIGN_ASSET(2) char gKartBowser040[] = "__OTR__bowser_kart/bowser_kart_frame040"; - -static const ALIGN_ASSET(2) char gKartBowser041[] = "__OTR__bowser_kart/bowser_kart_frame041"; - -static const ALIGN_ASSET(2) char gKartBowser042[] = "__OTR__bowser_kart/bowser_kart_frame042"; - -static const ALIGN_ASSET(2) char gKartBowser043[] = "__OTR__bowser_kart/bowser_kart_frame043"; - -static const ALIGN_ASSET(2) char gKartBowser044[] = "__OTR__bowser_kart/bowser_kart_frame044"; - -static const ALIGN_ASSET(2) char gKartBowser045[] = "__OTR__bowser_kart/bowser_kart_frame045"; - -static const ALIGN_ASSET(2) char gKartBowser046[] = "__OTR__bowser_kart/bowser_kart_frame046"; - -static const ALIGN_ASSET(2) char gKartBowser047[] = "__OTR__bowser_kart/bowser_kart_frame047"; - -static const ALIGN_ASSET(2) char gKartBowser048[] = "__OTR__bowser_kart/bowser_kart_frame048"; - -static const ALIGN_ASSET(2) char gKartBowser049[] = "__OTR__bowser_kart/bowser_kart_frame049"; - -static const ALIGN_ASSET(2) char gKartBowser050[] = "__OTR__bowser_kart/bowser_kart_frame050"; - -static const ALIGN_ASSET(2) char gKartBowser051[] = "__OTR__bowser_kart/bowser_kart_frame051"; - -static const ALIGN_ASSET(2) char gKartBowser052[] = "__OTR__bowser_kart/bowser_kart_frame052"; - -static const ALIGN_ASSET(2) char gKartBowser053[] = "__OTR__bowser_kart/bowser_kart_frame053"; - -static const ALIGN_ASSET(2) char gKartBowser054[] = "__OTR__bowser_kart/bowser_kart_frame054"; - -static const ALIGN_ASSET(2) char gKartBowser055[] = "__OTR__bowser_kart/bowser_kart_frame055"; - -static const ALIGN_ASSET(2) char gKartBowser056[] = "__OTR__bowser_kart/bowser_kart_frame056"; - -static const ALIGN_ASSET(2) char gKartBowser057[] = "__OTR__bowser_kart/bowser_kart_frame057"; - -static const ALIGN_ASSET(2) char gKartBowser058[] = "__OTR__bowser_kart/bowser_kart_frame058"; - -static const ALIGN_ASSET(2) char gKartBowser059[] = "__OTR__bowser_kart/bowser_kart_frame059"; - -static const ALIGN_ASSET(2) char gKartBowser060[] = "__OTR__bowser_kart/bowser_kart_frame060"; - -static const ALIGN_ASSET(2) char gKartBowser061[] = "__OTR__bowser_kart/bowser_kart_frame061"; - -static const ALIGN_ASSET(2) char gKartBowser062[] = "__OTR__bowser_kart/bowser_kart_frame062"; - -static const ALIGN_ASSET(2) char gKartBowser063[] = "__OTR__bowser_kart/bowser_kart_frame063"; - -static const ALIGN_ASSET(2) char gKartBowser064[] = "__OTR__bowser_kart/bowser_kart_frame064"; - -static const ALIGN_ASSET(2) char gKartBowser065[] = "__OTR__bowser_kart/bowser_kart_frame065"; - -static const ALIGN_ASSET(2) char gKartBowser066[] = "__OTR__bowser_kart/bowser_kart_frame066"; - -static const ALIGN_ASSET(2) char gKartBowser067[] = "__OTR__bowser_kart/bowser_kart_frame067"; - -static const ALIGN_ASSET(2) char gKartBowser068[] = "__OTR__bowser_kart/bowser_kart_frame068"; - -static const ALIGN_ASSET(2) char gKartBowser069[] = "__OTR__bowser_kart/bowser_kart_frame069"; - -static const ALIGN_ASSET(2) char gKartBowser070[] = "__OTR__bowser_kart/bowser_kart_frame070"; - -static const ALIGN_ASSET(2) char gKartBowser071[] = "__OTR__bowser_kart/bowser_kart_frame071"; - -static const ALIGN_ASSET(2) char gKartBowser072[] = "__OTR__bowser_kart/bowser_kart_frame072"; - -static const ALIGN_ASSET(2) char gKartBowser073[] = "__OTR__bowser_kart/bowser_kart_frame073"; - -static const ALIGN_ASSET(2) char gKartBowser074[] = "__OTR__bowser_kart/bowser_kart_frame074"; - -static const ALIGN_ASSET(2) char gKartBowser075[] = "__OTR__bowser_kart/bowser_kart_frame075"; - -static const ALIGN_ASSET(2) char gKartBowser076[] = "__OTR__bowser_kart/bowser_kart_frame076"; - -static const ALIGN_ASSET(2) char gKartBowser077[] = "__OTR__bowser_kart/bowser_kart_frame077"; - -static const ALIGN_ASSET(2) char gKartBowser078[] = "__OTR__bowser_kart/bowser_kart_frame078"; - -static const ALIGN_ASSET(2) char gKartBowser079[] = "__OTR__bowser_kart/bowser_kart_frame079"; - -static const ALIGN_ASSET(2) char gKartBowser080[] = "__OTR__bowser_kart/bowser_kart_frame080"; - -static const ALIGN_ASSET(2) char gKartBowser081[] = "__OTR__bowser_kart/bowser_kart_frame081"; - -static const ALIGN_ASSET(2) char gKartBowser082[] = "__OTR__bowser_kart/bowser_kart_frame082"; - -static const ALIGN_ASSET(2) char gKartBowser083[] = "__OTR__bowser_kart/bowser_kart_frame083"; - -static const ALIGN_ASSET(2) char gKartBowser084[] = "__OTR__bowser_kart/bowser_kart_frame084"; - -static const ALIGN_ASSET(2) char gKartBowser085[] = "__OTR__bowser_kart/bowser_kart_frame085"; - -static const ALIGN_ASSET(2) char gKartBowser086[] = "__OTR__bowser_kart/bowser_kart_frame086"; - -static const ALIGN_ASSET(2) char gKartBowser087[] = "__OTR__bowser_kart/bowser_kart_frame087"; - -static const ALIGN_ASSET(2) char gKartBowser088[] = "__OTR__bowser_kart/bowser_kart_frame088"; - -static const ALIGN_ASSET(2) char gKartBowser089[] = "__OTR__bowser_kart/bowser_kart_frame089"; - -static const ALIGN_ASSET(2) char gKartBowser090[] = "__OTR__bowser_kart/bowser_kart_frame090"; - -static const ALIGN_ASSET(2) char gKartBowser091[] = "__OTR__bowser_kart/bowser_kart_frame091"; - -static const ALIGN_ASSET(2) char gKartBowser092[] = "__OTR__bowser_kart/bowser_kart_frame092"; - -static const ALIGN_ASSET(2) char gKartBowser093[] = "__OTR__bowser_kart/bowser_kart_frame093"; - -static const ALIGN_ASSET(2) char gKartBowser094[] = "__OTR__bowser_kart/bowser_kart_frame094"; - -static const ALIGN_ASSET(2) char gKartBowser095[] = "__OTR__bowser_kart/bowser_kart_frame095"; - -static const ALIGN_ASSET(2) char gKartBowser096[] = "__OTR__bowser_kart/bowser_kart_frame096"; - -static const ALIGN_ASSET(2) char gKartBowser097[] = "__OTR__bowser_kart/bowser_kart_frame097"; - -static const ALIGN_ASSET(2) char gKartBowser098[] = "__OTR__bowser_kart/bowser_kart_frame098"; - -static const ALIGN_ASSET(2) char gKartBowser099[] = "__OTR__bowser_kart/bowser_kart_frame099"; - -static const ALIGN_ASSET(2) char gKartBowser100[] = "__OTR__bowser_kart/bowser_kart_frame100"; - -static const ALIGN_ASSET(2) char gKartBowser101[] = "__OTR__bowser_kart/bowser_kart_frame101"; - -static const ALIGN_ASSET(2) char gKartBowser102[] = "__OTR__bowser_kart/bowser_kart_frame102"; - -static const ALIGN_ASSET(2) char gKartBowser103[] = "__OTR__bowser_kart/bowser_kart_frame103"; - -static const ALIGN_ASSET(2) char gKartBowser104[] = "__OTR__bowser_kart/bowser_kart_frame104"; - -static const ALIGN_ASSET(2) char gKartBowser105[] = "__OTR__bowser_kart/bowser_kart_frame105"; - -static const ALIGN_ASSET(2) char gKartBowser106[] = "__OTR__bowser_kart/bowser_kart_frame106"; - -static const ALIGN_ASSET(2) char gKartBowser107[] = "__OTR__bowser_kart/bowser_kart_frame107"; - -static const ALIGN_ASSET(2) char gKartBowser108[] = "__OTR__bowser_kart/bowser_kart_frame108"; - -static const ALIGN_ASSET(2) char gKartBowser109[] = "__OTR__bowser_kart/bowser_kart_frame109"; - -static const ALIGN_ASSET(2) char gKartBowser110[] = "__OTR__bowser_kart/bowser_kart_frame110"; - -static const ALIGN_ASSET(2) char gKartBowser111[] = "__OTR__bowser_kart/bowser_kart_frame111"; - -static const ALIGN_ASSET(2) char gKartBowser112[] = "__OTR__bowser_kart/bowser_kart_frame112"; - -static const ALIGN_ASSET(2) char gKartBowser113[] = "__OTR__bowser_kart/bowser_kart_frame113"; - -static const ALIGN_ASSET(2) char gKartBowser114[] = "__OTR__bowser_kart/bowser_kart_frame114"; - -static const ALIGN_ASSET(2) char gKartBowser115[] = "__OTR__bowser_kart/bowser_kart_frame115"; - -static const ALIGN_ASSET(2) char gKartBowser116[] = "__OTR__bowser_kart/bowser_kart_frame116"; - -static const ALIGN_ASSET(2) char gKartBowser117[] = "__OTR__bowser_kart/bowser_kart_frame117"; - -static const ALIGN_ASSET(2) char gKartBowser118[] = "__OTR__bowser_kart/bowser_kart_frame118"; - -static const ALIGN_ASSET(2) char gKartBowser119[] = "__OTR__bowser_kart/bowser_kart_frame119"; - -static const ALIGN_ASSET(2) char gKartBowser120[] = "__OTR__bowser_kart/bowser_kart_frame120"; - -static const ALIGN_ASSET(2) char gKartBowser121[] = "__OTR__bowser_kart/bowser_kart_frame121"; - -static const ALIGN_ASSET(2) char gKartBowser122[] = "__OTR__bowser_kart/bowser_kart_frame122"; - -static const ALIGN_ASSET(2) char gKartBowser123[] = "__OTR__bowser_kart/bowser_kart_frame123"; - -static const ALIGN_ASSET(2) char gKartBowser124[] = "__OTR__bowser_kart/bowser_kart_frame124"; - -static const ALIGN_ASSET(2) char gKartBowser125[] = "__OTR__bowser_kart/bowser_kart_frame125"; - -static const ALIGN_ASSET(2) char gKartBowser126[] = "__OTR__bowser_kart/bowser_kart_frame126"; - -static const ALIGN_ASSET(2) char gKartBowser127[] = "__OTR__bowser_kart/bowser_kart_frame127"; - -static const ALIGN_ASSET(2) char gKartBowser128[] = "__OTR__bowser_kart/bowser_kart_frame128"; - -static const ALIGN_ASSET(2) char gKartBowser129[] = "__OTR__bowser_kart/bowser_kart_frame129"; - -static const ALIGN_ASSET(2) char gKartBowser130[] = "__OTR__bowser_kart/bowser_kart_frame130"; - -static const ALIGN_ASSET(2) char gKartBowser131[] = "__OTR__bowser_kart/bowser_kart_frame131"; - -static const ALIGN_ASSET(2) char gKartBowser132[] = "__OTR__bowser_kart/bowser_kart_frame132"; - -static const ALIGN_ASSET(2) char gKartBowser133[] = "__OTR__bowser_kart/bowser_kart_frame133"; - -static const ALIGN_ASSET(2) char gKartBowser134[] = "__OTR__bowser_kart/bowser_kart_frame134"; - -static const ALIGN_ASSET(2) char gKartBowser135[] = "__OTR__bowser_kart/bowser_kart_frame135"; - -static const ALIGN_ASSET(2) char gKartBowser136[] = "__OTR__bowser_kart/bowser_kart_frame136"; - -static const ALIGN_ASSET(2) char gKartBowser137[] = "__OTR__bowser_kart/bowser_kart_frame137"; - -static const ALIGN_ASSET(2) char gKartBowser138[] = "__OTR__bowser_kart/bowser_kart_frame138"; - -static const ALIGN_ASSET(2) char gKartBowser139[] = "__OTR__bowser_kart/bowser_kart_frame139"; - -static const ALIGN_ASSET(2) char gKartBowser140[] = "__OTR__bowser_kart/bowser_kart_frame140"; - -static const ALIGN_ASSET(2) char gKartBowser141[] = "__OTR__bowser_kart/bowser_kart_frame141"; - -static const ALIGN_ASSET(2) char gKartBowser142[] = "__OTR__bowser_kart/bowser_kart_frame142"; - -static const ALIGN_ASSET(2) char gKartBowser143[] = "__OTR__bowser_kart/bowser_kart_frame143"; - -static const ALIGN_ASSET(2) char gKartBowser144[] = "__OTR__bowser_kart/bowser_kart_frame144"; - -static const ALIGN_ASSET(2) char gKartBowser145[] = "__OTR__bowser_kart/bowser_kart_frame145"; - -static const ALIGN_ASSET(2) char gKartBowser146[] = "__OTR__bowser_kart/bowser_kart_frame146"; - -static const ALIGN_ASSET(2) char gKartBowser147[] = "__OTR__bowser_kart/bowser_kart_frame147"; - -static const ALIGN_ASSET(2) char gKartBowser148[] = "__OTR__bowser_kart/bowser_kart_frame148"; - -static const ALIGN_ASSET(2) char gKartBowser149[] = "__OTR__bowser_kart/bowser_kart_frame149"; - -static const ALIGN_ASSET(2) char gKartBowser150[] = "__OTR__bowser_kart/bowser_kart_frame150"; - -static const ALIGN_ASSET(2) char gKartBowser151[] = "__OTR__bowser_kart/bowser_kart_frame151"; - -static const ALIGN_ASSET(2) char gKartBowser152[] = "__OTR__bowser_kart/bowser_kart_frame152"; - -static const ALIGN_ASSET(2) char gKartBowser153[] = "__OTR__bowser_kart/bowser_kart_frame153"; - -static const ALIGN_ASSET(2) char gKartBowser154[] = "__OTR__bowser_kart/bowser_kart_frame154"; - -static const ALIGN_ASSET(2) char gKartBowser155[] = "__OTR__bowser_kart/bowser_kart_frame155"; - -static const ALIGN_ASSET(2) char gKartBowser156[] = "__OTR__bowser_kart/bowser_kart_frame156"; - -static const ALIGN_ASSET(2) char gKartBowser157[] = "__OTR__bowser_kart/bowser_kart_frame157"; - -static const ALIGN_ASSET(2) char gKartBowser158[] = "__OTR__bowser_kart/bowser_kart_frame158"; - -static const ALIGN_ASSET(2) char gKartBowser159[] = "__OTR__bowser_kart/bowser_kart_frame159"; - -static const ALIGN_ASSET(2) char gKartBowser160[] = "__OTR__bowser_kart/bowser_kart_frame160"; - -static const ALIGN_ASSET(2) char gKartBowser161[] = "__OTR__bowser_kart/bowser_kart_frame161"; - -static const ALIGN_ASSET(2) char gKartBowser162[] = "__OTR__bowser_kart/bowser_kart_frame162"; - -static const ALIGN_ASSET(2) char gKartBowser163[] = "__OTR__bowser_kart/bowser_kart_frame163"; - -static const ALIGN_ASSET(2) char gKartBowser164[] = "__OTR__bowser_kart/bowser_kart_frame164"; - -static const ALIGN_ASSET(2) char gKartBowser165[] = "__OTR__bowser_kart/bowser_kart_frame165"; - -static const ALIGN_ASSET(2) char gKartBowser166[] = "__OTR__bowser_kart/bowser_kart_frame166"; - -static const ALIGN_ASSET(2) char gKartBowser167[] = "__OTR__bowser_kart/bowser_kart_frame167"; - -static const ALIGN_ASSET(2) char gKartBowser168[] = "__OTR__bowser_kart/bowser_kart_frame168"; - -static const ALIGN_ASSET(2) char gKartBowser169[] = "__OTR__bowser_kart/bowser_kart_frame169"; - -static const ALIGN_ASSET(2) char gKartBowser170[] = "__OTR__bowser_kart/bowser_kart_frame170"; - -static const ALIGN_ASSET(2) char gKartBowser171[] = "__OTR__bowser_kart/bowser_kart_frame171"; - -static const ALIGN_ASSET(2) char gKartBowser172[] = "__OTR__bowser_kart/bowser_kart_frame172"; - -static const ALIGN_ASSET(2) char gKartBowser173[] = "__OTR__bowser_kart/bowser_kart_frame173"; - -static const ALIGN_ASSET(2) char gKartBowser174[] = "__OTR__bowser_kart/bowser_kart_frame174"; - -static const ALIGN_ASSET(2) char gKartBowser175[] = "__OTR__bowser_kart/bowser_kart_frame175"; - -static const ALIGN_ASSET(2) char gKartBowser176[] = "__OTR__bowser_kart/bowser_kart_frame176"; - -static const ALIGN_ASSET(2) char gKartBowser177[] = "__OTR__bowser_kart/bowser_kart_frame177"; - -static const ALIGN_ASSET(2) char gKartBowser178[] = "__OTR__bowser_kart/bowser_kart_frame178"; - -static const ALIGN_ASSET(2) char gKartBowser179[] = "__OTR__bowser_kart/bowser_kart_frame179"; - -static const ALIGN_ASSET(2) char gKartBowser180[] = "__OTR__bowser_kart/bowser_kart_frame180"; - -static const ALIGN_ASSET(2) char gKartBowser181[] = "__OTR__bowser_kart/bowser_kart_frame181"; - -static const ALIGN_ASSET(2) char gKartBowser182[] = "__OTR__bowser_kart/bowser_kart_frame182"; - -static const ALIGN_ASSET(2) char gKartBowser183[] = "__OTR__bowser_kart/bowser_kart_frame183"; - -static const ALIGN_ASSET(2) char gKartBowser184[] = "__OTR__bowser_kart/bowser_kart_frame184"; - -static const ALIGN_ASSET(2) char gKartBowser185[] = "__OTR__bowser_kart/bowser_kart_frame185"; - -static const ALIGN_ASSET(2) char gKartBowser186[] = "__OTR__bowser_kart/bowser_kart_frame186"; - -static const ALIGN_ASSET(2) char gKartBowser187[] = "__OTR__bowser_kart/bowser_kart_frame187"; - -static const ALIGN_ASSET(2) char gKartBowser188[] = "__OTR__bowser_kart/bowser_kart_frame188"; - -static const ALIGN_ASSET(2) char gKartBowser189[] = "__OTR__bowser_kart/bowser_kart_frame189"; - -static const ALIGN_ASSET(2) char gKartBowser190[] = "__OTR__bowser_kart/bowser_kart_frame190"; - -static const ALIGN_ASSET(2) char gKartBowser191[] = "__OTR__bowser_kart/bowser_kart_frame191"; - -static const ALIGN_ASSET(2) char gKartBowser192[] = "__OTR__bowser_kart/bowser_kart_frame192"; - -static const ALIGN_ASSET(2) char gKartBowser193[] = "__OTR__bowser_kart/bowser_kart_frame193"; - -static const ALIGN_ASSET(2) char gKartBowser194[] = "__OTR__bowser_kart/bowser_kart_frame194"; - -static const ALIGN_ASSET(2) char gKartBowser195[] = "__OTR__bowser_kart/bowser_kart_frame195"; - -static const ALIGN_ASSET(2) char gKartBowser196[] = "__OTR__bowser_kart/bowser_kart_frame196"; - -static const ALIGN_ASSET(2) char gKartBowser197[] = "__OTR__bowser_kart/bowser_kart_frame197"; - -static const ALIGN_ASSET(2) char gKartBowser198[] = "__OTR__bowser_kart/bowser_kart_frame198"; - -static const ALIGN_ASSET(2) char gKartBowser199[] = "__OTR__bowser_kart/bowser_kart_frame199"; - -static const ALIGN_ASSET(2) char gKartBowser200[] = "__OTR__bowser_kart/bowser_kart_frame200"; - -static const ALIGN_ASSET(2) char gKartBowser201[] = "__OTR__bowser_kart/bowser_kart_frame201"; - -static const ALIGN_ASSET(2) char gKartBowser202[] = "__OTR__bowser_kart/bowser_kart_frame202"; - -static const ALIGN_ASSET(2) char gKartBowser203[] = "__OTR__bowser_kart/bowser_kart_frame203"; - -static const ALIGN_ASSET(2) char gKartBowser204[] = "__OTR__bowser_kart/bowser_kart_frame204"; - -static const ALIGN_ASSET(2) char gKartBowser205[] = "__OTR__bowser_kart/bowser_kart_frame205"; - -static const ALIGN_ASSET(2) char gKartBowser206[] = "__OTR__bowser_kart/bowser_kart_frame206"; - -static const ALIGN_ASSET(2) char gKartBowser207[] = "__OTR__bowser_kart/bowser_kart_frame207"; - -static const ALIGN_ASSET(2) char gKartBowser208[] = "__OTR__bowser_kart/bowser_kart_frame208"; - -static const ALIGN_ASSET(2) char gKartBowser209[] = "__OTR__bowser_kart/bowser_kart_frame209"; - -static const ALIGN_ASSET(2) char gKartBowser210[] = "__OTR__bowser_kart/bowser_kart_frame210"; - -static const ALIGN_ASSET(2) char gKartBowser211[] = "__OTR__bowser_kart/bowser_kart_frame211"; - -static const ALIGN_ASSET(2) char gKartBowser212[] = "__OTR__bowser_kart/bowser_kart_frame212"; - -static const ALIGN_ASSET(2) char gKartBowser213[] = "__OTR__bowser_kart/bowser_kart_frame213"; - -static const ALIGN_ASSET(2) char gKartBowser214[] = "__OTR__bowser_kart/bowser_kart_frame214"; - -static const ALIGN_ASSET(2) char gKartBowser215[] = "__OTR__bowser_kart/bowser_kart_frame215"; - -static const ALIGN_ASSET(2) char gKartBowser216[] = "__OTR__bowser_kart/bowser_kart_frame216"; - -static const ALIGN_ASSET(2) char gKartBowser217[] = "__OTR__bowser_kart/bowser_kart_frame217"; - -static const ALIGN_ASSET(2) char gKartBowser218[] = "__OTR__bowser_kart/bowser_kart_frame218"; - -static const ALIGN_ASSET(2) char gKartBowser219[] = "__OTR__bowser_kart/bowser_kart_frame219"; - -static const ALIGN_ASSET(2) char gKartBowser220[] = "__OTR__bowser_kart/bowser_kart_frame220"; - -static const ALIGN_ASSET(2) char gKartBowser221[] = "__OTR__bowser_kart/bowser_kart_frame221"; - -static const ALIGN_ASSET(2) char gKartBowser222[] = "__OTR__bowser_kart/bowser_kart_frame222"; - -static const ALIGN_ASSET(2) char gKartBowser223[] = "__OTR__bowser_kart/bowser_kart_frame223"; - -static const ALIGN_ASSET(2) char gKartBowser224[] = "__OTR__bowser_kart/bowser_kart_frame224"; - -static const ALIGN_ASSET(2) char gKartBowser225[] = "__OTR__bowser_kart/bowser_kart_frame225"; - -static const ALIGN_ASSET(2) char gKartBowser226[] = "__OTR__bowser_kart/bowser_kart_frame226"; - -static const ALIGN_ASSET(2) char gKartBowser227[] = "__OTR__bowser_kart/bowser_kart_frame227"; - -static const ALIGN_ASSET(2) char gKartBowser228[] = "__OTR__bowser_kart/bowser_kart_frame228"; - -static const ALIGN_ASSET(2) char gKartBowser229[] = "__OTR__bowser_kart/bowser_kart_frame229"; - -static const ALIGN_ASSET(2) char gKartBowser230[] = "__OTR__bowser_kart/bowser_kart_frame230"; - -static const ALIGN_ASSET(2) char gKartBowser231[] = "__OTR__bowser_kart/bowser_kart_frame231"; - -static const ALIGN_ASSET(2) char gKartBowser232[] = "__OTR__bowser_kart/bowser_kart_frame232"; - -static const ALIGN_ASSET(2) char gKartBowser233[] = "__OTR__bowser_kart/bowser_kart_frame233"; - -static const ALIGN_ASSET(2) char gKartBowser234[] = "__OTR__bowser_kart/bowser_kart_frame234"; - -static const ALIGN_ASSET(2) char gKartBowser235[] = "__OTR__bowser_kart/bowser_kart_frame235"; - -static const ALIGN_ASSET(2) char gKartBowser236[] = "__OTR__bowser_kart/bowser_kart_frame236"; - -static const ALIGN_ASSET(2) char gKartBowser237[] = "__OTR__bowser_kart/bowser_kart_frame237"; - -static const ALIGN_ASSET(2) char gKartBowser238[] = "__OTR__bowser_kart/bowser_kart_frame238"; - -static const ALIGN_ASSET(2) char gKartBowser239[] = "__OTR__bowser_kart/bowser_kart_frame239"; - -static const ALIGN_ASSET(2) char gKartBowser240[] = "__OTR__bowser_kart/bowser_kart_frame240"; - -static const ALIGN_ASSET(2) char gKartBowser241[] = "__OTR__bowser_kart/bowser_kart_frame241"; - -static const ALIGN_ASSET(2) char gKartBowser242[] = "__OTR__bowser_kart/bowser_kart_frame242"; - -static const ALIGN_ASSET(2) char gKartBowser243[] = "__OTR__bowser_kart/bowser_kart_frame243"; - -static const ALIGN_ASSET(2) char gKartBowser244[] = "__OTR__bowser_kart/bowser_kart_frame244"; - -static const ALIGN_ASSET(2) char gKartBowser245[] = "__OTR__bowser_kart/bowser_kart_frame245"; - -static const ALIGN_ASSET(2) char gKartBowser246[] = "__OTR__bowser_kart/bowser_kart_frame246"; - -static const ALIGN_ASSET(2) char gKartBowser247[] = "__OTR__bowser_kart/bowser_kart_frame247"; - -static const ALIGN_ASSET(2) char gKartBowser248[] = "__OTR__bowser_kart/bowser_kart_frame248"; - -static const ALIGN_ASSET(2) char gKartBowser249[] = "__OTR__bowser_kart/bowser_kart_frame249"; - -static const ALIGN_ASSET(2) char gKartBowser250[] = "__OTR__bowser_kart/bowser_kart_frame250"; - -static const ALIGN_ASSET(2) char gKartBowser251[] = "__OTR__bowser_kart/bowser_kart_frame251"; - -static const ALIGN_ASSET(2) char gKartBowser252[] = "__OTR__bowser_kart/bowser_kart_frame252"; - -static const ALIGN_ASSET(2) char gKartBowser253[] = "__OTR__bowser_kart/bowser_kart_frame253"; - -static const ALIGN_ASSET(2) char gKartBowser254[] = "__OTR__bowser_kart/bowser_kart_frame254"; - -static const ALIGN_ASSET(2) char gKartBowser255[] = "__OTR__bowser_kart/bowser_kart_frame255"; - -static const ALIGN_ASSET(2) char gKartBowser256[] = "__OTR__bowser_kart/bowser_kart_frame256"; - -static const ALIGN_ASSET(2) char gKartBowser257[] = "__OTR__bowser_kart/bowser_kart_frame257"; - -static const ALIGN_ASSET(2) char gKartBowser258[] = "__OTR__bowser_kart/bowser_kart_frame258"; - -static const ALIGN_ASSET(2) char gKartBowser259[] = "__OTR__bowser_kart/bowser_kart_frame259"; - -static const ALIGN_ASSET(2) char gKartBowser260[] = "__OTR__bowser_kart/bowser_kart_frame260"; - -static const ALIGN_ASSET(2) char gKartBowser261[] = "__OTR__bowser_kart/bowser_kart_frame261"; - -static const ALIGN_ASSET(2) char gKartBowser262[] = "__OTR__bowser_kart/bowser_kart_frame262"; - -static const ALIGN_ASSET(2) char gKartBowser263[] = "__OTR__bowser_kart/bowser_kart_frame263"; - -static const ALIGN_ASSET(2) char gKartBowser264[] = "__OTR__bowser_kart/bowser_kart_frame264"; - -static const ALIGN_ASSET(2) char gKartBowser265[] = "__OTR__bowser_kart/bowser_kart_frame265"; - -static const ALIGN_ASSET(2) char gKartBowser266[] = "__OTR__bowser_kart/bowser_kart_frame266"; - -static const ALIGN_ASSET(2) char gKartBowser267[] = "__OTR__bowser_kart/bowser_kart_frame267"; - -static const ALIGN_ASSET(2) char gKartBowser268[] = "__OTR__bowser_kart/bowser_kart_frame268"; - -static const ALIGN_ASSET(2) char gKartBowser269[] = "__OTR__bowser_kart/bowser_kart_frame269"; - -static const ALIGN_ASSET(2) char gKartBowser270[] = "__OTR__bowser_kart/bowser_kart_frame270"; - -static const ALIGN_ASSET(2) char gKartBowser271[] = "__OTR__bowser_kart/bowser_kart_frame271"; - -static const ALIGN_ASSET(2) char gKartBowser272[] = "__OTR__bowser_kart/bowser_kart_frame272"; - -static const ALIGN_ASSET(2) char gKartBowser273[] = "__OTR__bowser_kart/bowser_kart_frame273"; - -static const ALIGN_ASSET(2) char gKartBowser274[] = "__OTR__bowser_kart/bowser_kart_frame274"; - -static const ALIGN_ASSET(2) char gKartBowser275[] = "__OTR__bowser_kart/bowser_kart_frame275"; - -static const ALIGN_ASSET(2) char gKartBowser276[] = "__OTR__bowser_kart/bowser_kart_frame276"; - -static const ALIGN_ASSET(2) char gKartBowser277[] = "__OTR__bowser_kart/bowser_kart_frame277"; - -static const ALIGN_ASSET(2) char gKartBowser278[] = "__OTR__bowser_kart/bowser_kart_frame278"; - -static const ALIGN_ASSET(2) char gKartBowser279[] = "__OTR__bowser_kart/bowser_kart_frame279"; - -static const ALIGN_ASSET(2) char gKartBowser280[] = "__OTR__bowser_kart/bowser_kart_frame280"; - -static const ALIGN_ASSET(2) char gKartBowser281[] = "__OTR__bowser_kart/bowser_kart_frame281"; - -static const ALIGN_ASSET(2) char gKartBowser282[] = "__OTR__bowser_kart/bowser_kart_frame282"; - -static const ALIGN_ASSET(2) char gKartBowser283[] = "__OTR__bowser_kart/bowser_kart_frame283"; - -static const ALIGN_ASSET(2) char gKartBowser284[] = "__OTR__bowser_kart/bowser_kart_frame284"; - -static const ALIGN_ASSET(2) char gKartBowser285[] = "__OTR__bowser_kart/bowser_kart_frame285"; - -static const ALIGN_ASSET(2) char gKartBowser286[] = "__OTR__bowser_kart/bowser_kart_frame286"; - -static const ALIGN_ASSET(2) char gKartBowser287[] = "__OTR__bowser_kart/bowser_kart_frame287"; - -static const ALIGN_ASSET(2) char gKartBowser288[] = "__OTR__bowser_kart/bowser_kart_frame288"; - -static const ALIGN_ASSET(2) char gKartBowser289[] = "__OTR__bowser_kart/bowser_kart_frame289"; - -static const ALIGN_ASSET(2) char gKartBowser290[] = "__OTR__bowser_kart/bowser_kart_frame290"; - -static const ALIGN_ASSET(2) char gKartBowser291[] = "__OTR__bowser_kart/bowser_kart_frame291"; - -static const ALIGN_ASSET(2) char gKartBowser292[] = "__OTR__bowser_kart/bowser_kart_frame292"; - -static const ALIGN_ASSET(2) char gKartBowser293[] = "__OTR__bowser_kart/bowser_kart_frame293"; - -static const ALIGN_ASSET(2) char gKartBowser294[] = "__OTR__bowser_kart/bowser_kart_frame294"; - -static const ALIGN_ASSET(2) char gKartBowser295[] = "__OTR__bowser_kart/bowser_kart_frame295"; - -static const ALIGN_ASSET(2) char gKartBowser296[] = "__OTR__bowser_kart/bowser_kart_frame296"; - -static const ALIGN_ASSET(2) char gKartBowser297[] = "__OTR__bowser_kart/bowser_kart_frame297"; - -static const ALIGN_ASSET(2) char gKartBowser298[] = "__OTR__bowser_kart/bowser_kart_frame298"; - -static const ALIGN_ASSET(2) char gKartBowser299[] = "__OTR__bowser_kart/bowser_kart_frame299"; - -static const ALIGN_ASSET(2) char gKartBowser300[] = "__OTR__bowser_kart/bowser_kart_frame300"; - -static const ALIGN_ASSET(2) char gKartBowser301[] = "__OTR__bowser_kart/bowser_kart_frame301"; - -static const ALIGN_ASSET(2) char gKartBowser302[] = "__OTR__bowser_kart/bowser_kart_frame302"; - -static const ALIGN_ASSET(2) char gKartBowser303[] = "__OTR__bowser_kart/bowser_kart_frame303"; - -static const ALIGN_ASSET(2) char gKartBowser304[] = "__OTR__bowser_kart/bowser_kart_frame304"; - -static const ALIGN_ASSET(2) char gKartBowser305[] = "__OTR__bowser_kart/bowser_kart_frame305"; - -static const ALIGN_ASSET(2) char gKartBowser306[] = "__OTR__bowser_kart/bowser_kart_frame306"; - -static const ALIGN_ASSET(2) char gKartBowser307[] = "__OTR__bowser_kart/bowser_kart_frame307"; - -static const ALIGN_ASSET(2) char gKartBowser308[] = "__OTR__bowser_kart/bowser_kart_frame308"; - -static const ALIGN_ASSET(2) char gKartBowser309[] = "__OTR__bowser_kart/bowser_kart_frame309"; - -static const ALIGN_ASSET(2) char gKartBowser310[] = "__OTR__bowser_kart/bowser_kart_frame310"; - -static const ALIGN_ASSET(2) char gKartBowser311[] = "__OTR__bowser_kart/bowser_kart_frame311"; - -static const ALIGN_ASSET(2) char gKartBowser312[] = "__OTR__bowser_kart/bowser_kart_frame312"; - -static const ALIGN_ASSET(2) char gKartBowser313[] = "__OTR__bowser_kart/bowser_kart_frame313"; - -static const ALIGN_ASSET(2) char gKartBowser314[] = "__OTR__bowser_kart/bowser_kart_frame314"; - -static const ALIGN_ASSET(2) char gKartBowser315[] = "__OTR__bowser_kart/bowser_kart_frame315"; - -static const ALIGN_ASSET(2) char gKartBowser316[] = "__OTR__bowser_kart/bowser_kart_frame316"; - -static const ALIGN_ASSET(2) char gKartBowser317[] = "__OTR__bowser_kart/bowser_kart_frame317"; - -static const ALIGN_ASSET(2) char gKartBowser318[] = "__OTR__bowser_kart/bowser_kart_frame318"; - -static const ALIGN_ASSET(2) char gKartBowser319[] = "__OTR__bowser_kart/bowser_kart_frame319"; - -static const ALIGN_ASSET(2) char gKartBowser320[] = "__OTR__bowser_kart/bowser_kart_frame320"; - -static const ALIGN_ASSET(2) char gKartBowser000Wheel0[] = "__OTR__bowser_kart/kart_000_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser000Wheel1[] = "__OTR__bowser_kart/kart_000_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser000Wheel2[] = "__OTR__bowser_kart/kart_000_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser000Wheel3[] = "__OTR__bowser_kart/kart_000_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser001Wheel0[] = "__OTR__bowser_kart/kart_001_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser001Wheel1[] = "__OTR__bowser_kart/kart_001_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser001Wheel2[] = "__OTR__bowser_kart/kart_001_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser001Wheel3[] = "__OTR__bowser_kart/kart_001_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser002Wheel0[] = "__OTR__bowser_kart/kart_002_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser002Wheel1[] = "__OTR__bowser_kart/kart_002_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser002Wheel2[] = "__OTR__bowser_kart/kart_002_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser002Wheel3[] = "__OTR__bowser_kart/kart_002_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser003Wheel0[] = "__OTR__bowser_kart/kart_003_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser003Wheel1[] = "__OTR__bowser_kart/kart_003_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser003Wheel2[] = "__OTR__bowser_kart/kart_003_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser003Wheel3[] = "__OTR__bowser_kart/kart_003_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser004Wheel0[] = "__OTR__bowser_kart/kart_004_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser004Wheel1[] = "__OTR__bowser_kart/kart_004_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser004Wheel2[] = "__OTR__bowser_kart/kart_004_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser004Wheel3[] = "__OTR__bowser_kart/kart_004_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser005Wheel0[] = "__OTR__bowser_kart/kart_005_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser005Wheel1[] = "__OTR__bowser_kart/kart_005_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser005Wheel2[] = "__OTR__bowser_kart/kart_005_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser005Wheel3[] = "__OTR__bowser_kart/kart_005_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser006Wheel0[] = "__OTR__bowser_kart/kart_006_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser006Wheel1[] = "__OTR__bowser_kart/kart_006_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser006Wheel2[] = "__OTR__bowser_kart/kart_006_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser006Wheel3[] = "__OTR__bowser_kart/kart_006_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser007Wheel0[] = "__OTR__bowser_kart/kart_007_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser007Wheel1[] = "__OTR__bowser_kart/kart_007_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser007Wheel2[] = "__OTR__bowser_kart/kart_007_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser007Wheel3[] = "__OTR__bowser_kart/kart_007_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser008Wheel0[] = "__OTR__bowser_kart/kart_008_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser008Wheel1[] = "__OTR__bowser_kart/kart_008_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser008Wheel2[] = "__OTR__bowser_kart/kart_008_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser008Wheel3[] = "__OTR__bowser_kart/kart_008_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser009Wheel0[] = "__OTR__bowser_kart/kart_009_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser009Wheel1[] = "__OTR__bowser_kart/kart_009_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser009Wheel2[] = "__OTR__bowser_kart/kart_009_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser009Wheel3[] = "__OTR__bowser_kart/kart_009_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser010Wheel0[] = "__OTR__bowser_kart/kart_010_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser010Wheel1[] = "__OTR__bowser_kart/kart_010_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser010Wheel2[] = "__OTR__bowser_kart/kart_010_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser010Wheel3[] = "__OTR__bowser_kart/kart_010_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser011Wheel0[] = "__OTR__bowser_kart/kart_011_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser011Wheel1[] = "__OTR__bowser_kart/kart_011_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser011Wheel2[] = "__OTR__bowser_kart/kart_011_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser011Wheel3[] = "__OTR__bowser_kart/kart_011_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser012Wheel0[] = "__OTR__bowser_kart/kart_012_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser012Wheel1[] = "__OTR__bowser_kart/kart_012_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser012Wheel2[] = "__OTR__bowser_kart/kart_012_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser012Wheel3[] = "__OTR__bowser_kart/kart_012_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser013Wheel0[] = "__OTR__bowser_kart/kart_013_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser013Wheel1[] = "__OTR__bowser_kart/kart_013_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser013Wheel2[] = "__OTR__bowser_kart/kart_013_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser013Wheel3[] = "__OTR__bowser_kart/kart_013_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser014Wheel0[] = "__OTR__bowser_kart/kart_014_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser014Wheel1[] = "__OTR__bowser_kart/kart_014_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser014Wheel2[] = "__OTR__bowser_kart/kart_014_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser014Wheel3[] = "__OTR__bowser_kart/kart_014_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser015Wheel0[] = "__OTR__bowser_kart/kart_015_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser015Wheel1[] = "__OTR__bowser_kart/kart_015_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser015Wheel2[] = "__OTR__bowser_kart/kart_015_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser015Wheel3[] = "__OTR__bowser_kart/kart_015_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser016Wheel0[] = "__OTR__bowser_kart/kart_016_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser016Wheel1[] = "__OTR__bowser_kart/kart_016_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser016Wheel2[] = "__OTR__bowser_kart/kart_016_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser016Wheel3[] = "__OTR__bowser_kart/kart_016_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser017Wheel0[] = "__OTR__bowser_kart/kart_017_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser017Wheel1[] = "__OTR__bowser_kart/kart_017_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser017Wheel2[] = "__OTR__bowser_kart/kart_017_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser017Wheel3[] = "__OTR__bowser_kart/kart_017_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser018Wheel0[] = "__OTR__bowser_kart/kart_018_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser018Wheel1[] = "__OTR__bowser_kart/kart_018_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser018Wheel2[] = "__OTR__bowser_kart/kart_018_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser018Wheel3[] = "__OTR__bowser_kart/kart_018_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser019Wheel0[] = "__OTR__bowser_kart/kart_019_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser019Wheel1[] = "__OTR__bowser_kart/kart_019_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser019Wheel2[] = "__OTR__bowser_kart/kart_019_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser019Wheel3[] = "__OTR__bowser_kart/kart_019_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser020Wheel0[] = "__OTR__bowser_kart/kart_020_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser020Wheel1[] = "__OTR__bowser_kart/kart_020_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser020Wheel2[] = "__OTR__bowser_kart/kart_020_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser020Wheel3[] = "__OTR__bowser_kart/kart_020_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser021Wheel0[] = "__OTR__bowser_kart/kart_021_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser021Wheel1[] = "__OTR__bowser_kart/kart_021_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser021Wheel2[] = "__OTR__bowser_kart/kart_021_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser021Wheel3[] = "__OTR__bowser_kart/kart_021_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser022Wheel0[] = "__OTR__bowser_kart/kart_022_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser022Wheel1[] = "__OTR__bowser_kart/kart_022_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser022Wheel2[] = "__OTR__bowser_kart/kart_022_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser022Wheel3[] = "__OTR__bowser_kart/kart_022_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser023Wheel0[] = "__OTR__bowser_kart/kart_023_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser023Wheel1[] = "__OTR__bowser_kart/kart_023_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser023Wheel2[] = "__OTR__bowser_kart/kart_023_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser023Wheel3[] = "__OTR__bowser_kart/kart_023_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser024Wheel0[] = "__OTR__bowser_kart/kart_024_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser024Wheel1[] = "__OTR__bowser_kart/kart_024_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser024Wheel2[] = "__OTR__bowser_kart/kart_024_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser024Wheel3[] = "__OTR__bowser_kart/kart_024_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser025Wheel0[] = "__OTR__bowser_kart/kart_025_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser025Wheel1[] = "__OTR__bowser_kart/kart_025_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser025Wheel2[] = "__OTR__bowser_kart/kart_025_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser025Wheel3[] = "__OTR__bowser_kart/kart_025_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser026Wheel0[] = "__OTR__bowser_kart/kart_026_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser026Wheel1[] = "__OTR__bowser_kart/kart_026_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser026Wheel2[] = "__OTR__bowser_kart/kart_026_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser026Wheel3[] = "__OTR__bowser_kart/kart_026_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser027Wheel0[] = "__OTR__bowser_kart/kart_027_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser027Wheel1[] = "__OTR__bowser_kart/kart_027_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser027Wheel2[] = "__OTR__bowser_kart/kart_027_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser027Wheel3[] = "__OTR__bowser_kart/kart_027_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser028Wheel0[] = "__OTR__bowser_kart/kart_028_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser028Wheel1[] = "__OTR__bowser_kart/kart_028_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser028Wheel2[] = "__OTR__bowser_kart/kart_028_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser028Wheel3[] = "__OTR__bowser_kart/kart_028_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser029Wheel0[] = "__OTR__bowser_kart/kart_029_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser029Wheel1[] = "__OTR__bowser_kart/kart_029_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser029Wheel2[] = "__OTR__bowser_kart/kart_029_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser029Wheel3[] = "__OTR__bowser_kart/kart_029_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser030Wheel0[] = "__OTR__bowser_kart/kart_030_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser030Wheel1[] = "__OTR__bowser_kart/kart_030_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser030Wheel2[] = "__OTR__bowser_kart/kart_030_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser030Wheel3[] = "__OTR__bowser_kart/kart_030_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser031Wheel0[] = "__OTR__bowser_kart/kart_031_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser031Wheel1[] = "__OTR__bowser_kart/kart_031_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser031Wheel2[] = "__OTR__bowser_kart/kart_031_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser031Wheel3[] = "__OTR__bowser_kart/kart_031_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser032Wheel0[] = "__OTR__bowser_kart/kart_032_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser032Wheel1[] = "__OTR__bowser_kart/kart_032_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser032Wheel2[] = "__OTR__bowser_kart/kart_032_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser032Wheel3[] = "__OTR__bowser_kart/kart_032_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser033Wheel0[] = "__OTR__bowser_kart/kart_033_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser033Wheel1[] = "__OTR__bowser_kart/kart_033_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser033Wheel2[] = "__OTR__bowser_kart/kart_033_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser033Wheel3[] = "__OTR__bowser_kart/kart_033_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser034Wheel0[] = "__OTR__bowser_kart/kart_034_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser034Wheel1[] = "__OTR__bowser_kart/kart_034_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser034Wheel2[] = "__OTR__bowser_kart/kart_034_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser034Wheel3[] = "__OTR__bowser_kart/kart_034_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser035Wheel0[] = "__OTR__bowser_kart/kart_035_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser035Wheel1[] = "__OTR__bowser_kart/kart_035_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser035Wheel2[] = "__OTR__bowser_kart/kart_035_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser035Wheel3[] = "__OTR__bowser_kart/kart_035_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser036Wheel0[] = "__OTR__bowser_kart/kart_036_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser036Wheel1[] = "__OTR__bowser_kart/kart_036_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser036Wheel2[] = "__OTR__bowser_kart/kart_036_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser036Wheel3[] = "__OTR__bowser_kart/kart_036_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser037Wheel0[] = "__OTR__bowser_kart/kart_037_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser037Wheel1[] = "__OTR__bowser_kart/kart_037_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser037Wheel2[] = "__OTR__bowser_kart/kart_037_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser037Wheel3[] = "__OTR__bowser_kart/kart_037_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser038Wheel0[] = "__OTR__bowser_kart/kart_038_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser038Wheel1[] = "__OTR__bowser_kart/kart_038_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser038Wheel2[] = "__OTR__bowser_kart/kart_038_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser038Wheel3[] = "__OTR__bowser_kart/kart_038_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser039Wheel0[] = "__OTR__bowser_kart/kart_039_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser039Wheel1[] = "__OTR__bowser_kart/kart_039_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser039Wheel2[] = "__OTR__bowser_kart/kart_039_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser039Wheel3[] = "__OTR__bowser_kart/kart_039_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser040Wheel0[] = "__OTR__bowser_kart/kart_040_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser040Wheel1[] = "__OTR__bowser_kart/kart_040_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser040Wheel2[] = "__OTR__bowser_kart/kart_040_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser040Wheel3[] = "__OTR__bowser_kart/kart_040_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser041Wheel0[] = "__OTR__bowser_kart/kart_041_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser041Wheel1[] = "__OTR__bowser_kart/kart_041_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser041Wheel2[] = "__OTR__bowser_kart/kart_041_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser041Wheel3[] = "__OTR__bowser_kart/kart_041_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser042Wheel0[] = "__OTR__bowser_kart/kart_042_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser042Wheel1[] = "__OTR__bowser_kart/kart_042_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser042Wheel2[] = "__OTR__bowser_kart/kart_042_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser042Wheel3[] = "__OTR__bowser_kart/kart_042_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser043Wheel0[] = "__OTR__bowser_kart/kart_043_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser043Wheel1[] = "__OTR__bowser_kart/kart_043_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser043Wheel2[] = "__OTR__bowser_kart/kart_043_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser043Wheel3[] = "__OTR__bowser_kart/kart_043_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser044Wheel0[] = "__OTR__bowser_kart/kart_044_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser044Wheel1[] = "__OTR__bowser_kart/kart_044_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser044Wheel2[] = "__OTR__bowser_kart/kart_044_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser044Wheel3[] = "__OTR__bowser_kart/kart_044_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser045Wheel0[] = "__OTR__bowser_kart/kart_045_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser045Wheel1[] = "__OTR__bowser_kart/kart_045_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser045Wheel2[] = "__OTR__bowser_kart/kart_045_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser045Wheel3[] = "__OTR__bowser_kart/kart_045_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser046Wheel0[] = "__OTR__bowser_kart/kart_046_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser046Wheel1[] = "__OTR__bowser_kart/kart_046_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser046Wheel2[] = "__OTR__bowser_kart/kart_046_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser046Wheel3[] = "__OTR__bowser_kart/kart_046_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser047Wheel0[] = "__OTR__bowser_kart/kart_047_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser047Wheel1[] = "__OTR__bowser_kart/kart_047_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser047Wheel2[] = "__OTR__bowser_kart/kart_047_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser047Wheel3[] = "__OTR__bowser_kart/kart_047_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser048Wheel0[] = "__OTR__bowser_kart/kart_048_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser048Wheel1[] = "__OTR__bowser_kart/kart_048_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser048Wheel2[] = "__OTR__bowser_kart/kart_048_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser048Wheel3[] = "__OTR__bowser_kart/kart_048_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser049Wheel0[] = "__OTR__bowser_kart/kart_049_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser049Wheel1[] = "__OTR__bowser_kart/kart_049_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser049Wheel2[] = "__OTR__bowser_kart/kart_049_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser049Wheel3[] = "__OTR__bowser_kart/kart_049_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser050Wheel0[] = "__OTR__bowser_kart/kart_050_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser050Wheel1[] = "__OTR__bowser_kart/kart_050_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser050Wheel2[] = "__OTR__bowser_kart/kart_050_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser050Wheel3[] = "__OTR__bowser_kart/kart_050_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser051Wheel0[] = "__OTR__bowser_kart/kart_051_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser051Wheel1[] = "__OTR__bowser_kart/kart_051_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser051Wheel2[] = "__OTR__bowser_kart/kart_051_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser051Wheel3[] = "__OTR__bowser_kart/kart_051_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser052Wheel0[] = "__OTR__bowser_kart/kart_052_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser052Wheel1[] = "__OTR__bowser_kart/kart_052_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser052Wheel2[] = "__OTR__bowser_kart/kart_052_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser052Wheel3[] = "__OTR__bowser_kart/kart_052_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser053Wheel0[] = "__OTR__bowser_kart/kart_053_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser053Wheel1[] = "__OTR__bowser_kart/kart_053_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser053Wheel2[] = "__OTR__bowser_kart/kart_053_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser053Wheel3[] = "__OTR__bowser_kart/kart_053_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser054Wheel0[] = "__OTR__bowser_kart/kart_054_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser054Wheel1[] = "__OTR__bowser_kart/kart_054_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser054Wheel2[] = "__OTR__bowser_kart/kart_054_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser054Wheel3[] = "__OTR__bowser_kart/kart_054_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser055Wheel0[] = "__OTR__bowser_kart/kart_055_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser055Wheel1[] = "__OTR__bowser_kart/kart_055_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser055Wheel2[] = "__OTR__bowser_kart/kart_055_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser055Wheel3[] = "__OTR__bowser_kart/kart_055_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser056Wheel0[] = "__OTR__bowser_kart/kart_056_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser056Wheel1[] = "__OTR__bowser_kart/kart_056_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser056Wheel2[] = "__OTR__bowser_kart/kart_056_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser056Wheel3[] = "__OTR__bowser_kart/kart_056_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser057Wheel0[] = "__OTR__bowser_kart/kart_057_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser057Wheel1[] = "__OTR__bowser_kart/kart_057_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser057Wheel2[] = "__OTR__bowser_kart/kart_057_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser057Wheel3[] = "__OTR__bowser_kart/kart_057_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser058Wheel0[] = "__OTR__bowser_kart/kart_058_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser058Wheel1[] = "__OTR__bowser_kart/kart_058_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser058Wheel2[] = "__OTR__bowser_kart/kart_058_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser058Wheel3[] = "__OTR__bowser_kart/kart_058_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser059Wheel0[] = "__OTR__bowser_kart/kart_059_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser059Wheel1[] = "__OTR__bowser_kart/kart_059_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser059Wheel2[] = "__OTR__bowser_kart/kart_059_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser059Wheel3[] = "__OTR__bowser_kart/kart_059_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser060Wheel0[] = "__OTR__bowser_kart/kart_060_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser060Wheel1[] = "__OTR__bowser_kart/kart_060_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser060Wheel2[] = "__OTR__bowser_kart/kart_060_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser060Wheel3[] = "__OTR__bowser_kart/kart_060_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser061Wheel0[] = "__OTR__bowser_kart/kart_061_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser061Wheel1[] = "__OTR__bowser_kart/kart_061_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser061Wheel2[] = "__OTR__bowser_kart/kart_061_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser061Wheel3[] = "__OTR__bowser_kart/kart_061_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser062Wheel0[] = "__OTR__bowser_kart/kart_062_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser062Wheel1[] = "__OTR__bowser_kart/kart_062_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser062Wheel2[] = "__OTR__bowser_kart/kart_062_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser062Wheel3[] = "__OTR__bowser_kart/kart_062_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser063Wheel0[] = "__OTR__bowser_kart/kart_063_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser063Wheel1[] = "__OTR__bowser_kart/kart_063_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser063Wheel2[] = "__OTR__bowser_kart/kart_063_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser063Wheel3[] = "__OTR__bowser_kart/kart_063_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser064Wheel0[] = "__OTR__bowser_kart/kart_064_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser064Wheel1[] = "__OTR__bowser_kart/kart_064_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser064Wheel2[] = "__OTR__bowser_kart/kart_064_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser064Wheel3[] = "__OTR__bowser_kart/kart_064_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser065Wheel0[] = "__OTR__bowser_kart/kart_065_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser065Wheel1[] = "__OTR__bowser_kart/kart_065_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser065Wheel2[] = "__OTR__bowser_kart/kart_065_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser065Wheel3[] = "__OTR__bowser_kart/kart_065_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser066Wheel0[] = "__OTR__bowser_kart/kart_066_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser066Wheel1[] = "__OTR__bowser_kart/kart_066_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser066Wheel2[] = "__OTR__bowser_kart/kart_066_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser066Wheel3[] = "__OTR__bowser_kart/kart_066_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser067Wheel0[] = "__OTR__bowser_kart/kart_067_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser067Wheel1[] = "__OTR__bowser_kart/kart_067_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser067Wheel2[] = "__OTR__bowser_kart/kart_067_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser067Wheel3[] = "__OTR__bowser_kart/kart_067_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser068Wheel0[] = "__OTR__bowser_kart/kart_068_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser068Wheel1[] = "__OTR__bowser_kart/kart_068_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser068Wheel2[] = "__OTR__bowser_kart/kart_068_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser068Wheel3[] = "__OTR__bowser_kart/kart_068_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser069Wheel0[] = "__OTR__bowser_kart/kart_069_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser069Wheel1[] = "__OTR__bowser_kart/kart_069_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser069Wheel2[] = "__OTR__bowser_kart/kart_069_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser069Wheel3[] = "__OTR__bowser_kart/kart_069_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser070Wheel0[] = "__OTR__bowser_kart/kart_070_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser070Wheel1[] = "__OTR__bowser_kart/kart_070_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser070Wheel2[] = "__OTR__bowser_kart/kart_070_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser070Wheel3[] = "__OTR__bowser_kart/kart_070_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser071Wheel0[] = "__OTR__bowser_kart/kart_071_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser071Wheel1[] = "__OTR__bowser_kart/kart_071_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser071Wheel2[] = "__OTR__bowser_kart/kart_071_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser071Wheel3[] = "__OTR__bowser_kart/kart_071_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser072Wheel0[] = "__OTR__bowser_kart/kart_072_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser072Wheel1[] = "__OTR__bowser_kart/kart_072_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser072Wheel2[] = "__OTR__bowser_kart/kart_072_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser072Wheel3[] = "__OTR__bowser_kart/kart_072_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser073Wheel0[] = "__OTR__bowser_kart/kart_073_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser073Wheel1[] = "__OTR__bowser_kart/kart_073_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser073Wheel2[] = "__OTR__bowser_kart/kart_073_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser073Wheel3[] = "__OTR__bowser_kart/kart_073_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser074Wheel0[] = "__OTR__bowser_kart/kart_074_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser074Wheel1[] = "__OTR__bowser_kart/kart_074_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser074Wheel2[] = "__OTR__bowser_kart/kart_074_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser074Wheel3[] = "__OTR__bowser_kart/kart_074_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser075Wheel0[] = "__OTR__bowser_kart/kart_075_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser075Wheel1[] = "__OTR__bowser_kart/kart_075_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser075Wheel2[] = "__OTR__bowser_kart/kart_075_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser075Wheel3[] = "__OTR__bowser_kart/kart_075_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser076Wheel0[] = "__OTR__bowser_kart/kart_076_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser076Wheel1[] = "__OTR__bowser_kart/kart_076_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser076Wheel2[] = "__OTR__bowser_kart/kart_076_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser076Wheel3[] = "__OTR__bowser_kart/kart_076_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser077Wheel0[] = "__OTR__bowser_kart/kart_077_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser077Wheel1[] = "__OTR__bowser_kart/kart_077_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser077Wheel2[] = "__OTR__bowser_kart/kart_077_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser077Wheel3[] = "__OTR__bowser_kart/kart_077_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser078Wheel0[] = "__OTR__bowser_kart/kart_078_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser078Wheel1[] = "__OTR__bowser_kart/kart_078_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser078Wheel2[] = "__OTR__bowser_kart/kart_078_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser078Wheel3[] = "__OTR__bowser_kart/kart_078_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser079Wheel0[] = "__OTR__bowser_kart/kart_079_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser079Wheel1[] = "__OTR__bowser_kart/kart_079_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser079Wheel2[] = "__OTR__bowser_kart/kart_079_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser079Wheel3[] = "__OTR__bowser_kart/kart_079_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser080Wheel0[] = "__OTR__bowser_kart/kart_080_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser080Wheel1[] = "__OTR__bowser_kart/kart_080_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser080Wheel2[] = "__OTR__bowser_kart/kart_080_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser080Wheel3[] = "__OTR__bowser_kart/kart_080_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser081Wheel0[] = "__OTR__bowser_kart/kart_081_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser081Wheel1[] = "__OTR__bowser_kart/kart_081_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser081Wheel2[] = "__OTR__bowser_kart/kart_081_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser081Wheel3[] = "__OTR__bowser_kart/kart_081_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser082Wheel0[] = "__OTR__bowser_kart/kart_082_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser082Wheel1[] = "__OTR__bowser_kart/kart_082_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser082Wheel2[] = "__OTR__bowser_kart/kart_082_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser082Wheel3[] = "__OTR__bowser_kart/kart_082_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser083Wheel0[] = "__OTR__bowser_kart/kart_083_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser083Wheel1[] = "__OTR__bowser_kart/kart_083_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser083Wheel2[] = "__OTR__bowser_kart/kart_083_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser083Wheel3[] = "__OTR__bowser_kart/kart_083_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser084Wheel0[] = "__OTR__bowser_kart/kart_084_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser084Wheel1[] = "__OTR__bowser_kart/kart_084_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser084Wheel2[] = "__OTR__bowser_kart/kart_084_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser084Wheel3[] = "__OTR__bowser_kart/kart_084_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser085Wheel0[] = "__OTR__bowser_kart/kart_085_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser085Wheel1[] = "__OTR__bowser_kart/kart_085_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser085Wheel2[] = "__OTR__bowser_kart/kart_085_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser085Wheel3[] = "__OTR__bowser_kart/kart_085_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser086Wheel0[] = "__OTR__bowser_kart/kart_086_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser086Wheel1[] = "__OTR__bowser_kart/kart_086_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser086Wheel2[] = "__OTR__bowser_kart/kart_086_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser086Wheel3[] = "__OTR__bowser_kart/kart_086_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser087Wheel0[] = "__OTR__bowser_kart/kart_087_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser087Wheel1[] = "__OTR__bowser_kart/kart_087_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser087Wheel2[] = "__OTR__bowser_kart/kart_087_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser087Wheel3[] = "__OTR__bowser_kart/kart_087_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser088Wheel0[] = "__OTR__bowser_kart/kart_088_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser088Wheel1[] = "__OTR__bowser_kart/kart_088_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser088Wheel2[] = "__OTR__bowser_kart/kart_088_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser088Wheel3[] = "__OTR__bowser_kart/kart_088_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser089Wheel0[] = "__OTR__bowser_kart/kart_089_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser089Wheel1[] = "__OTR__bowser_kart/kart_089_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser089Wheel2[] = "__OTR__bowser_kart/kart_089_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser089Wheel3[] = "__OTR__bowser_kart/kart_089_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser090Wheel0[] = "__OTR__bowser_kart/kart_090_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser090Wheel1[] = "__OTR__bowser_kart/kart_090_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser090Wheel2[] = "__OTR__bowser_kart/kart_090_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser090Wheel3[] = "__OTR__bowser_kart/kart_090_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser091Wheel0[] = "__OTR__bowser_kart/kart_091_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser091Wheel1[] = "__OTR__bowser_kart/kart_091_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser091Wheel2[] = "__OTR__bowser_kart/kart_091_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser091Wheel3[] = "__OTR__bowser_kart/kart_091_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser092Wheel0[] = "__OTR__bowser_kart/kart_092_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser092Wheel1[] = "__OTR__bowser_kart/kart_092_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser092Wheel2[] = "__OTR__bowser_kart/kart_092_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser092Wheel3[] = "__OTR__bowser_kart/kart_092_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser093Wheel0[] = "__OTR__bowser_kart/kart_093_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser093Wheel1[] = "__OTR__bowser_kart/kart_093_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser093Wheel2[] = "__OTR__bowser_kart/kart_093_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser093Wheel3[] = "__OTR__bowser_kart/kart_093_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser094Wheel0[] = "__OTR__bowser_kart/kart_094_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser094Wheel1[] = "__OTR__bowser_kart/kart_094_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser094Wheel2[] = "__OTR__bowser_kart/kart_094_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser094Wheel3[] = "__OTR__bowser_kart/kart_094_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser095Wheel0[] = "__OTR__bowser_kart/kart_095_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser095Wheel1[] = "__OTR__bowser_kart/kart_095_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser095Wheel2[] = "__OTR__bowser_kart/kart_095_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser095Wheel3[] = "__OTR__bowser_kart/kart_095_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser096Wheel0[] = "__OTR__bowser_kart/kart_096_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser096Wheel1[] = "__OTR__bowser_kart/kart_096_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser096Wheel2[] = "__OTR__bowser_kart/kart_096_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser096Wheel3[] = "__OTR__bowser_kart/kart_096_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser097Wheel0[] = "__OTR__bowser_kart/kart_097_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser097Wheel1[] = "__OTR__bowser_kart/kart_097_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser097Wheel2[] = "__OTR__bowser_kart/kart_097_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser097Wheel3[] = "__OTR__bowser_kart/kart_097_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser098Wheel0[] = "__OTR__bowser_kart/kart_098_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser098Wheel1[] = "__OTR__bowser_kart/kart_098_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser098Wheel2[] = "__OTR__bowser_kart/kart_098_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser098Wheel3[] = "__OTR__bowser_kart/kart_098_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser099Wheel0[] = "__OTR__bowser_kart/kart_099_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser099Wheel1[] = "__OTR__bowser_kart/kart_099_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser099Wheel2[] = "__OTR__bowser_kart/kart_099_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser099Wheel3[] = "__OTR__bowser_kart/kart_099_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser100Wheel0[] = "__OTR__bowser_kart/kart_100_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser100Wheel1[] = "__OTR__bowser_kart/kart_100_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser100Wheel2[] = "__OTR__bowser_kart/kart_100_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser100Wheel3[] = "__OTR__bowser_kart/kart_100_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser101Wheel0[] = "__OTR__bowser_kart/kart_101_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser101Wheel1[] = "__OTR__bowser_kart/kart_101_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser101Wheel2[] = "__OTR__bowser_kart/kart_101_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser101Wheel3[] = "__OTR__bowser_kart/kart_101_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser102Wheel0[] = "__OTR__bowser_kart/kart_102_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser102Wheel1[] = "__OTR__bowser_kart/kart_102_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser102Wheel2[] = "__OTR__bowser_kart/kart_102_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser102Wheel3[] = "__OTR__bowser_kart/kart_102_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser103Wheel0[] = "__OTR__bowser_kart/kart_103_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser103Wheel1[] = "__OTR__bowser_kart/kart_103_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser103Wheel2[] = "__OTR__bowser_kart/kart_103_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser103Wheel3[] = "__OTR__bowser_kart/kart_103_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser104Wheel0[] = "__OTR__bowser_kart/kart_104_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser104Wheel1[] = "__OTR__bowser_kart/kart_104_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser104Wheel2[] = "__OTR__bowser_kart/kart_104_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser104Wheel3[] = "__OTR__bowser_kart/kart_104_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser105Wheel0[] = "__OTR__bowser_kart/kart_105_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser105Wheel1[] = "__OTR__bowser_kart/kart_105_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser105Wheel2[] = "__OTR__bowser_kart/kart_105_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser105Wheel3[] = "__OTR__bowser_kart/kart_105_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser106Wheel0[] = "__OTR__bowser_kart/kart_106_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser106Wheel1[] = "__OTR__bowser_kart/kart_106_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser106Wheel2[] = "__OTR__bowser_kart/kart_106_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser106Wheel3[] = "__OTR__bowser_kart/kart_106_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser107Wheel0[] = "__OTR__bowser_kart/kart_107_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser107Wheel1[] = "__OTR__bowser_kart/kart_107_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser107Wheel2[] = "__OTR__bowser_kart/kart_107_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser107Wheel3[] = "__OTR__bowser_kart/kart_107_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser108Wheel0[] = "__OTR__bowser_kart/kart_108_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser108Wheel1[] = "__OTR__bowser_kart/kart_108_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser108Wheel2[] = "__OTR__bowser_kart/kart_108_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser108Wheel3[] = "__OTR__bowser_kart/kart_108_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser109Wheel0[] = "__OTR__bowser_kart/kart_109_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser109Wheel1[] = "__OTR__bowser_kart/kart_109_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser109Wheel2[] = "__OTR__bowser_kart/kart_109_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser109Wheel3[] = "__OTR__bowser_kart/kart_109_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser110Wheel0[] = "__OTR__bowser_kart/kart_110_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser110Wheel1[] = "__OTR__bowser_kart/kart_110_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser110Wheel2[] = "__OTR__bowser_kart/kart_110_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser110Wheel3[] = "__OTR__bowser_kart/kart_110_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser111Wheel0[] = "__OTR__bowser_kart/kart_111_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser111Wheel1[] = "__OTR__bowser_kart/kart_111_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser111Wheel2[] = "__OTR__bowser_kart/kart_111_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser111Wheel3[] = "__OTR__bowser_kart/kart_111_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser112Wheel0[] = "__OTR__bowser_kart/kart_112_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser112Wheel1[] = "__OTR__bowser_kart/kart_112_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser112Wheel2[] = "__OTR__bowser_kart/kart_112_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser112Wheel3[] = "__OTR__bowser_kart/kart_112_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser113Wheel0[] = "__OTR__bowser_kart/kart_113_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser113Wheel1[] = "__OTR__bowser_kart/kart_113_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser113Wheel2[] = "__OTR__bowser_kart/kart_113_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser113Wheel3[] = "__OTR__bowser_kart/kart_113_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser114Wheel0[] = "__OTR__bowser_kart/kart_114_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser114Wheel1[] = "__OTR__bowser_kart/kart_114_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser114Wheel2[] = "__OTR__bowser_kart/kart_114_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser114Wheel3[] = "__OTR__bowser_kart/kart_114_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser115Wheel0[] = "__OTR__bowser_kart/kart_115_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser115Wheel1[] = "__OTR__bowser_kart/kart_115_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser115Wheel2[] = "__OTR__bowser_kart/kart_115_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser115Wheel3[] = "__OTR__bowser_kart/kart_115_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser116Wheel0[] = "__OTR__bowser_kart/kart_116_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser116Wheel1[] = "__OTR__bowser_kart/kart_116_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser116Wheel2[] = "__OTR__bowser_kart/kart_116_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser116Wheel3[] = "__OTR__bowser_kart/kart_116_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser117Wheel0[] = "__OTR__bowser_kart/kart_117_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser117Wheel1[] = "__OTR__bowser_kart/kart_117_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser117Wheel2[] = "__OTR__bowser_kart/kart_117_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser117Wheel3[] = "__OTR__bowser_kart/kart_117_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser118Wheel0[] = "__OTR__bowser_kart/kart_118_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser118Wheel1[] = "__OTR__bowser_kart/kart_118_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser118Wheel2[] = "__OTR__bowser_kart/kart_118_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser118Wheel3[] = "__OTR__bowser_kart/kart_118_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser119Wheel0[] = "__OTR__bowser_kart/kart_119_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser119Wheel1[] = "__OTR__bowser_kart/kart_119_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser119Wheel2[] = "__OTR__bowser_kart/kart_119_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser119Wheel3[] = "__OTR__bowser_kart/kart_119_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser120Wheel0[] = "__OTR__bowser_kart/kart_120_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser120Wheel1[] = "__OTR__bowser_kart/kart_120_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser120Wheel2[] = "__OTR__bowser_kart/kart_120_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser120Wheel3[] = "__OTR__bowser_kart/kart_120_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser121Wheel0[] = "__OTR__bowser_kart/kart_121_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser121Wheel1[] = "__OTR__bowser_kart/kart_121_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser121Wheel2[] = "__OTR__bowser_kart/kart_121_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser121Wheel3[] = "__OTR__bowser_kart/kart_121_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser122Wheel0[] = "__OTR__bowser_kart/kart_122_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser122Wheel1[] = "__OTR__bowser_kart/kart_122_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser122Wheel2[] = "__OTR__bowser_kart/kart_122_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser122Wheel3[] = "__OTR__bowser_kart/kart_122_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser123Wheel0[] = "__OTR__bowser_kart/kart_123_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser123Wheel1[] = "__OTR__bowser_kart/kart_123_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser123Wheel2[] = "__OTR__bowser_kart/kart_123_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser123Wheel3[] = "__OTR__bowser_kart/kart_123_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser124Wheel0[] = "__OTR__bowser_kart/kart_124_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser124Wheel1[] = "__OTR__bowser_kart/kart_124_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser124Wheel2[] = "__OTR__bowser_kart/kart_124_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser124Wheel3[] = "__OTR__bowser_kart/kart_124_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser125Wheel0[] = "__OTR__bowser_kart/kart_125_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser125Wheel1[] = "__OTR__bowser_kart/kart_125_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser125Wheel2[] = "__OTR__bowser_kart/kart_125_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser125Wheel3[] = "__OTR__bowser_kart/kart_125_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser126Wheel0[] = "__OTR__bowser_kart/kart_126_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser126Wheel1[] = "__OTR__bowser_kart/kart_126_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser126Wheel2[] = "__OTR__bowser_kart/kart_126_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser126Wheel3[] = "__OTR__bowser_kart/kart_126_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser127Wheel0[] = "__OTR__bowser_kart/kart_127_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser127Wheel1[] = "__OTR__bowser_kart/kart_127_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser127Wheel2[] = "__OTR__bowser_kart/kart_127_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser127Wheel3[] = "__OTR__bowser_kart/kart_127_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser128Wheel0[] = "__OTR__bowser_kart/kart_128_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser128Wheel1[] = "__OTR__bowser_kart/kart_128_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser128Wheel2[] = "__OTR__bowser_kart/kart_128_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser128Wheel3[] = "__OTR__bowser_kart/kart_128_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser129Wheel0[] = "__OTR__bowser_kart/kart_129_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser129Wheel1[] = "__OTR__bowser_kart/kart_129_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser129Wheel2[] = "__OTR__bowser_kart/kart_129_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser129Wheel3[] = "__OTR__bowser_kart/kart_129_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser130Wheel0[] = "__OTR__bowser_kart/kart_130_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser130Wheel1[] = "__OTR__bowser_kart/kart_130_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser130Wheel2[] = "__OTR__bowser_kart/kart_130_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser130Wheel3[] = "__OTR__bowser_kart/kart_130_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser131Wheel0[] = "__OTR__bowser_kart/kart_131_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser131Wheel1[] = "__OTR__bowser_kart/kart_131_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser131Wheel2[] = "__OTR__bowser_kart/kart_131_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser131Wheel3[] = "__OTR__bowser_kart/kart_131_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser132Wheel0[] = "__OTR__bowser_kart/kart_132_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser132Wheel1[] = "__OTR__bowser_kart/kart_132_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser132Wheel2[] = "__OTR__bowser_kart/kart_132_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser132Wheel3[] = "__OTR__bowser_kart/kart_132_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser133Wheel0[] = "__OTR__bowser_kart/kart_133_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser133Wheel1[] = "__OTR__bowser_kart/kart_133_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser133Wheel2[] = "__OTR__bowser_kart/kart_133_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser133Wheel3[] = "__OTR__bowser_kart/kart_133_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser134Wheel0[] = "__OTR__bowser_kart/kart_134_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser134Wheel1[] = "__OTR__bowser_kart/kart_134_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser134Wheel2[] = "__OTR__bowser_kart/kart_134_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser134Wheel3[] = "__OTR__bowser_kart/kart_134_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser135Wheel0[] = "__OTR__bowser_kart/kart_135_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser135Wheel1[] = "__OTR__bowser_kart/kart_135_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser135Wheel2[] = "__OTR__bowser_kart/kart_135_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser135Wheel3[] = "__OTR__bowser_kart/kart_135_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser136Wheel0[] = "__OTR__bowser_kart/kart_136_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser136Wheel1[] = "__OTR__bowser_kart/kart_136_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser136Wheel2[] = "__OTR__bowser_kart/kart_136_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser136Wheel3[] = "__OTR__bowser_kart/kart_136_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser137Wheel0[] = "__OTR__bowser_kart/kart_137_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser137Wheel1[] = "__OTR__bowser_kart/kart_137_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser137Wheel2[] = "__OTR__bowser_kart/kart_137_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser137Wheel3[] = "__OTR__bowser_kart/kart_137_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser138Wheel0[] = "__OTR__bowser_kart/kart_138_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser138Wheel1[] = "__OTR__bowser_kart/kart_138_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser138Wheel2[] = "__OTR__bowser_kart/kart_138_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser138Wheel3[] = "__OTR__bowser_kart/kart_138_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser139Wheel0[] = "__OTR__bowser_kart/kart_139_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser139Wheel1[] = "__OTR__bowser_kart/kart_139_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser139Wheel2[] = "__OTR__bowser_kart/kart_139_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser139Wheel3[] = "__OTR__bowser_kart/kart_139_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser140Wheel0[] = "__OTR__bowser_kart/kart_140_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser140Wheel1[] = "__OTR__bowser_kart/kart_140_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser140Wheel2[] = "__OTR__bowser_kart/kart_140_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser140Wheel3[] = "__OTR__bowser_kart/kart_140_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser141Wheel0[] = "__OTR__bowser_kart/kart_141_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser141Wheel1[] = "__OTR__bowser_kart/kart_141_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser141Wheel2[] = "__OTR__bowser_kart/kart_141_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser141Wheel3[] = "__OTR__bowser_kart/kart_141_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser142Wheel0[] = "__OTR__bowser_kart/kart_142_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser142Wheel1[] = "__OTR__bowser_kart/kart_142_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser142Wheel2[] = "__OTR__bowser_kart/kart_142_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser142Wheel3[] = "__OTR__bowser_kart/kart_142_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser143Wheel0[] = "__OTR__bowser_kart/kart_143_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser143Wheel1[] = "__OTR__bowser_kart/kart_143_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser143Wheel2[] = "__OTR__bowser_kart/kart_143_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser143Wheel3[] = "__OTR__bowser_kart/kart_143_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser144Wheel0[] = "__OTR__bowser_kart/kart_144_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser144Wheel1[] = "__OTR__bowser_kart/kart_144_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser144Wheel2[] = "__OTR__bowser_kart/kart_144_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser144Wheel3[] = "__OTR__bowser_kart/kart_144_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser145Wheel0[] = "__OTR__bowser_kart/kart_145_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser145Wheel1[] = "__OTR__bowser_kart/kart_145_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser145Wheel2[] = "__OTR__bowser_kart/kart_145_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser145Wheel3[] = "__OTR__bowser_kart/kart_145_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser146Wheel0[] = "__OTR__bowser_kart/kart_146_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser146Wheel1[] = "__OTR__bowser_kart/kart_146_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser146Wheel2[] = "__OTR__bowser_kart/kart_146_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser146Wheel3[] = "__OTR__bowser_kart/kart_146_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser147Wheel0[] = "__OTR__bowser_kart/kart_147_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser147Wheel1[] = "__OTR__bowser_kart/kart_147_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser147Wheel2[] = "__OTR__bowser_kart/kart_147_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser147Wheel3[] = "__OTR__bowser_kart/kart_147_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser148Wheel0[] = "__OTR__bowser_kart/kart_148_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser148Wheel1[] = "__OTR__bowser_kart/kart_148_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser148Wheel2[] = "__OTR__bowser_kart/kart_148_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser148Wheel3[] = "__OTR__bowser_kart/kart_148_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser149Wheel0[] = "__OTR__bowser_kart/kart_149_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser149Wheel1[] = "__OTR__bowser_kart/kart_149_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser149Wheel2[] = "__OTR__bowser_kart/kart_149_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser149Wheel3[] = "__OTR__bowser_kart/kart_149_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser150Wheel0[] = "__OTR__bowser_kart/kart_150_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser150Wheel1[] = "__OTR__bowser_kart/kart_150_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser150Wheel2[] = "__OTR__bowser_kart/kart_150_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser150Wheel3[] = "__OTR__bowser_kart/kart_150_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser151Wheel0[] = "__OTR__bowser_kart/kart_151_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser151Wheel1[] = "__OTR__bowser_kart/kart_151_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser151Wheel2[] = "__OTR__bowser_kart/kart_151_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser151Wheel3[] = "__OTR__bowser_kart/kart_151_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser152Wheel0[] = "__OTR__bowser_kart/kart_152_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser152Wheel1[] = "__OTR__bowser_kart/kart_152_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser152Wheel2[] = "__OTR__bowser_kart/kart_152_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser152Wheel3[] = "__OTR__bowser_kart/kart_152_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser153Wheel0[] = "__OTR__bowser_kart/kart_153_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser153Wheel1[] = "__OTR__bowser_kart/kart_153_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser153Wheel2[] = "__OTR__bowser_kart/kart_153_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser153Wheel3[] = "__OTR__bowser_kart/kart_153_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser154Wheel0[] = "__OTR__bowser_kart/kart_154_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser154Wheel1[] = "__OTR__bowser_kart/kart_154_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser154Wheel2[] = "__OTR__bowser_kart/kart_154_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser154Wheel3[] = "__OTR__bowser_kart/kart_154_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser155Wheel0[] = "__OTR__bowser_kart/kart_155_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser155Wheel1[] = "__OTR__bowser_kart/kart_155_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser155Wheel2[] = "__OTR__bowser_kart/kart_155_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser155Wheel3[] = "__OTR__bowser_kart/kart_155_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser156Wheel0[] = "__OTR__bowser_kart/kart_156_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser156Wheel1[] = "__OTR__bowser_kart/kart_156_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser156Wheel2[] = "__OTR__bowser_kart/kart_156_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser156Wheel3[] = "__OTR__bowser_kart/kart_156_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser157Wheel0[] = "__OTR__bowser_kart/kart_157_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser157Wheel1[] = "__OTR__bowser_kart/kart_157_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser157Wheel2[] = "__OTR__bowser_kart/kart_157_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser157Wheel3[] = "__OTR__bowser_kart/kart_157_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser158Wheel0[] = "__OTR__bowser_kart/kart_158_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser158Wheel1[] = "__OTR__bowser_kart/kart_158_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser158Wheel2[] = "__OTR__bowser_kart/kart_158_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser158Wheel3[] = "__OTR__bowser_kart/kart_158_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser159Wheel0[] = "__OTR__bowser_kart/kart_159_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser159Wheel1[] = "__OTR__bowser_kart/kart_159_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser159Wheel2[] = "__OTR__bowser_kart/kart_159_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser159Wheel3[] = "__OTR__bowser_kart/kart_159_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser160Wheel0[] = "__OTR__bowser_kart/kart_160_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser160Wheel1[] = "__OTR__bowser_kart/kart_160_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser160Wheel2[] = "__OTR__bowser_kart/kart_160_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser160Wheel3[] = "__OTR__bowser_kart/kart_160_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser161Wheel0[] = "__OTR__bowser_kart/kart_161_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser161Wheel1[] = "__OTR__bowser_kart/kart_161_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser161Wheel2[] = "__OTR__bowser_kart/kart_161_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser161Wheel3[] = "__OTR__bowser_kart/kart_161_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser162Wheel0[] = "__OTR__bowser_kart/kart_162_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser162Wheel1[] = "__OTR__bowser_kart/kart_162_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser162Wheel2[] = "__OTR__bowser_kart/kart_162_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser162Wheel3[] = "__OTR__bowser_kart/kart_162_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser163Wheel0[] = "__OTR__bowser_kart/kart_163_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser163Wheel1[] = "__OTR__bowser_kart/kart_163_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser163Wheel2[] = "__OTR__bowser_kart/kart_163_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser163Wheel3[] = "__OTR__bowser_kart/kart_163_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser164Wheel0[] = "__OTR__bowser_kart/kart_164_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser164Wheel1[] = "__OTR__bowser_kart/kart_164_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser164Wheel2[] = "__OTR__bowser_kart/kart_164_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser164Wheel3[] = "__OTR__bowser_kart/kart_164_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser165Wheel0[] = "__OTR__bowser_kart/kart_165_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser165Wheel1[] = "__OTR__bowser_kart/kart_165_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser165Wheel2[] = "__OTR__bowser_kart/kart_165_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser165Wheel3[] = "__OTR__bowser_kart/kart_165_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser166Wheel0[] = "__OTR__bowser_kart/kart_166_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser166Wheel1[] = "__OTR__bowser_kart/kart_166_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser166Wheel2[] = "__OTR__bowser_kart/kart_166_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser166Wheel3[] = "__OTR__bowser_kart/kart_166_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser167Wheel0[] = "__OTR__bowser_kart/kart_167_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser167Wheel1[] = "__OTR__bowser_kart/kart_167_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser167Wheel2[] = "__OTR__bowser_kart/kart_167_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser167Wheel3[] = "__OTR__bowser_kart/kart_167_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser168Wheel0[] = "__OTR__bowser_kart/kart_168_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser168Wheel1[] = "__OTR__bowser_kart/kart_168_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser168Wheel2[] = "__OTR__bowser_kart/kart_168_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser168Wheel3[] = "__OTR__bowser_kart/kart_168_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser169Wheel0[] = "__OTR__bowser_kart/kart_169_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser169Wheel1[] = "__OTR__bowser_kart/kart_169_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser169Wheel2[] = "__OTR__bowser_kart/kart_169_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser169Wheel3[] = "__OTR__bowser_kart/kart_169_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser170Wheel0[] = "__OTR__bowser_kart/kart_170_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser170Wheel1[] = "__OTR__bowser_kart/kart_170_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser170Wheel2[] = "__OTR__bowser_kart/kart_170_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser170Wheel3[] = "__OTR__bowser_kart/kart_170_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser171Wheel0[] = "__OTR__bowser_kart/kart_171_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser171Wheel1[] = "__OTR__bowser_kart/kart_171_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser171Wheel2[] = "__OTR__bowser_kart/kart_171_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser171Wheel3[] = "__OTR__bowser_kart/kart_171_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser172Wheel0[] = "__OTR__bowser_kart/kart_172_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser172Wheel1[] = "__OTR__bowser_kart/kart_172_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser172Wheel2[] = "__OTR__bowser_kart/kart_172_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser172Wheel3[] = "__OTR__bowser_kart/kart_172_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser173Wheel0[] = "__OTR__bowser_kart/kart_173_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser173Wheel1[] = "__OTR__bowser_kart/kart_173_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser173Wheel2[] = "__OTR__bowser_kart/kart_173_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser173Wheel3[] = "__OTR__bowser_kart/kart_173_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser174Wheel0[] = "__OTR__bowser_kart/kart_174_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser174Wheel1[] = "__OTR__bowser_kart/kart_174_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser174Wheel2[] = "__OTR__bowser_kart/kart_174_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser174Wheel3[] = "__OTR__bowser_kart/kart_174_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser175Wheel0[] = "__OTR__bowser_kart/kart_175_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser175Wheel1[] = "__OTR__bowser_kart/kart_175_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser175Wheel2[] = "__OTR__bowser_kart/kart_175_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser175Wheel3[] = "__OTR__bowser_kart/kart_175_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser176Wheel0[] = "__OTR__bowser_kart/kart_176_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser176Wheel1[] = "__OTR__bowser_kart/kart_176_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser176Wheel2[] = "__OTR__bowser_kart/kart_176_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser176Wheel3[] = "__OTR__bowser_kart/kart_176_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser177Wheel0[] = "__OTR__bowser_kart/kart_177_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser177Wheel1[] = "__OTR__bowser_kart/kart_177_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser177Wheel2[] = "__OTR__bowser_kart/kart_177_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser177Wheel3[] = "__OTR__bowser_kart/kart_177_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser178Wheel0[] = "__OTR__bowser_kart/kart_178_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser178Wheel1[] = "__OTR__bowser_kart/kart_178_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser178Wheel2[] = "__OTR__bowser_kart/kart_178_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser178Wheel3[] = "__OTR__bowser_kart/kart_178_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser179Wheel0[] = "__OTR__bowser_kart/kart_179_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser179Wheel1[] = "__OTR__bowser_kart/kart_179_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser179Wheel2[] = "__OTR__bowser_kart/kart_179_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser179Wheel3[] = "__OTR__bowser_kart/kart_179_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser180Wheel0[] = "__OTR__bowser_kart/kart_180_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser180Wheel1[] = "__OTR__bowser_kart/kart_180_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser180Wheel2[] = "__OTR__bowser_kart/kart_180_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser180Wheel3[] = "__OTR__bowser_kart/kart_180_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser181Wheel0[] = "__OTR__bowser_kart/kart_181_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser181Wheel1[] = "__OTR__bowser_kart/kart_181_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser181Wheel2[] = "__OTR__bowser_kart/kart_181_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser181Wheel3[] = "__OTR__bowser_kart/kart_181_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser182Wheel0[] = "__OTR__bowser_kart/kart_182_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser182Wheel1[] = "__OTR__bowser_kart/kart_182_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser182Wheel2[] = "__OTR__bowser_kart/kart_182_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser182Wheel3[] = "__OTR__bowser_kart/kart_182_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser183Wheel0[] = "__OTR__bowser_kart/kart_183_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser183Wheel1[] = "__OTR__bowser_kart/kart_183_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser183Wheel2[] = "__OTR__bowser_kart/kart_183_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser183Wheel3[] = "__OTR__bowser_kart/kart_183_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser184Wheel0[] = "__OTR__bowser_kart/kart_184_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser184Wheel1[] = "__OTR__bowser_kart/kart_184_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser184Wheel2[] = "__OTR__bowser_kart/kart_184_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser184Wheel3[] = "__OTR__bowser_kart/kart_184_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser185Wheel0[] = "__OTR__bowser_kart/kart_185_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser185Wheel1[] = "__OTR__bowser_kart/kart_185_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser185Wheel2[] = "__OTR__bowser_kart/kart_185_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser185Wheel3[] = "__OTR__bowser_kart/kart_185_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser186Wheel0[] = "__OTR__bowser_kart/kart_186_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser186Wheel1[] = "__OTR__bowser_kart/kart_186_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser186Wheel2[] = "__OTR__bowser_kart/kart_186_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser186Wheel3[] = "__OTR__bowser_kart/kart_186_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser187Wheel0[] = "__OTR__bowser_kart/kart_187_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser187Wheel1[] = "__OTR__bowser_kart/kart_187_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser187Wheel2[] = "__OTR__bowser_kart/kart_187_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser187Wheel3[] = "__OTR__bowser_kart/kart_187_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser188Wheel0[] = "__OTR__bowser_kart/kart_188_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser188Wheel1[] = "__OTR__bowser_kart/kart_188_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser188Wheel2[] = "__OTR__bowser_kart/kart_188_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser188Wheel3[] = "__OTR__bowser_kart/kart_188_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser189Wheel0[] = "__OTR__bowser_kart/kart_189_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser189Wheel1[] = "__OTR__bowser_kart/kart_189_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser189Wheel2[] = "__OTR__bowser_kart/kart_189_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser189Wheel3[] = "__OTR__bowser_kart/kart_189_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser190Wheel0[] = "__OTR__bowser_kart/kart_190_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser190Wheel1[] = "__OTR__bowser_kart/kart_190_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser190Wheel2[] = "__OTR__bowser_kart/kart_190_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser190Wheel3[] = "__OTR__bowser_kart/kart_190_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser191Wheel0[] = "__OTR__bowser_kart/kart_191_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser191Wheel1[] = "__OTR__bowser_kart/kart_191_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser191Wheel2[] = "__OTR__bowser_kart/kart_191_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser191Wheel3[] = "__OTR__bowser_kart/kart_191_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser192Wheel0[] = "__OTR__bowser_kart/kart_192_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser192Wheel1[] = "__OTR__bowser_kart/kart_192_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser192Wheel2[] = "__OTR__bowser_kart/kart_192_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser192Wheel3[] = "__OTR__bowser_kart/kart_192_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser193Wheel0[] = "__OTR__bowser_kart/kart_193_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser193Wheel1[] = "__OTR__bowser_kart/kart_193_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser193Wheel2[] = "__OTR__bowser_kart/kart_193_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser193Wheel3[] = "__OTR__bowser_kart/kart_193_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser194Wheel0[] = "__OTR__bowser_kart/kart_194_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser194Wheel1[] = "__OTR__bowser_kart/kart_194_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser194Wheel2[] = "__OTR__bowser_kart/kart_194_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser194Wheel3[] = "__OTR__bowser_kart/kart_194_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser195Wheel0[] = "__OTR__bowser_kart/kart_195_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser195Wheel1[] = "__OTR__bowser_kart/kart_195_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser195Wheel2[] = "__OTR__bowser_kart/kart_195_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser195Wheel3[] = "__OTR__bowser_kart/kart_195_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser196Wheel0[] = "__OTR__bowser_kart/kart_196_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser196Wheel1[] = "__OTR__bowser_kart/kart_196_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser196Wheel2[] = "__OTR__bowser_kart/kart_196_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser196Wheel3[] = "__OTR__bowser_kart/kart_196_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser197Wheel0[] = "__OTR__bowser_kart/kart_197_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser197Wheel1[] = "__OTR__bowser_kart/kart_197_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser197Wheel2[] = "__OTR__bowser_kart/kart_197_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser197Wheel3[] = "__OTR__bowser_kart/kart_197_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser198Wheel0[] = "__OTR__bowser_kart/kart_198_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser198Wheel1[] = "__OTR__bowser_kart/kart_198_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser198Wheel2[] = "__OTR__bowser_kart/kart_198_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser198Wheel3[] = "__OTR__bowser_kart/kart_198_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser199Wheel0[] = "__OTR__bowser_kart/kart_199_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser199Wheel1[] = "__OTR__bowser_kart/kart_199_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser199Wheel2[] = "__OTR__bowser_kart/kart_199_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser199Wheel3[] = "__OTR__bowser_kart/kart_199_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser200Wheel0[] = "__OTR__bowser_kart/kart_200_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser200Wheel1[] = "__OTR__bowser_kart/kart_200_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser200Wheel2[] = "__OTR__bowser_kart/kart_200_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser200Wheel3[] = "__OTR__bowser_kart/kart_200_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser201Wheel0[] = "__OTR__bowser_kart/kart_201_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser201Wheel1[] = "__OTR__bowser_kart/kart_201_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser201Wheel2[] = "__OTR__bowser_kart/kart_201_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser201Wheel3[] = "__OTR__bowser_kart/kart_201_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser202Wheel0[] = "__OTR__bowser_kart/kart_202_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser202Wheel1[] = "__OTR__bowser_kart/kart_202_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser202Wheel2[] = "__OTR__bowser_kart/kart_202_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser202Wheel3[] = "__OTR__bowser_kart/kart_202_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser203Wheel0[] = "__OTR__bowser_kart/kart_203_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser203Wheel1[] = "__OTR__bowser_kart/kart_203_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser203Wheel2[] = "__OTR__bowser_kart/kart_203_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser203Wheel3[] = "__OTR__bowser_kart/kart_203_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser204Wheel0[] = "__OTR__bowser_kart/kart_204_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser204Wheel1[] = "__OTR__bowser_kart/kart_204_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser204Wheel2[] = "__OTR__bowser_kart/kart_204_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser204Wheel3[] = "__OTR__bowser_kart/kart_204_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser205Wheel0[] = "__OTR__bowser_kart/kart_205_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser205Wheel1[] = "__OTR__bowser_kart/kart_205_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser205Wheel2[] = "__OTR__bowser_kart/kart_205_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser205Wheel3[] = "__OTR__bowser_kart/kart_205_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser206Wheel0[] = "__OTR__bowser_kart/kart_206_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser206Wheel1[] = "__OTR__bowser_kart/kart_206_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser206Wheel2[] = "__OTR__bowser_kart/kart_206_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser206Wheel3[] = "__OTR__bowser_kart/kart_206_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser207Wheel0[] = "__OTR__bowser_kart/kart_207_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser207Wheel1[] = "__OTR__bowser_kart/kart_207_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser207Wheel2[] = "__OTR__bowser_kart/kart_207_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser207Wheel3[] = "__OTR__bowser_kart/kart_207_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser208Wheel0[] = "__OTR__bowser_kart/kart_208_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser208Wheel1[] = "__OTR__bowser_kart/kart_208_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser208Wheel2[] = "__OTR__bowser_kart/kart_208_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser208Wheel3[] = "__OTR__bowser_kart/kart_208_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser209Wheel0[] = "__OTR__bowser_kart/kart_209_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser209Wheel1[] = "__OTR__bowser_kart/kart_209_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser209Wheel2[] = "__OTR__bowser_kart/kart_209_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser209Wheel3[] = "__OTR__bowser_kart/kart_209_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser210Wheel0[] = "__OTR__bowser_kart/kart_210_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser210Wheel1[] = "__OTR__bowser_kart/kart_210_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser210Wheel2[] = "__OTR__bowser_kart/kart_210_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser210Wheel3[] = "__OTR__bowser_kart/kart_210_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser211Wheel0[] = "__OTR__bowser_kart/kart_211_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser211Wheel1[] = "__OTR__bowser_kart/kart_211_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser211Wheel2[] = "__OTR__bowser_kart/kart_211_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser211Wheel3[] = "__OTR__bowser_kart/kart_211_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser212Wheel0[] = "__OTR__bowser_kart/kart_212_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser212Wheel1[] = "__OTR__bowser_kart/kart_212_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser212Wheel2[] = "__OTR__bowser_kart/kart_212_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser212Wheel3[] = "__OTR__bowser_kart/kart_212_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser213Wheel0[] = "__OTR__bowser_kart/kart_213_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser213Wheel1[] = "__OTR__bowser_kart/kart_213_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser213Wheel2[] = "__OTR__bowser_kart/kart_213_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser213Wheel3[] = "__OTR__bowser_kart/kart_213_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser214Wheel0[] = "__OTR__bowser_kart/kart_214_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser214Wheel1[] = "__OTR__bowser_kart/kart_214_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser214Wheel2[] = "__OTR__bowser_kart/kart_214_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser214Wheel3[] = "__OTR__bowser_kart/kart_214_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser215Wheel0[] = "__OTR__bowser_kart/kart_215_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser215Wheel1[] = "__OTR__bowser_kart/kart_215_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser215Wheel2[] = "__OTR__bowser_kart/kart_215_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser215Wheel3[] = "__OTR__bowser_kart/kart_215_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser216Wheel0[] = "__OTR__bowser_kart/kart_216_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser216Wheel1[] = "__OTR__bowser_kart/kart_216_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser216Wheel2[] = "__OTR__bowser_kart/kart_216_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser216Wheel3[] = "__OTR__bowser_kart/kart_216_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser217Wheel0[] = "__OTR__bowser_kart/kart_217_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser217Wheel1[] = "__OTR__bowser_kart/kart_217_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser217Wheel2[] = "__OTR__bowser_kart/kart_217_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser217Wheel3[] = "__OTR__bowser_kart/kart_217_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser218Wheel0[] = "__OTR__bowser_kart/kart_218_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser218Wheel1[] = "__OTR__bowser_kart/kart_218_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser218Wheel2[] = "__OTR__bowser_kart/kart_218_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser218Wheel3[] = "__OTR__bowser_kart/kart_218_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser219Wheel0[] = "__OTR__bowser_kart/kart_219_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser219Wheel1[] = "__OTR__bowser_kart/kart_219_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser219Wheel2[] = "__OTR__bowser_kart/kart_219_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser219Wheel3[] = "__OTR__bowser_kart/kart_219_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser220Wheel0[] = "__OTR__bowser_kart/kart_220_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser220Wheel1[] = "__OTR__bowser_kart/kart_220_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser220Wheel2[] = "__OTR__bowser_kart/kart_220_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser220Wheel3[] = "__OTR__bowser_kart/kart_220_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser221Wheel0[] = "__OTR__bowser_kart/kart_221_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser221Wheel1[] = "__OTR__bowser_kart/kart_221_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser221Wheel2[] = "__OTR__bowser_kart/kart_221_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser221Wheel3[] = "__OTR__bowser_kart/kart_221_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser222Wheel0[] = "__OTR__bowser_kart/kart_222_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser222Wheel1[] = "__OTR__bowser_kart/kart_222_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser222Wheel2[] = "__OTR__bowser_kart/kart_222_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser222Wheel3[] = "__OTR__bowser_kart/kart_222_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser223Wheel0[] = "__OTR__bowser_kart/kart_223_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser223Wheel1[] = "__OTR__bowser_kart/kart_223_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser223Wheel2[] = "__OTR__bowser_kart/kart_223_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser223Wheel3[] = "__OTR__bowser_kart/kart_223_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser224Wheel0[] = "__OTR__bowser_kart/kart_224_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser224Wheel1[] = "__OTR__bowser_kart/kart_224_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser224Wheel2[] = "__OTR__bowser_kart/kart_224_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser224Wheel3[] = "__OTR__bowser_kart/kart_224_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser225Wheel0[] = "__OTR__bowser_kart/kart_225_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser225Wheel1[] = "__OTR__bowser_kart/kart_225_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser225Wheel2[] = "__OTR__bowser_kart/kart_225_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser225Wheel3[] = "__OTR__bowser_kart/kart_225_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser226Wheel0[] = "__OTR__bowser_kart/kart_226_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser226Wheel1[] = "__OTR__bowser_kart/kart_226_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser226Wheel2[] = "__OTR__bowser_kart/kart_226_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser226Wheel3[] = "__OTR__bowser_kart/kart_226_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser227Wheel0[] = "__OTR__bowser_kart/kart_227_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser227Wheel1[] = "__OTR__bowser_kart/kart_227_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser227Wheel2[] = "__OTR__bowser_kart/kart_227_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser227Wheel3[] = "__OTR__bowser_kart/kart_227_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser228Wheel0[] = "__OTR__bowser_kart/kart_228_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser228Wheel1[] = "__OTR__bowser_kart/kart_228_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser228Wheel2[] = "__OTR__bowser_kart/kart_228_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser228Wheel3[] = "__OTR__bowser_kart/kart_228_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser229Wheel0[] = "__OTR__bowser_kart/kart_229_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser229Wheel1[] = "__OTR__bowser_kart/kart_229_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser229Wheel2[] = "__OTR__bowser_kart/kart_229_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser229Wheel3[] = "__OTR__bowser_kart/kart_229_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser230Wheel0[] = "__OTR__bowser_kart/kart_230_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser230Wheel1[] = "__OTR__bowser_kart/kart_230_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser230Wheel2[] = "__OTR__bowser_kart/kart_230_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser230Wheel3[] = "__OTR__bowser_kart/kart_230_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser231Wheel0[] = "__OTR__bowser_kart/kart_231_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser231Wheel1[] = "__OTR__bowser_kart/kart_231_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser231Wheel2[] = "__OTR__bowser_kart/kart_231_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser231Wheel3[] = "__OTR__bowser_kart/kart_231_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser232Wheel0[] = "__OTR__bowser_kart/kart_232_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser232Wheel1[] = "__OTR__bowser_kart/kart_232_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser232Wheel2[] = "__OTR__bowser_kart/kart_232_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser232Wheel3[] = "__OTR__bowser_kart/kart_232_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser233Wheel0[] = "__OTR__bowser_kart/kart_233_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser233Wheel1[] = "__OTR__bowser_kart/kart_233_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser233Wheel2[] = "__OTR__bowser_kart/kart_233_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser233Wheel3[] = "__OTR__bowser_kart/kart_233_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser234Wheel0[] = "__OTR__bowser_kart/kart_234_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser234Wheel1[] = "__OTR__bowser_kart/kart_234_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser234Wheel2[] = "__OTR__bowser_kart/kart_234_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser234Wheel3[] = "__OTR__bowser_kart/kart_234_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser235Wheel0[] = "__OTR__bowser_kart/kart_235_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser235Wheel1[] = "__OTR__bowser_kart/kart_235_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser235Wheel2[] = "__OTR__bowser_kart/kart_235_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser235Wheel3[] = "__OTR__bowser_kart/kart_235_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser236Wheel0[] = "__OTR__bowser_kart/kart_236_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser236Wheel1[] = "__OTR__bowser_kart/kart_236_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser236Wheel2[] = "__OTR__bowser_kart/kart_236_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser236Wheel3[] = "__OTR__bowser_kart/kart_236_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser237Wheel0[] = "__OTR__bowser_kart/kart_237_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser237Wheel1[] = "__OTR__bowser_kart/kart_237_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser237Wheel2[] = "__OTR__bowser_kart/kart_237_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser237Wheel3[] = "__OTR__bowser_kart/kart_237_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser238Wheel0[] = "__OTR__bowser_kart/kart_238_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser238Wheel1[] = "__OTR__bowser_kart/kart_238_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser238Wheel2[] = "__OTR__bowser_kart/kart_238_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser238Wheel3[] = "__OTR__bowser_kart/kart_238_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser239Wheel0[] = "__OTR__bowser_kart/kart_239_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser239Wheel1[] = "__OTR__bowser_kart/kart_239_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser239Wheel2[] = "__OTR__bowser_kart/kart_239_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser239Wheel3[] = "__OTR__bowser_kart/kart_239_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser240Wheel0[] = "__OTR__bowser_kart/kart_240_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser240Wheel1[] = "__OTR__bowser_kart/kart_240_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser240Wheel2[] = "__OTR__bowser_kart/kart_240_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser240Wheel3[] = "__OTR__bowser_kart/kart_240_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser241Wheel0[] = "__OTR__bowser_kart/kart_241_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser241Wheel1[] = "__OTR__bowser_kart/kart_241_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser241Wheel2[] = "__OTR__bowser_kart/kart_241_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser241Wheel3[] = "__OTR__bowser_kart/kart_241_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser242Wheel0[] = "__OTR__bowser_kart/kart_242_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser242Wheel1[] = "__OTR__bowser_kart/kart_242_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser242Wheel2[] = "__OTR__bowser_kart/kart_242_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser242Wheel3[] = "__OTR__bowser_kart/kart_242_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser243Wheel0[] = "__OTR__bowser_kart/kart_243_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser243Wheel1[] = "__OTR__bowser_kart/kart_243_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser243Wheel2[] = "__OTR__bowser_kart/kart_243_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser243Wheel3[] = "__OTR__bowser_kart/kart_243_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser244Wheel0[] = "__OTR__bowser_kart/kart_244_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser244Wheel1[] = "__OTR__bowser_kart/kart_244_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser244Wheel2[] = "__OTR__bowser_kart/kart_244_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser244Wheel3[] = "__OTR__bowser_kart/kart_244_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser245Wheel0[] = "__OTR__bowser_kart/kart_245_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser245Wheel1[] = "__OTR__bowser_kart/kart_245_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser245Wheel2[] = "__OTR__bowser_kart/kart_245_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser245Wheel3[] = "__OTR__bowser_kart/kart_245_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser246Wheel0[] = "__OTR__bowser_kart/kart_246_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser246Wheel1[] = "__OTR__bowser_kart/kart_246_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser246Wheel2[] = "__OTR__bowser_kart/kart_246_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser246Wheel3[] = "__OTR__bowser_kart/kart_246_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser247Wheel0[] = "__OTR__bowser_kart/kart_247_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser247Wheel1[] = "__OTR__bowser_kart/kart_247_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser247Wheel2[] = "__OTR__bowser_kart/kart_247_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser247Wheel3[] = "__OTR__bowser_kart/kart_247_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser248Wheel0[] = "__OTR__bowser_kart/kart_248_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser248Wheel1[] = "__OTR__bowser_kart/kart_248_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser248Wheel2[] = "__OTR__bowser_kart/kart_248_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser248Wheel3[] = "__OTR__bowser_kart/kart_248_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser249Wheel0[] = "__OTR__bowser_kart/kart_249_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser249Wheel1[] = "__OTR__bowser_kart/kart_249_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser249Wheel2[] = "__OTR__bowser_kart/kart_249_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser249Wheel3[] = "__OTR__bowser_kart/kart_249_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser250Wheel0[] = "__OTR__bowser_kart/kart_250_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser250Wheel1[] = "__OTR__bowser_kart/kart_250_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser250Wheel2[] = "__OTR__bowser_kart/kart_250_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser250Wheel3[] = "__OTR__bowser_kart/kart_250_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser251Wheel0[] = "__OTR__bowser_kart/kart_251_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser251Wheel1[] = "__OTR__bowser_kart/kart_251_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser251Wheel2[] = "__OTR__bowser_kart/kart_251_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser251Wheel3[] = "__OTR__bowser_kart/kart_251_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser252Wheel0[] = "__OTR__bowser_kart/kart_252_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser252Wheel1[] = "__OTR__bowser_kart/kart_252_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser252Wheel2[] = "__OTR__bowser_kart/kart_252_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser252Wheel3[] = "__OTR__bowser_kart/kart_252_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser253Wheel0[] = "__OTR__bowser_kart/kart_253_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser253Wheel1[] = "__OTR__bowser_kart/kart_253_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser253Wheel2[] = "__OTR__bowser_kart/kart_253_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser253Wheel3[] = "__OTR__bowser_kart/kart_253_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser254Wheel0[] = "__OTR__bowser_kart/kart_254_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser254Wheel1[] = "__OTR__bowser_kart/kart_254_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser254Wheel2[] = "__OTR__bowser_kart/kart_254_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser254Wheel3[] = "__OTR__bowser_kart/kart_254_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser255Wheel0[] = "__OTR__bowser_kart/kart_255_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser255Wheel1[] = "__OTR__bowser_kart/kart_255_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser255Wheel2[] = "__OTR__bowser_kart/kart_255_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser255Wheel3[] = "__OTR__bowser_kart/kart_255_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser256Wheel0[] = "__OTR__bowser_kart/kart_256_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser256Wheel1[] = "__OTR__bowser_kart/kart_256_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser256Wheel2[] = "__OTR__bowser_kart/kart_256_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser256Wheel3[] = "__OTR__bowser_kart/kart_256_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser257Wheel0[] = "__OTR__bowser_kart/kart_257_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser257Wheel1[] = "__OTR__bowser_kart/kart_257_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser257Wheel2[] = "__OTR__bowser_kart/kart_257_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser257Wheel3[] = "__OTR__bowser_kart/kart_257_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser258Wheel0[] = "__OTR__bowser_kart/kart_258_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser258Wheel1[] = "__OTR__bowser_kart/kart_258_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser258Wheel2[] = "__OTR__bowser_kart/kart_258_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser258Wheel3[] = "__OTR__bowser_kart/kart_258_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser259Wheel0[] = "__OTR__bowser_kart/kart_259_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser259Wheel1[] = "__OTR__bowser_kart/kart_259_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser259Wheel2[] = "__OTR__bowser_kart/kart_259_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser259Wheel3[] = "__OTR__bowser_kart/kart_259_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser260Wheel0[] = "__OTR__bowser_kart/kart_260_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser260Wheel1[] = "__OTR__bowser_kart/kart_260_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser260Wheel2[] = "__OTR__bowser_kart/kart_260_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser260Wheel3[] = "__OTR__bowser_kart/kart_260_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser261Wheel0[] = "__OTR__bowser_kart/kart_261_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser261Wheel1[] = "__OTR__bowser_kart/kart_261_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser261Wheel2[] = "__OTR__bowser_kart/kart_261_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser261Wheel3[] = "__OTR__bowser_kart/kart_261_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser262Wheel0[] = "__OTR__bowser_kart/kart_262_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser262Wheel1[] = "__OTR__bowser_kart/kart_262_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser262Wheel2[] = "__OTR__bowser_kart/kart_262_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser262Wheel3[] = "__OTR__bowser_kart/kart_262_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser263Wheel0[] = "__OTR__bowser_kart/kart_263_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser263Wheel1[] = "__OTR__bowser_kart/kart_263_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser263Wheel2[] = "__OTR__bowser_kart/kart_263_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser263Wheel3[] = "__OTR__bowser_kart/kart_263_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser264Wheel0[] = "__OTR__bowser_kart/kart_264_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser264Wheel1[] = "__OTR__bowser_kart/kart_264_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser264Wheel2[] = "__OTR__bowser_kart/kart_264_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser264Wheel3[] = "__OTR__bowser_kart/kart_264_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser265Wheel0[] = "__OTR__bowser_kart/kart_265_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser265Wheel1[] = "__OTR__bowser_kart/kart_265_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser265Wheel2[] = "__OTR__bowser_kart/kart_265_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser265Wheel3[] = "__OTR__bowser_kart/kart_265_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser266Wheel0[] = "__OTR__bowser_kart/kart_266_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser266Wheel1[] = "__OTR__bowser_kart/kart_266_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser266Wheel2[] = "__OTR__bowser_kart/kart_266_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser266Wheel3[] = "__OTR__bowser_kart/kart_266_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser267Wheel0[] = "__OTR__bowser_kart/kart_267_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser267Wheel1[] = "__OTR__bowser_kart/kart_267_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser267Wheel2[] = "__OTR__bowser_kart/kart_267_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser267Wheel3[] = "__OTR__bowser_kart/kart_267_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser268Wheel0[] = "__OTR__bowser_kart/kart_268_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser268Wheel1[] = "__OTR__bowser_kart/kart_268_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser268Wheel2[] = "__OTR__bowser_kart/kart_268_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser268Wheel3[] = "__OTR__bowser_kart/kart_268_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser269Wheel0[] = "__OTR__bowser_kart/kart_269_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser269Wheel1[] = "__OTR__bowser_kart/kart_269_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser269Wheel2[] = "__OTR__bowser_kart/kart_269_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser269Wheel3[] = "__OTR__bowser_kart/kart_269_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser270Wheel0[] = "__OTR__bowser_kart/kart_270_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser270Wheel1[] = "__OTR__bowser_kart/kart_270_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser270Wheel2[] = "__OTR__bowser_kart/kart_270_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser270Wheel3[] = "__OTR__bowser_kart/kart_270_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser271Wheel0[] = "__OTR__bowser_kart/kart_271_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser271Wheel1[] = "__OTR__bowser_kart/kart_271_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser271Wheel2[] = "__OTR__bowser_kart/kart_271_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser271Wheel3[] = "__OTR__bowser_kart/kart_271_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser272Wheel0[] = "__OTR__bowser_kart/kart_272_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser272Wheel1[] = "__OTR__bowser_kart/kart_272_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser272Wheel2[] = "__OTR__bowser_kart/kart_272_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser272Wheel3[] = "__OTR__bowser_kart/kart_272_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser273Wheel0[] = "__OTR__bowser_kart/kart_273_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser273Wheel1[] = "__OTR__bowser_kart/kart_273_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser273Wheel2[] = "__OTR__bowser_kart/kart_273_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser273Wheel3[] = "__OTR__bowser_kart/kart_273_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser274Wheel0[] = "__OTR__bowser_kart/kart_274_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser274Wheel1[] = "__OTR__bowser_kart/kart_274_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser274Wheel2[] = "__OTR__bowser_kart/kart_274_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser274Wheel3[] = "__OTR__bowser_kart/kart_274_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser275Wheel0[] = "__OTR__bowser_kart/kart_275_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser275Wheel1[] = "__OTR__bowser_kart/kart_275_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser275Wheel2[] = "__OTR__bowser_kart/kart_275_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser275Wheel3[] = "__OTR__bowser_kart/kart_275_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser276Wheel0[] = "__OTR__bowser_kart/kart_276_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser276Wheel1[] = "__OTR__bowser_kart/kart_276_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser276Wheel2[] = "__OTR__bowser_kart/kart_276_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser276Wheel3[] = "__OTR__bowser_kart/kart_276_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser277Wheel0[] = "__OTR__bowser_kart/kart_277_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser277Wheel1[] = "__OTR__bowser_kart/kart_277_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser277Wheel2[] = "__OTR__bowser_kart/kart_277_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser277Wheel3[] = "__OTR__bowser_kart/kart_277_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser278Wheel0[] = "__OTR__bowser_kart/kart_278_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser278Wheel1[] = "__OTR__bowser_kart/kart_278_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser278Wheel2[] = "__OTR__bowser_kart/kart_278_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser278Wheel3[] = "__OTR__bowser_kart/kart_278_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser279Wheel0[] = "__OTR__bowser_kart/kart_279_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser279Wheel1[] = "__OTR__bowser_kart/kart_279_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser279Wheel2[] = "__OTR__bowser_kart/kart_279_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser279Wheel3[] = "__OTR__bowser_kart/kart_279_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser280Wheel0[] = "__OTR__bowser_kart/kart_280_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser280Wheel1[] = "__OTR__bowser_kart/kart_280_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser280Wheel2[] = "__OTR__bowser_kart/kart_280_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser280Wheel3[] = "__OTR__bowser_kart/kart_280_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser281Wheel0[] = "__OTR__bowser_kart/kart_281_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser281Wheel1[] = "__OTR__bowser_kart/kart_281_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser281Wheel2[] = "__OTR__bowser_kart/kart_281_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser281Wheel3[] = "__OTR__bowser_kart/kart_281_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser282Wheel0[] = "__OTR__bowser_kart/kart_282_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser282Wheel1[] = "__OTR__bowser_kart/kart_282_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser282Wheel2[] = "__OTR__bowser_kart/kart_282_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser282Wheel3[] = "__OTR__bowser_kart/kart_282_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser283Wheel0[] = "__OTR__bowser_kart/kart_283_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser283Wheel1[] = "__OTR__bowser_kart/kart_283_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser283Wheel2[] = "__OTR__bowser_kart/kart_283_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser283Wheel3[] = "__OTR__bowser_kart/kart_283_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser284Wheel0[] = "__OTR__bowser_kart/kart_284_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser284Wheel1[] = "__OTR__bowser_kart/kart_284_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser284Wheel2[] = "__OTR__bowser_kart/kart_284_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser284Wheel3[] = "__OTR__bowser_kart/kart_284_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser285Wheel0[] = "__OTR__bowser_kart/kart_285_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser285Wheel1[] = "__OTR__bowser_kart/kart_285_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser285Wheel2[] = "__OTR__bowser_kart/kart_285_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser285Wheel3[] = "__OTR__bowser_kart/kart_285_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser286Wheel0[] = "__OTR__bowser_kart/kart_286_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser286Wheel1[] = "__OTR__bowser_kart/kart_286_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser286Wheel2[] = "__OTR__bowser_kart/kart_286_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser286Wheel3[] = "__OTR__bowser_kart/kart_286_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser287Wheel0[] = "__OTR__bowser_kart/kart_287_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser287Wheel1[] = "__OTR__bowser_kart/kart_287_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser287Wheel2[] = "__OTR__bowser_kart/kart_287_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser287Wheel3[] = "__OTR__bowser_kart/kart_287_wheel_3"; - -static const ALIGN_ASSET(2) char gKartBowser288Wheel0[] = "__OTR__bowser_kart/kart_288_wheel_0"; - -static const ALIGN_ASSET(2) char gKartBowser288Wheel1[] = "__OTR__bowser_kart/kart_288_wheel_1"; - -static const ALIGN_ASSET(2) char gKartBowser288Wheel2[] = "__OTR__bowser_kart/kart_288_wheel_2"; - -static const ALIGN_ASSET(2) char gKartBowser288Wheel3[] = "__OTR__bowser_kart/kart_288_wheel_3"; - -static const char* bowser_kart_wheels[] = { - gKartBowser000Wheel0, - gKartBowser000Wheel1, - gKartBowser000Wheel2, - gKartBowser000Wheel3, - gKartBowser001Wheel0, - gKartBowser001Wheel1, - gKartBowser001Wheel2, - gKartBowser001Wheel3, - gKartBowser002Wheel0, - gKartBowser002Wheel1, - gKartBowser002Wheel2, - gKartBowser002Wheel3, - gKartBowser003Wheel0, - gKartBowser003Wheel1, - gKartBowser003Wheel2, - gKartBowser003Wheel3, - gKartBowser004Wheel0, - gKartBowser004Wheel1, - gKartBowser004Wheel2, - gKartBowser004Wheel3, - gKartBowser005Wheel0, - gKartBowser005Wheel1, - gKartBowser005Wheel2, - gKartBowser005Wheel3, - gKartBowser006Wheel0, - gKartBowser006Wheel1, - gKartBowser006Wheel2, - gKartBowser006Wheel3, - gKartBowser007Wheel0, - gKartBowser007Wheel1, - gKartBowser007Wheel2, - gKartBowser007Wheel3, - gKartBowser008Wheel0, - gKartBowser008Wheel1, - gKartBowser008Wheel2, - gKartBowser008Wheel3, - gKartBowser009Wheel0, - gKartBowser009Wheel1, - gKartBowser009Wheel2, - gKartBowser009Wheel3, - gKartBowser010Wheel0, - gKartBowser010Wheel1, - gKartBowser010Wheel2, - gKartBowser010Wheel3, - gKartBowser011Wheel0, - gKartBowser011Wheel1, - gKartBowser011Wheel2, - gKartBowser011Wheel3, - gKartBowser012Wheel0, - gKartBowser012Wheel1, - gKartBowser012Wheel2, - gKartBowser012Wheel3, - gKartBowser013Wheel0, - gKartBowser013Wheel1, - gKartBowser013Wheel2, - gKartBowser013Wheel3, - gKartBowser014Wheel0, - gKartBowser014Wheel1, - gKartBowser014Wheel2, - gKartBowser014Wheel3, - gKartBowser015Wheel0, - gKartBowser015Wheel1, - gKartBowser015Wheel2, - gKartBowser015Wheel3, - gKartBowser016Wheel0, - gKartBowser016Wheel1, - gKartBowser016Wheel2, - gKartBowser016Wheel3, - gKartBowser017Wheel0, - gKartBowser017Wheel1, - gKartBowser017Wheel2, - gKartBowser017Wheel3, - gKartBowser018Wheel0, - gKartBowser018Wheel1, - gKartBowser018Wheel2, - gKartBowser018Wheel3, - gKartBowser019Wheel0, - gKartBowser019Wheel1, - gKartBowser019Wheel2, - gKartBowser019Wheel3, - gKartBowser020Wheel0, - gKartBowser020Wheel1, - gKartBowser020Wheel2, - gKartBowser020Wheel3, - gKartBowser021Wheel0, - gKartBowser021Wheel1, - gKartBowser021Wheel2, - gKartBowser021Wheel3, - gKartBowser022Wheel0, - gKartBowser022Wheel1, - gKartBowser022Wheel2, - gKartBowser022Wheel3, - gKartBowser023Wheel0, - gKartBowser023Wheel1, - gKartBowser023Wheel2, - gKartBowser023Wheel3, - gKartBowser024Wheel0, - gKartBowser024Wheel1, - gKartBowser024Wheel2, - gKartBowser024Wheel3, - gKartBowser025Wheel0, - gKartBowser025Wheel1, - gKartBowser025Wheel2, - gKartBowser025Wheel3, - gKartBowser026Wheel0, - gKartBowser026Wheel1, - gKartBowser026Wheel2, - gKartBowser026Wheel3, - gKartBowser027Wheel0, - gKartBowser027Wheel1, - gKartBowser027Wheel2, - gKartBowser027Wheel3, - gKartBowser028Wheel0, - gKartBowser028Wheel1, - gKartBowser028Wheel2, - gKartBowser028Wheel3, - gKartBowser029Wheel0, - gKartBowser029Wheel1, - gKartBowser029Wheel2, - gKartBowser029Wheel3, - gKartBowser030Wheel0, - gKartBowser030Wheel1, - gKartBowser030Wheel2, - gKartBowser030Wheel3, - gKartBowser031Wheel0, - gKartBowser031Wheel1, - gKartBowser031Wheel2, - gKartBowser031Wheel3, - gKartBowser032Wheel0, - gKartBowser032Wheel1, - gKartBowser032Wheel2, - gKartBowser032Wheel3, - gKartBowser033Wheel0, - gKartBowser033Wheel1, - gKartBowser033Wheel2, - gKartBowser033Wheel3, - gKartBowser034Wheel0, - gKartBowser034Wheel1, - gKartBowser034Wheel2, - gKartBowser034Wheel3, - gKartBowser035Wheel0, - gKartBowser035Wheel1, - gKartBowser035Wheel2, - gKartBowser035Wheel3, - gKartBowser036Wheel0, - gKartBowser036Wheel1, - gKartBowser036Wheel2, - gKartBowser036Wheel3, - gKartBowser037Wheel0, - gKartBowser037Wheel1, - gKartBowser037Wheel2, - gKartBowser037Wheel3, - gKartBowser038Wheel0, - gKartBowser038Wheel1, - gKartBowser038Wheel2, - gKartBowser038Wheel3, - gKartBowser039Wheel0, - gKartBowser039Wheel1, - gKartBowser039Wheel2, - gKartBowser039Wheel3, - gKartBowser040Wheel0, - gKartBowser040Wheel1, - gKartBowser040Wheel2, - gKartBowser040Wheel3, - gKartBowser041Wheel0, - gKartBowser041Wheel1, - gKartBowser041Wheel2, - gKartBowser041Wheel3, - gKartBowser042Wheel0, - gKartBowser042Wheel1, - gKartBowser042Wheel2, - gKartBowser042Wheel3, - gKartBowser043Wheel0, - gKartBowser043Wheel1, - gKartBowser043Wheel2, - gKartBowser043Wheel3, - gKartBowser044Wheel0, - gKartBowser044Wheel1, - gKartBowser044Wheel2, - gKartBowser044Wheel3, - gKartBowser045Wheel0, - gKartBowser045Wheel1, - gKartBowser045Wheel2, - gKartBowser045Wheel3, - gKartBowser046Wheel0, - gKartBowser046Wheel1, - gKartBowser046Wheel2, - gKartBowser046Wheel3, - gKartBowser047Wheel0, - gKartBowser047Wheel1, - gKartBowser047Wheel2, - gKartBowser047Wheel3, - gKartBowser048Wheel0, - gKartBowser048Wheel1, - gKartBowser048Wheel2, - gKartBowser048Wheel3, - gKartBowser049Wheel0, - gKartBowser049Wheel1, - gKartBowser049Wheel2, - gKartBowser049Wheel3, - gKartBowser050Wheel0, - gKartBowser050Wheel1, - gKartBowser050Wheel2, - gKartBowser050Wheel3, - gKartBowser051Wheel0, - gKartBowser051Wheel1, - gKartBowser051Wheel2, - gKartBowser051Wheel3, - gKartBowser052Wheel0, - gKartBowser052Wheel1, - gKartBowser052Wheel2, - gKartBowser052Wheel3, - gKartBowser053Wheel0, - gKartBowser053Wheel1, - gKartBowser053Wheel2, - gKartBowser053Wheel3, - gKartBowser054Wheel0, - gKartBowser054Wheel1, - gKartBowser054Wheel2, - gKartBowser054Wheel3, - gKartBowser055Wheel0, - gKartBowser055Wheel1, - gKartBowser055Wheel2, - gKartBowser055Wheel3, - gKartBowser056Wheel0, - gKartBowser056Wheel1, - gKartBowser056Wheel2, - gKartBowser056Wheel3, - gKartBowser057Wheel0, - gKartBowser057Wheel1, - gKartBowser057Wheel2, - gKartBowser057Wheel3, - gKartBowser058Wheel0, - gKartBowser058Wheel1, - gKartBowser058Wheel2, - gKartBowser058Wheel3, - gKartBowser059Wheel0, - gKartBowser059Wheel1, - gKartBowser059Wheel2, - gKartBowser059Wheel3, - gKartBowser060Wheel0, - gKartBowser060Wheel1, - gKartBowser060Wheel2, - gKartBowser060Wheel3, - gKartBowser061Wheel0, - gKartBowser061Wheel1, - gKartBowser061Wheel2, - gKartBowser061Wheel3, - gKartBowser062Wheel0, - gKartBowser062Wheel1, - gKartBowser062Wheel2, - gKartBowser062Wheel3, - gKartBowser063Wheel0, - gKartBowser063Wheel1, - gKartBowser063Wheel2, - gKartBowser063Wheel3, - gKartBowser064Wheel0, - gKartBowser064Wheel1, - gKartBowser064Wheel2, - gKartBowser064Wheel3, - gKartBowser065Wheel0, - gKartBowser065Wheel1, - gKartBowser065Wheel2, - gKartBowser065Wheel3, - gKartBowser066Wheel0, - gKartBowser066Wheel1, - gKartBowser066Wheel2, - gKartBowser066Wheel3, - gKartBowser067Wheel0, - gKartBowser067Wheel1, - gKartBowser067Wheel2, - gKartBowser067Wheel3, - gKartBowser068Wheel0, - gKartBowser068Wheel1, - gKartBowser068Wheel2, - gKartBowser068Wheel3, - gKartBowser069Wheel0, - gKartBowser069Wheel1, - gKartBowser069Wheel2, - gKartBowser069Wheel3, - gKartBowser070Wheel0, - gKartBowser070Wheel1, - gKartBowser070Wheel2, - gKartBowser070Wheel3, - gKartBowser071Wheel0, - gKartBowser071Wheel1, - gKartBowser071Wheel2, - gKartBowser071Wheel3, - gKartBowser072Wheel0, - gKartBowser072Wheel1, - gKartBowser072Wheel2, - gKartBowser072Wheel3, - gKartBowser073Wheel0, - gKartBowser073Wheel1, - gKartBowser073Wheel2, - gKartBowser073Wheel3, - gKartBowser074Wheel0, - gKartBowser074Wheel1, - gKartBowser074Wheel2, - gKartBowser074Wheel3, - gKartBowser075Wheel0, - gKartBowser075Wheel1, - gKartBowser075Wheel2, - gKartBowser075Wheel3, - gKartBowser076Wheel0, - gKartBowser076Wheel1, - gKartBowser076Wheel2, - gKartBowser076Wheel3, - gKartBowser077Wheel0, - gKartBowser077Wheel1, - gKartBowser077Wheel2, - gKartBowser077Wheel3, - gKartBowser078Wheel0, - gKartBowser078Wheel1, - gKartBowser078Wheel2, - gKartBowser078Wheel3, - gKartBowser079Wheel0, - gKartBowser079Wheel1, - gKartBowser079Wheel2, - gKartBowser079Wheel3, - gKartBowser080Wheel0, - gKartBowser080Wheel1, - gKartBowser080Wheel2, - gKartBowser080Wheel3, - gKartBowser081Wheel0, - gKartBowser081Wheel1, - gKartBowser081Wheel2, - gKartBowser081Wheel3, - gKartBowser082Wheel0, - gKartBowser082Wheel1, - gKartBowser082Wheel2, - gKartBowser082Wheel3, - gKartBowser083Wheel0, - gKartBowser083Wheel1, - gKartBowser083Wheel2, - gKartBowser083Wheel3, - gKartBowser084Wheel0, - gKartBowser084Wheel1, - gKartBowser084Wheel2, - gKartBowser084Wheel3, - gKartBowser085Wheel0, - gKartBowser085Wheel1, - gKartBowser085Wheel2, - gKartBowser085Wheel3, - gKartBowser086Wheel0, - gKartBowser086Wheel1, - gKartBowser086Wheel2, - gKartBowser086Wheel3, - gKartBowser087Wheel0, - gKartBowser087Wheel1, - gKartBowser087Wheel2, - gKartBowser087Wheel3, - gKartBowser088Wheel0, - gKartBowser088Wheel1, - gKartBowser088Wheel2, - gKartBowser088Wheel3, - gKartBowser089Wheel0, - gKartBowser089Wheel1, - gKartBowser089Wheel2, - gKartBowser089Wheel3, - gKartBowser090Wheel0, - gKartBowser090Wheel1, - gKartBowser090Wheel2, - gKartBowser090Wheel3, - gKartBowser091Wheel0, - gKartBowser091Wheel1, - gKartBowser091Wheel2, - gKartBowser091Wheel3, - gKartBowser092Wheel0, - gKartBowser092Wheel1, - gKartBowser092Wheel2, - gKartBowser092Wheel3, - gKartBowser093Wheel0, - gKartBowser093Wheel1, - gKartBowser093Wheel2, - gKartBowser093Wheel3, - gKartBowser094Wheel0, - gKartBowser094Wheel1, - gKartBowser094Wheel2, - gKartBowser094Wheel3, - gKartBowser095Wheel0, - gKartBowser095Wheel1, - gKartBowser095Wheel2, - gKartBowser095Wheel3, - gKartBowser096Wheel0, - gKartBowser096Wheel1, - gKartBowser096Wheel2, - gKartBowser096Wheel3, - gKartBowser097Wheel0, - gKartBowser097Wheel1, - gKartBowser097Wheel2, - gKartBowser097Wheel3, - gKartBowser098Wheel0, - gKartBowser098Wheel1, - gKartBowser098Wheel2, - gKartBowser098Wheel3, - gKartBowser099Wheel0, - gKartBowser099Wheel1, - gKartBowser099Wheel2, - gKartBowser099Wheel3, - gKartBowser100Wheel0, - gKartBowser100Wheel1, - gKartBowser100Wheel2, - gKartBowser100Wheel3, - gKartBowser101Wheel0, - gKartBowser101Wheel1, - gKartBowser101Wheel2, - gKartBowser101Wheel3, - gKartBowser102Wheel0, - gKartBowser102Wheel1, - gKartBowser102Wheel2, - gKartBowser102Wheel3, - gKartBowser103Wheel0, - gKartBowser103Wheel1, - gKartBowser103Wheel2, - gKartBowser103Wheel3, - gKartBowser104Wheel0, - gKartBowser104Wheel1, - gKartBowser104Wheel2, - gKartBowser104Wheel3, - gKartBowser105Wheel0, - gKartBowser105Wheel1, - gKartBowser105Wheel2, - gKartBowser105Wheel3, - gKartBowser106Wheel0, - gKartBowser106Wheel1, - gKartBowser106Wheel2, - gKartBowser106Wheel3, - gKartBowser107Wheel0, - gKartBowser107Wheel1, - gKartBowser107Wheel2, - gKartBowser107Wheel3, - gKartBowser108Wheel0, - gKartBowser108Wheel1, - gKartBowser108Wheel2, - gKartBowser108Wheel3, - gKartBowser109Wheel0, - gKartBowser109Wheel1, - gKartBowser109Wheel2, - gKartBowser109Wheel3, - gKartBowser110Wheel0, - gKartBowser110Wheel1, - gKartBowser110Wheel2, - gKartBowser110Wheel3, - gKartBowser111Wheel0, - gKartBowser111Wheel1, - gKartBowser111Wheel2, - gKartBowser111Wheel3, - gKartBowser112Wheel0, - gKartBowser112Wheel1, - gKartBowser112Wheel2, - gKartBowser112Wheel3, - gKartBowser113Wheel0, - gKartBowser113Wheel1, - gKartBowser113Wheel2, - gKartBowser113Wheel3, - gKartBowser114Wheel0, - gKartBowser114Wheel1, - gKartBowser114Wheel2, - gKartBowser114Wheel3, - gKartBowser115Wheel0, - gKartBowser115Wheel1, - gKartBowser115Wheel2, - gKartBowser115Wheel3, - gKartBowser116Wheel0, - gKartBowser116Wheel1, - gKartBowser116Wheel2, - gKartBowser116Wheel3, - gKartBowser117Wheel0, - gKartBowser117Wheel1, - gKartBowser117Wheel2, - gKartBowser117Wheel3, - gKartBowser118Wheel0, - gKartBowser118Wheel1, - gKartBowser118Wheel2, - gKartBowser118Wheel3, - gKartBowser119Wheel0, - gKartBowser119Wheel1, - gKartBowser119Wheel2, - gKartBowser119Wheel3, - gKartBowser120Wheel0, - gKartBowser120Wheel1, - gKartBowser120Wheel2, - gKartBowser120Wheel3, - gKartBowser121Wheel0, - gKartBowser121Wheel1, - gKartBowser121Wheel2, - gKartBowser121Wheel3, - gKartBowser122Wheel0, - gKartBowser122Wheel1, - gKartBowser122Wheel2, - gKartBowser122Wheel3, - gKartBowser123Wheel0, - gKartBowser123Wheel1, - gKartBowser123Wheel2, - gKartBowser123Wheel3, - gKartBowser124Wheel0, - gKartBowser124Wheel1, - gKartBowser124Wheel2, - gKartBowser124Wheel3, - gKartBowser125Wheel0, - gKartBowser125Wheel1, - gKartBowser125Wheel2, - gKartBowser125Wheel3, - gKartBowser126Wheel0, - gKartBowser126Wheel1, - gKartBowser126Wheel2, - gKartBowser126Wheel3, - gKartBowser127Wheel0, - gKartBowser127Wheel1, - gKartBowser127Wheel2, - gKartBowser127Wheel3, - gKartBowser128Wheel0, - gKartBowser128Wheel1, - gKartBowser128Wheel2, - gKartBowser128Wheel3, - gKartBowser129Wheel0, - gKartBowser129Wheel1, - gKartBowser129Wheel2, - gKartBowser129Wheel3, - gKartBowser130Wheel0, - gKartBowser130Wheel1, - gKartBowser130Wheel2, - gKartBowser130Wheel3, - gKartBowser131Wheel0, - gKartBowser131Wheel1, - gKartBowser131Wheel2, - gKartBowser131Wheel3, - gKartBowser132Wheel0, - gKartBowser132Wheel1, - gKartBowser132Wheel2, - gKartBowser132Wheel3, - gKartBowser133Wheel0, - gKartBowser133Wheel1, - gKartBowser133Wheel2, - gKartBowser133Wheel3, - gKartBowser134Wheel0, - gKartBowser134Wheel1, - gKartBowser134Wheel2, - gKartBowser134Wheel3, - gKartBowser135Wheel0, - gKartBowser135Wheel1, - gKartBowser135Wheel2, - gKartBowser135Wheel3, - gKartBowser136Wheel0, - gKartBowser136Wheel1, - gKartBowser136Wheel2, - gKartBowser136Wheel3, - gKartBowser137Wheel0, - gKartBowser137Wheel1, - gKartBowser137Wheel2, - gKartBowser137Wheel3, - gKartBowser138Wheel0, - gKartBowser138Wheel1, - gKartBowser138Wheel2, - gKartBowser138Wheel3, - gKartBowser139Wheel0, - gKartBowser139Wheel1, - gKartBowser139Wheel2, - gKartBowser139Wheel3, - gKartBowser140Wheel0, - gKartBowser140Wheel1, - gKartBowser140Wheel2, - gKartBowser140Wheel3, - gKartBowser141Wheel0, - gKartBowser141Wheel1, - gKartBowser141Wheel2, - gKartBowser141Wheel3, - gKartBowser142Wheel0, - gKartBowser142Wheel1, - gKartBowser142Wheel2, - gKartBowser142Wheel3, - gKartBowser143Wheel0, - gKartBowser143Wheel1, - gKartBowser143Wheel2, - gKartBowser143Wheel3, - gKartBowser144Wheel0, - gKartBowser144Wheel1, - gKartBowser144Wheel2, - gKartBowser144Wheel3, - gKartBowser145Wheel0, - gKartBowser145Wheel1, - gKartBowser145Wheel2, - gKartBowser145Wheel3, - gKartBowser146Wheel0, - gKartBowser146Wheel1, - gKartBowser146Wheel2, - gKartBowser146Wheel3, - gKartBowser147Wheel0, - gKartBowser147Wheel1, - gKartBowser147Wheel2, - gKartBowser147Wheel3, - gKartBowser148Wheel0, - gKartBowser148Wheel1, - gKartBowser148Wheel2, - gKartBowser148Wheel3, - gKartBowser149Wheel0, - gKartBowser149Wheel1, - gKartBowser149Wheel2, - gKartBowser149Wheel3, - gKartBowser150Wheel0, - gKartBowser150Wheel1, - gKartBowser150Wheel2, - gKartBowser150Wheel3, - gKartBowser151Wheel0, - gKartBowser151Wheel1, - gKartBowser151Wheel2, - gKartBowser151Wheel3, - gKartBowser152Wheel0, - gKartBowser152Wheel1, - gKartBowser152Wheel2, - gKartBowser152Wheel3, - gKartBowser153Wheel0, - gKartBowser153Wheel1, - gKartBowser153Wheel2, - gKartBowser153Wheel3, - gKartBowser154Wheel0, - gKartBowser154Wheel1, - gKartBowser154Wheel2, - gKartBowser154Wheel3, - gKartBowser155Wheel0, - gKartBowser155Wheel1, - gKartBowser155Wheel2, - gKartBowser155Wheel3, - gKartBowser156Wheel0, - gKartBowser156Wheel1, - gKartBowser156Wheel2, - gKartBowser156Wheel3, - gKartBowser157Wheel0, - gKartBowser157Wheel1, - gKartBowser157Wheel2, - gKartBowser157Wheel3, - gKartBowser158Wheel0, - gKartBowser158Wheel1, - gKartBowser158Wheel2, - gKartBowser158Wheel3, - gKartBowser159Wheel0, - gKartBowser159Wheel1, - gKartBowser159Wheel2, - gKartBowser159Wheel3, - gKartBowser160Wheel0, - gKartBowser160Wheel1, - gKartBowser160Wheel2, - gKartBowser160Wheel3, - gKartBowser161Wheel0, - gKartBowser161Wheel1, - gKartBowser161Wheel2, - gKartBowser161Wheel3, - gKartBowser162Wheel0, - gKartBowser162Wheel1, - gKartBowser162Wheel2, - gKartBowser162Wheel3, - gKartBowser163Wheel0, - gKartBowser163Wheel1, - gKartBowser163Wheel2, - gKartBowser163Wheel3, - gKartBowser164Wheel0, - gKartBowser164Wheel1, - gKartBowser164Wheel2, - gKartBowser164Wheel3, - gKartBowser165Wheel0, - gKartBowser165Wheel1, - gKartBowser165Wheel2, - gKartBowser165Wheel3, - gKartBowser166Wheel0, - gKartBowser166Wheel1, - gKartBowser166Wheel2, - gKartBowser166Wheel3, - gKartBowser167Wheel0, - gKartBowser167Wheel1, - gKartBowser167Wheel2, - gKartBowser167Wheel3, - gKartBowser168Wheel0, - gKartBowser168Wheel1, - gKartBowser168Wheel2, - gKartBowser168Wheel3, - gKartBowser169Wheel0, - gKartBowser169Wheel1, - gKartBowser169Wheel2, - gKartBowser169Wheel3, - gKartBowser170Wheel0, - gKartBowser170Wheel1, - gKartBowser170Wheel2, - gKartBowser170Wheel3, - gKartBowser171Wheel0, - gKartBowser171Wheel1, - gKartBowser171Wheel2, - gKartBowser171Wheel3, - gKartBowser172Wheel0, - gKartBowser172Wheel1, - gKartBowser172Wheel2, - gKartBowser172Wheel3, - gKartBowser173Wheel0, - gKartBowser173Wheel1, - gKartBowser173Wheel2, - gKartBowser173Wheel3, - gKartBowser174Wheel0, - gKartBowser174Wheel1, - gKartBowser174Wheel2, - gKartBowser174Wheel3, - gKartBowser175Wheel0, - gKartBowser175Wheel1, - gKartBowser175Wheel2, - gKartBowser175Wheel3, - gKartBowser176Wheel0, - gKartBowser176Wheel1, - gKartBowser176Wheel2, - gKartBowser176Wheel3, - gKartBowser177Wheel0, - gKartBowser177Wheel1, - gKartBowser177Wheel2, - gKartBowser177Wheel3, - gKartBowser178Wheel0, - gKartBowser178Wheel1, - gKartBowser178Wheel2, - gKartBowser178Wheel3, - gKartBowser179Wheel0, - gKartBowser179Wheel1, - gKartBowser179Wheel2, - gKartBowser179Wheel3, - gKartBowser180Wheel0, - gKartBowser180Wheel1, - gKartBowser180Wheel2, - gKartBowser180Wheel3, - gKartBowser181Wheel0, - gKartBowser181Wheel1, - gKartBowser181Wheel2, - gKartBowser181Wheel3, - gKartBowser182Wheel0, - gKartBowser182Wheel1, - gKartBowser182Wheel2, - gKartBowser182Wheel3, - gKartBowser183Wheel0, - gKartBowser183Wheel1, - gKartBowser183Wheel2, - gKartBowser183Wheel3, - gKartBowser184Wheel0, - gKartBowser184Wheel1, - gKartBowser184Wheel2, - gKartBowser184Wheel3, - gKartBowser185Wheel0, - gKartBowser185Wheel1, - gKartBowser185Wheel2, - gKartBowser185Wheel3, - gKartBowser186Wheel0, - gKartBowser186Wheel1, - gKartBowser186Wheel2, - gKartBowser186Wheel3, - gKartBowser187Wheel0, - gKartBowser187Wheel1, - gKartBowser187Wheel2, - gKartBowser187Wheel3, - gKartBowser188Wheel0, - gKartBowser188Wheel1, - gKartBowser188Wheel2, - gKartBowser188Wheel3, - gKartBowser189Wheel0, - gKartBowser189Wheel1, - gKartBowser189Wheel2, - gKartBowser189Wheel3, - gKartBowser190Wheel0, - gKartBowser190Wheel1, - gKartBowser190Wheel2, - gKartBowser190Wheel3, - gKartBowser191Wheel0, - gKartBowser191Wheel1, - gKartBowser191Wheel2, - gKartBowser191Wheel3, - gKartBowser192Wheel0, - gKartBowser192Wheel1, - gKartBowser192Wheel2, - gKartBowser192Wheel3, - gKartBowser193Wheel0, - gKartBowser193Wheel1, - gKartBowser193Wheel2, - gKartBowser193Wheel3, - gKartBowser194Wheel0, - gKartBowser194Wheel1, - gKartBowser194Wheel2, - gKartBowser194Wheel3, - gKartBowser195Wheel0, - gKartBowser195Wheel1, - gKartBowser195Wheel2, - gKartBowser195Wheel3, - gKartBowser196Wheel0, - gKartBowser196Wheel1, - gKartBowser196Wheel2, - gKartBowser196Wheel3, - gKartBowser197Wheel0, - gKartBowser197Wheel1, - gKartBowser197Wheel2, - gKartBowser197Wheel3, - gKartBowser198Wheel0, - gKartBowser198Wheel1, - gKartBowser198Wheel2, - gKartBowser198Wheel3, - gKartBowser199Wheel0, - gKartBowser199Wheel1, - gKartBowser199Wheel2, - gKartBowser199Wheel3, - gKartBowser200Wheel0, - gKartBowser200Wheel1, - gKartBowser200Wheel2, - gKartBowser200Wheel3, - gKartBowser201Wheel0, - gKartBowser201Wheel1, - gKartBowser201Wheel2, - gKartBowser201Wheel3, - gKartBowser202Wheel0, - gKartBowser202Wheel1, - gKartBowser202Wheel2, - gKartBowser202Wheel3, - gKartBowser203Wheel0, - gKartBowser203Wheel1, - gKartBowser203Wheel2, - gKartBowser203Wheel3, - gKartBowser204Wheel0, - gKartBowser204Wheel1, - gKartBowser204Wheel2, - gKartBowser204Wheel3, - gKartBowser205Wheel0, - gKartBowser205Wheel1, - gKartBowser205Wheel2, - gKartBowser205Wheel3, - gKartBowser206Wheel0, - gKartBowser206Wheel1, - gKartBowser206Wheel2, - gKartBowser206Wheel3, - gKartBowser207Wheel0, - gKartBowser207Wheel1, - gKartBowser207Wheel2, - gKartBowser207Wheel3, - gKartBowser208Wheel0, - gKartBowser208Wheel1, - gKartBowser208Wheel2, - gKartBowser208Wheel3, - gKartBowser209Wheel0, - gKartBowser209Wheel1, - gKartBowser209Wheel2, - gKartBowser209Wheel3, - gKartBowser210Wheel0, - gKartBowser210Wheel1, - gKartBowser210Wheel2, - gKartBowser210Wheel3, - gKartBowser211Wheel0, - gKartBowser211Wheel1, - gKartBowser211Wheel2, - gKartBowser211Wheel3, - gKartBowser212Wheel0, - gKartBowser212Wheel1, - gKartBowser212Wheel2, - gKartBowser212Wheel3, - gKartBowser213Wheel0, - gKartBowser213Wheel1, - gKartBowser213Wheel2, - gKartBowser213Wheel3, - gKartBowser214Wheel0, - gKartBowser214Wheel1, - gKartBowser214Wheel2, - gKartBowser214Wheel3, - gKartBowser215Wheel0, - gKartBowser215Wheel1, - gKartBowser215Wheel2, - gKartBowser215Wheel3, - gKartBowser216Wheel0, - gKartBowser216Wheel1, - gKartBowser216Wheel2, - gKartBowser216Wheel3, - gKartBowser217Wheel0, - gKartBowser217Wheel1, - gKartBowser217Wheel2, - gKartBowser217Wheel3, - gKartBowser218Wheel0, - gKartBowser218Wheel1, - gKartBowser218Wheel2, - gKartBowser218Wheel3, - gKartBowser219Wheel0, - gKartBowser219Wheel1, - gKartBowser219Wheel2, - gKartBowser219Wheel3, - gKartBowser220Wheel0, - gKartBowser220Wheel1, - gKartBowser220Wheel2, - gKartBowser220Wheel3, - gKartBowser221Wheel0, - gKartBowser221Wheel1, - gKartBowser221Wheel2, - gKartBowser221Wheel3, - gKartBowser222Wheel0, - gKartBowser222Wheel1, - gKartBowser222Wheel2, - gKartBowser222Wheel3, - gKartBowser223Wheel0, - gKartBowser223Wheel1, - gKartBowser223Wheel2, - gKartBowser223Wheel3, - gKartBowser224Wheel0, - gKartBowser224Wheel1, - gKartBowser224Wheel2, - gKartBowser224Wheel3, - gKartBowser225Wheel0, - gKartBowser225Wheel1, - gKartBowser225Wheel2, - gKartBowser225Wheel3, - gKartBowser226Wheel0, - gKartBowser226Wheel1, - gKartBowser226Wheel2, - gKartBowser226Wheel3, - gKartBowser227Wheel0, - gKartBowser227Wheel1, - gKartBowser227Wheel2, - gKartBowser227Wheel3, - gKartBowser228Wheel0, - gKartBowser228Wheel1, - gKartBowser228Wheel2, - gKartBowser228Wheel3, - gKartBowser229Wheel0, - gKartBowser229Wheel1, - gKartBowser229Wheel2, - gKartBowser229Wheel3, - gKartBowser230Wheel0, - gKartBowser230Wheel1, - gKartBowser230Wheel2, - gKartBowser230Wheel3, - gKartBowser231Wheel0, - gKartBowser231Wheel1, - gKartBowser231Wheel2, - gKartBowser231Wheel3, - gKartBowser232Wheel0, - gKartBowser232Wheel1, - gKartBowser232Wheel2, - gKartBowser232Wheel3, - gKartBowser233Wheel0, - gKartBowser233Wheel1, - gKartBowser233Wheel2, - gKartBowser233Wheel3, - gKartBowser234Wheel0, - gKartBowser234Wheel1, - gKartBowser234Wheel2, - gKartBowser234Wheel3, - gKartBowser235Wheel0, - gKartBowser235Wheel1, - gKartBowser235Wheel2, - gKartBowser235Wheel3, - gKartBowser236Wheel0, - gKartBowser236Wheel1, - gKartBowser236Wheel2, - gKartBowser236Wheel3, - gKartBowser237Wheel0, - gKartBowser237Wheel1, - gKartBowser237Wheel2, - gKartBowser237Wheel3, - gKartBowser238Wheel0, - gKartBowser238Wheel1, - gKartBowser238Wheel2, - gKartBowser238Wheel3, - gKartBowser239Wheel0, - gKartBowser239Wheel1, - gKartBowser239Wheel2, - gKartBowser239Wheel3, - gKartBowser240Wheel0, - gKartBowser240Wheel1, - gKartBowser240Wheel2, - gKartBowser240Wheel3, - gKartBowser241Wheel0, - gKartBowser241Wheel1, - gKartBowser241Wheel2, - gKartBowser241Wheel3, - gKartBowser242Wheel0, - gKartBowser242Wheel1, - gKartBowser242Wheel2, - gKartBowser242Wheel3, - gKartBowser243Wheel0, - gKartBowser243Wheel1, - gKartBowser243Wheel2, - gKartBowser243Wheel3, - gKartBowser244Wheel0, - gKartBowser244Wheel1, - gKartBowser244Wheel2, - gKartBowser244Wheel3, - gKartBowser245Wheel0, - gKartBowser245Wheel1, - gKartBowser245Wheel2, - gKartBowser245Wheel3, - gKartBowser246Wheel0, - gKartBowser246Wheel1, - gKartBowser246Wheel2, - gKartBowser246Wheel3, - gKartBowser247Wheel0, - gKartBowser247Wheel1, - gKartBowser247Wheel2, - gKartBowser247Wheel3, - gKartBowser248Wheel0, - gKartBowser248Wheel1, - gKartBowser248Wheel2, - gKartBowser248Wheel3, - gKartBowser249Wheel0, - gKartBowser249Wheel1, - gKartBowser249Wheel2, - gKartBowser249Wheel3, - gKartBowser250Wheel0, - gKartBowser250Wheel1, - gKartBowser250Wheel2, - gKartBowser250Wheel3, - gKartBowser251Wheel0, - gKartBowser251Wheel1, - gKartBowser251Wheel2, - gKartBowser251Wheel3, - gKartBowser252Wheel0, - gKartBowser252Wheel1, - gKartBowser252Wheel2, - gKartBowser252Wheel3, - gKartBowser253Wheel0, - gKartBowser253Wheel1, - gKartBowser253Wheel2, - gKartBowser253Wheel3, - gKartBowser254Wheel0, - gKartBowser254Wheel1, - gKartBowser254Wheel2, - gKartBowser254Wheel3, - gKartBowser255Wheel0, - gKartBowser255Wheel1, - gKartBowser255Wheel2, - gKartBowser255Wheel3, - gKartBowser256Wheel0, - gKartBowser256Wheel1, - gKartBowser256Wheel2, - gKartBowser256Wheel3, - gKartBowser257Wheel0, - gKartBowser257Wheel1, - gKartBowser257Wheel2, - gKartBowser257Wheel3, - gKartBowser258Wheel0, - gKartBowser258Wheel1, - gKartBowser258Wheel2, - gKartBowser258Wheel3, - gKartBowser259Wheel0, - gKartBowser259Wheel1, - gKartBowser259Wheel2, - gKartBowser259Wheel3, - gKartBowser260Wheel0, - gKartBowser260Wheel1, - gKartBowser260Wheel2, - gKartBowser260Wheel3, - gKartBowser261Wheel0, - gKartBowser261Wheel1, - gKartBowser261Wheel2, - gKartBowser261Wheel3, - gKartBowser262Wheel0, - gKartBowser262Wheel1, - gKartBowser262Wheel2, - gKartBowser262Wheel3, - gKartBowser263Wheel0, - gKartBowser263Wheel1, - gKartBowser263Wheel2, - gKartBowser263Wheel3, - gKartBowser264Wheel0, - gKartBowser264Wheel1, - gKartBowser264Wheel2, - gKartBowser264Wheel3, - gKartBowser265Wheel0, - gKartBowser265Wheel1, - gKartBowser265Wheel2, - gKartBowser265Wheel3, - gKartBowser266Wheel0, - gKartBowser266Wheel1, - gKartBowser266Wheel2, - gKartBowser266Wheel3, - gKartBowser267Wheel0, - gKartBowser267Wheel1, - gKartBowser267Wheel2, - gKartBowser267Wheel3, - gKartBowser268Wheel0, - gKartBowser268Wheel1, - gKartBowser268Wheel2, - gKartBowser268Wheel3, - gKartBowser269Wheel0, - gKartBowser269Wheel1, - gKartBowser269Wheel2, - gKartBowser269Wheel3, - gKartBowser270Wheel0, - gKartBowser270Wheel1, - gKartBowser270Wheel2, - gKartBowser270Wheel3, - gKartBowser271Wheel0, - gKartBowser271Wheel1, - gKartBowser271Wheel2, - gKartBowser271Wheel3, - gKartBowser272Wheel0, - gKartBowser272Wheel1, - gKartBowser272Wheel2, - gKartBowser272Wheel3, - gKartBowser273Wheel0, - gKartBowser273Wheel1, - gKartBowser273Wheel2, - gKartBowser273Wheel3, - gKartBowser274Wheel0, - gKartBowser274Wheel1, - gKartBowser274Wheel2, - gKartBowser274Wheel3, - gKartBowser275Wheel0, - gKartBowser275Wheel1, - gKartBowser275Wheel2, - gKartBowser275Wheel3, - gKartBowser276Wheel0, - gKartBowser276Wheel1, - gKartBowser276Wheel2, - gKartBowser276Wheel3, - gKartBowser277Wheel0, - gKartBowser277Wheel1, - gKartBowser277Wheel2, - gKartBowser277Wheel3, - gKartBowser278Wheel0, - gKartBowser278Wheel1, - gKartBowser278Wheel2, - gKartBowser278Wheel3, - gKartBowser279Wheel0, - gKartBowser279Wheel1, - gKartBowser279Wheel2, - gKartBowser279Wheel3, - gKartBowser280Wheel0, - gKartBowser280Wheel1, - gKartBowser280Wheel2, - gKartBowser280Wheel3, - gKartBowser281Wheel0, - gKartBowser281Wheel1, - gKartBowser281Wheel2, - gKartBowser281Wheel3, - gKartBowser282Wheel0, - gKartBowser282Wheel1, - gKartBowser282Wheel2, - gKartBowser282Wheel3, - gKartBowser283Wheel0, - gKartBowser283Wheel1, - gKartBowser283Wheel2, - gKartBowser283Wheel3, - gKartBowser284Wheel0, - gKartBowser284Wheel1, - gKartBowser284Wheel2, - gKartBowser284Wheel3, - gKartBowser285Wheel0, - gKartBowser285Wheel1, - gKartBowser285Wheel2, - gKartBowser285Wheel3, - gKartBowser286Wheel0, - gKartBowser286Wheel1, - gKartBowser286Wheel2, - gKartBowser286Wheel3, - gKartBowser287Wheel0, - gKartBowser287Wheel1, - gKartBowser287Wheel2, - gKartBowser287Wheel3, - gKartBowser288Wheel0, - gKartBowser288Wheel1, - gKartBowser288Wheel2, - gKartBowser288Wheel3, -}; - -static const ALIGN_ASSET(2) char gKartBowserPalette[] = "__OTR__bowser_kart/bowser_kart_palette"; - diff --git a/include/assets/bowsers_castle_data.h b/include/assets/bowsers_castle_data.h deleted file mode 100644 index 9768f72e0..000000000 --- a/include/assets/bowsers_castle_data.h +++ /dev/null @@ -1,283 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_110[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_110"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_230[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_230"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_398[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_398"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_428[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_428"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4F0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4F0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_640[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_640"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_7A0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_7A0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_860[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_860"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_8E8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_8E8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_9F8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_9F8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_AE0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_AE0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_B88[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_B88"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_C08[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_C08"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_D20[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_D20"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_E00[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_E00"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_EA8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_EA8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_F08[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_F08"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1040[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1040"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1138[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1138"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_11F0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_11F0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1248[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1248"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1290[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1290"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_12D0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_12D0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1330[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1330"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1350[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1350"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1370[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1370"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_13A0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_13A0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_13C0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_13C0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_13E0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_13E0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1448[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1448"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1488[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1488"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_14B0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_14B0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1520[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1520"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1590[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1590"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1608[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1608"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1690[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1690"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1710[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1710"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1788[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1788"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_17D0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_17D0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1818[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1818"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1860[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1860"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_18C0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_18C0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1928[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1928"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1960[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1960"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_19A8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_19A8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_19F8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_19F8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1A40[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1A40"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1A90[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1A90"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1AD8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1AD8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1B10[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1B10"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1B58[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1B58"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1BB0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1BB0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1C10[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1C10"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1C38[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1C38"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1C60[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1C60"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1C98[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1C98"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1CD0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1CD0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1DF8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1DF8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1EB0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1EB0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1FA0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_1FA0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2008[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2008"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2130[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2130"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_21F0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_21F0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_22E8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_22E8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2398[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2398"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_24B8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_24B8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2578[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2578"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2688[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2688"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2760[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2760"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2880[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2880"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2958[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2958"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2A60[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2A60"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2B80[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2B80"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2C48[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2C48"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2D08[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2D08"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2DF8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2DF8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2F30[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2F30"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2FB0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_2FB0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3050[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3050"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3158[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3158"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3230[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3230"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_32C0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_32C0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3338[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3338"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3480[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3480"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3508[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3508"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_35D0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_35D0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3678[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3678"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_37D8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_37D8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_38F8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_38F8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_39E0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_39E0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3B00[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3B00"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3C08[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3C08"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3D78[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3D78"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3EA8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3EA8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3FF0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_3FF0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_40F0[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_40F0"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4278[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4278"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4358[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4358"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4488[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4488"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_45D8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_45D8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4748[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4748"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4820[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4820"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4998[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4998"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4A98[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4A98"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4C00[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4C00"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4CE8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4CE8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4EA8[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_4EA8"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_unknown_waypoints[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_track_waypoints[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_side[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_thwomp_side"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_tlut[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_thwomp_tlut"; - -static const ALIGN_ASSET(2) char gTextureThwompFace1[] = "__OTR__bowsers_castle_data/gTextureThwompFace1"; - -static const ALIGN_ASSET(2) char gTextureThwompFace2[] = "__OTR__bowsers_castle_data/gTextureThwompFace2"; - -static const ALIGN_ASSET(2) char gTextureThwompFace3[] = "__OTR__bowsers_castle_data/gTextureThwompFace3"; - -static const ALIGN_ASSET(2) char gTextureThwompFace4[] = "__OTR__bowsers_castle_data/gTextureThwompFace4"; - -static const ALIGN_ASSET(2) char gTextureThwompFace5[] = "__OTR__bowsers_castle_data/gTextureThwompFace5"; - -static const ALIGN_ASSET(2) char gTextureThwompFace6[] = "__OTR__bowsers_castle_data/gTextureThwompFace6"; - -static const char* d_course_bowsers_castle_thwomp_faces[] = { - gTextureThwompFace1, - gTextureThwompFace2, - gTextureThwompFace3, - gTextureThwompFace4, - gTextureThwompFace5, - gTextureThwompFace6, -}; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_model1[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_thwomp_model1"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_model2[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_thwomp_model2"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_model3[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_thwomp_model3"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_model4[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_thwomp_model4"; - -static const ALIGN_ASSET(2) char bowsers_castle_data_seg6_gfx_8F38[] = "__OTR__bowsers_castle_data/bowsers_castle_data_seg6_gfx_8F38"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_8F38[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_8F38"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_9078[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_9078"; - -static const ALIGN_ASSET(2) char bowsers_castle_data_seg6_gfx_9078[] = "__OTR__bowsers_castle_data/bowsers_castle_data_seg6_gfx_9078"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_thwomp[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_thwomp"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_unknown_model[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_unknown_model"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_bush[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_bush"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_9148[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_9148"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_9228[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_dl_9228"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_tree_spawn[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_tree_spawn"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_item_box_spawns[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_addr[] = "__OTR__bowsers_castle_data/d_course_bowsers_castle_addr"; - diff --git a/include/assets/bowsers_castle_displaylists.h b/include/assets/bowsers_castle_displaylists.h deleted file mode 100644 index 6a37fb95e..000000000 --- a/include/assets/bowsers_castle_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dls[] = "__OTR__bowsers_castle_displaylists/d_course_bowsers_castle_packed_dls"; - diff --git a/include/assets/bowsers_castle_vertices.h b/include/assets/bowsers_castle_vertices.h deleted file mode 100644 index c018d6ae5..000000000 --- a/include/assets/bowsers_castle_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex[] = "__OTR__bowsers_castle_vertices/d_course_bowsers_castle_vertex"; - diff --git a/include/assets/ceremony_data.h b/include/assets/ceremony_data.h deleted file mode 100644 index 928f3f423..000000000 --- a/include/assets/ceremony_data.h +++ /dev/null @@ -1,217 +0,0 @@ -#pragma once - -#include -#include -#include -#include - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_160[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_160"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_340[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_340"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_530[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_530"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_6D0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_6D0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_8D0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_8D0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_A50[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_A50"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_C50[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_C50"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_E50[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_E50"; - -static const ALIGN_ASSET(2) char silver_trophy_dl[] = "__OTR__ceremony_data/silver_trophy_dl"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_FE0[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_FE0"; - -static const ALIGN_ASSET(2) char silver_trophy_dl2[] = "__OTR__ceremony_data/silver_trophy_dl2"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_10B8[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_10B8"; - -static const ALIGN_ASSET(2) char silver_trophy_dl3[] = "__OTR__ceremony_data/silver_trophy_dl3"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_1188[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_1188"; - -static const ALIGN_ASSET(2) char silver_trophy_dl4[] = "__OTR__ceremony_data/silver_trophy_dl4"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_1260[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_1260"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_1418[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_1418"; - -static const ALIGN_ASSET(2) char silver_trophy_dl5[] = "__OTR__ceremony_data/silver_trophy_dl5"; - -static const ALIGN_ASSET(2) char silver_trophy_dl6[] = "__OTR__ceremony_data/silver_trophy_dl6"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_14D0[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_14D0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_1580[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_1580"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_16E0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_16E0"; - -static const ALIGN_ASSET(2) char unused_trophy_base_with_handle[] = "__OTR__ceremony_data/some_vtx"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_25F0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_25F0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_27E0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_27E0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_29E0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_29E0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_2BD0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_2BD0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_2D50[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_2D50"; - -static const ALIGN_ASSET(2) char unused_trophy_base2[] = "__OTR__ceremony_data/some_vtx2"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3320[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_3320"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3520[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_3520"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3710[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_3710"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3900[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_3900"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3A90[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_3A90"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3C90[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_3C90"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3E80[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_3E80"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_4080[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_4080"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_4130[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_4130"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_4330[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_4330"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_4520[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_4520"; - -static const ALIGN_ASSET(2) char reflection_map_brass[] = "__OTR__ceremony_data/reflection_map_brass"; - -static const ALIGN_ASSET(2) char reflection_map_silver[] = "__OTR__ceremony_data/reflection_map_silver"; - -static const ALIGN_ASSET(2) char ceremony_reflection_map_gold[] = "__OTR__ceremony_data/reflection_map_gold"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_5E70[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_5E70"; - -static const ALIGN_ASSET(2) char gold_trophy_dl[] = "__OTR__ceremony_data/gold_trophy_dl"; - -static const ALIGN_ASSET(2) char gold_trophy_dl2[] = "__OTR__ceremony_data/gold_trophy_dl2"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_5F20[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_5F20"; - -static const ALIGN_ASSET(2) char gold_trophy_dl3[] = "__OTR__ceremony_data/gold_trophy_dl3"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_5FD0[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_5FD0"; - -static const ALIGN_ASSET(2) char gold_trophy_dl4[] = "__OTR__ceremony_data/gold_trophy_dl4"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_6218[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_6218"; - -static const ALIGN_ASSET(2) char gold_trophy_dl5[] = "__OTR__ceremony_data/gold_trophy_dl5"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_62C8[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_62C8"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_6518[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_6518"; - -static const ALIGN_ASSET(2) char gold_trophy_dl6[] = "__OTR__ceremony_data/gold_trophy_dl6"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_6720[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_6720"; - -static const ALIGN_ASSET(2) char gold_trophy_dl7[] = "__OTR__ceremony_data/gold_trophy_dl7"; - -static const ALIGN_ASSET(2) char gold_trophy_dl8[] = "__OTR__ceremony_data/gold_trophy_dl8"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_6880[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_6880"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_6948[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_6948"; - -static const ALIGN_ASSET(2) char gold_trophy_dl9[] = "__OTR__ceremony_data/gold_trophy_dl9"; - -static const ALIGN_ASSET(2) char gold_trophy_dl10[] = "__OTR__ceremony_data/gold_trophy_dl10"; - -static const ALIGN_ASSET(2) char gold_trophy_dl11[] = "__OTR__ceremony_data/gold_trophy_dl11"; - -static const ALIGN_ASSET(2) char gold_trophy_dl12[] = "__OTR__ceremony_data/gold_trophy_dl12"; - -static const ALIGN_ASSET(2) char gold_trophy_dl13[] = "__OTR__ceremony_data/gold_trophy_dl13"; - -static const ALIGN_ASSET(2) char gold_trophy_dl14[] = "__OTR__ceremony_data/gold_trophy_dl14"; - -static const ALIGN_ASSET(2) char gold_trophy_dl15[] = "__OTR__ceremony_data/gold_trophy_dl15"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_lights_6BB8[] = "__OTR__ceremony_data/ceremony_data_seg11_lights_6BB8"; - -static const ALIGN_ASSET(2) char light1[] = "__OTR__ceremony_data/light1"; - -static const ALIGN_ASSET(2) char gTexturePodium1[] = "__OTR__ceremony_data/texture_podium1"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_73D0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_73D0"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_74D0[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_74D0"; - -static const ALIGN_ASSET(2) char podium_dl[] = "__OTR__ceremony_data/podium_dl"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_7510[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_7510"; - -static const ALIGN_ASSET(2) char podium_dl2[] = "__OTR__ceremony_data/podium_dl2"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_75E0[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_75E0"; - -static const ALIGN_ASSET(2) char podium_dl3[] = "__OTR__ceremony_data/podium_dl3"; - -static const ALIGN_ASSET(2) char podium_dl4[] = "__OTR__ceremony_data/podium_dl4"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_7608[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_7608"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_7708[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_7708"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_lights_7748[] = "__OTR__ceremony_data/ceremony_data_seg11_lights_7748"; - -static const ALIGN_ASSET(2) char light2[] = "__OTR__ceremony_data/light2"; - -static const ALIGN_ASSET(2) char gTexturePodium2[] = "__OTR__ceremony_data/texture_podium2"; - -static const ALIGN_ASSET(2) char podium2_dl[] = "__OTR__ceremony_data/podium2_dl"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_7F60[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_7F60"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_8030[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_8030"; - -static const ALIGN_ASSET(2) char podium2_dl2[] = "__OTR__ceremony_data/podium2_dl2"; - -static const ALIGN_ASSET(2) char podium2_dl3[] = "__OTR__ceremony_data/podium2_dl3"; - -static const ALIGN_ASSET(2) char podium2_dl4[] = "__OTR__ceremony_data/podium2_dl4"; - -static const ALIGN_ASSET(2) char light3[] = "__OTR__ceremony_data/light3"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_lights_8058[] = "__OTR__ceremony_data/ceremony_data_seg11_lights_8058"; - -static const ALIGN_ASSET(2) char gTexturePodium3[] = "__OTR__ceremony_data/texture_podium3"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_8870[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_8870"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_8970[] = "__OTR__ceremony_data/ceremony_data_seg11_vtx_8970"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_89B0[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_89B0"; - -static const ALIGN_ASSET(2) char podium3_dl[] = "__OTR__ceremony_data/podium3_dl"; - -static const ALIGN_ASSET(2) char ceremony_data_seg11_gfx_8A80[] = "__OTR__ceremony_data/ceremony_data_seg11_gfx_8A80"; - -static const ALIGN_ASSET(2) char podium3_dl2[] = "__OTR__ceremony_data/podium3_dl2"; - -static const ALIGN_ASSET(2) char podium3_dl3[] = "__OTR__ceremony_data/podium3_dl3"; - -static const ALIGN_ASSET(2) char podium3_dl4[] = "__OTR__ceremony_data/podium3_dl4"; - -static const ALIGN_ASSET(2) char podium_ceremony_path[] = "__OTR__ceremony_data/ending_sequence"; - -static const ALIGN_ASSET(2) char podium_ceremony_path_2[] = "__OTR__ceremony_data/ending_sequence2"; - -static const ALIGN_ASSET(2) char podium_ceremony_path_3[] = "__OTR__ceremony_data/ending_sequence3"; - -static const ALIGN_ASSET(2) char podium_ceremony_path_4[] = "__OTR__ceremony_data/ending_sequence4"; - diff --git a/include/assets/choco_mountain_data.h b/include/assets/choco_mountain_data.h deleted file mode 100644 index 86be88fdd..000000000 --- a/include/assets/choco_mountain_data.h +++ /dev/null @@ -1,244 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_B0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_B0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_150[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_150"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_208[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_208"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2A8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2A8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_330[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_330"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_410[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_410"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_4D8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_4D8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_588[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_588"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_618[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_618"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_6C0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_6C0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_750[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_750"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_7E8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_7E8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_878[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_878"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_908[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_908"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_990[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_990"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_A28[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_A28"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_B10[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_B10"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_BB8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_BB8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_C40[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_C40"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_D30[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_D30"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_DF8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_DF8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_EA0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_EA0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_F38[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_F38"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1000[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1000"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_10A8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_10A8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1150[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1150"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_11D8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_11D8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1280[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1280"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1330[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1330"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_13E0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_13E0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1488[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1488"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1528[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1528"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_15E8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_15E8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_16B8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_16B8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1788[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1788"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1810[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1810"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_18B8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_18B8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1970[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1970"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1A40[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1A40"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1AC8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1AC8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1B70[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1B70"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1C18[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1C18"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1CC8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1CC8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1D50[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1D50"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1E08[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1E08"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1E98[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1E98"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1F40[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1F40"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1FE0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_1FE0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_20C8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_20C8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2168[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2168"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2228[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2228"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_22D8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_22D8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_23C8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_23C8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2468[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2468"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2538[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2538"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2600[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2600"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_26D8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_26D8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2780[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2780"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2840[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2840"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2908[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2908"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_29B8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_29B8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2A88[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2A88"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2B38[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2B38"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2C08[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2C08"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2C98[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2C98"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2D50[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2D50"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2DE8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2DE8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2EA0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2EA0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2F28[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2F28"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2FD0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_2FD0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3070[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3070"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3120[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3120"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_31D8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_31D8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_32B0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_32B0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3368[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3368"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3438[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3438"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3550[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3550"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3618[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3618"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_36F0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_36F0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_37D0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_37D0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_38E8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_38E8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_39A8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_39A8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3A80[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3A80"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3B60[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3B60"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3C18[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3C18"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3CB8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3CB8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3D70[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3D70"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3E18[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3E18"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3EE0[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3EE0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3FA8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_3FA8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_4090[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_4090"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_4138[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_4138"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_41F8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_41F8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_42C8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_42C8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_43C8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_43C8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_unknown_waypoints[] = "__OTR__choco_mountain_data/d_course_choco_mountain_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_track_waypoints[] = "__OTR__choco_mountain_data/d_course_choco_mountain_track_waypoints"; - -static const ALIGN_ASSET(2) char choco_mountain_data_seg6_lights_5AE0[] = "__OTR__choco_mountain_data/choco_mountain_data_seg6_lights_5AE0"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_light[] = "__OTR__choco_mountain_data/d_course_choco_mountain_light"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_6005AF8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_6005AF8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_wall_texture[] = "__OTR__choco_mountain_data/d_course_choco_mountain_wall_texture"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_rock_texture[] = "__OTR__choco_mountain_data/d_course_choco_mountain_rock_texture"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_falling_rock_model[] = "__OTR__choco_mountain_data/d_course_choco_mountain_falling_rock_model"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_6006C28[] = "__OTR__choco_mountain_data/d_course_choco_mountain_6006C28"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_6006C78[] = "__OTR__choco_mountain_data/d_course_choco_mountain_6006C78"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_6006CC8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_6006CC8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_6006D08[] = "__OTR__choco_mountain_data/d_course_choco_mountain_6006D08"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_6006DA8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_6006DA8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_6006E48[] = "__OTR__choco_mountain_data/d_course_choco_mountain_6006E48"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_6006EC8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_6006EC8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_6EF8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_6EF8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_6F48[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_6F48"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_6F88[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_6F88"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_falling_rock[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_falling_rock"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_71B8[] = "__OTR__choco_mountain_data/d_course_choco_mountain_dl_71B8"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_falling_rock_spawns[] = "__OTR__choco_mountain_data/d_course_choco_mountain_falling_rock_spawns"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_item_box_spawns[] = "__OTR__choco_mountain_data/d_course_choco_mountain_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_choco_mountain_addr[] = "__OTR__choco_mountain_data/d_course_choco_mountain_addr"; - diff --git a/include/assets/choco_mountain_displaylists.h b/include/assets/choco_mountain_displaylists.h deleted file mode 100644 index d02719ad2..000000000 --- a/include/assets/choco_mountain_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dls[] = "__OTR__choco_mountain_displaylists/d_course_choco_mountain_packed_dls"; - diff --git a/include/assets/choco_mountain_vertices.h b/include/assets/choco_mountain_vertices.h deleted file mode 100644 index ac0d0020e..000000000 --- a/include/assets/choco_mountain_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex[] = "__OTR__choco_mountain_vertices/d_course_choco_mountain_vertex"; - diff --git a/include/assets/common_data.h b/include/assets/common_data.h deleted file mode 100644 index 5dc159476..000000000 --- a/include/assets/common_data.h +++ /dev/null @@ -1,866 +0,0 @@ -#pragma once - -#include -#include -#include -#include - -static const ALIGN_ASSET(2) char common_tlut_finish_line_banner[] = "__OTR__common_data/common_tlut_finish_line_banner"; - -static const ALIGN_ASSET(2) char common_texture_particle_fire[] = "__OTR__common_data/common_texture_particle_fire"; - -static const ALIGN_ASSET(2) char D_0D001200[] = "__OTR__common_data/D_0D001200"; - -static const ALIGN_ASSET(2) char D_0D001210[] = "__OTR__common_data/D_0D001210"; - -static const ALIGN_ASSET(2) char D_0D001240[] = "__OTR__common_data/D_0D001240"; - -static const ALIGN_ASSET(2) char D_0D001270[] = "__OTR__common_data/D_0D001270"; - -static const ALIGN_ASSET(2) char D_0D0012A0[] = "__OTR__common_data/D_0D0012A0"; - -static const ALIGN_ASSET(2) char D_0D0012D0[] = "__OTR__common_data/D_0D0012D0"; - -static const ALIGN_ASSET(2) char D_0D001300[] = "__OTR__common_data/D_0D001300"; - -static const ALIGN_ASSET(2) char D_0D001330[] = "__OTR__common_data/D_0D001330"; - -static const ALIGN_ASSET(2) char D_0D001360[] = "__OTR__common_data/D_0D001360"; - -static const ALIGN_ASSET(2) char common_vtx_finish_line_banner[] = "__OTR__common_data/common_vtx_finish_line_banner"; - -static const ALIGN_ASSET(2) char common_vtx_finish_post[] = "__OTR__common_data/common_vtx_finish_post"; - -static const ALIGN_ASSET(2) char D_0D001710[] = "__OTR__common_data/D_0D001710"; - -static const ALIGN_ASSET(2) char D_0D001750[] = "__OTR__common_data/D_0D001750"; - -static const ALIGN_ASSET(2) char D_0D001780[] = "__OTR__common_data/D_0D001780"; - -static const ALIGN_ASSET(2) char D_0D001798[] = "__OTR__common_data/D_0D001798"; - -static const ALIGN_ASSET(2) char D_0D0017B0[] = "__OTR__common_data/D_0D0017B0"; - -static const ALIGN_ASSET(2) char D_0D0017C8[] = "__OTR__common_data/D_0D0017C8"; - -static const ALIGN_ASSET(2) char D_0D0017E0[] = "__OTR__common_data/D_0D0017E0"; - -static const ALIGN_ASSET(2) char D_0D0017F8[] = "__OTR__common_data/D_0D0017F8"; - -static const ALIGN_ASSET(2) char D_0D001810[] = "__OTR__common_data/D_0D001810"; - -static const ALIGN_ASSET(2) char D_0D001828[] = "__OTR__common_data/D_0D001828"; - -static const ALIGN_ASSET(2) char D_0D001840[] = "__OTR__common_data/D_0D001840"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_1840[] = "__OTR__common_data/common_data_seg13_gfx_1840"; - -static const ALIGN_ASSET(2) char common_model_finish_post[] = "__OTR__common_data/common_model_finish_post"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_1AB8[] = "__OTR__common_data/common_data_seg13_gfx_1AB8"; - -static const ALIGN_ASSET(2) char D_0D001B68[] = "__OTR__common_data/D_0D001B68"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_1B68[] = "__OTR__common_data/common_data_seg13_gfx_1B68"; - -static const ALIGN_ASSET(2) char D_0D001B90[] = "__OTR__common_data/D_0D001B90"; - -static const ALIGN_ASSET(2) char D_0D001BD8[] = "__OTR__common_data/D_0D001BD8"; - -static const ALIGN_ASSET(2) char D_0D001C20[] = "__OTR__common_data/D_0D001C20"; - -static const ALIGN_ASSET(2) char D_0D001C88[] = "__OTR__common_data/D_0D001C88"; - -static const ALIGN_ASSET(2) char common_vtx_itembox[] = "__OTR__common_data/common_vtx_itembox"; - -static const ALIGN_ASSET(2) char common_texture_item_box_question_mark[] = "__OTR__common_data/common_texture_item_box_question_mark"; - -static const ALIGN_ASSET(2) char D_0D002EE8[] = "__OTR__common_data/D_0D002EE8"; - -static const ALIGN_ASSET(2) char common_fake_item_box_question_mark_vertices[] = "__OTR__common_data/common_fake_item_box_question_mark_vertices"; - -static const ALIGN_ASSET(2) char common_model_fake_itembox[] = "__OTR__common_data/common_model_fake_itembox"; - -static const ALIGN_ASSET(2) char itemBoxQuestionMarkModel[] = "__OTR__common_data/itemBoxQuestionMarkModel"; - -static const ALIGN_ASSET(2) char D_0D003090[] = "__OTR__common_data/D_0D003090"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_3090[] = "__OTR__common_data/common_data_seg13_gfx_3090"; - -static const ALIGN_ASSET(2) char D_0D0030F8[] = "__OTR__common_data/D_0D0030F8"; - -static const ALIGN_ASSET(2) char D_0D003128[] = "__OTR__common_data/D_0D003128"; - -static const ALIGN_ASSET(2) char D_0D003158[] = "__OTR__common_data/D_0D003158"; - -static const ALIGN_ASSET(2) char D_0D003188[] = "__OTR__common_data/D_0D003188"; - -static const ALIGN_ASSET(2) char D_0D0031B8[] = "__OTR__common_data/D_0D0031B8"; - -static const ALIGN_ASSET(2) char D_0D0031E8[] = "__OTR__common_data/D_0D0031E8"; - -static const ALIGN_ASSET(2) char D_0D003218[] = "__OTR__common_data/D_0D003218"; - -static const ALIGN_ASSET(2) char D_0D003248[] = "__OTR__common_data/D_0D003248"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_3278[] = "__OTR__common_data/common_data_seg13_gfx_3278"; - -static const ALIGN_ASSET(2) char D_0D003278[] = "__OTR__common_data/D_0D003278"; - -static const ALIGN_ASSET(2) char D_0D003288[] = "__OTR__common_data/D_0D003288"; - -static const ALIGN_ASSET(2) char common_vtx_banana[] = "__OTR__common_data/common_vtx_banana"; - -static const ALIGN_ASSET(2) char common_vtx_flat_banana[] = "__OTR__common_data/common_vtx_flat_banana"; - -static const ALIGN_ASSET(2) char common_texture_banana[] = "__OTR__common_data/common_texture_banana"; - -static const ALIGN_ASSET(2) char common_texture_flat_banana[] = "__OTR__common_data/common_texture_flat_banana"; - -static const ALIGN_ASSET(2) char common_model_banana[] = "__OTR__common_data/common_model_banana"; - -static const ALIGN_ASSET(2) char common_model_flat_banana[] = "__OTR__common_data/common_model_flat_banana"; - -static const ALIGN_ASSET(2) char common_tlut_trees_import[] = "__OTR__common_data/common_tlut_trees_import"; - -static const ALIGN_ASSET(2) char common_tlut_green_shell[] = "__OTR__common_data/common_tlut_green_shell"; - -static const ALIGN_ASSET(2) char common_tlut_blue_shell[] = "__OTR__common_data/common_tlut_blue_shell"; - -static const ALIGN_ASSET(2) char common_data_seg13_vtx_5238[] = "__OTR__common_data/common_data_seg13_vtx_5238"; - -static const ALIGN_ASSET(2) char common_data_seg13_vtx_5278[] = "__OTR__common_data/common_data_seg13_vtx_5278"; - -static const ALIGN_ASSET(2) char D_0D0052B8[] = "__OTR__common_data/D_0D0052B8"; - -static const ALIGN_ASSET(2) char D_0D005308[] = "__OTR__common_data/D_0D005308"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_5308[] = "__OTR__common_data/common_data_seg13_gfx_5308"; - -static const ALIGN_ASSET(2) char D_0D005338[] = "__OTR__common_data/D_0D005338"; - -static const ALIGN_ASSET(2) char D_0D005368[] = "__OTR__common_data/D_0D005368"; - -static const ALIGN_ASSET(2) char D_toads_turnpike_0D005398[] = "__OTR__common_data/D_toads_turnpike_0D005398"; - -static const ALIGN_ASSET(2) char D_toads_turnpike_0D0053B0[] = "__OTR__common_data/D_toads_turnpike_0D0053B0"; - -static const ALIGN_ASSET(2) char D_toads_turnpike_0D0053C8[] = "__OTR__common_data/D_toads_turnpike_0D0053C8"; - -static const ALIGN_ASSET(2) char D_toads_turnpike_0D0053F0[] = "__OTR__common_data/D_toads_turnpike_0D0053F0"; - -static const ALIGN_ASSET(2) char D_toads_turnpike_0D005418[] = "__OTR__common_data/D_toads_turnpike_0D005418"; - -static const ALIGN_ASSET(2) char D_0D005430[] = "__OTR__common_data/D_0D005430"; - -static const ALIGN_ASSET(2) char common_vtx_player_minimap_icon[] = "__OTR__common_data/common_vtx_player_minimap_icon"; - -static const ALIGN_ASSET(2) char D_0D0054B0[] = "__OTR__common_data/D_0D0054B0"; - -static const ALIGN_ASSET(2) char common_vtx_rectangle[] = "__OTR__common_data/common_vtx_rectangle"; - -static const ALIGN_ASSET(2) char D_0D0057B0[] = "__OTR__common_data/D_0D0057B0"; - -static const ALIGN_ASSET(2) char D_0D0057F0[] = "__OTR__common_data/D_0D0057F0"; - -static const ALIGN_ASSET(2) char common_data_seg13_vtx_58E0[] = "__OTR__common_data/common_data_seg13_vtx_58E0"; - -static const ALIGN_ASSET(2) char D_0D005920[] = "__OTR__common_data/D_0D005920"; - -static const ALIGN_ASSET(2) char D_0D005AA0[] = "__OTR__common_data/D_0D005AA0"; - -static const ALIGN_ASSET(2) char D_0D005AE0[] = "__OTR__common_data/D_0D005AE0"; - -static const ALIGN_ASSET(2) char D_0D005B20[] = "__OTR__common_data/D_0D005B20"; - -static const ALIGN_ASSET(2) char D_0D005B60[] = "__OTR__common_data/D_0D005B60"; - -static const ALIGN_ASSET(2) char D_0D005BA0[] = "__OTR__common_data/D_0D005BA0"; - -static const ALIGN_ASSET(2) char D_0D005BD0[] = "__OTR__common_data/D_0D005BD0"; - -static const ALIGN_ASSET(2) char D_0D005C00[] = "__OTR__common_data/D_0D005C00"; - -static const ALIGN_ASSET(2) char D_0D005C30[] = "__OTR__common_data/D_0D005C30"; - -static const ALIGN_ASSET(2) char D_0D005E80[] = "__OTR__common_data/D_0D005E80"; - -static const ALIGN_ASSET(2) char common_vtx_lakitu[] = "__OTR__common_data/common_vtx_lakitu"; - -static const ALIGN_ASSET(2) char D_0D005F30[] = "__OTR__common_data/D_0D005F30"; - -static const ALIGN_ASSET(2) char D_0D005FB0[] = "__OTR__common_data/D_0D005FB0"; - -static const ALIGN_ASSET(2) char D_0D005FF0[] = "__OTR__common_data/D_0D005FF0"; - -static const ALIGN_ASSET(2) char D_0D006030[] = "__OTR__common_data/D_0D006030"; - -static const ALIGN_ASSET(2) char common_vtx_hedgehog[] = "__OTR__common_data/common_vtx_hedgehog"; - -static const ALIGN_ASSET(2) char D_0D006130[] = "__OTR__common_data/D_0D006130"; - -static const ALIGN_ASSET(2) char D_0D0061B0[] = "__OTR__common_data/D_0D0061B0"; - -static const ALIGN_ASSET(2) char D_0D0062B0[] = "__OTR__common_data/D_0D0062B0"; - -static const ALIGN_ASSET(2) char D_0D0064B0[] = "__OTR__common_data/D_0D0064B0"; - -static const ALIGN_ASSET(2) char common_vtx_also_lakitu[] = "__OTR__common_data/common_vtx_also_lakitu"; - -static const ALIGN_ASSET(2) char D_0D0068F0[] = "__OTR__common_data/D_0D0068F0"; - -static const ALIGN_ASSET(2) char D_0D006930[] = "__OTR__common_data/D_0D006930"; - -static const ALIGN_ASSET(2) char common_rectangle_display[] = "__OTR__common_data/common_rectangle_display"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_6940[] = "__OTR__common_data/common_data_seg13_gfx_6940"; - -static const ALIGN_ASSET(2) char D_0D006950[] = "__OTR__common_data/D_0D006950"; - -static const ALIGN_ASSET(2) char D_0D006968[] = "__OTR__common_data/D_0D006968"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_6980[] = "__OTR__common_data/common_data_seg13_gfx_6980"; - -static const ALIGN_ASSET(2) char D_0D006980[] = "__OTR__common_data/D_0D006980"; - -static const ALIGN_ASSET(2) char D_0D006998[] = "__OTR__common_data/D_0D006998"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_69B0[] = "__OTR__common_data/common_data_seg13_gfx_69B0"; - -static const ALIGN_ASSET(2) char D_0D0069B0[] = "__OTR__common_data/D_0D0069B0"; - -static const ALIGN_ASSET(2) char D_0D0069C8[] = "__OTR__common_data/D_0D0069C8"; - -static const ALIGN_ASSET(2) char D_0D0069E0[] = "__OTR__common_data/D_0D0069E0"; - -static const ALIGN_ASSET(2) char D_0D0069F8[] = "__OTR__common_data/D_0D0069F8"; - -static const ALIGN_ASSET(2) char D_0D006A10[] = "__OTR__common_data/D_0D006A10"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_6A10[] = "__OTR__common_data/common_data_seg13_gfx_6A10"; - -static const ALIGN_ASSET(2) char D_0D006A28[] = "__OTR__common_data/D_0D006A28"; - -static const ALIGN_ASSET(2) char D_0D006A40[] = "__OTR__common_data/D_0D006A40"; - -static const ALIGN_ASSET(2) char common_shadow_i4[] = "__OTR__common_data/common_shadow_i4"; - -static const ALIGN_ASSET(2) char D_0D006AD8[] = "__OTR__common_data/D_0D006AD8"; - -static const ALIGN_ASSET(2) char common_tlut_debug_font[] = "__OTR__common_data/common_tlut_debug_font"; - -static const ALIGN_ASSET(2) char common_texture_debug_font[] = "__OTR__common_data/common_texture_debug_font"; - -static const ALIGN_ASSET(2) char D_0D0076F8[] = "__OTR__common_data/D_0D0076F8"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_7780[] = "__OTR__common_data/common_data_seg13_gfx_7780"; - -static const ALIGN_ASSET(2) char D_0D007780[] = "__OTR__common_data/D_0D007780"; - -static const ALIGN_ASSET(2) char D_0D0077A0[] = "__OTR__common_data/D_0D0077A0"; - -static const ALIGN_ASSET(2) char D_0D0077D0[] = "__OTR__common_data/D_0D0077D0"; - -static const ALIGN_ASSET(2) char D_0D0077F8[] = "__OTR__common_data/D_0D0077F8"; - -static const ALIGN_ASSET(2) char D_0D007828[] = "__OTR__common_data/D_0D007828"; - -static const ALIGN_ASSET(2) char D_0D007850[] = "__OTR__common_data/D_0D007850"; - -static const ALIGN_ASSET(2) char D_0D007878[] = "__OTR__common_data/D_0D007878"; - -static const ALIGN_ASSET(2) char D_0D0078A0[] = "__OTR__common_data/D_0D0078A0"; - -static const ALIGN_ASSET(2) char D_0D0078D0[] = "__OTR__common_data/D_0D0078D0"; - -static const ALIGN_ASSET(2) char D_0D0078F8[] = "__OTR__common_data/D_0D0078F8"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_78F8[] = "__OTR__common_data/common_data_seg13_gfx_78F8"; - -static const ALIGN_ASSET(2) char D_0D007928[] = "__OTR__common_data/D_0D007928"; - -static const ALIGN_ASSET(2) char D_0D007948[] = "__OTR__common_data/D_0D007948"; - -static const ALIGN_ASSET(2) char D_0D007968[] = "__OTR__common_data/D_0D007968"; - -static const ALIGN_ASSET(2) char D_0D007988[] = "__OTR__common_data/D_0D007988"; - -static const ALIGN_ASSET(2) char D_0D0079A8[] = "__OTR__common_data/D_0D0079A8"; - -static const ALIGN_ASSET(2) char D_0D0079C8[] = "__OTR__common_data/D_0D0079C8"; - -static const ALIGN_ASSET(2) char D_0D0079E8[] = "__OTR__common_data/D_0D0079E8"; - -static const ALIGN_ASSET(2) char D_0D007A08[] = "__OTR__common_data/D_0D007A08"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_7A08[] = "__OTR__common_data/common_data_seg13_gfx_7A08"; - -static const ALIGN_ASSET(2) char D_0D007A40[] = "__OTR__common_data/D_0D007A40"; - -static const ALIGN_ASSET(2) char D_0D007A60[] = "__OTR__common_data/D_0D007A60"; - -static const ALIGN_ASSET(2) char D_0D007A80[] = "__OTR__common_data/D_0D007A80"; - -static const ALIGN_ASSET(2) char D_0D007AA0[] = "__OTR__common_data/D_0D007AA0"; - -static const ALIGN_ASSET(2) char D_0D007AC0[] = "__OTR__common_data/D_0D007AC0"; - -static const ALIGN_ASSET(2) char D_0D007AE0[] = "__OTR__common_data/D_0D007AE0"; - -static const ALIGN_ASSET(2) char D_0D007B00[] = "__OTR__common_data/D_0D007B00"; - -static const ALIGN_ASSET(2) char D_0D007B20[] = "__OTR__common_data/D_0D007B20"; - -static const ALIGN_ASSET(2) char D_0D007B98[] = "__OTR__common_data/D_0D007B98"; - -static const ALIGN_ASSET(2) char D_0D007C10[] = "__OTR__common_data/D_0D007C10"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_7C88[] = "__OTR__common_data/common_data_seg13_gfx_7C88"; - -static const ALIGN_ASSET(2) char D_0D007C88[] = "__OTR__common_data/D_0D007C88"; - -static const ALIGN_ASSET(2) char D_0D007CB8[] = "__OTR__common_data/D_0D007CB8"; - -static const ALIGN_ASSET(2) char D_0D007CD8[] = "__OTR__common_data/D_0D007CD8"; - -static const ALIGN_ASSET(2) char D_0D007CF8[] = "__OTR__common_data/D_0D007CF8"; - -static const ALIGN_ASSET(2) char D_0D007D18[] = "__OTR__common_data/D_0D007D18"; - -static const ALIGN_ASSET(2) char D_0D007D38[] = "__OTR__common_data/D_0D007D38"; - -static const ALIGN_ASSET(2) char D_0D007D58[] = "__OTR__common_data/D_0D007D58"; - -static const ALIGN_ASSET(2) char D_0D007D78[] = "__OTR__common_data/D_0D007D78"; - -static const ALIGN_ASSET(2) char D_0D007D98[] = "__OTR__common_data/D_0D007D98"; - -static const ALIGN_ASSET(2) char D_0D007DB8[] = "__OTR__common_data/D_0D007DB8"; - -static const ALIGN_ASSET(2) char D_0D007DD8[] = "__OTR__common_data/D_0D007DD8"; - -static const ALIGN_ASSET(2) char D_0D007DF8[] = "__OTR__common_data/D_0D007DF8"; - -static const ALIGN_ASSET(2) char D_0D007E18[] = "__OTR__common_data/D_0D007E18"; - -static const ALIGN_ASSET(2) char D_0D007E38[] = "__OTR__common_data/D_0D007E38"; - -static const ALIGN_ASSET(2) char D_0D007E58[] = "__OTR__common_data/D_0D007E58"; - -static const ALIGN_ASSET(2) char D_0D007E78[] = "__OTR__common_data/D_0D007E78"; - -static const ALIGN_ASSET(2) char D_0D007E98[] = "__OTR__common_data/D_0D007E98"; - -static const ALIGN_ASSET(2) char D_0D007EB8[] = "__OTR__common_data/D_0D007EB8"; - -static const ALIGN_ASSET(2) char D_0D007ED8[] = "__OTR__common_data/D_0D007ED8"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_7ED8[] = "__OTR__common_data/common_data_seg13_gfx_7ED8"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_7EF8[] = "__OTR__common_data/common_data_seg13_gfx_7EF8"; - -static const ALIGN_ASSET(2) char D_0D007EF8[] = "__OTR__common_data/D_0D007EF8"; - -static const ALIGN_ASSET(2) char D_0D007F18[] = "__OTR__common_data/D_0D007F18"; - -static const ALIGN_ASSET(2) char D_0D007F38[] = "__OTR__common_data/D_0D007F38"; - -static const ALIGN_ASSET(2) char D_0D007F58[] = "__OTR__common_data/D_0D007F58"; - -static const ALIGN_ASSET(2) char D_0D007F78[] = "__OTR__common_data/D_0D007F78"; - -static const ALIGN_ASSET(2) char D_0D007F98[] = "__OTR__common_data/D_0D007F98"; - -static const ALIGN_ASSET(2) char D_0D007FB8[] = "__OTR__common_data/D_0D007FB8"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_7FB8[] = "__OTR__common_data/common_data_seg13_gfx_7FB8"; - -static const ALIGN_ASSET(2) char D_0D007FE0[] = "__OTR__common_data/D_0D007FE0"; - -static const ALIGN_ASSET(2) char D_0D008000[] = "__OTR__common_data/D_0D008000"; - -static const ALIGN_ASSET(2) char D_0D008020[] = "__OTR__common_data/D_0D008020"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_8020[] = "__OTR__common_data/common_data_seg13_gfx_8020"; - -static const ALIGN_ASSET(2) char D_0D008040[] = "__OTR__common_data/D_0D008040"; - -static const ALIGN_ASSET(2) char D_0D008060[] = "__OTR__common_data/D_0D008060"; - -static const ALIGN_ASSET(2) char D_0D008080[] = "__OTR__common_data/D_0D008080"; - -static const ALIGN_ASSET(2) char D_0D008108[] = "__OTR__common_data/D_0D008108"; - -static const ALIGN_ASSET(2) char D_0D008120[] = "__OTR__common_data/D_0D008120"; - -static const ALIGN_ASSET(2) char D_0D008138[] = "__OTR__common_data/D_0D008138"; - -static const ALIGN_ASSET(2) char D_0D008B78[] = "__OTR__common_data/D_0D008B78"; - -static const ALIGN_ASSET(2) char D_0D008BB8[] = "__OTR__common_data/D_0D008BB8"; - -static const ALIGN_ASSET(2) char D_0D008BF8[] = "__OTR__common_data/D_0D008BF8"; - -static const ALIGN_ASSET(2) char D_0D008C38[] = "__OTR__common_data/D_0D008C38"; - -static const ALIGN_ASSET(2) char common_square_plain_render[] = "__OTR__common_data/common_square_plain_render"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_8C78[] = "__OTR__common_data/common_data_seg13_gfx_8C78"; - -static const ALIGN_ASSET(2) char D_0D008C90[] = "__OTR__common_data/D_0D008C90"; - -static const ALIGN_ASSET(2) char common_setting_render_character[] = "__OTR__common_data/common_setting_render_character"; - -static const ALIGN_ASSET(2) char D_0D008D10[] = "__OTR__common_data/D_0D008D10"; - -static const ALIGN_ASSET(2) char D_0D008D58[] = "__OTR__common_data/D_0D008D58"; - -static const ALIGN_ASSET(2) char D_0D008DA0[] = "__OTR__common_data/D_0D008DA0"; - -static const ALIGN_ASSET(2) char common_data_seg13_gfx_8DA0[] = "__OTR__common_data/common_data_seg13_gfx_8DA0"; - -static const ALIGN_ASSET(2) char D_0D008DB8[] = "__OTR__common_data/D_0D008DB8"; - -static const ALIGN_ASSET(2) char D_0D008DF8[] = "__OTR__common_data/D_0D008DF8"; - -static const ALIGN_ASSET(2) char D_0D008E20[] = "__OTR__common_data/D_0D008E20"; - -static const ALIGN_ASSET(2) char D_0D008E48[] = "__OTR__common_data/D_0D008E48"; - -static const ALIGN_ASSET(2) char D_0D008E70[] = "__OTR__common_data/D_0D008E70"; - -static const ALIGN_ASSET(2) char D_0D008E98[] = "__OTR__common_data/D_0D008E98"; - -static const ALIGN_ASSET(2) char D_0D008ED8[] = "__OTR__common_data/D_0D008ED8"; - -static const ALIGN_ASSET(2) char D_0D008F18[] = "__OTR__common_data/D_0D008F18"; - -static const ALIGN_ASSET(2) char D_0D008F28[] = "__OTR__common_data/D_0D008F28"; - -static const ALIGN_ASSET(2) char D_0D008F80[] = "__OTR__common_data/D_0D008F80"; - -static const ALIGN_ASSET(2) char D_0D008FB8[] = "__OTR__common_data/D_0D008FB8"; - -static const ALIGN_ASSET(2) char D_0D009058[] = "__OTR__common_data/D_0D009058"; - -static const ALIGN_ASSET(2) char D_0D0090B8[] = "__OTR__common_data/D_0D0090B8"; - -static const ALIGN_ASSET(2) char D_0D0090F8[] = "__OTR__common_data/D_0D0090F8"; - -static const ALIGN_ASSET(2) char D_0D009158[] = "__OTR__common_data/D_0D009158"; - -static const ALIGN_ASSET(2) char D_0D009188[] = "__OTR__common_data/D_0D009188"; - -static const ALIGN_ASSET(2) char D_0D0091E8[] = "__OTR__common_data/D_0D0091E8"; - -static const ALIGN_ASSET(2) char D_0D009210[] = "__OTR__common_data/D_0D009210"; - -static const ALIGN_ASSET(2) char D_0D009238[] = "__OTR__common_data/D_0D009238"; - -static const ALIGN_ASSET(2) char D_0D009260[] = "__OTR__common_data/D_0D009260"; - -static const ALIGN_ASSET(2) char D_0D009280[] = "__OTR__common_data/D_0D009280"; - -static const ALIGN_ASSET(2) char D_0D0092C8[] = "__OTR__common_data/D_0D0092C8"; - -static const ALIGN_ASSET(2) char D_0D009310[] = "__OTR__common_data/D_0D009310"; - -static const ALIGN_ASSET(2) char D_0D0093C0[] = "__OTR__common_data/D_0D0093C0"; - -static const ALIGN_ASSET(2) char common_texture_speedometer[] = "__OTR__common_data/common_texture_speedometer"; - -static const ALIGN_ASSET(2) char common_texture_speedometer_needle[] = "__OTR__common_data/common_texture_speedometer_needle"; - -static const ALIGN_ASSET(2) char common_texture_hud_lap[] = "__OTR__common_data/common_texture_hud_lap"; - -static const ALIGN_ASSET(2) char common_texture_hud_123[] = "__OTR__common_data/common_texture_hud_123"; - -static const ALIGN_ASSET(2) char common_texture_hud_lap_time[] = "__OTR__common_data/common_texture_hud_lap_time"; - -static const ALIGN_ASSET(2) char common_texture_hud_lap_1_on_3[] = "__OTR__common_data/common_texture_hud_lap_1_on_3"; - -static const ALIGN_ASSET(2) char common_texture_hud_lap_2_on_3[] = "__OTR__common_data/common_texture_hud_lap_2_on_3"; - -static const ALIGN_ASSET(2) char common_texture_hud_lap_3_on_3[] = "__OTR__common_data/common_texture_hud_lap_3_on_3"; - -static const ALIGN_ASSET(2) char common_texture_hud_total_time[] = "__OTR__common_data/common_texture_hud_total_time"; - -static const ALIGN_ASSET(2) char common_texture_hud_time[] = "__OTR__common_data/common_texture_hud_time"; - -static const ALIGN_ASSET(2) char common_texture_hud_normal_digit[] = "__OTR__common_data/common_texture_hud_normal_digit"; - -static const ALIGN_ASSET(2) char common_texture_hud_1st[] = "__OTR__common_data/common_texture_hud_1st"; - -static const ALIGN_ASSET(2) char common_texture_hud_2nd[] = "__OTR__common_data/common_texture_hud_2nd"; - -static const ALIGN_ASSET(2) char common_texture_hud_3rd[] = "__OTR__common_data/common_texture_hud_3rd"; - -static const ALIGN_ASSET(2) char common_texture_hud_4th[] = "__OTR__common_data/common_texture_hud_4th"; - -static const ALIGN_ASSET(2) char common_texture_hud_5th[] = "__OTR__common_data/common_texture_hud_5th"; - -static const ALIGN_ASSET(2) char common_texture_hud_6th[] = "__OTR__common_data/common_texture_hud_6th"; - -static const ALIGN_ASSET(2) char common_texture_hud_7th[] = "__OTR__common_data/common_texture_hud_7th"; - -static const ALIGN_ASSET(2) char common_texture_hud_8th[] = "__OTR__common_data/common_texture_hud_8th"; - -static const char* common_texture_hud_place[] = { - common_texture_hud_1st, - common_texture_hud_2nd, - common_texture_hud_3rd, - common_texture_hud_4th, - common_texture_hud_5th, - common_texture_hud_6th, - common_texture_hud_7th, - common_texture_hud_8th, -}; - -static const ALIGN_ASSET(2) char common_texture_first_place[] = "__OTR__common_data/common_texture_first_place"; - -static const ALIGN_ASSET(2) char common_texture_second_place[] = "__OTR__common_data/common_texture_second_place"; - -static const ALIGN_ASSET(2) char common_texture_third_place[] = "__OTR__common_data/common_texture_third_place"; - -static const ALIGN_ASSET(2) char common_texture_fourth_place[] = "__OTR__common_data/common_texture_fourth_place"; - -static const char* D_0D015258[] = { - common_texture_first_place, - common_texture_second_place, - common_texture_third_place, - common_texture_fourth_place, -}; - -static const ALIGN_ASSET(2) char common_tlut_player_emblem[] = "__OTR__common_data/common_tlut_player_emblem"; - -static const ALIGN_ASSET(2) char common_texture_player_emblem_1p[] = "__OTR__common_data/common_texture_player_emblem_1p"; - -static const ALIGN_ASSET(2) char common_texture_player_emblem_2p[] = "__OTR__common_data/common_texture_player_emblem_2p"; - -static const ALIGN_ASSET(2) char common_texture_player_emblem_3p[] = "__OTR__common_data/common_texture_player_emblem_3p"; - -static const ALIGN_ASSET(2) char common_texture_player_emblem_4p[] = "__OTR__common_data/common_texture_player_emblem_4p"; - -static const char* common_texture_player_emblem[] = { - common_texture_player_emblem_1p, - common_texture_player_emblem_2p, - common_texture_player_emblem_3p, - common_texture_player_emblem_4p, -}; - -static const ALIGN_ASSET(2) char common_tlut_hud_type_C_rank_font[] = "__OTR__common_data/common_tlut_hud_type_C_rank_font"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_1[] = "__OTR__common_data/common_texture_hud_type_C_rank_font_1"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_2[] = "__OTR__common_data/common_texture_hud_type_C_rank_font_2"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_3[] = "__OTR__common_data/common_texture_hud_type_C_rank_font_3"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_4[] = "__OTR__common_data/common_texture_hud_type_C_rank_font_4"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_5[] = "__OTR__common_data/common_texture_hud_type_C_rank_font_5"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_6[] = "__OTR__common_data/common_texture_hud_type_C_rank_font_6"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_7[] = "__OTR__common_data/common_texture_hud_type_C_rank_font_7"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_8[] = "__OTR__common_data/common_texture_hud_type_C_rank_font_8"; - -static const char* common_texture_hud_type_C_rank_font[] = { - common_texture_hud_type_C_rank_font_1, - common_texture_hud_type_C_rank_font_2, - common_texture_hud_type_C_rank_font_3, - common_texture_hud_type_C_rank_font_4, - common_texture_hud_type_C_rank_font_5, - common_texture_hud_type_C_rank_font_6, - common_texture_hud_type_C_rank_font_7, - common_texture_hud_type_C_rank_font_8, -}; - -static const ALIGN_ASSET(2) char common_tlut_hud_type_C_rank_tiny_font[] = "__OTR__common_data/common_tlut_hud_type_C_rank_tiny_font"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_0[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_0"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_1[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_1"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_2[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_2"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_3[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_3"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_4[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_4"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_5[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_5"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_6[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_6"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_7[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_7"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_8[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_8"; - -static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_9[] = "__OTR__common_data/common_texture_hud_type_C_rank_tiny_font_9"; - -static const char* common_texture_hud_type_C_rank_tiny_font[] = { - common_texture_hud_type_C_rank_tiny_font_0, - common_texture_hud_type_C_rank_tiny_font_1, - common_texture_hud_type_C_rank_tiny_font_2, - common_texture_hud_type_C_rank_tiny_font_3, - common_texture_hud_type_C_rank_tiny_font_4, - common_texture_hud_type_C_rank_tiny_font_5, - common_texture_hud_type_C_rank_tiny_font_6, - common_texture_hud_type_C_rank_tiny_font_7, - common_texture_hud_type_C_rank_tiny_font_8, - common_texture_hud_type_C_rank_tiny_font_9, -}; - -static const ALIGN_ASSET(2) char common_texture_character_portrait_border[] = "__OTR__common_data/common_texture_character_portrait_border"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_mario[] = "__OTR__common_data/common_tlut_portrait_mario"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_luigi[] = "__OTR__common_data/common_tlut_portrait_luigi"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_peach[] = "__OTR__common_data/common_tlut_portrait_peach"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_toad[] = "__OTR__common_data/common_tlut_portrait_toad"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_yoshi[] = "__OTR__common_data/common_tlut_portrait_yoshi"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_donkey_kong[] = "__OTR__common_data/common_tlut_portrait_donkey_kong"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_wario[] = "__OTR__common_data/common_tlut_portrait_wario"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_bowser[] = "__OTR__common_data/common_tlut_portrait_bowser"; - -static const ALIGN_ASSET(2) char common_tlut_portrait_bomb_kart_and_question_mark[] = "__OTR__common_data/common_tlut_portrait_bomb_kart_and_question_mark"; - -static const ALIGN_ASSET(2) char common_texture_portrait_mario[] = "__OTR__common_data/common_texture_portrait_mario"; - -static const ALIGN_ASSET(2) char common_texture_portrait_luigi[] = "__OTR__common_data/common_texture_portrait_luigi"; - -static const ALIGN_ASSET(2) char common_texture_portrait_peach[] = "__OTR__common_data/common_texture_portrait_peach"; - -static const ALIGN_ASSET(2) char common_texture_portrait_toad[] = "__OTR__common_data/common_texture_portrait_toad"; - -static const ALIGN_ASSET(2) char common_texture_portrait_yoshi[] = "__OTR__common_data/common_texture_portrait_yoshi"; - -static const ALIGN_ASSET(2) char common_texture_portrait_donkey_kong[] = "__OTR__common_data/common_texture_portrait_donkey_kong"; - -static const ALIGN_ASSET(2) char common_texture_portrait_wario[] = "__OTR__common_data/common_texture_portrait_wario"; - -static const ALIGN_ASSET(2) char common_texture_portrait_bowser[] = "__OTR__common_data/common_texture_portrait_bowser"; - -static const ALIGN_ASSET(2) char common_texture_portrait_bomb_kart[] = "__OTR__common_data/common_texture_portrait_bomb_kart"; - -static const ALIGN_ASSET(2) char common_texture_portrait_question_mark[] = "__OTR__common_data/common_texture_portrait_question_mark"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_none[] = "__OTR__common_data/common_tlut_item_window_none"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_banana[] = "__OTR__common_data/common_tlut_item_window_banana"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_banana_bunch[] = "__OTR__common_data/common_tlut_item_window_banana_bunch"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_mushroom[] = "__OTR__common_data/common_tlut_item_window_mushroom"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_double_mushroom[] = "__OTR__common_data/common_tlut_item_window_double_mushroom"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_triple_mushroom[] = "__OTR__common_data/common_tlut_item_window_triple_mushroom"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_super_mushroom[] = "__OTR__common_data/common_tlut_item_window_super_mushroom"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_blue_shell[] = "__OTR__common_data/common_tlut_item_window_blue_shell"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_boo[] = "__OTR__common_data/common_tlut_item_window_boo"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_green_shell[] = "__OTR__common_data/common_tlut_item_window_green_shell"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_triple_green_shell[] = "__OTR__common_data/common_tlut_item_window_triple_green_shell"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_red_shell[] = "__OTR__common_data/common_tlut_item_window_red_shell"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_triple_red_shell[] = "__OTR__common_data/common_tlut_item_window_triple_red_shell"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_star[] = "__OTR__common_data/common_tlut_item_window_star"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_thunder_bolt[] = "__OTR__common_data/common_tlut_item_window_thunder_bolt"; - -static const ALIGN_ASSET(2) char common_tlut_item_window_fake_item_box[] = "__OTR__common_data/common_tlut_item_window_fake_item_box"; - -static const ALIGN_ASSET(2) char common_texture_item_window_none[] = "__OTR__common_data/common_texture_item_window_none"; - -static const ALIGN_ASSET(2) char common_texture_item_window_banana[] = "__OTR__common_data/common_texture_item_window_banana"; - -static const ALIGN_ASSET(2) char common_texture_item_window_banana_bunch[] = "__OTR__common_data/common_texture_item_window_banana_bunch"; - -static const ALIGN_ASSET(2) char common_texture_item_window_mushroom[] = "__OTR__common_data/common_texture_item_window_mushroom"; - -static const ALIGN_ASSET(2) char common_texture_item_window_double_mushroom[] = "__OTR__common_data/common_texture_item_window_double_mushroom"; - -static const ALIGN_ASSET(2) char common_texture_item_window_triple_mushroom[] = "__OTR__common_data/common_texture_item_window_triple_mushroom"; - -static const ALIGN_ASSET(2) char common_texture_item_window_super_mushroom[] = "__OTR__common_data/common_texture_item_window_super_mushroom"; - -static const ALIGN_ASSET(2) char common_texture_item_window_blue_shell[] = "__OTR__common_data/common_texture_item_window_blue_shell"; - -static const ALIGN_ASSET(2) char common_texture_item_window_boo[] = "__OTR__common_data/common_texture_item_window_boo"; - -static const ALIGN_ASSET(2) char common_texture_item_window_green_shell[] = "__OTR__common_data/common_texture_item_window_green_shell"; - -static const ALIGN_ASSET(2) char common_texture_item_window_triple_green_shell[] = "__OTR__common_data/common_texture_item_window_triple_green_shell"; - -static const ALIGN_ASSET(2) char common_texture_item_window_red_shell[] = "__OTR__common_data/common_texture_item_window_red_shell"; - -static const ALIGN_ASSET(2) char common_texture_item_window_triple_red_shell[] = "__OTR__common_data/common_texture_item_window_triple_red_shell"; - -static const ALIGN_ASSET(2) char common_texture_item_window_star[] = "__OTR__common_data/common_texture_item_window_star"; - -static const ALIGN_ASSET(2) char common_texture_item_window_thunder_bolt[] = "__OTR__common_data/common_texture_item_window_thunder_bolt"; - -static const ALIGN_ASSET(2) char common_texture_item_window_fake_item_box[] = "__OTR__common_data/common_texture_item_window_fake_item_box"; - -static const ALIGN_ASSET(2) char common_tlut_lakitu_no_lights[] = "__OTR__common_data/common_tlut_lakitu_no_lights"; - -static const ALIGN_ASSET(2) char common_tlut_lakitu_red_lights[] = "__OTR__common_data/common_tlut_lakitu_red_lights"; - -static const ALIGN_ASSET(2) char common_tlut_lakitu_blue_lights[] = "__OTR__common_data/common_tlut_lakitu_blue_lights"; - -static const char* common_tlut_lakitu_countdown[] = { - common_tlut_lakitu_no_lights, - common_tlut_lakitu_red_lights, - common_tlut_lakitu_blue_lights, -}; - -static const ALIGN_ASSET(2) char common_tlut_lakitu_checkered_flag[] = "__OTR__common_data/common_tlut_lakitu_checkered_flag"; - -static const ALIGN_ASSET(2) char common_tlut_lakitu_second_lap[] = "__OTR__common_data/common_tlut_lakitu_second_lap"; - -static const ALIGN_ASSET(2) char common_tlut_lakitu_final_lap[] = "__OTR__common_data/common_tlut_lakitu_final_lap"; - -static const ALIGN_ASSET(2) char common_tlut_lakitu_reverse[] = "__OTR__common_data/common_tlut_lakitu_reverse"; - -static const ALIGN_ASSET(2) char common_tlut_lakitu_fishing[] = "__OTR__common_data/common_tlut_lakitu_fishing"; - -static const ALIGN_ASSET(2) char common_tlut_traffic_light[] = "__OTR__common_data/common_tlut_traffic_light"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_01[] = "__OTR__common_data/common_texture_traffic_light_01"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_02[] = "__OTR__common_data/common_texture_traffic_light_02"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_03[] = "__OTR__common_data/common_texture_traffic_light_03"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_04[] = "__OTR__common_data/common_texture_traffic_light_04"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_05[] = "__OTR__common_data/common_texture_traffic_light_05"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_06[] = "__OTR__common_data/common_texture_traffic_light_06"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_07[] = "__OTR__common_data/common_texture_traffic_light_07"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_08[] = "__OTR__common_data/common_texture_traffic_light_08"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_09[] = "__OTR__common_data/common_texture_traffic_light_09"; - -static const ALIGN_ASSET(2) char common_texture_traffic_light_10[] = "__OTR__common_data/common_texture_traffic_light_10"; - -static const ALIGN_ASSET(2) char common_texture_particle_leaf[] = "__OTR__common_data/common_texture_particle_leaf"; - -static const ALIGN_ASSET(2) char common_texture_unused_particle_leaf[] = "__OTR__common_data/common_texture_unused_particle_leaf"; - -static const ALIGN_ASSET(2) char D_0D0293D8[] = "__OTR__common_data/D_0D0293D8"; - -static const ALIGN_ASSET(2) char D_0D029458[] = "__OTR__common_data/D_0D029458"; - -static const ALIGN_ASSET(2) char common_texture_bomb_1[] = "__OTR__common_data/common_texture_bomb_1"; - -static const ALIGN_ASSET(2) char common_texture_bomb_2[] = "__OTR__common_data/common_texture_bomb_2"; - -static const ALIGN_ASSET(2) char common_texture_bomb_3[] = "__OTR__common_data/common_texture_bomb_3"; - -static const ALIGN_ASSET(2) char common_texture_bomb_4[] = "__OTR__common_data/common_texture_bomb_4"; - -static const char* common_texture_bomb[] = { - common_texture_bomb_1, - common_texture_bomb_2, - common_texture_bomb_3, - common_texture_bomb_4, -}; - -static const ALIGN_ASSET(2) char common_tlut_bomb[] = "__OTR__common_data/common_tlut_bomb"; - -static const ALIGN_ASSET(2) char D_0D02AA58[] = "__OTR__common_data/D_0D02AA58"; - -static const ALIGN_ASSET(2) char common_texture_particle_spark_1[] = "__OTR__common_data/common_texture_particle_spark_1"; - -static const ALIGN_ASSET(2) char common_texture_particle_spark_2[] = "__OTR__common_data/common_texture_particle_spark_2"; - -static const ALIGN_ASSET(2) char common_texture_particle_spark_3[] = "__OTR__common_data/common_texture_particle_spark_3"; - -static const ALIGN_ASSET(2) char common_texture_particle_spark_4[] = "__OTR__common_data/common_texture_particle_spark_4"; - -static const char* common_texture_particle_spark[] = { - common_texture_particle_spark_1, - common_texture_particle_spark_2, - common_texture_particle_spark_3, - common_texture_particle_spark_4, -}; - -static const ALIGN_ASSET(2) char common_texture_particle_smoke_1[] = "__OTR__common_data/common_texture_particle_smoke_1"; - -static const ALIGN_ASSET(2) char common_texture_particle_smoke_2[] = "__OTR__common_data/common_texture_particle_smoke_2"; - -static const ALIGN_ASSET(2) char common_texture_particle_smoke_3[] = "__OTR__common_data/common_texture_particle_smoke_3"; - -static const ALIGN_ASSET(2) char common_texture_particle_smoke_4[] = "__OTR__common_data/common_texture_particle_smoke_4"; - -static const char* common_texture_particle_smoke[] = { - common_texture_particle_smoke_1, - common_texture_particle_smoke_2, - common_texture_particle_smoke_3, - common_texture_particle_smoke_4, -}; - -static const ALIGN_ASSET(2) char common_texture_minimap_finish_line[] = "__OTR__common_data/common_texture_minimap_finish_line"; - -static const ALIGN_ASSET(2) char common_texture_minimap_kart_mario[] = "__OTR__common_data/common_texture_minimap_kart_mario"; - -static const ALIGN_ASSET(2) char common_texture_minimap_kart_luigi[] = "__OTR__common_data/common_texture_minimap_kart_luigi"; - -static const ALIGN_ASSET(2) char common_texture_minimap_kart_yoshi[] = "__OTR__common_data/common_texture_minimap_kart_yoshi"; - -static const ALIGN_ASSET(2) char common_texture_minimap_kart_toad[] = "__OTR__common_data/common_texture_minimap_kart_toad"; - -static const ALIGN_ASSET(2) char common_texture_minimap_kart_donkey_kong[] = "__OTR__common_data/common_texture_minimap_kart_donkey_kong"; - -static const ALIGN_ASSET(2) char common_texture_minimap_kart_wario[] = "__OTR__common_data/common_texture_minimap_kart_wario"; - -static const ALIGN_ASSET(2) char common_texture_minimap_kart_peach[] = "__OTR__common_data/common_texture_minimap_kart_peach"; - -static const ALIGN_ASSET(2) char common_texture_minimap_kart_bowser[] = "__OTR__common_data/common_texture_minimap_kart_bowser"; - -static const char* common_texture_minimap_kart_character[] = { - common_texture_minimap_kart_mario, - common_texture_minimap_kart_luigi, - common_texture_minimap_kart_yoshi, - common_texture_minimap_kart_toad, - common_texture_minimap_kart_donkey_kong, - common_texture_minimap_kart_wario, - common_texture_minimap_kart_peach, - common_texture_minimap_kart_bowser, -}; - -static const ALIGN_ASSET(2) char common_texture_minimap_bowser[] = "__OTR__common_data/common_texture_minimap_bowser"; - -static const ALIGN_ASSET(2) char common_texture_minimap_progress_dot[] = "__OTR__common_data/common_texture_minimap_progress_dot"; - -static const ALIGN_ASSET(2) char common_texture_minimap_mario[] = "__OTR__common_data/common_texture_minimap_mario"; - -static const ALIGN_ASSET(2) char common_texture_minimap_luigi[] = "__OTR__common_data/common_texture_minimap_luigi"; - -static const ALIGN_ASSET(2) char common_texture_minimap_yoshi[] = "__OTR__common_data/common_texture_minimap_yoshi"; - -static const ALIGN_ASSET(2) char common_texture_minimap_toad[] = "__OTR__common_data/common_texture_minimap_toad"; - -static const ALIGN_ASSET(2) char common_texture_minimap_dk[] = "__OTR__common_data/common_texture_minimap_dk"; - -static const ALIGN_ASSET(2) char common_texture_minimap_wario[] = "__OTR__common_data/common_texture_minimap_wario"; - -static const ALIGN_ASSET(2) char common_texture_minimap_peach[] = "__OTR__common_data/common_texture_minimap_peach"; - diff --git a/include/assets/data_800E8700.h b/include/assets/data_800E8700.h deleted file mode 100644 index a8c93fba1..000000000 --- a/include/assets/data_800E8700.h +++ /dev/null @@ -1,55 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char D_800E8700[] = "__OTR__data_800E8700/D_800E8700"; - -static const ALIGN_ASSET(2) char D_800E8740[] = "__OTR__data_800E8700/D_800E8740"; - -static const ALIGN_ASSET(2) char D_800E8780[] = "__OTR__data_800E8700/D_800E8780"; - -static const ALIGN_ASSET(2) char D_800E87C0[] = "__OTR__data_800E8700/D_800E87C0"; - -static const ALIGN_ASSET(2) char D_800E8800[] = "__OTR__data_800E8700/D_800E8800"; - -static const ALIGN_ASSET(2) char D_800E8840[] = "__OTR__data_800E8700/D_800E8840"; - -static const ALIGN_ASSET(2) char D_800E8880[] = "__OTR__data_800E8700/D_800E8880"; - -static const ALIGN_ASSET(2) char D_800E88C0[] = "__OTR__data_800E8700/D_800E88C0"; - -static const ALIGN_ASSET(2) char D_800E8900[] = "__OTR__data_800E8700/D_800E8900"; - -static const ALIGN_ASSET(2) char D_800E8940[] = "__OTR__data_800E8700/D_800E8940"; - -static const ALIGN_ASSET(2) char D_800E8980[] = "__OTR__data_800E8700/D_800E8980"; - -static const ALIGN_ASSET(2) char D_800E89C0[] = "__OTR__data_800E8700/D_800E89C0"; - -static const ALIGN_ASSET(2) char D_800E8A00[] = "__OTR__data_800E8700/D_800E8A00"; - -static const ALIGN_ASSET(2) char D_800E8A40[] = "__OTR__data_800E8700/D_800E8A40"; - -static const ALIGN_ASSET(2) char D_800E8A80[] = "__OTR__data_800E8700/D_800E8A80"; - -static const ALIGN_ASSET(2) char D_800E8AC0[] = "__OTR__data_800E8700/D_800E8AC0"; - -static const ALIGN_ASSET(2) char D_800E8B00[] = "__OTR__data_800E8700/D_800E8B00"; - -static const ALIGN_ASSET(2) char D_800E8B40[] = "__OTR__data_800E8700/D_800E8B40"; - -static const ALIGN_ASSET(2) char D_800E8B80[] = "__OTR__data_800E8700/D_800E8B80"; - -static const ALIGN_ASSET(2) char D_800E8BC0[] = "__OTR__data_800E8700/D_800E8BC0"; - -static const ALIGN_ASSET(2) char D_800E8C00[] = "__OTR__data_800E8700/D_800E8C00"; - -static const ALIGN_ASSET(2) char D_800E8C40[] = "__OTR__data_800E8700/D_800E8C40"; - -static const ALIGN_ASSET(2) char D_800E8CC0[] = "__OTR__data_800E8700/D_800E8CC0"; - -static const ALIGN_ASSET(2) char D_800E8D40[] = "__OTR__data_800E8700/D_800E8D40"; - -static const ALIGN_ASSET(2) char D_800E8DD0[] = "__OTR__data_800E8700/D_800E8DD0"; - diff --git a/include/assets/data_segment2.h b/include/assets/data_segment2.h deleted file mode 100644 index 1c88ba5f1..000000000 --- a/include/assets/data_segment2.h +++ /dev/null @@ -1,53 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char D_02007650[] = "__OTR__data_segment2/D_02007650"; - -static const ALIGN_ASSET(2) char D_020076B0[] = "__OTR__data_segment2/D_020076B0"; - -static const ALIGN_ASSET(2) char D_020076E0[] = "__OTR__data_segment2/D_020076E0"; - -static const ALIGN_ASSET(2) char D_02007708[] = "__OTR__data_segment2/D_02007708"; - -static const ALIGN_ASSET(2) char D_02007728[] = "__OTR__data_segment2/D_02007728"; - -static const ALIGN_ASSET(2) char D_02007748[] = "__OTR__data_segment2/D_02007748"; - -static const ALIGN_ASSET(2) char D_02007768[] = "__OTR__data_segment2/D_02007768"; - -static const ALIGN_ASSET(2) char D_02007788[] = "__OTR__data_segment2/D_02007788"; - -static const ALIGN_ASSET(2) char D_020077A8[] = "__OTR__data_segment2/D_020077A8"; - -static const ALIGN_ASSET(2) char D_020077D8[] = "__OTR__data_segment2/D_020077D8"; - -static const ALIGN_ASSET(2) char D_020077F8[] = "__OTR__data_segment2/D_020077F8"; - -static const ALIGN_ASSET(2) char D_02007818[] = "__OTR__data_segment2/D_02007818"; - -static const ALIGN_ASSET(2) char D_02007B38[] = "__OTR__data_segment2/D_02007B38"; - -static const ALIGN_ASSET(2) char D_02007B78[] = "__OTR__data_segment2/D_02007B78"; - -static const ALIGN_ASSET(2) char D_02007BB8[] = "__OTR__data_segment2/D_02007BB8"; - -static const ALIGN_ASSET(2) char D_02007CD8[] = "__OTR__data_segment2/D_02007CD8"; - -static const ALIGN_ASSET(2) char D_02007DF8[] = "__OTR__data_segment2/D_02007DF8"; - -static const ALIGN_ASSET(2) char D_02007F18[] = "__OTR__data_segment2/D_02007F18"; - -static const ALIGN_ASSET(2) char D_02007F48[] = "__OTR__data_segment2/D_02007F48"; - -static const ALIGN_ASSET(2) char D_02007F60[] = "__OTR__data_segment2/D_02007F60"; - -static const ALIGN_ASSET(2) char D_02007FC8[] = "__OTR__data_segment2/D_02007FC8"; - -static const ALIGN_ASSET(2) char D_02008008[] = "__OTR__data_segment2/D_02008008"; - -static const ALIGN_ASSET(2) char D_02008030[] = "__OTR__data_segment2/D_02008030"; - -static const ALIGN_ASSET(2) char D_02008058[] = "__OTR__data_segment2/D_02008058"; - diff --git a/include/assets/dks_jungle_parkway_data.h b/include/assets/dks_jungle_parkway_data.h deleted file mode 100644 index b2de0ca16..000000000 --- a/include/assets/dks_jungle_parkway_data.h +++ /dev/null @@ -1,424 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_0[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_20[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_20"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_180[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_180"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_210[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_210"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_310[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_310"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_400[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_400"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_560[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_560"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_628[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_628"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_750[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_750"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_888[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_888"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_A10[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_A10"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_B00[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_B00"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_C30[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_C30"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_D98[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_D98"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_EF0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_EF0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1028[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1028"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1160[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1160"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_12E8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_12E8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1478[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1478"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_15E0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_15E0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1718[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1718"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1890[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1890"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1A00[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1A00"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1B20[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1B20"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1C20[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1C20"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1DB8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1DB8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1F20[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1F20"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1FD8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1FD8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_20A0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_20A0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2200[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2200"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2328[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2328"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2398[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2398"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2480[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2480"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2558[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2558"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2728[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2728"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2810[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2810"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2928[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2928"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2AC0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2AC0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2B88[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2B88"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2D70[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2D70"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2E30[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2E30"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3010[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3010"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3100[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3100"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3338[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3338"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3498[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3498"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_36A0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_36A0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3790[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3790"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3988[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3988"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3B28[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3B28"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3CC8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3CC8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3D88[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3D88"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3F78[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3F78"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4100[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4100"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4250[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4250"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_42F8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_42F8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4470[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4470"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_45C0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_45C0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4658[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4658"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4710[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4710"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4848[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4848"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4980[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4980"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4A38[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4A38"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4AE8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4AE8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4C18[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4C18"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4D10[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4D10"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4E10[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4E10"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4FB0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4FB0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_51B0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_51B0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_53F8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_53F8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5580[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5580"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5650[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5650"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_57A0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_57A0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5920[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5920"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_59B8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_59B8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5A50[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5A50"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5B90[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5B90"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5CB0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5CB0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5D70[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5D70"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5DF8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5DF8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5EC8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5EC8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5FA8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5FA8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6048[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6048"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6178[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6178"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_62D0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_62D0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6468[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6468"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6588[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6588"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6680[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6680"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6740[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6740"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_67C0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_67C0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_68D0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_68D0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_69C8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_69C8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6A70[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6A70"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6AD8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6AD8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6BE8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6BE8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6C70[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6C70"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6CB8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6CB8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6D10[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6D10"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6D88[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6D88"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6E00[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6E00"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6E48[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6E48"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6EB0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6EB0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6F10[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6F10"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_7008[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_7008"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_7080[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_7080"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_7108[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_7108"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_waypoints[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_waypoints2[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_waypoints2"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_track_waypoints[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model1[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model1"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model2[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model2"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model3[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model3"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model4[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model4"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model5[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model5"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model6[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model6"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model7[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model7"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model9[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model9"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model10[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model10"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model11[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model11"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model12[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model12"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model13[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model13"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model14[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model14"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model15[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model15"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_light1[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_light1"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_lights_9DE8[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_lights_9DE8"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_lights_9E00[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_lights_9E00"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_light2[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_light2"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_lights_9E18[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_lights_9E18"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_light3[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_light3"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_lights_9E30[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_lights_9E30"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_light4[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_light4"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_mario_sign[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_mario_sign"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_window_upper[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_window_upper"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_window_lower[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_window_lower"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_railing[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_railing"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_DE48[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_DE48"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_DE48[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_DE48"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_DF30[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_DF30"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_DF30[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_DF30"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E030[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E030"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E030[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E030"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E048[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E048"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E048[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E048"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_railings_dl[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_railings_dl"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E068[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E068"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E068[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E068"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E150[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E150"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E150[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E150"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E238[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E238"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E238[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E238"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E250[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E250"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E250[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E250"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E310[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E310"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E310[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E310"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E320[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E320"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E320[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E320"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E578[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E578"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E578[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E578"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E588[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E588"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E588[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E588"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E618[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E618"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E618[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E618"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E628[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E628"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E628[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E628"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E688[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E688"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E688[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E688"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E6E8[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E6E8"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E6E8[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E6E8"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E700[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E700"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_E700[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_E700"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_dl[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_dl"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_paddle_model1[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_paddle_model1"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_paddle_model2[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_paddle_model2"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_paddle_model3[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_paddle_model3"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_paddle[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_paddle"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_paddle2[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_paddle2"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_FAE0[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_FAE0"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_FAE0[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_FAE0"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_FC08[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_FC08"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_FC08[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_FC08"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_FC18[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_FC18"; - -static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_gfx_FC18[] = "__OTR__dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_gfx_FC18"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_wheel_dl[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_wheel_dl"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_FC38[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_FC38"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree_model[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree_model"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree2_top[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree2_top"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree2_trunk[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree2_trunk"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_tree1[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_tree1"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree2_model[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree2_model"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree3[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree3"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree4[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree4"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_tree2[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_tree2"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_model4[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_model4"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree_trunk[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree_trunk"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree5[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree5"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_tree3[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_tree3"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_palm_tree_model[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_palm_tree_model"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_palm_tree[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_palm_tree"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_13878[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_13878"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_palm_tree[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_palm_tree"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_kiwano_tlut[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_kiwano_tlut"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_kiwano_model[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_kiwano_model"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_kiwano_fruit[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_kiwano_fruit"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_13C30[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_13C30"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_item_box_spawns[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree_spawn[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree_spawn"; - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_addr[] = "__OTR__dks_jungle_parkway_data/d_course_dks_jungle_parkway_addr"; - diff --git a/include/assets/dks_jungle_parkway_displaylists.h b/include/assets/dks_jungle_parkway_displaylists.h deleted file mode 100644 index de895def5..000000000 --- a/include/assets/dks_jungle_parkway_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dls[] = "__OTR__dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dls"; - diff --git a/include/assets/dks_jungle_parkway_vertices.h b/include/assets/dks_jungle_parkway_vertices.h deleted file mode 100644 index ba8ac9bc3..000000000 --- a/include/assets/dks_jungle_parkway_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex[] = "__OTR__dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex"; - diff --git a/include/assets/donkeykong_kart.h b/include/assets/donkeykong_kart.h deleted file mode 100644 index 44d48c03b..000000000 --- a/include/assets/donkeykong_kart.h +++ /dev/null @@ -1,4120 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gKartDK000[] = "__OTR__donkeykong_kart/donkeykong_kart_frame000"; - -static const ALIGN_ASSET(2) char gKartDK001[] = "__OTR__donkeykong_kart/donkeykong_kart_frame001"; - -static const ALIGN_ASSET(2) char gKartDK002[] = "__OTR__donkeykong_kart/donkeykong_kart_frame002"; - -static const ALIGN_ASSET(2) char gKartDK003[] = "__OTR__donkeykong_kart/donkeykong_kart_frame003"; - -static const ALIGN_ASSET(2) char gKartDK004[] = "__OTR__donkeykong_kart/donkeykong_kart_frame004"; - -static const ALIGN_ASSET(2) char gKartDK005[] = "__OTR__donkeykong_kart/donkeykong_kart_frame005"; - -static const ALIGN_ASSET(2) char gKartDK006[] = "__OTR__donkeykong_kart/donkeykong_kart_frame006"; - -static const ALIGN_ASSET(2) char gKartDK007[] = "__OTR__donkeykong_kart/donkeykong_kart_frame007"; - -static const ALIGN_ASSET(2) char gKartDK008[] = "__OTR__donkeykong_kart/donkeykong_kart_frame008"; - -static const ALIGN_ASSET(2) char gKartDK009[] = "__OTR__donkeykong_kart/donkeykong_kart_frame009"; - -static const ALIGN_ASSET(2) char gKartDK010[] = "__OTR__donkeykong_kart/donkeykong_kart_frame010"; - -static const ALIGN_ASSET(2) char gKartDK011[] = "__OTR__donkeykong_kart/donkeykong_kart_frame011"; - -static const ALIGN_ASSET(2) char gKartDK012[] = "__OTR__donkeykong_kart/donkeykong_kart_frame012"; - -static const ALIGN_ASSET(2) char gKartDK013[] = "__OTR__donkeykong_kart/donkeykong_kart_frame013"; - -static const ALIGN_ASSET(2) char gKartDK014[] = "__OTR__donkeykong_kart/donkeykong_kart_frame014"; - -static const ALIGN_ASSET(2) char gKartDK015[] = "__OTR__donkeykong_kart/donkeykong_kart_frame015"; - -static const ALIGN_ASSET(2) char gKartDK016[] = "__OTR__donkeykong_kart/donkeykong_kart_frame016"; - -static const ALIGN_ASSET(2) char gKartDK017[] = "__OTR__donkeykong_kart/donkeykong_kart_frame017"; - -static const ALIGN_ASSET(2) char gKartDK018[] = "__OTR__donkeykong_kart/donkeykong_kart_frame018"; - -static const ALIGN_ASSET(2) char gKartDK019[] = "__OTR__donkeykong_kart/donkeykong_kart_frame019"; - -static const ALIGN_ASSET(2) char gKartDK020[] = "__OTR__donkeykong_kart/donkeykong_kart_frame020"; - -static const ALIGN_ASSET(2) char gKartDK021[] = "__OTR__donkeykong_kart/donkeykong_kart_frame021"; - -static const ALIGN_ASSET(2) char gKartDK022[] = "__OTR__donkeykong_kart/donkeykong_kart_frame022"; - -static const ALIGN_ASSET(2) char gKartDK023[] = "__OTR__donkeykong_kart/donkeykong_kart_frame023"; - -static const ALIGN_ASSET(2) char gKartDK024[] = "__OTR__donkeykong_kart/donkeykong_kart_frame024"; - -static const ALIGN_ASSET(2) char gKartDK025[] = "__OTR__donkeykong_kart/donkeykong_kart_frame025"; - -static const ALIGN_ASSET(2) char gKartDK026[] = "__OTR__donkeykong_kart/donkeykong_kart_frame026"; - -static const ALIGN_ASSET(2) char gKartDK027[] = "__OTR__donkeykong_kart/donkeykong_kart_frame027"; - -static const ALIGN_ASSET(2) char gKartDK028[] = "__OTR__donkeykong_kart/donkeykong_kart_frame028"; - -static const ALIGN_ASSET(2) char gKartDK029[] = "__OTR__donkeykong_kart/donkeykong_kart_frame029"; - -static const ALIGN_ASSET(2) char gKartDK030[] = "__OTR__donkeykong_kart/donkeykong_kart_frame030"; - -static const ALIGN_ASSET(2) char gKartDK031[] = "__OTR__donkeykong_kart/donkeykong_kart_frame031"; - -static const ALIGN_ASSET(2) char gKartDK032[] = "__OTR__donkeykong_kart/donkeykong_kart_frame032"; - -static const ALIGN_ASSET(2) char gKartDK033[] = "__OTR__donkeykong_kart/donkeykong_kart_frame033"; - -static const ALIGN_ASSET(2) char gKartDK034[] = "__OTR__donkeykong_kart/donkeykong_kart_frame034"; - -static const ALIGN_ASSET(2) char gKartDK035[] = "__OTR__donkeykong_kart/donkeykong_kart_frame035"; - -static const ALIGN_ASSET(2) char gKartDK036[] = "__OTR__donkeykong_kart/donkeykong_kart_frame036"; - -static const ALIGN_ASSET(2) char gKartDK037[] = "__OTR__donkeykong_kart/donkeykong_kart_frame037"; - -static const ALIGN_ASSET(2) char gKartDK038[] = "__OTR__donkeykong_kart/donkeykong_kart_frame038"; - -static const ALIGN_ASSET(2) char gKartDK039[] = "__OTR__donkeykong_kart/donkeykong_kart_frame039"; - -static const ALIGN_ASSET(2) char gKartDK040[] = "__OTR__donkeykong_kart/donkeykong_kart_frame040"; - -static const ALIGN_ASSET(2) char gKartDK041[] = "__OTR__donkeykong_kart/donkeykong_kart_frame041"; - -static const ALIGN_ASSET(2) char gKartDK042[] = "__OTR__donkeykong_kart/donkeykong_kart_frame042"; - -static const ALIGN_ASSET(2) char gKartDK043[] = "__OTR__donkeykong_kart/donkeykong_kart_frame043"; - -static const ALIGN_ASSET(2) char gKartDK044[] = "__OTR__donkeykong_kart/donkeykong_kart_frame044"; - -static const ALIGN_ASSET(2) char gKartDK045[] = "__OTR__donkeykong_kart/donkeykong_kart_frame045"; - -static const ALIGN_ASSET(2) char gKartDK046[] = "__OTR__donkeykong_kart/donkeykong_kart_frame046"; - -static const ALIGN_ASSET(2) char gKartDK047[] = "__OTR__donkeykong_kart/donkeykong_kart_frame047"; - -static const ALIGN_ASSET(2) char gKartDK048[] = "__OTR__donkeykong_kart/donkeykong_kart_frame048"; - -static const ALIGN_ASSET(2) char gKartDK049[] = "__OTR__donkeykong_kart/donkeykong_kart_frame049"; - -static const ALIGN_ASSET(2) char gKartDK050[] = "__OTR__donkeykong_kart/donkeykong_kart_frame050"; - -static const ALIGN_ASSET(2) char gKartDK051[] = "__OTR__donkeykong_kart/donkeykong_kart_frame051"; - -static const ALIGN_ASSET(2) char gKartDK052[] = "__OTR__donkeykong_kart/donkeykong_kart_frame052"; - -static const ALIGN_ASSET(2) char gKartDK053[] = "__OTR__donkeykong_kart/donkeykong_kart_frame053"; - -static const ALIGN_ASSET(2) char gKartDK054[] = "__OTR__donkeykong_kart/donkeykong_kart_frame054"; - -static const ALIGN_ASSET(2) char gKartDK055[] = "__OTR__donkeykong_kart/donkeykong_kart_frame055"; - -static const ALIGN_ASSET(2) char gKartDK056[] = "__OTR__donkeykong_kart/donkeykong_kart_frame056"; - -static const ALIGN_ASSET(2) char gKartDK057[] = "__OTR__donkeykong_kart/donkeykong_kart_frame057"; - -static const ALIGN_ASSET(2) char gKartDK058[] = "__OTR__donkeykong_kart/donkeykong_kart_frame058"; - -static const ALIGN_ASSET(2) char gKartDK059[] = "__OTR__donkeykong_kart/donkeykong_kart_frame059"; - -static const ALIGN_ASSET(2) char gKartDK060[] = "__OTR__donkeykong_kart/donkeykong_kart_frame060"; - -static const ALIGN_ASSET(2) char gKartDK061[] = "__OTR__donkeykong_kart/donkeykong_kart_frame061"; - -static const ALIGN_ASSET(2) char gKartDK062[] = "__OTR__donkeykong_kart/donkeykong_kart_frame062"; - -static const ALIGN_ASSET(2) char gKartDK063[] = "__OTR__donkeykong_kart/donkeykong_kart_frame063"; - -static const ALIGN_ASSET(2) char gKartDK064[] = "__OTR__donkeykong_kart/donkeykong_kart_frame064"; - -static const ALIGN_ASSET(2) char gKartDK065[] = "__OTR__donkeykong_kart/donkeykong_kart_frame065"; - -static const ALIGN_ASSET(2) char gKartDK066[] = "__OTR__donkeykong_kart/donkeykong_kart_frame066"; - -static const ALIGN_ASSET(2) char gKartDK067[] = "__OTR__donkeykong_kart/donkeykong_kart_frame067"; - -static const ALIGN_ASSET(2) char gKartDK068[] = "__OTR__donkeykong_kart/donkeykong_kart_frame068"; - -static const ALIGN_ASSET(2) char gKartDK069[] = "__OTR__donkeykong_kart/donkeykong_kart_frame069"; - -static const ALIGN_ASSET(2) char gKartDK070[] = "__OTR__donkeykong_kart/donkeykong_kart_frame070"; - -static const ALIGN_ASSET(2) char gKartDK071[] = "__OTR__donkeykong_kart/donkeykong_kart_frame071"; - -static const ALIGN_ASSET(2) char gKartDK072[] = "__OTR__donkeykong_kart/donkeykong_kart_frame072"; - -static const ALIGN_ASSET(2) char gKartDK073[] = "__OTR__donkeykong_kart/donkeykong_kart_frame073"; - -static const ALIGN_ASSET(2) char gKartDK074[] = "__OTR__donkeykong_kart/donkeykong_kart_frame074"; - -static const ALIGN_ASSET(2) char gKartDK075[] = "__OTR__donkeykong_kart/donkeykong_kart_frame075"; - -static const ALIGN_ASSET(2) char gKartDK076[] = "__OTR__donkeykong_kart/donkeykong_kart_frame076"; - -static const ALIGN_ASSET(2) char gKartDK077[] = "__OTR__donkeykong_kart/donkeykong_kart_frame077"; - -static const ALIGN_ASSET(2) char gKartDK078[] = "__OTR__donkeykong_kart/donkeykong_kart_frame078"; - -static const ALIGN_ASSET(2) char gKartDK079[] = "__OTR__donkeykong_kart/donkeykong_kart_frame079"; - -static const ALIGN_ASSET(2) char gKartDK080[] = "__OTR__donkeykong_kart/donkeykong_kart_frame080"; - -static const ALIGN_ASSET(2) char gKartDK081[] = "__OTR__donkeykong_kart/donkeykong_kart_frame081"; - -static const ALIGN_ASSET(2) char gKartDK082[] = "__OTR__donkeykong_kart/donkeykong_kart_frame082"; - -static const ALIGN_ASSET(2) char gKartDK083[] = "__OTR__donkeykong_kart/donkeykong_kart_frame083"; - -static const ALIGN_ASSET(2) char gKartDK084[] = "__OTR__donkeykong_kart/donkeykong_kart_frame084"; - -static const ALIGN_ASSET(2) char gKartDK085[] = "__OTR__donkeykong_kart/donkeykong_kart_frame085"; - -static const ALIGN_ASSET(2) char gKartDK086[] = "__OTR__donkeykong_kart/donkeykong_kart_frame086"; - -static const ALIGN_ASSET(2) char gKartDK087[] = "__OTR__donkeykong_kart/donkeykong_kart_frame087"; - -static const ALIGN_ASSET(2) char gKartDK088[] = "__OTR__donkeykong_kart/donkeykong_kart_frame088"; - -static const ALIGN_ASSET(2) char gKartDK089[] = "__OTR__donkeykong_kart/donkeykong_kart_frame089"; - -static const ALIGN_ASSET(2) char gKartDK090[] = "__OTR__donkeykong_kart/donkeykong_kart_frame090"; - -static const ALIGN_ASSET(2) char gKartDK091[] = "__OTR__donkeykong_kart/donkeykong_kart_frame091"; - -static const ALIGN_ASSET(2) char gKartDK092[] = "__OTR__donkeykong_kart/donkeykong_kart_frame092"; - -static const ALIGN_ASSET(2) char gKartDK093[] = "__OTR__donkeykong_kart/donkeykong_kart_frame093"; - -static const ALIGN_ASSET(2) char gKartDK094[] = "__OTR__donkeykong_kart/donkeykong_kart_frame094"; - -static const ALIGN_ASSET(2) char gKartDK095[] = "__OTR__donkeykong_kart/donkeykong_kart_frame095"; - -static const ALIGN_ASSET(2) char gKartDK096[] = "__OTR__donkeykong_kart/donkeykong_kart_frame096"; - -static const ALIGN_ASSET(2) char gKartDK097[] = "__OTR__donkeykong_kart/donkeykong_kart_frame097"; - -static const ALIGN_ASSET(2) char gKartDK098[] = "__OTR__donkeykong_kart/donkeykong_kart_frame098"; - -static const ALIGN_ASSET(2) char gKartDK099[] = "__OTR__donkeykong_kart/donkeykong_kart_frame099"; - -static const ALIGN_ASSET(2) char gKartDK100[] = "__OTR__donkeykong_kart/donkeykong_kart_frame100"; - -static const ALIGN_ASSET(2) char gKartDK101[] = "__OTR__donkeykong_kart/donkeykong_kart_frame101"; - -static const ALIGN_ASSET(2) char gKartDK102[] = "__OTR__donkeykong_kart/donkeykong_kart_frame102"; - -static const ALIGN_ASSET(2) char gKartDK103[] = "__OTR__donkeykong_kart/donkeykong_kart_frame103"; - -static const ALIGN_ASSET(2) char gKartDK104[] = "__OTR__donkeykong_kart/donkeykong_kart_frame104"; - -static const ALIGN_ASSET(2) char gKartDK105[] = "__OTR__donkeykong_kart/donkeykong_kart_frame105"; - -static const ALIGN_ASSET(2) char gKartDK106[] = "__OTR__donkeykong_kart/donkeykong_kart_frame106"; - -static const ALIGN_ASSET(2) char gKartDK107[] = "__OTR__donkeykong_kart/donkeykong_kart_frame107"; - -static const ALIGN_ASSET(2) char gKartDK108[] = "__OTR__donkeykong_kart/donkeykong_kart_frame108"; - -static const ALIGN_ASSET(2) char gKartDK109[] = "__OTR__donkeykong_kart/donkeykong_kart_frame109"; - -static const ALIGN_ASSET(2) char gKartDK110[] = "__OTR__donkeykong_kart/donkeykong_kart_frame110"; - -static const ALIGN_ASSET(2) char gKartDK111[] = "__OTR__donkeykong_kart/donkeykong_kart_frame111"; - -static const ALIGN_ASSET(2) char gKartDK112[] = "__OTR__donkeykong_kart/donkeykong_kart_frame112"; - -static const ALIGN_ASSET(2) char gKartDK113[] = "__OTR__donkeykong_kart/donkeykong_kart_frame113"; - -static const ALIGN_ASSET(2) char gKartDK114[] = "__OTR__donkeykong_kart/donkeykong_kart_frame114"; - -static const ALIGN_ASSET(2) char gKartDK115[] = "__OTR__donkeykong_kart/donkeykong_kart_frame115"; - -static const ALIGN_ASSET(2) char gKartDK116[] = "__OTR__donkeykong_kart/donkeykong_kart_frame116"; - -static const ALIGN_ASSET(2) char gKartDK117[] = "__OTR__donkeykong_kart/donkeykong_kart_frame117"; - -static const ALIGN_ASSET(2) char gKartDK118[] = "__OTR__donkeykong_kart/donkeykong_kart_frame118"; - -static const ALIGN_ASSET(2) char gKartDK119[] = "__OTR__donkeykong_kart/donkeykong_kart_frame119"; - -static const ALIGN_ASSET(2) char gKartDK120[] = "__OTR__donkeykong_kart/donkeykong_kart_frame120"; - -static const ALIGN_ASSET(2) char gKartDK121[] = "__OTR__donkeykong_kart/donkeykong_kart_frame121"; - -static const ALIGN_ASSET(2) char gKartDK122[] = "__OTR__donkeykong_kart/donkeykong_kart_frame122"; - -static const ALIGN_ASSET(2) char gKartDK123[] = "__OTR__donkeykong_kart/donkeykong_kart_frame123"; - -static const ALIGN_ASSET(2) char gKartDK124[] = "__OTR__donkeykong_kart/donkeykong_kart_frame124"; - -static const ALIGN_ASSET(2) char gKartDK125[] = "__OTR__donkeykong_kart/donkeykong_kart_frame125"; - -static const ALIGN_ASSET(2) char gKartDK126[] = "__OTR__donkeykong_kart/donkeykong_kart_frame126"; - -static const ALIGN_ASSET(2) char gKartDK127[] = "__OTR__donkeykong_kart/donkeykong_kart_frame127"; - -static const ALIGN_ASSET(2) char gKartDK128[] = "__OTR__donkeykong_kart/donkeykong_kart_frame128"; - -static const ALIGN_ASSET(2) char gKartDK129[] = "__OTR__donkeykong_kart/donkeykong_kart_frame129"; - -static const ALIGN_ASSET(2) char gKartDK130[] = "__OTR__donkeykong_kart/donkeykong_kart_frame130"; - -static const ALIGN_ASSET(2) char gKartDK131[] = "__OTR__donkeykong_kart/donkeykong_kart_frame131"; - -static const ALIGN_ASSET(2) char gKartDK132[] = "__OTR__donkeykong_kart/donkeykong_kart_frame132"; - -static const ALIGN_ASSET(2) char gKartDK133[] = "__OTR__donkeykong_kart/donkeykong_kart_frame133"; - -static const ALIGN_ASSET(2) char gKartDK134[] = "__OTR__donkeykong_kart/donkeykong_kart_frame134"; - -static const ALIGN_ASSET(2) char gKartDK135[] = "__OTR__donkeykong_kart/donkeykong_kart_frame135"; - -static const ALIGN_ASSET(2) char gKartDK136[] = "__OTR__donkeykong_kart/donkeykong_kart_frame136"; - -static const ALIGN_ASSET(2) char gKartDK137[] = "__OTR__donkeykong_kart/donkeykong_kart_frame137"; - -static const ALIGN_ASSET(2) char gKartDK138[] = "__OTR__donkeykong_kart/donkeykong_kart_frame138"; - -static const ALIGN_ASSET(2) char gKartDK139[] = "__OTR__donkeykong_kart/donkeykong_kart_frame139"; - -static const ALIGN_ASSET(2) char gKartDK140[] = "__OTR__donkeykong_kart/donkeykong_kart_frame140"; - -static const ALIGN_ASSET(2) char gKartDK141[] = "__OTR__donkeykong_kart/donkeykong_kart_frame141"; - -static const ALIGN_ASSET(2) char gKartDK142[] = "__OTR__donkeykong_kart/donkeykong_kart_frame142"; - -static const ALIGN_ASSET(2) char gKartDK143[] = "__OTR__donkeykong_kart/donkeykong_kart_frame143"; - -static const ALIGN_ASSET(2) char gKartDK144[] = "__OTR__donkeykong_kart/donkeykong_kart_frame144"; - -static const ALIGN_ASSET(2) char gKartDK145[] = "__OTR__donkeykong_kart/donkeykong_kart_frame145"; - -static const ALIGN_ASSET(2) char gKartDK146[] = "__OTR__donkeykong_kart/donkeykong_kart_frame146"; - -static const ALIGN_ASSET(2) char gKartDK147[] = "__OTR__donkeykong_kart/donkeykong_kart_frame147"; - -static const ALIGN_ASSET(2) char gKartDK148[] = "__OTR__donkeykong_kart/donkeykong_kart_frame148"; - -static const ALIGN_ASSET(2) char gKartDK149[] = "__OTR__donkeykong_kart/donkeykong_kart_frame149"; - -static const ALIGN_ASSET(2) char gKartDK150[] = "__OTR__donkeykong_kart/donkeykong_kart_frame150"; - -static const ALIGN_ASSET(2) char gKartDK151[] = "__OTR__donkeykong_kart/donkeykong_kart_frame151"; - -static const ALIGN_ASSET(2) char gKartDK152[] = "__OTR__donkeykong_kart/donkeykong_kart_frame152"; - -static const ALIGN_ASSET(2) char gKartDK153[] = "__OTR__donkeykong_kart/donkeykong_kart_frame153"; - -static const ALIGN_ASSET(2) char gKartDK154[] = "__OTR__donkeykong_kart/donkeykong_kart_frame154"; - -static const ALIGN_ASSET(2) char gKartDK155[] = "__OTR__donkeykong_kart/donkeykong_kart_frame155"; - -static const ALIGN_ASSET(2) char gKartDK156[] = "__OTR__donkeykong_kart/donkeykong_kart_frame156"; - -static const ALIGN_ASSET(2) char gKartDK157[] = "__OTR__donkeykong_kart/donkeykong_kart_frame157"; - -static const ALIGN_ASSET(2) char gKartDK158[] = "__OTR__donkeykong_kart/donkeykong_kart_frame158"; - -static const ALIGN_ASSET(2) char gKartDK159[] = "__OTR__donkeykong_kart/donkeykong_kart_frame159"; - -static const ALIGN_ASSET(2) char gKartDK160[] = "__OTR__donkeykong_kart/donkeykong_kart_frame160"; - -static const ALIGN_ASSET(2) char gKartDK161[] = "__OTR__donkeykong_kart/donkeykong_kart_frame161"; - -static const ALIGN_ASSET(2) char gKartDK162[] = "__OTR__donkeykong_kart/donkeykong_kart_frame162"; - -static const ALIGN_ASSET(2) char gKartDK163[] = "__OTR__donkeykong_kart/donkeykong_kart_frame163"; - -static const ALIGN_ASSET(2) char gKartDK164[] = "__OTR__donkeykong_kart/donkeykong_kart_frame164"; - -static const ALIGN_ASSET(2) char gKartDK165[] = "__OTR__donkeykong_kart/donkeykong_kart_frame165"; - -static const ALIGN_ASSET(2) char gKartDK166[] = "__OTR__donkeykong_kart/donkeykong_kart_frame166"; - -static const ALIGN_ASSET(2) char gKartDK167[] = "__OTR__donkeykong_kart/donkeykong_kart_frame167"; - -static const ALIGN_ASSET(2) char gKartDK168[] = "__OTR__donkeykong_kart/donkeykong_kart_frame168"; - -static const ALIGN_ASSET(2) char gKartDK169[] = "__OTR__donkeykong_kart/donkeykong_kart_frame169"; - -static const ALIGN_ASSET(2) char gKartDK170[] = "__OTR__donkeykong_kart/donkeykong_kart_frame170"; - -static const ALIGN_ASSET(2) char gKartDK171[] = "__OTR__donkeykong_kart/donkeykong_kart_frame171"; - -static const ALIGN_ASSET(2) char gKartDK172[] = "__OTR__donkeykong_kart/donkeykong_kart_frame172"; - -static const ALIGN_ASSET(2) char gKartDK173[] = "__OTR__donkeykong_kart/donkeykong_kart_frame173"; - -static const ALIGN_ASSET(2) char gKartDK174[] = "__OTR__donkeykong_kart/donkeykong_kart_frame174"; - -static const ALIGN_ASSET(2) char gKartDK175[] = "__OTR__donkeykong_kart/donkeykong_kart_frame175"; - -static const ALIGN_ASSET(2) char gKartDK176[] = "__OTR__donkeykong_kart/donkeykong_kart_frame176"; - -static const ALIGN_ASSET(2) char gKartDK177[] = "__OTR__donkeykong_kart/donkeykong_kart_frame177"; - -static const ALIGN_ASSET(2) char gKartDK178[] = "__OTR__donkeykong_kart/donkeykong_kart_frame178"; - -static const ALIGN_ASSET(2) char gKartDK179[] = "__OTR__donkeykong_kart/donkeykong_kart_frame179"; - -static const ALIGN_ASSET(2) char gKartDK180[] = "__OTR__donkeykong_kart/donkeykong_kart_frame180"; - -static const ALIGN_ASSET(2) char gKartDK181[] = "__OTR__donkeykong_kart/donkeykong_kart_frame181"; - -static const ALIGN_ASSET(2) char gKartDK182[] = "__OTR__donkeykong_kart/donkeykong_kart_frame182"; - -static const ALIGN_ASSET(2) char gKartDK183[] = "__OTR__donkeykong_kart/donkeykong_kart_frame183"; - -static const ALIGN_ASSET(2) char gKartDK184[] = "__OTR__donkeykong_kart/donkeykong_kart_frame184"; - -static const ALIGN_ASSET(2) char gKartDK185[] = "__OTR__donkeykong_kart/donkeykong_kart_frame185"; - -static const ALIGN_ASSET(2) char gKartDK186[] = "__OTR__donkeykong_kart/donkeykong_kart_frame186"; - -static const ALIGN_ASSET(2) char gKartDK187[] = "__OTR__donkeykong_kart/donkeykong_kart_frame187"; - -static const ALIGN_ASSET(2) char gKartDK188[] = "__OTR__donkeykong_kart/donkeykong_kart_frame188"; - -static const ALIGN_ASSET(2) char gKartDK189[] = "__OTR__donkeykong_kart/donkeykong_kart_frame189"; - -static const ALIGN_ASSET(2) char gKartDK190[] = "__OTR__donkeykong_kart/donkeykong_kart_frame190"; - -static const ALIGN_ASSET(2) char gKartDK191[] = "__OTR__donkeykong_kart/donkeykong_kart_frame191"; - -static const ALIGN_ASSET(2) char gKartDK192[] = "__OTR__donkeykong_kart/donkeykong_kart_frame192"; - -static const ALIGN_ASSET(2) char gKartDK193[] = "__OTR__donkeykong_kart/donkeykong_kart_frame193"; - -static const ALIGN_ASSET(2) char gKartDK194[] = "__OTR__donkeykong_kart/donkeykong_kart_frame194"; - -static const ALIGN_ASSET(2) char gKartDK195[] = "__OTR__donkeykong_kart/donkeykong_kart_frame195"; - -static const ALIGN_ASSET(2) char gKartDK196[] = "__OTR__donkeykong_kart/donkeykong_kart_frame196"; - -static const ALIGN_ASSET(2) char gKartDK197[] = "__OTR__donkeykong_kart/donkeykong_kart_frame197"; - -static const ALIGN_ASSET(2) char gKartDK198[] = "__OTR__donkeykong_kart/donkeykong_kart_frame198"; - -static const ALIGN_ASSET(2) char gKartDK199[] = "__OTR__donkeykong_kart/donkeykong_kart_frame199"; - -static const ALIGN_ASSET(2) char gKartDK200[] = "__OTR__donkeykong_kart/donkeykong_kart_frame200"; - -static const ALIGN_ASSET(2) char gKartDK201[] = "__OTR__donkeykong_kart/donkeykong_kart_frame201"; - -static const ALIGN_ASSET(2) char gKartDK202[] = "__OTR__donkeykong_kart/donkeykong_kart_frame202"; - -static const ALIGN_ASSET(2) char gKartDK203[] = "__OTR__donkeykong_kart/donkeykong_kart_frame203"; - -static const ALIGN_ASSET(2) char gKartDK204[] = "__OTR__donkeykong_kart/donkeykong_kart_frame204"; - -static const ALIGN_ASSET(2) char gKartDK205[] = "__OTR__donkeykong_kart/donkeykong_kart_frame205"; - -static const ALIGN_ASSET(2) char gKartDK206[] = "__OTR__donkeykong_kart/donkeykong_kart_frame206"; - -static const ALIGN_ASSET(2) char gKartDK207[] = "__OTR__donkeykong_kart/donkeykong_kart_frame207"; - -static const ALIGN_ASSET(2) char gKartDK208[] = "__OTR__donkeykong_kart/donkeykong_kart_frame208"; - -static const ALIGN_ASSET(2) char gKartDK209[] = "__OTR__donkeykong_kart/donkeykong_kart_frame209"; - -static const ALIGN_ASSET(2) char gKartDK210[] = "__OTR__donkeykong_kart/donkeykong_kart_frame210"; - -static const ALIGN_ASSET(2) char gKartDK211[] = "__OTR__donkeykong_kart/donkeykong_kart_frame211"; - -static const ALIGN_ASSET(2) char gKartDK212[] = "__OTR__donkeykong_kart/donkeykong_kart_frame212"; - -static const ALIGN_ASSET(2) char gKartDK213[] = "__OTR__donkeykong_kart/donkeykong_kart_frame213"; - -static const ALIGN_ASSET(2) char gKartDK214[] = "__OTR__donkeykong_kart/donkeykong_kart_frame214"; - -static const ALIGN_ASSET(2) char gKartDK215[] = "__OTR__donkeykong_kart/donkeykong_kart_frame215"; - -static const ALIGN_ASSET(2) char gKartDK216[] = "__OTR__donkeykong_kart/donkeykong_kart_frame216"; - -static const ALIGN_ASSET(2) char gKartDK217[] = "__OTR__donkeykong_kart/donkeykong_kart_frame217"; - -static const ALIGN_ASSET(2) char gKartDK218[] = "__OTR__donkeykong_kart/donkeykong_kart_frame218"; - -static const ALIGN_ASSET(2) char gKartDK219[] = "__OTR__donkeykong_kart/donkeykong_kart_frame219"; - -static const ALIGN_ASSET(2) char gKartDK220[] = "__OTR__donkeykong_kart/donkeykong_kart_frame220"; - -static const ALIGN_ASSET(2) char gKartDK221[] = "__OTR__donkeykong_kart/donkeykong_kart_frame221"; - -static const ALIGN_ASSET(2) char gKartDK222[] = "__OTR__donkeykong_kart/donkeykong_kart_frame222"; - -static const ALIGN_ASSET(2) char gKartDK223[] = "__OTR__donkeykong_kart/donkeykong_kart_frame223"; - -static const ALIGN_ASSET(2) char gKartDK224[] = "__OTR__donkeykong_kart/donkeykong_kart_frame224"; - -static const ALIGN_ASSET(2) char gKartDK225[] = "__OTR__donkeykong_kart/donkeykong_kart_frame225"; - -static const ALIGN_ASSET(2) char gKartDK226[] = "__OTR__donkeykong_kart/donkeykong_kart_frame226"; - -static const ALIGN_ASSET(2) char gKartDK227[] = "__OTR__donkeykong_kart/donkeykong_kart_frame227"; - -static const ALIGN_ASSET(2) char gKartDK228[] = "__OTR__donkeykong_kart/donkeykong_kart_frame228"; - -static const ALIGN_ASSET(2) char gKartDK229[] = "__OTR__donkeykong_kart/donkeykong_kart_frame229"; - -static const ALIGN_ASSET(2) char gKartDK230[] = "__OTR__donkeykong_kart/donkeykong_kart_frame230"; - -static const ALIGN_ASSET(2) char gKartDK231[] = "__OTR__donkeykong_kart/donkeykong_kart_frame231"; - -static const ALIGN_ASSET(2) char gKartDK232[] = "__OTR__donkeykong_kart/donkeykong_kart_frame232"; - -static const ALIGN_ASSET(2) char gKartDK233[] = "__OTR__donkeykong_kart/donkeykong_kart_frame233"; - -static const ALIGN_ASSET(2) char gKartDK234[] = "__OTR__donkeykong_kart/donkeykong_kart_frame234"; - -static const ALIGN_ASSET(2) char gKartDK235[] = "__OTR__donkeykong_kart/donkeykong_kart_frame235"; - -static const ALIGN_ASSET(2) char gKartDK236[] = "__OTR__donkeykong_kart/donkeykong_kart_frame236"; - -static const ALIGN_ASSET(2) char gKartDK237[] = "__OTR__donkeykong_kart/donkeykong_kart_frame237"; - -static const ALIGN_ASSET(2) char gKartDK238[] = "__OTR__donkeykong_kart/donkeykong_kart_frame238"; - -static const ALIGN_ASSET(2) char gKartDK239[] = "__OTR__donkeykong_kart/donkeykong_kart_frame239"; - -static const ALIGN_ASSET(2) char gKartDK240[] = "__OTR__donkeykong_kart/donkeykong_kart_frame240"; - -static const ALIGN_ASSET(2) char gKartDK241[] = "__OTR__donkeykong_kart/donkeykong_kart_frame241"; - -static const ALIGN_ASSET(2) char gKartDK242[] = "__OTR__donkeykong_kart/donkeykong_kart_frame242"; - -static const ALIGN_ASSET(2) char gKartDK243[] = "__OTR__donkeykong_kart/donkeykong_kart_frame243"; - -static const ALIGN_ASSET(2) char gKartDK244[] = "__OTR__donkeykong_kart/donkeykong_kart_frame244"; - -static const ALIGN_ASSET(2) char gKartDK245[] = "__OTR__donkeykong_kart/donkeykong_kart_frame245"; - -static const ALIGN_ASSET(2) char gKartDK246[] = "__OTR__donkeykong_kart/donkeykong_kart_frame246"; - -static const ALIGN_ASSET(2) char gKartDK247[] = "__OTR__donkeykong_kart/donkeykong_kart_frame247"; - -static const ALIGN_ASSET(2) char gKartDK248[] = "__OTR__donkeykong_kart/donkeykong_kart_frame248"; - -static const ALIGN_ASSET(2) char gKartDK249[] = "__OTR__donkeykong_kart/donkeykong_kart_frame249"; - -static const ALIGN_ASSET(2) char gKartDK250[] = "__OTR__donkeykong_kart/donkeykong_kart_frame250"; - -static const ALIGN_ASSET(2) char gKartDK251[] = "__OTR__donkeykong_kart/donkeykong_kart_frame251"; - -static const ALIGN_ASSET(2) char gKartDK252[] = "__OTR__donkeykong_kart/donkeykong_kart_frame252"; - -static const ALIGN_ASSET(2) char gKartDK253[] = "__OTR__donkeykong_kart/donkeykong_kart_frame253"; - -static const ALIGN_ASSET(2) char gKartDK254[] = "__OTR__donkeykong_kart/donkeykong_kart_frame254"; - -static const ALIGN_ASSET(2) char gKartDK255[] = "__OTR__donkeykong_kart/donkeykong_kart_frame255"; - -static const ALIGN_ASSET(2) char gKartDK256[] = "__OTR__donkeykong_kart/donkeykong_kart_frame256"; - -static const ALIGN_ASSET(2) char gKartDK257[] = "__OTR__donkeykong_kart/donkeykong_kart_frame257"; - -static const ALIGN_ASSET(2) char gKartDK258[] = "__OTR__donkeykong_kart/donkeykong_kart_frame258"; - -static const ALIGN_ASSET(2) char gKartDK259[] = "__OTR__donkeykong_kart/donkeykong_kart_frame259"; - -static const ALIGN_ASSET(2) char gKartDK260[] = "__OTR__donkeykong_kart/donkeykong_kart_frame260"; - -static const ALIGN_ASSET(2) char gKartDK261[] = "__OTR__donkeykong_kart/donkeykong_kart_frame261"; - -static const ALIGN_ASSET(2) char gKartDK262[] = "__OTR__donkeykong_kart/donkeykong_kart_frame262"; - -static const ALIGN_ASSET(2) char gKartDK263[] = "__OTR__donkeykong_kart/donkeykong_kart_frame263"; - -static const ALIGN_ASSET(2) char gKartDK264[] = "__OTR__donkeykong_kart/donkeykong_kart_frame264"; - -static const ALIGN_ASSET(2) char gKartDK265[] = "__OTR__donkeykong_kart/donkeykong_kart_frame265"; - -static const ALIGN_ASSET(2) char gKartDK266[] = "__OTR__donkeykong_kart/donkeykong_kart_frame266"; - -static const ALIGN_ASSET(2) char gKartDK267[] = "__OTR__donkeykong_kart/donkeykong_kart_frame267"; - -static const ALIGN_ASSET(2) char gKartDK268[] = "__OTR__donkeykong_kart/donkeykong_kart_frame268"; - -static const ALIGN_ASSET(2) char gKartDK269[] = "__OTR__donkeykong_kart/donkeykong_kart_frame269"; - -static const ALIGN_ASSET(2) char gKartDK270[] = "__OTR__donkeykong_kart/donkeykong_kart_frame270"; - -static const ALIGN_ASSET(2) char gKartDK271[] = "__OTR__donkeykong_kart/donkeykong_kart_frame271"; - -static const ALIGN_ASSET(2) char gKartDK272[] = "__OTR__donkeykong_kart/donkeykong_kart_frame272"; - -static const ALIGN_ASSET(2) char gKartDK273[] = "__OTR__donkeykong_kart/donkeykong_kart_frame273"; - -static const ALIGN_ASSET(2) char gKartDK274[] = "__OTR__donkeykong_kart/donkeykong_kart_frame274"; - -static const ALIGN_ASSET(2) char gKartDK275[] = "__OTR__donkeykong_kart/donkeykong_kart_frame275"; - -static const ALIGN_ASSET(2) char gKartDK276[] = "__OTR__donkeykong_kart/donkeykong_kart_frame276"; - -static const ALIGN_ASSET(2) char gKartDK277[] = "__OTR__donkeykong_kart/donkeykong_kart_frame277"; - -static const ALIGN_ASSET(2) char gKartDK278[] = "__OTR__donkeykong_kart/donkeykong_kart_frame278"; - -static const ALIGN_ASSET(2) char gKartDK279[] = "__OTR__donkeykong_kart/donkeykong_kart_frame279"; - -static const ALIGN_ASSET(2) char gKartDK280[] = "__OTR__donkeykong_kart/donkeykong_kart_frame280"; - -static const ALIGN_ASSET(2) char gKartDK281[] = "__OTR__donkeykong_kart/donkeykong_kart_frame281"; - -static const ALIGN_ASSET(2) char gKartDK282[] = "__OTR__donkeykong_kart/donkeykong_kart_frame282"; - -static const ALIGN_ASSET(2) char gKartDK283[] = "__OTR__donkeykong_kart/donkeykong_kart_frame283"; - -static const ALIGN_ASSET(2) char gKartDK284[] = "__OTR__donkeykong_kart/donkeykong_kart_frame284"; - -static const ALIGN_ASSET(2) char gKartDK285[] = "__OTR__donkeykong_kart/donkeykong_kart_frame285"; - -static const ALIGN_ASSET(2) char gKartDK286[] = "__OTR__donkeykong_kart/donkeykong_kart_frame286"; - -static const ALIGN_ASSET(2) char gKartDK287[] = "__OTR__donkeykong_kart/donkeykong_kart_frame287"; - -static const ALIGN_ASSET(2) char gKartDK288[] = "__OTR__donkeykong_kart/donkeykong_kart_frame288"; - -static const ALIGN_ASSET(2) char gKartDK289[] = "__OTR__donkeykong_kart/donkeykong_kart_frame289"; - -static const ALIGN_ASSET(2) char gKartDK290[] = "__OTR__donkeykong_kart/donkeykong_kart_frame290"; - -static const ALIGN_ASSET(2) char gKartDK291[] = "__OTR__donkeykong_kart/donkeykong_kart_frame291"; - -static const ALIGN_ASSET(2) char gKartDK292[] = "__OTR__donkeykong_kart/donkeykong_kart_frame292"; - -static const ALIGN_ASSET(2) char gKartDK293[] = "__OTR__donkeykong_kart/donkeykong_kart_frame293"; - -static const ALIGN_ASSET(2) char gKartDK294[] = "__OTR__donkeykong_kart/donkeykong_kart_frame294"; - -static const ALIGN_ASSET(2) char gKartDK295[] = "__OTR__donkeykong_kart/donkeykong_kart_frame295"; - -static const ALIGN_ASSET(2) char gKartDK296[] = "__OTR__donkeykong_kart/donkeykong_kart_frame296"; - -static const ALIGN_ASSET(2) char gKartDK297[] = "__OTR__donkeykong_kart/donkeykong_kart_frame297"; - -static const ALIGN_ASSET(2) char gKartDK298[] = "__OTR__donkeykong_kart/donkeykong_kart_frame298"; - -static const ALIGN_ASSET(2) char gKartDK299[] = "__OTR__donkeykong_kart/donkeykong_kart_frame299"; - -static const ALIGN_ASSET(2) char gKartDK300[] = "__OTR__donkeykong_kart/donkeykong_kart_frame300"; - -static const ALIGN_ASSET(2) char gKartDK301[] = "__OTR__donkeykong_kart/donkeykong_kart_frame301"; - -static const ALIGN_ASSET(2) char gKartDK302[] = "__OTR__donkeykong_kart/donkeykong_kart_frame302"; - -static const ALIGN_ASSET(2) char gKartDK303[] = "__OTR__donkeykong_kart/donkeykong_kart_frame303"; - -static const ALIGN_ASSET(2) char gKartDK304[] = "__OTR__donkeykong_kart/donkeykong_kart_frame304"; - -static const ALIGN_ASSET(2) char gKartDK305[] = "__OTR__donkeykong_kart/donkeykong_kart_frame305"; - -static const ALIGN_ASSET(2) char gKartDK306[] = "__OTR__donkeykong_kart/donkeykong_kart_frame306"; - -static const ALIGN_ASSET(2) char gKartDK307[] = "__OTR__donkeykong_kart/donkeykong_kart_frame307"; - -static const ALIGN_ASSET(2) char gKartDK308[] = "__OTR__donkeykong_kart/donkeykong_kart_frame308"; - -static const ALIGN_ASSET(2) char gKartDK309[] = "__OTR__donkeykong_kart/donkeykong_kart_frame309"; - -static const ALIGN_ASSET(2) char gKartDK310[] = "__OTR__donkeykong_kart/donkeykong_kart_frame310"; - -static const ALIGN_ASSET(2) char gKartDK311[] = "__OTR__donkeykong_kart/donkeykong_kart_frame311"; - -static const ALIGN_ASSET(2) char gKartDK312[] = "__OTR__donkeykong_kart/donkeykong_kart_frame312"; - -static const ALIGN_ASSET(2) char gKartDK313[] = "__OTR__donkeykong_kart/donkeykong_kart_frame313"; - -static const ALIGN_ASSET(2) char gKartDK314[] = "__OTR__donkeykong_kart/donkeykong_kart_frame314"; - -static const ALIGN_ASSET(2) char gKartDK315[] = "__OTR__donkeykong_kart/donkeykong_kart_frame315"; - -static const ALIGN_ASSET(2) char gKartDK316[] = "__OTR__donkeykong_kart/donkeykong_kart_frame316"; - -static const ALIGN_ASSET(2) char gKartDK317[] = "__OTR__donkeykong_kart/donkeykong_kart_frame317"; - -static const ALIGN_ASSET(2) char gKartDK318[] = "__OTR__donkeykong_kart/donkeykong_kart_frame318"; - -static const ALIGN_ASSET(2) char gKartDK319[] = "__OTR__donkeykong_kart/donkeykong_kart_frame319"; - -static const ALIGN_ASSET(2) char gKartDK320[] = "__OTR__donkeykong_kart/donkeykong_kart_frame320"; - -static const ALIGN_ASSET(2) char gKartDK000Wheel0[] = "__OTR__donkeykong_kart/kart_000_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK000Wheel1[] = "__OTR__donkeykong_kart/kart_000_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK000Wheel2[] = "__OTR__donkeykong_kart/kart_000_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK000Wheel3[] = "__OTR__donkeykong_kart/kart_000_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK001Wheel0[] = "__OTR__donkeykong_kart/kart_001_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK001Wheel1[] = "__OTR__donkeykong_kart/kart_001_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK001Wheel2[] = "__OTR__donkeykong_kart/kart_001_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK001Wheel3[] = "__OTR__donkeykong_kart/kart_001_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK002Wheel0[] = "__OTR__donkeykong_kart/kart_002_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK002Wheel1[] = "__OTR__donkeykong_kart/kart_002_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK002Wheel2[] = "__OTR__donkeykong_kart/kart_002_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK002Wheel3[] = "__OTR__donkeykong_kart/kart_002_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK003Wheel0[] = "__OTR__donkeykong_kart/kart_003_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK003Wheel1[] = "__OTR__donkeykong_kart/kart_003_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK003Wheel2[] = "__OTR__donkeykong_kart/kart_003_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK003Wheel3[] = "__OTR__donkeykong_kart/kart_003_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK004Wheel0[] = "__OTR__donkeykong_kart/kart_004_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK004Wheel1[] = "__OTR__donkeykong_kart/kart_004_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK004Wheel2[] = "__OTR__donkeykong_kart/kart_004_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK004Wheel3[] = "__OTR__donkeykong_kart/kart_004_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK005Wheel0[] = "__OTR__donkeykong_kart/kart_005_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK005Wheel1[] = "__OTR__donkeykong_kart/kart_005_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK005Wheel2[] = "__OTR__donkeykong_kart/kart_005_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK005Wheel3[] = "__OTR__donkeykong_kart/kart_005_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK006Wheel0[] = "__OTR__donkeykong_kart/kart_006_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK006Wheel1[] = "__OTR__donkeykong_kart/kart_006_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK006Wheel2[] = "__OTR__donkeykong_kart/kart_006_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK006Wheel3[] = "__OTR__donkeykong_kart/kart_006_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK007Wheel0[] = "__OTR__donkeykong_kart/kart_007_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK007Wheel1[] = "__OTR__donkeykong_kart/kart_007_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK007Wheel2[] = "__OTR__donkeykong_kart/kart_007_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK007Wheel3[] = "__OTR__donkeykong_kart/kart_007_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK008Wheel0[] = "__OTR__donkeykong_kart/kart_008_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK008Wheel1[] = "__OTR__donkeykong_kart/kart_008_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK008Wheel2[] = "__OTR__donkeykong_kart/kart_008_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK008Wheel3[] = "__OTR__donkeykong_kart/kart_008_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK009Wheel0[] = "__OTR__donkeykong_kart/kart_009_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK009Wheel1[] = "__OTR__donkeykong_kart/kart_009_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK009Wheel2[] = "__OTR__donkeykong_kart/kart_009_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK009Wheel3[] = "__OTR__donkeykong_kart/kart_009_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK010Wheel0[] = "__OTR__donkeykong_kart/kart_010_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK010Wheel1[] = "__OTR__donkeykong_kart/kart_010_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK010Wheel2[] = "__OTR__donkeykong_kart/kart_010_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK010Wheel3[] = "__OTR__donkeykong_kart/kart_010_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK011Wheel0[] = "__OTR__donkeykong_kart/kart_011_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK011Wheel1[] = "__OTR__donkeykong_kart/kart_011_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK011Wheel2[] = "__OTR__donkeykong_kart/kart_011_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK011Wheel3[] = "__OTR__donkeykong_kart/kart_011_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK012Wheel0[] = "__OTR__donkeykong_kart/kart_012_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK012Wheel1[] = "__OTR__donkeykong_kart/kart_012_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK012Wheel2[] = "__OTR__donkeykong_kart/kart_012_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK012Wheel3[] = "__OTR__donkeykong_kart/kart_012_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK013Wheel0[] = "__OTR__donkeykong_kart/kart_013_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK013Wheel1[] = "__OTR__donkeykong_kart/kart_013_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK013Wheel2[] = "__OTR__donkeykong_kart/kart_013_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK013Wheel3[] = "__OTR__donkeykong_kart/kart_013_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK014Wheel0[] = "__OTR__donkeykong_kart/kart_014_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK014Wheel1[] = "__OTR__donkeykong_kart/kart_014_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK014Wheel2[] = "__OTR__donkeykong_kart/kart_014_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK014Wheel3[] = "__OTR__donkeykong_kart/kart_014_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK015Wheel0[] = "__OTR__donkeykong_kart/kart_015_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK015Wheel1[] = "__OTR__donkeykong_kart/kart_015_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK015Wheel2[] = "__OTR__donkeykong_kart/kart_015_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK015Wheel3[] = "__OTR__donkeykong_kart/kart_015_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK016Wheel0[] = "__OTR__donkeykong_kart/kart_016_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK016Wheel1[] = "__OTR__donkeykong_kart/kart_016_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK016Wheel2[] = "__OTR__donkeykong_kart/kart_016_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK016Wheel3[] = "__OTR__donkeykong_kart/kart_016_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK017Wheel0[] = "__OTR__donkeykong_kart/kart_017_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK017Wheel1[] = "__OTR__donkeykong_kart/kart_017_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK017Wheel2[] = "__OTR__donkeykong_kart/kart_017_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK017Wheel3[] = "__OTR__donkeykong_kart/kart_017_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK018Wheel0[] = "__OTR__donkeykong_kart/kart_018_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK018Wheel1[] = "__OTR__donkeykong_kart/kart_018_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK018Wheel2[] = "__OTR__donkeykong_kart/kart_018_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK018Wheel3[] = "__OTR__donkeykong_kart/kart_018_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK019Wheel0[] = "__OTR__donkeykong_kart/kart_019_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK019Wheel1[] = "__OTR__donkeykong_kart/kart_019_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK019Wheel2[] = "__OTR__donkeykong_kart/kart_019_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK019Wheel3[] = "__OTR__donkeykong_kart/kart_019_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK020Wheel0[] = "__OTR__donkeykong_kart/kart_020_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK020Wheel1[] = "__OTR__donkeykong_kart/kart_020_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK020Wheel2[] = "__OTR__donkeykong_kart/kart_020_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK020Wheel3[] = "__OTR__donkeykong_kart/kart_020_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK021Wheel0[] = "__OTR__donkeykong_kart/kart_021_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK021Wheel1[] = "__OTR__donkeykong_kart/kart_021_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK021Wheel2[] = "__OTR__donkeykong_kart/kart_021_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK021Wheel3[] = "__OTR__donkeykong_kart/kart_021_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK022Wheel0[] = "__OTR__donkeykong_kart/kart_022_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK022Wheel1[] = "__OTR__donkeykong_kart/kart_022_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK022Wheel2[] = "__OTR__donkeykong_kart/kart_022_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK022Wheel3[] = "__OTR__donkeykong_kart/kart_022_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK023Wheel0[] = "__OTR__donkeykong_kart/kart_023_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK023Wheel1[] = "__OTR__donkeykong_kart/kart_023_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK023Wheel2[] = "__OTR__donkeykong_kart/kart_023_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK023Wheel3[] = "__OTR__donkeykong_kart/kart_023_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK024Wheel0[] = "__OTR__donkeykong_kart/kart_024_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK024Wheel1[] = "__OTR__donkeykong_kart/kart_024_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK024Wheel2[] = "__OTR__donkeykong_kart/kart_024_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK024Wheel3[] = "__OTR__donkeykong_kart/kart_024_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK025Wheel0[] = "__OTR__donkeykong_kart/kart_025_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK025Wheel1[] = "__OTR__donkeykong_kart/kart_025_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK025Wheel2[] = "__OTR__donkeykong_kart/kart_025_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK025Wheel3[] = "__OTR__donkeykong_kart/kart_025_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK026Wheel0[] = "__OTR__donkeykong_kart/kart_026_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK026Wheel1[] = "__OTR__donkeykong_kart/kart_026_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK026Wheel2[] = "__OTR__donkeykong_kart/kart_026_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK026Wheel3[] = "__OTR__donkeykong_kart/kart_026_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK027Wheel0[] = "__OTR__donkeykong_kart/kart_027_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK027Wheel1[] = "__OTR__donkeykong_kart/kart_027_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK027Wheel2[] = "__OTR__donkeykong_kart/kart_027_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK027Wheel3[] = "__OTR__donkeykong_kart/kart_027_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK028Wheel0[] = "__OTR__donkeykong_kart/kart_028_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK028Wheel1[] = "__OTR__donkeykong_kart/kart_028_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK028Wheel2[] = "__OTR__donkeykong_kart/kart_028_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK028Wheel3[] = "__OTR__donkeykong_kart/kart_028_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK029Wheel0[] = "__OTR__donkeykong_kart/kart_029_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK029Wheel1[] = "__OTR__donkeykong_kart/kart_029_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK029Wheel2[] = "__OTR__donkeykong_kart/kart_029_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK029Wheel3[] = "__OTR__donkeykong_kart/kart_029_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK030Wheel0[] = "__OTR__donkeykong_kart/kart_030_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK030Wheel1[] = "__OTR__donkeykong_kart/kart_030_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK030Wheel2[] = "__OTR__donkeykong_kart/kart_030_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK030Wheel3[] = "__OTR__donkeykong_kart/kart_030_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK031Wheel0[] = "__OTR__donkeykong_kart/kart_031_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK031Wheel1[] = "__OTR__donkeykong_kart/kart_031_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK031Wheel2[] = "__OTR__donkeykong_kart/kart_031_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK031Wheel3[] = "__OTR__donkeykong_kart/kart_031_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK032Wheel0[] = "__OTR__donkeykong_kart/kart_032_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK032Wheel1[] = "__OTR__donkeykong_kart/kart_032_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK032Wheel2[] = "__OTR__donkeykong_kart/kart_032_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK032Wheel3[] = "__OTR__donkeykong_kart/kart_032_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK033Wheel0[] = "__OTR__donkeykong_kart/kart_033_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK033Wheel1[] = "__OTR__donkeykong_kart/kart_033_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK033Wheel2[] = "__OTR__donkeykong_kart/kart_033_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK033Wheel3[] = "__OTR__donkeykong_kart/kart_033_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK034Wheel0[] = "__OTR__donkeykong_kart/kart_034_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK034Wheel1[] = "__OTR__donkeykong_kart/kart_034_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK034Wheel2[] = "__OTR__donkeykong_kart/kart_034_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK034Wheel3[] = "__OTR__donkeykong_kart/kart_034_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK035Wheel0[] = "__OTR__donkeykong_kart/kart_035_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK035Wheel1[] = "__OTR__donkeykong_kart/kart_035_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK035Wheel2[] = "__OTR__donkeykong_kart/kart_035_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK035Wheel3[] = "__OTR__donkeykong_kart/kart_035_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK036Wheel0[] = "__OTR__donkeykong_kart/kart_036_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK036Wheel1[] = "__OTR__donkeykong_kart/kart_036_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK036Wheel2[] = "__OTR__donkeykong_kart/kart_036_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK036Wheel3[] = "__OTR__donkeykong_kart/kart_036_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK037Wheel0[] = "__OTR__donkeykong_kart/kart_037_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK037Wheel1[] = "__OTR__donkeykong_kart/kart_037_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK037Wheel2[] = "__OTR__donkeykong_kart/kart_037_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK037Wheel3[] = "__OTR__donkeykong_kart/kart_037_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK038Wheel0[] = "__OTR__donkeykong_kart/kart_038_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK038Wheel1[] = "__OTR__donkeykong_kart/kart_038_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK038Wheel2[] = "__OTR__donkeykong_kart/kart_038_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK038Wheel3[] = "__OTR__donkeykong_kart/kart_038_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK039Wheel0[] = "__OTR__donkeykong_kart/kart_039_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK039Wheel1[] = "__OTR__donkeykong_kart/kart_039_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK039Wheel2[] = "__OTR__donkeykong_kart/kart_039_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK039Wheel3[] = "__OTR__donkeykong_kart/kart_039_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK040Wheel0[] = "__OTR__donkeykong_kart/kart_040_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK040Wheel1[] = "__OTR__donkeykong_kart/kart_040_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK040Wheel2[] = "__OTR__donkeykong_kart/kart_040_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK040Wheel3[] = "__OTR__donkeykong_kart/kart_040_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK041Wheel0[] = "__OTR__donkeykong_kart/kart_041_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK041Wheel1[] = "__OTR__donkeykong_kart/kart_041_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK041Wheel2[] = "__OTR__donkeykong_kart/kart_041_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK041Wheel3[] = "__OTR__donkeykong_kart/kart_041_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK042Wheel0[] = "__OTR__donkeykong_kart/kart_042_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK042Wheel1[] = "__OTR__donkeykong_kart/kart_042_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK042Wheel2[] = "__OTR__donkeykong_kart/kart_042_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK042Wheel3[] = "__OTR__donkeykong_kart/kart_042_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK043Wheel0[] = "__OTR__donkeykong_kart/kart_043_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK043Wheel1[] = "__OTR__donkeykong_kart/kart_043_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK043Wheel2[] = "__OTR__donkeykong_kart/kart_043_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK043Wheel3[] = "__OTR__donkeykong_kart/kart_043_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK044Wheel0[] = "__OTR__donkeykong_kart/kart_044_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK044Wheel1[] = "__OTR__donkeykong_kart/kart_044_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK044Wheel2[] = "__OTR__donkeykong_kart/kart_044_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK044Wheel3[] = "__OTR__donkeykong_kart/kart_044_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK045Wheel0[] = "__OTR__donkeykong_kart/kart_045_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK045Wheel1[] = "__OTR__donkeykong_kart/kart_045_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK045Wheel2[] = "__OTR__donkeykong_kart/kart_045_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK045Wheel3[] = "__OTR__donkeykong_kart/kart_045_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK046Wheel0[] = "__OTR__donkeykong_kart/kart_046_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK046Wheel1[] = "__OTR__donkeykong_kart/kart_046_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK046Wheel2[] = "__OTR__donkeykong_kart/kart_046_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK046Wheel3[] = "__OTR__donkeykong_kart/kart_046_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK047Wheel0[] = "__OTR__donkeykong_kart/kart_047_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK047Wheel1[] = "__OTR__donkeykong_kart/kart_047_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK047Wheel2[] = "__OTR__donkeykong_kart/kart_047_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK047Wheel3[] = "__OTR__donkeykong_kart/kart_047_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK048Wheel0[] = "__OTR__donkeykong_kart/kart_048_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK048Wheel1[] = "__OTR__donkeykong_kart/kart_048_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK048Wheel2[] = "__OTR__donkeykong_kart/kart_048_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK048Wheel3[] = "__OTR__donkeykong_kart/kart_048_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK049Wheel0[] = "__OTR__donkeykong_kart/kart_049_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK049Wheel1[] = "__OTR__donkeykong_kart/kart_049_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK049Wheel2[] = "__OTR__donkeykong_kart/kart_049_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK049Wheel3[] = "__OTR__donkeykong_kart/kart_049_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK050Wheel0[] = "__OTR__donkeykong_kart/kart_050_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK050Wheel1[] = "__OTR__donkeykong_kart/kart_050_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK050Wheel2[] = "__OTR__donkeykong_kart/kart_050_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK050Wheel3[] = "__OTR__donkeykong_kart/kart_050_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK051Wheel0[] = "__OTR__donkeykong_kart/kart_051_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK051Wheel1[] = "__OTR__donkeykong_kart/kart_051_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK051Wheel2[] = "__OTR__donkeykong_kart/kart_051_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK051Wheel3[] = "__OTR__donkeykong_kart/kart_051_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK052Wheel0[] = "__OTR__donkeykong_kart/kart_052_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK052Wheel1[] = "__OTR__donkeykong_kart/kart_052_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK052Wheel2[] = "__OTR__donkeykong_kart/kart_052_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK052Wheel3[] = "__OTR__donkeykong_kart/kart_052_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK053Wheel0[] = "__OTR__donkeykong_kart/kart_053_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK053Wheel1[] = "__OTR__donkeykong_kart/kart_053_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK053Wheel2[] = "__OTR__donkeykong_kart/kart_053_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK053Wheel3[] = "__OTR__donkeykong_kart/kart_053_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK054Wheel0[] = "__OTR__donkeykong_kart/kart_054_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK054Wheel1[] = "__OTR__donkeykong_kart/kart_054_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK054Wheel2[] = "__OTR__donkeykong_kart/kart_054_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK054Wheel3[] = "__OTR__donkeykong_kart/kart_054_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK055Wheel0[] = "__OTR__donkeykong_kart/kart_055_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK055Wheel1[] = "__OTR__donkeykong_kart/kart_055_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK055Wheel2[] = "__OTR__donkeykong_kart/kart_055_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK055Wheel3[] = "__OTR__donkeykong_kart/kart_055_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK056Wheel0[] = "__OTR__donkeykong_kart/kart_056_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK056Wheel1[] = "__OTR__donkeykong_kart/kart_056_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK056Wheel2[] = "__OTR__donkeykong_kart/kart_056_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK056Wheel3[] = "__OTR__donkeykong_kart/kart_056_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK057Wheel0[] = "__OTR__donkeykong_kart/kart_057_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK057Wheel1[] = "__OTR__donkeykong_kart/kart_057_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK057Wheel2[] = "__OTR__donkeykong_kart/kart_057_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK057Wheel3[] = "__OTR__donkeykong_kart/kart_057_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK058Wheel0[] = "__OTR__donkeykong_kart/kart_058_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK058Wheel1[] = "__OTR__donkeykong_kart/kart_058_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK058Wheel2[] = "__OTR__donkeykong_kart/kart_058_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK058Wheel3[] = "__OTR__donkeykong_kart/kart_058_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK059Wheel0[] = "__OTR__donkeykong_kart/kart_059_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK059Wheel1[] = "__OTR__donkeykong_kart/kart_059_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK059Wheel2[] = "__OTR__donkeykong_kart/kart_059_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK059Wheel3[] = "__OTR__donkeykong_kart/kart_059_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK060Wheel0[] = "__OTR__donkeykong_kart/kart_060_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK060Wheel1[] = "__OTR__donkeykong_kart/kart_060_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK060Wheel2[] = "__OTR__donkeykong_kart/kart_060_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK060Wheel3[] = "__OTR__donkeykong_kart/kart_060_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK061Wheel0[] = "__OTR__donkeykong_kart/kart_061_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK061Wheel1[] = "__OTR__donkeykong_kart/kart_061_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK061Wheel2[] = "__OTR__donkeykong_kart/kart_061_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK061Wheel3[] = "__OTR__donkeykong_kart/kart_061_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK062Wheel0[] = "__OTR__donkeykong_kart/kart_062_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK062Wheel1[] = "__OTR__donkeykong_kart/kart_062_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK062Wheel2[] = "__OTR__donkeykong_kart/kart_062_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK062Wheel3[] = "__OTR__donkeykong_kart/kart_062_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK063Wheel0[] = "__OTR__donkeykong_kart/kart_063_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK063Wheel1[] = "__OTR__donkeykong_kart/kart_063_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK063Wheel2[] = "__OTR__donkeykong_kart/kart_063_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK063Wheel3[] = "__OTR__donkeykong_kart/kart_063_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK064Wheel0[] = "__OTR__donkeykong_kart/kart_064_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK064Wheel1[] = "__OTR__donkeykong_kart/kart_064_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK064Wheel2[] = "__OTR__donkeykong_kart/kart_064_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK064Wheel3[] = "__OTR__donkeykong_kart/kart_064_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK065Wheel0[] = "__OTR__donkeykong_kart/kart_065_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK065Wheel1[] = "__OTR__donkeykong_kart/kart_065_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK065Wheel2[] = "__OTR__donkeykong_kart/kart_065_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK065Wheel3[] = "__OTR__donkeykong_kart/kart_065_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK066Wheel0[] = "__OTR__donkeykong_kart/kart_066_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK066Wheel1[] = "__OTR__donkeykong_kart/kart_066_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK066Wheel2[] = "__OTR__donkeykong_kart/kart_066_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK066Wheel3[] = "__OTR__donkeykong_kart/kart_066_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK067Wheel0[] = "__OTR__donkeykong_kart/kart_067_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK067Wheel1[] = "__OTR__donkeykong_kart/kart_067_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK067Wheel2[] = "__OTR__donkeykong_kart/kart_067_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK067Wheel3[] = "__OTR__donkeykong_kart/kart_067_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK068Wheel0[] = "__OTR__donkeykong_kart/kart_068_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK068Wheel1[] = "__OTR__donkeykong_kart/kart_068_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK068Wheel2[] = "__OTR__donkeykong_kart/kart_068_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK068Wheel3[] = "__OTR__donkeykong_kart/kart_068_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK069Wheel0[] = "__OTR__donkeykong_kart/kart_069_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK069Wheel1[] = "__OTR__donkeykong_kart/kart_069_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK069Wheel2[] = "__OTR__donkeykong_kart/kart_069_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK069Wheel3[] = "__OTR__donkeykong_kart/kart_069_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK070Wheel0[] = "__OTR__donkeykong_kart/kart_070_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK070Wheel1[] = "__OTR__donkeykong_kart/kart_070_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK070Wheel2[] = "__OTR__donkeykong_kart/kart_070_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK070Wheel3[] = "__OTR__donkeykong_kart/kart_070_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK071Wheel0[] = "__OTR__donkeykong_kart/kart_071_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK071Wheel1[] = "__OTR__donkeykong_kart/kart_071_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK071Wheel2[] = "__OTR__donkeykong_kart/kart_071_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK071Wheel3[] = "__OTR__donkeykong_kart/kart_071_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK072Wheel0[] = "__OTR__donkeykong_kart/kart_072_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK072Wheel1[] = "__OTR__donkeykong_kart/kart_072_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK072Wheel2[] = "__OTR__donkeykong_kart/kart_072_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK072Wheel3[] = "__OTR__donkeykong_kart/kart_072_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK073Wheel0[] = "__OTR__donkeykong_kart/kart_073_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK073Wheel1[] = "__OTR__donkeykong_kart/kart_073_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK073Wheel2[] = "__OTR__donkeykong_kart/kart_073_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK073Wheel3[] = "__OTR__donkeykong_kart/kart_073_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK074Wheel0[] = "__OTR__donkeykong_kart/kart_074_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK074Wheel1[] = "__OTR__donkeykong_kart/kart_074_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK074Wheel2[] = "__OTR__donkeykong_kart/kart_074_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK074Wheel3[] = "__OTR__donkeykong_kart/kart_074_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK075Wheel0[] = "__OTR__donkeykong_kart/kart_075_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK075Wheel1[] = "__OTR__donkeykong_kart/kart_075_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK075Wheel2[] = "__OTR__donkeykong_kart/kart_075_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK075Wheel3[] = "__OTR__donkeykong_kart/kart_075_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK076Wheel0[] = "__OTR__donkeykong_kart/kart_076_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK076Wheel1[] = "__OTR__donkeykong_kart/kart_076_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK076Wheel2[] = "__OTR__donkeykong_kart/kart_076_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK076Wheel3[] = "__OTR__donkeykong_kart/kart_076_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK077Wheel0[] = "__OTR__donkeykong_kart/kart_077_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK077Wheel1[] = "__OTR__donkeykong_kart/kart_077_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK077Wheel2[] = "__OTR__donkeykong_kart/kart_077_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK077Wheel3[] = "__OTR__donkeykong_kart/kart_077_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK078Wheel0[] = "__OTR__donkeykong_kart/kart_078_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK078Wheel1[] = "__OTR__donkeykong_kart/kart_078_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK078Wheel2[] = "__OTR__donkeykong_kart/kart_078_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK078Wheel3[] = "__OTR__donkeykong_kart/kart_078_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK079Wheel0[] = "__OTR__donkeykong_kart/kart_079_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK079Wheel1[] = "__OTR__donkeykong_kart/kart_079_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK079Wheel2[] = "__OTR__donkeykong_kart/kart_079_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK079Wheel3[] = "__OTR__donkeykong_kart/kart_079_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK080Wheel0[] = "__OTR__donkeykong_kart/kart_080_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK080Wheel1[] = "__OTR__donkeykong_kart/kart_080_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK080Wheel2[] = "__OTR__donkeykong_kart/kart_080_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK080Wheel3[] = "__OTR__donkeykong_kart/kart_080_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK081Wheel0[] = "__OTR__donkeykong_kart/kart_081_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK081Wheel1[] = "__OTR__donkeykong_kart/kart_081_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK081Wheel2[] = "__OTR__donkeykong_kart/kart_081_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK081Wheel3[] = "__OTR__donkeykong_kart/kart_081_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK082Wheel0[] = "__OTR__donkeykong_kart/kart_082_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK082Wheel1[] = "__OTR__donkeykong_kart/kart_082_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK082Wheel2[] = "__OTR__donkeykong_kart/kart_082_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK082Wheel3[] = "__OTR__donkeykong_kart/kart_082_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK083Wheel0[] = "__OTR__donkeykong_kart/kart_083_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK083Wheel1[] = "__OTR__donkeykong_kart/kart_083_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK083Wheel2[] = "__OTR__donkeykong_kart/kart_083_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK083Wheel3[] = "__OTR__donkeykong_kart/kart_083_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK084Wheel0[] = "__OTR__donkeykong_kart/kart_084_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK084Wheel1[] = "__OTR__donkeykong_kart/kart_084_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK084Wheel2[] = "__OTR__donkeykong_kart/kart_084_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK084Wheel3[] = "__OTR__donkeykong_kart/kart_084_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK085Wheel0[] = "__OTR__donkeykong_kart/kart_085_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK085Wheel1[] = "__OTR__donkeykong_kart/kart_085_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK085Wheel2[] = "__OTR__donkeykong_kart/kart_085_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK085Wheel3[] = "__OTR__donkeykong_kart/kart_085_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK086Wheel0[] = "__OTR__donkeykong_kart/kart_086_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK086Wheel1[] = "__OTR__donkeykong_kart/kart_086_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK086Wheel2[] = "__OTR__donkeykong_kart/kart_086_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK086Wheel3[] = "__OTR__donkeykong_kart/kart_086_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK087Wheel0[] = "__OTR__donkeykong_kart/kart_087_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK087Wheel1[] = "__OTR__donkeykong_kart/kart_087_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK087Wheel2[] = "__OTR__donkeykong_kart/kart_087_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK087Wheel3[] = "__OTR__donkeykong_kart/kart_087_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK088Wheel0[] = "__OTR__donkeykong_kart/kart_088_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK088Wheel1[] = "__OTR__donkeykong_kart/kart_088_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK088Wheel2[] = "__OTR__donkeykong_kart/kart_088_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK088Wheel3[] = "__OTR__donkeykong_kart/kart_088_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK089Wheel0[] = "__OTR__donkeykong_kart/kart_089_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK089Wheel1[] = "__OTR__donkeykong_kart/kart_089_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK089Wheel2[] = "__OTR__donkeykong_kart/kart_089_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK089Wheel3[] = "__OTR__donkeykong_kart/kart_089_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK090Wheel0[] = "__OTR__donkeykong_kart/kart_090_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK090Wheel1[] = "__OTR__donkeykong_kart/kart_090_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK090Wheel2[] = "__OTR__donkeykong_kart/kart_090_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK090Wheel3[] = "__OTR__donkeykong_kart/kart_090_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK091Wheel0[] = "__OTR__donkeykong_kart/kart_091_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK091Wheel1[] = "__OTR__donkeykong_kart/kart_091_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK091Wheel2[] = "__OTR__donkeykong_kart/kart_091_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK091Wheel3[] = "__OTR__donkeykong_kart/kart_091_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK092Wheel0[] = "__OTR__donkeykong_kart/kart_092_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK092Wheel1[] = "__OTR__donkeykong_kart/kart_092_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK092Wheel2[] = "__OTR__donkeykong_kart/kart_092_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK092Wheel3[] = "__OTR__donkeykong_kart/kart_092_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK093Wheel0[] = "__OTR__donkeykong_kart/kart_093_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK093Wheel1[] = "__OTR__donkeykong_kart/kart_093_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK093Wheel2[] = "__OTR__donkeykong_kart/kart_093_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK093Wheel3[] = "__OTR__donkeykong_kart/kart_093_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK094Wheel0[] = "__OTR__donkeykong_kart/kart_094_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK094Wheel1[] = "__OTR__donkeykong_kart/kart_094_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK094Wheel2[] = "__OTR__donkeykong_kart/kart_094_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK094Wheel3[] = "__OTR__donkeykong_kart/kart_094_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK095Wheel0[] = "__OTR__donkeykong_kart/kart_095_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK095Wheel1[] = "__OTR__donkeykong_kart/kart_095_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK095Wheel2[] = "__OTR__donkeykong_kart/kart_095_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK095Wheel3[] = "__OTR__donkeykong_kart/kart_095_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK096Wheel0[] = "__OTR__donkeykong_kart/kart_096_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK096Wheel1[] = "__OTR__donkeykong_kart/kart_096_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK096Wheel2[] = "__OTR__donkeykong_kart/kart_096_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK096Wheel3[] = "__OTR__donkeykong_kart/kart_096_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK097Wheel0[] = "__OTR__donkeykong_kart/kart_097_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK097Wheel1[] = "__OTR__donkeykong_kart/kart_097_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK097Wheel2[] = "__OTR__donkeykong_kart/kart_097_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK097Wheel3[] = "__OTR__donkeykong_kart/kart_097_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK098Wheel0[] = "__OTR__donkeykong_kart/kart_098_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK098Wheel1[] = "__OTR__donkeykong_kart/kart_098_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK098Wheel2[] = "__OTR__donkeykong_kart/kart_098_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK098Wheel3[] = "__OTR__donkeykong_kart/kart_098_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK099Wheel0[] = "__OTR__donkeykong_kart/kart_099_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK099Wheel1[] = "__OTR__donkeykong_kart/kart_099_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK099Wheel2[] = "__OTR__donkeykong_kart/kart_099_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK099Wheel3[] = "__OTR__donkeykong_kart/kart_099_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK100Wheel0[] = "__OTR__donkeykong_kart/kart_100_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK100Wheel1[] = "__OTR__donkeykong_kart/kart_100_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK100Wheel2[] = "__OTR__donkeykong_kart/kart_100_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK100Wheel3[] = "__OTR__donkeykong_kart/kart_100_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK101Wheel0[] = "__OTR__donkeykong_kart/kart_101_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK101Wheel1[] = "__OTR__donkeykong_kart/kart_101_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK101Wheel2[] = "__OTR__donkeykong_kart/kart_101_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK101Wheel3[] = "__OTR__donkeykong_kart/kart_101_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK102Wheel0[] = "__OTR__donkeykong_kart/kart_102_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK102Wheel1[] = "__OTR__donkeykong_kart/kart_102_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK102Wheel2[] = "__OTR__donkeykong_kart/kart_102_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK102Wheel3[] = "__OTR__donkeykong_kart/kart_102_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK103Wheel0[] = "__OTR__donkeykong_kart/kart_103_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK103Wheel1[] = "__OTR__donkeykong_kart/kart_103_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK103Wheel2[] = "__OTR__donkeykong_kart/kart_103_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK103Wheel3[] = "__OTR__donkeykong_kart/kart_103_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK104Wheel0[] = "__OTR__donkeykong_kart/kart_104_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK104Wheel1[] = "__OTR__donkeykong_kart/kart_104_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK104Wheel2[] = "__OTR__donkeykong_kart/kart_104_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK104Wheel3[] = "__OTR__donkeykong_kart/kart_104_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK105Wheel0[] = "__OTR__donkeykong_kart/kart_105_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK105Wheel1[] = "__OTR__donkeykong_kart/kart_105_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK105Wheel2[] = "__OTR__donkeykong_kart/kart_105_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK105Wheel3[] = "__OTR__donkeykong_kart/kart_105_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK106Wheel0[] = "__OTR__donkeykong_kart/kart_106_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK106Wheel1[] = "__OTR__donkeykong_kart/kart_106_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK106Wheel2[] = "__OTR__donkeykong_kart/kart_106_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK106Wheel3[] = "__OTR__donkeykong_kart/kart_106_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK107Wheel0[] = "__OTR__donkeykong_kart/kart_107_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK107Wheel1[] = "__OTR__donkeykong_kart/kart_107_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK107Wheel2[] = "__OTR__donkeykong_kart/kart_107_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK107Wheel3[] = "__OTR__donkeykong_kart/kart_107_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK108Wheel0[] = "__OTR__donkeykong_kart/kart_108_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK108Wheel1[] = "__OTR__donkeykong_kart/kart_108_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK108Wheel2[] = "__OTR__donkeykong_kart/kart_108_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK108Wheel3[] = "__OTR__donkeykong_kart/kart_108_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK109Wheel0[] = "__OTR__donkeykong_kart/kart_109_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK109Wheel1[] = "__OTR__donkeykong_kart/kart_109_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK109Wheel2[] = "__OTR__donkeykong_kart/kart_109_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK109Wheel3[] = "__OTR__donkeykong_kart/kart_109_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK110Wheel0[] = "__OTR__donkeykong_kart/kart_110_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK110Wheel1[] = "__OTR__donkeykong_kart/kart_110_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK110Wheel2[] = "__OTR__donkeykong_kart/kart_110_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK110Wheel3[] = "__OTR__donkeykong_kart/kart_110_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK111Wheel0[] = "__OTR__donkeykong_kart/kart_111_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK111Wheel1[] = "__OTR__donkeykong_kart/kart_111_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK111Wheel2[] = "__OTR__donkeykong_kart/kart_111_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK111Wheel3[] = "__OTR__donkeykong_kart/kart_111_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK112Wheel0[] = "__OTR__donkeykong_kart/kart_112_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK112Wheel1[] = "__OTR__donkeykong_kart/kart_112_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK112Wheel2[] = "__OTR__donkeykong_kart/kart_112_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK112Wheel3[] = "__OTR__donkeykong_kart/kart_112_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK113Wheel0[] = "__OTR__donkeykong_kart/kart_113_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK113Wheel1[] = "__OTR__donkeykong_kart/kart_113_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK113Wheel2[] = "__OTR__donkeykong_kart/kart_113_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK113Wheel3[] = "__OTR__donkeykong_kart/kart_113_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK114Wheel0[] = "__OTR__donkeykong_kart/kart_114_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK114Wheel1[] = "__OTR__donkeykong_kart/kart_114_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK114Wheel2[] = "__OTR__donkeykong_kart/kart_114_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK114Wheel3[] = "__OTR__donkeykong_kart/kart_114_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK115Wheel0[] = "__OTR__donkeykong_kart/kart_115_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK115Wheel1[] = "__OTR__donkeykong_kart/kart_115_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK115Wheel2[] = "__OTR__donkeykong_kart/kart_115_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK115Wheel3[] = "__OTR__donkeykong_kart/kart_115_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK116Wheel0[] = "__OTR__donkeykong_kart/kart_116_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK116Wheel1[] = "__OTR__donkeykong_kart/kart_116_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK116Wheel2[] = "__OTR__donkeykong_kart/kart_116_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK116Wheel3[] = "__OTR__donkeykong_kart/kart_116_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK117Wheel0[] = "__OTR__donkeykong_kart/kart_117_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK117Wheel1[] = "__OTR__donkeykong_kart/kart_117_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK117Wheel2[] = "__OTR__donkeykong_kart/kart_117_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK117Wheel3[] = "__OTR__donkeykong_kart/kart_117_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK118Wheel0[] = "__OTR__donkeykong_kart/kart_118_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK118Wheel1[] = "__OTR__donkeykong_kart/kart_118_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK118Wheel2[] = "__OTR__donkeykong_kart/kart_118_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK118Wheel3[] = "__OTR__donkeykong_kart/kart_118_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK119Wheel0[] = "__OTR__donkeykong_kart/kart_119_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK119Wheel1[] = "__OTR__donkeykong_kart/kart_119_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK119Wheel2[] = "__OTR__donkeykong_kart/kart_119_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK119Wheel3[] = "__OTR__donkeykong_kart/kart_119_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK120Wheel0[] = "__OTR__donkeykong_kart/kart_120_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK120Wheel1[] = "__OTR__donkeykong_kart/kart_120_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK120Wheel2[] = "__OTR__donkeykong_kart/kart_120_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK120Wheel3[] = "__OTR__donkeykong_kart/kart_120_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK121Wheel0[] = "__OTR__donkeykong_kart/kart_121_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK121Wheel1[] = "__OTR__donkeykong_kart/kart_121_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK121Wheel2[] = "__OTR__donkeykong_kart/kart_121_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK121Wheel3[] = "__OTR__donkeykong_kart/kart_121_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK122Wheel0[] = "__OTR__donkeykong_kart/kart_122_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK122Wheel1[] = "__OTR__donkeykong_kart/kart_122_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK122Wheel2[] = "__OTR__donkeykong_kart/kart_122_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK122Wheel3[] = "__OTR__donkeykong_kart/kart_122_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK123Wheel0[] = "__OTR__donkeykong_kart/kart_123_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK123Wheel1[] = "__OTR__donkeykong_kart/kart_123_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK123Wheel2[] = "__OTR__donkeykong_kart/kart_123_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK123Wheel3[] = "__OTR__donkeykong_kart/kart_123_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK124Wheel0[] = "__OTR__donkeykong_kart/kart_124_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK124Wheel1[] = "__OTR__donkeykong_kart/kart_124_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK124Wheel2[] = "__OTR__donkeykong_kart/kart_124_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK124Wheel3[] = "__OTR__donkeykong_kart/kart_124_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK125Wheel0[] = "__OTR__donkeykong_kart/kart_125_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK125Wheel1[] = "__OTR__donkeykong_kart/kart_125_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK125Wheel2[] = "__OTR__donkeykong_kart/kart_125_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK125Wheel3[] = "__OTR__donkeykong_kart/kart_125_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK126Wheel0[] = "__OTR__donkeykong_kart/kart_126_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK126Wheel1[] = "__OTR__donkeykong_kart/kart_126_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK126Wheel2[] = "__OTR__donkeykong_kart/kart_126_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK126Wheel3[] = "__OTR__donkeykong_kart/kart_126_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK127Wheel0[] = "__OTR__donkeykong_kart/kart_127_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK127Wheel1[] = "__OTR__donkeykong_kart/kart_127_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK127Wheel2[] = "__OTR__donkeykong_kart/kart_127_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK127Wheel3[] = "__OTR__donkeykong_kart/kart_127_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK128Wheel0[] = "__OTR__donkeykong_kart/kart_128_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK128Wheel1[] = "__OTR__donkeykong_kart/kart_128_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK128Wheel2[] = "__OTR__donkeykong_kart/kart_128_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK128Wheel3[] = "__OTR__donkeykong_kart/kart_128_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK129Wheel0[] = "__OTR__donkeykong_kart/kart_129_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK129Wheel1[] = "__OTR__donkeykong_kart/kart_129_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK129Wheel2[] = "__OTR__donkeykong_kart/kart_129_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK129Wheel3[] = "__OTR__donkeykong_kart/kart_129_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK130Wheel0[] = "__OTR__donkeykong_kart/kart_130_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK130Wheel1[] = "__OTR__donkeykong_kart/kart_130_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK130Wheel2[] = "__OTR__donkeykong_kart/kart_130_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK130Wheel3[] = "__OTR__donkeykong_kart/kart_130_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK131Wheel0[] = "__OTR__donkeykong_kart/kart_131_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK131Wheel1[] = "__OTR__donkeykong_kart/kart_131_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK131Wheel2[] = "__OTR__donkeykong_kart/kart_131_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK131Wheel3[] = "__OTR__donkeykong_kart/kart_131_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK132Wheel0[] = "__OTR__donkeykong_kart/kart_132_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK132Wheel1[] = "__OTR__donkeykong_kart/kart_132_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK132Wheel2[] = "__OTR__donkeykong_kart/kart_132_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK132Wheel3[] = "__OTR__donkeykong_kart/kart_132_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK133Wheel0[] = "__OTR__donkeykong_kart/kart_133_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK133Wheel1[] = "__OTR__donkeykong_kart/kart_133_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK133Wheel2[] = "__OTR__donkeykong_kart/kart_133_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK133Wheel3[] = "__OTR__donkeykong_kart/kart_133_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK134Wheel0[] = "__OTR__donkeykong_kart/kart_134_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK134Wheel1[] = "__OTR__donkeykong_kart/kart_134_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK134Wheel2[] = "__OTR__donkeykong_kart/kart_134_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK134Wheel3[] = "__OTR__donkeykong_kart/kart_134_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK135Wheel0[] = "__OTR__donkeykong_kart/kart_135_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK135Wheel1[] = "__OTR__donkeykong_kart/kart_135_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK135Wheel2[] = "__OTR__donkeykong_kart/kart_135_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK135Wheel3[] = "__OTR__donkeykong_kart/kart_135_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK136Wheel0[] = "__OTR__donkeykong_kart/kart_136_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK136Wheel1[] = "__OTR__donkeykong_kart/kart_136_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK136Wheel2[] = "__OTR__donkeykong_kart/kart_136_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK136Wheel3[] = "__OTR__donkeykong_kart/kart_136_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK137Wheel0[] = "__OTR__donkeykong_kart/kart_137_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK137Wheel1[] = "__OTR__donkeykong_kart/kart_137_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK137Wheel2[] = "__OTR__donkeykong_kart/kart_137_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK137Wheel3[] = "__OTR__donkeykong_kart/kart_137_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK138Wheel0[] = "__OTR__donkeykong_kart/kart_138_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK138Wheel1[] = "__OTR__donkeykong_kart/kart_138_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK138Wheel2[] = "__OTR__donkeykong_kart/kart_138_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK138Wheel3[] = "__OTR__donkeykong_kart/kart_138_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK139Wheel0[] = "__OTR__donkeykong_kart/kart_139_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK139Wheel1[] = "__OTR__donkeykong_kart/kart_139_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK139Wheel2[] = "__OTR__donkeykong_kart/kart_139_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK139Wheel3[] = "__OTR__donkeykong_kart/kart_139_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK140Wheel0[] = "__OTR__donkeykong_kart/kart_140_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK140Wheel1[] = "__OTR__donkeykong_kart/kart_140_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK140Wheel2[] = "__OTR__donkeykong_kart/kart_140_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK140Wheel3[] = "__OTR__donkeykong_kart/kart_140_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK141Wheel0[] = "__OTR__donkeykong_kart/kart_141_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK141Wheel1[] = "__OTR__donkeykong_kart/kart_141_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK141Wheel2[] = "__OTR__donkeykong_kart/kart_141_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK141Wheel3[] = "__OTR__donkeykong_kart/kart_141_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK142Wheel0[] = "__OTR__donkeykong_kart/kart_142_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK142Wheel1[] = "__OTR__donkeykong_kart/kart_142_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK142Wheel2[] = "__OTR__donkeykong_kart/kart_142_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK142Wheel3[] = "__OTR__donkeykong_kart/kart_142_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK143Wheel0[] = "__OTR__donkeykong_kart/kart_143_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK143Wheel1[] = "__OTR__donkeykong_kart/kart_143_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK143Wheel2[] = "__OTR__donkeykong_kart/kart_143_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK143Wheel3[] = "__OTR__donkeykong_kart/kart_143_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK144Wheel0[] = "__OTR__donkeykong_kart/kart_144_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK144Wheel1[] = "__OTR__donkeykong_kart/kart_144_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK144Wheel2[] = "__OTR__donkeykong_kart/kart_144_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK144Wheel3[] = "__OTR__donkeykong_kart/kart_144_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK145Wheel0[] = "__OTR__donkeykong_kart/kart_145_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK145Wheel1[] = "__OTR__donkeykong_kart/kart_145_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK145Wheel2[] = "__OTR__donkeykong_kart/kart_145_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK145Wheel3[] = "__OTR__donkeykong_kart/kart_145_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK146Wheel0[] = "__OTR__donkeykong_kart/kart_146_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK146Wheel1[] = "__OTR__donkeykong_kart/kart_146_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK146Wheel2[] = "__OTR__donkeykong_kart/kart_146_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK146Wheel3[] = "__OTR__donkeykong_kart/kart_146_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK147Wheel0[] = "__OTR__donkeykong_kart/kart_147_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK147Wheel1[] = "__OTR__donkeykong_kart/kart_147_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK147Wheel2[] = "__OTR__donkeykong_kart/kart_147_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK147Wheel3[] = "__OTR__donkeykong_kart/kart_147_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK148Wheel0[] = "__OTR__donkeykong_kart/kart_148_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK148Wheel1[] = "__OTR__donkeykong_kart/kart_148_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK148Wheel2[] = "__OTR__donkeykong_kart/kart_148_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK148Wheel3[] = "__OTR__donkeykong_kart/kart_148_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK149Wheel0[] = "__OTR__donkeykong_kart/kart_149_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK149Wheel1[] = "__OTR__donkeykong_kart/kart_149_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK149Wheel2[] = "__OTR__donkeykong_kart/kart_149_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK149Wheel3[] = "__OTR__donkeykong_kart/kart_149_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK150Wheel0[] = "__OTR__donkeykong_kart/kart_150_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK150Wheel1[] = "__OTR__donkeykong_kart/kart_150_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK150Wheel2[] = "__OTR__donkeykong_kart/kart_150_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK150Wheel3[] = "__OTR__donkeykong_kart/kart_150_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK151Wheel0[] = "__OTR__donkeykong_kart/kart_151_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK151Wheel1[] = "__OTR__donkeykong_kart/kart_151_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK151Wheel2[] = "__OTR__donkeykong_kart/kart_151_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK151Wheel3[] = "__OTR__donkeykong_kart/kart_151_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK152Wheel0[] = "__OTR__donkeykong_kart/kart_152_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK152Wheel1[] = "__OTR__donkeykong_kart/kart_152_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK152Wheel2[] = "__OTR__donkeykong_kart/kart_152_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK152Wheel3[] = "__OTR__donkeykong_kart/kart_152_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK153Wheel0[] = "__OTR__donkeykong_kart/kart_153_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK153Wheel1[] = "__OTR__donkeykong_kart/kart_153_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK153Wheel2[] = "__OTR__donkeykong_kart/kart_153_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK153Wheel3[] = "__OTR__donkeykong_kart/kart_153_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK154Wheel0[] = "__OTR__donkeykong_kart/kart_154_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK154Wheel1[] = "__OTR__donkeykong_kart/kart_154_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK154Wheel2[] = "__OTR__donkeykong_kart/kart_154_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK154Wheel3[] = "__OTR__donkeykong_kart/kart_154_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK155Wheel0[] = "__OTR__donkeykong_kart/kart_155_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK155Wheel1[] = "__OTR__donkeykong_kart/kart_155_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK155Wheel2[] = "__OTR__donkeykong_kart/kart_155_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK155Wheel3[] = "__OTR__donkeykong_kart/kart_155_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK156Wheel0[] = "__OTR__donkeykong_kart/kart_156_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK156Wheel1[] = "__OTR__donkeykong_kart/kart_156_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK156Wheel2[] = "__OTR__donkeykong_kart/kart_156_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK156Wheel3[] = "__OTR__donkeykong_kart/kart_156_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK157Wheel0[] = "__OTR__donkeykong_kart/kart_157_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK157Wheel1[] = "__OTR__donkeykong_kart/kart_157_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK157Wheel2[] = "__OTR__donkeykong_kart/kart_157_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK157Wheel3[] = "__OTR__donkeykong_kart/kart_157_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK158Wheel0[] = "__OTR__donkeykong_kart/kart_158_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK158Wheel1[] = "__OTR__donkeykong_kart/kart_158_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK158Wheel2[] = "__OTR__donkeykong_kart/kart_158_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK158Wheel3[] = "__OTR__donkeykong_kart/kart_158_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK159Wheel0[] = "__OTR__donkeykong_kart/kart_159_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK159Wheel1[] = "__OTR__donkeykong_kart/kart_159_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK159Wheel2[] = "__OTR__donkeykong_kart/kart_159_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK159Wheel3[] = "__OTR__donkeykong_kart/kart_159_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK160Wheel0[] = "__OTR__donkeykong_kart/kart_160_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK160Wheel1[] = "__OTR__donkeykong_kart/kart_160_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK160Wheel2[] = "__OTR__donkeykong_kart/kart_160_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK160Wheel3[] = "__OTR__donkeykong_kart/kart_160_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK161Wheel0[] = "__OTR__donkeykong_kart/kart_161_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK161Wheel1[] = "__OTR__donkeykong_kart/kart_161_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK161Wheel2[] = "__OTR__donkeykong_kart/kart_161_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK161Wheel3[] = "__OTR__donkeykong_kart/kart_161_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK162Wheel0[] = "__OTR__donkeykong_kart/kart_162_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK162Wheel1[] = "__OTR__donkeykong_kart/kart_162_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK162Wheel2[] = "__OTR__donkeykong_kart/kart_162_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK162Wheel3[] = "__OTR__donkeykong_kart/kart_162_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK163Wheel0[] = "__OTR__donkeykong_kart/kart_163_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK163Wheel1[] = "__OTR__donkeykong_kart/kart_163_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK163Wheel2[] = "__OTR__donkeykong_kart/kart_163_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK163Wheel3[] = "__OTR__donkeykong_kart/kart_163_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK164Wheel0[] = "__OTR__donkeykong_kart/kart_164_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK164Wheel1[] = "__OTR__donkeykong_kart/kart_164_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK164Wheel2[] = "__OTR__donkeykong_kart/kart_164_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK164Wheel3[] = "__OTR__donkeykong_kart/kart_164_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK165Wheel0[] = "__OTR__donkeykong_kart/kart_165_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK165Wheel1[] = "__OTR__donkeykong_kart/kart_165_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK165Wheel2[] = "__OTR__donkeykong_kart/kart_165_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK165Wheel3[] = "__OTR__donkeykong_kart/kart_165_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK166Wheel0[] = "__OTR__donkeykong_kart/kart_166_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK166Wheel1[] = "__OTR__donkeykong_kart/kart_166_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK166Wheel2[] = "__OTR__donkeykong_kart/kart_166_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK166Wheel3[] = "__OTR__donkeykong_kart/kart_166_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK167Wheel0[] = "__OTR__donkeykong_kart/kart_167_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK167Wheel1[] = "__OTR__donkeykong_kart/kart_167_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK167Wheel2[] = "__OTR__donkeykong_kart/kart_167_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK167Wheel3[] = "__OTR__donkeykong_kart/kart_167_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK168Wheel0[] = "__OTR__donkeykong_kart/kart_168_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK168Wheel1[] = "__OTR__donkeykong_kart/kart_168_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK168Wheel2[] = "__OTR__donkeykong_kart/kart_168_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK168Wheel3[] = "__OTR__donkeykong_kart/kart_168_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK169Wheel0[] = "__OTR__donkeykong_kart/kart_169_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK169Wheel1[] = "__OTR__donkeykong_kart/kart_169_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK169Wheel2[] = "__OTR__donkeykong_kart/kart_169_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK169Wheel3[] = "__OTR__donkeykong_kart/kart_169_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK170Wheel0[] = "__OTR__donkeykong_kart/kart_170_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK170Wheel1[] = "__OTR__donkeykong_kart/kart_170_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK170Wheel2[] = "__OTR__donkeykong_kart/kart_170_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK170Wheel3[] = "__OTR__donkeykong_kart/kart_170_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK171Wheel0[] = "__OTR__donkeykong_kart/kart_171_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK171Wheel1[] = "__OTR__donkeykong_kart/kart_171_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK171Wheel2[] = "__OTR__donkeykong_kart/kart_171_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK171Wheel3[] = "__OTR__donkeykong_kart/kart_171_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK172Wheel0[] = "__OTR__donkeykong_kart/kart_172_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK172Wheel1[] = "__OTR__donkeykong_kart/kart_172_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK172Wheel2[] = "__OTR__donkeykong_kart/kart_172_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK172Wheel3[] = "__OTR__donkeykong_kart/kart_172_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK173Wheel0[] = "__OTR__donkeykong_kart/kart_173_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK173Wheel1[] = "__OTR__donkeykong_kart/kart_173_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK173Wheel2[] = "__OTR__donkeykong_kart/kart_173_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK173Wheel3[] = "__OTR__donkeykong_kart/kart_173_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK174Wheel0[] = "__OTR__donkeykong_kart/kart_174_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK174Wheel1[] = "__OTR__donkeykong_kart/kart_174_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK174Wheel2[] = "__OTR__donkeykong_kart/kart_174_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK174Wheel3[] = "__OTR__donkeykong_kart/kart_174_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK175Wheel0[] = "__OTR__donkeykong_kart/kart_175_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK175Wheel1[] = "__OTR__donkeykong_kart/kart_175_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK175Wheel2[] = "__OTR__donkeykong_kart/kart_175_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK175Wheel3[] = "__OTR__donkeykong_kart/kart_175_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK176Wheel0[] = "__OTR__donkeykong_kart/kart_176_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK176Wheel1[] = "__OTR__donkeykong_kart/kart_176_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK176Wheel2[] = "__OTR__donkeykong_kart/kart_176_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK176Wheel3[] = "__OTR__donkeykong_kart/kart_176_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK177Wheel0[] = "__OTR__donkeykong_kart/kart_177_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK177Wheel1[] = "__OTR__donkeykong_kart/kart_177_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK177Wheel2[] = "__OTR__donkeykong_kart/kart_177_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK177Wheel3[] = "__OTR__donkeykong_kart/kart_177_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK178Wheel0[] = "__OTR__donkeykong_kart/kart_178_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK178Wheel1[] = "__OTR__donkeykong_kart/kart_178_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK178Wheel2[] = "__OTR__donkeykong_kart/kart_178_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK178Wheel3[] = "__OTR__donkeykong_kart/kart_178_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK179Wheel0[] = "__OTR__donkeykong_kart/kart_179_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK179Wheel1[] = "__OTR__donkeykong_kart/kart_179_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK179Wheel2[] = "__OTR__donkeykong_kart/kart_179_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK179Wheel3[] = "__OTR__donkeykong_kart/kart_179_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK180Wheel0[] = "__OTR__donkeykong_kart/kart_180_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK180Wheel1[] = "__OTR__donkeykong_kart/kart_180_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK180Wheel2[] = "__OTR__donkeykong_kart/kart_180_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK180Wheel3[] = "__OTR__donkeykong_kart/kart_180_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK181Wheel0[] = "__OTR__donkeykong_kart/kart_181_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK181Wheel1[] = "__OTR__donkeykong_kart/kart_181_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK181Wheel2[] = "__OTR__donkeykong_kart/kart_181_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK181Wheel3[] = "__OTR__donkeykong_kart/kart_181_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK182Wheel0[] = "__OTR__donkeykong_kart/kart_182_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK182Wheel1[] = "__OTR__donkeykong_kart/kart_182_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK182Wheel2[] = "__OTR__donkeykong_kart/kart_182_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK182Wheel3[] = "__OTR__donkeykong_kart/kart_182_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK183Wheel0[] = "__OTR__donkeykong_kart/kart_183_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK183Wheel1[] = "__OTR__donkeykong_kart/kart_183_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK183Wheel2[] = "__OTR__donkeykong_kart/kart_183_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK183Wheel3[] = "__OTR__donkeykong_kart/kart_183_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK184Wheel0[] = "__OTR__donkeykong_kart/kart_184_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK184Wheel1[] = "__OTR__donkeykong_kart/kart_184_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK184Wheel2[] = "__OTR__donkeykong_kart/kart_184_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK184Wheel3[] = "__OTR__donkeykong_kart/kart_184_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK185Wheel0[] = "__OTR__donkeykong_kart/kart_185_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK185Wheel1[] = "__OTR__donkeykong_kart/kart_185_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK185Wheel2[] = "__OTR__donkeykong_kart/kart_185_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK185Wheel3[] = "__OTR__donkeykong_kart/kart_185_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK186Wheel0[] = "__OTR__donkeykong_kart/kart_186_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK186Wheel1[] = "__OTR__donkeykong_kart/kart_186_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK186Wheel2[] = "__OTR__donkeykong_kart/kart_186_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK186Wheel3[] = "__OTR__donkeykong_kart/kart_186_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK187Wheel0[] = "__OTR__donkeykong_kart/kart_187_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK187Wheel1[] = "__OTR__donkeykong_kart/kart_187_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK187Wheel2[] = "__OTR__donkeykong_kart/kart_187_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK187Wheel3[] = "__OTR__donkeykong_kart/kart_187_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK188Wheel0[] = "__OTR__donkeykong_kart/kart_188_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK188Wheel1[] = "__OTR__donkeykong_kart/kart_188_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK188Wheel2[] = "__OTR__donkeykong_kart/kart_188_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK188Wheel3[] = "__OTR__donkeykong_kart/kart_188_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK189Wheel0[] = "__OTR__donkeykong_kart/kart_189_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK189Wheel1[] = "__OTR__donkeykong_kart/kart_189_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK189Wheel2[] = "__OTR__donkeykong_kart/kart_189_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK189Wheel3[] = "__OTR__donkeykong_kart/kart_189_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK190Wheel0[] = "__OTR__donkeykong_kart/kart_190_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK190Wheel1[] = "__OTR__donkeykong_kart/kart_190_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK190Wheel2[] = "__OTR__donkeykong_kart/kart_190_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK190Wheel3[] = "__OTR__donkeykong_kart/kart_190_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK191Wheel0[] = "__OTR__donkeykong_kart/kart_191_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK191Wheel1[] = "__OTR__donkeykong_kart/kart_191_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK191Wheel2[] = "__OTR__donkeykong_kart/kart_191_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK191Wheel3[] = "__OTR__donkeykong_kart/kart_191_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK192Wheel0[] = "__OTR__donkeykong_kart/kart_192_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK192Wheel1[] = "__OTR__donkeykong_kart/kart_192_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK192Wheel2[] = "__OTR__donkeykong_kart/kart_192_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK192Wheel3[] = "__OTR__donkeykong_kart/kart_192_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK193Wheel0[] = "__OTR__donkeykong_kart/kart_193_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK193Wheel1[] = "__OTR__donkeykong_kart/kart_193_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK193Wheel2[] = "__OTR__donkeykong_kart/kart_193_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK193Wheel3[] = "__OTR__donkeykong_kart/kart_193_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK194Wheel0[] = "__OTR__donkeykong_kart/kart_194_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK194Wheel1[] = "__OTR__donkeykong_kart/kart_194_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK194Wheel2[] = "__OTR__donkeykong_kart/kart_194_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK194Wheel3[] = "__OTR__donkeykong_kart/kart_194_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK195Wheel0[] = "__OTR__donkeykong_kart/kart_195_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK195Wheel1[] = "__OTR__donkeykong_kart/kart_195_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK195Wheel2[] = "__OTR__donkeykong_kart/kart_195_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK195Wheel3[] = "__OTR__donkeykong_kart/kart_195_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK196Wheel0[] = "__OTR__donkeykong_kart/kart_196_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK196Wheel1[] = "__OTR__donkeykong_kart/kart_196_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK196Wheel2[] = "__OTR__donkeykong_kart/kart_196_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK196Wheel3[] = "__OTR__donkeykong_kart/kart_196_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK197Wheel0[] = "__OTR__donkeykong_kart/kart_197_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK197Wheel1[] = "__OTR__donkeykong_kart/kart_197_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK197Wheel2[] = "__OTR__donkeykong_kart/kart_197_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK197Wheel3[] = "__OTR__donkeykong_kart/kart_197_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK198Wheel0[] = "__OTR__donkeykong_kart/kart_198_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK198Wheel1[] = "__OTR__donkeykong_kart/kart_198_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK198Wheel2[] = "__OTR__donkeykong_kart/kart_198_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK198Wheel3[] = "__OTR__donkeykong_kart/kart_198_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK199Wheel0[] = "__OTR__donkeykong_kart/kart_199_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK199Wheel1[] = "__OTR__donkeykong_kart/kart_199_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK199Wheel2[] = "__OTR__donkeykong_kart/kart_199_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK199Wheel3[] = "__OTR__donkeykong_kart/kart_199_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK200Wheel0[] = "__OTR__donkeykong_kart/kart_200_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK200Wheel1[] = "__OTR__donkeykong_kart/kart_200_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK200Wheel2[] = "__OTR__donkeykong_kart/kart_200_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK200Wheel3[] = "__OTR__donkeykong_kart/kart_200_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK201Wheel0[] = "__OTR__donkeykong_kart/kart_201_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK201Wheel1[] = "__OTR__donkeykong_kart/kart_201_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK201Wheel2[] = "__OTR__donkeykong_kart/kart_201_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK201Wheel3[] = "__OTR__donkeykong_kart/kart_201_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK202Wheel0[] = "__OTR__donkeykong_kart/kart_202_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK202Wheel1[] = "__OTR__donkeykong_kart/kart_202_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK202Wheel2[] = "__OTR__donkeykong_kart/kart_202_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK202Wheel3[] = "__OTR__donkeykong_kart/kart_202_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK203Wheel0[] = "__OTR__donkeykong_kart/kart_203_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK203Wheel1[] = "__OTR__donkeykong_kart/kart_203_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK203Wheel2[] = "__OTR__donkeykong_kart/kart_203_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK203Wheel3[] = "__OTR__donkeykong_kart/kart_203_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK204Wheel0[] = "__OTR__donkeykong_kart/kart_204_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK204Wheel1[] = "__OTR__donkeykong_kart/kart_204_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK204Wheel2[] = "__OTR__donkeykong_kart/kart_204_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK204Wheel3[] = "__OTR__donkeykong_kart/kart_204_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK205Wheel0[] = "__OTR__donkeykong_kart/kart_205_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK205Wheel1[] = "__OTR__donkeykong_kart/kart_205_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK205Wheel2[] = "__OTR__donkeykong_kart/kart_205_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK205Wheel3[] = "__OTR__donkeykong_kart/kart_205_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK206Wheel0[] = "__OTR__donkeykong_kart/kart_206_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK206Wheel1[] = "__OTR__donkeykong_kart/kart_206_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK206Wheel2[] = "__OTR__donkeykong_kart/kart_206_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK206Wheel3[] = "__OTR__donkeykong_kart/kart_206_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK207Wheel0[] = "__OTR__donkeykong_kart/kart_207_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK207Wheel1[] = "__OTR__donkeykong_kart/kart_207_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK207Wheel2[] = "__OTR__donkeykong_kart/kart_207_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK207Wheel3[] = "__OTR__donkeykong_kart/kart_207_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK208Wheel0[] = "__OTR__donkeykong_kart/kart_208_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK208Wheel1[] = "__OTR__donkeykong_kart/kart_208_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK208Wheel2[] = "__OTR__donkeykong_kart/kart_208_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK208Wheel3[] = "__OTR__donkeykong_kart/kart_208_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK209Wheel0[] = "__OTR__donkeykong_kart/kart_209_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK209Wheel1[] = "__OTR__donkeykong_kart/kart_209_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK209Wheel2[] = "__OTR__donkeykong_kart/kart_209_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK209Wheel3[] = "__OTR__donkeykong_kart/kart_209_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK210Wheel0[] = "__OTR__donkeykong_kart/kart_210_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK210Wheel1[] = "__OTR__donkeykong_kart/kart_210_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK210Wheel2[] = "__OTR__donkeykong_kart/kart_210_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK210Wheel3[] = "__OTR__donkeykong_kart/kart_210_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK211Wheel0[] = "__OTR__donkeykong_kart/kart_211_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK211Wheel1[] = "__OTR__donkeykong_kart/kart_211_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK211Wheel2[] = "__OTR__donkeykong_kart/kart_211_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK211Wheel3[] = "__OTR__donkeykong_kart/kart_211_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK212Wheel0[] = "__OTR__donkeykong_kart/kart_212_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK212Wheel1[] = "__OTR__donkeykong_kart/kart_212_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK212Wheel2[] = "__OTR__donkeykong_kart/kart_212_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK212Wheel3[] = "__OTR__donkeykong_kart/kart_212_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK213Wheel0[] = "__OTR__donkeykong_kart/kart_213_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK213Wheel1[] = "__OTR__donkeykong_kart/kart_213_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK213Wheel2[] = "__OTR__donkeykong_kart/kart_213_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK213Wheel3[] = "__OTR__donkeykong_kart/kart_213_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK214Wheel0[] = "__OTR__donkeykong_kart/kart_214_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK214Wheel1[] = "__OTR__donkeykong_kart/kart_214_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK214Wheel2[] = "__OTR__donkeykong_kart/kart_214_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK214Wheel3[] = "__OTR__donkeykong_kart/kart_214_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK215Wheel0[] = "__OTR__donkeykong_kart/kart_215_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK215Wheel1[] = "__OTR__donkeykong_kart/kart_215_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK215Wheel2[] = "__OTR__donkeykong_kart/kart_215_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK215Wheel3[] = "__OTR__donkeykong_kart/kart_215_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK216Wheel0[] = "__OTR__donkeykong_kart/kart_216_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK216Wheel1[] = "__OTR__donkeykong_kart/kart_216_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK216Wheel2[] = "__OTR__donkeykong_kart/kart_216_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK216Wheel3[] = "__OTR__donkeykong_kart/kart_216_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK217Wheel0[] = "__OTR__donkeykong_kart/kart_217_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK217Wheel1[] = "__OTR__donkeykong_kart/kart_217_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK217Wheel2[] = "__OTR__donkeykong_kart/kart_217_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK217Wheel3[] = "__OTR__donkeykong_kart/kart_217_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK218Wheel0[] = "__OTR__donkeykong_kart/kart_218_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK218Wheel1[] = "__OTR__donkeykong_kart/kart_218_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK218Wheel2[] = "__OTR__donkeykong_kart/kart_218_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK218Wheel3[] = "__OTR__donkeykong_kart/kart_218_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK219Wheel0[] = "__OTR__donkeykong_kart/kart_219_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK219Wheel1[] = "__OTR__donkeykong_kart/kart_219_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK219Wheel2[] = "__OTR__donkeykong_kart/kart_219_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK219Wheel3[] = "__OTR__donkeykong_kart/kart_219_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK220Wheel0[] = "__OTR__donkeykong_kart/kart_220_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK220Wheel1[] = "__OTR__donkeykong_kart/kart_220_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK220Wheel2[] = "__OTR__donkeykong_kart/kart_220_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK220Wheel3[] = "__OTR__donkeykong_kart/kart_220_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK221Wheel0[] = "__OTR__donkeykong_kart/kart_221_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK221Wheel1[] = "__OTR__donkeykong_kart/kart_221_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK221Wheel2[] = "__OTR__donkeykong_kart/kart_221_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK221Wheel3[] = "__OTR__donkeykong_kart/kart_221_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK222Wheel0[] = "__OTR__donkeykong_kart/kart_222_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK222Wheel1[] = "__OTR__donkeykong_kart/kart_222_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK222Wheel2[] = "__OTR__donkeykong_kart/kart_222_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK222Wheel3[] = "__OTR__donkeykong_kart/kart_222_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK223Wheel0[] = "__OTR__donkeykong_kart/kart_223_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK223Wheel1[] = "__OTR__donkeykong_kart/kart_223_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK223Wheel2[] = "__OTR__donkeykong_kart/kart_223_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK223Wheel3[] = "__OTR__donkeykong_kart/kart_223_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK224Wheel0[] = "__OTR__donkeykong_kart/kart_224_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK224Wheel1[] = "__OTR__donkeykong_kart/kart_224_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK224Wheel2[] = "__OTR__donkeykong_kart/kart_224_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK224Wheel3[] = "__OTR__donkeykong_kart/kart_224_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK225Wheel0[] = "__OTR__donkeykong_kart/kart_225_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK225Wheel1[] = "__OTR__donkeykong_kart/kart_225_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK225Wheel2[] = "__OTR__donkeykong_kart/kart_225_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK225Wheel3[] = "__OTR__donkeykong_kart/kart_225_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK226Wheel0[] = "__OTR__donkeykong_kart/kart_226_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK226Wheel1[] = "__OTR__donkeykong_kart/kart_226_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK226Wheel2[] = "__OTR__donkeykong_kart/kart_226_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK226Wheel3[] = "__OTR__donkeykong_kart/kart_226_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK227Wheel0[] = "__OTR__donkeykong_kart/kart_227_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK227Wheel1[] = "__OTR__donkeykong_kart/kart_227_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK227Wheel2[] = "__OTR__donkeykong_kart/kart_227_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK227Wheel3[] = "__OTR__donkeykong_kart/kart_227_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK228Wheel0[] = "__OTR__donkeykong_kart/kart_228_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK228Wheel1[] = "__OTR__donkeykong_kart/kart_228_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK228Wheel2[] = "__OTR__donkeykong_kart/kart_228_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK228Wheel3[] = "__OTR__donkeykong_kart/kart_228_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK229Wheel0[] = "__OTR__donkeykong_kart/kart_229_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK229Wheel1[] = "__OTR__donkeykong_kart/kart_229_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK229Wheel2[] = "__OTR__donkeykong_kart/kart_229_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK229Wheel3[] = "__OTR__donkeykong_kart/kart_229_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK230Wheel0[] = "__OTR__donkeykong_kart/kart_230_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK230Wheel1[] = "__OTR__donkeykong_kart/kart_230_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK230Wheel2[] = "__OTR__donkeykong_kart/kart_230_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK230Wheel3[] = "__OTR__donkeykong_kart/kart_230_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK231Wheel0[] = "__OTR__donkeykong_kart/kart_231_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK231Wheel1[] = "__OTR__donkeykong_kart/kart_231_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK231Wheel2[] = "__OTR__donkeykong_kart/kart_231_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK231Wheel3[] = "__OTR__donkeykong_kart/kart_231_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK232Wheel0[] = "__OTR__donkeykong_kart/kart_232_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK232Wheel1[] = "__OTR__donkeykong_kart/kart_232_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK232Wheel2[] = "__OTR__donkeykong_kart/kart_232_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK232Wheel3[] = "__OTR__donkeykong_kart/kart_232_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK233Wheel0[] = "__OTR__donkeykong_kart/kart_233_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK233Wheel1[] = "__OTR__donkeykong_kart/kart_233_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK233Wheel2[] = "__OTR__donkeykong_kart/kart_233_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK233Wheel3[] = "__OTR__donkeykong_kart/kart_233_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK234Wheel0[] = "__OTR__donkeykong_kart/kart_234_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK234Wheel1[] = "__OTR__donkeykong_kart/kart_234_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK234Wheel2[] = "__OTR__donkeykong_kart/kart_234_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK234Wheel3[] = "__OTR__donkeykong_kart/kart_234_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK235Wheel0[] = "__OTR__donkeykong_kart/kart_235_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK235Wheel1[] = "__OTR__donkeykong_kart/kart_235_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK235Wheel2[] = "__OTR__donkeykong_kart/kart_235_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK235Wheel3[] = "__OTR__donkeykong_kart/kart_235_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK236Wheel0[] = "__OTR__donkeykong_kart/kart_236_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK236Wheel1[] = "__OTR__donkeykong_kart/kart_236_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK236Wheel2[] = "__OTR__donkeykong_kart/kart_236_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK236Wheel3[] = "__OTR__donkeykong_kart/kart_236_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK237Wheel0[] = "__OTR__donkeykong_kart/kart_237_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK237Wheel1[] = "__OTR__donkeykong_kart/kart_237_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK237Wheel2[] = "__OTR__donkeykong_kart/kart_237_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK237Wheel3[] = "__OTR__donkeykong_kart/kart_237_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK238Wheel0[] = "__OTR__donkeykong_kart/kart_238_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK238Wheel1[] = "__OTR__donkeykong_kart/kart_238_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK238Wheel2[] = "__OTR__donkeykong_kart/kart_238_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK238Wheel3[] = "__OTR__donkeykong_kart/kart_238_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK239Wheel0[] = "__OTR__donkeykong_kart/kart_239_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK239Wheel1[] = "__OTR__donkeykong_kart/kart_239_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK239Wheel2[] = "__OTR__donkeykong_kart/kart_239_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK239Wheel3[] = "__OTR__donkeykong_kart/kart_239_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK240Wheel0[] = "__OTR__donkeykong_kart/kart_240_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK240Wheel1[] = "__OTR__donkeykong_kart/kart_240_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK240Wheel2[] = "__OTR__donkeykong_kart/kart_240_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK240Wheel3[] = "__OTR__donkeykong_kart/kart_240_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK241Wheel0[] = "__OTR__donkeykong_kart/kart_241_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK241Wheel1[] = "__OTR__donkeykong_kart/kart_241_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK241Wheel2[] = "__OTR__donkeykong_kart/kart_241_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK241Wheel3[] = "__OTR__donkeykong_kart/kart_241_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK242Wheel0[] = "__OTR__donkeykong_kart/kart_242_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK242Wheel1[] = "__OTR__donkeykong_kart/kart_242_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK242Wheel2[] = "__OTR__donkeykong_kart/kart_242_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK242Wheel3[] = "__OTR__donkeykong_kart/kart_242_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK243Wheel0[] = "__OTR__donkeykong_kart/kart_243_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK243Wheel1[] = "__OTR__donkeykong_kart/kart_243_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK243Wheel2[] = "__OTR__donkeykong_kart/kart_243_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK243Wheel3[] = "__OTR__donkeykong_kart/kart_243_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK244Wheel0[] = "__OTR__donkeykong_kart/kart_244_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK244Wheel1[] = "__OTR__donkeykong_kart/kart_244_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK244Wheel2[] = "__OTR__donkeykong_kart/kart_244_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK244Wheel3[] = "__OTR__donkeykong_kart/kart_244_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK245Wheel0[] = "__OTR__donkeykong_kart/kart_245_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK245Wheel1[] = "__OTR__donkeykong_kart/kart_245_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK245Wheel2[] = "__OTR__donkeykong_kart/kart_245_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK245Wheel3[] = "__OTR__donkeykong_kart/kart_245_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK246Wheel0[] = "__OTR__donkeykong_kart/kart_246_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK246Wheel1[] = "__OTR__donkeykong_kart/kart_246_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK246Wheel2[] = "__OTR__donkeykong_kart/kart_246_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK246Wheel3[] = "__OTR__donkeykong_kart/kart_246_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK247Wheel0[] = "__OTR__donkeykong_kart/kart_247_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK247Wheel1[] = "__OTR__donkeykong_kart/kart_247_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK247Wheel2[] = "__OTR__donkeykong_kart/kart_247_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK247Wheel3[] = "__OTR__donkeykong_kart/kart_247_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK248Wheel0[] = "__OTR__donkeykong_kart/kart_248_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK248Wheel1[] = "__OTR__donkeykong_kart/kart_248_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK248Wheel2[] = "__OTR__donkeykong_kart/kart_248_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK248Wheel3[] = "__OTR__donkeykong_kart/kart_248_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK249Wheel0[] = "__OTR__donkeykong_kart/kart_249_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK249Wheel1[] = "__OTR__donkeykong_kart/kart_249_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK249Wheel2[] = "__OTR__donkeykong_kart/kart_249_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK249Wheel3[] = "__OTR__donkeykong_kart/kart_249_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK250Wheel0[] = "__OTR__donkeykong_kart/kart_250_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK250Wheel1[] = "__OTR__donkeykong_kart/kart_250_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK250Wheel2[] = "__OTR__donkeykong_kart/kart_250_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK250Wheel3[] = "__OTR__donkeykong_kart/kart_250_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK251Wheel0[] = "__OTR__donkeykong_kart/kart_251_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK251Wheel1[] = "__OTR__donkeykong_kart/kart_251_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK251Wheel2[] = "__OTR__donkeykong_kart/kart_251_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK251Wheel3[] = "__OTR__donkeykong_kart/kart_251_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK252Wheel0[] = "__OTR__donkeykong_kart/kart_252_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK252Wheel1[] = "__OTR__donkeykong_kart/kart_252_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK252Wheel2[] = "__OTR__donkeykong_kart/kart_252_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK252Wheel3[] = "__OTR__donkeykong_kart/kart_252_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK253Wheel0[] = "__OTR__donkeykong_kart/kart_253_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK253Wheel1[] = "__OTR__donkeykong_kart/kart_253_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK253Wheel2[] = "__OTR__donkeykong_kart/kart_253_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK253Wheel3[] = "__OTR__donkeykong_kart/kart_253_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK254Wheel0[] = "__OTR__donkeykong_kart/kart_254_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK254Wheel1[] = "__OTR__donkeykong_kart/kart_254_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK254Wheel2[] = "__OTR__donkeykong_kart/kart_254_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK254Wheel3[] = "__OTR__donkeykong_kart/kart_254_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK255Wheel0[] = "__OTR__donkeykong_kart/kart_255_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK255Wheel1[] = "__OTR__donkeykong_kart/kart_255_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK255Wheel2[] = "__OTR__donkeykong_kart/kart_255_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK255Wheel3[] = "__OTR__donkeykong_kart/kart_255_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK256Wheel0[] = "__OTR__donkeykong_kart/kart_256_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK256Wheel1[] = "__OTR__donkeykong_kart/kart_256_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK256Wheel2[] = "__OTR__donkeykong_kart/kart_256_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK256Wheel3[] = "__OTR__donkeykong_kart/kart_256_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK257Wheel0[] = "__OTR__donkeykong_kart/kart_257_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK257Wheel1[] = "__OTR__donkeykong_kart/kart_257_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK257Wheel2[] = "__OTR__donkeykong_kart/kart_257_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK257Wheel3[] = "__OTR__donkeykong_kart/kart_257_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK258Wheel0[] = "__OTR__donkeykong_kart/kart_258_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK258Wheel1[] = "__OTR__donkeykong_kart/kart_258_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK258Wheel2[] = "__OTR__donkeykong_kart/kart_258_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK258Wheel3[] = "__OTR__donkeykong_kart/kart_258_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK259Wheel0[] = "__OTR__donkeykong_kart/kart_259_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK259Wheel1[] = "__OTR__donkeykong_kart/kart_259_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK259Wheel2[] = "__OTR__donkeykong_kart/kart_259_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK259Wheel3[] = "__OTR__donkeykong_kart/kart_259_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK260Wheel0[] = "__OTR__donkeykong_kart/kart_260_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK260Wheel1[] = "__OTR__donkeykong_kart/kart_260_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK260Wheel2[] = "__OTR__donkeykong_kart/kart_260_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK260Wheel3[] = "__OTR__donkeykong_kart/kart_260_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK261Wheel0[] = "__OTR__donkeykong_kart/kart_261_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK261Wheel1[] = "__OTR__donkeykong_kart/kart_261_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK261Wheel2[] = "__OTR__donkeykong_kart/kart_261_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK261Wheel3[] = "__OTR__donkeykong_kart/kart_261_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK262Wheel0[] = "__OTR__donkeykong_kart/kart_262_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK262Wheel1[] = "__OTR__donkeykong_kart/kart_262_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK262Wheel2[] = "__OTR__donkeykong_kart/kart_262_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK262Wheel3[] = "__OTR__donkeykong_kart/kart_262_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK263Wheel0[] = "__OTR__donkeykong_kart/kart_263_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK263Wheel1[] = "__OTR__donkeykong_kart/kart_263_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK263Wheel2[] = "__OTR__donkeykong_kart/kart_263_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK263Wheel3[] = "__OTR__donkeykong_kart/kart_263_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK264Wheel0[] = "__OTR__donkeykong_kart/kart_264_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK264Wheel1[] = "__OTR__donkeykong_kart/kart_264_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK264Wheel2[] = "__OTR__donkeykong_kart/kart_264_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK264Wheel3[] = "__OTR__donkeykong_kart/kart_264_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK265Wheel0[] = "__OTR__donkeykong_kart/kart_265_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK265Wheel1[] = "__OTR__donkeykong_kart/kart_265_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK265Wheel2[] = "__OTR__donkeykong_kart/kart_265_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK265Wheel3[] = "__OTR__donkeykong_kart/kart_265_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK266Wheel0[] = "__OTR__donkeykong_kart/kart_266_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK266Wheel1[] = "__OTR__donkeykong_kart/kart_266_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK266Wheel2[] = "__OTR__donkeykong_kart/kart_266_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK266Wheel3[] = "__OTR__donkeykong_kart/kart_266_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK267Wheel0[] = "__OTR__donkeykong_kart/kart_267_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK267Wheel1[] = "__OTR__donkeykong_kart/kart_267_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK267Wheel2[] = "__OTR__donkeykong_kart/kart_267_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK267Wheel3[] = "__OTR__donkeykong_kart/kart_267_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK268Wheel0[] = "__OTR__donkeykong_kart/kart_268_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK268Wheel1[] = "__OTR__donkeykong_kart/kart_268_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK268Wheel2[] = "__OTR__donkeykong_kart/kart_268_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK268Wheel3[] = "__OTR__donkeykong_kart/kart_268_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK269Wheel0[] = "__OTR__donkeykong_kart/kart_269_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK269Wheel1[] = "__OTR__donkeykong_kart/kart_269_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK269Wheel2[] = "__OTR__donkeykong_kart/kart_269_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK269Wheel3[] = "__OTR__donkeykong_kart/kart_269_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK270Wheel0[] = "__OTR__donkeykong_kart/kart_270_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK270Wheel1[] = "__OTR__donkeykong_kart/kart_270_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK270Wheel2[] = "__OTR__donkeykong_kart/kart_270_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK270Wheel3[] = "__OTR__donkeykong_kart/kart_270_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK271Wheel0[] = "__OTR__donkeykong_kart/kart_271_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK271Wheel1[] = "__OTR__donkeykong_kart/kart_271_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK271Wheel2[] = "__OTR__donkeykong_kart/kart_271_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK271Wheel3[] = "__OTR__donkeykong_kart/kart_271_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK272Wheel0[] = "__OTR__donkeykong_kart/kart_272_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK272Wheel1[] = "__OTR__donkeykong_kart/kart_272_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK272Wheel2[] = "__OTR__donkeykong_kart/kart_272_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK272Wheel3[] = "__OTR__donkeykong_kart/kart_272_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK273Wheel0[] = "__OTR__donkeykong_kart/kart_273_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK273Wheel1[] = "__OTR__donkeykong_kart/kart_273_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK273Wheel2[] = "__OTR__donkeykong_kart/kart_273_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK273Wheel3[] = "__OTR__donkeykong_kart/kart_273_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK274Wheel0[] = "__OTR__donkeykong_kart/kart_274_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK274Wheel1[] = "__OTR__donkeykong_kart/kart_274_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK274Wheel2[] = "__OTR__donkeykong_kart/kart_274_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK274Wheel3[] = "__OTR__donkeykong_kart/kart_274_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK275Wheel0[] = "__OTR__donkeykong_kart/kart_275_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK275Wheel1[] = "__OTR__donkeykong_kart/kart_275_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK275Wheel2[] = "__OTR__donkeykong_kart/kart_275_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK275Wheel3[] = "__OTR__donkeykong_kart/kart_275_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK276Wheel0[] = "__OTR__donkeykong_kart/kart_276_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK276Wheel1[] = "__OTR__donkeykong_kart/kart_276_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK276Wheel2[] = "__OTR__donkeykong_kart/kart_276_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK276Wheel3[] = "__OTR__donkeykong_kart/kart_276_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK277Wheel0[] = "__OTR__donkeykong_kart/kart_277_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK277Wheel1[] = "__OTR__donkeykong_kart/kart_277_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK277Wheel2[] = "__OTR__donkeykong_kart/kart_277_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK277Wheel3[] = "__OTR__donkeykong_kart/kart_277_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK278Wheel0[] = "__OTR__donkeykong_kart/kart_278_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK278Wheel1[] = "__OTR__donkeykong_kart/kart_278_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK278Wheel2[] = "__OTR__donkeykong_kart/kart_278_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK278Wheel3[] = "__OTR__donkeykong_kart/kart_278_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK279Wheel0[] = "__OTR__donkeykong_kart/kart_279_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK279Wheel1[] = "__OTR__donkeykong_kart/kart_279_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK279Wheel2[] = "__OTR__donkeykong_kart/kart_279_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK279Wheel3[] = "__OTR__donkeykong_kart/kart_279_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK280Wheel0[] = "__OTR__donkeykong_kart/kart_280_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK280Wheel1[] = "__OTR__donkeykong_kart/kart_280_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK280Wheel2[] = "__OTR__donkeykong_kart/kart_280_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK280Wheel3[] = "__OTR__donkeykong_kart/kart_280_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK281Wheel0[] = "__OTR__donkeykong_kart/kart_281_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK281Wheel1[] = "__OTR__donkeykong_kart/kart_281_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK281Wheel2[] = "__OTR__donkeykong_kart/kart_281_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK281Wheel3[] = "__OTR__donkeykong_kart/kart_281_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK282Wheel0[] = "__OTR__donkeykong_kart/kart_282_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK282Wheel1[] = "__OTR__donkeykong_kart/kart_282_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK282Wheel2[] = "__OTR__donkeykong_kart/kart_282_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK282Wheel3[] = "__OTR__donkeykong_kart/kart_282_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK283Wheel0[] = "__OTR__donkeykong_kart/kart_283_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK283Wheel1[] = "__OTR__donkeykong_kart/kart_283_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK283Wheel2[] = "__OTR__donkeykong_kart/kart_283_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK283Wheel3[] = "__OTR__donkeykong_kart/kart_283_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK284Wheel0[] = "__OTR__donkeykong_kart/kart_284_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK284Wheel1[] = "__OTR__donkeykong_kart/kart_284_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK284Wheel2[] = "__OTR__donkeykong_kart/kart_284_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK284Wheel3[] = "__OTR__donkeykong_kart/kart_284_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK285Wheel0[] = "__OTR__donkeykong_kart/kart_285_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK285Wheel1[] = "__OTR__donkeykong_kart/kart_285_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK285Wheel2[] = "__OTR__donkeykong_kart/kart_285_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK285Wheel3[] = "__OTR__donkeykong_kart/kart_285_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK286Wheel0[] = "__OTR__donkeykong_kart/kart_286_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK286Wheel1[] = "__OTR__donkeykong_kart/kart_286_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK286Wheel2[] = "__OTR__donkeykong_kart/kart_286_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK286Wheel3[] = "__OTR__donkeykong_kart/kart_286_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK287Wheel0[] = "__OTR__donkeykong_kart/kart_287_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK287Wheel1[] = "__OTR__donkeykong_kart/kart_287_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK287Wheel2[] = "__OTR__donkeykong_kart/kart_287_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK287Wheel3[] = "__OTR__donkeykong_kart/kart_287_wheel_3"; - -static const ALIGN_ASSET(2) char gKartDK288Wheel0[] = "__OTR__donkeykong_kart/kart_288_wheel_0"; - -static const ALIGN_ASSET(2) char gKartDK288Wheel1[] = "__OTR__donkeykong_kart/kart_288_wheel_1"; - -static const ALIGN_ASSET(2) char gKartDK288Wheel2[] = "__OTR__donkeykong_kart/kart_288_wheel_2"; - -static const ALIGN_ASSET(2) char gKartDK288Wheel3[] = "__OTR__donkeykong_kart/kart_288_wheel_3"; - -static const char* donkeykong_kart_wheels[] = { - gKartDK000Wheel0, - gKartDK000Wheel1, - gKartDK000Wheel2, - gKartDK000Wheel3, - gKartDK001Wheel0, - gKartDK001Wheel1, - gKartDK001Wheel2, - gKartDK001Wheel3, - gKartDK002Wheel0, - gKartDK002Wheel1, - gKartDK002Wheel2, - gKartDK002Wheel3, - gKartDK003Wheel0, - gKartDK003Wheel1, - gKartDK003Wheel2, - gKartDK003Wheel3, - gKartDK004Wheel0, - gKartDK004Wheel1, - gKartDK004Wheel2, - gKartDK004Wheel3, - gKartDK005Wheel0, - gKartDK005Wheel1, - gKartDK005Wheel2, - gKartDK005Wheel3, - gKartDK006Wheel0, - gKartDK006Wheel1, - gKartDK006Wheel2, - gKartDK006Wheel3, - gKartDK007Wheel0, - gKartDK007Wheel1, - gKartDK007Wheel2, - gKartDK007Wheel3, - gKartDK008Wheel0, - gKartDK008Wheel1, - gKartDK008Wheel2, - gKartDK008Wheel3, - gKartDK009Wheel0, - gKartDK009Wheel1, - gKartDK009Wheel2, - gKartDK009Wheel3, - gKartDK010Wheel0, - gKartDK010Wheel1, - gKartDK010Wheel2, - gKartDK010Wheel3, - gKartDK011Wheel0, - gKartDK011Wheel1, - gKartDK011Wheel2, - gKartDK011Wheel3, - gKartDK012Wheel0, - gKartDK012Wheel1, - gKartDK012Wheel2, - gKartDK012Wheel3, - gKartDK013Wheel0, - gKartDK013Wheel1, - gKartDK013Wheel2, - gKartDK013Wheel3, - gKartDK014Wheel0, - gKartDK014Wheel1, - gKartDK014Wheel2, - gKartDK014Wheel3, - gKartDK015Wheel0, - gKartDK015Wheel1, - gKartDK015Wheel2, - gKartDK015Wheel3, - gKartDK016Wheel0, - gKartDK016Wheel1, - gKartDK016Wheel2, - gKartDK016Wheel3, - gKartDK017Wheel0, - gKartDK017Wheel1, - gKartDK017Wheel2, - gKartDK017Wheel3, - gKartDK018Wheel0, - gKartDK018Wheel1, - gKartDK018Wheel2, - gKartDK018Wheel3, - gKartDK019Wheel0, - gKartDK019Wheel1, - gKartDK019Wheel2, - gKartDK019Wheel3, - gKartDK020Wheel0, - gKartDK020Wheel1, - gKartDK020Wheel2, - gKartDK020Wheel3, - gKartDK021Wheel0, - gKartDK021Wheel1, - gKartDK021Wheel2, - gKartDK021Wheel3, - gKartDK022Wheel0, - gKartDK022Wheel1, - gKartDK022Wheel2, - gKartDK022Wheel3, - gKartDK023Wheel0, - gKartDK023Wheel1, - gKartDK023Wheel2, - gKartDK023Wheel3, - gKartDK024Wheel0, - gKartDK024Wheel1, - gKartDK024Wheel2, - gKartDK024Wheel3, - gKartDK025Wheel0, - gKartDK025Wheel1, - gKartDK025Wheel2, - gKartDK025Wheel3, - gKartDK026Wheel0, - gKartDK026Wheel1, - gKartDK026Wheel2, - gKartDK026Wheel3, - gKartDK027Wheel0, - gKartDK027Wheel1, - gKartDK027Wheel2, - gKartDK027Wheel3, - gKartDK028Wheel0, - gKartDK028Wheel1, - gKartDK028Wheel2, - gKartDK028Wheel3, - gKartDK029Wheel0, - gKartDK029Wheel1, - gKartDK029Wheel2, - gKartDK029Wheel3, - gKartDK030Wheel0, - gKartDK030Wheel1, - gKartDK030Wheel2, - gKartDK030Wheel3, - gKartDK031Wheel0, - gKartDK031Wheel1, - gKartDK031Wheel2, - gKartDK031Wheel3, - gKartDK032Wheel0, - gKartDK032Wheel1, - gKartDK032Wheel2, - gKartDK032Wheel3, - gKartDK033Wheel0, - gKartDK033Wheel1, - gKartDK033Wheel2, - gKartDK033Wheel3, - gKartDK034Wheel0, - gKartDK034Wheel1, - gKartDK034Wheel2, - gKartDK034Wheel3, - gKartDK035Wheel0, - gKartDK035Wheel1, - gKartDK035Wheel2, - gKartDK035Wheel3, - gKartDK036Wheel0, - gKartDK036Wheel1, - gKartDK036Wheel2, - gKartDK036Wheel3, - gKartDK037Wheel0, - gKartDK037Wheel1, - gKartDK037Wheel2, - gKartDK037Wheel3, - gKartDK038Wheel0, - gKartDK038Wheel1, - gKartDK038Wheel2, - gKartDK038Wheel3, - gKartDK039Wheel0, - gKartDK039Wheel1, - gKartDK039Wheel2, - gKartDK039Wheel3, - gKartDK040Wheel0, - gKartDK040Wheel1, - gKartDK040Wheel2, - gKartDK040Wheel3, - gKartDK041Wheel0, - gKartDK041Wheel1, - gKartDK041Wheel2, - gKartDK041Wheel3, - gKartDK042Wheel0, - gKartDK042Wheel1, - gKartDK042Wheel2, - gKartDK042Wheel3, - gKartDK043Wheel0, - gKartDK043Wheel1, - gKartDK043Wheel2, - gKartDK043Wheel3, - gKartDK044Wheel0, - gKartDK044Wheel1, - gKartDK044Wheel2, - gKartDK044Wheel3, - gKartDK045Wheel0, - gKartDK045Wheel1, - gKartDK045Wheel2, - gKartDK045Wheel3, - gKartDK046Wheel0, - gKartDK046Wheel1, - gKartDK046Wheel2, - gKartDK046Wheel3, - gKartDK047Wheel0, - gKartDK047Wheel1, - gKartDK047Wheel2, - gKartDK047Wheel3, - gKartDK048Wheel0, - gKartDK048Wheel1, - gKartDK048Wheel2, - gKartDK048Wheel3, - gKartDK049Wheel0, - gKartDK049Wheel1, - gKartDK049Wheel2, - gKartDK049Wheel3, - gKartDK050Wheel0, - gKartDK050Wheel1, - gKartDK050Wheel2, - gKartDK050Wheel3, - gKartDK051Wheel0, - gKartDK051Wheel1, - gKartDK051Wheel2, - gKartDK051Wheel3, - gKartDK052Wheel0, - gKartDK052Wheel1, - gKartDK052Wheel2, - gKartDK052Wheel3, - gKartDK053Wheel0, - gKartDK053Wheel1, - gKartDK053Wheel2, - gKartDK053Wheel3, - gKartDK054Wheel0, - gKartDK054Wheel1, - gKartDK054Wheel2, - gKartDK054Wheel3, - gKartDK055Wheel0, - gKartDK055Wheel1, - gKartDK055Wheel2, - gKartDK055Wheel3, - gKartDK056Wheel0, - gKartDK056Wheel1, - gKartDK056Wheel2, - gKartDK056Wheel3, - gKartDK057Wheel0, - gKartDK057Wheel1, - gKartDK057Wheel2, - gKartDK057Wheel3, - gKartDK058Wheel0, - gKartDK058Wheel1, - gKartDK058Wheel2, - gKartDK058Wheel3, - gKartDK059Wheel0, - gKartDK059Wheel1, - gKartDK059Wheel2, - gKartDK059Wheel3, - gKartDK060Wheel0, - gKartDK060Wheel1, - gKartDK060Wheel2, - gKartDK060Wheel3, - gKartDK061Wheel0, - gKartDK061Wheel1, - gKartDK061Wheel2, - gKartDK061Wheel3, - gKartDK062Wheel0, - gKartDK062Wheel1, - gKartDK062Wheel2, - gKartDK062Wheel3, - gKartDK063Wheel0, - gKartDK063Wheel1, - gKartDK063Wheel2, - gKartDK063Wheel3, - gKartDK064Wheel0, - gKartDK064Wheel1, - gKartDK064Wheel2, - gKartDK064Wheel3, - gKartDK065Wheel0, - gKartDK065Wheel1, - gKartDK065Wheel2, - gKartDK065Wheel3, - gKartDK066Wheel0, - gKartDK066Wheel1, - gKartDK066Wheel2, - gKartDK066Wheel3, - gKartDK067Wheel0, - gKartDK067Wheel1, - gKartDK067Wheel2, - gKartDK067Wheel3, - gKartDK068Wheel0, - gKartDK068Wheel1, - gKartDK068Wheel2, - gKartDK068Wheel3, - gKartDK069Wheel0, - gKartDK069Wheel1, - gKartDK069Wheel2, - gKartDK069Wheel3, - gKartDK070Wheel0, - gKartDK070Wheel1, - gKartDK070Wheel2, - gKartDK070Wheel3, - gKartDK071Wheel0, - gKartDK071Wheel1, - gKartDK071Wheel2, - gKartDK071Wheel3, - gKartDK072Wheel0, - gKartDK072Wheel1, - gKartDK072Wheel2, - gKartDK072Wheel3, - gKartDK073Wheel0, - gKartDK073Wheel1, - gKartDK073Wheel2, - gKartDK073Wheel3, - gKartDK074Wheel0, - gKartDK074Wheel1, - gKartDK074Wheel2, - gKartDK074Wheel3, - gKartDK075Wheel0, - gKartDK075Wheel1, - gKartDK075Wheel2, - gKartDK075Wheel3, - gKartDK076Wheel0, - gKartDK076Wheel1, - gKartDK076Wheel2, - gKartDK076Wheel3, - gKartDK077Wheel0, - gKartDK077Wheel1, - gKartDK077Wheel2, - gKartDK077Wheel3, - gKartDK078Wheel0, - gKartDK078Wheel1, - gKartDK078Wheel2, - gKartDK078Wheel3, - gKartDK079Wheel0, - gKartDK079Wheel1, - gKartDK079Wheel2, - gKartDK079Wheel3, - gKartDK080Wheel0, - gKartDK080Wheel1, - gKartDK080Wheel2, - gKartDK080Wheel3, - gKartDK081Wheel0, - gKartDK081Wheel1, - gKartDK081Wheel2, - gKartDK081Wheel3, - gKartDK082Wheel0, - gKartDK082Wheel1, - gKartDK082Wheel2, - gKartDK082Wheel3, - gKartDK083Wheel0, - gKartDK083Wheel1, - gKartDK083Wheel2, - gKartDK083Wheel3, - gKartDK084Wheel0, - gKartDK084Wheel1, - gKartDK084Wheel2, - gKartDK084Wheel3, - gKartDK085Wheel0, - gKartDK085Wheel1, - gKartDK085Wheel2, - gKartDK085Wheel3, - gKartDK086Wheel0, - gKartDK086Wheel1, - gKartDK086Wheel2, - gKartDK086Wheel3, - gKartDK087Wheel0, - gKartDK087Wheel1, - gKartDK087Wheel2, - gKartDK087Wheel3, - gKartDK088Wheel0, - gKartDK088Wheel1, - gKartDK088Wheel2, - gKartDK088Wheel3, - gKartDK089Wheel0, - gKartDK089Wheel1, - gKartDK089Wheel2, - gKartDK089Wheel3, - gKartDK090Wheel0, - gKartDK090Wheel1, - gKartDK090Wheel2, - gKartDK090Wheel3, - gKartDK091Wheel0, - gKartDK091Wheel1, - gKartDK091Wheel2, - gKartDK091Wheel3, - gKartDK092Wheel0, - gKartDK092Wheel1, - gKartDK092Wheel2, - gKartDK092Wheel3, - gKartDK093Wheel0, - gKartDK093Wheel1, - gKartDK093Wheel2, - gKartDK093Wheel3, - gKartDK094Wheel0, - gKartDK094Wheel1, - gKartDK094Wheel2, - gKartDK094Wheel3, - gKartDK095Wheel0, - gKartDK095Wheel1, - gKartDK095Wheel2, - gKartDK095Wheel3, - gKartDK096Wheel0, - gKartDK096Wheel1, - gKartDK096Wheel2, - gKartDK096Wheel3, - gKartDK097Wheel0, - gKartDK097Wheel1, - gKartDK097Wheel2, - gKartDK097Wheel3, - gKartDK098Wheel0, - gKartDK098Wheel1, - gKartDK098Wheel2, - gKartDK098Wheel3, - gKartDK099Wheel0, - gKartDK099Wheel1, - gKartDK099Wheel2, - gKartDK099Wheel3, - gKartDK100Wheel0, - gKartDK100Wheel1, - gKartDK100Wheel2, - gKartDK100Wheel3, - gKartDK101Wheel0, - gKartDK101Wheel1, - gKartDK101Wheel2, - gKartDK101Wheel3, - gKartDK102Wheel0, - gKartDK102Wheel1, - gKartDK102Wheel2, - gKartDK102Wheel3, - gKartDK103Wheel0, - gKartDK103Wheel1, - gKartDK103Wheel2, - gKartDK103Wheel3, - gKartDK104Wheel0, - gKartDK104Wheel1, - gKartDK104Wheel2, - gKartDK104Wheel3, - gKartDK105Wheel0, - gKartDK105Wheel1, - gKartDK105Wheel2, - gKartDK105Wheel3, - gKartDK106Wheel0, - gKartDK106Wheel1, - gKartDK106Wheel2, - gKartDK106Wheel3, - gKartDK107Wheel0, - gKartDK107Wheel1, - gKartDK107Wheel2, - gKartDK107Wheel3, - gKartDK108Wheel0, - gKartDK108Wheel1, - gKartDK108Wheel2, - gKartDK108Wheel3, - gKartDK109Wheel0, - gKartDK109Wheel1, - gKartDK109Wheel2, - gKartDK109Wheel3, - gKartDK110Wheel0, - gKartDK110Wheel1, - gKartDK110Wheel2, - gKartDK110Wheel3, - gKartDK111Wheel0, - gKartDK111Wheel1, - gKartDK111Wheel2, - gKartDK111Wheel3, - gKartDK112Wheel0, - gKartDK112Wheel1, - gKartDK112Wheel2, - gKartDK112Wheel3, - gKartDK113Wheel0, - gKartDK113Wheel1, - gKartDK113Wheel2, - gKartDK113Wheel3, - gKartDK114Wheel0, - gKartDK114Wheel1, - gKartDK114Wheel2, - gKartDK114Wheel3, - gKartDK115Wheel0, - gKartDK115Wheel1, - gKartDK115Wheel2, - gKartDK115Wheel3, - gKartDK116Wheel0, - gKartDK116Wheel1, - gKartDK116Wheel2, - gKartDK116Wheel3, - gKartDK117Wheel0, - gKartDK117Wheel1, - gKartDK117Wheel2, - gKartDK117Wheel3, - gKartDK118Wheel0, - gKartDK118Wheel1, - gKartDK118Wheel2, - gKartDK118Wheel3, - gKartDK119Wheel0, - gKartDK119Wheel1, - gKartDK119Wheel2, - gKartDK119Wheel3, - gKartDK120Wheel0, - gKartDK120Wheel1, - gKartDK120Wheel2, - gKartDK120Wheel3, - gKartDK121Wheel0, - gKartDK121Wheel1, - gKartDK121Wheel2, - gKartDK121Wheel3, - gKartDK122Wheel0, - gKartDK122Wheel1, - gKartDK122Wheel2, - gKartDK122Wheel3, - gKartDK123Wheel0, - gKartDK123Wheel1, - gKartDK123Wheel2, - gKartDK123Wheel3, - gKartDK124Wheel0, - gKartDK124Wheel1, - gKartDK124Wheel2, - gKartDK124Wheel3, - gKartDK125Wheel0, - gKartDK125Wheel1, - gKartDK125Wheel2, - gKartDK125Wheel3, - gKartDK126Wheel0, - gKartDK126Wheel1, - gKartDK126Wheel2, - gKartDK126Wheel3, - gKartDK127Wheel0, - gKartDK127Wheel1, - gKartDK127Wheel2, - gKartDK127Wheel3, - gKartDK128Wheel0, - gKartDK128Wheel1, - gKartDK128Wheel2, - gKartDK128Wheel3, - gKartDK129Wheel0, - gKartDK129Wheel1, - gKartDK129Wheel2, - gKartDK129Wheel3, - gKartDK130Wheel0, - gKartDK130Wheel1, - gKartDK130Wheel2, - gKartDK130Wheel3, - gKartDK131Wheel0, - gKartDK131Wheel1, - gKartDK131Wheel2, - gKartDK131Wheel3, - gKartDK132Wheel0, - gKartDK132Wheel1, - gKartDK132Wheel2, - gKartDK132Wheel3, - gKartDK133Wheel0, - gKartDK133Wheel1, - gKartDK133Wheel2, - gKartDK133Wheel3, - gKartDK134Wheel0, - gKartDK134Wheel1, - gKartDK134Wheel2, - gKartDK134Wheel3, - gKartDK135Wheel0, - gKartDK135Wheel1, - gKartDK135Wheel2, - gKartDK135Wheel3, - gKartDK136Wheel0, - gKartDK136Wheel1, - gKartDK136Wheel2, - gKartDK136Wheel3, - gKartDK137Wheel0, - gKartDK137Wheel1, - gKartDK137Wheel2, - gKartDK137Wheel3, - gKartDK138Wheel0, - gKartDK138Wheel1, - gKartDK138Wheel2, - gKartDK138Wheel3, - gKartDK139Wheel0, - gKartDK139Wheel1, - gKartDK139Wheel2, - gKartDK139Wheel3, - gKartDK140Wheel0, - gKartDK140Wheel1, - gKartDK140Wheel2, - gKartDK140Wheel3, - gKartDK141Wheel0, - gKartDK141Wheel1, - gKartDK141Wheel2, - gKartDK141Wheel3, - gKartDK142Wheel0, - gKartDK142Wheel1, - gKartDK142Wheel2, - gKartDK142Wheel3, - gKartDK143Wheel0, - gKartDK143Wheel1, - gKartDK143Wheel2, - gKartDK143Wheel3, - gKartDK144Wheel0, - gKartDK144Wheel1, - gKartDK144Wheel2, - gKartDK144Wheel3, - gKartDK145Wheel0, - gKartDK145Wheel1, - gKartDK145Wheel2, - gKartDK145Wheel3, - gKartDK146Wheel0, - gKartDK146Wheel1, - gKartDK146Wheel2, - gKartDK146Wheel3, - gKartDK147Wheel0, - gKartDK147Wheel1, - gKartDK147Wheel2, - gKartDK147Wheel3, - gKartDK148Wheel0, - gKartDK148Wheel1, - gKartDK148Wheel2, - gKartDK148Wheel3, - gKartDK149Wheel0, - gKartDK149Wheel1, - gKartDK149Wheel2, - gKartDK149Wheel3, - gKartDK150Wheel0, - gKartDK150Wheel1, - gKartDK150Wheel2, - gKartDK150Wheel3, - gKartDK151Wheel0, - gKartDK151Wheel1, - gKartDK151Wheel2, - gKartDK151Wheel3, - gKartDK152Wheel0, - gKartDK152Wheel1, - gKartDK152Wheel2, - gKartDK152Wheel3, - gKartDK153Wheel0, - gKartDK153Wheel1, - gKartDK153Wheel2, - gKartDK153Wheel3, - gKartDK154Wheel0, - gKartDK154Wheel1, - gKartDK154Wheel2, - gKartDK154Wheel3, - gKartDK155Wheel0, - gKartDK155Wheel1, - gKartDK155Wheel2, - gKartDK155Wheel3, - gKartDK156Wheel0, - gKartDK156Wheel1, - gKartDK156Wheel2, - gKartDK156Wheel3, - gKartDK157Wheel0, - gKartDK157Wheel1, - gKartDK157Wheel2, - gKartDK157Wheel3, - gKartDK158Wheel0, - gKartDK158Wheel1, - gKartDK158Wheel2, - gKartDK158Wheel3, - gKartDK159Wheel0, - gKartDK159Wheel1, - gKartDK159Wheel2, - gKartDK159Wheel3, - gKartDK160Wheel0, - gKartDK160Wheel1, - gKartDK160Wheel2, - gKartDK160Wheel3, - gKartDK161Wheel0, - gKartDK161Wheel1, - gKartDK161Wheel2, - gKartDK161Wheel3, - gKartDK162Wheel0, - gKartDK162Wheel1, - gKartDK162Wheel2, - gKartDK162Wheel3, - gKartDK163Wheel0, - gKartDK163Wheel1, - gKartDK163Wheel2, - gKartDK163Wheel3, - gKartDK164Wheel0, - gKartDK164Wheel1, - gKartDK164Wheel2, - gKartDK164Wheel3, - gKartDK165Wheel0, - gKartDK165Wheel1, - gKartDK165Wheel2, - gKartDK165Wheel3, - gKartDK166Wheel0, - gKartDK166Wheel1, - gKartDK166Wheel2, - gKartDK166Wheel3, - gKartDK167Wheel0, - gKartDK167Wheel1, - gKartDK167Wheel2, - gKartDK167Wheel3, - gKartDK168Wheel0, - gKartDK168Wheel1, - gKartDK168Wheel2, - gKartDK168Wheel3, - gKartDK169Wheel0, - gKartDK169Wheel1, - gKartDK169Wheel2, - gKartDK169Wheel3, - gKartDK170Wheel0, - gKartDK170Wheel1, - gKartDK170Wheel2, - gKartDK170Wheel3, - gKartDK171Wheel0, - gKartDK171Wheel1, - gKartDK171Wheel2, - gKartDK171Wheel3, - gKartDK172Wheel0, - gKartDK172Wheel1, - gKartDK172Wheel2, - gKartDK172Wheel3, - gKartDK173Wheel0, - gKartDK173Wheel1, - gKartDK173Wheel2, - gKartDK173Wheel3, - gKartDK174Wheel0, - gKartDK174Wheel1, - gKartDK174Wheel2, - gKartDK174Wheel3, - gKartDK175Wheel0, - gKartDK175Wheel1, - gKartDK175Wheel2, - gKartDK175Wheel3, - gKartDK176Wheel0, - gKartDK176Wheel1, - gKartDK176Wheel2, - gKartDK176Wheel3, - gKartDK177Wheel0, - gKartDK177Wheel1, - gKartDK177Wheel2, - gKartDK177Wheel3, - gKartDK178Wheel0, - gKartDK178Wheel1, - gKartDK178Wheel2, - gKartDK178Wheel3, - gKartDK179Wheel0, - gKartDK179Wheel1, - gKartDK179Wheel2, - gKartDK179Wheel3, - gKartDK180Wheel0, - gKartDK180Wheel1, - gKartDK180Wheel2, - gKartDK180Wheel3, - gKartDK181Wheel0, - gKartDK181Wheel1, - gKartDK181Wheel2, - gKartDK181Wheel3, - gKartDK182Wheel0, - gKartDK182Wheel1, - gKartDK182Wheel2, - gKartDK182Wheel3, - gKartDK183Wheel0, - gKartDK183Wheel1, - gKartDK183Wheel2, - gKartDK183Wheel3, - gKartDK184Wheel0, - gKartDK184Wheel1, - gKartDK184Wheel2, - gKartDK184Wheel3, - gKartDK185Wheel0, - gKartDK185Wheel1, - gKartDK185Wheel2, - gKartDK185Wheel3, - gKartDK186Wheel0, - gKartDK186Wheel1, - gKartDK186Wheel2, - gKartDK186Wheel3, - gKartDK187Wheel0, - gKartDK187Wheel1, - gKartDK187Wheel2, - gKartDK187Wheel3, - gKartDK188Wheel0, - gKartDK188Wheel1, - gKartDK188Wheel2, - gKartDK188Wheel3, - gKartDK189Wheel0, - gKartDK189Wheel1, - gKartDK189Wheel2, - gKartDK189Wheel3, - gKartDK190Wheel0, - gKartDK190Wheel1, - gKartDK190Wheel2, - gKartDK190Wheel3, - gKartDK191Wheel0, - gKartDK191Wheel1, - gKartDK191Wheel2, - gKartDK191Wheel3, - gKartDK192Wheel0, - gKartDK192Wheel1, - gKartDK192Wheel2, - gKartDK192Wheel3, - gKartDK193Wheel0, - gKartDK193Wheel1, - gKartDK193Wheel2, - gKartDK193Wheel3, - gKartDK194Wheel0, - gKartDK194Wheel1, - gKartDK194Wheel2, - gKartDK194Wheel3, - gKartDK195Wheel0, - gKartDK195Wheel1, - gKartDK195Wheel2, - gKartDK195Wheel3, - gKartDK196Wheel0, - gKartDK196Wheel1, - gKartDK196Wheel2, - gKartDK196Wheel3, - gKartDK197Wheel0, - gKartDK197Wheel1, - gKartDK197Wheel2, - gKartDK197Wheel3, - gKartDK198Wheel0, - gKartDK198Wheel1, - gKartDK198Wheel2, - gKartDK198Wheel3, - gKartDK199Wheel0, - gKartDK199Wheel1, - gKartDK199Wheel2, - gKartDK199Wheel3, - gKartDK200Wheel0, - gKartDK200Wheel1, - gKartDK200Wheel2, - gKartDK200Wheel3, - gKartDK201Wheel0, - gKartDK201Wheel1, - gKartDK201Wheel2, - gKartDK201Wheel3, - gKartDK202Wheel0, - gKartDK202Wheel1, - gKartDK202Wheel2, - gKartDK202Wheel3, - gKartDK203Wheel0, - gKartDK203Wheel1, - gKartDK203Wheel2, - gKartDK203Wheel3, - gKartDK204Wheel0, - gKartDK204Wheel1, - gKartDK204Wheel2, - gKartDK204Wheel3, - gKartDK205Wheel0, - gKartDK205Wheel1, - gKartDK205Wheel2, - gKartDK205Wheel3, - gKartDK206Wheel0, - gKartDK206Wheel1, - gKartDK206Wheel2, - gKartDK206Wheel3, - gKartDK207Wheel0, - gKartDK207Wheel1, - gKartDK207Wheel2, - gKartDK207Wheel3, - gKartDK208Wheel0, - gKartDK208Wheel1, - gKartDK208Wheel2, - gKartDK208Wheel3, - gKartDK209Wheel0, - gKartDK209Wheel1, - gKartDK209Wheel2, - gKartDK209Wheel3, - gKartDK210Wheel0, - gKartDK210Wheel1, - gKartDK210Wheel2, - gKartDK210Wheel3, - gKartDK211Wheel0, - gKartDK211Wheel1, - gKartDK211Wheel2, - gKartDK211Wheel3, - gKartDK212Wheel0, - gKartDK212Wheel1, - gKartDK212Wheel2, - gKartDK212Wheel3, - gKartDK213Wheel0, - gKartDK213Wheel1, - gKartDK213Wheel2, - gKartDK213Wheel3, - gKartDK214Wheel0, - gKartDK214Wheel1, - gKartDK214Wheel2, - gKartDK214Wheel3, - gKartDK215Wheel0, - gKartDK215Wheel1, - gKartDK215Wheel2, - gKartDK215Wheel3, - gKartDK216Wheel0, - gKartDK216Wheel1, - gKartDK216Wheel2, - gKartDK216Wheel3, - gKartDK217Wheel0, - gKartDK217Wheel1, - gKartDK217Wheel2, - gKartDK217Wheel3, - gKartDK218Wheel0, - gKartDK218Wheel1, - gKartDK218Wheel2, - gKartDK218Wheel3, - gKartDK219Wheel0, - gKartDK219Wheel1, - gKartDK219Wheel2, - gKartDK219Wheel3, - gKartDK220Wheel0, - gKartDK220Wheel1, - gKartDK220Wheel2, - gKartDK220Wheel3, - gKartDK221Wheel0, - gKartDK221Wheel1, - gKartDK221Wheel2, - gKartDK221Wheel3, - gKartDK222Wheel0, - gKartDK222Wheel1, - gKartDK222Wheel2, - gKartDK222Wheel3, - gKartDK223Wheel0, - gKartDK223Wheel1, - gKartDK223Wheel2, - gKartDK223Wheel3, - gKartDK224Wheel0, - gKartDK224Wheel1, - gKartDK224Wheel2, - gKartDK224Wheel3, - gKartDK225Wheel0, - gKartDK225Wheel1, - gKartDK225Wheel2, - gKartDK225Wheel3, - gKartDK226Wheel0, - gKartDK226Wheel1, - gKartDK226Wheel2, - gKartDK226Wheel3, - gKartDK227Wheel0, - gKartDK227Wheel1, - gKartDK227Wheel2, - gKartDK227Wheel3, - gKartDK228Wheel0, - gKartDK228Wheel1, - gKartDK228Wheel2, - gKartDK228Wheel3, - gKartDK229Wheel0, - gKartDK229Wheel1, - gKartDK229Wheel2, - gKartDK229Wheel3, - gKartDK230Wheel0, - gKartDK230Wheel1, - gKartDK230Wheel2, - gKartDK230Wheel3, - gKartDK231Wheel0, - gKartDK231Wheel1, - gKartDK231Wheel2, - gKartDK231Wheel3, - gKartDK232Wheel0, - gKartDK232Wheel1, - gKartDK232Wheel2, - gKartDK232Wheel3, - gKartDK233Wheel0, - gKartDK233Wheel1, - gKartDK233Wheel2, - gKartDK233Wheel3, - gKartDK234Wheel0, - gKartDK234Wheel1, - gKartDK234Wheel2, - gKartDK234Wheel3, - gKartDK235Wheel0, - gKartDK235Wheel1, - gKartDK235Wheel2, - gKartDK235Wheel3, - gKartDK236Wheel0, - gKartDK236Wheel1, - gKartDK236Wheel2, - gKartDK236Wheel3, - gKartDK237Wheel0, - gKartDK237Wheel1, - gKartDK237Wheel2, - gKartDK237Wheel3, - gKartDK238Wheel0, - gKartDK238Wheel1, - gKartDK238Wheel2, - gKartDK238Wheel3, - gKartDK239Wheel0, - gKartDK239Wheel1, - gKartDK239Wheel2, - gKartDK239Wheel3, - gKartDK240Wheel0, - gKartDK240Wheel1, - gKartDK240Wheel2, - gKartDK240Wheel3, - gKartDK241Wheel0, - gKartDK241Wheel1, - gKartDK241Wheel2, - gKartDK241Wheel3, - gKartDK242Wheel0, - gKartDK242Wheel1, - gKartDK242Wheel2, - gKartDK242Wheel3, - gKartDK243Wheel0, - gKartDK243Wheel1, - gKartDK243Wheel2, - gKartDK243Wheel3, - gKartDK244Wheel0, - gKartDK244Wheel1, - gKartDK244Wheel2, - gKartDK244Wheel3, - gKartDK245Wheel0, - gKartDK245Wheel1, - gKartDK245Wheel2, - gKartDK245Wheel3, - gKartDK246Wheel0, - gKartDK246Wheel1, - gKartDK246Wheel2, - gKartDK246Wheel3, - gKartDK247Wheel0, - gKartDK247Wheel1, - gKartDK247Wheel2, - gKartDK247Wheel3, - gKartDK248Wheel0, - gKartDK248Wheel1, - gKartDK248Wheel2, - gKartDK248Wheel3, - gKartDK249Wheel0, - gKartDK249Wheel1, - gKartDK249Wheel2, - gKartDK249Wheel3, - gKartDK250Wheel0, - gKartDK250Wheel1, - gKartDK250Wheel2, - gKartDK250Wheel3, - gKartDK251Wheel0, - gKartDK251Wheel1, - gKartDK251Wheel2, - gKartDK251Wheel3, - gKartDK252Wheel0, - gKartDK252Wheel1, - gKartDK252Wheel2, - gKartDK252Wheel3, - gKartDK253Wheel0, - gKartDK253Wheel1, - gKartDK253Wheel2, - gKartDK253Wheel3, - gKartDK254Wheel0, - gKartDK254Wheel1, - gKartDK254Wheel2, - gKartDK254Wheel3, - gKartDK255Wheel0, - gKartDK255Wheel1, - gKartDK255Wheel2, - gKartDK255Wheel3, - gKartDK256Wheel0, - gKartDK256Wheel1, - gKartDK256Wheel2, - gKartDK256Wheel3, - gKartDK257Wheel0, - gKartDK257Wheel1, - gKartDK257Wheel2, - gKartDK257Wheel3, - gKartDK258Wheel0, - gKartDK258Wheel1, - gKartDK258Wheel2, - gKartDK258Wheel3, - gKartDK259Wheel0, - gKartDK259Wheel1, - gKartDK259Wheel2, - gKartDK259Wheel3, - gKartDK260Wheel0, - gKartDK260Wheel1, - gKartDK260Wheel2, - gKartDK260Wheel3, - gKartDK261Wheel0, - gKartDK261Wheel1, - gKartDK261Wheel2, - gKartDK261Wheel3, - gKartDK262Wheel0, - gKartDK262Wheel1, - gKartDK262Wheel2, - gKartDK262Wheel3, - gKartDK263Wheel0, - gKartDK263Wheel1, - gKartDK263Wheel2, - gKartDK263Wheel3, - gKartDK264Wheel0, - gKartDK264Wheel1, - gKartDK264Wheel2, - gKartDK264Wheel3, - gKartDK265Wheel0, - gKartDK265Wheel1, - gKartDK265Wheel2, - gKartDK265Wheel3, - gKartDK266Wheel0, - gKartDK266Wheel1, - gKartDK266Wheel2, - gKartDK266Wheel3, - gKartDK267Wheel0, - gKartDK267Wheel1, - gKartDK267Wheel2, - gKartDK267Wheel3, - gKartDK268Wheel0, - gKartDK268Wheel1, - gKartDK268Wheel2, - gKartDK268Wheel3, - gKartDK269Wheel0, - gKartDK269Wheel1, - gKartDK269Wheel2, - gKartDK269Wheel3, - gKartDK270Wheel0, - gKartDK270Wheel1, - gKartDK270Wheel2, - gKartDK270Wheel3, - gKartDK271Wheel0, - gKartDK271Wheel1, - gKartDK271Wheel2, - gKartDK271Wheel3, - gKartDK272Wheel0, - gKartDK272Wheel1, - gKartDK272Wheel2, - gKartDK272Wheel3, - gKartDK273Wheel0, - gKartDK273Wheel1, - gKartDK273Wheel2, - gKartDK273Wheel3, - gKartDK274Wheel0, - gKartDK274Wheel1, - gKartDK274Wheel2, - gKartDK274Wheel3, - gKartDK275Wheel0, - gKartDK275Wheel1, - gKartDK275Wheel2, - gKartDK275Wheel3, - gKartDK276Wheel0, - gKartDK276Wheel1, - gKartDK276Wheel2, - gKartDK276Wheel3, - gKartDK277Wheel0, - gKartDK277Wheel1, - gKartDK277Wheel2, - gKartDK277Wheel3, - gKartDK278Wheel0, - gKartDK278Wheel1, - gKartDK278Wheel2, - gKartDK278Wheel3, - gKartDK279Wheel0, - gKartDK279Wheel1, - gKartDK279Wheel2, - gKartDK279Wheel3, - gKartDK280Wheel0, - gKartDK280Wheel1, - gKartDK280Wheel2, - gKartDK280Wheel3, - gKartDK281Wheel0, - gKartDK281Wheel1, - gKartDK281Wheel2, - gKartDK281Wheel3, - gKartDK282Wheel0, - gKartDK282Wheel1, - gKartDK282Wheel2, - gKartDK282Wheel3, - gKartDK283Wheel0, - gKartDK283Wheel1, - gKartDK283Wheel2, - gKartDK283Wheel3, - gKartDK284Wheel0, - gKartDK284Wheel1, - gKartDK284Wheel2, - gKartDK284Wheel3, - gKartDK285Wheel0, - gKartDK285Wheel1, - gKartDK285Wheel2, - gKartDK285Wheel3, - gKartDK286Wheel0, - gKartDK286Wheel1, - gKartDK286Wheel2, - gKartDK286Wheel3, - gKartDK287Wheel0, - gKartDK287Wheel1, - gKartDK287Wheel2, - gKartDK287Wheel3, - gKartDK288Wheel0, - gKartDK288Wheel1, - gKartDK288Wheel2, - gKartDK288Wheel3, -}; - -static const ALIGN_ASSET(2) char gKartDKPalette[] = "__OTR__donkeykong_kart/donkeykong_kart_palette"; - diff --git a/include/assets/double_deck_data.h b/include/assets/double_deck_data.h deleted file mode 100644 index 13c1d1f3b..000000000 --- a/include/assets/double_deck_data.h +++ /dev/null @@ -1,10 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_double_deck_dl[] = "__OTR__double_deck_data/d_course_double_deck_dl"; - -static const ALIGN_ASSET(2) char d_course_double_deck_item_box_spawns[] = "__OTR__double_deck_data/d_course_double_deck_item_box_spawns"; - diff --git a/include/assets/double_deck_displaylists.h b/include/assets/double_deck_displaylists.h deleted file mode 100644 index f2089135b..000000000 --- a/include/assets/double_deck_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_double_deck_packed_dls[] = "__OTR__double_deck_displaylists/d_course_double_deck_packed_dls"; - diff --git a/include/assets/double_deck_vertices.h b/include/assets/double_deck_vertices.h deleted file mode 100644 index e125f4a82..000000000 --- a/include/assets/double_deck_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_double_deck_vertex[] = "__OTR__double_deck_vertices/d_course_double_deck_vertex"; - diff --git a/include/assets/frappe_snowland_data.h b/include/assets/frappe_snowland_data.h deleted file mode 100644 index 56fccf5b4..000000000 --- a/include/assets/frappe_snowland_data.h +++ /dev/null @@ -1,170 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_C8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_C8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1B8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1B8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_298[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_298"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_398[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_398"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_458[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_458"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_540[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_540"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_610[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_610"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_728[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_728"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_7C8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_7C8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_8C0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_8C0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_940[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_940"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_A38[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_A38"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_AA8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_AA8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_BA8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_BA8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_C38[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_C38"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_D28[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_D28"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_DA8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_DA8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_EC8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_EC8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_F90[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_F90"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1068[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1068"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1118[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1118"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1240[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1240"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1360[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1360"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1430[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1430"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_14E0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_14E0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1610[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1610"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1768[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1768"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1818[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1818"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1930[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1930"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1A50[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1A50"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1BC8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1BC8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1C80[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1C80"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1DE8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1DE8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1E98[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_1E98"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2000[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2000"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_20B0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_20B0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2240[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2240"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2308[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2308"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2448[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2448"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2588[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2588"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2618[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2618"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2698[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2698"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2700[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2700"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2780[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2780"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_27F8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_27F8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2860[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2860"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_28A8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_28A8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2930[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2930"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_29B0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_29B0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2A40[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2A40"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2AB0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2AB0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2B48[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2B48"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2BA0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2BA0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2C00[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2C00"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2C50[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2C50"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2CB8[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2CB8"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2D20[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2D20"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2D78[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2D78"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2DD0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2DD0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2E40[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2E40"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2F40[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_2F40"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_3000[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_3000"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_30D0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_30D0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_3198[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_3198"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_3270[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_3270"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_3328[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_3328"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_33E0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_33E0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_unknown_waypoints[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_track_waypoints[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_snowman_tlut[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_snowman_tlut"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_snowman_head[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_snowman_head"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_snowman_body[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_snowman_body"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_snow_tlut[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_snow_tlut"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_snow[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_snow"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_tree_tlut[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_tree_tlut"; - -static const ALIGN_ASSET(2) char d_frappe_snowland_tree[] = "__OTR__frappe_snowland_data/d_frappe_snowland_tree"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_tree[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_tree"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_76A0[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_dl_76A0"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_tree_spawns[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_tree_spawns"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_item_box_spawns[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_addr[] = "__OTR__frappe_snowland_data/d_course_frappe_snowland_addr"; - diff --git a/include/assets/frappe_snowland_displaylists.h b/include/assets/frappe_snowland_displaylists.h deleted file mode 100644 index 7300b12ed..000000000 --- a/include/assets/frappe_snowland_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dls[] = "__OTR__frappe_snowland_displaylists/d_course_frappe_snowland_packed_dls"; - diff --git a/include/assets/frappe_snowland_vertices.h b/include/assets/frappe_snowland_vertices.h deleted file mode 100644 index f3271f5a0..000000000 --- a/include/assets/frappe_snowland_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex[] = "__OTR__frappe_snowland_vertices/d_course_frappe_snowland_vertex"; - diff --git a/include/assets/kalimari_desert_data.h b/include/assets/kalimari_desert_data.h deleted file mode 100644 index 2e6eb5951..000000000 --- a/include/assets/kalimari_desert_data.h +++ /dev/null @@ -1,780 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_100[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_100"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_258[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_258"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_310[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_310"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4A0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4A0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5C0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5C0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_778[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_778"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_858[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_858"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_A58[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_A58"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_B38[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_B38"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_CD0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_CD0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_DD0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_DD0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_F68[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_F68"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1030[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1030"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1258[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1258"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1350[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1350"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_14C0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_14C0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1588[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1588"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_17C8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_17C8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_18C8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_18C8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1A58[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1A58"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B38[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1B38"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D48[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D48"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E80[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E80"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2000[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_2000"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20E0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20E0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22D8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_22D8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2458[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_2458"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_25D0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_25D0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_26E8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_26E8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2868[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_2868"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_29C0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_29C0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2B40[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_2B40"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2C88[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_2C88"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2DE8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_2DE8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2F30[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_2F30"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3068[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3068"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_31C0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_31C0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_32F8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_32F8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3460[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3460"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3590[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3590"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3718[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3718"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3818[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3818"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3998[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3998"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3AC0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3AC0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3CA0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3CA0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3DB8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3DB8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3FB0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_3FB0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_40A8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_40A8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4280[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4280"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4358[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4358"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4538[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4538"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4630[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4630"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4908[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4908"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_49E0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_49E0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4BA0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4BA0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4CF0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4CF0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4EF8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4EF8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4FB0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_4FB0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5100[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5100"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5208[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5208"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_53A0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_53A0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5470[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5470"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_55C8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_55C8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5730[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5730"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5898[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5898"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5978[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5978"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5AD0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5AD0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5BE8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5BE8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5D20[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5D20"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5DF8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5DF8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5F20[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_5F20"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_6028[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_6028"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_61B0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_61B0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_62F8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_62F8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_63E0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_63E0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_65B0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_65B0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_66F0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_66F0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_6838[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_6838"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_6940[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_6940"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_waypoints[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_track_unknown_waypoints[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_track_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_track_waypoints[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_tree_tlut[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_tree_tlut"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_cactus_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_cactus_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_cactus_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_cactus_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_cactus1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_cactus1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_cactus2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_cactus2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_cactus3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_cactus3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_inactive_top_left[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_sign_inactive_top_left"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_inactive_top_right[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_sign_inactive_top_right"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_inactive_bottom_left[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_sign_inactive_bottom_left"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_inactive_bottom_right[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_sign_inactive_bottom_right"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_active_top_left[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_sign_active_top_left"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_active_top_right[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_sign_active_top_right"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_active_bottom_left[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_sign_active_bottom_left"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_active_bottom_right[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_sign_active_bottom_right"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_active_model[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_active_model"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model4[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model4"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model5[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model5"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model6[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model6"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model7[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model7"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model9[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model9"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model10[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model10"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model11[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model11"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_crossing_right_active[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_crossing_right_active"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_crossing_left_active[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_crossing_left_active"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_crossing_both_inactive[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_crossing_both_inactive"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_64[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_64"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_cab_window[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_cab_window"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_cab_window_front[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_cab_window_front"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_chassis[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_chassis"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_lamp[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_lamp"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_boiler[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_boiler"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_railing[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_carriage_railing"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_tender[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_tender"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_railway_ballast[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_railway_ballast"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_lower[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_carriage_lower"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_door[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_carriage_door"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_window[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_carriage_window"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_model_lod2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_model_lod2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model4[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model4"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model5[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model5"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model6[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model6"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model7[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model7"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model9[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model9"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model10[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model10"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model11[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model11"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model12[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model12"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model13[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model13"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model14[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model14"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model15[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model15"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model16[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model16"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model17[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model17"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model18[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model18"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model19[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model19"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model20[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model20"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model21[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model21"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B7C0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1B7C0"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1B7C0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1B7C0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B850[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1B850"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1B850[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1B850"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B950[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1B950"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1B950[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1B950"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1B968[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1B968"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B968[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1B968"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B978[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1B978"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1B990[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1B990"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B990[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1B990"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1BD18[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1BD18"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1BD18[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1BD18"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1BD58[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1BD58"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1BD58[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1BD58"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1BEF8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1BEF8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1BEF8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1BEF8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1BF90[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1BF90"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1BF90[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1BF90"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1C0B0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1C0B0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1C0B0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1C0B0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1C0E0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1C0E0"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1C0E0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1C0E0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1C0F0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1C0F0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_model_lod1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_model_lod1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model4[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model4"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model5[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model5"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model6[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model6"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model7[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model7"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model9[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model9"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model10[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model10"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model11[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model11"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model12[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model12"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model13[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model13"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model14[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model14"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1CFA8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1CFA8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1CFA8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1CFA8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D038[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D038"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D038[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D038"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D138[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D138"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D138[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D138"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D150[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D150"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D150[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D150"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D160[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D160"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D178[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D178"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D178[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D178"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D418[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D418"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D418[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D418"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D450[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D450"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D450[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D450"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D540[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D540"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D540[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D540"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D598[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D598"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D598[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D598"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D630[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D630"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D630[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D630"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D660[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D660"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1D660[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1D660"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D670[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1D670"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_model_lod0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_locomotive_model_lod0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model4[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model4"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model5[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model5"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model6[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model6"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model7[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model7"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model9[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model9"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model10[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model10"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model11[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model11"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model12[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model12"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model13[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model13"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E2C8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E2C8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E2C8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E2C8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E358[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E358"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E358[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E358"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E458[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E458"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E458[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E458"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E470[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E470"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E470[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E470"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E480[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E480"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E498[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E498"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E498[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E498"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E6D8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E6D8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E6D8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E6D8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E710[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E710"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E710[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E710"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E800[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E800"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E800[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E800"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E858[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E858"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E858[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E858"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E8D0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E8D0"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E8D0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E8D0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E900[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E900"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1E900[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1E900"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E910[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1E910"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_tender_model_lod2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_tender_model_lod2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_tender_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_tender_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_tender_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_tender_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_tender_model3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_tender_model3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_tender_model4[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_tender_model4"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1EFD8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1EFD8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1EFD8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1EFD8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F050[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F050"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F050[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F050"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F0D8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F0D8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F0D8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F0D8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F1F8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F1F8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F1F8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F1F8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F218[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F218"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F218[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F218"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F228[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F228"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_tender_model_lod1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_tender_model_lod1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_tender_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_tender_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_tender_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_tender_model2"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F570[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F570"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F570[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F570"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F5E0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F5E0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F5E0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F5E0"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F6E0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F6E0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F6E0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F6E0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F6F8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F6F8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F6F8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F6F8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F708[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F708"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F720[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F720"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_tender_model_lod0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_tender_model_lod0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_tender_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_tender_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_tender_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_tender_model2"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F988[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F988"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F988[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F988"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1F9D8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1F9D8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F9D8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1F9D8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1FAD0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1FAD0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1FAD0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1FAD0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1FAE8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1FAE8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_1FAE8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_1FAE8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1FAF8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1FAF8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1FB10[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_1FB10"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_chassis_model_lod2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_carriage_chassis_model_lod2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model4[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model4"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model5[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model5"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model6[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model6"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model7[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model7"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model9[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model9"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model10[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model10"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_20578[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_20578"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20578[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20578"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20610[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20610"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_20610[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_20610"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20620[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20620"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_20620[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_20620"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_20630[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_20630"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20630[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20630"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_20688[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_20688"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20688[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20688"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_208A0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_208A0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_208A0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_208A0"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_20928[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_20928"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20928[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20928"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_20980[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_20980"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20980[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20980"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_209C8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_209C8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_209C8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_209C8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_209F8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_209F8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_209F8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_209F8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20A08[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20A08"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20A20[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_20A20"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_chassis_model_lod1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_carriage_chassis_model_lod1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model4[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model4"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model5[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model5"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model6[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model6"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model7[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model7"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21178[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21178"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21178[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21178"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21200[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21200"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21200[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21200"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21210[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21210"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21210[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21210"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21220[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21220"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21238[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21238"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21238[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21238"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21288[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21288"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21288[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21288"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21480[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21480"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21480[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21480"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_214D0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_214D0"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_214D0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_214D0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21518[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21518"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21518[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21518"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21540[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21540"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21540[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21540"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21550[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21550"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_model_lod0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_carriage_model_lod0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model3[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model3"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model4[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model4"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model5[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model5"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_219D8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_219D8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_219D8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_219D8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21A60[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21A60"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21A60[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21A60"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21A70[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21A70"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21A70[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21A70"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21A80[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21A80"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21A98[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21A98"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21A98[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21A98"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21AE8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21AE8"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21AE8[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21AE8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21BC0[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21BC0"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21BC0[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21BC0"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21C10[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21C10"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21C10[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21C10"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21C58[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21C58"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21C58[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21C58"; - -static const ALIGN_ASSET(2) char kalimari_desert_data_seg6_gfx_21C80[] = "__OTR__kalimari_desert_data/kalimari_desert_data_seg6_gfx_21C80"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21C80[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21C80"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21C90[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_21C90"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_model1[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_model2[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_train_bogie[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_train_bogie"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22D28[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_22D28"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22D70[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_22D70"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22DB8[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_22DB8"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22E00[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_dl_22E00"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_item_box_spawns[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_cactus_spawn[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_cactus_spawn"; - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_addr[] = "__OTR__kalimari_desert_data/d_course_kalimari_desert_addr"; - diff --git a/include/assets/kalimari_desert_displaylists.h b/include/assets/kalimari_desert_displaylists.h deleted file mode 100644 index 185cda875..000000000 --- a/include/assets/kalimari_desert_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dls[] = "__OTR__kalimari_desert_displaylists/d_course_kalimari_desert_packed_dls"; - diff --git a/include/assets/kalimari_desert_vertices.h b/include/assets/kalimari_desert_vertices.h deleted file mode 100644 index 01cc5d99c..000000000 --- a/include/assets/kalimari_desert_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex[] = "__OTR__kalimari_desert_vertices/d_course_kalimari_desert_vertex"; - diff --git a/include/assets/koopa_troopa_beach_data.h b/include/assets/koopa_troopa_beach_data.h deleted file mode 100644 index 871da13f6..000000000 --- a/include/assets/koopa_troopa_beach_data.h +++ /dev/null @@ -1,768 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_0"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_0[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_48[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_48"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_48[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_48"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_90[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_90"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_118[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_118"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_188[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_188"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_218[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_218"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_278[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_278"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_328[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_328"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3C0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3C0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_458[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_458"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4B0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4B0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_530[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_530"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5A0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5A0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_658[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_658"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6E0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6E0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_790[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_790"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_828[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_828"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8F0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8F0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_960[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_960"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9E0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9E0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A58[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A58"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_B10[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_B10"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_B98[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_B98"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_C50[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_C50"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_CF0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_CF0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_DB8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_DB8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_E48[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_E48"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_EE0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_EE0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_F60[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_F60"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1040[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1040"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_10D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_10D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1178[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1178"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1218[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1218"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1310[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1310"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_13B8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_13B8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1430[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1430"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1498[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1498"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1558[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1558"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_15E0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_15E0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1680[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1680"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1708[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1708"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_17B0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_17B0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1818[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1818"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1878[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1878"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18E0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18E0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1940[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1940"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1988[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1988"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_19E8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_19E8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1A50[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1A50"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1AA8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1AA8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1AD8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1AD8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1B50[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1B50"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1BB8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1BB8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1C00[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1C00"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1C48[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1C48"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1CB0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1CB0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1D20[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1D20"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1D88[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1D88"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1DE0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1DE0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1E40[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1E40"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1EB0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1EB0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1F68[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1F68"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1FE8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1FE8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2058[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2058"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_20C8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_20C8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2178[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2178"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2200[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2200"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2258[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2258"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_22C8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_22C8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2390[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2390"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2440[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2440"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_24C0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_24C0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2540[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2540"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_25D8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_25D8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2660[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2660"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_26E0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_26E0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2760[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2760"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2800[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2800"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2898[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2898"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2910[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2910"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2988[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2988"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2A18[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2A18"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2AA0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2AA0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2B08[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2B08"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2B78[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2B78"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2C28[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2C28"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2CC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2CC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2D50[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2D50"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2DC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2DC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2E38[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2E38"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2EC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2EC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2F30[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2F30"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2FB0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2FB0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3050[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3050"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_30E0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_30E0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3198[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3198"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3218[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3218"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3278[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3278"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3308[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3308"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3370[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3370"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_33F8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_33F8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_34B8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_34B8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3550[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3550"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3628[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3628"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_36D8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_36D8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3730[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3730"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_37B8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_37B8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3830[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3830"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_38A8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_38A8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3980[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3980"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3A10[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3A10"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3B10[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3B10"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3BB8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3BB8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3C28[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3C28"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3CC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3CC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3D40[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3D40"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3DC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3DC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3EA8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3EA8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3F20[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3F20"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4028[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4028"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_40C0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_40C0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4138[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4138"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_41D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_41D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4260[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4260"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_42D8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_42D8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_43C0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_43C0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4450[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4450"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4548[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4548"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_45D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_45D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4670[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4670"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4700[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4700"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_47C0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_47C0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4840[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4840"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4948[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4948"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_49F0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_49F0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4B28[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4B28"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4BC8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4BC8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4C70[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4C70"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4D08[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4D08"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4DC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4DC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4E70[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4E70"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4F58[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4F58"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4FF8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4FF8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5120[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5120"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_51C8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_51C8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5248[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5248"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_52D8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_52D8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5358[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5358"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_53B8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_53B8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5480[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5480"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5500[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5500"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_55D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_55D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5628[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5628"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_56D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_56D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5778[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5778"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5840[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5840"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_58E0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_58E0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_59C8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_59C8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5A50[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5A50"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5B48[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5B48"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5BB8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5BB8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5C88[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5C88"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5D28[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5D28"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5DB8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5DB8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5E28[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5E28"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5EE0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5EE0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5F58[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5F58"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6000[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6000"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6050[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6050"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6128[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6128"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_61D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_61D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6268[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6268"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_62F8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_62F8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6398[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6398"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6410[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6410"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6498[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6498"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_64F0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_64F0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_65B8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_65B8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6660[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6660"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6718[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6718"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_67A0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_67A0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6830[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6830"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6898[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6898"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6918[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6918"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6968[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6968"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6A28[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6A28"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6AC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6AC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6B88[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6B88"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6C18[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6C18"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6CA0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6CA0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6D10[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6D10"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6DB8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6DB8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6E18[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6E18"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6ED0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6ED0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6F70[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6F70"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7060[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7060"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7100[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7100"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7168[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7168"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_71C8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_71C8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_72B0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_72B0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7338[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7338"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_73F8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_73F8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7478[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7478"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_75A0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_75A0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7640[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7640"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_76A8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_76A8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7718[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7718"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7840[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7840"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_78E8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_78E8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7978[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7978"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_79E8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_79E8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7AE0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7AE0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7B50[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7B50"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7BA0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7BA0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7C08[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7C08"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7CE0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7CE0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7D58[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7D58"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7DD0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7DD0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7E38[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7E38"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7EE0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7EE0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7F68[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7F68"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7FC8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7FC8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8048[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8048"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_80E0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_80E0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8150[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8150"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_81B8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_81B8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8228[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8228"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_82D8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_82D8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8368[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8368"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_83D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_83D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8448[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8448"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_84D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_84D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8550[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8550"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_85E8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_85E8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8650[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8650"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8710[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8710"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8790[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8790"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8800[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8800"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8878[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8878"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_88F0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_88F0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8958[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8958"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8A20[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8A20"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8A98[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8A98"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8BB0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8BB0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8C48[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8C48"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8CC8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8CC8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8D48[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8D48"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8DC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8DC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8E30[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8E30"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8F50[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8F50"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9008[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9008"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_90F0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_90F0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9188[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9188"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9210[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9210"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9288[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9288"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_92E8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_92E8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9378[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9378"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9498[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9498"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9548[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9548"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9618[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9618"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_96A0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_96A0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9720[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9720"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9798[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9798"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9818[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9818"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_98A0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_98A0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_99A0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_99A0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9A30[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9A30"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9AE0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9AE0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9B58[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9B58"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9BC8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9BC8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9C38[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9C38"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9D00[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9D00"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9D98[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9D98"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9E60[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9E60"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9ED8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9ED8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9F78[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9F78"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9FE8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9FE8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A070[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A070"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A0D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A0D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A190[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A190"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A220[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A220"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A2E8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A2E8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A340[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A340"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A428[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A428"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A4D8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A4D8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A578[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A578"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A608[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A608"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A6F0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A6F0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A780[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A780"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A828[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A828"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A8D0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A8D0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A9A0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A9A0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AA38[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AA38"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AAE8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AAE8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AB88[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AB88"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AC10[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AC10"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AC68[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AC68"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AD40[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AD40"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_waypoints[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_waypoints1[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_waypoints1"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_track_waypoints[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_track_waypoints_2[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_track_waypoints_2"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_crab_tlut[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_crab_tlut"; - -static const ALIGN_ASSET(2) char gTextureCrab1[] = "__OTR__koopa_troopa_beach_data/gTextureCrab1"; - -static const ALIGN_ASSET(2) char gTextureCrab2[] = "__OTR__koopa_troopa_beach_data/gTextureCrab2"; - -static const ALIGN_ASSET(2) char gTextureCrab3[] = "__OTR__koopa_troopa_beach_data/gTextureCrab3"; - -static const ALIGN_ASSET(2) char gTextureCrab4[] = "__OTR__koopa_troopa_beach_data/gTextureCrab4"; - -static const ALIGN_ASSET(2) char gTextureCrab5[] = "__OTR__koopa_troopa_beach_data/gTextureCrab5"; - -static const ALIGN_ASSET(2) char gTextureCrab6[] = "__OTR__koopa_troopa_beach_data/gTextureCrab6"; - -static const ALIGN_ASSET(2) char gTextureCrab7[] = "__OTR__koopa_troopa_beach_data/gTextureCrab7"; - -static const char* d_course_koopa_troopa_beach_crab_frames[] = { - gTextureCrab1, - gTextureCrab2, - gTextureCrab3, - gTextureCrab4, - gTextureCrab5, - gTextureCrab6, - gTextureCrab7, -}; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_lights_14BE8[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_lights_14BE8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_light1[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_light1"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_wing[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_wing"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_eye[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_eye"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_beak[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_beak"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_model[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_model"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model1[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model2[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model3[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model3"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_16630[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_16630"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_wing_model[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_wing_model"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_16850[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_16850"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_wing_2_model[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_wing_2_model"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_168F0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_168F0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_wing_3_model[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_wing_3_model"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_16990[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_16990"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_lights_16B78[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_lights_16B78"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_light2[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_light2"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_tree_model[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_tree_model"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model4[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model4"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_palm_frond[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_palm_frond"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_palm_trunk[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_palm_trunk"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18520[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18520"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18520[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18520"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_185E8[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_185E8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_185E8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_185E8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_top1[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_top1"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18608[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18608"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18608[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18608"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_186A8[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_186A8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_186A8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_186A8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_trunk1[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_trunk1"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_tree_2_model[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_tree_2_model"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model5[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model5"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_light3[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_light3"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_lights_18858[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_lights_18858"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18870[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18870"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18870[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18870"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18938[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18938"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18938[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18938"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_top2[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_top2"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18958[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18958"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18958[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18958"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_189F8[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_189F8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_189F8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_189F8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_trunk2[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_trunk2"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_tree_3_model[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_tree_3_model"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model6[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model6"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_lights_18BA8[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_lights_18BA8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_light4[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_light4"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18BC0[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18BC0"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18BC0[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18BC0"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18C88[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18C88"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18C88[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18C88"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_top3[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_top3"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18CA8[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18CA8"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18CA8[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18CA8"; - -static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_gfx_18D48[] = "__OTR__koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_gfx_18D48"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18D48[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18D48"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_trunk3[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_trunk3"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18D68[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18D68"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_item_box_spawns[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_tree_spawn[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_tree_spawn"; - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_addr[] = "__OTR__koopa_troopa_beach_data/d_course_koopa_troopa_beach_addr"; - diff --git a/include/assets/koopa_troopa_beach_displaylists.h b/include/assets/koopa_troopa_beach_displaylists.h deleted file mode 100644 index 437b0fa72..000000000 --- a/include/assets/koopa_troopa_beach_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dls[] = "__OTR__koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dls"; - diff --git a/include/assets/koopa_troopa_beach_vertices.h b/include/assets/koopa_troopa_beach_vertices.h deleted file mode 100644 index 153a6354b..000000000 --- a/include/assets/koopa_troopa_beach_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex[] = "__OTR__koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex"; - diff --git a/include/assets/luigi_kart.h b/include/assets/luigi_kart.h deleted file mode 100644 index 20b952693..000000000 --- a/include/assets/luigi_kart.h +++ /dev/null @@ -1,4120 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gKartLuigi000[] = "__OTR__luigi_kart/luigi_kart_frame000"; - -static const ALIGN_ASSET(2) char gKartLuigi001[] = "__OTR__luigi_kart/luigi_kart_frame001"; - -static const ALIGN_ASSET(2) char gKartLuigi002[] = "__OTR__luigi_kart/luigi_kart_frame002"; - -static const ALIGN_ASSET(2) char gKartLuigi003[] = "__OTR__luigi_kart/luigi_kart_frame003"; - -static const ALIGN_ASSET(2) char gKartLuigi004[] = "__OTR__luigi_kart/luigi_kart_frame004"; - -static const ALIGN_ASSET(2) char gKartLuigi005[] = "__OTR__luigi_kart/luigi_kart_frame005"; - -static const ALIGN_ASSET(2) char gKartLuigi006[] = "__OTR__luigi_kart/luigi_kart_frame006"; - -static const ALIGN_ASSET(2) char gKartLuigi007[] = "__OTR__luigi_kart/luigi_kart_frame007"; - -static const ALIGN_ASSET(2) char gKartLuigi008[] = "__OTR__luigi_kart/luigi_kart_frame008"; - -static const ALIGN_ASSET(2) char gKartLuigi009[] = "__OTR__luigi_kart/luigi_kart_frame009"; - -static const ALIGN_ASSET(2) char gKartLuigi010[] = "__OTR__luigi_kart/luigi_kart_frame010"; - -static const ALIGN_ASSET(2) char gKartLuigi011[] = "__OTR__luigi_kart/luigi_kart_frame011"; - -static const ALIGN_ASSET(2) char gKartLuigi012[] = "__OTR__luigi_kart/luigi_kart_frame012"; - -static const ALIGN_ASSET(2) char gKartLuigi013[] = "__OTR__luigi_kart/luigi_kart_frame013"; - -static const ALIGN_ASSET(2) char gKartLuigi014[] = "__OTR__luigi_kart/luigi_kart_frame014"; - -static const ALIGN_ASSET(2) char gKartLuigi015[] = "__OTR__luigi_kart/luigi_kart_frame015"; - -static const ALIGN_ASSET(2) char gKartLuigi016[] = "__OTR__luigi_kart/luigi_kart_frame016"; - -static const ALIGN_ASSET(2) char gKartLuigi017[] = "__OTR__luigi_kart/luigi_kart_frame017"; - -static const ALIGN_ASSET(2) char gKartLuigi018[] = "__OTR__luigi_kart/luigi_kart_frame018"; - -static const ALIGN_ASSET(2) char gKartLuigi019[] = "__OTR__luigi_kart/luigi_kart_frame019"; - -static const ALIGN_ASSET(2) char gKartLuigi020[] = "__OTR__luigi_kart/luigi_kart_frame020"; - -static const ALIGN_ASSET(2) char gKartLuigi021[] = "__OTR__luigi_kart/luigi_kart_frame021"; - -static const ALIGN_ASSET(2) char gKartLuigi022[] = "__OTR__luigi_kart/luigi_kart_frame022"; - -static const ALIGN_ASSET(2) char gKartLuigi023[] = "__OTR__luigi_kart/luigi_kart_frame023"; - -static const ALIGN_ASSET(2) char gKartLuigi024[] = "__OTR__luigi_kart/luigi_kart_frame024"; - -static const ALIGN_ASSET(2) char gKartLuigi025[] = "__OTR__luigi_kart/luigi_kart_frame025"; - -static const ALIGN_ASSET(2) char gKartLuigi026[] = "__OTR__luigi_kart/luigi_kart_frame026"; - -static const ALIGN_ASSET(2) char gKartLuigi027[] = "__OTR__luigi_kart/luigi_kart_frame027"; - -static const ALIGN_ASSET(2) char gKartLuigi028[] = "__OTR__luigi_kart/luigi_kart_frame028"; - -static const ALIGN_ASSET(2) char gKartLuigi029[] = "__OTR__luigi_kart/luigi_kart_frame029"; - -static const ALIGN_ASSET(2) char gKartLuigi030[] = "__OTR__luigi_kart/luigi_kart_frame030"; - -static const ALIGN_ASSET(2) char gKartLuigi031[] = "__OTR__luigi_kart/luigi_kart_frame031"; - -static const ALIGN_ASSET(2) char gKartLuigi032[] = "__OTR__luigi_kart/luigi_kart_frame032"; - -static const ALIGN_ASSET(2) char gKartLuigi033[] = "__OTR__luigi_kart/luigi_kart_frame033"; - -static const ALIGN_ASSET(2) char gKartLuigi034[] = "__OTR__luigi_kart/luigi_kart_frame034"; - -static const ALIGN_ASSET(2) char gKartLuigi035[] = "__OTR__luigi_kart/luigi_kart_frame035"; - -static const ALIGN_ASSET(2) char gKartLuigi036[] = "__OTR__luigi_kart/luigi_kart_frame036"; - -static const ALIGN_ASSET(2) char gKartLuigi037[] = "__OTR__luigi_kart/luigi_kart_frame037"; - -static const ALIGN_ASSET(2) char gKartLuigi038[] = "__OTR__luigi_kart/luigi_kart_frame038"; - -static const ALIGN_ASSET(2) char gKartLuigi039[] = "__OTR__luigi_kart/luigi_kart_frame039"; - -static const ALIGN_ASSET(2) char gKartLuigi040[] = "__OTR__luigi_kart/luigi_kart_frame040"; - -static const ALIGN_ASSET(2) char gKartLuigi041[] = "__OTR__luigi_kart/luigi_kart_frame041"; - -static const ALIGN_ASSET(2) char gKartLuigi042[] = "__OTR__luigi_kart/luigi_kart_frame042"; - -static const ALIGN_ASSET(2) char gKartLuigi043[] = "__OTR__luigi_kart/luigi_kart_frame043"; - -static const ALIGN_ASSET(2) char gKartLuigi044[] = "__OTR__luigi_kart/luigi_kart_frame044"; - -static const ALIGN_ASSET(2) char gKartLuigi045[] = "__OTR__luigi_kart/luigi_kart_frame045"; - -static const ALIGN_ASSET(2) char gKartLuigi046[] = "__OTR__luigi_kart/luigi_kart_frame046"; - -static const ALIGN_ASSET(2) char gKartLuigi047[] = "__OTR__luigi_kart/luigi_kart_frame047"; - -static const ALIGN_ASSET(2) char gKartLuigi048[] = "__OTR__luigi_kart/luigi_kart_frame048"; - -static const ALIGN_ASSET(2) char gKartLuigi049[] = "__OTR__luigi_kart/luigi_kart_frame049"; - -static const ALIGN_ASSET(2) char gKartLuigi050[] = "__OTR__luigi_kart/luigi_kart_frame050"; - -static const ALIGN_ASSET(2) char gKartLuigi051[] = "__OTR__luigi_kart/luigi_kart_frame051"; - -static const ALIGN_ASSET(2) char gKartLuigi052[] = "__OTR__luigi_kart/luigi_kart_frame052"; - -static const ALIGN_ASSET(2) char gKartLuigi053[] = "__OTR__luigi_kart/luigi_kart_frame053"; - -static const ALIGN_ASSET(2) char gKartLuigi054[] = "__OTR__luigi_kart/luigi_kart_frame054"; - -static const ALIGN_ASSET(2) char gKartLuigi055[] = "__OTR__luigi_kart/luigi_kart_frame055"; - -static const ALIGN_ASSET(2) char gKartLuigi056[] = "__OTR__luigi_kart/luigi_kart_frame056"; - -static const ALIGN_ASSET(2) char gKartLuigi057[] = "__OTR__luigi_kart/luigi_kart_frame057"; - -static const ALIGN_ASSET(2) char gKartLuigi058[] = "__OTR__luigi_kart/luigi_kart_frame058"; - -static const ALIGN_ASSET(2) char gKartLuigi059[] = "__OTR__luigi_kart/luigi_kart_frame059"; - -static const ALIGN_ASSET(2) char gKartLuigi060[] = "__OTR__luigi_kart/luigi_kart_frame060"; - -static const ALIGN_ASSET(2) char gKartLuigi061[] = "__OTR__luigi_kart/luigi_kart_frame061"; - -static const ALIGN_ASSET(2) char gKartLuigi062[] = "__OTR__luigi_kart/luigi_kart_frame062"; - -static const ALIGN_ASSET(2) char gKartLuigi063[] = "__OTR__luigi_kart/luigi_kart_frame063"; - -static const ALIGN_ASSET(2) char gKartLuigi064[] = "__OTR__luigi_kart/luigi_kart_frame064"; - -static const ALIGN_ASSET(2) char gKartLuigi065[] = "__OTR__luigi_kart/luigi_kart_frame065"; - -static const ALIGN_ASSET(2) char gKartLuigi066[] = "__OTR__luigi_kart/luigi_kart_frame066"; - -static const ALIGN_ASSET(2) char gKartLuigi067[] = "__OTR__luigi_kart/luigi_kart_frame067"; - -static const ALIGN_ASSET(2) char gKartLuigi068[] = "__OTR__luigi_kart/luigi_kart_frame068"; - -static const ALIGN_ASSET(2) char gKartLuigi069[] = "__OTR__luigi_kart/luigi_kart_frame069"; - -static const ALIGN_ASSET(2) char gKartLuigi070[] = "__OTR__luigi_kart/luigi_kart_frame070"; - -static const ALIGN_ASSET(2) char gKartLuigi071[] = "__OTR__luigi_kart/luigi_kart_frame071"; - -static const ALIGN_ASSET(2) char gKartLuigi072[] = "__OTR__luigi_kart/luigi_kart_frame072"; - -static const ALIGN_ASSET(2) char gKartLuigi073[] = "__OTR__luigi_kart/luigi_kart_frame073"; - -static const ALIGN_ASSET(2) char gKartLuigi074[] = "__OTR__luigi_kart/luigi_kart_frame074"; - -static const ALIGN_ASSET(2) char gKartLuigi075[] = "__OTR__luigi_kart/luigi_kart_frame075"; - -static const ALIGN_ASSET(2) char gKartLuigi076[] = "__OTR__luigi_kart/luigi_kart_frame076"; - -static const ALIGN_ASSET(2) char gKartLuigi077[] = "__OTR__luigi_kart/luigi_kart_frame077"; - -static const ALIGN_ASSET(2) char gKartLuigi078[] = "__OTR__luigi_kart/luigi_kart_frame078"; - -static const ALIGN_ASSET(2) char gKartLuigi079[] = "__OTR__luigi_kart/luigi_kart_frame079"; - -static const ALIGN_ASSET(2) char gKartLuigi080[] = "__OTR__luigi_kart/luigi_kart_frame080"; - -static const ALIGN_ASSET(2) char gKartLuigi081[] = "__OTR__luigi_kart/luigi_kart_frame081"; - -static const ALIGN_ASSET(2) char gKartLuigi082[] = "__OTR__luigi_kart/luigi_kart_frame082"; - -static const ALIGN_ASSET(2) char gKartLuigi083[] = "__OTR__luigi_kart/luigi_kart_frame083"; - -static const ALIGN_ASSET(2) char gKartLuigi084[] = "__OTR__luigi_kart/luigi_kart_frame084"; - -static const ALIGN_ASSET(2) char gKartLuigi085[] = "__OTR__luigi_kart/luigi_kart_frame085"; - -static const ALIGN_ASSET(2) char gKartLuigi086[] = "__OTR__luigi_kart/luigi_kart_frame086"; - -static const ALIGN_ASSET(2) char gKartLuigi087[] = "__OTR__luigi_kart/luigi_kart_frame087"; - -static const ALIGN_ASSET(2) char gKartLuigi088[] = "__OTR__luigi_kart/luigi_kart_frame088"; - -static const ALIGN_ASSET(2) char gKartLuigi089[] = "__OTR__luigi_kart/luigi_kart_frame089"; - -static const ALIGN_ASSET(2) char gKartLuigi090[] = "__OTR__luigi_kart/luigi_kart_frame090"; - -static const ALIGN_ASSET(2) char gKartLuigi091[] = "__OTR__luigi_kart/luigi_kart_frame091"; - -static const ALIGN_ASSET(2) char gKartLuigi092[] = "__OTR__luigi_kart/luigi_kart_frame092"; - -static const ALIGN_ASSET(2) char gKartLuigi093[] = "__OTR__luigi_kart/luigi_kart_frame093"; - -static const ALIGN_ASSET(2) char gKartLuigi094[] = "__OTR__luigi_kart/luigi_kart_frame094"; - -static const ALIGN_ASSET(2) char gKartLuigi095[] = "__OTR__luigi_kart/luigi_kart_frame095"; - -static const ALIGN_ASSET(2) char gKartLuigi096[] = "__OTR__luigi_kart/luigi_kart_frame096"; - -static const ALIGN_ASSET(2) char gKartLuigi097[] = "__OTR__luigi_kart/luigi_kart_frame097"; - -static const ALIGN_ASSET(2) char gKartLuigi098[] = "__OTR__luigi_kart/luigi_kart_frame098"; - -static const ALIGN_ASSET(2) char gKartLuigi099[] = "__OTR__luigi_kart/luigi_kart_frame099"; - -static const ALIGN_ASSET(2) char gKartLuigi100[] = "__OTR__luigi_kart/luigi_kart_frame100"; - -static const ALIGN_ASSET(2) char gKartLuigi101[] = "__OTR__luigi_kart/luigi_kart_frame101"; - -static const ALIGN_ASSET(2) char gKartLuigi102[] = "__OTR__luigi_kart/luigi_kart_frame102"; - -static const ALIGN_ASSET(2) char gKartLuigi103[] = "__OTR__luigi_kart/luigi_kart_frame103"; - -static const ALIGN_ASSET(2) char gKartLuigi104[] = "__OTR__luigi_kart/luigi_kart_frame104"; - -static const ALIGN_ASSET(2) char gKartLuigi105[] = "__OTR__luigi_kart/luigi_kart_frame105"; - -static const ALIGN_ASSET(2) char gKartLuigi106[] = "__OTR__luigi_kart/luigi_kart_frame106"; - -static const ALIGN_ASSET(2) char gKartLuigi107[] = "__OTR__luigi_kart/luigi_kart_frame107"; - -static const ALIGN_ASSET(2) char gKartLuigi108[] = "__OTR__luigi_kart/luigi_kart_frame108"; - -static const ALIGN_ASSET(2) char gKartLuigi109[] = "__OTR__luigi_kart/luigi_kart_frame109"; - -static const ALIGN_ASSET(2) char gKartLuigi110[] = "__OTR__luigi_kart/luigi_kart_frame110"; - -static const ALIGN_ASSET(2) char gKartLuigi111[] = "__OTR__luigi_kart/luigi_kart_frame111"; - -static const ALIGN_ASSET(2) char gKartLuigi112[] = "__OTR__luigi_kart/luigi_kart_frame112"; - -static const ALIGN_ASSET(2) char gKartLuigi113[] = "__OTR__luigi_kart/luigi_kart_frame113"; - -static const ALIGN_ASSET(2) char gKartLuigi114[] = "__OTR__luigi_kart/luigi_kart_frame114"; - -static const ALIGN_ASSET(2) char gKartLuigi115[] = "__OTR__luigi_kart/luigi_kart_frame115"; - -static const ALIGN_ASSET(2) char gKartLuigi116[] = "__OTR__luigi_kart/luigi_kart_frame116"; - -static const ALIGN_ASSET(2) char gKartLuigi117[] = "__OTR__luigi_kart/luigi_kart_frame117"; - -static const ALIGN_ASSET(2) char gKartLuigi118[] = "__OTR__luigi_kart/luigi_kart_frame118"; - -static const ALIGN_ASSET(2) char gKartLuigi119[] = "__OTR__luigi_kart/luigi_kart_frame119"; - -static const ALIGN_ASSET(2) char gKartLuigi120[] = "__OTR__luigi_kart/luigi_kart_frame120"; - -static const ALIGN_ASSET(2) char gKartLuigi121[] = "__OTR__luigi_kart/luigi_kart_frame121"; - -static const ALIGN_ASSET(2) char gKartLuigi122[] = "__OTR__luigi_kart/luigi_kart_frame122"; - -static const ALIGN_ASSET(2) char gKartLuigi123[] = "__OTR__luigi_kart/luigi_kart_frame123"; - -static const ALIGN_ASSET(2) char gKartLuigi124[] = "__OTR__luigi_kart/luigi_kart_frame124"; - -static const ALIGN_ASSET(2) char gKartLuigi125[] = "__OTR__luigi_kart/luigi_kart_frame125"; - -static const ALIGN_ASSET(2) char gKartLuigi126[] = "__OTR__luigi_kart/luigi_kart_frame126"; - -static const ALIGN_ASSET(2) char gKartLuigi127[] = "__OTR__luigi_kart/luigi_kart_frame127"; - -static const ALIGN_ASSET(2) char gKartLuigi128[] = "__OTR__luigi_kart/luigi_kart_frame128"; - -static const ALIGN_ASSET(2) char gKartLuigi129[] = "__OTR__luigi_kart/luigi_kart_frame129"; - -static const ALIGN_ASSET(2) char gKartLuigi130[] = "__OTR__luigi_kart/luigi_kart_frame130"; - -static const ALIGN_ASSET(2) char gKartLuigi131[] = "__OTR__luigi_kart/luigi_kart_frame131"; - -static const ALIGN_ASSET(2) char gKartLuigi132[] = "__OTR__luigi_kart/luigi_kart_frame132"; - -static const ALIGN_ASSET(2) char gKartLuigi133[] = "__OTR__luigi_kart/luigi_kart_frame133"; - -static const ALIGN_ASSET(2) char gKartLuigi134[] = "__OTR__luigi_kart/luigi_kart_frame134"; - -static const ALIGN_ASSET(2) char gKartLuigi135[] = "__OTR__luigi_kart/luigi_kart_frame135"; - -static const ALIGN_ASSET(2) char gKartLuigi136[] = "__OTR__luigi_kart/luigi_kart_frame136"; - -static const ALIGN_ASSET(2) char gKartLuigi137[] = "__OTR__luigi_kart/luigi_kart_frame137"; - -static const ALIGN_ASSET(2) char gKartLuigi138[] = "__OTR__luigi_kart/luigi_kart_frame138"; - -static const ALIGN_ASSET(2) char gKartLuigi139[] = "__OTR__luigi_kart/luigi_kart_frame139"; - -static const ALIGN_ASSET(2) char gKartLuigi140[] = "__OTR__luigi_kart/luigi_kart_frame140"; - -static const ALIGN_ASSET(2) char gKartLuigi141[] = "__OTR__luigi_kart/luigi_kart_frame141"; - -static const ALIGN_ASSET(2) char gKartLuigi142[] = "__OTR__luigi_kart/luigi_kart_frame142"; - -static const ALIGN_ASSET(2) char gKartLuigi143[] = "__OTR__luigi_kart/luigi_kart_frame143"; - -static const ALIGN_ASSET(2) char gKartLuigi144[] = "__OTR__luigi_kart/luigi_kart_frame144"; - -static const ALIGN_ASSET(2) char gKartLuigi145[] = "__OTR__luigi_kart/luigi_kart_frame145"; - -static const ALIGN_ASSET(2) char gKartLuigi146[] = "__OTR__luigi_kart/luigi_kart_frame146"; - -static const ALIGN_ASSET(2) char gKartLuigi147[] = "__OTR__luigi_kart/luigi_kart_frame147"; - -static const ALIGN_ASSET(2) char gKartLuigi148[] = "__OTR__luigi_kart/luigi_kart_frame148"; - -static const ALIGN_ASSET(2) char gKartLuigi149[] = "__OTR__luigi_kart/luigi_kart_frame149"; - -static const ALIGN_ASSET(2) char gKartLuigi150[] = "__OTR__luigi_kart/luigi_kart_frame150"; - -static const ALIGN_ASSET(2) char gKartLuigi151[] = "__OTR__luigi_kart/luigi_kart_frame151"; - -static const ALIGN_ASSET(2) char gKartLuigi152[] = "__OTR__luigi_kart/luigi_kart_frame152"; - -static const ALIGN_ASSET(2) char gKartLuigi153[] = "__OTR__luigi_kart/luigi_kart_frame153"; - -static const ALIGN_ASSET(2) char gKartLuigi154[] = "__OTR__luigi_kart/luigi_kart_frame154"; - -static const ALIGN_ASSET(2) char gKartLuigi155[] = "__OTR__luigi_kart/luigi_kart_frame155"; - -static const ALIGN_ASSET(2) char gKartLuigi156[] = "__OTR__luigi_kart/luigi_kart_frame156"; - -static const ALIGN_ASSET(2) char gKartLuigi157[] = "__OTR__luigi_kart/luigi_kart_frame157"; - -static const ALIGN_ASSET(2) char gKartLuigi158[] = "__OTR__luigi_kart/luigi_kart_frame158"; - -static const ALIGN_ASSET(2) char gKartLuigi159[] = "__OTR__luigi_kart/luigi_kart_frame159"; - -static const ALIGN_ASSET(2) char gKartLuigi160[] = "__OTR__luigi_kart/luigi_kart_frame160"; - -static const ALIGN_ASSET(2) char gKartLuigi161[] = "__OTR__luigi_kart/luigi_kart_frame161"; - -static const ALIGN_ASSET(2) char gKartLuigi162[] = "__OTR__luigi_kart/luigi_kart_frame162"; - -static const ALIGN_ASSET(2) char gKartLuigi163[] = "__OTR__luigi_kart/luigi_kart_frame163"; - -static const ALIGN_ASSET(2) char gKartLuigi164[] = "__OTR__luigi_kart/luigi_kart_frame164"; - -static const ALIGN_ASSET(2) char gKartLuigi165[] = "__OTR__luigi_kart/luigi_kart_frame165"; - -static const ALIGN_ASSET(2) char gKartLuigi166[] = "__OTR__luigi_kart/luigi_kart_frame166"; - -static const ALIGN_ASSET(2) char gKartLuigi167[] = "__OTR__luigi_kart/luigi_kart_frame167"; - -static const ALIGN_ASSET(2) char gKartLuigi168[] = "__OTR__luigi_kart/luigi_kart_frame168"; - -static const ALIGN_ASSET(2) char gKartLuigi169[] = "__OTR__luigi_kart/luigi_kart_frame169"; - -static const ALIGN_ASSET(2) char gKartLuigi170[] = "__OTR__luigi_kart/luigi_kart_frame170"; - -static const ALIGN_ASSET(2) char gKartLuigi171[] = "__OTR__luigi_kart/luigi_kart_frame171"; - -static const ALIGN_ASSET(2) char gKartLuigi172[] = "__OTR__luigi_kart/luigi_kart_frame172"; - -static const ALIGN_ASSET(2) char gKartLuigi173[] = "__OTR__luigi_kart/luigi_kart_frame173"; - -static const ALIGN_ASSET(2) char gKartLuigi174[] = "__OTR__luigi_kart/luigi_kart_frame174"; - -static const ALIGN_ASSET(2) char gKartLuigi175[] = "__OTR__luigi_kart/luigi_kart_frame175"; - -static const ALIGN_ASSET(2) char gKartLuigi176[] = "__OTR__luigi_kart/luigi_kart_frame176"; - -static const ALIGN_ASSET(2) char gKartLuigi177[] = "__OTR__luigi_kart/luigi_kart_frame177"; - -static const ALIGN_ASSET(2) char gKartLuigi178[] = "__OTR__luigi_kart/luigi_kart_frame178"; - -static const ALIGN_ASSET(2) char gKartLuigi179[] = "__OTR__luigi_kart/luigi_kart_frame179"; - -static const ALIGN_ASSET(2) char gKartLuigi180[] = "__OTR__luigi_kart/luigi_kart_frame180"; - -static const ALIGN_ASSET(2) char gKartLuigi181[] = "__OTR__luigi_kart/luigi_kart_frame181"; - -static const ALIGN_ASSET(2) char gKartLuigi182[] = "__OTR__luigi_kart/luigi_kart_frame182"; - -static const ALIGN_ASSET(2) char gKartLuigi183[] = "__OTR__luigi_kart/luigi_kart_frame183"; - -static const ALIGN_ASSET(2) char gKartLuigi184[] = "__OTR__luigi_kart/luigi_kart_frame184"; - -static const ALIGN_ASSET(2) char gKartLuigi185[] = "__OTR__luigi_kart/luigi_kart_frame185"; - -static const ALIGN_ASSET(2) char gKartLuigi186[] = "__OTR__luigi_kart/luigi_kart_frame186"; - -static const ALIGN_ASSET(2) char gKartLuigi187[] = "__OTR__luigi_kart/luigi_kart_frame187"; - -static const ALIGN_ASSET(2) char gKartLuigi188[] = "__OTR__luigi_kart/luigi_kart_frame188"; - -static const ALIGN_ASSET(2) char gKartLuigi189[] = "__OTR__luigi_kart/luigi_kart_frame189"; - -static const ALIGN_ASSET(2) char gKartLuigi190[] = "__OTR__luigi_kart/luigi_kart_frame190"; - -static const ALIGN_ASSET(2) char gKartLuigi191[] = "__OTR__luigi_kart/luigi_kart_frame191"; - -static const ALIGN_ASSET(2) char gKartLuigi192[] = "__OTR__luigi_kart/luigi_kart_frame192"; - -static const ALIGN_ASSET(2) char gKartLuigi193[] = "__OTR__luigi_kart/luigi_kart_frame193"; - -static const ALIGN_ASSET(2) char gKartLuigi194[] = "__OTR__luigi_kart/luigi_kart_frame194"; - -static const ALIGN_ASSET(2) char gKartLuigi195[] = "__OTR__luigi_kart/luigi_kart_frame195"; - -static const ALIGN_ASSET(2) char gKartLuigi196[] = "__OTR__luigi_kart/luigi_kart_frame196"; - -static const ALIGN_ASSET(2) char gKartLuigi197[] = "__OTR__luigi_kart/luigi_kart_frame197"; - -static const ALIGN_ASSET(2) char gKartLuigi198[] = "__OTR__luigi_kart/luigi_kart_frame198"; - -static const ALIGN_ASSET(2) char gKartLuigi199[] = "__OTR__luigi_kart/luigi_kart_frame199"; - -static const ALIGN_ASSET(2) char gKartLuigi200[] = "__OTR__luigi_kart/luigi_kart_frame200"; - -static const ALIGN_ASSET(2) char gKartLuigi201[] = "__OTR__luigi_kart/luigi_kart_frame201"; - -static const ALIGN_ASSET(2) char gKartLuigi202[] = "__OTR__luigi_kart/luigi_kart_frame202"; - -static const ALIGN_ASSET(2) char gKartLuigi203[] = "__OTR__luigi_kart/luigi_kart_frame203"; - -static const ALIGN_ASSET(2) char gKartLuigi204[] = "__OTR__luigi_kart/luigi_kart_frame204"; - -static const ALIGN_ASSET(2) char gKartLuigi205[] = "__OTR__luigi_kart/luigi_kart_frame205"; - -static const ALIGN_ASSET(2) char gKartLuigi206[] = "__OTR__luigi_kart/luigi_kart_frame206"; - -static const ALIGN_ASSET(2) char gKartLuigi207[] = "__OTR__luigi_kart/luigi_kart_frame207"; - -static const ALIGN_ASSET(2) char gKartLuigi208[] = "__OTR__luigi_kart/luigi_kart_frame208"; - -static const ALIGN_ASSET(2) char gKartLuigi209[] = "__OTR__luigi_kart/luigi_kart_frame209"; - -static const ALIGN_ASSET(2) char gKartLuigi210[] = "__OTR__luigi_kart/luigi_kart_frame210"; - -static const ALIGN_ASSET(2) char gKartLuigi211[] = "__OTR__luigi_kart/luigi_kart_frame211"; - -static const ALIGN_ASSET(2) char gKartLuigi212[] = "__OTR__luigi_kart/luigi_kart_frame212"; - -static const ALIGN_ASSET(2) char gKartLuigi213[] = "__OTR__luigi_kart/luigi_kart_frame213"; - -static const ALIGN_ASSET(2) char gKartLuigi214[] = "__OTR__luigi_kart/luigi_kart_frame214"; - -static const ALIGN_ASSET(2) char gKartLuigi215[] = "__OTR__luigi_kart/luigi_kart_frame215"; - -static const ALIGN_ASSET(2) char gKartLuigi216[] = "__OTR__luigi_kart/luigi_kart_frame216"; - -static const ALIGN_ASSET(2) char gKartLuigi217[] = "__OTR__luigi_kart/luigi_kart_frame217"; - -static const ALIGN_ASSET(2) char gKartLuigi218[] = "__OTR__luigi_kart/luigi_kart_frame218"; - -static const ALIGN_ASSET(2) char gKartLuigi219[] = "__OTR__luigi_kart/luigi_kart_frame219"; - -static const ALIGN_ASSET(2) char gKartLuigi220[] = "__OTR__luigi_kart/luigi_kart_frame220"; - -static const ALIGN_ASSET(2) char gKartLuigi221[] = "__OTR__luigi_kart/luigi_kart_frame221"; - -static const ALIGN_ASSET(2) char gKartLuigi222[] = "__OTR__luigi_kart/luigi_kart_frame222"; - -static const ALIGN_ASSET(2) char gKartLuigi223[] = "__OTR__luigi_kart/luigi_kart_frame223"; - -static const ALIGN_ASSET(2) char gKartLuigi224[] = "__OTR__luigi_kart/luigi_kart_frame224"; - -static const ALIGN_ASSET(2) char gKartLuigi225[] = "__OTR__luigi_kart/luigi_kart_frame225"; - -static const ALIGN_ASSET(2) char gKartLuigi226[] = "__OTR__luigi_kart/luigi_kart_frame226"; - -static const ALIGN_ASSET(2) char gKartLuigi227[] = "__OTR__luigi_kart/luigi_kart_frame227"; - -static const ALIGN_ASSET(2) char gKartLuigi228[] = "__OTR__luigi_kart/luigi_kart_frame228"; - -static const ALIGN_ASSET(2) char gKartLuigi229[] = "__OTR__luigi_kart/luigi_kart_frame229"; - -static const ALIGN_ASSET(2) char gKartLuigi230[] = "__OTR__luigi_kart/luigi_kart_frame230"; - -static const ALIGN_ASSET(2) char gKartLuigi231[] = "__OTR__luigi_kart/luigi_kart_frame231"; - -static const ALIGN_ASSET(2) char gKartLuigi232[] = "__OTR__luigi_kart/luigi_kart_frame232"; - -static const ALIGN_ASSET(2) char gKartLuigi233[] = "__OTR__luigi_kart/luigi_kart_frame233"; - -static const ALIGN_ASSET(2) char gKartLuigi234[] = "__OTR__luigi_kart/luigi_kart_frame234"; - -static const ALIGN_ASSET(2) char gKartLuigi235[] = "__OTR__luigi_kart/luigi_kart_frame235"; - -static const ALIGN_ASSET(2) char gKartLuigi236[] = "__OTR__luigi_kart/luigi_kart_frame236"; - -static const ALIGN_ASSET(2) char gKartLuigi237[] = "__OTR__luigi_kart/luigi_kart_frame237"; - -static const ALIGN_ASSET(2) char gKartLuigi238[] = "__OTR__luigi_kart/luigi_kart_frame238"; - -static const ALIGN_ASSET(2) char gKartLuigi239[] = "__OTR__luigi_kart/luigi_kart_frame239"; - -static const ALIGN_ASSET(2) char gKartLuigi240[] = "__OTR__luigi_kart/luigi_kart_frame240"; - -static const ALIGN_ASSET(2) char gKartLuigi241[] = "__OTR__luigi_kart/luigi_kart_frame241"; - -static const ALIGN_ASSET(2) char gKartLuigi242[] = "__OTR__luigi_kart/luigi_kart_frame242"; - -static const ALIGN_ASSET(2) char gKartLuigi243[] = "__OTR__luigi_kart/luigi_kart_frame243"; - -static const ALIGN_ASSET(2) char gKartLuigi244[] = "__OTR__luigi_kart/luigi_kart_frame244"; - -static const ALIGN_ASSET(2) char gKartLuigi245[] = "__OTR__luigi_kart/luigi_kart_frame245"; - -static const ALIGN_ASSET(2) char gKartLuigi246[] = "__OTR__luigi_kart/luigi_kart_frame246"; - -static const ALIGN_ASSET(2) char gKartLuigi247[] = "__OTR__luigi_kart/luigi_kart_frame247"; - -static const ALIGN_ASSET(2) char gKartLuigi248[] = "__OTR__luigi_kart/luigi_kart_frame248"; - -static const ALIGN_ASSET(2) char gKartLuigi249[] = "__OTR__luigi_kart/luigi_kart_frame249"; - -static const ALIGN_ASSET(2) char gKartLuigi250[] = "__OTR__luigi_kart/luigi_kart_frame250"; - -static const ALIGN_ASSET(2) char gKartLuigi251[] = "__OTR__luigi_kart/luigi_kart_frame251"; - -static const ALIGN_ASSET(2) char gKartLuigi252[] = "__OTR__luigi_kart/luigi_kart_frame252"; - -static const ALIGN_ASSET(2) char gKartLuigi253[] = "__OTR__luigi_kart/luigi_kart_frame253"; - -static const ALIGN_ASSET(2) char gKartLuigi254[] = "__OTR__luigi_kart/luigi_kart_frame254"; - -static const ALIGN_ASSET(2) char gKartLuigi255[] = "__OTR__luigi_kart/luigi_kart_frame255"; - -static const ALIGN_ASSET(2) char gKartLuigi256[] = "__OTR__luigi_kart/luigi_kart_frame256"; - -static const ALIGN_ASSET(2) char gKartLuigi257[] = "__OTR__luigi_kart/luigi_kart_frame257"; - -static const ALIGN_ASSET(2) char gKartLuigi258[] = "__OTR__luigi_kart/luigi_kart_frame258"; - -static const ALIGN_ASSET(2) char gKartLuigi259[] = "__OTR__luigi_kart/luigi_kart_frame259"; - -static const ALIGN_ASSET(2) char gKartLuigi260[] = "__OTR__luigi_kart/luigi_kart_frame260"; - -static const ALIGN_ASSET(2) char gKartLuigi261[] = "__OTR__luigi_kart/luigi_kart_frame261"; - -static const ALIGN_ASSET(2) char gKartLuigi262[] = "__OTR__luigi_kart/luigi_kart_frame262"; - -static const ALIGN_ASSET(2) char gKartLuigi263[] = "__OTR__luigi_kart/luigi_kart_frame263"; - -static const ALIGN_ASSET(2) char gKartLuigi264[] = "__OTR__luigi_kart/luigi_kart_frame264"; - -static const ALIGN_ASSET(2) char gKartLuigi265[] = "__OTR__luigi_kart/luigi_kart_frame265"; - -static const ALIGN_ASSET(2) char gKartLuigi266[] = "__OTR__luigi_kart/luigi_kart_frame266"; - -static const ALIGN_ASSET(2) char gKartLuigi267[] = "__OTR__luigi_kart/luigi_kart_frame267"; - -static const ALIGN_ASSET(2) char gKartLuigi268[] = "__OTR__luigi_kart/luigi_kart_frame268"; - -static const ALIGN_ASSET(2) char gKartLuigi269[] = "__OTR__luigi_kart/luigi_kart_frame269"; - -static const ALIGN_ASSET(2) char gKartLuigi270[] = "__OTR__luigi_kart/luigi_kart_frame270"; - -static const ALIGN_ASSET(2) char gKartLuigi271[] = "__OTR__luigi_kart/luigi_kart_frame271"; - -static const ALIGN_ASSET(2) char gKartLuigi272[] = "__OTR__luigi_kart/luigi_kart_frame272"; - -static const ALIGN_ASSET(2) char gKartLuigi273[] = "__OTR__luigi_kart/luigi_kart_frame273"; - -static const ALIGN_ASSET(2) char gKartLuigi274[] = "__OTR__luigi_kart/luigi_kart_frame274"; - -static const ALIGN_ASSET(2) char gKartLuigi275[] = "__OTR__luigi_kart/luigi_kart_frame275"; - -static const ALIGN_ASSET(2) char gKartLuigi276[] = "__OTR__luigi_kart/luigi_kart_frame276"; - -static const ALIGN_ASSET(2) char gKartLuigi277[] = "__OTR__luigi_kart/luigi_kart_frame277"; - -static const ALIGN_ASSET(2) char gKartLuigi278[] = "__OTR__luigi_kart/luigi_kart_frame278"; - -static const ALIGN_ASSET(2) char gKartLuigi279[] = "__OTR__luigi_kart/luigi_kart_frame279"; - -static const ALIGN_ASSET(2) char gKartLuigi280[] = "__OTR__luigi_kart/luigi_kart_frame280"; - -static const ALIGN_ASSET(2) char gKartLuigi281[] = "__OTR__luigi_kart/luigi_kart_frame281"; - -static const ALIGN_ASSET(2) char gKartLuigi282[] = "__OTR__luigi_kart/luigi_kart_frame282"; - -static const ALIGN_ASSET(2) char gKartLuigi283[] = "__OTR__luigi_kart/luigi_kart_frame283"; - -static const ALIGN_ASSET(2) char gKartLuigi284[] = "__OTR__luigi_kart/luigi_kart_frame284"; - -static const ALIGN_ASSET(2) char gKartLuigi285[] = "__OTR__luigi_kart/luigi_kart_frame285"; - -static const ALIGN_ASSET(2) char gKartLuigi286[] = "__OTR__luigi_kart/luigi_kart_frame286"; - -static const ALIGN_ASSET(2) char gKartLuigi287[] = "__OTR__luigi_kart/luigi_kart_frame287"; - -static const ALIGN_ASSET(2) char gKartLuigi288[] = "__OTR__luigi_kart/luigi_kart_frame288"; - -static const ALIGN_ASSET(2) char gKartLuigi289[] = "__OTR__luigi_kart/luigi_kart_frame289"; - -static const ALIGN_ASSET(2) char gKartLuigi290[] = "__OTR__luigi_kart/luigi_kart_frame290"; - -static const ALIGN_ASSET(2) char gKartLuigi291[] = "__OTR__luigi_kart/luigi_kart_frame291"; - -static const ALIGN_ASSET(2) char gKartLuigi292[] = "__OTR__luigi_kart/luigi_kart_frame292"; - -static const ALIGN_ASSET(2) char gKartLuigi293[] = "__OTR__luigi_kart/luigi_kart_frame293"; - -static const ALIGN_ASSET(2) char gKartLuigi294[] = "__OTR__luigi_kart/luigi_kart_frame294"; - -static const ALIGN_ASSET(2) char gKartLuigi295[] = "__OTR__luigi_kart/luigi_kart_frame295"; - -static const ALIGN_ASSET(2) char gKartLuigi296[] = "__OTR__luigi_kart/luigi_kart_frame296"; - -static const ALIGN_ASSET(2) char gKartLuigi297[] = "__OTR__luigi_kart/luigi_kart_frame297"; - -static const ALIGN_ASSET(2) char gKartLuigi298[] = "__OTR__luigi_kart/luigi_kart_frame298"; - -static const ALIGN_ASSET(2) char gKartLuigi299[] = "__OTR__luigi_kart/luigi_kart_frame299"; - -static const ALIGN_ASSET(2) char gKartLuigi300[] = "__OTR__luigi_kart/luigi_kart_frame300"; - -static const ALIGN_ASSET(2) char gKartLuigi301[] = "__OTR__luigi_kart/luigi_kart_frame301"; - -static const ALIGN_ASSET(2) char gKartLuigi302[] = "__OTR__luigi_kart/luigi_kart_frame302"; - -static const ALIGN_ASSET(2) char gKartLuigi303[] = "__OTR__luigi_kart/luigi_kart_frame303"; - -static const ALIGN_ASSET(2) char gKartLuigi304[] = "__OTR__luigi_kart/luigi_kart_frame304"; - -static const ALIGN_ASSET(2) char gKartLuigi305[] = "__OTR__luigi_kart/luigi_kart_frame305"; - -static const ALIGN_ASSET(2) char gKartLuigi306[] = "__OTR__luigi_kart/luigi_kart_frame306"; - -static const ALIGN_ASSET(2) char gKartLuigi307[] = "__OTR__luigi_kart/luigi_kart_frame307"; - -static const ALIGN_ASSET(2) char gKartLuigi308[] = "__OTR__luigi_kart/luigi_kart_frame308"; - -static const ALIGN_ASSET(2) char gKartLuigi309[] = "__OTR__luigi_kart/luigi_kart_frame309"; - -static const ALIGN_ASSET(2) char gKartLuigi310[] = "__OTR__luigi_kart/luigi_kart_frame310"; - -static const ALIGN_ASSET(2) char gKartLuigi311[] = "__OTR__luigi_kart/luigi_kart_frame311"; - -static const ALIGN_ASSET(2) char gKartLuigi312[] = "__OTR__luigi_kart/luigi_kart_frame312"; - -static const ALIGN_ASSET(2) char gKartLuigi313[] = "__OTR__luigi_kart/luigi_kart_frame313"; - -static const ALIGN_ASSET(2) char gKartLuigi314[] = "__OTR__luigi_kart/luigi_kart_frame314"; - -static const ALIGN_ASSET(2) char gKartLuigi315[] = "__OTR__luigi_kart/luigi_kart_frame315"; - -static const ALIGN_ASSET(2) char gKartLuigi316[] = "__OTR__luigi_kart/luigi_kart_frame316"; - -static const ALIGN_ASSET(2) char gKartLuigi317[] = "__OTR__luigi_kart/luigi_kart_frame317"; - -static const ALIGN_ASSET(2) char gKartLuigi318[] = "__OTR__luigi_kart/luigi_kart_frame318"; - -static const ALIGN_ASSET(2) char gKartLuigi319[] = "__OTR__luigi_kart/luigi_kart_frame319"; - -static const ALIGN_ASSET(2) char gKartLuigi320[] = "__OTR__luigi_kart/luigi_kart_frame320"; - -static const ALIGN_ASSET(2) char gKartLuigi000Wheel0[] = "__OTR__luigi_kart/kart_000_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi000Wheel1[] = "__OTR__luigi_kart/kart_000_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi000Wheel2[] = "__OTR__luigi_kart/kart_000_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi000Wheel3[] = "__OTR__luigi_kart/kart_000_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi001Wheel0[] = "__OTR__luigi_kart/kart_001_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi001Wheel1[] = "__OTR__luigi_kart/kart_001_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi001Wheel2[] = "__OTR__luigi_kart/kart_001_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi001Wheel3[] = "__OTR__luigi_kart/kart_001_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi002Wheel0[] = "__OTR__luigi_kart/kart_002_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi002Wheel1[] = "__OTR__luigi_kart/kart_002_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi002Wheel2[] = "__OTR__luigi_kart/kart_002_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi002Wheel3[] = "__OTR__luigi_kart/kart_002_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi003Wheel0[] = "__OTR__luigi_kart/kart_003_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi003Wheel1[] = "__OTR__luigi_kart/kart_003_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi003Wheel2[] = "__OTR__luigi_kart/kart_003_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi003Wheel3[] = "__OTR__luigi_kart/kart_003_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi004Wheel0[] = "__OTR__luigi_kart/kart_004_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi004Wheel1[] = "__OTR__luigi_kart/kart_004_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi004Wheel2[] = "__OTR__luigi_kart/kart_004_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi004Wheel3[] = "__OTR__luigi_kart/kart_004_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi005Wheel0[] = "__OTR__luigi_kart/kart_005_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi005Wheel1[] = "__OTR__luigi_kart/kart_005_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi005Wheel2[] = "__OTR__luigi_kart/kart_005_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi005Wheel3[] = "__OTR__luigi_kart/kart_005_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi006Wheel0[] = "__OTR__luigi_kart/kart_006_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi006Wheel1[] = "__OTR__luigi_kart/kart_006_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi006Wheel2[] = "__OTR__luigi_kart/kart_006_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi006Wheel3[] = "__OTR__luigi_kart/kart_006_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi007Wheel0[] = "__OTR__luigi_kart/kart_007_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi007Wheel1[] = "__OTR__luigi_kart/kart_007_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi007Wheel2[] = "__OTR__luigi_kart/kart_007_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi007Wheel3[] = "__OTR__luigi_kart/kart_007_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi008Wheel0[] = "__OTR__luigi_kart/kart_008_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi008Wheel1[] = "__OTR__luigi_kart/kart_008_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi008Wheel2[] = "__OTR__luigi_kart/kart_008_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi008Wheel3[] = "__OTR__luigi_kart/kart_008_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi009Wheel0[] = "__OTR__luigi_kart/kart_009_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi009Wheel1[] = "__OTR__luigi_kart/kart_009_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi009Wheel2[] = "__OTR__luigi_kart/kart_009_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi009Wheel3[] = "__OTR__luigi_kart/kart_009_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi010Wheel0[] = "__OTR__luigi_kart/kart_010_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi010Wheel1[] = "__OTR__luigi_kart/kart_010_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi010Wheel2[] = "__OTR__luigi_kart/kart_010_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi010Wheel3[] = "__OTR__luigi_kart/kart_010_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi011Wheel0[] = "__OTR__luigi_kart/kart_011_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi011Wheel1[] = "__OTR__luigi_kart/kart_011_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi011Wheel2[] = "__OTR__luigi_kart/kart_011_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi011Wheel3[] = "__OTR__luigi_kart/kart_011_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi012Wheel0[] = "__OTR__luigi_kart/kart_012_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi012Wheel1[] = "__OTR__luigi_kart/kart_012_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi012Wheel2[] = "__OTR__luigi_kart/kart_012_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi012Wheel3[] = "__OTR__luigi_kart/kart_012_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi013Wheel0[] = "__OTR__luigi_kart/kart_013_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi013Wheel1[] = "__OTR__luigi_kart/kart_013_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi013Wheel2[] = "__OTR__luigi_kart/kart_013_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi013Wheel3[] = "__OTR__luigi_kart/kart_013_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi014Wheel0[] = "__OTR__luigi_kart/kart_014_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi014Wheel1[] = "__OTR__luigi_kart/kart_014_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi014Wheel2[] = "__OTR__luigi_kart/kart_014_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi014Wheel3[] = "__OTR__luigi_kart/kart_014_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi015Wheel0[] = "__OTR__luigi_kart/kart_015_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi015Wheel1[] = "__OTR__luigi_kart/kart_015_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi015Wheel2[] = "__OTR__luigi_kart/kart_015_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi015Wheel3[] = "__OTR__luigi_kart/kart_015_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi016Wheel0[] = "__OTR__luigi_kart/kart_016_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi016Wheel1[] = "__OTR__luigi_kart/kart_016_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi016Wheel2[] = "__OTR__luigi_kart/kart_016_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi016Wheel3[] = "__OTR__luigi_kart/kart_016_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi017Wheel0[] = "__OTR__luigi_kart/kart_017_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi017Wheel1[] = "__OTR__luigi_kart/kart_017_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi017Wheel2[] = "__OTR__luigi_kart/kart_017_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi017Wheel3[] = "__OTR__luigi_kart/kart_017_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi018Wheel0[] = "__OTR__luigi_kart/kart_018_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi018Wheel1[] = "__OTR__luigi_kart/kart_018_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi018Wheel2[] = "__OTR__luigi_kart/kart_018_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi018Wheel3[] = "__OTR__luigi_kart/kart_018_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi019Wheel0[] = "__OTR__luigi_kart/kart_019_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi019Wheel1[] = "__OTR__luigi_kart/kart_019_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi019Wheel2[] = "__OTR__luigi_kart/kart_019_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi019Wheel3[] = "__OTR__luigi_kart/kart_019_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi020Wheel0[] = "__OTR__luigi_kart/kart_020_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi020Wheel1[] = "__OTR__luigi_kart/kart_020_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi020Wheel2[] = "__OTR__luigi_kart/kart_020_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi020Wheel3[] = "__OTR__luigi_kart/kart_020_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi021Wheel0[] = "__OTR__luigi_kart/kart_021_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi021Wheel1[] = "__OTR__luigi_kart/kart_021_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi021Wheel2[] = "__OTR__luigi_kart/kart_021_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi021Wheel3[] = "__OTR__luigi_kart/kart_021_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi022Wheel0[] = "__OTR__luigi_kart/kart_022_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi022Wheel1[] = "__OTR__luigi_kart/kart_022_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi022Wheel2[] = "__OTR__luigi_kart/kart_022_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi022Wheel3[] = "__OTR__luigi_kart/kart_022_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi023Wheel0[] = "__OTR__luigi_kart/kart_023_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi023Wheel1[] = "__OTR__luigi_kart/kart_023_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi023Wheel2[] = "__OTR__luigi_kart/kart_023_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi023Wheel3[] = "__OTR__luigi_kart/kart_023_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi024Wheel0[] = "__OTR__luigi_kart/kart_024_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi024Wheel1[] = "__OTR__luigi_kart/kart_024_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi024Wheel2[] = "__OTR__luigi_kart/kart_024_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi024Wheel3[] = "__OTR__luigi_kart/kart_024_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi025Wheel0[] = "__OTR__luigi_kart/kart_025_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi025Wheel1[] = "__OTR__luigi_kart/kart_025_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi025Wheel2[] = "__OTR__luigi_kart/kart_025_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi025Wheel3[] = "__OTR__luigi_kart/kart_025_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi026Wheel0[] = "__OTR__luigi_kart/kart_026_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi026Wheel1[] = "__OTR__luigi_kart/kart_026_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi026Wheel2[] = "__OTR__luigi_kart/kart_026_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi026Wheel3[] = "__OTR__luigi_kart/kart_026_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi027Wheel0[] = "__OTR__luigi_kart/kart_027_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi027Wheel1[] = "__OTR__luigi_kart/kart_027_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi027Wheel2[] = "__OTR__luigi_kart/kart_027_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi027Wheel3[] = "__OTR__luigi_kart/kart_027_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi028Wheel0[] = "__OTR__luigi_kart/kart_028_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi028Wheel1[] = "__OTR__luigi_kart/kart_028_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi028Wheel2[] = "__OTR__luigi_kart/kart_028_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi028Wheel3[] = "__OTR__luigi_kart/kart_028_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi029Wheel0[] = "__OTR__luigi_kart/kart_029_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi029Wheel1[] = "__OTR__luigi_kart/kart_029_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi029Wheel2[] = "__OTR__luigi_kart/kart_029_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi029Wheel3[] = "__OTR__luigi_kart/kart_029_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi030Wheel0[] = "__OTR__luigi_kart/kart_030_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi030Wheel1[] = "__OTR__luigi_kart/kart_030_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi030Wheel2[] = "__OTR__luigi_kart/kart_030_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi030Wheel3[] = "__OTR__luigi_kart/kart_030_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi031Wheel0[] = "__OTR__luigi_kart/kart_031_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi031Wheel1[] = "__OTR__luigi_kart/kart_031_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi031Wheel2[] = "__OTR__luigi_kart/kart_031_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi031Wheel3[] = "__OTR__luigi_kart/kart_031_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi032Wheel0[] = "__OTR__luigi_kart/kart_032_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi032Wheel1[] = "__OTR__luigi_kart/kart_032_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi032Wheel2[] = "__OTR__luigi_kart/kart_032_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi032Wheel3[] = "__OTR__luigi_kart/kart_032_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi033Wheel0[] = "__OTR__luigi_kart/kart_033_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi033Wheel1[] = "__OTR__luigi_kart/kart_033_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi033Wheel2[] = "__OTR__luigi_kart/kart_033_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi033Wheel3[] = "__OTR__luigi_kart/kart_033_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi034Wheel0[] = "__OTR__luigi_kart/kart_034_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi034Wheel1[] = "__OTR__luigi_kart/kart_034_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi034Wheel2[] = "__OTR__luigi_kart/kart_034_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi034Wheel3[] = "__OTR__luigi_kart/kart_034_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi035Wheel0[] = "__OTR__luigi_kart/kart_035_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi035Wheel1[] = "__OTR__luigi_kart/kart_035_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi035Wheel2[] = "__OTR__luigi_kart/kart_035_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi035Wheel3[] = "__OTR__luigi_kart/kart_035_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi036Wheel0[] = "__OTR__luigi_kart/kart_036_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi036Wheel1[] = "__OTR__luigi_kart/kart_036_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi036Wheel2[] = "__OTR__luigi_kart/kart_036_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi036Wheel3[] = "__OTR__luigi_kart/kart_036_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi037Wheel0[] = "__OTR__luigi_kart/kart_037_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi037Wheel1[] = "__OTR__luigi_kart/kart_037_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi037Wheel2[] = "__OTR__luigi_kart/kart_037_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi037Wheel3[] = "__OTR__luigi_kart/kart_037_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi038Wheel0[] = "__OTR__luigi_kart/kart_038_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi038Wheel1[] = "__OTR__luigi_kart/kart_038_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi038Wheel2[] = "__OTR__luigi_kart/kart_038_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi038Wheel3[] = "__OTR__luigi_kart/kart_038_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi039Wheel0[] = "__OTR__luigi_kart/kart_039_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi039Wheel1[] = "__OTR__luigi_kart/kart_039_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi039Wheel2[] = "__OTR__luigi_kart/kart_039_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi039Wheel3[] = "__OTR__luigi_kart/kart_039_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi040Wheel0[] = "__OTR__luigi_kart/kart_040_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi040Wheel1[] = "__OTR__luigi_kart/kart_040_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi040Wheel2[] = "__OTR__luigi_kart/kart_040_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi040Wheel3[] = "__OTR__luigi_kart/kart_040_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi041Wheel0[] = "__OTR__luigi_kart/kart_041_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi041Wheel1[] = "__OTR__luigi_kart/kart_041_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi041Wheel2[] = "__OTR__luigi_kart/kart_041_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi041Wheel3[] = "__OTR__luigi_kart/kart_041_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi042Wheel0[] = "__OTR__luigi_kart/kart_042_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi042Wheel1[] = "__OTR__luigi_kart/kart_042_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi042Wheel2[] = "__OTR__luigi_kart/kart_042_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi042Wheel3[] = "__OTR__luigi_kart/kart_042_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi043Wheel0[] = "__OTR__luigi_kart/kart_043_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi043Wheel1[] = "__OTR__luigi_kart/kart_043_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi043Wheel2[] = "__OTR__luigi_kart/kart_043_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi043Wheel3[] = "__OTR__luigi_kart/kart_043_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi044Wheel0[] = "__OTR__luigi_kart/kart_044_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi044Wheel1[] = "__OTR__luigi_kart/kart_044_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi044Wheel2[] = "__OTR__luigi_kart/kart_044_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi044Wheel3[] = "__OTR__luigi_kart/kart_044_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi045Wheel0[] = "__OTR__luigi_kart/kart_045_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi045Wheel1[] = "__OTR__luigi_kart/kart_045_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi045Wheel2[] = "__OTR__luigi_kart/kart_045_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi045Wheel3[] = "__OTR__luigi_kart/kart_045_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi046Wheel0[] = "__OTR__luigi_kart/kart_046_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi046Wheel1[] = "__OTR__luigi_kart/kart_046_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi046Wheel2[] = "__OTR__luigi_kart/kart_046_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi046Wheel3[] = "__OTR__luigi_kart/kart_046_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi047Wheel0[] = "__OTR__luigi_kart/kart_047_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi047Wheel1[] = "__OTR__luigi_kart/kart_047_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi047Wheel2[] = "__OTR__luigi_kart/kart_047_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi047Wheel3[] = "__OTR__luigi_kart/kart_047_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi048Wheel0[] = "__OTR__luigi_kart/kart_048_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi048Wheel1[] = "__OTR__luigi_kart/kart_048_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi048Wheel2[] = "__OTR__luigi_kart/kart_048_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi048Wheel3[] = "__OTR__luigi_kart/kart_048_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi049Wheel0[] = "__OTR__luigi_kart/kart_049_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi049Wheel1[] = "__OTR__luigi_kart/kart_049_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi049Wheel2[] = "__OTR__luigi_kart/kart_049_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi049Wheel3[] = "__OTR__luigi_kart/kart_049_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi050Wheel0[] = "__OTR__luigi_kart/kart_050_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi050Wheel1[] = "__OTR__luigi_kart/kart_050_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi050Wheel2[] = "__OTR__luigi_kart/kart_050_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi050Wheel3[] = "__OTR__luigi_kart/kart_050_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi051Wheel0[] = "__OTR__luigi_kart/kart_051_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi051Wheel1[] = "__OTR__luigi_kart/kart_051_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi051Wheel2[] = "__OTR__luigi_kart/kart_051_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi051Wheel3[] = "__OTR__luigi_kart/kart_051_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi052Wheel0[] = "__OTR__luigi_kart/kart_052_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi052Wheel1[] = "__OTR__luigi_kart/kart_052_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi052Wheel2[] = "__OTR__luigi_kart/kart_052_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi052Wheel3[] = "__OTR__luigi_kart/kart_052_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi053Wheel0[] = "__OTR__luigi_kart/kart_053_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi053Wheel1[] = "__OTR__luigi_kart/kart_053_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi053Wheel2[] = "__OTR__luigi_kart/kart_053_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi053Wheel3[] = "__OTR__luigi_kart/kart_053_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi054Wheel0[] = "__OTR__luigi_kart/kart_054_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi054Wheel1[] = "__OTR__luigi_kart/kart_054_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi054Wheel2[] = "__OTR__luigi_kart/kart_054_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi054Wheel3[] = "__OTR__luigi_kart/kart_054_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi055Wheel0[] = "__OTR__luigi_kart/kart_055_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi055Wheel1[] = "__OTR__luigi_kart/kart_055_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi055Wheel2[] = "__OTR__luigi_kart/kart_055_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi055Wheel3[] = "__OTR__luigi_kart/kart_055_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi056Wheel0[] = "__OTR__luigi_kart/kart_056_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi056Wheel1[] = "__OTR__luigi_kart/kart_056_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi056Wheel2[] = "__OTR__luigi_kart/kart_056_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi056Wheel3[] = "__OTR__luigi_kart/kart_056_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi057Wheel0[] = "__OTR__luigi_kart/kart_057_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi057Wheel1[] = "__OTR__luigi_kart/kart_057_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi057Wheel2[] = "__OTR__luigi_kart/kart_057_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi057Wheel3[] = "__OTR__luigi_kart/kart_057_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi058Wheel0[] = "__OTR__luigi_kart/kart_058_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi058Wheel1[] = "__OTR__luigi_kart/kart_058_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi058Wheel2[] = "__OTR__luigi_kart/kart_058_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi058Wheel3[] = "__OTR__luigi_kart/kart_058_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi059Wheel0[] = "__OTR__luigi_kart/kart_059_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi059Wheel1[] = "__OTR__luigi_kart/kart_059_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi059Wheel2[] = "__OTR__luigi_kart/kart_059_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi059Wheel3[] = "__OTR__luigi_kart/kart_059_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi060Wheel0[] = "__OTR__luigi_kart/kart_060_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi060Wheel1[] = "__OTR__luigi_kart/kart_060_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi060Wheel2[] = "__OTR__luigi_kart/kart_060_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi060Wheel3[] = "__OTR__luigi_kart/kart_060_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi061Wheel0[] = "__OTR__luigi_kart/kart_061_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi061Wheel1[] = "__OTR__luigi_kart/kart_061_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi061Wheel2[] = "__OTR__luigi_kart/kart_061_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi061Wheel3[] = "__OTR__luigi_kart/kart_061_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi062Wheel0[] = "__OTR__luigi_kart/kart_062_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi062Wheel1[] = "__OTR__luigi_kart/kart_062_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi062Wheel2[] = "__OTR__luigi_kart/kart_062_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi062Wheel3[] = "__OTR__luigi_kart/kart_062_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi063Wheel0[] = "__OTR__luigi_kart/kart_063_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi063Wheel1[] = "__OTR__luigi_kart/kart_063_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi063Wheel2[] = "__OTR__luigi_kart/kart_063_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi063Wheel3[] = "__OTR__luigi_kart/kart_063_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi064Wheel0[] = "__OTR__luigi_kart/kart_064_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi064Wheel1[] = "__OTR__luigi_kart/kart_064_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi064Wheel2[] = "__OTR__luigi_kart/kart_064_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi064Wheel3[] = "__OTR__luigi_kart/kart_064_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi065Wheel0[] = "__OTR__luigi_kart/kart_065_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi065Wheel1[] = "__OTR__luigi_kart/kart_065_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi065Wheel2[] = "__OTR__luigi_kart/kart_065_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi065Wheel3[] = "__OTR__luigi_kart/kart_065_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi066Wheel0[] = "__OTR__luigi_kart/kart_066_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi066Wheel1[] = "__OTR__luigi_kart/kart_066_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi066Wheel2[] = "__OTR__luigi_kart/kart_066_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi066Wheel3[] = "__OTR__luigi_kart/kart_066_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi067Wheel0[] = "__OTR__luigi_kart/kart_067_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi067Wheel1[] = "__OTR__luigi_kart/kart_067_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi067Wheel2[] = "__OTR__luigi_kart/kart_067_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi067Wheel3[] = "__OTR__luigi_kart/kart_067_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi068Wheel0[] = "__OTR__luigi_kart/kart_068_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi068Wheel1[] = "__OTR__luigi_kart/kart_068_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi068Wheel2[] = "__OTR__luigi_kart/kart_068_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi068Wheel3[] = "__OTR__luigi_kart/kart_068_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi069Wheel0[] = "__OTR__luigi_kart/kart_069_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi069Wheel1[] = "__OTR__luigi_kart/kart_069_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi069Wheel2[] = "__OTR__luigi_kart/kart_069_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi069Wheel3[] = "__OTR__luigi_kart/kart_069_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi070Wheel0[] = "__OTR__luigi_kart/kart_070_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi070Wheel1[] = "__OTR__luigi_kart/kart_070_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi070Wheel2[] = "__OTR__luigi_kart/kart_070_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi070Wheel3[] = "__OTR__luigi_kart/kart_070_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi071Wheel0[] = "__OTR__luigi_kart/kart_071_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi071Wheel1[] = "__OTR__luigi_kart/kart_071_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi071Wheel2[] = "__OTR__luigi_kart/kart_071_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi071Wheel3[] = "__OTR__luigi_kart/kart_071_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi072Wheel0[] = "__OTR__luigi_kart/kart_072_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi072Wheel1[] = "__OTR__luigi_kart/kart_072_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi072Wheel2[] = "__OTR__luigi_kart/kart_072_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi072Wheel3[] = "__OTR__luigi_kart/kart_072_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi073Wheel0[] = "__OTR__luigi_kart/kart_073_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi073Wheel1[] = "__OTR__luigi_kart/kart_073_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi073Wheel2[] = "__OTR__luigi_kart/kart_073_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi073Wheel3[] = "__OTR__luigi_kart/kart_073_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi074Wheel0[] = "__OTR__luigi_kart/kart_074_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi074Wheel1[] = "__OTR__luigi_kart/kart_074_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi074Wheel2[] = "__OTR__luigi_kart/kart_074_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi074Wheel3[] = "__OTR__luigi_kart/kart_074_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi075Wheel0[] = "__OTR__luigi_kart/kart_075_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi075Wheel1[] = "__OTR__luigi_kart/kart_075_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi075Wheel2[] = "__OTR__luigi_kart/kart_075_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi075Wheel3[] = "__OTR__luigi_kart/kart_075_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi076Wheel0[] = "__OTR__luigi_kart/kart_076_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi076Wheel1[] = "__OTR__luigi_kart/kart_076_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi076Wheel2[] = "__OTR__luigi_kart/kart_076_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi076Wheel3[] = "__OTR__luigi_kart/kart_076_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi077Wheel0[] = "__OTR__luigi_kart/kart_077_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi077Wheel1[] = "__OTR__luigi_kart/kart_077_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi077Wheel2[] = "__OTR__luigi_kart/kart_077_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi077Wheel3[] = "__OTR__luigi_kart/kart_077_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi078Wheel0[] = "__OTR__luigi_kart/kart_078_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi078Wheel1[] = "__OTR__luigi_kart/kart_078_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi078Wheel2[] = "__OTR__luigi_kart/kart_078_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi078Wheel3[] = "__OTR__luigi_kart/kart_078_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi079Wheel0[] = "__OTR__luigi_kart/kart_079_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi079Wheel1[] = "__OTR__luigi_kart/kart_079_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi079Wheel2[] = "__OTR__luigi_kart/kart_079_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi079Wheel3[] = "__OTR__luigi_kart/kart_079_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi080Wheel0[] = "__OTR__luigi_kart/kart_080_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi080Wheel1[] = "__OTR__luigi_kart/kart_080_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi080Wheel2[] = "__OTR__luigi_kart/kart_080_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi080Wheel3[] = "__OTR__luigi_kart/kart_080_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi081Wheel0[] = "__OTR__luigi_kart/kart_081_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi081Wheel1[] = "__OTR__luigi_kart/kart_081_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi081Wheel2[] = "__OTR__luigi_kart/kart_081_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi081Wheel3[] = "__OTR__luigi_kart/kart_081_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi082Wheel0[] = "__OTR__luigi_kart/kart_082_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi082Wheel1[] = "__OTR__luigi_kart/kart_082_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi082Wheel2[] = "__OTR__luigi_kart/kart_082_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi082Wheel3[] = "__OTR__luigi_kart/kart_082_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi083Wheel0[] = "__OTR__luigi_kart/kart_083_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi083Wheel1[] = "__OTR__luigi_kart/kart_083_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi083Wheel2[] = "__OTR__luigi_kart/kart_083_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi083Wheel3[] = "__OTR__luigi_kart/kart_083_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi084Wheel0[] = "__OTR__luigi_kart/kart_084_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi084Wheel1[] = "__OTR__luigi_kart/kart_084_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi084Wheel2[] = "__OTR__luigi_kart/kart_084_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi084Wheel3[] = "__OTR__luigi_kart/kart_084_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi085Wheel0[] = "__OTR__luigi_kart/kart_085_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi085Wheel1[] = "__OTR__luigi_kart/kart_085_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi085Wheel2[] = "__OTR__luigi_kart/kart_085_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi085Wheel3[] = "__OTR__luigi_kart/kart_085_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi086Wheel0[] = "__OTR__luigi_kart/kart_086_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi086Wheel1[] = "__OTR__luigi_kart/kart_086_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi086Wheel2[] = "__OTR__luigi_kart/kart_086_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi086Wheel3[] = "__OTR__luigi_kart/kart_086_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi087Wheel0[] = "__OTR__luigi_kart/kart_087_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi087Wheel1[] = "__OTR__luigi_kart/kart_087_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi087Wheel2[] = "__OTR__luigi_kart/kart_087_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi087Wheel3[] = "__OTR__luigi_kart/kart_087_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi088Wheel0[] = "__OTR__luigi_kart/kart_088_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi088Wheel1[] = "__OTR__luigi_kart/kart_088_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi088Wheel2[] = "__OTR__luigi_kart/kart_088_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi088Wheel3[] = "__OTR__luigi_kart/kart_088_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi089Wheel0[] = "__OTR__luigi_kart/kart_089_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi089Wheel1[] = "__OTR__luigi_kart/kart_089_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi089Wheel2[] = "__OTR__luigi_kart/kart_089_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi089Wheel3[] = "__OTR__luigi_kart/kart_089_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi090Wheel0[] = "__OTR__luigi_kart/kart_090_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi090Wheel1[] = "__OTR__luigi_kart/kart_090_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi090Wheel2[] = "__OTR__luigi_kart/kart_090_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi090Wheel3[] = "__OTR__luigi_kart/kart_090_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi091Wheel0[] = "__OTR__luigi_kart/kart_091_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi091Wheel1[] = "__OTR__luigi_kart/kart_091_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi091Wheel2[] = "__OTR__luigi_kart/kart_091_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi091Wheel3[] = "__OTR__luigi_kart/kart_091_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi092Wheel0[] = "__OTR__luigi_kart/kart_092_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi092Wheel1[] = "__OTR__luigi_kart/kart_092_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi092Wheel2[] = "__OTR__luigi_kart/kart_092_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi092Wheel3[] = "__OTR__luigi_kart/kart_092_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi093Wheel0[] = "__OTR__luigi_kart/kart_093_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi093Wheel1[] = "__OTR__luigi_kart/kart_093_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi093Wheel2[] = "__OTR__luigi_kart/kart_093_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi093Wheel3[] = "__OTR__luigi_kart/kart_093_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi094Wheel0[] = "__OTR__luigi_kart/kart_094_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi094Wheel1[] = "__OTR__luigi_kart/kart_094_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi094Wheel2[] = "__OTR__luigi_kart/kart_094_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi094Wheel3[] = "__OTR__luigi_kart/kart_094_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi095Wheel0[] = "__OTR__luigi_kart/kart_095_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi095Wheel1[] = "__OTR__luigi_kart/kart_095_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi095Wheel2[] = "__OTR__luigi_kart/kart_095_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi095Wheel3[] = "__OTR__luigi_kart/kart_095_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi096Wheel0[] = "__OTR__luigi_kart/kart_096_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi096Wheel1[] = "__OTR__luigi_kart/kart_096_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi096Wheel2[] = "__OTR__luigi_kart/kart_096_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi096Wheel3[] = "__OTR__luigi_kart/kart_096_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi097Wheel0[] = "__OTR__luigi_kart/kart_097_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi097Wheel1[] = "__OTR__luigi_kart/kart_097_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi097Wheel2[] = "__OTR__luigi_kart/kart_097_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi097Wheel3[] = "__OTR__luigi_kart/kart_097_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi098Wheel0[] = "__OTR__luigi_kart/kart_098_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi098Wheel1[] = "__OTR__luigi_kart/kart_098_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi098Wheel2[] = "__OTR__luigi_kart/kart_098_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi098Wheel3[] = "__OTR__luigi_kart/kart_098_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi099Wheel0[] = "__OTR__luigi_kart/kart_099_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi099Wheel1[] = "__OTR__luigi_kart/kart_099_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi099Wheel2[] = "__OTR__luigi_kart/kart_099_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi099Wheel3[] = "__OTR__luigi_kart/kart_099_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi100Wheel0[] = "__OTR__luigi_kart/kart_100_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi100Wheel1[] = "__OTR__luigi_kart/kart_100_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi100Wheel2[] = "__OTR__luigi_kart/kart_100_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi100Wheel3[] = "__OTR__luigi_kart/kart_100_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi101Wheel0[] = "__OTR__luigi_kart/kart_101_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi101Wheel1[] = "__OTR__luigi_kart/kart_101_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi101Wheel2[] = "__OTR__luigi_kart/kart_101_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi101Wheel3[] = "__OTR__luigi_kart/kart_101_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi102Wheel0[] = "__OTR__luigi_kart/kart_102_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi102Wheel1[] = "__OTR__luigi_kart/kart_102_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi102Wheel2[] = "__OTR__luigi_kart/kart_102_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi102Wheel3[] = "__OTR__luigi_kart/kart_102_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi103Wheel0[] = "__OTR__luigi_kart/kart_103_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi103Wheel1[] = "__OTR__luigi_kart/kart_103_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi103Wheel2[] = "__OTR__luigi_kart/kart_103_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi103Wheel3[] = "__OTR__luigi_kart/kart_103_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi104Wheel0[] = "__OTR__luigi_kart/kart_104_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi104Wheel1[] = "__OTR__luigi_kart/kart_104_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi104Wheel2[] = "__OTR__luigi_kart/kart_104_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi104Wheel3[] = "__OTR__luigi_kart/kart_104_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi105Wheel0[] = "__OTR__luigi_kart/kart_105_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi105Wheel1[] = "__OTR__luigi_kart/kart_105_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi105Wheel2[] = "__OTR__luigi_kart/kart_105_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi105Wheel3[] = "__OTR__luigi_kart/kart_105_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi106Wheel0[] = "__OTR__luigi_kart/kart_106_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi106Wheel1[] = "__OTR__luigi_kart/kart_106_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi106Wheel2[] = "__OTR__luigi_kart/kart_106_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi106Wheel3[] = "__OTR__luigi_kart/kart_106_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi107Wheel0[] = "__OTR__luigi_kart/kart_107_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi107Wheel1[] = "__OTR__luigi_kart/kart_107_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi107Wheel2[] = "__OTR__luigi_kart/kart_107_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi107Wheel3[] = "__OTR__luigi_kart/kart_107_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi108Wheel0[] = "__OTR__luigi_kart/kart_108_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi108Wheel1[] = "__OTR__luigi_kart/kart_108_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi108Wheel2[] = "__OTR__luigi_kart/kart_108_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi108Wheel3[] = "__OTR__luigi_kart/kart_108_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi109Wheel0[] = "__OTR__luigi_kart/kart_109_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi109Wheel1[] = "__OTR__luigi_kart/kart_109_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi109Wheel2[] = "__OTR__luigi_kart/kart_109_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi109Wheel3[] = "__OTR__luigi_kart/kart_109_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi110Wheel0[] = "__OTR__luigi_kart/kart_110_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi110Wheel1[] = "__OTR__luigi_kart/kart_110_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi110Wheel2[] = "__OTR__luigi_kart/kart_110_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi110Wheel3[] = "__OTR__luigi_kart/kart_110_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi111Wheel0[] = "__OTR__luigi_kart/kart_111_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi111Wheel1[] = "__OTR__luigi_kart/kart_111_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi111Wheel2[] = "__OTR__luigi_kart/kart_111_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi111Wheel3[] = "__OTR__luigi_kart/kart_111_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi112Wheel0[] = "__OTR__luigi_kart/kart_112_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi112Wheel1[] = "__OTR__luigi_kart/kart_112_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi112Wheel2[] = "__OTR__luigi_kart/kart_112_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi112Wheel3[] = "__OTR__luigi_kart/kart_112_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi113Wheel0[] = "__OTR__luigi_kart/kart_113_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi113Wheel1[] = "__OTR__luigi_kart/kart_113_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi113Wheel2[] = "__OTR__luigi_kart/kart_113_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi113Wheel3[] = "__OTR__luigi_kart/kart_113_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi114Wheel0[] = "__OTR__luigi_kart/kart_114_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi114Wheel1[] = "__OTR__luigi_kart/kart_114_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi114Wheel2[] = "__OTR__luigi_kart/kart_114_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi114Wheel3[] = "__OTR__luigi_kart/kart_114_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi115Wheel0[] = "__OTR__luigi_kart/kart_115_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi115Wheel1[] = "__OTR__luigi_kart/kart_115_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi115Wheel2[] = "__OTR__luigi_kart/kart_115_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi115Wheel3[] = "__OTR__luigi_kart/kart_115_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi116Wheel0[] = "__OTR__luigi_kart/kart_116_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi116Wheel1[] = "__OTR__luigi_kart/kart_116_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi116Wheel2[] = "__OTR__luigi_kart/kart_116_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi116Wheel3[] = "__OTR__luigi_kart/kart_116_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi117Wheel0[] = "__OTR__luigi_kart/kart_117_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi117Wheel1[] = "__OTR__luigi_kart/kart_117_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi117Wheel2[] = "__OTR__luigi_kart/kart_117_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi117Wheel3[] = "__OTR__luigi_kart/kart_117_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi118Wheel0[] = "__OTR__luigi_kart/kart_118_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi118Wheel1[] = "__OTR__luigi_kart/kart_118_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi118Wheel2[] = "__OTR__luigi_kart/kart_118_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi118Wheel3[] = "__OTR__luigi_kart/kart_118_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi119Wheel0[] = "__OTR__luigi_kart/kart_119_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi119Wheel1[] = "__OTR__luigi_kart/kart_119_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi119Wheel2[] = "__OTR__luigi_kart/kart_119_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi119Wheel3[] = "__OTR__luigi_kart/kart_119_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi120Wheel0[] = "__OTR__luigi_kart/kart_120_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi120Wheel1[] = "__OTR__luigi_kart/kart_120_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi120Wheel2[] = "__OTR__luigi_kart/kart_120_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi120Wheel3[] = "__OTR__luigi_kart/kart_120_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi121Wheel0[] = "__OTR__luigi_kart/kart_121_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi121Wheel1[] = "__OTR__luigi_kart/kart_121_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi121Wheel2[] = "__OTR__luigi_kart/kart_121_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi121Wheel3[] = "__OTR__luigi_kart/kart_121_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi122Wheel0[] = "__OTR__luigi_kart/kart_122_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi122Wheel1[] = "__OTR__luigi_kart/kart_122_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi122Wheel2[] = "__OTR__luigi_kart/kart_122_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi122Wheel3[] = "__OTR__luigi_kart/kart_122_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi123Wheel0[] = "__OTR__luigi_kart/kart_123_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi123Wheel1[] = "__OTR__luigi_kart/kart_123_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi123Wheel2[] = "__OTR__luigi_kart/kart_123_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi123Wheel3[] = "__OTR__luigi_kart/kart_123_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi124Wheel0[] = "__OTR__luigi_kart/kart_124_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi124Wheel1[] = "__OTR__luigi_kart/kart_124_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi124Wheel2[] = "__OTR__luigi_kart/kart_124_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi124Wheel3[] = "__OTR__luigi_kart/kart_124_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi125Wheel0[] = "__OTR__luigi_kart/kart_125_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi125Wheel1[] = "__OTR__luigi_kart/kart_125_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi125Wheel2[] = "__OTR__luigi_kart/kart_125_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi125Wheel3[] = "__OTR__luigi_kart/kart_125_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi126Wheel0[] = "__OTR__luigi_kart/kart_126_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi126Wheel1[] = "__OTR__luigi_kart/kart_126_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi126Wheel2[] = "__OTR__luigi_kart/kart_126_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi126Wheel3[] = "__OTR__luigi_kart/kart_126_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi127Wheel0[] = "__OTR__luigi_kart/kart_127_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi127Wheel1[] = "__OTR__luigi_kart/kart_127_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi127Wheel2[] = "__OTR__luigi_kart/kart_127_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi127Wheel3[] = "__OTR__luigi_kart/kart_127_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi128Wheel0[] = "__OTR__luigi_kart/kart_128_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi128Wheel1[] = "__OTR__luigi_kart/kart_128_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi128Wheel2[] = "__OTR__luigi_kart/kart_128_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi128Wheel3[] = "__OTR__luigi_kart/kart_128_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi129Wheel0[] = "__OTR__luigi_kart/kart_129_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi129Wheel1[] = "__OTR__luigi_kart/kart_129_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi129Wheel2[] = "__OTR__luigi_kart/kart_129_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi129Wheel3[] = "__OTR__luigi_kart/kart_129_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi130Wheel0[] = "__OTR__luigi_kart/kart_130_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi130Wheel1[] = "__OTR__luigi_kart/kart_130_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi130Wheel2[] = "__OTR__luigi_kart/kart_130_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi130Wheel3[] = "__OTR__luigi_kart/kart_130_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi131Wheel0[] = "__OTR__luigi_kart/kart_131_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi131Wheel1[] = "__OTR__luigi_kart/kart_131_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi131Wheel2[] = "__OTR__luigi_kart/kart_131_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi131Wheel3[] = "__OTR__luigi_kart/kart_131_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi132Wheel0[] = "__OTR__luigi_kart/kart_132_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi132Wheel1[] = "__OTR__luigi_kart/kart_132_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi132Wheel2[] = "__OTR__luigi_kart/kart_132_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi132Wheel3[] = "__OTR__luigi_kart/kart_132_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi133Wheel0[] = "__OTR__luigi_kart/kart_133_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi133Wheel1[] = "__OTR__luigi_kart/kart_133_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi133Wheel2[] = "__OTR__luigi_kart/kart_133_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi133Wheel3[] = "__OTR__luigi_kart/kart_133_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi134Wheel0[] = "__OTR__luigi_kart/kart_134_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi134Wheel1[] = "__OTR__luigi_kart/kart_134_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi134Wheel2[] = "__OTR__luigi_kart/kart_134_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi134Wheel3[] = "__OTR__luigi_kart/kart_134_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi135Wheel0[] = "__OTR__luigi_kart/kart_135_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi135Wheel1[] = "__OTR__luigi_kart/kart_135_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi135Wheel2[] = "__OTR__luigi_kart/kart_135_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi135Wheel3[] = "__OTR__luigi_kart/kart_135_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi136Wheel0[] = "__OTR__luigi_kart/kart_136_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi136Wheel1[] = "__OTR__luigi_kart/kart_136_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi136Wheel2[] = "__OTR__luigi_kart/kart_136_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi136Wheel3[] = "__OTR__luigi_kart/kart_136_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi137Wheel0[] = "__OTR__luigi_kart/kart_137_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi137Wheel1[] = "__OTR__luigi_kart/kart_137_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi137Wheel2[] = "__OTR__luigi_kart/kart_137_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi137Wheel3[] = "__OTR__luigi_kart/kart_137_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi138Wheel0[] = "__OTR__luigi_kart/kart_138_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi138Wheel1[] = "__OTR__luigi_kart/kart_138_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi138Wheel2[] = "__OTR__luigi_kart/kart_138_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi138Wheel3[] = "__OTR__luigi_kart/kart_138_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi139Wheel0[] = "__OTR__luigi_kart/kart_139_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi139Wheel1[] = "__OTR__luigi_kart/kart_139_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi139Wheel2[] = "__OTR__luigi_kart/kart_139_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi139Wheel3[] = "__OTR__luigi_kart/kart_139_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi140Wheel0[] = "__OTR__luigi_kart/kart_140_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi140Wheel1[] = "__OTR__luigi_kart/kart_140_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi140Wheel2[] = "__OTR__luigi_kart/kart_140_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi140Wheel3[] = "__OTR__luigi_kart/kart_140_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi141Wheel0[] = "__OTR__luigi_kart/kart_141_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi141Wheel1[] = "__OTR__luigi_kart/kart_141_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi141Wheel2[] = "__OTR__luigi_kart/kart_141_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi141Wheel3[] = "__OTR__luigi_kart/kart_141_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi142Wheel0[] = "__OTR__luigi_kart/kart_142_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi142Wheel1[] = "__OTR__luigi_kart/kart_142_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi142Wheel2[] = "__OTR__luigi_kart/kart_142_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi142Wheel3[] = "__OTR__luigi_kart/kart_142_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi143Wheel0[] = "__OTR__luigi_kart/kart_143_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi143Wheel1[] = "__OTR__luigi_kart/kart_143_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi143Wheel2[] = "__OTR__luigi_kart/kart_143_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi143Wheel3[] = "__OTR__luigi_kart/kart_143_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi144Wheel0[] = "__OTR__luigi_kart/kart_144_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi144Wheel1[] = "__OTR__luigi_kart/kart_144_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi144Wheel2[] = "__OTR__luigi_kart/kart_144_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi144Wheel3[] = "__OTR__luigi_kart/kart_144_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi145Wheel0[] = "__OTR__luigi_kart/kart_145_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi145Wheel1[] = "__OTR__luigi_kart/kart_145_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi145Wheel2[] = "__OTR__luigi_kart/kart_145_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi145Wheel3[] = "__OTR__luigi_kart/kart_145_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi146Wheel0[] = "__OTR__luigi_kart/kart_146_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi146Wheel1[] = "__OTR__luigi_kart/kart_146_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi146Wheel2[] = "__OTR__luigi_kart/kart_146_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi146Wheel3[] = "__OTR__luigi_kart/kart_146_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi147Wheel0[] = "__OTR__luigi_kart/kart_147_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi147Wheel1[] = "__OTR__luigi_kart/kart_147_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi147Wheel2[] = "__OTR__luigi_kart/kart_147_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi147Wheel3[] = "__OTR__luigi_kart/kart_147_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi148Wheel0[] = "__OTR__luigi_kart/kart_148_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi148Wheel1[] = "__OTR__luigi_kart/kart_148_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi148Wheel2[] = "__OTR__luigi_kart/kart_148_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi148Wheel3[] = "__OTR__luigi_kart/kart_148_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi149Wheel0[] = "__OTR__luigi_kart/kart_149_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi149Wheel1[] = "__OTR__luigi_kart/kart_149_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi149Wheel2[] = "__OTR__luigi_kart/kart_149_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi149Wheel3[] = "__OTR__luigi_kart/kart_149_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi150Wheel0[] = "__OTR__luigi_kart/kart_150_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi150Wheel1[] = "__OTR__luigi_kart/kart_150_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi150Wheel2[] = "__OTR__luigi_kart/kart_150_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi150Wheel3[] = "__OTR__luigi_kart/kart_150_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi151Wheel0[] = "__OTR__luigi_kart/kart_151_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi151Wheel1[] = "__OTR__luigi_kart/kart_151_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi151Wheel2[] = "__OTR__luigi_kart/kart_151_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi151Wheel3[] = "__OTR__luigi_kart/kart_151_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi152Wheel0[] = "__OTR__luigi_kart/kart_152_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi152Wheel1[] = "__OTR__luigi_kart/kart_152_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi152Wheel2[] = "__OTR__luigi_kart/kart_152_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi152Wheel3[] = "__OTR__luigi_kart/kart_152_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi153Wheel0[] = "__OTR__luigi_kart/kart_153_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi153Wheel1[] = "__OTR__luigi_kart/kart_153_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi153Wheel2[] = "__OTR__luigi_kart/kart_153_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi153Wheel3[] = "__OTR__luigi_kart/kart_153_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi154Wheel0[] = "__OTR__luigi_kart/kart_154_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi154Wheel1[] = "__OTR__luigi_kart/kart_154_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi154Wheel2[] = "__OTR__luigi_kart/kart_154_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi154Wheel3[] = "__OTR__luigi_kart/kart_154_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi155Wheel0[] = "__OTR__luigi_kart/kart_155_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi155Wheel1[] = "__OTR__luigi_kart/kart_155_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi155Wheel2[] = "__OTR__luigi_kart/kart_155_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi155Wheel3[] = "__OTR__luigi_kart/kart_155_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi156Wheel0[] = "__OTR__luigi_kart/kart_156_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi156Wheel1[] = "__OTR__luigi_kart/kart_156_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi156Wheel2[] = "__OTR__luigi_kart/kart_156_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi156Wheel3[] = "__OTR__luigi_kart/kart_156_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi157Wheel0[] = "__OTR__luigi_kart/kart_157_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi157Wheel1[] = "__OTR__luigi_kart/kart_157_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi157Wheel2[] = "__OTR__luigi_kart/kart_157_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi157Wheel3[] = "__OTR__luigi_kart/kart_157_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi158Wheel0[] = "__OTR__luigi_kart/kart_158_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi158Wheel1[] = "__OTR__luigi_kart/kart_158_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi158Wheel2[] = "__OTR__luigi_kart/kart_158_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi158Wheel3[] = "__OTR__luigi_kart/kart_158_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi159Wheel0[] = "__OTR__luigi_kart/kart_159_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi159Wheel1[] = "__OTR__luigi_kart/kart_159_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi159Wheel2[] = "__OTR__luigi_kart/kart_159_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi159Wheel3[] = "__OTR__luigi_kart/kart_159_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi160Wheel0[] = "__OTR__luigi_kart/kart_160_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi160Wheel1[] = "__OTR__luigi_kart/kart_160_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi160Wheel2[] = "__OTR__luigi_kart/kart_160_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi160Wheel3[] = "__OTR__luigi_kart/kart_160_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi161Wheel0[] = "__OTR__luigi_kart/kart_161_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi161Wheel1[] = "__OTR__luigi_kart/kart_161_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi161Wheel2[] = "__OTR__luigi_kart/kart_161_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi161Wheel3[] = "__OTR__luigi_kart/kart_161_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi162Wheel0[] = "__OTR__luigi_kart/kart_162_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi162Wheel1[] = "__OTR__luigi_kart/kart_162_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi162Wheel2[] = "__OTR__luigi_kart/kart_162_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi162Wheel3[] = "__OTR__luigi_kart/kart_162_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi163Wheel0[] = "__OTR__luigi_kart/kart_163_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi163Wheel1[] = "__OTR__luigi_kart/kart_163_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi163Wheel2[] = "__OTR__luigi_kart/kart_163_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi163Wheel3[] = "__OTR__luigi_kart/kart_163_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi164Wheel0[] = "__OTR__luigi_kart/kart_164_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi164Wheel1[] = "__OTR__luigi_kart/kart_164_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi164Wheel2[] = "__OTR__luigi_kart/kart_164_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi164Wheel3[] = "__OTR__luigi_kart/kart_164_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi165Wheel0[] = "__OTR__luigi_kart/kart_165_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi165Wheel1[] = "__OTR__luigi_kart/kart_165_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi165Wheel2[] = "__OTR__luigi_kart/kart_165_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi165Wheel3[] = "__OTR__luigi_kart/kart_165_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi166Wheel0[] = "__OTR__luigi_kart/kart_166_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi166Wheel1[] = "__OTR__luigi_kart/kart_166_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi166Wheel2[] = "__OTR__luigi_kart/kart_166_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi166Wheel3[] = "__OTR__luigi_kart/kart_166_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi167Wheel0[] = "__OTR__luigi_kart/kart_167_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi167Wheel1[] = "__OTR__luigi_kart/kart_167_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi167Wheel2[] = "__OTR__luigi_kart/kart_167_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi167Wheel3[] = "__OTR__luigi_kart/kart_167_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi168Wheel0[] = "__OTR__luigi_kart/kart_168_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi168Wheel1[] = "__OTR__luigi_kart/kart_168_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi168Wheel2[] = "__OTR__luigi_kart/kart_168_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi168Wheel3[] = "__OTR__luigi_kart/kart_168_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi169Wheel0[] = "__OTR__luigi_kart/kart_169_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi169Wheel1[] = "__OTR__luigi_kart/kart_169_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi169Wheel2[] = "__OTR__luigi_kart/kart_169_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi169Wheel3[] = "__OTR__luigi_kart/kart_169_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi170Wheel0[] = "__OTR__luigi_kart/kart_170_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi170Wheel1[] = "__OTR__luigi_kart/kart_170_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi170Wheel2[] = "__OTR__luigi_kart/kart_170_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi170Wheel3[] = "__OTR__luigi_kart/kart_170_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi171Wheel0[] = "__OTR__luigi_kart/kart_171_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi171Wheel1[] = "__OTR__luigi_kart/kart_171_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi171Wheel2[] = "__OTR__luigi_kart/kart_171_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi171Wheel3[] = "__OTR__luigi_kart/kart_171_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi172Wheel0[] = "__OTR__luigi_kart/kart_172_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi172Wheel1[] = "__OTR__luigi_kart/kart_172_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi172Wheel2[] = "__OTR__luigi_kart/kart_172_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi172Wheel3[] = "__OTR__luigi_kart/kart_172_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi173Wheel0[] = "__OTR__luigi_kart/kart_173_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi173Wheel1[] = "__OTR__luigi_kart/kart_173_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi173Wheel2[] = "__OTR__luigi_kart/kart_173_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi173Wheel3[] = "__OTR__luigi_kart/kart_173_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi174Wheel0[] = "__OTR__luigi_kart/kart_174_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi174Wheel1[] = "__OTR__luigi_kart/kart_174_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi174Wheel2[] = "__OTR__luigi_kart/kart_174_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi174Wheel3[] = "__OTR__luigi_kart/kart_174_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi175Wheel0[] = "__OTR__luigi_kart/kart_175_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi175Wheel1[] = "__OTR__luigi_kart/kart_175_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi175Wheel2[] = "__OTR__luigi_kart/kart_175_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi175Wheel3[] = "__OTR__luigi_kart/kart_175_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi176Wheel0[] = "__OTR__luigi_kart/kart_176_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi176Wheel1[] = "__OTR__luigi_kart/kart_176_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi176Wheel2[] = "__OTR__luigi_kart/kart_176_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi176Wheel3[] = "__OTR__luigi_kart/kart_176_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi177Wheel0[] = "__OTR__luigi_kart/kart_177_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi177Wheel1[] = "__OTR__luigi_kart/kart_177_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi177Wheel2[] = "__OTR__luigi_kart/kart_177_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi177Wheel3[] = "__OTR__luigi_kart/kart_177_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi178Wheel0[] = "__OTR__luigi_kart/kart_178_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi178Wheel1[] = "__OTR__luigi_kart/kart_178_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi178Wheel2[] = "__OTR__luigi_kart/kart_178_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi178Wheel3[] = "__OTR__luigi_kart/kart_178_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi179Wheel0[] = "__OTR__luigi_kart/kart_179_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi179Wheel1[] = "__OTR__luigi_kart/kart_179_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi179Wheel2[] = "__OTR__luigi_kart/kart_179_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi179Wheel3[] = "__OTR__luigi_kart/kart_179_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi180Wheel0[] = "__OTR__luigi_kart/kart_180_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi180Wheel1[] = "__OTR__luigi_kart/kart_180_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi180Wheel2[] = "__OTR__luigi_kart/kart_180_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi180Wheel3[] = "__OTR__luigi_kart/kart_180_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi181Wheel0[] = "__OTR__luigi_kart/kart_181_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi181Wheel1[] = "__OTR__luigi_kart/kart_181_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi181Wheel2[] = "__OTR__luigi_kart/kart_181_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi181Wheel3[] = "__OTR__luigi_kart/kart_181_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi182Wheel0[] = "__OTR__luigi_kart/kart_182_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi182Wheel1[] = "__OTR__luigi_kart/kart_182_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi182Wheel2[] = "__OTR__luigi_kart/kart_182_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi182Wheel3[] = "__OTR__luigi_kart/kart_182_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi183Wheel0[] = "__OTR__luigi_kart/kart_183_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi183Wheel1[] = "__OTR__luigi_kart/kart_183_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi183Wheel2[] = "__OTR__luigi_kart/kart_183_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi183Wheel3[] = "__OTR__luigi_kart/kart_183_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi184Wheel0[] = "__OTR__luigi_kart/kart_184_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi184Wheel1[] = "__OTR__luigi_kart/kart_184_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi184Wheel2[] = "__OTR__luigi_kart/kart_184_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi184Wheel3[] = "__OTR__luigi_kart/kart_184_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi185Wheel0[] = "__OTR__luigi_kart/kart_185_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi185Wheel1[] = "__OTR__luigi_kart/kart_185_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi185Wheel2[] = "__OTR__luigi_kart/kart_185_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi185Wheel3[] = "__OTR__luigi_kart/kart_185_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi186Wheel0[] = "__OTR__luigi_kart/kart_186_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi186Wheel1[] = "__OTR__luigi_kart/kart_186_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi186Wheel2[] = "__OTR__luigi_kart/kart_186_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi186Wheel3[] = "__OTR__luigi_kart/kart_186_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi187Wheel0[] = "__OTR__luigi_kart/kart_187_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi187Wheel1[] = "__OTR__luigi_kart/kart_187_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi187Wheel2[] = "__OTR__luigi_kart/kart_187_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi187Wheel3[] = "__OTR__luigi_kart/kart_187_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi188Wheel0[] = "__OTR__luigi_kart/kart_188_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi188Wheel1[] = "__OTR__luigi_kart/kart_188_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi188Wheel2[] = "__OTR__luigi_kart/kart_188_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi188Wheel3[] = "__OTR__luigi_kart/kart_188_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi189Wheel0[] = "__OTR__luigi_kart/kart_189_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi189Wheel1[] = "__OTR__luigi_kart/kart_189_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi189Wheel2[] = "__OTR__luigi_kart/kart_189_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi189Wheel3[] = "__OTR__luigi_kart/kart_189_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi190Wheel0[] = "__OTR__luigi_kart/kart_190_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi190Wheel1[] = "__OTR__luigi_kart/kart_190_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi190Wheel2[] = "__OTR__luigi_kart/kart_190_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi190Wheel3[] = "__OTR__luigi_kart/kart_190_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi191Wheel0[] = "__OTR__luigi_kart/kart_191_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi191Wheel1[] = "__OTR__luigi_kart/kart_191_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi191Wheel2[] = "__OTR__luigi_kart/kart_191_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi191Wheel3[] = "__OTR__luigi_kart/kart_191_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi192Wheel0[] = "__OTR__luigi_kart/kart_192_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi192Wheel1[] = "__OTR__luigi_kart/kart_192_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi192Wheel2[] = "__OTR__luigi_kart/kart_192_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi192Wheel3[] = "__OTR__luigi_kart/kart_192_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi193Wheel0[] = "__OTR__luigi_kart/kart_193_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi193Wheel1[] = "__OTR__luigi_kart/kart_193_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi193Wheel2[] = "__OTR__luigi_kart/kart_193_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi193Wheel3[] = "__OTR__luigi_kart/kart_193_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi194Wheel0[] = "__OTR__luigi_kart/kart_194_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi194Wheel1[] = "__OTR__luigi_kart/kart_194_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi194Wheel2[] = "__OTR__luigi_kart/kart_194_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi194Wheel3[] = "__OTR__luigi_kart/kart_194_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi195Wheel0[] = "__OTR__luigi_kart/kart_195_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi195Wheel1[] = "__OTR__luigi_kart/kart_195_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi195Wheel2[] = "__OTR__luigi_kart/kart_195_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi195Wheel3[] = "__OTR__luigi_kart/kart_195_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi196Wheel0[] = "__OTR__luigi_kart/kart_196_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi196Wheel1[] = "__OTR__luigi_kart/kart_196_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi196Wheel2[] = "__OTR__luigi_kart/kart_196_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi196Wheel3[] = "__OTR__luigi_kart/kart_196_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi197Wheel0[] = "__OTR__luigi_kart/kart_197_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi197Wheel1[] = "__OTR__luigi_kart/kart_197_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi197Wheel2[] = "__OTR__luigi_kart/kart_197_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi197Wheel3[] = "__OTR__luigi_kart/kart_197_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi198Wheel0[] = "__OTR__luigi_kart/kart_198_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi198Wheel1[] = "__OTR__luigi_kart/kart_198_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi198Wheel2[] = "__OTR__luigi_kart/kart_198_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi198Wheel3[] = "__OTR__luigi_kart/kart_198_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi199Wheel0[] = "__OTR__luigi_kart/kart_199_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi199Wheel1[] = "__OTR__luigi_kart/kart_199_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi199Wheel2[] = "__OTR__luigi_kart/kart_199_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi199Wheel3[] = "__OTR__luigi_kart/kart_199_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi200Wheel0[] = "__OTR__luigi_kart/kart_200_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi200Wheel1[] = "__OTR__luigi_kart/kart_200_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi200Wheel2[] = "__OTR__luigi_kart/kart_200_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi200Wheel3[] = "__OTR__luigi_kart/kart_200_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi201Wheel0[] = "__OTR__luigi_kart/kart_201_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi201Wheel1[] = "__OTR__luigi_kart/kart_201_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi201Wheel2[] = "__OTR__luigi_kart/kart_201_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi201Wheel3[] = "__OTR__luigi_kart/kart_201_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi202Wheel0[] = "__OTR__luigi_kart/kart_202_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi202Wheel1[] = "__OTR__luigi_kart/kart_202_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi202Wheel2[] = "__OTR__luigi_kart/kart_202_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi202Wheel3[] = "__OTR__luigi_kart/kart_202_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi203Wheel0[] = "__OTR__luigi_kart/kart_203_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi203Wheel1[] = "__OTR__luigi_kart/kart_203_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi203Wheel2[] = "__OTR__luigi_kart/kart_203_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi203Wheel3[] = "__OTR__luigi_kart/kart_203_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi204Wheel0[] = "__OTR__luigi_kart/kart_204_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi204Wheel1[] = "__OTR__luigi_kart/kart_204_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi204Wheel2[] = "__OTR__luigi_kart/kart_204_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi204Wheel3[] = "__OTR__luigi_kart/kart_204_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi205Wheel0[] = "__OTR__luigi_kart/kart_205_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi205Wheel1[] = "__OTR__luigi_kart/kart_205_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi205Wheel2[] = "__OTR__luigi_kart/kart_205_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi205Wheel3[] = "__OTR__luigi_kart/kart_205_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi206Wheel0[] = "__OTR__luigi_kart/kart_206_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi206Wheel1[] = "__OTR__luigi_kart/kart_206_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi206Wheel2[] = "__OTR__luigi_kart/kart_206_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi206Wheel3[] = "__OTR__luigi_kart/kart_206_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi207Wheel0[] = "__OTR__luigi_kart/kart_207_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi207Wheel1[] = "__OTR__luigi_kart/kart_207_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi207Wheel2[] = "__OTR__luigi_kart/kart_207_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi207Wheel3[] = "__OTR__luigi_kart/kart_207_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi208Wheel0[] = "__OTR__luigi_kart/kart_208_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi208Wheel1[] = "__OTR__luigi_kart/kart_208_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi208Wheel2[] = "__OTR__luigi_kart/kart_208_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi208Wheel3[] = "__OTR__luigi_kart/kart_208_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi209Wheel0[] = "__OTR__luigi_kart/kart_209_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi209Wheel1[] = "__OTR__luigi_kart/kart_209_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi209Wheel2[] = "__OTR__luigi_kart/kart_209_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi209Wheel3[] = "__OTR__luigi_kart/kart_209_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi210Wheel0[] = "__OTR__luigi_kart/kart_210_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi210Wheel1[] = "__OTR__luigi_kart/kart_210_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi210Wheel2[] = "__OTR__luigi_kart/kart_210_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi210Wheel3[] = "__OTR__luigi_kart/kart_210_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi211Wheel0[] = "__OTR__luigi_kart/kart_211_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi211Wheel1[] = "__OTR__luigi_kart/kart_211_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi211Wheel2[] = "__OTR__luigi_kart/kart_211_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi211Wheel3[] = "__OTR__luigi_kart/kart_211_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi212Wheel0[] = "__OTR__luigi_kart/kart_212_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi212Wheel1[] = "__OTR__luigi_kart/kart_212_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi212Wheel2[] = "__OTR__luigi_kart/kart_212_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi212Wheel3[] = "__OTR__luigi_kart/kart_212_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi213Wheel0[] = "__OTR__luigi_kart/kart_213_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi213Wheel1[] = "__OTR__luigi_kart/kart_213_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi213Wheel2[] = "__OTR__luigi_kart/kart_213_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi213Wheel3[] = "__OTR__luigi_kart/kart_213_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi214Wheel0[] = "__OTR__luigi_kart/kart_214_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi214Wheel1[] = "__OTR__luigi_kart/kart_214_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi214Wheel2[] = "__OTR__luigi_kart/kart_214_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi214Wheel3[] = "__OTR__luigi_kart/kart_214_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi215Wheel0[] = "__OTR__luigi_kart/kart_215_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi215Wheel1[] = "__OTR__luigi_kart/kart_215_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi215Wheel2[] = "__OTR__luigi_kart/kart_215_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi215Wheel3[] = "__OTR__luigi_kart/kart_215_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi216Wheel0[] = "__OTR__luigi_kart/kart_216_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi216Wheel1[] = "__OTR__luigi_kart/kart_216_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi216Wheel2[] = "__OTR__luigi_kart/kart_216_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi216Wheel3[] = "__OTR__luigi_kart/kart_216_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi217Wheel0[] = "__OTR__luigi_kart/kart_217_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi217Wheel1[] = "__OTR__luigi_kart/kart_217_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi217Wheel2[] = "__OTR__luigi_kart/kart_217_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi217Wheel3[] = "__OTR__luigi_kart/kart_217_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi218Wheel0[] = "__OTR__luigi_kart/kart_218_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi218Wheel1[] = "__OTR__luigi_kart/kart_218_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi218Wheel2[] = "__OTR__luigi_kart/kart_218_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi218Wheel3[] = "__OTR__luigi_kart/kart_218_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi219Wheel0[] = "__OTR__luigi_kart/kart_219_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi219Wheel1[] = "__OTR__luigi_kart/kart_219_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi219Wheel2[] = "__OTR__luigi_kart/kart_219_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi219Wheel3[] = "__OTR__luigi_kart/kart_219_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi220Wheel0[] = "__OTR__luigi_kart/kart_220_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi220Wheel1[] = "__OTR__luigi_kart/kart_220_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi220Wheel2[] = "__OTR__luigi_kart/kart_220_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi220Wheel3[] = "__OTR__luigi_kart/kart_220_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi221Wheel0[] = "__OTR__luigi_kart/kart_221_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi221Wheel1[] = "__OTR__luigi_kart/kart_221_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi221Wheel2[] = "__OTR__luigi_kart/kart_221_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi221Wheel3[] = "__OTR__luigi_kart/kart_221_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi222Wheel0[] = "__OTR__luigi_kart/kart_222_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi222Wheel1[] = "__OTR__luigi_kart/kart_222_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi222Wheel2[] = "__OTR__luigi_kart/kart_222_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi222Wheel3[] = "__OTR__luigi_kart/kart_222_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi223Wheel0[] = "__OTR__luigi_kart/kart_223_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi223Wheel1[] = "__OTR__luigi_kart/kart_223_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi223Wheel2[] = "__OTR__luigi_kart/kart_223_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi223Wheel3[] = "__OTR__luigi_kart/kart_223_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi224Wheel0[] = "__OTR__luigi_kart/kart_224_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi224Wheel1[] = "__OTR__luigi_kart/kart_224_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi224Wheel2[] = "__OTR__luigi_kart/kart_224_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi224Wheel3[] = "__OTR__luigi_kart/kart_224_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi225Wheel0[] = "__OTR__luigi_kart/kart_225_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi225Wheel1[] = "__OTR__luigi_kart/kart_225_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi225Wheel2[] = "__OTR__luigi_kart/kart_225_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi225Wheel3[] = "__OTR__luigi_kart/kart_225_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi226Wheel0[] = "__OTR__luigi_kart/kart_226_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi226Wheel1[] = "__OTR__luigi_kart/kart_226_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi226Wheel2[] = "__OTR__luigi_kart/kart_226_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi226Wheel3[] = "__OTR__luigi_kart/kart_226_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi227Wheel0[] = "__OTR__luigi_kart/kart_227_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi227Wheel1[] = "__OTR__luigi_kart/kart_227_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi227Wheel2[] = "__OTR__luigi_kart/kart_227_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi227Wheel3[] = "__OTR__luigi_kart/kart_227_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi228Wheel0[] = "__OTR__luigi_kart/kart_228_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi228Wheel1[] = "__OTR__luigi_kart/kart_228_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi228Wheel2[] = "__OTR__luigi_kart/kart_228_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi228Wheel3[] = "__OTR__luigi_kart/kart_228_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi229Wheel0[] = "__OTR__luigi_kart/kart_229_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi229Wheel1[] = "__OTR__luigi_kart/kart_229_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi229Wheel2[] = "__OTR__luigi_kart/kart_229_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi229Wheel3[] = "__OTR__luigi_kart/kart_229_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi230Wheel0[] = "__OTR__luigi_kart/kart_230_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi230Wheel1[] = "__OTR__luigi_kart/kart_230_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi230Wheel2[] = "__OTR__luigi_kart/kart_230_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi230Wheel3[] = "__OTR__luigi_kart/kart_230_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi231Wheel0[] = "__OTR__luigi_kart/kart_231_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi231Wheel1[] = "__OTR__luigi_kart/kart_231_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi231Wheel2[] = "__OTR__luigi_kart/kart_231_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi231Wheel3[] = "__OTR__luigi_kart/kart_231_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi232Wheel0[] = "__OTR__luigi_kart/kart_232_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi232Wheel1[] = "__OTR__luigi_kart/kart_232_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi232Wheel2[] = "__OTR__luigi_kart/kart_232_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi232Wheel3[] = "__OTR__luigi_kart/kart_232_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi233Wheel0[] = "__OTR__luigi_kart/kart_233_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi233Wheel1[] = "__OTR__luigi_kart/kart_233_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi233Wheel2[] = "__OTR__luigi_kart/kart_233_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi233Wheel3[] = "__OTR__luigi_kart/kart_233_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi234Wheel0[] = "__OTR__luigi_kart/kart_234_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi234Wheel1[] = "__OTR__luigi_kart/kart_234_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi234Wheel2[] = "__OTR__luigi_kart/kart_234_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi234Wheel3[] = "__OTR__luigi_kart/kart_234_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi235Wheel0[] = "__OTR__luigi_kart/kart_235_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi235Wheel1[] = "__OTR__luigi_kart/kart_235_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi235Wheel2[] = "__OTR__luigi_kart/kart_235_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi235Wheel3[] = "__OTR__luigi_kart/kart_235_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi236Wheel0[] = "__OTR__luigi_kart/kart_236_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi236Wheel1[] = "__OTR__luigi_kart/kart_236_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi236Wheel2[] = "__OTR__luigi_kart/kart_236_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi236Wheel3[] = "__OTR__luigi_kart/kart_236_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi237Wheel0[] = "__OTR__luigi_kart/kart_237_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi237Wheel1[] = "__OTR__luigi_kart/kart_237_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi237Wheel2[] = "__OTR__luigi_kart/kart_237_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi237Wheel3[] = "__OTR__luigi_kart/kart_237_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi238Wheel0[] = "__OTR__luigi_kart/kart_238_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi238Wheel1[] = "__OTR__luigi_kart/kart_238_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi238Wheel2[] = "__OTR__luigi_kart/kart_238_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi238Wheel3[] = "__OTR__luigi_kart/kart_238_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi239Wheel0[] = "__OTR__luigi_kart/kart_239_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi239Wheel1[] = "__OTR__luigi_kart/kart_239_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi239Wheel2[] = "__OTR__luigi_kart/kart_239_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi239Wheel3[] = "__OTR__luigi_kart/kart_239_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi240Wheel0[] = "__OTR__luigi_kart/kart_240_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi240Wheel1[] = "__OTR__luigi_kart/kart_240_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi240Wheel2[] = "__OTR__luigi_kart/kart_240_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi240Wheel3[] = "__OTR__luigi_kart/kart_240_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi241Wheel0[] = "__OTR__luigi_kart/kart_241_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi241Wheel1[] = "__OTR__luigi_kart/kart_241_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi241Wheel2[] = "__OTR__luigi_kart/kart_241_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi241Wheel3[] = "__OTR__luigi_kart/kart_241_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi242Wheel0[] = "__OTR__luigi_kart/kart_242_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi242Wheel1[] = "__OTR__luigi_kart/kart_242_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi242Wheel2[] = "__OTR__luigi_kart/kart_242_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi242Wheel3[] = "__OTR__luigi_kart/kart_242_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi243Wheel0[] = "__OTR__luigi_kart/kart_243_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi243Wheel1[] = "__OTR__luigi_kart/kart_243_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi243Wheel2[] = "__OTR__luigi_kart/kart_243_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi243Wheel3[] = "__OTR__luigi_kart/kart_243_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi244Wheel0[] = "__OTR__luigi_kart/kart_244_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi244Wheel1[] = "__OTR__luigi_kart/kart_244_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi244Wheel2[] = "__OTR__luigi_kart/kart_244_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi244Wheel3[] = "__OTR__luigi_kart/kart_244_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi245Wheel0[] = "__OTR__luigi_kart/kart_245_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi245Wheel1[] = "__OTR__luigi_kart/kart_245_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi245Wheel2[] = "__OTR__luigi_kart/kart_245_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi245Wheel3[] = "__OTR__luigi_kart/kart_245_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi246Wheel0[] = "__OTR__luigi_kart/kart_246_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi246Wheel1[] = "__OTR__luigi_kart/kart_246_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi246Wheel2[] = "__OTR__luigi_kart/kart_246_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi246Wheel3[] = "__OTR__luigi_kart/kart_246_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi247Wheel0[] = "__OTR__luigi_kart/kart_247_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi247Wheel1[] = "__OTR__luigi_kart/kart_247_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi247Wheel2[] = "__OTR__luigi_kart/kart_247_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi247Wheel3[] = "__OTR__luigi_kart/kart_247_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi248Wheel0[] = "__OTR__luigi_kart/kart_248_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi248Wheel1[] = "__OTR__luigi_kart/kart_248_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi248Wheel2[] = "__OTR__luigi_kart/kart_248_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi248Wheel3[] = "__OTR__luigi_kart/kart_248_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi249Wheel0[] = "__OTR__luigi_kart/kart_249_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi249Wheel1[] = "__OTR__luigi_kart/kart_249_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi249Wheel2[] = "__OTR__luigi_kart/kart_249_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi249Wheel3[] = "__OTR__luigi_kart/kart_249_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi250Wheel0[] = "__OTR__luigi_kart/kart_250_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi250Wheel1[] = "__OTR__luigi_kart/kart_250_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi250Wheel2[] = "__OTR__luigi_kart/kart_250_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi250Wheel3[] = "__OTR__luigi_kart/kart_250_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi251Wheel0[] = "__OTR__luigi_kart/kart_251_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi251Wheel1[] = "__OTR__luigi_kart/kart_251_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi251Wheel2[] = "__OTR__luigi_kart/kart_251_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi251Wheel3[] = "__OTR__luigi_kart/kart_251_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi252Wheel0[] = "__OTR__luigi_kart/kart_252_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi252Wheel1[] = "__OTR__luigi_kart/kart_252_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi252Wheel2[] = "__OTR__luigi_kart/kart_252_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi252Wheel3[] = "__OTR__luigi_kart/kart_252_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi253Wheel0[] = "__OTR__luigi_kart/kart_253_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi253Wheel1[] = "__OTR__luigi_kart/kart_253_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi253Wheel2[] = "__OTR__luigi_kart/kart_253_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi253Wheel3[] = "__OTR__luigi_kart/kart_253_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi254Wheel0[] = "__OTR__luigi_kart/kart_254_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi254Wheel1[] = "__OTR__luigi_kart/kart_254_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi254Wheel2[] = "__OTR__luigi_kart/kart_254_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi254Wheel3[] = "__OTR__luigi_kart/kart_254_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi255Wheel0[] = "__OTR__luigi_kart/kart_255_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi255Wheel1[] = "__OTR__luigi_kart/kart_255_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi255Wheel2[] = "__OTR__luigi_kart/kart_255_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi255Wheel3[] = "__OTR__luigi_kart/kart_255_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi256Wheel0[] = "__OTR__luigi_kart/kart_256_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi256Wheel1[] = "__OTR__luigi_kart/kart_256_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi256Wheel2[] = "__OTR__luigi_kart/kart_256_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi256Wheel3[] = "__OTR__luigi_kart/kart_256_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi257Wheel0[] = "__OTR__luigi_kart/kart_257_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi257Wheel1[] = "__OTR__luigi_kart/kart_257_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi257Wheel2[] = "__OTR__luigi_kart/kart_257_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi257Wheel3[] = "__OTR__luigi_kart/kart_257_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi258Wheel0[] = "__OTR__luigi_kart/kart_258_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi258Wheel1[] = "__OTR__luigi_kart/kart_258_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi258Wheel2[] = "__OTR__luigi_kart/kart_258_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi258Wheel3[] = "__OTR__luigi_kart/kart_258_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi259Wheel0[] = "__OTR__luigi_kart/kart_259_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi259Wheel1[] = "__OTR__luigi_kart/kart_259_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi259Wheel2[] = "__OTR__luigi_kart/kart_259_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi259Wheel3[] = "__OTR__luigi_kart/kart_259_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi260Wheel0[] = "__OTR__luigi_kart/kart_260_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi260Wheel1[] = "__OTR__luigi_kart/kart_260_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi260Wheel2[] = "__OTR__luigi_kart/kart_260_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi260Wheel3[] = "__OTR__luigi_kart/kart_260_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi261Wheel0[] = "__OTR__luigi_kart/kart_261_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi261Wheel1[] = "__OTR__luigi_kart/kart_261_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi261Wheel2[] = "__OTR__luigi_kart/kart_261_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi261Wheel3[] = "__OTR__luigi_kart/kart_261_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi262Wheel0[] = "__OTR__luigi_kart/kart_262_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi262Wheel1[] = "__OTR__luigi_kart/kart_262_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi262Wheel2[] = "__OTR__luigi_kart/kart_262_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi262Wheel3[] = "__OTR__luigi_kart/kart_262_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi263Wheel0[] = "__OTR__luigi_kart/kart_263_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi263Wheel1[] = "__OTR__luigi_kart/kart_263_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi263Wheel2[] = "__OTR__luigi_kart/kart_263_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi263Wheel3[] = "__OTR__luigi_kart/kart_263_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi264Wheel0[] = "__OTR__luigi_kart/kart_264_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi264Wheel1[] = "__OTR__luigi_kart/kart_264_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi264Wheel2[] = "__OTR__luigi_kart/kart_264_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi264Wheel3[] = "__OTR__luigi_kart/kart_264_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi265Wheel0[] = "__OTR__luigi_kart/kart_265_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi265Wheel1[] = "__OTR__luigi_kart/kart_265_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi265Wheel2[] = "__OTR__luigi_kart/kart_265_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi265Wheel3[] = "__OTR__luigi_kart/kart_265_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi266Wheel0[] = "__OTR__luigi_kart/kart_266_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi266Wheel1[] = "__OTR__luigi_kart/kart_266_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi266Wheel2[] = "__OTR__luigi_kart/kart_266_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi266Wheel3[] = "__OTR__luigi_kart/kart_266_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi267Wheel0[] = "__OTR__luigi_kart/kart_267_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi267Wheel1[] = "__OTR__luigi_kart/kart_267_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi267Wheel2[] = "__OTR__luigi_kart/kart_267_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi267Wheel3[] = "__OTR__luigi_kart/kart_267_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi268Wheel0[] = "__OTR__luigi_kart/kart_268_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi268Wheel1[] = "__OTR__luigi_kart/kart_268_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi268Wheel2[] = "__OTR__luigi_kart/kart_268_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi268Wheel3[] = "__OTR__luigi_kart/kart_268_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi269Wheel0[] = "__OTR__luigi_kart/kart_269_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi269Wheel1[] = "__OTR__luigi_kart/kart_269_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi269Wheel2[] = "__OTR__luigi_kart/kart_269_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi269Wheel3[] = "__OTR__luigi_kart/kart_269_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi270Wheel0[] = "__OTR__luigi_kart/kart_270_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi270Wheel1[] = "__OTR__luigi_kart/kart_270_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi270Wheel2[] = "__OTR__luigi_kart/kart_270_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi270Wheel3[] = "__OTR__luigi_kart/kart_270_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi271Wheel0[] = "__OTR__luigi_kart/kart_271_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi271Wheel1[] = "__OTR__luigi_kart/kart_271_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi271Wheel2[] = "__OTR__luigi_kart/kart_271_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi271Wheel3[] = "__OTR__luigi_kart/kart_271_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi272Wheel0[] = "__OTR__luigi_kart/kart_272_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi272Wheel1[] = "__OTR__luigi_kart/kart_272_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi272Wheel2[] = "__OTR__luigi_kart/kart_272_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi272Wheel3[] = "__OTR__luigi_kart/kart_272_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi273Wheel0[] = "__OTR__luigi_kart/kart_273_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi273Wheel1[] = "__OTR__luigi_kart/kart_273_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi273Wheel2[] = "__OTR__luigi_kart/kart_273_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi273Wheel3[] = "__OTR__luigi_kart/kart_273_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi274Wheel0[] = "__OTR__luigi_kart/kart_274_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi274Wheel1[] = "__OTR__luigi_kart/kart_274_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi274Wheel2[] = "__OTR__luigi_kart/kart_274_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi274Wheel3[] = "__OTR__luigi_kart/kart_274_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi275Wheel0[] = "__OTR__luigi_kart/kart_275_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi275Wheel1[] = "__OTR__luigi_kart/kart_275_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi275Wheel2[] = "__OTR__luigi_kart/kart_275_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi275Wheel3[] = "__OTR__luigi_kart/kart_275_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi276Wheel0[] = "__OTR__luigi_kart/kart_276_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi276Wheel1[] = "__OTR__luigi_kart/kart_276_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi276Wheel2[] = "__OTR__luigi_kart/kart_276_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi276Wheel3[] = "__OTR__luigi_kart/kart_276_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi277Wheel0[] = "__OTR__luigi_kart/kart_277_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi277Wheel1[] = "__OTR__luigi_kart/kart_277_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi277Wheel2[] = "__OTR__luigi_kart/kart_277_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi277Wheel3[] = "__OTR__luigi_kart/kart_277_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi278Wheel0[] = "__OTR__luigi_kart/kart_278_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi278Wheel1[] = "__OTR__luigi_kart/kart_278_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi278Wheel2[] = "__OTR__luigi_kart/kart_278_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi278Wheel3[] = "__OTR__luigi_kart/kart_278_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi279Wheel0[] = "__OTR__luigi_kart/kart_279_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi279Wheel1[] = "__OTR__luigi_kart/kart_279_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi279Wheel2[] = "__OTR__luigi_kart/kart_279_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi279Wheel3[] = "__OTR__luigi_kart/kart_279_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi280Wheel0[] = "__OTR__luigi_kart/kart_280_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi280Wheel1[] = "__OTR__luigi_kart/kart_280_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi280Wheel2[] = "__OTR__luigi_kart/kart_280_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi280Wheel3[] = "__OTR__luigi_kart/kart_280_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi281Wheel0[] = "__OTR__luigi_kart/kart_281_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi281Wheel1[] = "__OTR__luigi_kart/kart_281_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi281Wheel2[] = "__OTR__luigi_kart/kart_281_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi281Wheel3[] = "__OTR__luigi_kart/kart_281_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi282Wheel0[] = "__OTR__luigi_kart/kart_282_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi282Wheel1[] = "__OTR__luigi_kart/kart_282_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi282Wheel2[] = "__OTR__luigi_kart/kart_282_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi282Wheel3[] = "__OTR__luigi_kart/kart_282_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi283Wheel0[] = "__OTR__luigi_kart/kart_283_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi283Wheel1[] = "__OTR__luigi_kart/kart_283_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi283Wheel2[] = "__OTR__luigi_kart/kart_283_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi283Wheel3[] = "__OTR__luigi_kart/kart_283_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi284Wheel0[] = "__OTR__luigi_kart/kart_284_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi284Wheel1[] = "__OTR__luigi_kart/kart_284_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi284Wheel2[] = "__OTR__luigi_kart/kart_284_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi284Wheel3[] = "__OTR__luigi_kart/kart_284_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi285Wheel0[] = "__OTR__luigi_kart/kart_285_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi285Wheel1[] = "__OTR__luigi_kart/kart_285_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi285Wheel2[] = "__OTR__luigi_kart/kart_285_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi285Wheel3[] = "__OTR__luigi_kart/kart_285_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi286Wheel0[] = "__OTR__luigi_kart/kart_286_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi286Wheel1[] = "__OTR__luigi_kart/kart_286_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi286Wheel2[] = "__OTR__luigi_kart/kart_286_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi286Wheel3[] = "__OTR__luigi_kart/kart_286_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi287Wheel0[] = "__OTR__luigi_kart/kart_287_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi287Wheel1[] = "__OTR__luigi_kart/kart_287_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi287Wheel2[] = "__OTR__luigi_kart/kart_287_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi287Wheel3[] = "__OTR__luigi_kart/kart_287_wheel_3"; - -static const ALIGN_ASSET(2) char gKartLuigi288Wheel0[] = "__OTR__luigi_kart/kart_288_wheel_0"; - -static const ALIGN_ASSET(2) char gKartLuigi288Wheel1[] = "__OTR__luigi_kart/kart_288_wheel_1"; - -static const ALIGN_ASSET(2) char gKartLuigi288Wheel2[] = "__OTR__luigi_kart/kart_288_wheel_2"; - -static const ALIGN_ASSET(2) char gKartLuigi288Wheel3[] = "__OTR__luigi_kart/kart_288_wheel_3"; - -static const char* luigi_kart_wheels[] = { - gKartLuigi000Wheel0, - gKartLuigi000Wheel1, - gKartLuigi000Wheel2, - gKartLuigi000Wheel3, - gKartLuigi001Wheel0, - gKartLuigi001Wheel1, - gKartLuigi001Wheel2, - gKartLuigi001Wheel3, - gKartLuigi002Wheel0, - gKartLuigi002Wheel1, - gKartLuigi002Wheel2, - gKartLuigi002Wheel3, - gKartLuigi003Wheel0, - gKartLuigi003Wheel1, - gKartLuigi003Wheel2, - gKartLuigi003Wheel3, - gKartLuigi004Wheel0, - gKartLuigi004Wheel1, - gKartLuigi004Wheel2, - gKartLuigi004Wheel3, - gKartLuigi005Wheel0, - gKartLuigi005Wheel1, - gKartLuigi005Wheel2, - gKartLuigi005Wheel3, - gKartLuigi006Wheel0, - gKartLuigi006Wheel1, - gKartLuigi006Wheel2, - gKartLuigi006Wheel3, - gKartLuigi007Wheel0, - gKartLuigi007Wheel1, - gKartLuigi007Wheel2, - gKartLuigi007Wheel3, - gKartLuigi008Wheel0, - gKartLuigi008Wheel1, - gKartLuigi008Wheel2, - gKartLuigi008Wheel3, - gKartLuigi009Wheel0, - gKartLuigi009Wheel1, - gKartLuigi009Wheel2, - gKartLuigi009Wheel3, - gKartLuigi010Wheel0, - gKartLuigi010Wheel1, - gKartLuigi010Wheel2, - gKartLuigi010Wheel3, - gKartLuigi011Wheel0, - gKartLuigi011Wheel1, - gKartLuigi011Wheel2, - gKartLuigi011Wheel3, - gKartLuigi012Wheel0, - gKartLuigi012Wheel1, - gKartLuigi012Wheel2, - gKartLuigi012Wheel3, - gKartLuigi013Wheel0, - gKartLuigi013Wheel1, - gKartLuigi013Wheel2, - gKartLuigi013Wheel3, - gKartLuigi014Wheel0, - gKartLuigi014Wheel1, - gKartLuigi014Wheel2, - gKartLuigi014Wheel3, - gKartLuigi015Wheel0, - gKartLuigi015Wheel1, - gKartLuigi015Wheel2, - gKartLuigi015Wheel3, - gKartLuigi016Wheel0, - gKartLuigi016Wheel1, - gKartLuigi016Wheel2, - gKartLuigi016Wheel3, - gKartLuigi017Wheel0, - gKartLuigi017Wheel1, - gKartLuigi017Wheel2, - gKartLuigi017Wheel3, - gKartLuigi018Wheel0, - gKartLuigi018Wheel1, - gKartLuigi018Wheel2, - gKartLuigi018Wheel3, - gKartLuigi019Wheel0, - gKartLuigi019Wheel1, - gKartLuigi019Wheel2, - gKartLuigi019Wheel3, - gKartLuigi020Wheel0, - gKartLuigi020Wheel1, - gKartLuigi020Wheel2, - gKartLuigi020Wheel3, - gKartLuigi021Wheel0, - gKartLuigi021Wheel1, - gKartLuigi021Wheel2, - gKartLuigi021Wheel3, - gKartLuigi022Wheel0, - gKartLuigi022Wheel1, - gKartLuigi022Wheel2, - gKartLuigi022Wheel3, - gKartLuigi023Wheel0, - gKartLuigi023Wheel1, - gKartLuigi023Wheel2, - gKartLuigi023Wheel3, - gKartLuigi024Wheel0, - gKartLuigi024Wheel1, - gKartLuigi024Wheel2, - gKartLuigi024Wheel3, - gKartLuigi025Wheel0, - gKartLuigi025Wheel1, - gKartLuigi025Wheel2, - gKartLuigi025Wheel3, - gKartLuigi026Wheel0, - gKartLuigi026Wheel1, - gKartLuigi026Wheel2, - gKartLuigi026Wheel3, - gKartLuigi027Wheel0, - gKartLuigi027Wheel1, - gKartLuigi027Wheel2, - gKartLuigi027Wheel3, - gKartLuigi028Wheel0, - gKartLuigi028Wheel1, - gKartLuigi028Wheel2, - gKartLuigi028Wheel3, - gKartLuigi029Wheel0, - gKartLuigi029Wheel1, - gKartLuigi029Wheel2, - gKartLuigi029Wheel3, - gKartLuigi030Wheel0, - gKartLuigi030Wheel1, - gKartLuigi030Wheel2, - gKartLuigi030Wheel3, - gKartLuigi031Wheel0, - gKartLuigi031Wheel1, - gKartLuigi031Wheel2, - gKartLuigi031Wheel3, - gKartLuigi032Wheel0, - gKartLuigi032Wheel1, - gKartLuigi032Wheel2, - gKartLuigi032Wheel3, - gKartLuigi033Wheel0, - gKartLuigi033Wheel1, - gKartLuigi033Wheel2, - gKartLuigi033Wheel3, - gKartLuigi034Wheel0, - gKartLuigi034Wheel1, - gKartLuigi034Wheel2, - gKartLuigi034Wheel3, - gKartLuigi035Wheel0, - gKartLuigi035Wheel1, - gKartLuigi035Wheel2, - gKartLuigi035Wheel3, - gKartLuigi036Wheel0, - gKartLuigi036Wheel1, - gKartLuigi036Wheel2, - gKartLuigi036Wheel3, - gKartLuigi037Wheel0, - gKartLuigi037Wheel1, - gKartLuigi037Wheel2, - gKartLuigi037Wheel3, - gKartLuigi038Wheel0, - gKartLuigi038Wheel1, - gKartLuigi038Wheel2, - gKartLuigi038Wheel3, - gKartLuigi039Wheel0, - gKartLuigi039Wheel1, - gKartLuigi039Wheel2, - gKartLuigi039Wheel3, - gKartLuigi040Wheel0, - gKartLuigi040Wheel1, - gKartLuigi040Wheel2, - gKartLuigi040Wheel3, - gKartLuigi041Wheel0, - gKartLuigi041Wheel1, - gKartLuigi041Wheel2, - gKartLuigi041Wheel3, - gKartLuigi042Wheel0, - gKartLuigi042Wheel1, - gKartLuigi042Wheel2, - gKartLuigi042Wheel3, - gKartLuigi043Wheel0, - gKartLuigi043Wheel1, - gKartLuigi043Wheel2, - gKartLuigi043Wheel3, - gKartLuigi044Wheel0, - gKartLuigi044Wheel1, - gKartLuigi044Wheel2, - gKartLuigi044Wheel3, - gKartLuigi045Wheel0, - gKartLuigi045Wheel1, - gKartLuigi045Wheel2, - gKartLuigi045Wheel3, - gKartLuigi046Wheel0, - gKartLuigi046Wheel1, - gKartLuigi046Wheel2, - gKartLuigi046Wheel3, - gKartLuigi047Wheel0, - gKartLuigi047Wheel1, - gKartLuigi047Wheel2, - gKartLuigi047Wheel3, - gKartLuigi048Wheel0, - gKartLuigi048Wheel1, - gKartLuigi048Wheel2, - gKartLuigi048Wheel3, - gKartLuigi049Wheel0, - gKartLuigi049Wheel1, - gKartLuigi049Wheel2, - gKartLuigi049Wheel3, - gKartLuigi050Wheel0, - gKartLuigi050Wheel1, - gKartLuigi050Wheel2, - gKartLuigi050Wheel3, - gKartLuigi051Wheel0, - gKartLuigi051Wheel1, - gKartLuigi051Wheel2, - gKartLuigi051Wheel3, - gKartLuigi052Wheel0, - gKartLuigi052Wheel1, - gKartLuigi052Wheel2, - gKartLuigi052Wheel3, - gKartLuigi053Wheel0, - gKartLuigi053Wheel1, - gKartLuigi053Wheel2, - gKartLuigi053Wheel3, - gKartLuigi054Wheel0, - gKartLuigi054Wheel1, - gKartLuigi054Wheel2, - gKartLuigi054Wheel3, - gKartLuigi055Wheel0, - gKartLuigi055Wheel1, - gKartLuigi055Wheel2, - gKartLuigi055Wheel3, - gKartLuigi056Wheel0, - gKartLuigi056Wheel1, - gKartLuigi056Wheel2, - gKartLuigi056Wheel3, - gKartLuigi057Wheel0, - gKartLuigi057Wheel1, - gKartLuigi057Wheel2, - gKartLuigi057Wheel3, - gKartLuigi058Wheel0, - gKartLuigi058Wheel1, - gKartLuigi058Wheel2, - gKartLuigi058Wheel3, - gKartLuigi059Wheel0, - gKartLuigi059Wheel1, - gKartLuigi059Wheel2, - gKartLuigi059Wheel3, - gKartLuigi060Wheel0, - gKartLuigi060Wheel1, - gKartLuigi060Wheel2, - gKartLuigi060Wheel3, - gKartLuigi061Wheel0, - gKartLuigi061Wheel1, - gKartLuigi061Wheel2, - gKartLuigi061Wheel3, - gKartLuigi062Wheel0, - gKartLuigi062Wheel1, - gKartLuigi062Wheel2, - gKartLuigi062Wheel3, - gKartLuigi063Wheel0, - gKartLuigi063Wheel1, - gKartLuigi063Wheel2, - gKartLuigi063Wheel3, - gKartLuigi064Wheel0, - gKartLuigi064Wheel1, - gKartLuigi064Wheel2, - gKartLuigi064Wheel3, - gKartLuigi065Wheel0, - gKartLuigi065Wheel1, - gKartLuigi065Wheel2, - gKartLuigi065Wheel3, - gKartLuigi066Wheel0, - gKartLuigi066Wheel1, - gKartLuigi066Wheel2, - gKartLuigi066Wheel3, - gKartLuigi067Wheel0, - gKartLuigi067Wheel1, - gKartLuigi067Wheel2, - gKartLuigi067Wheel3, - gKartLuigi068Wheel0, - gKartLuigi068Wheel1, - gKartLuigi068Wheel2, - gKartLuigi068Wheel3, - gKartLuigi069Wheel0, - gKartLuigi069Wheel1, - gKartLuigi069Wheel2, - gKartLuigi069Wheel3, - gKartLuigi070Wheel0, - gKartLuigi070Wheel1, - gKartLuigi070Wheel2, - gKartLuigi070Wheel3, - gKartLuigi071Wheel0, - gKartLuigi071Wheel1, - gKartLuigi071Wheel2, - gKartLuigi071Wheel3, - gKartLuigi072Wheel0, - gKartLuigi072Wheel1, - gKartLuigi072Wheel2, - gKartLuigi072Wheel3, - gKartLuigi073Wheel0, - gKartLuigi073Wheel1, - gKartLuigi073Wheel2, - gKartLuigi073Wheel3, - gKartLuigi074Wheel0, - gKartLuigi074Wheel1, - gKartLuigi074Wheel2, - gKartLuigi074Wheel3, - gKartLuigi075Wheel0, - gKartLuigi075Wheel1, - gKartLuigi075Wheel2, - gKartLuigi075Wheel3, - gKartLuigi076Wheel0, - gKartLuigi076Wheel1, - gKartLuigi076Wheel2, - gKartLuigi076Wheel3, - gKartLuigi077Wheel0, - gKartLuigi077Wheel1, - gKartLuigi077Wheel2, - gKartLuigi077Wheel3, - gKartLuigi078Wheel0, - gKartLuigi078Wheel1, - gKartLuigi078Wheel2, - gKartLuigi078Wheel3, - gKartLuigi079Wheel0, - gKartLuigi079Wheel1, - gKartLuigi079Wheel2, - gKartLuigi079Wheel3, - gKartLuigi080Wheel0, - gKartLuigi080Wheel1, - gKartLuigi080Wheel2, - gKartLuigi080Wheel3, - gKartLuigi081Wheel0, - gKartLuigi081Wheel1, - gKartLuigi081Wheel2, - gKartLuigi081Wheel3, - gKartLuigi082Wheel0, - gKartLuigi082Wheel1, - gKartLuigi082Wheel2, - gKartLuigi082Wheel3, - gKartLuigi083Wheel0, - gKartLuigi083Wheel1, - gKartLuigi083Wheel2, - gKartLuigi083Wheel3, - gKartLuigi084Wheel0, - gKartLuigi084Wheel1, - gKartLuigi084Wheel2, - gKartLuigi084Wheel3, - gKartLuigi085Wheel0, - gKartLuigi085Wheel1, - gKartLuigi085Wheel2, - gKartLuigi085Wheel3, - gKartLuigi086Wheel0, - gKartLuigi086Wheel1, - gKartLuigi086Wheel2, - gKartLuigi086Wheel3, - gKartLuigi087Wheel0, - gKartLuigi087Wheel1, - gKartLuigi087Wheel2, - gKartLuigi087Wheel3, - gKartLuigi088Wheel0, - gKartLuigi088Wheel1, - gKartLuigi088Wheel2, - gKartLuigi088Wheel3, - gKartLuigi089Wheel0, - gKartLuigi089Wheel1, - gKartLuigi089Wheel2, - gKartLuigi089Wheel3, - gKartLuigi090Wheel0, - gKartLuigi090Wheel1, - gKartLuigi090Wheel2, - gKartLuigi090Wheel3, - gKartLuigi091Wheel0, - gKartLuigi091Wheel1, - gKartLuigi091Wheel2, - gKartLuigi091Wheel3, - gKartLuigi092Wheel0, - gKartLuigi092Wheel1, - gKartLuigi092Wheel2, - gKartLuigi092Wheel3, - gKartLuigi093Wheel0, - gKartLuigi093Wheel1, - gKartLuigi093Wheel2, - gKartLuigi093Wheel3, - gKartLuigi094Wheel0, - gKartLuigi094Wheel1, - gKartLuigi094Wheel2, - gKartLuigi094Wheel3, - gKartLuigi095Wheel0, - gKartLuigi095Wheel1, - gKartLuigi095Wheel2, - gKartLuigi095Wheel3, - gKartLuigi096Wheel0, - gKartLuigi096Wheel1, - gKartLuigi096Wheel2, - gKartLuigi096Wheel3, - gKartLuigi097Wheel0, - gKartLuigi097Wheel1, - gKartLuigi097Wheel2, - gKartLuigi097Wheel3, - gKartLuigi098Wheel0, - gKartLuigi098Wheel1, - gKartLuigi098Wheel2, - gKartLuigi098Wheel3, - gKartLuigi099Wheel0, - gKartLuigi099Wheel1, - gKartLuigi099Wheel2, - gKartLuigi099Wheel3, - gKartLuigi100Wheel0, - gKartLuigi100Wheel1, - gKartLuigi100Wheel2, - gKartLuigi100Wheel3, - gKartLuigi101Wheel0, - gKartLuigi101Wheel1, - gKartLuigi101Wheel2, - gKartLuigi101Wheel3, - gKartLuigi102Wheel0, - gKartLuigi102Wheel1, - gKartLuigi102Wheel2, - gKartLuigi102Wheel3, - gKartLuigi103Wheel0, - gKartLuigi103Wheel1, - gKartLuigi103Wheel2, - gKartLuigi103Wheel3, - gKartLuigi104Wheel0, - gKartLuigi104Wheel1, - gKartLuigi104Wheel2, - gKartLuigi104Wheel3, - gKartLuigi105Wheel0, - gKartLuigi105Wheel1, - gKartLuigi105Wheel2, - gKartLuigi105Wheel3, - gKartLuigi106Wheel0, - gKartLuigi106Wheel1, - gKartLuigi106Wheel2, - gKartLuigi106Wheel3, - gKartLuigi107Wheel0, - gKartLuigi107Wheel1, - gKartLuigi107Wheel2, - gKartLuigi107Wheel3, - gKartLuigi108Wheel0, - gKartLuigi108Wheel1, - gKartLuigi108Wheel2, - gKartLuigi108Wheel3, - gKartLuigi109Wheel0, - gKartLuigi109Wheel1, - gKartLuigi109Wheel2, - gKartLuigi109Wheel3, - gKartLuigi110Wheel0, - gKartLuigi110Wheel1, - gKartLuigi110Wheel2, - gKartLuigi110Wheel3, - gKartLuigi111Wheel0, - gKartLuigi111Wheel1, - gKartLuigi111Wheel2, - gKartLuigi111Wheel3, - gKartLuigi112Wheel0, - gKartLuigi112Wheel1, - gKartLuigi112Wheel2, - gKartLuigi112Wheel3, - gKartLuigi113Wheel0, - gKartLuigi113Wheel1, - gKartLuigi113Wheel2, - gKartLuigi113Wheel3, - gKartLuigi114Wheel0, - gKartLuigi114Wheel1, - gKartLuigi114Wheel2, - gKartLuigi114Wheel3, - gKartLuigi115Wheel0, - gKartLuigi115Wheel1, - gKartLuigi115Wheel2, - gKartLuigi115Wheel3, - gKartLuigi116Wheel0, - gKartLuigi116Wheel1, - gKartLuigi116Wheel2, - gKartLuigi116Wheel3, - gKartLuigi117Wheel0, - gKartLuigi117Wheel1, - gKartLuigi117Wheel2, - gKartLuigi117Wheel3, - gKartLuigi118Wheel0, - gKartLuigi118Wheel1, - gKartLuigi118Wheel2, - gKartLuigi118Wheel3, - gKartLuigi119Wheel0, - gKartLuigi119Wheel1, - gKartLuigi119Wheel2, - gKartLuigi119Wheel3, - gKartLuigi120Wheel0, - gKartLuigi120Wheel1, - gKartLuigi120Wheel2, - gKartLuigi120Wheel3, - gKartLuigi121Wheel0, - gKartLuigi121Wheel1, - gKartLuigi121Wheel2, - gKartLuigi121Wheel3, - gKartLuigi122Wheel0, - gKartLuigi122Wheel1, - gKartLuigi122Wheel2, - gKartLuigi122Wheel3, - gKartLuigi123Wheel0, - gKartLuigi123Wheel1, - gKartLuigi123Wheel2, - gKartLuigi123Wheel3, - gKartLuigi124Wheel0, - gKartLuigi124Wheel1, - gKartLuigi124Wheel2, - gKartLuigi124Wheel3, - gKartLuigi125Wheel0, - gKartLuigi125Wheel1, - gKartLuigi125Wheel2, - gKartLuigi125Wheel3, - gKartLuigi126Wheel0, - gKartLuigi126Wheel1, - gKartLuigi126Wheel2, - gKartLuigi126Wheel3, - gKartLuigi127Wheel0, - gKartLuigi127Wheel1, - gKartLuigi127Wheel2, - gKartLuigi127Wheel3, - gKartLuigi128Wheel0, - gKartLuigi128Wheel1, - gKartLuigi128Wheel2, - gKartLuigi128Wheel3, - gKartLuigi129Wheel0, - gKartLuigi129Wheel1, - gKartLuigi129Wheel2, - gKartLuigi129Wheel3, - gKartLuigi130Wheel0, - gKartLuigi130Wheel1, - gKartLuigi130Wheel2, - gKartLuigi130Wheel3, - gKartLuigi131Wheel0, - gKartLuigi131Wheel1, - gKartLuigi131Wheel2, - gKartLuigi131Wheel3, - gKartLuigi132Wheel0, - gKartLuigi132Wheel1, - gKartLuigi132Wheel2, - gKartLuigi132Wheel3, - gKartLuigi133Wheel0, - gKartLuigi133Wheel1, - gKartLuigi133Wheel2, - gKartLuigi133Wheel3, - gKartLuigi134Wheel0, - gKartLuigi134Wheel1, - gKartLuigi134Wheel2, - gKartLuigi134Wheel3, - gKartLuigi135Wheel0, - gKartLuigi135Wheel1, - gKartLuigi135Wheel2, - gKartLuigi135Wheel3, - gKartLuigi136Wheel0, - gKartLuigi136Wheel1, - gKartLuigi136Wheel2, - gKartLuigi136Wheel3, - gKartLuigi137Wheel0, - gKartLuigi137Wheel1, - gKartLuigi137Wheel2, - gKartLuigi137Wheel3, - gKartLuigi138Wheel0, - gKartLuigi138Wheel1, - gKartLuigi138Wheel2, - gKartLuigi138Wheel3, - gKartLuigi139Wheel0, - gKartLuigi139Wheel1, - gKartLuigi139Wheel2, - gKartLuigi139Wheel3, - gKartLuigi140Wheel0, - gKartLuigi140Wheel1, - gKartLuigi140Wheel2, - gKartLuigi140Wheel3, - gKartLuigi141Wheel0, - gKartLuigi141Wheel1, - gKartLuigi141Wheel2, - gKartLuigi141Wheel3, - gKartLuigi142Wheel0, - gKartLuigi142Wheel1, - gKartLuigi142Wheel2, - gKartLuigi142Wheel3, - gKartLuigi143Wheel0, - gKartLuigi143Wheel1, - gKartLuigi143Wheel2, - gKartLuigi143Wheel3, - gKartLuigi144Wheel0, - gKartLuigi144Wheel1, - gKartLuigi144Wheel2, - gKartLuigi144Wheel3, - gKartLuigi145Wheel0, - gKartLuigi145Wheel1, - gKartLuigi145Wheel2, - gKartLuigi145Wheel3, - gKartLuigi146Wheel0, - gKartLuigi146Wheel1, - gKartLuigi146Wheel2, - gKartLuigi146Wheel3, - gKartLuigi147Wheel0, - gKartLuigi147Wheel1, - gKartLuigi147Wheel2, - gKartLuigi147Wheel3, - gKartLuigi148Wheel0, - gKartLuigi148Wheel1, - gKartLuigi148Wheel2, - gKartLuigi148Wheel3, - gKartLuigi149Wheel0, - gKartLuigi149Wheel1, - gKartLuigi149Wheel2, - gKartLuigi149Wheel3, - gKartLuigi150Wheel0, - gKartLuigi150Wheel1, - gKartLuigi150Wheel2, - gKartLuigi150Wheel3, - gKartLuigi151Wheel0, - gKartLuigi151Wheel1, - gKartLuigi151Wheel2, - gKartLuigi151Wheel3, - gKartLuigi152Wheel0, - gKartLuigi152Wheel1, - gKartLuigi152Wheel2, - gKartLuigi152Wheel3, - gKartLuigi153Wheel0, - gKartLuigi153Wheel1, - gKartLuigi153Wheel2, - gKartLuigi153Wheel3, - gKartLuigi154Wheel0, - gKartLuigi154Wheel1, - gKartLuigi154Wheel2, - gKartLuigi154Wheel3, - gKartLuigi155Wheel0, - gKartLuigi155Wheel1, - gKartLuigi155Wheel2, - gKartLuigi155Wheel3, - gKartLuigi156Wheel0, - gKartLuigi156Wheel1, - gKartLuigi156Wheel2, - gKartLuigi156Wheel3, - gKartLuigi157Wheel0, - gKartLuigi157Wheel1, - gKartLuigi157Wheel2, - gKartLuigi157Wheel3, - gKartLuigi158Wheel0, - gKartLuigi158Wheel1, - gKartLuigi158Wheel2, - gKartLuigi158Wheel3, - gKartLuigi159Wheel0, - gKartLuigi159Wheel1, - gKartLuigi159Wheel2, - gKartLuigi159Wheel3, - gKartLuigi160Wheel0, - gKartLuigi160Wheel1, - gKartLuigi160Wheel2, - gKartLuigi160Wheel3, - gKartLuigi161Wheel0, - gKartLuigi161Wheel1, - gKartLuigi161Wheel2, - gKartLuigi161Wheel3, - gKartLuigi162Wheel0, - gKartLuigi162Wheel1, - gKartLuigi162Wheel2, - gKartLuigi162Wheel3, - gKartLuigi163Wheel0, - gKartLuigi163Wheel1, - gKartLuigi163Wheel2, - gKartLuigi163Wheel3, - gKartLuigi164Wheel0, - gKartLuigi164Wheel1, - gKartLuigi164Wheel2, - gKartLuigi164Wheel3, - gKartLuigi165Wheel0, - gKartLuigi165Wheel1, - gKartLuigi165Wheel2, - gKartLuigi165Wheel3, - gKartLuigi166Wheel0, - gKartLuigi166Wheel1, - gKartLuigi166Wheel2, - gKartLuigi166Wheel3, - gKartLuigi167Wheel0, - gKartLuigi167Wheel1, - gKartLuigi167Wheel2, - gKartLuigi167Wheel3, - gKartLuigi168Wheel0, - gKartLuigi168Wheel1, - gKartLuigi168Wheel2, - gKartLuigi168Wheel3, - gKartLuigi169Wheel0, - gKartLuigi169Wheel1, - gKartLuigi169Wheel2, - gKartLuigi169Wheel3, - gKartLuigi170Wheel0, - gKartLuigi170Wheel1, - gKartLuigi170Wheel2, - gKartLuigi170Wheel3, - gKartLuigi171Wheel0, - gKartLuigi171Wheel1, - gKartLuigi171Wheel2, - gKartLuigi171Wheel3, - gKartLuigi172Wheel0, - gKartLuigi172Wheel1, - gKartLuigi172Wheel2, - gKartLuigi172Wheel3, - gKartLuigi173Wheel0, - gKartLuigi173Wheel1, - gKartLuigi173Wheel2, - gKartLuigi173Wheel3, - gKartLuigi174Wheel0, - gKartLuigi174Wheel1, - gKartLuigi174Wheel2, - gKartLuigi174Wheel3, - gKartLuigi175Wheel0, - gKartLuigi175Wheel1, - gKartLuigi175Wheel2, - gKartLuigi175Wheel3, - gKartLuigi176Wheel0, - gKartLuigi176Wheel1, - gKartLuigi176Wheel2, - gKartLuigi176Wheel3, - gKartLuigi177Wheel0, - gKartLuigi177Wheel1, - gKartLuigi177Wheel2, - gKartLuigi177Wheel3, - gKartLuigi178Wheel0, - gKartLuigi178Wheel1, - gKartLuigi178Wheel2, - gKartLuigi178Wheel3, - gKartLuigi179Wheel0, - gKartLuigi179Wheel1, - gKartLuigi179Wheel2, - gKartLuigi179Wheel3, - gKartLuigi180Wheel0, - gKartLuigi180Wheel1, - gKartLuigi180Wheel2, - gKartLuigi180Wheel3, - gKartLuigi181Wheel0, - gKartLuigi181Wheel1, - gKartLuigi181Wheel2, - gKartLuigi181Wheel3, - gKartLuigi182Wheel0, - gKartLuigi182Wheel1, - gKartLuigi182Wheel2, - gKartLuigi182Wheel3, - gKartLuigi183Wheel0, - gKartLuigi183Wheel1, - gKartLuigi183Wheel2, - gKartLuigi183Wheel3, - gKartLuigi184Wheel0, - gKartLuigi184Wheel1, - gKartLuigi184Wheel2, - gKartLuigi184Wheel3, - gKartLuigi185Wheel0, - gKartLuigi185Wheel1, - gKartLuigi185Wheel2, - gKartLuigi185Wheel3, - gKartLuigi186Wheel0, - gKartLuigi186Wheel1, - gKartLuigi186Wheel2, - gKartLuigi186Wheel3, - gKartLuigi187Wheel0, - gKartLuigi187Wheel1, - gKartLuigi187Wheel2, - gKartLuigi187Wheel3, - gKartLuigi188Wheel0, - gKartLuigi188Wheel1, - gKartLuigi188Wheel2, - gKartLuigi188Wheel3, - gKartLuigi189Wheel0, - gKartLuigi189Wheel1, - gKartLuigi189Wheel2, - gKartLuigi189Wheel3, - gKartLuigi190Wheel0, - gKartLuigi190Wheel1, - gKartLuigi190Wheel2, - gKartLuigi190Wheel3, - gKartLuigi191Wheel0, - gKartLuigi191Wheel1, - gKartLuigi191Wheel2, - gKartLuigi191Wheel3, - gKartLuigi192Wheel0, - gKartLuigi192Wheel1, - gKartLuigi192Wheel2, - gKartLuigi192Wheel3, - gKartLuigi193Wheel0, - gKartLuigi193Wheel1, - gKartLuigi193Wheel2, - gKartLuigi193Wheel3, - gKartLuigi194Wheel0, - gKartLuigi194Wheel1, - gKartLuigi194Wheel2, - gKartLuigi194Wheel3, - gKartLuigi195Wheel0, - gKartLuigi195Wheel1, - gKartLuigi195Wheel2, - gKartLuigi195Wheel3, - gKartLuigi196Wheel0, - gKartLuigi196Wheel1, - gKartLuigi196Wheel2, - gKartLuigi196Wheel3, - gKartLuigi197Wheel0, - gKartLuigi197Wheel1, - gKartLuigi197Wheel2, - gKartLuigi197Wheel3, - gKartLuigi198Wheel0, - gKartLuigi198Wheel1, - gKartLuigi198Wheel2, - gKartLuigi198Wheel3, - gKartLuigi199Wheel0, - gKartLuigi199Wheel1, - gKartLuigi199Wheel2, - gKartLuigi199Wheel3, - gKartLuigi200Wheel0, - gKartLuigi200Wheel1, - gKartLuigi200Wheel2, - gKartLuigi200Wheel3, - gKartLuigi201Wheel0, - gKartLuigi201Wheel1, - gKartLuigi201Wheel2, - gKartLuigi201Wheel3, - gKartLuigi202Wheel0, - gKartLuigi202Wheel1, - gKartLuigi202Wheel2, - gKartLuigi202Wheel3, - gKartLuigi203Wheel0, - gKartLuigi203Wheel1, - gKartLuigi203Wheel2, - gKartLuigi203Wheel3, - gKartLuigi204Wheel0, - gKartLuigi204Wheel1, - gKartLuigi204Wheel2, - gKartLuigi204Wheel3, - gKartLuigi205Wheel0, - gKartLuigi205Wheel1, - gKartLuigi205Wheel2, - gKartLuigi205Wheel3, - gKartLuigi206Wheel0, - gKartLuigi206Wheel1, - gKartLuigi206Wheel2, - gKartLuigi206Wheel3, - gKartLuigi207Wheel0, - gKartLuigi207Wheel1, - gKartLuigi207Wheel2, - gKartLuigi207Wheel3, - gKartLuigi208Wheel0, - gKartLuigi208Wheel1, - gKartLuigi208Wheel2, - gKartLuigi208Wheel3, - gKartLuigi209Wheel0, - gKartLuigi209Wheel1, - gKartLuigi209Wheel2, - gKartLuigi209Wheel3, - gKartLuigi210Wheel0, - gKartLuigi210Wheel1, - gKartLuigi210Wheel2, - gKartLuigi210Wheel3, - gKartLuigi211Wheel0, - gKartLuigi211Wheel1, - gKartLuigi211Wheel2, - gKartLuigi211Wheel3, - gKartLuigi212Wheel0, - gKartLuigi212Wheel1, - gKartLuigi212Wheel2, - gKartLuigi212Wheel3, - gKartLuigi213Wheel0, - gKartLuigi213Wheel1, - gKartLuigi213Wheel2, - gKartLuigi213Wheel3, - gKartLuigi214Wheel0, - gKartLuigi214Wheel1, - gKartLuigi214Wheel2, - gKartLuigi214Wheel3, - gKartLuigi215Wheel0, - gKartLuigi215Wheel1, - gKartLuigi215Wheel2, - gKartLuigi215Wheel3, - gKartLuigi216Wheel0, - gKartLuigi216Wheel1, - gKartLuigi216Wheel2, - gKartLuigi216Wheel3, - gKartLuigi217Wheel0, - gKartLuigi217Wheel1, - gKartLuigi217Wheel2, - gKartLuigi217Wheel3, - gKartLuigi218Wheel0, - gKartLuigi218Wheel1, - gKartLuigi218Wheel2, - gKartLuigi218Wheel3, - gKartLuigi219Wheel0, - gKartLuigi219Wheel1, - gKartLuigi219Wheel2, - gKartLuigi219Wheel3, - gKartLuigi220Wheel0, - gKartLuigi220Wheel1, - gKartLuigi220Wheel2, - gKartLuigi220Wheel3, - gKartLuigi221Wheel0, - gKartLuigi221Wheel1, - gKartLuigi221Wheel2, - gKartLuigi221Wheel3, - gKartLuigi222Wheel0, - gKartLuigi222Wheel1, - gKartLuigi222Wheel2, - gKartLuigi222Wheel3, - gKartLuigi223Wheel0, - gKartLuigi223Wheel1, - gKartLuigi223Wheel2, - gKartLuigi223Wheel3, - gKartLuigi224Wheel0, - gKartLuigi224Wheel1, - gKartLuigi224Wheel2, - gKartLuigi224Wheel3, - gKartLuigi225Wheel0, - gKartLuigi225Wheel1, - gKartLuigi225Wheel2, - gKartLuigi225Wheel3, - gKartLuigi226Wheel0, - gKartLuigi226Wheel1, - gKartLuigi226Wheel2, - gKartLuigi226Wheel3, - gKartLuigi227Wheel0, - gKartLuigi227Wheel1, - gKartLuigi227Wheel2, - gKartLuigi227Wheel3, - gKartLuigi228Wheel0, - gKartLuigi228Wheel1, - gKartLuigi228Wheel2, - gKartLuigi228Wheel3, - gKartLuigi229Wheel0, - gKartLuigi229Wheel1, - gKartLuigi229Wheel2, - gKartLuigi229Wheel3, - gKartLuigi230Wheel0, - gKartLuigi230Wheel1, - gKartLuigi230Wheel2, - gKartLuigi230Wheel3, - gKartLuigi231Wheel0, - gKartLuigi231Wheel1, - gKartLuigi231Wheel2, - gKartLuigi231Wheel3, - gKartLuigi232Wheel0, - gKartLuigi232Wheel1, - gKartLuigi232Wheel2, - gKartLuigi232Wheel3, - gKartLuigi233Wheel0, - gKartLuigi233Wheel1, - gKartLuigi233Wheel2, - gKartLuigi233Wheel3, - gKartLuigi234Wheel0, - gKartLuigi234Wheel1, - gKartLuigi234Wheel2, - gKartLuigi234Wheel3, - gKartLuigi235Wheel0, - gKartLuigi235Wheel1, - gKartLuigi235Wheel2, - gKartLuigi235Wheel3, - gKartLuigi236Wheel0, - gKartLuigi236Wheel1, - gKartLuigi236Wheel2, - gKartLuigi236Wheel3, - gKartLuigi237Wheel0, - gKartLuigi237Wheel1, - gKartLuigi237Wheel2, - gKartLuigi237Wheel3, - gKartLuigi238Wheel0, - gKartLuigi238Wheel1, - gKartLuigi238Wheel2, - gKartLuigi238Wheel3, - gKartLuigi239Wheel0, - gKartLuigi239Wheel1, - gKartLuigi239Wheel2, - gKartLuigi239Wheel3, - gKartLuigi240Wheel0, - gKartLuigi240Wheel1, - gKartLuigi240Wheel2, - gKartLuigi240Wheel3, - gKartLuigi241Wheel0, - gKartLuigi241Wheel1, - gKartLuigi241Wheel2, - gKartLuigi241Wheel3, - gKartLuigi242Wheel0, - gKartLuigi242Wheel1, - gKartLuigi242Wheel2, - gKartLuigi242Wheel3, - gKartLuigi243Wheel0, - gKartLuigi243Wheel1, - gKartLuigi243Wheel2, - gKartLuigi243Wheel3, - gKartLuigi244Wheel0, - gKartLuigi244Wheel1, - gKartLuigi244Wheel2, - gKartLuigi244Wheel3, - gKartLuigi245Wheel0, - gKartLuigi245Wheel1, - gKartLuigi245Wheel2, - gKartLuigi245Wheel3, - gKartLuigi246Wheel0, - gKartLuigi246Wheel1, - gKartLuigi246Wheel2, - gKartLuigi246Wheel3, - gKartLuigi247Wheel0, - gKartLuigi247Wheel1, - gKartLuigi247Wheel2, - gKartLuigi247Wheel3, - gKartLuigi248Wheel0, - gKartLuigi248Wheel1, - gKartLuigi248Wheel2, - gKartLuigi248Wheel3, - gKartLuigi249Wheel0, - gKartLuigi249Wheel1, - gKartLuigi249Wheel2, - gKartLuigi249Wheel3, - gKartLuigi250Wheel0, - gKartLuigi250Wheel1, - gKartLuigi250Wheel2, - gKartLuigi250Wheel3, - gKartLuigi251Wheel0, - gKartLuigi251Wheel1, - gKartLuigi251Wheel2, - gKartLuigi251Wheel3, - gKartLuigi252Wheel0, - gKartLuigi252Wheel1, - gKartLuigi252Wheel2, - gKartLuigi252Wheel3, - gKartLuigi253Wheel0, - gKartLuigi253Wheel1, - gKartLuigi253Wheel2, - gKartLuigi253Wheel3, - gKartLuigi254Wheel0, - gKartLuigi254Wheel1, - gKartLuigi254Wheel2, - gKartLuigi254Wheel3, - gKartLuigi255Wheel0, - gKartLuigi255Wheel1, - gKartLuigi255Wheel2, - gKartLuigi255Wheel3, - gKartLuigi256Wheel0, - gKartLuigi256Wheel1, - gKartLuigi256Wheel2, - gKartLuigi256Wheel3, - gKartLuigi257Wheel0, - gKartLuigi257Wheel1, - gKartLuigi257Wheel2, - gKartLuigi257Wheel3, - gKartLuigi258Wheel0, - gKartLuigi258Wheel1, - gKartLuigi258Wheel2, - gKartLuigi258Wheel3, - gKartLuigi259Wheel0, - gKartLuigi259Wheel1, - gKartLuigi259Wheel2, - gKartLuigi259Wheel3, - gKartLuigi260Wheel0, - gKartLuigi260Wheel1, - gKartLuigi260Wheel2, - gKartLuigi260Wheel3, - gKartLuigi261Wheel0, - gKartLuigi261Wheel1, - gKartLuigi261Wheel2, - gKartLuigi261Wheel3, - gKartLuigi262Wheel0, - gKartLuigi262Wheel1, - gKartLuigi262Wheel2, - gKartLuigi262Wheel3, - gKartLuigi263Wheel0, - gKartLuigi263Wheel1, - gKartLuigi263Wheel2, - gKartLuigi263Wheel3, - gKartLuigi264Wheel0, - gKartLuigi264Wheel1, - gKartLuigi264Wheel2, - gKartLuigi264Wheel3, - gKartLuigi265Wheel0, - gKartLuigi265Wheel1, - gKartLuigi265Wheel2, - gKartLuigi265Wheel3, - gKartLuigi266Wheel0, - gKartLuigi266Wheel1, - gKartLuigi266Wheel2, - gKartLuigi266Wheel3, - gKartLuigi267Wheel0, - gKartLuigi267Wheel1, - gKartLuigi267Wheel2, - gKartLuigi267Wheel3, - gKartLuigi268Wheel0, - gKartLuigi268Wheel1, - gKartLuigi268Wheel2, - gKartLuigi268Wheel3, - gKartLuigi269Wheel0, - gKartLuigi269Wheel1, - gKartLuigi269Wheel2, - gKartLuigi269Wheel3, - gKartLuigi270Wheel0, - gKartLuigi270Wheel1, - gKartLuigi270Wheel2, - gKartLuigi270Wheel3, - gKartLuigi271Wheel0, - gKartLuigi271Wheel1, - gKartLuigi271Wheel2, - gKartLuigi271Wheel3, - gKartLuigi272Wheel0, - gKartLuigi272Wheel1, - gKartLuigi272Wheel2, - gKartLuigi272Wheel3, - gKartLuigi273Wheel0, - gKartLuigi273Wheel1, - gKartLuigi273Wheel2, - gKartLuigi273Wheel3, - gKartLuigi274Wheel0, - gKartLuigi274Wheel1, - gKartLuigi274Wheel2, - gKartLuigi274Wheel3, - gKartLuigi275Wheel0, - gKartLuigi275Wheel1, - gKartLuigi275Wheel2, - gKartLuigi275Wheel3, - gKartLuigi276Wheel0, - gKartLuigi276Wheel1, - gKartLuigi276Wheel2, - gKartLuigi276Wheel3, - gKartLuigi277Wheel0, - gKartLuigi277Wheel1, - gKartLuigi277Wheel2, - gKartLuigi277Wheel3, - gKartLuigi278Wheel0, - gKartLuigi278Wheel1, - gKartLuigi278Wheel2, - gKartLuigi278Wheel3, - gKartLuigi279Wheel0, - gKartLuigi279Wheel1, - gKartLuigi279Wheel2, - gKartLuigi279Wheel3, - gKartLuigi280Wheel0, - gKartLuigi280Wheel1, - gKartLuigi280Wheel2, - gKartLuigi280Wheel3, - gKartLuigi281Wheel0, - gKartLuigi281Wheel1, - gKartLuigi281Wheel2, - gKartLuigi281Wheel3, - gKartLuigi282Wheel0, - gKartLuigi282Wheel1, - gKartLuigi282Wheel2, - gKartLuigi282Wheel3, - gKartLuigi283Wheel0, - gKartLuigi283Wheel1, - gKartLuigi283Wheel2, - gKartLuigi283Wheel3, - gKartLuigi284Wheel0, - gKartLuigi284Wheel1, - gKartLuigi284Wheel2, - gKartLuigi284Wheel3, - gKartLuigi285Wheel0, - gKartLuigi285Wheel1, - gKartLuigi285Wheel2, - gKartLuigi285Wheel3, - gKartLuigi286Wheel0, - gKartLuigi286Wheel1, - gKartLuigi286Wheel2, - gKartLuigi286Wheel3, - gKartLuigi287Wheel0, - gKartLuigi287Wheel1, - gKartLuigi287Wheel2, - gKartLuigi287Wheel3, - gKartLuigi288Wheel0, - gKartLuigi288Wheel1, - gKartLuigi288Wheel2, - gKartLuigi288Wheel3, -}; - -static const ALIGN_ASSET(2) char gKartLuigiPalette[] = "__OTR__luigi_kart/luigi_kart_palette"; - diff --git a/include/assets/luigi_raceway_data.h b/include/assets/luigi_raceway_data.h deleted file mode 100644 index 51b2314ab..000000000 --- a/include/assets/luigi_raceway_data.h +++ /dev/null @@ -1,366 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1A8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1A8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_328[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_328"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_480[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_480"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6E0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6E0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_868[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_868"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9F8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_9F8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_B48[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_B48"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_D80[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_D80"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_EE8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_EE8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1058[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1058"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1198[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1198"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1398[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1398"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1538[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1538"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_16D8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_16D8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1888[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1888"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1B00[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1B00"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1C78[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1C78"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1E30[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1E30"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1FD0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_1FD0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2240[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2240"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2348[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2348"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2518[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2518"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2658[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2658"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2860[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2860"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2978[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2978"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2BC0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2BC0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2D00[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2D00"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2F08[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2F08"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2FF8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_2FF8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_32C0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_32C0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3408[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_3408"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3610[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_3610"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_36A8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_36A8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3928[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_3928"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3AB0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_3AB0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3C18[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_3C18"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3CA0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_3CA0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3EB0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_3EB0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4058[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4058"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4198[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4198"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4240[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4240"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4440[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4440"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4638[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4638"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4720[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4720"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4828[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4828"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4A18[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4A18"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4C60[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4C60"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4CF8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4CF8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4E38[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4E38"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4FD8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_4FD8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5220[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5220"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_52D0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_52D0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5420[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5420"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5558[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5558"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5728[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5728"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_57F8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_57F8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5940[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5940"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5A60[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5A60"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5BA0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5BA0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5CB8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5CB8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5E10[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5E10"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5F08[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_5F08"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6018[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6018"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6150[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6150"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6288[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6288"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6350[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6350"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6400[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6400"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6558[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6558"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_65B0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_65B0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6608[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6608"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6658[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6658"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_66B8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_66B8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6708[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6708"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_67A0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_67A0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6810[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6810"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_68C0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_68C0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6930[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6930"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6A00[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6A00"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6A90[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6A90"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6B58[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6B58"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6C40[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6C40"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6DA0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6DA0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6EB0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6EB0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6FF0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_6FF0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7110[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7110"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7248[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7248"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7388[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7388"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_74B0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_74B0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_75F0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_75F0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7750[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7750"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7928[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7928"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7A18[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7A18"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7BB0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7BB0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7CD0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7CD0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7EE8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7EE8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7FA0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_7FA0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8158[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8158"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8260[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8260"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8450[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8450"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8508[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8508"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_86F8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_86F8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8790[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8790"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8958[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8958"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8A70[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8A70"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8CC8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8CC8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8D68[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8D68"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8F00[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_8F00"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9058[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_9058"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9310[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_9310"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9408[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_9408"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_95A0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_95A0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_97B0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_97B0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_99C0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_99C0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9AD0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_9AD0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9C50[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_9C50"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9E58[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_9E58"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_A028[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_A028"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_A178[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_A178"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_A320[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_A320"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_waypoints[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_track_waypoints[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_basket_model_lod2[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_basket_model_lod2"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model1[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model2[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model3[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_model3"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model4[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_model4"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model5[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_model5"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_lights_C3A0[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_lights_C3A0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_light1[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_light1"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_basket_model_lod1[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_basket_model_lod1"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model6[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_model6"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model7[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_model7"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_unknown_model8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_sign_left[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_sign_left"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_sign_right[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_sign_right"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_balloon_basket[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_balloon_basket"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_balloon_rope[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_balloon_rope"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F588[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F588"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F588[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F588"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F630[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F630"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F630[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F630"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F640[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F640"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F640[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F640"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F650[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F650"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F660[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F660"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F660[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F660"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F718[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F718"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F718[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F718"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F728[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F728"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F728[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F728"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F938[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F938"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F938[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F938"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F948[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F948"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F948[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F948"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F960[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F960"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_F970[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_F970"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F970[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_F970"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FA00[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FA00"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_FA00[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_FA00"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_FA10[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_FA10"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FA10[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FA10"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FA20[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FA20"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_FA30[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_FA30"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FA30[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FA30"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_FB10[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_FB10"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FB10[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FB10"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_FB20[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_FB20"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FB20[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FB20"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_FBB8[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_FBB8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FBB8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FBB8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FBC8[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FBC8"; - -static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_gfx_FBC8[] = "__OTR__luigi_raceway_data/luigi_raceway_data_seg6_gfx_FBC8"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FBE0[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FBE0"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_tree_model[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_tree_model"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FC70[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FC70"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FD40[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_dl_FD40"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_item_box_spawns[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_tree_spawn[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_tree_spawn"; - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_addr[] = "__OTR__luigi_raceway_data/d_course_luigi_raceway_addr"; - diff --git a/include/assets/luigi_raceway_displaylists.h b/include/assets/luigi_raceway_displaylists.h deleted file mode 100644 index 3c46d3bc0..000000000 --- a/include/assets/luigi_raceway_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dls[] = "__OTR__luigi_raceway_displaylists/d_course_mario_raceway_packed_dls"; - diff --git a/include/assets/luigi_raceway_vertices.h b/include/assets/luigi_raceway_vertices.h deleted file mode 100644 index 830fcf9d8..000000000 --- a/include/assets/luigi_raceway_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex[] = "__OTR__luigi_raceway_vertices/d_course_luigi_raceway_vertex"; - diff --git a/include/assets/mario_kart.h b/include/assets/mario_kart.h deleted file mode 100644 index 763015793..000000000 --- a/include/assets/mario_kart.h +++ /dev/null @@ -1,4120 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gKartMario000[] = "__OTR__mario_kart/mario_kart_frame000"; - -static const ALIGN_ASSET(2) char gKartMario001[] = "__OTR__mario_kart/mario_kart_frame001"; - -static const ALIGN_ASSET(2) char gKartMario002[] = "__OTR__mario_kart/mario_kart_frame002"; - -static const ALIGN_ASSET(2) char gKartMario003[] = "__OTR__mario_kart/mario_kart_frame003"; - -static const ALIGN_ASSET(2) char gKartMario004[] = "__OTR__mario_kart/mario_kart_frame004"; - -static const ALIGN_ASSET(2) char gKartMario005[] = "__OTR__mario_kart/mario_kart_frame005"; - -static const ALIGN_ASSET(2) char gKartMario006[] = "__OTR__mario_kart/mario_kart_frame006"; - -static const ALIGN_ASSET(2) char gKartMario007[] = "__OTR__mario_kart/mario_kart_frame007"; - -static const ALIGN_ASSET(2) char gKartMario008[] = "__OTR__mario_kart/mario_kart_frame008"; - -static const ALIGN_ASSET(2) char gKartMario009[] = "__OTR__mario_kart/mario_kart_frame009"; - -static const ALIGN_ASSET(2) char gKartMario010[] = "__OTR__mario_kart/mario_kart_frame010"; - -static const ALIGN_ASSET(2) char gKartMario011[] = "__OTR__mario_kart/mario_kart_frame011"; - -static const ALIGN_ASSET(2) char gKartMario012[] = "__OTR__mario_kart/mario_kart_frame012"; - -static const ALIGN_ASSET(2) char gKartMario013[] = "__OTR__mario_kart/mario_kart_frame013"; - -static const ALIGN_ASSET(2) char gKartMario014[] = "__OTR__mario_kart/mario_kart_frame014"; - -static const ALIGN_ASSET(2) char gKartMario015[] = "__OTR__mario_kart/mario_kart_frame015"; - -static const ALIGN_ASSET(2) char gKartMario016[] = "__OTR__mario_kart/mario_kart_frame016"; - -static const ALIGN_ASSET(2) char gKartMario017[] = "__OTR__mario_kart/mario_kart_frame017"; - -static const ALIGN_ASSET(2) char gKartMario018[] = "__OTR__mario_kart/mario_kart_frame018"; - -static const ALIGN_ASSET(2) char gKartMario019[] = "__OTR__mario_kart/mario_kart_frame019"; - -static const ALIGN_ASSET(2) char gKartMario020[] = "__OTR__mario_kart/mario_kart_frame020"; - -static const ALIGN_ASSET(2) char gKartMario021[] = "__OTR__mario_kart/mario_kart_frame021"; - -static const ALIGN_ASSET(2) char gKartMario022[] = "__OTR__mario_kart/mario_kart_frame022"; - -static const ALIGN_ASSET(2) char gKartMario023[] = "__OTR__mario_kart/mario_kart_frame023"; - -static const ALIGN_ASSET(2) char gKartMario024[] = "__OTR__mario_kart/mario_kart_frame024"; - -static const ALIGN_ASSET(2) char gKartMario025[] = "__OTR__mario_kart/mario_kart_frame025"; - -static const ALIGN_ASSET(2) char gKartMario026[] = "__OTR__mario_kart/mario_kart_frame026"; - -static const ALIGN_ASSET(2) char gKartMario027[] = "__OTR__mario_kart/mario_kart_frame027"; - -static const ALIGN_ASSET(2) char gKartMario028[] = "__OTR__mario_kart/mario_kart_frame028"; - -static const ALIGN_ASSET(2) char gKartMario029[] = "__OTR__mario_kart/mario_kart_frame029"; - -static const ALIGN_ASSET(2) char gKartMario030[] = "__OTR__mario_kart/mario_kart_frame030"; - -static const ALIGN_ASSET(2) char gKartMario031[] = "__OTR__mario_kart/mario_kart_frame031"; - -static const ALIGN_ASSET(2) char gKartMario032[] = "__OTR__mario_kart/mario_kart_frame032"; - -static const ALIGN_ASSET(2) char gKartMario033[] = "__OTR__mario_kart/mario_kart_frame033"; - -static const ALIGN_ASSET(2) char gKartMario034[] = "__OTR__mario_kart/mario_kart_frame034"; - -static const ALIGN_ASSET(2) char gKartMario035[] = "__OTR__mario_kart/mario_kart_frame035"; - -static const ALIGN_ASSET(2) char gKartMario036[] = "__OTR__mario_kart/mario_kart_frame036"; - -static const ALIGN_ASSET(2) char gKartMario037[] = "__OTR__mario_kart/mario_kart_frame037"; - -static const ALIGN_ASSET(2) char gKartMario038[] = "__OTR__mario_kart/mario_kart_frame038"; - -static const ALIGN_ASSET(2) char gKartMario039[] = "__OTR__mario_kart/mario_kart_frame039"; - -static const ALIGN_ASSET(2) char gKartMario040[] = "__OTR__mario_kart/mario_kart_frame040"; - -static const ALIGN_ASSET(2) char gKartMario041[] = "__OTR__mario_kart/mario_kart_frame041"; - -static const ALIGN_ASSET(2) char gKartMario042[] = "__OTR__mario_kart/mario_kart_frame042"; - -static const ALIGN_ASSET(2) char gKartMario043[] = "__OTR__mario_kart/mario_kart_frame043"; - -static const ALIGN_ASSET(2) char gKartMario044[] = "__OTR__mario_kart/mario_kart_frame044"; - -static const ALIGN_ASSET(2) char gKartMario045[] = "__OTR__mario_kart/mario_kart_frame045"; - -static const ALIGN_ASSET(2) char gKartMario046[] = "__OTR__mario_kart/mario_kart_frame046"; - -static const ALIGN_ASSET(2) char gKartMario047[] = "__OTR__mario_kart/mario_kart_frame047"; - -static const ALIGN_ASSET(2) char gKartMario048[] = "__OTR__mario_kart/mario_kart_frame048"; - -static const ALIGN_ASSET(2) char gKartMario049[] = "__OTR__mario_kart/mario_kart_frame049"; - -static const ALIGN_ASSET(2) char gKartMario050[] = "__OTR__mario_kart/mario_kart_frame050"; - -static const ALIGN_ASSET(2) char gKartMario051[] = "__OTR__mario_kart/mario_kart_frame051"; - -static const ALIGN_ASSET(2) char gKartMario052[] = "__OTR__mario_kart/mario_kart_frame052"; - -static const ALIGN_ASSET(2) char gKartMario053[] = "__OTR__mario_kart/mario_kart_frame053"; - -static const ALIGN_ASSET(2) char gKartMario054[] = "__OTR__mario_kart/mario_kart_frame054"; - -static const ALIGN_ASSET(2) char gKartMario055[] = "__OTR__mario_kart/mario_kart_frame055"; - -static const ALIGN_ASSET(2) char gKartMario056[] = "__OTR__mario_kart/mario_kart_frame056"; - -static const ALIGN_ASSET(2) char gKartMario057[] = "__OTR__mario_kart/mario_kart_frame057"; - -static const ALIGN_ASSET(2) char gKartMario058[] = "__OTR__mario_kart/mario_kart_frame058"; - -static const ALIGN_ASSET(2) char gKartMario059[] = "__OTR__mario_kart/mario_kart_frame059"; - -static const ALIGN_ASSET(2) char gKartMario060[] = "__OTR__mario_kart/mario_kart_frame060"; - -static const ALIGN_ASSET(2) char gKartMario061[] = "__OTR__mario_kart/mario_kart_frame061"; - -static const ALIGN_ASSET(2) char gKartMario062[] = "__OTR__mario_kart/mario_kart_frame062"; - -static const ALIGN_ASSET(2) char gKartMario063[] = "__OTR__mario_kart/mario_kart_frame063"; - -static const ALIGN_ASSET(2) char gKartMario064[] = "__OTR__mario_kart/mario_kart_frame064"; - -static const ALIGN_ASSET(2) char gKartMario065[] = "__OTR__mario_kart/mario_kart_frame065"; - -static const ALIGN_ASSET(2) char gKartMario066[] = "__OTR__mario_kart/mario_kart_frame066"; - -static const ALIGN_ASSET(2) char gKartMario067[] = "__OTR__mario_kart/mario_kart_frame067"; - -static const ALIGN_ASSET(2) char gKartMario068[] = "__OTR__mario_kart/mario_kart_frame068"; - -static const ALIGN_ASSET(2) char gKartMario069[] = "__OTR__mario_kart/mario_kart_frame069"; - -static const ALIGN_ASSET(2) char gKartMario070[] = "__OTR__mario_kart/mario_kart_frame070"; - -static const ALIGN_ASSET(2) char gKartMario071[] = "__OTR__mario_kart/mario_kart_frame071"; - -static const ALIGN_ASSET(2) char gKartMario072[] = "__OTR__mario_kart/mario_kart_frame072"; - -static const ALIGN_ASSET(2) char gKartMario073[] = "__OTR__mario_kart/mario_kart_frame073"; - -static const ALIGN_ASSET(2) char gKartMario074[] = "__OTR__mario_kart/mario_kart_frame074"; - -static const ALIGN_ASSET(2) char gKartMario075[] = "__OTR__mario_kart/mario_kart_frame075"; - -static const ALIGN_ASSET(2) char gKartMario076[] = "__OTR__mario_kart/mario_kart_frame076"; - -static const ALIGN_ASSET(2) char gKartMario077[] = "__OTR__mario_kart/mario_kart_frame077"; - -static const ALIGN_ASSET(2) char gKartMario078[] = "__OTR__mario_kart/mario_kart_frame078"; - -static const ALIGN_ASSET(2) char gKartMario079[] = "__OTR__mario_kart/mario_kart_frame079"; - -static const ALIGN_ASSET(2) char gKartMario080[] = "__OTR__mario_kart/mario_kart_frame080"; - -static const ALIGN_ASSET(2) char gKartMario081[] = "__OTR__mario_kart/mario_kart_frame081"; - -static const ALIGN_ASSET(2) char gKartMario082[] = "__OTR__mario_kart/mario_kart_frame082"; - -static const ALIGN_ASSET(2) char gKartMario083[] = "__OTR__mario_kart/mario_kart_frame083"; - -static const ALIGN_ASSET(2) char gKartMario084[] = "__OTR__mario_kart/mario_kart_frame084"; - -static const ALIGN_ASSET(2) char gKartMario085[] = "__OTR__mario_kart/mario_kart_frame085"; - -static const ALIGN_ASSET(2) char gKartMario086[] = "__OTR__mario_kart/mario_kart_frame086"; - -static const ALIGN_ASSET(2) char gKartMario087[] = "__OTR__mario_kart/mario_kart_frame087"; - -static const ALIGN_ASSET(2) char gKartMario088[] = "__OTR__mario_kart/mario_kart_frame088"; - -static const ALIGN_ASSET(2) char gKartMario089[] = "__OTR__mario_kart/mario_kart_frame089"; - -static const ALIGN_ASSET(2) char gKartMario090[] = "__OTR__mario_kart/mario_kart_frame090"; - -static const ALIGN_ASSET(2) char gKartMario091[] = "__OTR__mario_kart/mario_kart_frame091"; - -static const ALIGN_ASSET(2) char gKartMario092[] = "__OTR__mario_kart/mario_kart_frame092"; - -static const ALIGN_ASSET(2) char gKartMario093[] = "__OTR__mario_kart/mario_kart_frame093"; - -static const ALIGN_ASSET(2) char gKartMario094[] = "__OTR__mario_kart/mario_kart_frame094"; - -static const ALIGN_ASSET(2) char gKartMario095[] = "__OTR__mario_kart/mario_kart_frame095"; - -static const ALIGN_ASSET(2) char gKartMario096[] = "__OTR__mario_kart/mario_kart_frame096"; - -static const ALIGN_ASSET(2) char gKartMario097[] = "__OTR__mario_kart/mario_kart_frame097"; - -static const ALIGN_ASSET(2) char gKartMario098[] = "__OTR__mario_kart/mario_kart_frame098"; - -static const ALIGN_ASSET(2) char gKartMario099[] = "__OTR__mario_kart/mario_kart_frame099"; - -static const ALIGN_ASSET(2) char gKartMario100[] = "__OTR__mario_kart/mario_kart_frame100"; - -static const ALIGN_ASSET(2) char gKartMario101[] = "__OTR__mario_kart/mario_kart_frame101"; - -static const ALIGN_ASSET(2) char gKartMario102[] = "__OTR__mario_kart/mario_kart_frame102"; - -static const ALIGN_ASSET(2) char gKartMario103[] = "__OTR__mario_kart/mario_kart_frame103"; - -static const ALIGN_ASSET(2) char gKartMario104[] = "__OTR__mario_kart/mario_kart_frame104"; - -static const ALIGN_ASSET(2) char gKartMario105[] = "__OTR__mario_kart/mario_kart_frame105"; - -static const ALIGN_ASSET(2) char gKartMario106[] = "__OTR__mario_kart/mario_kart_frame106"; - -static const ALIGN_ASSET(2) char gKartMario107[] = "__OTR__mario_kart/mario_kart_frame107"; - -static const ALIGN_ASSET(2) char gKartMario108[] = "__OTR__mario_kart/mario_kart_frame108"; - -static const ALIGN_ASSET(2) char gKartMario109[] = "__OTR__mario_kart/mario_kart_frame109"; - -static const ALIGN_ASSET(2) char gKartMario110[] = "__OTR__mario_kart/mario_kart_frame110"; - -static const ALIGN_ASSET(2) char gKartMario111[] = "__OTR__mario_kart/mario_kart_frame111"; - -static const ALIGN_ASSET(2) char gKartMario112[] = "__OTR__mario_kart/mario_kart_frame112"; - -static const ALIGN_ASSET(2) char gKartMario113[] = "__OTR__mario_kart/mario_kart_frame113"; - -static const ALIGN_ASSET(2) char gKartMario114[] = "__OTR__mario_kart/mario_kart_frame114"; - -static const ALIGN_ASSET(2) char gKartMario115[] = "__OTR__mario_kart/mario_kart_frame115"; - -static const ALIGN_ASSET(2) char gKartMario116[] = "__OTR__mario_kart/mario_kart_frame116"; - -static const ALIGN_ASSET(2) char gKartMario117[] = "__OTR__mario_kart/mario_kart_frame117"; - -static const ALIGN_ASSET(2) char gKartMario118[] = "__OTR__mario_kart/mario_kart_frame118"; - -static const ALIGN_ASSET(2) char gKartMario119[] = "__OTR__mario_kart/mario_kart_frame119"; - -static const ALIGN_ASSET(2) char gKartMario120[] = "__OTR__mario_kart/mario_kart_frame120"; - -static const ALIGN_ASSET(2) char gKartMario121[] = "__OTR__mario_kart/mario_kart_frame121"; - -static const ALIGN_ASSET(2) char gKartMario122[] = "__OTR__mario_kart/mario_kart_frame122"; - -static const ALIGN_ASSET(2) char gKartMario123[] = "__OTR__mario_kart/mario_kart_frame123"; - -static const ALIGN_ASSET(2) char gKartMario124[] = "__OTR__mario_kart/mario_kart_frame124"; - -static const ALIGN_ASSET(2) char gKartMario125[] = "__OTR__mario_kart/mario_kart_frame125"; - -static const ALIGN_ASSET(2) char gKartMario126[] = "__OTR__mario_kart/mario_kart_frame126"; - -static const ALIGN_ASSET(2) char gKartMario127[] = "__OTR__mario_kart/mario_kart_frame127"; - -static const ALIGN_ASSET(2) char gKartMario128[] = "__OTR__mario_kart/mario_kart_frame128"; - -static const ALIGN_ASSET(2) char gKartMario129[] = "__OTR__mario_kart/mario_kart_frame129"; - -static const ALIGN_ASSET(2) char gKartMario130[] = "__OTR__mario_kart/mario_kart_frame130"; - -static const ALIGN_ASSET(2) char gKartMario131[] = "__OTR__mario_kart/mario_kart_frame131"; - -static const ALIGN_ASSET(2) char gKartMario132[] = "__OTR__mario_kart/mario_kart_frame132"; - -static const ALIGN_ASSET(2) char gKartMario133[] = "__OTR__mario_kart/mario_kart_frame133"; - -static const ALIGN_ASSET(2) char gKartMario134[] = "__OTR__mario_kart/mario_kart_frame134"; - -static const ALIGN_ASSET(2) char gKartMario135[] = "__OTR__mario_kart/mario_kart_frame135"; - -static const ALIGN_ASSET(2) char gKartMario136[] = "__OTR__mario_kart/mario_kart_frame136"; - -static const ALIGN_ASSET(2) char gKartMario137[] = "__OTR__mario_kart/mario_kart_frame137"; - -static const ALIGN_ASSET(2) char gKartMario138[] = "__OTR__mario_kart/mario_kart_frame138"; - -static const ALIGN_ASSET(2) char gKartMario139[] = "__OTR__mario_kart/mario_kart_frame139"; - -static const ALIGN_ASSET(2) char gKartMario140[] = "__OTR__mario_kart/mario_kart_frame140"; - -static const ALIGN_ASSET(2) char gKartMario141[] = "__OTR__mario_kart/mario_kart_frame141"; - -static const ALIGN_ASSET(2) char gKartMario142[] = "__OTR__mario_kart/mario_kart_frame142"; - -static const ALIGN_ASSET(2) char gKartMario143[] = "__OTR__mario_kart/mario_kart_frame143"; - -static const ALIGN_ASSET(2) char gKartMario144[] = "__OTR__mario_kart/mario_kart_frame144"; - -static const ALIGN_ASSET(2) char gKartMario145[] = "__OTR__mario_kart/mario_kart_frame145"; - -static const ALIGN_ASSET(2) char gKartMario146[] = "__OTR__mario_kart/mario_kart_frame146"; - -static const ALIGN_ASSET(2) char gKartMario147[] = "__OTR__mario_kart/mario_kart_frame147"; - -static const ALIGN_ASSET(2) char gKartMario148[] = "__OTR__mario_kart/mario_kart_frame148"; - -static const ALIGN_ASSET(2) char gKartMario149[] = "__OTR__mario_kart/mario_kart_frame149"; - -static const ALIGN_ASSET(2) char gKartMario150[] = "__OTR__mario_kart/mario_kart_frame150"; - -static const ALIGN_ASSET(2) char gKartMario151[] = "__OTR__mario_kart/mario_kart_frame151"; - -static const ALIGN_ASSET(2) char gKartMario152[] = "__OTR__mario_kart/mario_kart_frame152"; - -static const ALIGN_ASSET(2) char gKartMario153[] = "__OTR__mario_kart/mario_kart_frame153"; - -static const ALIGN_ASSET(2) char gKartMario154[] = "__OTR__mario_kart/mario_kart_frame154"; - -static const ALIGN_ASSET(2) char gKartMario155[] = "__OTR__mario_kart/mario_kart_frame155"; - -static const ALIGN_ASSET(2) char gKartMario156[] = "__OTR__mario_kart/mario_kart_frame156"; - -static const ALIGN_ASSET(2) char gKartMario157[] = "__OTR__mario_kart/mario_kart_frame157"; - -static const ALIGN_ASSET(2) char gKartMario158[] = "__OTR__mario_kart/mario_kart_frame158"; - -static const ALIGN_ASSET(2) char gKartMario159[] = "__OTR__mario_kart/mario_kart_frame159"; - -static const ALIGN_ASSET(2) char gKartMario160[] = "__OTR__mario_kart/mario_kart_frame160"; - -static const ALIGN_ASSET(2) char gKartMario161[] = "__OTR__mario_kart/mario_kart_frame161"; - -static const ALIGN_ASSET(2) char gKartMario162[] = "__OTR__mario_kart/mario_kart_frame162"; - -static const ALIGN_ASSET(2) char gKartMario163[] = "__OTR__mario_kart/mario_kart_frame163"; - -static const ALIGN_ASSET(2) char gKartMario164[] = "__OTR__mario_kart/mario_kart_frame164"; - -static const ALIGN_ASSET(2) char gKartMario165[] = "__OTR__mario_kart/mario_kart_frame165"; - -static const ALIGN_ASSET(2) char gKartMario166[] = "__OTR__mario_kart/mario_kart_frame166"; - -static const ALIGN_ASSET(2) char gKartMario167[] = "__OTR__mario_kart/mario_kart_frame167"; - -static const ALIGN_ASSET(2) char gKartMario168[] = "__OTR__mario_kart/mario_kart_frame168"; - -static const ALIGN_ASSET(2) char gKartMario169[] = "__OTR__mario_kart/mario_kart_frame169"; - -static const ALIGN_ASSET(2) char gKartMario170[] = "__OTR__mario_kart/mario_kart_frame170"; - -static const ALIGN_ASSET(2) char gKartMario171[] = "__OTR__mario_kart/mario_kart_frame171"; - -static const ALIGN_ASSET(2) char gKartMario172[] = "__OTR__mario_kart/mario_kart_frame172"; - -static const ALIGN_ASSET(2) char gKartMario173[] = "__OTR__mario_kart/mario_kart_frame173"; - -static const ALIGN_ASSET(2) char gKartMario174[] = "__OTR__mario_kart/mario_kart_frame174"; - -static const ALIGN_ASSET(2) char gKartMario175[] = "__OTR__mario_kart/mario_kart_frame175"; - -static const ALIGN_ASSET(2) char gKartMario176[] = "__OTR__mario_kart/mario_kart_frame176"; - -static const ALIGN_ASSET(2) char gKartMario177[] = "__OTR__mario_kart/mario_kart_frame177"; - -static const ALIGN_ASSET(2) char gKartMario178[] = "__OTR__mario_kart/mario_kart_frame178"; - -static const ALIGN_ASSET(2) char gKartMario179[] = "__OTR__mario_kart/mario_kart_frame179"; - -static const ALIGN_ASSET(2) char gKartMario180[] = "__OTR__mario_kart/mario_kart_frame180"; - -static const ALIGN_ASSET(2) char gKartMario181[] = "__OTR__mario_kart/mario_kart_frame181"; - -static const ALIGN_ASSET(2) char gKartMario182[] = "__OTR__mario_kart/mario_kart_frame182"; - -static const ALIGN_ASSET(2) char gKartMario183[] = "__OTR__mario_kart/mario_kart_frame183"; - -static const ALIGN_ASSET(2) char gKartMario184[] = "__OTR__mario_kart/mario_kart_frame184"; - -static const ALIGN_ASSET(2) char gKartMario185[] = "__OTR__mario_kart/mario_kart_frame185"; - -static const ALIGN_ASSET(2) char gKartMario186[] = "__OTR__mario_kart/mario_kart_frame186"; - -static const ALIGN_ASSET(2) char gKartMario187[] = "__OTR__mario_kart/mario_kart_frame187"; - -static const ALIGN_ASSET(2) char gKartMario188[] = "__OTR__mario_kart/mario_kart_frame188"; - -static const ALIGN_ASSET(2) char gKartMario189[] = "__OTR__mario_kart/mario_kart_frame189"; - -static const ALIGN_ASSET(2) char gKartMario190[] = "__OTR__mario_kart/mario_kart_frame190"; - -static const ALIGN_ASSET(2) char gKartMario191[] = "__OTR__mario_kart/mario_kart_frame191"; - -static const ALIGN_ASSET(2) char gKartMario192[] = "__OTR__mario_kart/mario_kart_frame192"; - -static const ALIGN_ASSET(2) char gKartMario193[] = "__OTR__mario_kart/mario_kart_frame193"; - -static const ALIGN_ASSET(2) char gKartMario194[] = "__OTR__mario_kart/mario_kart_frame194"; - -static const ALIGN_ASSET(2) char gKartMario195[] = "__OTR__mario_kart/mario_kart_frame195"; - -static const ALIGN_ASSET(2) char gKartMario196[] = "__OTR__mario_kart/mario_kart_frame196"; - -static const ALIGN_ASSET(2) char gKartMario197[] = "__OTR__mario_kart/mario_kart_frame197"; - -static const ALIGN_ASSET(2) char gKartMario198[] = "__OTR__mario_kart/mario_kart_frame198"; - -static const ALIGN_ASSET(2) char gKartMario199[] = "__OTR__mario_kart/mario_kart_frame199"; - -static const ALIGN_ASSET(2) char gKartMario200[] = "__OTR__mario_kart/mario_kart_frame200"; - -static const ALIGN_ASSET(2) char gKartMario201[] = "__OTR__mario_kart/mario_kart_frame201"; - -static const ALIGN_ASSET(2) char gKartMario202[] = "__OTR__mario_kart/mario_kart_frame202"; - -static const ALIGN_ASSET(2) char gKartMario203[] = "__OTR__mario_kart/mario_kart_frame203"; - -static const ALIGN_ASSET(2) char gKartMario204[] = "__OTR__mario_kart/mario_kart_frame204"; - -static const ALIGN_ASSET(2) char gKartMario205[] = "__OTR__mario_kart/mario_kart_frame205"; - -static const ALIGN_ASSET(2) char gKartMario206[] = "__OTR__mario_kart/mario_kart_frame206"; - -static const ALIGN_ASSET(2) char gKartMario207[] = "__OTR__mario_kart/mario_kart_frame207"; - -static const ALIGN_ASSET(2) char gKartMario208[] = "__OTR__mario_kart/mario_kart_frame208"; - -static const ALIGN_ASSET(2) char gKartMario209[] = "__OTR__mario_kart/mario_kart_frame209"; - -static const ALIGN_ASSET(2) char gKartMario210[] = "__OTR__mario_kart/mario_kart_frame210"; - -static const ALIGN_ASSET(2) char gKartMario211[] = "__OTR__mario_kart/mario_kart_frame211"; - -static const ALIGN_ASSET(2) char gKartMario212[] = "__OTR__mario_kart/mario_kart_frame212"; - -static const ALIGN_ASSET(2) char gKartMario213[] = "__OTR__mario_kart/mario_kart_frame213"; - -static const ALIGN_ASSET(2) char gKartMario214[] = "__OTR__mario_kart/mario_kart_frame214"; - -static const ALIGN_ASSET(2) char gKartMario215[] = "__OTR__mario_kart/mario_kart_frame215"; - -static const ALIGN_ASSET(2) char gKartMario216[] = "__OTR__mario_kart/mario_kart_frame216"; - -static const ALIGN_ASSET(2) char gKartMario217[] = "__OTR__mario_kart/mario_kart_frame217"; - -static const ALIGN_ASSET(2) char gKartMario218[] = "__OTR__mario_kart/mario_kart_frame218"; - -static const ALIGN_ASSET(2) char gKartMario219[] = "__OTR__mario_kart/mario_kart_frame219"; - -static const ALIGN_ASSET(2) char gKartMario220[] = "__OTR__mario_kart/mario_kart_frame220"; - -static const ALIGN_ASSET(2) char gKartMario221[] = "__OTR__mario_kart/mario_kart_frame221"; - -static const ALIGN_ASSET(2) char gKartMario222[] = "__OTR__mario_kart/mario_kart_frame222"; - -static const ALIGN_ASSET(2) char gKartMario223[] = "__OTR__mario_kart/mario_kart_frame223"; - -static const ALIGN_ASSET(2) char gKartMario224[] = "__OTR__mario_kart/mario_kart_frame224"; - -static const ALIGN_ASSET(2) char gKartMario225[] = "__OTR__mario_kart/mario_kart_frame225"; - -static const ALIGN_ASSET(2) char gKartMario226[] = "__OTR__mario_kart/mario_kart_frame226"; - -static const ALIGN_ASSET(2) char gKartMario227[] = "__OTR__mario_kart/mario_kart_frame227"; - -static const ALIGN_ASSET(2) char gKartMario228[] = "__OTR__mario_kart/mario_kart_frame228"; - -static const ALIGN_ASSET(2) char gKartMario229[] = "__OTR__mario_kart/mario_kart_frame229"; - -static const ALIGN_ASSET(2) char gKartMario230[] = "__OTR__mario_kart/mario_kart_frame230"; - -static const ALIGN_ASSET(2) char gKartMario231[] = "__OTR__mario_kart/mario_kart_frame231"; - -static const ALIGN_ASSET(2) char gKartMario232[] = "__OTR__mario_kart/mario_kart_frame232"; - -static const ALIGN_ASSET(2) char gKartMario233[] = "__OTR__mario_kart/mario_kart_frame233"; - -static const ALIGN_ASSET(2) char gKartMario234[] = "__OTR__mario_kart/mario_kart_frame234"; - -static const ALIGN_ASSET(2) char gKartMario235[] = "__OTR__mario_kart/mario_kart_frame235"; - -static const ALIGN_ASSET(2) char gKartMario236[] = "__OTR__mario_kart/mario_kart_frame236"; - -static const ALIGN_ASSET(2) char gKartMario237[] = "__OTR__mario_kart/mario_kart_frame237"; - -static const ALIGN_ASSET(2) char gKartMario238[] = "__OTR__mario_kart/mario_kart_frame238"; - -static const ALIGN_ASSET(2) char gKartMario239[] = "__OTR__mario_kart/mario_kart_frame239"; - -static const ALIGN_ASSET(2) char gKartMario240[] = "__OTR__mario_kart/mario_kart_frame240"; - -static const ALIGN_ASSET(2) char gKartMario241[] = "__OTR__mario_kart/mario_kart_frame241"; - -static const ALIGN_ASSET(2) char gKartMario242[] = "__OTR__mario_kart/mario_kart_frame242"; - -static const ALIGN_ASSET(2) char gKartMario243[] = "__OTR__mario_kart/mario_kart_frame243"; - -static const ALIGN_ASSET(2) char gKartMario244[] = "__OTR__mario_kart/mario_kart_frame244"; - -static const ALIGN_ASSET(2) char gKartMario245[] = "__OTR__mario_kart/mario_kart_frame245"; - -static const ALIGN_ASSET(2) char gKartMario246[] = "__OTR__mario_kart/mario_kart_frame246"; - -static const ALIGN_ASSET(2) char gKartMario247[] = "__OTR__mario_kart/mario_kart_frame247"; - -static const ALIGN_ASSET(2) char gKartMario248[] = "__OTR__mario_kart/mario_kart_frame248"; - -static const ALIGN_ASSET(2) char gKartMario249[] = "__OTR__mario_kart/mario_kart_frame249"; - -static const ALIGN_ASSET(2) char gKartMario250[] = "__OTR__mario_kart/mario_kart_frame250"; - -static const ALIGN_ASSET(2) char gKartMario251[] = "__OTR__mario_kart/mario_kart_frame251"; - -static const ALIGN_ASSET(2) char gKartMario252[] = "__OTR__mario_kart/mario_kart_frame252"; - -static const ALIGN_ASSET(2) char gKartMario253[] = "__OTR__mario_kart/mario_kart_frame253"; - -static const ALIGN_ASSET(2) char gKartMario254[] = "__OTR__mario_kart/mario_kart_frame254"; - -static const ALIGN_ASSET(2) char gKartMario255[] = "__OTR__mario_kart/mario_kart_frame255"; - -static const ALIGN_ASSET(2) char gKartMario256[] = "__OTR__mario_kart/mario_kart_frame256"; - -static const ALIGN_ASSET(2) char gKartMario257[] = "__OTR__mario_kart/mario_kart_frame257"; - -static const ALIGN_ASSET(2) char gKartMario258[] = "__OTR__mario_kart/mario_kart_frame258"; - -static const ALIGN_ASSET(2) char gKartMario259[] = "__OTR__mario_kart/mario_kart_frame259"; - -static const ALIGN_ASSET(2) char gKartMario260[] = "__OTR__mario_kart/mario_kart_frame260"; - -static const ALIGN_ASSET(2) char gKartMario261[] = "__OTR__mario_kart/mario_kart_frame261"; - -static const ALIGN_ASSET(2) char gKartMario262[] = "__OTR__mario_kart/mario_kart_frame262"; - -static const ALIGN_ASSET(2) char gKartMario263[] = "__OTR__mario_kart/mario_kart_frame263"; - -static const ALIGN_ASSET(2) char gKartMario264[] = "__OTR__mario_kart/mario_kart_frame264"; - -static const ALIGN_ASSET(2) char gKartMario265[] = "__OTR__mario_kart/mario_kart_frame265"; - -static const ALIGN_ASSET(2) char gKartMario266[] = "__OTR__mario_kart/mario_kart_frame266"; - -static const ALIGN_ASSET(2) char gKartMario267[] = "__OTR__mario_kart/mario_kart_frame267"; - -static const ALIGN_ASSET(2) char gKartMario268[] = "__OTR__mario_kart/mario_kart_frame268"; - -static const ALIGN_ASSET(2) char gKartMario269[] = "__OTR__mario_kart/mario_kart_frame269"; - -static const ALIGN_ASSET(2) char gKartMario270[] = "__OTR__mario_kart/mario_kart_frame270"; - -static const ALIGN_ASSET(2) char gKartMario271[] = "__OTR__mario_kart/mario_kart_frame271"; - -static const ALIGN_ASSET(2) char gKartMario272[] = "__OTR__mario_kart/mario_kart_frame272"; - -static const ALIGN_ASSET(2) char gKartMario273[] = "__OTR__mario_kart/mario_kart_frame273"; - -static const ALIGN_ASSET(2) char gKartMario274[] = "__OTR__mario_kart/mario_kart_frame274"; - -static const ALIGN_ASSET(2) char gKartMario275[] = "__OTR__mario_kart/mario_kart_frame275"; - -static const ALIGN_ASSET(2) char gKartMario276[] = "__OTR__mario_kart/mario_kart_frame276"; - -static const ALIGN_ASSET(2) char gKartMario277[] = "__OTR__mario_kart/mario_kart_frame277"; - -static const ALIGN_ASSET(2) char gKartMario278[] = "__OTR__mario_kart/mario_kart_frame278"; - -static const ALIGN_ASSET(2) char gKartMario279[] = "__OTR__mario_kart/mario_kart_frame279"; - -static const ALIGN_ASSET(2) char gKartMario280[] = "__OTR__mario_kart/mario_kart_frame280"; - -static const ALIGN_ASSET(2) char gKartMario281[] = "__OTR__mario_kart/mario_kart_frame281"; - -static const ALIGN_ASSET(2) char gKartMario282[] = "__OTR__mario_kart/mario_kart_frame282"; - -static const ALIGN_ASSET(2) char gKartMario283[] = "__OTR__mario_kart/mario_kart_frame283"; - -static const ALIGN_ASSET(2) char gKartMario284[] = "__OTR__mario_kart/mario_kart_frame284"; - -static const ALIGN_ASSET(2) char gKartMario285[] = "__OTR__mario_kart/mario_kart_frame285"; - -static const ALIGN_ASSET(2) char gKartMario286[] = "__OTR__mario_kart/mario_kart_frame286"; - -static const ALIGN_ASSET(2) char gKartMario287[] = "__OTR__mario_kart/mario_kart_frame287"; - -static const ALIGN_ASSET(2) char gKartMario288[] = "__OTR__mario_kart/mario_kart_frame288"; - -static const ALIGN_ASSET(2) char gKartMario289[] = "__OTR__mario_kart/mario_kart_frame289"; - -static const ALIGN_ASSET(2) char gKartMario290[] = "__OTR__mario_kart/mario_kart_frame290"; - -static const ALIGN_ASSET(2) char gKartMario291[] = "__OTR__mario_kart/mario_kart_frame291"; - -static const ALIGN_ASSET(2) char gKartMario292[] = "__OTR__mario_kart/mario_kart_frame292"; - -static const ALIGN_ASSET(2) char gKartMario293[] = "__OTR__mario_kart/mario_kart_frame293"; - -static const ALIGN_ASSET(2) char gKartMario294[] = "__OTR__mario_kart/mario_kart_frame294"; - -static const ALIGN_ASSET(2) char gKartMario295[] = "__OTR__mario_kart/mario_kart_frame295"; - -static const ALIGN_ASSET(2) char gKartMario296[] = "__OTR__mario_kart/mario_kart_frame296"; - -static const ALIGN_ASSET(2) char gKartMario297[] = "__OTR__mario_kart/mario_kart_frame297"; - -static const ALIGN_ASSET(2) char gKartMario298[] = "__OTR__mario_kart/mario_kart_frame298"; - -static const ALIGN_ASSET(2) char gKartMario299[] = "__OTR__mario_kart/mario_kart_frame299"; - -static const ALIGN_ASSET(2) char gKartMario300[] = "__OTR__mario_kart/mario_kart_frame300"; - -static const ALIGN_ASSET(2) char gKartMario301[] = "__OTR__mario_kart/mario_kart_frame301"; - -static const ALIGN_ASSET(2) char gKartMario302[] = "__OTR__mario_kart/mario_kart_frame302"; - -static const ALIGN_ASSET(2) char gKartMario303[] = "__OTR__mario_kart/mario_kart_frame303"; - -static const ALIGN_ASSET(2) char gKartMario304[] = "__OTR__mario_kart/mario_kart_frame304"; - -static const ALIGN_ASSET(2) char gKartMario305[] = "__OTR__mario_kart/mario_kart_frame305"; - -static const ALIGN_ASSET(2) char gKartMario306[] = "__OTR__mario_kart/mario_kart_frame306"; - -static const ALIGN_ASSET(2) char gKartMario307[] = "__OTR__mario_kart/mario_kart_frame307"; - -static const ALIGN_ASSET(2) char gKartMario308[] = "__OTR__mario_kart/mario_kart_frame308"; - -static const ALIGN_ASSET(2) char gKartMario309[] = "__OTR__mario_kart/mario_kart_frame309"; - -static const ALIGN_ASSET(2) char gKartMario310[] = "__OTR__mario_kart/mario_kart_frame310"; - -static const ALIGN_ASSET(2) char gKartMario311[] = "__OTR__mario_kart/mario_kart_frame311"; - -static const ALIGN_ASSET(2) char gKartMario312[] = "__OTR__mario_kart/mario_kart_frame312"; - -static const ALIGN_ASSET(2) char gKartMario313[] = "__OTR__mario_kart/mario_kart_frame313"; - -static const ALIGN_ASSET(2) char gKartMario314[] = "__OTR__mario_kart/mario_kart_frame314"; - -static const ALIGN_ASSET(2) char gKartMario315[] = "__OTR__mario_kart/mario_kart_frame315"; - -static const ALIGN_ASSET(2) char gKartMario316[] = "__OTR__mario_kart/mario_kart_frame316"; - -static const ALIGN_ASSET(2) char gKartMario317[] = "__OTR__mario_kart/mario_kart_frame317"; - -static const ALIGN_ASSET(2) char gKartMario318[] = "__OTR__mario_kart/mario_kart_frame318"; - -static const ALIGN_ASSET(2) char gKartMario319[] = "__OTR__mario_kart/mario_kart_frame319"; - -static const ALIGN_ASSET(2) char gKartMario320[] = "__OTR__mario_kart/mario_kart_frame320"; - -static const ALIGN_ASSET(2) char gKartMario000Wheel0[] = "__OTR__mario_kart/kart_000_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario000Wheel1[] = "__OTR__mario_kart/kart_000_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario000Wheel2[] = "__OTR__mario_kart/kart_000_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario000Wheel3[] = "__OTR__mario_kart/kart_000_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario001Wheel0[] = "__OTR__mario_kart/kart_001_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario001Wheel1[] = "__OTR__mario_kart/kart_001_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario001Wheel2[] = "__OTR__mario_kart/kart_001_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario001Wheel3[] = "__OTR__mario_kart/kart_001_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario002Wheel0[] = "__OTR__mario_kart/kart_002_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario002Wheel1[] = "__OTR__mario_kart/kart_002_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario002Wheel2[] = "__OTR__mario_kart/kart_002_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario002Wheel3[] = "__OTR__mario_kart/kart_002_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario003Wheel0[] = "__OTR__mario_kart/kart_003_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario003Wheel1[] = "__OTR__mario_kart/kart_003_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario003Wheel2[] = "__OTR__mario_kart/kart_003_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario003Wheel3[] = "__OTR__mario_kart/kart_003_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario004Wheel0[] = "__OTR__mario_kart/kart_004_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario004Wheel1[] = "__OTR__mario_kart/kart_004_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario004Wheel2[] = "__OTR__mario_kart/kart_004_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario004Wheel3[] = "__OTR__mario_kart/kart_004_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario005Wheel0[] = "__OTR__mario_kart/kart_005_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario005Wheel1[] = "__OTR__mario_kart/kart_005_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario005Wheel2[] = "__OTR__mario_kart/kart_005_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario005Wheel3[] = "__OTR__mario_kart/kart_005_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario006Wheel0[] = "__OTR__mario_kart/kart_006_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario006Wheel1[] = "__OTR__mario_kart/kart_006_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario006Wheel2[] = "__OTR__mario_kart/kart_006_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario006Wheel3[] = "__OTR__mario_kart/kart_006_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario007Wheel0[] = "__OTR__mario_kart/kart_007_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario007Wheel1[] = "__OTR__mario_kart/kart_007_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario007Wheel2[] = "__OTR__mario_kart/kart_007_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario007Wheel3[] = "__OTR__mario_kart/kart_007_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario008Wheel0[] = "__OTR__mario_kart/kart_008_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario008Wheel1[] = "__OTR__mario_kart/kart_008_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario008Wheel2[] = "__OTR__mario_kart/kart_008_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario008Wheel3[] = "__OTR__mario_kart/kart_008_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario009Wheel0[] = "__OTR__mario_kart/kart_009_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario009Wheel1[] = "__OTR__mario_kart/kart_009_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario009Wheel2[] = "__OTR__mario_kart/kart_009_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario009Wheel3[] = "__OTR__mario_kart/kart_009_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario010Wheel0[] = "__OTR__mario_kart/kart_010_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario010Wheel1[] = "__OTR__mario_kart/kart_010_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario010Wheel2[] = "__OTR__mario_kart/kart_010_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario010Wheel3[] = "__OTR__mario_kart/kart_010_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario011Wheel0[] = "__OTR__mario_kart/kart_011_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario011Wheel1[] = "__OTR__mario_kart/kart_011_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario011Wheel2[] = "__OTR__mario_kart/kart_011_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario011Wheel3[] = "__OTR__mario_kart/kart_011_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario012Wheel0[] = "__OTR__mario_kart/kart_012_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario012Wheel1[] = "__OTR__mario_kart/kart_012_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario012Wheel2[] = "__OTR__mario_kart/kart_012_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario012Wheel3[] = "__OTR__mario_kart/kart_012_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario013Wheel0[] = "__OTR__mario_kart/kart_013_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario013Wheel1[] = "__OTR__mario_kart/kart_013_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario013Wheel2[] = "__OTR__mario_kart/kart_013_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario013Wheel3[] = "__OTR__mario_kart/kart_013_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario014Wheel0[] = "__OTR__mario_kart/kart_014_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario014Wheel1[] = "__OTR__mario_kart/kart_014_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario014Wheel2[] = "__OTR__mario_kart/kart_014_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario014Wheel3[] = "__OTR__mario_kart/kart_014_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario015Wheel0[] = "__OTR__mario_kart/kart_015_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario015Wheel1[] = "__OTR__mario_kart/kart_015_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario015Wheel2[] = "__OTR__mario_kart/kart_015_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario015Wheel3[] = "__OTR__mario_kart/kart_015_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario016Wheel0[] = "__OTR__mario_kart/kart_016_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario016Wheel1[] = "__OTR__mario_kart/kart_016_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario016Wheel2[] = "__OTR__mario_kart/kart_016_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario016Wheel3[] = "__OTR__mario_kart/kart_016_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario017Wheel0[] = "__OTR__mario_kart/kart_017_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario017Wheel1[] = "__OTR__mario_kart/kart_017_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario017Wheel2[] = "__OTR__mario_kart/kart_017_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario017Wheel3[] = "__OTR__mario_kart/kart_017_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario018Wheel0[] = "__OTR__mario_kart/kart_018_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario018Wheel1[] = "__OTR__mario_kart/kart_018_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario018Wheel2[] = "__OTR__mario_kart/kart_018_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario018Wheel3[] = "__OTR__mario_kart/kart_018_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario019Wheel0[] = "__OTR__mario_kart/kart_019_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario019Wheel1[] = "__OTR__mario_kart/kart_019_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario019Wheel2[] = "__OTR__mario_kart/kart_019_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario019Wheel3[] = "__OTR__mario_kart/kart_019_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario020Wheel0[] = "__OTR__mario_kart/kart_020_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario020Wheel1[] = "__OTR__mario_kart/kart_020_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario020Wheel2[] = "__OTR__mario_kart/kart_020_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario020Wheel3[] = "__OTR__mario_kart/kart_020_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario021Wheel0[] = "__OTR__mario_kart/kart_021_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario021Wheel1[] = "__OTR__mario_kart/kart_021_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario021Wheel2[] = "__OTR__mario_kart/kart_021_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario021Wheel3[] = "__OTR__mario_kart/kart_021_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario022Wheel0[] = "__OTR__mario_kart/kart_022_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario022Wheel1[] = "__OTR__mario_kart/kart_022_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario022Wheel2[] = "__OTR__mario_kart/kart_022_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario022Wheel3[] = "__OTR__mario_kart/kart_022_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario023Wheel0[] = "__OTR__mario_kart/kart_023_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario023Wheel1[] = "__OTR__mario_kart/kart_023_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario023Wheel2[] = "__OTR__mario_kart/kart_023_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario023Wheel3[] = "__OTR__mario_kart/kart_023_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario024Wheel0[] = "__OTR__mario_kart/kart_024_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario024Wheel1[] = "__OTR__mario_kart/kart_024_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario024Wheel2[] = "__OTR__mario_kart/kart_024_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario024Wheel3[] = "__OTR__mario_kart/kart_024_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario025Wheel0[] = "__OTR__mario_kart/kart_025_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario025Wheel1[] = "__OTR__mario_kart/kart_025_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario025Wheel2[] = "__OTR__mario_kart/kart_025_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario025Wheel3[] = "__OTR__mario_kart/kart_025_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario026Wheel0[] = "__OTR__mario_kart/kart_026_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario026Wheel1[] = "__OTR__mario_kart/kart_026_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario026Wheel2[] = "__OTR__mario_kart/kart_026_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario026Wheel3[] = "__OTR__mario_kart/kart_026_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario027Wheel0[] = "__OTR__mario_kart/kart_027_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario027Wheel1[] = "__OTR__mario_kart/kart_027_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario027Wheel2[] = "__OTR__mario_kart/kart_027_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario027Wheel3[] = "__OTR__mario_kart/kart_027_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario028Wheel0[] = "__OTR__mario_kart/kart_028_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario028Wheel1[] = "__OTR__mario_kart/kart_028_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario028Wheel2[] = "__OTR__mario_kart/kart_028_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario028Wheel3[] = "__OTR__mario_kart/kart_028_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario029Wheel0[] = "__OTR__mario_kart/kart_029_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario029Wheel1[] = "__OTR__mario_kart/kart_029_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario029Wheel2[] = "__OTR__mario_kart/kart_029_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario029Wheel3[] = "__OTR__mario_kart/kart_029_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario030Wheel0[] = "__OTR__mario_kart/kart_030_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario030Wheel1[] = "__OTR__mario_kart/kart_030_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario030Wheel2[] = "__OTR__mario_kart/kart_030_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario030Wheel3[] = "__OTR__mario_kart/kart_030_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario031Wheel0[] = "__OTR__mario_kart/kart_031_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario031Wheel1[] = "__OTR__mario_kart/kart_031_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario031Wheel2[] = "__OTR__mario_kart/kart_031_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario031Wheel3[] = "__OTR__mario_kart/kart_031_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario032Wheel0[] = "__OTR__mario_kart/kart_032_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario032Wheel1[] = "__OTR__mario_kart/kart_032_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario032Wheel2[] = "__OTR__mario_kart/kart_032_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario032Wheel3[] = "__OTR__mario_kart/kart_032_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario033Wheel0[] = "__OTR__mario_kart/kart_033_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario033Wheel1[] = "__OTR__mario_kart/kart_033_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario033Wheel2[] = "__OTR__mario_kart/kart_033_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario033Wheel3[] = "__OTR__mario_kart/kart_033_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario034Wheel0[] = "__OTR__mario_kart/kart_034_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario034Wheel1[] = "__OTR__mario_kart/kart_034_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario034Wheel2[] = "__OTR__mario_kart/kart_034_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario034Wheel3[] = "__OTR__mario_kart/kart_034_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario035Wheel0[] = "__OTR__mario_kart/kart_035_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario035Wheel1[] = "__OTR__mario_kart/kart_035_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario035Wheel2[] = "__OTR__mario_kart/kart_035_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario035Wheel3[] = "__OTR__mario_kart/kart_035_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario036Wheel0[] = "__OTR__mario_kart/kart_036_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario036Wheel1[] = "__OTR__mario_kart/kart_036_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario036Wheel2[] = "__OTR__mario_kart/kart_036_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario036Wheel3[] = "__OTR__mario_kart/kart_036_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario037Wheel0[] = "__OTR__mario_kart/kart_037_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario037Wheel1[] = "__OTR__mario_kart/kart_037_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario037Wheel2[] = "__OTR__mario_kart/kart_037_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario037Wheel3[] = "__OTR__mario_kart/kart_037_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario038Wheel0[] = "__OTR__mario_kart/kart_038_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario038Wheel1[] = "__OTR__mario_kart/kart_038_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario038Wheel2[] = "__OTR__mario_kart/kart_038_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario038Wheel3[] = "__OTR__mario_kart/kart_038_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario039Wheel0[] = "__OTR__mario_kart/kart_039_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario039Wheel1[] = "__OTR__mario_kart/kart_039_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario039Wheel2[] = "__OTR__mario_kart/kart_039_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario039Wheel3[] = "__OTR__mario_kart/kart_039_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario040Wheel0[] = "__OTR__mario_kart/kart_040_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario040Wheel1[] = "__OTR__mario_kart/kart_040_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario040Wheel2[] = "__OTR__mario_kart/kart_040_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario040Wheel3[] = "__OTR__mario_kart/kart_040_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario041Wheel0[] = "__OTR__mario_kart/kart_041_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario041Wheel1[] = "__OTR__mario_kart/kart_041_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario041Wheel2[] = "__OTR__mario_kart/kart_041_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario041Wheel3[] = "__OTR__mario_kart/kart_041_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario042Wheel0[] = "__OTR__mario_kart/kart_042_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario042Wheel1[] = "__OTR__mario_kart/kart_042_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario042Wheel2[] = "__OTR__mario_kart/kart_042_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario042Wheel3[] = "__OTR__mario_kart/kart_042_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario043Wheel0[] = "__OTR__mario_kart/kart_043_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario043Wheel1[] = "__OTR__mario_kart/kart_043_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario043Wheel2[] = "__OTR__mario_kart/kart_043_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario043Wheel3[] = "__OTR__mario_kart/kart_043_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario044Wheel0[] = "__OTR__mario_kart/kart_044_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario044Wheel1[] = "__OTR__mario_kart/kart_044_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario044Wheel2[] = "__OTR__mario_kart/kart_044_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario044Wheel3[] = "__OTR__mario_kart/kart_044_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario045Wheel0[] = "__OTR__mario_kart/kart_045_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario045Wheel1[] = "__OTR__mario_kart/kart_045_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario045Wheel2[] = "__OTR__mario_kart/kart_045_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario045Wheel3[] = "__OTR__mario_kart/kart_045_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario046Wheel0[] = "__OTR__mario_kart/kart_046_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario046Wheel1[] = "__OTR__mario_kart/kart_046_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario046Wheel2[] = "__OTR__mario_kart/kart_046_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario046Wheel3[] = "__OTR__mario_kart/kart_046_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario047Wheel0[] = "__OTR__mario_kart/kart_047_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario047Wheel1[] = "__OTR__mario_kart/kart_047_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario047Wheel2[] = "__OTR__mario_kart/kart_047_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario047Wheel3[] = "__OTR__mario_kart/kart_047_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario048Wheel0[] = "__OTR__mario_kart/kart_048_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario048Wheel1[] = "__OTR__mario_kart/kart_048_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario048Wheel2[] = "__OTR__mario_kart/kart_048_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario048Wheel3[] = "__OTR__mario_kart/kart_048_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario049Wheel0[] = "__OTR__mario_kart/kart_049_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario049Wheel1[] = "__OTR__mario_kart/kart_049_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario049Wheel2[] = "__OTR__mario_kart/kart_049_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario049Wheel3[] = "__OTR__mario_kart/kart_049_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario050Wheel0[] = "__OTR__mario_kart/kart_050_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario050Wheel1[] = "__OTR__mario_kart/kart_050_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario050Wheel2[] = "__OTR__mario_kart/kart_050_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario050Wheel3[] = "__OTR__mario_kart/kart_050_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario051Wheel0[] = "__OTR__mario_kart/kart_051_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario051Wheel1[] = "__OTR__mario_kart/kart_051_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario051Wheel2[] = "__OTR__mario_kart/kart_051_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario051Wheel3[] = "__OTR__mario_kart/kart_051_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario052Wheel0[] = "__OTR__mario_kart/kart_052_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario052Wheel1[] = "__OTR__mario_kart/kart_052_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario052Wheel2[] = "__OTR__mario_kart/kart_052_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario052Wheel3[] = "__OTR__mario_kart/kart_052_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario053Wheel0[] = "__OTR__mario_kart/kart_053_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario053Wheel1[] = "__OTR__mario_kart/kart_053_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario053Wheel2[] = "__OTR__mario_kart/kart_053_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario053Wheel3[] = "__OTR__mario_kart/kart_053_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario054Wheel0[] = "__OTR__mario_kart/kart_054_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario054Wheel1[] = "__OTR__mario_kart/kart_054_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario054Wheel2[] = "__OTR__mario_kart/kart_054_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario054Wheel3[] = "__OTR__mario_kart/kart_054_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario055Wheel0[] = "__OTR__mario_kart/kart_055_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario055Wheel1[] = "__OTR__mario_kart/kart_055_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario055Wheel2[] = "__OTR__mario_kart/kart_055_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario055Wheel3[] = "__OTR__mario_kart/kart_055_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario056Wheel0[] = "__OTR__mario_kart/kart_056_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario056Wheel1[] = "__OTR__mario_kart/kart_056_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario056Wheel2[] = "__OTR__mario_kart/kart_056_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario056Wheel3[] = "__OTR__mario_kart/kart_056_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario057Wheel0[] = "__OTR__mario_kart/kart_057_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario057Wheel1[] = "__OTR__mario_kart/kart_057_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario057Wheel2[] = "__OTR__mario_kart/kart_057_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario057Wheel3[] = "__OTR__mario_kart/kart_057_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario058Wheel0[] = "__OTR__mario_kart/kart_058_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario058Wheel1[] = "__OTR__mario_kart/kart_058_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario058Wheel2[] = "__OTR__mario_kart/kart_058_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario058Wheel3[] = "__OTR__mario_kart/kart_058_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario059Wheel0[] = "__OTR__mario_kart/kart_059_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario059Wheel1[] = "__OTR__mario_kart/kart_059_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario059Wheel2[] = "__OTR__mario_kart/kart_059_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario059Wheel3[] = "__OTR__mario_kart/kart_059_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario060Wheel0[] = "__OTR__mario_kart/kart_060_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario060Wheel1[] = "__OTR__mario_kart/kart_060_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario060Wheel2[] = "__OTR__mario_kart/kart_060_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario060Wheel3[] = "__OTR__mario_kart/kart_060_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario061Wheel0[] = "__OTR__mario_kart/kart_061_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario061Wheel1[] = "__OTR__mario_kart/kart_061_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario061Wheel2[] = "__OTR__mario_kart/kart_061_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario061Wheel3[] = "__OTR__mario_kart/kart_061_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario062Wheel0[] = "__OTR__mario_kart/kart_062_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario062Wheel1[] = "__OTR__mario_kart/kart_062_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario062Wheel2[] = "__OTR__mario_kart/kart_062_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario062Wheel3[] = "__OTR__mario_kart/kart_062_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario063Wheel0[] = "__OTR__mario_kart/kart_063_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario063Wheel1[] = "__OTR__mario_kart/kart_063_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario063Wheel2[] = "__OTR__mario_kart/kart_063_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario063Wheel3[] = "__OTR__mario_kart/kart_063_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario064Wheel0[] = "__OTR__mario_kart/kart_064_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario064Wheel1[] = "__OTR__mario_kart/kart_064_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario064Wheel2[] = "__OTR__mario_kart/kart_064_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario064Wheel3[] = "__OTR__mario_kart/kart_064_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario065Wheel0[] = "__OTR__mario_kart/kart_065_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario065Wheel1[] = "__OTR__mario_kart/kart_065_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario065Wheel2[] = "__OTR__mario_kart/kart_065_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario065Wheel3[] = "__OTR__mario_kart/kart_065_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario066Wheel0[] = "__OTR__mario_kart/kart_066_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario066Wheel1[] = "__OTR__mario_kart/kart_066_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario066Wheel2[] = "__OTR__mario_kart/kart_066_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario066Wheel3[] = "__OTR__mario_kart/kart_066_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario067Wheel0[] = "__OTR__mario_kart/kart_067_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario067Wheel1[] = "__OTR__mario_kart/kart_067_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario067Wheel2[] = "__OTR__mario_kart/kart_067_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario067Wheel3[] = "__OTR__mario_kart/kart_067_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario068Wheel0[] = "__OTR__mario_kart/kart_068_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario068Wheel1[] = "__OTR__mario_kart/kart_068_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario068Wheel2[] = "__OTR__mario_kart/kart_068_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario068Wheel3[] = "__OTR__mario_kart/kart_068_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario069Wheel0[] = "__OTR__mario_kart/kart_069_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario069Wheel1[] = "__OTR__mario_kart/kart_069_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario069Wheel2[] = "__OTR__mario_kart/kart_069_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario069Wheel3[] = "__OTR__mario_kart/kart_069_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario070Wheel0[] = "__OTR__mario_kart/kart_070_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario070Wheel1[] = "__OTR__mario_kart/kart_070_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario070Wheel2[] = "__OTR__mario_kart/kart_070_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario070Wheel3[] = "__OTR__mario_kart/kart_070_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario071Wheel0[] = "__OTR__mario_kart/kart_071_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario071Wheel1[] = "__OTR__mario_kart/kart_071_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario071Wheel2[] = "__OTR__mario_kart/kart_071_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario071Wheel3[] = "__OTR__mario_kart/kart_071_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario072Wheel0[] = "__OTR__mario_kart/kart_072_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario072Wheel1[] = "__OTR__mario_kart/kart_072_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario072Wheel2[] = "__OTR__mario_kart/kart_072_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario072Wheel3[] = "__OTR__mario_kart/kart_072_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario073Wheel0[] = "__OTR__mario_kart/kart_073_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario073Wheel1[] = "__OTR__mario_kart/kart_073_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario073Wheel2[] = "__OTR__mario_kart/kart_073_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario073Wheel3[] = "__OTR__mario_kart/kart_073_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario074Wheel0[] = "__OTR__mario_kart/kart_074_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario074Wheel1[] = "__OTR__mario_kart/kart_074_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario074Wheel2[] = "__OTR__mario_kart/kart_074_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario074Wheel3[] = "__OTR__mario_kart/kart_074_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario075Wheel0[] = "__OTR__mario_kart/kart_075_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario075Wheel1[] = "__OTR__mario_kart/kart_075_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario075Wheel2[] = "__OTR__mario_kart/kart_075_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario075Wheel3[] = "__OTR__mario_kart/kart_075_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario076Wheel0[] = "__OTR__mario_kart/kart_076_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario076Wheel1[] = "__OTR__mario_kart/kart_076_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario076Wheel2[] = "__OTR__mario_kart/kart_076_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario076Wheel3[] = "__OTR__mario_kart/kart_076_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario077Wheel0[] = "__OTR__mario_kart/kart_077_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario077Wheel1[] = "__OTR__mario_kart/kart_077_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario077Wheel2[] = "__OTR__mario_kart/kart_077_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario077Wheel3[] = "__OTR__mario_kart/kart_077_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario078Wheel0[] = "__OTR__mario_kart/kart_078_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario078Wheel1[] = "__OTR__mario_kart/kart_078_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario078Wheel2[] = "__OTR__mario_kart/kart_078_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario078Wheel3[] = "__OTR__mario_kart/kart_078_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario079Wheel0[] = "__OTR__mario_kart/kart_079_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario079Wheel1[] = "__OTR__mario_kart/kart_079_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario079Wheel2[] = "__OTR__mario_kart/kart_079_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario079Wheel3[] = "__OTR__mario_kart/kart_079_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario080Wheel0[] = "__OTR__mario_kart/kart_080_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario080Wheel1[] = "__OTR__mario_kart/kart_080_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario080Wheel2[] = "__OTR__mario_kart/kart_080_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario080Wheel3[] = "__OTR__mario_kart/kart_080_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario081Wheel0[] = "__OTR__mario_kart/kart_081_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario081Wheel1[] = "__OTR__mario_kart/kart_081_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario081Wheel2[] = "__OTR__mario_kart/kart_081_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario081Wheel3[] = "__OTR__mario_kart/kart_081_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario082Wheel0[] = "__OTR__mario_kart/kart_082_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario082Wheel1[] = "__OTR__mario_kart/kart_082_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario082Wheel2[] = "__OTR__mario_kart/kart_082_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario082Wheel3[] = "__OTR__mario_kart/kart_082_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario083Wheel0[] = "__OTR__mario_kart/kart_083_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario083Wheel1[] = "__OTR__mario_kart/kart_083_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario083Wheel2[] = "__OTR__mario_kart/kart_083_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario083Wheel3[] = "__OTR__mario_kart/kart_083_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario084Wheel0[] = "__OTR__mario_kart/kart_084_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario084Wheel1[] = "__OTR__mario_kart/kart_084_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario084Wheel2[] = "__OTR__mario_kart/kart_084_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario084Wheel3[] = "__OTR__mario_kart/kart_084_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario085Wheel0[] = "__OTR__mario_kart/kart_085_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario085Wheel1[] = "__OTR__mario_kart/kart_085_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario085Wheel2[] = "__OTR__mario_kart/kart_085_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario085Wheel3[] = "__OTR__mario_kart/kart_085_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario086Wheel0[] = "__OTR__mario_kart/kart_086_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario086Wheel1[] = "__OTR__mario_kart/kart_086_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario086Wheel2[] = "__OTR__mario_kart/kart_086_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario086Wheel3[] = "__OTR__mario_kart/kart_086_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario087Wheel0[] = "__OTR__mario_kart/kart_087_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario087Wheel1[] = "__OTR__mario_kart/kart_087_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario087Wheel2[] = "__OTR__mario_kart/kart_087_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario087Wheel3[] = "__OTR__mario_kart/kart_087_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario088Wheel0[] = "__OTR__mario_kart/kart_088_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario088Wheel1[] = "__OTR__mario_kart/kart_088_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario088Wheel2[] = "__OTR__mario_kart/kart_088_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario088Wheel3[] = "__OTR__mario_kart/kart_088_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario089Wheel0[] = "__OTR__mario_kart/kart_089_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario089Wheel1[] = "__OTR__mario_kart/kart_089_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario089Wheel2[] = "__OTR__mario_kart/kart_089_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario089Wheel3[] = "__OTR__mario_kart/kart_089_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario090Wheel0[] = "__OTR__mario_kart/kart_090_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario090Wheel1[] = "__OTR__mario_kart/kart_090_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario090Wheel2[] = "__OTR__mario_kart/kart_090_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario090Wheel3[] = "__OTR__mario_kart/kart_090_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario091Wheel0[] = "__OTR__mario_kart/kart_091_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario091Wheel1[] = "__OTR__mario_kart/kart_091_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario091Wheel2[] = "__OTR__mario_kart/kart_091_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario091Wheel3[] = "__OTR__mario_kart/kart_091_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario092Wheel0[] = "__OTR__mario_kart/kart_092_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario092Wheel1[] = "__OTR__mario_kart/kart_092_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario092Wheel2[] = "__OTR__mario_kart/kart_092_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario092Wheel3[] = "__OTR__mario_kart/kart_092_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario093Wheel0[] = "__OTR__mario_kart/kart_093_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario093Wheel1[] = "__OTR__mario_kart/kart_093_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario093Wheel2[] = "__OTR__mario_kart/kart_093_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario093Wheel3[] = "__OTR__mario_kart/kart_093_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario094Wheel0[] = "__OTR__mario_kart/kart_094_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario094Wheel1[] = "__OTR__mario_kart/kart_094_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario094Wheel2[] = "__OTR__mario_kart/kart_094_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario094Wheel3[] = "__OTR__mario_kart/kart_094_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario095Wheel0[] = "__OTR__mario_kart/kart_095_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario095Wheel1[] = "__OTR__mario_kart/kart_095_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario095Wheel2[] = "__OTR__mario_kart/kart_095_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario095Wheel3[] = "__OTR__mario_kart/kart_095_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario096Wheel0[] = "__OTR__mario_kart/kart_096_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario096Wheel1[] = "__OTR__mario_kart/kart_096_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario096Wheel2[] = "__OTR__mario_kart/kart_096_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario096Wheel3[] = "__OTR__mario_kart/kart_096_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario097Wheel0[] = "__OTR__mario_kart/kart_097_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario097Wheel1[] = "__OTR__mario_kart/kart_097_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario097Wheel2[] = "__OTR__mario_kart/kart_097_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario097Wheel3[] = "__OTR__mario_kart/kart_097_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario098Wheel0[] = "__OTR__mario_kart/kart_098_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario098Wheel1[] = "__OTR__mario_kart/kart_098_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario098Wheel2[] = "__OTR__mario_kart/kart_098_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario098Wheel3[] = "__OTR__mario_kart/kart_098_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario099Wheel0[] = "__OTR__mario_kart/kart_099_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario099Wheel1[] = "__OTR__mario_kart/kart_099_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario099Wheel2[] = "__OTR__mario_kart/kart_099_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario099Wheel3[] = "__OTR__mario_kart/kart_099_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario100Wheel0[] = "__OTR__mario_kart/kart_100_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario100Wheel1[] = "__OTR__mario_kart/kart_100_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario100Wheel2[] = "__OTR__mario_kart/kart_100_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario100Wheel3[] = "__OTR__mario_kart/kart_100_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario101Wheel0[] = "__OTR__mario_kart/kart_101_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario101Wheel1[] = "__OTR__mario_kart/kart_101_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario101Wheel2[] = "__OTR__mario_kart/kart_101_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario101Wheel3[] = "__OTR__mario_kart/kart_101_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario102Wheel0[] = "__OTR__mario_kart/kart_102_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario102Wheel1[] = "__OTR__mario_kart/kart_102_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario102Wheel2[] = "__OTR__mario_kart/kart_102_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario102Wheel3[] = "__OTR__mario_kart/kart_102_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario103Wheel0[] = "__OTR__mario_kart/kart_103_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario103Wheel1[] = "__OTR__mario_kart/kart_103_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario103Wheel2[] = "__OTR__mario_kart/kart_103_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario103Wheel3[] = "__OTR__mario_kart/kart_103_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario104Wheel0[] = "__OTR__mario_kart/kart_104_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario104Wheel1[] = "__OTR__mario_kart/kart_104_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario104Wheel2[] = "__OTR__mario_kart/kart_104_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario104Wheel3[] = "__OTR__mario_kart/kart_104_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario105Wheel0[] = "__OTR__mario_kart/kart_105_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario105Wheel1[] = "__OTR__mario_kart/kart_105_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario105Wheel2[] = "__OTR__mario_kart/kart_105_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario105Wheel3[] = "__OTR__mario_kart/kart_105_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario106Wheel0[] = "__OTR__mario_kart/kart_106_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario106Wheel1[] = "__OTR__mario_kart/kart_106_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario106Wheel2[] = "__OTR__mario_kart/kart_106_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario106Wheel3[] = "__OTR__mario_kart/kart_106_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario107Wheel0[] = "__OTR__mario_kart/kart_107_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario107Wheel1[] = "__OTR__mario_kart/kart_107_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario107Wheel2[] = "__OTR__mario_kart/kart_107_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario107Wheel3[] = "__OTR__mario_kart/kart_107_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario108Wheel0[] = "__OTR__mario_kart/kart_108_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario108Wheel1[] = "__OTR__mario_kart/kart_108_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario108Wheel2[] = "__OTR__mario_kart/kart_108_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario108Wheel3[] = "__OTR__mario_kart/kart_108_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario109Wheel0[] = "__OTR__mario_kart/kart_109_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario109Wheel1[] = "__OTR__mario_kart/kart_109_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario109Wheel2[] = "__OTR__mario_kart/kart_109_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario109Wheel3[] = "__OTR__mario_kart/kart_109_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario110Wheel0[] = "__OTR__mario_kart/kart_110_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario110Wheel1[] = "__OTR__mario_kart/kart_110_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario110Wheel2[] = "__OTR__mario_kart/kart_110_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario110Wheel3[] = "__OTR__mario_kart/kart_110_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario111Wheel0[] = "__OTR__mario_kart/kart_111_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario111Wheel1[] = "__OTR__mario_kart/kart_111_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario111Wheel2[] = "__OTR__mario_kart/kart_111_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario111Wheel3[] = "__OTR__mario_kart/kart_111_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario112Wheel0[] = "__OTR__mario_kart/kart_112_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario112Wheel1[] = "__OTR__mario_kart/kart_112_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario112Wheel2[] = "__OTR__mario_kart/kart_112_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario112Wheel3[] = "__OTR__mario_kart/kart_112_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario113Wheel0[] = "__OTR__mario_kart/kart_113_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario113Wheel1[] = "__OTR__mario_kart/kart_113_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario113Wheel2[] = "__OTR__mario_kart/kart_113_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario113Wheel3[] = "__OTR__mario_kart/kart_113_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario114Wheel0[] = "__OTR__mario_kart/kart_114_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario114Wheel1[] = "__OTR__mario_kart/kart_114_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario114Wheel2[] = "__OTR__mario_kart/kart_114_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario114Wheel3[] = "__OTR__mario_kart/kart_114_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario115Wheel0[] = "__OTR__mario_kart/kart_115_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario115Wheel1[] = "__OTR__mario_kart/kart_115_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario115Wheel2[] = "__OTR__mario_kart/kart_115_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario115Wheel3[] = "__OTR__mario_kart/kart_115_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario116Wheel0[] = "__OTR__mario_kart/kart_116_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario116Wheel1[] = "__OTR__mario_kart/kart_116_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario116Wheel2[] = "__OTR__mario_kart/kart_116_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario116Wheel3[] = "__OTR__mario_kart/kart_116_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario117Wheel0[] = "__OTR__mario_kart/kart_117_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario117Wheel1[] = "__OTR__mario_kart/kart_117_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario117Wheel2[] = "__OTR__mario_kart/kart_117_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario117Wheel3[] = "__OTR__mario_kart/kart_117_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario118Wheel0[] = "__OTR__mario_kart/kart_118_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario118Wheel1[] = "__OTR__mario_kart/kart_118_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario118Wheel2[] = "__OTR__mario_kart/kart_118_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario118Wheel3[] = "__OTR__mario_kart/kart_118_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario119Wheel0[] = "__OTR__mario_kart/kart_119_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario119Wheel1[] = "__OTR__mario_kart/kart_119_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario119Wheel2[] = "__OTR__mario_kart/kart_119_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario119Wheel3[] = "__OTR__mario_kart/kart_119_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario120Wheel0[] = "__OTR__mario_kart/kart_120_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario120Wheel1[] = "__OTR__mario_kart/kart_120_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario120Wheel2[] = "__OTR__mario_kart/kart_120_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario120Wheel3[] = "__OTR__mario_kart/kart_120_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario121Wheel0[] = "__OTR__mario_kart/kart_121_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario121Wheel1[] = "__OTR__mario_kart/kart_121_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario121Wheel2[] = "__OTR__mario_kart/kart_121_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario121Wheel3[] = "__OTR__mario_kart/kart_121_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario122Wheel0[] = "__OTR__mario_kart/kart_122_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario122Wheel1[] = "__OTR__mario_kart/kart_122_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario122Wheel2[] = "__OTR__mario_kart/kart_122_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario122Wheel3[] = "__OTR__mario_kart/kart_122_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario123Wheel0[] = "__OTR__mario_kart/kart_123_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario123Wheel1[] = "__OTR__mario_kart/kart_123_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario123Wheel2[] = "__OTR__mario_kart/kart_123_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario123Wheel3[] = "__OTR__mario_kart/kart_123_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario124Wheel0[] = "__OTR__mario_kart/kart_124_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario124Wheel1[] = "__OTR__mario_kart/kart_124_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario124Wheel2[] = "__OTR__mario_kart/kart_124_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario124Wheel3[] = "__OTR__mario_kart/kart_124_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario125Wheel0[] = "__OTR__mario_kart/kart_125_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario125Wheel1[] = "__OTR__mario_kart/kart_125_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario125Wheel2[] = "__OTR__mario_kart/kart_125_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario125Wheel3[] = "__OTR__mario_kart/kart_125_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario126Wheel0[] = "__OTR__mario_kart/kart_126_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario126Wheel1[] = "__OTR__mario_kart/kart_126_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario126Wheel2[] = "__OTR__mario_kart/kart_126_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario126Wheel3[] = "__OTR__mario_kart/kart_126_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario127Wheel0[] = "__OTR__mario_kart/kart_127_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario127Wheel1[] = "__OTR__mario_kart/kart_127_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario127Wheel2[] = "__OTR__mario_kart/kart_127_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario127Wheel3[] = "__OTR__mario_kart/kart_127_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario128Wheel0[] = "__OTR__mario_kart/kart_128_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario128Wheel1[] = "__OTR__mario_kart/kart_128_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario128Wheel2[] = "__OTR__mario_kart/kart_128_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario128Wheel3[] = "__OTR__mario_kart/kart_128_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario129Wheel0[] = "__OTR__mario_kart/kart_129_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario129Wheel1[] = "__OTR__mario_kart/kart_129_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario129Wheel2[] = "__OTR__mario_kart/kart_129_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario129Wheel3[] = "__OTR__mario_kart/kart_129_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario130Wheel0[] = "__OTR__mario_kart/kart_130_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario130Wheel1[] = "__OTR__mario_kart/kart_130_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario130Wheel2[] = "__OTR__mario_kart/kart_130_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario130Wheel3[] = "__OTR__mario_kart/kart_130_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario131Wheel0[] = "__OTR__mario_kart/kart_131_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario131Wheel1[] = "__OTR__mario_kart/kart_131_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario131Wheel2[] = "__OTR__mario_kart/kart_131_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario131Wheel3[] = "__OTR__mario_kart/kart_131_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario132Wheel0[] = "__OTR__mario_kart/kart_132_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario132Wheel1[] = "__OTR__mario_kart/kart_132_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario132Wheel2[] = "__OTR__mario_kart/kart_132_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario132Wheel3[] = "__OTR__mario_kart/kart_132_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario133Wheel0[] = "__OTR__mario_kart/kart_133_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario133Wheel1[] = "__OTR__mario_kart/kart_133_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario133Wheel2[] = "__OTR__mario_kart/kart_133_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario133Wheel3[] = "__OTR__mario_kart/kart_133_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario134Wheel0[] = "__OTR__mario_kart/kart_134_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario134Wheel1[] = "__OTR__mario_kart/kart_134_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario134Wheel2[] = "__OTR__mario_kart/kart_134_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario134Wheel3[] = "__OTR__mario_kart/kart_134_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario135Wheel0[] = "__OTR__mario_kart/kart_135_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario135Wheel1[] = "__OTR__mario_kart/kart_135_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario135Wheel2[] = "__OTR__mario_kart/kart_135_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario135Wheel3[] = "__OTR__mario_kart/kart_135_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario136Wheel0[] = "__OTR__mario_kart/kart_136_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario136Wheel1[] = "__OTR__mario_kart/kart_136_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario136Wheel2[] = "__OTR__mario_kart/kart_136_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario136Wheel3[] = "__OTR__mario_kart/kart_136_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario137Wheel0[] = "__OTR__mario_kart/kart_137_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario137Wheel1[] = "__OTR__mario_kart/kart_137_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario137Wheel2[] = "__OTR__mario_kart/kart_137_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario137Wheel3[] = "__OTR__mario_kart/kart_137_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario138Wheel0[] = "__OTR__mario_kart/kart_138_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario138Wheel1[] = "__OTR__mario_kart/kart_138_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario138Wheel2[] = "__OTR__mario_kart/kart_138_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario138Wheel3[] = "__OTR__mario_kart/kart_138_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario139Wheel0[] = "__OTR__mario_kart/kart_139_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario139Wheel1[] = "__OTR__mario_kart/kart_139_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario139Wheel2[] = "__OTR__mario_kart/kart_139_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario139Wheel3[] = "__OTR__mario_kart/kart_139_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario140Wheel0[] = "__OTR__mario_kart/kart_140_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario140Wheel1[] = "__OTR__mario_kart/kart_140_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario140Wheel2[] = "__OTR__mario_kart/kart_140_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario140Wheel3[] = "__OTR__mario_kart/kart_140_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario141Wheel0[] = "__OTR__mario_kart/kart_141_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario141Wheel1[] = "__OTR__mario_kart/kart_141_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario141Wheel2[] = "__OTR__mario_kart/kart_141_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario141Wheel3[] = "__OTR__mario_kart/kart_141_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario142Wheel0[] = "__OTR__mario_kart/kart_142_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario142Wheel1[] = "__OTR__mario_kart/kart_142_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario142Wheel2[] = "__OTR__mario_kart/kart_142_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario142Wheel3[] = "__OTR__mario_kart/kart_142_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario143Wheel0[] = "__OTR__mario_kart/kart_143_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario143Wheel1[] = "__OTR__mario_kart/kart_143_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario143Wheel2[] = "__OTR__mario_kart/kart_143_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario143Wheel3[] = "__OTR__mario_kart/kart_143_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario144Wheel0[] = "__OTR__mario_kart/kart_144_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario144Wheel1[] = "__OTR__mario_kart/kart_144_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario144Wheel2[] = "__OTR__mario_kart/kart_144_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario144Wheel3[] = "__OTR__mario_kart/kart_144_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario145Wheel0[] = "__OTR__mario_kart/kart_145_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario145Wheel1[] = "__OTR__mario_kart/kart_145_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario145Wheel2[] = "__OTR__mario_kart/kart_145_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario145Wheel3[] = "__OTR__mario_kart/kart_145_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario146Wheel0[] = "__OTR__mario_kart/kart_146_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario146Wheel1[] = "__OTR__mario_kart/kart_146_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario146Wheel2[] = "__OTR__mario_kart/kart_146_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario146Wheel3[] = "__OTR__mario_kart/kart_146_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario147Wheel0[] = "__OTR__mario_kart/kart_147_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario147Wheel1[] = "__OTR__mario_kart/kart_147_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario147Wheel2[] = "__OTR__mario_kart/kart_147_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario147Wheel3[] = "__OTR__mario_kart/kart_147_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario148Wheel0[] = "__OTR__mario_kart/kart_148_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario148Wheel1[] = "__OTR__mario_kart/kart_148_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario148Wheel2[] = "__OTR__mario_kart/kart_148_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario148Wheel3[] = "__OTR__mario_kart/kart_148_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario149Wheel0[] = "__OTR__mario_kart/kart_149_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario149Wheel1[] = "__OTR__mario_kart/kart_149_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario149Wheel2[] = "__OTR__mario_kart/kart_149_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario149Wheel3[] = "__OTR__mario_kart/kart_149_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario150Wheel0[] = "__OTR__mario_kart/kart_150_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario150Wheel1[] = "__OTR__mario_kart/kart_150_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario150Wheel2[] = "__OTR__mario_kart/kart_150_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario150Wheel3[] = "__OTR__mario_kart/kart_150_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario151Wheel0[] = "__OTR__mario_kart/kart_151_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario151Wheel1[] = "__OTR__mario_kart/kart_151_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario151Wheel2[] = "__OTR__mario_kart/kart_151_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario151Wheel3[] = "__OTR__mario_kart/kart_151_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario152Wheel0[] = "__OTR__mario_kart/kart_152_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario152Wheel1[] = "__OTR__mario_kart/kart_152_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario152Wheel2[] = "__OTR__mario_kart/kart_152_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario152Wheel3[] = "__OTR__mario_kart/kart_152_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario153Wheel0[] = "__OTR__mario_kart/kart_153_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario153Wheel1[] = "__OTR__mario_kart/kart_153_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario153Wheel2[] = "__OTR__mario_kart/kart_153_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario153Wheel3[] = "__OTR__mario_kart/kart_153_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario154Wheel0[] = "__OTR__mario_kart/kart_154_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario154Wheel1[] = "__OTR__mario_kart/kart_154_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario154Wheel2[] = "__OTR__mario_kart/kart_154_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario154Wheel3[] = "__OTR__mario_kart/kart_154_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario155Wheel0[] = "__OTR__mario_kart/kart_155_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario155Wheel1[] = "__OTR__mario_kart/kart_155_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario155Wheel2[] = "__OTR__mario_kart/kart_155_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario155Wheel3[] = "__OTR__mario_kart/kart_155_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario156Wheel0[] = "__OTR__mario_kart/kart_156_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario156Wheel1[] = "__OTR__mario_kart/kart_156_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario156Wheel2[] = "__OTR__mario_kart/kart_156_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario156Wheel3[] = "__OTR__mario_kart/kart_156_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario157Wheel0[] = "__OTR__mario_kart/kart_157_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario157Wheel1[] = "__OTR__mario_kart/kart_157_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario157Wheel2[] = "__OTR__mario_kart/kart_157_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario157Wheel3[] = "__OTR__mario_kart/kart_157_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario158Wheel0[] = "__OTR__mario_kart/kart_158_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario158Wheel1[] = "__OTR__mario_kart/kart_158_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario158Wheel2[] = "__OTR__mario_kart/kart_158_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario158Wheel3[] = "__OTR__mario_kart/kart_158_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario159Wheel0[] = "__OTR__mario_kart/kart_159_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario159Wheel1[] = "__OTR__mario_kart/kart_159_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario159Wheel2[] = "__OTR__mario_kart/kart_159_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario159Wheel3[] = "__OTR__mario_kart/kart_159_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario160Wheel0[] = "__OTR__mario_kart/kart_160_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario160Wheel1[] = "__OTR__mario_kart/kart_160_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario160Wheel2[] = "__OTR__mario_kart/kart_160_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario160Wheel3[] = "__OTR__mario_kart/kart_160_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario161Wheel0[] = "__OTR__mario_kart/kart_161_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario161Wheel1[] = "__OTR__mario_kart/kart_161_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario161Wheel2[] = "__OTR__mario_kart/kart_161_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario161Wheel3[] = "__OTR__mario_kart/kart_161_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario162Wheel0[] = "__OTR__mario_kart/kart_162_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario162Wheel1[] = "__OTR__mario_kart/kart_162_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario162Wheel2[] = "__OTR__mario_kart/kart_162_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario162Wheel3[] = "__OTR__mario_kart/kart_162_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario163Wheel0[] = "__OTR__mario_kart/kart_163_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario163Wheel1[] = "__OTR__mario_kart/kart_163_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario163Wheel2[] = "__OTR__mario_kart/kart_163_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario163Wheel3[] = "__OTR__mario_kart/kart_163_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario164Wheel0[] = "__OTR__mario_kart/kart_164_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario164Wheel1[] = "__OTR__mario_kart/kart_164_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario164Wheel2[] = "__OTR__mario_kart/kart_164_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario164Wheel3[] = "__OTR__mario_kart/kart_164_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario165Wheel0[] = "__OTR__mario_kart/kart_165_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario165Wheel1[] = "__OTR__mario_kart/kart_165_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario165Wheel2[] = "__OTR__mario_kart/kart_165_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario165Wheel3[] = "__OTR__mario_kart/kart_165_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario166Wheel0[] = "__OTR__mario_kart/kart_166_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario166Wheel1[] = "__OTR__mario_kart/kart_166_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario166Wheel2[] = "__OTR__mario_kart/kart_166_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario166Wheel3[] = "__OTR__mario_kart/kart_166_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario167Wheel0[] = "__OTR__mario_kart/kart_167_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario167Wheel1[] = "__OTR__mario_kart/kart_167_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario167Wheel2[] = "__OTR__mario_kart/kart_167_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario167Wheel3[] = "__OTR__mario_kart/kart_167_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario168Wheel0[] = "__OTR__mario_kart/kart_168_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario168Wheel1[] = "__OTR__mario_kart/kart_168_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario168Wheel2[] = "__OTR__mario_kart/kart_168_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario168Wheel3[] = "__OTR__mario_kart/kart_168_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario169Wheel0[] = "__OTR__mario_kart/kart_169_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario169Wheel1[] = "__OTR__mario_kart/kart_169_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario169Wheel2[] = "__OTR__mario_kart/kart_169_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario169Wheel3[] = "__OTR__mario_kart/kart_169_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario170Wheel0[] = "__OTR__mario_kart/kart_170_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario170Wheel1[] = "__OTR__mario_kart/kart_170_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario170Wheel2[] = "__OTR__mario_kart/kart_170_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario170Wheel3[] = "__OTR__mario_kart/kart_170_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario171Wheel0[] = "__OTR__mario_kart/kart_171_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario171Wheel1[] = "__OTR__mario_kart/kart_171_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario171Wheel2[] = "__OTR__mario_kart/kart_171_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario171Wheel3[] = "__OTR__mario_kart/kart_171_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario172Wheel0[] = "__OTR__mario_kart/kart_172_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario172Wheel1[] = "__OTR__mario_kart/kart_172_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario172Wheel2[] = "__OTR__mario_kart/kart_172_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario172Wheel3[] = "__OTR__mario_kart/kart_172_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario173Wheel0[] = "__OTR__mario_kart/kart_173_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario173Wheel1[] = "__OTR__mario_kart/kart_173_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario173Wheel2[] = "__OTR__mario_kart/kart_173_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario173Wheel3[] = "__OTR__mario_kart/kart_173_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario174Wheel0[] = "__OTR__mario_kart/kart_174_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario174Wheel1[] = "__OTR__mario_kart/kart_174_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario174Wheel2[] = "__OTR__mario_kart/kart_174_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario174Wheel3[] = "__OTR__mario_kart/kart_174_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario175Wheel0[] = "__OTR__mario_kart/kart_175_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario175Wheel1[] = "__OTR__mario_kart/kart_175_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario175Wheel2[] = "__OTR__mario_kart/kart_175_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario175Wheel3[] = "__OTR__mario_kart/kart_175_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario176Wheel0[] = "__OTR__mario_kart/kart_176_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario176Wheel1[] = "__OTR__mario_kart/kart_176_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario176Wheel2[] = "__OTR__mario_kart/kart_176_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario176Wheel3[] = "__OTR__mario_kart/kart_176_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario177Wheel0[] = "__OTR__mario_kart/kart_177_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario177Wheel1[] = "__OTR__mario_kart/kart_177_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario177Wheel2[] = "__OTR__mario_kart/kart_177_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario177Wheel3[] = "__OTR__mario_kart/kart_177_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario178Wheel0[] = "__OTR__mario_kart/kart_178_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario178Wheel1[] = "__OTR__mario_kart/kart_178_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario178Wheel2[] = "__OTR__mario_kart/kart_178_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario178Wheel3[] = "__OTR__mario_kart/kart_178_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario179Wheel0[] = "__OTR__mario_kart/kart_179_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario179Wheel1[] = "__OTR__mario_kart/kart_179_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario179Wheel2[] = "__OTR__mario_kart/kart_179_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario179Wheel3[] = "__OTR__mario_kart/kart_179_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario180Wheel0[] = "__OTR__mario_kart/kart_180_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario180Wheel1[] = "__OTR__mario_kart/kart_180_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario180Wheel2[] = "__OTR__mario_kart/kart_180_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario180Wheel3[] = "__OTR__mario_kart/kart_180_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario181Wheel0[] = "__OTR__mario_kart/kart_181_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario181Wheel1[] = "__OTR__mario_kart/kart_181_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario181Wheel2[] = "__OTR__mario_kart/kart_181_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario181Wheel3[] = "__OTR__mario_kart/kart_181_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario182Wheel0[] = "__OTR__mario_kart/kart_182_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario182Wheel1[] = "__OTR__mario_kart/kart_182_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario182Wheel2[] = "__OTR__mario_kart/kart_182_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario182Wheel3[] = "__OTR__mario_kart/kart_182_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario183Wheel0[] = "__OTR__mario_kart/kart_183_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario183Wheel1[] = "__OTR__mario_kart/kart_183_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario183Wheel2[] = "__OTR__mario_kart/kart_183_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario183Wheel3[] = "__OTR__mario_kart/kart_183_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario184Wheel0[] = "__OTR__mario_kart/kart_184_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario184Wheel1[] = "__OTR__mario_kart/kart_184_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario184Wheel2[] = "__OTR__mario_kart/kart_184_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario184Wheel3[] = "__OTR__mario_kart/kart_184_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario185Wheel0[] = "__OTR__mario_kart/kart_185_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario185Wheel1[] = "__OTR__mario_kart/kart_185_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario185Wheel2[] = "__OTR__mario_kart/kart_185_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario185Wheel3[] = "__OTR__mario_kart/kart_185_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario186Wheel0[] = "__OTR__mario_kart/kart_186_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario186Wheel1[] = "__OTR__mario_kart/kart_186_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario186Wheel2[] = "__OTR__mario_kart/kart_186_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario186Wheel3[] = "__OTR__mario_kart/kart_186_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario187Wheel0[] = "__OTR__mario_kart/kart_187_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario187Wheel1[] = "__OTR__mario_kart/kart_187_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario187Wheel2[] = "__OTR__mario_kart/kart_187_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario187Wheel3[] = "__OTR__mario_kart/kart_187_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario188Wheel0[] = "__OTR__mario_kart/kart_188_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario188Wheel1[] = "__OTR__mario_kart/kart_188_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario188Wheel2[] = "__OTR__mario_kart/kart_188_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario188Wheel3[] = "__OTR__mario_kart/kart_188_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario189Wheel0[] = "__OTR__mario_kart/kart_189_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario189Wheel1[] = "__OTR__mario_kart/kart_189_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario189Wheel2[] = "__OTR__mario_kart/kart_189_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario189Wheel3[] = "__OTR__mario_kart/kart_189_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario190Wheel0[] = "__OTR__mario_kart/kart_190_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario190Wheel1[] = "__OTR__mario_kart/kart_190_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario190Wheel2[] = "__OTR__mario_kart/kart_190_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario190Wheel3[] = "__OTR__mario_kart/kart_190_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario191Wheel0[] = "__OTR__mario_kart/kart_191_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario191Wheel1[] = "__OTR__mario_kart/kart_191_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario191Wheel2[] = "__OTR__mario_kart/kart_191_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario191Wheel3[] = "__OTR__mario_kart/kart_191_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario192Wheel0[] = "__OTR__mario_kart/kart_192_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario192Wheel1[] = "__OTR__mario_kart/kart_192_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario192Wheel2[] = "__OTR__mario_kart/kart_192_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario192Wheel3[] = "__OTR__mario_kart/kart_192_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario193Wheel0[] = "__OTR__mario_kart/kart_193_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario193Wheel1[] = "__OTR__mario_kart/kart_193_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario193Wheel2[] = "__OTR__mario_kart/kart_193_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario193Wheel3[] = "__OTR__mario_kart/kart_193_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario194Wheel0[] = "__OTR__mario_kart/kart_194_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario194Wheel1[] = "__OTR__mario_kart/kart_194_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario194Wheel2[] = "__OTR__mario_kart/kart_194_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario194Wheel3[] = "__OTR__mario_kart/kart_194_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario195Wheel0[] = "__OTR__mario_kart/kart_195_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario195Wheel1[] = "__OTR__mario_kart/kart_195_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario195Wheel2[] = "__OTR__mario_kart/kart_195_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario195Wheel3[] = "__OTR__mario_kart/kart_195_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario196Wheel0[] = "__OTR__mario_kart/kart_196_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario196Wheel1[] = "__OTR__mario_kart/kart_196_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario196Wheel2[] = "__OTR__mario_kart/kart_196_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario196Wheel3[] = "__OTR__mario_kart/kart_196_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario197Wheel0[] = "__OTR__mario_kart/kart_197_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario197Wheel1[] = "__OTR__mario_kart/kart_197_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario197Wheel2[] = "__OTR__mario_kart/kart_197_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario197Wheel3[] = "__OTR__mario_kart/kart_197_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario198Wheel0[] = "__OTR__mario_kart/kart_198_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario198Wheel1[] = "__OTR__mario_kart/kart_198_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario198Wheel2[] = "__OTR__mario_kart/kart_198_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario198Wheel3[] = "__OTR__mario_kart/kart_198_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario199Wheel0[] = "__OTR__mario_kart/kart_199_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario199Wheel1[] = "__OTR__mario_kart/kart_199_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario199Wheel2[] = "__OTR__mario_kart/kart_199_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario199Wheel3[] = "__OTR__mario_kart/kart_199_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario200Wheel0[] = "__OTR__mario_kart/kart_200_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario200Wheel1[] = "__OTR__mario_kart/kart_200_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario200Wheel2[] = "__OTR__mario_kart/kart_200_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario200Wheel3[] = "__OTR__mario_kart/kart_200_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario201Wheel0[] = "__OTR__mario_kart/kart_201_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario201Wheel1[] = "__OTR__mario_kart/kart_201_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario201Wheel2[] = "__OTR__mario_kart/kart_201_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario201Wheel3[] = "__OTR__mario_kart/kart_201_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario202Wheel0[] = "__OTR__mario_kart/kart_202_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario202Wheel1[] = "__OTR__mario_kart/kart_202_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario202Wheel2[] = "__OTR__mario_kart/kart_202_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario202Wheel3[] = "__OTR__mario_kart/kart_202_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario203Wheel0[] = "__OTR__mario_kart/kart_203_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario203Wheel1[] = "__OTR__mario_kart/kart_203_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario203Wheel2[] = "__OTR__mario_kart/kart_203_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario203Wheel3[] = "__OTR__mario_kart/kart_203_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario204Wheel0[] = "__OTR__mario_kart/kart_204_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario204Wheel1[] = "__OTR__mario_kart/kart_204_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario204Wheel2[] = "__OTR__mario_kart/kart_204_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario204Wheel3[] = "__OTR__mario_kart/kart_204_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario205Wheel0[] = "__OTR__mario_kart/kart_205_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario205Wheel1[] = "__OTR__mario_kart/kart_205_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario205Wheel2[] = "__OTR__mario_kart/kart_205_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario205Wheel3[] = "__OTR__mario_kart/kart_205_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario206Wheel0[] = "__OTR__mario_kart/kart_206_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario206Wheel1[] = "__OTR__mario_kart/kart_206_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario206Wheel2[] = "__OTR__mario_kart/kart_206_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario206Wheel3[] = "__OTR__mario_kart/kart_206_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario207Wheel0[] = "__OTR__mario_kart/kart_207_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario207Wheel1[] = "__OTR__mario_kart/kart_207_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario207Wheel2[] = "__OTR__mario_kart/kart_207_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario207Wheel3[] = "__OTR__mario_kart/kart_207_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario208Wheel0[] = "__OTR__mario_kart/kart_208_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario208Wheel1[] = "__OTR__mario_kart/kart_208_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario208Wheel2[] = "__OTR__mario_kart/kart_208_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario208Wheel3[] = "__OTR__mario_kart/kart_208_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario209Wheel0[] = "__OTR__mario_kart/kart_209_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario209Wheel1[] = "__OTR__mario_kart/kart_209_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario209Wheel2[] = "__OTR__mario_kart/kart_209_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario209Wheel3[] = "__OTR__mario_kart/kart_209_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario210Wheel0[] = "__OTR__mario_kart/kart_210_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario210Wheel1[] = "__OTR__mario_kart/kart_210_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario210Wheel2[] = "__OTR__mario_kart/kart_210_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario210Wheel3[] = "__OTR__mario_kart/kart_210_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario211Wheel0[] = "__OTR__mario_kart/kart_211_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario211Wheel1[] = "__OTR__mario_kart/kart_211_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario211Wheel2[] = "__OTR__mario_kart/kart_211_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario211Wheel3[] = "__OTR__mario_kart/kart_211_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario212Wheel0[] = "__OTR__mario_kart/kart_212_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario212Wheel1[] = "__OTR__mario_kart/kart_212_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario212Wheel2[] = "__OTR__mario_kart/kart_212_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario212Wheel3[] = "__OTR__mario_kart/kart_212_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario213Wheel0[] = "__OTR__mario_kart/kart_213_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario213Wheel1[] = "__OTR__mario_kart/kart_213_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario213Wheel2[] = "__OTR__mario_kart/kart_213_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario213Wheel3[] = "__OTR__mario_kart/kart_213_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario214Wheel0[] = "__OTR__mario_kart/kart_214_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario214Wheel1[] = "__OTR__mario_kart/kart_214_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario214Wheel2[] = "__OTR__mario_kart/kart_214_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario214Wheel3[] = "__OTR__mario_kart/kart_214_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario215Wheel0[] = "__OTR__mario_kart/kart_215_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario215Wheel1[] = "__OTR__mario_kart/kart_215_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario215Wheel2[] = "__OTR__mario_kart/kart_215_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario215Wheel3[] = "__OTR__mario_kart/kart_215_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario216Wheel0[] = "__OTR__mario_kart/kart_216_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario216Wheel1[] = "__OTR__mario_kart/kart_216_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario216Wheel2[] = "__OTR__mario_kart/kart_216_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario216Wheel3[] = "__OTR__mario_kart/kart_216_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario217Wheel0[] = "__OTR__mario_kart/kart_217_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario217Wheel1[] = "__OTR__mario_kart/kart_217_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario217Wheel2[] = "__OTR__mario_kart/kart_217_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario217Wheel3[] = "__OTR__mario_kart/kart_217_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario218Wheel0[] = "__OTR__mario_kart/kart_218_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario218Wheel1[] = "__OTR__mario_kart/kart_218_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario218Wheel2[] = "__OTR__mario_kart/kart_218_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario218Wheel3[] = "__OTR__mario_kart/kart_218_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario219Wheel0[] = "__OTR__mario_kart/kart_219_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario219Wheel1[] = "__OTR__mario_kart/kart_219_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario219Wheel2[] = "__OTR__mario_kart/kart_219_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario219Wheel3[] = "__OTR__mario_kart/kart_219_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario220Wheel0[] = "__OTR__mario_kart/kart_220_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario220Wheel1[] = "__OTR__mario_kart/kart_220_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario220Wheel2[] = "__OTR__mario_kart/kart_220_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario220Wheel3[] = "__OTR__mario_kart/kart_220_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario221Wheel0[] = "__OTR__mario_kart/kart_221_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario221Wheel1[] = "__OTR__mario_kart/kart_221_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario221Wheel2[] = "__OTR__mario_kart/kart_221_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario221Wheel3[] = "__OTR__mario_kart/kart_221_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario222Wheel0[] = "__OTR__mario_kart/kart_222_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario222Wheel1[] = "__OTR__mario_kart/kart_222_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario222Wheel2[] = "__OTR__mario_kart/kart_222_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario222Wheel3[] = "__OTR__mario_kart/kart_222_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario223Wheel0[] = "__OTR__mario_kart/kart_223_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario223Wheel1[] = "__OTR__mario_kart/kart_223_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario223Wheel2[] = "__OTR__mario_kart/kart_223_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario223Wheel3[] = "__OTR__mario_kart/kart_223_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario224Wheel0[] = "__OTR__mario_kart/kart_224_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario224Wheel1[] = "__OTR__mario_kart/kart_224_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario224Wheel2[] = "__OTR__mario_kart/kart_224_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario224Wheel3[] = "__OTR__mario_kart/kart_224_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario225Wheel0[] = "__OTR__mario_kart/kart_225_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario225Wheel1[] = "__OTR__mario_kart/kart_225_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario225Wheel2[] = "__OTR__mario_kart/kart_225_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario225Wheel3[] = "__OTR__mario_kart/kart_225_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario226Wheel0[] = "__OTR__mario_kart/kart_226_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario226Wheel1[] = "__OTR__mario_kart/kart_226_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario226Wheel2[] = "__OTR__mario_kart/kart_226_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario226Wheel3[] = "__OTR__mario_kart/kart_226_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario227Wheel0[] = "__OTR__mario_kart/kart_227_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario227Wheel1[] = "__OTR__mario_kart/kart_227_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario227Wheel2[] = "__OTR__mario_kart/kart_227_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario227Wheel3[] = "__OTR__mario_kart/kart_227_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario228Wheel0[] = "__OTR__mario_kart/kart_228_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario228Wheel1[] = "__OTR__mario_kart/kart_228_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario228Wheel2[] = "__OTR__mario_kart/kart_228_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario228Wheel3[] = "__OTR__mario_kart/kart_228_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario229Wheel0[] = "__OTR__mario_kart/kart_229_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario229Wheel1[] = "__OTR__mario_kart/kart_229_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario229Wheel2[] = "__OTR__mario_kart/kart_229_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario229Wheel3[] = "__OTR__mario_kart/kart_229_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario230Wheel0[] = "__OTR__mario_kart/kart_230_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario230Wheel1[] = "__OTR__mario_kart/kart_230_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario230Wheel2[] = "__OTR__mario_kart/kart_230_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario230Wheel3[] = "__OTR__mario_kart/kart_230_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario231Wheel0[] = "__OTR__mario_kart/kart_231_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario231Wheel1[] = "__OTR__mario_kart/kart_231_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario231Wheel2[] = "__OTR__mario_kart/kart_231_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario231Wheel3[] = "__OTR__mario_kart/kart_231_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario232Wheel0[] = "__OTR__mario_kart/kart_232_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario232Wheel1[] = "__OTR__mario_kart/kart_232_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario232Wheel2[] = "__OTR__mario_kart/kart_232_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario232Wheel3[] = "__OTR__mario_kart/kart_232_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario233Wheel0[] = "__OTR__mario_kart/kart_233_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario233Wheel1[] = "__OTR__mario_kart/kart_233_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario233Wheel2[] = "__OTR__mario_kart/kart_233_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario233Wheel3[] = "__OTR__mario_kart/kart_233_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario234Wheel0[] = "__OTR__mario_kart/kart_234_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario234Wheel1[] = "__OTR__mario_kart/kart_234_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario234Wheel2[] = "__OTR__mario_kart/kart_234_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario234Wheel3[] = "__OTR__mario_kart/kart_234_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario235Wheel0[] = "__OTR__mario_kart/kart_235_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario235Wheel1[] = "__OTR__mario_kart/kart_235_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario235Wheel2[] = "__OTR__mario_kart/kart_235_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario235Wheel3[] = "__OTR__mario_kart/kart_235_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario236Wheel0[] = "__OTR__mario_kart/kart_236_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario236Wheel1[] = "__OTR__mario_kart/kart_236_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario236Wheel2[] = "__OTR__mario_kart/kart_236_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario236Wheel3[] = "__OTR__mario_kart/kart_236_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario237Wheel0[] = "__OTR__mario_kart/kart_237_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario237Wheel1[] = "__OTR__mario_kart/kart_237_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario237Wheel2[] = "__OTR__mario_kart/kart_237_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario237Wheel3[] = "__OTR__mario_kart/kart_237_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario238Wheel0[] = "__OTR__mario_kart/kart_238_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario238Wheel1[] = "__OTR__mario_kart/kart_238_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario238Wheel2[] = "__OTR__mario_kart/kart_238_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario238Wheel3[] = "__OTR__mario_kart/kart_238_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario239Wheel0[] = "__OTR__mario_kart/kart_239_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario239Wheel1[] = "__OTR__mario_kart/kart_239_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario239Wheel2[] = "__OTR__mario_kart/kart_239_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario239Wheel3[] = "__OTR__mario_kart/kart_239_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario240Wheel0[] = "__OTR__mario_kart/kart_240_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario240Wheel1[] = "__OTR__mario_kart/kart_240_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario240Wheel2[] = "__OTR__mario_kart/kart_240_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario240Wheel3[] = "__OTR__mario_kart/kart_240_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario241Wheel0[] = "__OTR__mario_kart/kart_241_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario241Wheel1[] = "__OTR__mario_kart/kart_241_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario241Wheel2[] = "__OTR__mario_kart/kart_241_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario241Wheel3[] = "__OTR__mario_kart/kart_241_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario242Wheel0[] = "__OTR__mario_kart/kart_242_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario242Wheel1[] = "__OTR__mario_kart/kart_242_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario242Wheel2[] = "__OTR__mario_kart/kart_242_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario242Wheel3[] = "__OTR__mario_kart/kart_242_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario243Wheel0[] = "__OTR__mario_kart/kart_243_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario243Wheel1[] = "__OTR__mario_kart/kart_243_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario243Wheel2[] = "__OTR__mario_kart/kart_243_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario243Wheel3[] = "__OTR__mario_kart/kart_243_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario244Wheel0[] = "__OTR__mario_kart/kart_244_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario244Wheel1[] = "__OTR__mario_kart/kart_244_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario244Wheel2[] = "__OTR__mario_kart/kart_244_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario244Wheel3[] = "__OTR__mario_kart/kart_244_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario245Wheel0[] = "__OTR__mario_kart/kart_245_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario245Wheel1[] = "__OTR__mario_kart/kart_245_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario245Wheel2[] = "__OTR__mario_kart/kart_245_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario245Wheel3[] = "__OTR__mario_kart/kart_245_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario246Wheel0[] = "__OTR__mario_kart/kart_246_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario246Wheel1[] = "__OTR__mario_kart/kart_246_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario246Wheel2[] = "__OTR__mario_kart/kart_246_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario246Wheel3[] = "__OTR__mario_kart/kart_246_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario247Wheel0[] = "__OTR__mario_kart/kart_247_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario247Wheel1[] = "__OTR__mario_kart/kart_247_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario247Wheel2[] = "__OTR__mario_kart/kart_247_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario247Wheel3[] = "__OTR__mario_kart/kart_247_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario248Wheel0[] = "__OTR__mario_kart/kart_248_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario248Wheel1[] = "__OTR__mario_kart/kart_248_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario248Wheel2[] = "__OTR__mario_kart/kart_248_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario248Wheel3[] = "__OTR__mario_kart/kart_248_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario249Wheel0[] = "__OTR__mario_kart/kart_249_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario249Wheel1[] = "__OTR__mario_kart/kart_249_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario249Wheel2[] = "__OTR__mario_kart/kart_249_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario249Wheel3[] = "__OTR__mario_kart/kart_249_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario250Wheel0[] = "__OTR__mario_kart/kart_250_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario250Wheel1[] = "__OTR__mario_kart/kart_250_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario250Wheel2[] = "__OTR__mario_kart/kart_250_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario250Wheel3[] = "__OTR__mario_kart/kart_250_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario251Wheel0[] = "__OTR__mario_kart/kart_251_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario251Wheel1[] = "__OTR__mario_kart/kart_251_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario251Wheel2[] = "__OTR__mario_kart/kart_251_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario251Wheel3[] = "__OTR__mario_kart/kart_251_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario252Wheel0[] = "__OTR__mario_kart/kart_252_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario252Wheel1[] = "__OTR__mario_kart/kart_252_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario252Wheel2[] = "__OTR__mario_kart/kart_252_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario252Wheel3[] = "__OTR__mario_kart/kart_252_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario253Wheel0[] = "__OTR__mario_kart/kart_253_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario253Wheel1[] = "__OTR__mario_kart/kart_253_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario253Wheel2[] = "__OTR__mario_kart/kart_253_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario253Wheel3[] = "__OTR__mario_kart/kart_253_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario254Wheel0[] = "__OTR__mario_kart/kart_254_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario254Wheel1[] = "__OTR__mario_kart/kart_254_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario254Wheel2[] = "__OTR__mario_kart/kart_254_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario254Wheel3[] = "__OTR__mario_kart/kart_254_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario255Wheel0[] = "__OTR__mario_kart/kart_255_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario255Wheel1[] = "__OTR__mario_kart/kart_255_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario255Wheel2[] = "__OTR__mario_kart/kart_255_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario255Wheel3[] = "__OTR__mario_kart/kart_255_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario256Wheel0[] = "__OTR__mario_kart/kart_256_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario256Wheel1[] = "__OTR__mario_kart/kart_256_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario256Wheel2[] = "__OTR__mario_kart/kart_256_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario256Wheel3[] = "__OTR__mario_kart/kart_256_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario257Wheel0[] = "__OTR__mario_kart/kart_257_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario257Wheel1[] = "__OTR__mario_kart/kart_257_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario257Wheel2[] = "__OTR__mario_kart/kart_257_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario257Wheel3[] = "__OTR__mario_kart/kart_257_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario258Wheel0[] = "__OTR__mario_kart/kart_258_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario258Wheel1[] = "__OTR__mario_kart/kart_258_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario258Wheel2[] = "__OTR__mario_kart/kart_258_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario258Wheel3[] = "__OTR__mario_kart/kart_258_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario259Wheel0[] = "__OTR__mario_kart/kart_259_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario259Wheel1[] = "__OTR__mario_kart/kart_259_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario259Wheel2[] = "__OTR__mario_kart/kart_259_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario259Wheel3[] = "__OTR__mario_kart/kart_259_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario260Wheel0[] = "__OTR__mario_kart/kart_260_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario260Wheel1[] = "__OTR__mario_kart/kart_260_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario260Wheel2[] = "__OTR__mario_kart/kart_260_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario260Wheel3[] = "__OTR__mario_kart/kart_260_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario261Wheel0[] = "__OTR__mario_kart/kart_261_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario261Wheel1[] = "__OTR__mario_kart/kart_261_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario261Wheel2[] = "__OTR__mario_kart/kart_261_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario261Wheel3[] = "__OTR__mario_kart/kart_261_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario262Wheel0[] = "__OTR__mario_kart/kart_262_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario262Wheel1[] = "__OTR__mario_kart/kart_262_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario262Wheel2[] = "__OTR__mario_kart/kart_262_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario262Wheel3[] = "__OTR__mario_kart/kart_262_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario263Wheel0[] = "__OTR__mario_kart/kart_263_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario263Wheel1[] = "__OTR__mario_kart/kart_263_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario263Wheel2[] = "__OTR__mario_kart/kart_263_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario263Wheel3[] = "__OTR__mario_kart/kart_263_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario264Wheel0[] = "__OTR__mario_kart/kart_264_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario264Wheel1[] = "__OTR__mario_kart/kart_264_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario264Wheel2[] = "__OTR__mario_kart/kart_264_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario264Wheel3[] = "__OTR__mario_kart/kart_264_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario265Wheel0[] = "__OTR__mario_kart/kart_265_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario265Wheel1[] = "__OTR__mario_kart/kart_265_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario265Wheel2[] = "__OTR__mario_kart/kart_265_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario265Wheel3[] = "__OTR__mario_kart/kart_265_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario266Wheel0[] = "__OTR__mario_kart/kart_266_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario266Wheel1[] = "__OTR__mario_kart/kart_266_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario266Wheel2[] = "__OTR__mario_kart/kart_266_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario266Wheel3[] = "__OTR__mario_kart/kart_266_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario267Wheel0[] = "__OTR__mario_kart/kart_267_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario267Wheel1[] = "__OTR__mario_kart/kart_267_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario267Wheel2[] = "__OTR__mario_kart/kart_267_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario267Wheel3[] = "__OTR__mario_kart/kart_267_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario268Wheel0[] = "__OTR__mario_kart/kart_268_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario268Wheel1[] = "__OTR__mario_kart/kart_268_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario268Wheel2[] = "__OTR__mario_kart/kart_268_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario268Wheel3[] = "__OTR__mario_kart/kart_268_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario269Wheel0[] = "__OTR__mario_kart/kart_269_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario269Wheel1[] = "__OTR__mario_kart/kart_269_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario269Wheel2[] = "__OTR__mario_kart/kart_269_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario269Wheel3[] = "__OTR__mario_kart/kart_269_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario270Wheel0[] = "__OTR__mario_kart/kart_270_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario270Wheel1[] = "__OTR__mario_kart/kart_270_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario270Wheel2[] = "__OTR__mario_kart/kart_270_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario270Wheel3[] = "__OTR__mario_kart/kart_270_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario271Wheel0[] = "__OTR__mario_kart/kart_271_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario271Wheel1[] = "__OTR__mario_kart/kart_271_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario271Wheel2[] = "__OTR__mario_kart/kart_271_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario271Wheel3[] = "__OTR__mario_kart/kart_271_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario272Wheel0[] = "__OTR__mario_kart/kart_272_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario272Wheel1[] = "__OTR__mario_kart/kart_272_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario272Wheel2[] = "__OTR__mario_kart/kart_272_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario272Wheel3[] = "__OTR__mario_kart/kart_272_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario273Wheel0[] = "__OTR__mario_kart/kart_273_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario273Wheel1[] = "__OTR__mario_kart/kart_273_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario273Wheel2[] = "__OTR__mario_kart/kart_273_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario273Wheel3[] = "__OTR__mario_kart/kart_273_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario274Wheel0[] = "__OTR__mario_kart/kart_274_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario274Wheel1[] = "__OTR__mario_kart/kart_274_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario274Wheel2[] = "__OTR__mario_kart/kart_274_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario274Wheel3[] = "__OTR__mario_kart/kart_274_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario275Wheel0[] = "__OTR__mario_kart/kart_275_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario275Wheel1[] = "__OTR__mario_kart/kart_275_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario275Wheel2[] = "__OTR__mario_kart/kart_275_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario275Wheel3[] = "__OTR__mario_kart/kart_275_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario276Wheel0[] = "__OTR__mario_kart/kart_276_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario276Wheel1[] = "__OTR__mario_kart/kart_276_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario276Wheel2[] = "__OTR__mario_kart/kart_276_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario276Wheel3[] = "__OTR__mario_kart/kart_276_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario277Wheel0[] = "__OTR__mario_kart/kart_277_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario277Wheel1[] = "__OTR__mario_kart/kart_277_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario277Wheel2[] = "__OTR__mario_kart/kart_277_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario277Wheel3[] = "__OTR__mario_kart/kart_277_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario278Wheel0[] = "__OTR__mario_kart/kart_278_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario278Wheel1[] = "__OTR__mario_kart/kart_278_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario278Wheel2[] = "__OTR__mario_kart/kart_278_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario278Wheel3[] = "__OTR__mario_kart/kart_278_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario279Wheel0[] = "__OTR__mario_kart/kart_279_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario279Wheel1[] = "__OTR__mario_kart/kart_279_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario279Wheel2[] = "__OTR__mario_kart/kart_279_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario279Wheel3[] = "__OTR__mario_kart/kart_279_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario280Wheel0[] = "__OTR__mario_kart/kart_280_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario280Wheel1[] = "__OTR__mario_kart/kart_280_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario280Wheel2[] = "__OTR__mario_kart/kart_280_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario280Wheel3[] = "__OTR__mario_kart/kart_280_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario281Wheel0[] = "__OTR__mario_kart/kart_281_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario281Wheel1[] = "__OTR__mario_kart/kart_281_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario281Wheel2[] = "__OTR__mario_kart/kart_281_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario281Wheel3[] = "__OTR__mario_kart/kart_281_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario282Wheel0[] = "__OTR__mario_kart/kart_282_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario282Wheel1[] = "__OTR__mario_kart/kart_282_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario282Wheel2[] = "__OTR__mario_kart/kart_282_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario282Wheel3[] = "__OTR__mario_kart/kart_282_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario283Wheel0[] = "__OTR__mario_kart/kart_283_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario283Wheel1[] = "__OTR__mario_kart/kart_283_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario283Wheel2[] = "__OTR__mario_kart/kart_283_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario283Wheel3[] = "__OTR__mario_kart/kart_283_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario284Wheel0[] = "__OTR__mario_kart/kart_284_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario284Wheel1[] = "__OTR__mario_kart/kart_284_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario284Wheel2[] = "__OTR__mario_kart/kart_284_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario284Wheel3[] = "__OTR__mario_kart/kart_284_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario285Wheel0[] = "__OTR__mario_kart/kart_285_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario285Wheel1[] = "__OTR__mario_kart/kart_285_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario285Wheel2[] = "__OTR__mario_kart/kart_285_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario285Wheel3[] = "__OTR__mario_kart/kart_285_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario286Wheel0[] = "__OTR__mario_kart/kart_286_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario286Wheel1[] = "__OTR__mario_kart/kart_286_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario286Wheel2[] = "__OTR__mario_kart/kart_286_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario286Wheel3[] = "__OTR__mario_kart/kart_286_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario287Wheel0[] = "__OTR__mario_kart/kart_287_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario287Wheel1[] = "__OTR__mario_kart/kart_287_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario287Wheel2[] = "__OTR__mario_kart/kart_287_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario287Wheel3[] = "__OTR__mario_kart/kart_287_wheel_3"; - -static const ALIGN_ASSET(2) char gKartMario288Wheel0[] = "__OTR__mario_kart/kart_288_wheel_0"; - -static const ALIGN_ASSET(2) char gKartMario288Wheel1[] = "__OTR__mario_kart/kart_288_wheel_1"; - -static const ALIGN_ASSET(2) char gKartMario288Wheel2[] = "__OTR__mario_kart/kart_288_wheel_2"; - -static const ALIGN_ASSET(2) char gKartMario288Wheel3[] = "__OTR__mario_kart/kart_288_wheel_3"; - -static const char* mario_kart_wheels[] = { - gKartMario000Wheel0, - gKartMario000Wheel1, - gKartMario000Wheel2, - gKartMario000Wheel3, - gKartMario001Wheel0, - gKartMario001Wheel1, - gKartMario001Wheel2, - gKartMario001Wheel3, - gKartMario002Wheel0, - gKartMario002Wheel1, - gKartMario002Wheel2, - gKartMario002Wheel3, - gKartMario003Wheel0, - gKartMario003Wheel1, - gKartMario003Wheel2, - gKartMario003Wheel3, - gKartMario004Wheel0, - gKartMario004Wheel1, - gKartMario004Wheel2, - gKartMario004Wheel3, - gKartMario005Wheel0, - gKartMario005Wheel1, - gKartMario005Wheel2, - gKartMario005Wheel3, - gKartMario006Wheel0, - gKartMario006Wheel1, - gKartMario006Wheel2, - gKartMario006Wheel3, - gKartMario007Wheel0, - gKartMario007Wheel1, - gKartMario007Wheel2, - gKartMario007Wheel3, - gKartMario008Wheel0, - gKartMario008Wheel1, - gKartMario008Wheel2, - gKartMario008Wheel3, - gKartMario009Wheel0, - gKartMario009Wheel1, - gKartMario009Wheel2, - gKartMario009Wheel3, - gKartMario010Wheel0, - gKartMario010Wheel1, - gKartMario010Wheel2, - gKartMario010Wheel3, - gKartMario011Wheel0, - gKartMario011Wheel1, - gKartMario011Wheel2, - gKartMario011Wheel3, - gKartMario012Wheel0, - gKartMario012Wheel1, - gKartMario012Wheel2, - gKartMario012Wheel3, - gKartMario013Wheel0, - gKartMario013Wheel1, - gKartMario013Wheel2, - gKartMario013Wheel3, - gKartMario014Wheel0, - gKartMario014Wheel1, - gKartMario014Wheel2, - gKartMario014Wheel3, - gKartMario015Wheel0, - gKartMario015Wheel1, - gKartMario015Wheel2, - gKartMario015Wheel3, - gKartMario016Wheel0, - gKartMario016Wheel1, - gKartMario016Wheel2, - gKartMario016Wheel3, - gKartMario017Wheel0, - gKartMario017Wheel1, - gKartMario017Wheel2, - gKartMario017Wheel3, - gKartMario018Wheel0, - gKartMario018Wheel1, - gKartMario018Wheel2, - gKartMario018Wheel3, - gKartMario019Wheel0, - gKartMario019Wheel1, - gKartMario019Wheel2, - gKartMario019Wheel3, - gKartMario020Wheel0, - gKartMario020Wheel1, - gKartMario020Wheel2, - gKartMario020Wheel3, - gKartMario021Wheel0, - gKartMario021Wheel1, - gKartMario021Wheel2, - gKartMario021Wheel3, - gKartMario022Wheel0, - gKartMario022Wheel1, - gKartMario022Wheel2, - gKartMario022Wheel3, - gKartMario023Wheel0, - gKartMario023Wheel1, - gKartMario023Wheel2, - gKartMario023Wheel3, - gKartMario024Wheel0, - gKartMario024Wheel1, - gKartMario024Wheel2, - gKartMario024Wheel3, - gKartMario025Wheel0, - gKartMario025Wheel1, - gKartMario025Wheel2, - gKartMario025Wheel3, - gKartMario026Wheel0, - gKartMario026Wheel1, - gKartMario026Wheel2, - gKartMario026Wheel3, - gKartMario027Wheel0, - gKartMario027Wheel1, - gKartMario027Wheel2, - gKartMario027Wheel3, - gKartMario028Wheel0, - gKartMario028Wheel1, - gKartMario028Wheel2, - gKartMario028Wheel3, - gKartMario029Wheel0, - gKartMario029Wheel1, - gKartMario029Wheel2, - gKartMario029Wheel3, - gKartMario030Wheel0, - gKartMario030Wheel1, - gKartMario030Wheel2, - gKartMario030Wheel3, - gKartMario031Wheel0, - gKartMario031Wheel1, - gKartMario031Wheel2, - gKartMario031Wheel3, - gKartMario032Wheel0, - gKartMario032Wheel1, - gKartMario032Wheel2, - gKartMario032Wheel3, - gKartMario033Wheel0, - gKartMario033Wheel1, - gKartMario033Wheel2, - gKartMario033Wheel3, - gKartMario034Wheel0, - gKartMario034Wheel1, - gKartMario034Wheel2, - gKartMario034Wheel3, - gKartMario035Wheel0, - gKartMario035Wheel1, - gKartMario035Wheel2, - gKartMario035Wheel3, - gKartMario036Wheel0, - gKartMario036Wheel1, - gKartMario036Wheel2, - gKartMario036Wheel3, - gKartMario037Wheel0, - gKartMario037Wheel1, - gKartMario037Wheel2, - gKartMario037Wheel3, - gKartMario038Wheel0, - gKartMario038Wheel1, - gKartMario038Wheel2, - gKartMario038Wheel3, - gKartMario039Wheel0, - gKartMario039Wheel1, - gKartMario039Wheel2, - gKartMario039Wheel3, - gKartMario040Wheel0, - gKartMario040Wheel1, - gKartMario040Wheel2, - gKartMario040Wheel3, - gKartMario041Wheel0, - gKartMario041Wheel1, - gKartMario041Wheel2, - gKartMario041Wheel3, - gKartMario042Wheel0, - gKartMario042Wheel1, - gKartMario042Wheel2, - gKartMario042Wheel3, - gKartMario043Wheel0, - gKartMario043Wheel1, - gKartMario043Wheel2, - gKartMario043Wheel3, - gKartMario044Wheel0, - gKartMario044Wheel1, - gKartMario044Wheel2, - gKartMario044Wheel3, - gKartMario045Wheel0, - gKartMario045Wheel1, - gKartMario045Wheel2, - gKartMario045Wheel3, - gKartMario046Wheel0, - gKartMario046Wheel1, - gKartMario046Wheel2, - gKartMario046Wheel3, - gKartMario047Wheel0, - gKartMario047Wheel1, - gKartMario047Wheel2, - gKartMario047Wheel3, - gKartMario048Wheel0, - gKartMario048Wheel1, - gKartMario048Wheel2, - gKartMario048Wheel3, - gKartMario049Wheel0, - gKartMario049Wheel1, - gKartMario049Wheel2, - gKartMario049Wheel3, - gKartMario050Wheel0, - gKartMario050Wheel1, - gKartMario050Wheel2, - gKartMario050Wheel3, - gKartMario051Wheel0, - gKartMario051Wheel1, - gKartMario051Wheel2, - gKartMario051Wheel3, - gKartMario052Wheel0, - gKartMario052Wheel1, - gKartMario052Wheel2, - gKartMario052Wheel3, - gKartMario053Wheel0, - gKartMario053Wheel1, - gKartMario053Wheel2, - gKartMario053Wheel3, - gKartMario054Wheel0, - gKartMario054Wheel1, - gKartMario054Wheel2, - gKartMario054Wheel3, - gKartMario055Wheel0, - gKartMario055Wheel1, - gKartMario055Wheel2, - gKartMario055Wheel3, - gKartMario056Wheel0, - gKartMario056Wheel1, - gKartMario056Wheel2, - gKartMario056Wheel3, - gKartMario057Wheel0, - gKartMario057Wheel1, - gKartMario057Wheel2, - gKartMario057Wheel3, - gKartMario058Wheel0, - gKartMario058Wheel1, - gKartMario058Wheel2, - gKartMario058Wheel3, - gKartMario059Wheel0, - gKartMario059Wheel1, - gKartMario059Wheel2, - gKartMario059Wheel3, - gKartMario060Wheel0, - gKartMario060Wheel1, - gKartMario060Wheel2, - gKartMario060Wheel3, - gKartMario061Wheel0, - gKartMario061Wheel1, - gKartMario061Wheel2, - gKartMario061Wheel3, - gKartMario062Wheel0, - gKartMario062Wheel1, - gKartMario062Wheel2, - gKartMario062Wheel3, - gKartMario063Wheel0, - gKartMario063Wheel1, - gKartMario063Wheel2, - gKartMario063Wheel3, - gKartMario064Wheel0, - gKartMario064Wheel1, - gKartMario064Wheel2, - gKartMario064Wheel3, - gKartMario065Wheel0, - gKartMario065Wheel1, - gKartMario065Wheel2, - gKartMario065Wheel3, - gKartMario066Wheel0, - gKartMario066Wheel1, - gKartMario066Wheel2, - gKartMario066Wheel3, - gKartMario067Wheel0, - gKartMario067Wheel1, - gKartMario067Wheel2, - gKartMario067Wheel3, - gKartMario068Wheel0, - gKartMario068Wheel1, - gKartMario068Wheel2, - gKartMario068Wheel3, - gKartMario069Wheel0, - gKartMario069Wheel1, - gKartMario069Wheel2, - gKartMario069Wheel3, - gKartMario070Wheel0, - gKartMario070Wheel1, - gKartMario070Wheel2, - gKartMario070Wheel3, - gKartMario071Wheel0, - gKartMario071Wheel1, - gKartMario071Wheel2, - gKartMario071Wheel3, - gKartMario072Wheel0, - gKartMario072Wheel1, - gKartMario072Wheel2, - gKartMario072Wheel3, - gKartMario073Wheel0, - gKartMario073Wheel1, - gKartMario073Wheel2, - gKartMario073Wheel3, - gKartMario074Wheel0, - gKartMario074Wheel1, - gKartMario074Wheel2, - gKartMario074Wheel3, - gKartMario075Wheel0, - gKartMario075Wheel1, - gKartMario075Wheel2, - gKartMario075Wheel3, - gKartMario076Wheel0, - gKartMario076Wheel1, - gKartMario076Wheel2, - gKartMario076Wheel3, - gKartMario077Wheel0, - gKartMario077Wheel1, - gKartMario077Wheel2, - gKartMario077Wheel3, - gKartMario078Wheel0, - gKartMario078Wheel1, - gKartMario078Wheel2, - gKartMario078Wheel3, - gKartMario079Wheel0, - gKartMario079Wheel1, - gKartMario079Wheel2, - gKartMario079Wheel3, - gKartMario080Wheel0, - gKartMario080Wheel1, - gKartMario080Wheel2, - gKartMario080Wheel3, - gKartMario081Wheel0, - gKartMario081Wheel1, - gKartMario081Wheel2, - gKartMario081Wheel3, - gKartMario082Wheel0, - gKartMario082Wheel1, - gKartMario082Wheel2, - gKartMario082Wheel3, - gKartMario083Wheel0, - gKartMario083Wheel1, - gKartMario083Wheel2, - gKartMario083Wheel3, - gKartMario084Wheel0, - gKartMario084Wheel1, - gKartMario084Wheel2, - gKartMario084Wheel3, - gKartMario085Wheel0, - gKartMario085Wheel1, - gKartMario085Wheel2, - gKartMario085Wheel3, - gKartMario086Wheel0, - gKartMario086Wheel1, - gKartMario086Wheel2, - gKartMario086Wheel3, - gKartMario087Wheel0, - gKartMario087Wheel1, - gKartMario087Wheel2, - gKartMario087Wheel3, - gKartMario088Wheel0, - gKartMario088Wheel1, - gKartMario088Wheel2, - gKartMario088Wheel3, - gKartMario089Wheel0, - gKartMario089Wheel1, - gKartMario089Wheel2, - gKartMario089Wheel3, - gKartMario090Wheel0, - gKartMario090Wheel1, - gKartMario090Wheel2, - gKartMario090Wheel3, - gKartMario091Wheel0, - gKartMario091Wheel1, - gKartMario091Wheel2, - gKartMario091Wheel3, - gKartMario092Wheel0, - gKartMario092Wheel1, - gKartMario092Wheel2, - gKartMario092Wheel3, - gKartMario093Wheel0, - gKartMario093Wheel1, - gKartMario093Wheel2, - gKartMario093Wheel3, - gKartMario094Wheel0, - gKartMario094Wheel1, - gKartMario094Wheel2, - gKartMario094Wheel3, - gKartMario095Wheel0, - gKartMario095Wheel1, - gKartMario095Wheel2, - gKartMario095Wheel3, - gKartMario096Wheel0, - gKartMario096Wheel1, - gKartMario096Wheel2, - gKartMario096Wheel3, - gKartMario097Wheel0, - gKartMario097Wheel1, - gKartMario097Wheel2, - gKartMario097Wheel3, - gKartMario098Wheel0, - gKartMario098Wheel1, - gKartMario098Wheel2, - gKartMario098Wheel3, - gKartMario099Wheel0, - gKartMario099Wheel1, - gKartMario099Wheel2, - gKartMario099Wheel3, - gKartMario100Wheel0, - gKartMario100Wheel1, - gKartMario100Wheel2, - gKartMario100Wheel3, - gKartMario101Wheel0, - gKartMario101Wheel1, - gKartMario101Wheel2, - gKartMario101Wheel3, - gKartMario102Wheel0, - gKartMario102Wheel1, - gKartMario102Wheel2, - gKartMario102Wheel3, - gKartMario103Wheel0, - gKartMario103Wheel1, - gKartMario103Wheel2, - gKartMario103Wheel3, - gKartMario104Wheel0, - gKartMario104Wheel1, - gKartMario104Wheel2, - gKartMario104Wheel3, - gKartMario105Wheel0, - gKartMario105Wheel1, - gKartMario105Wheel2, - gKartMario105Wheel3, - gKartMario106Wheel0, - gKartMario106Wheel1, - gKartMario106Wheel2, - gKartMario106Wheel3, - gKartMario107Wheel0, - gKartMario107Wheel1, - gKartMario107Wheel2, - gKartMario107Wheel3, - gKartMario108Wheel0, - gKartMario108Wheel1, - gKartMario108Wheel2, - gKartMario108Wheel3, - gKartMario109Wheel0, - gKartMario109Wheel1, - gKartMario109Wheel2, - gKartMario109Wheel3, - gKartMario110Wheel0, - gKartMario110Wheel1, - gKartMario110Wheel2, - gKartMario110Wheel3, - gKartMario111Wheel0, - gKartMario111Wheel1, - gKartMario111Wheel2, - gKartMario111Wheel3, - gKartMario112Wheel0, - gKartMario112Wheel1, - gKartMario112Wheel2, - gKartMario112Wheel3, - gKartMario113Wheel0, - gKartMario113Wheel1, - gKartMario113Wheel2, - gKartMario113Wheel3, - gKartMario114Wheel0, - gKartMario114Wheel1, - gKartMario114Wheel2, - gKartMario114Wheel3, - gKartMario115Wheel0, - gKartMario115Wheel1, - gKartMario115Wheel2, - gKartMario115Wheel3, - gKartMario116Wheel0, - gKartMario116Wheel1, - gKartMario116Wheel2, - gKartMario116Wheel3, - gKartMario117Wheel0, - gKartMario117Wheel1, - gKartMario117Wheel2, - gKartMario117Wheel3, - gKartMario118Wheel0, - gKartMario118Wheel1, - gKartMario118Wheel2, - gKartMario118Wheel3, - gKartMario119Wheel0, - gKartMario119Wheel1, - gKartMario119Wheel2, - gKartMario119Wheel3, - gKartMario120Wheel0, - gKartMario120Wheel1, - gKartMario120Wheel2, - gKartMario120Wheel3, - gKartMario121Wheel0, - gKartMario121Wheel1, - gKartMario121Wheel2, - gKartMario121Wheel3, - gKartMario122Wheel0, - gKartMario122Wheel1, - gKartMario122Wheel2, - gKartMario122Wheel3, - gKartMario123Wheel0, - gKartMario123Wheel1, - gKartMario123Wheel2, - gKartMario123Wheel3, - gKartMario124Wheel0, - gKartMario124Wheel1, - gKartMario124Wheel2, - gKartMario124Wheel3, - gKartMario125Wheel0, - gKartMario125Wheel1, - gKartMario125Wheel2, - gKartMario125Wheel3, - gKartMario126Wheel0, - gKartMario126Wheel1, - gKartMario126Wheel2, - gKartMario126Wheel3, - gKartMario127Wheel0, - gKartMario127Wheel1, - gKartMario127Wheel2, - gKartMario127Wheel3, - gKartMario128Wheel0, - gKartMario128Wheel1, - gKartMario128Wheel2, - gKartMario128Wheel3, - gKartMario129Wheel0, - gKartMario129Wheel1, - gKartMario129Wheel2, - gKartMario129Wheel3, - gKartMario130Wheel0, - gKartMario130Wheel1, - gKartMario130Wheel2, - gKartMario130Wheel3, - gKartMario131Wheel0, - gKartMario131Wheel1, - gKartMario131Wheel2, - gKartMario131Wheel3, - gKartMario132Wheel0, - gKartMario132Wheel1, - gKartMario132Wheel2, - gKartMario132Wheel3, - gKartMario133Wheel0, - gKartMario133Wheel1, - gKartMario133Wheel2, - gKartMario133Wheel3, - gKartMario134Wheel0, - gKartMario134Wheel1, - gKartMario134Wheel2, - gKartMario134Wheel3, - gKartMario135Wheel0, - gKartMario135Wheel1, - gKartMario135Wheel2, - gKartMario135Wheel3, - gKartMario136Wheel0, - gKartMario136Wheel1, - gKartMario136Wheel2, - gKartMario136Wheel3, - gKartMario137Wheel0, - gKartMario137Wheel1, - gKartMario137Wheel2, - gKartMario137Wheel3, - gKartMario138Wheel0, - gKartMario138Wheel1, - gKartMario138Wheel2, - gKartMario138Wheel3, - gKartMario139Wheel0, - gKartMario139Wheel1, - gKartMario139Wheel2, - gKartMario139Wheel3, - gKartMario140Wheel0, - gKartMario140Wheel1, - gKartMario140Wheel2, - gKartMario140Wheel3, - gKartMario141Wheel0, - gKartMario141Wheel1, - gKartMario141Wheel2, - gKartMario141Wheel3, - gKartMario142Wheel0, - gKartMario142Wheel1, - gKartMario142Wheel2, - gKartMario142Wheel3, - gKartMario143Wheel0, - gKartMario143Wheel1, - gKartMario143Wheel2, - gKartMario143Wheel3, - gKartMario144Wheel0, - gKartMario144Wheel1, - gKartMario144Wheel2, - gKartMario144Wheel3, - gKartMario145Wheel0, - gKartMario145Wheel1, - gKartMario145Wheel2, - gKartMario145Wheel3, - gKartMario146Wheel0, - gKartMario146Wheel1, - gKartMario146Wheel2, - gKartMario146Wheel3, - gKartMario147Wheel0, - gKartMario147Wheel1, - gKartMario147Wheel2, - gKartMario147Wheel3, - gKartMario148Wheel0, - gKartMario148Wheel1, - gKartMario148Wheel2, - gKartMario148Wheel3, - gKartMario149Wheel0, - gKartMario149Wheel1, - gKartMario149Wheel2, - gKartMario149Wheel3, - gKartMario150Wheel0, - gKartMario150Wheel1, - gKartMario150Wheel2, - gKartMario150Wheel3, - gKartMario151Wheel0, - gKartMario151Wheel1, - gKartMario151Wheel2, - gKartMario151Wheel3, - gKartMario152Wheel0, - gKartMario152Wheel1, - gKartMario152Wheel2, - gKartMario152Wheel3, - gKartMario153Wheel0, - gKartMario153Wheel1, - gKartMario153Wheel2, - gKartMario153Wheel3, - gKartMario154Wheel0, - gKartMario154Wheel1, - gKartMario154Wheel2, - gKartMario154Wheel3, - gKartMario155Wheel0, - gKartMario155Wheel1, - gKartMario155Wheel2, - gKartMario155Wheel3, - gKartMario156Wheel0, - gKartMario156Wheel1, - gKartMario156Wheel2, - gKartMario156Wheel3, - gKartMario157Wheel0, - gKartMario157Wheel1, - gKartMario157Wheel2, - gKartMario157Wheel3, - gKartMario158Wheel0, - gKartMario158Wheel1, - gKartMario158Wheel2, - gKartMario158Wheel3, - gKartMario159Wheel0, - gKartMario159Wheel1, - gKartMario159Wheel2, - gKartMario159Wheel3, - gKartMario160Wheel0, - gKartMario160Wheel1, - gKartMario160Wheel2, - gKartMario160Wheel3, - gKartMario161Wheel0, - gKartMario161Wheel1, - gKartMario161Wheel2, - gKartMario161Wheel3, - gKartMario162Wheel0, - gKartMario162Wheel1, - gKartMario162Wheel2, - gKartMario162Wheel3, - gKartMario163Wheel0, - gKartMario163Wheel1, - gKartMario163Wheel2, - gKartMario163Wheel3, - gKartMario164Wheel0, - gKartMario164Wheel1, - gKartMario164Wheel2, - gKartMario164Wheel3, - gKartMario165Wheel0, - gKartMario165Wheel1, - gKartMario165Wheel2, - gKartMario165Wheel3, - gKartMario166Wheel0, - gKartMario166Wheel1, - gKartMario166Wheel2, - gKartMario166Wheel3, - gKartMario167Wheel0, - gKartMario167Wheel1, - gKartMario167Wheel2, - gKartMario167Wheel3, - gKartMario168Wheel0, - gKartMario168Wheel1, - gKartMario168Wheel2, - gKartMario168Wheel3, - gKartMario169Wheel0, - gKartMario169Wheel1, - gKartMario169Wheel2, - gKartMario169Wheel3, - gKartMario170Wheel0, - gKartMario170Wheel1, - gKartMario170Wheel2, - gKartMario170Wheel3, - gKartMario171Wheel0, - gKartMario171Wheel1, - gKartMario171Wheel2, - gKartMario171Wheel3, - gKartMario172Wheel0, - gKartMario172Wheel1, - gKartMario172Wheel2, - gKartMario172Wheel3, - gKartMario173Wheel0, - gKartMario173Wheel1, - gKartMario173Wheel2, - gKartMario173Wheel3, - gKartMario174Wheel0, - gKartMario174Wheel1, - gKartMario174Wheel2, - gKartMario174Wheel3, - gKartMario175Wheel0, - gKartMario175Wheel1, - gKartMario175Wheel2, - gKartMario175Wheel3, - gKartMario176Wheel0, - gKartMario176Wheel1, - gKartMario176Wheel2, - gKartMario176Wheel3, - gKartMario177Wheel0, - gKartMario177Wheel1, - gKartMario177Wheel2, - gKartMario177Wheel3, - gKartMario178Wheel0, - gKartMario178Wheel1, - gKartMario178Wheel2, - gKartMario178Wheel3, - gKartMario179Wheel0, - gKartMario179Wheel1, - gKartMario179Wheel2, - gKartMario179Wheel3, - gKartMario180Wheel0, - gKartMario180Wheel1, - gKartMario180Wheel2, - gKartMario180Wheel3, - gKartMario181Wheel0, - gKartMario181Wheel1, - gKartMario181Wheel2, - gKartMario181Wheel3, - gKartMario182Wheel0, - gKartMario182Wheel1, - gKartMario182Wheel2, - gKartMario182Wheel3, - gKartMario183Wheel0, - gKartMario183Wheel1, - gKartMario183Wheel2, - gKartMario183Wheel3, - gKartMario184Wheel0, - gKartMario184Wheel1, - gKartMario184Wheel2, - gKartMario184Wheel3, - gKartMario185Wheel0, - gKartMario185Wheel1, - gKartMario185Wheel2, - gKartMario185Wheel3, - gKartMario186Wheel0, - gKartMario186Wheel1, - gKartMario186Wheel2, - gKartMario186Wheel3, - gKartMario187Wheel0, - gKartMario187Wheel1, - gKartMario187Wheel2, - gKartMario187Wheel3, - gKartMario188Wheel0, - gKartMario188Wheel1, - gKartMario188Wheel2, - gKartMario188Wheel3, - gKartMario189Wheel0, - gKartMario189Wheel1, - gKartMario189Wheel2, - gKartMario189Wheel3, - gKartMario190Wheel0, - gKartMario190Wheel1, - gKartMario190Wheel2, - gKartMario190Wheel3, - gKartMario191Wheel0, - gKartMario191Wheel1, - gKartMario191Wheel2, - gKartMario191Wheel3, - gKartMario192Wheel0, - gKartMario192Wheel1, - gKartMario192Wheel2, - gKartMario192Wheel3, - gKartMario193Wheel0, - gKartMario193Wheel1, - gKartMario193Wheel2, - gKartMario193Wheel3, - gKartMario194Wheel0, - gKartMario194Wheel1, - gKartMario194Wheel2, - gKartMario194Wheel3, - gKartMario195Wheel0, - gKartMario195Wheel1, - gKartMario195Wheel2, - gKartMario195Wheel3, - gKartMario196Wheel0, - gKartMario196Wheel1, - gKartMario196Wheel2, - gKartMario196Wheel3, - gKartMario197Wheel0, - gKartMario197Wheel1, - gKartMario197Wheel2, - gKartMario197Wheel3, - gKartMario198Wheel0, - gKartMario198Wheel1, - gKartMario198Wheel2, - gKartMario198Wheel3, - gKartMario199Wheel0, - gKartMario199Wheel1, - gKartMario199Wheel2, - gKartMario199Wheel3, - gKartMario200Wheel0, - gKartMario200Wheel1, - gKartMario200Wheel2, - gKartMario200Wheel3, - gKartMario201Wheel0, - gKartMario201Wheel1, - gKartMario201Wheel2, - gKartMario201Wheel3, - gKartMario202Wheel0, - gKartMario202Wheel1, - gKartMario202Wheel2, - gKartMario202Wheel3, - gKartMario203Wheel0, - gKartMario203Wheel1, - gKartMario203Wheel2, - gKartMario203Wheel3, - gKartMario204Wheel0, - gKartMario204Wheel1, - gKartMario204Wheel2, - gKartMario204Wheel3, - gKartMario205Wheel0, - gKartMario205Wheel1, - gKartMario205Wheel2, - gKartMario205Wheel3, - gKartMario206Wheel0, - gKartMario206Wheel1, - gKartMario206Wheel2, - gKartMario206Wheel3, - gKartMario207Wheel0, - gKartMario207Wheel1, - gKartMario207Wheel2, - gKartMario207Wheel3, - gKartMario208Wheel0, - gKartMario208Wheel1, - gKartMario208Wheel2, - gKartMario208Wheel3, - gKartMario209Wheel0, - gKartMario209Wheel1, - gKartMario209Wheel2, - gKartMario209Wheel3, - gKartMario210Wheel0, - gKartMario210Wheel1, - gKartMario210Wheel2, - gKartMario210Wheel3, - gKartMario211Wheel0, - gKartMario211Wheel1, - gKartMario211Wheel2, - gKartMario211Wheel3, - gKartMario212Wheel0, - gKartMario212Wheel1, - gKartMario212Wheel2, - gKartMario212Wheel3, - gKartMario213Wheel0, - gKartMario213Wheel1, - gKartMario213Wheel2, - gKartMario213Wheel3, - gKartMario214Wheel0, - gKartMario214Wheel1, - gKartMario214Wheel2, - gKartMario214Wheel3, - gKartMario215Wheel0, - gKartMario215Wheel1, - gKartMario215Wheel2, - gKartMario215Wheel3, - gKartMario216Wheel0, - gKartMario216Wheel1, - gKartMario216Wheel2, - gKartMario216Wheel3, - gKartMario217Wheel0, - gKartMario217Wheel1, - gKartMario217Wheel2, - gKartMario217Wheel3, - gKartMario218Wheel0, - gKartMario218Wheel1, - gKartMario218Wheel2, - gKartMario218Wheel3, - gKartMario219Wheel0, - gKartMario219Wheel1, - gKartMario219Wheel2, - gKartMario219Wheel3, - gKartMario220Wheel0, - gKartMario220Wheel1, - gKartMario220Wheel2, - gKartMario220Wheel3, - gKartMario221Wheel0, - gKartMario221Wheel1, - gKartMario221Wheel2, - gKartMario221Wheel3, - gKartMario222Wheel0, - gKartMario222Wheel1, - gKartMario222Wheel2, - gKartMario222Wheel3, - gKartMario223Wheel0, - gKartMario223Wheel1, - gKartMario223Wheel2, - gKartMario223Wheel3, - gKartMario224Wheel0, - gKartMario224Wheel1, - gKartMario224Wheel2, - gKartMario224Wheel3, - gKartMario225Wheel0, - gKartMario225Wheel1, - gKartMario225Wheel2, - gKartMario225Wheel3, - gKartMario226Wheel0, - gKartMario226Wheel1, - gKartMario226Wheel2, - gKartMario226Wheel3, - gKartMario227Wheel0, - gKartMario227Wheel1, - gKartMario227Wheel2, - gKartMario227Wheel3, - gKartMario228Wheel0, - gKartMario228Wheel1, - gKartMario228Wheel2, - gKartMario228Wheel3, - gKartMario229Wheel0, - gKartMario229Wheel1, - gKartMario229Wheel2, - gKartMario229Wheel3, - gKartMario230Wheel0, - gKartMario230Wheel1, - gKartMario230Wheel2, - gKartMario230Wheel3, - gKartMario231Wheel0, - gKartMario231Wheel1, - gKartMario231Wheel2, - gKartMario231Wheel3, - gKartMario232Wheel0, - gKartMario232Wheel1, - gKartMario232Wheel2, - gKartMario232Wheel3, - gKartMario233Wheel0, - gKartMario233Wheel1, - gKartMario233Wheel2, - gKartMario233Wheel3, - gKartMario234Wheel0, - gKartMario234Wheel1, - gKartMario234Wheel2, - gKartMario234Wheel3, - gKartMario235Wheel0, - gKartMario235Wheel1, - gKartMario235Wheel2, - gKartMario235Wheel3, - gKartMario236Wheel0, - gKartMario236Wheel1, - gKartMario236Wheel2, - gKartMario236Wheel3, - gKartMario237Wheel0, - gKartMario237Wheel1, - gKartMario237Wheel2, - gKartMario237Wheel3, - gKartMario238Wheel0, - gKartMario238Wheel1, - gKartMario238Wheel2, - gKartMario238Wheel3, - gKartMario239Wheel0, - gKartMario239Wheel1, - gKartMario239Wheel2, - gKartMario239Wheel3, - gKartMario240Wheel0, - gKartMario240Wheel1, - gKartMario240Wheel2, - gKartMario240Wheel3, - gKartMario241Wheel0, - gKartMario241Wheel1, - gKartMario241Wheel2, - gKartMario241Wheel3, - gKartMario242Wheel0, - gKartMario242Wheel1, - gKartMario242Wheel2, - gKartMario242Wheel3, - gKartMario243Wheel0, - gKartMario243Wheel1, - gKartMario243Wheel2, - gKartMario243Wheel3, - gKartMario244Wheel0, - gKartMario244Wheel1, - gKartMario244Wheel2, - gKartMario244Wheel3, - gKartMario245Wheel0, - gKartMario245Wheel1, - gKartMario245Wheel2, - gKartMario245Wheel3, - gKartMario246Wheel0, - gKartMario246Wheel1, - gKartMario246Wheel2, - gKartMario246Wheel3, - gKartMario247Wheel0, - gKartMario247Wheel1, - gKartMario247Wheel2, - gKartMario247Wheel3, - gKartMario248Wheel0, - gKartMario248Wheel1, - gKartMario248Wheel2, - gKartMario248Wheel3, - gKartMario249Wheel0, - gKartMario249Wheel1, - gKartMario249Wheel2, - gKartMario249Wheel3, - gKartMario250Wheel0, - gKartMario250Wheel1, - gKartMario250Wheel2, - gKartMario250Wheel3, - gKartMario251Wheel0, - gKartMario251Wheel1, - gKartMario251Wheel2, - gKartMario251Wheel3, - gKartMario252Wheel0, - gKartMario252Wheel1, - gKartMario252Wheel2, - gKartMario252Wheel3, - gKartMario253Wheel0, - gKartMario253Wheel1, - gKartMario253Wheel2, - gKartMario253Wheel3, - gKartMario254Wheel0, - gKartMario254Wheel1, - gKartMario254Wheel2, - gKartMario254Wheel3, - gKartMario255Wheel0, - gKartMario255Wheel1, - gKartMario255Wheel2, - gKartMario255Wheel3, - gKartMario256Wheel0, - gKartMario256Wheel1, - gKartMario256Wheel2, - gKartMario256Wheel3, - gKartMario257Wheel0, - gKartMario257Wheel1, - gKartMario257Wheel2, - gKartMario257Wheel3, - gKartMario258Wheel0, - gKartMario258Wheel1, - gKartMario258Wheel2, - gKartMario258Wheel3, - gKartMario259Wheel0, - gKartMario259Wheel1, - gKartMario259Wheel2, - gKartMario259Wheel3, - gKartMario260Wheel0, - gKartMario260Wheel1, - gKartMario260Wheel2, - gKartMario260Wheel3, - gKartMario261Wheel0, - gKartMario261Wheel1, - gKartMario261Wheel2, - gKartMario261Wheel3, - gKartMario262Wheel0, - gKartMario262Wheel1, - gKartMario262Wheel2, - gKartMario262Wheel3, - gKartMario263Wheel0, - gKartMario263Wheel1, - gKartMario263Wheel2, - gKartMario263Wheel3, - gKartMario264Wheel0, - gKartMario264Wheel1, - gKartMario264Wheel2, - gKartMario264Wheel3, - gKartMario265Wheel0, - gKartMario265Wheel1, - gKartMario265Wheel2, - gKartMario265Wheel3, - gKartMario266Wheel0, - gKartMario266Wheel1, - gKartMario266Wheel2, - gKartMario266Wheel3, - gKartMario267Wheel0, - gKartMario267Wheel1, - gKartMario267Wheel2, - gKartMario267Wheel3, - gKartMario268Wheel0, - gKartMario268Wheel1, - gKartMario268Wheel2, - gKartMario268Wheel3, - gKartMario269Wheel0, - gKartMario269Wheel1, - gKartMario269Wheel2, - gKartMario269Wheel3, - gKartMario270Wheel0, - gKartMario270Wheel1, - gKartMario270Wheel2, - gKartMario270Wheel3, - gKartMario271Wheel0, - gKartMario271Wheel1, - gKartMario271Wheel2, - gKartMario271Wheel3, - gKartMario272Wheel0, - gKartMario272Wheel1, - gKartMario272Wheel2, - gKartMario272Wheel3, - gKartMario273Wheel0, - gKartMario273Wheel1, - gKartMario273Wheel2, - gKartMario273Wheel3, - gKartMario274Wheel0, - gKartMario274Wheel1, - gKartMario274Wheel2, - gKartMario274Wheel3, - gKartMario275Wheel0, - gKartMario275Wheel1, - gKartMario275Wheel2, - gKartMario275Wheel3, - gKartMario276Wheel0, - gKartMario276Wheel1, - gKartMario276Wheel2, - gKartMario276Wheel3, - gKartMario277Wheel0, - gKartMario277Wheel1, - gKartMario277Wheel2, - gKartMario277Wheel3, - gKartMario278Wheel0, - gKartMario278Wheel1, - gKartMario278Wheel2, - gKartMario278Wheel3, - gKartMario279Wheel0, - gKartMario279Wheel1, - gKartMario279Wheel2, - gKartMario279Wheel3, - gKartMario280Wheel0, - gKartMario280Wheel1, - gKartMario280Wheel2, - gKartMario280Wheel3, - gKartMario281Wheel0, - gKartMario281Wheel1, - gKartMario281Wheel2, - gKartMario281Wheel3, - gKartMario282Wheel0, - gKartMario282Wheel1, - gKartMario282Wheel2, - gKartMario282Wheel3, - gKartMario283Wheel0, - gKartMario283Wheel1, - gKartMario283Wheel2, - gKartMario283Wheel3, - gKartMario284Wheel0, - gKartMario284Wheel1, - gKartMario284Wheel2, - gKartMario284Wheel3, - gKartMario285Wheel0, - gKartMario285Wheel1, - gKartMario285Wheel2, - gKartMario285Wheel3, - gKartMario286Wheel0, - gKartMario286Wheel1, - gKartMario286Wheel2, - gKartMario286Wheel3, - gKartMario287Wheel0, - gKartMario287Wheel1, - gKartMario287Wheel2, - gKartMario287Wheel3, - gKartMario288Wheel0, - gKartMario288Wheel1, - gKartMario288Wheel2, - gKartMario288Wheel3, -}; - -static const ALIGN_ASSET(2) char gKartMarioPalette[] = "__OTR__mario_kart/mario_kart_palette"; - diff --git a/include/assets/mario_raceway_data.h b/include/assets/mario_raceway_data.h deleted file mode 100644 index e21a221d2..000000000 --- a/include/assets/mario_raceway_data.h +++ /dev/null @@ -1,212 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_E8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_E8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1D0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1D0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2C8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2C8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3A8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3A8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_478[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_478"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_568[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_568"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_668[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_668"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_750[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_750"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_828[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_828"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_928[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_928"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_A00[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_A00"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_B08[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_B08"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_C20[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_C20"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_DC8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_DC8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_F60[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_F60"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_10A8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_10A8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1210[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1210"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1408[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1408"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_15C8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_15C8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1740[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1740"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1850[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1850"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1A30[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1A30"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1B70[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1B70"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1CF8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1CF8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1DE0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1DE0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1F68[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_1F68"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_20A0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_20A0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_21E8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_21E8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_22E0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_22E0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2418[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2418"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2558[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2558"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2680[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2680"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2790[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2790"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_28B0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_28B0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2A10[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2A10"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2B40[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2B40"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2C98[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2C98"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2DC0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2DC0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2EF8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_2EF8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3038[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3038"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_31F0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_31F0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_32D8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_32D8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3458[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3458"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_35D0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_35D0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3748[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3748"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3830[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3830"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3960[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3960"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3AA0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3AA0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3C08[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3C08"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3D68[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3D68"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3EB8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_3EB8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4038[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4038"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4150[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4150"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_42A0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_42A0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_43D8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_43D8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_44F8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_44F8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4610[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4610"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4738[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4738"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4840[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4840"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4910[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4910"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4A60[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4A60"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4B78[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4B78"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4CD8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4CD8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4DC8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4DC8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4ED0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4ED0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4FF0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_4FF0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_5150[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_5150"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_5228[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_5228"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_unknown_waypoints[] = "__OTR__mario_raceway_data/d_course_mario_raceway_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_track_waypoints[] = "__OTR__mario_raceway_data/d_course_mario_raceway_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_piranha_plant_tlut[] = "__OTR__mario_raceway_data/d_course_mario_raceway_piranha_plant_tlut"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_piranha_plant_model[] = "__OTR__mario_raceway_data/d_course_mario_raceway_piranha_plant_model"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_piranha_plant[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_piranha_plant"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_tree_model[] = "__OTR__mario_raceway_data/d_course_mario_raceway_tree_model"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_tree[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_tree"; - -static const ALIGN_ASSET(2) char d_course_mario_sign_model[] = "__OTR__mario_raceway_data/d_course_mario_sign_model"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_06006B88[] = "__OTR__mario_raceway_data/d_course_mario_raceway_06006B88"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_06006D68[] = "__OTR__mario_raceway_data/d_course_mario_raceway_06006D68"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_06006EE8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_06006EE8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_06006F48[] = "__OTR__mario_raceway_data/d_course_mario_raceway_06006F48"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_06006FA8[] = "__OTR__mario_raceway_data/d_course_mario_raceway_06006FA8"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_06007008[] = "__OTR__mario_raceway_data/d_course_mario_raceway_06007008"; - -static const ALIGN_ASSET(2) char d_course_mario_sign_left[] = "__OTR__mario_raceway_data/d_course_mario_sign_left"; - -static const ALIGN_ASSET(2) char d_course_mario_sign_right[] = "__OTR__mario_raceway_data/d_course_mario_sign_right"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9068[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_9068"; - -static const ALIGN_ASSET(2) char mario_raceway_data_seg6_gfx_9068[] = "__OTR__mario_raceway_data/mario_raceway_data_seg6_gfx_9068"; - -static const ALIGN_ASSET(2) char mario_raceway_data_seg6_gfx_90B0[] = "__OTR__mario_raceway_data/mario_raceway_data_seg6_gfx_90B0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_90B0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_90B0"; - -static const ALIGN_ASSET(2) char mario_raceway_data_seg6_gfx_90C0[] = "__OTR__mario_raceway_data/mario_raceway_data_seg6_gfx_90C0"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_90C0[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_90C0"; - -static const ALIGN_ASSET(2) char mario_raceway_data_seg6_gfx_9190[] = "__OTR__mario_raceway_data/mario_raceway_data_seg6_gfx_9190"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9190[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_9190"; - -static const ALIGN_ASSET(2) char mario_raceway_data_seg6_gfx_9250[] = "__OTR__mario_raceway_data/mario_raceway_data_seg6_gfx_9250"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9250[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_9250"; - -static const ALIGN_ASSET(2) char mario_raceway_data_seg6_gfx_9310[] = "__OTR__mario_raceway_data/mario_raceway_data_seg6_gfx_9310"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9310[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_9310"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_sign[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_sign"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9348[] = "__OTR__mario_raceway_data/d_course_mario_raceway_dl_9348"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_item_box_spawns[] = "__OTR__mario_raceway_data/d_course_mario_raceway_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_piranha_plant_spawns[] = "__OTR__mario_raceway_data/d_course_mario_raceway_piranha_plant_spawns"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_tree_spawns[] = "__OTR__mario_raceway_data/d_course_mario_raceway_tree_spawns"; - -static const ALIGN_ASSET(2) char d_course_mario_raceway_addr[] = "__OTR__mario_raceway_data/d_course_mario_raceway_addr"; - diff --git a/include/assets/mario_raceway_displaylists.h b/include/assets/mario_raceway_displaylists.h deleted file mode 100644 index d9fb96beb..000000000 --- a/include/assets/mario_raceway_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dls[] = "__OTR__mario_raceway_displaylists/d_course_mario_raceway_packed_dls"; - diff --git a/include/assets/mario_raceway_vertices.h b/include/assets/mario_raceway_vertices.h deleted file mode 100644 index 082d43037..000000000 --- a/include/assets/mario_raceway_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex[] = "__OTR__mario_raceway_vertices/d_course_mario_raceway_vertex"; - diff --git a/include/assets/models/ceremony_data.h b/include/assets/models/ceremony_data.h new file mode 100644 index 000000000..5014a6cfb --- /dev/null +++ b/include/assets/models/ceremony_data.h @@ -0,0 +1,149 @@ +#pragma once + +#include +#include +#include +#include + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_0"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_160[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_160"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_340[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_340"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_530[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_530"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_6D0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_6D0"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_8D0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_8D0"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_A50[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_A50"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_C50[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_C50"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_E50[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_E50"; + +static const ALIGN_ASSET(2) char silver_trophy_dl[] = "__OTR__models/ceremony_data/silver_trophy_dl"; + +static const ALIGN_ASSET(2) char silver_trophy_dl2[] = "__OTR__models/ceremony_data/silver_trophy_dl2"; + +static const ALIGN_ASSET(2) char silver_trophy_dl3[] = "__OTR__models/ceremony_data/silver_trophy_dl3"; + +static const ALIGN_ASSET(2) char silver_trophy_dl4[] = "__OTR__models/ceremony_data/silver_trophy_dl4"; + +static const ALIGN_ASSET(2) char silver_trophy_dl5[] = "__OTR__models/ceremony_data/silver_trophy_dl5"; + +static const ALIGN_ASSET(2) char silver_trophy_dl6[] = "__OTR__models/ceremony_data/silver_trophy_dl6"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_1580[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_1580"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_16E0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_16E0"; + +static const ALIGN_ASSET(2) char unused_trophy_base_with_handle[] = "__OTR__models/ceremony_data/some_vtx"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_25F0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_25F0"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_27E0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_27E0"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_29E0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_29E0"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_2BD0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_2BD0"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_2D50[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_2D50"; + +static const ALIGN_ASSET(2) char unused_trophy_base2[] = "__OTR__models/ceremony_data/some_vtx2"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3320[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_3320"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3520[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_3520"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3710[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_3710"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3900[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_3900"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3A90[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_3A90"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3C90[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_3C90"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_3E80[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_3E80"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_4080[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_4080"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_4130[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_4130"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_4330[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_4330"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_4520[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_4520"; + +static const ALIGN_ASSET(2) char gold_trophy_dl[] = "__OTR__models/ceremony_data/gold_trophy_dl"; + +static const ALIGN_ASSET(2) char gold_trophy_dl2[] = "__OTR__models/ceremony_data/gold_trophy_dl2"; + +static const ALIGN_ASSET(2) char gold_trophy_dl3[] = "__OTR__models/ceremony_data/gold_trophy_dl3"; + +static const ALIGN_ASSET(2) char gold_trophy_dl4[] = "__OTR__models/ceremony_data/gold_trophy_dl4"; + +static const ALIGN_ASSET(2) char gold_trophy_dl5[] = "__OTR__models/ceremony_data/gold_trophy_dl5"; + +static const ALIGN_ASSET(2) char gold_trophy_dl6[] = "__OTR__models/ceremony_data/gold_trophy_dl6"; + +static const ALIGN_ASSET(2) char gold_trophy_dl7[] = "__OTR__models/ceremony_data/gold_trophy_dl7"; + +static const ALIGN_ASSET(2) char gold_trophy_dl8[] = "__OTR__models/ceremony_data/gold_trophy_dl8"; + +static const ALIGN_ASSET(2) char gold_trophy_dl9[] = "__OTR__models/ceremony_data/gold_trophy_dl9"; + +static const ALIGN_ASSET(2) char gold_trophy_dl10[] = "__OTR__models/ceremony_data/gold_trophy_dl10"; + +static const ALIGN_ASSET(2) char gold_trophy_dl11[] = "__OTR__models/ceremony_data/gold_trophy_dl11"; + +static const ALIGN_ASSET(2) char gold_trophy_dl12[] = "__OTR__models/ceremony_data/gold_trophy_dl12"; + +static const ALIGN_ASSET(2) char gold_trophy_dl13[] = "__OTR__models/ceremony_data/gold_trophy_dl13"; + +static const ALIGN_ASSET(2) char gold_trophy_dl14[] = "__OTR__models/ceremony_data/gold_trophy_dl14"; + +static const ALIGN_ASSET(2) char gold_trophy_dl15[] = "__OTR__models/ceremony_data/gold_trophy_dl15"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_lights_6BB8[] = "__OTR__models/ceremony_data/ceremony_data_seg11_lights_6BB8"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_73D0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_73D0"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_74D0[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_74D0"; + +static const ALIGN_ASSET(2) char podium_dl[] = "__OTR__models/ceremony_data/podium_dl"; + +static const ALIGN_ASSET(2) char podium_dl2[] = "__OTR__models/ceremony_data/podium_dl2"; + +static const ALIGN_ASSET(2) char podium_dl3[] = "__OTR__models/ceremony_data/podium_dl3"; + +static const ALIGN_ASSET(2) char podium_dl4[] = "__OTR__models/ceremony_data/podium_dl4"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_7608[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_7608"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_7708[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_7708"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_lights_7748[] = "__OTR__models/ceremony_data/ceremony_data_seg11_lights_7748"; + +static const ALIGN_ASSET(2) char podium2_dl[] = "__OTR__models/ceremony_data/podium2_dl"; + +static const ALIGN_ASSET(2) char podium2_dl2[] = "__OTR__models/ceremony_data/podium2_dl2"; + +static const ALIGN_ASSET(2) char podium2_dl3[] = "__OTR__models/ceremony_data/podium2_dl3"; + +static const ALIGN_ASSET(2) char podium2_dl4[] = "__OTR__models/ceremony_data/podium2_dl4"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_lights_8058[] = "__OTR__models/ceremony_data/ceremony_data_seg11_lights_8058"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_8870[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_8870"; + +static const ALIGN_ASSET(2) char ceremony_data_seg11_vtx_8970[] = "__OTR__models/ceremony_data/ceremony_data_seg11_vtx_8970"; + +static const ALIGN_ASSET(2) char podium3_dl[] = "__OTR__models/ceremony_data/podium3_dl"; + +static const ALIGN_ASSET(2) char podium3_dl2[] = "__OTR__models/ceremony_data/podium3_dl2"; + +static const ALIGN_ASSET(2) char podium3_dl3[] = "__OTR__models/ceremony_data/podium3_dl3"; + +static const ALIGN_ASSET(2) char podium3_dl4[] = "__OTR__models/ceremony_data/podium3_dl4"; + diff --git a/include/assets/models/common_data.h b/include/assets/models/common_data.h new file mode 100644 index 000000000..1f6af5723 --- /dev/null +++ b/include/assets/models/common_data.h @@ -0,0 +1,367 @@ +#pragma once + +#include +#include +#include +#include + +static const ALIGN_ASSET(2) char D_0D001200[] = "__OTR__models/common_data/D_0D001200"; + +static const ALIGN_ASSET(2) char D_0D001210[] = "__OTR__models/common_data/D_0D001210"; + +static const ALIGN_ASSET(2) char D_0D001240[] = "__OTR__models/common_data/D_0D001240"; + +static const ALIGN_ASSET(2) char D_0D001270[] = "__OTR__models/common_data/D_0D001270"; + +static const ALIGN_ASSET(2) char D_0D0012A0[] = "__OTR__models/common_data/D_0D0012A0"; + +static const ALIGN_ASSET(2) char D_0D0012D0[] = "__OTR__models/common_data/D_0D0012D0"; + +static const ALIGN_ASSET(2) char D_0D001300[] = "__OTR__models/common_data/D_0D001300"; + +static const ALIGN_ASSET(2) char D_0D001330[] = "__OTR__models/common_data/D_0D001330"; + +static const ALIGN_ASSET(2) char D_0D001360[] = "__OTR__models/common_data/D_0D001360"; + +static const ALIGN_ASSET(2) char common_vtx_finish_line_banner[] = "__OTR__models/common_data/common_vtx_finish_line_banner"; + +static const ALIGN_ASSET(2) char common_vtx_finish_post[] = "__OTR__models/common_data/common_vtx_finish_post"; + +static const ALIGN_ASSET(2) char D_0D001710[] = "__OTR__models/common_data/D_0D001710"; + +static const ALIGN_ASSET(2) char D_0D001750[] = "__OTR__models/common_data/D_0D001750"; + +static const ALIGN_ASSET(2) char D_0D001780[] = "__OTR__models/common_data/D_0D001780"; + +static const ALIGN_ASSET(2) char D_0D001798[] = "__OTR__models/common_data/D_0D001798"; + +static const ALIGN_ASSET(2) char D_0D0017B0[] = "__OTR__models/common_data/D_0D0017B0"; + +static const ALIGN_ASSET(2) char D_0D0017C8[] = "__OTR__models/common_data/D_0D0017C8"; + +static const ALIGN_ASSET(2) char D_0D0017E0[] = "__OTR__models/common_data/D_0D0017E0"; + +static const ALIGN_ASSET(2) char D_0D0017F8[] = "__OTR__models/common_data/D_0D0017F8"; + +static const ALIGN_ASSET(2) char D_0D001810[] = "__OTR__models/common_data/D_0D001810"; + +static const ALIGN_ASSET(2) char D_0D001828[] = "__OTR__models/common_data/D_0D001828"; + +static const ALIGN_ASSET(2) char D_0D001840[] = "__OTR__models/common_data/D_0D001840"; + +static const ALIGN_ASSET(2) char common_model_finish_post[] = "__OTR__models/common_data/common_model_finish_post"; + +static const ALIGN_ASSET(2) char D_0D001B68[] = "__OTR__models/common_data/D_0D001B68"; + +static const ALIGN_ASSET(2) char D_0D001B90[] = "__OTR__models/common_data/D_0D001B90"; + +static const ALIGN_ASSET(2) char D_0D001BD8[] = "__OTR__models/common_data/D_0D001BD8"; + +static const ALIGN_ASSET(2) char D_0D001C20[] = "__OTR__models/common_data/D_0D001C20"; + +static const ALIGN_ASSET(2) char D_0D001C88[] = "__OTR__models/common_data/D_0D001C88"; + +static const ALIGN_ASSET(2) char common_vtx_itembox[] = "__OTR__models/common_data/common_vtx_itembox"; + +static const ALIGN_ASSET(2) char D_0D002EE8[] = "__OTR__models/common_data/D_0D002EE8"; + +static const ALIGN_ASSET(2) char common_fake_item_box_question_mark_vertices[] = "__OTR__models/common_data/common_fake_item_box_question_mark_vertices"; + +static const ALIGN_ASSET(2) char common_model_fake_itembox[] = "__OTR__models/common_data/common_model_fake_itembox"; + +static const ALIGN_ASSET(2) char itemBoxQuestionMarkModel[] = "__OTR__models/common_data/itemBoxQuestionMarkModel"; + +static const ALIGN_ASSET(2) char D_0D003090[] = "__OTR__models/common_data/D_0D003090"; + +static const ALIGN_ASSET(2) char D_0D0030F8[] = "__OTR__models/common_data/D_0D0030F8"; + +static const ALIGN_ASSET(2) char D_0D003128[] = "__OTR__models/common_data/D_0D003128"; + +static const ALIGN_ASSET(2) char D_0D003158[] = "__OTR__models/common_data/D_0D003158"; + +static const ALIGN_ASSET(2) char D_0D003188[] = "__OTR__models/common_data/D_0D003188"; + +static const ALIGN_ASSET(2) char D_0D0031B8[] = "__OTR__models/common_data/D_0D0031B8"; + +static const ALIGN_ASSET(2) char D_0D0031E8[] = "__OTR__models/common_data/D_0D0031E8"; + +static const ALIGN_ASSET(2) char D_0D003218[] = "__OTR__models/common_data/D_0D003218"; + +static const ALIGN_ASSET(2) char D_0D003248[] = "__OTR__models/common_data/D_0D003248"; + +static const ALIGN_ASSET(2) char D_0D003278[] = "__OTR__models/common_data/D_0D003278"; + +static const ALIGN_ASSET(2) char D_0D003288[] = "__OTR__models/common_data/D_0D003288"; + +static const ALIGN_ASSET(2) char common_vtx_banana[] = "__OTR__models/common_data/common_vtx_banana"; + +static const ALIGN_ASSET(2) char common_vtx_flat_banana[] = "__OTR__models/common_data/common_vtx_flat_banana"; + +static const ALIGN_ASSET(2) char common_model_banana[] = "__OTR__models/common_data/common_model_banana"; + +static const ALIGN_ASSET(2) char common_model_flat_banana[] = "__OTR__models/common_data/common_model_flat_banana"; + +static const ALIGN_ASSET(2) char common_data_seg13_vtx_5238[] = "__OTR__models/common_data/common_data_seg13_vtx_5238"; + +static const ALIGN_ASSET(2) char common_data_seg13_vtx_5278[] = "__OTR__models/common_data/common_data_seg13_vtx_5278"; + +static const ALIGN_ASSET(2) char D_0D0052B8[] = "__OTR__models/common_data/D_0D0052B8"; + +static const ALIGN_ASSET(2) char D_0D005308[] = "__OTR__models/common_data/D_0D005308"; + +static const ALIGN_ASSET(2) char D_0D005338[] = "__OTR__models/common_data/D_0D005338"; + +static const ALIGN_ASSET(2) char D_0D005368[] = "__OTR__models/common_data/D_0D005368"; + +static const ALIGN_ASSET(2) char D_toads_turnpike_0D005398[] = "__OTR__models/common_data/D_toads_turnpike_0D005398"; + +static const ALIGN_ASSET(2) char D_toads_turnpike_0D0053B0[] = "__OTR__models/common_data/D_toads_turnpike_0D0053B0"; + +static const ALIGN_ASSET(2) char D_toads_turnpike_0D0053C8[] = "__OTR__models/common_data/D_toads_turnpike_0D0053C8"; + +static const ALIGN_ASSET(2) char D_toads_turnpike_0D0053F0[] = "__OTR__models/common_data/D_toads_turnpike_0D0053F0"; + +static const ALIGN_ASSET(2) char D_toads_turnpike_0D005418[] = "__OTR__models/common_data/D_toads_turnpike_0D005418"; + +static const ALIGN_ASSET(2) char D_0D005430[] = "__OTR__models/common_data/D_0D005430"; + +static const ALIGN_ASSET(2) char common_vtx_player_minimap_icon[] = "__OTR__models/common_data/common_vtx_player_minimap_icon"; + +static const ALIGN_ASSET(2) char D_0D0054B0[] = "__OTR__models/common_data/D_0D0054B0"; + +static const ALIGN_ASSET(2) char common_vtx_rectangle[] = "__OTR__models/common_data/common_vtx_rectangle"; + +static const ALIGN_ASSET(2) char D_0D0057B0[] = "__OTR__models/common_data/D_0D0057B0"; + +static const ALIGN_ASSET(2) char D_0D0057F0[] = "__OTR__models/common_data/D_0D0057F0"; + +static const ALIGN_ASSET(2) char common_data_seg13_vtx_58E0[] = "__OTR__models/common_data/common_data_seg13_vtx_58E0"; + +static const ALIGN_ASSET(2) char D_0D005920[] = "__OTR__models/common_data/D_0D005920"; + +static const ALIGN_ASSET(2) char D_0D005AA0[] = "__OTR__models/common_data/D_0D005AA0"; + +static const ALIGN_ASSET(2) char D_0D005AE0[] = "__OTR__models/common_data/D_0D005AE0"; + +static const ALIGN_ASSET(2) char D_0D005B20[] = "__OTR__models/common_data/D_0D005B20"; + +static const ALIGN_ASSET(2) char D_0D005B60[] = "__OTR__models/common_data/D_0D005B60"; + +static const ALIGN_ASSET(2) char D_0D005BA0[] = "__OTR__models/common_data/D_0D005BA0"; + +static const ALIGN_ASSET(2) char D_0D005BD0[] = "__OTR__models/common_data/D_0D005BD0"; + +static const ALIGN_ASSET(2) char D_0D005C00[] = "__OTR__models/common_data/D_0D005C00"; + +static const ALIGN_ASSET(2) char D_0D005C30[] = "__OTR__models/common_data/D_0D005C30"; + +static const ALIGN_ASSET(2) char D_0D005E80[] = "__OTR__models/common_data/D_0D005E80"; + +static const ALIGN_ASSET(2) char common_vtx_lakitu[] = "__OTR__models/common_data/common_vtx_lakitu"; + +static const ALIGN_ASSET(2) char D_0D005F30[] = "__OTR__models/common_data/D_0D005F30"; + +static const ALIGN_ASSET(2) char D_0D005FB0[] = "__OTR__models/common_data/D_0D005FB0"; + +static const ALIGN_ASSET(2) char D_0D005FF0[] = "__OTR__models/common_data/D_0D005FF0"; + +static const ALIGN_ASSET(2) char D_0D006030[] = "__OTR__models/common_data/D_0D006030"; + +static const ALIGN_ASSET(2) char common_vtx_hedgehog[] = "__OTR__models/common_data/common_vtx_hedgehog"; + +static const ALIGN_ASSET(2) char D_0D006130[] = "__OTR__models/common_data/D_0D006130"; + +static const ALIGN_ASSET(2) char D_0D0061B0[] = "__OTR__models/common_data/D_0D0061B0"; + +static const ALIGN_ASSET(2) char D_0D0062B0[] = "__OTR__models/common_data/D_0D0062B0"; + +static const ALIGN_ASSET(2) char D_0D0064B0[] = "__OTR__models/common_data/D_0D0064B0"; + +static const ALIGN_ASSET(2) char common_vtx_also_lakitu[] = "__OTR__models/common_data/common_vtx_also_lakitu"; + +static const ALIGN_ASSET(2) char D_0D0068F0[] = "__OTR__models/common_data/D_0D0068F0"; + +static const ALIGN_ASSET(2) char D_0D006930[] = "__OTR__models/common_data/D_0D006930"; + +static const ALIGN_ASSET(2) char common_rectangle_display[] = "__OTR__models/common_data/common_rectangle_display"; + +static const ALIGN_ASSET(2) char D_0D006950[] = "__OTR__models/common_data/D_0D006950"; + +static const ALIGN_ASSET(2) char D_0D006968[] = "__OTR__models/common_data/D_0D006968"; + +static const ALIGN_ASSET(2) char D_0D006980[] = "__OTR__models/common_data/D_0D006980"; + +static const ALIGN_ASSET(2) char D_0D006998[] = "__OTR__models/common_data/D_0D006998"; + +static const ALIGN_ASSET(2) char D_0D0069B0[] = "__OTR__models/common_data/D_0D0069B0"; + +static const ALIGN_ASSET(2) char D_0D0069C8[] = "__OTR__models/common_data/D_0D0069C8"; + +static const ALIGN_ASSET(2) char D_0D0069E0[] = "__OTR__models/common_data/D_0D0069E0"; + +static const ALIGN_ASSET(2) char D_0D0069F8[] = "__OTR__models/common_data/D_0D0069F8"; + +static const ALIGN_ASSET(2) char D_0D006A10[] = "__OTR__models/common_data/D_0D006A10"; + +static const ALIGN_ASSET(2) char D_0D006A28[] = "__OTR__models/common_data/D_0D006A28"; + +static const ALIGN_ASSET(2) char D_0D006A40[] = "__OTR__models/common_data/D_0D006A40"; + +static const ALIGN_ASSET(2) char D_0D0076F8[] = "__OTR__models/common_data/D_0D0076F8"; + +static const ALIGN_ASSET(2) char D_0D007780[] = "__OTR__models/common_data/D_0D007780"; + +static const ALIGN_ASSET(2) char D_0D0077A0[] = "__OTR__models/common_data/D_0D0077A0"; + +static const ALIGN_ASSET(2) char D_0D0077D0[] = "__OTR__models/common_data/D_0D0077D0"; + +static const ALIGN_ASSET(2) char D_0D0077F8[] = "__OTR__models/common_data/D_0D0077F8"; + +static const ALIGN_ASSET(2) char D_0D007828[] = "__OTR__models/common_data/D_0D007828"; + +static const ALIGN_ASSET(2) char D_0D007850[] = "__OTR__models/common_data/D_0D007850"; + +static const ALIGN_ASSET(2) char D_0D007878[] = "__OTR__models/common_data/D_0D007878"; + +static const ALIGN_ASSET(2) char D_0D0078A0[] = "__OTR__models/common_data/D_0D0078A0"; + +static const ALIGN_ASSET(2) char D_0D0078D0[] = "__OTR__models/common_data/D_0D0078D0"; + +static const ALIGN_ASSET(2) char D_0D0078F8[] = "__OTR__models/common_data/D_0D0078F8"; + +static const ALIGN_ASSET(2) char D_0D007928[] = "__OTR__models/common_data/D_0D007928"; + +static const ALIGN_ASSET(2) char D_0D007948[] = "__OTR__models/common_data/D_0D007948"; + +static const ALIGN_ASSET(2) char D_0D007968[] = "__OTR__models/common_data/D_0D007968"; + +static const ALIGN_ASSET(2) char D_0D007988[] = "__OTR__models/common_data/D_0D007988"; + +static const ALIGN_ASSET(2) char D_0D0079A8[] = "__OTR__models/common_data/D_0D0079A8"; + +static const ALIGN_ASSET(2) char D_0D0079C8[] = "__OTR__models/common_data/D_0D0079C8"; + +static const ALIGN_ASSET(2) char D_0D0079E8[] = "__OTR__models/common_data/D_0D0079E8"; + +static const ALIGN_ASSET(2) char D_0D007A08[] = "__OTR__models/common_data/D_0D007A08"; + +static const ALIGN_ASSET(2) char D_0D007A40[] = "__OTR__models/common_data/D_0D007A40"; + +static const ALIGN_ASSET(2) char D_0D007A60[] = "__OTR__models/common_data/D_0D007A60"; + +static const ALIGN_ASSET(2) char D_0D007A80[] = "__OTR__models/common_data/D_0D007A80"; + +static const ALIGN_ASSET(2) char D_0D007AA0[] = "__OTR__models/common_data/D_0D007AA0"; + +static const ALIGN_ASSET(2) char D_0D007AC0[] = "__OTR__models/common_data/D_0D007AC0"; + +static const ALIGN_ASSET(2) char D_0D007AE0[] = "__OTR__models/common_data/D_0D007AE0"; + +static const ALIGN_ASSET(2) char D_0D007B00[] = "__OTR__models/common_data/D_0D007B00"; + +static const ALIGN_ASSET(2) char D_0D007B20[] = "__OTR__models/common_data/D_0D007B20"; + +static const ALIGN_ASSET(2) char D_0D007B98[] = "__OTR__models/common_data/D_0D007B98"; + +static const ALIGN_ASSET(2) char D_0D007C10[] = "__OTR__models/common_data/D_0D007C10"; + +static const ALIGN_ASSET(2) char D_0D007C88[] = "__OTR__models/common_data/D_0D007C88"; + +static const ALIGN_ASSET(2) char D_0D007CB8[] = "__OTR__models/common_data/D_0D007CB8"; + +static const ALIGN_ASSET(2) char D_0D007CD8[] = "__OTR__models/common_data/D_0D007CD8"; + +static const ALIGN_ASSET(2) char D_0D007CF8[] = "__OTR__models/common_data/D_0D007CF8"; + +static const ALIGN_ASSET(2) char D_0D007D18[] = "__OTR__models/common_data/D_0D007D18"; + +static const ALIGN_ASSET(2) char D_0D007D38[] = "__OTR__models/common_data/D_0D007D38"; + +static const ALIGN_ASSET(2) char D_0D007D58[] = "__OTR__models/common_data/D_0D007D58"; + +static const ALIGN_ASSET(2) char D_0D007D78[] = "__OTR__models/common_data/D_0D007D78"; + +static const ALIGN_ASSET(2) char D_0D007D98[] = "__OTR__models/common_data/D_0D007D98"; + +static const ALIGN_ASSET(2) char D_0D007DB8[] = "__OTR__models/common_data/D_0D007DB8"; + +static const ALIGN_ASSET(2) char D_0D007DD8[] = "__OTR__models/common_data/D_0D007DD8"; + +static const ALIGN_ASSET(2) char D_0D007DF8[] = "__OTR__models/common_data/D_0D007DF8"; + +static const ALIGN_ASSET(2) char D_0D007E18[] = "__OTR__models/common_data/D_0D007E18"; + +static const ALIGN_ASSET(2) char D_0D007E38[] = "__OTR__models/common_data/D_0D007E38"; + +static const ALIGN_ASSET(2) char D_0D007E58[] = "__OTR__models/common_data/D_0D007E58"; + +static const ALIGN_ASSET(2) char D_0D007E78[] = "__OTR__models/common_data/D_0D007E78"; + +static const ALIGN_ASSET(2) char D_0D007E98[] = "__OTR__models/common_data/D_0D007E98"; + +static const ALIGN_ASSET(2) char D_0D007EB8[] = "__OTR__models/common_data/D_0D007EB8"; + +static const ALIGN_ASSET(2) char D_0D007ED8[] = "__OTR__models/common_data/D_0D007ED8"; + +static const ALIGN_ASSET(2) char D_0D007EF8[] = "__OTR__models/common_data/D_0D007EF8"; + +static const ALIGN_ASSET(2) char D_0D007F18[] = "__OTR__models/common_data/D_0D007F18"; + +static const ALIGN_ASSET(2) char D_0D007F38[] = "__OTR__models/common_data/D_0D007F38"; + +static const ALIGN_ASSET(2) char D_0D007F58[] = "__OTR__models/common_data/D_0D007F58"; + +static const ALIGN_ASSET(2) char D_0D007F78[] = "__OTR__models/common_data/D_0D007F78"; + +static const ALIGN_ASSET(2) char D_0D007F98[] = "__OTR__models/common_data/D_0D007F98"; + +static const ALIGN_ASSET(2) char D_0D007FB8[] = "__OTR__models/common_data/D_0D007FB8"; + +static const ALIGN_ASSET(2) char D_0D007FE0[] = "__OTR__models/common_data/D_0D007FE0"; + +static const ALIGN_ASSET(2) char D_0D008000[] = "__OTR__models/common_data/D_0D008000"; + +static const ALIGN_ASSET(2) char D_0D008020[] = "__OTR__models/common_data/D_0D008020"; + +static const ALIGN_ASSET(2) char D_0D008040[] = "__OTR__models/common_data/D_0D008040"; + +static const ALIGN_ASSET(2) char D_0D008060[] = "__OTR__models/common_data/D_0D008060"; + +static const ALIGN_ASSET(2) char D_0D008080[] = "__OTR__models/common_data/D_0D008080"; + +static const ALIGN_ASSET(2) char D_0D008108[] = "__OTR__models/common_data/D_0D008108"; + +static const ALIGN_ASSET(2) char D_0D008120[] = "__OTR__models/common_data/D_0D008120"; + +static const ALIGN_ASSET(2) char D_0D008138[] = "__OTR__models/common_data/D_0D008138"; + +static const ALIGN_ASSET(2) char D_0D008B78[] = "__OTR__models/common_data/D_0D008B78"; + +static const ALIGN_ASSET(2) char D_0D008BB8[] = "__OTR__models/common_data/D_0D008BB8"; + +static const ALIGN_ASSET(2) char D_0D008BF8[] = "__OTR__models/common_data/D_0D008BF8"; + +static const ALIGN_ASSET(2) char D_0D008C38[] = "__OTR__models/common_data/D_0D008C38"; + +static const ALIGN_ASSET(2) char common_square_plain_render[] = "__OTR__models/common_data/common_square_plain_render"; + +static const ALIGN_ASSET(2) char D_0D008C90[] = "__OTR__models/common_data/D_0D008C90"; + +static const ALIGN_ASSET(2) char common_setting_render_character[] = "__OTR__models/common_data/common_setting_render_character"; + +static const ALIGN_ASSET(2) char D_0D008D10[] = "__OTR__models/common_data/D_0D008D10"; + +static const ALIGN_ASSET(2) char D_0D008D58[] = "__OTR__models/common_data/D_0D008D58"; + +static const ALIGN_ASSET(2) char D_0D008DA0[] = "__OTR__models/common_data/D_0D008DA0"; + +static const ALIGN_ASSET(2) char D_0D008DB8[] = "__OTR__models/common_data/D_0D008DB8"; + +static const ALIGN_ASSET(2) char D_0D008DF8[] = "__OTR__models/common_data/D_0D008DF8"; + +static const ALIGN_ASSET(2) char D_0D008E20[] = "__OTR__models/common_data/D_0D008E20"; + +static const ALIGN_ASSET(2) char D_0D008E48[] = "__OTR__models/common_data/D_0D008E48"; + +static const ALIGN_ASSET(2) char D_0D008E70[] = "__OTR__models/common_data/D_0D008E70"; + diff --git a/include/assets/models/data_800E8700.h b/include/assets/models/data_800E8700.h new file mode 100644 index 000000000..711ad923b --- /dev/null +++ b/include/assets/models/data_800E8700.h @@ -0,0 +1,59 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char D_800E8700[] = "__OTR__models/data_800E8700/D_800E8700"; + +static const ALIGN_ASSET(2) char D_800E8740[] = "__OTR__models/data_800E8700/D_800E8740"; + +static const ALIGN_ASSET(2) char D_800E8780[] = "__OTR__models/data_800E8700/D_800E8780"; + +static const ALIGN_ASSET(2) char D_800E87C0[] = "__OTR__models/data_800E8700/D_800E87C0"; + +static const ALIGN_ASSET(2) char D_800E8800[] = "__OTR__models/data_800E8700/D_800E8800"; + +static const ALIGN_ASSET(2) char D_800E8840[] = "__OTR__models/data_800E8700/D_800E8840"; + +static const ALIGN_ASSET(2) char D_800E8880[] = "__OTR__models/data_800E8700/D_800E8880"; + +static const ALIGN_ASSET(2) char D_800E88C0[] = "__OTR__models/data_800E8700/D_800E88C0"; + +static const ALIGN_ASSET(2) char D_800E8900[] = "__OTR__models/data_800E8700/D_800E8900"; + +static const ALIGN_ASSET(2) char D_800E8940[] = "__OTR__models/data_800E8700/D_800E8940"; + +static const ALIGN_ASSET(2) char D_800E8980[] = "__OTR__models/data_800E8700/D_800E8980"; + +static const ALIGN_ASSET(2) char D_800E89C0[] = "__OTR__models/data_800E8700/D_800E89C0"; + +static const ALIGN_ASSET(2) char D_800E8A00[] = "__OTR__models/data_800E8700/D_800E8A00"; + +static const ALIGN_ASSET(2) char D_800E8A40[] = "__OTR__models/data_800E8700/D_800E8A40"; + +static const ALIGN_ASSET(2) char D_800E8A80[] = "__OTR__models/data_800E8700/D_800E8A80"; + +static const ALIGN_ASSET(2) char D_800E8AC0[] = "__OTR__models/data_800E8700/D_800E8AC0"; + +static const ALIGN_ASSET(2) char D_800E8B00[] = "__OTR__models/data_800E8700/D_800E8B00"; + +static const ALIGN_ASSET(2) char D_800E8B40[] = "__OTR__models/data_800E8700/D_800E8B40"; + +static const ALIGN_ASSET(2) char D_800E8B80[] = "__OTR__models/data_800E8700/D_800E8B80"; + +static const ALIGN_ASSET(2) char D_800E8BC0[] = "__OTR__models/data_800E8700/D_800E8BC0"; + +static const ALIGN_ASSET(2) char D_800E8C00[] = "__OTR__models/data_800E8700/D_800E8C00"; + +static const ALIGN_ASSET(2) char D_800E8C40[] = "__OTR__models/data_800E8700/D_800E8C40"; + +static const ALIGN_ASSET(2) char data_800E8700_vtx_800E8C40[] = "__OTR__models/data_800E8700/data_800E8700_vtx_800E8C40"; + +static const ALIGN_ASSET(2) char data_800E8700_vtx_800E8CC0[] = "__OTR__models/data_800E8700/data_800E8700_vtx_800E8CC0"; + +static const ALIGN_ASSET(2) char D_800E8CC0[] = "__OTR__models/data_800E8700/D_800E8CC0"; + +static const ALIGN_ASSET(2) char D_800E8D40[] = "__OTR__models/data_800E8700/D_800E8D40"; + +static const ALIGN_ASSET(2) char D_800E8DD0[] = "__OTR__models/data_800E8700/D_800E8DD0"; + diff --git a/include/assets/models/data_segment2.h b/include/assets/models/data_segment2.h new file mode 100644 index 000000000..8510b4cee --- /dev/null +++ b/include/assets/models/data_segment2.h @@ -0,0 +1,53 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char D_02007650[] = "__OTR__models/data_segment2/D_02007650"; + +static const ALIGN_ASSET(2) char D_020076B0[] = "__OTR__models/data_segment2/D_020076B0"; + +static const ALIGN_ASSET(2) char D_020076E0[] = "__OTR__models/data_segment2/D_020076E0"; + +static const ALIGN_ASSET(2) char D_02007708[] = "__OTR__models/data_segment2/D_02007708"; + +static const ALIGN_ASSET(2) char D_02007728[] = "__OTR__models/data_segment2/D_02007728"; + +static const ALIGN_ASSET(2) char D_02007748[] = "__OTR__models/data_segment2/D_02007748"; + +static const ALIGN_ASSET(2) char D_02007768[] = "__OTR__models/data_segment2/D_02007768"; + +static const ALIGN_ASSET(2) char D_02007788[] = "__OTR__models/data_segment2/D_02007788"; + +static const ALIGN_ASSET(2) char D_020077A8[] = "__OTR__models/data_segment2/D_020077A8"; + +static const ALIGN_ASSET(2) char D_020077D8[] = "__OTR__models/data_segment2/D_020077D8"; + +static const ALIGN_ASSET(2) char D_020077F8[] = "__OTR__models/data_segment2/D_020077F8"; + +static const ALIGN_ASSET(2) char D_02007818[] = "__OTR__models/data_segment2/D_02007818"; + +static const ALIGN_ASSET(2) char D_02007B38[] = "__OTR__models/data_segment2/D_02007B38"; + +static const ALIGN_ASSET(2) char D_02007B78[] = "__OTR__models/data_segment2/D_02007B78"; + +static const ALIGN_ASSET(2) char D_02007BB8[] = "__OTR__models/data_segment2/D_02007BB8"; + +static const ALIGN_ASSET(2) char D_02007CD8[] = "__OTR__models/data_segment2/D_02007CD8"; + +static const ALIGN_ASSET(2) char D_02007DF8[] = "__OTR__models/data_segment2/D_02007DF8"; + +static const ALIGN_ASSET(2) char D_02007F18[] = "__OTR__models/data_segment2/D_02007F18"; + +static const ALIGN_ASSET(2) char D_02007F48[] = "__OTR__models/data_segment2/D_02007F48"; + +static const ALIGN_ASSET(2) char D_02007F60[] = "__OTR__models/data_segment2/D_02007F60"; + +static const ALIGN_ASSET(2) char D_02007FC8[] = "__OTR__models/data_segment2/D_02007FC8"; + +static const ALIGN_ASSET(2) char D_02008008[] = "__OTR__models/data_segment2/D_02008008"; + +static const ALIGN_ASSET(2) char D_02008030[] = "__OTR__models/data_segment2/D_02008030"; + +static const ALIGN_ASSET(2) char D_02008058[] = "__OTR__models/data_segment2/D_02008058"; + diff --git a/include/assets/models/startup_logo.h b/include/assets/models/startup_logo.h new file mode 100644 index 000000000..eb4115fba --- /dev/null +++ b/include/assets/models/startup_logo.h @@ -0,0 +1,182 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_0[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_0"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_200[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_200"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_400[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_400"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_600[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_600"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_6A0[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_6A0"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_880[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_880"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_9E0[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_9E0"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_BC0[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_BC0"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_DA0[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_DA0"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_F80[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_F80"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1120[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1120"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1300[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1300"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1460[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1460"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1660[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1660"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1860[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1860"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1A60[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1A60"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1B40[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1B40"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1D40[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1D40"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1F40[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_1F40"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_2140[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_2140"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_21C0[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_21C0"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_23C0[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_23C0"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_2540[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_2540"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_2740[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_2740"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_2940[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_2940"; + +static const ALIGN_ASSET(2) char startup_logo_dl[] = "__OTR__models/startup_logo/dl1"; + +static const ALIGN_ASSET(2) char startup_logo_dl2[] = "__OTR__models/startup_logo/dl2"; + +static const ALIGN_ASSET(2) char startup_logo_dl3[] = "__OTR__models/startup_logo/dl3"; + +static const ALIGN_ASSET(2) char startup_logo_dl4[] = "__OTR__models/startup_logo/dl4"; + +static const ALIGN_ASSET(2) char startup_logo_dl5[] = "__OTR__models/startup_logo/dl5"; + +static const ALIGN_ASSET(2) char startup_logo_dl6[] = "__OTR__models/startup_logo/dl6"; + +static const ALIGN_ASSET(2) char startup_logo_dl7[] = "__OTR__models/startup_logo/dl7"; + +static const ALIGN_ASSET(2) char startup_logo_dl8[] = "__OTR__models/startup_logo/dl8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3538[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_3538"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3738[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_3738"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3908[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_3908"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3AE8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_3AE8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3CD8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_3CD8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3ED8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_3ED8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3F48[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_3F48"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4148[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_4148"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4338[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_4338"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4438[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_4438"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4638[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_4638"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4838[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_4838"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_49C8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_49C8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4B48[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_4B48"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4CC8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_4CC8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4EC8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_4EC8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5098[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_5098"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_50D8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_50D8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_52D8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_52D8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_54D8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_54D8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5668[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_5668"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5868[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_5868"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5A68[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_5A68"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5BE8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_5BE8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5DE8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_5DE8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5FC8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_5FC8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_61B8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_61B8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_62F8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_62F8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_64F8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_64F8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_66F8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_66F8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_68F8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_68F8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_6AF8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_6AF8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_6CF8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_6CF8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_6ED8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_6ED8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_7008[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_7008"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_71D8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_71D8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_73D8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_73D8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_75A8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_75A8"; + +static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_77A8[] = "__OTR__models/startup_logo/startup_logo_seg6_vtx_77A8"; + +static const ALIGN_ASSET(2) char startup_logo_dl9[] = "__OTR__models/startup_logo/dl9"; + +static const ALIGN_ASSET(2) char startup_logo_dl10[] = "__OTR__models/startup_logo/dl10"; + +static const ALIGN_ASSET(2) char startup_logo_dl11[] = "__OTR__models/startup_logo/dl11"; + +static const ALIGN_ASSET(2) char startup_logo_dl12[] = "__OTR__models/startup_logo/dl12"; + +static const ALIGN_ASSET(2) char startup_logo_dl13[] = "__OTR__models/startup_logo/dl13"; + +static const ALIGN_ASSET(2) char startup_logo_dl14[] = "__OTR__models/startup_logo/dl14"; + +static const ALIGN_ASSET(2) char startup_logo_dl15[] = "__OTR__models/startup_logo/dl15"; + +static const ALIGN_ASSET(2) char startup_logo_dl16[] = "__OTR__models/startup_logo/dl16"; + +static const ALIGN_ASSET(2) char startup_logo_dl17[] = "__OTR__models/startup_logo/dl17"; + +static const ALIGN_ASSET(2) char startup_logo_dl18[] = "__OTR__models/startup_logo/dl18"; + +static const ALIGN_ASSET(2) char startup_logo_dl19[] = "__OTR__models/startup_logo/dl19"; + +static const ALIGN_ASSET(2) char startup_logo_dl20[] = "__OTR__models/startup_logo/dl20"; + +static const ALIGN_ASSET(2) char startup_texture_dl1[] = "__OTR__models/startup_logo/startup_texture_dl1"; + +static const ALIGN_ASSET(2) char startup_texture_dl2[] = "__OTR__models/startup_logo/startup_texture_dl2"; + +static const ALIGN_ASSET(2) char startup_texture_dl3[] = "__OTR__models/startup_logo/startup_texture_dl3"; + +static const ALIGN_ASSET(2) char startup_texture_dl4[] = "__OTR__models/startup_logo/startup_texture_dl4"; + diff --git a/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h b/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h new file mode 100644 index 000000000..aa33ac2c5 --- /dev/null +++ b/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h @@ -0,0 +1,270 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_38[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_38"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_68[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_68"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_160[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_160"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_210[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_210"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_270[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_270"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_358[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_358"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_408[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_408"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_540[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_540"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_620[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_620"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_6D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_6D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_870[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_870"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_940[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_940"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_9E0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_9E0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_AD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_AD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_B80[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_B80"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_C30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_C30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_CD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_CD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_D80[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_D80"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_E10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_E10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_EE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_EE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_F50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_F50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1000[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1000"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1070[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1070"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1160[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1160"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_11C8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_11C8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_12A8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_12A8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_12E8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_12E8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_13F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_13F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1448[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1448"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1520[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1520"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1580[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1580"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1678[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1678"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_16B8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_16B8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_17A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_17A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1820[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1820"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_18D8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_18D8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1940[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1940"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1A30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1A30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1B00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1B00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1BA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1BA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1C20[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1C20"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1CC8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1CC8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1D90[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1D90"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1E28[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1E28"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1EA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1EA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_1F40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_1F40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2028[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2028"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_20A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_20A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2138[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2138"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_21C8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_21C8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_22D8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_22D8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2340[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2340"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2448[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2448"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_24E8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_24E8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2610[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2610"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2650[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2650"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2718[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2718"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2790[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2790"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2868[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2868"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_28A8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_28A8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2980[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2980"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2A18[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2A18"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2AE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2AE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2B88[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2B88"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2C30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2C30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2CE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2CE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2DB0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2DB0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2E20[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2E20"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2EE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2EE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_2FA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_2FA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3050[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3050"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3100[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3100"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3200[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3200"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_32B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_32B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3390[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3390"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3468[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3468"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_35A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_35A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3660[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3660"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3710[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3710"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_37F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_37F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3920[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3920"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3980[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3980"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3A20[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3A20"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3AF8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3AF8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3C00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3C00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3C40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3C40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3CD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3CD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3D98[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3D98"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3EB0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3EB0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3EF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3EF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_3F60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_3F60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4038[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4038"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4118[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4118"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4188[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4188"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_41F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_41F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_42D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_42D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_43A8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_43A8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4428[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4428"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_4480[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_4480"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep1[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep1"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep2[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep2"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep3[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep3"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep4[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep4"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep5[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep5"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep6[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep6"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep7[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep7"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep9[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep9"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_cheep_cheep10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_cheep_cheep10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7650[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7650"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_78C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_78C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7978[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7978"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7B38[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7B38"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_7B78[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_7B78"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_cheep_cheep[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_cheep_cheep"; + +static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_vtx_9DB8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/banshee_boardwalk_data_seg6_vtx_9DB8"; + +static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_vtx_9EF8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/banshee_boardwalk_data_seg6_vtx_9EF8"; + +static const ALIGN_ASSET(2) char banshee_boardwalk_data_seg6_lights_A038[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/banshee_boardwalk_data_seg6_lights_A038"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A850[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A850"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A900[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A900"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A9B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A9B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_A9C8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_A9C8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_trash_bin[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_trash_bin"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_model_unk[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_model_unk"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_B278[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_B278"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_dl_B308[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_dl_B308"; + diff --git a/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists.h b/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists.h new file mode 100644 index 000000000..320f2d465 --- /dev/null +++ b/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists.h @@ -0,0 +1,390 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_120[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_120"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_280[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_280"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_330[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_330"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3E0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_490[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_490"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_540[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_540"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_580[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_580"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_688[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_688"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_698[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_698"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6F8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6F8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_758[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_758"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_7B8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7B8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_818[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_818"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_878[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_878"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_8A8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_8A8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_930[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_930"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_9B8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_9B8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_A50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_A50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_AE8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_AE8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_BC8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_BC8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_C98[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_C98"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_D30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_D30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_DF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_DF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_EA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_EA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_F80[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_F80"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1008[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1008"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1108[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1108"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_11D8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_11D8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1260[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1260"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1320[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1320"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_13E0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_13E0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1478[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1478"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1560[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1560"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1610[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1610"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1748[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1748"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_17F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_17F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1820[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1820"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1830[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1830"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_18E0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_18E0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1968[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1968"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1A00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1A00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1A98[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1A98"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1AC0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1AC0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1B58[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1B58"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1BE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1BE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1BF8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1BF8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1C78[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1C78"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1CF8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1CF8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1D10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1D10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1DA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1DA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1DB0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1DB0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1E50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1E50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1EF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1EF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_1FA8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1FA8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2058[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2058"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2100[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2100"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_21D8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_21D8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2288[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2288"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_22C8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_22C8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2398[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2398"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2440[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2440"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2520[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2520"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2608[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2608"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_26E8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_26E8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_27D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_27D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_28D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_28D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_29A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_29A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2A70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2A70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2B78[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2B78"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2C20[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2C20"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2D40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2D40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2E40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2E40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_2F38[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2F38"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3020[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3020"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_30F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_30F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3240[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3240"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3310[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3310"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_33C8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_33C8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_34A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_34A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3588[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3588"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3638[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3638"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_36C8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_36C8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3740[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3740"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_37C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_37C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3830[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3830"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3930[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3930"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3AA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3AA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3BA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3BA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3C40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3C40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3D08[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3D08"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3D90[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3D90"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3E10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3E88[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E88"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3F00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3F00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_3F78[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3F78"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4008[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4008"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4070[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4070"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_40D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_40D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4160[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4160"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_41F8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_41F8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_42A8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_42A8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4358[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4358"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4408[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4408"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_44B8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_44B8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4568[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4568"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4618[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4618"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_46C8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_46C8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4798[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4798"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4848[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4848"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_48F8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_48F8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_49A8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_49A8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4A58[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4A58"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4B08[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4B08"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4BA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4BA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4C50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4C50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4D00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4D00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4DB0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4DB0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4E60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4E60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4EF8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4EF8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_4FD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4FD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5078[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5078"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5120[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5120"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_51E0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_51E0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5278[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5278"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_52F8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_52F8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5378[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5378"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_53B8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_53B8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5498[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5498"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_54A8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_54A8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5520[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5520"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5598[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5598"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5610[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5610"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5688[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5688"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5700[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5700"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5778[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5778"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5820[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5820"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5898[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5898"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5910[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5910"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5988[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5988"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5A00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5A00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5A78[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5A78"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5AF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5AF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5B68[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5B68"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5BE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5BE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5C58[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5C58"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5CD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5CD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5D60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5D60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5DC8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5DC8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5E30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5E30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5EA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5EA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5F10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5F10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5F78[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5F78"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_5FE8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5FE8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6058[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6058"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6098[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6098"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6310[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6310"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6320[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6320"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_63B8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_63B8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6450[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6450"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_64E8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_64E8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6580[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6580"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6640[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6640"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_66D8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_66D8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6770[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6770"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6808[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6808"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_68A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_68A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6918[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6918"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_69B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_69B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6A10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6A10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6A88[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6A88"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6B00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6B00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6B78[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6B78"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6BF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6BF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6C68[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6C68"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6D00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6D00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6D78[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6D78"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6DF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6DF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6E68[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6E68"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6EE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6EE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6F58[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6F58"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_6FD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6FD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_7048[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7048"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_70C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_70C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_7138[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7138"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_71B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_71B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_7228[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7228"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_72B8[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_72B8"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_packed_dl_7338[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7338"; + diff --git a/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_vertices.h b/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_vertices.h new file mode 100644 index 000000000..d7ad3b009 --- /dev/null +++ b/include/assets/models/tracks/banshee_boardwalk/banshee_boardwalk_vertices.h @@ -0,0 +1,520 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000000[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000040[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000040"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000080[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040000C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040000C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000100[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000100"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000140[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000140"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000180[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000180"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040001C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040001C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000200[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000240[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000240"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000280[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000280"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040002C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040002C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000300[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000300"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000340[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000340"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000380[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000380"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040003C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040003C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000400[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000440[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000440"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000480[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000480"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040004C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040004C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000500[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000500"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000540[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000540"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000580[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000580"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040005C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040005C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000600[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000740[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000740"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040008C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040008C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000A80[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000A80"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000C80[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000C80"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04000E80[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000E80"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001000[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001000"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001200[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001200"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040012C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040012C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040014C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040014C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040016B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040016B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001710[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001710"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001910[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001910"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001950[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001950"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001B50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001B50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001CD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001CD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001E10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001E10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04001FF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001FF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040021D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040021D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040023B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040023B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04002510[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002510"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04002690[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002690"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04002890[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002890"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04002930[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002930"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04002B10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002B10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04002BB0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002BB0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04002D30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002D30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04002F30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002F30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003030[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003030"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003230[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003230"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003270[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003270"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003470[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003470"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003670[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003670"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040037D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040037D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040039D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040039D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003B20[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003B20"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003CA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003CA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003E40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003E40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04003F40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003F40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004010[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004010"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004150[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004150"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004290[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004290"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004430[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004430"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004610[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004610"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040046A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040046A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040048A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040048A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004960[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004960"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004B50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004B50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004D00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004D00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04004EF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004EF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005040[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005040"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005220[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005220"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005310[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005310"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040054F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040054F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040056F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040056F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005770[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005770"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005950[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005950"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005AF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005AF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005BB0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005BB0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005CF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005CF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005D70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005D70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005DF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005DF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04005EF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005EF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006070[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006070"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006170[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006170"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006330[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006330"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006430[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006430"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040065B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040065B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040066B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040066B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006830[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006830"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040068B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040068B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006A30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006A30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006A70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006A70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006B30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006B30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006C70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006C70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006D30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006D30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006EB0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006EB0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04006FF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006FF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040071F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040071F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04007230[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007230"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040072B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040072B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04007330[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007330"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040074B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040074B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04007690[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007690"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040076F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040076F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04007850[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007850"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04007A50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007A50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04007B90[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007B90"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04007D90[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007D90"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04007E90[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007E90"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008050[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008050"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008110[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008110"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008250[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008250"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008440[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008440"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008620[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008620"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008780[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008780"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008840[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008840"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008980[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008980"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008A00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008A00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008B00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008B00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008C00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008C00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008D60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008D60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04008E40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008E40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009040[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009040"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009190[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009190"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009270[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009270"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009360[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009360"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040093D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040093D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x040095D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040095D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009760[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009760"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009960[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009960"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009B60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009B60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009D60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009D60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009DA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009DA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04009F90[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009F90"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400A180[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A180"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400A330[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A330"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400A510[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A510"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400A590[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A590"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400A6C0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A6C0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400A7A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A7A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400A8A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A8A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400A9A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A9A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400AAA0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400AAA0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400AC40[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400AC40"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400ACC0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400ACC0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400AD00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400AD00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400AE50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400AE50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B050[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B050"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B090[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B090"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B290[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B290"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B2D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B2D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B4D0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B4D0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B510[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B510"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B710[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B710"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B750[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B750"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B950[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B950"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400B990[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B990"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400BB70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400BB70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400BBD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400BBD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400BDD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400BDD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400BE10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400BE10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C010[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C010"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C130[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C130"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C330[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C330"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C370[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C370"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C570[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C570"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C5B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C5B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C7B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C7B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C7F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C7F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400C9F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C9F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400CA30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400CA30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400CC30[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400CC30"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400CC70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400CC70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400CE70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400CE70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D070[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D070"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D0B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D0B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D2B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D2B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D2F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D2F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D4F0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D4F0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D530[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D530"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D730[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D730"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D770[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D770"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D960[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D960"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400D9B0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D9B0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400DB60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400DB60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400DCF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400DCF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400DEF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400DEF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400E030[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E030"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400E110[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E110"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400E200[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E200"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400E400[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E400"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400E5E0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E5E0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400E720[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E720"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400E860[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E860"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400E9A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E9A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400EAE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400EAE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400EC20[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400EC20"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400ED60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400ED60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400EF50[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400EF50"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400EFE0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400EFE0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400F120[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F120"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400F260[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F260"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400F3A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F3A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400F4E0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F4E0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400F620[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F620"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400F760[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F760"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400F8A0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F8A0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400F9E0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F9E0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400FB20[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FB20"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400FC60[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FC60"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400FCF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FCF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400FD70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FD70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400FE80[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FE80"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x0400FF70[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FF70"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010030[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010030"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010110[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010110"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010200[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010200"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010400[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010400"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010600[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010600"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010800[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010800"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010A00[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010A00"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010BF0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010BF0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010CD0[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010CD0"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010D10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010D10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04010F10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010F10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04011110[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011110"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04011310[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011310"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04011510[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011510"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04011710[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011710"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04011810[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011810"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04011A10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011A10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04011C10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011C10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04011E10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011E10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012010[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012010"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012110[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012110"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012310[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012310"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012410[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012410"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012510[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012510"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012610[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012610"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012710[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012710"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012810[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012810"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012A10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012A10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012B10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012B10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012C10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012C10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012D10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012D10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012E10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012E10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04012F10[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012F10"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04013010[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013010"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04013110[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013110"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04013210[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013210"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04013310[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013310"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_vertex_0x04013410[] = "__OTR__models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013410"; + diff --git a/include/assets/models/tracks/big_donut/big_donut_data.h b/include/assets/models/tracks/big_donut/big_donut_data.h new file mode 100644 index 000000000..8f181e956 --- /dev/null +++ b/include/assets/models/tracks/big_donut/big_donut_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_big_donut_dl[] = "__OTR__models/tracks/big_donut/big_donut_data/d_course_big_donut_dl"; + diff --git a/include/assets/models/tracks/big_donut/big_donut_displaylists.h b/include/assets/models/tracks/big_donut/big_donut_displaylists.h new file mode 100644 index 000000000..01c03a0cb --- /dev/null +++ b/include/assets/models/tracks/big_donut/big_donut_displaylists.h @@ -0,0 +1,46 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_0[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_210[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_210"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_220[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_220"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_230[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_230"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_240[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_240"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_450[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_450"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_460[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_460"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_AC0[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_AC0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_AD0[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_AD0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_B58[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_B58"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_D20[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_D20"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_D38[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_D38"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_DE8[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_DE8"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_DF8[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_DF8"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_E80[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_E80"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_F08[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_F08"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_F90[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_F90"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_1018[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1018"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_1040[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1040"; + +static const ALIGN_ASSET(2) char d_course_big_donut_packed_dl_1070[] = "__OTR__models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1070"; + diff --git a/include/assets/models/tracks/big_donut/big_donut_vertices.h b/include/assets/models/tracks/big_donut/big_donut_vertices.h new file mode 100644 index 000000000..e7b82064f --- /dev/null +++ b/include/assets/models/tracks/big_donut/big_donut_vertices.h @@ -0,0 +1,86 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04000000[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04000200[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04000400[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04000600[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04000800[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04000A00[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000A00"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04000C00[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000C00"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04000E00[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000E00"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04001000[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001000"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04001200[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001200"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04001400[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001400"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04001600[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001600"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04001800[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001800"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04001A00[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001A00"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04001C00[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001C00"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04001E00[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001E00"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04002000[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002000"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04002200[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002200"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040023E0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040023E0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040025E0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040025E0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040027E0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040027E0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040029C0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040029C0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04002BC0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002BC0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04002DC0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002DC0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04002FC0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002FC0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040031C0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040031C0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040033C0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040033C0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040035C0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040035C0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040037C0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040037C0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04003850[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003850"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04003A50[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003A50"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04003C50[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003C50"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04003E50[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003E50"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04004050[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004050"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04004250[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004250"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x04004430[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004430"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040044D0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040044D0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040045D0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040045D0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040046D0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040046D0"; + +static const ALIGN_ASSET(2) char d_course_big_donut_vertex_0x040047D0[] = "__OTR__models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040047D0"; + diff --git a/include/assets/models/tracks/block_fort/block_fort_data.h b/include/assets/models/tracks/block_fort/block_fort_data.h new file mode 100644 index 000000000..034bbc830 --- /dev/null +++ b/include/assets/models/tracks/block_fort/block_fort_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_block_fort_dl[] = "__OTR__models/tracks/block_fort/block_fort_data/d_course_block_fort_dl"; + diff --git a/include/assets/models/tracks/block_fort/block_fort_displaylists.h b/include/assets/models/tracks/block_fort/block_fort_displaylists.h new file mode 100644 index 000000000..f3a0a4d5f --- /dev/null +++ b/include/assets/models/tracks/block_fort/block_fort_displaylists.h @@ -0,0 +1,62 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_B8[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_B8"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_148[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_148"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_1D8[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1D8"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_268[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_268"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_330[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_330"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_3F0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_3F0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_428[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_428"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_4C0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_4C0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_558[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_558"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_5F0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_5F0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_688[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_688"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_6B0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_6B0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_7A0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_7A0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_828[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_828"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_8B0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_8B0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_938[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_938"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_9C0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_9C0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_9F0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_9F0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_C80[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_C80"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_F10[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_F10"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_11A8[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_11A8"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_14A0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_14A0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_14C8[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_14C8"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_1580[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1580"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_1590[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1590"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_15C0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_15C0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_packed_dl_15D0[] = "__OTR__models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_15D0"; + diff --git a/include/assets/models/tracks/block_fort/block_fort_vertices.h b/include/assets/models/tracks/block_fort/block_fort_vertices.h new file mode 100644 index 000000000..16e19a14d --- /dev/null +++ b/include/assets/models/tracks/block_fort/block_fort_vertices.h @@ -0,0 +1,108 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000000[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000030[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000030"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000170[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000170"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000270[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000270"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000370[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000370"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000470[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000470"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000670[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000670"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x040006F0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040006F0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x040008F0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040008F0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000930[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000930"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000AB0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000AB0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000C30[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000C30"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000D70[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000D70"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04000E90[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000E90"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001090[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001090"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001290[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001290"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001390[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001390"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001490[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001490"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001590[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001590"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001690[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001690"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001750[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001750"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001950[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001950"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001B50[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001B50"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001D50[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001D50"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04001F50[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001F50"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002020[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002020"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x040020D0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040020D0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002190[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002190"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002390[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002390"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002590[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002590"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002790[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002790"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002970[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002970"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002AA0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002AA0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002B50[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002B50"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002C10[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002C10"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002DF0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002DF0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04002FF0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002FF0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x040031D0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040031D0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003210[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003210"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003410[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003410"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x040034E0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040034E0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003590[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003590"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003650[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003650"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003850[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003850"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003A50[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003A50"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003C30[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003C30"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003D30[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003D30"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x04003F30[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003F30"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x040040A0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040040A0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x040041B0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040041B0"; + +static const ALIGN_ASSET(2) char d_course_block_fort_vertex_0x040043A0[] = "__OTR__models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040043A0"; + diff --git a/include/assets/models/tracks/bowsers_castle/bowsers_castle_data.h b/include/assets/models/tracks/bowsers_castle/bowsers_castle_data.h new file mode 100644 index 000000000..933bd8acb --- /dev/null +++ b/include/assets/models/tracks/bowsers_castle/bowsers_castle_data.h @@ -0,0 +1,244 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_110[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_110"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_230[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_230"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_398[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_398"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_428[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_428"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_640[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_640"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_7A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_7A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_860[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_860"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_8E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_8E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_9F8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_9F8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_AE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_AE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_B88[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_B88"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_C08[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_C08"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_D20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_D20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_E00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_E00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_EA8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_EA8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_F08[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_F08"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1040[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1040"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1138[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1138"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_11F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_11F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1248[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1248"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1290[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1290"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_12D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_12D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1330[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1330"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1350[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1350"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1370[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1370"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_13A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_13A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_13C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_13C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_13E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_13E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1448[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1448"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1488[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1488"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_14B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_14B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1520[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1520"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1590[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1590"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1608[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1608"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1690[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1690"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1710[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1710"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1788[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1788"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_17D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_17D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1818[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1818"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1860[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1860"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_18C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_18C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1928[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1928"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1960[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1960"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_19A8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_19A8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_19F8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_19F8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1A40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1A40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1A90[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1A90"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1AD8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1AD8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1B10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1B10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1B58[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1B58"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1BB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1BB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1C10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1C10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1C38[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1C38"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1C60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1C60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1C98[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1C98"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1CD0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1CD0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1DF8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1DF8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1EB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1EB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_1FA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_1FA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2008[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2008"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2130[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2130"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_21F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_21F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_22E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_22E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2398[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2398"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_24B8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_24B8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2578[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2578"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2688[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2688"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2760[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2760"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2880[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2880"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2958[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2958"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2A60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2A60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2B80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2B80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2C48[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2C48"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2D08[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2D08"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2DF8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2DF8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2F30[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2F30"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_2FB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_2FB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3050[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3050"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3158[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3158"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3230[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3230"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_32C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_32C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3338[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3338"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3480[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3480"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3508[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3508"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_35D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_35D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3678[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3678"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_37D8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_37D8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_38F8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_38F8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_39E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_39E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3B00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3B00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3C08[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3C08"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3D78[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3D78"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3EA8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3EA8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_3FF0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_3FF0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_40F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_40F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4278[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4278"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4358[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4358"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4488[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4488"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_45D8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_45D8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4748[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4748"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4820[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4820"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4998[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4998"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4A98[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4A98"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4C00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4C00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4CE8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4CE8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_4EA8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_4EA8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_model1[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_thwomp_model1"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_model2[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_thwomp_model2"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_model3[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_thwomp_model3"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_model4[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_thwomp_model4"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_8F38[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_8F38"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_9078[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_9078"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_thwomp[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_thwomp"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_unknown_model[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_unknown_model"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_bush[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_bush"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_9148[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_9148"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_dl_9228[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_dl_9228"; + diff --git a/include/assets/models/tracks/bowsers_castle/bowsers_castle_displaylists.h b/include/assets/models/tracks/bowsers_castle/bowsers_castle_displaylists.h new file mode 100644 index 000000000..ff0f52722 --- /dev/null +++ b/include/assets/models/tracks/bowsers_castle/bowsers_castle_displaylists.h @@ -0,0 +1,356 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_120[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_120"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_188[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_188"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_248[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_248"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_280[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_280"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_328[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_328"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_338[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_338"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_428[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_428"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_438[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_438"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_460[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_460"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_470[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_470"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_A10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_A10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_A20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_A20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_B80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_B80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_D38[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_D38"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_11F8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_11F8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1218[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1218"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1350[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1350"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1360[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1360"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1448[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1448"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1530[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1530"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1618[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1618"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1700[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1700"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_17E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_17E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_18D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_18D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_19B8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_19B8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1AA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1AA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1B88[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1B88"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1C70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1C70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1D58[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1D58"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1E40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1E40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1EA8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1EA8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_1FA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1FA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2098[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2098"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_20B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_20B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2128[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2128"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2188[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2188"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2228[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2228"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2290[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2290"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2310[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2310"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2378[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2378"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_23E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_23E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2450[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2450"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_24B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_24B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2528[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2528"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2598[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2598"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2610[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2610"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2698[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2698"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2708[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2708"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2770[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2770"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_27E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_27E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2858[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2858"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_28B8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_28B8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2920[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2920"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_29A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_29A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2A48[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2A48"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2BA8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2BA8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_2BB8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2BB8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_30C8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_30C8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_32F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_32F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3308[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3308"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3568[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3568"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3578[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3578"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3920[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3920"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3930[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3930"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3C70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_3C80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_4198[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4198"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_41A8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_41A8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_4598[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4598"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_48A8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_48A8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_4BB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4BB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_4EB8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4EB8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_51B8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_51B8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_51E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_51E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5270[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5270"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5300[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5300"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5378[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5378"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_53E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_53E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5448[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5448"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_54E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_54E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5560[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5560"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_55E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_55E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5678[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5678"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_56F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_56F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5778[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5778"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_57E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_57E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5850[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5850"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5A78[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5A78"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5BB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5BB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5BC8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5BC8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5D88[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5D88"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_5D98[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5D98"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6200[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6200"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_63B8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_63B8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_63D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_63D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_64A8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_64A8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6580[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6580"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6658[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6658"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6678[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6678"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_66E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_66E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6760[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6760"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6778[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6778"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6A80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6A80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6A90[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6A90"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6BC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6BC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6CA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6CA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6CB8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6CB8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6D78[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6D78"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6E48[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6E48"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6F08[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6F08"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_6FA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6FA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7038[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7038"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_70D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_70D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7180[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7180"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7288[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7288"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7340[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7340"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7418[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7418"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7520[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7520"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_75E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_75E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7650[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7650"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_76C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_76C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7730[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7730"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_77A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_77A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7820[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7820"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7898[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7898"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7908[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7908"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7998[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7998"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7A10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7A10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7A78[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7A78"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7AD8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7AD8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7B50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7B50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7BB8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7BB8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7C30[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7C30"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7CC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7CC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7D48[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7D48"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7DB8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7DB8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7E28[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7E28"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7EA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7EA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7F20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7F20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_7F98[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7F98"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8008[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8008"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8078[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8078"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_80E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_80E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8148[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8148"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_81B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_81B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8218[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8218"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8278[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8278"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_82D8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_82D8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8348[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8348"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_83B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_83B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_84A8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_84A8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_87E8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_87E8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8BE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8BE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8C78[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8C78"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8D10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8D10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8DA8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8DA8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8E40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8E40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8E78[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8E78"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_8FA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8FA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_9278[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9278"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_9290[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9290"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_9328[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9328"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_93A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_93A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_9438[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9438"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_94B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_94B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_94D8[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_94D8"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_9820[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9820"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_9830[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9830"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_packed_dl_9910[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9910"; + diff --git a/include/assets/models/tracks/bowsers_castle/bowsers_castle_vertices.h b/include/assets/models/tracks/bowsers_castle/bowsers_castle_vertices.h new file mode 100644 index 000000000..13d8b09c7 --- /dev/null +++ b/include/assets/models/tracks/bowsers_castle/bowsers_castle_vertices.h @@ -0,0 +1,878 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000000[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000040[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000040"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000080[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040000C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040000C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000140[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000140"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000180[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000180"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040001C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040001C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040003C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040003C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000420[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000420"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000480[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000480"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000680[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000680"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000860[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000860"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000920[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000920"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000B00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000B00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000D00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000D00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04000F00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000F00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04001100[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001100"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040012E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040012E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040014C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040014C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04001630[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001630"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04001820[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001820"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04001A00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001A00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04001BE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001BE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04001DE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001DE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04001EE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001EE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002050[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002050"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002150[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002150"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002250[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002250"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040022F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040022F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040024F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040024F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002670[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002670"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002760[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002760"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002960[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002960"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002B50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002B50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002CE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002CE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04002EC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002EC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04003000[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003000"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04003200[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003200"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040033E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040033E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040035D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040035D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040037C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040037C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040039C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040039C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04003BC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003BC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04003DC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003DC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04003FC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003FC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040041C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040041C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040043C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040043C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004410[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004410"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004600[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004600"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004800[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004800"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040049F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040049F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004A30[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004A30"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004A80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004A80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004AC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004AC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004B10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004B10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004B60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004B60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004BA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004BA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004BF0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004BF0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004C40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004C40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004C80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004C80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004CD0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004CD0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004D20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004D20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004D60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004D60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004DB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004DB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004E00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004E40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004E90[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E90"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004EE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004EE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004F20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004F20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004F70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004F70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04004FC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004FC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005000[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005000"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005050[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005050"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040050A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040050A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040050E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040050E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005130[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005130"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005180[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005180"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040051C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040051C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005210[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005210"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005260[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005260"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040052A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040052A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040052F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040052F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005340[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005340"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005380[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005380"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040053D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040053D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005420[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005420"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005460[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005460"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040054B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040054B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040056B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040056B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040058B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040058B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005970[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005970"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005B70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005B70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005D50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005D50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005E80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005E80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04005FD0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005FD0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006010[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006010"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006200[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006200"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040062B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040062B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006370[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006370"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006520[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006520"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040065D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040065D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006650[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006650"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006750[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006750"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040067B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040067B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006920[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006920"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006A10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006A10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006B70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006B70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006D40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006D40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006E60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006E60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04006F20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006F20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007060[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007060"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007180[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007180"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040071B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040071B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007270[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007270"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007410[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007410"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007490[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007490"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007690[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007690"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007890[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007890"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007960[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007960"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007B40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007B40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007D20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007D20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04007F00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007F00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040080E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040080E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040082C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040082C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040084A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040084A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040086A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040086A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04008880[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008880"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04008A60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008A60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04008C40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008C40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04008E20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008E20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04009000[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009000"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040091E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040091E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040093C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040093C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040095A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040095A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04009780[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009780"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04009960[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009960"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04009B50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009B50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04009D30[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009D30"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04009F10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009F10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400A0F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A0F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400A2D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A2D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400A300[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A300"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400A4E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A4E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400A630[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A630"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400A790[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A790"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400A8D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A8D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400AAD0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AAD0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400ACD0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400ACD0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400AEB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AEB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400AF30[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AF30"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400B130[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B130"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400B230[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B230"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400B370[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B370"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400B570[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B570"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400B770[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B770"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400B970[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B970"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400BB10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BB10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400BD10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BD10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400BEA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BEA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400C0A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C0A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400C2A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C2A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400C360[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C360"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400C560[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C560"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400C750[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C750"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400C940[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C940"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400CB40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CB40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400CBF0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CBF0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400CCF0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CCF0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400CDB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CDB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400CFB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CFB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400D100[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D100"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400D300[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D300"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400D500[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D500"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400D6C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D6C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400D8A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D8A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400D900[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D900"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400DB00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DB00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400DD00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DD00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400DF00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DF00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400E0E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E0E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400E2D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E2D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400E3A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E3A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400E590[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E590"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400E690[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E690"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400E890[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E890"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400E8C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E8C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400EAC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EAC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400ECC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400ECC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400EEC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EEC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400EF00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EF00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400F0E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F0E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400F260[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F260"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400F360[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F360"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400F4A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F4A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400F6A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F6A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400F760[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F760"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400F940[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F940"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400FB20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FB20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400FD20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FD20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0400FF00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FF00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040100E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040100E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040102C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040102C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040104A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040104A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04010500[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010500"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04010700[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010700"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040108E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040108E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04010AC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010AC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04010CA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010CA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04010EA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010EA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011080[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011080"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011260[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011260"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011460[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011460"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011660[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011660"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011860[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011860"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011A50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011A50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011C30[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011C30"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011E30[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011E30"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04011E60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011E60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04012060[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012060"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04012240[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012240"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04012420[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012420"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04012600[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012600"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04012800[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012800"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040129E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040129E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04012BC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012BC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04012DB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012DB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04012FB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012FB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04013190[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013190"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04013380[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013380"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04013570[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013570"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04013770[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013770"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040137D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040137D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040139B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040139B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04013B90[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013B90"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04013D90[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013D90"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04013F70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013F70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04014150[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014150"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04014330[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014330"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04014510[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014510"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04014710[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014710"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040148F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040148F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04014AF0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014AF0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04014CD0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014CD0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04014EB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014EB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040150B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040150B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04015110[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015110"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040152F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040152F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040154D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040154D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040156B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040156B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04015890[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015890"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04015A80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015A80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04015C60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015C60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04015E40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015E40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016040[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016040"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016220[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016220"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016420[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016420"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016610[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016610"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016800[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016800"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040169E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040169E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016AA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016AA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016C20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016C20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016DE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016DE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016EE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016EE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016F60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016F60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04016FE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016FE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017060[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017060"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040170A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040170A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040171C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040171C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017310[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017310"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017480[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017480"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017580[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017580"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017710[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017710"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040177D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040177D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017810[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017810"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017880[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017880"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017A80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017A80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017AB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017AB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017B70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017B70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017D50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017D50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017EE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017EE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017F20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017F20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017F60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017F60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04017FE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017FE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04018120[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018120"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04018310[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018310"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04018370[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018370"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040183F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040183F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040184F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040184F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040185B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040185B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040187B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040187B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04018870[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018870"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04018A60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018A60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04018C60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018C60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04018E60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018E60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019050[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019050"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019250[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019250"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040192C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040192C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040194A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040194A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040196A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040196A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019820[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019820"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019970[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019970"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019A70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019A70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019B70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019B70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019CB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019CB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019EA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019EA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04019EE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019EE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A0C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A0C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A100[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A100"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A140[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A140"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A190[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A190"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A360[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A360"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A3B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A3B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A580[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A580"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A5D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A5D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A7A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A7A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A850[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A850"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401A950[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A950"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401AB50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AB50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401AD50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AD50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401AF50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AF50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401B150[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B150"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401B330[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B330"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401B510[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B510"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401B710[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B710"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401B7D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B7D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401B860[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B860"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401B9A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B9A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401BB20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BB20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401BBE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BBE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401BDE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BDE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401BFE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BFE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401C0E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C0E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401C2E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C2E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401C460[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C460"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401C640[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C640"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401C720[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C720"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401C900[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C900"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401CA80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CA80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401CC00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CC00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401CE00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CE00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401CE80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CE80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401D060[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D060"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401D160[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D160"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401D1A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D1A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401D3A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D3A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401D580[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D580"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401D6A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D6A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401D8A0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D8A0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401DA40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DA40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401DC40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DC40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401DD10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DD10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401DDC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DDC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401DE40[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DE40"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401DEC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DEC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401DFC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DFC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E080[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E080"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E110[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E110"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E290[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E290"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E350[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E350"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E3D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E3D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E410[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E410"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E4D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E4D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E550[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E550"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E630[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E630"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E770[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E770"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E870[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E870"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E8F0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E8F0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401E9B0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E9B0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EAB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EAB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EBB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EBB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EC70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EC70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401ED20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401ED20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EDA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EDA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EE00[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EE00"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EE80[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EE80"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EEE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EEE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EF60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EF60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EFA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EFA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401EFE0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EFE0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401F060[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F060"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401F0E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F0E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401F2E0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F2E0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401F4C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F4C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401F6C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F6C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401F8C0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F8C0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401FAC0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FAC0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401FCA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FCA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x0401FE90[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FE90"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020090[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020090"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020290[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020290"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020390[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020390"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020580[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020580"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020770[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020770"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020970[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020970"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020B60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020B60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020D60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020D60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04020F60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020F60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021160[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021160"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021350[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021350"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021550[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021550"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021750[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021750"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021950[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021950"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021B50[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021B50"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021C10[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021C10"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021D70[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021D70"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04021ED0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021ED0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022080[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022080"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022220[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022220"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022400[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022400"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022460[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022460"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022660[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022660"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022760[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022760"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022960[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022960"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022B60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022B60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022D60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022D60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04022F60[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022F60"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04023160[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023160"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04023350[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023350"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04023450[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023450"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04023610[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023610"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04023710[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023710"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040238D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040238D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x040239D0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040239D0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04023BB0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023BB0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04023DA0[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023DA0"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04023F90[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023F90"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04024180[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024180"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04024370[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024370"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04024560[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024560"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04024750[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024750"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04024930[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024930"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04024B30[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024B30"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04024D20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024D20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04024F20[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024F20"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04025070[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04025070"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_vertex_0x04025250[] = "__OTR__models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04025250"; + diff --git a/include/assets/models/tracks/choco_mountain/choco_mountain_data.h b/include/assets/models/tracks/choco_mountain/choco_mountain_data.h new file mode 100644 index 000000000..fa5babbb1 --- /dev/null +++ b/include/assets/models/tracks/choco_mountain/choco_mountain_data.h @@ -0,0 +1,228 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_150[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_150"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_208[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_208"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2A8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2A8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_330[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_330"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_410[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_410"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_4D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_4D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_588[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_588"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_618[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_618"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_6C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_6C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_750[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_750"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_7E8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_7E8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_878[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_878"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_908[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_908"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_990[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_990"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_A28[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_A28"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_B10[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_B10"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_BB8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_BB8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_C40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_C40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_D30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_D30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_DF8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_DF8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_EA0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_EA0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_F38[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_F38"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1000[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1000"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_10A8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_10A8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1150[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1150"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_11D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_11D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1280[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1280"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1330[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1330"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_13E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_13E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1488[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1488"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1528[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1528"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_15E8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_15E8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_16B8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_16B8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1788[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1788"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1810[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1810"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_18B8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_18B8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1970[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1970"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1A40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1A40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1AC8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1AC8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1B70[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1B70"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1C18[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1C18"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1CC8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1CC8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1D50[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1D50"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1E08[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1E08"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1E98[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1E98"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1F40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1F40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_1FE0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_1FE0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_20C8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_20C8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2168[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2168"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2228[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2228"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_22D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_22D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_23C8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_23C8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2468[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2468"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2538[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2538"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2600[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2600"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_26D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_26D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2780[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2780"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2840[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2840"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2908[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2908"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_29B8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_29B8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2A88[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2A88"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2B38[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2B38"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2C08[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2C08"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2C98[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2C98"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2D50[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2D50"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2DE8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2DE8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2EA0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2EA0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2F28[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2F28"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_2FD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_2FD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3070[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3070"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3120[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3120"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_31D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_31D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_32B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_32B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3368[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3368"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3438[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3438"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3550[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3550"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3618[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3618"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_36F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_36F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_37D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_37D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_38E8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_38E8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_39A8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_39A8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3A80[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3A80"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3B60[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3B60"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3C18[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3C18"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3CB8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3CB8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3D70[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3D70"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3E18[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3E18"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3EE0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3EE0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_3FA8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_3FA8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_4090[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_4090"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_4138[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_4138"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_41F8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_41F8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_42C8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_42C8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_43C8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_43C8"; + +static const ALIGN_ASSET(2) char choco_mountain_data_seg6_lights_5AE0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/choco_mountain_data_seg6_lights_5AE0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_6005AF8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_6005AF8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_falling_rock_model[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_falling_rock_model"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_6006C28[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_6006C28"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_6006C78[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_6006C78"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_6006CC8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_6006CC8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_6006D08[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_6006D08"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_6006DA8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_6006DA8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_6006E48[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_6006E48"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_6006EC8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_6006EC8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_6EF8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_6EF8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_6F48[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_6F48"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_6F88[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_6F88"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_falling_rock[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_falling_rock"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_dl_71B8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_dl_71B8"; + diff --git a/include/assets/models/tracks/choco_mountain/choco_mountain_displaylists.h b/include/assets/models/tracks/choco_mountain/choco_mountain_displaylists.h new file mode 100644 index 000000000..4c5206b00 --- /dev/null +++ b/include/assets/models/tracks/choco_mountain/choco_mountain_displaylists.h @@ -0,0 +1,260 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_98[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_98"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_178[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_178"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_280[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_280"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_340[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_340"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3C8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3C8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_448[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_448"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_480[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_480"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_508[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_508"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_570[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_570"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5F8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5F8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_718[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_718"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_728[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_728"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_748[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_748"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_758[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_758"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_828[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_828"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_838[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_838"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_8E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_8E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_8F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_8F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_9B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_9B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_A60[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_A60"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_AF8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_AF8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_B88[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_B88"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_C18[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_C18"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_CA0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_CA0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_D38[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_D38"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_DD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_DD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_EB8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_EB8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_F68[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_F68"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1018[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1018"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1100[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1100"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1200[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1200"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_12A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_12A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1338[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1338"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_13E8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_13E8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1488[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1488"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1538[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1538"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_15D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_15D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1670[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1670"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1740[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1740"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_17E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_17E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_18E8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_18E8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1988[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1988"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1A48[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1A48"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1AC8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1AC8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1BE0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1BE0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1C98[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1C98"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1DB8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1DB8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1E90[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1E90"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_1FE8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1FE8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_20F8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_20F8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_21D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_21D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2278[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2278"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2380[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2380"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2458[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2458"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2530[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2530"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2600[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2600"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_26C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_26C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2760[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2760"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_27F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_27F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_28B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_28B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_29E8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_29E8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2AE8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2AE8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2BD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2BD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2CA8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2CA8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2D68[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2D68"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2E38[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2E38"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2EE8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2EE8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_2FE8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2FE8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_30A8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_30A8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3188[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3188"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3200[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3200"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_32F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_32F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3390[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3390"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3410[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3410"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_34E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_34E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_35B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_35B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3670[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3670"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3708[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3708"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_37B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_37B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_38B8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_38B8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3998[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3998"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3A80[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3A80"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3B98[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3B98"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3CF0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3CF0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3DD8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3DD8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3EE8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3EE8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_3FB8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3FB8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4148[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4148"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4608[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4608"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4618[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4618"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4690[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4690"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_46F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_46F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4790[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4790"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4840[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4840"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_48E8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_48E8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4970[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4970"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_49F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_49F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4AB0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4AB0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4B58[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4B58"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4C08[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4C08"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4CC8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4CC8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4D90[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4D90"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4E40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4E40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4EB0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4EB0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4F30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4F30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_4FC0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4FC0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5070[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5070"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5148[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5148"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_51D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_51D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5258[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5258"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_52C8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_52C8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5338[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5338"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_53D8[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_53D8"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5490[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5490"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5558[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5558"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5688[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5688"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5778[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5778"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5868[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5868"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5888[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5888"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5910[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5910"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_59A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_59A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5A00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5A70[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A70"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5A98[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A98"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_packed_dl_5AE0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5AE0"; + diff --git a/include/assets/models/tracks/choco_mountain/choco_mountain_vertices.h b/include/assets/models/tracks/choco_mountain/choco_mountain_vertices.h new file mode 100644 index 000000000..1bd54f330 --- /dev/null +++ b/include/assets/models/tracks/choco_mountain/choco_mountain_vertices.h @@ -0,0 +1,502 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000000[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000200[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000400[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000600[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000800[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000A00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000A00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000B00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000B00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000D00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000D00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000E00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000E00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04000F80[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000F80"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040010C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040010C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001240[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001240"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040012C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040012C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001340[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001340"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040013C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040013C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001480[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001480"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001500[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001500"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040016A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040016A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001860[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001860"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040019A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040019A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001A60[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001A60"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001B40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001B40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001B90[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001B90"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001D80[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001D80"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001DE0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001DE0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04001FC0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001FC0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04002020[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002020"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040020F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040020F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040021B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040021B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040022D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040022D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040023B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040023B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040025A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040025A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04002630[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002630"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040026F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040026F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040028E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040028E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04002A30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002A30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04002C30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002C30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04002D70[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002D70"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04002F60[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002F60"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003020[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003020"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003110[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003110"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040032F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040032F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003380[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003380"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040034B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040034B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003690[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003690"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003780[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003780"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003970[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003970"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040039D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040039D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003BD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003BD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003D20[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003D20"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003F20[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003F20"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04003FB0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003FB0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040041A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040041A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040042E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040042E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040044E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040044E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04004540[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004540"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04004720[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004720"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04004920[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004920"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040049E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040049E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04004BC0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004BC0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04004CB0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004CB0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04004EB0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004EB0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04004F70[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004F70"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04005150[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005150"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04005240[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005240"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04005350[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005350"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040053D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040053D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040055B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040055B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040057A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040057A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04005980[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005980"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04005B70[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005B70"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04005CC0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005CC0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04005EB0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005EB0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04006070[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006070"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04006270[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006270"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04006470[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006470"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04006660[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006660"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040067C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040067C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040069B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040069B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04006B90[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006B90"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04006C30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006C30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04006E30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006E30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007010[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007010"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007210[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007210"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007410[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007410"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007550[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007550"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007740[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007740"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007930[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007930"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007B30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007B30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007BF0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007BF0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007DD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007DD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04007EF0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007EF0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040080F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040080F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040081A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040081A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008380[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008380"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008560[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008560"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008750[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008750"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008840[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008840"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008A30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008A30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008AF0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008AF0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008B30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008B30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008D20[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008D20"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008F10[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008F10"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04008FD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008FD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040091A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040091A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040092D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040092D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040094B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040094B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04009690[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009690"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040096C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040096C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040098A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040098A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040099C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040099C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04009BA0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009BA0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04009C00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009C00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04009DE0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009DE0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04009FC0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009FC0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400A020[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A020"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400A220[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A220"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400A400[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A400"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400A540[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A540"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400A630[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A630"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400A820[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A820"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400AA00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AA00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400ABE0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400ABE0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400AC60[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AC60"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400AE50[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AE50"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400B050[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B050"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400B1A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B1A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400B390[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B390"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400B590[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B590"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400B650[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B650"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400B830[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B830"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400BA30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BA30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400BC20[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BC20"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400BE00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BE00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400BE30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BE30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400C030[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C030"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400C1B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C1B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400C3A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C3A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400C580[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C580"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400C5B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C5B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400C5E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C5E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400C7D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C7D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400C9C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C9C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400CBB0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CBB0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400CDA0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CDA0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400CE90[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CE90"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400CFD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CFD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400D1D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D1D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400D3D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D3D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400D580[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D580"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400D780[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D780"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400D810[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D810"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400D9E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D9E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400DBD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DBD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400DDC0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DDC0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400DE20[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DE20"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400E010[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E010"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400E0D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E0D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400E2D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E2D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400E300[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E300"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400E4E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E4E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400E510[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E510"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400E6F0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E6F0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400E840[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E840"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400EA40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EA40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400EC40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EC40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400EE20[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EE20"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400EE50[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EE50"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400F040[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F040"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400F220[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F220"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400F310[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F310"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400F460[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F460"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400F650[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F650"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400F840[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F840"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400F980[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F980"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400FB10[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FB10"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400FD10[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FD10"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400FF00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FF00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x0400FF90[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FF90"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04010180[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010180"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040101E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040101E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040103C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040103C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04010400[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010400"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040105E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040105E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040106D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040106D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040108B0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040108B0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04010910[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010910"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04010AD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010AD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04010CD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010CD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04010ED0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010ED0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040110D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040110D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040112D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040112D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040114D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040114D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040116C0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040116C0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040118A0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040118A0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04011AA0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011AA0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04011CA0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011CA0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04011DD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011DD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04011F30[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011F30"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04011F90[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011F90"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012140[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012140"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012320[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012320"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012520[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012520"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012660[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012660"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012800[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012800"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012920[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012920"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012960[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012960"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012B40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012B40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012CA0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012CA0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04012E80[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012E80"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013060[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013060"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013240[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013240"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013420[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013420"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013480[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013480"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013660[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013660"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013860[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013860"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013890[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013890"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013A90[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013A90"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013AD0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013AD0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013BF0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013BF0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013D40[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013D40"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04013F00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013F00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014100[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014100"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014180[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014180"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014380[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014380"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014560[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014560"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014620[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014620"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014800[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014800"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014860[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014860"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040149E0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040149E0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014B00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014B00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014C20[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014C20"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014E00[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014E00"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04014F20[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014F20"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015120[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015120"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040152D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040152D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015450[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015450"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015510[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015510"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040155D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040155D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015650[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015650"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015690[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015690"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040156D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040156D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015750[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015750"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015790[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015790"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x040157D0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040157D0"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015910[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015910"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015A80[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015A80"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_vertex_0x04015AC0[] = "__OTR__models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015AC0"; + diff --git a/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h b/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h new file mode 100644 index 000000000..e6b193c34 --- /dev/null +++ b/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h @@ -0,0 +1,332 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_20[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_20"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_180[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_180"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_210[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_210"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_310[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_310"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_400[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_400"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_560[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_560"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_628[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_628"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_750[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_750"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_888[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_888"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_A10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_A10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_B00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_B00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_C30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_C30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_D98[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_D98"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_EF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_EF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1028[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1028"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1160[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1160"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_12E8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_12E8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1478[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1478"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_15E0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_15E0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1718[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1718"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1890[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1890"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1A00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1A00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1B20[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1B20"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1C20[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1C20"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1DB8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1DB8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1F20[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1F20"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_1FD8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_1FD8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_20A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_20A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2200[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2200"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2328[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2328"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2398[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2398"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2480[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2480"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2558[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2558"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2728[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2728"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2810[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2810"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2928[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2928"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2AC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2AC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2B88[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2B88"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2D70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2D70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_2E30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_2E30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3010[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3010"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3338[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3338"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3498[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3498"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_36A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_36A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3790[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3790"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3988[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3988"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3B28[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3B28"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3CC8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3CC8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3D88[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3D88"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_3F78[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_3F78"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4250[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4250"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_42F8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_42F8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4470[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4470"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_45C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_45C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4658[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4658"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4710[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4710"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4848[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4848"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4980[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4980"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4A38[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4A38"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4AE8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4AE8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4C18[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4C18"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4D10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4D10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4E10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4E10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_4FB0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_4FB0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_51B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_51B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_53F8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_53F8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5580[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5580"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5650[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5650"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_57A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_57A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5920[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5920"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_59B8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_59B8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5A50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5A50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5B90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5B90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5CB0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5CB0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5D70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5D70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5DF8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5DF8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5EC8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5EC8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_5FA8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_5FA8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6048[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6048"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6178[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6178"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_62D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_62D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6468[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6468"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6588[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6588"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6680[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6680"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6740[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6740"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_67C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_67C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_68D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_68D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_69C8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_69C8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6A70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6A70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6AD8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6AD8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6BE8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6BE8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6C70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6C70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6CB8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6CB8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6D10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6D10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6D88[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6D88"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6E00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6E00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6E48[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6E48"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6EB0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6EB0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_6F10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_6F10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_7008[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_7008"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_7080[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_7080"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_7108[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_7108"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model1[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model1"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model2[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model2"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model3[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model3"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model4[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model4"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model5[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model5"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model6[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model6"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model7[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model7"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model9[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model9"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model11[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model11"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model12[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model12"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model13[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model13"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model14[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model14"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_model15[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_model15"; + +static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_lights_9DE8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_lights_9DE8"; + +static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_lights_9E00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_lights_9E00"; + +static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_lights_9E18[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_lights_9E18"; + +static const ALIGN_ASSET(2) char dks_jungle_parkway_data_seg6_lights_9E30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/dks_jungle_parkway_data_seg6_lights_9E30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_DE48[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_DE48"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_DF30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_DF30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E030[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E030"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E048[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E048"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_railings_dl[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_railings_dl"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E068[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E068"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E150[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E150"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E238[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E238"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E250[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E250"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E310[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E310"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E320[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E320"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E578[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E578"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E588[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E588"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E618[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E618"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E628[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E628"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E688[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E688"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E6E8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E6E8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_E700[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_E700"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_dl[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_dl"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_paddle_model1[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_paddle_model1"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_paddle_model2[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_paddle_model2"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_boat_paddle_model3[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_boat_paddle_model3"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_FAE0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_FAE0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_FC08[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_FC08"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_FC18[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_FC18"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_paddle_wheel_dl[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_paddle_wheel_dl"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_FC38[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_FC38"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree_model[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree_model"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_tree1[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_tree1"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree2_model[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree2_model"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_tree2[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_tree2"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_model4[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_model4"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_tree3[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_tree3"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_palm_tree_model[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_palm_tree_model"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_13878[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_13878"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_palm_tree[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_palm_tree"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_kiwano_model[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_kiwano_model"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_kiwano_fruit[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_kiwano_fruit"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_dl_13C30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_dl_13C30"; + diff --git a/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists.h b/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists.h new file mode 100644 index 000000000..49b873687 --- /dev/null +++ b/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists.h @@ -0,0 +1,412 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_200[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_200"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_398[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_398"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_520[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_520"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6C8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7E0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7E0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_918[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_918"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_A40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_A40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_B68[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_B68"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_C90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_C90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_EC8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_EC8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_FD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_FD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_1118[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1118"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_12A8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_12A8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_1430[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1430"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_15B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_15B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_17D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_17D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_1970[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1970"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_1B38[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1B38"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_1C98[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1C98"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_1EB8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1EB8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2040[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2040"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_20A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_20A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2160[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2160"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_21C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_21C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2378[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2378"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_23F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_23F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2450[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2450"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_24B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_24B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2510[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2510"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2570[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2570"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2788[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2788"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2890[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2890"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_29F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_29F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2B78[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2B78"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2D00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2D00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2D60[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2D60"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2DC8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2DC8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2E28[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2E28"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2E88[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2E88"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_2FD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2FD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3058[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3058"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_30C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_30C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3130[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3130"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_31A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_31A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3228[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3228"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_32A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_32A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_32D8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_32D8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3348[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3348"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_33A8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_33A8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3420[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3420"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3498[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3498"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3508[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3508"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3588[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3588"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_35F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_35F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3660[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3660"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_36A8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_36A8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3748[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3748"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3758[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3758"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_37C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_37C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3A30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3A30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3A48[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3A48"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3AD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3AD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3AE0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3AE0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3B18[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3B18"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3B28[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3B28"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3BA8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3BA8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3C50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3C50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3D08[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3D08"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3DA8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3DA8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3DD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3DD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3E40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3E40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3EB0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3EB0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3F30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3F30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3FA8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3FA8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_3FD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3FD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4230[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4230"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4300[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4300"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4548[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4548"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4760[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4760"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4788[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4788"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4858[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4858"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4948[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4948"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4A08[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4A08"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4AB0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4AB0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4B90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4B90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4CA0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4CA0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4D30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4D30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4DB8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4DB8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4EB8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4EB8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_4FE8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4FE8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_50A8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_50A8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_51C8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_51C8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_52C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_52C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5420[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5420"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_54D8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_54D8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5558[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5558"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_55D8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_55D8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5648[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5648"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_56B8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_56B8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5768[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5768"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5800[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5800"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5890[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5890"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_58F8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_58F8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5970[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5970"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_59E0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_59E0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5A50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5A50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5AB0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5AB0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5B50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5B50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5BE0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5BE0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5C68[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5C68"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5D68[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5D68"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5DF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5DF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5E70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5E70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5EF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5EF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_5F80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5F80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6008[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6008"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6098[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6098"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_61B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_61B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6240[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6240"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6368[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6368"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6430[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6430"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_64C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_64C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6530[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6530"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_65A8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_65A8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6620[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6620"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_66B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_66B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6728[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6728"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6798[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6798"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6818[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6818"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6930[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6930"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_69A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_69A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6A10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6A10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6AA8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6AA8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6B48[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6B48"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6BD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6BD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6C38[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C38"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6C98[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C98"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6D08[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6D08"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6D68[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6D68"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6DD8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6DD8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6E40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6E40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6F10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6F10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_6F98[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6F98"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7048[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7048"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_70C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_70C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7170[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7170"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_71E8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_71E8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_72A8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_72A8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7390[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7390"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7400[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7400"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7488[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7488"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7538[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7538"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_76A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_76A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_77E8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_77E8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7920[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7920"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7A88[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7A88"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7B10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7B10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7C78[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7C78"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7DA0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7DA0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7E50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7E50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7F58[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7F58"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_7FC8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7FC8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_80A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_80A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8140[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8140"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8358[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8358"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8458[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8458"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_85A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_85A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8648[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8648"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_86B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_86B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8760[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8760"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8800[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8800"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_89B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_89B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8A40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8A40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8BA8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8BA8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8C60[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8C60"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8E78[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8E78"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_8F30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8F30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9000[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9000"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9128[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9128"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9250[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9250"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9268[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9268"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_92D8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_92D8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_92E8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_92E8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9390[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9390"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9418[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9418"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_94D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_94D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9588[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9588"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9630[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9630"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_96F8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_96F8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9790[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9790"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9838[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9838"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9880[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9880"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_98E0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_98E0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_98F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_98F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9988[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9988"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9A20[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9A20"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9A38[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9A38"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9B98[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9B98"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9BA8[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9BA8"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_packed_dl_9C18[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9C18"; + diff --git a/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices.h b/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices.h new file mode 100644 index 000000000..a58d677b3 --- /dev/null +++ b/include/assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices.h @@ -0,0 +1,770 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000000[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000180[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000180"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000200[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000240[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000240"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040002C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040002C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000340[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000340"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000440[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000440"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000500[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000500"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000540[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000540"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000580[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000580"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040005C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040005C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000600[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040006C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040006C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000740[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000740"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000780[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000780"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040007C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040007C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000800[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000840[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000840"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040008C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040008C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000980[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000980"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000A00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000A00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000A40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000A40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000AC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000AC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000B00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000B00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000BC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000BC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000C40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000C40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000C80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000C80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000CC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000CC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000D40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000D40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000E00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000E00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000E80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000E80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000F00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000F00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04000FC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000FC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001040[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001040"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040010C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040010C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001140[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001140"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040011C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040011C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001240[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001240"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040012C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040012C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001340[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001340"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040013C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040013C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001440[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001440"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040014C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040014C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001540[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001540"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040015C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040015C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001640[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001640"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001780[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001780"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001840[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001840"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001900[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001900"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040019C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040019C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001A80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001A80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001BC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001BC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001C00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001C40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001C80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001CC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001CC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001D80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001D80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001E40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001E40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001F00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001F00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04001FC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001FC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002040[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002040"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002080[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002080"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002140[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002140"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002180[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002180"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002200[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002200"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002280[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002280"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040022C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040022C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002300[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002300"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002340[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002340"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002380[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002380"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002400[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002400"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002540[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002540"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002640[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002640"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002780[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002780"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040028C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040028C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002900[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002900"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002A40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002A40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002B00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002B00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002B80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002B80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002C40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002C40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002CC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002CC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002E00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002E00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002EC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002EC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002F00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002F40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04002F80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003000[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003000"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040030C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040030C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003180[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003180"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040031C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040031C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003240[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003240"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003280[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003280"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040032C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040032C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003340[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003340"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003380[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003380"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003400[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003400"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003480[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003480"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003500[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003500"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003580[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003580"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040036C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040036C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003780[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003780"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003800[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003800"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003840[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003840"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003900[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003900"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003980[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003980"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003AC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003AC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003B40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003B40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003B80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003B80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003BC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003BC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003C00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003C00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003C40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003C40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003CC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003CC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003D00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003D40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003D80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003DC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003DC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003E30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003E30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003E70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003E70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003EB0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003EB0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003EF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003EF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003F30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003F30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003F70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003F70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04003FB0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003FB0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040040B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040040B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040040F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040040F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004130[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004130"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004170[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004170"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040041B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040041B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040041F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040041F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040042B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040042B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004330[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004330"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004370[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004370"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040043B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040043B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004430[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004430"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004470[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004470"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004530[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004530"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004570[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004570"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040045B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040045B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040045F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040045F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004630[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004630"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004690[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004690"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004710[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004710"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004750[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004750"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040047D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040047D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004850[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004850"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040048D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040048D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004910[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004910"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004950[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004950"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004990[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004990"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040049D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040049D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004A50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004A50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004AD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004AD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004B10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004B50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004B90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004BD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004BD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004C50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004C50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004C90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004C90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004D10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004D50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004D90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004F10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004F10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04004F90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004F90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005050[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005050"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005110[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005110"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005290[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005290"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005390[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005390"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005450[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005450"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005490[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005490"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005590[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005590"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005690[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005690"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005750[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005750"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005890[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005890"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005910[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005910"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040059D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040059D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005AD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005AD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005B50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005B50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005D50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005D50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04005F50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005F50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006150[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006150"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006350[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006350"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006550[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006550"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006750[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006750"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006950[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006950"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006A50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006A50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006BD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006BD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006CF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006CF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04006E90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006E90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007060[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007060"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040071F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040071F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007270[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007270"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040072E0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040072E0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007390[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007390"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007430[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007430"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007620[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007620"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007820[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007820"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007A10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007A10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007BD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007BD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007DC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007DC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04007E90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007E90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008090[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008090"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008290[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008290"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008490[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008490"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008610[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008610"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008810[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008810"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008A10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008A10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008BF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008BF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008D20[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008D20"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008F00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008F00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04008FC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008FC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040091A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040091A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009320[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009320"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009500[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009500"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009560[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009560"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009710[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009710"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040098F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040098F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009A10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009A10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009C10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009C10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009DA0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009DA0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009ED0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009ED0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04009FC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009FC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A1C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A1C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A370[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A370"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A450[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A450"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A5B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A5B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A6F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A6F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A7F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A7F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A8D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A8D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400A990[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A990"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400AB30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AB30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400AD10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AD10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400AD80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AD80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400AEC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AEC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400AF70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AF70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400AFF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AFF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B070[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B070"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B230[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B230"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B350[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B350"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B450[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B450"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B4D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B4D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B570[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B570"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B5F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B5F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B670[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B670"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B6B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B6B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B7F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B7F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400B9A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B9A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400BA90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BA90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400BC90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BC90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400BD60[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BD60"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400BE80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BE80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400BF60[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BF60"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C020[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C020"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C100[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C100"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C1C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C1C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C290[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C290"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C2F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C2F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C490[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C490"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C5A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C5A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C7A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C7A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400C890[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C890"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CA00[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CA00"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CAF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CAF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CB60[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CB60"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CBF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CBF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CC90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CC90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CD80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CD80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CE20[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CE20"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CE90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CE90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400CF50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CF50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D010[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D010"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D0D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D0D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D2C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D2C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D440[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D440"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D510[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D510"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D590[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D590"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D5D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D5D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D690[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D690"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D6D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D6D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D770[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D770"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D7F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D7F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400D9E0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D9E0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400DA80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DA80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400DB80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DB80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400DD70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DD70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400DE30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DE30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400DFC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DFC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400E060[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E060"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400E250[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E250"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400E280[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E280"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400E470[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E470"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400E580[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E580"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400E600[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E600"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400E740[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E740"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400E940[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E940"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400EB40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EB40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400ED40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400ED40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400EDD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EDD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400EFD0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EFD0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400F1D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F1D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400F3B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F3B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400F5A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F5A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400F7A0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F7A0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400F8F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F8F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400FAE0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FAE0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400FCE0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FCE0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400FEC0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FEC0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x0400FF30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FF30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04010050[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010050"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04010250[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010250"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04010450[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010450"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040105F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040105F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040107D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040107D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040109D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040109D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04010A10[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010A10"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04010B80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010B80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04010D80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010D80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04010F80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010F80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011000[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011000"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011200[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011200"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011300[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011300"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011480[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011480"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011680[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011680"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011860[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011860"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011A40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011A40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011C40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011C40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011DE0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011DE0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04011FE0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011FE0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04012160[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012160"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04012340[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012340"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04012540[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012540"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040126C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040126C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04012840[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012840"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040128C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040128C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04012A40[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012A40"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04012BA0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012BA0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04012DA0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012DA0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04012F80[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012F80"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04013180[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013180"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040132C0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040132C0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04013390[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013390"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04013590[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013590"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04013790[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013790"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04013910[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013910"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04013AF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013AF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04013CF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013CF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04013EF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013EF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040140F0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040140F0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040142D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040142D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040143D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040143D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040145B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040145B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040147B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040147B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040148B0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040148B0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04014970[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014970"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04014B70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014B70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04014C70[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014C70"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04014D30[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014D30"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04014ED0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014ED0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04014F90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014F90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015050[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015050"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015090[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015090"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040150D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040150D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040151D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040151D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040152D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040152D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040153D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040153D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040154D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040154D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015590[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015590"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015650[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015650"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015790[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015790"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040158D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040158D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015950[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015950"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x040159D0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040159D0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015A90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015A90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015B50[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015B50"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015B90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015B90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015D90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015D90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015EF0[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015EF0"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04015F90[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015F90"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_vertex_0x04016170[] = "__OTR__models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04016170"; + diff --git a/include/assets/models/tracks/double_deck/double_deck_data.h b/include/assets/models/tracks/double_deck/double_deck_data.h new file mode 100644 index 000000000..d32d2157e --- /dev/null +++ b/include/assets/models/tracks/double_deck/double_deck_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_double_deck_dl[] = "__OTR__models/tracks/double_deck/double_deck_data/d_course_double_deck_dl"; + diff --git a/include/assets/models/tracks/double_deck/double_deck_displaylists.h b/include/assets/models/tracks/double_deck/double_deck_displaylists.h new file mode 100644 index 000000000..67a2dc41e --- /dev/null +++ b/include/assets/models/tracks/double_deck/double_deck_displaylists.h @@ -0,0 +1,24 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_0[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_210[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_210"; + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_3A0[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_3A0"; + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_3B8[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_3B8"; + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_580[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_580"; + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_708[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_708"; + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_720[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_720"; + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_738[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_738"; + +static const ALIGN_ASSET(2) char d_course_double_deck_packed_dl_748[] = "__OTR__models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_748"; + diff --git a/include/assets/models/tracks/double_deck/double_deck_vertices.h b/include/assets/models/tracks/double_deck/double_deck_vertices.h new file mode 100644 index 000000000..2b9a2f819 --- /dev/null +++ b/include/assets/models/tracks/double_deck/double_deck_vertices.h @@ -0,0 +1,46 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04000000[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04000200[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04000400[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04000600[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04000800[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04000A00[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000A00"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04000C00[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000C00"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04000E00[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000E00"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001000[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001000"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001200[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001200"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001250[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001250"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001450[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001450"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001650[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001650"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001850[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001850"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001A50[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001A50"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001C50[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001C50"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001C80[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001C80"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04001E80[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001E80"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04002080[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04002080"; + +static const ALIGN_ASSET(2) char d_course_double_deck_vertex_0x04002280[] = "__OTR__models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04002280"; + diff --git a/include/assets/models/tracks/frappe_snowland/frappe_snowland_data.h b/include/assets/models/tracks/frappe_snowland/frappe_snowland_data.h new file mode 100644 index 000000000..e171ca717 --- /dev/null +++ b/include/assets/models/tracks/frappe_snowland/frappe_snowland_data.h @@ -0,0 +1,148 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_C8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_C8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1B8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1B8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_298[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_298"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_398[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_398"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_458[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_458"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_540[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_540"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_610[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_610"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_728[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_728"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_7C8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_7C8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_8C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_8C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_940[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_940"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_A38[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_A38"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_AA8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_AA8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_BA8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_BA8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_C38[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_C38"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_D28[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_D28"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_DA8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_DA8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_EC8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_EC8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_F90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_F90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1068[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1068"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1118[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1118"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1240[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1240"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1360[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1360"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1430[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1430"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_14E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_14E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1610[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1610"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1768[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1768"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1818[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1818"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1930[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1930"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1A50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1A50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1BC8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1BC8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1C80[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1C80"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1DE8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1DE8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_1E98[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_1E98"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2000[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2000"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_20B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_20B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2240[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2240"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2308[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2308"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2448[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2448"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2588[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2588"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2618[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2618"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2698[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2698"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2700[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2700"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2780[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2780"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_27F8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_27F8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2860[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2860"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_28A8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_28A8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2930[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2930"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_29B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_29B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2A40[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2A40"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2AB0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2AB0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2B48[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2B48"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2BA0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2BA0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2C00[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2C00"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2C50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2C50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2CB8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2CB8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2D20[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2D20"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2D78[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2D78"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2DD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2DD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2E40[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2E40"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_2F40[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_2F40"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_3000[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_3000"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_30D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_30D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_3198[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_3198"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_3270[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_3270"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_3328[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_3328"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_33E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_33E0"; + +static const ALIGN_ASSET(2) char d_frappe_snowland_tree[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_frappe_snowland_tree"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_tree[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_tree"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_dl_76A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_dl_76A0"; + diff --git a/include/assets/models/tracks/frappe_snowland/frappe_snowland_displaylists.h b/include/assets/models/tracks/frappe_snowland/frappe_snowland_displaylists.h new file mode 100644 index 000000000..e5ea9e378 --- /dev/null +++ b/include/assets/models/tracks/frappe_snowland/frappe_snowland_displaylists.h @@ -0,0 +1,288 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_88[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_88"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_98[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_98"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_A8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_A8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_B8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_250[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_250"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_370[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_370"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_520[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_520"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_548[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_548"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_808[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_808"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_818[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_818"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_878[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_878"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_8E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_8E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_960[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_960"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_9D8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_9D8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_A48[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_A48"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_AB0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_AB0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_B30[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B30"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_B70[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B70"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_BF0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_BF0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_CC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_CC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_D28[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_D28"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_DA0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_DA0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_E18[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_E18"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_E98[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_E98"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_F08[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_F08"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_FA0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_FA0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1018[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1018"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1080[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1080"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_10E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_10E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1150[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1150"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_11B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_11B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1218[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1218"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1288[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1288"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_12E8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_12E8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1360[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1360"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_13F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_13F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1458[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1458"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_14C8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_14C8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1538[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1538"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_15B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_15B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1628[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1628"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1698[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1698"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1708[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1708"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1748[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1748"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1860[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1860"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1910[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1910"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1A08[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1A08"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1B20[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1B20"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1BE8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1BE8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1C98[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1C98"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1D60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1D60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1E40[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1E40"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_1F10[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1F10"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2018[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2018"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_20C8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_20C8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2160[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2160"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2210[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2210"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_22C8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_22C8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2350[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2350"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2418[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2418"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_24A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_24A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2548[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2548"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_25D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_25D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2670[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2670"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_26A8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_26A8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2710[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2710"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_27A8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_27A8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2840[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2840"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_28D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_28D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2960[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2960"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_29E8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_29E8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2A90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2A90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2AD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2AD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2B38[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2B38"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_2B48[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2B48"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3118[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3118"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3128[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3128"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3358[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3358"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_35A8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_35A8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3758[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3758"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3B20[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3B20"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3B48[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3B48"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3BD8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3BD8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3CD8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3CD8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3D58[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3D58"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3DD8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3DD8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3E68[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3E68"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3EF8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3EF8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_3F80[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3F80"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4020[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4020"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_40B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_40B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4120[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4120"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4188[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4188"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4208[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4208"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4288[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4288"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4300[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4300"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4378[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4378"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_43E8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_43E8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4490[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4490"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4520[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4520"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4590[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4590"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4608[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4608"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4680[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4680"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4700[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4700"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4778[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4778"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_47F8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_47F8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4880[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4880"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_48C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_48C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_49E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_49E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4BA0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4BA0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4D18[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4D18"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4E40[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4E40"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4F00[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4F00"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_4FF8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4FF8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_50D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_50D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_51C8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_51C8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5330[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5330"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_54A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_54A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_55D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_55D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5740[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5740"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_58C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_58C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5988[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5988"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5A20[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5A20"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5AC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5AC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5B58[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5B58"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5BE0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5BE0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5C70[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5C70"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5D90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5D90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5E08[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5E08"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5EA8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5EA8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_5F90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5F90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_6088[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6088"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_61A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_61A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_6268[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6268"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_62F8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_62F8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_63D8[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_63D8"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_65E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_65E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_65F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_65F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_packed_dl_6638[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6638"; + diff --git a/include/assets/models/tracks/frappe_snowland/frappe_snowland_vertices.h b/include/assets/models/tracks/frappe_snowland/frappe_snowland_vertices.h new file mode 100644 index 000000000..30f01a79e --- /dev/null +++ b/include/assets/models/tracks/frappe_snowland/frappe_snowland_vertices.h @@ -0,0 +1,484 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000000[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000040[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000040"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000240[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000240"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000430[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000430"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000570[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000570"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000770[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000770"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040008E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040008E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000AE0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000AE0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000CC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000CC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000EB0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000EB0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04000FD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000FD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040011C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040011C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040013C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040013C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040015C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040015C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040017C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040017C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040019A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040019A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04001B90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04001B90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04001C50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04001C50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04001E40[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04001E40"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04002020[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002020"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04002200[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002200"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040023E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040023E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040025C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040025C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040027A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040027A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04002990[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002990"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04002B90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002B90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04002D80[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002D80"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04002F80[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002F80"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003170[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003170"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003230[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003230"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003260[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003260"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040032D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040032D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003430[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003430"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003530[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003530"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003610[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003610"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003690[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003690"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040037D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040037D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003900[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003900"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003940[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003940"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003A50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003A50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003AD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003AD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003BD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003BD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003CD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003CD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003E00[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003E00"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003EC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003EC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003F00[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003F00"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04003F40[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003F40"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004040[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004040"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040040C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040040C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004100[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004100"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040041C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040041C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004200[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004200"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004280[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004280"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004340[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004340"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004380[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004380"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004460[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004460"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040044C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040044C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004540[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004540"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040045C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040045C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004670[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004670"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004720[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004720"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004790[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004790"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004810[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004810"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004A10[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004A10"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004AA0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004AA0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004BF0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004BF0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004DF0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004DF0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04004E20[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004E20"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005020[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005020"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005110[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005110"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040052D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040052D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005450[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005450"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040055F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040055F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040057E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040057E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005990[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005990"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005B90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005B90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005C10[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005C10"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005D20[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005D20"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005E10[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005E10"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04005F60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005F60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040060C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040060C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006180[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006180"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006360[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006360"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006420[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006420"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006520[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006520"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040065F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040065F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006640[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006640"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006750[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006750"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006890[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006890"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040069A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040069A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006AD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006AD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006BD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006BD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006D60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006D60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006DA0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006DA0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04006F80[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006F80"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04007160[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007160"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04007350[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007350"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04007530[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007530"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04007720[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007720"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04007900[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007900"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04007AE0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007AE0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04007CE0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007CE0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04007EC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007EC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040080A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040080A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04008280[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008280"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04008480[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008480"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04008680[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008680"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04008860[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008860"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04008A60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008A60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04008C60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008C60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04008E60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008E60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04009040[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009040"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04009230[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009230"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04009410[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009410"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040095F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040095F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040097D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040097D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040099B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040099B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04009BB0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009BB0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04009D90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009D90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04009F80[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009F80"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400A0E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A0E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400A2D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A2D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400A4C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A4C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400A6C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A6C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400A8A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A8A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400AA90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400AA90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400AC80[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400AC80"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400AE80[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400AE80"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400B000[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B000"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400B200[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B200"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400B400[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B400"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400B600[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B600"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400B800[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B800"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400B9F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B9F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400BBF0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400BBF0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400BDD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400BDD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400BFC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400BFC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400C1A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C1A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400C3A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C3A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400C590[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C590"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400C780[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C780"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400C960[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C960"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400C9F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C9F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400CBF0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400CBF0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400CDF0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400CDF0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400CFE0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400CFE0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400D1D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D1D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400D3D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D3D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400D5D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D5D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400D7D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D7D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400D9D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D9D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400DBB0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400DBB0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400DDB0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400DDB0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400DF90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400DF90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400E180[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E180"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400E380[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E380"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400E4E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E4E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400E6A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E6A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400E6E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E6E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400E8E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E8E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400E960[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E960"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400EAA0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400EAA0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400EBE0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400EBE0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400EDA0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400EDA0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400EF60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400EF60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F0E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F0E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F120[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F120"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F1A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F1A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F360[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F360"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F420[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F420"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F4A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F4A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F5E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F5E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F720[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F720"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F820[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F820"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F920[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F920"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400F9E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F9E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400FBE0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FBE0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400FC20[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FC20"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400FCD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FCD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400FDD0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FDD0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400FEB0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FEB0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x0400FFF0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FFF0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040100F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040100F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04010230[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010230"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040103A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040103A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040105A0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040105A0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04010770[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010770"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04010970[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010970"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04010B70[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010B70"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04010D10[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010D10"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04010F00[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010F00"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040110E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040110E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040112E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040112E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040114E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040114E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040116D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040116D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04011850[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011850"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04011A50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011A50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04011B60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011B60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04011D50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011D50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04011DC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011DC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04011FC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011FC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040120C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040120C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040122B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040122B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040124B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040124B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040125D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040125D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040127D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040127D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040129B0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040129B0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04012A50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04012A50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04012C50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04012C50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04012E50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04012E50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04012E90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04012E90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04013070[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013070"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04013270[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013270"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040132E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040132E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040134D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040134D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040136D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040136D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040137E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040137E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04013980[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013980"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04013AE0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013AE0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04013C70[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013C70"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04013DC0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013DC0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04013F20[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013F20"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04014070[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014070"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04014270[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014270"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040143D0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040143D0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04014490[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014490"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040145E0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040145E0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040147C0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040147C0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04014850[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014850"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04014A50[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014A50"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04014B70[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014B70"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04014D60[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014D60"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04014E90[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014E90"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04015070[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015070"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x040150F0[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040150F0"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04015210[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015210"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04015410[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015410"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04015610[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015610"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_vertex_0x04015810[] = "__OTR__models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015810"; + diff --git a/include/assets/models/tracks/kalimari_desert/kalimari_desert_data.h b/include/assets/models/tracks/kalimari_desert/kalimari_desert_data.h new file mode 100644 index 000000000..2be8e827a --- /dev/null +++ b/include/assets/models/tracks/kalimari_desert/kalimari_desert_data.h @@ -0,0 +1,576 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_100[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_100"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_258[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_258"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_310[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_310"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_778[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_778"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_858[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_858"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_A58[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_A58"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_B38[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_B38"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_CD0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_CD0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_DD0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_DD0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_F68[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_F68"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1030[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1030"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1258[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1258"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1350[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1350"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_14C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_14C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1588[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1588"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_17C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_17C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_18C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_18C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1A58[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1A58"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B38[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1B38"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D48[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D48"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2000[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_2000"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_22D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2458[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_2458"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_25D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_25D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_26E8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_26E8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2868[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_2868"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_29C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_29C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2B40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_2B40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2C88[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_2C88"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2DE8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_2DE8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_2F30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_2F30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3068[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3068"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_31C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_31C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_32F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_32F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3460[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3460"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3590[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3590"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3718[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3718"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3818[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3818"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3998[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3998"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3AC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3AC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3CA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3CA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3DB8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3DB8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_3FB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_3FB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_40A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_40A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4280[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4280"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4358[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4358"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4538[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4538"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4630[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4630"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4908[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4908"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_49E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_49E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4BA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4BA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4CF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4CF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4EF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4EF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_4FB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_4FB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5100[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5100"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5208[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5208"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_53A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_53A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5470[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5470"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_55C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_55C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5730[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5730"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5898[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5898"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5978[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5978"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5AD0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5AD0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5BE8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5BE8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5D20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5D20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5DF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5DF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_5F20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_5F20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_6028[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_6028"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_61B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_61B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_62F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_62F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_63E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_63E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_65B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_65B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_66F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_66F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_6838[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_6838"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_6940[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_6940"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_cactus_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_cactus_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_cactus_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_cactus_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_cactus1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_cactus1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_cactus2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_cactus2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_cactus3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_cactus3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_active_model[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_active_model"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model4[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model4"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model5[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model5"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model6[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model6"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model7[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model7"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model9[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model9"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_signal_unknown_model11[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_signal_unknown_model11"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_crossing_right_active[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_crossing_right_active"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_crossing_left_active[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_crossing_left_active"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_crossing_both_inactive[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_crossing_both_inactive"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_model_lod2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_model_lod2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model4[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model4"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model5[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model5"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model6[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model6"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model7[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model7"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model9[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model9"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model11[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model11"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model12[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model12"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model13[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model13"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model14[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model14"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model15[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model15"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model16[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model16"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model17[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model17"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model18[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model18"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model19[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model19"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_locomotive_model21[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_locomotive_model21"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B7C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1B7C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B850[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1B850"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B950[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1B950"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B968[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1B968"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B978[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1B978"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1B990[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1B990"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1BD18[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1BD18"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1BD58[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1BD58"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1BEF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1BEF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1BF90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1BF90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1C0B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1C0B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1C0E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1C0E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1C0F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1C0F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_model_lod1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_model_lod1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model4[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model4"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model5[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model5"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model6[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model6"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model7[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model7"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model9[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model9"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model11[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model11"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model12[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model12"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model13[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model13"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_locomotive_model14[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_locomotive_model14"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1CFA8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1CFA8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D038[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D038"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D138[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D138"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D150[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D150"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D160[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D160"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D178[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D178"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D418[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D418"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D450[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D450"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D540[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D540"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D598[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D598"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D630[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D630"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D660[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D660"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1D670[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1D670"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_model_lod0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_model_lod0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model4[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model4"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model5[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model5"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model6[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model6"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model7[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model7"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model9[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model9"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model11[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model11"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model12[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model12"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_locomotive_model13[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_locomotive_model13"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E2C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E2C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E358[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E358"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E458[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E458"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E470[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E470"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E480[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E480"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E498[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E498"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E6D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E6D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E710[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E710"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E800[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E800"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E858[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E858"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E8D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E8D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E900[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E900"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1E910[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1E910"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_tender_model_lod2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_tender_model_lod2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_tender_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_tender_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_tender_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_tender_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_tender_model3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_tender_model3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_tender_model4[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_tender_model4"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1EFD8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1EFD8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F050[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F050"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F0D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F0D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F1F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F1F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F218[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F218"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F228[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F228"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_tender_model_lod1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_tender_model_lod1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_tender_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_tender_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_tender_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_tender_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F570[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F570"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F5E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F5E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F6E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F6E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F6F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F6F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F708[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F708"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F720[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F720"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_tender_model_lod0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_tender_model_lod0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_tender_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_tender_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_tender_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_tender_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F988[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F988"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1F9D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1F9D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1FAD0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1FAD0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1FAE8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1FAE8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1FAF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1FAF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_1FB10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_1FB10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_chassis_model_lod2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_carriage_chassis_model_lod2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model4[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model4"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model5[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model5"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model6[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model6"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model7[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model7"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model9[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model9"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod2_carriage_chassis_model10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod2_carriage_chassis_model10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20578[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20578"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20610[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20610"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20620[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20620"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20630[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20630"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20688[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20688"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_208A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_208A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20928[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20928"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20980[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20980"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_209C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_209C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_209F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_209F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20A08[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20A08"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_20A20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_20A20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_chassis_model_lod1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_carriage_chassis_model_lod1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model4[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model4"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model5[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model5"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model6[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model6"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model7[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model7"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod1_carriage_chassis_model8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod1_carriage_chassis_model8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21178[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21178"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21200[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21200"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21210[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21210"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21220[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21220"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21238[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21238"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21288[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21288"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21480[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21480"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_214D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_214D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21518[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21518"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21540[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21540"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21550[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21550"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_model_lod0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_carriage_model_lod0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model3[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model3"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model4[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model4"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_lod0_carriage_model5[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_lod0_carriage_model5"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_219D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_219D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21A60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21A60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21A70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21A70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21A80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21A80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21A98[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21A98"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21AE8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21AE8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21BC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21BC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21C10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21C10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21C58[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21C58"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21C80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21C80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_21C90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_21C90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_model1[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_model2[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22D28[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_22D28"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22D70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_22D70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22DB8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_22DB8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_dl_22E00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_dl_22E00"; + diff --git a/include/assets/models/tracks/kalimari_desert/kalimari_desert_displaylists.h b/include/assets/models/tracks/kalimari_desert/kalimari_desert_displaylists.h new file mode 100644 index 000000000..e4aefbb71 --- /dev/null +++ b/include/assets/models/tracks/kalimari_desert/kalimari_desert_displaylists.h @@ -0,0 +1,616 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_68[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_68"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_138[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_138"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_208[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_208"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_270[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_270"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_358[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_358"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_458[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_458"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_538[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_538"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_760[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_760"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_840[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_840"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_900[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_900"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_998[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_998"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A08[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A08"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A18[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A18"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_AF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_AF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_B58[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_B58"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_BC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_BC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_C30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_C30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_C98[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_C98"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_CF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_CF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_D60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_D60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_DC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_DC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_E20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_E20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_E80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_E80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_EE8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_EE8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_F48[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_F48"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_FB8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_FB8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1028[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1028"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1098[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1098"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1110[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1110"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1178[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1178"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_11E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_11E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1248[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1248"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_12F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_12F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_13D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_13D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_14A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_14A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1580[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1580"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1650[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1650"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1678[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1678"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1710[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1710"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1898[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1898"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_19B8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_19B8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1A78[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1A78"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1B18[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1B18"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1B48[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1B48"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1BE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1BE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1C78[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1C78"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1D10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1D10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1DA8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1DA8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1E40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1E40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1ED8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1ED8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1F10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1F10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_1F78[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1F78"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2000[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2000"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2068[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2068"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_20D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_20D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2130[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2130"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2198[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2198"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_21F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_21F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2260[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2260"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_22D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_22D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2338[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2338"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_23C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_23C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2430[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2430"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_24B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_24B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2528[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2528"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2598[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2598"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2620[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2620"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2698[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2698"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2710[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2710"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2778[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2778"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2808[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2808"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2878[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2878"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_28E8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_28E8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2960[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2960"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_29F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_29F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2AB8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2AB8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2B20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2B20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2B80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2B80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2BE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2BE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2C48[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2C48"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2CB8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2CB8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2D20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2D20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2D90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2D90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2DF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2DF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2E60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2E60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2EC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2EC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2F30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2F30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_2FB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2FB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3018[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3018"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3080[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3080"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_30E8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_30E8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3158[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3158"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_31C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_31C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3228[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3228"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3298[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3298"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3300[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3300"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3368[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3368"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_33D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_33D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3440[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3440"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_34A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_34A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3508[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3508"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3568[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3568"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_35D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_35D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3640[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3640"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_36A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_36A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3710[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3710"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3780[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3780"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_37F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_37F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3858[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3858"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_38C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_38C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3930[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3930"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_39A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_39A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3A10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3A10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3A80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3A80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3AE8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3AE8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3B48[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3B48"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3BC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3BC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3C30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3C30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3C98[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3C98"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3D00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3D00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3D68[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3D68"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3DC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3DC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3E30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_3E90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4018[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4018"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_40D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_40D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4130[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4130"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_41E8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_41E8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4260[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4260"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4350[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4350"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4438[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4438"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_44F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_44F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_45D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_45D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_46C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_46C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_47A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_47A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4878[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4878"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4948[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4948"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_49B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_49B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4A10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4A10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4AA8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4AA8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4B08[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4B08"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4B78[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4B78"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4BD8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4BD8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4C40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4C40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4CB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4CB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4D20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4D20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4D90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4D90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4DF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4DF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4E60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4E60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4EC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4EC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4F40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4F40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_4FB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4FB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5020[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5020"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5090[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5090"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5100[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5100"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5170[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5170"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_51D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_51D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5238[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5238"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_52E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_52E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5360[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5360"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_53D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_53D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5450[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5450"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_54C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_54C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5580[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5580"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_55F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_55F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_56A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_56A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5728[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5728"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_57D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_57D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5878[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5878"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5948[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5948"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_59F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_59F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5A60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5A60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5B00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5B00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5B88[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5B88"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5C20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5C20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5C90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5C90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5D30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5D30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5DB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5DB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5E38[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5E38"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5EB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5EB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5F28[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5F28"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_5FB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5FB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6050[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6050"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_60C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_60C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6130[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6130"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_61D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_61D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6290[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6290"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6310[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6310"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_63C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_63C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6490[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6490"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6530[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6530"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_65F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_65F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_66C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_66C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6780[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6780"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6820[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6820"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_68E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_68E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6958[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6958"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_69F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_69F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6A78[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6A78"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6B28[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6B28"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6BC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6BC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6C70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6C70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6CF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6CF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6DA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6DA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6E38[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6E38"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6EE8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6EE8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_6F70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6F70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_70F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_70F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_71C8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_71C8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_71D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_71D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_72B8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_72B8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_73A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_73A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_74A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_74A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_7598[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7598"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_75C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_75C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_76C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_76C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_7728[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7728"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_77F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_77F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_7890[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7890"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_79F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_79F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_7BC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7BC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_7CC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7CC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_7E18[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7E18"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_7F80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7F80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_80B8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_80B8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_81A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_81A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8330[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8330"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8398[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8398"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8418[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8418"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8490[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8490"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8508[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8508"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_85A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_85A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8610[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8610"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8690[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8690"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8728[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8728"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8798[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8798"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8808[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8808"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8888[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8888"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8920[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8920"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8990[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8990"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8A40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8A40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8AC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8AC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8B60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8B60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8C08[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8C08"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8C98[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8C98"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8D20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8D20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8D98[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8D98"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8E20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8E20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8EC8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8EC8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8F50[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8F50"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_8FF8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8FF8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9068[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9068"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_90D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_90D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9138[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9138"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_91A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_91A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9210[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9210"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9280[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9280"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_92F8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_92F8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9368[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9368"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_93F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_93F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9480[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9480"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9510[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9510"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9598[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9598"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9630[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9630"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_96A8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_96A8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9740[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9740"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_97B8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_97B8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9820[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9820"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_98E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_98E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9958[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9958"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_99D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_99D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9A68[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9A68"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9B10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9B10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9BD8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9BD8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9C50[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9C50"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9CC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9CC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9D48[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9D48"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9DC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9DC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9E38[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9E38"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9EB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9EB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9F20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9F88[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F88"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_9FE8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9FE8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A050[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A050"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A0C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A0C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A138[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A138"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A1A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A1A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A228[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A228"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A2D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A2D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A350[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A350"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A3D8[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A3D8"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A458[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A458"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A4D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A4D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A548[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A548"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A5F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A5F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_packed_dl_A670[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A670"; + diff --git a/include/assets/models/tracks/kalimari_desert/kalimari_desert_vertices.h b/include/assets/models/tracks/kalimari_desert/kalimari_desert_vertices.h new file mode 100644 index 000000000..a2342422f --- /dev/null +++ b/include/assets/models/tracks/kalimari_desert/kalimari_desert_vertices.h @@ -0,0 +1,758 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000000[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000080[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000100[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000100"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000180[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000180"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000200[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000280[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000280"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000300[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000300"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000500[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000500"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000580[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000580"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000700[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000700"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000800[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040009E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040009E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000B00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000B00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000CE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000CE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000D40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000D40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04000F40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000F40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001120[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001120"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001180[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001180"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001360[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001360"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001480[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001480"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001660[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001660"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040016C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040016C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001880[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001880"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040018C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040018C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001920[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001920"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040019B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040019B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001A10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001A10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001B00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001B00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001B90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001B90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001C00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001C00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001C60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001C60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001CF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001CF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001D50[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001D50"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001DB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001DB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001E10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001E10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001EB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001EB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001EE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001EE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04001FC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001FC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040020C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040020C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040021E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040021E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002340[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002340"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040023F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040023F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002470[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002470"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002500[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002500"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002630[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002630"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002790[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002790"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002890[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002890"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002990[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002990"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002A70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002A70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002B70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002B70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002C30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002C30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002CF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002CF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04002EB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002EB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003090[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003090"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003290[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003290"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003460[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003460"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003660[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003660"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003830[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003830"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003A30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003A30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003AB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003AB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003C70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003C70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003CB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003CB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003CF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003CF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003D30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003D30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003D70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003D70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003DB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003DB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003DF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003DF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003E30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003E30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003E70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003E70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003EB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003EB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003EF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003EF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003F30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003F30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003F70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003F70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04003FF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003FF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004170[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004170"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040041F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040041F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004270[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004270"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040042B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040042B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004330[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004330"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004370[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004370"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040043F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040043F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040044B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040044B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004530[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004530"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040046B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040046B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004770[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004770"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040048B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040048B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040049B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040049B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004A70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004A70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004BE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004BE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004CE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004CE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004E20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004E20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04004EA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004EA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005060[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005060"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005120[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005120"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040051E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040051E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040052D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040052D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005490[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005490"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005550[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005550"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040055B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040055B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005610[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005610"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005690[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005690"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005760[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005760"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040057E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040057E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040058C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040058C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005970[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005970"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005A00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005A00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005A90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005A90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005B50[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005B50"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005CF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005CF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005D70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005D70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005E20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005E20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005EA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005EA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04005F80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005F80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006010[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006010"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040060D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040060D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040061B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040061B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006240[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006240"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040062D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040062D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040063B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040063B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006430[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006430"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040064D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040064D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006520[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006520"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006570[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006570"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006680[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006680"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006740[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006740"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040067A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040067A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006880[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006880"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006990[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006990"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006A70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006A70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006B30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006B30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006C40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006C40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006D00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006D00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006E30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006E30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006EF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006EF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04006FD0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006FD0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007070[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007070"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040070C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040070C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007260[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007260"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040072D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040072D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007390[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007390"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007440[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007440"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040074F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040074F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007550[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007550"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040075E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040075E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007640[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007640"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007680[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007680"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007700[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007700"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007740[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007740"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007780[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007780"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007800[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007800"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040078A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040078A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007960[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007960"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007A60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007A60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007B60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007B60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007C60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007C60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007CA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007CA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007D20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007D20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007DE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007DE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007EE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007EE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04007FA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007FA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040080A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040080A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008160[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008160"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008270[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008270"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040082F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040082F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040083B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040083B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008470[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008470"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008510[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008510"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008550[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008550"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008590[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008590"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040085D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040085D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008630[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008630"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008710[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008710"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008750[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008750"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040087F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040087F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008910[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008910"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040089E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040089E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008AB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008AB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008B30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008B30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008BF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008BF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008C80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008C80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008DA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008DA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008E70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008E70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04008F50[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008F50"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009010[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009010"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009100[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009100"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040091C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040091C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009200[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009200"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040092A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040092A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009420[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009420"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040094F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040094F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040096C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040096C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009820[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009820"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009A20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009A20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009BC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009BC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009C80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009C80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009E80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009E80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04009F40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009F40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400A140[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A140"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400A330[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A330"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400A450[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A450"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400A640[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A640"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400A6B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A6B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400A890[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A890"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400AA70[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AA70"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400AAF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AAF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400ACF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400ACF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400ADE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400ADE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400AEE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AEE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400B0D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B0D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400B190[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B190"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400B370[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B370"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400B550[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B550"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400B5B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B5B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400B6C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B6C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400B8B0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B8B0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400B940[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B940"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400BAE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BAE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400BCE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BCE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400BE20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BE20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400BF60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BF60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400C150[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C150"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400C340[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C340"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400C400[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C400"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400C520[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C520"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400C5A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C5A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400C780[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C780"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400C860[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C860"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400CA40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CA40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400CBE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CBE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400CDA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CDA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400CF90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CF90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400D100[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D100"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400D2E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D2E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400D4D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D4D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400D590[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D590"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400D790[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D790"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400D840[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D840"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400DA40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DA40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400DC30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DC30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400DE10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DE10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400E000[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E000"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400E060[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E060"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400E260[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E260"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400E430[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E430"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400E610[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E610"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400E690[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E690"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400E880[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E880"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400EA80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EA80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400EBE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EBE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400EDD0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EDD0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400EE60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EE60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400F000[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F000"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400F200[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F200"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400F330[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F330"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400F510[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F510"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400F5A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F5A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400F780[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F780"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400F8A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F8A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400FA30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FA30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400FC20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FC20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400FD90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FD90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400FF80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FF80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x0400FFE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FFE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040101E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040101E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04010310[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010310"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04010500[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010500"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04010700[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010700"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04010780[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010780"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040108E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040108E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040109E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040109E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04010B20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010B20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04010C60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010C60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04010DE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010DE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04010F60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010F60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040110A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040110A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040111E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040111E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040112E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040112E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040114E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040114E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04011560[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011560"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040115E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040115E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040116E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040116E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04011860[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011860"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040119E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040119E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04011BE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011BE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04011DE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011DE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04011FE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011FE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040121E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040121E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040123E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040123E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04012440[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012440"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04012540[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012540"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04012740[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012740"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040128C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040128C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04012AC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012AC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04012B80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012B80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04012D00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012D00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04012F00[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012F00"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013100[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013100"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013280[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013280"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013480[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013480"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013520[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013520"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040135E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040135E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013760[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013760"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040138A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040138A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013AA0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013AA0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013B20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013B20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013B80[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013B80"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013CC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013CC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013DC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013DC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04013EC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013EC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040140C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040140C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014180[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014180"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040142C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040142C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014300[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014300"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014340[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014340"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014400[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014400"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040144C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040144C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014600[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014600"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014800[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014800"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040148C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040148C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014AC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014AC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014B40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014B40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014CC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014CC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04014EC0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014EC0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040150C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040150C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015100[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015100"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040152C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040152C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015440[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015440"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015540[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015540"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040156C0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040156C0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015820[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015820"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015A20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015A20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015A60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015A60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015B20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015B20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015BE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015BE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015C20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015C20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015CE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015CE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015D60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015D60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015E20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015E20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015F20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015F20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04015FE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015FE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016160[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016160"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040162D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040162D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016490[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016490"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016610[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016610"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016810[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016810"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016910[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016910"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016B10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016B10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016C10[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016C10"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016C90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016C90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016E90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016E90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04016F90[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016F90"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017090[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017090"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040171D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040171D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017360[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017360"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017560[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017560"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040175A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040175A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017720[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017720"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040177F0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040177F0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040179E0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040179E0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017B60[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017B60"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017CE0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017CE0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017E30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017E30"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017F20[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017F20"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04017FB0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017FB0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018010[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018010"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040180D0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040180D0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x040181A0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040181A0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018280[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018280"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018310[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018310"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018500[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018500"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018700[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018700"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018790[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018790"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018950[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018950"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018B40[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018B40"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018CF0[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018CF0"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_vertex_0x04018E30[] = "__OTR__models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018E30"; + diff --git a/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h b/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h new file mode 100644 index 000000000..1ce7ca348 --- /dev/null +++ b/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h @@ -0,0 +1,682 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_118[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_118"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_188[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_188"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_218[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_218"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_278[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_278"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_328[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_328"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_458[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_458"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_530[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_530"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_658[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_658"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_790[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_790"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_828[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_828"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_960[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_960"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_B10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_B10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_B98[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_B98"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_C50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_C50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_CF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_CF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_DB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_DB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_E48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_E48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_EE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_EE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_F60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_F60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1040[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1040"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_10D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_10D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1178[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1178"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1218[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1218"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1310[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1310"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_13B8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_13B8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1430[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1430"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1498[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1498"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1558[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1558"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_15E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_15E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1680[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1680"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1708[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1708"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_17B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_17B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1818[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1818"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1878[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1878"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1940[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1940"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1988[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1988"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_19E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_19E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1A50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1A50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1AA8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1AA8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1AD8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1AD8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1B50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1B50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1BB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1BB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1C00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1C00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1C48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1C48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1CB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1CB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1D20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1D20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1D88[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1D88"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1DE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1DE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1E40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1E40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1EB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1EB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1F68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1F68"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_1FE8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_1FE8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2058[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2058"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_20C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_20C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2178[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2178"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2200[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2200"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2258[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2258"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_22C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_22C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2390[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2390"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2440[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2440"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_24C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_24C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2540[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2540"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_25D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_25D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2660[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2660"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_26E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_26E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2760[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2760"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2800[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2800"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2898[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2898"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2910[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2910"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2988[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2988"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2A18[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2A18"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2AA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2AA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2B08[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2B08"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2B78[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2B78"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2C28[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2C28"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2CC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2CC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2D50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2D50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2DC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2DC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2E38[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2E38"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2EC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2EC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2F30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2F30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_2FB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_2FB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3050[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3050"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_30E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_30E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3198[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3198"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3218[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3218"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3278[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3278"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3308[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3308"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3370[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3370"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_33F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_33F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_34B8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_34B8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3550[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3550"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3628[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3628"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_36D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_36D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3730[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3730"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_37B8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_37B8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3830[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3830"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_38A8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_38A8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3980[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3980"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3A10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3A10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3B10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3B10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3BB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3BB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3C28[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3C28"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3CC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3CC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3D40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3D40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3DC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3DC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3EA8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3EA8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_3F20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_3F20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4028[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4028"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_40C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_40C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4138[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4138"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_41D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_41D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4260[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4260"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_42D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_42D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_43C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_43C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4450[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4450"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4548[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4548"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_45D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_45D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4670[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4670"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4700[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4700"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_47C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_47C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4840[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4840"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4948[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4948"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_49F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_49F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4B28[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4B28"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4BC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4BC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4C70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4C70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4D08[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4D08"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4DC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4DC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4E70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4E70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4F58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4F58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_4FF8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_4FF8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5120[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5120"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_51C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_51C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5248[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5248"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_52D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_52D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5358[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5358"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_53B8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_53B8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5480[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5480"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5500[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5500"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_55D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_55D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5628[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5628"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_56D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_56D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5778[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5778"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5840[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5840"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_58E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_58E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_59C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_59C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5A50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5A50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5B48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5B48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5BB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5BB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5C88[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5C88"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5D28[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5D28"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5DB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5DB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5E28[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5E28"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5EE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5EE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_5F58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_5F58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6000[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6000"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6050[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6050"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6128[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6128"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_61D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_61D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6268[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6268"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_62F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_62F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6398[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6398"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6410[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6410"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6498[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6498"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_64F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_64F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_65B8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_65B8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6660[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6660"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6718[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6718"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_67A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_67A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6830[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6830"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6898[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6898"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6918[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6918"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6968[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6968"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6A28[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6A28"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6AC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6AC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6B88[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6B88"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6C18[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6C18"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6CA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6CA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6D10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6D10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6DB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6DB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6E18[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6E18"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6ED0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6ED0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_6F70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_6F70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7060[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7060"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7100[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7100"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7168[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7168"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_71C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_71C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_72B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_72B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7338[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7338"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_73F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_73F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7478[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7478"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_75A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_75A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7640[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7640"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_76A8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_76A8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7718[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7718"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7840[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7840"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_78E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_78E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7978[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7978"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_79E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_79E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7AE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7AE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7B50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7B50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7BA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7BA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7C08[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7C08"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7CE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7CE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7D58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7D58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7DD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7DD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7E38[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7E38"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7EE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7EE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7F68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7F68"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_7FC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_7FC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8048[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8048"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_80E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_80E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8150[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8150"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_81B8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_81B8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8228[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8228"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_82D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_82D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8368[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8368"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_83D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_83D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8448[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8448"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_84D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_84D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8550[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8550"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_85E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_85E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8650[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8650"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8710[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8710"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8790[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8790"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8800[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8800"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8878[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8878"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_88F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_88F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8958[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8958"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8A20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8A20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8A98[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8A98"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8BB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8BB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8C48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8C48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8CC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8CC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8D48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8D48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8DC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8DC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8E30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8E30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_8F50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_8F50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9008[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9008"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_90F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_90F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9188[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9188"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9210[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9210"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9288[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9288"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_92E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_92E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9378[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9378"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9498[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9498"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9548[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9548"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9618[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9618"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_96A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_96A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9720[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9720"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9798[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9798"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9818[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9818"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_98A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_98A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_99A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_99A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9A30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9A30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9AE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9AE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9B58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9B58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9BC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9BC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9C38[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9C38"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9D00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9D00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9D98[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9D98"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9E60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9E60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9ED8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9ED8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9F78[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9F78"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_9FE8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_9FE8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A070[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A070"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A0D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A0D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A190[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A190"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A220[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A220"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A2E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A2E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A340[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A340"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A428[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A428"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A4D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A4D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A578[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A578"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A608[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A608"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A6F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A6F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A780[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A780"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A828[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A828"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A8D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A8D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_A9A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_A9A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AA38[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AA38"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AAE8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AAE8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AB88[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AB88"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AC10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AC10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AC68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AC68"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_AD40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_AD40"; + +static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_lights_14BE8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_lights_14BE8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_model[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_model"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model1[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model2[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model3[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model3"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_16630[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_16630"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_wing_model[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_wing_model"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_16850[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_16850"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_wing_2_model[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_wing_2_model"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_168F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_168F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_wing_3_model[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_wing_3_model"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_16990[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_16990"; + +static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_lights_16B78[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_lights_16B78"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_tree_model[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_tree_model"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model4[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model4"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18520[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18520"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_185E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_185E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_top1[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_top1"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18608[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18608"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_186A8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_186A8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_trunk1[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_trunk1"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_tree_2_model[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_tree_2_model"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model5[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model5"; + +static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_lights_18858[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_lights_18858"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18870[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18870"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18938[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18938"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_top2[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_top2"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18958[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18958"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_189F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_189F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_trunk2[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_trunk2"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_tree_3_model[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_tree_3_model"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_model6[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_model6"; + +static const ALIGN_ASSET(2) char koopa_troopa_beach_data_seg6_lights_18BA8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/koopa_troopa_beach_data_seg6_lights_18BA8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18BC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18BC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18C88[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18C88"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_top3[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_top3"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18CA8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18CA8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18D48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18D48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_tree_trunk3[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_tree_trunk3"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_dl_18D68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_dl_18D68"; + diff --git a/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists.h b/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists.h new file mode 100644 index 000000000..11740b674 --- /dev/null +++ b/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists.h @@ -0,0 +1,622 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_160[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_160"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_210[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_210"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_358[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_358"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_368[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_368"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_380[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_380"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_390[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_390"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_440[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_440"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_518[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_518"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_610[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_610"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_778[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_778"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_858[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_858"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_928[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_928"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_BD8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_BD8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_CC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_CC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_D70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_D70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_E60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_E60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_F38[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_F38"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1000[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1000"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_10B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_10B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1190[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1190"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1210[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1210"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_12D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_12D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_13D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_13D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_14D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_14D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1590[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1590"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1668[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1668"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_16F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_16F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1778[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1778"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1850[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1850"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1940[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1940"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1A40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1A40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1B58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1B58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1C18[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1C18"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1CC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1CC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1DA8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1DA8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1E90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1E90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_1F78[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1F78"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2058[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2058"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2178[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2178"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_21D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_21D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2240[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2240"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_22B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_22B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2320[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2320"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2398[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2398"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2410[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2410"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2478[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2478"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_24E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_24E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2560[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2560"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_25C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_25C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2638[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2638"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2698[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2698"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2748[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2748"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_27B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_27B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2818[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2818"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2888[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2888"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_28F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_28F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2960[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2960"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_29D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_29D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2A58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2A58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2AC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2AC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2B30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2B30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2BA8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2BA8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2C08[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C08"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2C68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C68"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2CC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2CC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2D40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2D40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2DA8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2DA8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2E18[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E18"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2E98[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E98"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2F00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2F00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2F60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2F60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_2FC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2FC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3038[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3038"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_30B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_30B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_31D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_31D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_32B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_32B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3390[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3390"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3470[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3470"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3550[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3550"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3630[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3630"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_36F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_36F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_37B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_37B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_38B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_38B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3978[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3978"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_39E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_39E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3AC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3AC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3B40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3B40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3C38[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3C38"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3D00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3D00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3DE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3DE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3ED8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3ED8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_3F60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3F60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4040[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4040"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4120[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4120"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4200[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4200"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_42E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_42E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_43C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_43C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4490[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4490"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_45C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_45C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_46A8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_46A8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4770[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4770"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_47E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_47E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_48B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_48B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4920[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4920"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4A08[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4A08"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4AF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4AF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4BD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4BD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4CC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4CC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4DD8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4DD8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4EA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4EA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_4F68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4F68"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5028[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5028"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_50E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_50E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_51A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_51A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5250[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5250"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5300[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5300"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_53D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_53D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5488[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5488"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_54E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_54E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5598[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5598"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_55F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_55F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_56C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_56C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5778[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5778"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5828[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5828"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_58F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_58F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5970[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5970"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5A38[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5A38"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5B00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5B00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5BB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5BB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5C88[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5C88"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5D50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5D50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5E08[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5E08"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5EB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5EB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_5F60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5F60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6010[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6010"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6078[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6078"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6140[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6140"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_61A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_61A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6268[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6268"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6330[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6330"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_63F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_63F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_64C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_64C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_65D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_65D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6648[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6648"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_66B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_66B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6718[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6718"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_67A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_67A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6810[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6810"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_68C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_68C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6938[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6938"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6998[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6998"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_69F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_69F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6A68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6A68"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6AD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6AD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6B30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6B30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6BE8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6BE8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6D70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6D70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6DE8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6DE8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6EB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6EB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6F30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6F30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_6FA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6FA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7000[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7000"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_70A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_70A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7120[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7120"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7188[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7188"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_71F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_71F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7260[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7260"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_72D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_72D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7358[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7358"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7430[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7430"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7538[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7538"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7608[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7608"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_76A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_76A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_76C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_76C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7740[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7740"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7810[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7810"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_78E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_78E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7970[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7970"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7A98[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7A98"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7DB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7DB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7E48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7E48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7EE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7EE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_7F70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7F70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8028[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8028"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_80F8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_80F8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8200[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8200"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_82D8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_82D8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8360[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8360"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8468[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8468"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8510[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8510"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_85C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_85C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_86B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_86B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8740[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8740"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_87E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_87E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8870[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8870"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8918[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8918"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8980[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8980"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8A90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8A90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8C18[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8C18"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8D08[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8D08"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8DB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8DB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8E50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8E50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8EE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8EE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8F58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8F58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_8FD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8FD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9080[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9080"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9188[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9188"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9228[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9228"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_92C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_92C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9368[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9368"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9408[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9408"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_94A8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_94A8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9548[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9548"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_95E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_95E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9688[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9688"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_96D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_96D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9800[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9800"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9930[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9930"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9A30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9A30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9B20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9B48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9B78[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B78"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9B88[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B88"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9CC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9CC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9CD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9CD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9D58[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9D58"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9E70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9E70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9E88[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9E88"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9EC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9EC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9EF8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9EF8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9F30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9F30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9F68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9F68"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9FA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9FC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_9FF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A020[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A020"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A080[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A080"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A0B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A0B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A0E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A0E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A128[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A128"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A158[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A158"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A190[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A190"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A1D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A1D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A210[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A210"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A240[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A240"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A278[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A278"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A2B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A2B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A2E8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A2E8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A320[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A320"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A350[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A350"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A388[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A388"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A3C8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A3C8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A400[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A400"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A438[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A438"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A470[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A470"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A4A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A4A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A4D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A4D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A508[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A508"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A540[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A540"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A640[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A640"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A668[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A668"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A690[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A690"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A6B8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A6B8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A6E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A6E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A708[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A708"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A738[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A738"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A760[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A760"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A798[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A798"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A7C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A7C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A7E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A7E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A810[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A810"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A838[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A838"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A868[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A868"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A890[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A890"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A8C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A8C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A8E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A8E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A908[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A908"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A930[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A930"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A990[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A990"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_A9F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A9F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AA48[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AA48"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AAB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AAB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AB08[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AB08"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AB68[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AB68"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_ABD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ABD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AC40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AC40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_ACB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ACB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_ACD8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ACD8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AD00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AD28[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD28"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AD50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AD78[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD78"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_ADB8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ADB8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_ADE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ADE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AEF8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AEF8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_AFC8[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AFC8"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_B0A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B0A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_B168[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B168"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_B208[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B208"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_B230[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B230"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_packed_dl_B2B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B2B0"; + diff --git a/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices.h b/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices.h new file mode 100644 index 000000000..000f4fff0 --- /dev/null +++ b/include/assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices.h @@ -0,0 +1,1028 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000000[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000040[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000040"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000080[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040000C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040000C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000100[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000100"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000140[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000140"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000180[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000180"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040001C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040001C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000200[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040002C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040002C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040004C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040004C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000610[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000610"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000800[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000A00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000A00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000A60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000A60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000C50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000C50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000E50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000E50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04000FF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000FF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040011F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040011F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040013E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040013E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040015C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040015C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040016B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040016B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04001890[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001890"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04001A80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001A80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04001AF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001AF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04001CF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001CF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04001ED0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001ED0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04001F00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001F00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04002100[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002100"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040022F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040022F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04002350[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002350"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04002540[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002540"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04002740[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002740"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040027E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040027E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040029E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040029E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04002BE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002BE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04002D80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002D80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04002F60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002F60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003160[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003160"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003270[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003270"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003460[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003460"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003580[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003580"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003760[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003760"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003880[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003880"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040038E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040038E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003AD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003AD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003CB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003CB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003D20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003D20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04003F00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003F00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040040F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040040F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04004150[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004150"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04004350[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004350"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040044A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040044A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04004680[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004680"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04004880[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004880"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04004940[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004940"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04004A80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004A80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04004C70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004C70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04004E10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004E10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04005010[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005010"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040051F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040051F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040053E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040053E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040055D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040055D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040057D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040057D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040059A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040059A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04005BA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005BA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04005D00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005D00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04005EF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005EF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040060F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040060F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04006120[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006120"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040062C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040062C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04006490[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006490"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04006670[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006670"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04006860[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006860"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040068A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040068A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04006A80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006A80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04006C80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006C80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04006DB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006DB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04006F90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006F90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04007180[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007180"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04007360[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007360"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04007560[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007560"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04007750[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007750"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04007940[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007940"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040079C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040079C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04007BA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007BA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04007D60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007D60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04007F60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007F60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008050[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008050"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008230[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008230"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008430[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008430"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008500[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008500"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008700[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008700"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008900[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008900"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040089E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040089E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008BE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008BE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008DE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008DE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04008ED0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008ED0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040090D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040090D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040092D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040092D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009300[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009300"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009360[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009360"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040093F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040093F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040094E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040094E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040095B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040095B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009710[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009710"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009860[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009860"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040098E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040098E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040099C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040099C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009B10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009B10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009BD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009BD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009CB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009CB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009D10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009D10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009E20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009E20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009E80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009E80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009F10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009F10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04009FD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009FD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A0E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A0E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A1A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A1A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A270[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A270"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A380[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A380"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A560[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A560"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A670[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A670"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A720[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A720"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A870[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A870"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A8A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A8A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A900[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A900"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400A960[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A960"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400AA90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AA90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400AB20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AB20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400AC20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AC20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400ADB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400ADB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400AE30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AE30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400AE90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AE90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400AF50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AF50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400B070[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B070"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400B1C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B1C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400B300[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B300"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400B400[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B400"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400B580[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B580"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400B680[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B680"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400B7B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B7B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400B8B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B8B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400BA20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BA20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400BB20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BB20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400BC60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BC60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400BD60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BD60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400BDF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BDF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400BE70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BE70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400BF20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BF20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400BFA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BFA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400C120[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C120"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400C290[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C290"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400C3B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C3B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400C430[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C430"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400C530[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C530"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400C6A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C6A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400C7A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C7A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400C920[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C920"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400CB00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CB00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400CC80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CC80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400CD70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CD70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400CDF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CDF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400CF40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CF40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400D040[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D040"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400D1E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D1E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400D360[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D360"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400D520[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D520"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400D660[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D660"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400D760[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D760"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400D8A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D8A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400D9A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D9A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400DAF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DAF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400DBF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DBF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400DD60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DD60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400DE60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DE60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400DFB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DFB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400E0B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E0B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400E1F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E1F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400E270[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E270"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400E450[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E450"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400E650[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E650"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400E840[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E840"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400E8A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E8A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400E9E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E9E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400EAE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EAE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400EBD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EBD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400EC50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EC50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400ED60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400ED60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400EF10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EF10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400EF60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EF60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400F070[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F070"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400F1A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F1A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400F2D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F2D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400F480[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F480"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400F500[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F500"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400F630[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F630"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400F720[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F720"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400F8D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F8D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FA50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FA50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FB00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FB00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FB80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FB80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FC30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FC30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FCB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FCB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FD70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FD70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FDF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FDF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FEB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FEB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FF30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FF30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0400FFD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FFD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010010[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010010"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010050[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010050"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010090[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010090"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040100F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040100F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010130[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010130"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010260[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010260"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010320[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010320"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010380[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010380"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040103C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040103C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040103F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040103F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010450[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010450"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010490[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010490"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040104F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040104F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040105E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040105E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040106A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040106A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010700[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010700"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010740[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010740"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040107A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040107A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040107E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040107E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040108D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040108D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010990[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010990"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010AC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010AC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010B70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010B70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010BF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010BF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010CC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010CC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010D40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010D40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010DE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010DE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010E20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010E20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010F20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010F20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04010FD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010FD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011080[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011080"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011100[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011100"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011190[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011190"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040111D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040111D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040113C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040113C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040114E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040114E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011540[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011540"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011580[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011580"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040115E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040115E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011620[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011620"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040116B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040116B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011790[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011790"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040117F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040117F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011850[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011850"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040118F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040118F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040119D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040119D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011B00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011B00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011B40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011B40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011C40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011C40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011CC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011CC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011DC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011DC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011E70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011E70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04011F80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011F80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012000[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012000"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040120B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040120B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040122A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040122A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040123C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040123C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012400[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012400"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012460[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012460"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040125E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040125E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012640[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012640"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012690[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012690"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012750[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012750"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040127D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040127D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012830[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012830"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012890[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012890"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012950[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012950"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012AE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012AE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012CE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012CE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04012E90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012E90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013040[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013040"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040131C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040131C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040132B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040132B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013340[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013340"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013480[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013480"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013580[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013580"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040135D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040135D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040137D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040137D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013860[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013860"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013A10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013A10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013A90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013A90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013B50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013B50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013C50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013C50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013D70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013D70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04013F70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013F70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014150[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014150"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014340[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014340"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014530[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014530"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014560[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014560"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014760[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014760"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014940[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014940"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040149C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040149C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014BC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014BC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014BF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014BF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014DD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014DD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04014FB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014FB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040151A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040151A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015230[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015230"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015430[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015430"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015620[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015620"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015650[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015650"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015830[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015830"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015860[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015860"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015890[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015890"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015A70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015A70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015B60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015B60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015B90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015B90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015D80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015D80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04015E50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015E50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04016030[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016030"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04016210[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016210"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040163F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040163F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040165D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040165D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040167B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040167B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04016990[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016990"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040169C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040169C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04016BA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016BA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04016D90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016D90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04016F70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016F70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04017120[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017120"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04017300[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017300"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040173C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040173C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040175A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040175A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04017660[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017660"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04017840[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017840"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040178A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040178A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04017A80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017A80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04017C70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017C70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04017E70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017E70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04018050[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018050"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040180E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040180E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040182C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040182C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040184A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040184A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04018680[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018680"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040187F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040187F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040189F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040189F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04018BD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018BD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04018CE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018CE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04018EC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018EC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04018F50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018F50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019130[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019130"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019280[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019280"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019480[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019480"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019570[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019570"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019750[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019750"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019900[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019900"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019940[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019940"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019A00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019A00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019A60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019A60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019C40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019C40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019CA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019CA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019EA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019EA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04019F30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019F30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401A110[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A110"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401A140[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A140"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401A340[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A340"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401A460[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A460"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401A520[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A520"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401A720[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A720"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401A900[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A900"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401AAE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AAE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401AB70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AB70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401AD70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AD70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401AF60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AF60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401B140[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B140"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401B330[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B330"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401B520[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B520"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401B640[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B640"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401B820[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B820"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401BA00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BA00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401BBE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BBE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401BDC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BDC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401BF30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BF30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C130[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C130"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C1F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C1F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C3D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C3D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C400[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C400"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C550[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C550"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C6A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C6A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C790[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C790"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C810[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C810"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C8B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C8B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C8F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C8F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C990[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C990"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401C9D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C9D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CA70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CA70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CAB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CAB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CB50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CB50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CB90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CB90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CC30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CC30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CC70[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CC70"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CD10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CD10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CD50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CD50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CDF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CDF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CE30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CE30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CED0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CED0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401CF10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CF10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401D110[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D110"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401D190[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D190"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401D370[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D370"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401D3A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D3A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401D5A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D5A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401D620[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D620"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401D800[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D800"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401D830[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D830"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401DA10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DA10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401DBF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DBF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401DDD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DDD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401DEF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DEF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401E0D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E0D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401E2B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E2B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401E490[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E490"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401E4C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E4C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401E560[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E560"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401E760[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E760"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401E930[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E930"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401EA60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EA60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401EC60[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EC60"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401ED20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401ED20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401EE90[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EE90"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401EFE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EFE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F150[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F150"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F290[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F290"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F3D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F3D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F450[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F450"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F510[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F510"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F620[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F620"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F810[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F810"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F890[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F890"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401F9A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F9A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401FB20[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FB20"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401FD00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FD00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401FDE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FDE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x0401FF10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FF10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040200B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040200B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020250[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020250"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020370[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020370"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040204F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040204F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020640[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020640"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020780[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020780"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040208E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040208E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020A00[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020A00"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020B40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020B40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020CE0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020CE0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020E50[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020E50"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04020FA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020FA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040210D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040210D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040211E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040211E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021300[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021300"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021470[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021470"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040215A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040215A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021630[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021630"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040216C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040216C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021770[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021770"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021800[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021800"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040218B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040218B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040219C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040219C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021A80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021A80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021BB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021BB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021C40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021C40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021CA0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021CA0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021D80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021D80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021E10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021E10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021EF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021EF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04021FB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021FB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040220A0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040220A0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022100[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022100"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022190[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022190"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022250[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022250"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022450[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022450"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022510[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022510"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022700[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022700"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040227C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040227C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040229C0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040229C0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040229F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040229F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022BD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022BD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022CC0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022CC0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022EB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022EB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04022F10[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022F10"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040230F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040230F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040231F0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040231F0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040233D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040233D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040234B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040234B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040236B0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040236B0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040237E0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040237E0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x040239D0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040239D0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04023AB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023AB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04023B30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023B30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04023BF0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023BF0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04023C80[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023C80"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04023D30[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023D30"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04023DB0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023DB0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04023F40[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023F40"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04023FD0[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023FD0"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04024090[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024090"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04024170[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024170"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04024230[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024230"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04024360[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024360"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04024540[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024540"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04024720[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024720"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04024780[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024780"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_vertex_0x04024970[] = "__OTR__models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024970"; + diff --git a/include/assets/models/tracks/luigi_raceway/luigi_raceway_data.h b/include/assets/models/tracks/luigi_raceway/luigi_raceway_data.h new file mode 100644 index 000000000..5f3d3f9ce --- /dev/null +++ b/include/assets/models/tracks/luigi_raceway/luigi_raceway_data.h @@ -0,0 +1,314 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_328[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_328"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_480[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_480"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_868[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_868"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_9F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_B48[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_B48"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_D80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_D80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_EE8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_EE8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1058[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1058"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1198[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1198"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1398[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1398"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1538[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1538"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_16D8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_16D8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1888[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1888"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1B00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1B00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1C78[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1C78"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1E30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1E30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_1FD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_1FD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2240[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2240"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2348[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2348"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2518[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2518"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2658[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2658"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2860[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2860"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2978[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2978"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2BC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2BC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2D00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2D00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2F08[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2F08"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_2FF8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_2FF8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_32C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_32C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3408[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_3408"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3610[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_3610"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_36A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_36A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3928[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_3928"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3AB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_3AB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3C18[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_3C18"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3CA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_3CA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_3EB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_3EB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4058[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4058"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4198[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4198"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4240[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4240"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4440[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4440"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4638[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4638"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4720[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4720"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4828[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4828"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4A18[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4A18"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4C60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4C60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4CF8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4CF8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4E38[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4E38"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_4FD8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_4FD8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5220[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5220"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_52D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_52D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5420[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5420"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5558[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5558"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5728[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5728"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_57F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_57F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5940[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5940"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5A60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5A60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5BA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5BA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5CB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5CB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5E10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5E10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_5F08[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_5F08"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6018[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6018"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6150[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6150"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6288[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6288"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6350[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6350"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6400[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6400"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6558[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6558"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_65B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_65B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6608[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6608"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6658[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6658"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_66B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_66B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6708[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6708"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_67A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_67A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6810[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6810"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_68C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_68C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6930[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6930"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6A00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6A00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6A90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6A90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6B58[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6B58"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6C40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6C40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6DA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6DA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6EB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6EB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_6FF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_6FF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7110[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7110"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7248[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7248"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7388[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7388"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_74B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_74B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_75F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_75F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7750[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7750"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7928[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7928"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7A18[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7A18"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7BB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7BB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7CD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7CD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7EE8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7EE8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_7FA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_7FA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8158[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8158"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8260[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8260"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8450[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8450"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8508[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8508"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_86F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_86F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8790[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8790"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8958[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8958"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8A70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8A70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8CC8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8CC8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8D68[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8D68"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_8F00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_8F00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9058[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_9058"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9310[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_9310"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9408[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_9408"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_95A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_95A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_97B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_97B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_99C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_99C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9AD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_9AD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9C50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_9C50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_9E58[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_9E58"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_A028[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_A028"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_A178[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_A178"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_A320[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_A320"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_basket_model_lod2[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_basket_model_lod2"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model1[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model2[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model3[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_model3"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model4[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_model4"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model5[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_model5"; + +static const ALIGN_ASSET(2) char luigi_raceway_data_seg6_lights_C3A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/luigi_raceway_data_seg6_lights_C3A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_basket_model_lod1[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_basket_model_lod1"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model6[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_model6"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model7[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_model7"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_model8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_model8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F588[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F588"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F630[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F630"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F640[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F640"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F650[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F650"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F660[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F660"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F718[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F718"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F728[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F728"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F938[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F938"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F948[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F948"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F960[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F960"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_F970[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_F970"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FA00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FA00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FA10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FA10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FA20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FA20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FA30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FA30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FB10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FB10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FB20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FB20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FBB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FBB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FBC8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FBC8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FBE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FBE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_tree_model[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_tree_model"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FC70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FC70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_dl_FD40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_dl_FD40"; + diff --git a/include/assets/models/tracks/luigi_raceway/luigi_raceway_displaylists.h b/include/assets/models/tracks/luigi_raceway/luigi_raceway_displaylists.h new file mode 100644 index 000000000..20198f9d7 --- /dev/null +++ b/include/assets/models/tracks/luigi_raceway/luigi_raceway_displaylists.h @@ -0,0 +1,722 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_68[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_68"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_78[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_78"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_108[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_108"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_118[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_118"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_190[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_190"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_208[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_208"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_280[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_280"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_370[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_370"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3E8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3E8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_450[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_450"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_528[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_528"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_5A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_610[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_610"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_688[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_688"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_700[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_700"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_778[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_778"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_858[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_858"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_938[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_938"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A98[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A98"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B48[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B48"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C58[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C58"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_CE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_CE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_D68[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_D68"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_DF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_DF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_E78[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_E78"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_F00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_F88[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F88"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1000[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1000"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1088[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1088"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1110[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1110"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_11B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_11B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1260[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1260"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1308[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1308"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_13B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_13B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1438[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1438"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_14E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_14E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1558[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1558"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_15E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_15E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1688[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1688"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1730[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1730"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_17E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_17E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1848[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1848"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_18B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_18B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1920[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1920"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1988[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1988"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1A28[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1A28"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1AC8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1AC8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1B28[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1B28"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1BD8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1BD8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1C90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1C90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1D00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1D00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1D68[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1D68"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1E10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1E10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1E70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1E70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1F18[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1F18"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1F90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1F90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_1FF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1FF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2050[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2050"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_20C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_20C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2130[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2130"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_21A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_21A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2210[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2210"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2280[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2280"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_22F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_22F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2368[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2368"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_23E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_23E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2458[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2458"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_24E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_24E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2560[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2560"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_25E8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_25E8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2658[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2658"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_26B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_26B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2720[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2720"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2798[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2798"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2810[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2810"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2888[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2888"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2900[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2900"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2978[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2978"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_29F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_29F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2A68[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2A68"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2AE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2AE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2B58[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2B58"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2BC8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2BC8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2C40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2C40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2CB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2CB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2D30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2D30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2DA8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2DA8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2E20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2E20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2E90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2E90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2EF8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2EF8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_2F60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2F60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3080[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3080"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_30F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_30F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3170[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3170"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_31E8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_31E8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3260[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3260"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_32D8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_32D8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3350[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3350"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_33C8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_33C8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3448[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3448"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_34C8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_34C8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3548[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3548"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_35D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_35D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3678[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3678"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_36F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_36F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3768[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3768"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_37E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_37E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3858[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3858"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_38D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_38D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3948[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3948"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_39C8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_39C8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3A58[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3A58"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3AD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3AD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3B38[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3B38"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3BD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3BD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3C40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3C40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3CF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3CF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3D60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3D60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3DD8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3DD8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3EB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3EB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_3FC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3FC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4148[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4148"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4330[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4330"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4518[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4518"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4540[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4540"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_45B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_45B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_46A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_46A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4860[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4860"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4880[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4880"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4960[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4960"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_49B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_49B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4A28[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4A28"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4B10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4B10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4C28[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4C28"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4EE8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4EE8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_4F20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4F20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_5038[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5038"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_51D8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_51D8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_53E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_53E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_55E8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_55E8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_5788[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5788"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_58A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_58A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_59B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_59B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_5AB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5AB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_5BB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5BB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_5CD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5CD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_5ED8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5ED8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_60E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_60E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6300[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6300"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6418[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6418"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6558[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6558"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_65D8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_65D8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6680[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6680"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6728[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6728"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_67D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_67D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6878[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6878"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6920[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6920"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_69C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_69C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6A58[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6A58"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6B00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6B00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6BF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6BF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6CA8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6CA8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6D60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6D60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6E18[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6E18"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6EF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6EF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_6FA8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6FA8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7050[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7050"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_70F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_70F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_71A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_71A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7248[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7248"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_72F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_72F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7398[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7398"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7440[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7440"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_74F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_74F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_75A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_75A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7650[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7650"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_76F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_76F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_77B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_77B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7878[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7878"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7940[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7940"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_79E8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_79E8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7A88[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7A88"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7B80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7B80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7BF8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7BF8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7C80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7C80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7CF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7CF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7D60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7D60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7DD8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7DD8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7E50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7E50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7EB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7EB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7EF8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7EF8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7F68[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7F68"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_7FE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7FE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8048[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8048"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_80B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_80B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8128[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8128"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8190[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8190"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8200[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8200"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8240[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8240"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8320[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8320"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_83C8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_83C8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_83E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_83E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8448[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8448"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_84B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_84B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_84C8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_84C8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8528[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8528"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_85F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_85F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8768[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8768"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8788[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8788"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_87F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_87F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8858[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8858"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_88C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_88C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8928[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8928"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8990[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8990"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_89F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_89F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8A58[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8A58"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8AB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8AB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8B18[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8B18"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8B80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8B80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8BE8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8BE8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8C50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8C50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8CB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8CB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8D20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8D88[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D88"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8DE8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8DE8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8E50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8E50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8EB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8EB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8F18[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8F18"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8F80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8F80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_8FE8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8FE8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9098[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9098"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9120[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9120"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_91A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_91A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9230[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9230"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_92B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_92B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9340[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9340"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_93C8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_93C8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9440[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9440"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_94B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_94B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9530[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9530"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_95B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_95B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9640[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9640"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_96C8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_96C8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9750[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9750"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_97D8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_97D8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9860[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9860"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_98D8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_98D8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9960[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9960"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_99D8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_99D8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9A60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9A60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9AE8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9AE8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9B70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9B70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9C20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9C20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9EC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9EC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9ED0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9ED0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_9F70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9F70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A010[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A010"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A028[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A028"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A088[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A088"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A0F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A0F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A150[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A150"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A1B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A1B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A210[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A210"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A270[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A270"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A2A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A2A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A308[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A308"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A368[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A368"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A3C8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A3C8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A430[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A430"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A490[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A490"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A4F8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A4F8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A558[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A558"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A5C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A5C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A620[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A620"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A688[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A688"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A6E8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A6E8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A748[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A748"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A7A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A7A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A810[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A810"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A870[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A870"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A8D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A8D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A930[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A930"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_A998[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A998"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AA00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AA00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AA68[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AA68"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AAD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AAD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AB38[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AB38"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_ABA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ABA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AC08[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AC08"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AC70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AC70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_ACD8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ACD8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AD40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AD40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_ADA8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ADA8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AE10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AE10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AE78[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AE78"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AEE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AEE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AF48[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AF48"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_AFB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AFB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B010[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B010"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B078[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B078"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B198[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B198"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B200[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B200"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B268[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B268"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B2D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B2D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B338[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B338"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B3A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B3A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B408[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B408"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B470[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B470"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B4D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B4D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B530[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B530"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B590[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B590"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B600[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B600"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B678[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B678"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B6D8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B6D8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B740[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B740"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B7A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B7A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B810[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B810"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B878[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B878"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B8E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B8E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B948[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B948"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_B9B8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B9B8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BA20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BA20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BA80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BA80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BAF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BAF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BB50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BB50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BBC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BBC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BC20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BC20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BC88[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BC88"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BD68[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BD68"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BDC8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BDC8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BE28[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BE28"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BE88[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BE88"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BF20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BF20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_BFB8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BFB8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C050[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C050"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C0F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C0F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C1A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C1A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C200[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C200"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C260[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C260"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C300[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C300"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C3A8[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C3A8"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C410[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C410"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C4C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C4C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C540[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C540"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C5C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C5C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C640[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C640"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C668[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C668"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_packed_dl_C730[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C730"; + diff --git a/include/assets/models/tracks/luigi_raceway/luigi_raceway_vertices.h b/include/assets/models/tracks/luigi_raceway/luigi_raceway_vertices.h new file mode 100644 index 000000000..1e6c73218 --- /dev/null +++ b/include/assets/models/tracks/luigi_raceway/luigi_raceway_vertices.h @@ -0,0 +1,1034 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000000[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000080[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000100[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000100"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000200[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000300[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000300"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000400[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000500[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000500"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000600[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000700[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000700"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000780[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000780"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000800[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040008C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040008C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040009C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040009C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000A80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000A80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000B80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000B80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000C80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000C80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000D80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000D80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000E80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000E80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04000F00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000F00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001000[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001000"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001080[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001080"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001140[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001140"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001240[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001240"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001340[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001340"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040013A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040013A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001420[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001420"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001480[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001480"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001500[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001500"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001560[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001560"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040015E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040015E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001640[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001640"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040016C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040016C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001720[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001720"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040017A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040017A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001800[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001800"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001880[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001880"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040018E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040018E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001960[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001960"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040019C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040019C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001A40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001A40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001A80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001A80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001AC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001AC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001B20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001B20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001BA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001BA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001C00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001C00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001C80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001C80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001D20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001D20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001E20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001E20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001EC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001EC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04001FC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001FC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002060[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002060"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002160[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002160"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002200[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002200"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002300[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002300"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002360[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002360"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040023E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040023E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002480[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002480"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002580[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002580"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040025C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040025C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002600[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002600"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002660[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002660"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040026E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040026E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002780[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002780"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002880[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002880"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002920[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002920"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002A20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002A20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002A80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002A80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002AF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002AF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002B50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002B50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002BB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002BB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002BF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002BF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002C40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002C40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002CC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002CC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002D20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002D20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002D60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002D60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002DE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002DE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002E50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002E50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002EE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002EE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002F40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002F40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04002FB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002FB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003020[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003020"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003060[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003060"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040030F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040030F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003130[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003130"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040031F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040031F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003270[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003270"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040032D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040032D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003330[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003330"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003420[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003420"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003530[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003530"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040036B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040036B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003770[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003770"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003890[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003890"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003A10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003A10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003B20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003B20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003CA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003CA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003DE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003DE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04003FD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003FD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040041B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040041B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040043A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040043A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040044C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040044C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040044F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040044F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040045B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040045B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04004730[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004730"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040048B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040048B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04004A30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004A30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04004BB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004BB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04004D00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004D00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04004E80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004E80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005000[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005000"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005180[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005180"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005300[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005300"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040053F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040053F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005570[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005570"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040056F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040056F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005870[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005870"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040059F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040059F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005B70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005B70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005C90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005C90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005D50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005D50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005E10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005E10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04005F90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005F90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006110[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006110"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006290[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006290"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006410[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006410"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006590[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006590"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006710[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006710"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006890[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006890"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006A70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006A70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006C00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006C00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006D90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006D90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04006F80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006F80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007170[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007170"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007200[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007200"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040073B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040073B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040074C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040074C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007630[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007630"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040077B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040077B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007910[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007910"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007A90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007A90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007C40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007C40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007E20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007E20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007E50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007E50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04007FD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007FD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008080[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008080"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008260[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008260"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040082C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040082C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008390[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008390"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008580[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008580"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008660[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008660"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008780[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008780"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008900[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008900"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008B00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008B00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008D00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008D00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008E00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008E00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04008F70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008F70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04009170[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009170"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04009370[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009370"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04009560[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009560"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040096B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040096B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040098B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040098B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04009AB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009AB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04009CA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009CA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04009E80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009E80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04009F00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009F00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04009FB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009FB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400A1B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A1B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400A3B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A3B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400A5A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A5A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400A790[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A790"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400A8D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A8D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400A9A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A9A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400AB40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AB40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400ABA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ABA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400AC60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AC60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400AD20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AD20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400AE60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AE60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400AF50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AF50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400AFD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AFD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B090[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B090"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B150[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B150"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B240[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B240"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B2C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B2C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B460[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B460"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B660[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B660"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B710[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B710"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B740[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B740"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400B940[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B940"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BA20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BA20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BA60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BA60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BAA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BAA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BAE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BAE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BB20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BB20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BB60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BB60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BBA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BBA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BBE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BBE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BCE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BCE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BDE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BDE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BEE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BEE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400BFE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BFE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C0A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C0A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C1B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C1B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C1F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C1F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C230[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C230"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C270[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C270"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C2B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C2B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C2F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C2F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C330[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C330"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C430[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C430"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C4B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C4B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C5D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C5D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C610[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C610"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C650[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C650"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C690[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C690"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C6D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C6D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C7D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C7D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C850[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C850"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C970[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C970"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C9B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C9B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400C9F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C9F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400CAF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CAF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400CBB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CBB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400CCC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CCC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400CDC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CDC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400CEC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CEC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400CFC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CFC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D0C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D0C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D1C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D1C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D2C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D2C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D380[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D380"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D440[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D440"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D500[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D500"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D5C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D5C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D680[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D680"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D740[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D740"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D840[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D840"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400D940[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D940"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DA40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DA40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DA80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DA80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DAC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DAC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DB00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DB00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DB40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DB40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DC40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DC40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DCC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DCC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DDE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DDE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DE20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DE20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DE60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DE60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DEA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DEA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DEE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DEE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400DFE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DFE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E060[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E060"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E180[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E180"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E1C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E1C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E200[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E200"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E300[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E300"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E380[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E380"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E4A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E4A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E4E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E4E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E520[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E520"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E620[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E620"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E720[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E720"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E820[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E820"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400E960[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E960"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400EA80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EA80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400EBD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EBD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400EC70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EC70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400ECF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ECF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400ED70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ED70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400EDF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EDF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400EE70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EE70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400EF10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EF10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400EFB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EFB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F050[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F050"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F0F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F0F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F170[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F170"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F210[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F210"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F250[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F250"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F290[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F290"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F2D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F2D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F350[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F350"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F3D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F3D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F490[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F490"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F550[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F550"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F590[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F590"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F610[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F610"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F6F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F6F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F7B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F7B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F870[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F870"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F930[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F930"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400F9F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F9F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400FB30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FB30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400FC70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FC70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400FD30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FD30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400FDF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FDF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400FE70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FE70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400FEF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FEF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400FF70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FF70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x0400FFF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FFF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010090[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010090"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010130[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010130"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040101B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040101B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010230[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010230"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040102D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040102D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010350[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010350"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040103F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040103F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010470[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010470"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010510[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010510"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040105B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040105B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010630[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010630"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040106F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040106F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040107B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040107B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010870[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010870"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010910[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010910"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010990[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010990"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010A10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010A10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010A90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010A90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010AF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010AF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010BB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010BB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010C70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010C70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010D30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010D30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010DF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010DF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010ED0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010ED0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010F50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010F50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04010FD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010FD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011050[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011050"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011090[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011090"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011190[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011190"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040112D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040112D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011390[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011390"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011450[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011450"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011550[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011550"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011650[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011650"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040116D0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040116D0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011790[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011790"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011890[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011890"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011910[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011910"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011990[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011990"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011A90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011A90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011B10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011B10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011BD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011BD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011DD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011DD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011E10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011E10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011F70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011F70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04011FF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011FF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012070[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012070"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040120B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040120B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040121C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040121C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012220[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012220"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040122E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040122E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040123A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040123A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012460[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012460"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040124A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040124A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012520[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012520"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040125A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040125A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012620[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012620"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040126A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040126A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012720[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012720"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040127A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040127A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040127E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040127E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012820[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012820"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012860[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012860"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040128E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040128E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012960[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012960"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040129E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040129E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012A60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012A60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012AE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012AE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012B60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012B60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012BA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012BA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012C20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012C20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012C60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012C60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012CE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012CE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012D60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012D60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012DE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012DE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012E40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012E40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012EC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012EC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012F20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012F20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04012FA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012FA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013000[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013000"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013080[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013080"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040130E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040130E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013160[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013160"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040131C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040131C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013240[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013240"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040132A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040132A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013320[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013320"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013360[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013360"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040133A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040133A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040133E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040133E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013420[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013420"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013460[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013460"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040134A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040134A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013500[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013500"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013560[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013560"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040135C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040135C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013640[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013640"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040136A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040136A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013720[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013720"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013780[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013780"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013800[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013800"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013860[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013860"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040138E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040138E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013940[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013940"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040139C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040139C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013A00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013A00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013A40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013A40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013AA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013AA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013B20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013B20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013B60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013B60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013BA0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013BA0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013C00[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013C00"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013C80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013C80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013CE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013CE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013D60[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013D60"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013DC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013DC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04013E40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013E40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014040[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014040"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014240[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014240"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014440[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014440"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014640[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014640"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014840[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014840"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014880[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014880"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040149B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040149B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014AF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014AF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014B30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014B30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014B90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014B90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014BD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014BD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014C10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014C50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014C90[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C90"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014CC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014CC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014CF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014CF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014D30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014D30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014DB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014DB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014DF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014DF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014E80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014E80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014EC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014EC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014F40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014F40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014F80[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014F80"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04014FE0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014FE0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015020[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015020"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015060[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015060"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040150A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040150A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015140[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015140"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015170[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015170"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040151A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040151A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040151E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040151E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015240[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015240"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040152C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040152C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015340[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015340"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040153C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040153C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015420[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015420"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040154A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040154A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015520[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015520"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040155A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040155A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015620[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015620"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040156E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040156E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015760[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015760"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040157E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040157E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015860[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015860"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040158E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040158E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015960[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015960"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040159E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040159E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015A20[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015A20"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015AB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015AB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015B10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015B10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015B70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015B70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015BD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015BD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015C50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015C50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015CD0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015CD0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015D50[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015D50"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015DB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015DB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015DF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015DF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015E30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015E30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015E70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015E70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04015F10[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015F10"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016000[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016000"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016040[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016040"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040160C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040160C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016140[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016140"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040161B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040161B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016230[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016230"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040162B0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040162B0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016330[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016330"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040163C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040163C0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016440[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016440"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016480[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016480"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016520[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016520"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016580[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016580"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016630[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016630"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016670[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016670"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040166F0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040166F0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016720[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016720"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016760[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016760"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040167A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040167A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040167E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040167E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016820[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016820"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016860[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016860"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040168A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040168A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040168E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040168E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016910[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016910"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040169A0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040169A0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040169E0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040169E0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016A70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016A70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016AB0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016AB0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016AF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016AF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016B30[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016B30"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016B70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016B70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016BF0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016BF0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016C70[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016C70"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016CC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016CC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016EC0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016EC0"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04016F40[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016F40"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x04017080[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04017080"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_vertex_0x040171C0[] = "__OTR__models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040171C0"; + diff --git a/include/assets/models/tracks/mario_raceway/mario_raceway_data.h b/include/assets/models/tracks/mario_raceway/mario_raceway_data.h new file mode 100644 index 000000000..ddd3bf810 --- /dev/null +++ b/include/assets/models/tracks/mario_raceway/mario_raceway_data.h @@ -0,0 +1,182 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_E8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_E8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2C8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2C8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3A8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3A8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_478[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_478"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_568[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_568"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_668[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_668"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_750[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_750"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_828[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_828"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_928[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_928"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_A00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_A00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_B08[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_B08"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_C20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_C20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_DC8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_DC8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_F60[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_F60"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_10A8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_10A8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1210[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1210"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1408[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1408"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_15C8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_15C8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1740[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1740"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1850[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1850"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1A30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1A30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1B70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1B70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1CF8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1CF8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1DE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1DE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_1F68[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_1F68"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_20A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_20A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_21E8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_21E8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_22E0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_22E0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2418[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2418"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2558[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2558"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2680[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2680"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2790[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2790"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_28B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_28B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2A10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2A10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2B40[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2B40"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2C98[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2C98"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2DC0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2DC0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_2EF8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_2EF8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3038[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3038"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_31F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_31F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_32D8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_32D8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3458[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3458"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_35D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_35D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3748[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3748"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3830[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3830"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3960[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3960"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3AA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3AA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3C08[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3C08"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3D68[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3D68"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_3EB8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_3EB8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4038[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4038"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4150[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4150"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_42A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_42A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_43D8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_43D8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_44F8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_44F8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4610[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4610"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4738[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4738"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4840[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4840"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4910[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4910"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4A60[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4A60"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4B78[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4B78"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4CD8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4CD8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4DC8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4DC8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4ED0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4ED0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_4FF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_4FF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_5150[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_5150"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_5228[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_5228"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_piranha_plant_model[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_piranha_plant_model"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_piranha_plant[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_piranha_plant"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_tree_model[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_tree_model"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_tree[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_tree"; + +static const ALIGN_ASSET(2) char d_course_mario_sign_model[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_sign_model"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_06006B88[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_06006B88"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_06006D68[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_06006D68"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_06006EE8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_06006EE8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_06006F48[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_06006F48"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_06006FA8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_06006FA8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_06007008[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_06007008"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9068[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_9068"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_90B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_90B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_90C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_90C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9190[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_9190"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9250[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_9250"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9310[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_9310"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_sign[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_sign"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_dl_9348[] = "__OTR__models/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_dl_9348"; + diff --git a/include/assets/models/tracks/mario_raceway/mario_raceway_displaylists.h b/include/assets/models/tracks/mario_raceway/mario_raceway_displaylists.h new file mode 100644 index 000000000..447bbaa4f --- /dev/null +++ b/include/assets/models/tracks/mario_raceway/mario_raceway_displaylists.h @@ -0,0 +1,352 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_E0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_E0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_F8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_F8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_160[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_160"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_170[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_170"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1D8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1D8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_240[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_240"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_258[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_258"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_328[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_328"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3D8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3D8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_450[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_450"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_478[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_478"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_588[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_588"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_8E8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_8E8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_900[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_900"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_A08[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_A08"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_B10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_B10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_C18[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_C18"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_D20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_D20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_E28[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_E28"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_F30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_F30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1038[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1038"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1140[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1140"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1188[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1188"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1348[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1348"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_13C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_13C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1438[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1438"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_14A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_14A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_14C8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_14C8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1500[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1500"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1550[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1550"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1600[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1600"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1668[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1668"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_16D8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_16D8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1770[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1770"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_17D8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_17D8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1850[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1850"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1890[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1890"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_18B8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_18B8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_18E0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_18E0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1950[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1950"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1988[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1988"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1A08[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1A08"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1A80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1A80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1AF8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1AF8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1B28[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1B28"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1BB8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1BB8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1C48[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1C48"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1CF8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1CF8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1DA8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1DA8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1E30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1E30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1EA8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1EA8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1F30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1F30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_1FB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1FB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2038[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2038"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_20B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_20B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2138[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2138"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_21C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_21C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2248[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2248"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_22B8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_22B8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2340[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2340"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_23B8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_23B8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2420[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2420"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2498[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2498"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2510[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2510"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2588[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2588"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2600[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2600"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2680[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2680"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_26F8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_26F8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2760[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2760"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_27E8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_27E8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2870[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2870"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_28F8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_28F8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_29B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_29B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2A28[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2A28"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2B10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2B10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2B98[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2B98"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2D68[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2D68"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_2D80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2D80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3050[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3050"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3060[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3060"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3150[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3150"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3240[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3240"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3258[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3258"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_32F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_32F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3388[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3388"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3460[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3460"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3508[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3508"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3530[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3530"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_35A8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_35A8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3630[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3630"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_36B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_36B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3728[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3728"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3798[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3798"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3818[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3818"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_38B8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_38B8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3950[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3950"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_39E8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_39E8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3AB8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3AB8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3BB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3BB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3C28[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3C28"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3CD8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3CD8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3D50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3D50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3E00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3E00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3E78[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3E78"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3EF8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3EF8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_3F80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3F80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4028[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4028"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_40D8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_40D8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4188[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4188"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4210[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4210"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4290[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4290"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4348[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4348"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_43C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_43C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4458[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4458"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_44C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_44C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4540[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4540"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_45B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_45B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_46A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_46A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4780[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4780"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4870[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4870"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4950[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4950"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_49E8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_49E8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4A68[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4A68"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4AD8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4AD8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4B50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4B50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4BB8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4BB8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4C28[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4C28"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4CB8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4CB8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4D48[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4D48"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4E20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4E20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4EE8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4EE8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_4F90[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4F90"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_50E8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_50E8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5218[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5218"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_52B8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_52B8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5368[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5368"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5408[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5408"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_54B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_54B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5550[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5550"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5608[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5608"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_56F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_56F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5768[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5768"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5870[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5870"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5970[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5970"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5A48[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5A48"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5AE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5AE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5BC8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5BC8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5C80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5C80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5CE8[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5CE8"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5D70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5D70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5DF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5DF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5E58[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5E58"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5ED0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5ED0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_5F88[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5F88"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6068[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6068"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_60F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_60F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6198[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6198"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6240[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6240"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_62A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_62A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6308[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6308"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_63B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_63B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6490[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6490"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6528[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6528"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6598[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6598"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6710[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6710"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_68B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_68B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_68C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_68C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_packed_dl_6928[] = "__OTR__models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6928"; + diff --git a/include/assets/models/tracks/mario_raceway/mario_raceway_vertices.h b/include/assets/models/tracks/mario_raceway/mario_raceway_vertices.h new file mode 100644 index 000000000..1d5ba7409 --- /dev/null +++ b/include/assets/models/tracks/mario_raceway/mario_raceway_vertices.h @@ -0,0 +1,574 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000000[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040000C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040000C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000180[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000180"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000200[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000280[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000280"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000300[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000300"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000380[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000380"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000400[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000600[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000680[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000680"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000780[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000780"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000980[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000980"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000B20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000B20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000D20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000D20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04000F20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000F20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04001110[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001110"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04001310[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001310"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04001510[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001510"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04001700[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001700"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04001900[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001900"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04001B00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001B00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04001D00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001D00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04001F00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001F00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040020C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040020C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002120[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002120"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040021F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040021F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002230[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002230"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002290[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002290"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002360[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002360"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040023A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040023A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002400[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002400"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040024D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040024D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002510[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002510"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002570[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002570"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002660[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002660"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040026A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040026A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002700[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002700"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040027F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040027F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002830[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002830"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002890[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002890"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002980[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002980"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040029C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040029C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002A20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002A20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002AF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002AF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002B30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002B30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002B90[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002B90"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002C60[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002C60"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002CA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002CA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002DB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002DB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002ED0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002ED0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04002F90[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002F90"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003050[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003050"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003130[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003130"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040032B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040032B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003310[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003310"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003410[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003410"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040035C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040035C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040037C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040037C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040039C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040039C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003A00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003A00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003BE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003BE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003C20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003C20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003E20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003E20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04003EA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003EA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040040A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040040A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004250[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004250"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004450[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004450"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004490[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004490"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004510[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004510"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004550[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004550"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004690[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004690"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004700[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004700"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004780[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004780"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004980[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004980"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004A00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004A00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004B00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004B00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004D00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004D00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04004E00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004E00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005000[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005000"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040050C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040050C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040052B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040052B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005370[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005370"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005430[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005430"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040055D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040055D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040057D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040057D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005840[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005840"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005A40[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005A40"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005AC0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005AC0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005C40[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005C40"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005D40[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005D40"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005E80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005E80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04005FA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005FA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006120[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006120"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006220[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006220"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040063A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040063A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006520[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006520"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040066A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040066A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006760[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006760"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040068E0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040068E0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040069E0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040069E0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006A60[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006A60"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006B20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006B20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006C00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006C00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006CE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006CE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006DA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006DA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006EC0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006EC0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04006F80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006F80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04007000[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007000"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04007160[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007160"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040072C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040072C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04007440[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007440"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04007640[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007640"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040076B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040076B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040077B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040077B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04007930[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007930"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04007B10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007B10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04007D10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007D10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04007F10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007F10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008100[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008100"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040082E0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040082E0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008360[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008360"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008560[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008560"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008750[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008750"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008950[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008950"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008B50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008B50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008CE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008CE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008D30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008D30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008DB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008DB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008DF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008DF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008E30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008E30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008E70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008E70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008EB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008EB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008F30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008F30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008F70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008F70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008FB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008FB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04008FF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008FF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009030[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009030"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009170[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009170"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040092B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040092B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009330[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009330"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040093B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040093B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009500[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009500"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040096E0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040096E0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009890[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009890"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009A00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009A00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009AF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009AF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009C80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009C80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009E60[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009E60"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04009F50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009F50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400A130[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A130"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400A1F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A1F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400A3F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A3F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400A450[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A450"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400A650[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A650"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400A850[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A850"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400A8B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A8B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400AA90[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AA90"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400AC70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AC70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400AE50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AE50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400AEE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AEE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400B020[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B020"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400B200[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B200"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400B380[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B380"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400B4C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B4C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400B6B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B6B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400B830[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B830"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400B970[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B970"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400BB10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BB10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400BD10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BD10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400BF00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BF00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400BFF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BFF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400C1D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C1D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400C340[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C340"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400C540[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C540"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400C6C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C6C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400C890[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C890"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400CA60[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CA60"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400CC50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CC50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400CE20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CE20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400CFA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CFA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400D1A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D1A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400D200[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D200"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400D2C0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D2C0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400D440[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D440"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400D520[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D520"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400D710[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D710"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400D900[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D900"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400D9F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D9F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400DBE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DBE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400DDD0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DDD0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400DF70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DF70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400E150[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E150"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400E350[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E350"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400E420[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E420"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400E600[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E600"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400E630[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E630"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400E7D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E7D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400E8A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E8A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400EA20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EA20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400EAE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EAE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400EBD0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EBD0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400EDB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EDB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400EE10[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EE10"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400EFF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EFF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400F050[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F050"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400F230[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F230"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400F430[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F430"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400F510[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F510"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400F6F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F6F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400F870[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F870"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400FA70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FA70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400FB40[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FB40"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400FD20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FD20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x0400FF20[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FF20"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04010110[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010110"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04010300[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010300"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040103F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040103F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040105E0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040105E0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040107D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040107D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040109D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040109D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04010BD0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010BD0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04010DD0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010DD0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04010E80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010E80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04011060[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011060"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04011200[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011200"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04011400[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011400"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040114B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040114B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040116B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040116B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04011790[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011790"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04011970[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011970"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040119A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040119A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04011BA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011BA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04011D50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011D50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04011F30[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011F30"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012130[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012130"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012270[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012270"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012390[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012390"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012590[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012590"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012790[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012790"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012980[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012980"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040129B0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040129B0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012B90[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012B90"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012D80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012D80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012F80[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012F80"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04012FB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012FB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040131A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040131A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013390[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013390"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013450[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013450"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013640[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013640"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013670[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013670"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013860[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013860"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013A40[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013A40"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013BC0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013BC0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013DB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013DB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013F50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013F50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04013FE0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013FE0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040141D0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040141D0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014300[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014300"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014350[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014350"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014400[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014400"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040145F0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040145F0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014770[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014770"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014970[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014970"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014B70[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014B70"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014C50[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014C50"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014DA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014DA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04014FA0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014FA0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015060[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015060"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015260[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015260"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015370[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015370"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040153A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040153A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015420[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015420"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015620[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015620"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015700[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015700"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015900[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015900"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015B00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015B00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015BF0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015BF0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015DD0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015DD0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015E00[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015E00"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04015EB0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015EB0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x040160A0[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040160A0"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04016290[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016290"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04016490[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016490"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_vertex_0x04016690[] = "__OTR__models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016690"; + diff --git a/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_data.h b/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_data.h new file mode 100644 index 000000000..a4fe5c192 --- /dev/null +++ b/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_data.h @@ -0,0 +1,228 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_48[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_48"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_78[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_78"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_88[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_88"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_338[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_338"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_598[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_598"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_8A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_8A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_B00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_D70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_D70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_FE0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_FE0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_12B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_12B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1530[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_1530"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1790[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_1790"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1A20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_1A20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1D00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_1D00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1F58[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_1F58"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2190[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_2190"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2470[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_2470"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_27A8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_27A8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2A10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_2A10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2C38[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_2C38"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2F20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_2F20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_3238[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_3238"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_34A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_34A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_36B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_36B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_39F8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_39F8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_3CB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_3CB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_3EB8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_3EB8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4098[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_4098"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4428[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_4428"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_46D8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_46D8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4910[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_4910"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4AD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_4AD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4E00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_4E00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5040[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_5040"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5290[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_5290"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5458[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_5458"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5758[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_5758"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5990[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_5990"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5BF8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_5BF8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5DF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_5DF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_60A8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_60A8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_62D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_62D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6548[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_6548"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6778[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_6778"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6A70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_6A70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6CB8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_6CB8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6FF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_6FF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7218[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_7218"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_74C8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_74C8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7718[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_7718"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7A80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_7A80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7CD8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_7CD8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7F78[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_7F78"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_81E8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_81E8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_84D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_84D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_8728[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_8728"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_89A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_89A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_8C00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_8C00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_8F18[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_8F18"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9178[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_9178"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_93D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_93D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9640[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_9640"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9938[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_9938"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9BB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_9BB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9DF8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_9DF8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A010[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_A010"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A2C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_A2C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A568[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_A568"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A7B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_A7B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A9C8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_A9C8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_ACB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_ACB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B020[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_B020"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B230[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_B230"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B478[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_B478"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B798[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_B798"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_BB00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_BB00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_BCE8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_BCE8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_BF10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_BF10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_C180[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_C180"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_C4F8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_C4F8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_C6D8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_C6D8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_C950[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_C950"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_CBC8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_CBC8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_CF58[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_CF58"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_D140[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_D140"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_D408[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_D408"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_D6B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_D6B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_DA50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_DA50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_DC70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_DC70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_DF60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_DF60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_E1D8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_E1D8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_E4B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_E4B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_E708[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_E708"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_EA18[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_EA18"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_cow_model[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_cow_model"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_unknown_model1[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_unknown_model2[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_13B88[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_13B88"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow1[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_cow1"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow2[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_cow2"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow3[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_cow3"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow4[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_cow4"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow5[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_cow5"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_tree_model[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_tree_model"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_tree[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_tree"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_13FF8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_13FF8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_14060[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_14060"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_14088[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_dl_14088"; + diff --git a/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_displaylists.h b/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_displaylists.h new file mode 100644 index 000000000..8292537d7 --- /dev/null +++ b/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_displaylists.h @@ -0,0 +1,466 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_28[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_28"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_58[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_58"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_88[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_88"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_F8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_F8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_130[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_130"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_170[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_170"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_220[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_220"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_258[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_258"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_290[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_290"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2E8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2E8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_318[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_318"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_350[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_350"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_388[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_388"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3C8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3C8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_400[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_400"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_430[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_430"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_468[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_468"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_590[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_590"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5C8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5C8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_600[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_600"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_638[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_638"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_670[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_670"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6A8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6A8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_720[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_720"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_750[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_750"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_790[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_790"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_7D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_7D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_808[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_808"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_840[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_840"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_870[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_870"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_898[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_898"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_8D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_8D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_908[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_908"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_940[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_940"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_978[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_978"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_9B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_9B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_9E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_9E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_A18[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A18"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_A50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_A80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_B40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_B40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_C10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_C20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_CA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_CA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_CB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_CB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_E50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_E50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_EB8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_EB8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_F20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_F20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_10C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_10C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_10E8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_10E8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1118[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1118"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1128[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1128"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1168[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1168"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_11B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_11B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_11F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_11F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1230[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1230"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1270[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1270"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_12E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_12E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1348[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1348"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1388[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1388"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_13E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_13E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1430[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1430"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1478[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1478"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_14B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_14B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1518[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1518"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1578[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1578"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_15E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_15E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1640[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1640"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_16B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_16B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1718[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1718"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1750[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1750"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_17A8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_17A8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_17D8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_17D8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1828[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1828"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_18E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_18E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1940[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1940"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_19A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_19A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1A00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1A60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1AA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1AA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1AD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1AD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1B38[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1B38"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1BA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1BA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1C40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1C40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1C98[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1C98"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1D00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1D00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1D60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1D60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1DD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1DD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1E58[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1E58"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1ED0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1ED0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1F20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1F58[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F58"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1F90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_1FD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1FD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2008[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2008"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2040[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2040"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2080[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2080"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_20C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_20C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_20F8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_20F8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2160[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2160"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_21D8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_21D8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2240[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2240"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_22B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_22B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2338[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2338"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_23C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_23C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2450[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2450"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2550[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2550"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2588[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2588"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_25D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_25D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2618[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2618"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2658[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2658"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2690[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2690"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_26C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_26C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2708[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2708"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2748[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2748"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2780[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2780"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_27B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_27B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_27F8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_27F8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2850[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2850"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2898[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2898"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_28D8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_28D8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2918[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2918"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2998[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2998"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_29F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_29F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2A50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2A50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2AB8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2AB8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2AF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2AF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2B50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2B50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2BA8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2BA8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2C10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2C10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2C68[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2C68"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2CD8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2CD8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2D30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2D30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2D90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2D90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2DF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2DF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2E60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2E60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2EA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2EA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2F10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2F10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2F90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2F90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_2FF8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2FF8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3030[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3030"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_30A8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_30A8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_30F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_30F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3138[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3138"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3190[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3190"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_31C8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_31C8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3210[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3210"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3268[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3268"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_32A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_32A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3310[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3310"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3350[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3350"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3380[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3380"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_33C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_33C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_34B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_34B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3590[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3590"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3668[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3668"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3748[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3748"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3828[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3828"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3918[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3918"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_39F8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_39F8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3B88[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3B88"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3C48[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3C48"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3D50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3D50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3E50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3E50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_3F30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3F30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_40A8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_40A8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_41B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_41B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_42B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_42B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_43A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_43A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4480[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4480"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_45D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_45D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_46E8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_46E8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_47C8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_47C8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_48B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_48B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_49A8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_49A8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4A88[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4A88"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4B90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4B90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4C50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4C50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4CB8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4CB8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4D28[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D28"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4D90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4DF8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4DF8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4E20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4E20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_4F00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4F00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5018[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5018"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5030[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5030"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_50D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_50D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5170[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5170"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5208[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5208"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5290[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5290"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_52B8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_52B8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5410[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5410"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5420[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5420"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5498[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5498"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5530[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5530"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_55C8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_55C8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5640[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5640"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5668[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5668"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5700[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5700"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_57A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_57A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5848[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5848"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_58E8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_58E8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5988[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5988"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5A30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5A30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5B70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5B70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5BF8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5BF8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5C98[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5C98"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5D30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5D30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5DC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5DC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5F08[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5F08"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_5FD8[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5FD8"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6090[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6090"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6130[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6130"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_61F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_61F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6288[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6288"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6358[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6358"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6408[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6408"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_64D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_64D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6578[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6578"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6618[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6618"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_66D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_66D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dl_6730[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6730"; + diff --git a/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_vertices.h b/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_vertices.h new file mode 100644 index 000000000..c56b0e231 --- /dev/null +++ b/include/assets/models/tracks/moo_moo_farm/moo_moo_farm_vertices.h @@ -0,0 +1,764 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000000[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000080[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000140[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000140"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000200[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000300[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000300"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000400[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000500[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000500"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000640[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000640"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000700[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000700"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000840[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000840"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000980[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000980"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000A80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000A80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000B80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000B80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000BC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000BC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000CC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000CC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000D80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000D80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000E80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000E80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04000F80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000F80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040010C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040010C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040011C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040011C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001280[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001280"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001380[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001380"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001480[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001480"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001540[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001540"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001640[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001640"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001740[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001740"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001840[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001840"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001940[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001940"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001A40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001A40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001B40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001B40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001C80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001C80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001D40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001D40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001E80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001E80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04001FC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001FC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040020C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040020C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040021C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040021C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002280[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002280"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002300[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002300"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002400[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002400"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002500[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002500"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002600[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002600"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002700[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002700"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002800[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002800"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040028C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040028C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040029C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040029C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002AC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002AC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002B80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002B80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002D80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002D80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04002F00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002F00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040030E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040030E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040031C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040031C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003240[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003240"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003280[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003280"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040032C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040032C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003330[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003330"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040033B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040033B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003430[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003430"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040034B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040034B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003530[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003530"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003570[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003570"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040035B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040035B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003620[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003620"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040036A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040036A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003860[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003860"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003A30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003A30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003BF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003BF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003DD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003DD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04003F90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003F90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04004190[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004190"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040042D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040042D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040044D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040044D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040045F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040045F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04004790[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004790"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04004990[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004990"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040049C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040049C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04004BA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004BA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04004BF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004BF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04004DC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004DC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04004F80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004F80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04005180[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005180"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04005240[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005240"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04005440[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005440"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040054D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040054D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040056D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040056D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040057B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040057B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04005990[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005990"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04005A80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005A80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04005C70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005C70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04005E10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005E10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04005FF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005FF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040060D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040060D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006200[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006200"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006400[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006400"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006430[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006430"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006540[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006540"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006720[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006720"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006780[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006780"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006980[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006980"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006A10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006A10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006BF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006BF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006CE0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006CE0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006EC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006EC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04006FE0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006FE0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040071C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040071C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040072B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040072B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04007420[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007420"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04007520[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007520"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04007720[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007720"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04007800[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007800"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040079E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040079E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04007B30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007B30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04007D30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007D30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04007F10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007F10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04008090[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008090"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04008280[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008280"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040082E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040082E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040084E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040084E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04008600[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008600"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04008800[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008800"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040088B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040088B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04008AB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008AB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04008C20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008C20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04008E10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008E10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04008FF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008FF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009050[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009050"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009250[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009250"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009400[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009400"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040095E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040095E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009610[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009610"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009740[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009740"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040098C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040098C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009A50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009A50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009B70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009B70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009C90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009C90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04009E70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009E70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400A040[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A040"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400A190[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A190"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400A370[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A370"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400A4E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A4E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400A6E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A6E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400A8C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A8C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400AAA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AAA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400AC20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AC20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400AE00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AE00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400AFB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AFB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400B190[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B190"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400B390[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B390"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400B3F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B3F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400B5F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B5F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400B7D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B7D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400B800[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B800"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400B9F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B9F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400BBD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BBD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400BC00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BC00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400BD60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BD60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400BF50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BF50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400C120[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C120"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400C2C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C2C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400C440[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C440"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400C560[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C560"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400C740[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C740"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400C8C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C8C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400C9F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C9F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400CB50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CB50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400CCD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CCD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400CEC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CEC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400CEF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CEF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400D0F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D0F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400D2B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D2B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400D480[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D480"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400D660[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D660"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400D6C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D6C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400D8C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D8C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400D950[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D950"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400DB40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DB40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400DC30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DC30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400DD80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DD80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400DF70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DF70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400DFF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DFF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400E1E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E1E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400E240[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E240"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400E440[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E440"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400E530[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E530"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400E730[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E730"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400E790[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E790"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400E970[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E970"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400EAB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EAB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400ECA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400ECA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400ED00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400ED00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400EEE0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EEE0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400EF90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EF90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400F190[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F190"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400F250[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F250"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400F440[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F440"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400F5C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F5C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400F7A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F7A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400F990[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F990"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400FAE0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FAE0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400FCE0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FCE0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0400FEC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FEC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040100B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040100B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04010170[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010170"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040102D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040102D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040104C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040104C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04010680[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010680"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04010880[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010880"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04010A70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010A70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04010C50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010C50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04010CE0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010CE0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04010E40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010E40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04011040[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011040"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04011240[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011240"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04011270[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011270"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040113E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040113E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040115D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040115D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04011720[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011720"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040118E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040118E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04011A00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011A00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04011BD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011BD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04011DD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011DD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04011E70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011E70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012070[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012070"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012270[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012270"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012320[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012320"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012520[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012520"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012710[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012710"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012800[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012800"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012A00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012A00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012C00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012C00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012CD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012CD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04012ED0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012ED0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040130D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040130D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040131C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040131C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040133C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040133C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040133F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040133F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040135E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040135E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040136D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040136D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040138D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040138D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04013AD0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013AD0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04013BA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013BA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04013DA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013DA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04013E20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013E20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04013EA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013EA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04014090[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014090"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040140C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040140C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04014240[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014240"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04014430[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014430"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040145D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040145D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040147D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040147D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04014850[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014850"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04014A40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014A40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04014BB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014BB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04014DB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014DB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04014E30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014E30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015020[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015020"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015110[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015110"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015310[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015310"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015510[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015510"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040155F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040155F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040157F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040157F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015820[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015820"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015860[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015860"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040158A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040158A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015A90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015A90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015C70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015C70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015D00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015D00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04015F00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015F00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040160E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040160E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040162E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040162E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04016340[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016340"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04016540[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016540"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04016720[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016720"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04016890[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016890"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04016A90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016A90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04016C90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016C90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04016D60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016D60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04016F60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016F60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017160[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017160"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017350[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017350"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017390[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017390"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017590[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017590"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017610[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017610"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017810[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017810"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017A00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017A00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017A30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017A30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017C30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017C30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017C70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017C70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017E70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017E70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04017F60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017F60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018160[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018160"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018360[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018360"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018450[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018450"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018630[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018630"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018670[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018670"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018870[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018870"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018950[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018950"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018B50[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018B50"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018B90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018B90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018D70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018D70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04018E60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018E60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019060[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019060"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019250[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019250"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019450[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019450"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019480[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019480"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019680[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019680"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019700[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019700"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040197C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040197C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019840[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019840"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x040198C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040198C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019AC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019AC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019CC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019CC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019EC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019EC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x04019F40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019F40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401A100[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A100"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401A2C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A2C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401A4C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A4C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401A640[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A640"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401A740[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A740"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401A8A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A8A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401A920[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A920"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401AA20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AA20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401AA60[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AA60"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401AAA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AAA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401AAE0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AAE0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401AB20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AB20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401AC20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AC20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401ADF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401ADF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401AEF0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AEF0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401B070[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B070"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401B1A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B1A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401B3A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B3A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401B4E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B4E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401B660[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B660"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401B7A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B7A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401B940[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B940"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401BA80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BA80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401BC20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BC20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401BD90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BD90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401BEA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BEA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401BFB0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BFB0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C030[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C030"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C0B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C0B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C1F0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C1F0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C2B0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C2B0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C440[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C440"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C550[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C550"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C6C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C6C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C7D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C7D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401C930[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C930"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401CA30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CA30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401CC10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CC10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401CC70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CC70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401CE00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401CE40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401CE80[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE80"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401D060[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D060"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401D1C0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D1C0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401D3A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D3A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401D5A0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D5A0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401D600[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D600"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401D740[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D740"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401D8E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D8E0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401DA20[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DA20"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401DC00[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DC00"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401DC30[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DC30"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401DDC0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DDC0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401DF10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DF10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401E040[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E040"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401E220[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E220"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401E340[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E340"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401E510[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E510"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401E6D0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E6D0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401E880[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E880"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401EA70[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EA70"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401EAA0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EAA0"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401EC40[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EC40"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401EE10[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EE10"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401EF90[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EF90"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex_0x0401F0E0[] = "__OTR__models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401F0E0"; + diff --git a/include/assets/models/tracks/rainbow_road/rainbow_road_data.h b/include/assets/models/tracks/rainbow_road/rainbow_road_data.h new file mode 100644 index 000000000..a96caf43e --- /dev/null +++ b/include/assets/models/tracks/rainbow_road/rainbow_road_data.h @@ -0,0 +1,138 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_D8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_D8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_178[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_178"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_210[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_210"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_288[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_288"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_338[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_338"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_3D0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_3D0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_4A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_4A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_528[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_528"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_5F8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_5F8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_658[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_658"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_6E0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_6E0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_730[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_730"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_7A8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_7A8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_7F8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_7F8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_880[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_880"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_8E0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_8E0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_958[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_958"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_9C8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_9C8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_A70[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_A70"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_B08[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_B08"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_B70[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_B70"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_BF0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_BF0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_C70[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_C70"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_D10[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_D10"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_D80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_D80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_E08[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_E08"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_E98[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_E98"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_F50[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_F50"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_FB0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_FB0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1030[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1030"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_10A8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_10A8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1150[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1150"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1198[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1198"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1228[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1228"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_12A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_12A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1340[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1340"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_13F0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_13F0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1488[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1488"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_14E8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_14E8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1530[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1530"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_15D0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_15D0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1678[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1678"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_16C0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_16C0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1738[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1738"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_17D0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_17D0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1878[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1878"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_18D0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_18D0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1948[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_1948"; + +static const ALIGN_ASSET(2) char rainbow_road_data_seg6_lights_12010[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/rainbow_road_data_seg6_lights_12010"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_lower_jaw_model[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_lower_jaw_model"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_151A8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_151A8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_lower_model1[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_body_lower_model1"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_lower_model2[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_body_lower_model2"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_lower_model3[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_body_lower_model3"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_15550[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_15550"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_upper_jaw_model[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_upper_jaw_model"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_158C0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_158C0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_upper_back_model1[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_body_upper_back_model1"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_upper_back_model2[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_body_upper_back_model2"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_upper_back_model3[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_body_upper_back_model3"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_15C68[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_15C68"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_eyes_model[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chomp_eyes_model"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_15F18[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_15F18"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_16220[] = "__OTR__models/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_dl_16220"; + diff --git a/include/assets/models/tracks/rainbow_road/rainbow_road_displaylists.h b/include/assets/models/tracks/rainbow_road/rainbow_road_displaylists.h new file mode 100644 index 000000000..0bf155e23 --- /dev/null +++ b/include/assets/models/tracks/rainbow_road/rainbow_road_displaylists.h @@ -0,0 +1,78 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_308[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_308"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_498[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_498"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_5C8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_5C8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_730[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_730"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_918[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_918"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_A48[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_A48"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_B90[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_B90"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_D88[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_D88"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_EA8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_EA8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_FF0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_FF0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1168[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1168"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1318[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1318"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1380[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1380"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1390[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1390"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_13A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_13A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1528[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1528"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_15F8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_15F8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1698[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1698"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1758[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1758"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1850[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1850"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1978[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1978"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1A20[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1A20"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1B28[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1B28"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1BC0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1BC0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1C70[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1C70"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1D30[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1D30"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1E18[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1E18"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1E80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1E80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1FB8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1FB8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_1FC8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1FC8"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_2068[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2068"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_2078[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2078"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_20C0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20C0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_20D0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20D0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dl_20F8[] = "__OTR__models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20F8"; + diff --git a/include/assets/models/tracks/rainbow_road/rainbow_road_vertices.h b/include/assets/models/tracks/rainbow_road/rainbow_road_vertices.h new file mode 100644 index 000000000..c5a40ab2b --- /dev/null +++ b/include/assets/models/tracks/rainbow_road/rainbow_road_vertices.h @@ -0,0 +1,226 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04000000[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04000200[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04000400[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04000600[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04000800[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04000A00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000A00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04000C00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000C00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04000E00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000E00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001000[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001000"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001200[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001200"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001400[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001400"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001500[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001500"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001700[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001700"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001900[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001900"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001B00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001B00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001D00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001D00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001F00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001F00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04001F80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001F80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04002180[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002180"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04002380[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002380"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04002580[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002580"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04002780[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002780"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04002980[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002980"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04002B80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002B80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04002D80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002D80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04002F80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002F80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003100[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003100"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003300[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003300"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003500[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003500"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003700[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003700"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003900[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003900"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003B00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003B00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003D00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003D00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003DC0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003DC0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04003FC0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003FC0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040041C0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040041C0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040043A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040043A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040045A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040045A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040047A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040047A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040049A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040049A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04004BA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004BA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04004DA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004DA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04004E20[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004E20"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005020[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005020"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005220[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005220"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005420[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005420"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005620[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005620"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005820[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005820"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005A20[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005A20"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005BA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005BA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005DA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005DA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04005FA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005FA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040061A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040061A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04006320[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006320"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04006520[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006520"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04006720[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006720"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04006920[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006920"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04006B20[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006B20"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04006BA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006BA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04006DA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006DA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04006FA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006FA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040071A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040071A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040073A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040073A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040075A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040075A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040077A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040077A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x040079A0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040079A0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04007B80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007B80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04007D80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007D80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04007F80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007F80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008100[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008100"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008300[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008300"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008500[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008500"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008700[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008700"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008900[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008900"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008A80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008A80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008C80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008C80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008E80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008E80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04008F00[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008F00"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009100[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009100"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009300[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009300"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009500[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009500"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009700[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009700"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009740[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009740"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009920[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009920"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009B20[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009B20"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009B80[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009B80"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009BC0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009BC0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009DA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009DA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x04009EE0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009EE0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400A0E0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A0E0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400A260[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A260"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400A460[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A460"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400A640[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A640"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400A820[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A820"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400A8C0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A8C0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400AAA0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AAA0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400AC60[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AC60"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400AE60[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AE60"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400B040[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B040"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400B080[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B080"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400B280[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B280"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400B440[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B440"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400B640[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B640"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400B840[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B840"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400B930[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B930"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400BB10[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BB10"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400BC50[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BC50"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400BCF0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BCF0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400BEF0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BEF0"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex_0x0400C0F0[] = "__OTR__models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400C0F0"; + diff --git a/include/assets/models/tracks/royal_raceway/royal_raceway_data.h b/include/assets/models/tracks/royal_raceway/royal_raceway_data.h new file mode 100644 index 000000000..6a31e40a1 --- /dev/null +++ b/include/assets/models/tracks/royal_raceway/royal_raceway_data.h @@ -0,0 +1,284 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_258[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_258"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_360[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_360"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_470[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_470"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_6D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A48[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_A48"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_B40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_DA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_DA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_F40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_F40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1180[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_1180"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_12C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_12C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1538[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_1538"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1610[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_1610"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1850[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_1850"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_19B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_19B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1BB8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_1BB8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1C40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_1C40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1E88[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_1E88"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2018[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_2018"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_21A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_21A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2210[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_2210"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2428[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_2428"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_25F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_25F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_26F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_26F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_27B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_27B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_29A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_29A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2B78[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_2B78"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2C20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_2C20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2DD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_2DD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2FE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_2FE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_31F8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_31F8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_33B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_33B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3580[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_3580"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3748[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_3748"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3960[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_3960"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3AD8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_3AD8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3BA8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_3BA8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3D38[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_3D38"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3ED8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_3ED8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3FA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_3FA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4048[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4048"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_41D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_41D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4380[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4380"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4438[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4438"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_44C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_44C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_45A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_45A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_46A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_46A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4750[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4750"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4800[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4800"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4930[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4930"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4A38[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4A38"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4AE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4AE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4BA8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4BA8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4D00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4D00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4DF8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4DF8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4EC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4EC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4F80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_4F80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_50F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_50F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_51D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_51D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_52F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_52F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_53B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_53B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_54F8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_54F8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5598[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5598"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_56C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_56C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5758[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5758"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5890[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5890"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5900[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5900"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5A40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5A40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5B28[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5B28"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5CA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5CA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5D08[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5D08"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5EB8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5EB8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5FD8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_5FD8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6118[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_6118"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_61B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_61B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6378[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_6378"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6538[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_6538"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6780[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_6780"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_68C8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_68C8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6BC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_6BC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6E20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_6E20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_70C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_70C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_72B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_72B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_75C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_75C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7778[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_7778"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_78E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_78E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7AD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_7AD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7BD8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_7BD8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7DB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_7DB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7ED8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_7ED8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8068[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8068"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_81C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_81C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8398[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8398"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_84A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_84A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8620[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8620"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8770[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8770"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8838[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8838"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_88B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_88B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8930[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8930"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_89F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_89F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8C58[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8C58"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8CD8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8CD8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8EB8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8EB8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8FA8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_8FA8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9218[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_9218"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_92D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_92D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_94E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_94E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9678[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_9678"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9900[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_9900"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_99A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_99A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9B30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_9B30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9D58[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_9D58"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9FE8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_9FE8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A0A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_A0A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A200[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_A200"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A478[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_A478"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A600[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_A600"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A728[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_A728"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A8A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_A8A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A9D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_A9D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AB28[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_AB28"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AC28[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_AC28"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AD90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_AD90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AE70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_AE70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AFB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_AFB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B040[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_B040"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B188[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_B188"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B230[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_B230"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B2E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_B2E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B3E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_B3E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B508[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_B508"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_tree_model[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_tree_model"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_tree[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_tree"; + +static const ALIGN_ASSET(2) char d_royal_raceway_peaches_castle_tree_model[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_royal_raceway_peaches_castle_tree_model"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_castle_tree[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_castle_tree"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_piranha_plant_model[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_piranha_plant_model"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_piranha_plant[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_piranha_plant"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_D8E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_dl_D8E8"; + diff --git a/include/assets/models/tracks/royal_raceway/royal_raceway_displaylists.h b/include/assets/models/tracks/royal_raceway/royal_raceway_displaylists.h new file mode 100644 index 000000000..d5f66be1e --- /dev/null +++ b/include/assets/models/tracks/royal_raceway/royal_raceway_displaylists.h @@ -0,0 +1,652 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_130[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_130"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1C8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1C8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_230[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_230"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_320[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_320"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_340[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_340"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_548[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_548"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_558[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_558"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_650[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_650"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_668[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_668"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_750[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_750"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_840[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_840"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_860[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_860"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_930[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_930"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9C8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9C8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AB8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AB8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_B78[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B78"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_C38[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_C38"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_C68[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_C68"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_CE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_CE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_CF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_CF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_E88[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_E88"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_E98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_E98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_F88[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_F88"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1098[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1098"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_11A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_11A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_11C8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_11C8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_12B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_12B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1438[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1438"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1450[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1450"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_14C8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_14C8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1548[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1548"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_15D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_15D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1640[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1640"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_16B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_16B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1720[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1720"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1788[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1788"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_17F8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_17F8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1860[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1860"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_18D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_18D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1940[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1940"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_19B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_19B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1A30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1A30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1AA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1AA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1B18[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1B18"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1B98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1B98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1C48[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1C48"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1CF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1CF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1D68[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1D68"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1DF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1DF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1E60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1E60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1EF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1EF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1F58[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1F58"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_1FE8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1FE8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_20A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_20A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2110[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2110"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_21B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_21B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2230[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2230"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_22C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_22C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2370[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2370"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_23F8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_23F8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2478[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2478"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2530[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2530"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_25E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_25E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_26B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_26B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2758[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2758"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_27E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_27E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2870[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2870"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_28D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_28D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2950[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2950"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2A10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2A10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2AC8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2AC8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2B38[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2B38"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2BA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2BA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2C08[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2C08"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2CF8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2CF8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2D80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2D80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2E08[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2E08"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2EE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2EE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_2F70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2F70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3018[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3018"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3090[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3090"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3118[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3118"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3190[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3190"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3218[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3218"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3268[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3268"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_32F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_32F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3368[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3368"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_33D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_33D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3440[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3440"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_34C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_34C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3540[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3540"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3628[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3628"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_36B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_36B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3728[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3728"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3790[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3790"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_37E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_37E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3908[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3908"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3978[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3978"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3B50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3B50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3B70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3B70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3C18[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3C18"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3CF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3CF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3DC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3DC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3E50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3E50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3F18[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3F18"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_3FA8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3FA8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4078[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4078"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4118[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4118"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_41A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_41A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4298[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4298"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4350[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4350"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4400[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4400"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_44B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_44B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4538[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4538"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_45E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_45E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_46E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_46E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_47C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_47C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4890[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4890"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4968[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4968"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4A08[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4A08"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4A80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4A80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4B30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4B30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4BC8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4BC8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4CC8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4CC8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4DC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4DC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4E90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4E90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4F20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4F20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_4F98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4F98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5018[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5018"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_50B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_50B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5138[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5138"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_51E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_51E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5298[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5298"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5330[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5330"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5400[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5400"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_54A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_54A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5520[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5520"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_55D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_55D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_56A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_56A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5740[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5740"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_57F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_57F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_58E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_58E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5990[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5990"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5A10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5A10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5AA8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5AA8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5B50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5B50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5C00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5C00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5D18[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5D18"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5DC8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5DC8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_5EF8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5EF8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6008[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6008"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_60D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_60D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6228[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6228"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6328[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6328"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_67E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_67E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6808[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6808"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6880[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6880"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_68E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_68E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6950[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6950"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_69B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_69B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6A10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6A10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6A80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6A80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6B60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6B60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6BE8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6BE8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6C58[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6C58"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6CC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6CC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6D18[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D18"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6D98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6E20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6E20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6EB8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6EB8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6F28[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6F28"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_6FB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6FB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7020[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7020"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_70B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_70B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7138[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7138"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_71A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_71A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7278[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7278"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_72E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_72E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7360[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7360"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_73E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_73E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7490[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7490"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7500[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7500"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7578[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7578"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_75F8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_75F8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7680[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7680"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7718[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7718"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7780[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7780"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_77E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_77E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7868[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7868"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_78E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_78E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7980[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7980"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7A18[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7A18"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7AE8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7AE8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7B50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7B50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7BB8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7BB8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7C20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7C98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7D10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7D10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7D90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7D90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7E08[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7E08"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7E80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7E80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7EF8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7EF8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7F70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7F70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_7FD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7FD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8040[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8040"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_80C8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_80C8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8140[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8140"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_81C8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_81C8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8278[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8278"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8318[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8318"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8390[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8390"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8400[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8400"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8470[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8470"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_84E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_84E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8580[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8580"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8618[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8618"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_86B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_86B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8740[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8740"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8810[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8810"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8888[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8888"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8900[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8900"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8988[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8988"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_89F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_89F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8A60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8A60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8AC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8AC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8B28[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B28"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8B98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8C00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8C00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8C70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8C70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8CD8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8CD8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8D48[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8D48"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8DC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8DC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8E30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8E30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8EA8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8EA8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8F28[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8F28"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_8F98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8F98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9008[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9008"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9080[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9080"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_90F8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_90F8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9168[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9168"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9198[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9198"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9210[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9210"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9290[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9290"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9310[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9310"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9380[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9380"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9408[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9408"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9438[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9438"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_94B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_94B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9520[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9520"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9598[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9598"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9608[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9608"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9630[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9630"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_96A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_96A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9718[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9718"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9778[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9778"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_97E8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_97E8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9848[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9848"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_98B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_98B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9918[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9918"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9988[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9988"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9A38[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9A38"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9A98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9A98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9B08[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9B08"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9B68[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9B68"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9BD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9BD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9C48[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9C48"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9CB8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9CB8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9D20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9D20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9DA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9DA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9E18[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9E18"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9E98[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9E98"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9F10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9F10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9F80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9F80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_9FF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9FF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A050[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A050"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A0B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A0B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A128[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A128"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A1A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A1A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A210[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A210"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A278[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A278"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A2D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A2D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A3C8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A3C8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A438[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A438"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A4B8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A4B8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A538[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A538"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A5A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A5A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A618[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A618"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A648[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A648"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A6A8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A6A8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A718[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A718"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A730[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A730"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A7D8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A7D8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A870[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A870"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A8F8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A8F8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A970[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A970"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_A998[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A998"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AA10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AA10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AA90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AA90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AB28[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AB28"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_ABA8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_ABA8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AC30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AC30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AC60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AC60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_ACE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_ACE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AD78[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AD78"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AE00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AE00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AE70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AE70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AEF8[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AEF8"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_AF28[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AF28"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_B030[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B030"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_B040[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B040"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dl_B120[] = "__OTR__models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B120"; + diff --git a/include/assets/models/tracks/royal_raceway/royal_raceway_vertices.h b/include/assets/models/tracks/royal_raceway/royal_raceway_vertices.h new file mode 100644 index 000000000..348f55899 --- /dev/null +++ b/include/assets/models/tracks/royal_raceway/royal_raceway_vertices.h @@ -0,0 +1,868 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000000[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000200[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000380[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000380"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000480[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000480"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000500[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000500"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000600[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000700[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000700"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000900[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000900"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000B00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000B00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000C00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000C40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000C80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000D00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000D00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000E40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000E40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000F40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000F40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04000FC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000FC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04001080[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001080"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04001140[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001140"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04001280[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001280"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040013E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040013E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040015E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040015E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040017E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040017E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04001980[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001980"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04001B80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001B80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04001C80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001C80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04001E80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001E80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04001F80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001F80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040020A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040020A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002180[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002180"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002200[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002200"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002340[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002340"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002380[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002380"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002400[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002400"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002440[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002440"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002480[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002480"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002580[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002580"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002600[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002600"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002680[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002680"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002780[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002780"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002800[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002800"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002880[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002880"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002980[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002980"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002AE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002AE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002B30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002B30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002D30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002D30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002DB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002DB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04002FB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002FB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003120[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003120"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003220[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003220"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003360[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003360"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003520[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003520"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040035A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040035A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040036A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040036A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003720[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003720"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040037A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040037A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003850[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003850"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040038D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040038D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040039C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040039C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003A40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003A40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003B00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003B00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003C10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003C10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003CC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003CC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003DC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003DC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04003FC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003FC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004040[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004040"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004240[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004240"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004280[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004280"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004380[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004380"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004500[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004500"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040045C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040045C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004780[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004780"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004800[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004800"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040049C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040049C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004A60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004A60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004AA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004AA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004B60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004B60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004D50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004D50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004D90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004D90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04004EB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004EB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04005070[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005070"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04005270[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005270"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040052F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040052F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04005470[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005470"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040055B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040055B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040057B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040057B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04005870[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005870"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04005A70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005A70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04005AF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005AF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04005CF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005CF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04005E90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005E90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006070[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006070"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040060F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040060F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006290[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006290"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006450[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006450"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040064D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040064D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040065D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040065D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040067D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040067D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040068D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040068D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006AD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006AD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006B90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006B90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006C50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006C50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006CD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006CD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006D50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006D50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04006ED0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006ED0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007050[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007050"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007250[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007250"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007410[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007410"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040075D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040075D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040077D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040077D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007810[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007810"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007910[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007910"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007A90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007A90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007B80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007B80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007D00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007D00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007DD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007DD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007EC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007EC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007F70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007F70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04007FC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007FC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008050[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008050"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008100[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008100"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040082F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040082F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040083D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040083D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040084E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040084E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008570[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008570"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040085C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040085C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008640[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008640"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008750[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008750"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008790[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008790"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008850[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008850"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008910[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008910"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040089D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040089D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008A80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008A80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008B40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008B40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008C00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008C00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008E00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008E00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04008F20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008F20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04009120[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009120"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04009320[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009320"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040093E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040093E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040095D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040095D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040097C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040097C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04009820[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009820"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04009A00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009A00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04009A60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009A60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04009C60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009C60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04009E40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009E40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04009EA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009EA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400A080[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A080"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400A0E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A0E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400A2C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A2C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400A4B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A4B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400A570[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A570"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400A770[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A770"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400A800[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A800"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400A9E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A9E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400AA40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AA40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400AC20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AC20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400AE00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AE00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400AFE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AFE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400B040[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B040"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400B240[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B240"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400B3F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B3F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400B5D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B5D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400B770[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B770"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400B950[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B950"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400BB30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BB30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400BD20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BD20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400BF00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BF00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400C050[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C050"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400C230[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C230"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400C410[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C410"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400C5F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C5F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400C6E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C6E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400C8D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C8D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400CAC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CAC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400CBB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CBB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400CD90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CD90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400CF90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CF90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400CFF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CFF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400D1F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D1F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400D3E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D3E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400D4A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D4A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400D680[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D680"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400D770[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D770"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400D8F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D8F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400DAF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DAF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400DC70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DC70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400DE50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DE50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400DF10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DF10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400E0F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E0F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400E2F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E2F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400E4D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E4D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400E590[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E590"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400E770[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E770"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400E950[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E950"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400EB40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EB40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400EB70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EB70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400ED50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400ED50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400EDB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EDB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400EED0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EED0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400F050[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F050"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400F250[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F250"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400F2B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F2B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400F4A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F4A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400F690[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F690"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400F7D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F7D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400F9C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F9C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400FB40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FB40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400FD20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FD20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400FD80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FD80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0400FF80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FF80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04010180[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010180"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040101B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040101B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040103A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040103A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040104B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040104B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04010620[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010620"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04010820[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010820"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04010950[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010950"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04010B40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010B40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04010D20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010D20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04010D70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010D70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04010F60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010F60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011020[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011020"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011220[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011220"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011360[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011360"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011550[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011550"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011750[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011750"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011950[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011950"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011B30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011B30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011C50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011C50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011DE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011DE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04011FC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011FC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012050[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012050"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012250[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012250"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012370[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012370"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012550[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012550"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012690[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012690"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012870[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012870"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012A50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012A50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012C40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012C40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012DF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012DF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04012FD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012FD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04013110[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013110"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040132F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040132F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040134F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040134F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040136F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040136F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040138D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040138D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04013920[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013920"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04013B00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013B00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04013CF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013CF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04013EF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013EF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04013F60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013F60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04013FA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013FA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040140F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040140F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040142D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040142D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040143E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040143E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040145E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040145E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04014620[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014620"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04014820[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014820"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04014A20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014A20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04014C20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014C20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04014D60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014D60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04014F60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014F60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015150[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015150"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015350[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015350"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015550[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015550"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015740[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015740"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015920[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015920"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015AE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015AE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015CD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015CD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015EB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015EB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04015FF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015FF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016140[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016140"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016200[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016200"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016280[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016280"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040162D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040162D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016330[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016330"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016430[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016430"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016610[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016610"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016810[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016810"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016930[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016930"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016AF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016AF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016BB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016BB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016C40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016C40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016DF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016DF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04016FF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016FF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040171E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040171E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017210[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017210"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017300[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017300"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017500[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017500"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017610[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017610"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017800[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017800"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017830[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017830"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017980[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017980"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017A40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017A40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017B00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017B00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017D00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017D00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017D60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017D60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04017E80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017E80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018000[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018000"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040181B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040181B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018240[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018240"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018340[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018340"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018430[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018430"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040185A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040185A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018750[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018750"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018940[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018940"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018B30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018B30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018B60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018B60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018C20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018C20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018CE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018CE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018E90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018E90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04018F80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018F80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019160[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019160"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019200[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019200"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019400[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019400"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019460[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019460"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019520[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019520"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040195E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040195E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019690[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019690"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x040197E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040197E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019940[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019940"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019AF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019AF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019C60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019C60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019DC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019DC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04019F10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019F10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401A050[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A050"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401A0B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A0B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401A1C0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A1C0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401A3B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A3B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401A4E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A4E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401A6E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A6E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401A8E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A8E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401AA20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AA20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401AC10[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AC10"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401ACA0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401ACA0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401AE20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AE20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401AF20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AF20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401B010[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B010"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401B160[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B160"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401B340[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B340"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401B370[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B370"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401B550[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B550"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401B5E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B5E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401B7E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B7E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401B870[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B870"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BA70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BA70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BB80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BB80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BC50[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BC50"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BD60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BD60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BDB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BDB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BE40[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BE40"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BE80[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BE80"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BED0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BED0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BF60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BF60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401BFB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BFB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C020[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C020"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C070[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C070"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C100[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C100"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C220[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C220"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C2B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C2B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C3D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C3D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C4B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C4B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C590[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C590"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C6F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C6F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C860[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C860"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401C980[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C980"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401CB00[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CB00"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401CCC0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CCC0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401CE90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CE90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401CF60[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CF60"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D150[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D150"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D200[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D200"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D260[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D260"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D320[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D320"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D3B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D3B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D4B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D4B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D570[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D570"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D5B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D5B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D670[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D670"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D6B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D6B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D770[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D770"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D7B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D7B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D870[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D870"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D8B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D8B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D8F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D8F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D930[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D930"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401D9F0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D9F0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401DA30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DA30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401DAB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DAB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401DBB0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DBB0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401DC70[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DC70"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401DCF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DCF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401DE20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DE20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401DF20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DF20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E060[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E060"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E160[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E160"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E220[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E220"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E2E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E2E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E320[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E320"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E360[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E360"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E460[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E460"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E560[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E560"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E620[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E620"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E6A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E6A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E6E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E6E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E7A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E7A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401E8E0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E8E0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401EA20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EA20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401EA90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EA90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401EB90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EB90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401EBD0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EBD0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401EC90[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EC90"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401EDE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EDE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401EEF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EEF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401F000[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F000"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401F0D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F0D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401F220[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F220"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401F3B0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F3B0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401F5A0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F5A0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401F5D0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F5D0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401F770[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F770"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401F950[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F950"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401FAF0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FAF0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401FCE0[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FCE0"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401FD30[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FD30"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x0401FF20[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FF20"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04020040[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020040"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04020200[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020200"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04020400[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020400"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex_0x04020600[] = "__OTR__models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020600"; + diff --git a/include/assets/models/tracks/sherbet_land/sherbet_land_data.h b/include/assets/models/tracks/sherbet_land/sherbet_land_data.h new file mode 100644 index 000000000..54f38aaeb --- /dev/null +++ b/include/assets/models/tracks/sherbet_land/sherbet_land_data.h @@ -0,0 +1,364 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_158[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_158"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1A8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1A8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_280[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_280"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_310[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_310"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3B8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3B8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_400[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_400"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4E8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4E8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_560[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_560"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_638[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_638"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_6A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_6A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_768[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_768"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_7A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_7A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_880[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_880"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8E8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8E8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_9A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_9A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_A28[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_A28"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_B08[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_B08"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_BC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_BC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_C88[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_C88"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_D10[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_D10"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_DF0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_DF0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_EC8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_EC8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_F68[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_F68"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1028[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1028"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_10D8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_10D8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_11C8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_11C8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1238[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1238"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_12F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_12F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1368[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1368"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1440[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1440"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1480[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1480"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_14C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_14C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1508[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1508"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1570[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1570"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1598[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1598"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_15F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_15F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1638[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1638"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1698[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1698"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_16C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_16C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1730[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1730"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1778[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1778"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_17D8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_17D8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1828[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1828"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_18A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_18A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_18E8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_18E8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1920[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1920"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_19A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_19A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_19F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_19F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1A58[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1A58"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1A90[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1A90"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1AF8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1AF8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1B50[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1B50"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1BA8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1BA8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1C20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1C20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1C48[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1C48"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1D08[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1D08"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1D60[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1D60"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1E10[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1E10"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1E88[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1E88"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1F70[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_1F70"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2010[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2010"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_20D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_20D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2190[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2190"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2288[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2288"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_22F8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_22F8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2370[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2370"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2438[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2438"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2530[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2530"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_25A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_25A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_25F8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_25F8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_26D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_26D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_27F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_27F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_28A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_28A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2918[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2918"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2A38[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2A38"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2B08[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2B08"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2BE0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2BE0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2C58[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2C58"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2D78[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2D78"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2E28[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2E28"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2F48[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2F48"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2FE8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_2FE8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_30E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_30E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3150[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3150"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3260[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3260"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3320[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3320"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_33E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_33E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3490[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3490"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_35A8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_35A8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_36A8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_36A8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3770[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3770"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3840[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3840"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3940[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3940"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3A50[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3A50"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3AE0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3AE0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3BA8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3BA8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3C48[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3C48"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3D40[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3D40"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3D98[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3D98"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3E58[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3E58"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3EB8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3EB8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3FA0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3FA0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3FC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3FC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3FD8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3FD8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3FE8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_3FE8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4000[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4000"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4010[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4010"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4018[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4018"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4020[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4020"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4028[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4028"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4030[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4030"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4038[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4038"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4040[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4040"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4048[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4048"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4050[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4050"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4058[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4058"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4060[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4060"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4068[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4068"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4070[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4070"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4078[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4078"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4080[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4080"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4088[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4088"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4090[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4090"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4098[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4098"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_40A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_40A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_40A8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_40A8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_40B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_40B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4180[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4180"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_41B8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_41B8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4280[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4280"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_42E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_42E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_43C8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_43C8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4470[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4470"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4570[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4570"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4618[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4618"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4710[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4710"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4798[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4798"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4868[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4868"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4930[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4930"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4A20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4A20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4A98[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4A98"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4B20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_4B20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_model1[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_model1"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_model2[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_model2"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_model3[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_model3"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_model4[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_model4"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_70E8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_70E8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_7208[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_7208"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_ice_block[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_ice_block"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_7228[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_7228"; + +static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_7240[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/sherbet_land_data_seg6_lights_7240"; + +static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_7258[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/sherbet_land_data_seg6_lights_7258"; + +static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_7270[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/sherbet_land_data_seg6_lights_7270"; + +static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_7288[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/sherbet_land_data_seg6_lights_7288"; + +static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_72A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/sherbet_land_data_seg6_lights_72A0"; + +static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_72D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/sherbet_land_data_seg6_lights_72D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_eyes_model[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_eyes_model"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8368[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8368"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_nose_model[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_nose_model"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_83D8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_83D8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_head_model1[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_head_model1"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_head_model2[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_head_model2"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_85B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_85B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_arms_model[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_arms_model"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8730[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8730"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_unknown_model[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_unknown_model"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8808[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8808"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8810[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8810"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_right_foot_model[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_right_foot_model"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8930[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8930"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_left_foot_model[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_left_foot_model"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8A78[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8A78"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_body_model1[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_body_model1"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_body_model2[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_body_model2"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8D00[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8D00"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8E00[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_8E00"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_9AE8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_dl_9AE8"; + diff --git a/include/assets/models/tracks/sherbet_land/sherbet_land_displaylists.h b/include/assets/models/tracks/sherbet_land/sherbet_land_displaylists.h new file mode 100644 index 000000000..38654f92d --- /dev/null +++ b/include/assets/models/tracks/sherbet_land/sherbet_land_displaylists.h @@ -0,0 +1,208 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_180[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_180"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_240[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_240"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_300[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_300"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_328[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_328"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_338[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_338"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_348[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_348"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_470[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_470"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_5D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_5D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_730[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_730"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_858[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_858"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_9A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_9A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_B00[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_B00"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_C30[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_C30"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_D48[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_D48"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_D90[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_D90"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_E00[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_E00"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_EA0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_EA0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_EB8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_EB8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_F48[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_F48"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_FD0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_FD0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1050[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1050"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_10C8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_10C8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1148[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1148"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_11B8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_11B8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1220[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1220"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_12C8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_12C8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1370[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1370"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_13E8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_13E8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1450[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1450"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_14B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_14B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1520[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1520"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1598[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1598"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1640[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1640"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_16B8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_16B8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1720[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1720"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1798[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1798"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1800[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1800"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1870[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1870"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_18E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_18E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1940[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1940"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1998[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1998"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1A18[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1A18"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1A98[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1A98"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1B20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1B20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1BE0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1BE0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1C50[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1C50"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1CD8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1CD8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1D48[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1D48"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1DC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1DC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1E40[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1E40"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1EB8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1EB8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1F10[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1F10"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1F78[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1F78"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_1FF0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1FF0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2068[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2068"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_20D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_20D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2138[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2138"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_21B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_21B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2220[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2220"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2290[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2290"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2308[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2308"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2358[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2358"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2450[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2450"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2548[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2548"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2640[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2640"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2738[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2738"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2760[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2760"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2798[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2798"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_27A8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_27A8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2B48[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2B48"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2B58[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2B58"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2BC8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2BC8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2C68[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2C68"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2C80[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2C80"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2CF0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2CF0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2D80[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2D80"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2E08[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2E08"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2E88[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2E88"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2F00[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2F00"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2F80[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2F80"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_2FE8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2FE8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3058[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3058"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_30C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_30C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3170[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3170"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3218[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3218"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3290[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3290"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_32F8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_32F8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3368[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3368"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_33E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_33E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3488[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3488"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3500[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3500"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3568[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3568"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_35E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_35E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3648[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3648"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_36B8[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_36B8"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3728[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3728"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3788[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3788"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_37E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_37E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dl_3848[] = "__OTR__models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3848"; + diff --git a/include/assets/models/tracks/sherbet_land/sherbet_land_vertices.h b/include/assets/models/tracks/sherbet_land/sherbet_land_vertices.h new file mode 100644 index 000000000..6d46e85b3 --- /dev/null +++ b/include/assets/models/tracks/sherbet_land/sherbet_land_vertices.h @@ -0,0 +1,286 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000000[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000040[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000040"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000080[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040000C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040000C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000100[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000100"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000140[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000140"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000180[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000180"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040001C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040001C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000200[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000400[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000600[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000800[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040008B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040008B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000AB0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000AB0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000CB0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000CB0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04000EA0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000EA0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040010A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040010A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040011D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040011D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040013B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040013B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04001590[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001590"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04001780[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001780"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04001970[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001970"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04001B20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001B20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04001D20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001D20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04001F20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001F20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040020B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040020B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040020F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040020F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040022E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040022E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040024C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040024C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040026A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040026A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04002890[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002890"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040028F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040028F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04002AD0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002AD0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04002CC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002CC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04002EC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002EC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040030C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040030C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003230[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003230"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003410[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003410"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003600[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003600"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003800[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003800"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040039D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040039D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003BC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003BC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003DA0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003DA0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003E80[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003E80"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003EC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003EC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04003FC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003FC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040041C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040041C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04004230[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004230"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040043F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040043F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04004570[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004570"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04004750[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004750"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040048B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040048B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04004A60[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004A60"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04004B80[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004B80"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04004C40[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004C40"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04004E40[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004E40"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04004F30[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004F30"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005120[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005120"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040051B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040051B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005330[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005330"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040053F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040053F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040054B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040054B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040055B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040055B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040057B0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040057B0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040057F0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040057F0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040058C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040058C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005940[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005940"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005A40[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005A40"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005AC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005AC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005B80[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005B80"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005C40[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005C40"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005C80[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005C80"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005D30[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005D30"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005DE0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005DE0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005EE0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005EE0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005F80[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005F80"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04005FC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005FC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006040[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006040"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006110[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006110"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006180[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006180"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006220[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006220"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040062D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040062D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006370[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006370"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040063C0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040063C0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006450[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006450"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040064E0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040064E0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006540[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006540"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006590[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006590"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006620[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006620"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006690[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006690"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006700[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006700"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006790[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006790"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006990[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006990"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006B90[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006B90"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006C10[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006C10"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04006E10[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006E10"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007010[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007010"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007090[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007090"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007290[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007290"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007490[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007490"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007510[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007510"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007710[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007710"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007910[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007910"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007990[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007990"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007A20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007A20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007C20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007C20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04007E20[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007E20"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008020[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008020"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008220[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008220"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008420[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008420"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008620[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008620"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008800[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008800"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008870[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008870"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008970[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008970"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008B50[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008B50"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008BC0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008BC0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008CE0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008CE0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04008EA0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008EA0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009020[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009020"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009200[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009200"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009360[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009360"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009510[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009510"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040095D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040095D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x040096D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040096D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009790[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009790"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009980[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009980"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009AA0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009AA0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009C90[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009C90"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009D50[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009D50"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009ED0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009ED0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x04009F90[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009F90"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A090[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A090"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A290[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A290"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A2D0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A2D0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A3A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A3A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A420[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A420"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A520[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A520"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A5A0[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A5A0"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A660[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A660"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex_0x0400A720[] = "__OTR__models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A720"; + diff --git a/include/assets/models/tracks/skyscraper/skyscraper_data.h b/include/assets/models/tracks/skyscraper/skyscraper_data.h new file mode 100644 index 000000000..2a687bbf1 --- /dev/null +++ b/include/assets/models/tracks/skyscraper/skyscraper_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_skyscraper_dl[] = "__OTR__models/tracks/skyscraper/skyscraper_data/d_course_skyscraper_dl"; + diff --git a/include/assets/models/tracks/skyscraper/skyscraper_displaylists.h b/include/assets/models/tracks/skyscraper/skyscraper_displaylists.h new file mode 100644 index 000000000..31d2f052b --- /dev/null +++ b/include/assets/models/tracks/skyscraper/skyscraper_displaylists.h @@ -0,0 +1,44 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_0[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_238[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_238"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_248[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_248"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_258[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_258"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_268[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_268"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_570[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_570"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_580[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_580"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_6B8[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_6B8"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_6C8[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_6C8"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_8D8[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_8D8"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_B70[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_B70"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_B88[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_B88"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_C60[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_C60"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_C70[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_C70"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_FE8[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_FE8"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_FF8[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_FF8"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_10C8[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_10C8"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_10D8[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_10D8"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dl_1110[] = "__OTR__models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_1110"; + diff --git a/include/assets/models/tracks/skyscraper/skyscraper_vertices.h b/include/assets/models/tracks/skyscraper/skyscraper_vertices.h new file mode 100644 index 000000000..e7e9f749a --- /dev/null +++ b/include/assets/models/tracks/skyscraper/skyscraper_vertices.h @@ -0,0 +1,104 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000000[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000200[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000400[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000400"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000600[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000600"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000800[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000800"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000A00[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000A00"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000C00[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000C00"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000D00[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000D00"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04000F00[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000F00"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04001100[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001100"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040012F0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040012F0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040014E0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040014E0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04001520[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001520"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04001560[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001560"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040015A0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040015A0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040015E0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040015E0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040017E0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040017E0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04001960[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001960"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04001B40[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001B40"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04001D40[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001D40"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04001E80[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001E80"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002080[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002080"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002280[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002280"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002480[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002480"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002680[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002680"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002880[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002880"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002960[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002960"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002B60[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002B60"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002D60[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002D60"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04002F40[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002F40"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003140[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003140"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003340[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003340"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003520[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003520"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003680[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003680"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003880[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003880"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040038E0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040038E0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040039A0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040039A0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003A20[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003A20"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003AA0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003AA0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003B20[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003B20"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003C20[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003C20"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003D20[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003D20"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003DE0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003DE0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003F20[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003F20"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04003FE0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003FE0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x04004060[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04004060"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040040A0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040040A0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040040E0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040040E0"; + +static const ALIGN_ASSET(2) char d_course_skyscraper_vertex_0x040042E0[] = "__OTR__models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040042E0"; + diff --git a/include/assets/models/tracks/toads_turnpike/toads_turnpike_data.h b/include/assets/models/tracks/toads_turnpike/toads_turnpike_data.h new file mode 100644 index 000000000..e66bc164f --- /dev/null +++ b/include/assets/models/tracks/toads_turnpike/toads_turnpike_data.h @@ -0,0 +1,702 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_60[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_60"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_158[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_158"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_380[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_380"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_438[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_438"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_4E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_4E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_5B8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_5B8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_668[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_668"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_718[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_718"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_7D8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_7D8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_878[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_878"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_948[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_948"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_9F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_9F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_AC8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_AC8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_B88[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_B88"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_C70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_C70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_D00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_D00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_DD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_DD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_E70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_E70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_F18[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_F18"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_FA8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_FA8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1070[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1070"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1118[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1118"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_11C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_11C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1250[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1250"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1310[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1310"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_13E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_13E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1468[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1468"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1510[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1510"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_15A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_15A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1678[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1678"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1708[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1708"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_17F8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_17F8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_18C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A60[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A60"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1C10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1D18[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1D18"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1DC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1DC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2030[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2030"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20F8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_20F8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21C8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21C8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2358[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2358"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2440[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2440"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2530[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2530"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2628[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2628"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_26D8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_26D8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_27D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_27D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2898[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2898"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2960[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2960"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2A00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2A00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2AF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2AF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2B88[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2B88"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2C38[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2C38"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2CC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2CC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2DB8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2DB8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2E50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2E50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2EF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2EF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2F78[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_2F78"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3030[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3030"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_30F8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_30F8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3190[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3190"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3228[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3228"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_32F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_32F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_33A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_33A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3438[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3438"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_34D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_34D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3570[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3570"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3618[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3618"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_36A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_36A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3758[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3758"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_37F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_37F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3910[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3910"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_39C8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_39C8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3AD8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_3AD8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_model_lod0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_model_lod0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model3[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model3"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model4[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model4"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model5[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model5"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model6[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model6"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model7[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model7"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model9[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model9"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model11[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model11"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model12[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model12"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model13[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model13"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18DB8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_18DB8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18E38[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_18E38"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18EB8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_18EB8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18F58[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_18F58"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18FF8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_18FF8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19020[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19020"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19030[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19030"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_190E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_190E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19168[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19168"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_192B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_192B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19390[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19390"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19450[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19450"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_194E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_194E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19518[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19518"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_model_lod1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_model_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model14[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model14"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model15[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model15"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model16[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model16"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model17[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model17"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model18[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model18"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model19[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model19"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model20[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model20"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19CF8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19CF8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19D68[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19D68"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19DD8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19DD8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19DF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19DF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19E00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19E00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19E38[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19E38"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19EA0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19EA0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19F08[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_19F08"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A040[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A040"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A068[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A068"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_model_lod2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_model_lod2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model21[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model21"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model22[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model22"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model23[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model23"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model24[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model24"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A4B8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A4B8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A528[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A528"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A5E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A5E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A5F8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A5F8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A608[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A608"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A640[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A640"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A6B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A6B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A6C8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1A6C8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_model_lod0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_model_lod0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model3[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model3"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model4[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model4"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model5[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model5"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model6[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model6"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model7[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model7"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model9[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model9"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model11[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model11"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model12[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model12"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model13[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model13"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model14[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model14"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model15[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model15"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B5C8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B5C8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B658[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B658"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B6D8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B6D8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B758[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B758"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B778[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B778"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B788[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B788"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B810[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B810"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B8A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1B8A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1BC78[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1BC78"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1BD48[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1BD48"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1BE18[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1BE18"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1BE48[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1BE48"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_model_lod1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_model_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model16[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model16"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model17[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model17"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model18[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model18"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model19[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model19"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model20[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model20"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model21[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model21"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model22[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model22"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model23[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model23"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model24[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model24"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model25[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model25"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C628[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1C628"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C688[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1C688"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C6E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1C6E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C700[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1C700"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C710[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1C710"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C770[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1C770"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C7D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1C7D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CA88[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1CA88"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CAA8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1CAA8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_model_lod2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_model_lod2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model26[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model26"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model27[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model27"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model28[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model28"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model29[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model29"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model31[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model31"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CD98[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1CD98"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CDF8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1CDF8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CE58[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1CE58"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CE70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1CE70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CE80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1CE80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1D008[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1D008"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1D018[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1D018"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_model_lod0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_model_lod0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model3[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model3"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model4[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model4"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model5[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model5"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model6[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model6"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model7[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model7"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model9[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model9"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model11[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model11"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model12[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model12"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model13[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model13"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model14[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model14"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E288[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E288"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E318[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E318"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E3A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E3A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E438[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E438"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E458[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E458"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E468[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E468"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E508[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E508"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E810[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E810"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E8A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E8A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E970[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1E970"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1EA40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1EA40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1EB10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1EB10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1EB48[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1EB48"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_model_lod1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_model_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model15[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model15"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model16[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model16"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model17[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model17"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model18[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model18"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model19[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model19"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model20[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model20"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model21[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model21"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model22[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model22"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model23[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model23"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model24[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model24"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model25[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model25"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model26[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model26"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model27[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model27"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model28[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model28"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model29[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model29"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F7D8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F7D8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F850[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F850"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F8C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F8C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F938[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F938"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F9A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F9A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F9D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F9D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F9E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1F9E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FCD8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1FCD8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FD58[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1FD58"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FDD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1FDD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FE50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1FE50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FEC8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1FEC8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FF50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1FF50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FFC8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_1FFC8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20008[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_20008"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_model_lod2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_model_lod2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model31[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model31"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model32[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model32"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model33[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model33"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20348[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_20348"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20450[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_20450"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_204F8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_204F8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20510[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_20510"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20520[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_20520"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20598[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_20598"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_205A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_205A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_model_lod0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_model_lod0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model3[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model3"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model4[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model4"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model5[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model5"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model6[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model6"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model7[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model7"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model9[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model9"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model11[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model11"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model12[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model12"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model13[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model13"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model14[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model14"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model15[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model15"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21648[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21648"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_216D8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_216D8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21768[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21768"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21780[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21780"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21790[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21790"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21820[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21820"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_218B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_218B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21950[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21950"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21A28[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21A28"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21C78[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21C78"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21CD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21CD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21D28[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21D28"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21D80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21D80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21DD8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21DD8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21E28[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_21E28"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_model_lod1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_model_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model16[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model16"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model17[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model17"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model18[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model18"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model19[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model19"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model20[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model20"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model21[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model21"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model22[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model22"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model23[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model23"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model24[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model24"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model25[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model25"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model26[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model26"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22A68[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22A68"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22AF8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22AF8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22B88[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22B88"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22BA0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22BA0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22BB0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22BB0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22C50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22C50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22C88[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22C88"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22CC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22CC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22D60[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22D60"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22E38[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_22E38"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23040[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23040"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23078[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23078"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_model_lod2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_model_lod2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model27[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model27"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model28[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model28"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model29[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model29"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model31[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model31"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model32[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_unknown_model32"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23538[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23538"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23600[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23600"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23678[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23678"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_237D8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_237D8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_237F8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_237F8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23808[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23808"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23838[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23838"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23848[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23848"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23858[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23858"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_238A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_238A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_238E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_238E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23930[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_dl_23930"; + diff --git a/include/assets/models/tracks/toads_turnpike/toads_turnpike_displaylists.h b/include/assets/models/tracks/toads_turnpike/toads_turnpike_displaylists.h new file mode 100644 index 000000000..6b89eb4c4 --- /dev/null +++ b/include/assets/models/tracks/toads_turnpike/toads_turnpike_displaylists.h @@ -0,0 +1,240 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_68[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_68"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_D8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_140[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_140"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_160[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_160"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_218[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_218"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_300[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_300"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_540[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_540"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_618[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_618"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_768[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_768"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_7E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_7E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_8C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_8C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_940[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_940"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_A28[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_A28"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_AA8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_AA8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_B48[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_B48"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_C30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_C30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_D08[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D08"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_D88[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D88"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_E08[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_E08"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_EC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_EC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_FA8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_FA8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1050[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1050"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1068[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1068"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1078[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1078"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_11B8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_11B8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_13B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_13B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_15E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_15E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1780[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1780"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_18C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_18C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1A58[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1A58"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1BB8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1BB8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1CB8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1CB8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1E30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1E30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_1F70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1F70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2050[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2050"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_21E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_21E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2328[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2328"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_24C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_24C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2600[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2600"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2798[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2798"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_28D8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_28D8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_29B8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_29B8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2AF8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2AF8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2D98[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2D98"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2E40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2E40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2EE0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2EE0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_2FA0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2FA0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3060[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3060"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3118[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3118"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_31E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_31E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_32A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_32A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_33A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_33A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3478[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3478"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3548[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3548"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3638[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3638"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_36C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_36C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3780[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3780"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3850[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3850"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_38E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_38E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_39A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_39A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3AD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3AD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3B58[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3B58"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3C28[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3C28"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3D00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3D00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3DE8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3DE8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3E90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_3F80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3F80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_40A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_40A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_41D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_41D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_42E8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_42E8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_43A8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_43A8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_44C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_44C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_45B8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_45B8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4678[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4678"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4738[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4738"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4850[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4850"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4910[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4910"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4A40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4A40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4B00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4B00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4BE0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4BE0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4D10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4D10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4E30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4E30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4EF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4EF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_4FB0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4FB0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_50A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_50A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_51C8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_51C8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5270[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5270"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5360[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5360"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5480[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5480"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_55A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_55A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_56B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_56B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5770[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5770"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5880[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5880"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5958[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5958"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5AE8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5AE8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5C80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5C80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5D90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5D90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5E50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5E50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_5F78[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5F78"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6030[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6030"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6110[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6110"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6230[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6230"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6348[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6348"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6408[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6408"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_64C8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_64C8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_65B8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_65B8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_66E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_66E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6788[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6788"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6848[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6848"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6908[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6908"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6AB8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AB8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6AD8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AD8"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dl_6B08[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B08"; + diff --git a/include/assets/models/tracks/toads_turnpike/toads_turnpike_offsets.h b/include/assets/models/tracks/toads_turnpike/toads_turnpike_offsets.h new file mode 100644 index 000000000..d44929178 --- /dev/null +++ b/include/assets/models/tracks/toads_turnpike/toads_turnpike_offsets.h @@ -0,0 +1,30 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char toads_turnpike_dl_0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_0"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_1[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_1"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_2[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_2"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_3[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_3"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_4[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_4"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_5[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_5"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_6[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_6"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_7[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_7"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_8[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_8"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_9[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_9"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_10"; + +static const ALIGN_ASSET(2) char toads_turnpike_dl_11[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_offsets/toads_turnpike_dl_11"; + diff --git a/include/assets/models/tracks/toads_turnpike/toads_turnpike_vertices.h b/include/assets/models/tracks/toads_turnpike/toads_turnpike_vertices.h new file mode 100644 index 000000000..ed7fdc4ad --- /dev/null +++ b/include/assets/models/tracks/toads_turnpike/toads_turnpike_vertices.h @@ -0,0 +1,554 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04000000[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04000080[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04000140[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000140"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040001C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040001C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040003C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040003C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040005C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040005C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04000640[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000640"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04000840[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000840"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04000A40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000A40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04000C40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000C40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04000E40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000E40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04001040[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001040"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04001240[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001240"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04001440[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001440"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04001640[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001640"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040017C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040017C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040019C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040019C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04001AC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001AC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04001CC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001CC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04001EC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001EC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04002040[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002040"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04002220[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002220"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04002400[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002400"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040024E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040024E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040026E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040026E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040027E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040027E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040029C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040029C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04002AC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002AC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04002CC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002CC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04002EC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002EC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003040[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003040"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003240[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003240"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003340[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003340"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003540[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003540"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003740[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003740"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003940[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003940"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003B40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003B40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003C40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003C40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04003E40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003E40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004040[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004040"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004240[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004240"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004440[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004440"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004640[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004640"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004840[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004840"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004A40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004A40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004BC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004BC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004DC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004DC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04004EC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004EC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040050C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040050C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040051C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040051C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040053C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040053C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040055C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040055C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04005640[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005640"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04005840[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005840"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04005A40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005A40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04005C40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005C40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04005E20[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005E20"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006000[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006000"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040060A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040060A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040062A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040062A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006480[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006480"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006660[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006660"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040066C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040066C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040067B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040067B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006830[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006830"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006A10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006A10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006BF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006BF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006DD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006DD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006F00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006F00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04006F80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006F80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04007000[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007000"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040071E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040071E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040073E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040073E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040075C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040075C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040076B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040076B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04007890[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007890"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04007A70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007A70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04007B10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007B10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04007CF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007CF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04007EF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007EF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040080D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040080D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040081C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040081C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040083C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040083C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040085A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040085A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04008600[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008600"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040086A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040086A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040088A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040088A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04008920[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008920"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04008970[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008970"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04008B70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008B70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04008D70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008D70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04008E30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008E30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04008ED0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008ED0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040090B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040090B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009290[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009290"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009330[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009330"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009510[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009510"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009560[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009560"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009740[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009740"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009940[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009940"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009B20[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009B20"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009C10[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009C10"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009DF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009DF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04009FD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009FD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400A070[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A070"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400A0F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A0F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400A2D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A2D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400A4B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A4B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400A550[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A550"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400A730[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A730"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400A910[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A910"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400A9B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A9B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400AB90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AB90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400AD90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AD90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400AF70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AF70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400B060[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B060"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400B240[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B240"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400B420[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B420"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400B4C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B4C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400B6A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B6A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400B6F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B6F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400B8D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B8D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400BAB0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BAB0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400BB50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BB50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400BB90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BB90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400BBD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BBD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400BDB0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BDB0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400BF90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BF90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C170[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C170"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C1B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C1B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C2A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C2A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C2E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C2E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C4C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C4C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C6A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C6A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C700[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C700"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C8E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C8E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400C940[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C940"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400CB40[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CB40"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400CB80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CB80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400CC00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CC00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400CD80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CD80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400CF80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CF80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400CFC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CFC0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D1C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D1C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D200[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D200"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D280[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D280"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D300[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D300"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D490[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D490"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D500[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D500"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D680[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D680"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D6B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D6B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D890[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D890"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400D8D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D8D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400DA50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DA50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400DC50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DC50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400DCD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DCD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400DD60[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DD60"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400DEE0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DEE0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E040[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E040"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E240[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E240"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E2A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E2A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E330[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E330"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E370[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E370"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E540[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E540"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E6C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E6C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E750[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E750"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E8D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E8D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400E900[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E900"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400EAE0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EAE0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400EBE0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EBE0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400ED60[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400ED60"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400EF60[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EF60"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400F120[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F120"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400F300[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F300"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400F500[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F500"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400F5A0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F5A0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400F780[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F780"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400F960[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F960"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400FA20[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FA20"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400FC20[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FC20"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400FE00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FE00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x0400FE60[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FE60"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04010060[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010060"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04010160[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010160"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04010340[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010340"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04010540[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010540"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040105C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040105C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040107C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040107C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040109C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040109C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04010A00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010A00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04010C00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010C00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04010D00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010D00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04010F00[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010F00"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011000[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011000"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011200[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011200"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011400[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011400"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011480[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011480"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011680[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011680"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011780[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011780"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011980[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011980"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011B80[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011B80"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011C70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011C70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011E70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011E70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04011F70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011F70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04012150[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012150"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040122F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040122F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040124E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040124E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040126E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040126E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040127D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040127D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040129C0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040129C0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04012BB0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012BB0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04012C50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012C50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04012E50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012E50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04012F50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012F50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04013150[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013150"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04013250[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013250"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04013430[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013430"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04013610[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013610"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040137F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040137F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040139D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040139D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04013A90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013A90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04013C70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013C70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04013D90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013D90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04013F90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013F90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04014110[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014110"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040142F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040142F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04014490[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014490"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04014670[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014670"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040147F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040147F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040149F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040149F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04014AF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014AF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04014CD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014CD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04014E50[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014E50"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015050[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015050"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015110[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015110"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040152D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040152D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040153B0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040153B0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015490[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015490"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015670[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015670"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015710[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015710"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040157F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040157F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040158D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040158D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015AD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015AD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015C90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015C90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015E90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015E90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04015F90[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015F90"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04016190[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016190"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04016390[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016390"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04016410[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016410"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040165F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040165F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040167F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040167F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04016870[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016870"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04016A70[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016A70"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04016BD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016BD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04016DD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016DD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04016FD0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016FD0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017010[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017010"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017210[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017210"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017310[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017310"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017510[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017510"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040175D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040175D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040177D0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040177D0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017950[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017950"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017B30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017B30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017D30[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017D30"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017DF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017DF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04017FF0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017FF0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040180F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040180F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040182F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040182F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040183F0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040183F0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040185E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040185E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040187E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040187E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x040189E0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040189E0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex_0x04018BC0[] = "__OTR__models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04018BC0"; + diff --git a/include/assets/models/tracks/wario_stadium/wario_stadium_data.h b/include/assets/models/tracks/wario_stadium/wario_stadium_data.h new file mode 100644 index 000000000..dc5ebc22f --- /dev/null +++ b/include/assets/models/tracks/wario_stadium/wario_stadium_data.h @@ -0,0 +1,240 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_B8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_B8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_158[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_158"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1B8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1B8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_350[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_350"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_440[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_440"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5E8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_5E8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_668[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_668"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_798[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_798"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_830[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_830"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_940[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_940"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_990[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_990"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_AB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_AB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_B60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_B60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_C08[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_C08"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_C70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_C70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_D60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_D60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_E30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_E30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_ED0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_ED0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_F70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_F70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1068[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1068"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1158[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1158"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_11F8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_11F8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_12E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_12E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_13C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_13C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_14A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_14A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1590[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1590"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1630[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1630"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1708[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1708"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_17A8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_17A8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1868[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1868"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1908[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1908"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_19E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_19E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1AB8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1AB8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1B48[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1B48"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1BB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1BB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1CA8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1CA8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1D68[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1D68"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1DF8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1DF8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1E70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1E70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1FD8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_1FD8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_20A8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_20A8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_21A8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_21A8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2218[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2218"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2308[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2308"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_23B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_23B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2490[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2490"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2530[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2530"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2610[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2610"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2698[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2698"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2798[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2798"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2870[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2870"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2928[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2928"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_29D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_29D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2AB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2AB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2B60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2B60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2C30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2C30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2CE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2CE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2DC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2DC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2E70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2E70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2FB8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_2FB8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3098[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3098"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_31B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_31B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3260[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3260"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3368[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3368"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3450[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3450"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3550[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3550"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3600[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3600"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_36D8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_36D8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_37A8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_37A8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3890[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3890"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3980[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3980"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3A10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3A10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3AD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3AD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3BB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3BB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3CF8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3CF8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3D90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3D90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3E80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3E80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3F78[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_3F78"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4060[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4060"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_40F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_40F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_41D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_41D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4270[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4270"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4340[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4340"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_43E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_43E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_44B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_44B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4550[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4550"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_46E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_46E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_47F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_47F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4948[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4948"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4A78[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4A78"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4B30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4B30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4BE8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4BE8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4C60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4C60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4D40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4D40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4E30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4E30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4EF0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4EF0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4F80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_4F80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5090[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_5090"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5168[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_5168"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_51E8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_51E8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5270[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_5270"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5338[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_5338"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5460[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_5460"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_54E8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_54E8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5588[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_5588"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_head_model1[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_sign_head_model1"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_head_model2[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_sign_head_model2"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_head_model3[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_sign_head_model3"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_head_model4[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_sign_head_model4"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_C890[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_C890"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_CA50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_CA50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_sign[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_sign"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_CA70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_CA70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_CA78[] = "__OTR__models/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_dl_CA78"; + diff --git a/include/assets/models/tracks/wario_stadium/wario_stadium_displaylists.h b/include/assets/models/tracks/wario_stadium/wario_stadium_displaylists.h new file mode 100644 index 000000000..1233415b1 --- /dev/null +++ b/include/assets/models/tracks/wario_stadium/wario_stadium_displaylists.h @@ -0,0 +1,526 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_120[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_120"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_180[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_180"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_240[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_240"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_300[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_300"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_360[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_360"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_428[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_428"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_500[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_500"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5D8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_638[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_638"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6F8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6F8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_880[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_880"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_960[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_960"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A88[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A88"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_AE8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_AE8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_B60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_B60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_BD8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_BD8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_C50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_C50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_CC8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_CC8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_D50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_D50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_DD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_DD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_E48[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_E48"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_EC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_EC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_F08[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F08"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_F20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_F38[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F38"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_FA8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_FA8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1018[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1018"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1088[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1088"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1100[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1100"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1180[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1180"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_11E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_11E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1290[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1290"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1348[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1348"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_13D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_13D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1458[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1458"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_14C8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_14C8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1540[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1540"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_15C8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_15C8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1640[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1640"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_16B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_16B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1710[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1710"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1778[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1778"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_17F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_17F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1860[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1860"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_18D8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_18D8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1948[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1948"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_19D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_19D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1A50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1A50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1B10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1B10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1B70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1B70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1BD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1BD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1C40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1C40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1D20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1D20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1DE8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1DE8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1EA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1EA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1F28[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1F28"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_1FC8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1FC8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_20A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_20A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2108[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2108"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_21D8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_21D8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2238[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2238"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2298[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2298"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2318[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2318"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2390[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2390"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2400[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2400"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_24D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_24D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2598[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2598"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2658[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2658"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_26C8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_26C8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2780[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2780"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2848[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2848"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2908[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2908"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_29B8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_29B8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2A28[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2A28"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2AB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2AB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2BB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2BB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2C18[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2C18"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2C80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2C80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2CE8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2CE8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2DB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2DB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2E90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2E90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2F08[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2F08"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2F78[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2F78"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_2FE8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2FE8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3070[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3070"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_30E8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_30E8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3160[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3160"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_31F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_31F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3260[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3260"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_32D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_32D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3350[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3350"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_33C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_33C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3438[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3438"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_34A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_34A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3518[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3518"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3598[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3598"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_35F8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_35F8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3660[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3660"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_36D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_36D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3758[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3758"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_37E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_37E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3848[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3848"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_38F8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_38F8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3960[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3960"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_39D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_39D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3A30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3A30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3AA8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3AA8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3B08[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B08"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3B68[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B68"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3BD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3BD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3C40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3C40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3CA8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3CA8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3D10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3D10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3D80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3D80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3DE8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3DE8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3E50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3E50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3EC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3EC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_3F70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3F70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4038[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4038"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4098[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4098"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4168[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4168"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4218[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4218"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_42C8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_42C8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4378[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4378"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4438[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4438"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_44E8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_44E8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4598[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4598"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4658[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4658"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_46B8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_46B8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4768[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4768"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_47D8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_47D8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4808[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4808"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4930[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4930"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4AA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4AA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4BA8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4BA8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4D68[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4D68"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4EB8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4EB8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_4FB8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4FB8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_50A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_50A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5208[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5208"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_52F8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_52F8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_53D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_53D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5508[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5508"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5590[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5590"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5670[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5670"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_56E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_56E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5768[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5768"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_57F8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_57F8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5888[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5888"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5938[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5938"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_59C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_59C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5A38[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5A38"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5AA8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5AA8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5B38[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5B38"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5BB8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5BB8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5C30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5C30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5CB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5CB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5D20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5D90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5E00[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5E00"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5E88[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5E88"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5F08[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5F08"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_5FC8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5FC8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6068[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6068"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6108[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6108"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6198[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6198"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_62C8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_62C8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6390[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6390"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6418[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6418"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_64E8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_64E8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_65A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_65A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6658[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6658"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6700[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6700"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_67B8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_67B8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6878[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6878"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_68F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_68F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6950[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6950"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6A10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6A10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6AE8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6AE8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6BE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6BE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6C80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6C80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6D20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6D20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6DD8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6DD8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6EC8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6EC8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_6FC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6FC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7090[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7090"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7220[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7220"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7338[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7338"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_73F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_73F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7530[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7530"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_75A8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_75A8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7630[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7630"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_76E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_76E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_77A8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_77A8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7838[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7838"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7960[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7960"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7A40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7A40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7B20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7B20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7BE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7BE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7D00[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7D00"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7DF8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7DF8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7ED0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7ED0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_7FB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7FB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8030[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8030"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_80E8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_80E8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8240[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8240"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_82F8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_82F8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_83A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_83A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8438[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8438"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8510[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8510"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_85F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_85F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8678[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8678"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8708[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8708"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8798[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8798"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_88A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_88A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8A68[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8A68"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8C28[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8C28"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8D28[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8D28"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8DE8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8DE8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8EF0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8EF0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_8FC8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8FC8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9090[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9090"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9120[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9120"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_91E8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_91E8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9328[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9328"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_93B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_93B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9430[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9430"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9590[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9590"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9668[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9668"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9760[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9760"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9820[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9820"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_98A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_98A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9998[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9998"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9AD8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9AD8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9C80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9C80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9D00[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9D00"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9D78[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9D78"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9E00[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9E00"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9EE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9EE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9F18[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9F18"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_9F28[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9F28"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A0C8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A0C8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A0D8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A0D8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A148[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A148"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A1B8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A1B8"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A228[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A228"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A248[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A248"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A448[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A448"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A458[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A458"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dl_A4A8[] = "__OTR__models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A4A8"; + diff --git a/include/assets/models/tracks/wario_stadium/wario_stadium_vertices.h b/include/assets/models/tracks/wario_stadium/wario_stadium_vertices.h new file mode 100644 index 000000000..85ed5ea14 --- /dev/null +++ b/include/assets/models/tracks/wario_stadium/wario_stadium_vertices.h @@ -0,0 +1,744 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000000[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000040[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000040"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000080[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000080"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040000C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040000C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000100[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000100"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000140[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000140"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000180[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000180"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040001C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040001C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000200[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000240[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000240"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000290[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000290"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000410[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000410"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000450[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000450"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040005D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040005D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000610[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000610"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000650[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000650"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000710[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000710"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000750[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000750"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000810[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000810"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000860[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000860"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000920[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000920"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000960[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000960"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000A20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000A20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000AE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000AE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000BA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000BA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000BE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000BE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000C30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000C30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000D30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000D30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000E30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000E30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000F00[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000F00"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04000FD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000FD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040010E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040010E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040011D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040011D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040012D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040012D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040013D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040013D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001490[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001490"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001550[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001550"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001610[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001610"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001710[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001710"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001820[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001820"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001860[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001860"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001A60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001A60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001A90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001A90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001B10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001B10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001B50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001B50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001C50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001C50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001DB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001DB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001E70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001E70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04001F40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001F40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040020C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040020C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040021E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040021E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040022A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040022A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040022E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040022E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002360[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002360"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002450[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002450"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002530[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002530"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002630[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002630"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040026F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040026F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040027D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040027D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002910[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002910"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002AD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002AD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002B10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002B10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002B50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002B50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002C10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002C10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002CD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002CD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002E10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002E10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002E90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002E90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04002F90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002F90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003110[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003110"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040032D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040032D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040033D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040033D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003530[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003530"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040035B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040035B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003790[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003790"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040038F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040038F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003930[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003930"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003970[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003970"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003AB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003AB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003B90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003B90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003C50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003C50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003D10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003D10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003E90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003E90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04003FD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003FD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004090[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004090"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004150[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004150"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004250[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004250"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004330[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004330"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040043B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040043B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040044B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040044B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040044F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040044F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040046B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040046B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040047B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040047B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004860[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004860"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040048A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040048A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040049A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040049A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004A60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004A60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004B60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004B60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004CA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004CA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004EA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004EA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004ED0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004ED0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004F50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004F50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04004FD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004FD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005050[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005050"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005110[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005110"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005220[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005220"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040052B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040052B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005320[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005320"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040053A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040053A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005470[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005470"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005520[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005520"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040055B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040055B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005680[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005680"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005700[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005700"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005770[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005770"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005810[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005810"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005890[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005890"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005910[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005910"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005970[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005970"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040059F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040059F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005AA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005AA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005AE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005AE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005B30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005B30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005BA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005BA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005C60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005C60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005D30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005D30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005D80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005D80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005DD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005DD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005E90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005E90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005ED0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005ED0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04005FD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005FD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006010[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006010"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006050[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006050"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040060A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040060A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006160[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006160"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040061D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040061D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006250[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006250"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006310[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006310"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006380[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006380"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040063D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040063D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006410[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006410"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006450[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006450"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006500[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006500"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006540[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006540"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006580[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006580"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006670[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006670"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040066B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040066B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040066F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040066F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006730[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006730"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006770[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006770"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040067B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040067B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040067F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040067F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006830[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006830"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040068F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040068F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006930[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006930"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006970[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006970"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040069B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040069B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040069F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040069F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006A30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006A30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006AF0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006AF0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006B30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006B30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006B70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006B70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006BB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006BB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006BF0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006BF0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006D70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006D70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006DC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006DC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04006FC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006FC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007180[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007180"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040071C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040071C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040073C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040073C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007490[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007490"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007680[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007680"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007880[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007880"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040079D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040079D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007A10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007A10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007C00[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007C00"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007C80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007C80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007CD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007CD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007E40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007E40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007E90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007E90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007F90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007F90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04007FD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007FD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040081D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040081D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008380[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008380"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040083C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040083C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008440[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008440"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008580[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008580"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008600[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008600"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040086C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040086C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040088B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040088B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008990[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008990"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040089D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040089D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008A90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008A90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008B90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008B90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008BE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008BE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008CB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008CB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008E50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008E50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04008F50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008F50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009130[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009130"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009170[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009170"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009250[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009250"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040092E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040092E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009350[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009350"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009510[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009510"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040095E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040095E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009670[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009670"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040097B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040097B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009820[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009820"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009890[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009890"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009A20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009A20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009BA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009BA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009DA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009DA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04009F20[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009F20"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400A110[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A110"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400A1A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A1A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400A3A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A3A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400A3D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A3D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400A5C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A5C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400A7B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A7B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400A990[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A990"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400AB90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AB90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400ACA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400ACA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400AE90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AE90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400AFC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AFC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400B170[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B170"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400B370[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B370"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400B520[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B520"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400B700[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B700"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400B830[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B830"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400BA30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BA30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400BB50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BB50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400BD30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BD30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400BDA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BDA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400BF80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BF80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400C0F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C0F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400C2F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C2F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400C4B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C4B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400C5F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C5F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400C620[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C620"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400C800[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C800"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400C990[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C990"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400CB80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CB80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400CD80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CD80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400CE10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CE10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400D010[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D010"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400D210[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D210"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400D350[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D350"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400D550[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D550"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400D590[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D590"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400D790[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D790"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400D7D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D7D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400D890[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D890"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400DA70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DA70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400DAB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DAB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400DBB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DBB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400DDB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DDB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400DFB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DFB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400E0F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E0F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400E2E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E2E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400E4D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E4D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400E6D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E6D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400E7C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E7C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400E940[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E940"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400EB40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EB40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400EBC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EBC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400EDC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EDC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400EF40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EF40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400F120[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F120"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400F2C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F2C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400F390[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F390"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400F4D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F4D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400F6B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F6B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400F730[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F730"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400F930[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F930"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400FA50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FA50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400FC10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FC10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x0400FE10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FE10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010010[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010010"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040100D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040100D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040102D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040102D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010390[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010390"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010450[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010450"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040105D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040105D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040107C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040107C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040107F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040107F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010870[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010870"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010A70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010A70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010B40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010B40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010B80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010B80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010D80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010D80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010E80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010E80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04010FE0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010FE0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040110B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040110B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040110F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040110F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040112F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040112F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04011330[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011330"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04011470[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011470"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04011670[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011670"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04011800[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011800"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040119E0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040119E0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04011B70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011B70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04011D70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011D70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04011F30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011F30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040120B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040120B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04012170[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012170"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04012310[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012310"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04012470[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012470"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040125F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040125F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04012790[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012790"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04012990[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012990"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04012B30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012B30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04012D30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012D30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04012F30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012F30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04013120[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013120"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04013320[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013320"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04013520[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013520"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040135C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040135C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040137A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040137A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040139A0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040139A0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04013A60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013A60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04013AA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013AA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04013CA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013CA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04013E40[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013E40"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014040[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014040"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014140[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014140"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014340[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014340"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040143C0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040143C0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014580[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014580"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014770[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014770"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014860[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014860"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014A60[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014A60"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014C50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014C50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014CD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014CD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014E30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014E30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04014F10[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014F10"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04015100[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015100"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04015300[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015300"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040154F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040154F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040155B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040155B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040157B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040157B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040158D0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040158D0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04015AD0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015AD0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04015B80[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015B80"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04015CC0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015CC0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04015EA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015EA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04015FA0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015FA0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016190[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016190"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016390[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016390"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016470[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016470"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016650[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016650"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016830[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016830"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016A30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016A30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016AB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016AB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016B90[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016B90"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016C50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016C50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016DB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016DB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04016E50[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016E50"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017050[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017050"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017250[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017250"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017450[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017450"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017570[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017570"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017630[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017630"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040176F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040176F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040177B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040177B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040179B0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040179B0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x040179F0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040179F0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017A30[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017A30"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017A70[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017A70"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017AB0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017AB0"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex_0x04017AF0[] = "__OTR__models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017AF0"; + diff --git a/include/assets/models/tracks/yoshi_valley/yoshi_valley_data.h b/include/assets/models/tracks/yoshi_valley/yoshi_valley_data.h new file mode 100644 index 000000000..4071c60ab --- /dev/null +++ b/include/assets/models/tracks/yoshi_valley/yoshi_valley_data.h @@ -0,0 +1,314 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_290[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_290"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4E8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_4E8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_9C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_BC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_CC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_CC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_FA0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_FA0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_1178[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_1178"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_13F8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_13F8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_14D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_14D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_17A8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_17A8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_1968[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_1968"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_1C38[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_1C38"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_1D48[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_1D48"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2000[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_2000"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_21B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_21B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2408[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_2408"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_25E8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_25E8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2840[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_2840"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2978[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_2978"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2BC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_2BC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2D70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_2D70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2F48[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_2F48"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3078[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3078"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3258[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3258"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3420[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3420"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3560[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3560"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_36D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_36D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3880[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3880"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3A38[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3A38"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3BA0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3BA0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3D20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3D20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3E30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3E30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3F88[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_3F88"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_40B8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_40B8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4320[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_4320"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_44C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_44C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4718[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_4718"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_48C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_48C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4A98[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_4A98"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4C28[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_4C28"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4E60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_4E60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5018[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_5018"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_51D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_51D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_53E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_53E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5638[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_5638"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5778[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_5778"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5890[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_5890"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5A80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_5A80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5C70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_5C70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5D60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_5D60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5ED8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_5ED8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6070[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_6070"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6268[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_6268"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6358[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_6358"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6530[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_6530"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_66B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_66B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_68C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_68C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_69C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_69C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6BF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_6BF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6D78[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_6D78"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6FB8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_6FB8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7100[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7100"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7310[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7310"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7400[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7400"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_75C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_75C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7770[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7770"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7938[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7938"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7A08[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7A08"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7BB8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7BB8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7CE8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7CE8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7F80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_7F80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8030[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8030"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8218[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8218"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8420[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8420"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8710[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8710"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8830[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8830"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8958[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8958"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8C30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8C30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8D58[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8D58"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8FD8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_8FD8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_91D8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_91D8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9340[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_9340"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9548[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_9548"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9780[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_9780"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9A00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_9A00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9BB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_9BB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9DB8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_9DB8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9F70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_9F70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A188[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_A188"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A328[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_A328"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A518[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_A518"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A6B8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_A6B8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A8A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_A8A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_AAC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_AAC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_ACF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_ACF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_AE78[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_AE78"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_AFF8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_AFF8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B220[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_B220"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B428[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_B428"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B578[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_B578"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B778[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_B778"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B970[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_B970"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BAF8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_BAF8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BC98[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_BC98"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BE18[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_BE18"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BFC8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_BFC8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C140[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_C140"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C2D8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_C2D8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C470[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_C470"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C580[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_C580"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C668[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_C668"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C728[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_C728"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C838[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_C838"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C8F8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_C8F8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_CAD8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_CAD8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_CC80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_CC80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_CEC8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_CEC8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_D018[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_D018"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_D1E8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_D1E8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_D3D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_D3D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_D540[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_D540"; + +static const ALIGN_ASSET(2) char yoshi_valley_data_seg6_lights_141A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/yoshi_valley_data_seg6_lights_141A0"; + +static const ALIGN_ASSET(2) char yoshi_valley_data_seg6_lights_141B8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/yoshi_valley_data_seg6_lights_141B8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_pole_model1[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_flag_pole_model1"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_pole_model2[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_flag_pole_model2"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_142C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_142C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_1_model1[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_flag_1_model1"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_1_model2[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_flag_1_model2"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_143C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_143C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_2_model[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_flag_2_model"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_144A8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_144A8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_3_model[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_flag_3_model"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_14500[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_14500"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_4_model[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_flag_4_model"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_14558[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_14558"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_5_model[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_flag_5_model"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_145D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_145D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_tree_model[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_tree_model"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_tree[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_tree"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model1[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_egg_model1"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model2[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_egg_model2"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model3[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_egg_model3"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model4[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_egg_model4"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model5[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_egg_model5"; + +static const ALIGN_ASSET(2) char yoshi_valley_data_seg6_lights_16558[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/yoshi_valley_data_seg6_lights_16558"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_16D70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_16D70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model_lod0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_egg_model_lod0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_egg_lod0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_egg_lod0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_18020[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_dl_18020"; + diff --git a/include/assets/models/tracks/yoshi_valley/yoshi_valley_displaylists.h b/include/assets/models/tracks/yoshi_valley/yoshi_valley_displaylists.h new file mode 100644 index 000000000..3babcb825 --- /dev/null +++ b/include/assets/models/tracks/yoshi_valley/yoshi_valley_displaylists.h @@ -0,0 +1,484 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_A8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_A8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_128[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_128"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1A8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1A8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_240[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_240"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_308[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_308"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_388[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_388"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_408[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_408"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_490[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_490"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_520[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_520"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_598[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_598"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_628[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_628"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_748[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_748"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7D8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7D8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_858[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_858"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_908[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_908"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_980[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_980"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_A00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_A00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_AB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_AB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_B40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_B40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_BF8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_BF8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_C90[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_C90"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_D20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_D20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_DE0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_DE0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_E90[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_E90"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_F40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_F40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_FF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_FF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_10A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_10A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_10C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_10C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1150[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1150"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_11B8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_11B8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1220[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1220"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1290[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1290"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1300[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1300"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1368[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1368"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_13D8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_13D8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1418[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1418"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1580[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1580"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_16E8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_16E8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1700[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1700"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1728[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1728"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1738[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1738"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_17B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_17B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1830[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1830"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_18C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_18C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1938[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1938"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_19F8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_19F8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1A68[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1A68"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1AF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1AF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1BA0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1BA0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1C18[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1C18"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1CB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1CB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1D20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1D20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1DE8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1DE8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1E50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1E50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1EB8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1EB8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1F20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1F20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1F80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1F80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_1FF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1FF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2078[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2078"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2108[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2108"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2188[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2188"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_21F8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_21F8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2270[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2270"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_22F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_22F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2370[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2370"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2428[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2428"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2498[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2498"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2510[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2510"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_25A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_25A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2648[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2648"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_26C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_26C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2758[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2758"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_27F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_27F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2868[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2868"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_28F8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_28F8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2988[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2988"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2A00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2A00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2A90[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2A90"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2B08[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2B08"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2BA0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2BA0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2C30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2C30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2CD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2CD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2D50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2D50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2DD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2DD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2E58[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2E58"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2EE0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2EE0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_2F90[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2F90"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3010[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3010"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3190[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3190"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3200[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3200"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3268[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3268"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_32E8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_32E8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3368[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3368"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_33D8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_33D8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3498[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3498"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3580[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3580"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3630[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3630"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3698[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3698"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3710[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3710"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_37B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_37B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3818[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3818"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3890[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3890"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3900[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3900"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3970[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3970"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3A00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3A00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3A80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3A80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3B00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3B00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3B78[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3B78"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3BF8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3BF8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3C70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3C70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3CD8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3CD8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3D48[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3D48"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3E08[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3E08"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3F10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3F10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_3FF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3FF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4108[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4108"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_41B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_41B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4258[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4258"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4358[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4358"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4428[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4428"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_44C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_44C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4588[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4588"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_45F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_45F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4670[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4670"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_46E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_46E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4810[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4810"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4918[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4918"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_49C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_49C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4A58[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4A58"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4B20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4B20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4C18[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4C18"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4CB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4CB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4D68[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4D68"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4E88[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4E88"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4F48[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4F48"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_4FD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4FD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5058[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5058"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_50E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_50E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5158[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5158"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_51D8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_51D8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_52D8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_52D8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_53C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_53C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_54B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_54B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5548[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5548"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_55C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_55C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5628[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5628"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_56A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_56A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5710[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5710"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5788[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5788"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5800[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5800"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5880[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5880"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_58F8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_58F8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5970[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5970"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_59F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_59F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5A60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5A60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5AD8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5AD8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5B48[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5B48"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5BB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5BB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5C18[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5C18"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5C80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5C80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5D00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5D00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5D90[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5D90"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5DF8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5DF8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5E60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5E60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5F10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5F10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_5F88[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5F88"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6008[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6008"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6070[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6070"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6100[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6100"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6178[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6178"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_61E8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_61E8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6250[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6250"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_62D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_62D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6338[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6338"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_63A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_63A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6428[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6428"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6490[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6490"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_64F8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_64F8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6560[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6560"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_65C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_65C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6638[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6638"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_66B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_66B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6728[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6728"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6798[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6798"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6810[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6810"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6888[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6888"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6920[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6920"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6990[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6990"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6A08[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A08"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6A98[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A98"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6B30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6B30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6B98[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6B98"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6C40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6C40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6CB8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6CB8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6D40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6D40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6DB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6DB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6E20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6E20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6EA0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6EA0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6F30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6F30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_6FA8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6FA8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7010[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7010"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7090[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7090"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7120[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7120"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_71A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_71A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7210[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7210"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7290[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7290"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7300[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7300"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7458[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7458"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_74D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_74D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7558[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7558"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_75D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_75D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_75F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_75F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7660[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7660"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_76C8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_76C8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7740[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7740"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_77C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_77C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7828[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7828"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_78B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_78B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7928[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7928"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7998[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7998"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7A08[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7A08"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7A70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7A70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7AE0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7AE0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7B50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7B50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7BD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7BD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7C50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7C50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7CC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7CC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7D38[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7D38"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7DA8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7DA8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7E20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7E20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7E88[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7E88"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7EF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7EF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7F58[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7F58"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_7FC8[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7FC8"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_8050[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8050"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_8110[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8110"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dl_8150[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8150"; + diff --git a/include/assets/models/tracks/yoshi_valley/yoshi_valley_vertices.h b/include/assets/models/tracks/yoshi_valley/yoshi_valley_vertices.h new file mode 100644 index 000000000..5c4ab6c0a --- /dev/null +++ b/include/assets/models/tracks/yoshi_valley/yoshi_valley_vertices.h @@ -0,0 +1,532 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000000[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000000"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000200[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000200"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000240[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000240"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000380[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000380"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040004C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040004C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040006C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040006C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040008C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040008C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000A00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000A00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000B40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000B40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000C80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000C80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000E00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000E00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04000FC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000FC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040010C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040010C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001280[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001280"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001380[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001380"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001580[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001580"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040015C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040015C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001780[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001780"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040018C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040018C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001AC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001AC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001B40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001B40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001C40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001C40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001D80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001D80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04001F80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001F80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002000[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002000"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002160[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002160"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002360[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002360"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002420[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002420"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002620[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002620"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040027E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040027E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002820[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002820"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002860[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002860"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040028A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040028A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040028E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040028E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002920[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002920"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002960[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002960"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040029A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040029A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040029E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040029E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002B60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002B60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002BE0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002BE0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002C60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002C60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002D20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002D20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002DE0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002DE0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002E60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002E60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04002F20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002F20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003060[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003060"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003260[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003260"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003460[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003460"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003580[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003580"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003780[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003780"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003980[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003980"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003A10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003A10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003AD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003AD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003BF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003BF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003C70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003C70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003E30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003E30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003EB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003EB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04003FC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003FC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004130[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004130"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040041C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040041C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004300[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004300"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004380[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004380"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004550[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004550"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040045B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040045B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004610[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004610"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004670[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004670"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040046B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040046B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004730[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004730"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004840[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004840"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004940[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004940"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004A00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004A00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004A70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004A70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004B10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004B10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004BD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004BD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004C80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004C80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004E30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004E30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004EB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004EB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04004F50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004F50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005070[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005070"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040051C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040051C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005280[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005280"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005370[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005370"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040054B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040054B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005550[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005550"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040056E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040056E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005840[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005840"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040058E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040058E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040059F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040059F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005A80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005A80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005BA0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005BA0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005C90[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005C90"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005DC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005DC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005E80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005E80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04005F60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005F60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006020[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006020"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040060E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040060E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006230[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006230"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040062E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040062E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006370[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006370"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040063F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040063F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006510[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006510"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006620[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006620"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040066E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040066E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006760[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006760"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006870[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006870"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040068B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040068B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040068F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040068F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040069D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040069D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006A10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006A10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006AA0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006AA0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006B20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006B20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006C00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006C00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006C40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006C40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006CC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006CC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006D40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006D40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006E40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006E40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006EC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006EC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04006F50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006F50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040070F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040070F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040071E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040071E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040072D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040072D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007350[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007350"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007490[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007490"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007570[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007570"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040075F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040075F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007660[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007660"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040076A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040076A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007880[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007880"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007940[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007940"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007980[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007980"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007B50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007B50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007BD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007BD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007DC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007DC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04007E80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007E80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008060[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008060"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008200[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008200"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040083E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040083E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040085C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040085C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040087C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040087C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008880[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008880"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008A10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008A10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008AB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008AB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008AF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008AF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008B70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008B70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008CB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008CB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008D70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008D70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008DF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008DF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04008E30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008E30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009010[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009010"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009090[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009090"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009280[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009280"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040092E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040092E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040094C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040094C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009630[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009630"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009830[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009830"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x040098D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040098D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009910[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009910"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009B10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009B10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009B60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009B60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009CE0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009CE0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009EB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009EB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x04009EF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009EF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A0F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A0F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A250[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A250"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A430[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A430"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A490[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A490"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A5B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A5B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A6D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A6D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A790[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A790"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A8B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A8B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400A9F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A9F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400ABD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400ABD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400ADB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400ADB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400AF90[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400AF90"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B0B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B0B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B1E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B1E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B280[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B280"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B2E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B2E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B390[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B390"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B400[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B400"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B490[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B490"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B530[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B530"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B5D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B5D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B660[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B660"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B6E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B6E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B7B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B7B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B820[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B820"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B8C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B8C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B940[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B940"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400B990[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B990"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BA10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BA10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BA70[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BA70"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BB20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BB20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BC50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BC50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BCF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BCF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BD50[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BD50"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BDF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BDF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BEB0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BEB0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BF10[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BF10"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400BFF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BFF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C090[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C090"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C110[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C110"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C170[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C170"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C220[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C220"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C280[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C280"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C2E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C2E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C3B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C3B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C410[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C410"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C470[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C470"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C4D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C4D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C510[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C510"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C5A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C5A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C650[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C650"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C6E0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C6E0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C760[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C760"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C800[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C800"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C8A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C8A0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400C9C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C9C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400CA30[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CA30"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400CAC0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CAC0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400CBE0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CBE0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400CD00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CD00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400CD60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CD60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400CEF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CEF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400CF80[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CF80"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D080[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D080"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D100[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D100"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D180[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D180"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D250[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D250"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D330[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D330"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D3D0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D3D0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D430[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D430"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D510[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D510"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D600[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D600"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D6B0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D6B0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D730[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D730"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D800[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D800"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D870[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D870"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400D970[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D970"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DAD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DAD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DBD0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DBD0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DC40[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DC40"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DC90[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DC90"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DD20[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DD20"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DE00[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DE00"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DE60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DE60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DF60[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DF60"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400DFF0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DFF0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E070[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E070"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E0F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E0F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E150[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E150"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E1C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E1C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E230[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E230"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E300[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E300"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E3F0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E3F0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E460[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E460"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E500[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E500"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E580[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E580"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E610[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E610"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E660[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E660"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E6C0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E6C0"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E720[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E720"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex_0x0400E7A0[] = "__OTR__models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E7A0"; + diff --git a/include/assets/moo_moo_farm_data.h b/include/assets/moo_moo_farm_data.h deleted file mode 100644 index cf98fff63..000000000 --- a/include/assets/moo_moo_farm_data.h +++ /dev/null @@ -1,281 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_0"; - -static const ALIGN_ASSET(2) char moo_moo_farm_data_seg6_gfx_0[] = "__OTR__moo_moo_farm_data/moo_moo_farm_data_seg6_gfx_0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_30[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_30"; - -static const ALIGN_ASSET(2) char moo_moo_farm_data_seg6_gfx_30[] = "__OTR__moo_moo_farm_data/moo_moo_farm_data_seg6_gfx_30"; - -static const ALIGN_ASSET(2) char moo_moo_farm_data_seg6_gfx_48[] = "__OTR__moo_moo_farm_data/moo_moo_farm_data_seg6_gfx_48"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_48[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_48"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_60[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_60"; - -static const ALIGN_ASSET(2) char moo_moo_farm_data_seg6_gfx_60[] = "__OTR__moo_moo_farm_data/moo_moo_farm_data_seg6_gfx_60"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_78[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_78"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_88[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_88"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_338[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_338"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_598[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_598"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_8A0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_8A0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B00[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_B00"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_D70[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_D70"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_FE0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_FE0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_12B8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_12B8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1530[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_1530"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1790[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_1790"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1A20[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_1A20"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1D00[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_1D00"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_1F58[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_1F58"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2190[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_2190"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2470[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_2470"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_27A8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_27A8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2A10[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_2A10"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2C38[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_2C38"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_2F20[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_2F20"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_3238[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_3238"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_34A0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_34A0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_36B8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_36B8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_39F8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_39F8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_3CB0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_3CB0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_3EB8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_3EB8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4098[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_4098"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4428[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_4428"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_46D8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_46D8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4910[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_4910"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4AD0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_4AD0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_4E00[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_4E00"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5040[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_5040"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5290[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_5290"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5458[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_5458"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5758[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_5758"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5990[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_5990"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5BF8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_5BF8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_5DF0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_5DF0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_60A8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_60A8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_62D0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_62D0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6548[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_6548"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6778[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_6778"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6A70[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_6A70"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6CB8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_6CB8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_6FF0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_6FF0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7218[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_7218"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_74C8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_74C8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7718[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_7718"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7A80[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_7A80"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7CD8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_7CD8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_7F78[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_7F78"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_81E8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_81E8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_84D0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_84D0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_8728[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_8728"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_89A0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_89A0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_8C00[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_8C00"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_8F18[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_8F18"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9178[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_9178"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_93D0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_93D0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9640[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_9640"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9938[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_9938"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9BB0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_9BB0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_9DF8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_9DF8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A010[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_A010"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A2C0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_A2C0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A568[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_A568"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A7B0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_A7B0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_A9C8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_A9C8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_ACB0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_ACB0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B020[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_B020"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B230[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_B230"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B478[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_B478"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_B798[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_B798"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_BB00[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_BB00"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_BCE8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_BCE8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_BF10[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_BF10"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_C180[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_C180"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_C4F8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_C4F8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_C6D8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_C6D8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_C950[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_C950"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_CBC8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_CBC8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_CF58[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_CF58"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_D140[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_D140"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_D408[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_D408"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_D6B0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_D6B0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_DA50[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_DA50"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_DC70[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_DC70"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_DF60[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_DF60"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_E1D8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_E1D8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_E4B0[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_E4B0"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_E708[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_E708"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_EA18[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_EA18"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_unknown_waypoints[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_track_waypoints[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_mole_tlut[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_mole_tlut"; - -static const ALIGN_ASSET(2) char gTextureMole1[] = "__OTR__moo_moo_farm_data/gTextureMole1"; - -static const ALIGN_ASSET(2) char gTextureMole2[] = "__OTR__moo_moo_farm_data/gTextureMole2"; - -static const ALIGN_ASSET(2) char gTextureMole3[] = "__OTR__moo_moo_farm_data/gTextureMole3"; - -static const ALIGN_ASSET(2) char gTextureMole4[] = "__OTR__moo_moo_farm_data/gTextureMole4"; - -static const ALIGN_ASSET(2) char gTextureMole5[] = "__OTR__moo_moo_farm_data/gTextureMole5"; - -static const ALIGN_ASSET(2) char gTextureMole6[] = "__OTR__moo_moo_farm_data/gTextureMole6"; - -static const ALIGN_ASSET(2) char gTextureMole7[] = "__OTR__moo_moo_farm_data/gTextureMole7"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_mole_dirt[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_mole_dirt"; - -static const char* d_course_moo_moo_farm_mole_frames[] = { - gTextureMole1, - gTextureMole2, - gTextureMole3, - gTextureMole4, - gTextureMole5, - gTextureMole6, - gTextureMole7, - d_course_moo_moo_farm_mole_dirt, -}; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_cow_tlut[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_cow_tlut"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_cow_model[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_cow_model"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_unknown_model1[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_unknown_model2[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_13B88[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_13B88"; - -static const ALIGN_ASSET(2) char moo_moo_farm_data_seg6_gfx_13B88[] = "__OTR__moo_moo_farm_data/moo_moo_farm_data_seg6_gfx_13B88"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow1[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_cow1"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow2[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_cow2"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow3[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_cow3"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow4[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_cow4"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_cow5[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_cow5"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_tree_model[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_tree_model"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_tree[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_tree"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_13FF8[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_13FF8"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_14060[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_14060"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_dl_14088[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_dl_14088"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_cow_spawn[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_cow_spawn"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_tree_spawn[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_tree_spawn"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_item_box_spawns[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_addr[] = "__OTR__moo_moo_farm_data/d_course_moo_moo_farm_addr"; - diff --git a/include/assets/moo_moo_farm_displaylists.h b/include/assets/moo_moo_farm_displaylists.h deleted file mode 100644 index bd7eb1c7f..000000000 --- a/include/assets/moo_moo_farm_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_packed_dls[] = "__OTR__moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dls"; - diff --git a/include/assets/moo_moo_farm_vertices.h b/include/assets/moo_moo_farm_vertices.h deleted file mode 100644 index 0cbb3115d..000000000 --- a/include/assets/moo_moo_farm_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_moo_moo_farm_vertex[] = "__OTR__moo_moo_farm_vertices/d_course_moo_moo_farm_vertex"; - diff --git a/include/assets/other/ceremony_data.h b/include/assets/other/ceremony_data.h new file mode 100644 index 000000000..540814f27 --- /dev/null +++ b/include/assets/other/ceremony_data.h @@ -0,0 +1,21 @@ +#pragma once + +#include +#include +#include +#include + +static const ALIGN_ASSET(2) char light1[] = "__OTR__other/ceremony_data/light1"; + +static const ALIGN_ASSET(2) char light2[] = "__OTR__other/ceremony_data/light2"; + +static const ALIGN_ASSET(2) char light3[] = "__OTR__other/ceremony_data/light3"; + +static const ALIGN_ASSET(2) char podium_ceremony_path[] = "__OTR__other/ceremony_data/ending_sequence"; + +static const ALIGN_ASSET(2) char podium_ceremony_path_2[] = "__OTR__other/ceremony_data/ending_sequence2"; + +static const ALIGN_ASSET(2) char podium_ceremony_path_3[] = "__OTR__other/ceremony_data/ending_sequence3"; + +static const ALIGN_ASSET(2) char podium_ceremony_path_4[] = "__OTR__other/ceremony_data/ending_sequence4"; + diff --git a/include/assets/other/common_data.h b/include/assets/other/common_data.h new file mode 100644 index 000000000..5d3f2b7e6 --- /dev/null +++ b/include/assets/other/common_data.h @@ -0,0 +1,45 @@ +#pragma once + +#include +#include +#include +#include + +static const ALIGN_ASSET(2) char D_0D008E98[] = "__OTR__other/common_data/D_0D008E98"; + +static const ALIGN_ASSET(2) char D_0D008ED8[] = "__OTR__other/common_data/D_0D008ED8"; + +static const ALIGN_ASSET(2) char D_0D008F18[] = "__OTR__other/common_data/D_0D008F18"; + +static const ALIGN_ASSET(2) char D_0D008F28[] = "__OTR__other/common_data/D_0D008F28"; + +static const ALIGN_ASSET(2) char D_0D008F80[] = "__OTR__other/common_data/D_0D008F80"; + +static const ALIGN_ASSET(2) char D_0D008FB8[] = "__OTR__other/common_data/D_0D008FB8"; + +static const ALIGN_ASSET(2) char D_0D009058[] = "__OTR__other/common_data/D_0D009058"; + +static const ALIGN_ASSET(2) char D_0D0090B8[] = "__OTR__other/common_data/D_0D0090B8"; + +static const ALIGN_ASSET(2) char D_0D0090F8[] = "__OTR__other/common_data/D_0D0090F8"; + +static const ALIGN_ASSET(2) char D_0D009158[] = "__OTR__other/common_data/D_0D009158"; + +static const ALIGN_ASSET(2) char D_0D009188[] = "__OTR__other/common_data/D_0D009188"; + +static const ALIGN_ASSET(2) char D_0D0091E8[] = "__OTR__other/common_data/D_0D0091E8"; + +static const ALIGN_ASSET(2) char D_0D009210[] = "__OTR__other/common_data/D_0D009210"; + +static const ALIGN_ASSET(2) char D_0D009238[] = "__OTR__other/common_data/D_0D009238"; + +static const ALIGN_ASSET(2) char D_0D009260[] = "__OTR__other/common_data/D_0D009260"; + +static const ALIGN_ASSET(2) char D_0D009280[] = "__OTR__other/common_data/D_0D009280"; + +static const ALIGN_ASSET(2) char D_0D0092C8[] = "__OTR__other/common_data/D_0D0092C8"; + +static const ALIGN_ASSET(2) char D_0D009310[] = "__OTR__other/common_data/D_0D009310"; + +static const ALIGN_ASSET(2) char D_0D0093C0[] = "__OTR__other/common_data/D_0D0093C0"; + diff --git a/include/assets/some_data.h b/include/assets/other/startup_logo.h similarity index 52% rename from include/assets/some_data.h rename to include/assets/other/startup_logo.h index b8c7aa6e7..67a36707b 100644 --- a/include/assets/some_data.h +++ b/include/assets/other/startup_logo.h @@ -4,5 +4,5 @@ #include #include -static const ALIGN_ASSET(2) char gTLUTOnomatopoeia[] = "__OTR__some_data/gTLUTOnomatopoeia"; +static const ALIGN_ASSET(2) char lights[] = "__OTR__other/startup_logo/lights"; diff --git a/include/assets/other/tracks/banshee_boardwalk/banshee_boardwalk_data.h b/include/assets/other/tracks/banshee_boardwalk/banshee_boardwalk_data.h new file mode 100644 index 000000000..4c12abb87 --- /dev/null +++ b/include/assets/other/tracks/banshee_boardwalk/banshee_boardwalk_data.h @@ -0,0 +1,14 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_unknown_waypoints[] = "__OTR__other/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_track_waypoints[] = "__OTR__other/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_item_box_spawns[] = "__OTR__other/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_track_sections[] = "__OTR__other/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_track_sections"; + diff --git a/include/assets/other/tracks/big_donut/big_donut_data.h b/include/assets/other/tracks/big_donut/big_donut_data.h new file mode 100644 index 000000000..c9c059524 --- /dev/null +++ b/include/assets/other/tracks/big_donut/big_donut_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_big_donut_item_box_spawns[] = "__OTR__other/tracks/big_donut/big_donut_data/d_course_big_donut_item_box_spawns"; + diff --git a/include/assets/other/tracks/block_fort/block_fort_data.h b/include/assets/other/tracks/block_fort/block_fort_data.h new file mode 100644 index 000000000..28e79ef0c --- /dev/null +++ b/include/assets/other/tracks/block_fort/block_fort_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_block_fort_item_box_spawns[] = "__OTR__other/tracks/block_fort/block_fort_data/d_course_block_fort_item_box_spawns"; + diff --git a/include/assets/other/tracks/bowsers_castle/bowsers_castle_data.h b/include/assets/other/tracks/bowsers_castle/bowsers_castle_data.h new file mode 100644 index 000000000..4ac94bbbf --- /dev/null +++ b/include/assets/other/tracks/bowsers_castle/bowsers_castle_data.h @@ -0,0 +1,16 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_unknown_waypoints[] = "__OTR__other/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_track_waypoints[] = "__OTR__other/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_tree_spawn[] = "__OTR__other/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_tree_spawn"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_item_box_spawns[] = "__OTR__other/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_addr[] = "__OTR__other/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_addr"; + diff --git a/include/assets/other/tracks/choco_mountain/choco_mountain_data.h b/include/assets/other/tracks/choco_mountain/choco_mountain_data.h new file mode 100644 index 000000000..1a0eae1ad --- /dev/null +++ b/include/assets/other/tracks/choco_mountain/choco_mountain_data.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_choco_mountain_unknown_waypoints[] = "__OTR__other/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_track_waypoints[] = "__OTR__other/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_light[] = "__OTR__other/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_light"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_falling_rock_spawns[] = "__OTR__other/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_falling_rock_spawns"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_item_box_spawns[] = "__OTR__other/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_addr[] = "__OTR__other/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_addr"; + diff --git a/include/assets/other/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h b/include/assets/other/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h new file mode 100644 index 000000000..054a95c44 --- /dev/null +++ b/include/assets/other/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h @@ -0,0 +1,26 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_waypoints[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_waypoints2[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_waypoints2"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_track_waypoints[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_light1[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_light1"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_light2[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_light2"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_light3[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_light3"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_unknown_light4[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_unknown_light4"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_item_box_spawns[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree_spawn[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree_spawn"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_addr[] = "__OTR__other/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_addr"; + diff --git a/include/assets/other/tracks/double_deck/double_deck_data.h b/include/assets/other/tracks/double_deck/double_deck_data.h new file mode 100644 index 000000000..083acacd0 --- /dev/null +++ b/include/assets/other/tracks/double_deck/double_deck_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_double_deck_item_box_spawns[] = "__OTR__other/tracks/double_deck/double_deck_data/d_course_double_deck_item_box_spawns"; + diff --git a/include/assets/other/tracks/frappe_snowland/frappe_snowland_data.h b/include/assets/other/tracks/frappe_snowland/frappe_snowland_data.h new file mode 100644 index 000000000..0a9a647ba --- /dev/null +++ b/include/assets/other/tracks/frappe_snowland/frappe_snowland_data.h @@ -0,0 +1,16 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_unknown_waypoints[] = "__OTR__other/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_track_waypoints[] = "__OTR__other/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_tree_spawns[] = "__OTR__other/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_tree_spawns"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_item_box_spawns[] = "__OTR__other/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_addr[] = "__OTR__other/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_addr"; + diff --git a/include/assets/other/tracks/kalimari_desert/kalimari_desert_data.h b/include/assets/other/tracks/kalimari_desert/kalimari_desert_data.h new file mode 100644 index 000000000..42d3a251e --- /dev/null +++ b/include/assets/other/tracks/kalimari_desert/kalimari_desert_data.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_unknown_waypoints[] = "__OTR__other/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_track_unknown_waypoints[] = "__OTR__other/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_track_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_track_waypoints[] = "__OTR__other/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_item_box_spawns[] = "__OTR__other/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_cactus_spawn[] = "__OTR__other/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_cactus_spawn"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_addr[] = "__OTR__other/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_addr"; + diff --git a/include/assets/other/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h b/include/assets/other/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h new file mode 100644 index 000000000..109c3f8f6 --- /dev/null +++ b/include/assets/other/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h @@ -0,0 +1,28 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_waypoints[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_unknown_waypoints1[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_unknown_waypoints1"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_track_waypoints[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_track_waypoints_2[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_track_waypoints_2"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_light1[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_light1"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_light2[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_light2"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_light3[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_light3"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_light4[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_light4"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_item_box_spawns[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_tree_spawn[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_tree_spawn"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_addr[] = "__OTR__other/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_addr"; + diff --git a/include/assets/other/tracks/luigi_raceway/luigi_raceway_data.h b/include/assets/other/tracks/luigi_raceway/luigi_raceway_data.h new file mode 100644 index 000000000..6b6b71f08 --- /dev/null +++ b/include/assets/other/tracks/luigi_raceway/luigi_raceway_data.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_unknown_waypoints[] = "__OTR__other/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_track_waypoints[] = "__OTR__other/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_light1[] = "__OTR__other/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_light1"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_item_box_spawns[] = "__OTR__other/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_tree_spawn[] = "__OTR__other/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_tree_spawn"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_addr[] = "__OTR__other/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_addr"; + diff --git a/include/assets/other/tracks/mario_raceway/mario_raceway_data.h b/include/assets/other/tracks/mario_raceway/mario_raceway_data.h new file mode 100644 index 000000000..40a288099 --- /dev/null +++ b/include/assets/other/tracks/mario_raceway/mario_raceway_data.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_mario_raceway_unknown_waypoints[] = "__OTR__other/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_track_waypoints[] = "__OTR__other/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_item_box_spawns[] = "__OTR__other/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_piranha_plant_spawns[] = "__OTR__other/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_piranha_plant_spawns"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_tree_spawns[] = "__OTR__other/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_tree_spawns"; + +static const ALIGN_ASSET(2) char d_course_mario_raceway_addr[] = "__OTR__other/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_addr"; + diff --git a/include/assets/other/tracks/moo_moo_farm/moo_moo_farm_data.h b/include/assets/other/tracks/moo_moo_farm/moo_moo_farm_data.h new file mode 100644 index 000000000..3a10521c4 --- /dev/null +++ b/include/assets/other/tracks/moo_moo_farm/moo_moo_farm_data.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_unknown_waypoints[] = "__OTR__other/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_track_waypoints[] = "__OTR__other/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_cow_spawn[] = "__OTR__other/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_cow_spawn"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_tree_spawn[] = "__OTR__other/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_tree_spawn"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_item_box_spawns[] = "__OTR__other/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_addr[] = "__OTR__other/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_addr"; + diff --git a/include/assets/other/tracks/rainbow_road/rainbow_road_data.h b/include/assets/other/tracks/rainbow_road/rainbow_road_data.h new file mode 100644 index 000000000..a5859bdca --- /dev/null +++ b/include/assets/other/tracks/rainbow_road/rainbow_road_data.h @@ -0,0 +1,16 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_rainbow_road_unknown_waypoints[] = "__OTR__other/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_track_waypoints[] = "__OTR__other/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_light1[] = "__OTR__other/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_light1"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_item_box_spawns[] = "__OTR__other/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_addr[] = "__OTR__other/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_addr"; + diff --git a/include/assets/other/tracks/royal_raceway/royal_raceway_data.h b/include/assets/other/tracks/royal_raceway/royal_raceway_data.h new file mode 100644 index 000000000..1e0cd3ecc --- /dev/null +++ b/include/assets/other/tracks/royal_raceway/royal_raceway_data.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_royal_raceway_unknown_waypoints[] = "__OTR__other/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_track_waypoints[] = "__OTR__other/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_piranha_plant_spawn[] = "__OTR__other/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_piranha_plant_spawn"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_tree_spawn[] = "__OTR__other/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_tree_spawn"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_item_box_spawns[] = "__OTR__other/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_royal_raceway_addr[] = "__OTR__other/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_addr"; + diff --git a/include/assets/other/tracks/sherbet_land/sherbet_land_data.h b/include/assets/other/tracks/sherbet_land/sherbet_land_data.h new file mode 100644 index 000000000..43da7bfc8 --- /dev/null +++ b/include/assets/other/tracks/sherbet_land/sherbet_land_data.h @@ -0,0 +1,28 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_sherbet_land_unknown_waypoints[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_track_waypoints[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_light1[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_light1"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_light2[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_light2"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_light3[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_light3"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_light4[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_light4"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_light5[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_light5"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_light6[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_light6"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_light7[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_light7"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_item_box_spawns[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_addr[] = "__OTR__other/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_addr"; + diff --git a/include/assets/other/tracks/skyscraper/skyscraper_data.h b/include/assets/other/tracks/skyscraper/skyscraper_data.h new file mode 100644 index 000000000..1ce005ba6 --- /dev/null +++ b/include/assets/other/tracks/skyscraper/skyscraper_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_skyscraper_item_box_spawns[] = "__OTR__other/tracks/skyscraper/skyscraper_data/d_course_skyscraper_item_box_spawns"; + diff --git a/include/assets/other/tracks/toads_turnpike/toads_turnpike_data.h b/include/assets/other/tracks/toads_turnpike/toads_turnpike_data.h new file mode 100644 index 000000000..7310df3c6 --- /dev/null +++ b/include/assets/other/tracks/toads_turnpike/toads_turnpike_data.h @@ -0,0 +1,14 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_unknown_waypoints[] = "__OTR__other/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_track_waypoints[] = "__OTR__other/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_item_box_spawns[] = "__OTR__other/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_addr[] = "__OTR__other/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_addr"; + diff --git a/include/assets/other/tracks/wario_stadium/wario_stadium_data.h b/include/assets/other/tracks/wario_stadium/wario_stadium_data.h new file mode 100644 index 000000000..476f43760 --- /dev/null +++ b/include/assets/other/tracks/wario_stadium/wario_stadium_data.h @@ -0,0 +1,14 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_wario_stadium_unknown_waypoints[] = "__OTR__other/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_track_waypoints[] = "__OTR__other/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_item_box_spawns[] = "__OTR__other/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_addr[] = "__OTR__other/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_addr"; + diff --git a/include/assets/other/tracks/yoshi_valley/yoshi_valley_data.h b/include/assets/other/tracks/yoshi_valley/yoshi_valley_data.h new file mode 100644 index 000000000..ae4888d19 --- /dev/null +++ b/include/assets/other/tracks/yoshi_valley/yoshi_valley_data.h @@ -0,0 +1,40 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_waypoints[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_waypoints"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_waypoints_2[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_waypoints_2"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_waypoints_3[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_waypoints_3"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_waypoints_4[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_waypoints_4"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_track_waypoints[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_track_waypoints"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_track_waypoints_2[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_track_waypoints_2"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_track_waypoints_3[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_track_waypoints_3"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_track_waypoints_4[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_track_waypoints_4"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light1[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_light1"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light2[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_light2"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light3[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_light3"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light4[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_light4"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light5[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_unknown_light5"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_lights4[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_lights4"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_tree_spawn[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_tree_spawn"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_item_box_spawns[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_item_box_spawns"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_addr[] = "__OTR__other/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_addr"; + diff --git a/include/assets/other_textures.h b/include/assets/other_textures.h deleted file mode 100644 index 43467811b..000000000 --- a/include/assets/other_textures.h +++ /dev/null @@ -1,1087 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gTextureSignShellShot0[] = "__OTR__other_textures/sign_shell_shot_0"; - -static const ALIGN_ASSET(2) char gTextureSignShellShot1[] = "__OTR__other_textures/sign_shell_shot_1"; - -static const ALIGN_ASSET(2) char gTextureGrayCheckerboard[] = "__OTR__other_textures/gray_checkerboard"; - -static const ALIGN_ASSET(2) char gTextureGrayCobblestone[] = "__OTR__other_textures/gray_cobblestone"; - -static const ALIGN_ASSET(2) char gTexture64275C[] = "__OTR__other_textures/texture_64275C"; - -static const ALIGN_ASSET(2) char gTexture64286C[] = "__OTR__other_textures/texture_64286C"; - -static const ALIGN_ASSET(2) char gTexture642978[] = "__OTR__other_textures/texture_642978"; - -static const ALIGN_ASSET(2) char gTextureSignBlue64[] = "__OTR__other_textures/sign_blue_64"; - -static const ALIGN_ASSET(2) char gTextureCheckerboardYellowPink[] = "__OTR__other_textures/checkerboard_yellow_pink"; - -static const ALIGN_ASSET(2) char gTexture64313C[] = "__OTR__other_textures/texture_64313C"; - -static const ALIGN_ASSET(2) char gTextureCheckerboardYellowBlue[] = "__OTR__other_textures/checkerbord_yellow_blue"; - -static const ALIGN_ASSET(2) char gTexture643430[] = "__OTR__other_textures/texture_643430"; - -static const ALIGN_ASSET(2) char gTexture643A34[] = "__OTR__other_textures/texture_643A34"; - -static const ALIGN_ASSET(2) char gTexture643B3C[] = "__OTR__other_textures/texture_643B3C"; - -static const ALIGN_ASSET(2) char gTexture6442D4[] = "__OTR__other_textures/texture_6442D4"; - -static const ALIGN_ASSET(2) char gTexture64440C[] = "__OTR__other_textures/texture_64440C"; - -static const ALIGN_ASSET(2) char gTexture6446AC[] = "__OTR__other_textures/texture_6446AC"; - -static const ALIGN_ASSET(2) char gTexture6447C4[] = "__OTR__other_textures/texture_6447C4"; - -static const ALIGN_ASSET(2) char gTextureCheckerboardBlackWhite[] = "__OTR__other_textures/checkerboard_black_white"; - -static const ALIGN_ASSET(2) char gTexture6449D4[] = "__OTR__other_textures/texture_6449D4"; - -static const ALIGN_ASSET(2) char gTexture645134[] = "__OTR__other_textures/texture_645134"; - -static const ALIGN_ASSET(2) char gTexture645660[] = "__OTR__other_textures/texture_645660"; - -static const ALIGN_ASSET(2) char gTexture6457D8[] = "__OTR__other_textures/texture_6457D8"; - -static const ALIGN_ASSET(2) char gTextureCheckerboardBlueGreen[] = "__OTR__other_textures/checkerboard_blue_green"; - -static const ALIGN_ASSET(2) char gTextureNumberYellowBlue1[] = "__OTR__other_textures/number_yellow_blue_1"; - -static const ALIGN_ASSET(2) char gTextureNumberYellowBlue2[] = "__OTR__other_textures/number_yellow_blue_2"; - -static const ALIGN_ASSET(2) char gTextureNumberYellowBlue3[] = "__OTR__other_textures/number_yellow_blue_3"; - -static const ALIGN_ASSET(2) char gTextureNumberYellowBlue4[] = "__OTR__other_textures/number_yellow_blue_4"; - -static const ALIGN_ASSET(2) char gTexture64619C[] = "__OTR__other_textures/texture_64619C"; - -static const ALIGN_ASSET(2) char gTexture6462C0[] = "__OTR__other_textures/texture_6462C0"; - -static const ALIGN_ASSET(2) char gTexture64647C[] = "__OTR__other_textures/texture_64647C"; - -static const ALIGN_ASSET(2) char gTexture646CA8[] = "__OTR__other_textures/texture_646CA8"; - -static const ALIGN_ASSET(2) char gTexture6473E4[] = "__OTR__other_textures/texture_6473E4"; - -static const ALIGN_ASSET(2) char gTexture647994[] = "__OTR__other_textures/texture_647994"; - -static const ALIGN_ASSET(2) char gTexture647F4C[] = "__OTR__other_textures/texture_647F4C"; - -static const ALIGN_ASSET(2) char gTexture648508[] = "__OTR__other_textures/texture_648508"; - -static const ALIGN_ASSET(2) char gTextureGrass1[] = "__OTR__other_textures/grass_1"; - -static const ALIGN_ASSET(2) char gTextureWoodDoor0[] = "__OTR__other_textures/wood_door_0"; - -static const ALIGN_ASSET(2) char gTextureWoodDoor1[] = "__OTR__other_textures/wood_door_1"; - -static const ALIGN_ASSET(2) char gTextureGrass2[] = "__OTR__other_textures/grass_2"; - -static const ALIGN_ASSET(2) char gTextureMooMooFarmSignLeft[] = "__OTR__other_textures/gTextureMooMooFarmSignLeft"; - -static const ALIGN_ASSET(2) char gTextureMooMooFarmSignRight[] = "__OTR__other_textures/gTextureMooMooFarmSignRight"; - -static const ALIGN_ASSET(2) char gTexture64ACAC[] = "__OTR__other_textures/texture_64ACAC"; - -static const ALIGN_ASSET(2) char gTexture64AF50[] = "__OTR__other_textures/texture_64AF50"; - -static const ALIGN_ASSET(2) char gTexture64B090[] = "__OTR__other_textures/texture_64B090"; - -static const ALIGN_ASSET(2) char gTexture64B3F8[] = "__OTR__other_textures/texture_64B3F8"; - -static const ALIGN_ASSET(2) char gTexture64B54C[] = "__OTR__other_textures/texture_64B54C"; - -static const ALIGN_ASSET(2) char gTexture64B8D8[] = "__OTR__other_textures/texture_64B8D8"; - -static const ALIGN_ASSET(2) char gTexture64BA50[] = "__OTR__other_textures/texture_64BA50"; - -static const ALIGN_ASSET(2) char gTexture64BB60[] = "__OTR__other_textures/texture_64BB60"; - -static const ALIGN_ASSET(2) char gTexture64BCCC[] = "__OTR__other_textures/texture_64BCCC"; - -static const ALIGN_ASSET(2) char gTexture64C11C[] = "__OTR__other_textures/texture_64C11C"; - -static const ALIGN_ASSET(2) char gTexture64C7B4[] = "__OTR__other_textures/texture_64C7B4"; - -static const ALIGN_ASSET(2) char gTexture64CC20[] = "__OTR__other_textures/texture_64CC20"; - -static const ALIGN_ASSET(2) char gTextureSignMergingLanes[] = "__OTR__other_textures/sign_merging_lanes"; - -static const ALIGN_ASSET(2) char gTextureGrass3[] = "__OTR__other_textures/grass_3"; - -static const ALIGN_ASSET(2) char gTextureGrass4[] = "__OTR__other_textures/grass_4"; - -static const ALIGN_ASSET(2) char gTextureGrass5[] = "__OTR__other_textures/grass_5"; - -static const ALIGN_ASSET(2) char gTextureGrass6[] = "__OTR__other_textures/grass_6"; - -static const ALIGN_ASSET(2) char gTextureSignNintendo0[] = "__OTR__other_textures/sign_nintendo_0"; - -static const ALIGN_ASSET(2) char gTextureSignNintendo1[] = "__OTR__other_textures/sign_nintendo_1"; - -static const ALIGN_ASSET(2) char gTextureGrass7[] = "__OTR__other_textures/grass_7"; - -static const ALIGN_ASSET(2) char gTexture64F9E8[] = "__OTR__other_textures/texture_64F9E8"; - -static const ALIGN_ASSET(2) char gTexture64FBF4[] = "__OTR__other_textures/texture_64FBF4"; - -static const ALIGN_ASSET(2) char gTexture64FE68[] = "__OTR__other_textures/texture_64FE68"; - -static const ALIGN_ASSET(2) char gTextureWoodBridgeSlats[] = "__OTR__other_textures/wood_bridge_slats"; - -static const ALIGN_ASSET(2) char gTextureFlagRed[] = "__OTR__other_textures/flag_red"; - -static const ALIGN_ASSET(2) char gTexture65100C[] = "__OTR__other_textures/texture_65100C"; - -static const ALIGN_ASSET(2) char gTexture65112C[] = "__OTR__other_textures/texture_65112C"; - -static const ALIGN_ASSET(2) char gTexture65127C[] = "__OTR__other_textures/texture_65127C"; - -static const ALIGN_ASSET(2) char gTexture651428[] = "__OTR__other_textures/texture_651428"; - -static const ALIGN_ASSET(2) char gTexture651984[] = "__OTR__other_textures/texture_651984"; - -static const ALIGN_ASSET(2) char gTexture651B20[] = "__OTR__other_textures/texture_651B20"; - -static const ALIGN_ASSET(2) char gTexture651F40[] = "__OTR__other_textures/texture_651F40"; - -static const ALIGN_ASSET(2) char gTexture6522E0[] = "__OTR__other_textures/texture_6522E0"; - -static const ALIGN_ASSET(2) char gTexture6528DC[] = "__OTR__other_textures/texture_6528DC"; - -static const ALIGN_ASSET(2) char gTexture652B54[] = "__OTR__other_textures/texture_652B54"; - -static const ALIGN_ASSET(2) char gTexture65315C[] = "__OTR__other_textures/texture_65315C"; - -static const ALIGN_ASSET(2) char gTexture653608[] = "__OTR__other_textures/texture_653608"; - -static const ALIGN_ASSET(2) char gTexture653DB0[] = "__OTR__other_textures/texture_653DB0"; - -static const ALIGN_ASSET(2) char gTexture654460[] = "__OTR__other_textures/texture_654460"; - -static const ALIGN_ASSET(2) char gTexture654F74[] = "__OTR__other_textures/texture_654F74"; - -static const ALIGN_ASSET(2) char gTexture655998[] = "__OTR__other_textures/texture_655998"; - -static const ALIGN_ASSET(2) char gTexture655F38[] = "__OTR__other_textures/texture_655F38"; - -static const ALIGN_ASSET(2) char gTexture656AF4[] = "__OTR__other_textures/texture_656AF4"; - -static const ALIGN_ASSET(2) char gTexture6575C8[] = "__OTR__other_textures/texture_6575C8"; - -static const ALIGN_ASSET(2) char gTexture658370[] = "__OTR__other_textures/texture_658370"; - -static const ALIGN_ASSET(2) char gTexture65912C[] = "__OTR__other_textures/texture_65912C"; - -static const ALIGN_ASSET(2) char gTexture659EE8[] = "__OTR__other_textures/texture_659EE8"; - -static const ALIGN_ASSET(2) char gTexture65ADE0[] = "__OTR__other_textures/texture_65ADE0"; - -static const ALIGN_ASSET(2) char gTexture65BB3C[] = "__OTR__other_textures/texture_65BB3C"; - -static const ALIGN_ASSET(2) char gTexture65C8DC[] = "__OTR__other_textures/texture_65C8DC"; - -static const ALIGN_ASSET(2) char gTexture65D5D4[] = "__OTR__other_textures/texture_65D5D4"; - -static const ALIGN_ASSET(2) char gTexture65E2EC[] = "__OTR__other_textures/texture_65E2EC"; - -static const ALIGN_ASSET(2) char gTexture65E59C[] = "__OTR__other_textures/texture_65E59C"; - -static const ALIGN_ASSET(2) char gTexture65EAEC[] = "__OTR__other_textures/texture_65EAEC"; - -static const ALIGN_ASSET(2) char gTexture65EE38[] = "__OTR__other_textures/texture_65EE38"; - -static const ALIGN_ASSET(2) char gTexture65FB18[] = "__OTR__other_textures/texture_65FB18"; - -static const ALIGN_ASSET(2) char gTextureSignPinkArrow[] = "__OTR__other_textures/sign_pink_arrow"; - -static const ALIGN_ASSET(2) char gTextureCrownJewelBlue[] = "__OTR__other_textures/crown_jewel_blue"; - -static const ALIGN_ASSET(2) char gTextureCrown[] = "__OTR__other_textures/crown"; - -static const ALIGN_ASSET(2) char gTextureCrownJewelPink[] = "__OTR__other_textures/crown_jewel_pink"; - -static const ALIGN_ASSET(2) char gTexture6607C0[] = "__OTR__other_textures/texture_6607C0"; - -static const ALIGN_ASSET(2) char gTexture6608C8[] = "__OTR__other_textures/texture_6608C8"; - -static const ALIGN_ASSET(2) char gTexture6609D0[] = "__OTR__other_textures/texture_6609D0"; - -static const ALIGN_ASSET(2) char gTexture660D8C[] = "__OTR__other_textures/texture_660D8C"; - -static const ALIGN_ASSET(2) char gTextureRoofTile[] = "__OTR__other_textures/roof_tile"; - -static const ALIGN_ASSET(2) char gTextureCastleBricks[] = "__OTR__other_textures/castle_bricks"; - -static const ALIGN_ASSET(2) char gTextureCastleBridge[] = "__OTR__other_textures/castle_bridge"; - -static const ALIGN_ASSET(2) char gTextureGrass8[] = "__OTR__other_textures/grass_8"; - -static const ALIGN_ASSET(2) char gTextureGrass9[] = "__OTR__other_textures/grass_9"; - -static const ALIGN_ASSET(2) char gTexture66262C[] = "__OTR__other_textures/texture_66262C"; - -static const ALIGN_ASSET(2) char gTexture662924[] = "__OTR__other_textures/texture_662924"; - -static const ALIGN_ASSET(2) char gTexture662A34[] = "__OTR__other_textures/texture_662A34"; - -static const ALIGN_ASSET(2) char gTextureSignToadYellow[] = "__OTR__other_textures/sign_toad_yellow"; - -static const ALIGN_ASSET(2) char gTextureSignToadGreen[] = "__OTR__other_textures/sign_toad_green"; - -static const ALIGN_ASSET(2) char gTextureSignToadRed[] = "__OTR__other_textures/sign_toad_red"; - -static const ALIGN_ASSET(2) char gTexture663F90[] = "__OTR__other_textures/texture_663F90"; - -static const ALIGN_ASSET(2) char gTexture6640B4[] = "__OTR__other_textures/texture_6640B4"; - -static const ALIGN_ASSET(2) char gTexture6642A4[] = "__OTR__other_textures/texture_6642A4"; - -static const ALIGN_ASSET(2) char gTexture664408[] = "__OTR__other_textures/texture_664408"; - -static const ALIGN_ASSET(2) char gTexture6646B8[] = "__OTR__other_textures/texture_6646B8"; - -static const ALIGN_ASSET(2) char gTextureSignKoopaAir0[] = "__OTR__other_textures/sign_koopa_air_0"; - -static const ALIGN_ASSET(2) char gTextureSignKoopaAir1[] = "__OTR__other_textures/sign_koopa_air_1"; - -static const ALIGN_ASSET(2) char gTextureBricksRed[] = "__OTR__other_textures/bricks_red"; - -static const ALIGN_ASSET(2) char gTexture665C0C[] = "__OTR__other_textures/texture_665C0C"; - -static const ALIGN_ASSET(2) char gTexture6661AC[] = "__OTR__other_textures/texture_6661AC"; - -static const ALIGN_ASSET(2) char gTexture6663A4[] = "__OTR__other_textures/texture_6663A4"; - -static const ALIGN_ASSET(2) char gTextureSignBowser0[] = "__OTR__other_textures/sign_bowser_0"; - -static const ALIGN_ASSET(2) char gTextureSignBowser1[] = "__OTR__other_textures/sign_bowser_1"; - -static const ALIGN_ASSET(2) char gTextureGrass10[] = "__OTR__other_textures/grass_10"; - -static const ALIGN_ASSET(2) char gTextureGrass11[] = "__OTR__other_textures/grass_11"; - -static const ALIGN_ASSET(2) char gTexture667BAC[] = "__OTR__other_textures/texture_667BAC"; - -static const ALIGN_ASSET(2) char gTexture668228[] = "__OTR__other_textures/texture_668228"; - -static const ALIGN_ASSET(2) char gTexture668358[] = "__OTR__other_textures/texture_668358"; - -static const ALIGN_ASSET(2) char gTexture6684F8[] = "__OTR__other_textures/texture_6684F8"; - -static const ALIGN_ASSET(2) char gTexture668608[] = "__OTR__other_textures/texture_668608"; - -static const ALIGN_ASSET(2) char gTexture668728[] = "__OTR__other_textures/texture_668728"; - -static const ALIGN_ASSET(2) char gTexture668920[] = "__OTR__other_textures/texture_668920"; - -static const ALIGN_ASSET(2) char gTextureGrass12[] = "__OTR__other_textures/grass_12"; - -static const ALIGN_ASSET(2) char gTexture669570[] = "__OTR__other_textures/texture_669570"; - -static const ALIGN_ASSET(2) char gTexture66A3DC[] = "__OTR__other_textures/texture_66A3DC"; - -static const ALIGN_ASSET(2) char gTexture66ABA4[] = "__OTR__other_textures/texture_66ABA4"; - -static const ALIGN_ASSET(2) char gTexture66AEB8[] = "__OTR__other_textures/texture_66AEB8"; - -static const ALIGN_ASSET(2) char gTextureSignLuigiFace0[] = "__OTR__other_textures/sign_luigi_face_0"; - -static const ALIGN_ASSET(2) char gTextureSignLuigiFace1[] = "__OTR__other_textures/sign_luigi_face_1"; - -static const ALIGN_ASSET(2) char gTextureSignLuigis0[] = "__OTR__other_textures/sign_luigis_0"; - -static const ALIGN_ASSET(2) char gTextureSignLuigis1[] = "__OTR__other_textures/sign_luigis_1"; - -static const ALIGN_ASSET(2) char gTextureSignMarioStar0[] = "__OTR__other_textures/sign_mario_star_0"; - -static const ALIGN_ASSET(2) char gTextureSignMarioStar1[] = "__OTR__other_textures/sign_mario_star_1"; - -static const ALIGN_ASSET(2) char gTexture66C7A8[] = "__OTR__other_textures/texture_66C7A8"; - -static const ALIGN_ASSET(2) char gTexture66C8F4[] = "__OTR__other_textures/texture_66C8F4"; - -static const ALIGN_ASSET(2) char gTexture66CA98[] = "__OTR__other_textures/texture_66CA98"; - -static const ALIGN_ASSET(2) char gTexture66CD64[] = "__OTR__other_textures/texture_66CD64"; - -static const ALIGN_ASSET(2) char gTexture66D024[] = "__OTR__other_textures/texture_66D024"; - -static const ALIGN_ASSET(2) char gTextureFlagRed2[] = "__OTR__other_textures/flag_red_2"; - -static const ALIGN_ASSET(2) char gTexture66D698[] = "__OTR__other_textures/texture_66D698"; - -static const ALIGN_ASSET(2) char gTextureCheckerboardPink[] = "__OTR__other_textures/checkerboard_pink"; - -static const ALIGN_ASSET(2) char gTexture66DB60[] = "__OTR__other_textures/texture_66DB60"; - -static const ALIGN_ASSET(2) char gTexture66DD38[] = "__OTR__other_textures/texture_66DD38"; - -static const ALIGN_ASSET(2) char gTextureSignNintendoRed0[] = "__OTR__other_textures/sign_nintendo_red_0"; - -static const ALIGN_ASSET(2) char gTextureSignNintendoRed1[] = "__OTR__other_textures/sign_nintendo_red_1"; - -static const ALIGN_ASSET(2) char gTexture66E608[] = "__OTR__other_textures/texture_66E608"; - -static const ALIGN_ASSET(2) char gTexture66EBF0[] = "__OTR__other_textures/texture_66EBF0"; - -static const ALIGN_ASSET(2) char gTexture66ED38[] = "__OTR__other_textures/texture_66ED38"; - -static const ALIGN_ASSET(2) char gTextureStainglassPeach0[] = "__OTR__other_textures/stainglass_peach_0"; - -static const ALIGN_ASSET(2) char gTextureStainglassPeach1[] = "__OTR__other_textures/stainglass_peach_1"; - -static const ALIGN_ASSET(2) char gTexture670AC8[] = "__OTR__other_textures/texture_670AC8"; - -static const ALIGN_ASSET(2) char gTexture671A88[] = "__OTR__other_textures/texture_671A88"; - -static const ALIGN_ASSET(2) char gTextureRailroadTrack[] = "__OTR__other_textures/railroad_track"; - -static const ALIGN_ASSET(2) char gTextureRailroadCrossingTrack[] = "__OTR__other_textures/railroad_crossing_track"; - -static const ALIGN_ASSET(2) char gTexture67291C[] = "__OTR__other_textures/texture_67291C"; - -static const ALIGN_ASSET(2) char gTextureRainbow[] = "__OTR__other_textures/rainbow"; - -static const ALIGN_ASSET(2) char gTexture673118[] = "__OTR__other_textures/texture_673118"; - -static const ALIGN_ASSET(2) char gTexture6733CC[] = "__OTR__other_textures/texture_6733CC"; - -static const ALIGN_ASSET(2) char gTexture6735DC[] = "__OTR__other_textures/texture_6735DC"; - -static const ALIGN_ASSET(2) char gTexture673990[] = "__OTR__other_textures/texture_673990"; - -static const ALIGN_ASSET(2) char gTexture673C68[] = "__OTR__other_textures/texture_673C68"; - -static const ALIGN_ASSET(2) char gTexture673FF8[] = "__OTR__other_textures/texture_673FF8"; - -static const ALIGN_ASSET(2) char gTexture674354[] = "__OTR__other_textures/texture_674354"; - -static const ALIGN_ASSET(2) char gTexture6747C4[] = "__OTR__other_textures/texture_6747C4"; - -static const ALIGN_ASSET(2) char gTexture67490C[] = "__OTR__other_textures/texture_67490C"; - -static const ALIGN_ASSET(2) char gTexture674B28[] = "__OTR__other_textures/texture_674B28"; - -static const ALIGN_ASSET(2) char gTexture674D58[] = "__OTR__other_textures/texture_674D58"; - -static const ALIGN_ASSET(2) char gTexture675064[] = "__OTR__other_textures/texture_675064"; - -static const ALIGN_ASSET(2) char gTexture675220[] = "__OTR__other_textures/texture_675220"; - -static const ALIGN_ASSET(2) char gTexture675434[] = "__OTR__other_textures/texture_675434"; - -static const ALIGN_ASSET(2) char gTextureRoad0[] = "__OTR__other_textures/road_0"; - -static const ALIGN_ASSET(2) char gTextureRoad1[] = "__OTR__other_textures/road_1"; - -static const ALIGN_ASSET(2) char gTextureRoad2[] = "__OTR__other_textures/road_2"; - -static const ALIGN_ASSET(2) char gTextureRoad3[] = "__OTR__other_textures/road_3"; - -static const ALIGN_ASSET(2) char gTextureRoad4[] = "__OTR__other_textures/road_4"; - -static const ALIGN_ASSET(2) char gTextureRoad5[] = "__OTR__other_textures/road_5"; - -static const ALIGN_ASSET(2) char gTextureRoadFinish0[] = "__OTR__other_textures/road_finish_0"; - -static const ALIGN_ASSET(2) char gTextureRoadFinish1[] = "__OTR__other_textures/road_finish_1"; - -static const ALIGN_ASSET(2) char gTexture676C6C[] = "__OTR__other_textures/texture_676C6C"; - -static const ALIGN_ASSET(2) char gTexture676D7C[] = "__OTR__other_textures/texture_676D7C"; - -static const ALIGN_ASSET(2) char gTexture676EA8[] = "__OTR__other_textures/texture_676EA8"; - -static const ALIGN_ASSET(2) char gTexture676FB0[] = "__OTR__other_textures/texture_676FB0"; - -static const ALIGN_ASSET(2) char gTexture6774D8[] = "__OTR__other_textures/texture_6774D8"; - -static const ALIGN_ASSET(2) char gTexture6775EC[] = "__OTR__other_textures/texture_6775EC"; - -static const ALIGN_ASSET(2) char gTextureFenceBarbedWire[] = "__OTR__other_textures/fence_barbed_wire"; - -static const ALIGN_ASSET(2) char gTexture677A40[] = "__OTR__other_textures/texture_677A40"; - -static const ALIGN_ASSET(2) char gTextureSignFallingRocks[] = "__OTR__other_textures/sign_falling_rocks"; - -static const ALIGN_ASSET(2) char gTextureSignBackside[] = "__OTR__other_textures/sign_backside"; - -static const ALIGN_ASSET(2) char gTexture677F04[] = "__OTR__other_textures/texture_677F04"; - -static const ALIGN_ASSET(2) char gTexture678118[] = "__OTR__other_textures/texture_678118"; - -static const ALIGN_ASSET(2) char gTexture67842C[] = "__OTR__other_textures/texture_67842C"; - -static const ALIGN_ASSET(2) char gTexture67893C[] = "__OTR__other_textures/texture_67893C"; - -static const ALIGN_ASSET(2) char gTexture678CC8[] = "__OTR__other_textures/texture_678CC8"; - -static const ALIGN_ASSET(2) char gTexture679258[] = "__OTR__other_textures/texture_679258"; - -static const ALIGN_ASSET(2) char gTexture67973C[] = "__OTR__other_textures/texture_67973C"; - -static const ALIGN_ASSET(2) char gTexture679C04[] = "__OTR__other_textures/texture_679C04"; - -static const ALIGN_ASSET(2) char gTexture679D34[] = "__OTR__other_textures/texture_679D34"; - -static const ALIGN_ASSET(2) char gTextureStarOutline[] = "__OTR__other_textures/star_outline"; - -static const ALIGN_ASSET(2) char gTexture67A1B8[] = "__OTR__other_textures/texture_67A1B8"; - -static const ALIGN_ASSET(2) char gTexture67A370[] = "__OTR__other_textures/texture_67A370"; - -static const ALIGN_ASSET(2) char gTexture67A91C[] = "__OTR__other_textures/texture_67A91C"; - -static const ALIGN_ASSET(2) char gTexture67ADF0[] = "__OTR__other_textures/texture_67ADF0"; - -static const ALIGN_ASSET(2) char gTexture67B388[] = "__OTR__other_textures/texture_67B388"; - -static const ALIGN_ASSET(2) char gTexture67B75C[] = "__OTR__other_textures/texture_67B75C"; - -static const ALIGN_ASSET(2) char gTexture67B864[] = "__OTR__other_textures/texture_67B864"; - -static const ALIGN_ASSET(2) char gTexture67B9B0[] = "__OTR__other_textures/texture_67B9B0"; - -static const ALIGN_ASSET(2) char gTexture67BBD8[] = "__OTR__other_textures/texture_67BBD8"; - -static const ALIGN_ASSET(2) char gTexture67BEE8[] = "__OTR__other_textures/texture_67BEE8"; - -static const ALIGN_ASSET(2) char gTextureSandFinish[] = "__OTR__other_textures/sand_finish"; - -static const ALIGN_ASSET(2) char gTextureWaves0[] = "__OTR__other_textures/waves_0"; - -static const ALIGN_ASSET(2) char gTextureWaves1[] = "__OTR__other_textures/waves_1"; - -static const ALIGN_ASSET(2) char gTextureWaves2[] = "__OTR__other_textures/waves_2"; - -static const ALIGN_ASSET(2) char gTexture67D304[] = "__OTR__other_textures/texture_67D304"; - -static const ALIGN_ASSET(2) char gTexture67DC20[] = "__OTR__other_textures/texture_67DC20"; - -static const ALIGN_ASSET(2) char gTexture67E010[] = "__OTR__other_textures/texture_67E010"; - -static const ALIGN_ASSET(2) char gTexture67E428[] = "__OTR__other_textures/texture_67E428"; - -static const ALIGN_ASSET(2) char gTexture67EEAC[] = "__OTR__other_textures/texture_67EEAC"; - -static const ALIGN_ASSET(2) char gTexture67EFEC[] = "__OTR__other_textures/texture_67EFEC"; - -static const ALIGN_ASSET(2) char gTexture67F15C[] = "__OTR__other_textures/texture_67F15C"; - -static const ALIGN_ASSET(2) char gTexture67F450[] = "__OTR__other_textures/texture_67F450"; - -static const ALIGN_ASSET(2) char gTextureSignWarioFace[] = "__OTR__other_textures/sign_wario_face"; - -static const ALIGN_ASSET(2) char gTexture67FE0C[] = "__OTR__other_textures/texture_67FE0C"; - -static const ALIGN_ASSET(2) char gTextureSignWelcome0[] = "__OTR__other_textures/sign_welcome_0"; - -static const ALIGN_ASSET(2) char gTextureSignWelcome1[] = "__OTR__other_textures/sign_welcome_1"; - -static const ALIGN_ASSET(2) char gTextureSignWoodenBack0[] = "__OTR__other_textures/sign_wooden_back_0"; - -static const ALIGN_ASSET(2) char gTextureSignWoodenBack1[] = "__OTR__other_textures/sign_wooden_back_1"; - -static const ALIGN_ASSET(2) char gTextureWheelSteamEngine[] = "__OTR__other_textures/wheel_steam_engine"; - -static const ALIGN_ASSET(2) char gTextureWheelSteamEngineReal[] = "__OTR__other_textures/wheel_steam_engine_real"; - -static const ALIGN_ASSET(2) char gTexture68272C[] = "__OTR__other_textures/texture_68272C"; - -static const ALIGN_ASSET(2) char gTexture682928[] = "__OTR__other_textures/texture_682928"; - -static const ALIGN_ASSET(2) char gTexture682B24[] = "__OTR__other_textures/texture_682B24"; - -static const ALIGN_ASSET(2) char gTexture682D20[] = "__OTR__other_textures/texture_682D20"; - -static const ALIGN_ASSET(2) char gTexture682F1C[] = "__OTR__other_textures/texture_682F1C"; - -static const ALIGN_ASSET(2) char gTexture683118[] = "__OTR__other_textures/texture_683118"; - -static const ALIGN_ASSET(2) char gTexture683314[] = "__OTR__other_textures/texture_683314"; - -static const ALIGN_ASSET(2) char gTexture6835F0[] = "__OTR__other_textures/texture_6835F0"; - -static const ALIGN_ASSET(2) char gTexture683844[] = "__OTR__other_textures/texture_683844"; - -static const ALIGN_ASSET(2) char gTextureFencePostWooden[] = "__OTR__other_textures/fence_post_wooden"; - -static const ALIGN_ASSET(2) char gTexture6846DC[] = "__OTR__other_textures/texture_6846DC"; - -static const ALIGN_ASSET(2) char gTextureFenceRope[] = "__OTR__other_textures/fence_rope"; - -static const ALIGN_ASSET(2) char gTexture685108[] = "__OTR__other_textures/texture_685108"; - -static const ALIGN_ASSET(2) char gTextureSignWoodRedArrow[] = "__OTR__other_textures/sign_wood_red_arrow"; - -static const ALIGN_ASSET(2) char gTexture685AC0[] = "__OTR__other_textures/texture_685AC0"; - -static const ALIGN_ASSET(2) char gTextureSignGreenArrow[] = "__OTR__other_textures/sign_green_arrow"; - -static const ALIGN_ASSET(2) char gTexture6864E8[] = "__OTR__other_textures/texture_6864E8"; - -static const ALIGN_ASSET(2) char gTexture686CF0[] = "__OTR__other_textures/texture_686CF0"; - -static const ALIGN_ASSET(2) char gTexture6875A8[] = "__OTR__other_textures/texture_6875A8"; - -static const ALIGN_ASSET(2) char gTexture687EE8[] = "__OTR__other_textures/texture_687EE8"; - -static const ALIGN_ASSET(2) char gTexture68876C[] = "__OTR__other_textures/texture_68876C"; - -static const ALIGN_ASSET(2) char gTexture689230[] = "__OTR__other_textures/texture_689230"; - -static const ALIGN_ASSET(2) char gTexture689C00[] = "__OTR__other_textures/texture_689C00"; - -static const ALIGN_ASSET(2) char gTexture68A484[] = "__OTR__other_textures/texture_68A484"; - -static const ALIGN_ASSET(2) char gTexture68AC5C[] = "__OTR__other_textures/texture_68AC5C"; - -static const ALIGN_ASSET(2) char gTexture68B6A4[] = "__OTR__other_textures/texture_68B6A4"; - -static const ALIGN_ASSET(2) char gTexture68BE6C[] = "__OTR__other_textures/texture_68BE6C"; - -static const ALIGN_ASSET(2) char gTexture68C310[] = "__OTR__other_textures/texture_68C310"; - -static const ALIGN_ASSET(2) char gTexture68C620[] = "__OTR__other_textures/texture_68C620"; - -static const ALIGN_ASSET(2) char gTexture68C79C[] = "__OTR__other_textures/texture_68C79C"; - -static const ALIGN_ASSET(2) char gTexture68C944[] = "__OTR__other_textures/texture_68C944"; - -static const ALIGN_ASSET(2) char gTexture68CA94[] = "__OTR__other_textures/texture_68CA94"; - -static const ALIGN_ASSET(2) char gTexture68CC0C[] = "__OTR__other_textures/texture_68CC0C"; - -static const ALIGN_ASSET(2) char gTexture68CDA0[] = "__OTR__other_textures/texture_68CDA0"; - -static const ALIGN_ASSET(2) char gTextureSignYoshi[] = "__OTR__other_textures/sign_yoshi"; - -static const ALIGN_ASSET(2) char gTextureCheckerboardBlueGray[] = "__OTR__other_textures/checkerboard_blue_gray"; - -static const ALIGN_ASSET(2) char gTexture68D834[] = "__OTR__other_textures/texture_68D834"; - -static const ALIGN_ASSET(2) char gTexture68D940[] = "__OTR__other_textures/texture_68D940"; - -static const ALIGN_ASSET(2) char gTexture68DEC0[] = "__OTR__other_textures/texture_68DEC0"; - -static const ALIGN_ASSET(2) char gTexture68E2D0[] = "__OTR__other_textures/texture_68E2D0"; - -static const ALIGN_ASSET(2) char texture_red_shell_0[] = "__OTR__other_textures/texture_red_shell_0"; - -static const ALIGN_ASSET(2) char texture_green_shell_0[] = "__OTR__other_textures/texture_green_shell_0"; - -static const ALIGN_ASSET(2) char texture_green_shell_1[] = "__OTR__other_textures/texture_green_shell_1"; - -static const ALIGN_ASSET(2) char texture_red_shell_1[] = "__OTR__other_textures/texture_red_shell_1"; - -static const ALIGN_ASSET(2) char texture_green_shell_2[] = "__OTR__other_textures/texture_green_shell_2"; - -static const ALIGN_ASSET(2) char texture_red_shell_2[] = "__OTR__other_textures/texture_red_shell_2"; - -static const ALIGN_ASSET(2) char texture_green_shell_3[] = "__OTR__other_textures/texture_green_shell_3"; - -static const ALIGN_ASSET(2) char texture_red_shell_3[] = "__OTR__other_textures/texture_red_shell_3"; - -static const ALIGN_ASSET(2) char texture_red_shell_4[] = "__OTR__other_textures/texture_red_shell_4"; - -static const ALIGN_ASSET(2) char texture_green_shell_4[] = "__OTR__other_textures/texture_green_shell_4"; - -static const ALIGN_ASSET(2) char texture_green_shell_5[] = "__OTR__other_textures/texture_green_shell_5"; - -static const ALIGN_ASSET(2) char texture_red_shell_5[] = "__OTR__other_textures/texture_red_shell_5"; - -static const ALIGN_ASSET(2) char texture_green_shell_6[] = "__OTR__other_textures/texture_green_shell_6"; - -static const ALIGN_ASSET(2) char texture_red_shell_6[] = "__OTR__other_textures/texture_red_shell_6"; - -static const ALIGN_ASSET(2) char texture_green_shell_7[] = "__OTR__other_textures/texture_green_shell_7"; - -static const ALIGN_ASSET(2) char texture_red_shell_7[] = "__OTR__other_textures/texture_red_shell_7"; - -static const ALIGN_ASSET(2) char texture_blue_shell_0[] = "__OTR__other_textures/texture_blue_shell_0"; - -static const ALIGN_ASSET(2) char texture_blue_shell_1[] = "__OTR__other_textures/texture_blue_shell_1"; - -static const ALIGN_ASSET(2) char texture_blue_shell_2[] = "__OTR__other_textures/texture_blue_shell_2"; - -static const ALIGN_ASSET(2) char texture_blue_shell_3[] = "__OTR__other_textures/texture_blue_shell_3"; - -static const ALIGN_ASSET(2) char texture_blue_shell_4[] = "__OTR__other_textures/texture_blue_shell_4"; - -static const ALIGN_ASSET(2) char texture_blue_shell_5[] = "__OTR__other_textures/texture_blue_shell_5"; - -static const ALIGN_ASSET(2) char texture_blue_shell_6[] = "__OTR__other_textures/texture_blue_shell_6"; - -static const ALIGN_ASSET(2) char texture_blue_shell_7[] = "__OTR__other_textures/texture_blue_shell_7"; - -static const ALIGN_ASSET(2) char gTextureQuestionMarkYellow[] = "__OTR__other_textures/question_mark_yellow"; - -static const ALIGN_ASSET(2) char gTextureTrees1[] = "__OTR__other_textures/gTextureTrees1"; - -static const ALIGN_ASSET(2) char gTextureTrees2[] = "__OTR__other_textures/gTextureTrees2"; - -static const ALIGN_ASSET(2) char gTextureTrees3[] = "__OTR__other_textures/gTextureTrees3"; - -static const ALIGN_ASSET(2) char gTextureTrees4Left[] = "__OTR__other_textures/gTextureTrees4Left"; - -static const ALIGN_ASSET(2) char gTextureTrees4Right[] = "__OTR__other_textures/gTextureTrees4Right"; - -static const ALIGN_ASSET(2) char gTextureTrees5Left[] = "__OTR__other_textures/gTextureTrees5Left"; - -static const ALIGN_ASSET(2) char gTextureTrees5Right[] = "__OTR__other_textures/gTextureTrees5Right"; - -static const ALIGN_ASSET(2) char gTextureTrees6[] = "__OTR__other_textures/gTextureTrees6"; - -static const ALIGN_ASSET(2) char gTextureTrees7[] = "__OTR__other_textures/gTextureTrees7"; - -static const ALIGN_ASSET(2) char gTextureShrub[] = "__OTR__other_textures/shrub"; - -static const ALIGN_ASSET(2) char gTextureFrappeSnowlandTreeLeft[] = "__OTR__other_textures/gTextureFrappeSnowlandTreeLeft"; - -static const ALIGN_ASSET(2) char gTextureFrappeSnowlandTreeRight[] = "__OTR__other_textures/gTextureFrappeSnowlandTreeRight"; - -static const ALIGN_ASSET(2) char gTextureCow01Left[] = "__OTR__other_textures/gTextureCow01Left"; - -static const ALIGN_ASSET(2) char gTextureCow01Right[] = "__OTR__other_textures/gTextureCow01Right"; - -static const ALIGN_ASSET(2) char gTextureCow02Left[] = "__OTR__other_textures/gTextureCow02Left"; - -static const ALIGN_ASSET(2) char gTextureCow02Right[] = "__OTR__other_textures/gTextureCow02Right"; - -static const ALIGN_ASSET(2) char gTextureCow03Left[] = "__OTR__other_textures/gTextureCow03Left"; - -static const ALIGN_ASSET(2) char gTextureCow03Right[] = "__OTR__other_textures/gTextureCow03Right"; - -static const ALIGN_ASSET(2) char gTextureCow04Left[] = "__OTR__other_textures/gTextureCow04Left"; - -static const ALIGN_ASSET(2) char gTextureCow04Right[] = "__OTR__other_textures/gTextureCow04Right"; - -static const ALIGN_ASSET(2) char gTextureCow05Left[] = "__OTR__other_textures/gTextureCow05Left"; - -static const ALIGN_ASSET(2) char gTextureCow05Right[] = "__OTR__other_textures/gTextureCow05Right"; - -static const ALIGN_ASSET(2) char gTextureCactus1Left[] = "__OTR__other_textures/gTextureCactus1Left"; - -static const ALIGN_ASSET(2) char gTextureCactus1Right[] = "__OTR__other_textures/gTextureCactus1Right"; - -static const ALIGN_ASSET(2) char gTextureCactus2Left[] = "__OTR__other_textures/gTextureCactus2Left"; - -static const ALIGN_ASSET(2) char gTextureCactus2Right[] = "__OTR__other_textures/gTextureCactus2Right"; - -static const ALIGN_ASSET(2) char gTextureCactus3[] = "__OTR__other_textures/gTextureCactus3"; - -static const ALIGN_ASSET(2) char gTextureFinishLineBanner1[] = "__OTR__other_textures/gTextureFinishLineBanner1"; - -static const ALIGN_ASSET(2) char gTextureFinishLineBanner2[] = "__OTR__other_textures/gTextureFinishLineBanner2"; - -static const ALIGN_ASSET(2) char gTextureFinishLineBanner3[] = "__OTR__other_textures/gTextureFinishLineBanner3"; - -static const ALIGN_ASSET(2) char gTextureFinishLineBanner4[] = "__OTR__other_textures/gTextureFinishLineBanner4"; - -static const ALIGN_ASSET(2) char gTextureFinishLineBanner5[] = "__OTR__other_textures/gTextureFinishLineBanner5"; - -static const ALIGN_ASSET(2) char gTextureFinishLineBanner6[] = "__OTR__other_textures/gTextureFinishLineBanner6"; - -static const ALIGN_ASSET(2) char gTextureFinishLineBanner7[] = "__OTR__other_textures/gTextureFinishLineBanner7"; - -static const ALIGN_ASSET(2) char gTextureFinishLineBanner8[] = "__OTR__other_textures/gTextureFinishLineBanner8"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant1[] = "__OTR__other_textures/gTexturePiranhaPlant1"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant2[] = "__OTR__other_textures/gTexturePiranhaPlant2"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant3[] = "__OTR__other_textures/gTexturePiranhaPlant3"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant4[] = "__OTR__other_textures/gTexturePiranhaPlant4"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant5[] = "__OTR__other_textures/gTexturePiranhaPlant5"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant6[] = "__OTR__other_textures/gTexturePiranhaPlant6"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant7[] = "__OTR__other_textures/gTexturePiranhaPlant7"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant8[] = "__OTR__other_textures/gTexturePiranhaPlant8"; - -static const ALIGN_ASSET(2) char gTexturePiranhaPlant9[] = "__OTR__other_textures/gTexturePiranhaPlant9"; - -static const ALIGN_ASSET(2) char gTexture6997E0[] = "__OTR__other_textures/texture_6997E0"; - -static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit1[] = "__OTR__other_textures/gTextureDksJungleParkwayKiwanoFruit1"; - -static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit2[] = "__OTR__other_textures/gTextureDksJungleParkwayKiwanoFruit2"; - -static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit3[] = "__OTR__other_textures/gTextureDksJungleParkwayKiwanoFruit3"; - -static const ALIGN_ASSET(2) char gTextureKartShadow[] = "__OTR__other_textures/kart_shadow"; - -static const ALIGN_ASSET(2) char gTexture69B03C[] = "__OTR__other_textures/texture_69B03C"; - -static const ALIGN_ASSET(2) char gTexture69B140[] = "__OTR__other_textures/texture_69B140"; - -static const ALIGN_ASSET(2) char gGrassParticle[] = "__OTR__other_textures/gGrassParticle"; - -static const ALIGN_ASSET(2) char gTextureMusicNote[] = "__OTR__other_textures/texture_69B960"; - -static const ALIGN_ASSET(2) char gTextureSpeechBubble[] = "__OTR__other_textures/texture_69BA28"; - -static const ALIGN_ASSET(2) char gTextureBoingExclamation[] = "__OTR__other_textures/boing_exclamation"; - -static const ALIGN_ASSET(2) char gTexture69BE6C[] = "__OTR__other_textures/texture_69BE6C"; - -static const ALIGN_ASSET(2) char gTexture69BF54[] = "__OTR__other_textures/texture_69BF54"; - -static const ALIGN_ASSET(2) char gTexture69C090[] = "__OTR__other_textures/texture_69C090"; - -static const ALIGN_ASSET(2) char gTexture69C1E8[] = "__OTR__other_textures/texture_69C1E8"; - -static const ALIGN_ASSET(2) char gTextureSmokePuff[] = "__OTR__other_textures/texture_69C354"; - -static const ALIGN_ASSET(2) char gGroundDust[] = "__OTR__other_textures/gGroundDust"; - -static const ALIGN_ASSET(2) char gTexture69C80C[] = "__OTR__other_textures/texture_69C80C"; - -static const ALIGN_ASSET(2) char gTexture69C9C4[] = "__OTR__other_textures/texture_69C9C4"; - -static const ALIGN_ASSET(2) char gTexture69CB84[] = "__OTR__other_textures/texture_69CB84"; - -static const ALIGN_ASSET(2) char gTexture69CCEC[] = "__OTR__other_textures/texture_69CCEC"; - -static const ALIGN_ASSET(2) char gTexture69CEB8[] = "__OTR__other_textures/texture_69CEB8"; - -static const ALIGN_ASSET(2) char gTexture69D148[] = "__OTR__other_textures/texture_69D148"; - -static const ALIGN_ASSET(2) char gTexture69D4E0[] = "__OTR__other_textures/texture_69D4E0"; - -static const ALIGN_ASSET(2) char gTexture69D8FC[] = "__OTR__other_textures/texture_69D8FC"; - -static const ALIGN_ASSET(2) char gTexture69DCB4[] = "__OTR__other_textures/texture_69DCB4"; - -static const ALIGN_ASSET(2) char gTexture69DFA0[] = "__OTR__other_textures/texture_69DFA0"; - -static const ALIGN_ASSET(2) char gTexture69E25C[] = "__OTR__other_textures/texture_69E25C"; - -static const ALIGN_ASSET(2) char gTexture69E518[] = "__OTR__other_textures/texture_69E518"; - -static const ALIGN_ASSET(2) char gTexture69E7A8[] = "__OTR__other_textures/texture_69E7A8"; - -static const ALIGN_ASSET(2) char gTexture69EA18[] = "__OTR__other_textures/texture_69EA18"; - -static const ALIGN_ASSET(2) char gTexture69EC54[] = "__OTR__other_textures/texture_69EC54"; - -static const ALIGN_ASSET(2) char gTexture69EE38[] = "__OTR__other_textures/texture_69EE38"; - -static const ALIGN_ASSET(2) char gTexture69EFE0[] = "__OTR__other_textures/texture_69EFE0"; - -static const ALIGN_ASSET(2) char gTextureOnomatopoeiaCrash1[] = "__OTR__other_textures/gTextureOnomatopoeiaCrash1"; - -static const ALIGN_ASSET(2) char gTextureOnomatopoeiaCrash2[] = "__OTR__other_textures/gTextureOnomatopoeiaCrash2"; - -static const ALIGN_ASSET(2) char gTextureOnomatopoeiaWhrrrr1[] = "__OTR__other_textures/gTextureOnomatopoeiaWhrrrr1"; - -static const ALIGN_ASSET(2) char gTextureOnomatopoeiaWhrrrr2[] = "__OTR__other_textures/gTextureOnomatopoeiaWhrrrr2"; - -static const ALIGN_ASSET(2) char gTextureOnomatopoeiaPoomp1[] = "__OTR__other_textures/gTextureOnomatopoeiaPoomp1"; - -static const ALIGN_ASSET(2) char gTextureOnomatopoeiaPoomp2[] = "__OTR__other_textures/gTextureOnomatopoeiaPoomp2"; - -static const ALIGN_ASSET(2) char gTextureBalloon1[] = "__OTR__other_textures/gTextureBalloon1"; - -static const ALIGN_ASSET(2) char gTextureBalloon2[] = "__OTR__other_textures/gTextureBalloon2"; - -static const ALIGN_ASSET(2) char gTextureLightningBolt0[] = "__OTR__other_textures/lightning_zap_0"; - -static const ALIGN_ASSET(2) char gTextureLightningBolt1[] = "__OTR__other_textures/lightning_zap_1"; - -static const ALIGN_ASSET(2) char gTextureLakituNoLights1[] = "__OTR__other_textures/gTextureLakituNoLights1"; - -static const ALIGN_ASSET(2) char gTextureLakituNoLights2[] = "__OTR__other_textures/gTextureLakituNoLights2"; - -static const ALIGN_ASSET(2) char gTextureLakituNoLights3[] = "__OTR__other_textures/gTextureLakituNoLights3"; - -static const ALIGN_ASSET(2) char gTextureLakituNoLights4[] = "__OTR__other_textures/gTextureLakituNoLights4"; - -static const ALIGN_ASSET(2) char gTextureLakituNoLights5[] = "__OTR__other_textures/gTextureLakituNoLights5"; - -static const ALIGN_ASSET(2) char gTextureLakituNoLights6[] = "__OTR__other_textures/gTextureLakituNoLights6"; - -static const ALIGN_ASSET(2) char gTextureLakituNoLights7[] = "__OTR__other_textures/gTextureLakituNoLights7"; - -static const ALIGN_ASSET(2) char gTextureLakituNoLights8[] = "__OTR__other_textures/gTextureLakituNoLights8"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights01[] = "__OTR__other_textures/gTextureLakituRedLights01"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights02[] = "__OTR__other_textures/gTextureLakituRedLights02"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights03[] = "__OTR__other_textures/gTextureLakituRedLights03"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights04[] = "__OTR__other_textures/gTextureLakituRedLights04"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights05[] = "__OTR__other_textures/gTextureLakituRedLights05"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights06[] = "__OTR__other_textures/gTextureLakituRedLights06"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights07[] = "__OTR__other_textures/gTextureLakituRedLights07"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights08[] = "__OTR__other_textures/gTextureLakituRedLights08"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights09[] = "__OTR__other_textures/gTextureLakituRedLights09"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights10[] = "__OTR__other_textures/gTextureLakituRedLights10"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights11[] = "__OTR__other_textures/gTextureLakituRedLights11"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights12[] = "__OTR__other_textures/gTextureLakituRedLights12"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights13[] = "__OTR__other_textures/gTextureLakituRedLights13"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights14[] = "__OTR__other_textures/gTextureLakituRedLights14"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights15[] = "__OTR__other_textures/gTextureLakituRedLights15"; - -static const ALIGN_ASSET(2) char gTextureLakituRedLights16[] = "__OTR__other_textures/gTextureLakituRedLights16"; - -static const ALIGN_ASSET(2) char gTextureLakituBlueLight1[] = "__OTR__other_textures/gTextureLakituBlueLight1"; - -static const ALIGN_ASSET(2) char gTextureLakituBlueLight2[] = "__OTR__other_textures/gTextureLakituBlueLight2"; - -static const ALIGN_ASSET(2) char gTextureLakituBlueLight3[] = "__OTR__other_textures/gTextureLakituBlueLight3"; - -static const ALIGN_ASSET(2) char gTextureLakituBlueLight4[] = "__OTR__other_textures/gTextureLakituBlueLight4"; - -static const ALIGN_ASSET(2) char gTextureLakituBlueLight5[] = "__OTR__other_textures/gTextureLakituBlueLight5"; - -static const ALIGN_ASSET(2) char gTextureLakituBlueLight6[] = "__OTR__other_textures/gTextureLakituBlueLight6"; - -static const ALIGN_ASSET(2) char gTextureLakituBlueLight7[] = "__OTR__other_textures/gTextureLakituBlueLight7"; - -static const ALIGN_ASSET(2) char gTextureLakituBlueLight8[] = "__OTR__other_textures/gTextureLakituBlueLight8"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag01[] = "__OTR__other_textures/gTextureLakituCheckeredFlag01"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag02[] = "__OTR__other_textures/gTextureLakituCheckeredFlag02"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag03[] = "__OTR__other_textures/gTextureLakituCheckeredFlag03"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag04[] = "__OTR__other_textures/gTextureLakituCheckeredFlag04"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag05[] = "__OTR__other_textures/gTextureLakituCheckeredFlag05"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag06[] = "__OTR__other_textures/gTextureLakituCheckeredFlag06"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag07[] = "__OTR__other_textures/gTextureLakituCheckeredFlag07"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag08[] = "__OTR__other_textures/gTextureLakituCheckeredFlag08"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag09[] = "__OTR__other_textures/gTextureLakituCheckeredFlag09"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag10[] = "__OTR__other_textures/gTextureLakituCheckeredFlag10"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag11[] = "__OTR__other_textures/gTextureLakituCheckeredFlag11"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag12[] = "__OTR__other_textures/gTextureLakituCheckeredFlag12"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag13[] = "__OTR__other_textures/gTextureLakituCheckeredFlag13"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag14[] = "__OTR__other_textures/gTextureLakituCheckeredFlag14"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag15[] = "__OTR__other_textures/gTextureLakituCheckeredFlag15"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag16[] = "__OTR__other_textures/gTextureLakituCheckeredFlag16"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag17[] = "__OTR__other_textures/gTextureLakituCheckeredFlag17"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag18[] = "__OTR__other_textures/gTextureLakituCheckeredFlag18"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag19[] = "__OTR__other_textures/gTextureLakituCheckeredFlag19"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag20[] = "__OTR__other_textures/gTextureLakituCheckeredFlag20"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag21[] = "__OTR__other_textures/gTextureLakituCheckeredFlag21"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag22[] = "__OTR__other_textures/gTextureLakituCheckeredFlag22"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag23[] = "__OTR__other_textures/gTextureLakituCheckeredFlag23"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag24[] = "__OTR__other_textures/gTextureLakituCheckeredFlag24"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag25[] = "__OTR__other_textures/gTextureLakituCheckeredFlag25"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag26[] = "__OTR__other_textures/gTextureLakituCheckeredFlag26"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag27[] = "__OTR__other_textures/gTextureLakituCheckeredFlag27"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag28[] = "__OTR__other_textures/gTextureLakituCheckeredFlag28"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag29[] = "__OTR__other_textures/gTextureLakituCheckeredFlag29"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag30[] = "__OTR__other_textures/gTextureLakituCheckeredFlag30"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag31[] = "__OTR__other_textures/gTextureLakituCheckeredFlag31"; - -static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag32[] = "__OTR__other_textures/gTextureLakituCheckeredFlag32"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap01[] = "__OTR__other_textures/gTextureLakituSecondLap01"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap02[] = "__OTR__other_textures/gTextureLakituSecondLap02"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap03[] = "__OTR__other_textures/gTextureLakituSecondLap03"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap04[] = "__OTR__other_textures/gTextureLakituSecondLap04"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap05[] = "__OTR__other_textures/gTextureLakituSecondLap05"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap06[] = "__OTR__other_textures/gTextureLakituSecondLap06"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap07[] = "__OTR__other_textures/gTextureLakituSecondLap07"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap08[] = "__OTR__other_textures/gTextureLakituSecondLap08"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap09[] = "__OTR__other_textures/gTextureLakituSecondLap09"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap10[] = "__OTR__other_textures/gTextureLakituSecondLap10"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap11[] = "__OTR__other_textures/gTextureLakituSecondLap11"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap12[] = "__OTR__other_textures/gTextureLakituSecondLap12"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap13[] = "__OTR__other_textures/gTextureLakituSecondLap13"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap14[] = "__OTR__other_textures/gTextureLakituSecondLap14"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap15[] = "__OTR__other_textures/gTextureLakituSecondLap15"; - -static const ALIGN_ASSET(2) char gTextureLakituSecondLap16[] = "__OTR__other_textures/gTextureLakituSecondLap16"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap01[] = "__OTR__other_textures/gTextureLakituFinalLap01"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap02[] = "__OTR__other_textures/gTextureLakituFinalLap02"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap03[] = "__OTR__other_textures/gTextureLakituFinalLap03"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap04[] = "__OTR__other_textures/gTextureLakituFinalLap04"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap05[] = "__OTR__other_textures/gTextureLakituFinalLap05"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap06[] = "__OTR__other_textures/gTextureLakituFinalLap06"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap07[] = "__OTR__other_textures/gTextureLakituFinalLap07"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap08[] = "__OTR__other_textures/gTextureLakituFinalLap08"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap09[] = "__OTR__other_textures/gTextureLakituFinalLap09"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap10[] = "__OTR__other_textures/gTextureLakituFinalLap10"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap11[] = "__OTR__other_textures/gTextureLakituFinalLap11"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap12[] = "__OTR__other_textures/gTextureLakituFinalLap12"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap13[] = "__OTR__other_textures/gTextureLakituFinalLap13"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap14[] = "__OTR__other_textures/gTextureLakituFinalLap14"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap15[] = "__OTR__other_textures/gTextureLakituFinalLap15"; - -static const ALIGN_ASSET(2) char gTextureLakituFinalLap16[] = "__OTR__other_textures/gTextureLakituFinalLap16"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse01[] = "__OTR__other_textures/gTextureLakituReverse01"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse02[] = "__OTR__other_textures/gTextureLakituReverse02"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse03[] = "__OTR__other_textures/gTextureLakituReverse03"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse04[] = "__OTR__other_textures/gTextureLakituReverse04"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse05[] = "__OTR__other_textures/gTextureLakituReverse05"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse06[] = "__OTR__other_textures/gTextureLakituReverse06"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse07[] = "__OTR__other_textures/gTextureLakituReverse07"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse08[] = "__OTR__other_textures/gTextureLakituReverse08"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse09[] = "__OTR__other_textures/gTextureLakituReverse09"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse10[] = "__OTR__other_textures/gTextureLakituReverse10"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse11[] = "__OTR__other_textures/gTextureLakituReverse11"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse12[] = "__OTR__other_textures/gTextureLakituReverse12"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse13[] = "__OTR__other_textures/gTextureLakituReverse13"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse14[] = "__OTR__other_textures/gTextureLakituReverse14"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse15[] = "__OTR__other_textures/gTextureLakituReverse15"; - -static const ALIGN_ASSET(2) char gTextureLakituReverse16[] = "__OTR__other_textures/gTextureLakituReverse16"; - -static const ALIGN_ASSET(2) char gTextureLakituFishing1[] = "__OTR__other_textures/gTextureLakituFishing1"; - -static const ALIGN_ASSET(2) char gTextureLakituFishing2[] = "__OTR__other_textures/gTextureLakituFishing2"; - -static const ALIGN_ASSET(2) char gTextureLakituFishing3[] = "__OTR__other_textures/gTextureLakituFishing3"; - -static const ALIGN_ASSET(2) char gTextureLakituFishing4[] = "__OTR__other_textures/gTextureLakituFishing4"; - -static const ALIGN_ASSET(2) char gTextureExhaust0[] = "__OTR__other_textures/exhaust_0"; - -static const ALIGN_ASSET(2) char gTextureExhaust1[] = "__OTR__other_textures/exhaust_1"; - -static const ALIGN_ASSET(2) char gTextureExhaust2[] = "__OTR__other_textures/exhaust_2"; - -static const ALIGN_ASSET(2) char gTextureExhaust3[] = "__OTR__other_textures/exhaust_3"; - -static const ALIGN_ASSET(2) char gTextureExhaust4[] = "__OTR__other_textures/exhaust_4"; - -static const ALIGN_ASSET(2) char gTextureExhaust5[] = "__OTR__other_textures/exhaust_5"; - -static const ALIGN_ASSET(2) char logo_mario_kart_64[] = "__OTR__other_textures/logo_mario_kart_64"; - -static const ALIGN_ASSET(2) char minimap_mario_raceway[] = "__OTR__other_textures/minimap_mario_raceway"; - -static const ALIGN_ASSET(2) char minimap_choco_mountain[] = "__OTR__other_textures/minimap_choco_mountain"; - -static const ALIGN_ASSET(2) char minimap_bowsers_castle[] = "__OTR__other_textures/minimap_bowsers_castle"; - -static const ALIGN_ASSET(2) char minimap_banshee_boardwalk[] = "__OTR__other_textures/minimap_banshee_boardwalk"; - -static const ALIGN_ASSET(2) char minimap_yoshi_valley[] = "__OTR__other_textures/minimap_yoshi_valley"; - -static const ALIGN_ASSET(2) char minimap_frappe_snowland[] = "__OTR__other_textures/minimap_frappe_snowland"; - -static const ALIGN_ASSET(2) char minimap_koopa_troopa_beach[] = "__OTR__other_textures/minimap_koopa_troopa_beach"; - -static const ALIGN_ASSET(2) char minimap_royal_raceway[] = "__OTR__other_textures/minimap_royal_raceway"; - -static const ALIGN_ASSET(2) char minimap_luigi_raceway[] = "__OTR__other_textures/minimap_luigi_raceway"; - -static const ALIGN_ASSET(2) char minimap_moo_moo_farm[] = "__OTR__other_textures/minimap_moo_moo_farm"; - -static const ALIGN_ASSET(2) char minimap_toads_turnpike[] = "__OTR__other_textures/minimap_toads_turnpike"; - -static const ALIGN_ASSET(2) char minimap_kalimari_desert[] = "__OTR__other_textures/minimap_kalimari_desert"; - -static const ALIGN_ASSET(2) char minimap_sherbet_land[] = "__OTR__other_textures/minimap_sherbet_land"; - -static const ALIGN_ASSET(2) char minimap_rainbow_road[] = "__OTR__other_textures/minimap_rainbow_road"; - -static const ALIGN_ASSET(2) char minimap_wario_stadium[] = "__OTR__other_textures/minimap_wario_stadium"; - -static const ALIGN_ASSET(2) char minimap_block_fort[] = "__OTR__other_textures/minimap_block_fort"; - -static const ALIGN_ASSET(2) char minimap_skyscraper[] = "__OTR__other_textures/minimap_skyscraper"; - -static const ALIGN_ASSET(2) char minimap_double_deck[] = "__OTR__other_textures/minimap_double_deck"; - -static const ALIGN_ASSET(2) char minimap_dks_jungle_parkway[] = "__OTR__other_textures/minimap_dks_jungle_parkway"; - -static const ALIGN_ASSET(2) char minimap_big_donut[] = "__OTR__other_textures/minimap_big_donut"; - diff --git a/include/assets/peach_kart.h b/include/assets/peach_kart.h deleted file mode 100644 index 03fe79da9..000000000 --- a/include/assets/peach_kart.h +++ /dev/null @@ -1,4120 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gKartPeach000[] = "__OTR__peach_kart/peach_kart_frame000"; - -static const ALIGN_ASSET(2) char gKartPeach001[] = "__OTR__peach_kart/peach_kart_frame001"; - -static const ALIGN_ASSET(2) char gKartPeach002[] = "__OTR__peach_kart/peach_kart_frame002"; - -static const ALIGN_ASSET(2) char gKartPeach003[] = "__OTR__peach_kart/peach_kart_frame003"; - -static const ALIGN_ASSET(2) char gKartPeach004[] = "__OTR__peach_kart/peach_kart_frame004"; - -static const ALIGN_ASSET(2) char gKartPeach005[] = "__OTR__peach_kart/peach_kart_frame005"; - -static const ALIGN_ASSET(2) char gKartPeach006[] = "__OTR__peach_kart/peach_kart_frame006"; - -static const ALIGN_ASSET(2) char gKartPeach007[] = "__OTR__peach_kart/peach_kart_frame007"; - -static const ALIGN_ASSET(2) char gKartPeach008[] = "__OTR__peach_kart/peach_kart_frame008"; - -static const ALIGN_ASSET(2) char gKartPeach009[] = "__OTR__peach_kart/peach_kart_frame009"; - -static const ALIGN_ASSET(2) char gKartPeach010[] = "__OTR__peach_kart/peach_kart_frame010"; - -static const ALIGN_ASSET(2) char gKartPeach011[] = "__OTR__peach_kart/peach_kart_frame011"; - -static const ALIGN_ASSET(2) char gKartPeach012[] = "__OTR__peach_kart/peach_kart_frame012"; - -static const ALIGN_ASSET(2) char gKartPeach013[] = "__OTR__peach_kart/peach_kart_frame013"; - -static const ALIGN_ASSET(2) char gKartPeach014[] = "__OTR__peach_kart/peach_kart_frame014"; - -static const ALIGN_ASSET(2) char gKartPeach015[] = "__OTR__peach_kart/peach_kart_frame015"; - -static const ALIGN_ASSET(2) char gKartPeach016[] = "__OTR__peach_kart/peach_kart_frame016"; - -static const ALIGN_ASSET(2) char gKartPeach017[] = "__OTR__peach_kart/peach_kart_frame017"; - -static const ALIGN_ASSET(2) char gKartPeach018[] = "__OTR__peach_kart/peach_kart_frame018"; - -static const ALIGN_ASSET(2) char gKartPeach019[] = "__OTR__peach_kart/peach_kart_frame019"; - -static const ALIGN_ASSET(2) char gKartPeach020[] = "__OTR__peach_kart/peach_kart_frame020"; - -static const ALIGN_ASSET(2) char gKartPeach021[] = "__OTR__peach_kart/peach_kart_frame021"; - -static const ALIGN_ASSET(2) char gKartPeach022[] = "__OTR__peach_kart/peach_kart_frame022"; - -static const ALIGN_ASSET(2) char gKartPeach023[] = "__OTR__peach_kart/peach_kart_frame023"; - -static const ALIGN_ASSET(2) char gKartPeach024[] = "__OTR__peach_kart/peach_kart_frame024"; - -static const ALIGN_ASSET(2) char gKartPeach025[] = "__OTR__peach_kart/peach_kart_frame025"; - -static const ALIGN_ASSET(2) char gKartPeach026[] = "__OTR__peach_kart/peach_kart_frame026"; - -static const ALIGN_ASSET(2) char gKartPeach027[] = "__OTR__peach_kart/peach_kart_frame027"; - -static const ALIGN_ASSET(2) char gKartPeach028[] = "__OTR__peach_kart/peach_kart_frame028"; - -static const ALIGN_ASSET(2) char gKartPeach029[] = "__OTR__peach_kart/peach_kart_frame029"; - -static const ALIGN_ASSET(2) char gKartPeach030[] = "__OTR__peach_kart/peach_kart_frame030"; - -static const ALIGN_ASSET(2) char gKartPeach031[] = "__OTR__peach_kart/peach_kart_frame031"; - -static const ALIGN_ASSET(2) char gKartPeach032[] = "__OTR__peach_kart/peach_kart_frame032"; - -static const ALIGN_ASSET(2) char gKartPeach033[] = "__OTR__peach_kart/peach_kart_frame033"; - -static const ALIGN_ASSET(2) char gKartPeach034[] = "__OTR__peach_kart/peach_kart_frame034"; - -static const ALIGN_ASSET(2) char gKartPeach035[] = "__OTR__peach_kart/peach_kart_frame035"; - -static const ALIGN_ASSET(2) char gKartPeach036[] = "__OTR__peach_kart/peach_kart_frame036"; - -static const ALIGN_ASSET(2) char gKartPeach037[] = "__OTR__peach_kart/peach_kart_frame037"; - -static const ALIGN_ASSET(2) char gKartPeach038[] = "__OTR__peach_kart/peach_kart_frame038"; - -static const ALIGN_ASSET(2) char gKartPeach039[] = "__OTR__peach_kart/peach_kart_frame039"; - -static const ALIGN_ASSET(2) char gKartPeach040[] = "__OTR__peach_kart/peach_kart_frame040"; - -static const ALIGN_ASSET(2) char gKartPeach041[] = "__OTR__peach_kart/peach_kart_frame041"; - -static const ALIGN_ASSET(2) char gKartPeach042[] = "__OTR__peach_kart/peach_kart_frame042"; - -static const ALIGN_ASSET(2) char gKartPeach043[] = "__OTR__peach_kart/peach_kart_frame043"; - -static const ALIGN_ASSET(2) char gKartPeach044[] = "__OTR__peach_kart/peach_kart_frame044"; - -static const ALIGN_ASSET(2) char gKartPeach045[] = "__OTR__peach_kart/peach_kart_frame045"; - -static const ALIGN_ASSET(2) char gKartPeach046[] = "__OTR__peach_kart/peach_kart_frame046"; - -static const ALIGN_ASSET(2) char gKartPeach047[] = "__OTR__peach_kart/peach_kart_frame047"; - -static const ALIGN_ASSET(2) char gKartPeach048[] = "__OTR__peach_kart/peach_kart_frame048"; - -static const ALIGN_ASSET(2) char gKartPeach049[] = "__OTR__peach_kart/peach_kart_frame049"; - -static const ALIGN_ASSET(2) char gKartPeach050[] = "__OTR__peach_kart/peach_kart_frame050"; - -static const ALIGN_ASSET(2) char gKartPeach051[] = "__OTR__peach_kart/peach_kart_frame051"; - -static const ALIGN_ASSET(2) char gKartPeach052[] = "__OTR__peach_kart/peach_kart_frame052"; - -static const ALIGN_ASSET(2) char gKartPeach053[] = "__OTR__peach_kart/peach_kart_frame053"; - -static const ALIGN_ASSET(2) char gKartPeach054[] = "__OTR__peach_kart/peach_kart_frame054"; - -static const ALIGN_ASSET(2) char gKartPeach055[] = "__OTR__peach_kart/peach_kart_frame055"; - -static const ALIGN_ASSET(2) char gKartPeach056[] = "__OTR__peach_kart/peach_kart_frame056"; - -static const ALIGN_ASSET(2) char gKartPeach057[] = "__OTR__peach_kart/peach_kart_frame057"; - -static const ALIGN_ASSET(2) char gKartPeach058[] = "__OTR__peach_kart/peach_kart_frame058"; - -static const ALIGN_ASSET(2) char gKartPeach059[] = "__OTR__peach_kart/peach_kart_frame059"; - -static const ALIGN_ASSET(2) char gKartPeach060[] = "__OTR__peach_kart/peach_kart_frame060"; - -static const ALIGN_ASSET(2) char gKartPeach061[] = "__OTR__peach_kart/peach_kart_frame061"; - -static const ALIGN_ASSET(2) char gKartPeach062[] = "__OTR__peach_kart/peach_kart_frame062"; - -static const ALIGN_ASSET(2) char gKartPeach063[] = "__OTR__peach_kart/peach_kart_frame063"; - -static const ALIGN_ASSET(2) char gKartPeach064[] = "__OTR__peach_kart/peach_kart_frame064"; - -static const ALIGN_ASSET(2) char gKartPeach065[] = "__OTR__peach_kart/peach_kart_frame065"; - -static const ALIGN_ASSET(2) char gKartPeach066[] = "__OTR__peach_kart/peach_kart_frame066"; - -static const ALIGN_ASSET(2) char gKartPeach067[] = "__OTR__peach_kart/peach_kart_frame067"; - -static const ALIGN_ASSET(2) char gKartPeach068[] = "__OTR__peach_kart/peach_kart_frame068"; - -static const ALIGN_ASSET(2) char gKartPeach069[] = "__OTR__peach_kart/peach_kart_frame069"; - -static const ALIGN_ASSET(2) char gKartPeach070[] = "__OTR__peach_kart/peach_kart_frame070"; - -static const ALIGN_ASSET(2) char gKartPeach071[] = "__OTR__peach_kart/peach_kart_frame071"; - -static const ALIGN_ASSET(2) char gKartPeach072[] = "__OTR__peach_kart/peach_kart_frame072"; - -static const ALIGN_ASSET(2) char gKartPeach073[] = "__OTR__peach_kart/peach_kart_frame073"; - -static const ALIGN_ASSET(2) char gKartPeach074[] = "__OTR__peach_kart/peach_kart_frame074"; - -static const ALIGN_ASSET(2) char gKartPeach075[] = "__OTR__peach_kart/peach_kart_frame075"; - -static const ALIGN_ASSET(2) char gKartPeach076[] = "__OTR__peach_kart/peach_kart_frame076"; - -static const ALIGN_ASSET(2) char gKartPeach077[] = "__OTR__peach_kart/peach_kart_frame077"; - -static const ALIGN_ASSET(2) char gKartPeach078[] = "__OTR__peach_kart/peach_kart_frame078"; - -static const ALIGN_ASSET(2) char gKartPeach079[] = "__OTR__peach_kart/peach_kart_frame079"; - -static const ALIGN_ASSET(2) char gKartPeach080[] = "__OTR__peach_kart/peach_kart_frame080"; - -static const ALIGN_ASSET(2) char gKartPeach081[] = "__OTR__peach_kart/peach_kart_frame081"; - -static const ALIGN_ASSET(2) char gKartPeach082[] = "__OTR__peach_kart/peach_kart_frame082"; - -static const ALIGN_ASSET(2) char gKartPeach083[] = "__OTR__peach_kart/peach_kart_frame083"; - -static const ALIGN_ASSET(2) char gKartPeach084[] = "__OTR__peach_kart/peach_kart_frame084"; - -static const ALIGN_ASSET(2) char gKartPeach085[] = "__OTR__peach_kart/peach_kart_frame085"; - -static const ALIGN_ASSET(2) char gKartPeach086[] = "__OTR__peach_kart/peach_kart_frame086"; - -static const ALIGN_ASSET(2) char gKartPeach087[] = "__OTR__peach_kart/peach_kart_frame087"; - -static const ALIGN_ASSET(2) char gKartPeach088[] = "__OTR__peach_kart/peach_kart_frame088"; - -static const ALIGN_ASSET(2) char gKartPeach089[] = "__OTR__peach_kart/peach_kart_frame089"; - -static const ALIGN_ASSET(2) char gKartPeach090[] = "__OTR__peach_kart/peach_kart_frame090"; - -static const ALIGN_ASSET(2) char gKartPeach091[] = "__OTR__peach_kart/peach_kart_frame091"; - -static const ALIGN_ASSET(2) char gKartPeach092[] = "__OTR__peach_kart/peach_kart_frame092"; - -static const ALIGN_ASSET(2) char gKartPeach093[] = "__OTR__peach_kart/peach_kart_frame093"; - -static const ALIGN_ASSET(2) char gKartPeach094[] = "__OTR__peach_kart/peach_kart_frame094"; - -static const ALIGN_ASSET(2) char gKartPeach095[] = "__OTR__peach_kart/peach_kart_frame095"; - -static const ALIGN_ASSET(2) char gKartPeach096[] = "__OTR__peach_kart/peach_kart_frame096"; - -static const ALIGN_ASSET(2) char gKartPeach097[] = "__OTR__peach_kart/peach_kart_frame097"; - -static const ALIGN_ASSET(2) char gKartPeach098[] = "__OTR__peach_kart/peach_kart_frame098"; - -static const ALIGN_ASSET(2) char gKartPeach099[] = "__OTR__peach_kart/peach_kart_frame099"; - -static const ALIGN_ASSET(2) char gKartPeach100[] = "__OTR__peach_kart/peach_kart_frame100"; - -static const ALIGN_ASSET(2) char gKartPeach101[] = "__OTR__peach_kart/peach_kart_frame101"; - -static const ALIGN_ASSET(2) char gKartPeach102[] = "__OTR__peach_kart/peach_kart_frame102"; - -static const ALIGN_ASSET(2) char gKartPeach103[] = "__OTR__peach_kart/peach_kart_frame103"; - -static const ALIGN_ASSET(2) char gKartPeach104[] = "__OTR__peach_kart/peach_kart_frame104"; - -static const ALIGN_ASSET(2) char gKartPeach105[] = "__OTR__peach_kart/peach_kart_frame105"; - -static const ALIGN_ASSET(2) char gKartPeach106[] = "__OTR__peach_kart/peach_kart_frame106"; - -static const ALIGN_ASSET(2) char gKartPeach107[] = "__OTR__peach_kart/peach_kart_frame107"; - -static const ALIGN_ASSET(2) char gKartPeach108[] = "__OTR__peach_kart/peach_kart_frame108"; - -static const ALIGN_ASSET(2) char gKartPeach109[] = "__OTR__peach_kart/peach_kart_frame109"; - -static const ALIGN_ASSET(2) char gKartPeach110[] = "__OTR__peach_kart/peach_kart_frame110"; - -static const ALIGN_ASSET(2) char gKartPeach111[] = "__OTR__peach_kart/peach_kart_frame111"; - -static const ALIGN_ASSET(2) char gKartPeach112[] = "__OTR__peach_kart/peach_kart_frame112"; - -static const ALIGN_ASSET(2) char gKartPeach113[] = "__OTR__peach_kart/peach_kart_frame113"; - -static const ALIGN_ASSET(2) char gKartPeach114[] = "__OTR__peach_kart/peach_kart_frame114"; - -static const ALIGN_ASSET(2) char gKartPeach115[] = "__OTR__peach_kart/peach_kart_frame115"; - -static const ALIGN_ASSET(2) char gKartPeach116[] = "__OTR__peach_kart/peach_kart_frame116"; - -static const ALIGN_ASSET(2) char gKartPeach117[] = "__OTR__peach_kart/peach_kart_frame117"; - -static const ALIGN_ASSET(2) char gKartPeach118[] = "__OTR__peach_kart/peach_kart_frame118"; - -static const ALIGN_ASSET(2) char gKartPeach119[] = "__OTR__peach_kart/peach_kart_frame119"; - -static const ALIGN_ASSET(2) char gKartPeach120[] = "__OTR__peach_kart/peach_kart_frame120"; - -static const ALIGN_ASSET(2) char gKartPeach121[] = "__OTR__peach_kart/peach_kart_frame121"; - -static const ALIGN_ASSET(2) char gKartPeach122[] = "__OTR__peach_kart/peach_kart_frame122"; - -static const ALIGN_ASSET(2) char gKartPeach123[] = "__OTR__peach_kart/peach_kart_frame123"; - -static const ALIGN_ASSET(2) char gKartPeach124[] = "__OTR__peach_kart/peach_kart_frame124"; - -static const ALIGN_ASSET(2) char gKartPeach125[] = "__OTR__peach_kart/peach_kart_frame125"; - -static const ALIGN_ASSET(2) char gKartPeach126[] = "__OTR__peach_kart/peach_kart_frame126"; - -static const ALIGN_ASSET(2) char gKartPeach127[] = "__OTR__peach_kart/peach_kart_frame127"; - -static const ALIGN_ASSET(2) char gKartPeach128[] = "__OTR__peach_kart/peach_kart_frame128"; - -static const ALIGN_ASSET(2) char gKartPeach129[] = "__OTR__peach_kart/peach_kart_frame129"; - -static const ALIGN_ASSET(2) char gKartPeach130[] = "__OTR__peach_kart/peach_kart_frame130"; - -static const ALIGN_ASSET(2) char gKartPeach131[] = "__OTR__peach_kart/peach_kart_frame131"; - -static const ALIGN_ASSET(2) char gKartPeach132[] = "__OTR__peach_kart/peach_kart_frame132"; - -static const ALIGN_ASSET(2) char gKartPeach133[] = "__OTR__peach_kart/peach_kart_frame133"; - -static const ALIGN_ASSET(2) char gKartPeach134[] = "__OTR__peach_kart/peach_kart_frame134"; - -static const ALIGN_ASSET(2) char gKartPeach135[] = "__OTR__peach_kart/peach_kart_frame135"; - -static const ALIGN_ASSET(2) char gKartPeach136[] = "__OTR__peach_kart/peach_kart_frame136"; - -static const ALIGN_ASSET(2) char gKartPeach137[] = "__OTR__peach_kart/peach_kart_frame137"; - -static const ALIGN_ASSET(2) char gKartPeach138[] = "__OTR__peach_kart/peach_kart_frame138"; - -static const ALIGN_ASSET(2) char gKartPeach139[] = "__OTR__peach_kart/peach_kart_frame139"; - -static const ALIGN_ASSET(2) char gKartPeach140[] = "__OTR__peach_kart/peach_kart_frame140"; - -static const ALIGN_ASSET(2) char gKartPeach141[] = "__OTR__peach_kart/peach_kart_frame141"; - -static const ALIGN_ASSET(2) char gKartPeach142[] = "__OTR__peach_kart/peach_kart_frame142"; - -static const ALIGN_ASSET(2) char gKartPeach143[] = "__OTR__peach_kart/peach_kart_frame143"; - -static const ALIGN_ASSET(2) char gKartPeach144[] = "__OTR__peach_kart/peach_kart_frame144"; - -static const ALIGN_ASSET(2) char gKartPeach145[] = "__OTR__peach_kart/peach_kart_frame145"; - -static const ALIGN_ASSET(2) char gKartPeach146[] = "__OTR__peach_kart/peach_kart_frame146"; - -static const ALIGN_ASSET(2) char gKartPeach147[] = "__OTR__peach_kart/peach_kart_frame147"; - -static const ALIGN_ASSET(2) char gKartPeach148[] = "__OTR__peach_kart/peach_kart_frame148"; - -static const ALIGN_ASSET(2) char gKartPeach149[] = "__OTR__peach_kart/peach_kart_frame149"; - -static const ALIGN_ASSET(2) char gKartPeach150[] = "__OTR__peach_kart/peach_kart_frame150"; - -static const ALIGN_ASSET(2) char gKartPeach151[] = "__OTR__peach_kart/peach_kart_frame151"; - -static const ALIGN_ASSET(2) char gKartPeach152[] = "__OTR__peach_kart/peach_kart_frame152"; - -static const ALIGN_ASSET(2) char gKartPeach153[] = "__OTR__peach_kart/peach_kart_frame153"; - -static const ALIGN_ASSET(2) char gKartPeach154[] = "__OTR__peach_kart/peach_kart_frame154"; - -static const ALIGN_ASSET(2) char gKartPeach155[] = "__OTR__peach_kart/peach_kart_frame155"; - -static const ALIGN_ASSET(2) char gKartPeach156[] = "__OTR__peach_kart/peach_kart_frame156"; - -static const ALIGN_ASSET(2) char gKartPeach157[] = "__OTR__peach_kart/peach_kart_frame157"; - -static const ALIGN_ASSET(2) char gKartPeach158[] = "__OTR__peach_kart/peach_kart_frame158"; - -static const ALIGN_ASSET(2) char gKartPeach159[] = "__OTR__peach_kart/peach_kart_frame159"; - -static const ALIGN_ASSET(2) char gKartPeach160[] = "__OTR__peach_kart/peach_kart_frame160"; - -static const ALIGN_ASSET(2) char gKartPeach161[] = "__OTR__peach_kart/peach_kart_frame161"; - -static const ALIGN_ASSET(2) char gKartPeach162[] = "__OTR__peach_kart/peach_kart_frame162"; - -static const ALIGN_ASSET(2) char gKartPeach163[] = "__OTR__peach_kart/peach_kart_frame163"; - -static const ALIGN_ASSET(2) char gKartPeach164[] = "__OTR__peach_kart/peach_kart_frame164"; - -static const ALIGN_ASSET(2) char gKartPeach165[] = "__OTR__peach_kart/peach_kart_frame165"; - -static const ALIGN_ASSET(2) char gKartPeach166[] = "__OTR__peach_kart/peach_kart_frame166"; - -static const ALIGN_ASSET(2) char gKartPeach167[] = "__OTR__peach_kart/peach_kart_frame167"; - -static const ALIGN_ASSET(2) char gKartPeach168[] = "__OTR__peach_kart/peach_kart_frame168"; - -static const ALIGN_ASSET(2) char gKartPeach169[] = "__OTR__peach_kart/peach_kart_frame169"; - -static const ALIGN_ASSET(2) char gKartPeach170[] = "__OTR__peach_kart/peach_kart_frame170"; - -static const ALIGN_ASSET(2) char gKartPeach171[] = "__OTR__peach_kart/peach_kart_frame171"; - -static const ALIGN_ASSET(2) char gKartPeach172[] = "__OTR__peach_kart/peach_kart_frame172"; - -static const ALIGN_ASSET(2) char gKartPeach173[] = "__OTR__peach_kart/peach_kart_frame173"; - -static const ALIGN_ASSET(2) char gKartPeach174[] = "__OTR__peach_kart/peach_kart_frame174"; - -static const ALIGN_ASSET(2) char gKartPeach175[] = "__OTR__peach_kart/peach_kart_frame175"; - -static const ALIGN_ASSET(2) char gKartPeach176[] = "__OTR__peach_kart/peach_kart_frame176"; - -static const ALIGN_ASSET(2) char gKartPeach177[] = "__OTR__peach_kart/peach_kart_frame177"; - -static const ALIGN_ASSET(2) char gKartPeach178[] = "__OTR__peach_kart/peach_kart_frame178"; - -static const ALIGN_ASSET(2) char gKartPeach179[] = "__OTR__peach_kart/peach_kart_frame179"; - -static const ALIGN_ASSET(2) char gKartPeach180[] = "__OTR__peach_kart/peach_kart_frame180"; - -static const ALIGN_ASSET(2) char gKartPeach181[] = "__OTR__peach_kart/peach_kart_frame181"; - -static const ALIGN_ASSET(2) char gKartPeach182[] = "__OTR__peach_kart/peach_kart_frame182"; - -static const ALIGN_ASSET(2) char gKartPeach183[] = "__OTR__peach_kart/peach_kart_frame183"; - -static const ALIGN_ASSET(2) char gKartPeach184[] = "__OTR__peach_kart/peach_kart_frame184"; - -static const ALIGN_ASSET(2) char gKartPeach185[] = "__OTR__peach_kart/peach_kart_frame185"; - -static const ALIGN_ASSET(2) char gKartPeach186[] = "__OTR__peach_kart/peach_kart_frame186"; - -static const ALIGN_ASSET(2) char gKartPeach187[] = "__OTR__peach_kart/peach_kart_frame187"; - -static const ALIGN_ASSET(2) char gKartPeach188[] = "__OTR__peach_kart/peach_kart_frame188"; - -static const ALIGN_ASSET(2) char gKartPeach189[] = "__OTR__peach_kart/peach_kart_frame189"; - -static const ALIGN_ASSET(2) char gKartPeach190[] = "__OTR__peach_kart/peach_kart_frame190"; - -static const ALIGN_ASSET(2) char gKartPeach191[] = "__OTR__peach_kart/peach_kart_frame191"; - -static const ALIGN_ASSET(2) char gKartPeach192[] = "__OTR__peach_kart/peach_kart_frame192"; - -static const ALIGN_ASSET(2) char gKartPeach193[] = "__OTR__peach_kart/peach_kart_frame193"; - -static const ALIGN_ASSET(2) char gKartPeach194[] = "__OTR__peach_kart/peach_kart_frame194"; - -static const ALIGN_ASSET(2) char gKartPeach195[] = "__OTR__peach_kart/peach_kart_frame195"; - -static const ALIGN_ASSET(2) char gKartPeach196[] = "__OTR__peach_kart/peach_kart_frame196"; - -static const ALIGN_ASSET(2) char gKartPeach197[] = "__OTR__peach_kart/peach_kart_frame197"; - -static const ALIGN_ASSET(2) char gKartPeach198[] = "__OTR__peach_kart/peach_kart_frame198"; - -static const ALIGN_ASSET(2) char gKartPeach199[] = "__OTR__peach_kart/peach_kart_frame199"; - -static const ALIGN_ASSET(2) char gKartPeach200[] = "__OTR__peach_kart/peach_kart_frame200"; - -static const ALIGN_ASSET(2) char gKartPeach201[] = "__OTR__peach_kart/peach_kart_frame201"; - -static const ALIGN_ASSET(2) char gKartPeach202[] = "__OTR__peach_kart/peach_kart_frame202"; - -static const ALIGN_ASSET(2) char gKartPeach203[] = "__OTR__peach_kart/peach_kart_frame203"; - -static const ALIGN_ASSET(2) char gKartPeach204[] = "__OTR__peach_kart/peach_kart_frame204"; - -static const ALIGN_ASSET(2) char gKartPeach205[] = "__OTR__peach_kart/peach_kart_frame205"; - -static const ALIGN_ASSET(2) char gKartPeach206[] = "__OTR__peach_kart/peach_kart_frame206"; - -static const ALIGN_ASSET(2) char gKartPeach207[] = "__OTR__peach_kart/peach_kart_frame207"; - -static const ALIGN_ASSET(2) char gKartPeach208[] = "__OTR__peach_kart/peach_kart_frame208"; - -static const ALIGN_ASSET(2) char gKartPeach209[] = "__OTR__peach_kart/peach_kart_frame209"; - -static const ALIGN_ASSET(2) char gKartPeach210[] = "__OTR__peach_kart/peach_kart_frame210"; - -static const ALIGN_ASSET(2) char gKartPeach211[] = "__OTR__peach_kart/peach_kart_frame211"; - -static const ALIGN_ASSET(2) char gKartPeach212[] = "__OTR__peach_kart/peach_kart_frame212"; - -static const ALIGN_ASSET(2) char gKartPeach213[] = "__OTR__peach_kart/peach_kart_frame213"; - -static const ALIGN_ASSET(2) char gKartPeach214[] = "__OTR__peach_kart/peach_kart_frame214"; - -static const ALIGN_ASSET(2) char gKartPeach215[] = "__OTR__peach_kart/peach_kart_frame215"; - -static const ALIGN_ASSET(2) char gKartPeach216[] = "__OTR__peach_kart/peach_kart_frame216"; - -static const ALIGN_ASSET(2) char gKartPeach217[] = "__OTR__peach_kart/peach_kart_frame217"; - -static const ALIGN_ASSET(2) char gKartPeach218[] = "__OTR__peach_kart/peach_kart_frame218"; - -static const ALIGN_ASSET(2) char gKartPeach219[] = "__OTR__peach_kart/peach_kart_frame219"; - -static const ALIGN_ASSET(2) char gKartPeach220[] = "__OTR__peach_kart/peach_kart_frame220"; - -static const ALIGN_ASSET(2) char gKartPeach221[] = "__OTR__peach_kart/peach_kart_frame221"; - -static const ALIGN_ASSET(2) char gKartPeach222[] = "__OTR__peach_kart/peach_kart_frame222"; - -static const ALIGN_ASSET(2) char gKartPeach223[] = "__OTR__peach_kart/peach_kart_frame223"; - -static const ALIGN_ASSET(2) char gKartPeach224[] = "__OTR__peach_kart/peach_kart_frame224"; - -static const ALIGN_ASSET(2) char gKartPeach225[] = "__OTR__peach_kart/peach_kart_frame225"; - -static const ALIGN_ASSET(2) char gKartPeach226[] = "__OTR__peach_kart/peach_kart_frame226"; - -static const ALIGN_ASSET(2) char gKartPeach227[] = "__OTR__peach_kart/peach_kart_frame227"; - -static const ALIGN_ASSET(2) char gKartPeach228[] = "__OTR__peach_kart/peach_kart_frame228"; - -static const ALIGN_ASSET(2) char gKartPeach229[] = "__OTR__peach_kart/peach_kart_frame229"; - -static const ALIGN_ASSET(2) char gKartPeach230[] = "__OTR__peach_kart/peach_kart_frame230"; - -static const ALIGN_ASSET(2) char gKartPeach231[] = "__OTR__peach_kart/peach_kart_frame231"; - -static const ALIGN_ASSET(2) char gKartPeach232[] = "__OTR__peach_kart/peach_kart_frame232"; - -static const ALIGN_ASSET(2) char gKartPeach233[] = "__OTR__peach_kart/peach_kart_frame233"; - -static const ALIGN_ASSET(2) char gKartPeach234[] = "__OTR__peach_kart/peach_kart_frame234"; - -static const ALIGN_ASSET(2) char gKartPeach235[] = "__OTR__peach_kart/peach_kart_frame235"; - -static const ALIGN_ASSET(2) char gKartPeach236[] = "__OTR__peach_kart/peach_kart_frame236"; - -static const ALIGN_ASSET(2) char gKartPeach237[] = "__OTR__peach_kart/peach_kart_frame237"; - -static const ALIGN_ASSET(2) char gKartPeach238[] = "__OTR__peach_kart/peach_kart_frame238"; - -static const ALIGN_ASSET(2) char gKartPeach239[] = "__OTR__peach_kart/peach_kart_frame239"; - -static const ALIGN_ASSET(2) char gKartPeach240[] = "__OTR__peach_kart/peach_kart_frame240"; - -static const ALIGN_ASSET(2) char gKartPeach241[] = "__OTR__peach_kart/peach_kart_frame241"; - -static const ALIGN_ASSET(2) char gKartPeach242[] = "__OTR__peach_kart/peach_kart_frame242"; - -static const ALIGN_ASSET(2) char gKartPeach243[] = "__OTR__peach_kart/peach_kart_frame243"; - -static const ALIGN_ASSET(2) char gKartPeach244[] = "__OTR__peach_kart/peach_kart_frame244"; - -static const ALIGN_ASSET(2) char gKartPeach245[] = "__OTR__peach_kart/peach_kart_frame245"; - -static const ALIGN_ASSET(2) char gKartPeach246[] = "__OTR__peach_kart/peach_kart_frame246"; - -static const ALIGN_ASSET(2) char gKartPeach247[] = "__OTR__peach_kart/peach_kart_frame247"; - -static const ALIGN_ASSET(2) char gKartPeach248[] = "__OTR__peach_kart/peach_kart_frame248"; - -static const ALIGN_ASSET(2) char gKartPeach249[] = "__OTR__peach_kart/peach_kart_frame249"; - -static const ALIGN_ASSET(2) char gKartPeach250[] = "__OTR__peach_kart/peach_kart_frame250"; - -static const ALIGN_ASSET(2) char gKartPeach251[] = "__OTR__peach_kart/peach_kart_frame251"; - -static const ALIGN_ASSET(2) char gKartPeach252[] = "__OTR__peach_kart/peach_kart_frame252"; - -static const ALIGN_ASSET(2) char gKartPeach253[] = "__OTR__peach_kart/peach_kart_frame253"; - -static const ALIGN_ASSET(2) char gKartPeach254[] = "__OTR__peach_kart/peach_kart_frame254"; - -static const ALIGN_ASSET(2) char gKartPeach255[] = "__OTR__peach_kart/peach_kart_frame255"; - -static const ALIGN_ASSET(2) char gKartPeach256[] = "__OTR__peach_kart/peach_kart_frame256"; - -static const ALIGN_ASSET(2) char gKartPeach257[] = "__OTR__peach_kart/peach_kart_frame257"; - -static const ALIGN_ASSET(2) char gKartPeach258[] = "__OTR__peach_kart/peach_kart_frame258"; - -static const ALIGN_ASSET(2) char gKartPeach259[] = "__OTR__peach_kart/peach_kart_frame259"; - -static const ALIGN_ASSET(2) char gKartPeach260[] = "__OTR__peach_kart/peach_kart_frame260"; - -static const ALIGN_ASSET(2) char gKartPeach261[] = "__OTR__peach_kart/peach_kart_frame261"; - -static const ALIGN_ASSET(2) char gKartPeach262[] = "__OTR__peach_kart/peach_kart_frame262"; - -static const ALIGN_ASSET(2) char gKartPeach263[] = "__OTR__peach_kart/peach_kart_frame263"; - -static const ALIGN_ASSET(2) char gKartPeach264[] = "__OTR__peach_kart/peach_kart_frame264"; - -static const ALIGN_ASSET(2) char gKartPeach265[] = "__OTR__peach_kart/peach_kart_frame265"; - -static const ALIGN_ASSET(2) char gKartPeach266[] = "__OTR__peach_kart/peach_kart_frame266"; - -static const ALIGN_ASSET(2) char gKartPeach267[] = "__OTR__peach_kart/peach_kart_frame267"; - -static const ALIGN_ASSET(2) char gKartPeach268[] = "__OTR__peach_kart/peach_kart_frame268"; - -static const ALIGN_ASSET(2) char gKartPeach269[] = "__OTR__peach_kart/peach_kart_frame269"; - -static const ALIGN_ASSET(2) char gKartPeach270[] = "__OTR__peach_kart/peach_kart_frame270"; - -static const ALIGN_ASSET(2) char gKartPeach271[] = "__OTR__peach_kart/peach_kart_frame271"; - -static const ALIGN_ASSET(2) char gKartPeach272[] = "__OTR__peach_kart/peach_kart_frame272"; - -static const ALIGN_ASSET(2) char gKartPeach273[] = "__OTR__peach_kart/peach_kart_frame273"; - -static const ALIGN_ASSET(2) char gKartPeach274[] = "__OTR__peach_kart/peach_kart_frame274"; - -static const ALIGN_ASSET(2) char gKartPeach275[] = "__OTR__peach_kart/peach_kart_frame275"; - -static const ALIGN_ASSET(2) char gKartPeach276[] = "__OTR__peach_kart/peach_kart_frame276"; - -static const ALIGN_ASSET(2) char gKartPeach277[] = "__OTR__peach_kart/peach_kart_frame277"; - -static const ALIGN_ASSET(2) char gKartPeach278[] = "__OTR__peach_kart/peach_kart_frame278"; - -static const ALIGN_ASSET(2) char gKartPeach279[] = "__OTR__peach_kart/peach_kart_frame279"; - -static const ALIGN_ASSET(2) char gKartPeach280[] = "__OTR__peach_kart/peach_kart_frame280"; - -static const ALIGN_ASSET(2) char gKartPeach281[] = "__OTR__peach_kart/peach_kart_frame281"; - -static const ALIGN_ASSET(2) char gKartPeach282[] = "__OTR__peach_kart/peach_kart_frame282"; - -static const ALIGN_ASSET(2) char gKartPeach283[] = "__OTR__peach_kart/peach_kart_frame283"; - -static const ALIGN_ASSET(2) char gKartPeach284[] = "__OTR__peach_kart/peach_kart_frame284"; - -static const ALIGN_ASSET(2) char gKartPeach285[] = "__OTR__peach_kart/peach_kart_frame285"; - -static const ALIGN_ASSET(2) char gKartPeach286[] = "__OTR__peach_kart/peach_kart_frame286"; - -static const ALIGN_ASSET(2) char gKartPeach287[] = "__OTR__peach_kart/peach_kart_frame287"; - -static const ALIGN_ASSET(2) char gKartPeach288[] = "__OTR__peach_kart/peach_kart_frame288"; - -static const ALIGN_ASSET(2) char gKartPeach289[] = "__OTR__peach_kart/peach_kart_frame289"; - -static const ALIGN_ASSET(2) char gKartPeach290[] = "__OTR__peach_kart/peach_kart_frame290"; - -static const ALIGN_ASSET(2) char gKartPeach291[] = "__OTR__peach_kart/peach_kart_frame291"; - -static const ALIGN_ASSET(2) char gKartPeach292[] = "__OTR__peach_kart/peach_kart_frame292"; - -static const ALIGN_ASSET(2) char gKartPeach293[] = "__OTR__peach_kart/peach_kart_frame293"; - -static const ALIGN_ASSET(2) char gKartPeach294[] = "__OTR__peach_kart/peach_kart_frame294"; - -static const ALIGN_ASSET(2) char gKartPeach295[] = "__OTR__peach_kart/peach_kart_frame295"; - -static const ALIGN_ASSET(2) char gKartPeach296[] = "__OTR__peach_kart/peach_kart_frame296"; - -static const ALIGN_ASSET(2) char gKartPeach297[] = "__OTR__peach_kart/peach_kart_frame297"; - -static const ALIGN_ASSET(2) char gKartPeach298[] = "__OTR__peach_kart/peach_kart_frame298"; - -static const ALIGN_ASSET(2) char gKartPeach299[] = "__OTR__peach_kart/peach_kart_frame299"; - -static const ALIGN_ASSET(2) char gKartPeach300[] = "__OTR__peach_kart/peach_kart_frame300"; - -static const ALIGN_ASSET(2) char gKartPeach301[] = "__OTR__peach_kart/peach_kart_frame301"; - -static const ALIGN_ASSET(2) char gKartPeach302[] = "__OTR__peach_kart/peach_kart_frame302"; - -static const ALIGN_ASSET(2) char gKartPeach303[] = "__OTR__peach_kart/peach_kart_frame303"; - -static const ALIGN_ASSET(2) char gKartPeach304[] = "__OTR__peach_kart/peach_kart_frame304"; - -static const ALIGN_ASSET(2) char gKartPeach305[] = "__OTR__peach_kart/peach_kart_frame305"; - -static const ALIGN_ASSET(2) char gKartPeach306[] = "__OTR__peach_kart/peach_kart_frame306"; - -static const ALIGN_ASSET(2) char gKartPeach307[] = "__OTR__peach_kart/peach_kart_frame307"; - -static const ALIGN_ASSET(2) char gKartPeach308[] = "__OTR__peach_kart/peach_kart_frame308"; - -static const ALIGN_ASSET(2) char gKartPeach309[] = "__OTR__peach_kart/peach_kart_frame309"; - -static const ALIGN_ASSET(2) char gKartPeach310[] = "__OTR__peach_kart/peach_kart_frame310"; - -static const ALIGN_ASSET(2) char gKartPeach311[] = "__OTR__peach_kart/peach_kart_frame311"; - -static const ALIGN_ASSET(2) char gKartPeach312[] = "__OTR__peach_kart/peach_kart_frame312"; - -static const ALIGN_ASSET(2) char gKartPeach313[] = "__OTR__peach_kart/peach_kart_frame313"; - -static const ALIGN_ASSET(2) char gKartPeach314[] = "__OTR__peach_kart/peach_kart_frame314"; - -static const ALIGN_ASSET(2) char gKartPeach315[] = "__OTR__peach_kart/peach_kart_frame315"; - -static const ALIGN_ASSET(2) char gKartPeach316[] = "__OTR__peach_kart/peach_kart_frame316"; - -static const ALIGN_ASSET(2) char gKartPeach317[] = "__OTR__peach_kart/peach_kart_frame317"; - -static const ALIGN_ASSET(2) char gKartPeach318[] = "__OTR__peach_kart/peach_kart_frame318"; - -static const ALIGN_ASSET(2) char gKartPeach319[] = "__OTR__peach_kart/peach_kart_frame319"; - -static const ALIGN_ASSET(2) char gKartPeach320[] = "__OTR__peach_kart/peach_kart_frame320"; - -static const ALIGN_ASSET(2) char gKartPeach000Wheel0[] = "__OTR__peach_kart/kart_000_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach000Wheel1[] = "__OTR__peach_kart/kart_000_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach000Wheel2[] = "__OTR__peach_kart/kart_000_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach000Wheel3[] = "__OTR__peach_kart/kart_000_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach001Wheel0[] = "__OTR__peach_kart/kart_001_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach001Wheel1[] = "__OTR__peach_kart/kart_001_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach001Wheel2[] = "__OTR__peach_kart/kart_001_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach001Wheel3[] = "__OTR__peach_kart/kart_001_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach002Wheel0[] = "__OTR__peach_kart/kart_002_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach002Wheel1[] = "__OTR__peach_kart/kart_002_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach002Wheel2[] = "__OTR__peach_kart/kart_002_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach002Wheel3[] = "__OTR__peach_kart/kart_002_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach003Wheel0[] = "__OTR__peach_kart/kart_003_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach003Wheel1[] = "__OTR__peach_kart/kart_003_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach003Wheel2[] = "__OTR__peach_kart/kart_003_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach003Wheel3[] = "__OTR__peach_kart/kart_003_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach004Wheel0[] = "__OTR__peach_kart/kart_004_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach004Wheel1[] = "__OTR__peach_kart/kart_004_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach004Wheel2[] = "__OTR__peach_kart/kart_004_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach004Wheel3[] = "__OTR__peach_kart/kart_004_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach005Wheel0[] = "__OTR__peach_kart/kart_005_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach005Wheel1[] = "__OTR__peach_kart/kart_005_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach005Wheel2[] = "__OTR__peach_kart/kart_005_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach005Wheel3[] = "__OTR__peach_kart/kart_005_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach006Wheel0[] = "__OTR__peach_kart/kart_006_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach006Wheel1[] = "__OTR__peach_kart/kart_006_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach006Wheel2[] = "__OTR__peach_kart/kart_006_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach006Wheel3[] = "__OTR__peach_kart/kart_006_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach007Wheel0[] = "__OTR__peach_kart/kart_007_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach007Wheel1[] = "__OTR__peach_kart/kart_007_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach007Wheel2[] = "__OTR__peach_kart/kart_007_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach007Wheel3[] = "__OTR__peach_kart/kart_007_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach008Wheel0[] = "__OTR__peach_kart/kart_008_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach008Wheel1[] = "__OTR__peach_kart/kart_008_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach008Wheel2[] = "__OTR__peach_kart/kart_008_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach008Wheel3[] = "__OTR__peach_kart/kart_008_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach009Wheel0[] = "__OTR__peach_kart/kart_009_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach009Wheel1[] = "__OTR__peach_kart/kart_009_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach009Wheel2[] = "__OTR__peach_kart/kart_009_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach009Wheel3[] = "__OTR__peach_kart/kart_009_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach010Wheel0[] = "__OTR__peach_kart/kart_010_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach010Wheel1[] = "__OTR__peach_kart/kart_010_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach010Wheel2[] = "__OTR__peach_kart/kart_010_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach010Wheel3[] = "__OTR__peach_kart/kart_010_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach011Wheel0[] = "__OTR__peach_kart/kart_011_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach011Wheel1[] = "__OTR__peach_kart/kart_011_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach011Wheel2[] = "__OTR__peach_kart/kart_011_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach011Wheel3[] = "__OTR__peach_kart/kart_011_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach012Wheel0[] = "__OTR__peach_kart/kart_012_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach012Wheel1[] = "__OTR__peach_kart/kart_012_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach012Wheel2[] = "__OTR__peach_kart/kart_012_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach012Wheel3[] = "__OTR__peach_kart/kart_012_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach013Wheel0[] = "__OTR__peach_kart/kart_013_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach013Wheel1[] = "__OTR__peach_kart/kart_013_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach013Wheel2[] = "__OTR__peach_kart/kart_013_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach013Wheel3[] = "__OTR__peach_kart/kart_013_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach014Wheel0[] = "__OTR__peach_kart/kart_014_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach014Wheel1[] = "__OTR__peach_kart/kart_014_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach014Wheel2[] = "__OTR__peach_kart/kart_014_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach014Wheel3[] = "__OTR__peach_kart/kart_014_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach015Wheel0[] = "__OTR__peach_kart/kart_015_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach015Wheel1[] = "__OTR__peach_kart/kart_015_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach015Wheel2[] = "__OTR__peach_kart/kart_015_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach015Wheel3[] = "__OTR__peach_kart/kart_015_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach016Wheel0[] = "__OTR__peach_kart/kart_016_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach016Wheel1[] = "__OTR__peach_kart/kart_016_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach016Wheel2[] = "__OTR__peach_kart/kart_016_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach016Wheel3[] = "__OTR__peach_kart/kart_016_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach017Wheel0[] = "__OTR__peach_kart/kart_017_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach017Wheel1[] = "__OTR__peach_kart/kart_017_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach017Wheel2[] = "__OTR__peach_kart/kart_017_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach017Wheel3[] = "__OTR__peach_kart/kart_017_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach018Wheel0[] = "__OTR__peach_kart/kart_018_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach018Wheel1[] = "__OTR__peach_kart/kart_018_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach018Wheel2[] = "__OTR__peach_kart/kart_018_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach018Wheel3[] = "__OTR__peach_kart/kart_018_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach019Wheel0[] = "__OTR__peach_kart/kart_019_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach019Wheel1[] = "__OTR__peach_kart/kart_019_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach019Wheel2[] = "__OTR__peach_kart/kart_019_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach019Wheel3[] = "__OTR__peach_kart/kart_019_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach020Wheel0[] = "__OTR__peach_kart/kart_020_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach020Wheel1[] = "__OTR__peach_kart/kart_020_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach020Wheel2[] = "__OTR__peach_kart/kart_020_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach020Wheel3[] = "__OTR__peach_kart/kart_020_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach021Wheel0[] = "__OTR__peach_kart/kart_021_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach021Wheel1[] = "__OTR__peach_kart/kart_021_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach021Wheel2[] = "__OTR__peach_kart/kart_021_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach021Wheel3[] = "__OTR__peach_kart/kart_021_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach022Wheel0[] = "__OTR__peach_kart/kart_022_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach022Wheel1[] = "__OTR__peach_kart/kart_022_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach022Wheel2[] = "__OTR__peach_kart/kart_022_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach022Wheel3[] = "__OTR__peach_kart/kart_022_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach023Wheel0[] = "__OTR__peach_kart/kart_023_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach023Wheel1[] = "__OTR__peach_kart/kart_023_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach023Wheel2[] = "__OTR__peach_kart/kart_023_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach023Wheel3[] = "__OTR__peach_kart/kart_023_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach024Wheel0[] = "__OTR__peach_kart/kart_024_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach024Wheel1[] = "__OTR__peach_kart/kart_024_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach024Wheel2[] = "__OTR__peach_kart/kart_024_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach024Wheel3[] = "__OTR__peach_kart/kart_024_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach025Wheel0[] = "__OTR__peach_kart/kart_025_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach025Wheel1[] = "__OTR__peach_kart/kart_025_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach025Wheel2[] = "__OTR__peach_kart/kart_025_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach025Wheel3[] = "__OTR__peach_kart/kart_025_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach026Wheel0[] = "__OTR__peach_kart/kart_026_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach026Wheel1[] = "__OTR__peach_kart/kart_026_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach026Wheel2[] = "__OTR__peach_kart/kart_026_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach026Wheel3[] = "__OTR__peach_kart/kart_026_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach027Wheel0[] = "__OTR__peach_kart/kart_027_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach027Wheel1[] = "__OTR__peach_kart/kart_027_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach027Wheel2[] = "__OTR__peach_kart/kart_027_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach027Wheel3[] = "__OTR__peach_kart/kart_027_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach028Wheel0[] = "__OTR__peach_kart/kart_028_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach028Wheel1[] = "__OTR__peach_kart/kart_028_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach028Wheel2[] = "__OTR__peach_kart/kart_028_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach028Wheel3[] = "__OTR__peach_kart/kart_028_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach029Wheel0[] = "__OTR__peach_kart/kart_029_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach029Wheel1[] = "__OTR__peach_kart/kart_029_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach029Wheel2[] = "__OTR__peach_kart/kart_029_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach029Wheel3[] = "__OTR__peach_kart/kart_029_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach030Wheel0[] = "__OTR__peach_kart/kart_030_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach030Wheel1[] = "__OTR__peach_kart/kart_030_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach030Wheel2[] = "__OTR__peach_kart/kart_030_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach030Wheel3[] = "__OTR__peach_kart/kart_030_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach031Wheel0[] = "__OTR__peach_kart/kart_031_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach031Wheel1[] = "__OTR__peach_kart/kart_031_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach031Wheel2[] = "__OTR__peach_kart/kart_031_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach031Wheel3[] = "__OTR__peach_kart/kart_031_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach032Wheel0[] = "__OTR__peach_kart/kart_032_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach032Wheel1[] = "__OTR__peach_kart/kart_032_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach032Wheel2[] = "__OTR__peach_kart/kart_032_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach032Wheel3[] = "__OTR__peach_kart/kart_032_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach033Wheel0[] = "__OTR__peach_kart/kart_033_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach033Wheel1[] = "__OTR__peach_kart/kart_033_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach033Wheel2[] = "__OTR__peach_kart/kart_033_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach033Wheel3[] = "__OTR__peach_kart/kart_033_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach034Wheel0[] = "__OTR__peach_kart/kart_034_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach034Wheel1[] = "__OTR__peach_kart/kart_034_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach034Wheel2[] = "__OTR__peach_kart/kart_034_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach034Wheel3[] = "__OTR__peach_kart/kart_034_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach035Wheel0[] = "__OTR__peach_kart/kart_035_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach035Wheel1[] = "__OTR__peach_kart/kart_035_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach035Wheel2[] = "__OTR__peach_kart/kart_035_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach035Wheel3[] = "__OTR__peach_kart/kart_035_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach036Wheel0[] = "__OTR__peach_kart/kart_036_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach036Wheel1[] = "__OTR__peach_kart/kart_036_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach036Wheel2[] = "__OTR__peach_kart/kart_036_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach036Wheel3[] = "__OTR__peach_kart/kart_036_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach037Wheel0[] = "__OTR__peach_kart/kart_037_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach037Wheel1[] = "__OTR__peach_kart/kart_037_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach037Wheel2[] = "__OTR__peach_kart/kart_037_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach037Wheel3[] = "__OTR__peach_kart/kart_037_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach038Wheel0[] = "__OTR__peach_kart/kart_038_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach038Wheel1[] = "__OTR__peach_kart/kart_038_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach038Wheel2[] = "__OTR__peach_kart/kart_038_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach038Wheel3[] = "__OTR__peach_kart/kart_038_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach039Wheel0[] = "__OTR__peach_kart/kart_039_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach039Wheel1[] = "__OTR__peach_kart/kart_039_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach039Wheel2[] = "__OTR__peach_kart/kart_039_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach039Wheel3[] = "__OTR__peach_kart/kart_039_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach040Wheel0[] = "__OTR__peach_kart/kart_040_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach040Wheel1[] = "__OTR__peach_kart/kart_040_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach040Wheel2[] = "__OTR__peach_kart/kart_040_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach040Wheel3[] = "__OTR__peach_kart/kart_040_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach041Wheel0[] = "__OTR__peach_kart/kart_041_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach041Wheel1[] = "__OTR__peach_kart/kart_041_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach041Wheel2[] = "__OTR__peach_kart/kart_041_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach041Wheel3[] = "__OTR__peach_kart/kart_041_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach042Wheel0[] = "__OTR__peach_kart/kart_042_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach042Wheel1[] = "__OTR__peach_kart/kart_042_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach042Wheel2[] = "__OTR__peach_kart/kart_042_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach042Wheel3[] = "__OTR__peach_kart/kart_042_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach043Wheel0[] = "__OTR__peach_kart/kart_043_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach043Wheel1[] = "__OTR__peach_kart/kart_043_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach043Wheel2[] = "__OTR__peach_kart/kart_043_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach043Wheel3[] = "__OTR__peach_kart/kart_043_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach044Wheel0[] = "__OTR__peach_kart/kart_044_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach044Wheel1[] = "__OTR__peach_kart/kart_044_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach044Wheel2[] = "__OTR__peach_kart/kart_044_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach044Wheel3[] = "__OTR__peach_kart/kart_044_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach045Wheel0[] = "__OTR__peach_kart/kart_045_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach045Wheel1[] = "__OTR__peach_kart/kart_045_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach045Wheel2[] = "__OTR__peach_kart/kart_045_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach045Wheel3[] = "__OTR__peach_kart/kart_045_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach046Wheel0[] = "__OTR__peach_kart/kart_046_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach046Wheel1[] = "__OTR__peach_kart/kart_046_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach046Wheel2[] = "__OTR__peach_kart/kart_046_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach046Wheel3[] = "__OTR__peach_kart/kart_046_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach047Wheel0[] = "__OTR__peach_kart/kart_047_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach047Wheel1[] = "__OTR__peach_kart/kart_047_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach047Wheel2[] = "__OTR__peach_kart/kart_047_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach047Wheel3[] = "__OTR__peach_kart/kart_047_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach048Wheel0[] = "__OTR__peach_kart/kart_048_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach048Wheel1[] = "__OTR__peach_kart/kart_048_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach048Wheel2[] = "__OTR__peach_kart/kart_048_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach048Wheel3[] = "__OTR__peach_kart/kart_048_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach049Wheel0[] = "__OTR__peach_kart/kart_049_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach049Wheel1[] = "__OTR__peach_kart/kart_049_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach049Wheel2[] = "__OTR__peach_kart/kart_049_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach049Wheel3[] = "__OTR__peach_kart/kart_049_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach050Wheel0[] = "__OTR__peach_kart/kart_050_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach050Wheel1[] = "__OTR__peach_kart/kart_050_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach050Wheel2[] = "__OTR__peach_kart/kart_050_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach050Wheel3[] = "__OTR__peach_kart/kart_050_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach051Wheel0[] = "__OTR__peach_kart/kart_051_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach051Wheel1[] = "__OTR__peach_kart/kart_051_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach051Wheel2[] = "__OTR__peach_kart/kart_051_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach051Wheel3[] = "__OTR__peach_kart/kart_051_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach052Wheel0[] = "__OTR__peach_kart/kart_052_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach052Wheel1[] = "__OTR__peach_kart/kart_052_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach052Wheel2[] = "__OTR__peach_kart/kart_052_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach052Wheel3[] = "__OTR__peach_kart/kart_052_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach053Wheel0[] = "__OTR__peach_kart/kart_053_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach053Wheel1[] = "__OTR__peach_kart/kart_053_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach053Wheel2[] = "__OTR__peach_kart/kart_053_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach053Wheel3[] = "__OTR__peach_kart/kart_053_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach054Wheel0[] = "__OTR__peach_kart/kart_054_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach054Wheel1[] = "__OTR__peach_kart/kart_054_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach054Wheel2[] = "__OTR__peach_kart/kart_054_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach054Wheel3[] = "__OTR__peach_kart/kart_054_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach055Wheel0[] = "__OTR__peach_kart/kart_055_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach055Wheel1[] = "__OTR__peach_kart/kart_055_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach055Wheel2[] = "__OTR__peach_kart/kart_055_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach055Wheel3[] = "__OTR__peach_kart/kart_055_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach056Wheel0[] = "__OTR__peach_kart/kart_056_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach056Wheel1[] = "__OTR__peach_kart/kart_056_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach056Wheel2[] = "__OTR__peach_kart/kart_056_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach056Wheel3[] = "__OTR__peach_kart/kart_056_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach057Wheel0[] = "__OTR__peach_kart/kart_057_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach057Wheel1[] = "__OTR__peach_kart/kart_057_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach057Wheel2[] = "__OTR__peach_kart/kart_057_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach057Wheel3[] = "__OTR__peach_kart/kart_057_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach058Wheel0[] = "__OTR__peach_kart/kart_058_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach058Wheel1[] = "__OTR__peach_kart/kart_058_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach058Wheel2[] = "__OTR__peach_kart/kart_058_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach058Wheel3[] = "__OTR__peach_kart/kart_058_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach059Wheel0[] = "__OTR__peach_kart/kart_059_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach059Wheel1[] = "__OTR__peach_kart/kart_059_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach059Wheel2[] = "__OTR__peach_kart/kart_059_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach059Wheel3[] = "__OTR__peach_kart/kart_059_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach060Wheel0[] = "__OTR__peach_kart/kart_060_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach060Wheel1[] = "__OTR__peach_kart/kart_060_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach060Wheel2[] = "__OTR__peach_kart/kart_060_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach060Wheel3[] = "__OTR__peach_kart/kart_060_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach061Wheel0[] = "__OTR__peach_kart/kart_061_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach061Wheel1[] = "__OTR__peach_kart/kart_061_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach061Wheel2[] = "__OTR__peach_kart/kart_061_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach061Wheel3[] = "__OTR__peach_kart/kart_061_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach062Wheel0[] = "__OTR__peach_kart/kart_062_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach062Wheel1[] = "__OTR__peach_kart/kart_062_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach062Wheel2[] = "__OTR__peach_kart/kart_062_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach062Wheel3[] = "__OTR__peach_kart/kart_062_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach063Wheel0[] = "__OTR__peach_kart/kart_063_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach063Wheel1[] = "__OTR__peach_kart/kart_063_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach063Wheel2[] = "__OTR__peach_kart/kart_063_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach063Wheel3[] = "__OTR__peach_kart/kart_063_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach064Wheel0[] = "__OTR__peach_kart/kart_064_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach064Wheel1[] = "__OTR__peach_kart/kart_064_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach064Wheel2[] = "__OTR__peach_kart/kart_064_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach064Wheel3[] = "__OTR__peach_kart/kart_064_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach065Wheel0[] = "__OTR__peach_kart/kart_065_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach065Wheel1[] = "__OTR__peach_kart/kart_065_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach065Wheel2[] = "__OTR__peach_kart/kart_065_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach065Wheel3[] = "__OTR__peach_kart/kart_065_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach066Wheel0[] = "__OTR__peach_kart/kart_066_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach066Wheel1[] = "__OTR__peach_kart/kart_066_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach066Wheel2[] = "__OTR__peach_kart/kart_066_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach066Wheel3[] = "__OTR__peach_kart/kart_066_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach067Wheel0[] = "__OTR__peach_kart/kart_067_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach067Wheel1[] = "__OTR__peach_kart/kart_067_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach067Wheel2[] = "__OTR__peach_kart/kart_067_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach067Wheel3[] = "__OTR__peach_kart/kart_067_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach068Wheel0[] = "__OTR__peach_kart/kart_068_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach068Wheel1[] = "__OTR__peach_kart/kart_068_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach068Wheel2[] = "__OTR__peach_kart/kart_068_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach068Wheel3[] = "__OTR__peach_kart/kart_068_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach069Wheel0[] = "__OTR__peach_kart/kart_069_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach069Wheel1[] = "__OTR__peach_kart/kart_069_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach069Wheel2[] = "__OTR__peach_kart/kart_069_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach069Wheel3[] = "__OTR__peach_kart/kart_069_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach070Wheel0[] = "__OTR__peach_kart/kart_070_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach070Wheel1[] = "__OTR__peach_kart/kart_070_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach070Wheel2[] = "__OTR__peach_kart/kart_070_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach070Wheel3[] = "__OTR__peach_kart/kart_070_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach071Wheel0[] = "__OTR__peach_kart/kart_071_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach071Wheel1[] = "__OTR__peach_kart/kart_071_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach071Wheel2[] = "__OTR__peach_kart/kart_071_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach071Wheel3[] = "__OTR__peach_kart/kart_071_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach072Wheel0[] = "__OTR__peach_kart/kart_072_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach072Wheel1[] = "__OTR__peach_kart/kart_072_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach072Wheel2[] = "__OTR__peach_kart/kart_072_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach072Wheel3[] = "__OTR__peach_kart/kart_072_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach073Wheel0[] = "__OTR__peach_kart/kart_073_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach073Wheel1[] = "__OTR__peach_kart/kart_073_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach073Wheel2[] = "__OTR__peach_kart/kart_073_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach073Wheel3[] = "__OTR__peach_kart/kart_073_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach074Wheel0[] = "__OTR__peach_kart/kart_074_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach074Wheel1[] = "__OTR__peach_kart/kart_074_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach074Wheel2[] = "__OTR__peach_kart/kart_074_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach074Wheel3[] = "__OTR__peach_kart/kart_074_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach075Wheel0[] = "__OTR__peach_kart/kart_075_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach075Wheel1[] = "__OTR__peach_kart/kart_075_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach075Wheel2[] = "__OTR__peach_kart/kart_075_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach075Wheel3[] = "__OTR__peach_kart/kart_075_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach076Wheel0[] = "__OTR__peach_kart/kart_076_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach076Wheel1[] = "__OTR__peach_kart/kart_076_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach076Wheel2[] = "__OTR__peach_kart/kart_076_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach076Wheel3[] = "__OTR__peach_kart/kart_076_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach077Wheel0[] = "__OTR__peach_kart/kart_077_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach077Wheel1[] = "__OTR__peach_kart/kart_077_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach077Wheel2[] = "__OTR__peach_kart/kart_077_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach077Wheel3[] = "__OTR__peach_kart/kart_077_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach078Wheel0[] = "__OTR__peach_kart/kart_078_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach078Wheel1[] = "__OTR__peach_kart/kart_078_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach078Wheel2[] = "__OTR__peach_kart/kart_078_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach078Wheel3[] = "__OTR__peach_kart/kart_078_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach079Wheel0[] = "__OTR__peach_kart/kart_079_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach079Wheel1[] = "__OTR__peach_kart/kart_079_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach079Wheel2[] = "__OTR__peach_kart/kart_079_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach079Wheel3[] = "__OTR__peach_kart/kart_079_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach080Wheel0[] = "__OTR__peach_kart/kart_080_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach080Wheel1[] = "__OTR__peach_kart/kart_080_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach080Wheel2[] = "__OTR__peach_kart/kart_080_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach080Wheel3[] = "__OTR__peach_kart/kart_080_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach081Wheel0[] = "__OTR__peach_kart/kart_081_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach081Wheel1[] = "__OTR__peach_kart/kart_081_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach081Wheel2[] = "__OTR__peach_kart/kart_081_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach081Wheel3[] = "__OTR__peach_kart/kart_081_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach082Wheel0[] = "__OTR__peach_kart/kart_082_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach082Wheel1[] = "__OTR__peach_kart/kart_082_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach082Wheel2[] = "__OTR__peach_kart/kart_082_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach082Wheel3[] = "__OTR__peach_kart/kart_082_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach083Wheel0[] = "__OTR__peach_kart/kart_083_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach083Wheel1[] = "__OTR__peach_kart/kart_083_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach083Wheel2[] = "__OTR__peach_kart/kart_083_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach083Wheel3[] = "__OTR__peach_kart/kart_083_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach084Wheel0[] = "__OTR__peach_kart/kart_084_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach084Wheel1[] = "__OTR__peach_kart/kart_084_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach084Wheel2[] = "__OTR__peach_kart/kart_084_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach084Wheel3[] = "__OTR__peach_kart/kart_084_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach085Wheel0[] = "__OTR__peach_kart/kart_085_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach085Wheel1[] = "__OTR__peach_kart/kart_085_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach085Wheel2[] = "__OTR__peach_kart/kart_085_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach085Wheel3[] = "__OTR__peach_kart/kart_085_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach086Wheel0[] = "__OTR__peach_kart/kart_086_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach086Wheel1[] = "__OTR__peach_kart/kart_086_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach086Wheel2[] = "__OTR__peach_kart/kart_086_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach086Wheel3[] = "__OTR__peach_kart/kart_086_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach087Wheel0[] = "__OTR__peach_kart/kart_087_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach087Wheel1[] = "__OTR__peach_kart/kart_087_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach087Wheel2[] = "__OTR__peach_kart/kart_087_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach087Wheel3[] = "__OTR__peach_kart/kart_087_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach088Wheel0[] = "__OTR__peach_kart/kart_088_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach088Wheel1[] = "__OTR__peach_kart/kart_088_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach088Wheel2[] = "__OTR__peach_kart/kart_088_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach088Wheel3[] = "__OTR__peach_kart/kart_088_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach089Wheel0[] = "__OTR__peach_kart/kart_089_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach089Wheel1[] = "__OTR__peach_kart/kart_089_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach089Wheel2[] = "__OTR__peach_kart/kart_089_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach089Wheel3[] = "__OTR__peach_kart/kart_089_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach090Wheel0[] = "__OTR__peach_kart/kart_090_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach090Wheel1[] = "__OTR__peach_kart/kart_090_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach090Wheel2[] = "__OTR__peach_kart/kart_090_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach090Wheel3[] = "__OTR__peach_kart/kart_090_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach091Wheel0[] = "__OTR__peach_kart/kart_091_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach091Wheel1[] = "__OTR__peach_kart/kart_091_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach091Wheel2[] = "__OTR__peach_kart/kart_091_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach091Wheel3[] = "__OTR__peach_kart/kart_091_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach092Wheel0[] = "__OTR__peach_kart/kart_092_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach092Wheel1[] = "__OTR__peach_kart/kart_092_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach092Wheel2[] = "__OTR__peach_kart/kart_092_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach092Wheel3[] = "__OTR__peach_kart/kart_092_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach093Wheel0[] = "__OTR__peach_kart/kart_093_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach093Wheel1[] = "__OTR__peach_kart/kart_093_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach093Wheel2[] = "__OTR__peach_kart/kart_093_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach093Wheel3[] = "__OTR__peach_kart/kart_093_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach094Wheel0[] = "__OTR__peach_kart/kart_094_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach094Wheel1[] = "__OTR__peach_kart/kart_094_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach094Wheel2[] = "__OTR__peach_kart/kart_094_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach094Wheel3[] = "__OTR__peach_kart/kart_094_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach095Wheel0[] = "__OTR__peach_kart/kart_095_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach095Wheel1[] = "__OTR__peach_kart/kart_095_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach095Wheel2[] = "__OTR__peach_kart/kart_095_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach095Wheel3[] = "__OTR__peach_kart/kart_095_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach096Wheel0[] = "__OTR__peach_kart/kart_096_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach096Wheel1[] = "__OTR__peach_kart/kart_096_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach096Wheel2[] = "__OTR__peach_kart/kart_096_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach096Wheel3[] = "__OTR__peach_kart/kart_096_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach097Wheel0[] = "__OTR__peach_kart/kart_097_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach097Wheel1[] = "__OTR__peach_kart/kart_097_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach097Wheel2[] = "__OTR__peach_kart/kart_097_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach097Wheel3[] = "__OTR__peach_kart/kart_097_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach098Wheel0[] = "__OTR__peach_kart/kart_098_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach098Wheel1[] = "__OTR__peach_kart/kart_098_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach098Wheel2[] = "__OTR__peach_kart/kart_098_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach098Wheel3[] = "__OTR__peach_kart/kart_098_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach099Wheel0[] = "__OTR__peach_kart/kart_099_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach099Wheel1[] = "__OTR__peach_kart/kart_099_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach099Wheel2[] = "__OTR__peach_kart/kart_099_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach099Wheel3[] = "__OTR__peach_kart/kart_099_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach100Wheel0[] = "__OTR__peach_kart/kart_100_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach100Wheel1[] = "__OTR__peach_kart/kart_100_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach100Wheel2[] = "__OTR__peach_kart/kart_100_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach100Wheel3[] = "__OTR__peach_kart/kart_100_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach101Wheel0[] = "__OTR__peach_kart/kart_101_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach101Wheel1[] = "__OTR__peach_kart/kart_101_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach101Wheel2[] = "__OTR__peach_kart/kart_101_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach101Wheel3[] = "__OTR__peach_kart/kart_101_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach102Wheel0[] = "__OTR__peach_kart/kart_102_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach102Wheel1[] = "__OTR__peach_kart/kart_102_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach102Wheel2[] = "__OTR__peach_kart/kart_102_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach102Wheel3[] = "__OTR__peach_kart/kart_102_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach103Wheel0[] = "__OTR__peach_kart/kart_103_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach103Wheel1[] = "__OTR__peach_kart/kart_103_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach103Wheel2[] = "__OTR__peach_kart/kart_103_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach103Wheel3[] = "__OTR__peach_kart/kart_103_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach104Wheel0[] = "__OTR__peach_kart/kart_104_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach104Wheel1[] = "__OTR__peach_kart/kart_104_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach104Wheel2[] = "__OTR__peach_kart/kart_104_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach104Wheel3[] = "__OTR__peach_kart/kart_104_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach105Wheel0[] = "__OTR__peach_kart/kart_105_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach105Wheel1[] = "__OTR__peach_kart/kart_105_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach105Wheel2[] = "__OTR__peach_kart/kart_105_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach105Wheel3[] = "__OTR__peach_kart/kart_105_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach106Wheel0[] = "__OTR__peach_kart/kart_106_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach106Wheel1[] = "__OTR__peach_kart/kart_106_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach106Wheel2[] = "__OTR__peach_kart/kart_106_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach106Wheel3[] = "__OTR__peach_kart/kart_106_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach107Wheel0[] = "__OTR__peach_kart/kart_107_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach107Wheel1[] = "__OTR__peach_kart/kart_107_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach107Wheel2[] = "__OTR__peach_kart/kart_107_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach107Wheel3[] = "__OTR__peach_kart/kart_107_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach108Wheel0[] = "__OTR__peach_kart/kart_108_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach108Wheel1[] = "__OTR__peach_kart/kart_108_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach108Wheel2[] = "__OTR__peach_kart/kart_108_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach108Wheel3[] = "__OTR__peach_kart/kart_108_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach109Wheel0[] = "__OTR__peach_kart/kart_109_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach109Wheel1[] = "__OTR__peach_kart/kart_109_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach109Wheel2[] = "__OTR__peach_kart/kart_109_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach109Wheel3[] = "__OTR__peach_kart/kart_109_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach110Wheel0[] = "__OTR__peach_kart/kart_110_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach110Wheel1[] = "__OTR__peach_kart/kart_110_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach110Wheel2[] = "__OTR__peach_kart/kart_110_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach110Wheel3[] = "__OTR__peach_kart/kart_110_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach111Wheel0[] = "__OTR__peach_kart/kart_111_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach111Wheel1[] = "__OTR__peach_kart/kart_111_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach111Wheel2[] = "__OTR__peach_kart/kart_111_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach111Wheel3[] = "__OTR__peach_kart/kart_111_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach112Wheel0[] = "__OTR__peach_kart/kart_112_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach112Wheel1[] = "__OTR__peach_kart/kart_112_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach112Wheel2[] = "__OTR__peach_kart/kart_112_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach112Wheel3[] = "__OTR__peach_kart/kart_112_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach113Wheel0[] = "__OTR__peach_kart/kart_113_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach113Wheel1[] = "__OTR__peach_kart/kart_113_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach113Wheel2[] = "__OTR__peach_kart/kart_113_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach113Wheel3[] = "__OTR__peach_kart/kart_113_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach114Wheel0[] = "__OTR__peach_kart/kart_114_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach114Wheel1[] = "__OTR__peach_kart/kart_114_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach114Wheel2[] = "__OTR__peach_kart/kart_114_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach114Wheel3[] = "__OTR__peach_kart/kart_114_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach115Wheel0[] = "__OTR__peach_kart/kart_115_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach115Wheel1[] = "__OTR__peach_kart/kart_115_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach115Wheel2[] = "__OTR__peach_kart/kart_115_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach115Wheel3[] = "__OTR__peach_kart/kart_115_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach116Wheel0[] = "__OTR__peach_kart/kart_116_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach116Wheel1[] = "__OTR__peach_kart/kart_116_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach116Wheel2[] = "__OTR__peach_kart/kart_116_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach116Wheel3[] = "__OTR__peach_kart/kart_116_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach117Wheel0[] = "__OTR__peach_kart/kart_117_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach117Wheel1[] = "__OTR__peach_kart/kart_117_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach117Wheel2[] = "__OTR__peach_kart/kart_117_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach117Wheel3[] = "__OTR__peach_kart/kart_117_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach118Wheel0[] = "__OTR__peach_kart/kart_118_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach118Wheel1[] = "__OTR__peach_kart/kart_118_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach118Wheel2[] = "__OTR__peach_kart/kart_118_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach118Wheel3[] = "__OTR__peach_kart/kart_118_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach119Wheel0[] = "__OTR__peach_kart/kart_119_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach119Wheel1[] = "__OTR__peach_kart/kart_119_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach119Wheel2[] = "__OTR__peach_kart/kart_119_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach119Wheel3[] = "__OTR__peach_kart/kart_119_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach120Wheel0[] = "__OTR__peach_kart/kart_120_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach120Wheel1[] = "__OTR__peach_kart/kart_120_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach120Wheel2[] = "__OTR__peach_kart/kart_120_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach120Wheel3[] = "__OTR__peach_kart/kart_120_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach121Wheel0[] = "__OTR__peach_kart/kart_121_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach121Wheel1[] = "__OTR__peach_kart/kart_121_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach121Wheel2[] = "__OTR__peach_kart/kart_121_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach121Wheel3[] = "__OTR__peach_kart/kart_121_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach122Wheel0[] = "__OTR__peach_kart/kart_122_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach122Wheel1[] = "__OTR__peach_kart/kart_122_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach122Wheel2[] = "__OTR__peach_kart/kart_122_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach122Wheel3[] = "__OTR__peach_kart/kart_122_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach123Wheel0[] = "__OTR__peach_kart/kart_123_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach123Wheel1[] = "__OTR__peach_kart/kart_123_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach123Wheel2[] = "__OTR__peach_kart/kart_123_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach123Wheel3[] = "__OTR__peach_kart/kart_123_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach124Wheel0[] = "__OTR__peach_kart/kart_124_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach124Wheel1[] = "__OTR__peach_kart/kart_124_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach124Wheel2[] = "__OTR__peach_kart/kart_124_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach124Wheel3[] = "__OTR__peach_kart/kart_124_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach125Wheel0[] = "__OTR__peach_kart/kart_125_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach125Wheel1[] = "__OTR__peach_kart/kart_125_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach125Wheel2[] = "__OTR__peach_kart/kart_125_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach125Wheel3[] = "__OTR__peach_kart/kart_125_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach126Wheel0[] = "__OTR__peach_kart/kart_126_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach126Wheel1[] = "__OTR__peach_kart/kart_126_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach126Wheel2[] = "__OTR__peach_kart/kart_126_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach126Wheel3[] = "__OTR__peach_kart/kart_126_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach127Wheel0[] = "__OTR__peach_kart/kart_127_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach127Wheel1[] = "__OTR__peach_kart/kart_127_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach127Wheel2[] = "__OTR__peach_kart/kart_127_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach127Wheel3[] = "__OTR__peach_kart/kart_127_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach128Wheel0[] = "__OTR__peach_kart/kart_128_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach128Wheel1[] = "__OTR__peach_kart/kart_128_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach128Wheel2[] = "__OTR__peach_kart/kart_128_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach128Wheel3[] = "__OTR__peach_kart/kart_128_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach129Wheel0[] = "__OTR__peach_kart/kart_129_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach129Wheel1[] = "__OTR__peach_kart/kart_129_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach129Wheel2[] = "__OTR__peach_kart/kart_129_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach129Wheel3[] = "__OTR__peach_kart/kart_129_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach130Wheel0[] = "__OTR__peach_kart/kart_130_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach130Wheel1[] = "__OTR__peach_kart/kart_130_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach130Wheel2[] = "__OTR__peach_kart/kart_130_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach130Wheel3[] = "__OTR__peach_kart/kart_130_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach131Wheel0[] = "__OTR__peach_kart/kart_131_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach131Wheel1[] = "__OTR__peach_kart/kart_131_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach131Wheel2[] = "__OTR__peach_kart/kart_131_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach131Wheel3[] = "__OTR__peach_kart/kart_131_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach132Wheel0[] = "__OTR__peach_kart/kart_132_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach132Wheel1[] = "__OTR__peach_kart/kart_132_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach132Wheel2[] = "__OTR__peach_kart/kart_132_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach132Wheel3[] = "__OTR__peach_kart/kart_132_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach133Wheel0[] = "__OTR__peach_kart/kart_133_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach133Wheel1[] = "__OTR__peach_kart/kart_133_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach133Wheel2[] = "__OTR__peach_kart/kart_133_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach133Wheel3[] = "__OTR__peach_kart/kart_133_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach134Wheel0[] = "__OTR__peach_kart/kart_134_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach134Wheel1[] = "__OTR__peach_kart/kart_134_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach134Wheel2[] = "__OTR__peach_kart/kart_134_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach134Wheel3[] = "__OTR__peach_kart/kart_134_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach135Wheel0[] = "__OTR__peach_kart/kart_135_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach135Wheel1[] = "__OTR__peach_kart/kart_135_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach135Wheel2[] = "__OTR__peach_kart/kart_135_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach135Wheel3[] = "__OTR__peach_kart/kart_135_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach136Wheel0[] = "__OTR__peach_kart/kart_136_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach136Wheel1[] = "__OTR__peach_kart/kart_136_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach136Wheel2[] = "__OTR__peach_kart/kart_136_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach136Wheel3[] = "__OTR__peach_kart/kart_136_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach137Wheel0[] = "__OTR__peach_kart/kart_137_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach137Wheel1[] = "__OTR__peach_kart/kart_137_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach137Wheel2[] = "__OTR__peach_kart/kart_137_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach137Wheel3[] = "__OTR__peach_kart/kart_137_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach138Wheel0[] = "__OTR__peach_kart/kart_138_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach138Wheel1[] = "__OTR__peach_kart/kart_138_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach138Wheel2[] = "__OTR__peach_kart/kart_138_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach138Wheel3[] = "__OTR__peach_kart/kart_138_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach139Wheel0[] = "__OTR__peach_kart/kart_139_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach139Wheel1[] = "__OTR__peach_kart/kart_139_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach139Wheel2[] = "__OTR__peach_kart/kart_139_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach139Wheel3[] = "__OTR__peach_kart/kart_139_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach140Wheel0[] = "__OTR__peach_kart/kart_140_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach140Wheel1[] = "__OTR__peach_kart/kart_140_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach140Wheel2[] = "__OTR__peach_kart/kart_140_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach140Wheel3[] = "__OTR__peach_kart/kart_140_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach141Wheel0[] = "__OTR__peach_kart/kart_141_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach141Wheel1[] = "__OTR__peach_kart/kart_141_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach141Wheel2[] = "__OTR__peach_kart/kart_141_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach141Wheel3[] = "__OTR__peach_kart/kart_141_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach142Wheel0[] = "__OTR__peach_kart/kart_142_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach142Wheel1[] = "__OTR__peach_kart/kart_142_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach142Wheel2[] = "__OTR__peach_kart/kart_142_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach142Wheel3[] = "__OTR__peach_kart/kart_142_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach143Wheel0[] = "__OTR__peach_kart/kart_143_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach143Wheel1[] = "__OTR__peach_kart/kart_143_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach143Wheel2[] = "__OTR__peach_kart/kart_143_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach143Wheel3[] = "__OTR__peach_kart/kart_143_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach144Wheel0[] = "__OTR__peach_kart/kart_144_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach144Wheel1[] = "__OTR__peach_kart/kart_144_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach144Wheel2[] = "__OTR__peach_kart/kart_144_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach144Wheel3[] = "__OTR__peach_kart/kart_144_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach145Wheel0[] = "__OTR__peach_kart/kart_145_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach145Wheel1[] = "__OTR__peach_kart/kart_145_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach145Wheel2[] = "__OTR__peach_kart/kart_145_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach145Wheel3[] = "__OTR__peach_kart/kart_145_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach146Wheel0[] = "__OTR__peach_kart/kart_146_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach146Wheel1[] = "__OTR__peach_kart/kart_146_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach146Wheel2[] = "__OTR__peach_kart/kart_146_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach146Wheel3[] = "__OTR__peach_kart/kart_146_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach147Wheel0[] = "__OTR__peach_kart/kart_147_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach147Wheel1[] = "__OTR__peach_kart/kart_147_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach147Wheel2[] = "__OTR__peach_kart/kart_147_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach147Wheel3[] = "__OTR__peach_kart/kart_147_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach148Wheel0[] = "__OTR__peach_kart/kart_148_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach148Wheel1[] = "__OTR__peach_kart/kart_148_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach148Wheel2[] = "__OTR__peach_kart/kart_148_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach148Wheel3[] = "__OTR__peach_kart/kart_148_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach149Wheel0[] = "__OTR__peach_kart/kart_149_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach149Wheel1[] = "__OTR__peach_kart/kart_149_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach149Wheel2[] = "__OTR__peach_kart/kart_149_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach149Wheel3[] = "__OTR__peach_kart/kart_149_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach150Wheel0[] = "__OTR__peach_kart/kart_150_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach150Wheel1[] = "__OTR__peach_kart/kart_150_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach150Wheel2[] = "__OTR__peach_kart/kart_150_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach150Wheel3[] = "__OTR__peach_kart/kart_150_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach151Wheel0[] = "__OTR__peach_kart/kart_151_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach151Wheel1[] = "__OTR__peach_kart/kart_151_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach151Wheel2[] = "__OTR__peach_kart/kart_151_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach151Wheel3[] = "__OTR__peach_kart/kart_151_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach152Wheel0[] = "__OTR__peach_kart/kart_152_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach152Wheel1[] = "__OTR__peach_kart/kart_152_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach152Wheel2[] = "__OTR__peach_kart/kart_152_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach152Wheel3[] = "__OTR__peach_kart/kart_152_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach153Wheel0[] = "__OTR__peach_kart/kart_153_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach153Wheel1[] = "__OTR__peach_kart/kart_153_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach153Wheel2[] = "__OTR__peach_kart/kart_153_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach153Wheel3[] = "__OTR__peach_kart/kart_153_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach154Wheel0[] = "__OTR__peach_kart/kart_154_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach154Wheel1[] = "__OTR__peach_kart/kart_154_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach154Wheel2[] = "__OTR__peach_kart/kart_154_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach154Wheel3[] = "__OTR__peach_kart/kart_154_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach155Wheel0[] = "__OTR__peach_kart/kart_155_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach155Wheel1[] = "__OTR__peach_kart/kart_155_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach155Wheel2[] = "__OTR__peach_kart/kart_155_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach155Wheel3[] = "__OTR__peach_kart/kart_155_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach156Wheel0[] = "__OTR__peach_kart/kart_156_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach156Wheel1[] = "__OTR__peach_kart/kart_156_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach156Wheel2[] = "__OTR__peach_kart/kart_156_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach156Wheel3[] = "__OTR__peach_kart/kart_156_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach157Wheel0[] = "__OTR__peach_kart/kart_157_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach157Wheel1[] = "__OTR__peach_kart/kart_157_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach157Wheel2[] = "__OTR__peach_kart/kart_157_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach157Wheel3[] = "__OTR__peach_kart/kart_157_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach158Wheel0[] = "__OTR__peach_kart/kart_158_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach158Wheel1[] = "__OTR__peach_kart/kart_158_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach158Wheel2[] = "__OTR__peach_kart/kart_158_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach158Wheel3[] = "__OTR__peach_kart/kart_158_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach159Wheel0[] = "__OTR__peach_kart/kart_159_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach159Wheel1[] = "__OTR__peach_kart/kart_159_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach159Wheel2[] = "__OTR__peach_kart/kart_159_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach159Wheel3[] = "__OTR__peach_kart/kart_159_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach160Wheel0[] = "__OTR__peach_kart/kart_160_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach160Wheel1[] = "__OTR__peach_kart/kart_160_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach160Wheel2[] = "__OTR__peach_kart/kart_160_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach160Wheel3[] = "__OTR__peach_kart/kart_160_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach161Wheel0[] = "__OTR__peach_kart/kart_161_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach161Wheel1[] = "__OTR__peach_kart/kart_161_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach161Wheel2[] = "__OTR__peach_kart/kart_161_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach161Wheel3[] = "__OTR__peach_kart/kart_161_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach162Wheel0[] = "__OTR__peach_kart/kart_162_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach162Wheel1[] = "__OTR__peach_kart/kart_162_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach162Wheel2[] = "__OTR__peach_kart/kart_162_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach162Wheel3[] = "__OTR__peach_kart/kart_162_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach163Wheel0[] = "__OTR__peach_kart/kart_163_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach163Wheel1[] = "__OTR__peach_kart/kart_163_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach163Wheel2[] = "__OTR__peach_kart/kart_163_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach163Wheel3[] = "__OTR__peach_kart/kart_163_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach164Wheel0[] = "__OTR__peach_kart/kart_164_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach164Wheel1[] = "__OTR__peach_kart/kart_164_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach164Wheel2[] = "__OTR__peach_kart/kart_164_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach164Wheel3[] = "__OTR__peach_kart/kart_164_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach165Wheel0[] = "__OTR__peach_kart/kart_165_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach165Wheel1[] = "__OTR__peach_kart/kart_165_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach165Wheel2[] = "__OTR__peach_kart/kart_165_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach165Wheel3[] = "__OTR__peach_kart/kart_165_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach166Wheel0[] = "__OTR__peach_kart/kart_166_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach166Wheel1[] = "__OTR__peach_kart/kart_166_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach166Wheel2[] = "__OTR__peach_kart/kart_166_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach166Wheel3[] = "__OTR__peach_kart/kart_166_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach167Wheel0[] = "__OTR__peach_kart/kart_167_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach167Wheel1[] = "__OTR__peach_kart/kart_167_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach167Wheel2[] = "__OTR__peach_kart/kart_167_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach167Wheel3[] = "__OTR__peach_kart/kart_167_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach168Wheel0[] = "__OTR__peach_kart/kart_168_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach168Wheel1[] = "__OTR__peach_kart/kart_168_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach168Wheel2[] = "__OTR__peach_kart/kart_168_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach168Wheel3[] = "__OTR__peach_kart/kart_168_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach169Wheel0[] = "__OTR__peach_kart/kart_169_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach169Wheel1[] = "__OTR__peach_kart/kart_169_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach169Wheel2[] = "__OTR__peach_kart/kart_169_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach169Wheel3[] = "__OTR__peach_kart/kart_169_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach170Wheel0[] = "__OTR__peach_kart/kart_170_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach170Wheel1[] = "__OTR__peach_kart/kart_170_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach170Wheel2[] = "__OTR__peach_kart/kart_170_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach170Wheel3[] = "__OTR__peach_kart/kart_170_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach171Wheel0[] = "__OTR__peach_kart/kart_171_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach171Wheel1[] = "__OTR__peach_kart/kart_171_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach171Wheel2[] = "__OTR__peach_kart/kart_171_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach171Wheel3[] = "__OTR__peach_kart/kart_171_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach172Wheel0[] = "__OTR__peach_kart/kart_172_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach172Wheel1[] = "__OTR__peach_kart/kart_172_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach172Wheel2[] = "__OTR__peach_kart/kart_172_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach172Wheel3[] = "__OTR__peach_kart/kart_172_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach173Wheel0[] = "__OTR__peach_kart/kart_173_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach173Wheel1[] = "__OTR__peach_kart/kart_173_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach173Wheel2[] = "__OTR__peach_kart/kart_173_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach173Wheel3[] = "__OTR__peach_kart/kart_173_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach174Wheel0[] = "__OTR__peach_kart/kart_174_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach174Wheel1[] = "__OTR__peach_kart/kart_174_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach174Wheel2[] = "__OTR__peach_kart/kart_174_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach174Wheel3[] = "__OTR__peach_kart/kart_174_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach175Wheel0[] = "__OTR__peach_kart/kart_175_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach175Wheel1[] = "__OTR__peach_kart/kart_175_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach175Wheel2[] = "__OTR__peach_kart/kart_175_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach175Wheel3[] = "__OTR__peach_kart/kart_175_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach176Wheel0[] = "__OTR__peach_kart/kart_176_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach176Wheel1[] = "__OTR__peach_kart/kart_176_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach176Wheel2[] = "__OTR__peach_kart/kart_176_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach176Wheel3[] = "__OTR__peach_kart/kart_176_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach177Wheel0[] = "__OTR__peach_kart/kart_177_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach177Wheel1[] = "__OTR__peach_kart/kart_177_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach177Wheel2[] = "__OTR__peach_kart/kart_177_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach177Wheel3[] = "__OTR__peach_kart/kart_177_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach178Wheel0[] = "__OTR__peach_kart/kart_178_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach178Wheel1[] = "__OTR__peach_kart/kart_178_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach178Wheel2[] = "__OTR__peach_kart/kart_178_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach178Wheel3[] = "__OTR__peach_kart/kart_178_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach179Wheel0[] = "__OTR__peach_kart/kart_179_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach179Wheel1[] = "__OTR__peach_kart/kart_179_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach179Wheel2[] = "__OTR__peach_kart/kart_179_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach179Wheel3[] = "__OTR__peach_kart/kart_179_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach180Wheel0[] = "__OTR__peach_kart/kart_180_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach180Wheel1[] = "__OTR__peach_kart/kart_180_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach180Wheel2[] = "__OTR__peach_kart/kart_180_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach180Wheel3[] = "__OTR__peach_kart/kart_180_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach181Wheel0[] = "__OTR__peach_kart/kart_181_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach181Wheel1[] = "__OTR__peach_kart/kart_181_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach181Wheel2[] = "__OTR__peach_kart/kart_181_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach181Wheel3[] = "__OTR__peach_kart/kart_181_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach182Wheel0[] = "__OTR__peach_kart/kart_182_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach182Wheel1[] = "__OTR__peach_kart/kart_182_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach182Wheel2[] = "__OTR__peach_kart/kart_182_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach182Wheel3[] = "__OTR__peach_kart/kart_182_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach183Wheel0[] = "__OTR__peach_kart/kart_183_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach183Wheel1[] = "__OTR__peach_kart/kart_183_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach183Wheel2[] = "__OTR__peach_kart/kart_183_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach183Wheel3[] = "__OTR__peach_kart/kart_183_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach184Wheel0[] = "__OTR__peach_kart/kart_184_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach184Wheel1[] = "__OTR__peach_kart/kart_184_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach184Wheel2[] = "__OTR__peach_kart/kart_184_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach184Wheel3[] = "__OTR__peach_kart/kart_184_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach185Wheel0[] = "__OTR__peach_kart/kart_185_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach185Wheel1[] = "__OTR__peach_kart/kart_185_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach185Wheel2[] = "__OTR__peach_kart/kart_185_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach185Wheel3[] = "__OTR__peach_kart/kart_185_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach186Wheel0[] = "__OTR__peach_kart/kart_186_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach186Wheel1[] = "__OTR__peach_kart/kart_186_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach186Wheel2[] = "__OTR__peach_kart/kart_186_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach186Wheel3[] = "__OTR__peach_kart/kart_186_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach187Wheel0[] = "__OTR__peach_kart/kart_187_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach187Wheel1[] = "__OTR__peach_kart/kart_187_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach187Wheel2[] = "__OTR__peach_kart/kart_187_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach187Wheel3[] = "__OTR__peach_kart/kart_187_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach188Wheel0[] = "__OTR__peach_kart/kart_188_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach188Wheel1[] = "__OTR__peach_kart/kart_188_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach188Wheel2[] = "__OTR__peach_kart/kart_188_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach188Wheel3[] = "__OTR__peach_kart/kart_188_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach189Wheel0[] = "__OTR__peach_kart/kart_189_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach189Wheel1[] = "__OTR__peach_kart/kart_189_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach189Wheel2[] = "__OTR__peach_kart/kart_189_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach189Wheel3[] = "__OTR__peach_kart/kart_189_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach190Wheel0[] = "__OTR__peach_kart/kart_190_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach190Wheel1[] = "__OTR__peach_kart/kart_190_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach190Wheel2[] = "__OTR__peach_kart/kart_190_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach190Wheel3[] = "__OTR__peach_kart/kart_190_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach191Wheel0[] = "__OTR__peach_kart/kart_191_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach191Wheel1[] = "__OTR__peach_kart/kart_191_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach191Wheel2[] = "__OTR__peach_kart/kart_191_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach191Wheel3[] = "__OTR__peach_kart/kart_191_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach192Wheel0[] = "__OTR__peach_kart/kart_192_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach192Wheel1[] = "__OTR__peach_kart/kart_192_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach192Wheel2[] = "__OTR__peach_kart/kart_192_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach192Wheel3[] = "__OTR__peach_kart/kart_192_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach193Wheel0[] = "__OTR__peach_kart/kart_193_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach193Wheel1[] = "__OTR__peach_kart/kart_193_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach193Wheel2[] = "__OTR__peach_kart/kart_193_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach193Wheel3[] = "__OTR__peach_kart/kart_193_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach194Wheel0[] = "__OTR__peach_kart/kart_194_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach194Wheel1[] = "__OTR__peach_kart/kart_194_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach194Wheel2[] = "__OTR__peach_kart/kart_194_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach194Wheel3[] = "__OTR__peach_kart/kart_194_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach195Wheel0[] = "__OTR__peach_kart/kart_195_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach195Wheel1[] = "__OTR__peach_kart/kart_195_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach195Wheel2[] = "__OTR__peach_kart/kart_195_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach195Wheel3[] = "__OTR__peach_kart/kart_195_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach196Wheel0[] = "__OTR__peach_kart/kart_196_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach196Wheel1[] = "__OTR__peach_kart/kart_196_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach196Wheel2[] = "__OTR__peach_kart/kart_196_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach196Wheel3[] = "__OTR__peach_kart/kart_196_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach197Wheel0[] = "__OTR__peach_kart/kart_197_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach197Wheel1[] = "__OTR__peach_kart/kart_197_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach197Wheel2[] = "__OTR__peach_kart/kart_197_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach197Wheel3[] = "__OTR__peach_kart/kart_197_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach198Wheel0[] = "__OTR__peach_kart/kart_198_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach198Wheel1[] = "__OTR__peach_kart/kart_198_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach198Wheel2[] = "__OTR__peach_kart/kart_198_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach198Wheel3[] = "__OTR__peach_kart/kart_198_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach199Wheel0[] = "__OTR__peach_kart/kart_199_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach199Wheel1[] = "__OTR__peach_kart/kart_199_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach199Wheel2[] = "__OTR__peach_kart/kart_199_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach199Wheel3[] = "__OTR__peach_kart/kart_199_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach200Wheel0[] = "__OTR__peach_kart/kart_200_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach200Wheel1[] = "__OTR__peach_kart/kart_200_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach200Wheel2[] = "__OTR__peach_kart/kart_200_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach200Wheel3[] = "__OTR__peach_kart/kart_200_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach201Wheel0[] = "__OTR__peach_kart/kart_201_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach201Wheel1[] = "__OTR__peach_kart/kart_201_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach201Wheel2[] = "__OTR__peach_kart/kart_201_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach201Wheel3[] = "__OTR__peach_kart/kart_201_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach202Wheel0[] = "__OTR__peach_kart/kart_202_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach202Wheel1[] = "__OTR__peach_kart/kart_202_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach202Wheel2[] = "__OTR__peach_kart/kart_202_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach202Wheel3[] = "__OTR__peach_kart/kart_202_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach203Wheel0[] = "__OTR__peach_kart/kart_203_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach203Wheel1[] = "__OTR__peach_kart/kart_203_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach203Wheel2[] = "__OTR__peach_kart/kart_203_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach203Wheel3[] = "__OTR__peach_kart/kart_203_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach204Wheel0[] = "__OTR__peach_kart/kart_204_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach204Wheel1[] = "__OTR__peach_kart/kart_204_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach204Wheel2[] = "__OTR__peach_kart/kart_204_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach204Wheel3[] = "__OTR__peach_kart/kart_204_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach205Wheel0[] = "__OTR__peach_kart/kart_205_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach205Wheel1[] = "__OTR__peach_kart/kart_205_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach205Wheel2[] = "__OTR__peach_kart/kart_205_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach205Wheel3[] = "__OTR__peach_kart/kart_205_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach206Wheel0[] = "__OTR__peach_kart/kart_206_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach206Wheel1[] = "__OTR__peach_kart/kart_206_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach206Wheel2[] = "__OTR__peach_kart/kart_206_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach206Wheel3[] = "__OTR__peach_kart/kart_206_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach207Wheel0[] = "__OTR__peach_kart/kart_207_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach207Wheel1[] = "__OTR__peach_kart/kart_207_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach207Wheel2[] = "__OTR__peach_kart/kart_207_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach207Wheel3[] = "__OTR__peach_kart/kart_207_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach208Wheel0[] = "__OTR__peach_kart/kart_208_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach208Wheel1[] = "__OTR__peach_kart/kart_208_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach208Wheel2[] = "__OTR__peach_kart/kart_208_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach208Wheel3[] = "__OTR__peach_kart/kart_208_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach209Wheel0[] = "__OTR__peach_kart/kart_209_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach209Wheel1[] = "__OTR__peach_kart/kart_209_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach209Wheel2[] = "__OTR__peach_kart/kart_209_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach209Wheel3[] = "__OTR__peach_kart/kart_209_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach210Wheel0[] = "__OTR__peach_kart/kart_210_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach210Wheel1[] = "__OTR__peach_kart/kart_210_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach210Wheel2[] = "__OTR__peach_kart/kart_210_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach210Wheel3[] = "__OTR__peach_kart/kart_210_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach211Wheel0[] = "__OTR__peach_kart/kart_211_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach211Wheel1[] = "__OTR__peach_kart/kart_211_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach211Wheel2[] = "__OTR__peach_kart/kart_211_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach211Wheel3[] = "__OTR__peach_kart/kart_211_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach212Wheel0[] = "__OTR__peach_kart/kart_212_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach212Wheel1[] = "__OTR__peach_kart/kart_212_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach212Wheel2[] = "__OTR__peach_kart/kart_212_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach212Wheel3[] = "__OTR__peach_kart/kart_212_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach213Wheel0[] = "__OTR__peach_kart/kart_213_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach213Wheel1[] = "__OTR__peach_kart/kart_213_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach213Wheel2[] = "__OTR__peach_kart/kart_213_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach213Wheel3[] = "__OTR__peach_kart/kart_213_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach214Wheel0[] = "__OTR__peach_kart/kart_214_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach214Wheel1[] = "__OTR__peach_kart/kart_214_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach214Wheel2[] = "__OTR__peach_kart/kart_214_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach214Wheel3[] = "__OTR__peach_kart/kart_214_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach215Wheel0[] = "__OTR__peach_kart/kart_215_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach215Wheel1[] = "__OTR__peach_kart/kart_215_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach215Wheel2[] = "__OTR__peach_kart/kart_215_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach215Wheel3[] = "__OTR__peach_kart/kart_215_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach216Wheel0[] = "__OTR__peach_kart/kart_216_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach216Wheel1[] = "__OTR__peach_kart/kart_216_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach216Wheel2[] = "__OTR__peach_kart/kart_216_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach216Wheel3[] = "__OTR__peach_kart/kart_216_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach217Wheel0[] = "__OTR__peach_kart/kart_217_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach217Wheel1[] = "__OTR__peach_kart/kart_217_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach217Wheel2[] = "__OTR__peach_kart/kart_217_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach217Wheel3[] = "__OTR__peach_kart/kart_217_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach218Wheel0[] = "__OTR__peach_kart/kart_218_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach218Wheel1[] = "__OTR__peach_kart/kart_218_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach218Wheel2[] = "__OTR__peach_kart/kart_218_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach218Wheel3[] = "__OTR__peach_kart/kart_218_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach219Wheel0[] = "__OTR__peach_kart/kart_219_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach219Wheel1[] = "__OTR__peach_kart/kart_219_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach219Wheel2[] = "__OTR__peach_kart/kart_219_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach219Wheel3[] = "__OTR__peach_kart/kart_219_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach220Wheel0[] = "__OTR__peach_kart/kart_220_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach220Wheel1[] = "__OTR__peach_kart/kart_220_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach220Wheel2[] = "__OTR__peach_kart/kart_220_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach220Wheel3[] = "__OTR__peach_kart/kart_220_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach221Wheel0[] = "__OTR__peach_kart/kart_221_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach221Wheel1[] = "__OTR__peach_kart/kart_221_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach221Wheel2[] = "__OTR__peach_kart/kart_221_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach221Wheel3[] = "__OTR__peach_kart/kart_221_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach222Wheel0[] = "__OTR__peach_kart/kart_222_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach222Wheel1[] = "__OTR__peach_kart/kart_222_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach222Wheel2[] = "__OTR__peach_kart/kart_222_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach222Wheel3[] = "__OTR__peach_kart/kart_222_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach223Wheel0[] = "__OTR__peach_kart/kart_223_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach223Wheel1[] = "__OTR__peach_kart/kart_223_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach223Wheel2[] = "__OTR__peach_kart/kart_223_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach223Wheel3[] = "__OTR__peach_kart/kart_223_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach224Wheel0[] = "__OTR__peach_kart/kart_224_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach224Wheel1[] = "__OTR__peach_kart/kart_224_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach224Wheel2[] = "__OTR__peach_kart/kart_224_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach224Wheel3[] = "__OTR__peach_kart/kart_224_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach225Wheel0[] = "__OTR__peach_kart/kart_225_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach225Wheel1[] = "__OTR__peach_kart/kart_225_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach225Wheel2[] = "__OTR__peach_kart/kart_225_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach225Wheel3[] = "__OTR__peach_kart/kart_225_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach226Wheel0[] = "__OTR__peach_kart/kart_226_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach226Wheel1[] = "__OTR__peach_kart/kart_226_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach226Wheel2[] = "__OTR__peach_kart/kart_226_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach226Wheel3[] = "__OTR__peach_kart/kart_226_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach227Wheel0[] = "__OTR__peach_kart/kart_227_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach227Wheel1[] = "__OTR__peach_kart/kart_227_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach227Wheel2[] = "__OTR__peach_kart/kart_227_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach227Wheel3[] = "__OTR__peach_kart/kart_227_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach228Wheel0[] = "__OTR__peach_kart/kart_228_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach228Wheel1[] = "__OTR__peach_kart/kart_228_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach228Wheel2[] = "__OTR__peach_kart/kart_228_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach228Wheel3[] = "__OTR__peach_kart/kart_228_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach229Wheel0[] = "__OTR__peach_kart/kart_229_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach229Wheel1[] = "__OTR__peach_kart/kart_229_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach229Wheel2[] = "__OTR__peach_kart/kart_229_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach229Wheel3[] = "__OTR__peach_kart/kart_229_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach230Wheel0[] = "__OTR__peach_kart/kart_230_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach230Wheel1[] = "__OTR__peach_kart/kart_230_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach230Wheel2[] = "__OTR__peach_kart/kart_230_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach230Wheel3[] = "__OTR__peach_kart/kart_230_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach231Wheel0[] = "__OTR__peach_kart/kart_231_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach231Wheel1[] = "__OTR__peach_kart/kart_231_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach231Wheel2[] = "__OTR__peach_kart/kart_231_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach231Wheel3[] = "__OTR__peach_kart/kart_231_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach232Wheel0[] = "__OTR__peach_kart/kart_232_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach232Wheel1[] = "__OTR__peach_kart/kart_232_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach232Wheel2[] = "__OTR__peach_kart/kart_232_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach232Wheel3[] = "__OTR__peach_kart/kart_232_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach233Wheel0[] = "__OTR__peach_kart/kart_233_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach233Wheel1[] = "__OTR__peach_kart/kart_233_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach233Wheel2[] = "__OTR__peach_kart/kart_233_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach233Wheel3[] = "__OTR__peach_kart/kart_233_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach234Wheel0[] = "__OTR__peach_kart/kart_234_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach234Wheel1[] = "__OTR__peach_kart/kart_234_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach234Wheel2[] = "__OTR__peach_kart/kart_234_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach234Wheel3[] = "__OTR__peach_kart/kart_234_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach235Wheel0[] = "__OTR__peach_kart/kart_235_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach235Wheel1[] = "__OTR__peach_kart/kart_235_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach235Wheel2[] = "__OTR__peach_kart/kart_235_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach235Wheel3[] = "__OTR__peach_kart/kart_235_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach236Wheel0[] = "__OTR__peach_kart/kart_236_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach236Wheel1[] = "__OTR__peach_kart/kart_236_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach236Wheel2[] = "__OTR__peach_kart/kart_236_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach236Wheel3[] = "__OTR__peach_kart/kart_236_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach237Wheel0[] = "__OTR__peach_kart/kart_237_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach237Wheel1[] = "__OTR__peach_kart/kart_237_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach237Wheel2[] = "__OTR__peach_kart/kart_237_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach237Wheel3[] = "__OTR__peach_kart/kart_237_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach238Wheel0[] = "__OTR__peach_kart/kart_238_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach238Wheel1[] = "__OTR__peach_kart/kart_238_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach238Wheel2[] = "__OTR__peach_kart/kart_238_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach238Wheel3[] = "__OTR__peach_kart/kart_238_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach239Wheel0[] = "__OTR__peach_kart/kart_239_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach239Wheel1[] = "__OTR__peach_kart/kart_239_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach239Wheel2[] = "__OTR__peach_kart/kart_239_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach239Wheel3[] = "__OTR__peach_kart/kart_239_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach240Wheel0[] = "__OTR__peach_kart/kart_240_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach240Wheel1[] = "__OTR__peach_kart/kart_240_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach240Wheel2[] = "__OTR__peach_kart/kart_240_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach240Wheel3[] = "__OTR__peach_kart/kart_240_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach241Wheel0[] = "__OTR__peach_kart/kart_241_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach241Wheel1[] = "__OTR__peach_kart/kart_241_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach241Wheel2[] = "__OTR__peach_kart/kart_241_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach241Wheel3[] = "__OTR__peach_kart/kart_241_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach242Wheel0[] = "__OTR__peach_kart/kart_242_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach242Wheel1[] = "__OTR__peach_kart/kart_242_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach242Wheel2[] = "__OTR__peach_kart/kart_242_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach242Wheel3[] = "__OTR__peach_kart/kart_242_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach243Wheel0[] = "__OTR__peach_kart/kart_243_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach243Wheel1[] = "__OTR__peach_kart/kart_243_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach243Wheel2[] = "__OTR__peach_kart/kart_243_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach243Wheel3[] = "__OTR__peach_kart/kart_243_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach244Wheel0[] = "__OTR__peach_kart/kart_244_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach244Wheel1[] = "__OTR__peach_kart/kart_244_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach244Wheel2[] = "__OTR__peach_kart/kart_244_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach244Wheel3[] = "__OTR__peach_kart/kart_244_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach245Wheel0[] = "__OTR__peach_kart/kart_245_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach245Wheel1[] = "__OTR__peach_kart/kart_245_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach245Wheel2[] = "__OTR__peach_kart/kart_245_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach245Wheel3[] = "__OTR__peach_kart/kart_245_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach246Wheel0[] = "__OTR__peach_kart/kart_246_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach246Wheel1[] = "__OTR__peach_kart/kart_246_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach246Wheel2[] = "__OTR__peach_kart/kart_246_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach246Wheel3[] = "__OTR__peach_kart/kart_246_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach247Wheel0[] = "__OTR__peach_kart/kart_247_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach247Wheel1[] = "__OTR__peach_kart/kart_247_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach247Wheel2[] = "__OTR__peach_kart/kart_247_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach247Wheel3[] = "__OTR__peach_kart/kart_247_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach248Wheel0[] = "__OTR__peach_kart/kart_248_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach248Wheel1[] = "__OTR__peach_kart/kart_248_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach248Wheel2[] = "__OTR__peach_kart/kart_248_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach248Wheel3[] = "__OTR__peach_kart/kart_248_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach249Wheel0[] = "__OTR__peach_kart/kart_249_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach249Wheel1[] = "__OTR__peach_kart/kart_249_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach249Wheel2[] = "__OTR__peach_kart/kart_249_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach249Wheel3[] = "__OTR__peach_kart/kart_249_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach250Wheel0[] = "__OTR__peach_kart/kart_250_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach250Wheel1[] = "__OTR__peach_kart/kart_250_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach250Wheel2[] = "__OTR__peach_kart/kart_250_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach250Wheel3[] = "__OTR__peach_kart/kart_250_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach251Wheel0[] = "__OTR__peach_kart/kart_251_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach251Wheel1[] = "__OTR__peach_kart/kart_251_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach251Wheel2[] = "__OTR__peach_kart/kart_251_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach251Wheel3[] = "__OTR__peach_kart/kart_251_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach252Wheel0[] = "__OTR__peach_kart/kart_252_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach252Wheel1[] = "__OTR__peach_kart/kart_252_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach252Wheel2[] = "__OTR__peach_kart/kart_252_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach252Wheel3[] = "__OTR__peach_kart/kart_252_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach253Wheel0[] = "__OTR__peach_kart/kart_253_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach253Wheel1[] = "__OTR__peach_kart/kart_253_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach253Wheel2[] = "__OTR__peach_kart/kart_253_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach253Wheel3[] = "__OTR__peach_kart/kart_253_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach254Wheel0[] = "__OTR__peach_kart/kart_254_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach254Wheel1[] = "__OTR__peach_kart/kart_254_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach254Wheel2[] = "__OTR__peach_kart/kart_254_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach254Wheel3[] = "__OTR__peach_kart/kart_254_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach255Wheel0[] = "__OTR__peach_kart/kart_255_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach255Wheel1[] = "__OTR__peach_kart/kart_255_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach255Wheel2[] = "__OTR__peach_kart/kart_255_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach255Wheel3[] = "__OTR__peach_kart/kart_255_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach256Wheel0[] = "__OTR__peach_kart/kart_256_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach256Wheel1[] = "__OTR__peach_kart/kart_256_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach256Wheel2[] = "__OTR__peach_kart/kart_256_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach256Wheel3[] = "__OTR__peach_kart/kart_256_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach257Wheel0[] = "__OTR__peach_kart/kart_257_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach257Wheel1[] = "__OTR__peach_kart/kart_257_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach257Wheel2[] = "__OTR__peach_kart/kart_257_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach257Wheel3[] = "__OTR__peach_kart/kart_257_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach258Wheel0[] = "__OTR__peach_kart/kart_258_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach258Wheel1[] = "__OTR__peach_kart/kart_258_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach258Wheel2[] = "__OTR__peach_kart/kart_258_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach258Wheel3[] = "__OTR__peach_kart/kart_258_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach259Wheel0[] = "__OTR__peach_kart/kart_259_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach259Wheel1[] = "__OTR__peach_kart/kart_259_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach259Wheel2[] = "__OTR__peach_kart/kart_259_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach259Wheel3[] = "__OTR__peach_kart/kart_259_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach260Wheel0[] = "__OTR__peach_kart/kart_260_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach260Wheel1[] = "__OTR__peach_kart/kart_260_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach260Wheel2[] = "__OTR__peach_kart/kart_260_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach260Wheel3[] = "__OTR__peach_kart/kart_260_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach261Wheel0[] = "__OTR__peach_kart/kart_261_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach261Wheel1[] = "__OTR__peach_kart/kart_261_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach261Wheel2[] = "__OTR__peach_kart/kart_261_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach261Wheel3[] = "__OTR__peach_kart/kart_261_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach262Wheel0[] = "__OTR__peach_kart/kart_262_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach262Wheel1[] = "__OTR__peach_kart/kart_262_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach262Wheel2[] = "__OTR__peach_kart/kart_262_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach262Wheel3[] = "__OTR__peach_kart/kart_262_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach263Wheel0[] = "__OTR__peach_kart/kart_263_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach263Wheel1[] = "__OTR__peach_kart/kart_263_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach263Wheel2[] = "__OTR__peach_kart/kart_263_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach263Wheel3[] = "__OTR__peach_kart/kart_263_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach264Wheel0[] = "__OTR__peach_kart/kart_264_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach264Wheel1[] = "__OTR__peach_kart/kart_264_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach264Wheel2[] = "__OTR__peach_kart/kart_264_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach264Wheel3[] = "__OTR__peach_kart/kart_264_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach265Wheel0[] = "__OTR__peach_kart/kart_265_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach265Wheel1[] = "__OTR__peach_kart/kart_265_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach265Wheel2[] = "__OTR__peach_kart/kart_265_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach265Wheel3[] = "__OTR__peach_kart/kart_265_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach266Wheel0[] = "__OTR__peach_kart/kart_266_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach266Wheel1[] = "__OTR__peach_kart/kart_266_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach266Wheel2[] = "__OTR__peach_kart/kart_266_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach266Wheel3[] = "__OTR__peach_kart/kart_266_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach267Wheel0[] = "__OTR__peach_kart/kart_267_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach267Wheel1[] = "__OTR__peach_kart/kart_267_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach267Wheel2[] = "__OTR__peach_kart/kart_267_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach267Wheel3[] = "__OTR__peach_kart/kart_267_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach268Wheel0[] = "__OTR__peach_kart/kart_268_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach268Wheel1[] = "__OTR__peach_kart/kart_268_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach268Wheel2[] = "__OTR__peach_kart/kart_268_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach268Wheel3[] = "__OTR__peach_kart/kart_268_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach269Wheel0[] = "__OTR__peach_kart/kart_269_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach269Wheel1[] = "__OTR__peach_kart/kart_269_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach269Wheel2[] = "__OTR__peach_kart/kart_269_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach269Wheel3[] = "__OTR__peach_kart/kart_269_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach270Wheel0[] = "__OTR__peach_kart/kart_270_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach270Wheel1[] = "__OTR__peach_kart/kart_270_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach270Wheel2[] = "__OTR__peach_kart/kart_270_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach270Wheel3[] = "__OTR__peach_kart/kart_270_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach271Wheel0[] = "__OTR__peach_kart/kart_271_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach271Wheel1[] = "__OTR__peach_kart/kart_271_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach271Wheel2[] = "__OTR__peach_kart/kart_271_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach271Wheel3[] = "__OTR__peach_kart/kart_271_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach272Wheel0[] = "__OTR__peach_kart/kart_272_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach272Wheel1[] = "__OTR__peach_kart/kart_272_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach272Wheel2[] = "__OTR__peach_kart/kart_272_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach272Wheel3[] = "__OTR__peach_kart/kart_272_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach273Wheel0[] = "__OTR__peach_kart/kart_273_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach273Wheel1[] = "__OTR__peach_kart/kart_273_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach273Wheel2[] = "__OTR__peach_kart/kart_273_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach273Wheel3[] = "__OTR__peach_kart/kart_273_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach274Wheel0[] = "__OTR__peach_kart/kart_274_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach274Wheel1[] = "__OTR__peach_kart/kart_274_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach274Wheel2[] = "__OTR__peach_kart/kart_274_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach274Wheel3[] = "__OTR__peach_kart/kart_274_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach275Wheel0[] = "__OTR__peach_kart/kart_275_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach275Wheel1[] = "__OTR__peach_kart/kart_275_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach275Wheel2[] = "__OTR__peach_kart/kart_275_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach275Wheel3[] = "__OTR__peach_kart/kart_275_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach276Wheel0[] = "__OTR__peach_kart/kart_276_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach276Wheel1[] = "__OTR__peach_kart/kart_276_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach276Wheel2[] = "__OTR__peach_kart/kart_276_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach276Wheel3[] = "__OTR__peach_kart/kart_276_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach277Wheel0[] = "__OTR__peach_kart/kart_277_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach277Wheel1[] = "__OTR__peach_kart/kart_277_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach277Wheel2[] = "__OTR__peach_kart/kart_277_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach277Wheel3[] = "__OTR__peach_kart/kart_277_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach278Wheel0[] = "__OTR__peach_kart/kart_278_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach278Wheel1[] = "__OTR__peach_kart/kart_278_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach278Wheel2[] = "__OTR__peach_kart/kart_278_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach278Wheel3[] = "__OTR__peach_kart/kart_278_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach279Wheel0[] = "__OTR__peach_kart/kart_279_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach279Wheel1[] = "__OTR__peach_kart/kart_279_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach279Wheel2[] = "__OTR__peach_kart/kart_279_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach279Wheel3[] = "__OTR__peach_kart/kart_279_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach280Wheel0[] = "__OTR__peach_kart/kart_280_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach280Wheel1[] = "__OTR__peach_kart/kart_280_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach280Wheel2[] = "__OTR__peach_kart/kart_280_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach280Wheel3[] = "__OTR__peach_kart/kart_280_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach281Wheel0[] = "__OTR__peach_kart/kart_281_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach281Wheel1[] = "__OTR__peach_kart/kart_281_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach281Wheel2[] = "__OTR__peach_kart/kart_281_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach281Wheel3[] = "__OTR__peach_kart/kart_281_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach282Wheel0[] = "__OTR__peach_kart/kart_282_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach282Wheel1[] = "__OTR__peach_kart/kart_282_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach282Wheel2[] = "__OTR__peach_kart/kart_282_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach282Wheel3[] = "__OTR__peach_kart/kart_282_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach283Wheel0[] = "__OTR__peach_kart/kart_283_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach283Wheel1[] = "__OTR__peach_kart/kart_283_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach283Wheel2[] = "__OTR__peach_kart/kart_283_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach283Wheel3[] = "__OTR__peach_kart/kart_283_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach284Wheel0[] = "__OTR__peach_kart/kart_284_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach284Wheel1[] = "__OTR__peach_kart/kart_284_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach284Wheel2[] = "__OTR__peach_kart/kart_284_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach284Wheel3[] = "__OTR__peach_kart/kart_284_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach285Wheel0[] = "__OTR__peach_kart/kart_285_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach285Wheel1[] = "__OTR__peach_kart/kart_285_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach285Wheel2[] = "__OTR__peach_kart/kart_285_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach285Wheel3[] = "__OTR__peach_kart/kart_285_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach286Wheel0[] = "__OTR__peach_kart/kart_286_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach286Wheel1[] = "__OTR__peach_kart/kart_286_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach286Wheel2[] = "__OTR__peach_kart/kart_286_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach286Wheel3[] = "__OTR__peach_kart/kart_286_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach287Wheel0[] = "__OTR__peach_kart/kart_287_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach287Wheel1[] = "__OTR__peach_kart/kart_287_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach287Wheel2[] = "__OTR__peach_kart/kart_287_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach287Wheel3[] = "__OTR__peach_kart/kart_287_wheel_3"; - -static const ALIGN_ASSET(2) char gKartPeach288Wheel0[] = "__OTR__peach_kart/kart_288_wheel_0"; - -static const ALIGN_ASSET(2) char gKartPeach288Wheel1[] = "__OTR__peach_kart/kart_288_wheel_1"; - -static const ALIGN_ASSET(2) char gKartPeach288Wheel2[] = "__OTR__peach_kart/kart_288_wheel_2"; - -static const ALIGN_ASSET(2) char gKartPeach288Wheel3[] = "__OTR__peach_kart/kart_288_wheel_3"; - -static const char* peach_kart_wheels[] = { - gKartPeach000Wheel0, - gKartPeach000Wheel1, - gKartPeach000Wheel2, - gKartPeach000Wheel3, - gKartPeach001Wheel0, - gKartPeach001Wheel1, - gKartPeach001Wheel2, - gKartPeach001Wheel3, - gKartPeach002Wheel0, - gKartPeach002Wheel1, - gKartPeach002Wheel2, - gKartPeach002Wheel3, - gKartPeach003Wheel0, - gKartPeach003Wheel1, - gKartPeach003Wheel2, - gKartPeach003Wheel3, - gKartPeach004Wheel0, - gKartPeach004Wheel1, - gKartPeach004Wheel2, - gKartPeach004Wheel3, - gKartPeach005Wheel0, - gKartPeach005Wheel1, - gKartPeach005Wheel2, - gKartPeach005Wheel3, - gKartPeach006Wheel0, - gKartPeach006Wheel1, - gKartPeach006Wheel2, - gKartPeach006Wheel3, - gKartPeach007Wheel0, - gKartPeach007Wheel1, - gKartPeach007Wheel2, - gKartPeach007Wheel3, - gKartPeach008Wheel0, - gKartPeach008Wheel1, - gKartPeach008Wheel2, - gKartPeach008Wheel3, - gKartPeach009Wheel0, - gKartPeach009Wheel1, - gKartPeach009Wheel2, - gKartPeach009Wheel3, - gKartPeach010Wheel0, - gKartPeach010Wheel1, - gKartPeach010Wheel2, - gKartPeach010Wheel3, - gKartPeach011Wheel0, - gKartPeach011Wheel1, - gKartPeach011Wheel2, - gKartPeach011Wheel3, - gKartPeach012Wheel0, - gKartPeach012Wheel1, - gKartPeach012Wheel2, - gKartPeach012Wheel3, - gKartPeach013Wheel0, - gKartPeach013Wheel1, - gKartPeach013Wheel2, - gKartPeach013Wheel3, - gKartPeach014Wheel0, - gKartPeach014Wheel1, - gKartPeach014Wheel2, - gKartPeach014Wheel3, - gKartPeach015Wheel0, - gKartPeach015Wheel1, - gKartPeach015Wheel2, - gKartPeach015Wheel3, - gKartPeach016Wheel0, - gKartPeach016Wheel1, - gKartPeach016Wheel2, - gKartPeach016Wheel3, - gKartPeach017Wheel0, - gKartPeach017Wheel1, - gKartPeach017Wheel2, - gKartPeach017Wheel3, - gKartPeach018Wheel0, - gKartPeach018Wheel1, - gKartPeach018Wheel2, - gKartPeach018Wheel3, - gKartPeach019Wheel0, - gKartPeach019Wheel1, - gKartPeach019Wheel2, - gKartPeach019Wheel3, - gKartPeach020Wheel0, - gKartPeach020Wheel1, - gKartPeach020Wheel2, - gKartPeach020Wheel3, - gKartPeach021Wheel0, - gKartPeach021Wheel1, - gKartPeach021Wheel2, - gKartPeach021Wheel3, - gKartPeach022Wheel0, - gKartPeach022Wheel1, - gKartPeach022Wheel2, - gKartPeach022Wheel3, - gKartPeach023Wheel0, - gKartPeach023Wheel1, - gKartPeach023Wheel2, - gKartPeach023Wheel3, - gKartPeach024Wheel0, - gKartPeach024Wheel1, - gKartPeach024Wheel2, - gKartPeach024Wheel3, - gKartPeach025Wheel0, - gKartPeach025Wheel1, - gKartPeach025Wheel2, - gKartPeach025Wheel3, - gKartPeach026Wheel0, - gKartPeach026Wheel1, - gKartPeach026Wheel2, - gKartPeach026Wheel3, - gKartPeach027Wheel0, - gKartPeach027Wheel1, - gKartPeach027Wheel2, - gKartPeach027Wheel3, - gKartPeach028Wheel0, - gKartPeach028Wheel1, - gKartPeach028Wheel2, - gKartPeach028Wheel3, - gKartPeach029Wheel0, - gKartPeach029Wheel1, - gKartPeach029Wheel2, - gKartPeach029Wheel3, - gKartPeach030Wheel0, - gKartPeach030Wheel1, - gKartPeach030Wheel2, - gKartPeach030Wheel3, - gKartPeach031Wheel0, - gKartPeach031Wheel1, - gKartPeach031Wheel2, - gKartPeach031Wheel3, - gKartPeach032Wheel0, - gKartPeach032Wheel1, - gKartPeach032Wheel2, - gKartPeach032Wheel3, - gKartPeach033Wheel0, - gKartPeach033Wheel1, - gKartPeach033Wheel2, - gKartPeach033Wheel3, - gKartPeach034Wheel0, - gKartPeach034Wheel1, - gKartPeach034Wheel2, - gKartPeach034Wheel3, - gKartPeach035Wheel0, - gKartPeach035Wheel1, - gKartPeach035Wheel2, - gKartPeach035Wheel3, - gKartPeach036Wheel0, - gKartPeach036Wheel1, - gKartPeach036Wheel2, - gKartPeach036Wheel3, - gKartPeach037Wheel0, - gKartPeach037Wheel1, - gKartPeach037Wheel2, - gKartPeach037Wheel3, - gKartPeach038Wheel0, - gKartPeach038Wheel1, - gKartPeach038Wheel2, - gKartPeach038Wheel3, - gKartPeach039Wheel0, - gKartPeach039Wheel1, - gKartPeach039Wheel2, - gKartPeach039Wheel3, - gKartPeach040Wheel0, - gKartPeach040Wheel1, - gKartPeach040Wheel2, - gKartPeach040Wheel3, - gKartPeach041Wheel0, - gKartPeach041Wheel1, - gKartPeach041Wheel2, - gKartPeach041Wheel3, - gKartPeach042Wheel0, - gKartPeach042Wheel1, - gKartPeach042Wheel2, - gKartPeach042Wheel3, - gKartPeach043Wheel0, - gKartPeach043Wheel1, - gKartPeach043Wheel2, - gKartPeach043Wheel3, - gKartPeach044Wheel0, - gKartPeach044Wheel1, - gKartPeach044Wheel2, - gKartPeach044Wheel3, - gKartPeach045Wheel0, - gKartPeach045Wheel1, - gKartPeach045Wheel2, - gKartPeach045Wheel3, - gKartPeach046Wheel0, - gKartPeach046Wheel1, - gKartPeach046Wheel2, - gKartPeach046Wheel3, - gKartPeach047Wheel0, - gKartPeach047Wheel1, - gKartPeach047Wheel2, - gKartPeach047Wheel3, - gKartPeach048Wheel0, - gKartPeach048Wheel1, - gKartPeach048Wheel2, - gKartPeach048Wheel3, - gKartPeach049Wheel0, - gKartPeach049Wheel1, - gKartPeach049Wheel2, - gKartPeach049Wheel3, - gKartPeach050Wheel0, - gKartPeach050Wheel1, - gKartPeach050Wheel2, - gKartPeach050Wheel3, - gKartPeach051Wheel0, - gKartPeach051Wheel1, - gKartPeach051Wheel2, - gKartPeach051Wheel3, - gKartPeach052Wheel0, - gKartPeach052Wheel1, - gKartPeach052Wheel2, - gKartPeach052Wheel3, - gKartPeach053Wheel0, - gKartPeach053Wheel1, - gKartPeach053Wheel2, - gKartPeach053Wheel3, - gKartPeach054Wheel0, - gKartPeach054Wheel1, - gKartPeach054Wheel2, - gKartPeach054Wheel3, - gKartPeach055Wheel0, - gKartPeach055Wheel1, - gKartPeach055Wheel2, - gKartPeach055Wheel3, - gKartPeach056Wheel0, - gKartPeach056Wheel1, - gKartPeach056Wheel2, - gKartPeach056Wheel3, - gKartPeach057Wheel0, - gKartPeach057Wheel1, - gKartPeach057Wheel2, - gKartPeach057Wheel3, - gKartPeach058Wheel0, - gKartPeach058Wheel1, - gKartPeach058Wheel2, - gKartPeach058Wheel3, - gKartPeach059Wheel0, - gKartPeach059Wheel1, - gKartPeach059Wheel2, - gKartPeach059Wheel3, - gKartPeach060Wheel0, - gKartPeach060Wheel1, - gKartPeach060Wheel2, - gKartPeach060Wheel3, - gKartPeach061Wheel0, - gKartPeach061Wheel1, - gKartPeach061Wheel2, - gKartPeach061Wheel3, - gKartPeach062Wheel0, - gKartPeach062Wheel1, - gKartPeach062Wheel2, - gKartPeach062Wheel3, - gKartPeach063Wheel0, - gKartPeach063Wheel1, - gKartPeach063Wheel2, - gKartPeach063Wheel3, - gKartPeach064Wheel0, - gKartPeach064Wheel1, - gKartPeach064Wheel2, - gKartPeach064Wheel3, - gKartPeach065Wheel0, - gKartPeach065Wheel1, - gKartPeach065Wheel2, - gKartPeach065Wheel3, - gKartPeach066Wheel0, - gKartPeach066Wheel1, - gKartPeach066Wheel2, - gKartPeach066Wheel3, - gKartPeach067Wheel0, - gKartPeach067Wheel1, - gKartPeach067Wheel2, - gKartPeach067Wheel3, - gKartPeach068Wheel0, - gKartPeach068Wheel1, - gKartPeach068Wheel2, - gKartPeach068Wheel3, - gKartPeach069Wheel0, - gKartPeach069Wheel1, - gKartPeach069Wheel2, - gKartPeach069Wheel3, - gKartPeach070Wheel0, - gKartPeach070Wheel1, - gKartPeach070Wheel2, - gKartPeach070Wheel3, - gKartPeach071Wheel0, - gKartPeach071Wheel1, - gKartPeach071Wheel2, - gKartPeach071Wheel3, - gKartPeach072Wheel0, - gKartPeach072Wheel1, - gKartPeach072Wheel2, - gKartPeach072Wheel3, - gKartPeach073Wheel0, - gKartPeach073Wheel1, - gKartPeach073Wheel2, - gKartPeach073Wheel3, - gKartPeach074Wheel0, - gKartPeach074Wheel1, - gKartPeach074Wheel2, - gKartPeach074Wheel3, - gKartPeach075Wheel0, - gKartPeach075Wheel1, - gKartPeach075Wheel2, - gKartPeach075Wheel3, - gKartPeach076Wheel0, - gKartPeach076Wheel1, - gKartPeach076Wheel2, - gKartPeach076Wheel3, - gKartPeach077Wheel0, - gKartPeach077Wheel1, - gKartPeach077Wheel2, - gKartPeach077Wheel3, - gKartPeach078Wheel0, - gKartPeach078Wheel1, - gKartPeach078Wheel2, - gKartPeach078Wheel3, - gKartPeach079Wheel0, - gKartPeach079Wheel1, - gKartPeach079Wheel2, - gKartPeach079Wheel3, - gKartPeach080Wheel0, - gKartPeach080Wheel1, - gKartPeach080Wheel2, - gKartPeach080Wheel3, - gKartPeach081Wheel0, - gKartPeach081Wheel1, - gKartPeach081Wheel2, - gKartPeach081Wheel3, - gKartPeach082Wheel0, - gKartPeach082Wheel1, - gKartPeach082Wheel2, - gKartPeach082Wheel3, - gKartPeach083Wheel0, - gKartPeach083Wheel1, - gKartPeach083Wheel2, - gKartPeach083Wheel3, - gKartPeach084Wheel0, - gKartPeach084Wheel1, - gKartPeach084Wheel2, - gKartPeach084Wheel3, - gKartPeach085Wheel0, - gKartPeach085Wheel1, - gKartPeach085Wheel2, - gKartPeach085Wheel3, - gKartPeach086Wheel0, - gKartPeach086Wheel1, - gKartPeach086Wheel2, - gKartPeach086Wheel3, - gKartPeach087Wheel0, - gKartPeach087Wheel1, - gKartPeach087Wheel2, - gKartPeach087Wheel3, - gKartPeach088Wheel0, - gKartPeach088Wheel1, - gKartPeach088Wheel2, - gKartPeach088Wheel3, - gKartPeach089Wheel0, - gKartPeach089Wheel1, - gKartPeach089Wheel2, - gKartPeach089Wheel3, - gKartPeach090Wheel0, - gKartPeach090Wheel1, - gKartPeach090Wheel2, - gKartPeach090Wheel3, - gKartPeach091Wheel0, - gKartPeach091Wheel1, - gKartPeach091Wheel2, - gKartPeach091Wheel3, - gKartPeach092Wheel0, - gKartPeach092Wheel1, - gKartPeach092Wheel2, - gKartPeach092Wheel3, - gKartPeach093Wheel0, - gKartPeach093Wheel1, - gKartPeach093Wheel2, - gKartPeach093Wheel3, - gKartPeach094Wheel0, - gKartPeach094Wheel1, - gKartPeach094Wheel2, - gKartPeach094Wheel3, - gKartPeach095Wheel0, - gKartPeach095Wheel1, - gKartPeach095Wheel2, - gKartPeach095Wheel3, - gKartPeach096Wheel0, - gKartPeach096Wheel1, - gKartPeach096Wheel2, - gKartPeach096Wheel3, - gKartPeach097Wheel0, - gKartPeach097Wheel1, - gKartPeach097Wheel2, - gKartPeach097Wheel3, - gKartPeach098Wheel0, - gKartPeach098Wheel1, - gKartPeach098Wheel2, - gKartPeach098Wheel3, - gKartPeach099Wheel0, - gKartPeach099Wheel1, - gKartPeach099Wheel2, - gKartPeach099Wheel3, - gKartPeach100Wheel0, - gKartPeach100Wheel1, - gKartPeach100Wheel2, - gKartPeach100Wheel3, - gKartPeach101Wheel0, - gKartPeach101Wheel1, - gKartPeach101Wheel2, - gKartPeach101Wheel3, - gKartPeach102Wheel0, - gKartPeach102Wheel1, - gKartPeach102Wheel2, - gKartPeach102Wheel3, - gKartPeach103Wheel0, - gKartPeach103Wheel1, - gKartPeach103Wheel2, - gKartPeach103Wheel3, - gKartPeach104Wheel0, - gKartPeach104Wheel1, - gKartPeach104Wheel2, - gKartPeach104Wheel3, - gKartPeach105Wheel0, - gKartPeach105Wheel1, - gKartPeach105Wheel2, - gKartPeach105Wheel3, - gKartPeach106Wheel0, - gKartPeach106Wheel1, - gKartPeach106Wheel2, - gKartPeach106Wheel3, - gKartPeach107Wheel0, - gKartPeach107Wheel1, - gKartPeach107Wheel2, - gKartPeach107Wheel3, - gKartPeach108Wheel0, - gKartPeach108Wheel1, - gKartPeach108Wheel2, - gKartPeach108Wheel3, - gKartPeach109Wheel0, - gKartPeach109Wheel1, - gKartPeach109Wheel2, - gKartPeach109Wheel3, - gKartPeach110Wheel0, - gKartPeach110Wheel1, - gKartPeach110Wheel2, - gKartPeach110Wheel3, - gKartPeach111Wheel0, - gKartPeach111Wheel1, - gKartPeach111Wheel2, - gKartPeach111Wheel3, - gKartPeach112Wheel0, - gKartPeach112Wheel1, - gKartPeach112Wheel2, - gKartPeach112Wheel3, - gKartPeach113Wheel0, - gKartPeach113Wheel1, - gKartPeach113Wheel2, - gKartPeach113Wheel3, - gKartPeach114Wheel0, - gKartPeach114Wheel1, - gKartPeach114Wheel2, - gKartPeach114Wheel3, - gKartPeach115Wheel0, - gKartPeach115Wheel1, - gKartPeach115Wheel2, - gKartPeach115Wheel3, - gKartPeach116Wheel0, - gKartPeach116Wheel1, - gKartPeach116Wheel2, - gKartPeach116Wheel3, - gKartPeach117Wheel0, - gKartPeach117Wheel1, - gKartPeach117Wheel2, - gKartPeach117Wheel3, - gKartPeach118Wheel0, - gKartPeach118Wheel1, - gKartPeach118Wheel2, - gKartPeach118Wheel3, - gKartPeach119Wheel0, - gKartPeach119Wheel1, - gKartPeach119Wheel2, - gKartPeach119Wheel3, - gKartPeach120Wheel0, - gKartPeach120Wheel1, - gKartPeach120Wheel2, - gKartPeach120Wheel3, - gKartPeach121Wheel0, - gKartPeach121Wheel1, - gKartPeach121Wheel2, - gKartPeach121Wheel3, - gKartPeach122Wheel0, - gKartPeach122Wheel1, - gKartPeach122Wheel2, - gKartPeach122Wheel3, - gKartPeach123Wheel0, - gKartPeach123Wheel1, - gKartPeach123Wheel2, - gKartPeach123Wheel3, - gKartPeach124Wheel0, - gKartPeach124Wheel1, - gKartPeach124Wheel2, - gKartPeach124Wheel3, - gKartPeach125Wheel0, - gKartPeach125Wheel1, - gKartPeach125Wheel2, - gKartPeach125Wheel3, - gKartPeach126Wheel0, - gKartPeach126Wheel1, - gKartPeach126Wheel2, - gKartPeach126Wheel3, - gKartPeach127Wheel0, - gKartPeach127Wheel1, - gKartPeach127Wheel2, - gKartPeach127Wheel3, - gKartPeach128Wheel0, - gKartPeach128Wheel1, - gKartPeach128Wheel2, - gKartPeach128Wheel3, - gKartPeach129Wheel0, - gKartPeach129Wheel1, - gKartPeach129Wheel2, - gKartPeach129Wheel3, - gKartPeach130Wheel0, - gKartPeach130Wheel1, - gKartPeach130Wheel2, - gKartPeach130Wheel3, - gKartPeach131Wheel0, - gKartPeach131Wheel1, - gKartPeach131Wheel2, - gKartPeach131Wheel3, - gKartPeach132Wheel0, - gKartPeach132Wheel1, - gKartPeach132Wheel2, - gKartPeach132Wheel3, - gKartPeach133Wheel0, - gKartPeach133Wheel1, - gKartPeach133Wheel2, - gKartPeach133Wheel3, - gKartPeach134Wheel0, - gKartPeach134Wheel1, - gKartPeach134Wheel2, - gKartPeach134Wheel3, - gKartPeach135Wheel0, - gKartPeach135Wheel1, - gKartPeach135Wheel2, - gKartPeach135Wheel3, - gKartPeach136Wheel0, - gKartPeach136Wheel1, - gKartPeach136Wheel2, - gKartPeach136Wheel3, - gKartPeach137Wheel0, - gKartPeach137Wheel1, - gKartPeach137Wheel2, - gKartPeach137Wheel3, - gKartPeach138Wheel0, - gKartPeach138Wheel1, - gKartPeach138Wheel2, - gKartPeach138Wheel3, - gKartPeach139Wheel0, - gKartPeach139Wheel1, - gKartPeach139Wheel2, - gKartPeach139Wheel3, - gKartPeach140Wheel0, - gKartPeach140Wheel1, - gKartPeach140Wheel2, - gKartPeach140Wheel3, - gKartPeach141Wheel0, - gKartPeach141Wheel1, - gKartPeach141Wheel2, - gKartPeach141Wheel3, - gKartPeach142Wheel0, - gKartPeach142Wheel1, - gKartPeach142Wheel2, - gKartPeach142Wheel3, - gKartPeach143Wheel0, - gKartPeach143Wheel1, - gKartPeach143Wheel2, - gKartPeach143Wheel3, - gKartPeach144Wheel0, - gKartPeach144Wheel1, - gKartPeach144Wheel2, - gKartPeach144Wheel3, - gKartPeach145Wheel0, - gKartPeach145Wheel1, - gKartPeach145Wheel2, - gKartPeach145Wheel3, - gKartPeach146Wheel0, - gKartPeach146Wheel1, - gKartPeach146Wheel2, - gKartPeach146Wheel3, - gKartPeach147Wheel0, - gKartPeach147Wheel1, - gKartPeach147Wheel2, - gKartPeach147Wheel3, - gKartPeach148Wheel0, - gKartPeach148Wheel1, - gKartPeach148Wheel2, - gKartPeach148Wheel3, - gKartPeach149Wheel0, - gKartPeach149Wheel1, - gKartPeach149Wheel2, - gKartPeach149Wheel3, - gKartPeach150Wheel0, - gKartPeach150Wheel1, - gKartPeach150Wheel2, - gKartPeach150Wheel3, - gKartPeach151Wheel0, - gKartPeach151Wheel1, - gKartPeach151Wheel2, - gKartPeach151Wheel3, - gKartPeach152Wheel0, - gKartPeach152Wheel1, - gKartPeach152Wheel2, - gKartPeach152Wheel3, - gKartPeach153Wheel0, - gKartPeach153Wheel1, - gKartPeach153Wheel2, - gKartPeach153Wheel3, - gKartPeach154Wheel0, - gKartPeach154Wheel1, - gKartPeach154Wheel2, - gKartPeach154Wheel3, - gKartPeach155Wheel0, - gKartPeach155Wheel1, - gKartPeach155Wheel2, - gKartPeach155Wheel3, - gKartPeach156Wheel0, - gKartPeach156Wheel1, - gKartPeach156Wheel2, - gKartPeach156Wheel3, - gKartPeach157Wheel0, - gKartPeach157Wheel1, - gKartPeach157Wheel2, - gKartPeach157Wheel3, - gKartPeach158Wheel0, - gKartPeach158Wheel1, - gKartPeach158Wheel2, - gKartPeach158Wheel3, - gKartPeach159Wheel0, - gKartPeach159Wheel1, - gKartPeach159Wheel2, - gKartPeach159Wheel3, - gKartPeach160Wheel0, - gKartPeach160Wheel1, - gKartPeach160Wheel2, - gKartPeach160Wheel3, - gKartPeach161Wheel0, - gKartPeach161Wheel1, - gKartPeach161Wheel2, - gKartPeach161Wheel3, - gKartPeach162Wheel0, - gKartPeach162Wheel1, - gKartPeach162Wheel2, - gKartPeach162Wheel3, - gKartPeach163Wheel0, - gKartPeach163Wheel1, - gKartPeach163Wheel2, - gKartPeach163Wheel3, - gKartPeach164Wheel0, - gKartPeach164Wheel1, - gKartPeach164Wheel2, - gKartPeach164Wheel3, - gKartPeach165Wheel0, - gKartPeach165Wheel1, - gKartPeach165Wheel2, - gKartPeach165Wheel3, - gKartPeach166Wheel0, - gKartPeach166Wheel1, - gKartPeach166Wheel2, - gKartPeach166Wheel3, - gKartPeach167Wheel0, - gKartPeach167Wheel1, - gKartPeach167Wheel2, - gKartPeach167Wheel3, - gKartPeach168Wheel0, - gKartPeach168Wheel1, - gKartPeach168Wheel2, - gKartPeach168Wheel3, - gKartPeach169Wheel0, - gKartPeach169Wheel1, - gKartPeach169Wheel2, - gKartPeach169Wheel3, - gKartPeach170Wheel0, - gKartPeach170Wheel1, - gKartPeach170Wheel2, - gKartPeach170Wheel3, - gKartPeach171Wheel0, - gKartPeach171Wheel1, - gKartPeach171Wheel2, - gKartPeach171Wheel3, - gKartPeach172Wheel0, - gKartPeach172Wheel1, - gKartPeach172Wheel2, - gKartPeach172Wheel3, - gKartPeach173Wheel0, - gKartPeach173Wheel1, - gKartPeach173Wheel2, - gKartPeach173Wheel3, - gKartPeach174Wheel0, - gKartPeach174Wheel1, - gKartPeach174Wheel2, - gKartPeach174Wheel3, - gKartPeach175Wheel0, - gKartPeach175Wheel1, - gKartPeach175Wheel2, - gKartPeach175Wheel3, - gKartPeach176Wheel0, - gKartPeach176Wheel1, - gKartPeach176Wheel2, - gKartPeach176Wheel3, - gKartPeach177Wheel0, - gKartPeach177Wheel1, - gKartPeach177Wheel2, - gKartPeach177Wheel3, - gKartPeach178Wheel0, - gKartPeach178Wheel1, - gKartPeach178Wheel2, - gKartPeach178Wheel3, - gKartPeach179Wheel0, - gKartPeach179Wheel1, - gKartPeach179Wheel2, - gKartPeach179Wheel3, - gKartPeach180Wheel0, - gKartPeach180Wheel1, - gKartPeach180Wheel2, - gKartPeach180Wheel3, - gKartPeach181Wheel0, - gKartPeach181Wheel1, - gKartPeach181Wheel2, - gKartPeach181Wheel3, - gKartPeach182Wheel0, - gKartPeach182Wheel1, - gKartPeach182Wheel2, - gKartPeach182Wheel3, - gKartPeach183Wheel0, - gKartPeach183Wheel1, - gKartPeach183Wheel2, - gKartPeach183Wheel3, - gKartPeach184Wheel0, - gKartPeach184Wheel1, - gKartPeach184Wheel2, - gKartPeach184Wheel3, - gKartPeach185Wheel0, - gKartPeach185Wheel1, - gKartPeach185Wheel2, - gKartPeach185Wheel3, - gKartPeach186Wheel0, - gKartPeach186Wheel1, - gKartPeach186Wheel2, - gKartPeach186Wheel3, - gKartPeach187Wheel0, - gKartPeach187Wheel1, - gKartPeach187Wheel2, - gKartPeach187Wheel3, - gKartPeach188Wheel0, - gKartPeach188Wheel1, - gKartPeach188Wheel2, - gKartPeach188Wheel3, - gKartPeach189Wheel0, - gKartPeach189Wheel1, - gKartPeach189Wheel2, - gKartPeach189Wheel3, - gKartPeach190Wheel0, - gKartPeach190Wheel1, - gKartPeach190Wheel2, - gKartPeach190Wheel3, - gKartPeach191Wheel0, - gKartPeach191Wheel1, - gKartPeach191Wheel2, - gKartPeach191Wheel3, - gKartPeach192Wheel0, - gKartPeach192Wheel1, - gKartPeach192Wheel2, - gKartPeach192Wheel3, - gKartPeach193Wheel0, - gKartPeach193Wheel1, - gKartPeach193Wheel2, - gKartPeach193Wheel3, - gKartPeach194Wheel0, - gKartPeach194Wheel1, - gKartPeach194Wheel2, - gKartPeach194Wheel3, - gKartPeach195Wheel0, - gKartPeach195Wheel1, - gKartPeach195Wheel2, - gKartPeach195Wheel3, - gKartPeach196Wheel0, - gKartPeach196Wheel1, - gKartPeach196Wheel2, - gKartPeach196Wheel3, - gKartPeach197Wheel0, - gKartPeach197Wheel1, - gKartPeach197Wheel2, - gKartPeach197Wheel3, - gKartPeach198Wheel0, - gKartPeach198Wheel1, - gKartPeach198Wheel2, - gKartPeach198Wheel3, - gKartPeach199Wheel0, - gKartPeach199Wheel1, - gKartPeach199Wheel2, - gKartPeach199Wheel3, - gKartPeach200Wheel0, - gKartPeach200Wheel1, - gKartPeach200Wheel2, - gKartPeach200Wheel3, - gKartPeach201Wheel0, - gKartPeach201Wheel1, - gKartPeach201Wheel2, - gKartPeach201Wheel3, - gKartPeach202Wheel0, - gKartPeach202Wheel1, - gKartPeach202Wheel2, - gKartPeach202Wheel3, - gKartPeach203Wheel0, - gKartPeach203Wheel1, - gKartPeach203Wheel2, - gKartPeach203Wheel3, - gKartPeach204Wheel0, - gKartPeach204Wheel1, - gKartPeach204Wheel2, - gKartPeach204Wheel3, - gKartPeach205Wheel0, - gKartPeach205Wheel1, - gKartPeach205Wheel2, - gKartPeach205Wheel3, - gKartPeach206Wheel0, - gKartPeach206Wheel1, - gKartPeach206Wheel2, - gKartPeach206Wheel3, - gKartPeach207Wheel0, - gKartPeach207Wheel1, - gKartPeach207Wheel2, - gKartPeach207Wheel3, - gKartPeach208Wheel0, - gKartPeach208Wheel1, - gKartPeach208Wheel2, - gKartPeach208Wheel3, - gKartPeach209Wheel0, - gKartPeach209Wheel1, - gKartPeach209Wheel2, - gKartPeach209Wheel3, - gKartPeach210Wheel0, - gKartPeach210Wheel1, - gKartPeach210Wheel2, - gKartPeach210Wheel3, - gKartPeach211Wheel0, - gKartPeach211Wheel1, - gKartPeach211Wheel2, - gKartPeach211Wheel3, - gKartPeach212Wheel0, - gKartPeach212Wheel1, - gKartPeach212Wheel2, - gKartPeach212Wheel3, - gKartPeach213Wheel0, - gKartPeach213Wheel1, - gKartPeach213Wheel2, - gKartPeach213Wheel3, - gKartPeach214Wheel0, - gKartPeach214Wheel1, - gKartPeach214Wheel2, - gKartPeach214Wheel3, - gKartPeach215Wheel0, - gKartPeach215Wheel1, - gKartPeach215Wheel2, - gKartPeach215Wheel3, - gKartPeach216Wheel0, - gKartPeach216Wheel1, - gKartPeach216Wheel2, - gKartPeach216Wheel3, - gKartPeach217Wheel0, - gKartPeach217Wheel1, - gKartPeach217Wheel2, - gKartPeach217Wheel3, - gKartPeach218Wheel0, - gKartPeach218Wheel1, - gKartPeach218Wheel2, - gKartPeach218Wheel3, - gKartPeach219Wheel0, - gKartPeach219Wheel1, - gKartPeach219Wheel2, - gKartPeach219Wheel3, - gKartPeach220Wheel0, - gKartPeach220Wheel1, - gKartPeach220Wheel2, - gKartPeach220Wheel3, - gKartPeach221Wheel0, - gKartPeach221Wheel1, - gKartPeach221Wheel2, - gKartPeach221Wheel3, - gKartPeach222Wheel0, - gKartPeach222Wheel1, - gKartPeach222Wheel2, - gKartPeach222Wheel3, - gKartPeach223Wheel0, - gKartPeach223Wheel1, - gKartPeach223Wheel2, - gKartPeach223Wheel3, - gKartPeach224Wheel0, - gKartPeach224Wheel1, - gKartPeach224Wheel2, - gKartPeach224Wheel3, - gKartPeach225Wheel0, - gKartPeach225Wheel1, - gKartPeach225Wheel2, - gKartPeach225Wheel3, - gKartPeach226Wheel0, - gKartPeach226Wheel1, - gKartPeach226Wheel2, - gKartPeach226Wheel3, - gKartPeach227Wheel0, - gKartPeach227Wheel1, - gKartPeach227Wheel2, - gKartPeach227Wheel3, - gKartPeach228Wheel0, - gKartPeach228Wheel1, - gKartPeach228Wheel2, - gKartPeach228Wheel3, - gKartPeach229Wheel0, - gKartPeach229Wheel1, - gKartPeach229Wheel2, - gKartPeach229Wheel3, - gKartPeach230Wheel0, - gKartPeach230Wheel1, - gKartPeach230Wheel2, - gKartPeach230Wheel3, - gKartPeach231Wheel0, - gKartPeach231Wheel1, - gKartPeach231Wheel2, - gKartPeach231Wheel3, - gKartPeach232Wheel0, - gKartPeach232Wheel1, - gKartPeach232Wheel2, - gKartPeach232Wheel3, - gKartPeach233Wheel0, - gKartPeach233Wheel1, - gKartPeach233Wheel2, - gKartPeach233Wheel3, - gKartPeach234Wheel0, - gKartPeach234Wheel1, - gKartPeach234Wheel2, - gKartPeach234Wheel3, - gKartPeach235Wheel0, - gKartPeach235Wheel1, - gKartPeach235Wheel2, - gKartPeach235Wheel3, - gKartPeach236Wheel0, - gKartPeach236Wheel1, - gKartPeach236Wheel2, - gKartPeach236Wheel3, - gKartPeach237Wheel0, - gKartPeach237Wheel1, - gKartPeach237Wheel2, - gKartPeach237Wheel3, - gKartPeach238Wheel0, - gKartPeach238Wheel1, - gKartPeach238Wheel2, - gKartPeach238Wheel3, - gKartPeach239Wheel0, - gKartPeach239Wheel1, - gKartPeach239Wheel2, - gKartPeach239Wheel3, - gKartPeach240Wheel0, - gKartPeach240Wheel1, - gKartPeach240Wheel2, - gKartPeach240Wheel3, - gKartPeach241Wheel0, - gKartPeach241Wheel1, - gKartPeach241Wheel2, - gKartPeach241Wheel3, - gKartPeach242Wheel0, - gKartPeach242Wheel1, - gKartPeach242Wheel2, - gKartPeach242Wheel3, - gKartPeach243Wheel0, - gKartPeach243Wheel1, - gKartPeach243Wheel2, - gKartPeach243Wheel3, - gKartPeach244Wheel0, - gKartPeach244Wheel1, - gKartPeach244Wheel2, - gKartPeach244Wheel3, - gKartPeach245Wheel0, - gKartPeach245Wheel1, - gKartPeach245Wheel2, - gKartPeach245Wheel3, - gKartPeach246Wheel0, - gKartPeach246Wheel1, - gKartPeach246Wheel2, - gKartPeach246Wheel3, - gKartPeach247Wheel0, - gKartPeach247Wheel1, - gKartPeach247Wheel2, - gKartPeach247Wheel3, - gKartPeach248Wheel0, - gKartPeach248Wheel1, - gKartPeach248Wheel2, - gKartPeach248Wheel3, - gKartPeach249Wheel0, - gKartPeach249Wheel1, - gKartPeach249Wheel2, - gKartPeach249Wheel3, - gKartPeach250Wheel0, - gKartPeach250Wheel1, - gKartPeach250Wheel2, - gKartPeach250Wheel3, - gKartPeach251Wheel0, - gKartPeach251Wheel1, - gKartPeach251Wheel2, - gKartPeach251Wheel3, - gKartPeach252Wheel0, - gKartPeach252Wheel1, - gKartPeach252Wheel2, - gKartPeach252Wheel3, - gKartPeach253Wheel0, - gKartPeach253Wheel1, - gKartPeach253Wheel2, - gKartPeach253Wheel3, - gKartPeach254Wheel0, - gKartPeach254Wheel1, - gKartPeach254Wheel2, - gKartPeach254Wheel3, - gKartPeach255Wheel0, - gKartPeach255Wheel1, - gKartPeach255Wheel2, - gKartPeach255Wheel3, - gKartPeach256Wheel0, - gKartPeach256Wheel1, - gKartPeach256Wheel2, - gKartPeach256Wheel3, - gKartPeach257Wheel0, - gKartPeach257Wheel1, - gKartPeach257Wheel2, - gKartPeach257Wheel3, - gKartPeach258Wheel0, - gKartPeach258Wheel1, - gKartPeach258Wheel2, - gKartPeach258Wheel3, - gKartPeach259Wheel0, - gKartPeach259Wheel1, - gKartPeach259Wheel2, - gKartPeach259Wheel3, - gKartPeach260Wheel0, - gKartPeach260Wheel1, - gKartPeach260Wheel2, - gKartPeach260Wheel3, - gKartPeach261Wheel0, - gKartPeach261Wheel1, - gKartPeach261Wheel2, - gKartPeach261Wheel3, - gKartPeach262Wheel0, - gKartPeach262Wheel1, - gKartPeach262Wheel2, - gKartPeach262Wheel3, - gKartPeach263Wheel0, - gKartPeach263Wheel1, - gKartPeach263Wheel2, - gKartPeach263Wheel3, - gKartPeach264Wheel0, - gKartPeach264Wheel1, - gKartPeach264Wheel2, - gKartPeach264Wheel3, - gKartPeach265Wheel0, - gKartPeach265Wheel1, - gKartPeach265Wheel2, - gKartPeach265Wheel3, - gKartPeach266Wheel0, - gKartPeach266Wheel1, - gKartPeach266Wheel2, - gKartPeach266Wheel3, - gKartPeach267Wheel0, - gKartPeach267Wheel1, - gKartPeach267Wheel2, - gKartPeach267Wheel3, - gKartPeach268Wheel0, - gKartPeach268Wheel1, - gKartPeach268Wheel2, - gKartPeach268Wheel3, - gKartPeach269Wheel0, - gKartPeach269Wheel1, - gKartPeach269Wheel2, - gKartPeach269Wheel3, - gKartPeach270Wheel0, - gKartPeach270Wheel1, - gKartPeach270Wheel2, - gKartPeach270Wheel3, - gKartPeach271Wheel0, - gKartPeach271Wheel1, - gKartPeach271Wheel2, - gKartPeach271Wheel3, - gKartPeach272Wheel0, - gKartPeach272Wheel1, - gKartPeach272Wheel2, - gKartPeach272Wheel3, - gKartPeach273Wheel0, - gKartPeach273Wheel1, - gKartPeach273Wheel2, - gKartPeach273Wheel3, - gKartPeach274Wheel0, - gKartPeach274Wheel1, - gKartPeach274Wheel2, - gKartPeach274Wheel3, - gKartPeach275Wheel0, - gKartPeach275Wheel1, - gKartPeach275Wheel2, - gKartPeach275Wheel3, - gKartPeach276Wheel0, - gKartPeach276Wheel1, - gKartPeach276Wheel2, - gKartPeach276Wheel3, - gKartPeach277Wheel0, - gKartPeach277Wheel1, - gKartPeach277Wheel2, - gKartPeach277Wheel3, - gKartPeach278Wheel0, - gKartPeach278Wheel1, - gKartPeach278Wheel2, - gKartPeach278Wheel3, - gKartPeach279Wheel0, - gKartPeach279Wheel1, - gKartPeach279Wheel2, - gKartPeach279Wheel3, - gKartPeach280Wheel0, - gKartPeach280Wheel1, - gKartPeach280Wheel2, - gKartPeach280Wheel3, - gKartPeach281Wheel0, - gKartPeach281Wheel1, - gKartPeach281Wheel2, - gKartPeach281Wheel3, - gKartPeach282Wheel0, - gKartPeach282Wheel1, - gKartPeach282Wheel2, - gKartPeach282Wheel3, - gKartPeach283Wheel0, - gKartPeach283Wheel1, - gKartPeach283Wheel2, - gKartPeach283Wheel3, - gKartPeach284Wheel0, - gKartPeach284Wheel1, - gKartPeach284Wheel2, - gKartPeach284Wheel3, - gKartPeach285Wheel0, - gKartPeach285Wheel1, - gKartPeach285Wheel2, - gKartPeach285Wheel3, - gKartPeach286Wheel0, - gKartPeach286Wheel1, - gKartPeach286Wheel2, - gKartPeach286Wheel3, - gKartPeach287Wheel0, - gKartPeach287Wheel1, - gKartPeach287Wheel2, - gKartPeach287Wheel3, - gKartPeach288Wheel0, - gKartPeach288Wheel1, - gKartPeach288Wheel2, - gKartPeach288Wheel3, -}; - -static const ALIGN_ASSET(2) char gKartPeachPalette[] = "__OTR__peach_kart/peach_kart_palette"; - diff --git a/include/assets/rainbow_road_data.h b/include/assets/rainbow_road_data.h deleted file mode 100644 index 6bfff60e2..000000000 --- a/include/assets/rainbow_road_data.h +++ /dev/null @@ -1,294 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_0"; - -static const ALIGN_ASSET(2) char rainbow_road_data_seg6_gfx_0[] = "__OTR__rainbow_road_data/rainbow_road_data_seg6_gfx_0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_80[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_80"; - -static const ALIGN_ASSET(2) char rainbow_road_data_seg6_gfx_80[] = "__OTR__rainbow_road_data/rainbow_road_data_seg6_gfx_80"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_D8[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_D8"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_178[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_178"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_210[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_210"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_288[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_288"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_338[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_338"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_3D0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_3D0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_4A0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_4A0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_528[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_528"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_5F8[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_5F8"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_658[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_658"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_6E0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_6E0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_730[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_730"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_7A8[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_7A8"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_7F8[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_7F8"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_880[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_880"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_8E0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_8E0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_958[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_958"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_9C8[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_9C8"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_A70[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_A70"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_B08[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_B08"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_B70[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_B70"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_BF0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_BF0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_C70[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_C70"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_D10[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_D10"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_D80[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_D80"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_E08[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_E08"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_E98[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_E98"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_F50[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_F50"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_FB0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_FB0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1030[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1030"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_10A8[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_10A8"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1150[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1150"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1198[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1198"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1228[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1228"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_12A0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_12A0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1340[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1340"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_13F0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_13F0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1488[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1488"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_14E8[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_14E8"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1530[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1530"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_15D0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_15D0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1678[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1678"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_16C0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_16C0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1738[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1738"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_17D0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_17D0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1878[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1878"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_18D0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_18D0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_1948[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_1948"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_unknown_waypoints[] = "__OTR__rainbow_road_data/d_course_rainbow_road_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_track_waypoints[] = "__OTR__rainbow_road_data/d_course_rainbow_road_track_waypoints"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom1[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMushroom1"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom2[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMushroom2"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom3[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMushroom3"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom4[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMushroom4"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom5[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMushroom5"; - -static const char* d_course_rainbow_road_neon_mushroom_tlut_list[] = { - gTLUTRainbowRoadNeonMushroom1, - gTLUTRainbowRoadNeonMushroom2, - gTLUTRainbowRoadNeonMushroom3, - gTLUTRainbowRoadNeonMushroom4, - gTLUTRainbowRoadNeonMushroom5, -}; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario1[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMario1"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario2[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMario2"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario3[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMario3"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario4[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMario4"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario5[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonMario5"; - -static const char* d_course_rainbow_road_neon_mario_tlut_list[] = { - gTLUTRainbowRoadNeonMario1, - gTLUTRainbowRoadNeonMario2, - gTLUTRainbowRoadNeonMario3, - gTLUTRainbowRoadNeonMario4, - gTLUTRainbowRoadNeonMario5, -}; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo1[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonBoo1"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo2[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonBoo2"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo3[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonBoo3"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo4[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonBoo4"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo5[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonBoo5"; - -static const char* d_course_rainbow_road_neon_boo_tlut_list[] = { - gTLUTRainbowRoadNeonBoo1, - gTLUTRainbowRoadNeonBoo2, - gTLUTRainbowRoadNeonBoo3, - gTLUTRainbowRoadNeonBoo4, - gTLUTRainbowRoadNeonBoo5, -}; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonPeach[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonPeach"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonLuigi[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonLuigi"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonDonkeyKong[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonDonkeyKong"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonYoshi[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonYoshi"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBowser[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonBowser"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonWario[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonWario"; - -static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonToad[] = "__OTR__rainbow_road_data/gTLUTRainbowRoadNeonToad"; - -static const char* d_course_rainbow_road_static_tluts[] = { - gTLUTRainbowRoadNeonPeach, - gTLUTRainbowRoadNeonLuigi, - gTLUTRainbowRoadNeonDonkeyKong, - gTLUTRainbowRoadNeonYoshi, - gTLUTRainbowRoadNeonBowser, - gTLUTRainbowRoadNeonWario, - gTLUTRainbowRoadNeonToad, -}; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom1[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mushroom1"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom2[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mushroom2"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom3[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mushroom3"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom4[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mushroom4"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom5[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mushroom5"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario1[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mario1"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario2[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mario2"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario3[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mario3"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario4[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mario4"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario5[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_mario5"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo1[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_boo1"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo2[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_boo2"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo3[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_boo3"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo4[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_boo4"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo5[] = "__OTR__rainbow_road_data/d_course_rainbow_road_neon_boo5"; - -static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonPeach[] = "__OTR__rainbow_road_data/gTextureRainbowRoadNeonPeach"; - -static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonLuigi[] = "__OTR__rainbow_road_data/gTextureRainbowRoadNeonLuigi"; - -static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonDonkeyKong[] = "__OTR__rainbow_road_data/gTextureRainbowRoadNeonDonkeyKong"; - -static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonYoshi[] = "__OTR__rainbow_road_data/gTextureRainbowRoadNeonYoshi"; - -static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonBowser[] = "__OTR__rainbow_road_data/gTextureRainbowRoadNeonBowser"; - -static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonWario[] = "__OTR__rainbow_road_data/gTextureRainbowRoadNeonWario"; - -static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonToad[] = "__OTR__rainbow_road_data/gTextureRainbowRoadNeonToad"; - -static const char* d_course_rainbow_road_static_textures[] = { - gTextureRainbowRoadNeonPeach, - gTextureRainbowRoadNeonLuigi, - gTextureRainbowRoadNeonDonkeyKong, - gTextureRainbowRoadNeonYoshi, - gTextureRainbowRoadNeonBowser, - gTextureRainbowRoadNeonWario, - gTextureRainbowRoadNeonToad, -}; - -static const ALIGN_ASSET(2) char rainbow_road_data_seg6_lights_12010[] = "__OTR__rainbow_road_data/rainbow_road_data_seg6_lights_12010"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_light1[] = "__OTR__rainbow_road_data/d_course_rainbow_road_light1"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_sphere[] = "__OTR__rainbow_road_data/d_course_rainbow_road_sphere"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_reflection_map_metal[] = "__OTR__rainbow_road_data/d_course_rainbow_road_reflection_map_metal"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_reflection_map_gold[] = "__OTR__rainbow_road_data/d_course_rainbow_road_reflection_map_gold"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chain_chomp_tongue[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chain_chomp_tongue"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chain_chomp_eye[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chain_chomp_eye"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_lower_jaw_model[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_lower_jaw_model"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_151A8[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_151A8"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_lower_model1[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_body_lower_model1"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_lower_model2[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_body_lower_model2"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_lower_model3[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_body_lower_model3"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_15550[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_15550"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_upper_jaw_model[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_upper_jaw_model"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_158C0[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_158C0"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_upper_back_model1[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_body_upper_back_model1"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_upper_back_model2[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_body_upper_back_model2"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_body_upper_back_model3[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_body_upper_back_model3"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_15C68[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_15C68"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_chomp_eyes_model[] = "__OTR__rainbow_road_data/d_course_rainbow_road_chomp_eyes_model"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_15F18[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_15F18"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_dl_16220[] = "__OTR__rainbow_road_data/d_course_rainbow_road_dl_16220"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_item_box_spawns[] = "__OTR__rainbow_road_data/d_course_rainbow_road_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_rainbow_road_addr[] = "__OTR__rainbow_road_data/d_course_rainbow_road_addr"; - diff --git a/include/assets/rainbow_road_displaylists.h b/include/assets/rainbow_road_displaylists.h deleted file mode 100644 index c1ddbf7c4..000000000 --- a/include/assets/rainbow_road_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_rainbow_road_packed_dls[] = "__OTR__rainbow_road_displaylists/d_course_rainbow_road_packed_dls"; - diff --git a/include/assets/rainbow_road_vertices.h b/include/assets/rainbow_road_vertices.h deleted file mode 100644 index a823526d3..000000000 --- a/include/assets/rainbow_road_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_rainbow_road_vertex[] = "__OTR__rainbow_road_vertices/d_course_rainbow_road_vertex"; - diff --git a/include/assets/royal_raceway_data.h b/include/assets/royal_raceway_data.h deleted file mode 100644 index b5593e25b..000000000 --- a/include/assets/royal_raceway_data.h +++ /dev/null @@ -1,298 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_258[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_258"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_360[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_360"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_470[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_470"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6D0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_6D0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8E0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8E0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A48[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_A48"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B40[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_B40"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_DA0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_DA0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_F40[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_F40"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1180[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_1180"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_12C0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_12C0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1538[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_1538"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1610[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_1610"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1850[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_1850"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_19B0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_19B0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1BB8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_1BB8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1C40[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_1C40"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_1E88[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_1E88"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2018[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_2018"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_21A8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_21A8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2210[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_2210"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2428[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_2428"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_25F0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_25F0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_26F0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_26F0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_27B8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_27B8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_29A0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_29A0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2B78[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_2B78"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2C20[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_2C20"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2DD0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_2DD0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_2FE0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_2FE0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_31F8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_31F8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_33B0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_33B0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3580[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_3580"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3748[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_3748"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3960[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_3960"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3AD8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_3AD8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3BA8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_3BA8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3D38[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_3D38"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3ED8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_3ED8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_3FA0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_3FA0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4048[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4048"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_41D8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_41D8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4380[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4380"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4438[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4438"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_44C0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_44C0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_45A0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_45A0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_46A0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_46A0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4750[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4750"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4800[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4800"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4930[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4930"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4A38[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4A38"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4AE0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4AE0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4BA8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4BA8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4D00[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4D00"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4DF8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4DF8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4EC0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4EC0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_4F80[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_4F80"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_50F0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_50F0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_51D0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_51D0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_52F0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_52F0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_53B8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_53B8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_54F8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_54F8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5598[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5598"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_56C0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_56C0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5758[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5758"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5890[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5890"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5900[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5900"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5A40[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5A40"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5B28[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5B28"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5CA0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5CA0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5D08[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5D08"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5EB8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5EB8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_5FD8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_5FD8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6118[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_6118"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_61B0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_61B0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6378[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_6378"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6538[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_6538"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6780[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_6780"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_68C8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_68C8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6BC0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_6BC0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_6E20[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_6E20"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_70C0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_70C0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_72B8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_72B8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_75C0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_75C0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7778[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_7778"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_78E8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_78E8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7AD0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_7AD0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7BD8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_7BD8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7DB0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_7DB0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_7ED8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_7ED8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8068[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8068"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_81C0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_81C0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8398[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8398"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_84A0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_84A0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8620[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8620"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8770[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8770"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8838[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8838"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_88B0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_88B0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8930[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8930"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_89F0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_89F0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8C58[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8C58"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8CD8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8CD8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8EB8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8EB8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_8FA8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_8FA8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9218[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_9218"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_92D0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_92D0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_94E8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_94E8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9678[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_9678"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9900[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_9900"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_99A0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_99A0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9B30[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_9B30"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9D58[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_9D58"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_9FE8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_9FE8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A0A8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_A0A8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A200[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_A200"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A478[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_A478"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A600[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_A600"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A728[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_A728"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A8A8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_A8A8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_A9D0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_A9D0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AB28[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_AB28"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AC28[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_AC28"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AD90[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_AD90"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AE70[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_AE70"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_AFB0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_AFB0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B040[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_B040"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B188[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_B188"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B230[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_B230"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B2E0[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_B2E0"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B3E8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_B3E8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_B508[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_B508"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_unknown_waypoints[] = "__OTR__royal_raceway_data/d_course_royal_raceway_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_track_waypoints[] = "__OTR__royal_raceway_data/d_course_royal_raceway_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_tree_model[] = "__OTR__royal_raceway_data/d_course_royal_raceway_tree_model"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_tree[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_tree"; - -static const ALIGN_ASSET(2) char d_royal_raceway_peaches_castle_tree_model[] = "__OTR__royal_raceway_data/d_royal_raceway_peaches_castle_tree_model"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_castle_tree[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_castle_tree"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_piranha_plant_tlut[] = "__OTR__royal_raceway_data/d_course_royal_raceway_piranha_plant_tlut"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_piranha_plant_model[] = "__OTR__royal_raceway_data/d_course_royal_raceway_piranha_plant_model"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_piranha_plant[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_piranha_plant"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_dl_D8E8[] = "__OTR__royal_raceway_data/d_course_royal_raceway_dl_D8E8"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_piranha_plant_spawn[] = "__OTR__royal_raceway_data/d_course_royal_raceway_piranha_plant_spawn"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_tree_spawn[] = "__OTR__royal_raceway_data/d_course_royal_raceway_tree_spawn"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_item_box_spawns[] = "__OTR__royal_raceway_data/d_course_royal_raceway_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_royal_raceway_addr[] = "__OTR__royal_raceway_data/d_course_royal_raceway_addr"; - diff --git a/include/assets/royal_raceway_displaylists.h b/include/assets/royal_raceway_displaylists.h deleted file mode 100644 index 8a122cd09..000000000 --- a/include/assets/royal_raceway_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_royal_raceway_packed_dls[] = "__OTR__royal_raceway_displaylists/d_course_royal_raceway_packed_dls"; - diff --git a/include/assets/royal_raceway_vertices.h b/include/assets/royal_raceway_vertices.h deleted file mode 100644 index 5398fcb41..000000000 --- a/include/assets/royal_raceway_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_royal_raceway_vertex[] = "__OTR__royal_raceway_vertices/d_course_royal_raceway_vertex"; - diff --git a/include/assets/sherbet_land_data.h b/include/assets/sherbet_land_data.h deleted file mode 100644 index a9329036a..000000000 --- a/include/assets/sherbet_land_data.h +++ /dev/null @@ -1,402 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_C0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_C0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_158[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_158"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1A8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1A8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_280[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_280"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_310[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_310"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3B8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3B8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_400[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_400"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4E8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4E8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_560[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_560"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_638[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_638"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_6A0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_6A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_768[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_768"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_7A0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_7A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_880[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_880"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8E8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8E8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_9A0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_9A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_A28[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_A28"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_B08[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_B08"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_BC0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_BC0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_C88[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_C88"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_D10[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_D10"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_DF0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_DF0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_EC8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_EC8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_F68[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_F68"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1028[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1028"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_10D8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_10D8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_11C8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_11C8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1238[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1238"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_12F0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_12F0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1368[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1368"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1440[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1440"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1480[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1480"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_14C0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_14C0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1508[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1508"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1570[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1570"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1598[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1598"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_15F0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_15F0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1638[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1638"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1698[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1698"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_16C0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_16C0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1730[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1730"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1778[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1778"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_17D8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_17D8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1828[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1828"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_18A0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_18A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_18E8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_18E8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1920[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1920"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_19A0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_19A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_19F0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_19F0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1A58[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1A58"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1A90[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1A90"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1AF8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1AF8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1B50[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1B50"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1BA8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1BA8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1C20[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1C20"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1C48[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1C48"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1D08[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1D08"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1D60[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1D60"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1E10[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1E10"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1E88[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1E88"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_1F70[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_1F70"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2010[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2010"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_20D0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_20D0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2190[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2190"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2288[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2288"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_22F8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_22F8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2370[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2370"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2438[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2438"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2530[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2530"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_25A0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_25A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_25F8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_25F8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_26D0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_26D0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_27F0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_27F0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_28A0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_28A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2918[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2918"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2A38[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2A38"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2B08[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2B08"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2BE0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2BE0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2C58[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2C58"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2D78[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2D78"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2E28[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2E28"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2F48[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2F48"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_2FE8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_2FE8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_30E0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_30E0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3150[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3150"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3260[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3260"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3320[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3320"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_33E0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_33E0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3490[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3490"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_35A8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_35A8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_36A8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_36A8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3770[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3770"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3840[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3840"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3940[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3940"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3A50[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3A50"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3AE0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3AE0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3BA8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3BA8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3C48[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3C48"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3D40[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3D40"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3D98[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3D98"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3E58[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3E58"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3EB8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3EB8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3FA0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3FA0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3FC0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3FC0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3FD8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3FD8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_3FE8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_3FE8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4000[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4000"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4010[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4010"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4018[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4018"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4020[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4020"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4028[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4028"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4030[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4030"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4038[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4038"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4040[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4040"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4048[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4048"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4050[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4050"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4058[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4058"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4060[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4060"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4068[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4068"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4070[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4070"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4078[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4078"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4080[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4080"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4088[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4088"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4090[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4090"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4098[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4098"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_40A0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_40A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_40A8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_40A8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_40B0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_40B0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4180[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4180"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_41B8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_41B8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4280[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4280"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_42E0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_42E0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_43C8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_43C8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4470[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4470"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4570[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4570"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4618[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4618"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4710[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4710"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4798[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4798"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4868[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4868"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4930[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4930"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4A20[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4A20"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4A98[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4A98"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_4B20[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_4B20"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_unknown_waypoints[] = "__OTR__sherbet_land_data/d_course_sherbet_land_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_track_waypoints[] = "__OTR__sherbet_land_data/d_course_sherbet_land_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_model1[] = "__OTR__sherbet_land_data/d_course_sherbet_land_model1"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_model2[] = "__OTR__sherbet_land_data/d_course_sherbet_land_model2"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_model3[] = "__OTR__sherbet_land_data/d_course_sherbet_land_model3"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_model4[] = "__OTR__sherbet_land_data/d_course_sherbet_land_model4"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_ice[] = "__OTR__sherbet_land_data/d_course_sherbet_land_ice"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_70E8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_70E8"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_gfx_70E8[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_gfx_70E8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_7208[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_7208"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_gfx_7208[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_gfx_7208"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_ice_block[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_ice_block"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_7228[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_7228"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_7240[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_lights_7240"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_light1[] = "__OTR__sherbet_land_data/d_course_sherbet_land_light1"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_7258[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_lights_7258"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_light2[] = "__OTR__sherbet_land_data/d_course_sherbet_land_light2"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_7270[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_lights_7270"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_light3[] = "__OTR__sherbet_land_data/d_course_sherbet_land_light3"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_7288[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_lights_7288"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_light4[] = "__OTR__sherbet_land_data/d_course_sherbet_land_light4"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_72A0[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_lights_72A0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_light5[] = "__OTR__sherbet_land_data/d_course_sherbet_land_light5"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_light6[] = "__OTR__sherbet_land_data/d_course_sherbet_land_light6"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_lights_72D0[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_lights_72D0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_light7[] = "__OTR__sherbet_land_data/d_course_sherbet_land_light7"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_beak[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_beak"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_eye[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_eye"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_eyes_model[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_eyes_model"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_gfx_8368[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_gfx_8368"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8368[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8368"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_nose_model[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_nose_model"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_gfx_83D8[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_gfx_83D8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_83D8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_83D8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_head_model1[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_head_model1"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_head_model2[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_head_model2"; - -static const ALIGN_ASSET(2) char sherbet_land_data_seg6_gfx_85B0[] = "__OTR__sherbet_land_data/sherbet_land_data_seg6_gfx_85B0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_85B0[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_85B0"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_arms_model[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_arms_model"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8730[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8730"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_unknown_model[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_unknown_model"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8808[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8808"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8810[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8810"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_right_foot_model[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_right_foot_model"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8930[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8930"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_left_foot_model[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_left_foot_model"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8A78[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8A78"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_body_model1[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_body_model1"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_body_model2[] = "__OTR__sherbet_land_data/d_course_sherbet_land_penguin_body_model2"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8D00[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8D00"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_8E00[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_8E00"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_dl_9AE8[] = "__OTR__sherbet_land_data/d_course_sherbet_land_dl_9AE8"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_item_box_spawns[] = "__OTR__sherbet_land_data/d_course_sherbet_land_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_sherbet_land_addr[] = "__OTR__sherbet_land_data/d_course_sherbet_land_addr"; - diff --git a/include/assets/sherbet_land_displaylists.h b/include/assets/sherbet_land_displaylists.h deleted file mode 100644 index 2c7ffe5ea..000000000 --- a/include/assets/sherbet_land_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_sherbet_land_packed_dls[] = "__OTR__sherbet_land_displaylists/d_course_sherbet_land_packed_dls"; - diff --git a/include/assets/sherbet_land_vertices.h b/include/assets/sherbet_land_vertices.h deleted file mode 100644 index 1de50540b..000000000 --- a/include/assets/sherbet_land_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_sherbet_land_vertex[] = "__OTR__sherbet_land_vertices/d_course_sherbet_land_vertex"; - diff --git a/include/assets/skyscraper_data.h b/include/assets/skyscraper_data.h deleted file mode 100644 index 154bc863c..000000000 --- a/include/assets/skyscraper_data.h +++ /dev/null @@ -1,10 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_skyscraper_dl[] = "__OTR__skyscraper_data/d_course_skyscraper_dl"; - -static const ALIGN_ASSET(2) char d_course_skyscraper_item_box_spawns[] = "__OTR__skyscraper_data/d_course_skyscraper_item_box_spawns"; - diff --git a/include/assets/skyscraper_displaylists.h b/include/assets/skyscraper_displaylists.h deleted file mode 100644 index 3e414b55c..000000000 --- a/include/assets/skyscraper_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_skyscraper_packed_dls[] = "__OTR__skyscraper_displaylists/d_course_skyscraper_packed_dls"; - diff --git a/include/assets/skyscraper_vertices.h b/include/assets/skyscraper_vertices.h deleted file mode 100644 index 3d815bdb7..000000000 --- a/include/assets/skyscraper_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_skyscraper_vertex[] = "__OTR__skyscraper_vertices/d_course_skyscraper_vertex"; - diff --git a/include/assets/startup_logo.h b/include/assets/startup_logo.h deleted file mode 100644 index bebe0478f..000000000 --- a/include/assets/startup_logo.h +++ /dev/null @@ -1,230 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_0[] = "__OTR__startup_logo/startup_logo_seg6_vtx_0"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_200[] = "__OTR__startup_logo/startup_logo_seg6_vtx_200"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_400[] = "__OTR__startup_logo/startup_logo_seg6_vtx_400"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_600[] = "__OTR__startup_logo/startup_logo_seg6_vtx_600"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_6A0[] = "__OTR__startup_logo/startup_logo_seg6_vtx_6A0"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_880[] = "__OTR__startup_logo/startup_logo_seg6_vtx_880"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_9E0[] = "__OTR__startup_logo/startup_logo_seg6_vtx_9E0"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_BC0[] = "__OTR__startup_logo/startup_logo_seg6_vtx_BC0"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_DA0[] = "__OTR__startup_logo/startup_logo_seg6_vtx_DA0"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_F80[] = "__OTR__startup_logo/startup_logo_seg6_vtx_F80"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1120[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1120"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1300[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1300"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1460[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1460"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1660[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1660"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1860[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1860"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1A60[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1A60"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1B40[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1B40"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1D40[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1D40"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_1F40[] = "__OTR__startup_logo/startup_logo_seg6_vtx_1F40"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_2140[] = "__OTR__startup_logo/startup_logo_seg6_vtx_2140"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_21C0[] = "__OTR__startup_logo/startup_logo_seg6_vtx_21C0"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_23C0[] = "__OTR__startup_logo/startup_logo_seg6_vtx_23C0"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_2540[] = "__OTR__startup_logo/startup_logo_seg6_vtx_2540"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_2740[] = "__OTR__startup_logo/startup_logo_seg6_vtx_2740"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_2940[] = "__OTR__startup_logo/startup_logo_seg6_vtx_2940"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_2B00[] = "__OTR__startup_logo/startup_logo_seg6_gfx_2B00"; - -static const ALIGN_ASSET(2) char startup_logo_dl[] = "__OTR__startup_logo/dl1"; - -static const ALIGN_ASSET(2) char startup_logo_dl2[] = "__OTR__startup_logo/dl2"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_2C88[] = "__OTR__startup_logo/startup_logo_seg6_gfx_2C88"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_2D58[] = "__OTR__startup_logo/startup_logo_seg6_gfx_2D58"; - -static const ALIGN_ASSET(2) char startup_logo_dl3[] = "__OTR__startup_logo/dl3"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_2F20[] = "__OTR__startup_logo/startup_logo_seg6_gfx_2F20"; - -static const ALIGN_ASSET(2) char startup_logo_dl4[] = "__OTR__startup_logo/dl4"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_2FF0[] = "__OTR__startup_logo/startup_logo_seg6_gfx_2FF0"; - -static const ALIGN_ASSET(2) char startup_logo_dl5[] = "__OTR__startup_logo/dl5"; - -static const ALIGN_ASSET(2) char startup_logo_dl6[] = "__OTR__startup_logo/dl6"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_3180[] = "__OTR__startup_logo/startup_logo_seg6_gfx_3180"; - -static const ALIGN_ASSET(2) char startup_logo_dl7[] = "__OTR__startup_logo/dl7"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_3308[] = "__OTR__startup_logo/startup_logo_seg6_gfx_3308"; - -static const ALIGN_ASSET(2) char startup_logo_dl8[] = "__OTR__startup_logo/dl8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_33D8[] = "__OTR__startup_logo/startup_logo_seg6_gfx_33D8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3538[] = "__OTR__startup_logo/startup_logo_seg6_vtx_3538"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3738[] = "__OTR__startup_logo/startup_logo_seg6_vtx_3738"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3908[] = "__OTR__startup_logo/startup_logo_seg6_vtx_3908"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3AE8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_3AE8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3CD8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_3CD8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3ED8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_3ED8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_3F48[] = "__OTR__startup_logo/startup_logo_seg6_vtx_3F48"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4148[] = "__OTR__startup_logo/startup_logo_seg6_vtx_4148"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4338[] = "__OTR__startup_logo/startup_logo_seg6_vtx_4338"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4438[] = "__OTR__startup_logo/startup_logo_seg6_vtx_4438"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4638[] = "__OTR__startup_logo/startup_logo_seg6_vtx_4638"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4838[] = "__OTR__startup_logo/startup_logo_seg6_vtx_4838"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_49C8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_49C8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4B48[] = "__OTR__startup_logo/startup_logo_seg6_vtx_4B48"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4CC8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_4CC8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_4EC8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_4EC8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5098[] = "__OTR__startup_logo/startup_logo_seg6_vtx_5098"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_50D8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_50D8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_52D8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_52D8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_54D8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_54D8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5668[] = "__OTR__startup_logo/startup_logo_seg6_vtx_5668"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5868[] = "__OTR__startup_logo/startup_logo_seg6_vtx_5868"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5A68[] = "__OTR__startup_logo/startup_logo_seg6_vtx_5A68"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5BE8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_5BE8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5DE8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_5DE8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_5FC8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_5FC8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_61B8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_61B8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_62F8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_62F8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_64F8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_64F8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_66F8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_66F8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_68F8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_68F8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_6AF8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_6AF8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_6CF8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_6CF8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_6ED8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_6ED8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_7008[] = "__OTR__startup_logo/startup_logo_seg6_vtx_7008"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_71D8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_71D8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_73D8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_73D8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_75A8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_75A8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_vtx_77A8[] = "__OTR__startup_logo/startup_logo_seg6_vtx_77A8"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_7988[] = "__OTR__startup_logo/startup_logo_seg6_gfx_7988"; - -static const ALIGN_ASSET(2) char startup_logo_dl9[] = "__OTR__startup_logo/dl9"; - -static const ALIGN_ASSET(2) char startup_logo_dl10[] = "__OTR__startup_logo/dl10"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_7C18[] = "__OTR__startup_logo/startup_logo_seg6_gfx_7C18"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_7CE8[] = "__OTR__startup_logo/startup_logo_seg6_gfx_7CE8"; - -static const ALIGN_ASSET(2) char startup_logo_dl11[] = "__OTR__startup_logo/dl11"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_7E50[] = "__OTR__startup_logo/startup_logo_seg6_gfx_7E50"; - -static const ALIGN_ASSET(2) char startup_logo_dl12[] = "__OTR__startup_logo/dl12"; - -static const ALIGN_ASSET(2) char startup_logo_dl13[] = "__OTR__startup_logo/dl13"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_7E90[] = "__OTR__startup_logo/startup_logo_seg6_gfx_7E90"; - -static const ALIGN_ASSET(2) char startup_logo_dl14[] = "__OTR__startup_logo/dl14"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_7ED0[] = "__OTR__startup_logo/startup_logo_seg6_gfx_7ED0"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_7F88[] = "__OTR__startup_logo/startup_logo_seg6_gfx_7F88"; - -static const ALIGN_ASSET(2) char startup_logo_dl15[] = "__OTR__startup_logo/dl15"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_80F0[] = "__OTR__startup_logo/startup_logo_seg6_gfx_80F0"; - -static const ALIGN_ASSET(2) char startup_logo_dl16[] = "__OTR__startup_logo/dl16"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_8250[] = "__OTR__startup_logo/startup_logo_seg6_gfx_8250"; - -static const ALIGN_ASSET(2) char startup_logo_dl17[] = "__OTR__startup_logo/dl17"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_83C8[] = "__OTR__startup_logo/startup_logo_seg6_gfx_83C8"; - -static const ALIGN_ASSET(2) char startup_logo_dl18[] = "__OTR__startup_logo/dl18"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_8548[] = "__OTR__startup_logo/startup_logo_seg6_gfx_8548"; - -static const ALIGN_ASSET(2) char startup_logo_dl19[] = "__OTR__startup_logo/dl19"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_87A0[] = "__OTR__startup_logo/startup_logo_seg6_gfx_87A0"; - -static const ALIGN_ASSET(2) char startup_logo_dl20[] = "__OTR__startup_logo/dl20"; - -static const ALIGN_ASSET(2) char startup_reflection_map_gold[] = "__OTR__startup_logo/reflection_map_gold"; - -static const ALIGN_ASSET(2) char startup_texture_dl1[] = "__OTR__startup_logo/startup_texture_dl1"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_9248[] = "__OTR__startup_logo/startup_logo_seg6_gfx_9248"; - -static const ALIGN_ASSET(2) char lights[] = "__OTR__startup_logo/lights"; - -static const ALIGN_ASSET(2) char startup_texture_dl2[] = "__OTR__startup_logo/startup_texture_dl2"; - -static const ALIGN_ASSET(2) char startup_logo_seg6_gfx_9320[] = "__OTR__startup_logo/startup_logo_seg6_gfx_9320"; - -static const ALIGN_ASSET(2) char startup_texture_dl3[] = "__OTR__startup_logo/startup_texture_dl3"; - -static const ALIGN_ASSET(2) char startup_texture_dl4[] = "__OTR__startup_logo/startup_texture_dl4"; - diff --git a/include/assets/textures/boo_frames.h b/include/assets/textures/boo_frames.h new file mode 100644 index 000000000..28c6cbc04 --- /dev/null +++ b/include/assets/textures/boo_frames.h @@ -0,0 +1,95 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gTextureBoo01[] = "__OTR__textures/boo_frames/gTextureBoo01"; + +static const ALIGN_ASSET(2) char gTextureBoo02[] = "__OTR__textures/boo_frames/gTextureBoo02"; + +static const ALIGN_ASSET(2) char gTextureBoo03[] = "__OTR__textures/boo_frames/gTextureBoo03"; + +static const ALIGN_ASSET(2) char gTextureBoo04[] = "__OTR__textures/boo_frames/gTextureBoo04"; + +static const ALIGN_ASSET(2) char gTextureBoo05[] = "__OTR__textures/boo_frames/gTextureBoo05"; + +static const ALIGN_ASSET(2) char gTextureBoo06[] = "__OTR__textures/boo_frames/gTextureBoo06"; + +static const ALIGN_ASSET(2) char gTextureBoo07[] = "__OTR__textures/boo_frames/gTextureBoo07"; + +static const ALIGN_ASSET(2) char gTextureBoo08[] = "__OTR__textures/boo_frames/gTextureBoo08"; + +static const ALIGN_ASSET(2) char gTextureBoo09[] = "__OTR__textures/boo_frames/gTextureBoo09"; + +static const ALIGN_ASSET(2) char gTextureBoo10[] = "__OTR__textures/boo_frames/gTextureBoo10"; + +static const ALIGN_ASSET(2) char gTextureBoo11[] = "__OTR__textures/boo_frames/gTextureBoo11"; + +static const ALIGN_ASSET(2) char gTextureBoo12[] = "__OTR__textures/boo_frames/gTextureBoo12"; + +static const ALIGN_ASSET(2) char gTextureBoo13[] = "__OTR__textures/boo_frames/gTextureBoo13"; + +static const ALIGN_ASSET(2) char gTextureBoo14[] = "__OTR__textures/boo_frames/gTextureBoo14"; + +static const ALIGN_ASSET(2) char gTextureBoo15[] = "__OTR__textures/boo_frames/gTextureBoo15"; + +static const ALIGN_ASSET(2) char gTextureBoo16[] = "__OTR__textures/boo_frames/gTextureBoo16"; + +static const ALIGN_ASSET(2) char gTextureBoo17[] = "__OTR__textures/boo_frames/gTextureBoo17"; + +static const ALIGN_ASSET(2) char gTextureBoo18[] = "__OTR__textures/boo_frames/gTextureBoo18"; + +static const ALIGN_ASSET(2) char gTextureBoo19[] = "__OTR__textures/boo_frames/gTextureBoo19"; + +static const ALIGN_ASSET(2) char gTextureBoo20[] = "__OTR__textures/boo_frames/gTextureBoo20"; + +static const ALIGN_ASSET(2) char gTextureBoo21[] = "__OTR__textures/boo_frames/gTextureBoo21"; + +static const ALIGN_ASSET(2) char gTextureBoo22[] = "__OTR__textures/boo_frames/gTextureBoo22"; + +static const ALIGN_ASSET(2) char gTextureBoo23[] = "__OTR__textures/boo_frames/gTextureBoo23"; + +static const ALIGN_ASSET(2) char gTextureBoo24[] = "__OTR__textures/boo_frames/gTextureBoo24"; + +static const ALIGN_ASSET(2) char gTextureBoo25[] = "__OTR__textures/boo_frames/gTextureBoo25"; + +static const ALIGN_ASSET(2) char gTextureBoo26[] = "__OTR__textures/boo_frames/gTextureBoo26"; + +static const ALIGN_ASSET(2) char gTextureBoo27[] = "__OTR__textures/boo_frames/gTextureBoo27"; + +static const ALIGN_ASSET(2) char gTextureBoo28[] = "__OTR__textures/boo_frames/gTextureBoo28"; + +static const ALIGN_ASSET(2) char gTextureBoo29[] = "__OTR__textures/boo_frames/gTextureBoo29"; + +static const char* gTextureGhosts[] = { + gTextureBoo01, + gTextureBoo02, + gTextureBoo03, + gTextureBoo04, + gTextureBoo05, + gTextureBoo06, + gTextureBoo07, + gTextureBoo08, + gTextureBoo09, + gTextureBoo10, + gTextureBoo11, + gTextureBoo12, + gTextureBoo13, + gTextureBoo14, + gTextureBoo15, + gTextureBoo16, + gTextureBoo17, + gTextureBoo18, + gTextureBoo19, + gTextureBoo20, + gTextureBoo21, + gTextureBoo22, + gTextureBoo23, + gTextureBoo24, + gTextureBoo25, + gTextureBoo26, + gTextureBoo27, + gTextureBoo28, + gTextureBoo29, +}; + diff --git a/include/assets/textures/ceremony_data.h b/include/assets/textures/ceremony_data.h new file mode 100644 index 000000000..365550cae --- /dev/null +++ b/include/assets/textures/ceremony_data.h @@ -0,0 +1,19 @@ +#pragma once + +#include +#include +#include +#include + +static const ALIGN_ASSET(2) char reflection_map_brass[] = "__OTR__textures/ceremony_data/reflection_map_brass"; + +static const ALIGN_ASSET(2) char reflection_map_silver[] = "__OTR__textures/ceremony_data/reflection_map_silver"; + +static const ALIGN_ASSET(2) char ceremony_reflection_map_gold[] = "__OTR__textures/ceremony_data/ceremony_reflection_map_gold"; + +static const ALIGN_ASSET(2) char gTexturePodium1[] = "__OTR__textures/ceremony_data/texture_podium1"; + +static const ALIGN_ASSET(2) char gTexturePodium2[] = "__OTR__textures/ceremony_data/texture_podium2"; + +static const ALIGN_ASSET(2) char gTexturePodium3[] = "__OTR__textures/ceremony_data/texture_podium3"; + diff --git a/include/assets/textures/common_data.h b/include/assets/textures/common_data.h new file mode 100644 index 000000000..7a8d825a5 --- /dev/null +++ b/include/assets/textures/common_data.h @@ -0,0 +1,428 @@ +#pragma once + +#include +#include +#include +#include + +static const ALIGN_ASSET(2) char common_tlut_finish_line_banner[] = "__OTR__textures/common_data/common_tlut_finish_line_banner"; + +static const ALIGN_ASSET(2) char common_texture_particle_fire[] = "__OTR__textures/common_data/common_texture_particle_fire"; + +static const ALIGN_ASSET(2) char common_texture_item_box_question_mark[] = "__OTR__textures/common_data/common_texture_item_box_question_mark"; + +static const ALIGN_ASSET(2) char common_texture_banana[] = "__OTR__textures/common_data/common_texture_banana"; + +static const ALIGN_ASSET(2) char common_texture_flat_banana[] = "__OTR__textures/common_data/common_texture_flat_banana"; + +static const ALIGN_ASSET(2) char common_tlut_trees_import[] = "__OTR__textures/common_data/common_tlut_trees_import"; + +static const ALIGN_ASSET(2) char common_tlut_green_shell[] = "__OTR__textures/common_data/common_tlut_green_shell"; + +static const ALIGN_ASSET(2) char common_tlut_blue_shell[] = "__OTR__textures/common_data/common_tlut_blue_shell"; + +static const ALIGN_ASSET(2) char common_shadow_i4[] = "__OTR__textures/common_data/common_shadow_i4"; + +static const ALIGN_ASSET(2) char D_0D006AD8[] = "__OTR__textures/common_data/D_0D006AD8"; + +static const ALIGN_ASSET(2) char common_tlut_debug_font[] = "__OTR__textures/common_data/common_tlut_debug_font"; + +static const ALIGN_ASSET(2) char common_texture_debug_font[] = "__OTR__textures/common_data/common_texture_debug_font"; + +static const ALIGN_ASSET(2) char common_texture_speedometer[] = "__OTR__textures/common_data/common_texture_speedometer"; + +static const ALIGN_ASSET(2) char common_texture_speedometer_needle[] = "__OTR__textures/common_data/common_texture_speedometer_needle"; + +static const ALIGN_ASSET(2) char common_texture_hud_lap[] = "__OTR__textures/common_data/common_texture_hud_lap"; + +static const ALIGN_ASSET(2) char common_texture_hud_123[] = "__OTR__textures/common_data/common_texture_hud_123"; + +static const ALIGN_ASSET(2) char common_texture_hud_lap_time[] = "__OTR__textures/common_data/common_texture_hud_lap_time"; + +static const ALIGN_ASSET(2) char common_texture_hud_lap_1_on_3[] = "__OTR__textures/common_data/common_texture_hud_lap_1_on_3"; + +static const ALIGN_ASSET(2) char common_texture_hud_lap_2_on_3[] = "__OTR__textures/common_data/common_texture_hud_lap_2_on_3"; + +static const ALIGN_ASSET(2) char common_texture_hud_lap_3_on_3[] = "__OTR__textures/common_data/common_texture_hud_lap_3_on_3"; + +static const ALIGN_ASSET(2) char common_texture_hud_total_time[] = "__OTR__textures/common_data/common_texture_hud_total_time"; + +static const ALIGN_ASSET(2) char common_texture_hud_time[] = "__OTR__textures/common_data/common_texture_hud_time"; + +static const ALIGN_ASSET(2) char common_texture_hud_normal_digit[] = "__OTR__textures/common_data/common_texture_hud_normal_digit"; + +static const ALIGN_ASSET(2) char common_texture_hud_1st[] = "__OTR__textures/common_data/common_texture_hud_1st"; + +static const ALIGN_ASSET(2) char common_texture_hud_2nd[] = "__OTR__textures/common_data/common_texture_hud_2nd"; + +static const ALIGN_ASSET(2) char common_texture_hud_3rd[] = "__OTR__textures/common_data/common_texture_hud_3rd"; + +static const ALIGN_ASSET(2) char common_texture_hud_4th[] = "__OTR__textures/common_data/common_texture_hud_4th"; + +static const ALIGN_ASSET(2) char common_texture_hud_5th[] = "__OTR__textures/common_data/common_texture_hud_5th"; + +static const ALIGN_ASSET(2) char common_texture_hud_6th[] = "__OTR__textures/common_data/common_texture_hud_6th"; + +static const ALIGN_ASSET(2) char common_texture_hud_7th[] = "__OTR__textures/common_data/common_texture_hud_7th"; + +static const ALIGN_ASSET(2) char common_texture_hud_8th[] = "__OTR__textures/common_data/common_texture_hud_8th"; + +static const char* common_texture_hud_place[] = { + common_texture_hud_1st, + common_texture_hud_2nd, + common_texture_hud_3rd, + common_texture_hud_4th, + common_texture_hud_5th, + common_texture_hud_6th, + common_texture_hud_7th, + common_texture_hud_8th, +}; + +static const ALIGN_ASSET(2) char common_texture_first_place[] = "__OTR__textures/common_data/common_texture_first_place"; + +static const ALIGN_ASSET(2) char common_texture_second_place[] = "__OTR__textures/common_data/common_texture_second_place"; + +static const ALIGN_ASSET(2) char common_texture_third_place[] = "__OTR__textures/common_data/common_texture_third_place"; + +static const ALIGN_ASSET(2) char common_texture_fourth_place[] = "__OTR__textures/common_data/common_texture_fourth_place"; + +static const char* D_0D015258[] = { + common_texture_first_place, + common_texture_second_place, + common_texture_third_place, + common_texture_fourth_place, +}; + +static const ALIGN_ASSET(2) char common_tlut_player_emblem[] = "__OTR__textures/common_data/common_tlut_player_emblem"; + +static const ALIGN_ASSET(2) char common_texture_player_emblem_1p[] = "__OTR__textures/common_data/common_texture_player_emblem_1p"; + +static const ALIGN_ASSET(2) char common_texture_player_emblem_2p[] = "__OTR__textures/common_data/common_texture_player_emblem_2p"; + +static const ALIGN_ASSET(2) char common_texture_player_emblem_3p[] = "__OTR__textures/common_data/common_texture_player_emblem_3p"; + +static const ALIGN_ASSET(2) char common_texture_player_emblem_4p[] = "__OTR__textures/common_data/common_texture_player_emblem_4p"; + +static const char* common_texture_player_emblem[] = { + common_texture_player_emblem_1p, + common_texture_player_emblem_2p, + common_texture_player_emblem_3p, + common_texture_player_emblem_4p, +}; + +static const ALIGN_ASSET(2) char common_tlut_hud_type_C_rank_font[] = "__OTR__textures/common_data/common_tlut_hud_type_C_rank_font"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_1[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_font_1"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_2[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_font_2"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_3[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_font_3"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_4[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_font_4"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_5[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_font_5"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_6[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_font_6"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_7[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_font_7"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_font_8[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_font_8"; + +static const char* common_texture_hud_type_C_rank_font[] = { + common_texture_hud_type_C_rank_font_1, + common_texture_hud_type_C_rank_font_2, + common_texture_hud_type_C_rank_font_3, + common_texture_hud_type_C_rank_font_4, + common_texture_hud_type_C_rank_font_5, + common_texture_hud_type_C_rank_font_6, + common_texture_hud_type_C_rank_font_7, + common_texture_hud_type_C_rank_font_8, +}; + +static const ALIGN_ASSET(2) char common_tlut_hud_type_C_rank_tiny_font[] = "__OTR__textures/common_data/common_tlut_hud_type_C_rank_tiny_font"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_0[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_0"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_1[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_1"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_2[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_2"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_3[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_3"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_4[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_4"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_5[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_5"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_6[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_6"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_7[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_7"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_8[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_8"; + +static const ALIGN_ASSET(2) char common_texture_hud_type_C_rank_tiny_font_9[] = "__OTR__textures/common_data/common_texture_hud_type_C_rank_tiny_font_9"; + +static const char* common_texture_hud_type_C_rank_tiny_font[] = { + common_texture_hud_type_C_rank_tiny_font_0, + common_texture_hud_type_C_rank_tiny_font_1, + common_texture_hud_type_C_rank_tiny_font_2, + common_texture_hud_type_C_rank_tiny_font_3, + common_texture_hud_type_C_rank_tiny_font_4, + common_texture_hud_type_C_rank_tiny_font_5, + common_texture_hud_type_C_rank_tiny_font_6, + common_texture_hud_type_C_rank_tiny_font_7, + common_texture_hud_type_C_rank_tiny_font_8, + common_texture_hud_type_C_rank_tiny_font_9, +}; + +static const ALIGN_ASSET(2) char common_texture_character_portrait_border[] = "__OTR__textures/common_data/common_texture_character_portrait_border"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_mario[] = "__OTR__textures/common_data/common_tlut_portrait_mario"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_luigi[] = "__OTR__textures/common_data/common_tlut_portrait_luigi"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_peach[] = "__OTR__textures/common_data/common_tlut_portrait_peach"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_toad[] = "__OTR__textures/common_data/common_tlut_portrait_toad"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_yoshi[] = "__OTR__textures/common_data/common_tlut_portrait_yoshi"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_donkey_kong[] = "__OTR__textures/common_data/common_tlut_portrait_donkey_kong"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_wario[] = "__OTR__textures/common_data/common_tlut_portrait_wario"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_bowser[] = "__OTR__textures/common_data/common_tlut_portrait_bowser"; + +static const ALIGN_ASSET(2) char common_tlut_portrait_bomb_kart_and_question_mark[] = "__OTR__textures/common_data/common_tlut_portrait_bomb_kart_and_question_mark"; + +static const ALIGN_ASSET(2) char common_texture_portrait_mario[] = "__OTR__textures/common_data/common_texture_portrait_mario"; + +static const ALIGN_ASSET(2) char common_texture_portrait_luigi[] = "__OTR__textures/common_data/common_texture_portrait_luigi"; + +static const ALIGN_ASSET(2) char common_texture_portrait_peach[] = "__OTR__textures/common_data/common_texture_portrait_peach"; + +static const ALIGN_ASSET(2) char common_texture_portrait_toad[] = "__OTR__textures/common_data/common_texture_portrait_toad"; + +static const ALIGN_ASSET(2) char common_texture_portrait_yoshi[] = "__OTR__textures/common_data/common_texture_portrait_yoshi"; + +static const ALIGN_ASSET(2) char common_texture_portrait_donkey_kong[] = "__OTR__textures/common_data/common_texture_portrait_donkey_kong"; + +static const ALIGN_ASSET(2) char common_texture_portrait_wario[] = "__OTR__textures/common_data/common_texture_portrait_wario"; + +static const ALIGN_ASSET(2) char common_texture_portrait_bowser[] = "__OTR__textures/common_data/common_texture_portrait_bowser"; + +static const ALIGN_ASSET(2) char common_texture_portrait_bomb_kart[] = "__OTR__textures/common_data/common_texture_portrait_bomb_kart"; + +static const ALIGN_ASSET(2) char common_texture_portrait_question_mark[] = "__OTR__textures/common_data/common_texture_portrait_question_mark"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_none[] = "__OTR__textures/common_data/common_tlut_item_window_none"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_banana[] = "__OTR__textures/common_data/common_tlut_item_window_banana"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_banana_bunch[] = "__OTR__textures/common_data/common_tlut_item_window_banana_bunch"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_mushroom[] = "__OTR__textures/common_data/common_tlut_item_window_mushroom"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_double_mushroom[] = "__OTR__textures/common_data/common_tlut_item_window_double_mushroom"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_triple_mushroom[] = "__OTR__textures/common_data/common_tlut_item_window_triple_mushroom"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_super_mushroom[] = "__OTR__textures/common_data/common_tlut_item_window_super_mushroom"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_blue_shell[] = "__OTR__textures/common_data/common_tlut_item_window_blue_shell"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_boo[] = "__OTR__textures/common_data/common_tlut_item_window_boo"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_green_shell[] = "__OTR__textures/common_data/common_tlut_item_window_green_shell"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_triple_green_shell[] = "__OTR__textures/common_data/common_tlut_item_window_triple_green_shell"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_red_shell[] = "__OTR__textures/common_data/common_tlut_item_window_red_shell"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_triple_red_shell[] = "__OTR__textures/common_data/common_tlut_item_window_triple_red_shell"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_star[] = "__OTR__textures/common_data/common_tlut_item_window_star"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_thunder_bolt[] = "__OTR__textures/common_data/common_tlut_item_window_thunder_bolt"; + +static const ALIGN_ASSET(2) char common_tlut_item_window_fake_item_box[] = "__OTR__textures/common_data/common_tlut_item_window_fake_item_box"; + +static const ALIGN_ASSET(2) char common_texture_item_window_none[] = "__OTR__textures/common_data/common_texture_item_window_none"; + +static const ALIGN_ASSET(2) char common_texture_item_window_banana[] = "__OTR__textures/common_data/common_texture_item_window_banana"; + +static const ALIGN_ASSET(2) char common_texture_item_window_banana_bunch[] = "__OTR__textures/common_data/common_texture_item_window_banana_bunch"; + +static const ALIGN_ASSET(2) char common_texture_item_window_mushroom[] = "__OTR__textures/common_data/common_texture_item_window_mushroom"; + +static const ALIGN_ASSET(2) char common_texture_item_window_double_mushroom[] = "__OTR__textures/common_data/common_texture_item_window_double_mushroom"; + +static const ALIGN_ASSET(2) char common_texture_item_window_triple_mushroom[] = "__OTR__textures/common_data/common_texture_item_window_triple_mushroom"; + +static const ALIGN_ASSET(2) char common_texture_item_window_super_mushroom[] = "__OTR__textures/common_data/common_texture_item_window_super_mushroom"; + +static const ALIGN_ASSET(2) char common_texture_item_window_blue_shell[] = "__OTR__textures/common_data/common_texture_item_window_blue_shell"; + +static const ALIGN_ASSET(2) char common_texture_item_window_boo[] = "__OTR__textures/common_data/common_texture_item_window_boo"; + +static const ALIGN_ASSET(2) char common_texture_item_window_green_shell[] = "__OTR__textures/common_data/common_texture_item_window_green_shell"; + +static const ALIGN_ASSET(2) char common_texture_item_window_triple_green_shell[] = "__OTR__textures/common_data/common_texture_item_window_triple_green_shell"; + +static const ALIGN_ASSET(2) char common_texture_item_window_red_shell[] = "__OTR__textures/common_data/common_texture_item_window_red_shell"; + +static const ALIGN_ASSET(2) char common_texture_item_window_triple_red_shell[] = "__OTR__textures/common_data/common_texture_item_window_triple_red_shell"; + +static const ALIGN_ASSET(2) char common_texture_item_window_star[] = "__OTR__textures/common_data/common_texture_item_window_star"; + +static const ALIGN_ASSET(2) char common_texture_item_window_thunder_bolt[] = "__OTR__textures/common_data/common_texture_item_window_thunder_bolt"; + +static const ALIGN_ASSET(2) char common_texture_item_window_fake_item_box[] = "__OTR__textures/common_data/common_texture_item_window_fake_item_box"; + +static const ALIGN_ASSET(2) char common_tlut_lakitu_no_lights[] = "__OTR__textures/common_data/common_tlut_lakitu_no_lights"; + +static const ALIGN_ASSET(2) char common_tlut_lakitu_red_lights[] = "__OTR__textures/common_data/common_tlut_lakitu_red_lights"; + +static const ALIGN_ASSET(2) char common_tlut_lakitu_blue_lights[] = "__OTR__textures/common_data/common_tlut_lakitu_blue_lights"; + +static const char* common_tlut_lakitu_countdown[] = { + common_tlut_lakitu_no_lights, + common_tlut_lakitu_red_lights, + common_tlut_lakitu_blue_lights, +}; + +static const ALIGN_ASSET(2) char common_tlut_lakitu_checkered_flag[] = "__OTR__textures/common_data/common_tlut_lakitu_checkered_flag"; + +static const ALIGN_ASSET(2) char common_tlut_lakitu_second_lap[] = "__OTR__textures/common_data/common_tlut_lakitu_second_lap"; + +static const ALIGN_ASSET(2) char common_tlut_lakitu_final_lap[] = "__OTR__textures/common_data/common_tlut_lakitu_final_lap"; + +static const ALIGN_ASSET(2) char common_tlut_lakitu_reverse[] = "__OTR__textures/common_data/common_tlut_lakitu_reverse"; + +static const ALIGN_ASSET(2) char common_tlut_lakitu_fishing[] = "__OTR__textures/common_data/common_tlut_lakitu_fishing"; + +static const ALIGN_ASSET(2) char common_tlut_traffic_light[] = "__OTR__textures/common_data/common_tlut_traffic_light"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_01[] = "__OTR__textures/common_data/common_texture_traffic_light_01"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_02[] = "__OTR__textures/common_data/common_texture_traffic_light_02"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_03[] = "__OTR__textures/common_data/common_texture_traffic_light_03"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_04[] = "__OTR__textures/common_data/common_texture_traffic_light_04"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_05[] = "__OTR__textures/common_data/common_texture_traffic_light_05"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_06[] = "__OTR__textures/common_data/common_texture_traffic_light_06"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_07[] = "__OTR__textures/common_data/common_texture_traffic_light_07"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_08[] = "__OTR__textures/common_data/common_texture_traffic_light_08"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_09[] = "__OTR__textures/common_data/common_texture_traffic_light_09"; + +static const ALIGN_ASSET(2) char common_texture_traffic_light_10[] = "__OTR__textures/common_data/common_texture_traffic_light_10"; + +static const ALIGN_ASSET(2) char common_texture_particle_leaf[] = "__OTR__textures/common_data/common_texture_particle_leaf"; + +static const ALIGN_ASSET(2) char common_texture_unused_particle_leaf[] = "__OTR__textures/common_data/common_texture_unused_particle_leaf"; + +static const ALIGN_ASSET(2) char D_0D0293D8[] = "__OTR__textures/common_data/D_0D0293D8"; + +static const ALIGN_ASSET(2) char D_0D029458[] = "__OTR__textures/common_data/D_0D029458"; + +static const ALIGN_ASSET(2) char common_texture_bomb_1[] = "__OTR__textures/common_data/common_texture_bomb_1"; + +static const ALIGN_ASSET(2) char common_texture_bomb_2[] = "__OTR__textures/common_data/common_texture_bomb_2"; + +static const ALIGN_ASSET(2) char common_texture_bomb_3[] = "__OTR__textures/common_data/common_texture_bomb_3"; + +static const ALIGN_ASSET(2) char common_texture_bomb_4[] = "__OTR__textures/common_data/common_texture_bomb_4"; + +static const char* common_texture_bomb[] = { + common_texture_bomb_1, + common_texture_bomb_2, + common_texture_bomb_3, + common_texture_bomb_4, +}; + +static const ALIGN_ASSET(2) char common_tlut_bomb[] = "__OTR__textures/common_data/common_tlut_bomb"; + +static const ALIGN_ASSET(2) char D_0D02AA58[] = "__OTR__textures/common_data/D_0D02AA58"; + +static const ALIGN_ASSET(2) char common_texture_particle_spark_1[] = "__OTR__textures/common_data/common_texture_particle_spark_1"; + +static const ALIGN_ASSET(2) char common_texture_particle_spark_2[] = "__OTR__textures/common_data/common_texture_particle_spark_2"; + +static const ALIGN_ASSET(2) char common_texture_particle_spark_3[] = "__OTR__textures/common_data/common_texture_particle_spark_3"; + +static const ALIGN_ASSET(2) char common_texture_particle_spark_4[] = "__OTR__textures/common_data/common_texture_particle_spark_4"; + +static const char* common_texture_particle_spark[] = { + common_texture_particle_spark_1, + common_texture_particle_spark_2, + common_texture_particle_spark_3, + common_texture_particle_spark_4, +}; + +static const ALIGN_ASSET(2) char common_texture_particle_smoke_1[] = "__OTR__textures/common_data/common_texture_particle_smoke_1"; + +static const ALIGN_ASSET(2) char common_texture_particle_smoke_2[] = "__OTR__textures/common_data/common_texture_particle_smoke_2"; + +static const ALIGN_ASSET(2) char common_texture_particle_smoke_3[] = "__OTR__textures/common_data/common_texture_particle_smoke_3"; + +static const ALIGN_ASSET(2) char common_texture_particle_smoke_4[] = "__OTR__textures/common_data/common_texture_particle_smoke_4"; + +static const char* common_texture_particle_smoke[] = { + common_texture_particle_smoke_1, + common_texture_particle_smoke_2, + common_texture_particle_smoke_3, + common_texture_particle_smoke_4, +}; + +static const ALIGN_ASSET(2) char common_texture_minimap_finish_line[] = "__OTR__textures/common_data/common_texture_minimap_finish_line"; + +static const ALIGN_ASSET(2) char common_texture_minimap_kart_mario[] = "__OTR__textures/common_data/common_texture_minimap_kart_mario"; + +static const ALIGN_ASSET(2) char common_texture_minimap_kart_luigi[] = "__OTR__textures/common_data/common_texture_minimap_kart_luigi"; + +static const ALIGN_ASSET(2) char common_texture_minimap_kart_yoshi[] = "__OTR__textures/common_data/common_texture_minimap_kart_yoshi"; + +static const ALIGN_ASSET(2) char common_texture_minimap_kart_toad[] = "__OTR__textures/common_data/common_texture_minimap_kart_toad"; + +static const ALIGN_ASSET(2) char common_texture_minimap_kart_donkey_kong[] = "__OTR__textures/common_data/common_texture_minimap_kart_donkey_kong"; + +static const ALIGN_ASSET(2) char common_texture_minimap_kart_wario[] = "__OTR__textures/common_data/common_texture_minimap_kart_wario"; + +static const ALIGN_ASSET(2) char common_texture_minimap_kart_peach[] = "__OTR__textures/common_data/common_texture_minimap_kart_peach"; + +static const ALIGN_ASSET(2) char common_texture_minimap_kart_bowser[] = "__OTR__textures/common_data/common_texture_minimap_kart_bowser"; + +static const char* common_texture_minimap_kart_character[] = { + common_texture_minimap_kart_mario, + common_texture_minimap_kart_luigi, + common_texture_minimap_kart_yoshi, + common_texture_minimap_kart_toad, + common_texture_minimap_kart_donkey_kong, + common_texture_minimap_kart_wario, + common_texture_minimap_kart_peach, + common_texture_minimap_kart_bowser, +}; + +static const ALIGN_ASSET(2) char common_texture_minimap_progress_dot[] = "__OTR__textures/common_data/common_texture_minimap_progress_dot"; + +static const ALIGN_ASSET(2) char common_texture_minimap_mario[] = "__OTR__textures/common_data/common_texture_minimap_mario"; + +static const ALIGN_ASSET(2) char common_texture_minimap_luigi[] = "__OTR__textures/common_data/common_texture_minimap_luigi"; + +static const ALIGN_ASSET(2) char common_texture_minimap_yoshi[] = "__OTR__textures/common_data/common_texture_minimap_yoshi"; + +static const ALIGN_ASSET(2) char common_texture_minimap_toad[] = "__OTR__textures/common_data/common_texture_minimap_toad"; + +static const ALIGN_ASSET(2) char common_texture_minimap_dk[] = "__OTR__textures/common_data/common_texture_minimap_dk"; + +static const ALIGN_ASSET(2) char common_texture_minimap_wario[] = "__OTR__textures/common_data/common_texture_minimap_wario"; + +static const ALIGN_ASSET(2) char common_texture_minimap_peach[] = "__OTR__textures/common_data/common_texture_minimap_peach"; + +static const ALIGN_ASSET(2) char common_texture_minimap_bowser[] = "__OTR__textures/common_data/common_texture_minimap_bowser"; + diff --git a/include/assets/textures/karts/bowser_kart.h b/include/assets/textures/karts/bowser_kart.h new file mode 100644 index 000000000..6f0ffb5da --- /dev/null +++ b/include/assets/textures/karts/bowser_kart.h @@ -0,0 +1,5854 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gKartBowser000Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame000_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser000Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame000_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser000Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame000_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser000Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame000_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser001Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame001_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser001Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame001_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser001Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame001_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser001Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame001_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser002Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame002_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser002Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame002_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser002Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame002_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser002Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame002_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser003Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame003_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser003Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame003_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser003Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame003_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser003Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame003_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser004Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame004_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser004Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame004_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser004Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame004_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser004Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame004_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser005Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame005_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser005Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame005_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser005Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame005_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser005Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame005_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser006Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame006_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser006Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame006_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser006Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame006_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser006Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame006_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser007Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame007_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser007Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame007_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser007Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame007_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser007Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame007_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser008Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame008_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser008Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame008_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser008Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame008_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser008Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame008_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser009Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame009_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser009Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame009_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser009Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame009_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser009Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame009_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser010Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame010_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser010Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame010_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser010Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame010_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser010Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame010_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser011Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame011_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser011Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame011_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser011Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame011_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser011Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame011_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser012Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame012_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser012Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame012_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser012Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame012_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser012Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame012_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser013Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame013_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser013Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame013_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser013Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame013_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser013Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame013_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser014Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame014_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser014Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame014_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser014Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame014_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser014Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame014_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser015Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame015_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser015Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame015_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser015Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame015_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser015Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame015_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser016Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame016_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser016Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame016_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser016Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame016_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser016Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame016_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser017Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame017_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser017Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame017_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser017Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame017_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser017Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame017_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser018Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame018_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser018Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame018_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser018Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame018_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser018Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame018_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser019Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame019_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser019Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame019_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser019Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame019_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser019Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame019_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser020Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame020_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser020Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame020_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser020Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame020_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser020Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame020_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser021Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame021_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser021Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame021_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser021Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame021_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser021Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame021_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser022Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame022_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser022Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame022_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser022Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame022_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser022Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame022_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser023Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame023_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser023Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame023_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser023Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame023_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser023Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame023_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser024Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame024_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser024Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame024_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser024Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame024_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser024Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame024_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser025Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame025_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser025Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame025_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser025Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame025_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser025Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame025_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser026Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame026_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser026Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame026_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser026Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame026_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser026Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame026_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser027Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame027_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser027Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame027_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser027Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame027_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser027Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame027_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser028Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame028_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser028Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame028_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser028Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame028_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser028Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame028_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser029Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame029_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser029Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame029_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser029Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame029_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser029Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame029_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser030Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame030_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser030Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame030_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser030Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame030_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser030Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame030_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser031Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame031_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser031Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame031_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser031Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame031_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser031Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame031_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser032Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame032_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser032Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame032_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser032Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame032_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser032Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame032_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser033Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame033_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser033Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame033_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser033Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame033_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser033Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame033_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser034Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame034_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser034Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame034_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser034Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame034_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser034Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame034_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser035Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame035_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser035Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame035_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser035Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame035_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser035Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame035_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser036Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame036_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser036Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame036_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser036Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame036_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser036Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame036_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser037Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame037_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser037Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame037_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser037Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame037_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser037Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame037_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser038Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame038_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser038Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame038_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser038Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame038_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser038Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame038_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser039Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame039_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser039Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame039_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser039Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame039_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser039Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame039_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser040Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame040_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser040Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame040_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser040Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame040_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser040Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame040_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser041Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame041_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser041Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame041_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser041Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame041_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser041Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame041_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser042Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame042_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser042Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame042_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser042Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame042_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser042Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame042_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser043Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame043_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser043Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame043_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser043Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame043_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser043Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame043_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser044Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame044_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser044Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame044_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser044Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame044_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser044Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame044_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser045Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame045_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser045Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame045_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser045Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame045_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser045Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame045_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser046Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame046_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser046Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame046_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser046Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame046_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser046Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame046_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser047Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame047_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser047Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame047_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser047Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame047_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser047Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame047_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser048Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame048_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser048Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame048_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser048Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame048_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser048Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame048_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser049Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame049_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser049Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame049_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser049Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame049_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser049Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame049_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser050Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame050_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser050Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame050_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser050Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame050_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser050Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame050_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser051Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame051_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser051Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame051_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser051Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame051_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser051Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame051_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser052Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame052_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser052Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame052_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser052Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame052_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser052Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame052_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser053Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame053_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser053Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame053_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser053Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame053_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser053Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame053_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser054Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame054_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser054Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame054_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser054Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame054_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser054Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame054_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser055Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame055_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser055Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame055_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser055Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame055_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser055Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame055_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser056Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame056_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser056Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame056_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser056Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame056_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser056Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame056_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser057Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame057_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser057Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame057_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser057Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame057_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser057Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame057_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser058Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame058_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser058Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame058_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser058Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame058_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser058Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame058_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser059Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame059_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser059Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame059_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser059Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame059_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser059Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame059_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser060Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame060_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser060Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame060_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser060Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame060_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser060Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame060_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser061Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame061_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser061Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame061_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser061Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame061_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser061Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame061_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser062Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame062_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser062Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame062_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser062Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame062_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser062Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame062_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser063Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame063_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser063Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame063_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser063Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame063_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser063Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame063_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser064Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame064_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser064Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame064_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser064Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame064_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser064Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame064_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser065Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame065_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser065Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame065_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser065Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame065_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser065Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame065_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser066Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame066_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser066Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame066_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser066Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame066_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser066Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame066_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser067Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame067_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser067Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame067_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser067Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame067_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser067Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame067_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser068Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame068_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser068Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame068_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser068Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame068_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser068Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame068_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser069Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame069_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser069Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame069_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser069Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame069_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser069Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame069_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser070Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame070_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser070Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame070_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser070Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame070_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser070Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame070_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser071Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame071_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser071Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame071_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser071Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame071_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser071Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame071_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser072Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame072_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser072Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame072_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser072Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame072_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser072Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame072_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser073Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame073_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser073Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame073_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser073Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame073_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser073Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame073_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser074Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame074_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser074Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame074_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser074Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame074_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser074Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame074_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser075Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame075_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser075Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame075_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser075Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame075_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser075Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame075_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser076Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame076_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser076Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame076_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser076Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame076_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser076Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame076_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser077Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame077_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser077Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame077_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser077Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame077_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser077Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame077_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser078Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame078_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser078Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame078_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser078Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame078_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser078Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame078_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser079Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame079_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser079Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame079_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser079Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame079_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser079Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame079_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser080Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame080_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser080Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame080_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser080Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame080_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser080Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame080_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser081Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame081_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser081Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame081_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser081Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame081_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser081Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame081_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser082Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame082_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser082Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame082_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser082Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame082_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser082Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame082_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser083Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame083_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser083Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame083_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser083Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame083_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser083Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame083_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser084Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame084_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser084Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame084_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser084Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame084_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser084Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame084_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser085Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame085_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser085Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame085_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser085Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame085_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser085Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame085_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser086Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame086_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser086Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame086_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser086Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame086_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser086Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame086_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser087Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame087_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser087Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame087_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser087Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame087_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser087Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame087_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser088Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame088_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser088Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame088_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser088Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame088_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser088Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame088_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser089Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame089_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser089Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame089_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser089Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame089_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser089Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame089_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser090Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame090_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser090Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame090_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser090Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame090_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser090Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame090_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser091Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame091_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser091Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame091_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser091Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame091_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser091Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame091_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser092Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame092_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser092Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame092_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser092Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame092_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser092Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame092_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser093Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame093_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser093Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame093_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser093Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame093_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser093Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame093_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser094Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame094_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser094Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame094_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser094Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame094_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser094Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame094_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser095Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame095_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser095Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame095_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser095Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame095_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser095Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame095_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser096Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame096_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser096Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame096_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser096Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame096_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser096Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame096_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser097Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame097_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser097Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame097_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser097Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame097_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser097Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame097_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser098Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame098_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser098Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame098_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser098Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame098_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser098Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame098_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser099Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame099_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser099Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame099_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser099Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame099_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser099Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame099_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser100Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame100_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser100Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame100_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser100Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame100_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser100Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame100_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser101Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame101_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser101Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame101_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser101Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame101_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser101Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame101_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser102Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame102_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser102Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame102_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser102Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame102_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser102Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame102_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser103Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame103_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser103Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame103_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser103Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame103_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser103Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame103_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser104Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame104_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser104Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame104_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser104Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame104_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser104Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame104_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser105Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame105_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser105Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame105_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser105Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame105_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser105Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame105_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser106Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame106_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser106Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame106_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser106Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame106_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser106Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame106_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser107Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame107_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser107Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame107_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser107Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame107_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser107Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame107_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser108Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame108_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser108Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame108_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser108Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame108_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser108Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame108_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser109Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame109_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser109Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame109_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser109Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame109_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser109Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame109_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser110Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame110_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser110Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame110_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser110Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame110_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser110Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame110_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser111Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame111_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser111Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame111_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser111Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame111_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser111Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame111_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser112Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame112_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser112Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame112_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser112Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame112_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser112Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame112_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser113Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame113_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser113Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame113_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser113Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame113_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser113Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame113_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser114Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame114_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser114Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame114_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser114Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame114_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser114Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame114_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser115Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame115_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser115Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame115_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser115Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame115_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser115Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame115_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser116Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame116_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser116Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame116_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser116Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame116_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser116Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame116_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser117Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame117_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser117Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame117_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser117Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame117_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser117Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame117_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser118Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame118_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser118Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame118_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser118Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame118_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser118Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame118_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser119Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame119_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser119Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame119_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser119Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame119_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser119Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame119_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser120Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame120_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser120Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame120_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser120Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame120_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser120Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame120_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser121Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame121_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser121Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame121_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser121Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame121_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser121Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame121_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser122Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame122_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser122Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame122_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser122Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame122_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser122Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame122_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser123Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame123_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser123Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame123_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser123Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame123_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser123Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame123_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser124Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame124_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser124Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame124_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser124Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame124_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser124Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame124_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser125Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame125_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser125Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame125_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser125Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame125_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser125Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame125_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser126Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame126_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser126Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame126_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser126Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame126_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser126Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame126_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser127Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame127_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser127Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame127_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser127Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame127_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser127Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame127_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser128Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame128_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser128Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame128_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser128Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame128_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser128Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame128_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser129Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame129_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser129Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame129_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser129Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame129_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser129Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame129_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser130Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame130_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser130Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame130_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser130Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame130_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser130Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame130_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser131Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame131_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser131Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame131_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser131Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame131_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser131Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame131_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser132Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame132_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser132Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame132_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser132Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame132_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser132Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame132_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser133Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame133_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser133Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame133_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser133Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame133_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser133Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame133_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser134Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame134_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser134Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame134_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser134Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame134_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser134Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame134_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser135Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame135_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser135Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame135_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser135Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame135_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser135Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame135_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser136Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame136_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser136Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame136_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser136Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame136_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser136Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame136_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser137Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame137_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser137Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame137_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser137Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame137_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser137Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame137_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser138Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame138_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser138Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame138_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser138Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame138_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser138Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame138_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser139Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame139_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser139Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame139_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser139Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame139_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser139Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame139_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser140Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame140_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser140Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame140_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser140Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame140_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser140Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame140_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser141Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame141_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser141Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame141_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser141Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame141_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser141Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame141_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser142Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame142_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser142Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame142_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser142Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame142_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser142Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame142_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser143Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame143_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser143Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame143_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser143Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame143_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser143Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame143_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser144Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame144_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser144Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame144_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser144Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame144_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser144Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame144_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser145Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame145_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser145Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame145_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser145Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame145_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser145Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame145_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser146Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame146_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser146Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame146_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser146Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame146_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser146Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame146_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser147Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame147_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser147Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame147_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser147Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame147_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser147Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame147_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser148Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame148_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser148Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame148_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser148Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame148_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser148Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame148_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser149Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame149_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser149Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame149_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser149Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame149_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser149Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame149_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser150Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame150_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser150Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame150_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser150Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame150_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser150Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame150_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser151Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame151_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser151Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame151_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser151Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame151_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser151Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame151_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser152Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame152_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser152Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame152_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser152Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame152_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser152Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame152_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser153Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame153_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser153Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame153_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser153Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame153_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser153Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame153_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser154Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame154_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser154Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame154_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser154Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame154_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser154Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame154_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser155Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame155_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser155Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame155_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser155Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame155_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser155Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame155_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser156Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame156_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser156Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame156_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser156Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame156_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser156Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame156_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser157Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame157_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser157Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame157_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser157Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame157_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser157Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame157_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser158Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame158_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser158Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame158_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser158Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame158_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser158Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame158_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser159Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame159_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser159Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame159_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser159Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame159_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser159Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame159_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser160Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame160_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser160Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame160_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser160Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame160_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser160Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame160_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser161Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame161_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser161Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame161_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser161Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame161_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser161Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame161_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser162Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame162_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser162Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame162_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser162Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame162_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser162Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame162_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser163Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame163_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser163Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame163_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser163Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame163_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser163Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame163_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser164Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame164_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser164Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame164_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser164Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame164_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser164Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame164_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser165Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame165_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser165Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame165_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser165Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame165_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser165Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame165_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser166Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame166_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser166Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame166_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser166Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame166_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser166Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame166_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser167Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame167_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser167Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame167_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser167Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame167_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser167Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame167_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser168Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame168_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser168Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame168_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser168Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame168_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser168Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame168_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser169Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame169_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser169Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame169_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser169Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame169_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser169Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame169_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser170Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame170_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser170Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame170_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser170Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame170_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser170Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame170_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser171Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame171_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser171Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame171_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser171Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame171_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser171Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame171_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser172Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame172_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser172Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame172_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser172Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame172_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser172Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame172_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser173Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame173_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser173Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame173_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser173Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame173_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser173Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame173_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser174Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame174_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser174Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame174_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser174Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame174_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser174Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame174_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser175Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame175_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser175Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame175_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser175Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame175_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser175Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame175_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser176Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame176_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser176Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame176_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser176Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame176_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser176Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame176_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser177Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame177_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser177Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame177_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser177Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame177_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser177Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame177_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser178Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame178_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser178Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame178_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser178Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame178_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser178Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame178_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser179Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame179_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser179Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame179_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser179Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame179_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser179Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame179_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser180Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame180_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser180Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame180_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser180Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame180_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser180Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame180_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser181Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame181_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser181Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame181_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser181Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame181_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser181Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame181_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser182Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame182_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser182Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame182_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser182Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame182_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser182Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame182_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser183Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame183_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser183Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame183_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser183Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame183_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser183Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame183_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser184Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame184_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser184Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame184_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser184Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame184_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser184Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame184_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser185Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame185_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser185Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame185_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser185Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame185_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser185Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame185_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser186Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame186_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser186Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame186_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser186Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame186_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser186Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame186_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser187Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame187_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser187Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame187_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser187Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame187_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser187Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame187_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser188Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame188_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser188Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame188_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser188Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame188_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser188Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame188_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser189Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame189_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser189Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame189_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser189Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame189_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser189Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame189_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser190Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame190_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser190Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame190_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser190Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame190_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser190Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame190_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser191Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame191_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser191Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame191_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser191Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame191_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser191Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame191_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser192Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame192_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser192Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame192_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser192Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame192_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser192Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame192_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser193Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame193_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser193Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame193_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser193Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame193_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser193Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame193_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser194Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame194_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser194Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame194_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser194Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame194_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser194Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame194_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser195Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame195_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser195Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame195_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser195Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame195_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser195Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame195_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser196Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame196_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser196Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame196_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser196Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame196_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser196Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame196_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser197Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame197_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser197Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame197_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser197Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame197_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser197Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame197_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser198Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame198_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser198Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame198_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser198Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame198_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser198Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame198_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser199Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame199_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser199Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame199_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser199Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame199_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser199Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame199_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser200Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame200_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser200Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame200_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser200Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame200_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser200Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame200_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser201Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame201_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser201Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame201_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser201Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame201_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser201Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame201_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser202Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame202_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser202Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame202_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser202Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame202_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser202Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame202_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser203Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame203_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser203Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame203_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser203Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame203_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser203Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame203_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser204Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame204_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser204Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame204_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser204Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame204_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser204Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame204_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser205Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame205_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser205Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame205_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser205Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame205_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser205Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame205_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser206Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame206_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser206Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame206_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser206Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame206_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser206Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame206_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser207Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame207_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser207Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame207_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser207Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame207_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser207Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame207_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser208Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame208_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser208Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame208_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser208Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame208_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser208Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame208_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser209Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame209_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser209Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame209_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser209Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame209_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser209Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame209_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser210Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame210_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser210Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame210_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser210Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame210_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser210Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame210_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser211Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame211_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser211Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame211_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser211Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame211_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser211Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame211_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser212Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame212_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser212Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame212_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser212Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame212_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser212Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame212_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser213Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame213_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser213Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame213_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser213Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame213_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser213Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame213_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser214Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame214_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser214Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame214_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser214Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame214_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser214Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame214_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser215Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame215_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser215Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame215_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser215Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame215_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser215Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame215_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser216Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame216_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser216Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame216_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser216Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame216_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser216Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame216_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser217Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame217_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser217Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame217_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser217Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame217_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser217Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame217_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser218Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame218_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser218Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame218_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser218Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame218_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser218Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame218_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser219Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame219_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser219Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame219_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser219Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame219_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser219Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame219_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser220Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame220_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser220Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame220_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser220Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame220_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser220Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame220_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser221Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame221_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser221Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame221_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser221Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame221_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser221Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame221_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser222Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame222_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser222Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame222_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser222Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame222_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser222Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame222_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser223Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame223_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser223Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame223_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser223Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame223_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser223Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame223_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser224Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame224_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser224Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame224_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser224Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame224_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser224Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame224_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser225Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame225_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser225Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame225_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser225Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame225_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser225Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame225_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser226Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame226_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser226Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame226_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser226Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame226_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser226Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame226_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser227Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame227_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser227Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame227_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser227Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame227_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser227Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame227_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser228Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame228_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser228Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame228_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser228Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame228_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser228Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame228_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser229Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame229_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser229Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame229_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser229Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame229_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser229Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame229_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser230Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame230_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser230Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame230_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser230Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame230_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser230Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame230_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser231Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame231_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser231Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame231_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser231Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame231_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser231Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame231_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser232Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame232_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser232Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame232_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser232Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame232_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser232Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame232_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser233Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame233_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser233Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame233_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser233Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame233_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser233Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame233_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser234Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame234_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser234Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame234_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser234Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame234_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser234Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame234_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser235Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame235_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser235Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame235_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser235Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame235_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser235Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame235_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser236Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame236_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser236Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame236_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser236Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame236_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser236Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame236_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser237Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame237_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser237Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame237_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser237Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame237_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser237Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame237_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser238Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame238_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser238Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame238_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser238Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame238_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser238Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame238_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser239Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame239_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser239Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame239_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser239Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame239_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser239Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame239_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser240Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame240_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser240Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame240_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser240Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame240_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser240Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame240_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser241Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame241_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser241Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame241_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser241Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame241_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser241Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame241_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser242Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame242_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser242Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame242_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser242Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame242_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser242Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame242_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser243Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame243_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser243Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame243_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser243Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame243_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser243Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame243_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser244Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame244_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser244Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame244_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser244Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame244_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser244Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame244_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser245Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame245_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser245Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame245_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser245Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame245_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser245Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame245_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser246Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame246_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser246Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame246_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser246Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame246_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser246Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame246_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser247Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame247_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser247Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame247_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser247Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame247_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser247Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame247_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser248Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame248_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser248Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame248_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser248Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame248_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser248Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame248_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser249Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame249_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser249Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame249_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser249Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame249_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser249Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame249_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser250Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame250_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser250Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame250_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser250Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame250_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser250Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame250_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser251Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame251_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser251Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame251_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser251Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame251_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser251Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame251_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser252Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame252_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser252Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame252_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser252Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame252_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser252Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame252_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser253Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame253_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser253Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame253_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser253Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame253_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser253Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame253_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser254Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame254_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser254Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame254_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser254Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame254_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser254Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame254_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser255Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame255_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser255Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame255_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser255Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame255_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser255Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame255_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser256Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame256_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser256Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame256_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser256Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame256_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser256Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame256_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser257Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame257_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser257Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame257_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser257Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame257_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser257Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame257_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser258Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame258_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser258Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame258_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser258Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame258_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser258Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame258_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser259Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame259_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser259Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame259_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser259Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame259_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser259Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame259_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser260Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame260_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser260Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame260_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser260Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame260_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser260Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame260_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser261Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame261_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser261Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame261_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser261Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame261_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser261Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame261_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser262Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame262_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser262Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame262_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser262Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame262_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser262Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame262_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser263Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame263_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser263Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame263_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser263Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame263_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser263Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame263_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser264Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame264_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser264Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame264_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser264Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame264_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser264Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame264_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser265Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame265_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser265Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame265_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser265Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame265_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser265Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame265_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser266Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame266_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser266Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame266_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser266Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame266_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser266Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame266_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser267Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame267_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser267Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame267_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser267Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame267_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser267Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame267_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser268Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame268_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser268Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame268_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser268Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame268_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser268Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame268_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser269Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame269_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser269Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame269_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser269Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame269_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser269Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame269_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser270Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame270_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser270Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame270_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser270Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame270_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser270Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame270_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser271Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame271_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser271Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame271_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser271Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame271_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser271Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame271_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser272Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame272_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser272Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame272_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser272Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame272_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser272Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame272_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser273Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame273_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser273Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame273_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser273Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame273_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser273Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame273_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser274Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame274_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser274Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame274_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser274Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame274_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser274Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame274_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser275Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame275_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser275Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame275_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser275Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame275_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser275Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame275_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser276Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame276_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser276Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame276_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser276Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame276_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser276Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame276_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser277Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame277_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser277Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame277_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser277Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame277_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser277Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame277_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser278Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame278_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser278Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame278_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser278Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame278_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser278Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame278_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser279Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame279_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser279Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame279_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser279Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame279_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser279Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame279_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser280Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame280_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser280Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame280_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser280Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame280_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser280Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame280_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser281Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame281_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser281Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame281_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser281Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame281_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser281Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame281_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser282Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame282_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser282Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame282_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser282Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame282_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser282Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame282_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser283Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame283_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser283Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame283_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser283Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame283_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser283Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame283_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser284Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame284_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser284Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame284_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser284Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame284_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser284Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame284_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser285Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame285_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser285Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame285_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser285Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame285_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser285Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame285_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser286Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame286_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser286Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame286_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser286Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame286_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser286Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame286_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser287Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame287_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser287Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame287_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser287Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame287_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser287Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame287_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser288Wheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame288_wheel3"; + +static const ALIGN_ASSET(2) char gKartBowser288Wheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame288_wheel1"; + +static const ALIGN_ASSET(2) char gKartBowser288Wheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame288_wheel0"; + +static const ALIGN_ASSET(2) char gKartBowser288Wheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame288_wheel2"; + +static const ALIGN_ASSET(2) char gKartBowser289[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame289"; + +static const ALIGN_ASSET(2) char gKartBowser290[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame290"; + +static const ALIGN_ASSET(2) char gKartBowser291[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame291"; + +static const ALIGN_ASSET(2) char gKartBowser292[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame292"; + +static const ALIGN_ASSET(2) char gKartBowser293[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame293"; + +static const ALIGN_ASSET(2) char gKartBowser294[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame294"; + +static const ALIGN_ASSET(2) char gKartBowser295[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame295"; + +static const ALIGN_ASSET(2) char gKartBowser296[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame296"; + +static const ALIGN_ASSET(2) char gKartBowser297[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame297"; + +static const ALIGN_ASSET(2) char gKartBowser298[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame298"; + +static const ALIGN_ASSET(2) char gKartBowser299[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame299"; + +static const ALIGN_ASSET(2) char gKartBowser300[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame300"; + +static const ALIGN_ASSET(2) char gKartBowser301[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame301"; + +static const ALIGN_ASSET(2) char gKartBowser302[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame302"; + +static const ALIGN_ASSET(2) char gKartBowser303[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame303"; + +static const ALIGN_ASSET(2) char gKartBowser304[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame304"; + +static const ALIGN_ASSET(2) char gKartBowser305[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame305"; + +static const ALIGN_ASSET(2) char gKartBowser306[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame306"; + +static const ALIGN_ASSET(2) char gKartBowser307[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame307"; + +static const ALIGN_ASSET(2) char gKartBowser308[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame308"; + +static const ALIGN_ASSET(2) char gKartBowser309[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame309"; + +static const ALIGN_ASSET(2) char gKartBowser310[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame310"; + +static const ALIGN_ASSET(2) char gKartBowser311[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame311"; + +static const ALIGN_ASSET(2) char gKartBowser312[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame312"; + +static const ALIGN_ASSET(2) char gKartBowser313[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame313"; + +static const ALIGN_ASSET(2) char gKartBowser314[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame314"; + +static const ALIGN_ASSET(2) char gKartBowser315[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame315"; + +static const ALIGN_ASSET(2) char gKartBowser316[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame316"; + +static const ALIGN_ASSET(2) char gKartBowser317[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame317"; + +static const ALIGN_ASSET(2) char gKartBowser318[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame318"; + +static const ALIGN_ASSET(2) char gKartBowser319[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame319"; + +static const ALIGN_ASSET(2) char gKartBowser320[] = "__OTR__textures/karts/bowser_kart/bowser_kart_frame320"; + +static const ALIGN_ASSET(2) char gKartBowser000TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_000_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser000TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_000_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser000TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_000_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser000TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_000_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser001TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_001_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser001TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_001_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser001TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_001_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser001TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_001_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser002TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_002_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser002TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_002_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser002TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_002_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser002TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_002_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser003TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_003_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser003TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_003_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser003TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_003_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser003TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_003_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser004TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_004_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser004TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_004_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser004TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_004_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser004TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_004_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser005TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_005_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser005TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_005_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser005TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_005_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser005TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_005_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser006TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_006_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser006TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_006_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser006TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_006_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser006TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_006_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser007TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_007_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser007TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_007_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser007TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_007_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser007TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_007_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser008TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_008_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser008TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_008_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser008TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_008_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser008TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_008_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser009TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_009_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser009TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_009_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser009TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_009_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser009TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_009_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser010TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_010_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser010TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_010_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser010TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_010_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser010TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_010_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser011TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_011_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser011TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_011_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser011TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_011_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser011TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_011_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser012TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_012_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser012TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_012_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser012TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_012_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser012TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_012_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser013TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_013_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser013TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_013_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser013TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_013_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser013TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_013_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser014TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_014_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser014TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_014_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser014TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_014_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser014TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_014_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser015TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_015_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser015TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_015_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser015TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_015_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser015TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_015_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser016TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_016_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser016TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_016_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser016TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_016_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser016TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_016_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser017TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_017_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser017TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_017_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser017TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_017_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser017TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_017_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser018TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_018_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser018TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_018_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser018TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_018_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser018TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_018_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser019TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_019_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser019TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_019_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser019TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_019_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser019TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_019_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser020TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_020_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser020TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_020_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser020TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_020_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser020TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_020_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser021TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_021_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser021TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_021_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser021TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_021_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser021TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_021_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser022TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_022_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser022TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_022_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser022TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_022_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser022TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_022_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser023TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_023_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser023TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_023_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser023TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_023_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser023TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_023_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser024TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_024_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser024TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_024_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser024TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_024_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser024TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_024_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser025TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_025_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser025TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_025_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser025TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_025_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser025TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_025_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser026TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_026_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser026TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_026_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser026TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_026_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser026TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_026_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser027TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_027_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser027TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_027_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser027TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_027_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser027TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_027_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser028TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_028_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser028TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_028_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser028TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_028_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser028TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_028_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser029TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_029_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser029TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_029_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser029TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_029_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser029TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_029_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser030TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_030_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser030TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_030_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser030TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_030_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser030TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_030_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser031TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_031_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser031TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_031_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser031TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_031_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser031TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_031_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser032TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_032_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser032TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_032_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser032TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_032_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser032TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_032_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser033TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_033_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser033TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_033_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser033TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_033_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser033TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_033_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser034TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_034_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser034TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_034_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser034TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_034_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser034TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_034_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser035TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_035_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser035TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_035_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser035TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_035_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser035TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_035_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser036TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_036_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser036TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_036_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser036TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_036_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser036TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_036_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser037TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_037_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser037TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_037_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser037TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_037_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser037TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_037_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser038TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_038_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser038TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_038_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser038TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_038_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser038TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_038_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser039TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_039_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser039TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_039_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser039TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_039_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser039TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_039_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser040TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_040_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser040TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_040_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser040TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_040_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser040TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_040_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser041TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_041_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser041TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_041_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser041TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_041_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser041TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_041_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser042TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_042_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser042TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_042_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser042TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_042_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser042TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_042_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser043TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_043_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser043TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_043_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser043TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_043_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser043TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_043_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser044TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_044_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser044TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_044_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser044TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_044_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser044TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_044_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser045TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_045_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser045TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_045_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser045TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_045_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser045TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_045_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser046TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_046_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser046TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_046_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser046TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_046_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser046TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_046_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser047TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_047_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser047TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_047_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser047TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_047_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser047TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_047_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser048TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_048_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser048TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_048_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser048TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_048_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser048TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_048_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser049TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_049_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser049TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_049_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser049TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_049_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser049TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_049_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser050TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_050_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser050TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_050_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser050TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_050_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser050TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_050_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser051TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_051_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser051TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_051_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser051TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_051_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser051TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_051_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser052TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_052_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser052TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_052_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser052TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_052_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser052TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_052_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser053TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_053_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser053TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_053_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser053TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_053_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser053TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_053_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser054TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_054_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser054TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_054_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser054TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_054_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser054TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_054_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser055TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_055_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser055TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_055_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser055TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_055_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser055TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_055_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser056TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_056_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser056TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_056_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser056TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_056_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser056TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_056_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser057TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_057_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser057TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_057_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser057TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_057_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser057TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_057_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser058TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_058_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser058TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_058_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser058TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_058_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser058TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_058_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser059TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_059_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser059TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_059_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser059TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_059_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser059TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_059_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser060TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_060_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser060TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_060_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser060TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_060_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser060TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_060_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser061TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_061_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser061TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_061_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser061TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_061_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser061TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_061_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser062TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_062_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser062TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_062_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser062TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_062_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser062TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_062_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser063TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_063_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser063TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_063_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser063TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_063_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser063TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_063_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser064TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_064_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser064TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_064_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser064TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_064_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser064TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_064_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser065TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_065_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser065TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_065_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser065TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_065_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser065TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_065_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser066TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_066_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser066TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_066_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser066TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_066_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser066TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_066_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser067TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_067_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser067TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_067_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser067TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_067_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser067TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_067_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser068TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_068_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser068TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_068_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser068TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_068_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser068TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_068_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser069TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_069_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser069TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_069_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser069TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_069_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser069TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_069_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser070TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_070_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser070TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_070_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser070TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_070_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser070TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_070_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser071TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_071_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser071TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_071_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser071TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_071_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser071TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_071_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser072TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_072_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser072TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_072_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser072TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_072_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser072TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_072_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser073TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_073_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser073TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_073_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser073TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_073_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser073TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_073_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser074TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_074_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser074TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_074_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser074TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_074_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser074TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_074_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser075TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_075_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser075TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_075_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser075TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_075_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser075TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_075_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser076TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_076_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser076TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_076_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser076TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_076_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser076TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_076_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser077TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_077_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser077TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_077_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser077TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_077_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser077TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_077_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser078TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_078_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser078TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_078_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser078TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_078_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser078TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_078_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser079TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_079_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser079TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_079_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser079TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_079_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser079TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_079_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser080TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_080_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser080TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_080_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser080TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_080_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser080TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_080_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser081TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_081_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser081TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_081_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser081TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_081_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser081TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_081_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser082TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_082_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser082TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_082_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser082TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_082_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser082TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_082_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser083TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_083_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser083TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_083_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser083TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_083_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser083TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_083_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser084TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_084_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser084TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_084_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser084TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_084_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser084TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_084_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser085TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_085_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser085TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_085_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser085TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_085_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser085TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_085_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser086TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_086_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser086TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_086_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser086TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_086_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser086TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_086_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser087TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_087_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser087TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_087_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser087TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_087_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser087TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_087_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser088TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_088_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser088TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_088_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser088TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_088_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser088TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_088_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser089TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_089_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser089TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_089_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser089TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_089_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser089TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_089_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser090TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_090_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser090TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_090_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser090TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_090_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser090TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_090_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser091TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_091_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser091TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_091_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser091TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_091_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser091TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_091_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser092TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_092_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser092TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_092_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser092TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_092_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser092TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_092_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser093TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_093_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser093TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_093_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser093TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_093_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser093TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_093_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser094TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_094_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser094TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_094_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser094TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_094_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser094TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_094_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser095TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_095_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser095TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_095_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser095TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_095_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser095TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_095_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser096TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_096_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser096TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_096_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser096TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_096_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser096TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_096_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser097TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_097_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser097TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_097_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser097TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_097_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser097TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_097_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser098TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_098_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser098TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_098_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser098TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_098_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser098TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_098_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser099TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_099_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser099TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_099_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser099TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_099_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser099TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_099_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser100TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_100_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser100TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_100_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser100TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_100_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser100TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_100_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser101TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_101_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser101TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_101_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser101TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_101_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser101TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_101_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser102TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_102_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser102TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_102_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser102TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_102_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser102TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_102_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser103TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_103_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser103TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_103_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser103TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_103_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser103TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_103_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser104TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_104_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser104TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_104_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser104TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_104_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser104TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_104_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser105TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_105_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser105TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_105_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser105TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_105_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser105TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_105_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser106TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_106_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser106TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_106_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser106TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_106_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser106TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_106_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser107TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_107_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser107TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_107_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser107TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_107_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser107TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_107_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser108TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_108_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser108TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_108_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser108TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_108_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser108TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_108_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser109TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_109_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser109TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_109_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser109TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_109_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser109TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_109_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser110TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_110_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser110TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_110_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser110TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_110_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser110TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_110_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser111TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_111_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser111TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_111_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser111TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_111_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser111TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_111_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser112TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_112_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser112TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_112_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser112TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_112_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser112TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_112_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser113TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_113_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser113TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_113_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser113TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_113_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser113TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_113_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser114TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_114_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser114TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_114_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser114TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_114_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser114TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_114_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser115TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_115_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser115TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_115_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser115TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_115_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser115TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_115_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser116TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_116_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser116TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_116_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser116TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_116_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser116TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_116_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser117TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_117_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser117TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_117_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser117TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_117_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser117TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_117_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser118TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_118_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser118TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_118_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser118TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_118_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser118TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_118_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser119TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_119_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser119TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_119_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser119TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_119_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser119TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_119_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser120TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_120_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser120TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_120_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser120TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_120_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser120TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_120_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser121TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_121_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser121TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_121_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser121TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_121_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser121TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_121_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser122TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_122_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser122TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_122_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser122TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_122_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser122TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_122_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser123TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_123_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser123TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_123_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser123TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_123_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser123TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_123_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser124TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_124_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser124TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_124_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser124TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_124_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser124TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_124_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser125TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_125_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser125TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_125_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser125TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_125_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser125TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_125_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser126TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_126_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser126TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_126_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser126TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_126_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser126TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_126_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser127TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_127_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser127TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_127_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser127TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_127_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser127TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_127_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser128TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_128_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser128TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_128_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser128TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_128_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser128TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_128_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser129TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_129_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser129TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_129_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser129TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_129_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser129TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_129_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser130TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_130_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser130TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_130_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser130TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_130_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser130TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_130_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser131TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_131_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser131TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_131_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser131TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_131_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser131TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_131_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser132TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_132_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser132TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_132_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser132TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_132_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser132TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_132_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser133TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_133_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser133TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_133_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser133TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_133_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser133TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_133_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser134TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_134_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser134TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_134_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser134TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_134_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser134TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_134_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser135TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_135_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser135TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_135_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser135TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_135_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser135TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_135_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser136TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_136_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser136TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_136_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser136TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_136_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser136TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_136_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser137TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_137_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser137TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_137_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser137TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_137_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser137TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_137_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser138TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_138_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser138TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_138_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser138TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_138_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser138TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_138_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser139TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_139_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser139TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_139_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser139TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_139_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser139TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_139_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser140TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_140_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser140TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_140_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser140TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_140_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser140TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_140_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser141TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_141_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser141TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_141_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser141TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_141_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser141TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_141_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser142TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_142_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser142TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_142_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser142TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_142_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser142TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_142_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser143TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_143_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser143TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_143_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser143TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_143_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser143TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_143_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser144TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_144_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser144TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_144_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser144TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_144_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser144TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_144_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser145TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_145_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser145TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_145_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser145TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_145_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser145TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_145_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser146TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_146_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser146TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_146_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser146TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_146_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser146TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_146_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser147TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_147_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser147TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_147_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser147TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_147_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser147TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_147_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser148TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_148_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser148TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_148_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser148TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_148_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser148TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_148_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser149TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_149_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser149TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_149_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser149TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_149_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser149TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_149_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser150TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_150_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser150TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_150_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser150TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_150_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser150TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_150_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser151TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_151_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser151TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_151_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser151TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_151_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser151TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_151_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser152TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_152_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser152TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_152_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser152TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_152_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser152TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_152_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser153TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_153_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser153TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_153_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser153TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_153_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser153TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_153_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser154TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_154_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser154TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_154_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser154TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_154_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser154TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_154_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser155TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_155_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser155TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_155_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser155TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_155_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser155TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_155_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser156TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_156_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser156TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_156_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser156TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_156_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser156TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_156_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser157TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_157_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser157TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_157_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser157TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_157_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser157TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_157_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser158TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_158_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser158TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_158_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser158TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_158_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser158TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_158_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser159TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_159_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser159TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_159_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser159TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_159_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser159TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_159_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser160TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_160_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser160TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_160_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser160TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_160_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser160TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_160_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser161TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_161_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser161TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_161_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser161TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_161_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser161TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_161_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser162TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_162_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser162TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_162_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser162TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_162_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser162TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_162_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser163TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_163_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser163TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_163_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser163TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_163_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser163TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_163_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser164TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_164_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser164TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_164_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser164TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_164_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser164TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_164_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser165TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_165_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser165TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_165_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser165TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_165_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser165TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_165_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser166TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_166_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser166TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_166_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser166TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_166_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser166TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_166_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser167TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_167_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser167TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_167_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser167TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_167_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser167TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_167_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser168TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_168_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser168TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_168_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser168TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_168_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser168TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_168_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser169TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_169_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser169TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_169_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser169TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_169_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser169TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_169_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser170TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_170_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser170TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_170_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser170TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_170_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser170TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_170_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser171TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_171_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser171TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_171_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser171TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_171_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser171TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_171_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser172TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_172_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser172TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_172_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser172TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_172_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser172TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_172_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser173TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_173_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser173TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_173_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser173TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_173_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser173TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_173_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser174TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_174_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser174TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_174_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser174TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_174_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser174TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_174_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser175TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_175_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser175TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_175_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser175TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_175_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser175TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_175_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser176TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_176_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser176TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_176_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser176TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_176_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser176TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_176_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser177TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_177_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser177TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_177_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser177TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_177_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser177TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_177_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser178TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_178_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser178TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_178_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser178TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_178_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser178TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_178_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser179TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_179_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser179TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_179_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser179TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_179_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser179TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_179_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser180TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_180_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser180TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_180_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser180TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_180_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser180TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_180_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser181TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_181_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser181TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_181_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser181TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_181_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser181TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_181_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser182TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_182_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser182TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_182_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser182TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_182_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser182TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_182_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser183TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_183_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser183TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_183_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser183TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_183_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser183TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_183_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser184TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_184_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser184TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_184_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser184TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_184_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser184TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_184_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser185TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_185_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser185TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_185_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser185TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_185_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser185TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_185_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser186TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_186_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser186TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_186_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser186TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_186_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser186TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_186_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser187TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_187_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser187TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_187_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser187TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_187_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser187TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_187_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser188TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_188_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser188TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_188_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser188TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_188_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser188TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_188_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser189TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_189_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser189TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_189_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser189TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_189_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser189TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_189_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser190TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_190_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser190TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_190_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser190TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_190_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser190TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_190_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser191TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_191_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser191TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_191_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser191TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_191_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser191TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_191_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser192TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_192_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser192TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_192_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser192TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_192_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser192TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_192_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser193TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_193_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser193TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_193_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser193TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_193_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser193TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_193_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser194TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_194_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser194TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_194_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser194TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_194_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser194TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_194_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser195TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_195_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser195TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_195_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser195TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_195_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser195TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_195_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser196TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_196_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser196TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_196_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser196TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_196_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser196TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_196_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser197TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_197_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser197TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_197_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser197TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_197_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser197TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_197_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser198TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_198_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser198TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_198_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser198TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_198_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser198TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_198_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser199TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_199_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser199TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_199_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser199TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_199_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser199TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_199_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser200TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_200_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser200TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_200_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser200TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_200_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser200TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_200_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser201TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_201_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser201TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_201_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser201TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_201_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser201TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_201_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser202TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_202_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser202TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_202_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser202TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_202_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser202TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_202_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser203TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_203_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser203TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_203_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser203TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_203_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser203TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_203_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser204TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_204_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser204TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_204_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser204TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_204_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser204TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_204_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser205TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_205_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser205TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_205_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser205TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_205_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser205TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_205_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser206TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_206_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser206TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_206_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser206TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_206_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser206TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_206_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser207TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_207_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser207TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_207_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser207TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_207_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser207TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_207_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser208TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_208_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser208TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_208_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser208TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_208_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser208TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_208_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser209TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_209_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser209TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_209_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser209TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_209_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser209TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_209_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser210TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_210_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser210TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_210_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser210TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_210_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser210TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_210_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser211TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_211_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser211TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_211_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser211TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_211_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser211TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_211_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser212TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_212_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser212TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_212_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser212TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_212_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser212TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_212_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser213TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_213_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser213TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_213_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser213TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_213_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser213TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_213_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser214TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_214_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser214TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_214_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser214TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_214_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser214TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_214_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser215TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_215_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser215TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_215_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser215TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_215_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser215TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_215_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser216TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_216_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser216TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_216_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser216TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_216_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser216TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_216_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser217TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_217_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser217TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_217_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser217TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_217_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser217TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_217_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser218TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_218_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser218TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_218_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser218TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_218_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser218TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_218_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser219TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_219_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser219TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_219_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser219TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_219_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser219TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_219_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser220TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_220_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser220TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_220_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser220TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_220_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser220TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_220_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser221TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_221_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser221TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_221_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser221TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_221_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser221TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_221_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser222TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_222_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser222TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_222_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser222TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_222_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser222TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_222_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser223TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_223_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser223TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_223_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser223TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_223_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser223TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_223_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser224TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_224_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser224TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_224_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser224TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_224_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser224TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_224_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser225TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_225_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser225TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_225_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser225TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_225_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser225TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_225_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser226TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_226_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser226TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_226_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser226TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_226_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser226TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_226_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser227TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_227_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser227TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_227_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser227TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_227_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser227TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_227_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser228TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_228_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser228TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_228_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser228TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_228_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser228TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_228_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser229TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_229_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser229TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_229_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser229TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_229_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser229TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_229_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser230TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_230_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser230TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_230_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser230TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_230_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser230TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_230_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser231TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_231_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser231TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_231_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser231TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_231_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser231TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_231_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser232TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_232_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser232TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_232_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser232TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_232_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser232TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_232_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser233TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_233_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser233TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_233_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser233TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_233_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser233TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_233_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser234TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_234_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser234TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_234_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser234TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_234_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser234TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_234_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser235TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_235_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser235TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_235_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser235TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_235_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser235TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_235_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser236TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_236_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser236TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_236_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser236TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_236_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser236TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_236_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser237TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_237_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser237TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_237_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser237TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_237_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser237TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_237_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser238TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_238_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser238TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_238_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser238TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_238_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser238TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_238_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser239TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_239_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser239TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_239_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser239TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_239_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser239TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_239_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser240TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_240_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser240TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_240_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser240TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_240_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser240TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_240_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser241TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_241_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser241TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_241_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser241TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_241_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser241TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_241_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser242TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_242_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser242TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_242_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser242TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_242_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser242TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_242_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser243TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_243_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser243TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_243_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser243TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_243_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser243TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_243_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser244TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_244_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser244TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_244_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser244TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_244_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser244TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_244_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser245TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_245_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser245TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_245_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser245TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_245_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser245TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_245_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser246TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_246_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser246TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_246_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser246TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_246_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser246TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_246_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser247TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_247_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser247TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_247_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser247TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_247_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser247TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_247_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser248TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_248_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser248TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_248_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser248TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_248_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser248TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_248_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser249TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_249_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser249TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_249_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser249TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_249_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser249TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_249_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser250TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_250_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser250TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_250_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser250TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_250_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser250TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_250_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser251TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_251_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser251TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_251_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser251TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_251_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser251TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_251_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser252TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_252_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser252TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_252_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser252TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_252_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser252TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_252_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser253TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_253_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser253TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_253_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser253TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_253_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser253TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_253_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser254TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_254_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser254TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_254_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser254TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_254_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser254TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_254_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser255TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_255_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser255TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_255_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser255TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_255_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser255TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_255_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser256TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_256_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser256TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_256_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser256TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_256_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser256TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_256_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser257TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_257_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser257TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_257_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser257TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_257_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser257TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_257_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser258TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_258_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser258TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_258_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser258TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_258_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser258TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_258_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser259TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_259_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser259TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_259_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser259TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_259_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser259TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_259_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser260TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_260_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser260TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_260_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser260TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_260_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser260TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_260_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser261TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_261_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser261TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_261_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser261TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_261_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser261TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_261_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser262TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_262_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser262TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_262_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser262TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_262_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser262TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_262_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser263TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_263_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser263TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_263_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser263TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_263_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser263TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_263_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser264TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_264_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser264TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_264_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser264TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_264_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser264TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_264_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser265TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_265_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser265TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_265_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser265TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_265_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser265TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_265_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser266TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_266_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser266TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_266_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser266TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_266_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser266TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_266_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser267TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_267_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser267TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_267_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser267TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_267_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser267TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_267_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser268TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_268_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser268TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_268_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser268TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_268_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser268TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_268_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser269TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_269_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser269TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_269_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser269TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_269_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser269TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_269_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser270TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_270_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser270TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_270_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser270TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_270_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser270TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_270_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser271TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_271_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser271TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_271_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser271TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_271_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser271TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_271_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser272TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_272_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser272TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_272_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser272TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_272_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser272TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_272_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser273TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_273_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser273TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_273_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser273TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_273_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser273TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_273_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser274TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_274_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser274TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_274_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser274TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_274_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser274TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_274_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser275TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_275_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser275TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_275_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser275TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_275_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser275TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_275_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser276TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_276_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser276TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_276_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser276TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_276_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser276TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_276_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser277TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_277_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser277TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_277_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser277TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_277_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser277TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_277_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser278TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_278_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser278TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_278_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser278TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_278_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser278TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_278_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser279TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_279_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser279TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_279_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser279TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_279_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser279TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_279_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser280TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_280_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser280TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_280_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser280TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_280_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser280TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_280_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser281TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_281_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser281TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_281_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser281TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_281_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser281TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_281_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser282TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_282_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser282TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_282_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser282TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_282_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser282TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_282_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser283TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_283_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser283TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_283_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser283TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_283_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser283TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_283_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser284TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_284_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser284TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_284_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser284TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_284_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser284TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_284_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser285TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_285_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser285TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_285_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser285TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_285_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser285TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_285_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser286TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_286_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser286TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_286_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser286TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_286_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser286TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_286_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser287TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_287_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser287TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_287_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser287TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_287_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser287TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_287_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartBowser288TlutWheel0[] = "__OTR__textures/karts/bowser_kart/bowser_kart_288_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartBowser288TlutWheel1[] = "__OTR__textures/karts/bowser_kart/bowser_kart_288_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartBowser288TlutWheel2[] = "__OTR__textures/karts/bowser_kart/bowser_kart_288_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartBowser288TlutWheel3[] = "__OTR__textures/karts/bowser_kart/bowser_kart_288_tlut_wheel_3"; + +static const char* bowser_kart_wheels[] = { + gKartBowser000TlutWheel0, + gKartBowser000TlutWheel1, + gKartBowser000TlutWheel2, + gKartBowser000TlutWheel3, + gKartBowser001TlutWheel0, + gKartBowser001TlutWheel1, + gKartBowser001TlutWheel2, + gKartBowser001TlutWheel3, + gKartBowser002TlutWheel0, + gKartBowser002TlutWheel1, + gKartBowser002TlutWheel2, + gKartBowser002TlutWheel3, + gKartBowser003TlutWheel0, + gKartBowser003TlutWheel1, + gKartBowser003TlutWheel2, + gKartBowser003TlutWheel3, + gKartBowser004TlutWheel0, + gKartBowser004TlutWheel1, + gKartBowser004TlutWheel2, + gKartBowser004TlutWheel3, + gKartBowser005TlutWheel0, + gKartBowser005TlutWheel1, + gKartBowser005TlutWheel2, + gKartBowser005TlutWheel3, + gKartBowser006TlutWheel0, + gKartBowser006TlutWheel1, + gKartBowser006TlutWheel2, + gKartBowser006TlutWheel3, + gKartBowser007TlutWheel0, + gKartBowser007TlutWheel1, + gKartBowser007TlutWheel2, + gKartBowser007TlutWheel3, + gKartBowser008TlutWheel0, + gKartBowser008TlutWheel1, + gKartBowser008TlutWheel2, + gKartBowser008TlutWheel3, + gKartBowser009TlutWheel0, + gKartBowser009TlutWheel1, + gKartBowser009TlutWheel2, + gKartBowser009TlutWheel3, + gKartBowser010TlutWheel0, + gKartBowser010TlutWheel1, + gKartBowser010TlutWheel2, + gKartBowser010TlutWheel3, + gKartBowser011TlutWheel0, + gKartBowser011TlutWheel1, + gKartBowser011TlutWheel2, + gKartBowser011TlutWheel3, + gKartBowser012TlutWheel0, + gKartBowser012TlutWheel1, + gKartBowser012TlutWheel2, + gKartBowser012TlutWheel3, + gKartBowser013TlutWheel0, + gKartBowser013TlutWheel1, + gKartBowser013TlutWheel2, + gKartBowser013TlutWheel3, + gKartBowser014TlutWheel0, + gKartBowser014TlutWheel1, + gKartBowser014TlutWheel2, + gKartBowser014TlutWheel3, + gKartBowser015TlutWheel0, + gKartBowser015TlutWheel1, + gKartBowser015TlutWheel2, + gKartBowser015TlutWheel3, + gKartBowser016TlutWheel0, + gKartBowser016TlutWheel1, + gKartBowser016TlutWheel2, + gKartBowser016TlutWheel3, + gKartBowser017TlutWheel0, + gKartBowser017TlutWheel1, + gKartBowser017TlutWheel2, + gKartBowser017TlutWheel3, + gKartBowser018TlutWheel0, + gKartBowser018TlutWheel1, + gKartBowser018TlutWheel2, + gKartBowser018TlutWheel3, + gKartBowser019TlutWheel0, + gKartBowser019TlutWheel1, + gKartBowser019TlutWheel2, + gKartBowser019TlutWheel3, + gKartBowser020TlutWheel0, + gKartBowser020TlutWheel1, + gKartBowser020TlutWheel2, + gKartBowser020TlutWheel3, + gKartBowser021TlutWheel0, + gKartBowser021TlutWheel1, + gKartBowser021TlutWheel2, + gKartBowser021TlutWheel3, + gKartBowser022TlutWheel0, + gKartBowser022TlutWheel1, + gKartBowser022TlutWheel2, + gKartBowser022TlutWheel3, + gKartBowser023TlutWheel0, + gKartBowser023TlutWheel1, + gKartBowser023TlutWheel2, + gKartBowser023TlutWheel3, + gKartBowser024TlutWheel0, + gKartBowser024TlutWheel1, + gKartBowser024TlutWheel2, + gKartBowser024TlutWheel3, + gKartBowser025TlutWheel0, + gKartBowser025TlutWheel1, + gKartBowser025TlutWheel2, + gKartBowser025TlutWheel3, + gKartBowser026TlutWheel0, + gKartBowser026TlutWheel1, + gKartBowser026TlutWheel2, + gKartBowser026TlutWheel3, + gKartBowser027TlutWheel0, + gKartBowser027TlutWheel1, + gKartBowser027TlutWheel2, + gKartBowser027TlutWheel3, + gKartBowser028TlutWheel0, + gKartBowser028TlutWheel1, + gKartBowser028TlutWheel2, + gKartBowser028TlutWheel3, + gKartBowser029TlutWheel0, + gKartBowser029TlutWheel1, + gKartBowser029TlutWheel2, + gKartBowser029TlutWheel3, + gKartBowser030TlutWheel0, + gKartBowser030TlutWheel1, + gKartBowser030TlutWheel2, + gKartBowser030TlutWheel3, + gKartBowser031TlutWheel0, + gKartBowser031TlutWheel1, + gKartBowser031TlutWheel2, + gKartBowser031TlutWheel3, + gKartBowser032TlutWheel0, + gKartBowser032TlutWheel1, + gKartBowser032TlutWheel2, + gKartBowser032TlutWheel3, + gKartBowser033TlutWheel0, + gKartBowser033TlutWheel1, + gKartBowser033TlutWheel2, + gKartBowser033TlutWheel3, + gKartBowser034TlutWheel0, + gKartBowser034TlutWheel1, + gKartBowser034TlutWheel2, + gKartBowser034TlutWheel3, + gKartBowser035TlutWheel0, + gKartBowser035TlutWheel1, + gKartBowser035TlutWheel2, + gKartBowser035TlutWheel3, + gKartBowser036TlutWheel0, + gKartBowser036TlutWheel1, + gKartBowser036TlutWheel2, + gKartBowser036TlutWheel3, + gKartBowser037TlutWheel0, + gKartBowser037TlutWheel1, + gKartBowser037TlutWheel2, + gKartBowser037TlutWheel3, + gKartBowser038TlutWheel0, + gKartBowser038TlutWheel1, + gKartBowser038TlutWheel2, + gKartBowser038TlutWheel3, + gKartBowser039TlutWheel0, + gKartBowser039TlutWheel1, + gKartBowser039TlutWheel2, + gKartBowser039TlutWheel3, + gKartBowser040TlutWheel0, + gKartBowser040TlutWheel1, + gKartBowser040TlutWheel2, + gKartBowser040TlutWheel3, + gKartBowser041TlutWheel0, + gKartBowser041TlutWheel1, + gKartBowser041TlutWheel2, + gKartBowser041TlutWheel3, + gKartBowser042TlutWheel0, + gKartBowser042TlutWheel1, + gKartBowser042TlutWheel2, + gKartBowser042TlutWheel3, + gKartBowser043TlutWheel0, + gKartBowser043TlutWheel1, + gKartBowser043TlutWheel2, + gKartBowser043TlutWheel3, + gKartBowser044TlutWheel0, + gKartBowser044TlutWheel1, + gKartBowser044TlutWheel2, + gKartBowser044TlutWheel3, + gKartBowser045TlutWheel0, + gKartBowser045TlutWheel1, + gKartBowser045TlutWheel2, + gKartBowser045TlutWheel3, + gKartBowser046TlutWheel0, + gKartBowser046TlutWheel1, + gKartBowser046TlutWheel2, + gKartBowser046TlutWheel3, + gKartBowser047TlutWheel0, + gKartBowser047TlutWheel1, + gKartBowser047TlutWheel2, + gKartBowser047TlutWheel3, + gKartBowser048TlutWheel0, + gKartBowser048TlutWheel1, + gKartBowser048TlutWheel2, + gKartBowser048TlutWheel3, + gKartBowser049TlutWheel0, + gKartBowser049TlutWheel1, + gKartBowser049TlutWheel2, + gKartBowser049TlutWheel3, + gKartBowser050TlutWheel0, + gKartBowser050TlutWheel1, + gKartBowser050TlutWheel2, + gKartBowser050TlutWheel3, + gKartBowser051TlutWheel0, + gKartBowser051TlutWheel1, + gKartBowser051TlutWheel2, + gKartBowser051TlutWheel3, + gKartBowser052TlutWheel0, + gKartBowser052TlutWheel1, + gKartBowser052TlutWheel2, + gKartBowser052TlutWheel3, + gKartBowser053TlutWheel0, + gKartBowser053TlutWheel1, + gKartBowser053TlutWheel2, + gKartBowser053TlutWheel3, + gKartBowser054TlutWheel0, + gKartBowser054TlutWheel1, + gKartBowser054TlutWheel2, + gKartBowser054TlutWheel3, + gKartBowser055TlutWheel0, + gKartBowser055TlutWheel1, + gKartBowser055TlutWheel2, + gKartBowser055TlutWheel3, + gKartBowser056TlutWheel0, + gKartBowser056TlutWheel1, + gKartBowser056TlutWheel2, + gKartBowser056TlutWheel3, + gKartBowser057TlutWheel0, + gKartBowser057TlutWheel1, + gKartBowser057TlutWheel2, + gKartBowser057TlutWheel3, + gKartBowser058TlutWheel0, + gKartBowser058TlutWheel1, + gKartBowser058TlutWheel2, + gKartBowser058TlutWheel3, + gKartBowser059TlutWheel0, + gKartBowser059TlutWheel1, + gKartBowser059TlutWheel2, + gKartBowser059TlutWheel3, + gKartBowser060TlutWheel0, + gKartBowser060TlutWheel1, + gKartBowser060TlutWheel2, + gKartBowser060TlutWheel3, + gKartBowser061TlutWheel0, + gKartBowser061TlutWheel1, + gKartBowser061TlutWheel2, + gKartBowser061TlutWheel3, + gKartBowser062TlutWheel0, + gKartBowser062TlutWheel1, + gKartBowser062TlutWheel2, + gKartBowser062TlutWheel3, + gKartBowser063TlutWheel0, + gKartBowser063TlutWheel1, + gKartBowser063TlutWheel2, + gKartBowser063TlutWheel3, + gKartBowser064TlutWheel0, + gKartBowser064TlutWheel1, + gKartBowser064TlutWheel2, + gKartBowser064TlutWheel3, + gKartBowser065TlutWheel0, + gKartBowser065TlutWheel1, + gKartBowser065TlutWheel2, + gKartBowser065TlutWheel3, + gKartBowser066TlutWheel0, + gKartBowser066TlutWheel1, + gKartBowser066TlutWheel2, + gKartBowser066TlutWheel3, + gKartBowser067TlutWheel0, + gKartBowser067TlutWheel1, + gKartBowser067TlutWheel2, + gKartBowser067TlutWheel3, + gKartBowser068TlutWheel0, + gKartBowser068TlutWheel1, + gKartBowser068TlutWheel2, + gKartBowser068TlutWheel3, + gKartBowser069TlutWheel0, + gKartBowser069TlutWheel1, + gKartBowser069TlutWheel2, + gKartBowser069TlutWheel3, + gKartBowser070TlutWheel0, + gKartBowser070TlutWheel1, + gKartBowser070TlutWheel2, + gKartBowser070TlutWheel3, + gKartBowser071TlutWheel0, + gKartBowser071TlutWheel1, + gKartBowser071TlutWheel2, + gKartBowser071TlutWheel3, + gKartBowser072TlutWheel0, + gKartBowser072TlutWheel1, + gKartBowser072TlutWheel2, + gKartBowser072TlutWheel3, + gKartBowser073TlutWheel0, + gKartBowser073TlutWheel1, + gKartBowser073TlutWheel2, + gKartBowser073TlutWheel3, + gKartBowser074TlutWheel0, + gKartBowser074TlutWheel1, + gKartBowser074TlutWheel2, + gKartBowser074TlutWheel3, + gKartBowser075TlutWheel0, + gKartBowser075TlutWheel1, + gKartBowser075TlutWheel2, + gKartBowser075TlutWheel3, + gKartBowser076TlutWheel0, + gKartBowser076TlutWheel1, + gKartBowser076TlutWheel2, + gKartBowser076TlutWheel3, + gKartBowser077TlutWheel0, + gKartBowser077TlutWheel1, + gKartBowser077TlutWheel2, + gKartBowser077TlutWheel3, + gKartBowser078TlutWheel0, + gKartBowser078TlutWheel1, + gKartBowser078TlutWheel2, + gKartBowser078TlutWheel3, + gKartBowser079TlutWheel0, + gKartBowser079TlutWheel1, + gKartBowser079TlutWheel2, + gKartBowser079TlutWheel3, + gKartBowser080TlutWheel0, + gKartBowser080TlutWheel1, + gKartBowser080TlutWheel2, + gKartBowser080TlutWheel3, + gKartBowser081TlutWheel0, + gKartBowser081TlutWheel1, + gKartBowser081TlutWheel2, + gKartBowser081TlutWheel3, + gKartBowser082TlutWheel0, + gKartBowser082TlutWheel1, + gKartBowser082TlutWheel2, + gKartBowser082TlutWheel3, + gKartBowser083TlutWheel0, + gKartBowser083TlutWheel1, + gKartBowser083TlutWheel2, + gKartBowser083TlutWheel3, + gKartBowser084TlutWheel0, + gKartBowser084TlutWheel1, + gKartBowser084TlutWheel2, + gKartBowser084TlutWheel3, + gKartBowser085TlutWheel0, + gKartBowser085TlutWheel1, + gKartBowser085TlutWheel2, + gKartBowser085TlutWheel3, + gKartBowser086TlutWheel0, + gKartBowser086TlutWheel1, + gKartBowser086TlutWheel2, + gKartBowser086TlutWheel3, + gKartBowser087TlutWheel0, + gKartBowser087TlutWheel1, + gKartBowser087TlutWheel2, + gKartBowser087TlutWheel3, + gKartBowser088TlutWheel0, + gKartBowser088TlutWheel1, + gKartBowser088TlutWheel2, + gKartBowser088TlutWheel3, + gKartBowser089TlutWheel0, + gKartBowser089TlutWheel1, + gKartBowser089TlutWheel2, + gKartBowser089TlutWheel3, + gKartBowser090TlutWheel0, + gKartBowser090TlutWheel1, + gKartBowser090TlutWheel2, + gKartBowser090TlutWheel3, + gKartBowser091TlutWheel0, + gKartBowser091TlutWheel1, + gKartBowser091TlutWheel2, + gKartBowser091TlutWheel3, + gKartBowser092TlutWheel0, + gKartBowser092TlutWheel1, + gKartBowser092TlutWheel2, + gKartBowser092TlutWheel3, + gKartBowser093TlutWheel0, + gKartBowser093TlutWheel1, + gKartBowser093TlutWheel2, + gKartBowser093TlutWheel3, + gKartBowser094TlutWheel0, + gKartBowser094TlutWheel1, + gKartBowser094TlutWheel2, + gKartBowser094TlutWheel3, + gKartBowser095TlutWheel0, + gKartBowser095TlutWheel1, + gKartBowser095TlutWheel2, + gKartBowser095TlutWheel3, + gKartBowser096TlutWheel0, + gKartBowser096TlutWheel1, + gKartBowser096TlutWheel2, + gKartBowser096TlutWheel3, + gKartBowser097TlutWheel0, + gKartBowser097TlutWheel1, + gKartBowser097TlutWheel2, + gKartBowser097TlutWheel3, + gKartBowser098TlutWheel0, + gKartBowser098TlutWheel1, + gKartBowser098TlutWheel2, + gKartBowser098TlutWheel3, + gKartBowser099TlutWheel0, + gKartBowser099TlutWheel1, + gKartBowser099TlutWheel2, + gKartBowser099TlutWheel3, + gKartBowser100TlutWheel0, + gKartBowser100TlutWheel1, + gKartBowser100TlutWheel2, + gKartBowser100TlutWheel3, + gKartBowser101TlutWheel0, + gKartBowser101TlutWheel1, + gKartBowser101TlutWheel2, + gKartBowser101TlutWheel3, + gKartBowser102TlutWheel0, + gKartBowser102TlutWheel1, + gKartBowser102TlutWheel2, + gKartBowser102TlutWheel3, + gKartBowser103TlutWheel0, + gKartBowser103TlutWheel1, + gKartBowser103TlutWheel2, + gKartBowser103TlutWheel3, + gKartBowser104TlutWheel0, + gKartBowser104TlutWheel1, + gKartBowser104TlutWheel2, + gKartBowser104TlutWheel3, + gKartBowser105TlutWheel0, + gKartBowser105TlutWheel1, + gKartBowser105TlutWheel2, + gKartBowser105TlutWheel3, + gKartBowser106TlutWheel0, + gKartBowser106TlutWheel1, + gKartBowser106TlutWheel2, + gKartBowser106TlutWheel3, + gKartBowser107TlutWheel0, + gKartBowser107TlutWheel1, + gKartBowser107TlutWheel2, + gKartBowser107TlutWheel3, + gKartBowser108TlutWheel0, + gKartBowser108TlutWheel1, + gKartBowser108TlutWheel2, + gKartBowser108TlutWheel3, + gKartBowser109TlutWheel0, + gKartBowser109TlutWheel1, + gKartBowser109TlutWheel2, + gKartBowser109TlutWheel3, + gKartBowser110TlutWheel0, + gKartBowser110TlutWheel1, + gKartBowser110TlutWheel2, + gKartBowser110TlutWheel3, + gKartBowser111TlutWheel0, + gKartBowser111TlutWheel1, + gKartBowser111TlutWheel2, + gKartBowser111TlutWheel3, + gKartBowser112TlutWheel0, + gKartBowser112TlutWheel1, + gKartBowser112TlutWheel2, + gKartBowser112TlutWheel3, + gKartBowser113TlutWheel0, + gKartBowser113TlutWheel1, + gKartBowser113TlutWheel2, + gKartBowser113TlutWheel3, + gKartBowser114TlutWheel0, + gKartBowser114TlutWheel1, + gKartBowser114TlutWheel2, + gKartBowser114TlutWheel3, + gKartBowser115TlutWheel0, + gKartBowser115TlutWheel1, + gKartBowser115TlutWheel2, + gKartBowser115TlutWheel3, + gKartBowser116TlutWheel0, + gKartBowser116TlutWheel1, + gKartBowser116TlutWheel2, + gKartBowser116TlutWheel3, + gKartBowser117TlutWheel0, + gKartBowser117TlutWheel1, + gKartBowser117TlutWheel2, + gKartBowser117TlutWheel3, + gKartBowser118TlutWheel0, + gKartBowser118TlutWheel1, + gKartBowser118TlutWheel2, + gKartBowser118TlutWheel3, + gKartBowser119TlutWheel0, + gKartBowser119TlutWheel1, + gKartBowser119TlutWheel2, + gKartBowser119TlutWheel3, + gKartBowser120TlutWheel0, + gKartBowser120TlutWheel1, + gKartBowser120TlutWheel2, + gKartBowser120TlutWheel3, + gKartBowser121TlutWheel0, + gKartBowser121TlutWheel1, + gKartBowser121TlutWheel2, + gKartBowser121TlutWheel3, + gKartBowser122TlutWheel0, + gKartBowser122TlutWheel1, + gKartBowser122TlutWheel2, + gKartBowser122TlutWheel3, + gKartBowser123TlutWheel0, + gKartBowser123TlutWheel1, + gKartBowser123TlutWheel2, + gKartBowser123TlutWheel3, + gKartBowser124TlutWheel0, + gKartBowser124TlutWheel1, + gKartBowser124TlutWheel2, + gKartBowser124TlutWheel3, + gKartBowser125TlutWheel0, + gKartBowser125TlutWheel1, + gKartBowser125TlutWheel2, + gKartBowser125TlutWheel3, + gKartBowser126TlutWheel0, + gKartBowser126TlutWheel1, + gKartBowser126TlutWheel2, + gKartBowser126TlutWheel3, + gKartBowser127TlutWheel0, + gKartBowser127TlutWheel1, + gKartBowser127TlutWheel2, + gKartBowser127TlutWheel3, + gKartBowser128TlutWheel0, + gKartBowser128TlutWheel1, + gKartBowser128TlutWheel2, + gKartBowser128TlutWheel3, + gKartBowser129TlutWheel0, + gKartBowser129TlutWheel1, + gKartBowser129TlutWheel2, + gKartBowser129TlutWheel3, + gKartBowser130TlutWheel0, + gKartBowser130TlutWheel1, + gKartBowser130TlutWheel2, + gKartBowser130TlutWheel3, + gKartBowser131TlutWheel0, + gKartBowser131TlutWheel1, + gKartBowser131TlutWheel2, + gKartBowser131TlutWheel3, + gKartBowser132TlutWheel0, + gKartBowser132TlutWheel1, + gKartBowser132TlutWheel2, + gKartBowser132TlutWheel3, + gKartBowser133TlutWheel0, + gKartBowser133TlutWheel1, + gKartBowser133TlutWheel2, + gKartBowser133TlutWheel3, + gKartBowser134TlutWheel0, + gKartBowser134TlutWheel1, + gKartBowser134TlutWheel2, + gKartBowser134TlutWheel3, + gKartBowser135TlutWheel0, + gKartBowser135TlutWheel1, + gKartBowser135TlutWheel2, + gKartBowser135TlutWheel3, + gKartBowser136TlutWheel0, + gKartBowser136TlutWheel1, + gKartBowser136TlutWheel2, + gKartBowser136TlutWheel3, + gKartBowser137TlutWheel0, + gKartBowser137TlutWheel1, + gKartBowser137TlutWheel2, + gKartBowser137TlutWheel3, + gKartBowser138TlutWheel0, + gKartBowser138TlutWheel1, + gKartBowser138TlutWheel2, + gKartBowser138TlutWheel3, + gKartBowser139TlutWheel0, + gKartBowser139TlutWheel1, + gKartBowser139TlutWheel2, + gKartBowser139TlutWheel3, + gKartBowser140TlutWheel0, + gKartBowser140TlutWheel1, + gKartBowser140TlutWheel2, + gKartBowser140TlutWheel3, + gKartBowser141TlutWheel0, + gKartBowser141TlutWheel1, + gKartBowser141TlutWheel2, + gKartBowser141TlutWheel3, + gKartBowser142TlutWheel0, + gKartBowser142TlutWheel1, + gKartBowser142TlutWheel2, + gKartBowser142TlutWheel3, + gKartBowser143TlutWheel0, + gKartBowser143TlutWheel1, + gKartBowser143TlutWheel2, + gKartBowser143TlutWheel3, + gKartBowser144TlutWheel0, + gKartBowser144TlutWheel1, + gKartBowser144TlutWheel2, + gKartBowser144TlutWheel3, + gKartBowser145TlutWheel0, + gKartBowser145TlutWheel1, + gKartBowser145TlutWheel2, + gKartBowser145TlutWheel3, + gKartBowser146TlutWheel0, + gKartBowser146TlutWheel1, + gKartBowser146TlutWheel2, + gKartBowser146TlutWheel3, + gKartBowser147TlutWheel0, + gKartBowser147TlutWheel1, + gKartBowser147TlutWheel2, + gKartBowser147TlutWheel3, + gKartBowser148TlutWheel0, + gKartBowser148TlutWheel1, + gKartBowser148TlutWheel2, + gKartBowser148TlutWheel3, + gKartBowser149TlutWheel0, + gKartBowser149TlutWheel1, + gKartBowser149TlutWheel2, + gKartBowser149TlutWheel3, + gKartBowser150TlutWheel0, + gKartBowser150TlutWheel1, + gKartBowser150TlutWheel2, + gKartBowser150TlutWheel3, + gKartBowser151TlutWheel0, + gKartBowser151TlutWheel1, + gKartBowser151TlutWheel2, + gKartBowser151TlutWheel3, + gKartBowser152TlutWheel0, + gKartBowser152TlutWheel1, + gKartBowser152TlutWheel2, + gKartBowser152TlutWheel3, + gKartBowser153TlutWheel0, + gKartBowser153TlutWheel1, + gKartBowser153TlutWheel2, + gKartBowser153TlutWheel3, + gKartBowser154TlutWheel0, + gKartBowser154TlutWheel1, + gKartBowser154TlutWheel2, + gKartBowser154TlutWheel3, + gKartBowser155TlutWheel0, + gKartBowser155TlutWheel1, + gKartBowser155TlutWheel2, + gKartBowser155TlutWheel3, + gKartBowser156TlutWheel0, + gKartBowser156TlutWheel1, + gKartBowser156TlutWheel2, + gKartBowser156TlutWheel3, + gKartBowser157TlutWheel0, + gKartBowser157TlutWheel1, + gKartBowser157TlutWheel2, + gKartBowser157TlutWheel3, + gKartBowser158TlutWheel0, + gKartBowser158TlutWheel1, + gKartBowser158TlutWheel2, + gKartBowser158TlutWheel3, + gKartBowser159TlutWheel0, + gKartBowser159TlutWheel1, + gKartBowser159TlutWheel2, + gKartBowser159TlutWheel3, + gKartBowser160TlutWheel0, + gKartBowser160TlutWheel1, + gKartBowser160TlutWheel2, + gKartBowser160TlutWheel3, + gKartBowser161TlutWheel0, + gKartBowser161TlutWheel1, + gKartBowser161TlutWheel2, + gKartBowser161TlutWheel3, + gKartBowser162TlutWheel0, + gKartBowser162TlutWheel1, + gKartBowser162TlutWheel2, + gKartBowser162TlutWheel3, + gKartBowser163TlutWheel0, + gKartBowser163TlutWheel1, + gKartBowser163TlutWheel2, + gKartBowser163TlutWheel3, + gKartBowser164TlutWheel0, + gKartBowser164TlutWheel1, + gKartBowser164TlutWheel2, + gKartBowser164TlutWheel3, + gKartBowser165TlutWheel0, + gKartBowser165TlutWheel1, + gKartBowser165TlutWheel2, + gKartBowser165TlutWheel3, + gKartBowser166TlutWheel0, + gKartBowser166TlutWheel1, + gKartBowser166TlutWheel2, + gKartBowser166TlutWheel3, + gKartBowser167TlutWheel0, + gKartBowser167TlutWheel1, + gKartBowser167TlutWheel2, + gKartBowser167TlutWheel3, + gKartBowser168TlutWheel0, + gKartBowser168TlutWheel1, + gKartBowser168TlutWheel2, + gKartBowser168TlutWheel3, + gKartBowser169TlutWheel0, + gKartBowser169TlutWheel1, + gKartBowser169TlutWheel2, + gKartBowser169TlutWheel3, + gKartBowser170TlutWheel0, + gKartBowser170TlutWheel1, + gKartBowser170TlutWheel2, + gKartBowser170TlutWheel3, + gKartBowser171TlutWheel0, + gKartBowser171TlutWheel1, + gKartBowser171TlutWheel2, + gKartBowser171TlutWheel3, + gKartBowser172TlutWheel0, + gKartBowser172TlutWheel1, + gKartBowser172TlutWheel2, + gKartBowser172TlutWheel3, + gKartBowser173TlutWheel0, + gKartBowser173TlutWheel1, + gKartBowser173TlutWheel2, + gKartBowser173TlutWheel3, + gKartBowser174TlutWheel0, + gKartBowser174TlutWheel1, + gKartBowser174TlutWheel2, + gKartBowser174TlutWheel3, + gKartBowser175TlutWheel0, + gKartBowser175TlutWheel1, + gKartBowser175TlutWheel2, + gKartBowser175TlutWheel3, + gKartBowser176TlutWheel0, + gKartBowser176TlutWheel1, + gKartBowser176TlutWheel2, + gKartBowser176TlutWheel3, + gKartBowser177TlutWheel0, + gKartBowser177TlutWheel1, + gKartBowser177TlutWheel2, + gKartBowser177TlutWheel3, + gKartBowser178TlutWheel0, + gKartBowser178TlutWheel1, + gKartBowser178TlutWheel2, + gKartBowser178TlutWheel3, + gKartBowser179TlutWheel0, + gKartBowser179TlutWheel1, + gKartBowser179TlutWheel2, + gKartBowser179TlutWheel3, + gKartBowser180TlutWheel0, + gKartBowser180TlutWheel1, + gKartBowser180TlutWheel2, + gKartBowser180TlutWheel3, + gKartBowser181TlutWheel0, + gKartBowser181TlutWheel1, + gKartBowser181TlutWheel2, + gKartBowser181TlutWheel3, + gKartBowser182TlutWheel0, + gKartBowser182TlutWheel1, + gKartBowser182TlutWheel2, + gKartBowser182TlutWheel3, + gKartBowser183TlutWheel0, + gKartBowser183TlutWheel1, + gKartBowser183TlutWheel2, + gKartBowser183TlutWheel3, + gKartBowser184TlutWheel0, + gKartBowser184TlutWheel1, + gKartBowser184TlutWheel2, + gKartBowser184TlutWheel3, + gKartBowser185TlutWheel0, + gKartBowser185TlutWheel1, + gKartBowser185TlutWheel2, + gKartBowser185TlutWheel3, + gKartBowser186TlutWheel0, + gKartBowser186TlutWheel1, + gKartBowser186TlutWheel2, + gKartBowser186TlutWheel3, + gKartBowser187TlutWheel0, + gKartBowser187TlutWheel1, + gKartBowser187TlutWheel2, + gKartBowser187TlutWheel3, + gKartBowser188TlutWheel0, + gKartBowser188TlutWheel1, + gKartBowser188TlutWheel2, + gKartBowser188TlutWheel3, + gKartBowser189TlutWheel0, + gKartBowser189TlutWheel1, + gKartBowser189TlutWheel2, + gKartBowser189TlutWheel3, + gKartBowser190TlutWheel0, + gKartBowser190TlutWheel1, + gKartBowser190TlutWheel2, + gKartBowser190TlutWheel3, + gKartBowser191TlutWheel0, + gKartBowser191TlutWheel1, + gKartBowser191TlutWheel2, + gKartBowser191TlutWheel3, + gKartBowser192TlutWheel0, + gKartBowser192TlutWheel1, + gKartBowser192TlutWheel2, + gKartBowser192TlutWheel3, + gKartBowser193TlutWheel0, + gKartBowser193TlutWheel1, + gKartBowser193TlutWheel2, + gKartBowser193TlutWheel3, + gKartBowser194TlutWheel0, + gKartBowser194TlutWheel1, + gKartBowser194TlutWheel2, + gKartBowser194TlutWheel3, + gKartBowser195TlutWheel0, + gKartBowser195TlutWheel1, + gKartBowser195TlutWheel2, + gKartBowser195TlutWheel3, + gKartBowser196TlutWheel0, + gKartBowser196TlutWheel1, + gKartBowser196TlutWheel2, + gKartBowser196TlutWheel3, + gKartBowser197TlutWheel0, + gKartBowser197TlutWheel1, + gKartBowser197TlutWheel2, + gKartBowser197TlutWheel3, + gKartBowser198TlutWheel0, + gKartBowser198TlutWheel1, + gKartBowser198TlutWheel2, + gKartBowser198TlutWheel3, + gKartBowser199TlutWheel0, + gKartBowser199TlutWheel1, + gKartBowser199TlutWheel2, + gKartBowser199TlutWheel3, + gKartBowser200TlutWheel0, + gKartBowser200TlutWheel1, + gKartBowser200TlutWheel2, + gKartBowser200TlutWheel3, + gKartBowser201TlutWheel0, + gKartBowser201TlutWheel1, + gKartBowser201TlutWheel2, + gKartBowser201TlutWheel3, + gKartBowser202TlutWheel0, + gKartBowser202TlutWheel1, + gKartBowser202TlutWheel2, + gKartBowser202TlutWheel3, + gKartBowser203TlutWheel0, + gKartBowser203TlutWheel1, + gKartBowser203TlutWheel2, + gKartBowser203TlutWheel3, + gKartBowser204TlutWheel0, + gKartBowser204TlutWheel1, + gKartBowser204TlutWheel2, + gKartBowser204TlutWheel3, + gKartBowser205TlutWheel0, + gKartBowser205TlutWheel1, + gKartBowser205TlutWheel2, + gKartBowser205TlutWheel3, + gKartBowser206TlutWheel0, + gKartBowser206TlutWheel1, + gKartBowser206TlutWheel2, + gKartBowser206TlutWheel3, + gKartBowser207TlutWheel0, + gKartBowser207TlutWheel1, + gKartBowser207TlutWheel2, + gKartBowser207TlutWheel3, + gKartBowser208TlutWheel0, + gKartBowser208TlutWheel1, + gKartBowser208TlutWheel2, + gKartBowser208TlutWheel3, + gKartBowser209TlutWheel0, + gKartBowser209TlutWheel1, + gKartBowser209TlutWheel2, + gKartBowser209TlutWheel3, + gKartBowser210TlutWheel0, + gKartBowser210TlutWheel1, + gKartBowser210TlutWheel2, + gKartBowser210TlutWheel3, + gKartBowser211TlutWheel0, + gKartBowser211TlutWheel1, + gKartBowser211TlutWheel2, + gKartBowser211TlutWheel3, + gKartBowser212TlutWheel0, + gKartBowser212TlutWheel1, + gKartBowser212TlutWheel2, + gKartBowser212TlutWheel3, + gKartBowser213TlutWheel0, + gKartBowser213TlutWheel1, + gKartBowser213TlutWheel2, + gKartBowser213TlutWheel3, + gKartBowser214TlutWheel0, + gKartBowser214TlutWheel1, + gKartBowser214TlutWheel2, + gKartBowser214TlutWheel3, + gKartBowser215TlutWheel0, + gKartBowser215TlutWheel1, + gKartBowser215TlutWheel2, + gKartBowser215TlutWheel3, + gKartBowser216TlutWheel0, + gKartBowser216TlutWheel1, + gKartBowser216TlutWheel2, + gKartBowser216TlutWheel3, + gKartBowser217TlutWheel0, + gKartBowser217TlutWheel1, + gKartBowser217TlutWheel2, + gKartBowser217TlutWheel3, + gKartBowser218TlutWheel0, + gKartBowser218TlutWheel1, + gKartBowser218TlutWheel2, + gKartBowser218TlutWheel3, + gKartBowser219TlutWheel0, + gKartBowser219TlutWheel1, + gKartBowser219TlutWheel2, + gKartBowser219TlutWheel3, + gKartBowser220TlutWheel0, + gKartBowser220TlutWheel1, + gKartBowser220TlutWheel2, + gKartBowser220TlutWheel3, + gKartBowser221TlutWheel0, + gKartBowser221TlutWheel1, + gKartBowser221TlutWheel2, + gKartBowser221TlutWheel3, + gKartBowser222TlutWheel0, + gKartBowser222TlutWheel1, + gKartBowser222TlutWheel2, + gKartBowser222TlutWheel3, + gKartBowser223TlutWheel0, + gKartBowser223TlutWheel1, + gKartBowser223TlutWheel2, + gKartBowser223TlutWheel3, + gKartBowser224TlutWheel0, + gKartBowser224TlutWheel1, + gKartBowser224TlutWheel2, + gKartBowser224TlutWheel3, + gKartBowser225TlutWheel0, + gKartBowser225TlutWheel1, + gKartBowser225TlutWheel2, + gKartBowser225TlutWheel3, + gKartBowser226TlutWheel0, + gKartBowser226TlutWheel1, + gKartBowser226TlutWheel2, + gKartBowser226TlutWheel3, + gKartBowser227TlutWheel0, + gKartBowser227TlutWheel1, + gKartBowser227TlutWheel2, + gKartBowser227TlutWheel3, + gKartBowser228TlutWheel0, + gKartBowser228TlutWheel1, + gKartBowser228TlutWheel2, + gKartBowser228TlutWheel3, + gKartBowser229TlutWheel0, + gKartBowser229TlutWheel1, + gKartBowser229TlutWheel2, + gKartBowser229TlutWheel3, + gKartBowser230TlutWheel0, + gKartBowser230TlutWheel1, + gKartBowser230TlutWheel2, + gKartBowser230TlutWheel3, + gKartBowser231TlutWheel0, + gKartBowser231TlutWheel1, + gKartBowser231TlutWheel2, + gKartBowser231TlutWheel3, + gKartBowser232TlutWheel0, + gKartBowser232TlutWheel1, + gKartBowser232TlutWheel2, + gKartBowser232TlutWheel3, + gKartBowser233TlutWheel0, + gKartBowser233TlutWheel1, + gKartBowser233TlutWheel2, + gKartBowser233TlutWheel3, + gKartBowser234TlutWheel0, + gKartBowser234TlutWheel1, + gKartBowser234TlutWheel2, + gKartBowser234TlutWheel3, + gKartBowser235TlutWheel0, + gKartBowser235TlutWheel1, + gKartBowser235TlutWheel2, + gKartBowser235TlutWheel3, + gKartBowser236TlutWheel0, + gKartBowser236TlutWheel1, + gKartBowser236TlutWheel2, + gKartBowser236TlutWheel3, + gKartBowser237TlutWheel0, + gKartBowser237TlutWheel1, + gKartBowser237TlutWheel2, + gKartBowser237TlutWheel3, + gKartBowser238TlutWheel0, + gKartBowser238TlutWheel1, + gKartBowser238TlutWheel2, + gKartBowser238TlutWheel3, + gKartBowser239TlutWheel0, + gKartBowser239TlutWheel1, + gKartBowser239TlutWheel2, + gKartBowser239TlutWheel3, + gKartBowser240TlutWheel0, + gKartBowser240TlutWheel1, + gKartBowser240TlutWheel2, + gKartBowser240TlutWheel3, + gKartBowser241TlutWheel0, + gKartBowser241TlutWheel1, + gKartBowser241TlutWheel2, + gKartBowser241TlutWheel3, + gKartBowser242TlutWheel0, + gKartBowser242TlutWheel1, + gKartBowser242TlutWheel2, + gKartBowser242TlutWheel3, + gKartBowser243TlutWheel0, + gKartBowser243TlutWheel1, + gKartBowser243TlutWheel2, + gKartBowser243TlutWheel3, + gKartBowser244TlutWheel0, + gKartBowser244TlutWheel1, + gKartBowser244TlutWheel2, + gKartBowser244TlutWheel3, + gKartBowser245TlutWheel0, + gKartBowser245TlutWheel1, + gKartBowser245TlutWheel2, + gKartBowser245TlutWheel3, + gKartBowser246TlutWheel0, + gKartBowser246TlutWheel1, + gKartBowser246TlutWheel2, + gKartBowser246TlutWheel3, + gKartBowser247TlutWheel0, + gKartBowser247TlutWheel1, + gKartBowser247TlutWheel2, + gKartBowser247TlutWheel3, + gKartBowser248TlutWheel0, + gKartBowser248TlutWheel1, + gKartBowser248TlutWheel2, + gKartBowser248TlutWheel3, + gKartBowser249TlutWheel0, + gKartBowser249TlutWheel1, + gKartBowser249TlutWheel2, + gKartBowser249TlutWheel3, + gKartBowser250TlutWheel0, + gKartBowser250TlutWheel1, + gKartBowser250TlutWheel2, + gKartBowser250TlutWheel3, + gKartBowser251TlutWheel0, + gKartBowser251TlutWheel1, + gKartBowser251TlutWheel2, + gKartBowser251TlutWheel3, + gKartBowser252TlutWheel0, + gKartBowser252TlutWheel1, + gKartBowser252TlutWheel2, + gKartBowser252TlutWheel3, + gKartBowser253TlutWheel0, + gKartBowser253TlutWheel1, + gKartBowser253TlutWheel2, + gKartBowser253TlutWheel3, + gKartBowser254TlutWheel0, + gKartBowser254TlutWheel1, + gKartBowser254TlutWheel2, + gKartBowser254TlutWheel3, + gKartBowser255TlutWheel0, + gKartBowser255TlutWheel1, + gKartBowser255TlutWheel2, + gKartBowser255TlutWheel3, + gKartBowser256TlutWheel0, + gKartBowser256TlutWheel1, + gKartBowser256TlutWheel2, + gKartBowser256TlutWheel3, + gKartBowser257TlutWheel0, + gKartBowser257TlutWheel1, + gKartBowser257TlutWheel2, + gKartBowser257TlutWheel3, + gKartBowser258TlutWheel0, + gKartBowser258TlutWheel1, + gKartBowser258TlutWheel2, + gKartBowser258TlutWheel3, + gKartBowser259TlutWheel0, + gKartBowser259TlutWheel1, + gKartBowser259TlutWheel2, + gKartBowser259TlutWheel3, + gKartBowser260TlutWheel0, + gKartBowser260TlutWheel1, + gKartBowser260TlutWheel2, + gKartBowser260TlutWheel3, + gKartBowser261TlutWheel0, + gKartBowser261TlutWheel1, + gKartBowser261TlutWheel2, + gKartBowser261TlutWheel3, + gKartBowser262TlutWheel0, + gKartBowser262TlutWheel1, + gKartBowser262TlutWheel2, + gKartBowser262TlutWheel3, + gKartBowser263TlutWheel0, + gKartBowser263TlutWheel1, + gKartBowser263TlutWheel2, + gKartBowser263TlutWheel3, + gKartBowser264TlutWheel0, + gKartBowser264TlutWheel1, + gKartBowser264TlutWheel2, + gKartBowser264TlutWheel3, + gKartBowser265TlutWheel0, + gKartBowser265TlutWheel1, + gKartBowser265TlutWheel2, + gKartBowser265TlutWheel3, + gKartBowser266TlutWheel0, + gKartBowser266TlutWheel1, + gKartBowser266TlutWheel2, + gKartBowser266TlutWheel3, + gKartBowser267TlutWheel0, + gKartBowser267TlutWheel1, + gKartBowser267TlutWheel2, + gKartBowser267TlutWheel3, + gKartBowser268TlutWheel0, + gKartBowser268TlutWheel1, + gKartBowser268TlutWheel2, + gKartBowser268TlutWheel3, + gKartBowser269TlutWheel0, + gKartBowser269TlutWheel1, + gKartBowser269TlutWheel2, + gKartBowser269TlutWheel3, + gKartBowser270TlutWheel0, + gKartBowser270TlutWheel1, + gKartBowser270TlutWheel2, + gKartBowser270TlutWheel3, + gKartBowser271TlutWheel0, + gKartBowser271TlutWheel1, + gKartBowser271TlutWheel2, + gKartBowser271TlutWheel3, + gKartBowser272TlutWheel0, + gKartBowser272TlutWheel1, + gKartBowser272TlutWheel2, + gKartBowser272TlutWheel3, + gKartBowser273TlutWheel0, + gKartBowser273TlutWheel1, + gKartBowser273TlutWheel2, + gKartBowser273TlutWheel3, + gKartBowser274TlutWheel0, + gKartBowser274TlutWheel1, + gKartBowser274TlutWheel2, + gKartBowser274TlutWheel3, + gKartBowser275TlutWheel0, + gKartBowser275TlutWheel1, + gKartBowser275TlutWheel2, + gKartBowser275TlutWheel3, + gKartBowser276TlutWheel0, + gKartBowser276TlutWheel1, + gKartBowser276TlutWheel2, + gKartBowser276TlutWheel3, + gKartBowser277TlutWheel0, + gKartBowser277TlutWheel1, + gKartBowser277TlutWheel2, + gKartBowser277TlutWheel3, + gKartBowser278TlutWheel0, + gKartBowser278TlutWheel1, + gKartBowser278TlutWheel2, + gKartBowser278TlutWheel3, + gKartBowser279TlutWheel0, + gKartBowser279TlutWheel1, + gKartBowser279TlutWheel2, + gKartBowser279TlutWheel3, + gKartBowser280TlutWheel0, + gKartBowser280TlutWheel1, + gKartBowser280TlutWheel2, + gKartBowser280TlutWheel3, + gKartBowser281TlutWheel0, + gKartBowser281TlutWheel1, + gKartBowser281TlutWheel2, + gKartBowser281TlutWheel3, + gKartBowser282TlutWheel0, + gKartBowser282TlutWheel1, + gKartBowser282TlutWheel2, + gKartBowser282TlutWheel3, + gKartBowser283TlutWheel0, + gKartBowser283TlutWheel1, + gKartBowser283TlutWheel2, + gKartBowser283TlutWheel3, + gKartBowser284TlutWheel0, + gKartBowser284TlutWheel1, + gKartBowser284TlutWheel2, + gKartBowser284TlutWheel3, + gKartBowser285TlutWheel0, + gKartBowser285TlutWheel1, + gKartBowser285TlutWheel2, + gKartBowser285TlutWheel3, + gKartBowser286TlutWheel0, + gKartBowser286TlutWheel1, + gKartBowser286TlutWheel2, + gKartBowser286TlutWheel3, + gKartBowser287TlutWheel0, + gKartBowser287TlutWheel1, + gKartBowser287TlutWheel2, + gKartBowser287TlutWheel3, + gKartBowser288TlutWheel0, + gKartBowser288TlutWheel1, + gKartBowser288TlutWheel2, + gKartBowser288TlutWheel3, +}; + +static const ALIGN_ASSET(2) char gKartBowserPalette[] = "__OTR__textures/karts/bowser_kart/bowser_kart_palette"; + diff --git a/include/assets/textures/karts/donkeykong_kart.h b/include/assets/textures/karts/donkeykong_kart.h new file mode 100644 index 000000000..863076c42 --- /dev/null +++ b/include/assets/textures/karts/donkeykong_kart.h @@ -0,0 +1,5854 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gKartDK000Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame000_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK000Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame000_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK000Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame000_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK000Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame000_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK001Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame001_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK001Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame001_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK001Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame001_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK001Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame001_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK002Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame002_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK002Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame002_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK002Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame002_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK002Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame002_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK003Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame003_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK003Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame003_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK003Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame003_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK003Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame003_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK004Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame004_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK004Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame004_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK004Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame004_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK004Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame004_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK005Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame005_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK005Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame005_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK005Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame005_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK005Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame005_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK006Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame006_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK006Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame006_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK006Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame006_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK006Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame006_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK007Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame007_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK007Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame007_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK007Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame007_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK007Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame007_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK008Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame008_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK008Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame008_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK008Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame008_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK008Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame008_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK009Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame009_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK009Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame009_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK009Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame009_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK009Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame009_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK010Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame010_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK010Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame010_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK010Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame010_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK010Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame010_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK011Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame011_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK011Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame011_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK011Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame011_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK011Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame011_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK012Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame012_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK012Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame012_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK012Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame012_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK012Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame012_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK013Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame013_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK013Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame013_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK013Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame013_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK013Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame013_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK014Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame014_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK014Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame014_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK014Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame014_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK014Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame014_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK015Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame015_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK015Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame015_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK015Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame015_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK015Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame015_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK016Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame016_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK016Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame016_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK016Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame016_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK016Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame016_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK017Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame017_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK017Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame017_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK017Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame017_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK017Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame017_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK018Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame018_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK018Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame018_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK018Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame018_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK018Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame018_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK019Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame019_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK019Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame019_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK019Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame019_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK019Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame019_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK020Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame020_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK020Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame020_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK020Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame020_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK020Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame020_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK021Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame021_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK021Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame021_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK021Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame021_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK021Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame021_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK022Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame022_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK022Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame022_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK022Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame022_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK022Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame022_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK023Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame023_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK023Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame023_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK023Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame023_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK023Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame023_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK024Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame024_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK024Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame024_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK024Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame024_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK024Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame024_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK025Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame025_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK025Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame025_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK025Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame025_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK025Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame025_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK026Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame026_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK026Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame026_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK026Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame026_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK026Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame026_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK027Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame027_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK027Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame027_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK027Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame027_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK027Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame027_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK028Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame028_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK028Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame028_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK028Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame028_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK028Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame028_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK029Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame029_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK029Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame029_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK029Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame029_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK029Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame029_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK030Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame030_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK030Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame030_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK030Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame030_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK030Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame030_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK031Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame031_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK031Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame031_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK031Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame031_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK031Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame031_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK032Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame032_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK032Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame032_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK032Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame032_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK032Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame032_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK033Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame033_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK033Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame033_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK033Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame033_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK033Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame033_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK034Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame034_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK034Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame034_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK034Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame034_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK034Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame034_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK035Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame035_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK035Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame035_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK035Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame035_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK035Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame035_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK036Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame036_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK036Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame036_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK036Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame036_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK036Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame036_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK037Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame037_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK037Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame037_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK037Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame037_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK037Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame037_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK038Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame038_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK038Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame038_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK038Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame038_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK038Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame038_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK039Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame039_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK039Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame039_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK039Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame039_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK039Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame039_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK040Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame040_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK040Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame040_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK040Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame040_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK040Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame040_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK041Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame041_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK041Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame041_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK041Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame041_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK041Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame041_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK042Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame042_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK042Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame042_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK042Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame042_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK042Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame042_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK043Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame043_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK043Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame043_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK043Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame043_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK043Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame043_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK044Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame044_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK044Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame044_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK044Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame044_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK044Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame044_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK045Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame045_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK045Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame045_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK045Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame045_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK045Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame045_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK046Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame046_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK046Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame046_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK046Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame046_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK046Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame046_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK047Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame047_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK047Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame047_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK047Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame047_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK047Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame047_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK048Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame048_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK048Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame048_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK048Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame048_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK048Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame048_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK049Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame049_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK049Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame049_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK049Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame049_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK049Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame049_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK050Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame050_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK050Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame050_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK050Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame050_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK050Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame050_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK051Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame051_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK051Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame051_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK051Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame051_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK051Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame051_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK052Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame052_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK052Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame052_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK052Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame052_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK052Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame052_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK053Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame053_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK053Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame053_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK053Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame053_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK053Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame053_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK054Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame054_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK054Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame054_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK054Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame054_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK054Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame054_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK055Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame055_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK055Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame055_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK055Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame055_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK055Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame055_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK056Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame056_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK056Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame056_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK056Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame056_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK056Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame056_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK057Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame057_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK057Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame057_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK057Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame057_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK057Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame057_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK058Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame058_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK058Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame058_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK058Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame058_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK058Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame058_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK059Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame059_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK059Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame059_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK059Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame059_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK059Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame059_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK060Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame060_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK060Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame060_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK060Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame060_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK060Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame060_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK061Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame061_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK061Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame061_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK061Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame061_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK061Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame061_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK062Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame062_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK062Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame062_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK062Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame062_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK062Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame062_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK063Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame063_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK063Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame063_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK063Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame063_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK063Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame063_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK064Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame064_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK064Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame064_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK064Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame064_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK064Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame064_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK065Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame065_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK065Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame065_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK065Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame065_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK065Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame065_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK066Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame066_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK066Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame066_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK066Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame066_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK066Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame066_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK067Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame067_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK067Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame067_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK067Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame067_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK067Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame067_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK068Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame068_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK068Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame068_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK068Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame068_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK068Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame068_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK069Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame069_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK069Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame069_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK069Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame069_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK069Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame069_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK070Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame070_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK070Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame070_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK070Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame070_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK070Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame070_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK071Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame071_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK071Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame071_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK071Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame071_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK071Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame071_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK072Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame072_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK072Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame072_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK072Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame072_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK072Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame072_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK073Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame073_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK073Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame073_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK073Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame073_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK073Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame073_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK074Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame074_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK074Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame074_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK074Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame074_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK074Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame074_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK075Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame075_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK075Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame075_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK075Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame075_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK075Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame075_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK076Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame076_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK076Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame076_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK076Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame076_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK076Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame076_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK077Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame077_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK077Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame077_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK077Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame077_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK077Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame077_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK078Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame078_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK078Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame078_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK078Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame078_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK078Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame078_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK079Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame079_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK079Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame079_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK079Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame079_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK079Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame079_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK080Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame080_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK080Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame080_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK080Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame080_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK080Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame080_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK081Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame081_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK081Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame081_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK081Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame081_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK081Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame081_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK082Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame082_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK082Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame082_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK082Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame082_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK082Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame082_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK083Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame083_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK083Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame083_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK083Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame083_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK083Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame083_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK084Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame084_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK084Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame084_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK084Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame084_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK084Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame084_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK085Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame085_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK085Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame085_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK085Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame085_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK085Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame085_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK086Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame086_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK086Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame086_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK086Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame086_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK086Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame086_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK087Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame087_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK087Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame087_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK087Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame087_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK087Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame087_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK088Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame088_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK088Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame088_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK088Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame088_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK088Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame088_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK089Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame089_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK089Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame089_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK089Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame089_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK089Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame089_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK090Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame090_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK090Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame090_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK090Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame090_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK090Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame090_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK091Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame091_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK091Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame091_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK091Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame091_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK091Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame091_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK092Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame092_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK092Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame092_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK092Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame092_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK092Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame092_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK093Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame093_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK093Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame093_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK093Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame093_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK093Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame093_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK094Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame094_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK094Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame094_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK094Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame094_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK094Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame094_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK095Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame095_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK095Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame095_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK095Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame095_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK095Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame095_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK096Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame096_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK096Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame096_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK096Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame096_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK096Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame096_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK097Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame097_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK097Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame097_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK097Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame097_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK097Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame097_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK098Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame098_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK098Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame098_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK098Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame098_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK098Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame098_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK099Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame099_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK099Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame099_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK099Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame099_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK099Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame099_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK100Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame100_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK100Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame100_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK100Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame100_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK100Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame100_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK101Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame101_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK101Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame101_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK101Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame101_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK101Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame101_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK102Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame102_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK102Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame102_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK102Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame102_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK102Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame102_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK103Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame103_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK103Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame103_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK103Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame103_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK103Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame103_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK104Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame104_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK104Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame104_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK104Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame104_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK104Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame104_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK105Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame105_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK105Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame105_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK105Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame105_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK105Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame105_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK106Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame106_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK106Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame106_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK106Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame106_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK106Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame106_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK107Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame107_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK107Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame107_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK107Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame107_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK107Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame107_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK108Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame108_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK108Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame108_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK108Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame108_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK108Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame108_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK109Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame109_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK109Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame109_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK109Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame109_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK109Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame109_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK110Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame110_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK110Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame110_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK110Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame110_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK110Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame110_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK111Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame111_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK111Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame111_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK111Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame111_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK111Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame111_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK112Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame112_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK112Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame112_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK112Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame112_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK112Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame112_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK113Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame113_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK113Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame113_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK113Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame113_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK113Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame113_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK114Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame114_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK114Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame114_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK114Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame114_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK114Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame114_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK115Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame115_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK115Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame115_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK115Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame115_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK115Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame115_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK116Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame116_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK116Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame116_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK116Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame116_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK116Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame116_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK117Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame117_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK117Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame117_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK117Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame117_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK117Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame117_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK118Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame118_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK118Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame118_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK118Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame118_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK118Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame118_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK119Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame119_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK119Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame119_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK119Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame119_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK119Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame119_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK120Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame120_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK120Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame120_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK120Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame120_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK120Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame120_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK121Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame121_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK121Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame121_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK121Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame121_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK121Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame121_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK122Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame122_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK122Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame122_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK122Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame122_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK122Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame122_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK123Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame123_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK123Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame123_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK123Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame123_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK123Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame123_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK124Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame124_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK124Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame124_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK124Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame124_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK124Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame124_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK125Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame125_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK125Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame125_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK125Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame125_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK125Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame125_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK126Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame126_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK126Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame126_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK126Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame126_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK126Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame126_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK127Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame127_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK127Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame127_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK127Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame127_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK127Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame127_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK128Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame128_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK128Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame128_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK128Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame128_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK128Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame128_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK129Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame129_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK129Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame129_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK129Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame129_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK129Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame129_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK130Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame130_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK130Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame130_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK130Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame130_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK130Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame130_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK131Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame131_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK131Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame131_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK131Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame131_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK131Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame131_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK132Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame132_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK132Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame132_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK132Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame132_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK132Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame132_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK133Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame133_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK133Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame133_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK133Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame133_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK133Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame133_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK134Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame134_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK134Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame134_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK134Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame134_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK134Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame134_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK135Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame135_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK135Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame135_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK135Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame135_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK135Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame135_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK136Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame136_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK136Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame136_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK136Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame136_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK136Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame136_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK137Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame137_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK137Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame137_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK137Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame137_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK137Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame137_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK138Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame138_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK138Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame138_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK138Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame138_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK138Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame138_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK139Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame139_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK139Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame139_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK139Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame139_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK139Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame139_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK140Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame140_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK140Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame140_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK140Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame140_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK140Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame140_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK141Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame141_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK141Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame141_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK141Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame141_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK141Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame141_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK142Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame142_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK142Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame142_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK142Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame142_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK142Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame142_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK143Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame143_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK143Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame143_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK143Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame143_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK143Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame143_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK144Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame144_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK144Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame144_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK144Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame144_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK144Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame144_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK145Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame145_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK145Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame145_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK145Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame145_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK145Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame145_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK146Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame146_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK146Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame146_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK146Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame146_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK146Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame146_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK147Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame147_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK147Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame147_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK147Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame147_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK147Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame147_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK148Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame148_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK148Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame148_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK148Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame148_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK148Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame148_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK149Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame149_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK149Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame149_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK149Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame149_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK149Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame149_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK150Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame150_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK150Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame150_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK150Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame150_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK150Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame150_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK151Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame151_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK151Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame151_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK151Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame151_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK151Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame151_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK152Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame152_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK152Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame152_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK152Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame152_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK152Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame152_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK153Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame153_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK153Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame153_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK153Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame153_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK153Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame153_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK154Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame154_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK154Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame154_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK154Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame154_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK154Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame154_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK155Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame155_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK155Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame155_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK155Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame155_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK155Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame155_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK156Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame156_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK156Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame156_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK156Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame156_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK156Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame156_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK157Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame157_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK157Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame157_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK157Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame157_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK157Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame157_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK158Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame158_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK158Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame158_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK158Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame158_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK158Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame158_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK159Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame159_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK159Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame159_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK159Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame159_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK159Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame159_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK160Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame160_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK160Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame160_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK160Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame160_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK160Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame160_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK161Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame161_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK161Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame161_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK161Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame161_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK161Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame161_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK162Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame162_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK162Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame162_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK162Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame162_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK162Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame162_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK163Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame163_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK163Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame163_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK163Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame163_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK163Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame163_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK164Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame164_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK164Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame164_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK164Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame164_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK164Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame164_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK165Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame165_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK165Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame165_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK165Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame165_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK165Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame165_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK166Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame166_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK166Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame166_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK166Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame166_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK166Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame166_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK167Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame167_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK167Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame167_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK167Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame167_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK167Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame167_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK168Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame168_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK168Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame168_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK168Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame168_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK168Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame168_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK169Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame169_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK169Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame169_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK169Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame169_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK169Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame169_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK170Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame170_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK170Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame170_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK170Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame170_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK170Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame170_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK171Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame171_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK171Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame171_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK171Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame171_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK171Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame171_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK172Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame172_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK172Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame172_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK172Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame172_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK172Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame172_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK173Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame173_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK173Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame173_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK173Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame173_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK173Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame173_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK174Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame174_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK174Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame174_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK174Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame174_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK174Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame174_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK175Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame175_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK175Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame175_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK175Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame175_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK175Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame175_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK176Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame176_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK176Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame176_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK176Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame176_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK176Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame176_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK177Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame177_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK177Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame177_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK177Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame177_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK177Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame177_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK178Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame178_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK178Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame178_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK178Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame178_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK178Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame178_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK179Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame179_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK179Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame179_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK179Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame179_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK179Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame179_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK180Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame180_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK180Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame180_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK180Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame180_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK180Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame180_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK181Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame181_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK181Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame181_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK181Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame181_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK181Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame181_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK182Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame182_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK182Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame182_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK182Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame182_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK182Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame182_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK183Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame183_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK183Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame183_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK183Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame183_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK183Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame183_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK184Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame184_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK184Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame184_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK184Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame184_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK184Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame184_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK185Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame185_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK185Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame185_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK185Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame185_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK185Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame185_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK186Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame186_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK186Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame186_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK186Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame186_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK186Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame186_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK187Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame187_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK187Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame187_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK187Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame187_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK187Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame187_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK188Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame188_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK188Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame188_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK188Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame188_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK188Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame188_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK189Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame189_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK189Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame189_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK189Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame189_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK189Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame189_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK190Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame190_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK190Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame190_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK190Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame190_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK190Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame190_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK191Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame191_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK191Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame191_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK191Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame191_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK191Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame191_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK192Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame192_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK192Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame192_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK192Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame192_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK192Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame192_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK193Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame193_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK193Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame193_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK193Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame193_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK193Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame193_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK194Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame194_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK194Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame194_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK194Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame194_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK194Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame194_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK195Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame195_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK195Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame195_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK195Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame195_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK195Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame195_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK196Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame196_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK196Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame196_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK196Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame196_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK196Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame196_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK197Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame197_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK197Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame197_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK197Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame197_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK197Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame197_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK198Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame198_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK198Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame198_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK198Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame198_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK198Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame198_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK199Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame199_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK199Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame199_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK199Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame199_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK199Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame199_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK200Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame200_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK200Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame200_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK200Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame200_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK200Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame200_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK201Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame201_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK201Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame201_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK201Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame201_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK201Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame201_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK202Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame202_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK202Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame202_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK202Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame202_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK202Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame202_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK203Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame203_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK203Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame203_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK203Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame203_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK203Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame203_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK204Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame204_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK204Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame204_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK204Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame204_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK204Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame204_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK205Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame205_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK205Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame205_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK205Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame205_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK205Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame205_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK206Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame206_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK206Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame206_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK206Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame206_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK206Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame206_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK207Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame207_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK207Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame207_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK207Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame207_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK207Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame207_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK208Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame208_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK208Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame208_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK208Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame208_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK208Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame208_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK209Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame209_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK209Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame209_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK209Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame209_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK209Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame209_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK210Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame210_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK210Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame210_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK210Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame210_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK210Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame210_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK211Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame211_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK211Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame211_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK211Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame211_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK211Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame211_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK212Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame212_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK212Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame212_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK212Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame212_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK212Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame212_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK213Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame213_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK213Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame213_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK213Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame213_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK213Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame213_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK214Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame214_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK214Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame214_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK214Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame214_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK214Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame214_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK215Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame215_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK215Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame215_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK215Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame215_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK215Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame215_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK216Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame216_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK216Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame216_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK216Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame216_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK216Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame216_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK217Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame217_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK217Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame217_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK217Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame217_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK217Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame217_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK218Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame218_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK218Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame218_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK218Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame218_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK218Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame218_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK219Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame219_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK219Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame219_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK219Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame219_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK219Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame219_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK220Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame220_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK220Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame220_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK220Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame220_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK220Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame220_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK221Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame221_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK221Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame221_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK221Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame221_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK221Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame221_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK222Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame222_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK222Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame222_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK222Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame222_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK222Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame222_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK223Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame223_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK223Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame223_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK223Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame223_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK223Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame223_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK224Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame224_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK224Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame224_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK224Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame224_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK224Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame224_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK225Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame225_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK225Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame225_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK225Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame225_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK225Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame225_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK226Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame226_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK226Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame226_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK226Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame226_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK226Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame226_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK227Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame227_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK227Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame227_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK227Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame227_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK227Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame227_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK228Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame228_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK228Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame228_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK228Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame228_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK228Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame228_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK229Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame229_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK229Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame229_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK229Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame229_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK229Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame229_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK230Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame230_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK230Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame230_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK230Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame230_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK230Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame230_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK231Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame231_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK231Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame231_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK231Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame231_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK231Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame231_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK232Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame232_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK232Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame232_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK232Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame232_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK232Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame232_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK233Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame233_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK233Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame233_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK233Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame233_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK233Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame233_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK234Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame234_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK234Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame234_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK234Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame234_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK234Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame234_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK235Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame235_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK235Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame235_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK235Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame235_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK235Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame235_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK236Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame236_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK236Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame236_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK236Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame236_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK236Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame236_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK237Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame237_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK237Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame237_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK237Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame237_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK237Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame237_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK238Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame238_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK238Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame238_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK238Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame238_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK238Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame238_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK239Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame239_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK239Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame239_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK239Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame239_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK239Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame239_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK240Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame240_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK240Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame240_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK240Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame240_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK240Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame240_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK241Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame241_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK241Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame241_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK241Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame241_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK241Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame241_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK242Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame242_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK242Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame242_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK242Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame242_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK242Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame242_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK243Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame243_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK243Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame243_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK243Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame243_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK243Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame243_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK244Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame244_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK244Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame244_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK244Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame244_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK244Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame244_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK245Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame245_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK245Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame245_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK245Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame245_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK245Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame245_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK246Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame246_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK246Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame246_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK246Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame246_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK246Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame246_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK247Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame247_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK247Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame247_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK247Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame247_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK247Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame247_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK248Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame248_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK248Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame248_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK248Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame248_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK248Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame248_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK249Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame249_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK249Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame249_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK249Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame249_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK249Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame249_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK250Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame250_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK250Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame250_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK250Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame250_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK250Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame250_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK251Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame251_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK251Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame251_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK251Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame251_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK251Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame251_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK252Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame252_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK252Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame252_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK252Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame252_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK252Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame252_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK253Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame253_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK253Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame253_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK253Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame253_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK253Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame253_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK254Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame254_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK254Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame254_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK254Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame254_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK254Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame254_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK255Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame255_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK255Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame255_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK255Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame255_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK255Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame255_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK256Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame256_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK256Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame256_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK256Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame256_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK256Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame256_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK257Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame257_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK257Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame257_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK257Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame257_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK257Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame257_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK258Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame258_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK258Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame258_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK258Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame258_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK258Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame258_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK259Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame259_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK259Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame259_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK259Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame259_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK259Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame259_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK260Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame260_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK260Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame260_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK260Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame260_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK260Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame260_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK261Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame261_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK261Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame261_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK261Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame261_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK261Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame261_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK262Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame262_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK262Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame262_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK262Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame262_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK262Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame262_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK263Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame263_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK263Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame263_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK263Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame263_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK263Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame263_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK264Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame264_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK264Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame264_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK264Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame264_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK264Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame264_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK265Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame265_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK265Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame265_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK265Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame265_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK265Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame265_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK266Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame266_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK266Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame266_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK266Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame266_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK266Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame266_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK267Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame267_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK267Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame267_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK267Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame267_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK267Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame267_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK268Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame268_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK268Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame268_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK268Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame268_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK268Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame268_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK269Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame269_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK269Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame269_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK269Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame269_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK269Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame269_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK270Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame270_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK270Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame270_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK270Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame270_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK270Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame270_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK271Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame271_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK271Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame271_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK271Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame271_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK271Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame271_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK272Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame272_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK272Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame272_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK272Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame272_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK272Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame272_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK273Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame273_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK273Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame273_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK273Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame273_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK273Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame273_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK274Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame274_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK274Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame274_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK274Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame274_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK274Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame274_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK275Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame275_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK275Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame275_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK275Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame275_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK275Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame275_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK276Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame276_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK276Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame276_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK276Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame276_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK276Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame276_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK277Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame277_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK277Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame277_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK277Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame277_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK277Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame277_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK278Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame278_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK278Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame278_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK278Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame278_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK278Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame278_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK279Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame279_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK279Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame279_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK279Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame279_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK279Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame279_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK280Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame280_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK280Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame280_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK280Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame280_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK280Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame280_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK281Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame281_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK281Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame281_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK281Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame281_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK281Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame281_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK282Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame282_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK282Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame282_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK282Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame282_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK282Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame282_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK283Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame283_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK283Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame283_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK283Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame283_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK283Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame283_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK284Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame284_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK284Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame284_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK284Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame284_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK284Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame284_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK285Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame285_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK285Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame285_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK285Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame285_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK285Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame285_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK286Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame286_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK286Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame286_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK286Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame286_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK286Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame286_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK287Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame287_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK287Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame287_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK287Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame287_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK287Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame287_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK288Wheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame288_wheel3"; + +static const ALIGN_ASSET(2) char gKartDK288Wheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame288_wheel1"; + +static const ALIGN_ASSET(2) char gKartDK288Wheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame288_wheel0"; + +static const ALIGN_ASSET(2) char gKartDK288Wheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame288_wheel2"; + +static const ALIGN_ASSET(2) char gKartDK289[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame289"; + +static const ALIGN_ASSET(2) char gKartDK290[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame290"; + +static const ALIGN_ASSET(2) char gKartDK291[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame291"; + +static const ALIGN_ASSET(2) char gKartDK292[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame292"; + +static const ALIGN_ASSET(2) char gKartDK293[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame293"; + +static const ALIGN_ASSET(2) char gKartDK294[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame294"; + +static const ALIGN_ASSET(2) char gKartDK295[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame295"; + +static const ALIGN_ASSET(2) char gKartDK296[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame296"; + +static const ALIGN_ASSET(2) char gKartDK297[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame297"; + +static const ALIGN_ASSET(2) char gKartDK298[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame298"; + +static const ALIGN_ASSET(2) char gKartDK299[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame299"; + +static const ALIGN_ASSET(2) char gKartDK300[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame300"; + +static const ALIGN_ASSET(2) char gKartDK301[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame301"; + +static const ALIGN_ASSET(2) char gKartDK302[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame302"; + +static const ALIGN_ASSET(2) char gKartDK303[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame303"; + +static const ALIGN_ASSET(2) char gKartDK304[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame304"; + +static const ALIGN_ASSET(2) char gKartDK305[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame305"; + +static const ALIGN_ASSET(2) char gKartDK306[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame306"; + +static const ALIGN_ASSET(2) char gKartDK307[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame307"; + +static const ALIGN_ASSET(2) char gKartDK308[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame308"; + +static const ALIGN_ASSET(2) char gKartDK309[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame309"; + +static const ALIGN_ASSET(2) char gKartDK310[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame310"; + +static const ALIGN_ASSET(2) char gKartDK311[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame311"; + +static const ALIGN_ASSET(2) char gKartDK312[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame312"; + +static const ALIGN_ASSET(2) char gKartDK313[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame313"; + +static const ALIGN_ASSET(2) char gKartDK314[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame314"; + +static const ALIGN_ASSET(2) char gKartDK315[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame315"; + +static const ALIGN_ASSET(2) char gKartDK316[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame316"; + +static const ALIGN_ASSET(2) char gKartDK317[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame317"; + +static const ALIGN_ASSET(2) char gKartDK318[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame318"; + +static const ALIGN_ASSET(2) char gKartDK319[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame319"; + +static const ALIGN_ASSET(2) char gKartDK320[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_frame320"; + +static const ALIGN_ASSET(2) char gKartDK000TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_000_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK000TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_000_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK000TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_000_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK000TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_000_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK001TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_001_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK001TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_001_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK001TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_001_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK001TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_001_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK002TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_002_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK002TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_002_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK002TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_002_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK002TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_002_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK003TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_003_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK003TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_003_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK003TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_003_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK003TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_003_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK004TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_004_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK004TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_004_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK004TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_004_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK004TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_004_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK005TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_005_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK005TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_005_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK005TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_005_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK005TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_005_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK006TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_006_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK006TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_006_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK006TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_006_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK006TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_006_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK007TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_007_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK007TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_007_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK007TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_007_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK007TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_007_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK008TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_008_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK008TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_008_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK008TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_008_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK008TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_008_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK009TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_009_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK009TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_009_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK009TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_009_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK009TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_009_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK010TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_010_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK010TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_010_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK010TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_010_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK010TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_010_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK011TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_011_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK011TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_011_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK011TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_011_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK011TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_011_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK012TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_012_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK012TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_012_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK012TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_012_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK012TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_012_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK013TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_013_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK013TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_013_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK013TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_013_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK013TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_013_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK014TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_014_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK014TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_014_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK014TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_014_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK014TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_014_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK015TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_015_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK015TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_015_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK015TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_015_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK015TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_015_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK016TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_016_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK016TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_016_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK016TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_016_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK016TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_016_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK017TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_017_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK017TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_017_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK017TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_017_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK017TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_017_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK018TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_018_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK018TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_018_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK018TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_018_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK018TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_018_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK019TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_019_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK019TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_019_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK019TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_019_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK019TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_019_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK020TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_020_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK020TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_020_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK020TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_020_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK020TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_020_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK021TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_021_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK021TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_021_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK021TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_021_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK021TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_021_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK022TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_022_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK022TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_022_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK022TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_022_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK022TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_022_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK023TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_023_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK023TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_023_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK023TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_023_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK023TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_023_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK024TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_024_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK024TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_024_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK024TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_024_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK024TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_024_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK025TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_025_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK025TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_025_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK025TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_025_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK025TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_025_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK026TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_026_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK026TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_026_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK026TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_026_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK026TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_026_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK027TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_027_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK027TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_027_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK027TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_027_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK027TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_027_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK028TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_028_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK028TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_028_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK028TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_028_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK028TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_028_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK029TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_029_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK029TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_029_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK029TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_029_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK029TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_029_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK030TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_030_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK030TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_030_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK030TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_030_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK030TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_030_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK031TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_031_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK031TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_031_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK031TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_031_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK031TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_031_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK032TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_032_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK032TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_032_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK032TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_032_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK032TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_032_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK033TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_033_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK033TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_033_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK033TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_033_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK033TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_033_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK034TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_034_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK034TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_034_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK034TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_034_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK034TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_034_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK035TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_035_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK035TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_035_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK035TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_035_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK035TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_035_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK036TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_036_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK036TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_036_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK036TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_036_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK036TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_036_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK037TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_037_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK037TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_037_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK037TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_037_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK037TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_037_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK038TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_038_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK038TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_038_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK038TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_038_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK038TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_038_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK039TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_039_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK039TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_039_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK039TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_039_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK039TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_039_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK040TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_040_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK040TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_040_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK040TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_040_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK040TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_040_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK041TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_041_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK041TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_041_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK041TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_041_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK041TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_041_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK042TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_042_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK042TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_042_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK042TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_042_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK042TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_042_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK043TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_043_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK043TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_043_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK043TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_043_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK043TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_043_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK044TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_044_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK044TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_044_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK044TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_044_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK044TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_044_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK045TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_045_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK045TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_045_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK045TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_045_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK045TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_045_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK046TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_046_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK046TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_046_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK046TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_046_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK046TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_046_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK047TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_047_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK047TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_047_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK047TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_047_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK047TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_047_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK048TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_048_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK048TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_048_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK048TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_048_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK048TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_048_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK049TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_049_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK049TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_049_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK049TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_049_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK049TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_049_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK050TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_050_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK050TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_050_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK050TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_050_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK050TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_050_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK051TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_051_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK051TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_051_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK051TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_051_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK051TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_051_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK052TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_052_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK052TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_052_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK052TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_052_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK052TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_052_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK053TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_053_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK053TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_053_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK053TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_053_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK053TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_053_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK054TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_054_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK054TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_054_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK054TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_054_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK054TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_054_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK055TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_055_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK055TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_055_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK055TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_055_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK055TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_055_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK056TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_056_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK056TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_056_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK056TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_056_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK056TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_056_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK057TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_057_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK057TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_057_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK057TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_057_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK057TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_057_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK058TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_058_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK058TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_058_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK058TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_058_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK058TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_058_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK059TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_059_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK059TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_059_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK059TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_059_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK059TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_059_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK060TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_060_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK060TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_060_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK060TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_060_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK060TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_060_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK061TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_061_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK061TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_061_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK061TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_061_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK061TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_061_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK062TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_062_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK062TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_062_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK062TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_062_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK062TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_062_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK063TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_063_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK063TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_063_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK063TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_063_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK063TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_063_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK064TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_064_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK064TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_064_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK064TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_064_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK064TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_064_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK065TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_065_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK065TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_065_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK065TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_065_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK065TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_065_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK066TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_066_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK066TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_066_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK066TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_066_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK066TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_066_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK067TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_067_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK067TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_067_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK067TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_067_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK067TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_067_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK068TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_068_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK068TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_068_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK068TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_068_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK068TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_068_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK069TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_069_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK069TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_069_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK069TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_069_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK069TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_069_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK070TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_070_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK070TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_070_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK070TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_070_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK070TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_070_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK071TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_071_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK071TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_071_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK071TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_071_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK071TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_071_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK072TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_072_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK072TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_072_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK072TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_072_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK072TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_072_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK073TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_073_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK073TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_073_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK073TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_073_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK073TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_073_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK074TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_074_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK074TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_074_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK074TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_074_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK074TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_074_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK075TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_075_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK075TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_075_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK075TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_075_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK075TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_075_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK076TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_076_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK076TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_076_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK076TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_076_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK076TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_076_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK077TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_077_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK077TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_077_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK077TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_077_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK077TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_077_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK078TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_078_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK078TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_078_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK078TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_078_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK078TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_078_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK079TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_079_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK079TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_079_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK079TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_079_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK079TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_079_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK080TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_080_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK080TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_080_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK080TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_080_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK080TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_080_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK081TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_081_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK081TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_081_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK081TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_081_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK081TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_081_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK082TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_082_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK082TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_082_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK082TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_082_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK082TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_082_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK083TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_083_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK083TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_083_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK083TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_083_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK083TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_083_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK084TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_084_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK084TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_084_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK084TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_084_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK084TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_084_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK085TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_085_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK085TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_085_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK085TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_085_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK085TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_085_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK086TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_086_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK086TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_086_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK086TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_086_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK086TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_086_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK087TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_087_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK087TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_087_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK087TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_087_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK087TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_087_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK088TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_088_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK088TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_088_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK088TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_088_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK088TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_088_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK089TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_089_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK089TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_089_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK089TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_089_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK089TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_089_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK090TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_090_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK090TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_090_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK090TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_090_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK090TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_090_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK091TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_091_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK091TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_091_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK091TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_091_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK091TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_091_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK092TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_092_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK092TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_092_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK092TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_092_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK092TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_092_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK093TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_093_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK093TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_093_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK093TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_093_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK093TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_093_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK094TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_094_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK094TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_094_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK094TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_094_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK094TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_094_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK095TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_095_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK095TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_095_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK095TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_095_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK095TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_095_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK096TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_096_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK096TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_096_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK096TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_096_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK096TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_096_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK097TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_097_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK097TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_097_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK097TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_097_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK097TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_097_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK098TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_098_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK098TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_098_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK098TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_098_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK098TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_098_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK099TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_099_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK099TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_099_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK099TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_099_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK099TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_099_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK100TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_100_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK100TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_100_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK100TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_100_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK100TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_100_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK101TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_101_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK101TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_101_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK101TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_101_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK101TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_101_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK102TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_102_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK102TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_102_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK102TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_102_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK102TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_102_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK103TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_103_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK103TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_103_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK103TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_103_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK103TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_103_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK104TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_104_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK104TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_104_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK104TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_104_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK104TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_104_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK105TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_105_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK105TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_105_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK105TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_105_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK105TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_105_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK106TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_106_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK106TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_106_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK106TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_106_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK106TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_106_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK107TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_107_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK107TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_107_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK107TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_107_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK107TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_107_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK108TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_108_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK108TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_108_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK108TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_108_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK108TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_108_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK109TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_109_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK109TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_109_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK109TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_109_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK109TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_109_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK110TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_110_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK110TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_110_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK110TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_110_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK110TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_110_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK111TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_111_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK111TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_111_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK111TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_111_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK111TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_111_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK112TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_112_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK112TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_112_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK112TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_112_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK112TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_112_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK113TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_113_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK113TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_113_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK113TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_113_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK113TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_113_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK114TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_114_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK114TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_114_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK114TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_114_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK114TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_114_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK115TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_115_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK115TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_115_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK115TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_115_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK115TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_115_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK116TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_116_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK116TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_116_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK116TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_116_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK116TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_116_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK117TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_117_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK117TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_117_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK117TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_117_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK117TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_117_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK118TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_118_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK118TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_118_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK118TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_118_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK118TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_118_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK119TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_119_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK119TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_119_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK119TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_119_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK119TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_119_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK120TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_120_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK120TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_120_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK120TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_120_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK120TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_120_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK121TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_121_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK121TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_121_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK121TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_121_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK121TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_121_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK122TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_122_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK122TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_122_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK122TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_122_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK122TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_122_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK123TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_123_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK123TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_123_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK123TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_123_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK123TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_123_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK124TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_124_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK124TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_124_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK124TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_124_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK124TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_124_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK125TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_125_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK125TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_125_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK125TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_125_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK125TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_125_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK126TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_126_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK126TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_126_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK126TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_126_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK126TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_126_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK127TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_127_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK127TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_127_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK127TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_127_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK127TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_127_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK128TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_128_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK128TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_128_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK128TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_128_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK128TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_128_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK129TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_129_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK129TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_129_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK129TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_129_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK129TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_129_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK130TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_130_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK130TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_130_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK130TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_130_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK130TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_130_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK131TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_131_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK131TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_131_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK131TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_131_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK131TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_131_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK132TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_132_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK132TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_132_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK132TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_132_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK132TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_132_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK133TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_133_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK133TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_133_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK133TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_133_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK133TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_133_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK134TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_134_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK134TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_134_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK134TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_134_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK134TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_134_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK135TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_135_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK135TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_135_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK135TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_135_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK135TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_135_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK136TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_136_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK136TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_136_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK136TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_136_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK136TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_136_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK137TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_137_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK137TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_137_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK137TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_137_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK137TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_137_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK138TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_138_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK138TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_138_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK138TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_138_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK138TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_138_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK139TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_139_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK139TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_139_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK139TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_139_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK139TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_139_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK140TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_140_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK140TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_140_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK140TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_140_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK140TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_140_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK141TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_141_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK141TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_141_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK141TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_141_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK141TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_141_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK142TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_142_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK142TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_142_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK142TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_142_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK142TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_142_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK143TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_143_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK143TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_143_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK143TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_143_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK143TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_143_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK144TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_144_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK144TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_144_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK144TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_144_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK144TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_144_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK145TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_145_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK145TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_145_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK145TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_145_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK145TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_145_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK146TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_146_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK146TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_146_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK146TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_146_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK146TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_146_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK147TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_147_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK147TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_147_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK147TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_147_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK147TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_147_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK148TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_148_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK148TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_148_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK148TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_148_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK148TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_148_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK149TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_149_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK149TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_149_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK149TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_149_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK149TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_149_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK150TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_150_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK150TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_150_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK150TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_150_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK150TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_150_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK151TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_151_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK151TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_151_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK151TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_151_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK151TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_151_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK152TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_152_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK152TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_152_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK152TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_152_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK152TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_152_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK153TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_153_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK153TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_153_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK153TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_153_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK153TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_153_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK154TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_154_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK154TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_154_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK154TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_154_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK154TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_154_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK155TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_155_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK155TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_155_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK155TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_155_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK155TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_155_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK156TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_156_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK156TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_156_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK156TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_156_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK156TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_156_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK157TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_157_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK157TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_157_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK157TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_157_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK157TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_157_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK158TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_158_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK158TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_158_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK158TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_158_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK158TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_158_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK159TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_159_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK159TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_159_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK159TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_159_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK159TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_159_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK160TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_160_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK160TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_160_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK160TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_160_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK160TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_160_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK161TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_161_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK161TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_161_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK161TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_161_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK161TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_161_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK162TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_162_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK162TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_162_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK162TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_162_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK162TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_162_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK163TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_163_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK163TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_163_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK163TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_163_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK163TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_163_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK164TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_164_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK164TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_164_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK164TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_164_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK164TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_164_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK165TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_165_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK165TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_165_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK165TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_165_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK165TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_165_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK166TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_166_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK166TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_166_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK166TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_166_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK166TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_166_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK167TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_167_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK167TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_167_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK167TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_167_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK167TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_167_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK168TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_168_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK168TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_168_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK168TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_168_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK168TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_168_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK169TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_169_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK169TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_169_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK169TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_169_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK169TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_169_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK170TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_170_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK170TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_170_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK170TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_170_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK170TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_170_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK171TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_171_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK171TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_171_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK171TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_171_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK171TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_171_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK172TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_172_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK172TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_172_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK172TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_172_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK172TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_172_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK173TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_173_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK173TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_173_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK173TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_173_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK173TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_173_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK174TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_174_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK174TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_174_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK174TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_174_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK174TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_174_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK175TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_175_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK175TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_175_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK175TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_175_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK175TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_175_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK176TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_176_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK176TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_176_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK176TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_176_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK176TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_176_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK177TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_177_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK177TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_177_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK177TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_177_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK177TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_177_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK178TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_178_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK178TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_178_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK178TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_178_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK178TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_178_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK179TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_179_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK179TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_179_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK179TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_179_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK179TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_179_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK180TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_180_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK180TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_180_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK180TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_180_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK180TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_180_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK181TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_181_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK181TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_181_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK181TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_181_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK181TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_181_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK182TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_182_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK182TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_182_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK182TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_182_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK182TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_182_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK183TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_183_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK183TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_183_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK183TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_183_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK183TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_183_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK184TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_184_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK184TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_184_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK184TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_184_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK184TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_184_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK185TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_185_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK185TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_185_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK185TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_185_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK185TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_185_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK186TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_186_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK186TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_186_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK186TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_186_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK186TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_186_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK187TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_187_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK187TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_187_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK187TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_187_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK187TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_187_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK188TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_188_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK188TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_188_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK188TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_188_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK188TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_188_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK189TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_189_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK189TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_189_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK189TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_189_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK189TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_189_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK190TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_190_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK190TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_190_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK190TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_190_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK190TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_190_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK191TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_191_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK191TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_191_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK191TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_191_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK191TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_191_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK192TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_192_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK192TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_192_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK192TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_192_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK192TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_192_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK193TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_193_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK193TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_193_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK193TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_193_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK193TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_193_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK194TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_194_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK194TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_194_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK194TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_194_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK194TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_194_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK195TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_195_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK195TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_195_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK195TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_195_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK195TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_195_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK196TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_196_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK196TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_196_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK196TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_196_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK196TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_196_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK197TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_197_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK197TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_197_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK197TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_197_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK197TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_197_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK198TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_198_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK198TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_198_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK198TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_198_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK198TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_198_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK199TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_199_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK199TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_199_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK199TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_199_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK199TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_199_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK200TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_200_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK200TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_200_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK200TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_200_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK200TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_200_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK201TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_201_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK201TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_201_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK201TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_201_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK201TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_201_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK202TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_202_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK202TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_202_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK202TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_202_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK202TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_202_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK203TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_203_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK203TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_203_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK203TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_203_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK203TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_203_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK204TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_204_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK204TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_204_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK204TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_204_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK204TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_204_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK205TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_205_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK205TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_205_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK205TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_205_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK205TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_205_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK206TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_206_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK206TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_206_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK206TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_206_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK206TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_206_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK207TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_207_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK207TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_207_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK207TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_207_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK207TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_207_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK208TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_208_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK208TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_208_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK208TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_208_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK208TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_208_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK209TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_209_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK209TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_209_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK209TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_209_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK209TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_209_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK210TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_210_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK210TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_210_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK210TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_210_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK210TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_210_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK211TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_211_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK211TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_211_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK211TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_211_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK211TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_211_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK212TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_212_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK212TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_212_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK212TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_212_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK212TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_212_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK213TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_213_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK213TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_213_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK213TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_213_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK213TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_213_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK214TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_214_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK214TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_214_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK214TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_214_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK214TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_214_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK215TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_215_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK215TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_215_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK215TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_215_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK215TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_215_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK216TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_216_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK216TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_216_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK216TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_216_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK216TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_216_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK217TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_217_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK217TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_217_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK217TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_217_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK217TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_217_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK218TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_218_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK218TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_218_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK218TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_218_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK218TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_218_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK219TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_219_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK219TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_219_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK219TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_219_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK219TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_219_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK220TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_220_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK220TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_220_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK220TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_220_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK220TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_220_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK221TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_221_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK221TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_221_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK221TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_221_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK221TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_221_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK222TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_222_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK222TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_222_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK222TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_222_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK222TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_222_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK223TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_223_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK223TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_223_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK223TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_223_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK223TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_223_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK224TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_224_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK224TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_224_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK224TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_224_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK224TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_224_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK225TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_225_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK225TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_225_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK225TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_225_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK225TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_225_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK226TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_226_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK226TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_226_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK226TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_226_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK226TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_226_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK227TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_227_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK227TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_227_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK227TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_227_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK227TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_227_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK228TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_228_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK228TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_228_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK228TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_228_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK228TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_228_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK229TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_229_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK229TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_229_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK229TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_229_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK229TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_229_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK230TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_230_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK230TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_230_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK230TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_230_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK230TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_230_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK231TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_231_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK231TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_231_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK231TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_231_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK231TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_231_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK232TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_232_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK232TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_232_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK232TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_232_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK232TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_232_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK233TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_233_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK233TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_233_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK233TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_233_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK233TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_233_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK234TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_234_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK234TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_234_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK234TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_234_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK234TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_234_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK235TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_235_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK235TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_235_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK235TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_235_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK235TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_235_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK236TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_236_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK236TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_236_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK236TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_236_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK236TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_236_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK237TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_237_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK237TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_237_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK237TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_237_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK237TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_237_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK238TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_238_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK238TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_238_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK238TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_238_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK238TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_238_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK239TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_239_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK239TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_239_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK239TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_239_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK239TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_239_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK240TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_240_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK240TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_240_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK240TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_240_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK240TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_240_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK241TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_241_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK241TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_241_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK241TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_241_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK241TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_241_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK242TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_242_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK242TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_242_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK242TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_242_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK242TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_242_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK243TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_243_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK243TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_243_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK243TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_243_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK243TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_243_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK244TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_244_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK244TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_244_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK244TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_244_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK244TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_244_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK245TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_245_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK245TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_245_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK245TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_245_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK245TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_245_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK246TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_246_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK246TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_246_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK246TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_246_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK246TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_246_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK247TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_247_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK247TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_247_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK247TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_247_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK247TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_247_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK248TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_248_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK248TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_248_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK248TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_248_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK248TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_248_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK249TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_249_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK249TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_249_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK249TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_249_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK249TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_249_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK250TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_250_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK250TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_250_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK250TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_250_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK250TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_250_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK251TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_251_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK251TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_251_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK251TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_251_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK251TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_251_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK252TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_252_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK252TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_252_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK252TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_252_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK252TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_252_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK253TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_253_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK253TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_253_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK253TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_253_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK253TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_253_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK254TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_254_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK254TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_254_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK254TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_254_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK254TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_254_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK255TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_255_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK255TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_255_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK255TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_255_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK255TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_255_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK256TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_256_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK256TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_256_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK256TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_256_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK256TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_256_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK257TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_257_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK257TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_257_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK257TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_257_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK257TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_257_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK258TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_258_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK258TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_258_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK258TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_258_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK258TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_258_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK259TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_259_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK259TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_259_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK259TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_259_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK259TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_259_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK260TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_260_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK260TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_260_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK260TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_260_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK260TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_260_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK261TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_261_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK261TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_261_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK261TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_261_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK261TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_261_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK262TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_262_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK262TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_262_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK262TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_262_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK262TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_262_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK263TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_263_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK263TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_263_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK263TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_263_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK263TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_263_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK264TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_264_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK264TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_264_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK264TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_264_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK264TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_264_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK265TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_265_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK265TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_265_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK265TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_265_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK265TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_265_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK266TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_266_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK266TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_266_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK266TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_266_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK266TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_266_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK267TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_267_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK267TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_267_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK267TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_267_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK267TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_267_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK268TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_268_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK268TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_268_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK268TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_268_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK268TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_268_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK269TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_269_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK269TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_269_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK269TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_269_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK269TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_269_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK270TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_270_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK270TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_270_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK270TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_270_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK270TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_270_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK271TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_271_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK271TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_271_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK271TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_271_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK271TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_271_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK272TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_272_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK272TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_272_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK272TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_272_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK272TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_272_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK273TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_273_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK273TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_273_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK273TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_273_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK273TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_273_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK274TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_274_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK274TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_274_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK274TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_274_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK274TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_274_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK275TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_275_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK275TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_275_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK275TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_275_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK275TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_275_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK276TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_276_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK276TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_276_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK276TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_276_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK276TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_276_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK277TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_277_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK277TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_277_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK277TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_277_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK277TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_277_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK278TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_278_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK278TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_278_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK278TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_278_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK278TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_278_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK279TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_279_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK279TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_279_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK279TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_279_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK279TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_279_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK280TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_280_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK280TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_280_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK280TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_280_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK280TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_280_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK281TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_281_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK281TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_281_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK281TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_281_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK281TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_281_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK282TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_282_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK282TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_282_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK282TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_282_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK282TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_282_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK283TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_283_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK283TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_283_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK283TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_283_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK283TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_283_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK284TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_284_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK284TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_284_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK284TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_284_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK284TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_284_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK285TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_285_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK285TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_285_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK285TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_285_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK285TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_285_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK286TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_286_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK286TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_286_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK286TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_286_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK286TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_286_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK287TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_287_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK287TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_287_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK287TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_287_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK287TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_287_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartDK288TlutWheel0[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_288_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartDK288TlutWheel1[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_288_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartDK288TlutWheel2[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_288_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartDK288TlutWheel3[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_288_tlut_wheel_3"; + +static const char* donkeykong_kart_wheels[] = { + gKartDK000TlutWheel0, + gKartDK000TlutWheel1, + gKartDK000TlutWheel2, + gKartDK000TlutWheel3, + gKartDK001TlutWheel0, + gKartDK001TlutWheel1, + gKartDK001TlutWheel2, + gKartDK001TlutWheel3, + gKartDK002TlutWheel0, + gKartDK002TlutWheel1, + gKartDK002TlutWheel2, + gKartDK002TlutWheel3, + gKartDK003TlutWheel0, + gKartDK003TlutWheel1, + gKartDK003TlutWheel2, + gKartDK003TlutWheel3, + gKartDK004TlutWheel0, + gKartDK004TlutWheel1, + gKartDK004TlutWheel2, + gKartDK004TlutWheel3, + gKartDK005TlutWheel0, + gKartDK005TlutWheel1, + gKartDK005TlutWheel2, + gKartDK005TlutWheel3, + gKartDK006TlutWheel0, + gKartDK006TlutWheel1, + gKartDK006TlutWheel2, + gKartDK006TlutWheel3, + gKartDK007TlutWheel0, + gKartDK007TlutWheel1, + gKartDK007TlutWheel2, + gKartDK007TlutWheel3, + gKartDK008TlutWheel0, + gKartDK008TlutWheel1, + gKartDK008TlutWheel2, + gKartDK008TlutWheel3, + gKartDK009TlutWheel0, + gKartDK009TlutWheel1, + gKartDK009TlutWheel2, + gKartDK009TlutWheel3, + gKartDK010TlutWheel0, + gKartDK010TlutWheel1, + gKartDK010TlutWheel2, + gKartDK010TlutWheel3, + gKartDK011TlutWheel0, + gKartDK011TlutWheel1, + gKartDK011TlutWheel2, + gKartDK011TlutWheel3, + gKartDK012TlutWheel0, + gKartDK012TlutWheel1, + gKartDK012TlutWheel2, + gKartDK012TlutWheel3, + gKartDK013TlutWheel0, + gKartDK013TlutWheel1, + gKartDK013TlutWheel2, + gKartDK013TlutWheel3, + gKartDK014TlutWheel0, + gKartDK014TlutWheel1, + gKartDK014TlutWheel2, + gKartDK014TlutWheel3, + gKartDK015TlutWheel0, + gKartDK015TlutWheel1, + gKartDK015TlutWheel2, + gKartDK015TlutWheel3, + gKartDK016TlutWheel0, + gKartDK016TlutWheel1, + gKartDK016TlutWheel2, + gKartDK016TlutWheel3, + gKartDK017TlutWheel0, + gKartDK017TlutWheel1, + gKartDK017TlutWheel2, + gKartDK017TlutWheel3, + gKartDK018TlutWheel0, + gKartDK018TlutWheel1, + gKartDK018TlutWheel2, + gKartDK018TlutWheel3, + gKartDK019TlutWheel0, + gKartDK019TlutWheel1, + gKartDK019TlutWheel2, + gKartDK019TlutWheel3, + gKartDK020TlutWheel0, + gKartDK020TlutWheel1, + gKartDK020TlutWheel2, + gKartDK020TlutWheel3, + gKartDK021TlutWheel0, + gKartDK021TlutWheel1, + gKartDK021TlutWheel2, + gKartDK021TlutWheel3, + gKartDK022TlutWheel0, + gKartDK022TlutWheel1, + gKartDK022TlutWheel2, + gKartDK022TlutWheel3, + gKartDK023TlutWheel0, + gKartDK023TlutWheel1, + gKartDK023TlutWheel2, + gKartDK023TlutWheel3, + gKartDK024TlutWheel0, + gKartDK024TlutWheel1, + gKartDK024TlutWheel2, + gKartDK024TlutWheel3, + gKartDK025TlutWheel0, + gKartDK025TlutWheel1, + gKartDK025TlutWheel2, + gKartDK025TlutWheel3, + gKartDK026TlutWheel0, + gKartDK026TlutWheel1, + gKartDK026TlutWheel2, + gKartDK026TlutWheel3, + gKartDK027TlutWheel0, + gKartDK027TlutWheel1, + gKartDK027TlutWheel2, + gKartDK027TlutWheel3, + gKartDK028TlutWheel0, + gKartDK028TlutWheel1, + gKartDK028TlutWheel2, + gKartDK028TlutWheel3, + gKartDK029TlutWheel0, + gKartDK029TlutWheel1, + gKartDK029TlutWheel2, + gKartDK029TlutWheel3, + gKartDK030TlutWheel0, + gKartDK030TlutWheel1, + gKartDK030TlutWheel2, + gKartDK030TlutWheel3, + gKartDK031TlutWheel0, + gKartDK031TlutWheel1, + gKartDK031TlutWheel2, + gKartDK031TlutWheel3, + gKartDK032TlutWheel0, + gKartDK032TlutWheel1, + gKartDK032TlutWheel2, + gKartDK032TlutWheel3, + gKartDK033TlutWheel0, + gKartDK033TlutWheel1, + gKartDK033TlutWheel2, + gKartDK033TlutWheel3, + gKartDK034TlutWheel0, + gKartDK034TlutWheel1, + gKartDK034TlutWheel2, + gKartDK034TlutWheel3, + gKartDK035TlutWheel0, + gKartDK035TlutWheel1, + gKartDK035TlutWheel2, + gKartDK035TlutWheel3, + gKartDK036TlutWheel0, + gKartDK036TlutWheel1, + gKartDK036TlutWheel2, + gKartDK036TlutWheel3, + gKartDK037TlutWheel0, + gKartDK037TlutWheel1, + gKartDK037TlutWheel2, + gKartDK037TlutWheel3, + gKartDK038TlutWheel0, + gKartDK038TlutWheel1, + gKartDK038TlutWheel2, + gKartDK038TlutWheel3, + gKartDK039TlutWheel0, + gKartDK039TlutWheel1, + gKartDK039TlutWheel2, + gKartDK039TlutWheel3, + gKartDK040TlutWheel0, + gKartDK040TlutWheel1, + gKartDK040TlutWheel2, + gKartDK040TlutWheel3, + gKartDK041TlutWheel0, + gKartDK041TlutWheel1, + gKartDK041TlutWheel2, + gKartDK041TlutWheel3, + gKartDK042TlutWheel0, + gKartDK042TlutWheel1, + gKartDK042TlutWheel2, + gKartDK042TlutWheel3, + gKartDK043TlutWheel0, + gKartDK043TlutWheel1, + gKartDK043TlutWheel2, + gKartDK043TlutWheel3, + gKartDK044TlutWheel0, + gKartDK044TlutWheel1, + gKartDK044TlutWheel2, + gKartDK044TlutWheel3, + gKartDK045TlutWheel0, + gKartDK045TlutWheel1, + gKartDK045TlutWheel2, + gKartDK045TlutWheel3, + gKartDK046TlutWheel0, + gKartDK046TlutWheel1, + gKartDK046TlutWheel2, + gKartDK046TlutWheel3, + gKartDK047TlutWheel0, + gKartDK047TlutWheel1, + gKartDK047TlutWheel2, + gKartDK047TlutWheel3, + gKartDK048TlutWheel0, + gKartDK048TlutWheel1, + gKartDK048TlutWheel2, + gKartDK048TlutWheel3, + gKartDK049TlutWheel0, + gKartDK049TlutWheel1, + gKartDK049TlutWheel2, + gKartDK049TlutWheel3, + gKartDK050TlutWheel0, + gKartDK050TlutWheel1, + gKartDK050TlutWheel2, + gKartDK050TlutWheel3, + gKartDK051TlutWheel0, + gKartDK051TlutWheel1, + gKartDK051TlutWheel2, + gKartDK051TlutWheel3, + gKartDK052TlutWheel0, + gKartDK052TlutWheel1, + gKartDK052TlutWheel2, + gKartDK052TlutWheel3, + gKartDK053TlutWheel0, + gKartDK053TlutWheel1, + gKartDK053TlutWheel2, + gKartDK053TlutWheel3, + gKartDK054TlutWheel0, + gKartDK054TlutWheel1, + gKartDK054TlutWheel2, + gKartDK054TlutWheel3, + gKartDK055TlutWheel0, + gKartDK055TlutWheel1, + gKartDK055TlutWheel2, + gKartDK055TlutWheel3, + gKartDK056TlutWheel0, + gKartDK056TlutWheel1, + gKartDK056TlutWheel2, + gKartDK056TlutWheel3, + gKartDK057TlutWheel0, + gKartDK057TlutWheel1, + gKartDK057TlutWheel2, + gKartDK057TlutWheel3, + gKartDK058TlutWheel0, + gKartDK058TlutWheel1, + gKartDK058TlutWheel2, + gKartDK058TlutWheel3, + gKartDK059TlutWheel0, + gKartDK059TlutWheel1, + gKartDK059TlutWheel2, + gKartDK059TlutWheel3, + gKartDK060TlutWheel0, + gKartDK060TlutWheel1, + gKartDK060TlutWheel2, + gKartDK060TlutWheel3, + gKartDK061TlutWheel0, + gKartDK061TlutWheel1, + gKartDK061TlutWheel2, + gKartDK061TlutWheel3, + gKartDK062TlutWheel0, + gKartDK062TlutWheel1, + gKartDK062TlutWheel2, + gKartDK062TlutWheel3, + gKartDK063TlutWheel0, + gKartDK063TlutWheel1, + gKartDK063TlutWheel2, + gKartDK063TlutWheel3, + gKartDK064TlutWheel0, + gKartDK064TlutWheel1, + gKartDK064TlutWheel2, + gKartDK064TlutWheel3, + gKartDK065TlutWheel0, + gKartDK065TlutWheel1, + gKartDK065TlutWheel2, + gKartDK065TlutWheel3, + gKartDK066TlutWheel0, + gKartDK066TlutWheel1, + gKartDK066TlutWheel2, + gKartDK066TlutWheel3, + gKartDK067TlutWheel0, + gKartDK067TlutWheel1, + gKartDK067TlutWheel2, + gKartDK067TlutWheel3, + gKartDK068TlutWheel0, + gKartDK068TlutWheel1, + gKartDK068TlutWheel2, + gKartDK068TlutWheel3, + gKartDK069TlutWheel0, + gKartDK069TlutWheel1, + gKartDK069TlutWheel2, + gKartDK069TlutWheel3, + gKartDK070TlutWheel0, + gKartDK070TlutWheel1, + gKartDK070TlutWheel2, + gKartDK070TlutWheel3, + gKartDK071TlutWheel0, + gKartDK071TlutWheel1, + gKartDK071TlutWheel2, + gKartDK071TlutWheel3, + gKartDK072TlutWheel0, + gKartDK072TlutWheel1, + gKartDK072TlutWheel2, + gKartDK072TlutWheel3, + gKartDK073TlutWheel0, + gKartDK073TlutWheel1, + gKartDK073TlutWheel2, + gKartDK073TlutWheel3, + gKartDK074TlutWheel0, + gKartDK074TlutWheel1, + gKartDK074TlutWheel2, + gKartDK074TlutWheel3, + gKartDK075TlutWheel0, + gKartDK075TlutWheel1, + gKartDK075TlutWheel2, + gKartDK075TlutWheel3, + gKartDK076TlutWheel0, + gKartDK076TlutWheel1, + gKartDK076TlutWheel2, + gKartDK076TlutWheel3, + gKartDK077TlutWheel0, + gKartDK077TlutWheel1, + gKartDK077TlutWheel2, + gKartDK077TlutWheel3, + gKartDK078TlutWheel0, + gKartDK078TlutWheel1, + gKartDK078TlutWheel2, + gKartDK078TlutWheel3, + gKartDK079TlutWheel0, + gKartDK079TlutWheel1, + gKartDK079TlutWheel2, + gKartDK079TlutWheel3, + gKartDK080TlutWheel0, + gKartDK080TlutWheel1, + gKartDK080TlutWheel2, + gKartDK080TlutWheel3, + gKartDK081TlutWheel0, + gKartDK081TlutWheel1, + gKartDK081TlutWheel2, + gKartDK081TlutWheel3, + gKartDK082TlutWheel0, + gKartDK082TlutWheel1, + gKartDK082TlutWheel2, + gKartDK082TlutWheel3, + gKartDK083TlutWheel0, + gKartDK083TlutWheel1, + gKartDK083TlutWheel2, + gKartDK083TlutWheel3, + gKartDK084TlutWheel0, + gKartDK084TlutWheel1, + gKartDK084TlutWheel2, + gKartDK084TlutWheel3, + gKartDK085TlutWheel0, + gKartDK085TlutWheel1, + gKartDK085TlutWheel2, + gKartDK085TlutWheel3, + gKartDK086TlutWheel0, + gKartDK086TlutWheel1, + gKartDK086TlutWheel2, + gKartDK086TlutWheel3, + gKartDK087TlutWheel0, + gKartDK087TlutWheel1, + gKartDK087TlutWheel2, + gKartDK087TlutWheel3, + gKartDK088TlutWheel0, + gKartDK088TlutWheel1, + gKartDK088TlutWheel2, + gKartDK088TlutWheel3, + gKartDK089TlutWheel0, + gKartDK089TlutWheel1, + gKartDK089TlutWheel2, + gKartDK089TlutWheel3, + gKartDK090TlutWheel0, + gKartDK090TlutWheel1, + gKartDK090TlutWheel2, + gKartDK090TlutWheel3, + gKartDK091TlutWheel0, + gKartDK091TlutWheel1, + gKartDK091TlutWheel2, + gKartDK091TlutWheel3, + gKartDK092TlutWheel0, + gKartDK092TlutWheel1, + gKartDK092TlutWheel2, + gKartDK092TlutWheel3, + gKartDK093TlutWheel0, + gKartDK093TlutWheel1, + gKartDK093TlutWheel2, + gKartDK093TlutWheel3, + gKartDK094TlutWheel0, + gKartDK094TlutWheel1, + gKartDK094TlutWheel2, + gKartDK094TlutWheel3, + gKartDK095TlutWheel0, + gKartDK095TlutWheel1, + gKartDK095TlutWheel2, + gKartDK095TlutWheel3, + gKartDK096TlutWheel0, + gKartDK096TlutWheel1, + gKartDK096TlutWheel2, + gKartDK096TlutWheel3, + gKartDK097TlutWheel0, + gKartDK097TlutWheel1, + gKartDK097TlutWheel2, + gKartDK097TlutWheel3, + gKartDK098TlutWheel0, + gKartDK098TlutWheel1, + gKartDK098TlutWheel2, + gKartDK098TlutWheel3, + gKartDK099TlutWheel0, + gKartDK099TlutWheel1, + gKartDK099TlutWheel2, + gKartDK099TlutWheel3, + gKartDK100TlutWheel0, + gKartDK100TlutWheel1, + gKartDK100TlutWheel2, + gKartDK100TlutWheel3, + gKartDK101TlutWheel0, + gKartDK101TlutWheel1, + gKartDK101TlutWheel2, + gKartDK101TlutWheel3, + gKartDK102TlutWheel0, + gKartDK102TlutWheel1, + gKartDK102TlutWheel2, + gKartDK102TlutWheel3, + gKartDK103TlutWheel0, + gKartDK103TlutWheel1, + gKartDK103TlutWheel2, + gKartDK103TlutWheel3, + gKartDK104TlutWheel0, + gKartDK104TlutWheel1, + gKartDK104TlutWheel2, + gKartDK104TlutWheel3, + gKartDK105TlutWheel0, + gKartDK105TlutWheel1, + gKartDK105TlutWheel2, + gKartDK105TlutWheel3, + gKartDK106TlutWheel0, + gKartDK106TlutWheel1, + gKartDK106TlutWheel2, + gKartDK106TlutWheel3, + gKartDK107TlutWheel0, + gKartDK107TlutWheel1, + gKartDK107TlutWheel2, + gKartDK107TlutWheel3, + gKartDK108TlutWheel0, + gKartDK108TlutWheel1, + gKartDK108TlutWheel2, + gKartDK108TlutWheel3, + gKartDK109TlutWheel0, + gKartDK109TlutWheel1, + gKartDK109TlutWheel2, + gKartDK109TlutWheel3, + gKartDK110TlutWheel0, + gKartDK110TlutWheel1, + gKartDK110TlutWheel2, + gKartDK110TlutWheel3, + gKartDK111TlutWheel0, + gKartDK111TlutWheel1, + gKartDK111TlutWheel2, + gKartDK111TlutWheel3, + gKartDK112TlutWheel0, + gKartDK112TlutWheel1, + gKartDK112TlutWheel2, + gKartDK112TlutWheel3, + gKartDK113TlutWheel0, + gKartDK113TlutWheel1, + gKartDK113TlutWheel2, + gKartDK113TlutWheel3, + gKartDK114TlutWheel0, + gKartDK114TlutWheel1, + gKartDK114TlutWheel2, + gKartDK114TlutWheel3, + gKartDK115TlutWheel0, + gKartDK115TlutWheel1, + gKartDK115TlutWheel2, + gKartDK115TlutWheel3, + gKartDK116TlutWheel0, + gKartDK116TlutWheel1, + gKartDK116TlutWheel2, + gKartDK116TlutWheel3, + gKartDK117TlutWheel0, + gKartDK117TlutWheel1, + gKartDK117TlutWheel2, + gKartDK117TlutWheel3, + gKartDK118TlutWheel0, + gKartDK118TlutWheel1, + gKartDK118TlutWheel2, + gKartDK118TlutWheel3, + gKartDK119TlutWheel0, + gKartDK119TlutWheel1, + gKartDK119TlutWheel2, + gKartDK119TlutWheel3, + gKartDK120TlutWheel0, + gKartDK120TlutWheel1, + gKartDK120TlutWheel2, + gKartDK120TlutWheel3, + gKartDK121TlutWheel0, + gKartDK121TlutWheel1, + gKartDK121TlutWheel2, + gKartDK121TlutWheel3, + gKartDK122TlutWheel0, + gKartDK122TlutWheel1, + gKartDK122TlutWheel2, + gKartDK122TlutWheel3, + gKartDK123TlutWheel0, + gKartDK123TlutWheel1, + gKartDK123TlutWheel2, + gKartDK123TlutWheel3, + gKartDK124TlutWheel0, + gKartDK124TlutWheel1, + gKartDK124TlutWheel2, + gKartDK124TlutWheel3, + gKartDK125TlutWheel0, + gKartDK125TlutWheel1, + gKartDK125TlutWheel2, + gKartDK125TlutWheel3, + gKartDK126TlutWheel0, + gKartDK126TlutWheel1, + gKartDK126TlutWheel2, + gKartDK126TlutWheel3, + gKartDK127TlutWheel0, + gKartDK127TlutWheel1, + gKartDK127TlutWheel2, + gKartDK127TlutWheel3, + gKartDK128TlutWheel0, + gKartDK128TlutWheel1, + gKartDK128TlutWheel2, + gKartDK128TlutWheel3, + gKartDK129TlutWheel0, + gKartDK129TlutWheel1, + gKartDK129TlutWheel2, + gKartDK129TlutWheel3, + gKartDK130TlutWheel0, + gKartDK130TlutWheel1, + gKartDK130TlutWheel2, + gKartDK130TlutWheel3, + gKartDK131TlutWheel0, + gKartDK131TlutWheel1, + gKartDK131TlutWheel2, + gKartDK131TlutWheel3, + gKartDK132TlutWheel0, + gKartDK132TlutWheel1, + gKartDK132TlutWheel2, + gKartDK132TlutWheel3, + gKartDK133TlutWheel0, + gKartDK133TlutWheel1, + gKartDK133TlutWheel2, + gKartDK133TlutWheel3, + gKartDK134TlutWheel0, + gKartDK134TlutWheel1, + gKartDK134TlutWheel2, + gKartDK134TlutWheel3, + gKartDK135TlutWheel0, + gKartDK135TlutWheel1, + gKartDK135TlutWheel2, + gKartDK135TlutWheel3, + gKartDK136TlutWheel0, + gKartDK136TlutWheel1, + gKartDK136TlutWheel2, + gKartDK136TlutWheel3, + gKartDK137TlutWheel0, + gKartDK137TlutWheel1, + gKartDK137TlutWheel2, + gKartDK137TlutWheel3, + gKartDK138TlutWheel0, + gKartDK138TlutWheel1, + gKartDK138TlutWheel2, + gKartDK138TlutWheel3, + gKartDK139TlutWheel0, + gKartDK139TlutWheel1, + gKartDK139TlutWheel2, + gKartDK139TlutWheel3, + gKartDK140TlutWheel0, + gKartDK140TlutWheel1, + gKartDK140TlutWheel2, + gKartDK140TlutWheel3, + gKartDK141TlutWheel0, + gKartDK141TlutWheel1, + gKartDK141TlutWheel2, + gKartDK141TlutWheel3, + gKartDK142TlutWheel0, + gKartDK142TlutWheel1, + gKartDK142TlutWheel2, + gKartDK142TlutWheel3, + gKartDK143TlutWheel0, + gKartDK143TlutWheel1, + gKartDK143TlutWheel2, + gKartDK143TlutWheel3, + gKartDK144TlutWheel0, + gKartDK144TlutWheel1, + gKartDK144TlutWheel2, + gKartDK144TlutWheel3, + gKartDK145TlutWheel0, + gKartDK145TlutWheel1, + gKartDK145TlutWheel2, + gKartDK145TlutWheel3, + gKartDK146TlutWheel0, + gKartDK146TlutWheel1, + gKartDK146TlutWheel2, + gKartDK146TlutWheel3, + gKartDK147TlutWheel0, + gKartDK147TlutWheel1, + gKartDK147TlutWheel2, + gKartDK147TlutWheel3, + gKartDK148TlutWheel0, + gKartDK148TlutWheel1, + gKartDK148TlutWheel2, + gKartDK148TlutWheel3, + gKartDK149TlutWheel0, + gKartDK149TlutWheel1, + gKartDK149TlutWheel2, + gKartDK149TlutWheel3, + gKartDK150TlutWheel0, + gKartDK150TlutWheel1, + gKartDK150TlutWheel2, + gKartDK150TlutWheel3, + gKartDK151TlutWheel0, + gKartDK151TlutWheel1, + gKartDK151TlutWheel2, + gKartDK151TlutWheel3, + gKartDK152TlutWheel0, + gKartDK152TlutWheel1, + gKartDK152TlutWheel2, + gKartDK152TlutWheel3, + gKartDK153TlutWheel0, + gKartDK153TlutWheel1, + gKartDK153TlutWheel2, + gKartDK153TlutWheel3, + gKartDK154TlutWheel0, + gKartDK154TlutWheel1, + gKartDK154TlutWheel2, + gKartDK154TlutWheel3, + gKartDK155TlutWheel0, + gKartDK155TlutWheel1, + gKartDK155TlutWheel2, + gKartDK155TlutWheel3, + gKartDK156TlutWheel0, + gKartDK156TlutWheel1, + gKartDK156TlutWheel2, + gKartDK156TlutWheel3, + gKartDK157TlutWheel0, + gKartDK157TlutWheel1, + gKartDK157TlutWheel2, + gKartDK157TlutWheel3, + gKartDK158TlutWheel0, + gKartDK158TlutWheel1, + gKartDK158TlutWheel2, + gKartDK158TlutWheel3, + gKartDK159TlutWheel0, + gKartDK159TlutWheel1, + gKartDK159TlutWheel2, + gKartDK159TlutWheel3, + gKartDK160TlutWheel0, + gKartDK160TlutWheel1, + gKartDK160TlutWheel2, + gKartDK160TlutWheel3, + gKartDK161TlutWheel0, + gKartDK161TlutWheel1, + gKartDK161TlutWheel2, + gKartDK161TlutWheel3, + gKartDK162TlutWheel0, + gKartDK162TlutWheel1, + gKartDK162TlutWheel2, + gKartDK162TlutWheel3, + gKartDK163TlutWheel0, + gKartDK163TlutWheel1, + gKartDK163TlutWheel2, + gKartDK163TlutWheel3, + gKartDK164TlutWheel0, + gKartDK164TlutWheel1, + gKartDK164TlutWheel2, + gKartDK164TlutWheel3, + gKartDK165TlutWheel0, + gKartDK165TlutWheel1, + gKartDK165TlutWheel2, + gKartDK165TlutWheel3, + gKartDK166TlutWheel0, + gKartDK166TlutWheel1, + gKartDK166TlutWheel2, + gKartDK166TlutWheel3, + gKartDK167TlutWheel0, + gKartDK167TlutWheel1, + gKartDK167TlutWheel2, + gKartDK167TlutWheel3, + gKartDK168TlutWheel0, + gKartDK168TlutWheel1, + gKartDK168TlutWheel2, + gKartDK168TlutWheel3, + gKartDK169TlutWheel0, + gKartDK169TlutWheel1, + gKartDK169TlutWheel2, + gKartDK169TlutWheel3, + gKartDK170TlutWheel0, + gKartDK170TlutWheel1, + gKartDK170TlutWheel2, + gKartDK170TlutWheel3, + gKartDK171TlutWheel0, + gKartDK171TlutWheel1, + gKartDK171TlutWheel2, + gKartDK171TlutWheel3, + gKartDK172TlutWheel0, + gKartDK172TlutWheel1, + gKartDK172TlutWheel2, + gKartDK172TlutWheel3, + gKartDK173TlutWheel0, + gKartDK173TlutWheel1, + gKartDK173TlutWheel2, + gKartDK173TlutWheel3, + gKartDK174TlutWheel0, + gKartDK174TlutWheel1, + gKartDK174TlutWheel2, + gKartDK174TlutWheel3, + gKartDK175TlutWheel0, + gKartDK175TlutWheel1, + gKartDK175TlutWheel2, + gKartDK175TlutWheel3, + gKartDK176TlutWheel0, + gKartDK176TlutWheel1, + gKartDK176TlutWheel2, + gKartDK176TlutWheel3, + gKartDK177TlutWheel0, + gKartDK177TlutWheel1, + gKartDK177TlutWheel2, + gKartDK177TlutWheel3, + gKartDK178TlutWheel0, + gKartDK178TlutWheel1, + gKartDK178TlutWheel2, + gKartDK178TlutWheel3, + gKartDK179TlutWheel0, + gKartDK179TlutWheel1, + gKartDK179TlutWheel2, + gKartDK179TlutWheel3, + gKartDK180TlutWheel0, + gKartDK180TlutWheel1, + gKartDK180TlutWheel2, + gKartDK180TlutWheel3, + gKartDK181TlutWheel0, + gKartDK181TlutWheel1, + gKartDK181TlutWheel2, + gKartDK181TlutWheel3, + gKartDK182TlutWheel0, + gKartDK182TlutWheel1, + gKartDK182TlutWheel2, + gKartDK182TlutWheel3, + gKartDK183TlutWheel0, + gKartDK183TlutWheel1, + gKartDK183TlutWheel2, + gKartDK183TlutWheel3, + gKartDK184TlutWheel0, + gKartDK184TlutWheel1, + gKartDK184TlutWheel2, + gKartDK184TlutWheel3, + gKartDK185TlutWheel0, + gKartDK185TlutWheel1, + gKartDK185TlutWheel2, + gKartDK185TlutWheel3, + gKartDK186TlutWheel0, + gKartDK186TlutWheel1, + gKartDK186TlutWheel2, + gKartDK186TlutWheel3, + gKartDK187TlutWheel0, + gKartDK187TlutWheel1, + gKartDK187TlutWheel2, + gKartDK187TlutWheel3, + gKartDK188TlutWheel0, + gKartDK188TlutWheel1, + gKartDK188TlutWheel2, + gKartDK188TlutWheel3, + gKartDK189TlutWheel0, + gKartDK189TlutWheel1, + gKartDK189TlutWheel2, + gKartDK189TlutWheel3, + gKartDK190TlutWheel0, + gKartDK190TlutWheel1, + gKartDK190TlutWheel2, + gKartDK190TlutWheel3, + gKartDK191TlutWheel0, + gKartDK191TlutWheel1, + gKartDK191TlutWheel2, + gKartDK191TlutWheel3, + gKartDK192TlutWheel0, + gKartDK192TlutWheel1, + gKartDK192TlutWheel2, + gKartDK192TlutWheel3, + gKartDK193TlutWheel0, + gKartDK193TlutWheel1, + gKartDK193TlutWheel2, + gKartDK193TlutWheel3, + gKartDK194TlutWheel0, + gKartDK194TlutWheel1, + gKartDK194TlutWheel2, + gKartDK194TlutWheel3, + gKartDK195TlutWheel0, + gKartDK195TlutWheel1, + gKartDK195TlutWheel2, + gKartDK195TlutWheel3, + gKartDK196TlutWheel0, + gKartDK196TlutWheel1, + gKartDK196TlutWheel2, + gKartDK196TlutWheel3, + gKartDK197TlutWheel0, + gKartDK197TlutWheel1, + gKartDK197TlutWheel2, + gKartDK197TlutWheel3, + gKartDK198TlutWheel0, + gKartDK198TlutWheel1, + gKartDK198TlutWheel2, + gKartDK198TlutWheel3, + gKartDK199TlutWheel0, + gKartDK199TlutWheel1, + gKartDK199TlutWheel2, + gKartDK199TlutWheel3, + gKartDK200TlutWheel0, + gKartDK200TlutWheel1, + gKartDK200TlutWheel2, + gKartDK200TlutWheel3, + gKartDK201TlutWheel0, + gKartDK201TlutWheel1, + gKartDK201TlutWheel2, + gKartDK201TlutWheel3, + gKartDK202TlutWheel0, + gKartDK202TlutWheel1, + gKartDK202TlutWheel2, + gKartDK202TlutWheel3, + gKartDK203TlutWheel0, + gKartDK203TlutWheel1, + gKartDK203TlutWheel2, + gKartDK203TlutWheel3, + gKartDK204TlutWheel0, + gKartDK204TlutWheel1, + gKartDK204TlutWheel2, + gKartDK204TlutWheel3, + gKartDK205TlutWheel0, + gKartDK205TlutWheel1, + gKartDK205TlutWheel2, + gKartDK205TlutWheel3, + gKartDK206TlutWheel0, + gKartDK206TlutWheel1, + gKartDK206TlutWheel2, + gKartDK206TlutWheel3, + gKartDK207TlutWheel0, + gKartDK207TlutWheel1, + gKartDK207TlutWheel2, + gKartDK207TlutWheel3, + gKartDK208TlutWheel0, + gKartDK208TlutWheel1, + gKartDK208TlutWheel2, + gKartDK208TlutWheel3, + gKartDK209TlutWheel0, + gKartDK209TlutWheel1, + gKartDK209TlutWheel2, + gKartDK209TlutWheel3, + gKartDK210TlutWheel0, + gKartDK210TlutWheel1, + gKartDK210TlutWheel2, + gKartDK210TlutWheel3, + gKartDK211TlutWheel0, + gKartDK211TlutWheel1, + gKartDK211TlutWheel2, + gKartDK211TlutWheel3, + gKartDK212TlutWheel0, + gKartDK212TlutWheel1, + gKartDK212TlutWheel2, + gKartDK212TlutWheel3, + gKartDK213TlutWheel0, + gKartDK213TlutWheel1, + gKartDK213TlutWheel2, + gKartDK213TlutWheel3, + gKartDK214TlutWheel0, + gKartDK214TlutWheel1, + gKartDK214TlutWheel2, + gKartDK214TlutWheel3, + gKartDK215TlutWheel0, + gKartDK215TlutWheel1, + gKartDK215TlutWheel2, + gKartDK215TlutWheel3, + gKartDK216TlutWheel0, + gKartDK216TlutWheel1, + gKartDK216TlutWheel2, + gKartDK216TlutWheel3, + gKartDK217TlutWheel0, + gKartDK217TlutWheel1, + gKartDK217TlutWheel2, + gKartDK217TlutWheel3, + gKartDK218TlutWheel0, + gKartDK218TlutWheel1, + gKartDK218TlutWheel2, + gKartDK218TlutWheel3, + gKartDK219TlutWheel0, + gKartDK219TlutWheel1, + gKartDK219TlutWheel2, + gKartDK219TlutWheel3, + gKartDK220TlutWheel0, + gKartDK220TlutWheel1, + gKartDK220TlutWheel2, + gKartDK220TlutWheel3, + gKartDK221TlutWheel0, + gKartDK221TlutWheel1, + gKartDK221TlutWheel2, + gKartDK221TlutWheel3, + gKartDK222TlutWheel0, + gKartDK222TlutWheel1, + gKartDK222TlutWheel2, + gKartDK222TlutWheel3, + gKartDK223TlutWheel0, + gKartDK223TlutWheel1, + gKartDK223TlutWheel2, + gKartDK223TlutWheel3, + gKartDK224TlutWheel0, + gKartDK224TlutWheel1, + gKartDK224TlutWheel2, + gKartDK224TlutWheel3, + gKartDK225TlutWheel0, + gKartDK225TlutWheel1, + gKartDK225TlutWheel2, + gKartDK225TlutWheel3, + gKartDK226TlutWheel0, + gKartDK226TlutWheel1, + gKartDK226TlutWheel2, + gKartDK226TlutWheel3, + gKartDK227TlutWheel0, + gKartDK227TlutWheel1, + gKartDK227TlutWheel2, + gKartDK227TlutWheel3, + gKartDK228TlutWheel0, + gKartDK228TlutWheel1, + gKartDK228TlutWheel2, + gKartDK228TlutWheel3, + gKartDK229TlutWheel0, + gKartDK229TlutWheel1, + gKartDK229TlutWheel2, + gKartDK229TlutWheel3, + gKartDK230TlutWheel0, + gKartDK230TlutWheel1, + gKartDK230TlutWheel2, + gKartDK230TlutWheel3, + gKartDK231TlutWheel0, + gKartDK231TlutWheel1, + gKartDK231TlutWheel2, + gKartDK231TlutWheel3, + gKartDK232TlutWheel0, + gKartDK232TlutWheel1, + gKartDK232TlutWheel2, + gKartDK232TlutWheel3, + gKartDK233TlutWheel0, + gKartDK233TlutWheel1, + gKartDK233TlutWheel2, + gKartDK233TlutWheel3, + gKartDK234TlutWheel0, + gKartDK234TlutWheel1, + gKartDK234TlutWheel2, + gKartDK234TlutWheel3, + gKartDK235TlutWheel0, + gKartDK235TlutWheel1, + gKartDK235TlutWheel2, + gKartDK235TlutWheel3, + gKartDK236TlutWheel0, + gKartDK236TlutWheel1, + gKartDK236TlutWheel2, + gKartDK236TlutWheel3, + gKartDK237TlutWheel0, + gKartDK237TlutWheel1, + gKartDK237TlutWheel2, + gKartDK237TlutWheel3, + gKartDK238TlutWheel0, + gKartDK238TlutWheel1, + gKartDK238TlutWheel2, + gKartDK238TlutWheel3, + gKartDK239TlutWheel0, + gKartDK239TlutWheel1, + gKartDK239TlutWheel2, + gKartDK239TlutWheel3, + gKartDK240TlutWheel0, + gKartDK240TlutWheel1, + gKartDK240TlutWheel2, + gKartDK240TlutWheel3, + gKartDK241TlutWheel0, + gKartDK241TlutWheel1, + gKartDK241TlutWheel2, + gKartDK241TlutWheel3, + gKartDK242TlutWheel0, + gKartDK242TlutWheel1, + gKartDK242TlutWheel2, + gKartDK242TlutWheel3, + gKartDK243TlutWheel0, + gKartDK243TlutWheel1, + gKartDK243TlutWheel2, + gKartDK243TlutWheel3, + gKartDK244TlutWheel0, + gKartDK244TlutWheel1, + gKartDK244TlutWheel2, + gKartDK244TlutWheel3, + gKartDK245TlutWheel0, + gKartDK245TlutWheel1, + gKartDK245TlutWheel2, + gKartDK245TlutWheel3, + gKartDK246TlutWheel0, + gKartDK246TlutWheel1, + gKartDK246TlutWheel2, + gKartDK246TlutWheel3, + gKartDK247TlutWheel0, + gKartDK247TlutWheel1, + gKartDK247TlutWheel2, + gKartDK247TlutWheel3, + gKartDK248TlutWheel0, + gKartDK248TlutWheel1, + gKartDK248TlutWheel2, + gKartDK248TlutWheel3, + gKartDK249TlutWheel0, + gKartDK249TlutWheel1, + gKartDK249TlutWheel2, + gKartDK249TlutWheel3, + gKartDK250TlutWheel0, + gKartDK250TlutWheel1, + gKartDK250TlutWheel2, + gKartDK250TlutWheel3, + gKartDK251TlutWheel0, + gKartDK251TlutWheel1, + gKartDK251TlutWheel2, + gKartDK251TlutWheel3, + gKartDK252TlutWheel0, + gKartDK252TlutWheel1, + gKartDK252TlutWheel2, + gKartDK252TlutWheel3, + gKartDK253TlutWheel0, + gKartDK253TlutWheel1, + gKartDK253TlutWheel2, + gKartDK253TlutWheel3, + gKartDK254TlutWheel0, + gKartDK254TlutWheel1, + gKartDK254TlutWheel2, + gKartDK254TlutWheel3, + gKartDK255TlutWheel0, + gKartDK255TlutWheel1, + gKartDK255TlutWheel2, + gKartDK255TlutWheel3, + gKartDK256TlutWheel0, + gKartDK256TlutWheel1, + gKartDK256TlutWheel2, + gKartDK256TlutWheel3, + gKartDK257TlutWheel0, + gKartDK257TlutWheel1, + gKartDK257TlutWheel2, + gKartDK257TlutWheel3, + gKartDK258TlutWheel0, + gKartDK258TlutWheel1, + gKartDK258TlutWheel2, + gKartDK258TlutWheel3, + gKartDK259TlutWheel0, + gKartDK259TlutWheel1, + gKartDK259TlutWheel2, + gKartDK259TlutWheel3, + gKartDK260TlutWheel0, + gKartDK260TlutWheel1, + gKartDK260TlutWheel2, + gKartDK260TlutWheel3, + gKartDK261TlutWheel0, + gKartDK261TlutWheel1, + gKartDK261TlutWheel2, + gKartDK261TlutWheel3, + gKartDK262TlutWheel0, + gKartDK262TlutWheel1, + gKartDK262TlutWheel2, + gKartDK262TlutWheel3, + gKartDK263TlutWheel0, + gKartDK263TlutWheel1, + gKartDK263TlutWheel2, + gKartDK263TlutWheel3, + gKartDK264TlutWheel0, + gKartDK264TlutWheel1, + gKartDK264TlutWheel2, + gKartDK264TlutWheel3, + gKartDK265TlutWheel0, + gKartDK265TlutWheel1, + gKartDK265TlutWheel2, + gKartDK265TlutWheel3, + gKartDK266TlutWheel0, + gKartDK266TlutWheel1, + gKartDK266TlutWheel2, + gKartDK266TlutWheel3, + gKartDK267TlutWheel0, + gKartDK267TlutWheel1, + gKartDK267TlutWheel2, + gKartDK267TlutWheel3, + gKartDK268TlutWheel0, + gKartDK268TlutWheel1, + gKartDK268TlutWheel2, + gKartDK268TlutWheel3, + gKartDK269TlutWheel0, + gKartDK269TlutWheel1, + gKartDK269TlutWheel2, + gKartDK269TlutWheel3, + gKartDK270TlutWheel0, + gKartDK270TlutWheel1, + gKartDK270TlutWheel2, + gKartDK270TlutWheel3, + gKartDK271TlutWheel0, + gKartDK271TlutWheel1, + gKartDK271TlutWheel2, + gKartDK271TlutWheel3, + gKartDK272TlutWheel0, + gKartDK272TlutWheel1, + gKartDK272TlutWheel2, + gKartDK272TlutWheel3, + gKartDK273TlutWheel0, + gKartDK273TlutWheel1, + gKartDK273TlutWheel2, + gKartDK273TlutWheel3, + gKartDK274TlutWheel0, + gKartDK274TlutWheel1, + gKartDK274TlutWheel2, + gKartDK274TlutWheel3, + gKartDK275TlutWheel0, + gKartDK275TlutWheel1, + gKartDK275TlutWheel2, + gKartDK275TlutWheel3, + gKartDK276TlutWheel0, + gKartDK276TlutWheel1, + gKartDK276TlutWheel2, + gKartDK276TlutWheel3, + gKartDK277TlutWheel0, + gKartDK277TlutWheel1, + gKartDK277TlutWheel2, + gKartDK277TlutWheel3, + gKartDK278TlutWheel0, + gKartDK278TlutWheel1, + gKartDK278TlutWheel2, + gKartDK278TlutWheel3, + gKartDK279TlutWheel0, + gKartDK279TlutWheel1, + gKartDK279TlutWheel2, + gKartDK279TlutWheel3, + gKartDK280TlutWheel0, + gKartDK280TlutWheel1, + gKartDK280TlutWheel2, + gKartDK280TlutWheel3, + gKartDK281TlutWheel0, + gKartDK281TlutWheel1, + gKartDK281TlutWheel2, + gKartDK281TlutWheel3, + gKartDK282TlutWheel0, + gKartDK282TlutWheel1, + gKartDK282TlutWheel2, + gKartDK282TlutWheel3, + gKartDK283TlutWheel0, + gKartDK283TlutWheel1, + gKartDK283TlutWheel2, + gKartDK283TlutWheel3, + gKartDK284TlutWheel0, + gKartDK284TlutWheel1, + gKartDK284TlutWheel2, + gKartDK284TlutWheel3, + gKartDK285TlutWheel0, + gKartDK285TlutWheel1, + gKartDK285TlutWheel2, + gKartDK285TlutWheel3, + gKartDK286TlutWheel0, + gKartDK286TlutWheel1, + gKartDK286TlutWheel2, + gKartDK286TlutWheel3, + gKartDK287TlutWheel0, + gKartDK287TlutWheel1, + gKartDK287TlutWheel2, + gKartDK287TlutWheel3, + gKartDK288TlutWheel0, + gKartDK288TlutWheel1, + gKartDK288TlutWheel2, + gKartDK288TlutWheel3, +}; + +static const ALIGN_ASSET(2) char gKartDKPalette[] = "__OTR__textures/karts/donkeykong_kart/donkeykong_kart_palette"; + diff --git a/include/assets/textures/karts/luigi_kart.h b/include/assets/textures/karts/luigi_kart.h new file mode 100644 index 000000000..7ede03a26 --- /dev/null +++ b/include/assets/textures/karts/luigi_kart.h @@ -0,0 +1,5854 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gKartLuigi000Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame000_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi000Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame000_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi000Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame000_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi000Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame000_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi001Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame001_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi001Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame001_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi001Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame001_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi001Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame001_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi002Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame002_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi002Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame002_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi002Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame002_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi002Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame002_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi003Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame003_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi003Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame003_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi003Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame003_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi003Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame003_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi004Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame004_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi004Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame004_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi004Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame004_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi004Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame004_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi005Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame005_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi005Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame005_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi005Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame005_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi005Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame005_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi006Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame006_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi006Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame006_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi006Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame006_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi006Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame006_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi007Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame007_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi007Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame007_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi007Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame007_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi007Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame007_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi008Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame008_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi008Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame008_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi008Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame008_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi008Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame008_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi009Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame009_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi009Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame009_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi009Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame009_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi009Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame009_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi010Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame010_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi010Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame010_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi010Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame010_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi010Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame010_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi011Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame011_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi011Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame011_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi011Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame011_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi011Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame011_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi012Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame012_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi012Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame012_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi012Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame012_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi012Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame012_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi013Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame013_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi013Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame013_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi013Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame013_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi013Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame013_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi014Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame014_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi014Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame014_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi014Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame014_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi014Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame014_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi015Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame015_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi015Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame015_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi015Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame015_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi015Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame015_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi016Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame016_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi016Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame016_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi016Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame016_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi016Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame016_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi017Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame017_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi017Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame017_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi017Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame017_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi017Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame017_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi018Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame018_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi018Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame018_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi018Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame018_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi018Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame018_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi019Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame019_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi019Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame019_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi019Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame019_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi019Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame019_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi020Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame020_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi020Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame020_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi020Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame020_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi020Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame020_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi021Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame021_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi021Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame021_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi021Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame021_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi021Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame021_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi022Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame022_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi022Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame022_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi022Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame022_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi022Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame022_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi023Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame023_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi023Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame023_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi023Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame023_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi023Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame023_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi024Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame024_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi024Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame024_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi024Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame024_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi024Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame024_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi025Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame025_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi025Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame025_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi025Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame025_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi025Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame025_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi026Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame026_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi026Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame026_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi026Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame026_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi026Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame026_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi027Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame027_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi027Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame027_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi027Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame027_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi027Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame027_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi028Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame028_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi028Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame028_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi028Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame028_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi028Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame028_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi029Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame029_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi029Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame029_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi029Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame029_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi029Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame029_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi030Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame030_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi030Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame030_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi030Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame030_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi030Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame030_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi031Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame031_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi031Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame031_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi031Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame031_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi031Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame031_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi032Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame032_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi032Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame032_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi032Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame032_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi032Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame032_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi033Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame033_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi033Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame033_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi033Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame033_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi033Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame033_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi034Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame034_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi034Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame034_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi034Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame034_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi034Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame034_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi035Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame035_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi035Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame035_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi035Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame035_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi035Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame035_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi036Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame036_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi036Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame036_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi036Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame036_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi036Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame036_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi037Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame037_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi037Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame037_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi037Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame037_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi037Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame037_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi038Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame038_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi038Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame038_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi038Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame038_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi038Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame038_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi039Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame039_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi039Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame039_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi039Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame039_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi039Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame039_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi040Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame040_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi040Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame040_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi040Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame040_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi040Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame040_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi041Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame041_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi041Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame041_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi041Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame041_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi041Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame041_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi042Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame042_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi042Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame042_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi042Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame042_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi042Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame042_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi043Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame043_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi043Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame043_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi043Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame043_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi043Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame043_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi044Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame044_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi044Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame044_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi044Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame044_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi044Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame044_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi045Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame045_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi045Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame045_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi045Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame045_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi045Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame045_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi046Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame046_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi046Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame046_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi046Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame046_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi046Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame046_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi047Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame047_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi047Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame047_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi047Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame047_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi047Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame047_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi048Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame048_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi048Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame048_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi048Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame048_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi048Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame048_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi049Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame049_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi049Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame049_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi049Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame049_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi049Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame049_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi050Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame050_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi050Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame050_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi050Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame050_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi050Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame050_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi051Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame051_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi051Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame051_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi051Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame051_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi051Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame051_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi052Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame052_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi052Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame052_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi052Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame052_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi052Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame052_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi053Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame053_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi053Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame053_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi053Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame053_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi053Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame053_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi054Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame054_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi054Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame054_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi054Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame054_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi054Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame054_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi055Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame055_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi055Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame055_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi055Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame055_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi055Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame055_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi056Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame056_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi056Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame056_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi056Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame056_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi056Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame056_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi057Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame057_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi057Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame057_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi057Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame057_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi057Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame057_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi058Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame058_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi058Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame058_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi058Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame058_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi058Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame058_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi059Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame059_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi059Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame059_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi059Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame059_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi059Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame059_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi060Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame060_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi060Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame060_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi060Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame060_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi060Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame060_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi061Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame061_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi061Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame061_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi061Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame061_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi061Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame061_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi062Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame062_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi062Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame062_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi062Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame062_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi062Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame062_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi063Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame063_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi063Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame063_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi063Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame063_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi063Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame063_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi064Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame064_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi064Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame064_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi064Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame064_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi064Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame064_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi065Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame065_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi065Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame065_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi065Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame065_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi065Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame065_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi066Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame066_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi066Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame066_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi066Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame066_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi066Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame066_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi067Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame067_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi067Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame067_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi067Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame067_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi067Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame067_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi068Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame068_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi068Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame068_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi068Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame068_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi068Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame068_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi069Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame069_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi069Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame069_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi069Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame069_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi069Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame069_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi070Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame070_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi070Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame070_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi070Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame070_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi070Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame070_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi071Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame071_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi071Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame071_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi071Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame071_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi071Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame071_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi072Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame072_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi072Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame072_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi072Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame072_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi072Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame072_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi073Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame073_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi073Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame073_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi073Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame073_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi073Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame073_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi074Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame074_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi074Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame074_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi074Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame074_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi074Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame074_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi075Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame075_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi075Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame075_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi075Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame075_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi075Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame075_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi076Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame076_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi076Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame076_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi076Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame076_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi076Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame076_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi077Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame077_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi077Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame077_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi077Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame077_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi077Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame077_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi078Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame078_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi078Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame078_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi078Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame078_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi078Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame078_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi079Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame079_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi079Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame079_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi079Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame079_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi079Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame079_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi080Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame080_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi080Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame080_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi080Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame080_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi080Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame080_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi081Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame081_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi081Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame081_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi081Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame081_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi081Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame081_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi082Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame082_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi082Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame082_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi082Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame082_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi082Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame082_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi083Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame083_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi083Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame083_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi083Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame083_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi083Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame083_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi084Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame084_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi084Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame084_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi084Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame084_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi084Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame084_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi085Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame085_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi085Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame085_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi085Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame085_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi085Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame085_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi086Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame086_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi086Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame086_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi086Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame086_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi086Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame086_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi087Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame087_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi087Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame087_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi087Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame087_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi087Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame087_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi088Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame088_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi088Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame088_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi088Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame088_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi088Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame088_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi089Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame089_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi089Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame089_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi089Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame089_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi089Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame089_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi090Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame090_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi090Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame090_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi090Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame090_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi090Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame090_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi091Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame091_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi091Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame091_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi091Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame091_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi091Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame091_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi092Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame092_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi092Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame092_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi092Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame092_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi092Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame092_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi093Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame093_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi093Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame093_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi093Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame093_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi093Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame093_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi094Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame094_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi094Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame094_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi094Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame094_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi094Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame094_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi095Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame095_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi095Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame095_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi095Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame095_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi095Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame095_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi096Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame096_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi096Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame096_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi096Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame096_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi096Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame096_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi097Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame097_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi097Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame097_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi097Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame097_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi097Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame097_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi098Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame098_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi098Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame098_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi098Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame098_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi098Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame098_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi099Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame099_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi099Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame099_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi099Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame099_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi099Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame099_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi100Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame100_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi100Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame100_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi100Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame100_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi100Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame100_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi101Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame101_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi101Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame101_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi101Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame101_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi101Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame101_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi102Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame102_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi102Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame102_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi102Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame102_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi102Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame102_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi103Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame103_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi103Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame103_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi103Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame103_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi103Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame103_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi104Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame104_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi104Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame104_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi104Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame104_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi104Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame104_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi105Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame105_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi105Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame105_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi105Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame105_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi105Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame105_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi106Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame106_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi106Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame106_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi106Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame106_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi106Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame106_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi107Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame107_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi107Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame107_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi107Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame107_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi107Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame107_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi108Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame108_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi108Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame108_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi108Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame108_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi108Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame108_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi109Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame109_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi109Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame109_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi109Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame109_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi109Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame109_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi110Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame110_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi110Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame110_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi110Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame110_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi110Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame110_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi111Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame111_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi111Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame111_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi111Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame111_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi111Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame111_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi112Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame112_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi112Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame112_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi112Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame112_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi112Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame112_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi113Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame113_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi113Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame113_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi113Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame113_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi113Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame113_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi114Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame114_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi114Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame114_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi114Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame114_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi114Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame114_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi115Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame115_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi115Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame115_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi115Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame115_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi115Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame115_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi116Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame116_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi116Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame116_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi116Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame116_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi116Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame116_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi117Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame117_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi117Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame117_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi117Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame117_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi117Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame117_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi118Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame118_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi118Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame118_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi118Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame118_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi118Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame118_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi119Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame119_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi119Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame119_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi119Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame119_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi119Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame119_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi120Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame120_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi120Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame120_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi120Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame120_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi120Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame120_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi121Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame121_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi121Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame121_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi121Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame121_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi121Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame121_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi122Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame122_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi122Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame122_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi122Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame122_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi122Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame122_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi123Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame123_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi123Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame123_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi123Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame123_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi123Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame123_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi124Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame124_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi124Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame124_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi124Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame124_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi124Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame124_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi125Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame125_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi125Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame125_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi125Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame125_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi125Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame125_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi126Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame126_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi126Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame126_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi126Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame126_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi126Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame126_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi127Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame127_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi127Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame127_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi127Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame127_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi127Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame127_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi128Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame128_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi128Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame128_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi128Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame128_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi128Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame128_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi129Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame129_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi129Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame129_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi129Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame129_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi129Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame129_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi130Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame130_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi130Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame130_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi130Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame130_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi130Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame130_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi131Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame131_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi131Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame131_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi131Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame131_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi131Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame131_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi132Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame132_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi132Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame132_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi132Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame132_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi132Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame132_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi133Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame133_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi133Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame133_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi133Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame133_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi133Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame133_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi134Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame134_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi134Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame134_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi134Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame134_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi134Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame134_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi135Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame135_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi135Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame135_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi135Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame135_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi135Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame135_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi136Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame136_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi136Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame136_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi136Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame136_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi136Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame136_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi137Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame137_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi137Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame137_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi137Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame137_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi137Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame137_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi138Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame138_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi138Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame138_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi138Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame138_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi138Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame138_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi139Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame139_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi139Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame139_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi139Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame139_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi139Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame139_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi140Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame140_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi140Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame140_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi140Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame140_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi140Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame140_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi141Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame141_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi141Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame141_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi141Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame141_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi141Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame141_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi142Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame142_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi142Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame142_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi142Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame142_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi142Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame142_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi143Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame143_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi143Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame143_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi143Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame143_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi143Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame143_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi144Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame144_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi144Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame144_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi144Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame144_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi144Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame144_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi145Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame145_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi145Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame145_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi145Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame145_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi145Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame145_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi146Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame146_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi146Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame146_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi146Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame146_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi146Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame146_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi147Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame147_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi147Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame147_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi147Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame147_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi147Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame147_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi148Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame148_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi148Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame148_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi148Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame148_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi148Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame148_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi149Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame149_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi149Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame149_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi149Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame149_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi149Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame149_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi150Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame150_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi150Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame150_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi150Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame150_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi150Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame150_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi151Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame151_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi151Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame151_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi151Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame151_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi151Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame151_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi152Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame152_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi152Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame152_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi152Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame152_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi152Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame152_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi153Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame153_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi153Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame153_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi153Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame153_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi153Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame153_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi154Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame154_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi154Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame154_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi154Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame154_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi154Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame154_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi155Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame155_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi155Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame155_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi155Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame155_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi155Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame155_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi156Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame156_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi156Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame156_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi156Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame156_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi156Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame156_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi157Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame157_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi157Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame157_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi157Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame157_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi157Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame157_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi158Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame158_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi158Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame158_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi158Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame158_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi158Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame158_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi159Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame159_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi159Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame159_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi159Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame159_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi159Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame159_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi160Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame160_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi160Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame160_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi160Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame160_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi160Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame160_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi161Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame161_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi161Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame161_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi161Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame161_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi161Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame161_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi162Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame162_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi162Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame162_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi162Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame162_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi162Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame162_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi163Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame163_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi163Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame163_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi163Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame163_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi163Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame163_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi164Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame164_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi164Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame164_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi164Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame164_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi164Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame164_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi165Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame165_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi165Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame165_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi165Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame165_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi165Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame165_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi166Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame166_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi166Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame166_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi166Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame166_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi166Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame166_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi167Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame167_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi167Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame167_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi167Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame167_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi167Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame167_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi168Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame168_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi168Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame168_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi168Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame168_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi168Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame168_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi169Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame169_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi169Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame169_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi169Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame169_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi169Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame169_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi170Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame170_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi170Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame170_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi170Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame170_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi170Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame170_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi171Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame171_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi171Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame171_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi171Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame171_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi171Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame171_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi172Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame172_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi172Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame172_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi172Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame172_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi172Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame172_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi173Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame173_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi173Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame173_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi173Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame173_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi173Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame173_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi174Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame174_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi174Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame174_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi174Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame174_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi174Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame174_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi175Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame175_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi175Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame175_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi175Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame175_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi175Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame175_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi176Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame176_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi176Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame176_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi176Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame176_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi176Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame176_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi177Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame177_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi177Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame177_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi177Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame177_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi177Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame177_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi178Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame178_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi178Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame178_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi178Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame178_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi178Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame178_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi179Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame179_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi179Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame179_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi179Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame179_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi179Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame179_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi180Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame180_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi180Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame180_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi180Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame180_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi180Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame180_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi181Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame181_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi181Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame181_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi181Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame181_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi181Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame181_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi182Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame182_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi182Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame182_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi182Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame182_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi182Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame182_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi183Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame183_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi183Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame183_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi183Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame183_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi183Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame183_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi184Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame184_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi184Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame184_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi184Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame184_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi184Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame184_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi185Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame185_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi185Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame185_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi185Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame185_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi185Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame185_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi186Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame186_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi186Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame186_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi186Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame186_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi186Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame186_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi187Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame187_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi187Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame187_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi187Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame187_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi187Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame187_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi188Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame188_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi188Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame188_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi188Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame188_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi188Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame188_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi189Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame189_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi189Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame189_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi189Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame189_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi189Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame189_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi190Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame190_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi190Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame190_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi190Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame190_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi190Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame190_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi191Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame191_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi191Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame191_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi191Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame191_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi191Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame191_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi192Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame192_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi192Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame192_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi192Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame192_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi192Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame192_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi193Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame193_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi193Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame193_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi193Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame193_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi193Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame193_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi194Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame194_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi194Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame194_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi194Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame194_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi194Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame194_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi195Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame195_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi195Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame195_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi195Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame195_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi195Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame195_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi196Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame196_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi196Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame196_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi196Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame196_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi196Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame196_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi197Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame197_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi197Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame197_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi197Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame197_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi197Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame197_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi198Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame198_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi198Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame198_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi198Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame198_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi198Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame198_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi199Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame199_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi199Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame199_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi199Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame199_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi199Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame199_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi200Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame200_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi200Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame200_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi200Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame200_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi200Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame200_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi201Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame201_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi201Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame201_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi201Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame201_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi201Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame201_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi202Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame202_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi202Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame202_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi202Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame202_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi202Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame202_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi203Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame203_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi203Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame203_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi203Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame203_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi203Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame203_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi204Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame204_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi204Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame204_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi204Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame204_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi204Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame204_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi205Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame205_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi205Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame205_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi205Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame205_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi205Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame205_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi206Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame206_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi206Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame206_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi206Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame206_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi206Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame206_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi207Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame207_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi207Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame207_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi207Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame207_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi207Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame207_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi208Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame208_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi208Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame208_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi208Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame208_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi208Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame208_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi209Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame209_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi209Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame209_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi209Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame209_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi209Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame209_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi210Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame210_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi210Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame210_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi210Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame210_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi210Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame210_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi211Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame211_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi211Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame211_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi211Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame211_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi211Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame211_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi212Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame212_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi212Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame212_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi212Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame212_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi212Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame212_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi213Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame213_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi213Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame213_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi213Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame213_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi213Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame213_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi214Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame214_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi214Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame214_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi214Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame214_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi214Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame214_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi215Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame215_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi215Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame215_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi215Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame215_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi215Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame215_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi216Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame216_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi216Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame216_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi216Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame216_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi216Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame216_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi217Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame217_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi217Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame217_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi217Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame217_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi217Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame217_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi218Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame218_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi218Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame218_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi218Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame218_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi218Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame218_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi219Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame219_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi219Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame219_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi219Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame219_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi219Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame219_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi220Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame220_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi220Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame220_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi220Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame220_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi220Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame220_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi221Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame221_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi221Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame221_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi221Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame221_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi221Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame221_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi222Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame222_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi222Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame222_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi222Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame222_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi222Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame222_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi223Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame223_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi223Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame223_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi223Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame223_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi223Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame223_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi224Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame224_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi224Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame224_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi224Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame224_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi224Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame224_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi225Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame225_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi225Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame225_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi225Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame225_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi225Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame225_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi226Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame226_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi226Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame226_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi226Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame226_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi226Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame226_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi227Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame227_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi227Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame227_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi227Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame227_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi227Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame227_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi228Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame228_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi228Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame228_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi228Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame228_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi228Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame228_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi229Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame229_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi229Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame229_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi229Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame229_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi229Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame229_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi230Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame230_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi230Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame230_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi230Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame230_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi230Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame230_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi231Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame231_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi231Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame231_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi231Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame231_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi231Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame231_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi232Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame232_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi232Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame232_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi232Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame232_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi232Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame232_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi233Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame233_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi233Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame233_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi233Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame233_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi233Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame233_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi234Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame234_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi234Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame234_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi234Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame234_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi234Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame234_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi235Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame235_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi235Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame235_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi235Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame235_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi235Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame235_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi236Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame236_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi236Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame236_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi236Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame236_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi236Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame236_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi237Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame237_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi237Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame237_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi237Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame237_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi237Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame237_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi238Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame238_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi238Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame238_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi238Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame238_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi238Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame238_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi239Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame239_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi239Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame239_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi239Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame239_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi239Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame239_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi240Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame240_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi240Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame240_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi240Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame240_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi240Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame240_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi241Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame241_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi241Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame241_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi241Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame241_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi241Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame241_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi242Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame242_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi242Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame242_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi242Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame242_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi242Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame242_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi243Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame243_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi243Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame243_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi243Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame243_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi243Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame243_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi244Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame244_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi244Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame244_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi244Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame244_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi244Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame244_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi245Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame245_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi245Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame245_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi245Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame245_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi245Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame245_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi246Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame246_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi246Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame246_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi246Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame246_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi246Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame246_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi247Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame247_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi247Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame247_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi247Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame247_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi247Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame247_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi248Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame248_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi248Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame248_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi248Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame248_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi248Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame248_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi249Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame249_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi249Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame249_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi249Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame249_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi249Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame249_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi250Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame250_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi250Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame250_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi250Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame250_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi250Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame250_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi251Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame251_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi251Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame251_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi251Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame251_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi251Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame251_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi252Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame252_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi252Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame252_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi252Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame252_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi252Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame252_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi253Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame253_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi253Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame253_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi253Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame253_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi253Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame253_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi254Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame254_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi254Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame254_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi254Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame254_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi254Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame254_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi255Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame255_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi255Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame255_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi255Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame255_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi255Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame255_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi256Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame256_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi256Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame256_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi256Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame256_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi256Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame256_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi257Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame257_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi257Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame257_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi257Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame257_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi257Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame257_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi258Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame258_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi258Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame258_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi258Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame258_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi258Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame258_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi259Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame259_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi259Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame259_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi259Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame259_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi259Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame259_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi260Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame260_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi260Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame260_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi260Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame260_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi260Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame260_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi261Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame261_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi261Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame261_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi261Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame261_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi261Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame261_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi262Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame262_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi262Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame262_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi262Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame262_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi262Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame262_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi263Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame263_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi263Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame263_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi263Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame263_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi263Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame263_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi264Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame264_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi264Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame264_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi264Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame264_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi264Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame264_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi265Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame265_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi265Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame265_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi265Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame265_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi265Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame265_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi266Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame266_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi266Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame266_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi266Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame266_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi266Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame266_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi267Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame267_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi267Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame267_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi267Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame267_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi267Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame267_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi268Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame268_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi268Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame268_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi268Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame268_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi268Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame268_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi269Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame269_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi269Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame269_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi269Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame269_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi269Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame269_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi270Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame270_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi270Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame270_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi270Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame270_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi270Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame270_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi271Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame271_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi271Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame271_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi271Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame271_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi271Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame271_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi272Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame272_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi272Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame272_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi272Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame272_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi272Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame272_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi273Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame273_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi273Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame273_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi273Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame273_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi273Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame273_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi274Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame274_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi274Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame274_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi274Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame274_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi274Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame274_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi275Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame275_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi275Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame275_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi275Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame275_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi275Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame275_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi276Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame276_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi276Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame276_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi276Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame276_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi276Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame276_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi277Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame277_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi277Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame277_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi277Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame277_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi277Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame277_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi278Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame278_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi278Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame278_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi278Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame278_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi278Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame278_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi279Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame279_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi279Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame279_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi279Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame279_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi279Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame279_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi280Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame280_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi280Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame280_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi280Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame280_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi280Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame280_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi281Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame281_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi281Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame281_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi281Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame281_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi281Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame281_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi282Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame282_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi282Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame282_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi282Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame282_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi282Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame282_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi283Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame283_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi283Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame283_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi283Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame283_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi283Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame283_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi284Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame284_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi284Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame284_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi284Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame284_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi284Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame284_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi285Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame285_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi285Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame285_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi285Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame285_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi285Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame285_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi286Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame286_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi286Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame286_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi286Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame286_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi286Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame286_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi287Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame287_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi287Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame287_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi287Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame287_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi287Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame287_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi288Wheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame288_wheel3"; + +static const ALIGN_ASSET(2) char gKartLuigi288Wheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame288_wheel1"; + +static const ALIGN_ASSET(2) char gKartLuigi288Wheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame288_wheel0"; + +static const ALIGN_ASSET(2) char gKartLuigi288Wheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame288_wheel2"; + +static const ALIGN_ASSET(2) char gKartLuigi289[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame289"; + +static const ALIGN_ASSET(2) char gKartLuigi290[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame290"; + +static const ALIGN_ASSET(2) char gKartLuigi291[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame291"; + +static const ALIGN_ASSET(2) char gKartLuigi292[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame292"; + +static const ALIGN_ASSET(2) char gKartLuigi293[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame293"; + +static const ALIGN_ASSET(2) char gKartLuigi294[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame294"; + +static const ALIGN_ASSET(2) char gKartLuigi295[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame295"; + +static const ALIGN_ASSET(2) char gKartLuigi296[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame296"; + +static const ALIGN_ASSET(2) char gKartLuigi297[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame297"; + +static const ALIGN_ASSET(2) char gKartLuigi298[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame298"; + +static const ALIGN_ASSET(2) char gKartLuigi299[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame299"; + +static const ALIGN_ASSET(2) char gKartLuigi300[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame300"; + +static const ALIGN_ASSET(2) char gKartLuigi301[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame301"; + +static const ALIGN_ASSET(2) char gKartLuigi302[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame302"; + +static const ALIGN_ASSET(2) char gKartLuigi303[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame303"; + +static const ALIGN_ASSET(2) char gKartLuigi304[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame304"; + +static const ALIGN_ASSET(2) char gKartLuigi305[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame305"; + +static const ALIGN_ASSET(2) char gKartLuigi306[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame306"; + +static const ALIGN_ASSET(2) char gKartLuigi307[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame307"; + +static const ALIGN_ASSET(2) char gKartLuigi308[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame308"; + +static const ALIGN_ASSET(2) char gKartLuigi309[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame309"; + +static const ALIGN_ASSET(2) char gKartLuigi310[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame310"; + +static const ALIGN_ASSET(2) char gKartLuigi311[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame311"; + +static const ALIGN_ASSET(2) char gKartLuigi312[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame312"; + +static const ALIGN_ASSET(2) char gKartLuigi313[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame313"; + +static const ALIGN_ASSET(2) char gKartLuigi314[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame314"; + +static const ALIGN_ASSET(2) char gKartLuigi315[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame315"; + +static const ALIGN_ASSET(2) char gKartLuigi316[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame316"; + +static const ALIGN_ASSET(2) char gKartLuigi317[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame317"; + +static const ALIGN_ASSET(2) char gKartLuigi318[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame318"; + +static const ALIGN_ASSET(2) char gKartLuigi319[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame319"; + +static const ALIGN_ASSET(2) char gKartLuigi320[] = "__OTR__textures/karts/luigi_kart/luigi_kart_frame320"; + +static const ALIGN_ASSET(2) char gKartLuigi000TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_000_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi000TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_000_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi000TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_000_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi000TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_000_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi001TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_001_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi001TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_001_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi001TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_001_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi001TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_001_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi002TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_002_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi002TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_002_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi002TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_002_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi002TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_002_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi003TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_003_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi003TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_003_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi003TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_003_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi003TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_003_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi004TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_004_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi004TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_004_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi004TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_004_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi004TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_004_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi005TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_005_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi005TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_005_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi005TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_005_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi005TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_005_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi006TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_006_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi006TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_006_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi006TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_006_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi006TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_006_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi007TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_007_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi007TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_007_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi007TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_007_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi007TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_007_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi008TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_008_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi008TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_008_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi008TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_008_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi008TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_008_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi009TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_009_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi009TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_009_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi009TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_009_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi009TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_009_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi010TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_010_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi010TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_010_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi010TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_010_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi010TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_010_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi011TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_011_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi011TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_011_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi011TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_011_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi011TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_011_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi012TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_012_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi012TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_012_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi012TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_012_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi012TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_012_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi013TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_013_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi013TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_013_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi013TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_013_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi013TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_013_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi014TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_014_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi014TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_014_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi014TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_014_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi014TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_014_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi015TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_015_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi015TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_015_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi015TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_015_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi015TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_015_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi016TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_016_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi016TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_016_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi016TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_016_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi016TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_016_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi017TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_017_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi017TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_017_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi017TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_017_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi017TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_017_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi018TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_018_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi018TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_018_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi018TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_018_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi018TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_018_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi019TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_019_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi019TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_019_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi019TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_019_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi019TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_019_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi020TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_020_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi020TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_020_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi020TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_020_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi020TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_020_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi021TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_021_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi021TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_021_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi021TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_021_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi021TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_021_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi022TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_022_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi022TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_022_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi022TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_022_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi022TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_022_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi023TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_023_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi023TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_023_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi023TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_023_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi023TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_023_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi024TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_024_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi024TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_024_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi024TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_024_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi024TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_024_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi025TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_025_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi025TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_025_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi025TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_025_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi025TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_025_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi026TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_026_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi026TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_026_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi026TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_026_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi026TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_026_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi027TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_027_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi027TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_027_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi027TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_027_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi027TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_027_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi028TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_028_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi028TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_028_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi028TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_028_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi028TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_028_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi029TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_029_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi029TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_029_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi029TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_029_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi029TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_029_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi030TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_030_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi030TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_030_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi030TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_030_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi030TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_030_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi031TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_031_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi031TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_031_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi031TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_031_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi031TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_031_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi032TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_032_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi032TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_032_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi032TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_032_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi032TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_032_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi033TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_033_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi033TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_033_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi033TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_033_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi033TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_033_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi034TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_034_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi034TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_034_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi034TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_034_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi034TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_034_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi035TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_035_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi035TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_035_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi035TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_035_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi035TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_035_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi036TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_036_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi036TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_036_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi036TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_036_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi036TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_036_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi037TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_037_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi037TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_037_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi037TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_037_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi037TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_037_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi038TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_038_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi038TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_038_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi038TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_038_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi038TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_038_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi039TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_039_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi039TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_039_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi039TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_039_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi039TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_039_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi040TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_040_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi040TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_040_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi040TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_040_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi040TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_040_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi041TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_041_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi041TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_041_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi041TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_041_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi041TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_041_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi042TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_042_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi042TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_042_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi042TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_042_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi042TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_042_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi043TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_043_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi043TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_043_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi043TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_043_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi043TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_043_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi044TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_044_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi044TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_044_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi044TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_044_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi044TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_044_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi045TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_045_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi045TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_045_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi045TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_045_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi045TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_045_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi046TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_046_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi046TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_046_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi046TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_046_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi046TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_046_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi047TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_047_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi047TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_047_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi047TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_047_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi047TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_047_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi048TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_048_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi048TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_048_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi048TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_048_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi048TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_048_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi049TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_049_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi049TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_049_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi049TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_049_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi049TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_049_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi050TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_050_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi050TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_050_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi050TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_050_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi050TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_050_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi051TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_051_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi051TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_051_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi051TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_051_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi051TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_051_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi052TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_052_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi052TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_052_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi052TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_052_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi052TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_052_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi053TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_053_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi053TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_053_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi053TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_053_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi053TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_053_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi054TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_054_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi054TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_054_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi054TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_054_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi054TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_054_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi055TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_055_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi055TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_055_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi055TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_055_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi055TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_055_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi056TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_056_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi056TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_056_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi056TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_056_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi056TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_056_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi057TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_057_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi057TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_057_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi057TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_057_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi057TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_057_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi058TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_058_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi058TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_058_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi058TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_058_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi058TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_058_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi059TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_059_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi059TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_059_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi059TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_059_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi059TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_059_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi060TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_060_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi060TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_060_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi060TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_060_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi060TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_060_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi061TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_061_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi061TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_061_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi061TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_061_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi061TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_061_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi062TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_062_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi062TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_062_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi062TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_062_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi062TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_062_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi063TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_063_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi063TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_063_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi063TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_063_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi063TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_063_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi064TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_064_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi064TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_064_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi064TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_064_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi064TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_064_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi065TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_065_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi065TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_065_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi065TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_065_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi065TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_065_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi066TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_066_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi066TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_066_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi066TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_066_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi066TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_066_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi067TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_067_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi067TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_067_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi067TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_067_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi067TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_067_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi068TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_068_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi068TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_068_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi068TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_068_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi068TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_068_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi069TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_069_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi069TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_069_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi069TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_069_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi069TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_069_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi070TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_070_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi070TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_070_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi070TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_070_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi070TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_070_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi071TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_071_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi071TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_071_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi071TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_071_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi071TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_071_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi072TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_072_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi072TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_072_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi072TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_072_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi072TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_072_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi073TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_073_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi073TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_073_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi073TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_073_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi073TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_073_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi074TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_074_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi074TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_074_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi074TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_074_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi074TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_074_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi075TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_075_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi075TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_075_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi075TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_075_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi075TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_075_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi076TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_076_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi076TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_076_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi076TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_076_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi076TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_076_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi077TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_077_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi077TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_077_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi077TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_077_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi077TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_077_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi078TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_078_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi078TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_078_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi078TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_078_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi078TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_078_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi079TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_079_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi079TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_079_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi079TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_079_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi079TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_079_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi080TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_080_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi080TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_080_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi080TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_080_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi080TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_080_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi081TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_081_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi081TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_081_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi081TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_081_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi081TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_081_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi082TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_082_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi082TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_082_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi082TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_082_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi082TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_082_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi083TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_083_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi083TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_083_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi083TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_083_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi083TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_083_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi084TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_084_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi084TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_084_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi084TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_084_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi084TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_084_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi085TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_085_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi085TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_085_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi085TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_085_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi085TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_085_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi086TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_086_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi086TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_086_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi086TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_086_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi086TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_086_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi087TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_087_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi087TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_087_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi087TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_087_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi087TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_087_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi088TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_088_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi088TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_088_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi088TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_088_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi088TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_088_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi089TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_089_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi089TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_089_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi089TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_089_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi089TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_089_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi090TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_090_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi090TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_090_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi090TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_090_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi090TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_090_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi091TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_091_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi091TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_091_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi091TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_091_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi091TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_091_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi092TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_092_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi092TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_092_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi092TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_092_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi092TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_092_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi093TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_093_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi093TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_093_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi093TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_093_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi093TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_093_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi094TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_094_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi094TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_094_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi094TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_094_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi094TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_094_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi095TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_095_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi095TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_095_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi095TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_095_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi095TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_095_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi096TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_096_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi096TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_096_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi096TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_096_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi096TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_096_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi097TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_097_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi097TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_097_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi097TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_097_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi097TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_097_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi098TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_098_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi098TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_098_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi098TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_098_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi098TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_098_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi099TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_099_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi099TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_099_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi099TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_099_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi099TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_099_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi100TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_100_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi100TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_100_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi100TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_100_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi100TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_100_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi101TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_101_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi101TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_101_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi101TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_101_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi101TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_101_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi102TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_102_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi102TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_102_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi102TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_102_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi102TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_102_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi103TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_103_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi103TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_103_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi103TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_103_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi103TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_103_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi104TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_104_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi104TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_104_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi104TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_104_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi104TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_104_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi105TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_105_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi105TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_105_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi105TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_105_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi105TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_105_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi106TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_106_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi106TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_106_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi106TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_106_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi106TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_106_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi107TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_107_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi107TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_107_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi107TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_107_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi107TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_107_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi108TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_108_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi108TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_108_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi108TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_108_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi108TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_108_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi109TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_109_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi109TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_109_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi109TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_109_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi109TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_109_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi110TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_110_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi110TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_110_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi110TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_110_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi110TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_110_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi111TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_111_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi111TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_111_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi111TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_111_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi111TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_111_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi112TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_112_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi112TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_112_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi112TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_112_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi112TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_112_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi113TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_113_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi113TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_113_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi113TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_113_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi113TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_113_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi114TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_114_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi114TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_114_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi114TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_114_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi114TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_114_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi115TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_115_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi115TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_115_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi115TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_115_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi115TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_115_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi116TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_116_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi116TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_116_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi116TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_116_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi116TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_116_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi117TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_117_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi117TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_117_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi117TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_117_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi117TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_117_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi118TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_118_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi118TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_118_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi118TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_118_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi118TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_118_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi119TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_119_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi119TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_119_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi119TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_119_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi119TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_119_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi120TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_120_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi120TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_120_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi120TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_120_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi120TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_120_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi121TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_121_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi121TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_121_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi121TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_121_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi121TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_121_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi122TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_122_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi122TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_122_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi122TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_122_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi122TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_122_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi123TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_123_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi123TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_123_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi123TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_123_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi123TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_123_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi124TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_124_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi124TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_124_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi124TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_124_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi124TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_124_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi125TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_125_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi125TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_125_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi125TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_125_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi125TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_125_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi126TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_126_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi126TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_126_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi126TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_126_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi126TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_126_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi127TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_127_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi127TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_127_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi127TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_127_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi127TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_127_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi128TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_128_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi128TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_128_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi128TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_128_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi128TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_128_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi129TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_129_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi129TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_129_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi129TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_129_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi129TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_129_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi130TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_130_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi130TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_130_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi130TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_130_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi130TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_130_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi131TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_131_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi131TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_131_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi131TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_131_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi131TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_131_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi132TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_132_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi132TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_132_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi132TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_132_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi132TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_132_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi133TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_133_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi133TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_133_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi133TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_133_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi133TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_133_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi134TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_134_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi134TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_134_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi134TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_134_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi134TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_134_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi135TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_135_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi135TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_135_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi135TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_135_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi135TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_135_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi136TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_136_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi136TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_136_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi136TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_136_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi136TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_136_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi137TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_137_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi137TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_137_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi137TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_137_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi137TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_137_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi138TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_138_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi138TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_138_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi138TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_138_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi138TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_138_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi139TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_139_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi139TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_139_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi139TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_139_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi139TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_139_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi140TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_140_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi140TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_140_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi140TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_140_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi140TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_140_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi141TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_141_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi141TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_141_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi141TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_141_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi141TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_141_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi142TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_142_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi142TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_142_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi142TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_142_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi142TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_142_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi143TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_143_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi143TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_143_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi143TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_143_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi143TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_143_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi144TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_144_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi144TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_144_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi144TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_144_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi144TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_144_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi145TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_145_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi145TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_145_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi145TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_145_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi145TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_145_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi146TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_146_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi146TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_146_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi146TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_146_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi146TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_146_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi147TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_147_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi147TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_147_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi147TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_147_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi147TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_147_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi148TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_148_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi148TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_148_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi148TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_148_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi148TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_148_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi149TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_149_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi149TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_149_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi149TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_149_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi149TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_149_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi150TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_150_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi150TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_150_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi150TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_150_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi150TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_150_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi151TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_151_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi151TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_151_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi151TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_151_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi151TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_151_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi152TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_152_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi152TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_152_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi152TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_152_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi152TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_152_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi153TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_153_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi153TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_153_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi153TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_153_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi153TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_153_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi154TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_154_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi154TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_154_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi154TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_154_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi154TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_154_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi155TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_155_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi155TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_155_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi155TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_155_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi155TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_155_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi156TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_156_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi156TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_156_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi156TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_156_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi156TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_156_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi157TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_157_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi157TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_157_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi157TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_157_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi157TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_157_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi158TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_158_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi158TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_158_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi158TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_158_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi158TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_158_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi159TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_159_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi159TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_159_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi159TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_159_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi159TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_159_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi160TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_160_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi160TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_160_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi160TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_160_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi160TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_160_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi161TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_161_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi161TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_161_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi161TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_161_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi161TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_161_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi162TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_162_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi162TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_162_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi162TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_162_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi162TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_162_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi163TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_163_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi163TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_163_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi163TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_163_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi163TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_163_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi164TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_164_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi164TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_164_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi164TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_164_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi164TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_164_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi165TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_165_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi165TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_165_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi165TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_165_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi165TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_165_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi166TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_166_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi166TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_166_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi166TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_166_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi166TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_166_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi167TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_167_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi167TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_167_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi167TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_167_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi167TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_167_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi168TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_168_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi168TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_168_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi168TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_168_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi168TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_168_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi169TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_169_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi169TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_169_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi169TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_169_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi169TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_169_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi170TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_170_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi170TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_170_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi170TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_170_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi170TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_170_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi171TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_171_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi171TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_171_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi171TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_171_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi171TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_171_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi172TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_172_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi172TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_172_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi172TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_172_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi172TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_172_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi173TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_173_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi173TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_173_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi173TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_173_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi173TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_173_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi174TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_174_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi174TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_174_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi174TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_174_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi174TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_174_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi175TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_175_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi175TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_175_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi175TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_175_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi175TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_175_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi176TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_176_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi176TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_176_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi176TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_176_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi176TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_176_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi177TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_177_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi177TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_177_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi177TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_177_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi177TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_177_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi178TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_178_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi178TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_178_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi178TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_178_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi178TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_178_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi179TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_179_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi179TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_179_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi179TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_179_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi179TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_179_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi180TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_180_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi180TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_180_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi180TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_180_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi180TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_180_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi181TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_181_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi181TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_181_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi181TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_181_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi181TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_181_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi182TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_182_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi182TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_182_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi182TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_182_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi182TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_182_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi183TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_183_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi183TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_183_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi183TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_183_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi183TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_183_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi184TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_184_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi184TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_184_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi184TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_184_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi184TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_184_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi185TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_185_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi185TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_185_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi185TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_185_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi185TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_185_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi186TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_186_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi186TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_186_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi186TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_186_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi186TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_186_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi187TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_187_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi187TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_187_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi187TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_187_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi187TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_187_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi188TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_188_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi188TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_188_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi188TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_188_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi188TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_188_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi189TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_189_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi189TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_189_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi189TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_189_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi189TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_189_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi190TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_190_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi190TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_190_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi190TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_190_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi190TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_190_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi191TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_191_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi191TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_191_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi191TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_191_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi191TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_191_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi192TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_192_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi192TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_192_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi192TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_192_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi192TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_192_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi193TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_193_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi193TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_193_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi193TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_193_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi193TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_193_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi194TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_194_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi194TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_194_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi194TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_194_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi194TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_194_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi195TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_195_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi195TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_195_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi195TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_195_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi195TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_195_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi196TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_196_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi196TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_196_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi196TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_196_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi196TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_196_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi197TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_197_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi197TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_197_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi197TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_197_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi197TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_197_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi198TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_198_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi198TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_198_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi198TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_198_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi198TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_198_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi199TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_199_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi199TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_199_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi199TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_199_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi199TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_199_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi200TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_200_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi200TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_200_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi200TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_200_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi200TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_200_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi201TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_201_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi201TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_201_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi201TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_201_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi201TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_201_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi202TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_202_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi202TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_202_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi202TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_202_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi202TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_202_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi203TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_203_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi203TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_203_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi203TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_203_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi203TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_203_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi204TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_204_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi204TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_204_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi204TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_204_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi204TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_204_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi205TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_205_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi205TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_205_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi205TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_205_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi205TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_205_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi206TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_206_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi206TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_206_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi206TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_206_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi206TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_206_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi207TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_207_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi207TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_207_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi207TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_207_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi207TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_207_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi208TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_208_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi208TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_208_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi208TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_208_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi208TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_208_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi209TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_209_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi209TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_209_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi209TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_209_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi209TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_209_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi210TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_210_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi210TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_210_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi210TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_210_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi210TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_210_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi211TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_211_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi211TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_211_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi211TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_211_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi211TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_211_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi212TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_212_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi212TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_212_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi212TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_212_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi212TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_212_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi213TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_213_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi213TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_213_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi213TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_213_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi213TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_213_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi214TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_214_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi214TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_214_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi214TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_214_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi214TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_214_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi215TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_215_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi215TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_215_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi215TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_215_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi215TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_215_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi216TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_216_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi216TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_216_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi216TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_216_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi216TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_216_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi217TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_217_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi217TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_217_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi217TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_217_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi217TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_217_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi218TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_218_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi218TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_218_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi218TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_218_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi218TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_218_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi219TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_219_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi219TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_219_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi219TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_219_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi219TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_219_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi220TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_220_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi220TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_220_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi220TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_220_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi220TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_220_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi221TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_221_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi221TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_221_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi221TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_221_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi221TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_221_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi222TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_222_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi222TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_222_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi222TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_222_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi222TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_222_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi223TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_223_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi223TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_223_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi223TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_223_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi223TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_223_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi224TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_224_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi224TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_224_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi224TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_224_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi224TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_224_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi225TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_225_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi225TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_225_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi225TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_225_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi225TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_225_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi226TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_226_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi226TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_226_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi226TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_226_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi226TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_226_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi227TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_227_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi227TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_227_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi227TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_227_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi227TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_227_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi228TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_228_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi228TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_228_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi228TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_228_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi228TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_228_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi229TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_229_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi229TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_229_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi229TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_229_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi229TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_229_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi230TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_230_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi230TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_230_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi230TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_230_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi230TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_230_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi231TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_231_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi231TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_231_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi231TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_231_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi231TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_231_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi232TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_232_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi232TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_232_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi232TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_232_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi232TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_232_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi233TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_233_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi233TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_233_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi233TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_233_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi233TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_233_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi234TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_234_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi234TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_234_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi234TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_234_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi234TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_234_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi235TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_235_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi235TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_235_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi235TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_235_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi235TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_235_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi236TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_236_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi236TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_236_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi236TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_236_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi236TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_236_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi237TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_237_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi237TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_237_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi237TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_237_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi237TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_237_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi238TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_238_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi238TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_238_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi238TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_238_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi238TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_238_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi239TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_239_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi239TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_239_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi239TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_239_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi239TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_239_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi240TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_240_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi240TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_240_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi240TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_240_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi240TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_240_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi241TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_241_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi241TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_241_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi241TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_241_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi241TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_241_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi242TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_242_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi242TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_242_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi242TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_242_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi242TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_242_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi243TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_243_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi243TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_243_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi243TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_243_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi243TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_243_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi244TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_244_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi244TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_244_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi244TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_244_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi244TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_244_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi245TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_245_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi245TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_245_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi245TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_245_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi245TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_245_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi246TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_246_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi246TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_246_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi246TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_246_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi246TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_246_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi247TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_247_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi247TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_247_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi247TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_247_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi247TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_247_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi248TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_248_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi248TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_248_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi248TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_248_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi248TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_248_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi249TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_249_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi249TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_249_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi249TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_249_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi249TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_249_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi250TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_250_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi250TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_250_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi250TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_250_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi250TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_250_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi251TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_251_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi251TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_251_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi251TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_251_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi251TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_251_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi252TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_252_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi252TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_252_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi252TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_252_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi252TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_252_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi253TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_253_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi253TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_253_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi253TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_253_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi253TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_253_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi254TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_254_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi254TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_254_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi254TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_254_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi254TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_254_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi255TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_255_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi255TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_255_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi255TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_255_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi255TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_255_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi256TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_256_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi256TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_256_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi256TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_256_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi256TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_256_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi257TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_257_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi257TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_257_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi257TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_257_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi257TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_257_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi258TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_258_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi258TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_258_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi258TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_258_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi258TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_258_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi259TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_259_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi259TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_259_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi259TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_259_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi259TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_259_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi260TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_260_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi260TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_260_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi260TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_260_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi260TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_260_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi261TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_261_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi261TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_261_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi261TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_261_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi261TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_261_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi262TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_262_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi262TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_262_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi262TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_262_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi262TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_262_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi263TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_263_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi263TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_263_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi263TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_263_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi263TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_263_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi264TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_264_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi264TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_264_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi264TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_264_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi264TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_264_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi265TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_265_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi265TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_265_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi265TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_265_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi265TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_265_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi266TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_266_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi266TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_266_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi266TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_266_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi266TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_266_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi267TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_267_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi267TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_267_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi267TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_267_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi267TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_267_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi268TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_268_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi268TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_268_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi268TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_268_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi268TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_268_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi269TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_269_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi269TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_269_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi269TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_269_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi269TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_269_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi270TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_270_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi270TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_270_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi270TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_270_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi270TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_270_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi271TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_271_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi271TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_271_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi271TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_271_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi271TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_271_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi272TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_272_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi272TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_272_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi272TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_272_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi272TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_272_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi273TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_273_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi273TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_273_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi273TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_273_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi273TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_273_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi274TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_274_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi274TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_274_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi274TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_274_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi274TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_274_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi275TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_275_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi275TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_275_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi275TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_275_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi275TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_275_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi276TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_276_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi276TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_276_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi276TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_276_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi276TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_276_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi277TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_277_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi277TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_277_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi277TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_277_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi277TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_277_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi278TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_278_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi278TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_278_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi278TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_278_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi278TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_278_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi279TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_279_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi279TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_279_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi279TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_279_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi279TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_279_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi280TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_280_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi280TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_280_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi280TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_280_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi280TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_280_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi281TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_281_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi281TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_281_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi281TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_281_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi281TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_281_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi282TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_282_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi282TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_282_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi282TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_282_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi282TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_282_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi283TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_283_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi283TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_283_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi283TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_283_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi283TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_283_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi284TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_284_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi284TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_284_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi284TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_284_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi284TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_284_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi285TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_285_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi285TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_285_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi285TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_285_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi285TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_285_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi286TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_286_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi286TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_286_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi286TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_286_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi286TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_286_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi287TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_287_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi287TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_287_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi287TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_287_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi287TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_287_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartLuigi288TlutWheel0[] = "__OTR__textures/karts/luigi_kart/luigi_kart_288_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartLuigi288TlutWheel1[] = "__OTR__textures/karts/luigi_kart/luigi_kart_288_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartLuigi288TlutWheel2[] = "__OTR__textures/karts/luigi_kart/luigi_kart_288_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartLuigi288TlutWheel3[] = "__OTR__textures/karts/luigi_kart/luigi_kart_288_tlut_wheel_3"; + +static const char* luigi_kart_wheels[] = { + gKartLuigi000TlutWheel0, + gKartLuigi000TlutWheel1, + gKartLuigi000TlutWheel2, + gKartLuigi000TlutWheel3, + gKartLuigi001TlutWheel0, + gKartLuigi001TlutWheel1, + gKartLuigi001TlutWheel2, + gKartLuigi001TlutWheel3, + gKartLuigi002TlutWheel0, + gKartLuigi002TlutWheel1, + gKartLuigi002TlutWheel2, + gKartLuigi002TlutWheel3, + gKartLuigi003TlutWheel0, + gKartLuigi003TlutWheel1, + gKartLuigi003TlutWheel2, + gKartLuigi003TlutWheel3, + gKartLuigi004TlutWheel0, + gKartLuigi004TlutWheel1, + gKartLuigi004TlutWheel2, + gKartLuigi004TlutWheel3, + gKartLuigi005TlutWheel0, + gKartLuigi005TlutWheel1, + gKartLuigi005TlutWheel2, + gKartLuigi005TlutWheel3, + gKartLuigi006TlutWheel0, + gKartLuigi006TlutWheel1, + gKartLuigi006TlutWheel2, + gKartLuigi006TlutWheel3, + gKartLuigi007TlutWheel0, + gKartLuigi007TlutWheel1, + gKartLuigi007TlutWheel2, + gKartLuigi007TlutWheel3, + gKartLuigi008TlutWheel0, + gKartLuigi008TlutWheel1, + gKartLuigi008TlutWheel2, + gKartLuigi008TlutWheel3, + gKartLuigi009TlutWheel0, + gKartLuigi009TlutWheel1, + gKartLuigi009TlutWheel2, + gKartLuigi009TlutWheel3, + gKartLuigi010TlutWheel0, + gKartLuigi010TlutWheel1, + gKartLuigi010TlutWheel2, + gKartLuigi010TlutWheel3, + gKartLuigi011TlutWheel0, + gKartLuigi011TlutWheel1, + gKartLuigi011TlutWheel2, + gKartLuigi011TlutWheel3, + gKartLuigi012TlutWheel0, + gKartLuigi012TlutWheel1, + gKartLuigi012TlutWheel2, + gKartLuigi012TlutWheel3, + gKartLuigi013TlutWheel0, + gKartLuigi013TlutWheel1, + gKartLuigi013TlutWheel2, + gKartLuigi013TlutWheel3, + gKartLuigi014TlutWheel0, + gKartLuigi014TlutWheel1, + gKartLuigi014TlutWheel2, + gKartLuigi014TlutWheel3, + gKartLuigi015TlutWheel0, + gKartLuigi015TlutWheel1, + gKartLuigi015TlutWheel2, + gKartLuigi015TlutWheel3, + gKartLuigi016TlutWheel0, + gKartLuigi016TlutWheel1, + gKartLuigi016TlutWheel2, + gKartLuigi016TlutWheel3, + gKartLuigi017TlutWheel0, + gKartLuigi017TlutWheel1, + gKartLuigi017TlutWheel2, + gKartLuigi017TlutWheel3, + gKartLuigi018TlutWheel0, + gKartLuigi018TlutWheel1, + gKartLuigi018TlutWheel2, + gKartLuigi018TlutWheel3, + gKartLuigi019TlutWheel0, + gKartLuigi019TlutWheel1, + gKartLuigi019TlutWheel2, + gKartLuigi019TlutWheel3, + gKartLuigi020TlutWheel0, + gKartLuigi020TlutWheel1, + gKartLuigi020TlutWheel2, + gKartLuigi020TlutWheel3, + gKartLuigi021TlutWheel0, + gKartLuigi021TlutWheel1, + gKartLuigi021TlutWheel2, + gKartLuigi021TlutWheel3, + gKartLuigi022TlutWheel0, + gKartLuigi022TlutWheel1, + gKartLuigi022TlutWheel2, + gKartLuigi022TlutWheel3, + gKartLuigi023TlutWheel0, + gKartLuigi023TlutWheel1, + gKartLuigi023TlutWheel2, + gKartLuigi023TlutWheel3, + gKartLuigi024TlutWheel0, + gKartLuigi024TlutWheel1, + gKartLuigi024TlutWheel2, + gKartLuigi024TlutWheel3, + gKartLuigi025TlutWheel0, + gKartLuigi025TlutWheel1, + gKartLuigi025TlutWheel2, + gKartLuigi025TlutWheel3, + gKartLuigi026TlutWheel0, + gKartLuigi026TlutWheel1, + gKartLuigi026TlutWheel2, + gKartLuigi026TlutWheel3, + gKartLuigi027TlutWheel0, + gKartLuigi027TlutWheel1, + gKartLuigi027TlutWheel2, + gKartLuigi027TlutWheel3, + gKartLuigi028TlutWheel0, + gKartLuigi028TlutWheel1, + gKartLuigi028TlutWheel2, + gKartLuigi028TlutWheel3, + gKartLuigi029TlutWheel0, + gKartLuigi029TlutWheel1, + gKartLuigi029TlutWheel2, + gKartLuigi029TlutWheel3, + gKartLuigi030TlutWheel0, + gKartLuigi030TlutWheel1, + gKartLuigi030TlutWheel2, + gKartLuigi030TlutWheel3, + gKartLuigi031TlutWheel0, + gKartLuigi031TlutWheel1, + gKartLuigi031TlutWheel2, + gKartLuigi031TlutWheel3, + gKartLuigi032TlutWheel0, + gKartLuigi032TlutWheel1, + gKartLuigi032TlutWheel2, + gKartLuigi032TlutWheel3, + gKartLuigi033TlutWheel0, + gKartLuigi033TlutWheel1, + gKartLuigi033TlutWheel2, + gKartLuigi033TlutWheel3, + gKartLuigi034TlutWheel0, + gKartLuigi034TlutWheel1, + gKartLuigi034TlutWheel2, + gKartLuigi034TlutWheel3, + gKartLuigi035TlutWheel0, + gKartLuigi035TlutWheel1, + gKartLuigi035TlutWheel2, + gKartLuigi035TlutWheel3, + gKartLuigi036TlutWheel0, + gKartLuigi036TlutWheel1, + gKartLuigi036TlutWheel2, + gKartLuigi036TlutWheel3, + gKartLuigi037TlutWheel0, + gKartLuigi037TlutWheel1, + gKartLuigi037TlutWheel2, + gKartLuigi037TlutWheel3, + gKartLuigi038TlutWheel0, + gKartLuigi038TlutWheel1, + gKartLuigi038TlutWheel2, + gKartLuigi038TlutWheel3, + gKartLuigi039TlutWheel0, + gKartLuigi039TlutWheel1, + gKartLuigi039TlutWheel2, + gKartLuigi039TlutWheel3, + gKartLuigi040TlutWheel0, + gKartLuigi040TlutWheel1, + gKartLuigi040TlutWheel2, + gKartLuigi040TlutWheel3, + gKartLuigi041TlutWheel0, + gKartLuigi041TlutWheel1, + gKartLuigi041TlutWheel2, + gKartLuigi041TlutWheel3, + gKartLuigi042TlutWheel0, + gKartLuigi042TlutWheel1, + gKartLuigi042TlutWheel2, + gKartLuigi042TlutWheel3, + gKartLuigi043TlutWheel0, + gKartLuigi043TlutWheel1, + gKartLuigi043TlutWheel2, + gKartLuigi043TlutWheel3, + gKartLuigi044TlutWheel0, + gKartLuigi044TlutWheel1, + gKartLuigi044TlutWheel2, + gKartLuigi044TlutWheel3, + gKartLuigi045TlutWheel0, + gKartLuigi045TlutWheel1, + gKartLuigi045TlutWheel2, + gKartLuigi045TlutWheel3, + gKartLuigi046TlutWheel0, + gKartLuigi046TlutWheel1, + gKartLuigi046TlutWheel2, + gKartLuigi046TlutWheel3, + gKartLuigi047TlutWheel0, + gKartLuigi047TlutWheel1, + gKartLuigi047TlutWheel2, + gKartLuigi047TlutWheel3, + gKartLuigi048TlutWheel0, + gKartLuigi048TlutWheel1, + gKartLuigi048TlutWheel2, + gKartLuigi048TlutWheel3, + gKartLuigi049TlutWheel0, + gKartLuigi049TlutWheel1, + gKartLuigi049TlutWheel2, + gKartLuigi049TlutWheel3, + gKartLuigi050TlutWheel0, + gKartLuigi050TlutWheel1, + gKartLuigi050TlutWheel2, + gKartLuigi050TlutWheel3, + gKartLuigi051TlutWheel0, + gKartLuigi051TlutWheel1, + gKartLuigi051TlutWheel2, + gKartLuigi051TlutWheel3, + gKartLuigi052TlutWheel0, + gKartLuigi052TlutWheel1, + gKartLuigi052TlutWheel2, + gKartLuigi052TlutWheel3, + gKartLuigi053TlutWheel0, + gKartLuigi053TlutWheel1, + gKartLuigi053TlutWheel2, + gKartLuigi053TlutWheel3, + gKartLuigi054TlutWheel0, + gKartLuigi054TlutWheel1, + gKartLuigi054TlutWheel2, + gKartLuigi054TlutWheel3, + gKartLuigi055TlutWheel0, + gKartLuigi055TlutWheel1, + gKartLuigi055TlutWheel2, + gKartLuigi055TlutWheel3, + gKartLuigi056TlutWheel0, + gKartLuigi056TlutWheel1, + gKartLuigi056TlutWheel2, + gKartLuigi056TlutWheel3, + gKartLuigi057TlutWheel0, + gKartLuigi057TlutWheel1, + gKartLuigi057TlutWheel2, + gKartLuigi057TlutWheel3, + gKartLuigi058TlutWheel0, + gKartLuigi058TlutWheel1, + gKartLuigi058TlutWheel2, + gKartLuigi058TlutWheel3, + gKartLuigi059TlutWheel0, + gKartLuigi059TlutWheel1, + gKartLuigi059TlutWheel2, + gKartLuigi059TlutWheel3, + gKartLuigi060TlutWheel0, + gKartLuigi060TlutWheel1, + gKartLuigi060TlutWheel2, + gKartLuigi060TlutWheel3, + gKartLuigi061TlutWheel0, + gKartLuigi061TlutWheel1, + gKartLuigi061TlutWheel2, + gKartLuigi061TlutWheel3, + gKartLuigi062TlutWheel0, + gKartLuigi062TlutWheel1, + gKartLuigi062TlutWheel2, + gKartLuigi062TlutWheel3, + gKartLuigi063TlutWheel0, + gKartLuigi063TlutWheel1, + gKartLuigi063TlutWheel2, + gKartLuigi063TlutWheel3, + gKartLuigi064TlutWheel0, + gKartLuigi064TlutWheel1, + gKartLuigi064TlutWheel2, + gKartLuigi064TlutWheel3, + gKartLuigi065TlutWheel0, + gKartLuigi065TlutWheel1, + gKartLuigi065TlutWheel2, + gKartLuigi065TlutWheel3, + gKartLuigi066TlutWheel0, + gKartLuigi066TlutWheel1, + gKartLuigi066TlutWheel2, + gKartLuigi066TlutWheel3, + gKartLuigi067TlutWheel0, + gKartLuigi067TlutWheel1, + gKartLuigi067TlutWheel2, + gKartLuigi067TlutWheel3, + gKartLuigi068TlutWheel0, + gKartLuigi068TlutWheel1, + gKartLuigi068TlutWheel2, + gKartLuigi068TlutWheel3, + gKartLuigi069TlutWheel0, + gKartLuigi069TlutWheel1, + gKartLuigi069TlutWheel2, + gKartLuigi069TlutWheel3, + gKartLuigi070TlutWheel0, + gKartLuigi070TlutWheel1, + gKartLuigi070TlutWheel2, + gKartLuigi070TlutWheel3, + gKartLuigi071TlutWheel0, + gKartLuigi071TlutWheel1, + gKartLuigi071TlutWheel2, + gKartLuigi071TlutWheel3, + gKartLuigi072TlutWheel0, + gKartLuigi072TlutWheel1, + gKartLuigi072TlutWheel2, + gKartLuigi072TlutWheel3, + gKartLuigi073TlutWheel0, + gKartLuigi073TlutWheel1, + gKartLuigi073TlutWheel2, + gKartLuigi073TlutWheel3, + gKartLuigi074TlutWheel0, + gKartLuigi074TlutWheel1, + gKartLuigi074TlutWheel2, + gKartLuigi074TlutWheel3, + gKartLuigi075TlutWheel0, + gKartLuigi075TlutWheel1, + gKartLuigi075TlutWheel2, + gKartLuigi075TlutWheel3, + gKartLuigi076TlutWheel0, + gKartLuigi076TlutWheel1, + gKartLuigi076TlutWheel2, + gKartLuigi076TlutWheel3, + gKartLuigi077TlutWheel0, + gKartLuigi077TlutWheel1, + gKartLuigi077TlutWheel2, + gKartLuigi077TlutWheel3, + gKartLuigi078TlutWheel0, + gKartLuigi078TlutWheel1, + gKartLuigi078TlutWheel2, + gKartLuigi078TlutWheel3, + gKartLuigi079TlutWheel0, + gKartLuigi079TlutWheel1, + gKartLuigi079TlutWheel2, + gKartLuigi079TlutWheel3, + gKartLuigi080TlutWheel0, + gKartLuigi080TlutWheel1, + gKartLuigi080TlutWheel2, + gKartLuigi080TlutWheel3, + gKartLuigi081TlutWheel0, + gKartLuigi081TlutWheel1, + gKartLuigi081TlutWheel2, + gKartLuigi081TlutWheel3, + gKartLuigi082TlutWheel0, + gKartLuigi082TlutWheel1, + gKartLuigi082TlutWheel2, + gKartLuigi082TlutWheel3, + gKartLuigi083TlutWheel0, + gKartLuigi083TlutWheel1, + gKartLuigi083TlutWheel2, + gKartLuigi083TlutWheel3, + gKartLuigi084TlutWheel0, + gKartLuigi084TlutWheel1, + gKartLuigi084TlutWheel2, + gKartLuigi084TlutWheel3, + gKartLuigi085TlutWheel0, + gKartLuigi085TlutWheel1, + gKartLuigi085TlutWheel2, + gKartLuigi085TlutWheel3, + gKartLuigi086TlutWheel0, + gKartLuigi086TlutWheel1, + gKartLuigi086TlutWheel2, + gKartLuigi086TlutWheel3, + gKartLuigi087TlutWheel0, + gKartLuigi087TlutWheel1, + gKartLuigi087TlutWheel2, + gKartLuigi087TlutWheel3, + gKartLuigi088TlutWheel0, + gKartLuigi088TlutWheel1, + gKartLuigi088TlutWheel2, + gKartLuigi088TlutWheel3, + gKartLuigi089TlutWheel0, + gKartLuigi089TlutWheel1, + gKartLuigi089TlutWheel2, + gKartLuigi089TlutWheel3, + gKartLuigi090TlutWheel0, + gKartLuigi090TlutWheel1, + gKartLuigi090TlutWheel2, + gKartLuigi090TlutWheel3, + gKartLuigi091TlutWheel0, + gKartLuigi091TlutWheel1, + gKartLuigi091TlutWheel2, + gKartLuigi091TlutWheel3, + gKartLuigi092TlutWheel0, + gKartLuigi092TlutWheel1, + gKartLuigi092TlutWheel2, + gKartLuigi092TlutWheel3, + gKartLuigi093TlutWheel0, + gKartLuigi093TlutWheel1, + gKartLuigi093TlutWheel2, + gKartLuigi093TlutWheel3, + gKartLuigi094TlutWheel0, + gKartLuigi094TlutWheel1, + gKartLuigi094TlutWheel2, + gKartLuigi094TlutWheel3, + gKartLuigi095TlutWheel0, + gKartLuigi095TlutWheel1, + gKartLuigi095TlutWheel2, + gKartLuigi095TlutWheel3, + gKartLuigi096TlutWheel0, + gKartLuigi096TlutWheel1, + gKartLuigi096TlutWheel2, + gKartLuigi096TlutWheel3, + gKartLuigi097TlutWheel0, + gKartLuigi097TlutWheel1, + gKartLuigi097TlutWheel2, + gKartLuigi097TlutWheel3, + gKartLuigi098TlutWheel0, + gKartLuigi098TlutWheel1, + gKartLuigi098TlutWheel2, + gKartLuigi098TlutWheel3, + gKartLuigi099TlutWheel0, + gKartLuigi099TlutWheel1, + gKartLuigi099TlutWheel2, + gKartLuigi099TlutWheel3, + gKartLuigi100TlutWheel0, + gKartLuigi100TlutWheel1, + gKartLuigi100TlutWheel2, + gKartLuigi100TlutWheel3, + gKartLuigi101TlutWheel0, + gKartLuigi101TlutWheel1, + gKartLuigi101TlutWheel2, + gKartLuigi101TlutWheel3, + gKartLuigi102TlutWheel0, + gKartLuigi102TlutWheel1, + gKartLuigi102TlutWheel2, + gKartLuigi102TlutWheel3, + gKartLuigi103TlutWheel0, + gKartLuigi103TlutWheel1, + gKartLuigi103TlutWheel2, + gKartLuigi103TlutWheel3, + gKartLuigi104TlutWheel0, + gKartLuigi104TlutWheel1, + gKartLuigi104TlutWheel2, + gKartLuigi104TlutWheel3, + gKartLuigi105TlutWheel0, + gKartLuigi105TlutWheel1, + gKartLuigi105TlutWheel2, + gKartLuigi105TlutWheel3, + gKartLuigi106TlutWheel0, + gKartLuigi106TlutWheel1, + gKartLuigi106TlutWheel2, + gKartLuigi106TlutWheel3, + gKartLuigi107TlutWheel0, + gKartLuigi107TlutWheel1, + gKartLuigi107TlutWheel2, + gKartLuigi107TlutWheel3, + gKartLuigi108TlutWheel0, + gKartLuigi108TlutWheel1, + gKartLuigi108TlutWheel2, + gKartLuigi108TlutWheel3, + gKartLuigi109TlutWheel0, + gKartLuigi109TlutWheel1, + gKartLuigi109TlutWheel2, + gKartLuigi109TlutWheel3, + gKartLuigi110TlutWheel0, + gKartLuigi110TlutWheel1, + gKartLuigi110TlutWheel2, + gKartLuigi110TlutWheel3, + gKartLuigi111TlutWheel0, + gKartLuigi111TlutWheel1, + gKartLuigi111TlutWheel2, + gKartLuigi111TlutWheel3, + gKartLuigi112TlutWheel0, + gKartLuigi112TlutWheel1, + gKartLuigi112TlutWheel2, + gKartLuigi112TlutWheel3, + gKartLuigi113TlutWheel0, + gKartLuigi113TlutWheel1, + gKartLuigi113TlutWheel2, + gKartLuigi113TlutWheel3, + gKartLuigi114TlutWheel0, + gKartLuigi114TlutWheel1, + gKartLuigi114TlutWheel2, + gKartLuigi114TlutWheel3, + gKartLuigi115TlutWheel0, + gKartLuigi115TlutWheel1, + gKartLuigi115TlutWheel2, + gKartLuigi115TlutWheel3, + gKartLuigi116TlutWheel0, + gKartLuigi116TlutWheel1, + gKartLuigi116TlutWheel2, + gKartLuigi116TlutWheel3, + gKartLuigi117TlutWheel0, + gKartLuigi117TlutWheel1, + gKartLuigi117TlutWheel2, + gKartLuigi117TlutWheel3, + gKartLuigi118TlutWheel0, + gKartLuigi118TlutWheel1, + gKartLuigi118TlutWheel2, + gKartLuigi118TlutWheel3, + gKartLuigi119TlutWheel0, + gKartLuigi119TlutWheel1, + gKartLuigi119TlutWheel2, + gKartLuigi119TlutWheel3, + gKartLuigi120TlutWheel0, + gKartLuigi120TlutWheel1, + gKartLuigi120TlutWheel2, + gKartLuigi120TlutWheel3, + gKartLuigi121TlutWheel0, + gKartLuigi121TlutWheel1, + gKartLuigi121TlutWheel2, + gKartLuigi121TlutWheel3, + gKartLuigi122TlutWheel0, + gKartLuigi122TlutWheel1, + gKartLuigi122TlutWheel2, + gKartLuigi122TlutWheel3, + gKartLuigi123TlutWheel0, + gKartLuigi123TlutWheel1, + gKartLuigi123TlutWheel2, + gKartLuigi123TlutWheel3, + gKartLuigi124TlutWheel0, + gKartLuigi124TlutWheel1, + gKartLuigi124TlutWheel2, + gKartLuigi124TlutWheel3, + gKartLuigi125TlutWheel0, + gKartLuigi125TlutWheel1, + gKartLuigi125TlutWheel2, + gKartLuigi125TlutWheel3, + gKartLuigi126TlutWheel0, + gKartLuigi126TlutWheel1, + gKartLuigi126TlutWheel2, + gKartLuigi126TlutWheel3, + gKartLuigi127TlutWheel0, + gKartLuigi127TlutWheel1, + gKartLuigi127TlutWheel2, + gKartLuigi127TlutWheel3, + gKartLuigi128TlutWheel0, + gKartLuigi128TlutWheel1, + gKartLuigi128TlutWheel2, + gKartLuigi128TlutWheel3, + gKartLuigi129TlutWheel0, + gKartLuigi129TlutWheel1, + gKartLuigi129TlutWheel2, + gKartLuigi129TlutWheel3, + gKartLuigi130TlutWheel0, + gKartLuigi130TlutWheel1, + gKartLuigi130TlutWheel2, + gKartLuigi130TlutWheel3, + gKartLuigi131TlutWheel0, + gKartLuigi131TlutWheel1, + gKartLuigi131TlutWheel2, + gKartLuigi131TlutWheel3, + gKartLuigi132TlutWheel0, + gKartLuigi132TlutWheel1, + gKartLuigi132TlutWheel2, + gKartLuigi132TlutWheel3, + gKartLuigi133TlutWheel0, + gKartLuigi133TlutWheel1, + gKartLuigi133TlutWheel2, + gKartLuigi133TlutWheel3, + gKartLuigi134TlutWheel0, + gKartLuigi134TlutWheel1, + gKartLuigi134TlutWheel2, + gKartLuigi134TlutWheel3, + gKartLuigi135TlutWheel0, + gKartLuigi135TlutWheel1, + gKartLuigi135TlutWheel2, + gKartLuigi135TlutWheel3, + gKartLuigi136TlutWheel0, + gKartLuigi136TlutWheel1, + gKartLuigi136TlutWheel2, + gKartLuigi136TlutWheel3, + gKartLuigi137TlutWheel0, + gKartLuigi137TlutWheel1, + gKartLuigi137TlutWheel2, + gKartLuigi137TlutWheel3, + gKartLuigi138TlutWheel0, + gKartLuigi138TlutWheel1, + gKartLuigi138TlutWheel2, + gKartLuigi138TlutWheel3, + gKartLuigi139TlutWheel0, + gKartLuigi139TlutWheel1, + gKartLuigi139TlutWheel2, + gKartLuigi139TlutWheel3, + gKartLuigi140TlutWheel0, + gKartLuigi140TlutWheel1, + gKartLuigi140TlutWheel2, + gKartLuigi140TlutWheel3, + gKartLuigi141TlutWheel0, + gKartLuigi141TlutWheel1, + gKartLuigi141TlutWheel2, + gKartLuigi141TlutWheel3, + gKartLuigi142TlutWheel0, + gKartLuigi142TlutWheel1, + gKartLuigi142TlutWheel2, + gKartLuigi142TlutWheel3, + gKartLuigi143TlutWheel0, + gKartLuigi143TlutWheel1, + gKartLuigi143TlutWheel2, + gKartLuigi143TlutWheel3, + gKartLuigi144TlutWheel0, + gKartLuigi144TlutWheel1, + gKartLuigi144TlutWheel2, + gKartLuigi144TlutWheel3, + gKartLuigi145TlutWheel0, + gKartLuigi145TlutWheel1, + gKartLuigi145TlutWheel2, + gKartLuigi145TlutWheel3, + gKartLuigi146TlutWheel0, + gKartLuigi146TlutWheel1, + gKartLuigi146TlutWheel2, + gKartLuigi146TlutWheel3, + gKartLuigi147TlutWheel0, + gKartLuigi147TlutWheel1, + gKartLuigi147TlutWheel2, + gKartLuigi147TlutWheel3, + gKartLuigi148TlutWheel0, + gKartLuigi148TlutWheel1, + gKartLuigi148TlutWheel2, + gKartLuigi148TlutWheel3, + gKartLuigi149TlutWheel0, + gKartLuigi149TlutWheel1, + gKartLuigi149TlutWheel2, + gKartLuigi149TlutWheel3, + gKartLuigi150TlutWheel0, + gKartLuigi150TlutWheel1, + gKartLuigi150TlutWheel2, + gKartLuigi150TlutWheel3, + gKartLuigi151TlutWheel0, + gKartLuigi151TlutWheel1, + gKartLuigi151TlutWheel2, + gKartLuigi151TlutWheel3, + gKartLuigi152TlutWheel0, + gKartLuigi152TlutWheel1, + gKartLuigi152TlutWheel2, + gKartLuigi152TlutWheel3, + gKartLuigi153TlutWheel0, + gKartLuigi153TlutWheel1, + gKartLuigi153TlutWheel2, + gKartLuigi153TlutWheel3, + gKartLuigi154TlutWheel0, + gKartLuigi154TlutWheel1, + gKartLuigi154TlutWheel2, + gKartLuigi154TlutWheel3, + gKartLuigi155TlutWheel0, + gKartLuigi155TlutWheel1, + gKartLuigi155TlutWheel2, + gKartLuigi155TlutWheel3, + gKartLuigi156TlutWheel0, + gKartLuigi156TlutWheel1, + gKartLuigi156TlutWheel2, + gKartLuigi156TlutWheel3, + gKartLuigi157TlutWheel0, + gKartLuigi157TlutWheel1, + gKartLuigi157TlutWheel2, + gKartLuigi157TlutWheel3, + gKartLuigi158TlutWheel0, + gKartLuigi158TlutWheel1, + gKartLuigi158TlutWheel2, + gKartLuigi158TlutWheel3, + gKartLuigi159TlutWheel0, + gKartLuigi159TlutWheel1, + gKartLuigi159TlutWheel2, + gKartLuigi159TlutWheel3, + gKartLuigi160TlutWheel0, + gKartLuigi160TlutWheel1, + gKartLuigi160TlutWheel2, + gKartLuigi160TlutWheel3, + gKartLuigi161TlutWheel0, + gKartLuigi161TlutWheel1, + gKartLuigi161TlutWheel2, + gKartLuigi161TlutWheel3, + gKartLuigi162TlutWheel0, + gKartLuigi162TlutWheel1, + gKartLuigi162TlutWheel2, + gKartLuigi162TlutWheel3, + gKartLuigi163TlutWheel0, + gKartLuigi163TlutWheel1, + gKartLuigi163TlutWheel2, + gKartLuigi163TlutWheel3, + gKartLuigi164TlutWheel0, + gKartLuigi164TlutWheel1, + gKartLuigi164TlutWheel2, + gKartLuigi164TlutWheel3, + gKartLuigi165TlutWheel0, + gKartLuigi165TlutWheel1, + gKartLuigi165TlutWheel2, + gKartLuigi165TlutWheel3, + gKartLuigi166TlutWheel0, + gKartLuigi166TlutWheel1, + gKartLuigi166TlutWheel2, + gKartLuigi166TlutWheel3, + gKartLuigi167TlutWheel0, + gKartLuigi167TlutWheel1, + gKartLuigi167TlutWheel2, + gKartLuigi167TlutWheel3, + gKartLuigi168TlutWheel0, + gKartLuigi168TlutWheel1, + gKartLuigi168TlutWheel2, + gKartLuigi168TlutWheel3, + gKartLuigi169TlutWheel0, + gKartLuigi169TlutWheel1, + gKartLuigi169TlutWheel2, + gKartLuigi169TlutWheel3, + gKartLuigi170TlutWheel0, + gKartLuigi170TlutWheel1, + gKartLuigi170TlutWheel2, + gKartLuigi170TlutWheel3, + gKartLuigi171TlutWheel0, + gKartLuigi171TlutWheel1, + gKartLuigi171TlutWheel2, + gKartLuigi171TlutWheel3, + gKartLuigi172TlutWheel0, + gKartLuigi172TlutWheel1, + gKartLuigi172TlutWheel2, + gKartLuigi172TlutWheel3, + gKartLuigi173TlutWheel0, + gKartLuigi173TlutWheel1, + gKartLuigi173TlutWheel2, + gKartLuigi173TlutWheel3, + gKartLuigi174TlutWheel0, + gKartLuigi174TlutWheel1, + gKartLuigi174TlutWheel2, + gKartLuigi174TlutWheel3, + gKartLuigi175TlutWheel0, + gKartLuigi175TlutWheel1, + gKartLuigi175TlutWheel2, + gKartLuigi175TlutWheel3, + gKartLuigi176TlutWheel0, + gKartLuigi176TlutWheel1, + gKartLuigi176TlutWheel2, + gKartLuigi176TlutWheel3, + gKartLuigi177TlutWheel0, + gKartLuigi177TlutWheel1, + gKartLuigi177TlutWheel2, + gKartLuigi177TlutWheel3, + gKartLuigi178TlutWheel0, + gKartLuigi178TlutWheel1, + gKartLuigi178TlutWheel2, + gKartLuigi178TlutWheel3, + gKartLuigi179TlutWheel0, + gKartLuigi179TlutWheel1, + gKartLuigi179TlutWheel2, + gKartLuigi179TlutWheel3, + gKartLuigi180TlutWheel0, + gKartLuigi180TlutWheel1, + gKartLuigi180TlutWheel2, + gKartLuigi180TlutWheel3, + gKartLuigi181TlutWheel0, + gKartLuigi181TlutWheel1, + gKartLuigi181TlutWheel2, + gKartLuigi181TlutWheel3, + gKartLuigi182TlutWheel0, + gKartLuigi182TlutWheel1, + gKartLuigi182TlutWheel2, + gKartLuigi182TlutWheel3, + gKartLuigi183TlutWheel0, + gKartLuigi183TlutWheel1, + gKartLuigi183TlutWheel2, + gKartLuigi183TlutWheel3, + gKartLuigi184TlutWheel0, + gKartLuigi184TlutWheel1, + gKartLuigi184TlutWheel2, + gKartLuigi184TlutWheel3, + gKartLuigi185TlutWheel0, + gKartLuigi185TlutWheel1, + gKartLuigi185TlutWheel2, + gKartLuigi185TlutWheel3, + gKartLuigi186TlutWheel0, + gKartLuigi186TlutWheel1, + gKartLuigi186TlutWheel2, + gKartLuigi186TlutWheel3, + gKartLuigi187TlutWheel0, + gKartLuigi187TlutWheel1, + gKartLuigi187TlutWheel2, + gKartLuigi187TlutWheel3, + gKartLuigi188TlutWheel0, + gKartLuigi188TlutWheel1, + gKartLuigi188TlutWheel2, + gKartLuigi188TlutWheel3, + gKartLuigi189TlutWheel0, + gKartLuigi189TlutWheel1, + gKartLuigi189TlutWheel2, + gKartLuigi189TlutWheel3, + gKartLuigi190TlutWheel0, + gKartLuigi190TlutWheel1, + gKartLuigi190TlutWheel2, + gKartLuigi190TlutWheel3, + gKartLuigi191TlutWheel0, + gKartLuigi191TlutWheel1, + gKartLuigi191TlutWheel2, + gKartLuigi191TlutWheel3, + gKartLuigi192TlutWheel0, + gKartLuigi192TlutWheel1, + gKartLuigi192TlutWheel2, + gKartLuigi192TlutWheel3, + gKartLuigi193TlutWheel0, + gKartLuigi193TlutWheel1, + gKartLuigi193TlutWheel2, + gKartLuigi193TlutWheel3, + gKartLuigi194TlutWheel0, + gKartLuigi194TlutWheel1, + gKartLuigi194TlutWheel2, + gKartLuigi194TlutWheel3, + gKartLuigi195TlutWheel0, + gKartLuigi195TlutWheel1, + gKartLuigi195TlutWheel2, + gKartLuigi195TlutWheel3, + gKartLuigi196TlutWheel0, + gKartLuigi196TlutWheel1, + gKartLuigi196TlutWheel2, + gKartLuigi196TlutWheel3, + gKartLuigi197TlutWheel0, + gKartLuigi197TlutWheel1, + gKartLuigi197TlutWheel2, + gKartLuigi197TlutWheel3, + gKartLuigi198TlutWheel0, + gKartLuigi198TlutWheel1, + gKartLuigi198TlutWheel2, + gKartLuigi198TlutWheel3, + gKartLuigi199TlutWheel0, + gKartLuigi199TlutWheel1, + gKartLuigi199TlutWheel2, + gKartLuigi199TlutWheel3, + gKartLuigi200TlutWheel0, + gKartLuigi200TlutWheel1, + gKartLuigi200TlutWheel2, + gKartLuigi200TlutWheel3, + gKartLuigi201TlutWheel0, + gKartLuigi201TlutWheel1, + gKartLuigi201TlutWheel2, + gKartLuigi201TlutWheel3, + gKartLuigi202TlutWheel0, + gKartLuigi202TlutWheel1, + gKartLuigi202TlutWheel2, + gKartLuigi202TlutWheel3, + gKartLuigi203TlutWheel0, + gKartLuigi203TlutWheel1, + gKartLuigi203TlutWheel2, + gKartLuigi203TlutWheel3, + gKartLuigi204TlutWheel0, + gKartLuigi204TlutWheel1, + gKartLuigi204TlutWheel2, + gKartLuigi204TlutWheel3, + gKartLuigi205TlutWheel0, + gKartLuigi205TlutWheel1, + gKartLuigi205TlutWheel2, + gKartLuigi205TlutWheel3, + gKartLuigi206TlutWheel0, + gKartLuigi206TlutWheel1, + gKartLuigi206TlutWheel2, + gKartLuigi206TlutWheel3, + gKartLuigi207TlutWheel0, + gKartLuigi207TlutWheel1, + gKartLuigi207TlutWheel2, + gKartLuigi207TlutWheel3, + gKartLuigi208TlutWheel0, + gKartLuigi208TlutWheel1, + gKartLuigi208TlutWheel2, + gKartLuigi208TlutWheel3, + gKartLuigi209TlutWheel0, + gKartLuigi209TlutWheel1, + gKartLuigi209TlutWheel2, + gKartLuigi209TlutWheel3, + gKartLuigi210TlutWheel0, + gKartLuigi210TlutWheel1, + gKartLuigi210TlutWheel2, + gKartLuigi210TlutWheel3, + gKartLuigi211TlutWheel0, + gKartLuigi211TlutWheel1, + gKartLuigi211TlutWheel2, + gKartLuigi211TlutWheel3, + gKartLuigi212TlutWheel0, + gKartLuigi212TlutWheel1, + gKartLuigi212TlutWheel2, + gKartLuigi212TlutWheel3, + gKartLuigi213TlutWheel0, + gKartLuigi213TlutWheel1, + gKartLuigi213TlutWheel2, + gKartLuigi213TlutWheel3, + gKartLuigi214TlutWheel0, + gKartLuigi214TlutWheel1, + gKartLuigi214TlutWheel2, + gKartLuigi214TlutWheel3, + gKartLuigi215TlutWheel0, + gKartLuigi215TlutWheel1, + gKartLuigi215TlutWheel2, + gKartLuigi215TlutWheel3, + gKartLuigi216TlutWheel0, + gKartLuigi216TlutWheel1, + gKartLuigi216TlutWheel2, + gKartLuigi216TlutWheel3, + gKartLuigi217TlutWheel0, + gKartLuigi217TlutWheel1, + gKartLuigi217TlutWheel2, + gKartLuigi217TlutWheel3, + gKartLuigi218TlutWheel0, + gKartLuigi218TlutWheel1, + gKartLuigi218TlutWheel2, + gKartLuigi218TlutWheel3, + gKartLuigi219TlutWheel0, + gKartLuigi219TlutWheel1, + gKartLuigi219TlutWheel2, + gKartLuigi219TlutWheel3, + gKartLuigi220TlutWheel0, + gKartLuigi220TlutWheel1, + gKartLuigi220TlutWheel2, + gKartLuigi220TlutWheel3, + gKartLuigi221TlutWheel0, + gKartLuigi221TlutWheel1, + gKartLuigi221TlutWheel2, + gKartLuigi221TlutWheel3, + gKartLuigi222TlutWheel0, + gKartLuigi222TlutWheel1, + gKartLuigi222TlutWheel2, + gKartLuigi222TlutWheel3, + gKartLuigi223TlutWheel0, + gKartLuigi223TlutWheel1, + gKartLuigi223TlutWheel2, + gKartLuigi223TlutWheel3, + gKartLuigi224TlutWheel0, + gKartLuigi224TlutWheel1, + gKartLuigi224TlutWheel2, + gKartLuigi224TlutWheel3, + gKartLuigi225TlutWheel0, + gKartLuigi225TlutWheel1, + gKartLuigi225TlutWheel2, + gKartLuigi225TlutWheel3, + gKartLuigi226TlutWheel0, + gKartLuigi226TlutWheel1, + gKartLuigi226TlutWheel2, + gKartLuigi226TlutWheel3, + gKartLuigi227TlutWheel0, + gKartLuigi227TlutWheel1, + gKartLuigi227TlutWheel2, + gKartLuigi227TlutWheel3, + gKartLuigi228TlutWheel0, + gKartLuigi228TlutWheel1, + gKartLuigi228TlutWheel2, + gKartLuigi228TlutWheel3, + gKartLuigi229TlutWheel0, + gKartLuigi229TlutWheel1, + gKartLuigi229TlutWheel2, + gKartLuigi229TlutWheel3, + gKartLuigi230TlutWheel0, + gKartLuigi230TlutWheel1, + gKartLuigi230TlutWheel2, + gKartLuigi230TlutWheel3, + gKartLuigi231TlutWheel0, + gKartLuigi231TlutWheel1, + gKartLuigi231TlutWheel2, + gKartLuigi231TlutWheel3, + gKartLuigi232TlutWheel0, + gKartLuigi232TlutWheel1, + gKartLuigi232TlutWheel2, + gKartLuigi232TlutWheel3, + gKartLuigi233TlutWheel0, + gKartLuigi233TlutWheel1, + gKartLuigi233TlutWheel2, + gKartLuigi233TlutWheel3, + gKartLuigi234TlutWheel0, + gKartLuigi234TlutWheel1, + gKartLuigi234TlutWheel2, + gKartLuigi234TlutWheel3, + gKartLuigi235TlutWheel0, + gKartLuigi235TlutWheel1, + gKartLuigi235TlutWheel2, + gKartLuigi235TlutWheel3, + gKartLuigi236TlutWheel0, + gKartLuigi236TlutWheel1, + gKartLuigi236TlutWheel2, + gKartLuigi236TlutWheel3, + gKartLuigi237TlutWheel0, + gKartLuigi237TlutWheel1, + gKartLuigi237TlutWheel2, + gKartLuigi237TlutWheel3, + gKartLuigi238TlutWheel0, + gKartLuigi238TlutWheel1, + gKartLuigi238TlutWheel2, + gKartLuigi238TlutWheel3, + gKartLuigi239TlutWheel0, + gKartLuigi239TlutWheel1, + gKartLuigi239TlutWheel2, + gKartLuigi239TlutWheel3, + gKartLuigi240TlutWheel0, + gKartLuigi240TlutWheel1, + gKartLuigi240TlutWheel2, + gKartLuigi240TlutWheel3, + gKartLuigi241TlutWheel0, + gKartLuigi241TlutWheel1, + gKartLuigi241TlutWheel2, + gKartLuigi241TlutWheel3, + gKartLuigi242TlutWheel0, + gKartLuigi242TlutWheel1, + gKartLuigi242TlutWheel2, + gKartLuigi242TlutWheel3, + gKartLuigi243TlutWheel0, + gKartLuigi243TlutWheel1, + gKartLuigi243TlutWheel2, + gKartLuigi243TlutWheel3, + gKartLuigi244TlutWheel0, + gKartLuigi244TlutWheel1, + gKartLuigi244TlutWheel2, + gKartLuigi244TlutWheel3, + gKartLuigi245TlutWheel0, + gKartLuigi245TlutWheel1, + gKartLuigi245TlutWheel2, + gKartLuigi245TlutWheel3, + gKartLuigi246TlutWheel0, + gKartLuigi246TlutWheel1, + gKartLuigi246TlutWheel2, + gKartLuigi246TlutWheel3, + gKartLuigi247TlutWheel0, + gKartLuigi247TlutWheel1, + gKartLuigi247TlutWheel2, + gKartLuigi247TlutWheel3, + gKartLuigi248TlutWheel0, + gKartLuigi248TlutWheel1, + gKartLuigi248TlutWheel2, + gKartLuigi248TlutWheel3, + gKartLuigi249TlutWheel0, + gKartLuigi249TlutWheel1, + gKartLuigi249TlutWheel2, + gKartLuigi249TlutWheel3, + gKartLuigi250TlutWheel0, + gKartLuigi250TlutWheel1, + gKartLuigi250TlutWheel2, + gKartLuigi250TlutWheel3, + gKartLuigi251TlutWheel0, + gKartLuigi251TlutWheel1, + gKartLuigi251TlutWheel2, + gKartLuigi251TlutWheel3, + gKartLuigi252TlutWheel0, + gKartLuigi252TlutWheel1, + gKartLuigi252TlutWheel2, + gKartLuigi252TlutWheel3, + gKartLuigi253TlutWheel0, + gKartLuigi253TlutWheel1, + gKartLuigi253TlutWheel2, + gKartLuigi253TlutWheel3, + gKartLuigi254TlutWheel0, + gKartLuigi254TlutWheel1, + gKartLuigi254TlutWheel2, + gKartLuigi254TlutWheel3, + gKartLuigi255TlutWheel0, + gKartLuigi255TlutWheel1, + gKartLuigi255TlutWheel2, + gKartLuigi255TlutWheel3, + gKartLuigi256TlutWheel0, + gKartLuigi256TlutWheel1, + gKartLuigi256TlutWheel2, + gKartLuigi256TlutWheel3, + gKartLuigi257TlutWheel0, + gKartLuigi257TlutWheel1, + gKartLuigi257TlutWheel2, + gKartLuigi257TlutWheel3, + gKartLuigi258TlutWheel0, + gKartLuigi258TlutWheel1, + gKartLuigi258TlutWheel2, + gKartLuigi258TlutWheel3, + gKartLuigi259TlutWheel0, + gKartLuigi259TlutWheel1, + gKartLuigi259TlutWheel2, + gKartLuigi259TlutWheel3, + gKartLuigi260TlutWheel0, + gKartLuigi260TlutWheel1, + gKartLuigi260TlutWheel2, + gKartLuigi260TlutWheel3, + gKartLuigi261TlutWheel0, + gKartLuigi261TlutWheel1, + gKartLuigi261TlutWheel2, + gKartLuigi261TlutWheel3, + gKartLuigi262TlutWheel0, + gKartLuigi262TlutWheel1, + gKartLuigi262TlutWheel2, + gKartLuigi262TlutWheel3, + gKartLuigi263TlutWheel0, + gKartLuigi263TlutWheel1, + gKartLuigi263TlutWheel2, + gKartLuigi263TlutWheel3, + gKartLuigi264TlutWheel0, + gKartLuigi264TlutWheel1, + gKartLuigi264TlutWheel2, + gKartLuigi264TlutWheel3, + gKartLuigi265TlutWheel0, + gKartLuigi265TlutWheel1, + gKartLuigi265TlutWheel2, + gKartLuigi265TlutWheel3, + gKartLuigi266TlutWheel0, + gKartLuigi266TlutWheel1, + gKartLuigi266TlutWheel2, + gKartLuigi266TlutWheel3, + gKartLuigi267TlutWheel0, + gKartLuigi267TlutWheel1, + gKartLuigi267TlutWheel2, + gKartLuigi267TlutWheel3, + gKartLuigi268TlutWheel0, + gKartLuigi268TlutWheel1, + gKartLuigi268TlutWheel2, + gKartLuigi268TlutWheel3, + gKartLuigi269TlutWheel0, + gKartLuigi269TlutWheel1, + gKartLuigi269TlutWheel2, + gKartLuigi269TlutWheel3, + gKartLuigi270TlutWheel0, + gKartLuigi270TlutWheel1, + gKartLuigi270TlutWheel2, + gKartLuigi270TlutWheel3, + gKartLuigi271TlutWheel0, + gKartLuigi271TlutWheel1, + gKartLuigi271TlutWheel2, + gKartLuigi271TlutWheel3, + gKartLuigi272TlutWheel0, + gKartLuigi272TlutWheel1, + gKartLuigi272TlutWheel2, + gKartLuigi272TlutWheel3, + gKartLuigi273TlutWheel0, + gKartLuigi273TlutWheel1, + gKartLuigi273TlutWheel2, + gKartLuigi273TlutWheel3, + gKartLuigi274TlutWheel0, + gKartLuigi274TlutWheel1, + gKartLuigi274TlutWheel2, + gKartLuigi274TlutWheel3, + gKartLuigi275TlutWheel0, + gKartLuigi275TlutWheel1, + gKartLuigi275TlutWheel2, + gKartLuigi275TlutWheel3, + gKartLuigi276TlutWheel0, + gKartLuigi276TlutWheel1, + gKartLuigi276TlutWheel2, + gKartLuigi276TlutWheel3, + gKartLuigi277TlutWheel0, + gKartLuigi277TlutWheel1, + gKartLuigi277TlutWheel2, + gKartLuigi277TlutWheel3, + gKartLuigi278TlutWheel0, + gKartLuigi278TlutWheel1, + gKartLuigi278TlutWheel2, + gKartLuigi278TlutWheel3, + gKartLuigi279TlutWheel0, + gKartLuigi279TlutWheel1, + gKartLuigi279TlutWheel2, + gKartLuigi279TlutWheel3, + gKartLuigi280TlutWheel0, + gKartLuigi280TlutWheel1, + gKartLuigi280TlutWheel2, + gKartLuigi280TlutWheel3, + gKartLuigi281TlutWheel0, + gKartLuigi281TlutWheel1, + gKartLuigi281TlutWheel2, + gKartLuigi281TlutWheel3, + gKartLuigi282TlutWheel0, + gKartLuigi282TlutWheel1, + gKartLuigi282TlutWheel2, + gKartLuigi282TlutWheel3, + gKartLuigi283TlutWheel0, + gKartLuigi283TlutWheel1, + gKartLuigi283TlutWheel2, + gKartLuigi283TlutWheel3, + gKartLuigi284TlutWheel0, + gKartLuigi284TlutWheel1, + gKartLuigi284TlutWheel2, + gKartLuigi284TlutWheel3, + gKartLuigi285TlutWheel0, + gKartLuigi285TlutWheel1, + gKartLuigi285TlutWheel2, + gKartLuigi285TlutWheel3, + gKartLuigi286TlutWheel0, + gKartLuigi286TlutWheel1, + gKartLuigi286TlutWheel2, + gKartLuigi286TlutWheel3, + gKartLuigi287TlutWheel0, + gKartLuigi287TlutWheel1, + gKartLuigi287TlutWheel2, + gKartLuigi287TlutWheel3, + gKartLuigi288TlutWheel0, + gKartLuigi288TlutWheel1, + gKartLuigi288TlutWheel2, + gKartLuigi288TlutWheel3, +}; + +static const ALIGN_ASSET(2) char gKartLuigiPalette[] = "__OTR__textures/karts/luigi_kart/luigi_kart_palette"; + diff --git a/include/assets/textures/karts/mario_kart.h b/include/assets/textures/karts/mario_kart.h new file mode 100644 index 000000000..f460309fe --- /dev/null +++ b/include/assets/textures/karts/mario_kart.h @@ -0,0 +1,5854 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gKartMario000Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame000_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario000Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame000_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario000Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame000_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario000Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame000_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario001Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame001_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario001Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame001_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario001Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame001_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario001Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame001_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario002Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame002_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario002Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame002_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario002Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame002_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario002Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame002_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario003Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame003_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario003Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame003_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario003Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame003_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario003Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame003_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario004Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame004_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario004Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame004_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario004Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame004_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario004Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame004_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario005Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame005_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario005Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame005_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario005Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame005_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario005Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame005_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario006Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame006_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario006Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame006_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario006Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame006_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario006Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame006_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario007Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame007_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario007Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame007_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario007Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame007_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario007Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame007_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario008Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame008_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario008Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame008_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario008Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame008_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario008Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame008_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario009Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame009_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario009Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame009_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario009Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame009_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario009Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame009_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario010Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame010_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario010Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame010_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario010Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame010_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario010Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame010_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario011Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame011_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario011Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame011_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario011Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame011_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario011Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame011_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario012Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame012_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario012Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame012_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario012Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame012_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario012Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame012_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario013Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame013_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario013Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame013_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario013Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame013_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario013Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame013_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario014Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame014_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario014Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame014_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario014Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame014_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario014Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame014_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario015Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame015_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario015Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame015_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario015Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame015_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario015Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame015_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario016Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame016_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario016Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame016_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario016Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame016_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario016Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame016_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario017Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame017_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario017Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame017_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario017Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame017_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario017Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame017_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario018Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame018_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario018Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame018_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario018Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame018_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario018Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame018_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario019Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame019_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario019Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame019_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario019Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame019_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario019Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame019_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario020Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame020_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario020Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame020_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario020Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame020_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario020Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame020_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario021Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame021_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario021Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame021_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario021Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame021_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario021Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame021_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario022Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame022_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario022Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame022_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario022Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame022_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario022Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame022_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario023Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame023_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario023Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame023_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario023Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame023_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario023Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame023_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario024Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame024_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario024Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame024_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario024Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame024_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario024Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame024_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario025Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame025_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario025Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame025_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario025Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame025_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario025Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame025_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario026Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame026_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario026Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame026_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario026Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame026_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario026Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame026_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario027Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame027_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario027Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame027_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario027Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame027_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario027Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame027_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario028Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame028_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario028Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame028_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario028Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame028_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario028Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame028_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario029Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame029_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario029Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame029_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario029Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame029_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario029Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame029_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario030Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame030_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario030Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame030_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario030Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame030_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario030Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame030_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario031Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame031_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario031Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame031_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario031Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame031_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario031Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame031_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario032Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame032_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario032Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame032_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario032Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame032_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario032Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame032_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario033Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame033_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario033Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame033_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario033Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame033_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario033Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame033_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario034Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame034_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario034Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame034_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario034Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame034_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario034Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame034_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario035Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame035_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario035Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame035_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario035Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame035_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario035Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame035_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario036Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame036_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario036Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame036_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario036Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame036_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario036Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame036_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario037Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame037_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario037Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame037_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario037Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame037_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario037Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame037_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario038Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame038_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario038Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame038_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario038Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame038_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario038Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame038_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario039Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame039_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario039Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame039_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario039Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame039_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario039Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame039_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario040Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame040_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario040Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame040_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario040Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame040_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario040Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame040_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario041Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame041_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario041Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame041_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario041Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame041_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario041Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame041_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario042Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame042_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario042Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame042_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario042Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame042_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario042Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame042_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario043Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame043_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario043Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame043_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario043Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame043_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario043Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame043_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario044Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame044_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario044Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame044_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario044Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame044_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario044Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame044_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario045Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame045_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario045Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame045_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario045Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame045_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario045Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame045_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario046Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame046_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario046Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame046_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario046Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame046_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario046Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame046_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario047Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame047_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario047Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame047_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario047Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame047_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario047Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame047_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario048Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame048_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario048Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame048_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario048Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame048_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario048Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame048_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario049Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame049_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario049Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame049_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario049Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame049_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario049Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame049_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario050Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame050_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario050Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame050_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario050Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame050_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario050Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame050_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario051Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame051_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario051Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame051_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario051Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame051_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario051Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame051_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario052Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame052_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario052Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame052_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario052Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame052_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario052Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame052_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario053Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame053_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario053Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame053_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario053Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame053_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario053Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame053_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario054Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame054_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario054Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame054_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario054Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame054_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario054Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame054_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario055Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame055_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario055Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame055_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario055Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame055_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario055Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame055_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario056Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame056_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario056Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame056_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario056Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame056_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario056Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame056_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario057Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame057_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario057Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame057_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario057Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame057_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario057Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame057_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario058Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame058_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario058Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame058_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario058Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame058_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario058Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame058_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario059Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame059_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario059Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame059_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario059Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame059_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario059Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame059_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario060Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame060_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario060Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame060_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario060Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame060_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario060Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame060_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario061Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame061_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario061Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame061_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario061Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame061_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario061Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame061_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario062Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame062_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario062Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame062_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario062Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame062_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario062Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame062_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario063Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame063_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario063Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame063_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario063Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame063_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario063Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame063_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario064Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame064_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario064Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame064_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario064Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame064_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario064Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame064_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario065Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame065_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario065Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame065_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario065Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame065_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario065Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame065_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario066Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame066_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario066Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame066_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario066Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame066_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario066Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame066_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario067Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame067_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario067Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame067_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario067Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame067_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario067Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame067_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario068Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame068_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario068Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame068_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario068Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame068_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario068Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame068_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario069Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame069_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario069Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame069_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario069Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame069_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario069Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame069_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario070Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame070_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario070Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame070_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario070Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame070_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario070Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame070_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario071Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame071_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario071Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame071_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario071Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame071_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario071Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame071_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario072Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame072_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario072Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame072_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario072Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame072_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario072Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame072_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario073Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame073_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario073Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame073_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario073Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame073_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario073Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame073_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario074Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame074_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario074Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame074_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario074Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame074_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario074Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame074_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario075Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame075_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario075Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame075_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario075Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame075_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario075Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame075_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario076Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame076_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario076Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame076_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario076Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame076_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario076Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame076_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario077Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame077_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario077Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame077_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario077Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame077_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario077Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame077_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario078Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame078_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario078Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame078_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario078Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame078_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario078Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame078_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario079Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame079_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario079Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame079_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario079Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame079_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario079Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame079_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario080Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame080_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario080Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame080_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario080Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame080_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario080Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame080_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario081Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame081_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario081Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame081_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario081Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame081_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario081Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame081_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario082Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame082_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario082Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame082_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario082Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame082_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario082Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame082_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario083Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame083_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario083Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame083_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario083Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame083_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario083Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame083_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario084Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame084_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario084Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame084_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario084Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame084_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario084Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame084_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario085Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame085_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario085Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame085_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario085Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame085_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario085Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame085_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario086Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame086_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario086Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame086_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario086Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame086_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario086Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame086_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario087Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame087_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario087Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame087_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario087Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame087_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario087Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame087_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario088Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame088_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario088Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame088_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario088Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame088_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario088Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame088_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario089Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame089_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario089Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame089_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario089Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame089_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario089Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame089_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario090Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame090_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario090Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame090_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario090Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame090_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario090Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame090_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario091Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame091_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario091Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame091_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario091Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame091_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario091Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame091_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario092Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame092_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario092Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame092_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario092Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame092_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario092Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame092_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario093Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame093_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario093Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame093_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario093Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame093_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario093Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame093_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario094Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame094_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario094Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame094_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario094Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame094_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario094Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame094_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario095Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame095_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario095Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame095_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario095Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame095_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario095Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame095_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario096Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame096_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario096Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame096_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario096Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame096_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario096Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame096_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario097Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame097_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario097Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame097_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario097Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame097_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario097Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame097_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario098Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame098_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario098Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame098_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario098Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame098_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario098Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame098_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario099Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame099_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario099Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame099_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario099Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame099_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario099Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame099_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario100Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame100_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario100Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame100_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario100Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame100_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario100Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame100_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario101Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame101_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario101Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame101_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario101Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame101_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario101Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame101_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario102Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame102_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario102Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame102_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario102Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame102_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario102Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame102_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario103Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame103_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario103Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame103_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario103Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame103_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario103Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame103_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario104Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame104_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario104Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame104_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario104Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame104_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario104Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame104_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario105Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame105_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario105Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame105_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario105Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame105_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario105Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame105_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario106Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame106_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario106Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame106_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario106Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame106_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario106Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame106_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario107Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame107_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario107Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame107_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario107Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame107_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario107Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame107_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario108Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame108_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario108Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame108_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario108Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame108_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario108Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame108_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario109Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame109_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario109Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame109_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario109Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame109_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario109Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame109_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario110Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame110_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario110Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame110_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario110Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame110_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario110Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame110_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario111Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame111_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario111Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame111_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario111Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame111_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario111Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame111_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario112Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame112_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario112Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame112_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario112Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame112_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario112Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame112_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario113Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame113_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario113Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame113_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario113Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame113_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario113Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame113_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario114Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame114_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario114Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame114_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario114Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame114_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario114Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame114_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario115Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame115_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario115Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame115_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario115Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame115_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario115Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame115_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario116Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame116_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario116Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame116_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario116Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame116_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario116Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame116_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario117Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame117_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario117Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame117_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario117Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame117_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario117Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame117_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario118Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame118_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario118Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame118_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario118Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame118_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario118Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame118_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario119Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame119_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario119Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame119_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario119Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame119_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario119Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame119_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario120Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame120_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario120Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame120_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario120Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame120_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario120Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame120_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario121Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame121_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario121Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame121_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario121Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame121_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario121Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame121_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario122Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame122_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario122Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame122_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario122Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame122_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario122Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame122_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario123Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame123_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario123Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame123_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario123Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame123_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario123Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame123_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario124Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame124_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario124Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame124_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario124Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame124_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario124Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame124_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario125Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame125_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario125Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame125_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario125Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame125_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario125Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame125_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario126Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame126_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario126Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame126_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario126Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame126_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario126Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame126_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario127Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame127_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario127Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame127_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario127Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame127_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario127Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame127_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario128Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame128_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario128Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame128_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario128Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame128_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario128Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame128_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario129Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame129_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario129Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame129_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario129Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame129_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario129Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame129_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario130Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame130_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario130Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame130_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario130Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame130_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario130Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame130_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario131Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame131_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario131Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame131_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario131Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame131_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario131Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame131_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario132Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame132_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario132Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame132_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario132Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame132_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario132Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame132_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario133Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame133_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario133Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame133_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario133Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame133_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario133Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame133_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario134Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame134_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario134Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame134_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario134Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame134_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario134Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame134_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario135Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame135_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario135Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame135_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario135Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame135_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario135Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame135_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario136Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame136_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario136Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame136_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario136Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame136_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario136Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame136_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario137Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame137_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario137Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame137_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario137Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame137_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario137Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame137_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario138Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame138_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario138Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame138_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario138Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame138_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario138Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame138_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario139Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame139_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario139Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame139_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario139Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame139_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario139Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame139_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario140Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame140_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario140Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame140_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario140Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame140_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario140Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame140_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario141Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame141_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario141Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame141_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario141Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame141_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario141Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame141_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario142Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame142_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario142Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame142_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario142Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame142_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario142Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame142_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario143Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame143_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario143Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame143_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario143Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame143_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario143Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame143_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario144Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame144_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario144Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame144_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario144Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame144_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario144Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame144_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario145Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame145_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario145Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame145_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario145Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame145_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario145Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame145_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario146Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame146_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario146Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame146_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario146Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame146_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario146Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame146_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario147Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame147_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario147Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame147_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario147Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame147_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario147Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame147_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario148Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame148_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario148Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame148_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario148Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame148_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario148Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame148_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario149Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame149_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario149Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame149_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario149Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame149_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario149Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame149_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario150Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame150_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario150Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame150_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario150Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame150_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario150Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame150_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario151Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame151_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario151Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame151_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario151Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame151_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario151Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame151_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario152Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame152_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario152Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame152_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario152Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame152_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario152Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame152_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario153Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame153_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario153Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame153_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario153Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame153_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario153Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame153_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario154Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame154_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario154Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame154_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario154Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame154_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario154Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame154_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario155Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame155_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario155Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame155_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario155Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame155_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario155Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame155_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario156Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame156_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario156Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame156_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario156Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame156_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario156Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame156_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario157Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame157_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario157Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame157_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario157Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame157_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario157Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame157_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario158Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame158_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario158Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame158_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario158Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame158_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario158Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame158_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario159Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame159_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario159Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame159_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario159Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame159_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario159Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame159_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario160Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame160_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario160Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame160_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario160Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame160_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario160Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame160_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario161Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame161_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario161Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame161_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario161Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame161_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario161Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame161_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario162Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame162_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario162Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame162_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario162Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame162_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario162Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame162_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario163Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame163_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario163Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame163_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario163Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame163_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario163Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame163_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario164Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame164_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario164Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame164_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario164Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame164_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario164Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame164_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario165Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame165_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario165Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame165_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario165Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame165_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario165Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame165_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario166Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame166_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario166Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame166_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario166Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame166_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario166Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame166_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario167Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame167_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario167Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame167_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario167Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame167_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario167Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame167_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario168Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame168_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario168Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame168_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario168Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame168_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario168Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame168_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario169Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame169_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario169Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame169_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario169Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame169_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario169Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame169_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario170Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame170_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario170Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame170_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario170Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame170_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario170Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame170_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario171Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame171_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario171Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame171_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario171Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame171_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario171Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame171_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario172Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame172_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario172Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame172_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario172Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame172_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario172Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame172_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario173Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame173_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario173Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame173_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario173Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame173_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario173Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame173_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario174Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame174_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario174Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame174_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario174Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame174_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario174Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame174_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario175Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame175_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario175Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame175_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario175Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame175_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario175Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame175_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario176Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame176_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario176Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame176_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario176Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame176_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario176Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame176_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario177Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame177_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario177Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame177_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario177Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame177_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario177Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame177_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario178Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame178_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario178Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame178_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario178Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame178_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario178Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame178_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario179Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame179_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario179Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame179_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario179Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame179_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario179Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame179_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario180Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame180_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario180Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame180_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario180Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame180_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario180Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame180_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario181Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame181_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario181Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame181_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario181Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame181_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario181Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame181_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario182Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame182_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario182Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame182_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario182Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame182_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario182Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame182_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario183Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame183_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario183Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame183_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario183Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame183_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario183Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame183_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario184Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame184_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario184Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame184_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario184Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame184_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario184Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame184_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario185Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame185_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario185Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame185_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario185Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame185_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario185Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame185_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario186Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame186_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario186Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame186_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario186Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame186_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario186Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame186_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario187Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame187_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario187Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame187_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario187Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame187_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario187Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame187_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario188Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame188_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario188Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame188_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario188Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame188_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario188Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame188_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario189Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame189_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario189Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame189_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario189Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame189_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario189Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame189_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario190Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame190_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario190Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame190_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario190Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame190_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario190Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame190_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario191Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame191_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario191Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame191_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario191Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame191_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario191Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame191_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario192Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame192_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario192Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame192_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario192Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame192_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario192Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame192_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario193Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame193_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario193Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame193_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario193Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame193_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario193Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame193_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario194Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame194_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario194Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame194_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario194Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame194_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario194Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame194_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario195Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame195_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario195Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame195_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario195Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame195_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario195Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame195_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario196Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame196_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario196Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame196_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario196Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame196_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario196Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame196_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario197Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame197_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario197Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame197_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario197Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame197_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario197Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame197_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario198Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame198_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario198Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame198_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario198Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame198_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario198Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame198_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario199Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame199_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario199Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame199_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario199Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame199_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario199Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame199_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario200Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame200_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario200Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame200_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario200Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame200_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario200Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame200_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario201Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame201_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario201Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame201_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario201Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame201_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario201Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame201_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario202Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame202_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario202Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame202_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario202Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame202_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario202Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame202_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario203Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame203_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario203Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame203_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario203Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame203_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario203Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame203_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario204Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame204_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario204Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame204_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario204Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame204_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario204Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame204_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario205Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame205_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario205Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame205_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario205Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame205_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario205Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame205_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario206Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame206_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario206Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame206_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario206Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame206_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario206Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame206_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario207Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame207_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario207Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame207_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario207Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame207_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario207Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame207_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario208Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame208_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario208Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame208_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario208Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame208_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario208Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame208_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario209Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame209_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario209Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame209_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario209Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame209_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario209Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame209_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario210Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame210_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario210Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame210_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario210Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame210_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario210Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame210_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario211Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame211_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario211Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame211_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario211Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame211_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario211Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame211_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario212Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame212_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario212Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame212_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario212Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame212_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario212Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame212_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario213Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame213_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario213Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame213_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario213Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame213_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario213Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame213_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario214Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame214_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario214Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame214_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario214Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame214_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario214Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame214_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario215Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame215_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario215Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame215_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario215Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame215_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario215Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame215_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario216Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame216_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario216Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame216_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario216Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame216_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario216Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame216_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario217Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame217_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario217Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame217_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario217Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame217_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario217Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame217_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario218Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame218_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario218Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame218_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario218Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame218_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario218Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame218_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario219Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame219_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario219Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame219_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario219Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame219_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario219Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame219_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario220Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame220_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario220Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame220_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario220Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame220_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario220Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame220_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario221Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame221_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario221Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame221_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario221Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame221_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario221Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame221_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario222Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame222_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario222Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame222_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario222Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame222_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario222Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame222_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario223Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame223_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario223Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame223_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario223Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame223_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario223Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame223_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario224Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame224_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario224Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame224_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario224Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame224_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario224Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame224_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario225Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame225_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario225Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame225_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario225Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame225_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario225Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame225_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario226Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame226_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario226Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame226_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario226Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame226_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario226Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame226_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario227Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame227_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario227Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame227_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario227Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame227_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario227Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame227_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario228Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame228_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario228Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame228_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario228Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame228_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario228Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame228_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario229Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame229_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario229Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame229_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario229Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame229_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario229Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame229_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario230Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame230_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario230Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame230_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario230Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame230_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario230Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame230_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario231Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame231_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario231Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame231_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario231Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame231_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario231Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame231_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario232Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame232_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario232Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame232_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario232Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame232_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario232Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame232_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario233Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame233_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario233Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame233_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario233Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame233_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario233Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame233_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario234Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame234_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario234Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame234_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario234Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame234_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario234Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame234_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario235Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame235_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario235Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame235_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario235Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame235_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario235Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame235_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario236Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame236_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario236Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame236_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario236Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame236_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario236Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame236_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario237Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame237_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario237Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame237_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario237Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame237_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario237Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame237_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario238Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame238_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario238Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame238_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario238Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame238_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario238Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame238_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario239Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame239_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario239Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame239_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario239Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame239_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario239Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame239_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario240Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame240_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario240Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame240_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario240Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame240_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario240Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame240_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario241Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame241_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario241Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame241_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario241Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame241_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario241Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame241_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario242Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame242_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario242Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame242_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario242Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame242_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario242Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame242_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario243Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame243_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario243Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame243_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario243Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame243_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario243Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame243_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario244Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame244_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario244Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame244_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario244Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame244_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario244Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame244_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario245Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame245_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario245Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame245_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario245Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame245_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario245Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame245_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario246Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame246_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario246Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame246_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario246Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame246_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario246Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame246_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario247Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame247_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario247Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame247_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario247Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame247_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario247Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame247_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario248Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame248_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario248Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame248_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario248Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame248_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario248Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame248_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario249Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame249_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario249Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame249_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario249Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame249_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario249Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame249_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario250Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame250_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario250Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame250_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario250Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame250_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario250Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame250_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario251Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame251_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario251Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame251_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario251Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame251_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario251Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame251_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario252Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame252_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario252Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame252_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario252Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame252_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario252Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame252_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario253Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame253_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario253Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame253_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario253Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame253_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario253Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame253_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario254Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame254_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario254Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame254_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario254Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame254_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario254Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame254_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario255Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame255_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario255Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame255_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario255Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame255_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario255Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame255_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario256Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame256_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario256Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame256_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario256Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame256_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario256Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame256_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario257Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame257_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario257Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame257_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario257Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame257_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario257Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame257_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario258Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame258_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario258Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame258_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario258Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame258_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario258Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame258_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario259Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame259_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario259Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame259_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario259Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame259_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario259Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame259_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario260Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame260_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario260Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame260_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario260Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame260_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario260Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame260_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario261Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame261_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario261Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame261_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario261Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame261_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario261Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame261_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario262Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame262_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario262Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame262_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario262Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame262_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario262Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame262_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario263Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame263_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario263Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame263_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario263Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame263_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario263Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame263_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario264Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame264_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario264Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame264_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario264Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame264_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario264Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame264_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario265Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame265_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario265Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame265_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario265Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame265_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario265Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame265_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario266Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame266_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario266Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame266_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario266Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame266_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario266Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame266_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario267Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame267_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario267Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame267_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario267Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame267_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario267Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame267_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario268Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame268_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario268Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame268_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario268Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame268_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario268Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame268_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario269Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame269_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario269Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame269_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario269Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame269_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario269Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame269_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario270Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame270_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario270Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame270_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario270Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame270_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario270Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame270_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario271Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame271_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario271Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame271_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario271Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame271_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario271Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame271_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario272Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame272_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario272Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame272_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario272Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame272_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario272Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame272_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario273Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame273_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario273Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame273_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario273Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame273_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario273Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame273_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario274Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame274_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario274Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame274_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario274Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame274_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario274Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame274_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario275Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame275_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario275Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame275_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario275Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame275_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario275Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame275_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario276Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame276_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario276Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame276_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario276Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame276_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario276Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame276_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario277Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame277_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario277Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame277_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario277Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame277_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario277Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame277_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario278Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame278_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario278Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame278_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario278Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame278_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario278Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame278_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario279Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame279_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario279Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame279_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario279Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame279_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario279Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame279_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario280Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame280_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario280Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame280_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario280Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame280_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario280Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame280_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario281Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame281_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario281Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame281_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario281Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame281_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario281Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame281_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario282Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame282_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario282Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame282_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario282Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame282_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario282Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame282_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario283Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame283_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario283Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame283_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario283Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame283_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario283Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame283_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario284Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame284_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario284Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame284_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario284Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame284_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario284Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame284_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario285Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame285_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario285Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame285_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario285Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame285_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario285Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame285_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario286Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame286_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario286Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame286_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario286Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame286_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario286Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame286_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario287Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame287_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario287Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame287_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario287Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame287_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario287Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame287_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario288Wheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_frame288_wheel3"; + +static const ALIGN_ASSET(2) char gKartMario288Wheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_frame288_wheel1"; + +static const ALIGN_ASSET(2) char gKartMario288Wheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_frame288_wheel0"; + +static const ALIGN_ASSET(2) char gKartMario288Wheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_frame288_wheel2"; + +static const ALIGN_ASSET(2) char gKartMario289[] = "__OTR__textures/karts/mario_kart/mario_kart_frame289"; + +static const ALIGN_ASSET(2) char gKartMario290[] = "__OTR__textures/karts/mario_kart/mario_kart_frame290"; + +static const ALIGN_ASSET(2) char gKartMario291[] = "__OTR__textures/karts/mario_kart/mario_kart_frame291"; + +static const ALIGN_ASSET(2) char gKartMario292[] = "__OTR__textures/karts/mario_kart/mario_kart_frame292"; + +static const ALIGN_ASSET(2) char gKartMario293[] = "__OTR__textures/karts/mario_kart/mario_kart_frame293"; + +static const ALIGN_ASSET(2) char gKartMario294[] = "__OTR__textures/karts/mario_kart/mario_kart_frame294"; + +static const ALIGN_ASSET(2) char gKartMario295[] = "__OTR__textures/karts/mario_kart/mario_kart_frame295"; + +static const ALIGN_ASSET(2) char gKartMario296[] = "__OTR__textures/karts/mario_kart/mario_kart_frame296"; + +static const ALIGN_ASSET(2) char gKartMario297[] = "__OTR__textures/karts/mario_kart/mario_kart_frame297"; + +static const ALIGN_ASSET(2) char gKartMario298[] = "__OTR__textures/karts/mario_kart/mario_kart_frame298"; + +static const ALIGN_ASSET(2) char gKartMario299[] = "__OTR__textures/karts/mario_kart/mario_kart_frame299"; + +static const ALIGN_ASSET(2) char gKartMario300[] = "__OTR__textures/karts/mario_kart/mario_kart_frame300"; + +static const ALIGN_ASSET(2) char gKartMario301[] = "__OTR__textures/karts/mario_kart/mario_kart_frame301"; + +static const ALIGN_ASSET(2) char gKartMario302[] = "__OTR__textures/karts/mario_kart/mario_kart_frame302"; + +static const ALIGN_ASSET(2) char gKartMario303[] = "__OTR__textures/karts/mario_kart/mario_kart_frame303"; + +static const ALIGN_ASSET(2) char gKartMario304[] = "__OTR__textures/karts/mario_kart/mario_kart_frame304"; + +static const ALIGN_ASSET(2) char gKartMario305[] = "__OTR__textures/karts/mario_kart/mario_kart_frame305"; + +static const ALIGN_ASSET(2) char gKartMario306[] = "__OTR__textures/karts/mario_kart/mario_kart_frame306"; + +static const ALIGN_ASSET(2) char gKartMario307[] = "__OTR__textures/karts/mario_kart/mario_kart_frame307"; + +static const ALIGN_ASSET(2) char gKartMario308[] = "__OTR__textures/karts/mario_kart/mario_kart_frame308"; + +static const ALIGN_ASSET(2) char gKartMario309[] = "__OTR__textures/karts/mario_kart/mario_kart_frame309"; + +static const ALIGN_ASSET(2) char gKartMario310[] = "__OTR__textures/karts/mario_kart/mario_kart_frame310"; + +static const ALIGN_ASSET(2) char gKartMario311[] = "__OTR__textures/karts/mario_kart/mario_kart_frame311"; + +static const ALIGN_ASSET(2) char gKartMario312[] = "__OTR__textures/karts/mario_kart/mario_kart_frame312"; + +static const ALIGN_ASSET(2) char gKartMario313[] = "__OTR__textures/karts/mario_kart/mario_kart_frame313"; + +static const ALIGN_ASSET(2) char gKartMario314[] = "__OTR__textures/karts/mario_kart/mario_kart_frame314"; + +static const ALIGN_ASSET(2) char gKartMario315[] = "__OTR__textures/karts/mario_kart/mario_kart_frame315"; + +static const ALIGN_ASSET(2) char gKartMario316[] = "__OTR__textures/karts/mario_kart/mario_kart_frame316"; + +static const ALIGN_ASSET(2) char gKartMario317[] = "__OTR__textures/karts/mario_kart/mario_kart_frame317"; + +static const ALIGN_ASSET(2) char gKartMario318[] = "__OTR__textures/karts/mario_kart/mario_kart_frame318"; + +static const ALIGN_ASSET(2) char gKartMario319[] = "__OTR__textures/karts/mario_kart/mario_kart_frame319"; + +static const ALIGN_ASSET(2) char gKartMario320[] = "__OTR__textures/karts/mario_kart/mario_kart_frame320"; + +static const ALIGN_ASSET(2) char gKartMario000TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_000_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario000TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_000_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario000TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_000_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario000TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_000_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario001TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_001_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario001TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_001_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario001TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_001_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario001TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_001_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario002TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_002_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario002TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_002_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario002TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_002_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario002TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_002_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario003TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_003_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario003TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_003_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario003TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_003_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario003TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_003_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario004TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_004_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario004TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_004_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario004TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_004_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario004TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_004_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario005TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_005_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario005TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_005_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario005TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_005_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario005TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_005_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario006TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_006_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario006TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_006_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario006TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_006_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario006TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_006_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario007TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_007_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario007TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_007_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario007TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_007_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario007TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_007_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario008TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_008_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario008TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_008_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario008TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_008_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario008TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_008_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario009TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_009_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario009TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_009_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario009TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_009_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario009TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_009_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario010TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_010_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario010TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_010_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario010TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_010_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario010TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_010_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario011TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_011_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario011TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_011_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario011TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_011_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario011TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_011_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario012TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_012_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario012TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_012_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario012TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_012_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario012TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_012_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario013TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_013_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario013TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_013_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario013TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_013_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario013TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_013_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario014TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_014_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario014TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_014_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario014TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_014_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario014TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_014_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario015TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_015_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario015TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_015_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario015TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_015_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario015TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_015_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario016TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_016_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario016TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_016_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario016TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_016_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario016TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_016_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario017TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_017_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario017TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_017_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario017TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_017_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario017TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_017_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario018TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_018_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario018TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_018_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario018TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_018_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario018TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_018_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario019TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_019_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario019TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_019_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario019TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_019_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario019TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_019_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario020TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_020_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario020TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_020_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario020TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_020_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario020TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_020_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario021TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_021_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario021TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_021_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario021TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_021_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario021TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_021_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario022TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_022_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario022TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_022_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario022TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_022_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario022TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_022_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario023TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_023_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario023TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_023_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario023TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_023_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario023TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_023_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario024TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_024_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario024TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_024_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario024TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_024_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario024TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_024_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario025TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_025_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario025TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_025_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario025TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_025_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario025TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_025_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario026TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_026_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario026TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_026_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario026TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_026_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario026TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_026_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario027TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_027_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario027TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_027_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario027TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_027_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario027TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_027_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario028TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_028_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario028TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_028_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario028TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_028_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario028TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_028_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario029TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_029_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario029TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_029_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario029TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_029_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario029TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_029_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario030TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_030_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario030TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_030_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario030TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_030_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario030TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_030_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario031TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_031_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario031TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_031_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario031TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_031_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario031TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_031_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario032TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_032_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario032TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_032_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario032TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_032_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario032TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_032_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario033TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_033_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario033TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_033_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario033TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_033_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario033TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_033_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario034TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_034_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario034TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_034_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario034TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_034_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario034TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_034_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario035TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_035_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario035TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_035_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario035TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_035_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario035TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_035_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario036TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_036_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario036TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_036_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario036TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_036_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario036TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_036_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario037TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_037_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario037TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_037_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario037TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_037_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario037TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_037_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario038TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_038_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario038TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_038_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario038TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_038_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario038TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_038_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario039TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_039_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario039TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_039_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario039TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_039_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario039TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_039_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario040TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_040_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario040TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_040_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario040TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_040_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario040TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_040_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario041TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_041_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario041TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_041_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario041TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_041_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario041TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_041_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario042TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_042_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario042TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_042_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario042TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_042_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario042TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_042_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario043TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_043_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario043TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_043_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario043TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_043_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario043TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_043_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario044TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_044_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario044TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_044_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario044TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_044_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario044TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_044_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario045TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_045_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario045TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_045_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario045TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_045_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario045TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_045_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario046TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_046_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario046TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_046_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario046TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_046_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario046TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_046_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario047TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_047_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario047TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_047_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario047TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_047_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario047TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_047_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario048TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_048_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario048TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_048_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario048TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_048_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario048TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_048_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario049TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_049_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario049TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_049_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario049TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_049_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario049TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_049_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario050TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_050_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario050TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_050_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario050TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_050_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario050TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_050_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario051TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_051_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario051TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_051_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario051TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_051_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario051TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_051_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario052TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_052_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario052TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_052_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario052TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_052_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario052TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_052_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario053TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_053_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario053TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_053_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario053TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_053_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario053TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_053_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario054TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_054_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario054TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_054_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario054TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_054_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario054TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_054_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario055TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_055_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario055TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_055_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario055TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_055_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario055TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_055_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario056TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_056_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario056TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_056_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario056TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_056_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario056TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_056_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario057TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_057_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario057TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_057_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario057TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_057_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario057TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_057_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario058TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_058_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario058TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_058_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario058TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_058_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario058TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_058_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario059TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_059_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario059TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_059_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario059TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_059_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario059TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_059_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario060TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_060_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario060TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_060_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario060TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_060_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario060TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_060_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario061TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_061_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario061TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_061_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario061TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_061_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario061TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_061_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario062TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_062_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario062TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_062_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario062TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_062_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario062TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_062_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario063TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_063_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario063TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_063_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario063TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_063_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario063TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_063_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario064TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_064_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario064TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_064_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario064TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_064_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario064TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_064_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario065TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_065_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario065TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_065_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario065TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_065_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario065TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_065_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario066TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_066_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario066TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_066_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario066TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_066_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario066TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_066_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario067TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_067_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario067TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_067_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario067TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_067_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario067TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_067_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario068TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_068_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario068TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_068_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario068TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_068_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario068TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_068_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario069TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_069_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario069TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_069_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario069TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_069_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario069TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_069_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario070TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_070_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario070TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_070_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario070TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_070_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario070TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_070_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario071TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_071_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario071TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_071_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario071TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_071_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario071TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_071_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario072TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_072_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario072TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_072_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario072TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_072_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario072TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_072_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario073TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_073_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario073TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_073_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario073TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_073_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario073TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_073_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario074TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_074_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario074TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_074_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario074TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_074_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario074TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_074_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario075TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_075_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario075TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_075_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario075TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_075_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario075TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_075_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario076TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_076_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario076TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_076_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario076TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_076_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario076TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_076_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario077TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_077_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario077TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_077_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario077TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_077_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario077TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_077_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario078TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_078_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario078TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_078_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario078TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_078_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario078TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_078_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario079TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_079_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario079TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_079_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario079TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_079_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario079TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_079_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario080TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_080_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario080TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_080_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario080TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_080_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario080TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_080_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario081TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_081_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario081TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_081_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario081TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_081_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario081TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_081_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario082TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_082_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario082TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_082_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario082TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_082_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario082TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_082_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario083TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_083_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario083TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_083_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario083TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_083_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario083TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_083_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario084TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_084_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario084TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_084_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario084TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_084_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario084TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_084_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario085TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_085_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario085TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_085_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario085TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_085_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario085TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_085_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario086TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_086_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario086TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_086_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario086TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_086_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario086TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_086_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario087TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_087_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario087TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_087_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario087TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_087_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario087TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_087_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario088TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_088_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario088TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_088_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario088TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_088_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario088TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_088_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario089TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_089_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario089TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_089_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario089TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_089_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario089TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_089_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario090TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_090_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario090TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_090_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario090TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_090_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario090TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_090_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario091TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_091_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario091TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_091_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario091TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_091_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario091TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_091_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario092TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_092_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario092TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_092_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario092TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_092_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario092TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_092_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario093TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_093_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario093TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_093_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario093TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_093_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario093TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_093_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario094TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_094_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario094TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_094_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario094TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_094_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario094TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_094_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario095TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_095_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario095TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_095_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario095TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_095_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario095TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_095_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario096TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_096_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario096TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_096_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario096TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_096_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario096TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_096_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario097TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_097_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario097TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_097_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario097TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_097_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario097TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_097_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario098TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_098_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario098TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_098_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario098TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_098_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario098TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_098_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario099TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_099_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario099TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_099_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario099TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_099_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario099TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_099_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario100TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_100_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario100TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_100_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario100TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_100_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario100TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_100_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario101TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_101_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario101TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_101_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario101TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_101_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario101TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_101_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario102TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_102_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario102TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_102_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario102TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_102_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario102TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_102_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario103TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_103_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario103TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_103_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario103TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_103_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario103TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_103_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario104TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_104_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario104TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_104_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario104TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_104_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario104TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_104_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario105TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_105_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario105TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_105_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario105TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_105_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario105TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_105_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario106TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_106_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario106TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_106_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario106TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_106_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario106TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_106_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario107TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_107_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario107TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_107_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario107TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_107_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario107TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_107_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario108TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_108_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario108TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_108_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario108TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_108_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario108TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_108_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario109TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_109_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario109TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_109_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario109TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_109_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario109TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_109_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario110TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_110_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario110TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_110_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario110TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_110_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario110TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_110_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario111TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_111_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario111TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_111_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario111TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_111_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario111TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_111_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario112TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_112_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario112TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_112_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario112TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_112_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario112TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_112_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario113TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_113_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario113TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_113_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario113TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_113_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario113TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_113_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario114TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_114_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario114TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_114_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario114TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_114_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario114TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_114_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario115TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_115_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario115TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_115_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario115TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_115_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario115TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_115_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario116TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_116_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario116TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_116_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario116TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_116_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario116TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_116_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario117TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_117_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario117TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_117_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario117TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_117_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario117TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_117_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario118TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_118_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario118TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_118_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario118TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_118_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario118TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_118_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario119TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_119_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario119TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_119_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario119TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_119_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario119TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_119_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario120TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_120_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario120TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_120_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario120TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_120_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario120TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_120_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario121TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_121_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario121TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_121_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario121TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_121_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario121TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_121_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario122TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_122_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario122TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_122_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario122TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_122_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario122TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_122_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario123TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_123_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario123TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_123_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario123TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_123_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario123TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_123_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario124TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_124_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario124TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_124_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario124TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_124_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario124TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_124_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario125TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_125_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario125TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_125_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario125TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_125_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario125TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_125_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario126TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_126_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario126TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_126_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario126TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_126_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario126TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_126_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario127TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_127_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario127TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_127_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario127TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_127_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario127TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_127_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario128TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_128_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario128TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_128_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario128TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_128_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario128TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_128_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario129TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_129_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario129TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_129_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario129TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_129_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario129TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_129_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario130TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_130_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario130TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_130_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario130TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_130_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario130TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_130_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario131TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_131_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario131TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_131_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario131TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_131_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario131TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_131_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario132TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_132_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario132TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_132_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario132TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_132_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario132TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_132_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario133TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_133_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario133TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_133_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario133TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_133_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario133TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_133_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario134TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_134_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario134TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_134_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario134TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_134_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario134TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_134_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario135TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_135_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario135TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_135_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario135TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_135_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario135TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_135_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario136TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_136_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario136TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_136_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario136TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_136_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario136TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_136_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario137TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_137_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario137TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_137_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario137TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_137_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario137TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_137_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario138TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_138_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario138TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_138_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario138TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_138_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario138TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_138_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario139TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_139_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario139TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_139_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario139TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_139_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario139TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_139_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario140TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_140_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario140TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_140_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario140TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_140_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario140TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_140_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario141TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_141_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario141TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_141_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario141TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_141_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario141TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_141_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario142TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_142_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario142TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_142_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario142TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_142_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario142TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_142_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario143TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_143_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario143TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_143_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario143TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_143_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario143TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_143_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario144TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_144_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario144TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_144_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario144TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_144_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario144TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_144_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario145TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_145_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario145TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_145_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario145TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_145_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario145TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_145_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario146TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_146_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario146TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_146_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario146TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_146_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario146TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_146_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario147TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_147_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario147TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_147_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario147TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_147_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario147TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_147_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario148TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_148_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario148TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_148_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario148TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_148_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario148TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_148_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario149TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_149_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario149TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_149_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario149TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_149_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario149TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_149_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario150TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_150_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario150TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_150_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario150TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_150_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario150TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_150_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario151TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_151_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario151TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_151_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario151TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_151_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario151TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_151_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario152TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_152_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario152TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_152_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario152TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_152_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario152TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_152_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario153TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_153_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario153TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_153_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario153TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_153_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario153TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_153_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario154TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_154_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario154TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_154_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario154TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_154_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario154TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_154_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario155TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_155_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario155TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_155_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario155TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_155_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario155TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_155_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario156TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_156_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario156TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_156_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario156TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_156_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario156TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_156_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario157TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_157_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario157TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_157_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario157TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_157_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario157TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_157_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario158TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_158_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario158TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_158_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario158TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_158_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario158TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_158_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario159TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_159_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario159TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_159_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario159TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_159_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario159TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_159_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario160TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_160_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario160TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_160_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario160TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_160_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario160TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_160_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario161TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_161_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario161TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_161_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario161TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_161_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario161TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_161_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario162TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_162_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario162TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_162_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario162TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_162_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario162TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_162_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario163TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_163_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario163TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_163_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario163TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_163_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario163TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_163_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario164TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_164_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario164TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_164_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario164TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_164_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario164TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_164_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario165TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_165_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario165TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_165_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario165TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_165_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario165TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_165_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario166TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_166_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario166TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_166_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario166TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_166_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario166TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_166_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario167TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_167_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario167TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_167_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario167TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_167_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario167TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_167_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario168TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_168_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario168TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_168_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario168TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_168_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario168TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_168_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario169TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_169_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario169TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_169_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario169TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_169_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario169TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_169_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario170TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_170_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario170TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_170_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario170TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_170_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario170TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_170_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario171TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_171_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario171TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_171_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario171TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_171_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario171TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_171_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario172TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_172_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario172TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_172_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario172TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_172_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario172TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_172_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario173TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_173_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario173TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_173_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario173TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_173_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario173TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_173_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario174TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_174_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario174TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_174_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario174TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_174_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario174TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_174_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario175TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_175_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario175TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_175_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario175TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_175_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario175TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_175_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario176TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_176_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario176TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_176_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario176TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_176_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario176TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_176_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario177TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_177_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario177TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_177_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario177TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_177_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario177TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_177_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario178TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_178_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario178TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_178_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario178TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_178_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario178TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_178_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario179TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_179_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario179TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_179_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario179TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_179_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario179TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_179_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario180TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_180_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario180TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_180_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario180TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_180_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario180TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_180_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario181TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_181_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario181TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_181_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario181TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_181_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario181TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_181_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario182TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_182_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario182TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_182_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario182TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_182_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario182TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_182_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario183TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_183_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario183TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_183_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario183TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_183_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario183TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_183_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario184TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_184_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario184TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_184_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario184TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_184_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario184TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_184_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario185TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_185_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario185TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_185_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario185TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_185_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario185TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_185_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario186TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_186_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario186TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_186_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario186TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_186_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario186TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_186_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario187TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_187_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario187TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_187_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario187TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_187_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario187TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_187_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario188TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_188_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario188TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_188_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario188TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_188_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario188TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_188_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario189TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_189_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario189TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_189_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario189TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_189_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario189TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_189_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario190TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_190_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario190TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_190_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario190TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_190_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario190TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_190_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario191TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_191_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario191TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_191_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario191TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_191_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario191TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_191_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario192TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_192_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario192TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_192_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario192TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_192_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario192TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_192_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario193TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_193_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario193TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_193_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario193TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_193_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario193TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_193_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario194TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_194_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario194TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_194_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario194TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_194_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario194TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_194_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario195TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_195_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario195TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_195_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario195TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_195_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario195TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_195_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario196TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_196_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario196TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_196_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario196TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_196_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario196TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_196_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario197TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_197_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario197TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_197_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario197TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_197_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario197TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_197_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario198TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_198_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario198TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_198_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario198TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_198_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario198TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_198_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario199TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_199_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario199TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_199_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario199TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_199_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario199TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_199_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario200TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_200_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario200TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_200_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario200TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_200_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario200TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_200_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario201TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_201_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario201TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_201_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario201TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_201_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario201TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_201_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario202TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_202_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario202TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_202_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario202TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_202_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario202TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_202_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario203TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_203_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario203TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_203_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario203TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_203_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario203TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_203_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario204TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_204_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario204TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_204_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario204TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_204_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario204TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_204_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario205TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_205_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario205TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_205_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario205TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_205_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario205TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_205_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario206TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_206_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario206TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_206_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario206TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_206_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario206TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_206_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario207TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_207_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario207TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_207_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario207TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_207_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario207TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_207_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario208TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_208_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario208TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_208_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario208TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_208_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario208TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_208_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario209TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_209_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario209TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_209_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario209TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_209_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario209TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_209_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario210TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_210_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario210TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_210_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario210TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_210_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario210TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_210_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario211TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_211_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario211TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_211_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario211TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_211_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario211TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_211_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario212TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_212_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario212TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_212_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario212TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_212_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario212TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_212_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario213TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_213_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario213TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_213_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario213TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_213_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario213TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_213_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario214TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_214_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario214TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_214_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario214TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_214_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario214TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_214_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario215TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_215_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario215TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_215_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario215TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_215_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario215TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_215_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario216TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_216_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario216TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_216_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario216TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_216_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario216TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_216_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario217TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_217_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario217TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_217_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario217TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_217_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario217TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_217_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario218TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_218_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario218TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_218_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario218TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_218_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario218TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_218_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario219TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_219_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario219TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_219_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario219TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_219_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario219TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_219_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario220TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_220_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario220TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_220_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario220TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_220_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario220TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_220_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario221TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_221_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario221TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_221_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario221TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_221_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario221TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_221_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario222TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_222_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario222TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_222_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario222TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_222_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario222TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_222_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario223TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_223_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario223TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_223_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario223TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_223_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario223TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_223_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario224TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_224_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario224TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_224_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario224TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_224_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario224TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_224_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario225TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_225_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario225TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_225_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario225TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_225_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario225TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_225_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario226TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_226_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario226TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_226_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario226TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_226_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario226TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_226_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario227TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_227_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario227TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_227_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario227TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_227_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario227TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_227_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario228TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_228_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario228TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_228_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario228TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_228_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario228TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_228_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario229TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_229_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario229TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_229_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario229TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_229_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario229TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_229_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario230TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_230_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario230TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_230_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario230TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_230_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario230TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_230_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario231TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_231_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario231TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_231_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario231TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_231_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario231TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_231_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario232TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_232_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario232TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_232_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario232TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_232_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario232TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_232_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario233TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_233_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario233TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_233_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario233TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_233_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario233TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_233_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario234TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_234_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario234TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_234_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario234TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_234_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario234TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_234_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario235TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_235_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario235TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_235_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario235TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_235_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario235TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_235_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario236TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_236_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario236TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_236_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario236TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_236_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario236TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_236_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario237TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_237_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario237TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_237_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario237TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_237_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario237TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_237_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario238TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_238_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario238TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_238_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario238TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_238_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario238TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_238_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario239TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_239_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario239TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_239_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario239TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_239_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario239TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_239_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario240TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_240_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario240TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_240_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario240TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_240_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario240TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_240_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario241TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_241_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario241TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_241_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario241TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_241_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario241TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_241_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario242TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_242_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario242TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_242_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario242TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_242_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario242TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_242_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario243TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_243_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario243TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_243_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario243TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_243_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario243TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_243_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario244TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_244_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario244TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_244_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario244TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_244_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario244TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_244_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario245TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_245_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario245TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_245_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario245TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_245_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario245TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_245_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario246TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_246_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario246TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_246_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario246TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_246_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario246TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_246_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario247TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_247_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario247TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_247_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario247TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_247_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario247TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_247_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario248TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_248_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario248TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_248_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario248TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_248_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario248TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_248_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario249TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_249_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario249TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_249_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario249TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_249_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario249TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_249_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario250TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_250_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario250TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_250_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario250TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_250_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario250TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_250_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario251TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_251_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario251TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_251_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario251TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_251_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario251TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_251_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario252TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_252_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario252TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_252_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario252TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_252_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario252TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_252_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario253TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_253_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario253TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_253_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario253TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_253_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario253TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_253_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario254TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_254_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario254TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_254_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario254TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_254_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario254TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_254_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario255TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_255_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario255TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_255_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario255TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_255_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario255TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_255_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario256TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_256_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario256TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_256_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario256TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_256_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario256TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_256_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario257TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_257_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario257TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_257_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario257TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_257_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario257TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_257_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario258TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_258_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario258TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_258_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario258TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_258_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario258TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_258_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario259TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_259_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario259TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_259_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario259TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_259_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario259TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_259_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario260TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_260_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario260TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_260_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario260TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_260_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario260TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_260_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario261TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_261_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario261TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_261_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario261TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_261_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario261TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_261_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario262TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_262_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario262TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_262_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario262TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_262_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario262TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_262_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario263TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_263_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario263TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_263_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario263TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_263_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario263TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_263_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario264TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_264_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario264TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_264_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario264TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_264_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario264TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_264_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario265TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_265_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario265TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_265_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario265TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_265_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario265TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_265_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario266TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_266_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario266TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_266_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario266TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_266_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario266TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_266_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario267TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_267_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario267TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_267_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario267TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_267_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario267TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_267_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario268TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_268_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario268TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_268_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario268TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_268_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario268TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_268_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario269TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_269_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario269TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_269_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario269TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_269_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario269TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_269_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario270TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_270_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario270TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_270_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario270TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_270_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario270TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_270_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario271TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_271_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario271TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_271_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario271TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_271_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario271TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_271_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario272TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_272_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario272TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_272_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario272TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_272_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario272TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_272_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario273TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_273_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario273TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_273_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario273TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_273_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario273TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_273_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario274TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_274_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario274TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_274_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario274TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_274_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario274TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_274_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario275TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_275_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario275TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_275_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario275TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_275_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario275TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_275_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario276TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_276_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario276TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_276_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario276TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_276_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario276TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_276_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario277TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_277_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario277TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_277_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario277TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_277_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario277TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_277_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario278TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_278_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario278TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_278_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario278TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_278_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario278TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_278_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario279TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_279_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario279TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_279_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario279TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_279_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario279TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_279_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario280TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_280_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario280TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_280_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario280TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_280_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario280TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_280_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario281TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_281_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario281TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_281_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario281TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_281_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario281TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_281_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario282TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_282_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario282TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_282_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario282TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_282_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario282TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_282_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario283TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_283_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario283TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_283_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario283TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_283_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario283TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_283_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario284TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_284_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario284TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_284_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario284TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_284_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario284TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_284_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario285TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_285_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario285TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_285_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario285TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_285_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario285TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_285_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario286TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_286_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario286TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_286_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario286TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_286_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario286TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_286_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario287TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_287_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario287TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_287_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario287TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_287_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario287TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_287_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartMario288TlutWheel0[] = "__OTR__textures/karts/mario_kart/mario_kart_288_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartMario288TlutWheel1[] = "__OTR__textures/karts/mario_kart/mario_kart_288_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartMario288TlutWheel2[] = "__OTR__textures/karts/mario_kart/mario_kart_288_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartMario288TlutWheel3[] = "__OTR__textures/karts/mario_kart/mario_kart_288_tlut_wheel_3"; + +static const char* mario_kart_wheels[] = { + gKartMario000TlutWheel0, + gKartMario000TlutWheel1, + gKartMario000TlutWheel2, + gKartMario000TlutWheel3, + gKartMario001TlutWheel0, + gKartMario001TlutWheel1, + gKartMario001TlutWheel2, + gKartMario001TlutWheel3, + gKartMario002TlutWheel0, + gKartMario002TlutWheel1, + gKartMario002TlutWheel2, + gKartMario002TlutWheel3, + gKartMario003TlutWheel0, + gKartMario003TlutWheel1, + gKartMario003TlutWheel2, + gKartMario003TlutWheel3, + gKartMario004TlutWheel0, + gKartMario004TlutWheel1, + gKartMario004TlutWheel2, + gKartMario004TlutWheel3, + gKartMario005TlutWheel0, + gKartMario005TlutWheel1, + gKartMario005TlutWheel2, + gKartMario005TlutWheel3, + gKartMario006TlutWheel0, + gKartMario006TlutWheel1, + gKartMario006TlutWheel2, + gKartMario006TlutWheel3, + gKartMario007TlutWheel0, + gKartMario007TlutWheel1, + gKartMario007TlutWheel2, + gKartMario007TlutWheel3, + gKartMario008TlutWheel0, + gKartMario008TlutWheel1, + gKartMario008TlutWheel2, + gKartMario008TlutWheel3, + gKartMario009TlutWheel0, + gKartMario009TlutWheel1, + gKartMario009TlutWheel2, + gKartMario009TlutWheel3, + gKartMario010TlutWheel0, + gKartMario010TlutWheel1, + gKartMario010TlutWheel2, + gKartMario010TlutWheel3, + gKartMario011TlutWheel0, + gKartMario011TlutWheel1, + gKartMario011TlutWheel2, + gKartMario011TlutWheel3, + gKartMario012TlutWheel0, + gKartMario012TlutWheel1, + gKartMario012TlutWheel2, + gKartMario012TlutWheel3, + gKartMario013TlutWheel0, + gKartMario013TlutWheel1, + gKartMario013TlutWheel2, + gKartMario013TlutWheel3, + gKartMario014TlutWheel0, + gKartMario014TlutWheel1, + gKartMario014TlutWheel2, + gKartMario014TlutWheel3, + gKartMario015TlutWheel0, + gKartMario015TlutWheel1, + gKartMario015TlutWheel2, + gKartMario015TlutWheel3, + gKartMario016TlutWheel0, + gKartMario016TlutWheel1, + gKartMario016TlutWheel2, + gKartMario016TlutWheel3, + gKartMario017TlutWheel0, + gKartMario017TlutWheel1, + gKartMario017TlutWheel2, + gKartMario017TlutWheel3, + gKartMario018TlutWheel0, + gKartMario018TlutWheel1, + gKartMario018TlutWheel2, + gKartMario018TlutWheel3, + gKartMario019TlutWheel0, + gKartMario019TlutWheel1, + gKartMario019TlutWheel2, + gKartMario019TlutWheel3, + gKartMario020TlutWheel0, + gKartMario020TlutWheel1, + gKartMario020TlutWheel2, + gKartMario020TlutWheel3, + gKartMario021TlutWheel0, + gKartMario021TlutWheel1, + gKartMario021TlutWheel2, + gKartMario021TlutWheel3, + gKartMario022TlutWheel0, + gKartMario022TlutWheel1, + gKartMario022TlutWheel2, + gKartMario022TlutWheel3, + gKartMario023TlutWheel0, + gKartMario023TlutWheel1, + gKartMario023TlutWheel2, + gKartMario023TlutWheel3, + gKartMario024TlutWheel0, + gKartMario024TlutWheel1, + gKartMario024TlutWheel2, + gKartMario024TlutWheel3, + gKartMario025TlutWheel0, + gKartMario025TlutWheel1, + gKartMario025TlutWheel2, + gKartMario025TlutWheel3, + gKartMario026TlutWheel0, + gKartMario026TlutWheel1, + gKartMario026TlutWheel2, + gKartMario026TlutWheel3, + gKartMario027TlutWheel0, + gKartMario027TlutWheel1, + gKartMario027TlutWheel2, + gKartMario027TlutWheel3, + gKartMario028TlutWheel0, + gKartMario028TlutWheel1, + gKartMario028TlutWheel2, + gKartMario028TlutWheel3, + gKartMario029TlutWheel0, + gKartMario029TlutWheel1, + gKartMario029TlutWheel2, + gKartMario029TlutWheel3, + gKartMario030TlutWheel0, + gKartMario030TlutWheel1, + gKartMario030TlutWheel2, + gKartMario030TlutWheel3, + gKartMario031TlutWheel0, + gKartMario031TlutWheel1, + gKartMario031TlutWheel2, + gKartMario031TlutWheel3, + gKartMario032TlutWheel0, + gKartMario032TlutWheel1, + gKartMario032TlutWheel2, + gKartMario032TlutWheel3, + gKartMario033TlutWheel0, + gKartMario033TlutWheel1, + gKartMario033TlutWheel2, + gKartMario033TlutWheel3, + gKartMario034TlutWheel0, + gKartMario034TlutWheel1, + gKartMario034TlutWheel2, + gKartMario034TlutWheel3, + gKartMario035TlutWheel0, + gKartMario035TlutWheel1, + gKartMario035TlutWheel2, + gKartMario035TlutWheel3, + gKartMario036TlutWheel0, + gKartMario036TlutWheel1, + gKartMario036TlutWheel2, + gKartMario036TlutWheel3, + gKartMario037TlutWheel0, + gKartMario037TlutWheel1, + gKartMario037TlutWheel2, + gKartMario037TlutWheel3, + gKartMario038TlutWheel0, + gKartMario038TlutWheel1, + gKartMario038TlutWheel2, + gKartMario038TlutWheel3, + gKartMario039TlutWheel0, + gKartMario039TlutWheel1, + gKartMario039TlutWheel2, + gKartMario039TlutWheel3, + gKartMario040TlutWheel0, + gKartMario040TlutWheel1, + gKartMario040TlutWheel2, + gKartMario040TlutWheel3, + gKartMario041TlutWheel0, + gKartMario041TlutWheel1, + gKartMario041TlutWheel2, + gKartMario041TlutWheel3, + gKartMario042TlutWheel0, + gKartMario042TlutWheel1, + gKartMario042TlutWheel2, + gKartMario042TlutWheel3, + gKartMario043TlutWheel0, + gKartMario043TlutWheel1, + gKartMario043TlutWheel2, + gKartMario043TlutWheel3, + gKartMario044TlutWheel0, + gKartMario044TlutWheel1, + gKartMario044TlutWheel2, + gKartMario044TlutWheel3, + gKartMario045TlutWheel0, + gKartMario045TlutWheel1, + gKartMario045TlutWheel2, + gKartMario045TlutWheel3, + gKartMario046TlutWheel0, + gKartMario046TlutWheel1, + gKartMario046TlutWheel2, + gKartMario046TlutWheel3, + gKartMario047TlutWheel0, + gKartMario047TlutWheel1, + gKartMario047TlutWheel2, + gKartMario047TlutWheel3, + gKartMario048TlutWheel0, + gKartMario048TlutWheel1, + gKartMario048TlutWheel2, + gKartMario048TlutWheel3, + gKartMario049TlutWheel0, + gKartMario049TlutWheel1, + gKartMario049TlutWheel2, + gKartMario049TlutWheel3, + gKartMario050TlutWheel0, + gKartMario050TlutWheel1, + gKartMario050TlutWheel2, + gKartMario050TlutWheel3, + gKartMario051TlutWheel0, + gKartMario051TlutWheel1, + gKartMario051TlutWheel2, + gKartMario051TlutWheel3, + gKartMario052TlutWheel0, + gKartMario052TlutWheel1, + gKartMario052TlutWheel2, + gKartMario052TlutWheel3, + gKartMario053TlutWheel0, + gKartMario053TlutWheel1, + gKartMario053TlutWheel2, + gKartMario053TlutWheel3, + gKartMario054TlutWheel0, + gKartMario054TlutWheel1, + gKartMario054TlutWheel2, + gKartMario054TlutWheel3, + gKartMario055TlutWheel0, + gKartMario055TlutWheel1, + gKartMario055TlutWheel2, + gKartMario055TlutWheel3, + gKartMario056TlutWheel0, + gKartMario056TlutWheel1, + gKartMario056TlutWheel2, + gKartMario056TlutWheel3, + gKartMario057TlutWheel0, + gKartMario057TlutWheel1, + gKartMario057TlutWheel2, + gKartMario057TlutWheel3, + gKartMario058TlutWheel0, + gKartMario058TlutWheel1, + gKartMario058TlutWheel2, + gKartMario058TlutWheel3, + gKartMario059TlutWheel0, + gKartMario059TlutWheel1, + gKartMario059TlutWheel2, + gKartMario059TlutWheel3, + gKartMario060TlutWheel0, + gKartMario060TlutWheel1, + gKartMario060TlutWheel2, + gKartMario060TlutWheel3, + gKartMario061TlutWheel0, + gKartMario061TlutWheel1, + gKartMario061TlutWheel2, + gKartMario061TlutWheel3, + gKartMario062TlutWheel0, + gKartMario062TlutWheel1, + gKartMario062TlutWheel2, + gKartMario062TlutWheel3, + gKartMario063TlutWheel0, + gKartMario063TlutWheel1, + gKartMario063TlutWheel2, + gKartMario063TlutWheel3, + gKartMario064TlutWheel0, + gKartMario064TlutWheel1, + gKartMario064TlutWheel2, + gKartMario064TlutWheel3, + gKartMario065TlutWheel0, + gKartMario065TlutWheel1, + gKartMario065TlutWheel2, + gKartMario065TlutWheel3, + gKartMario066TlutWheel0, + gKartMario066TlutWheel1, + gKartMario066TlutWheel2, + gKartMario066TlutWheel3, + gKartMario067TlutWheel0, + gKartMario067TlutWheel1, + gKartMario067TlutWheel2, + gKartMario067TlutWheel3, + gKartMario068TlutWheel0, + gKartMario068TlutWheel1, + gKartMario068TlutWheel2, + gKartMario068TlutWheel3, + gKartMario069TlutWheel0, + gKartMario069TlutWheel1, + gKartMario069TlutWheel2, + gKartMario069TlutWheel3, + gKartMario070TlutWheel0, + gKartMario070TlutWheel1, + gKartMario070TlutWheel2, + gKartMario070TlutWheel3, + gKartMario071TlutWheel0, + gKartMario071TlutWheel1, + gKartMario071TlutWheel2, + gKartMario071TlutWheel3, + gKartMario072TlutWheel0, + gKartMario072TlutWheel1, + gKartMario072TlutWheel2, + gKartMario072TlutWheel3, + gKartMario073TlutWheel0, + gKartMario073TlutWheel1, + gKartMario073TlutWheel2, + gKartMario073TlutWheel3, + gKartMario074TlutWheel0, + gKartMario074TlutWheel1, + gKartMario074TlutWheel2, + gKartMario074TlutWheel3, + gKartMario075TlutWheel0, + gKartMario075TlutWheel1, + gKartMario075TlutWheel2, + gKartMario075TlutWheel3, + gKartMario076TlutWheel0, + gKartMario076TlutWheel1, + gKartMario076TlutWheel2, + gKartMario076TlutWheel3, + gKartMario077TlutWheel0, + gKartMario077TlutWheel1, + gKartMario077TlutWheel2, + gKartMario077TlutWheel3, + gKartMario078TlutWheel0, + gKartMario078TlutWheel1, + gKartMario078TlutWheel2, + gKartMario078TlutWheel3, + gKartMario079TlutWheel0, + gKartMario079TlutWheel1, + gKartMario079TlutWheel2, + gKartMario079TlutWheel3, + gKartMario080TlutWheel0, + gKartMario080TlutWheel1, + gKartMario080TlutWheel2, + gKartMario080TlutWheel3, + gKartMario081TlutWheel0, + gKartMario081TlutWheel1, + gKartMario081TlutWheel2, + gKartMario081TlutWheel3, + gKartMario082TlutWheel0, + gKartMario082TlutWheel1, + gKartMario082TlutWheel2, + gKartMario082TlutWheel3, + gKartMario083TlutWheel0, + gKartMario083TlutWheel1, + gKartMario083TlutWheel2, + gKartMario083TlutWheel3, + gKartMario084TlutWheel0, + gKartMario084TlutWheel1, + gKartMario084TlutWheel2, + gKartMario084TlutWheel3, + gKartMario085TlutWheel0, + gKartMario085TlutWheel1, + gKartMario085TlutWheel2, + gKartMario085TlutWheel3, + gKartMario086TlutWheel0, + gKartMario086TlutWheel1, + gKartMario086TlutWheel2, + gKartMario086TlutWheel3, + gKartMario087TlutWheel0, + gKartMario087TlutWheel1, + gKartMario087TlutWheel2, + gKartMario087TlutWheel3, + gKartMario088TlutWheel0, + gKartMario088TlutWheel1, + gKartMario088TlutWheel2, + gKartMario088TlutWheel3, + gKartMario089TlutWheel0, + gKartMario089TlutWheel1, + gKartMario089TlutWheel2, + gKartMario089TlutWheel3, + gKartMario090TlutWheel0, + gKartMario090TlutWheel1, + gKartMario090TlutWheel2, + gKartMario090TlutWheel3, + gKartMario091TlutWheel0, + gKartMario091TlutWheel1, + gKartMario091TlutWheel2, + gKartMario091TlutWheel3, + gKartMario092TlutWheel0, + gKartMario092TlutWheel1, + gKartMario092TlutWheel2, + gKartMario092TlutWheel3, + gKartMario093TlutWheel0, + gKartMario093TlutWheel1, + gKartMario093TlutWheel2, + gKartMario093TlutWheel3, + gKartMario094TlutWheel0, + gKartMario094TlutWheel1, + gKartMario094TlutWheel2, + gKartMario094TlutWheel3, + gKartMario095TlutWheel0, + gKartMario095TlutWheel1, + gKartMario095TlutWheel2, + gKartMario095TlutWheel3, + gKartMario096TlutWheel0, + gKartMario096TlutWheel1, + gKartMario096TlutWheel2, + gKartMario096TlutWheel3, + gKartMario097TlutWheel0, + gKartMario097TlutWheel1, + gKartMario097TlutWheel2, + gKartMario097TlutWheel3, + gKartMario098TlutWheel0, + gKartMario098TlutWheel1, + gKartMario098TlutWheel2, + gKartMario098TlutWheel3, + gKartMario099TlutWheel0, + gKartMario099TlutWheel1, + gKartMario099TlutWheel2, + gKartMario099TlutWheel3, + gKartMario100TlutWheel0, + gKartMario100TlutWheel1, + gKartMario100TlutWheel2, + gKartMario100TlutWheel3, + gKartMario101TlutWheel0, + gKartMario101TlutWheel1, + gKartMario101TlutWheel2, + gKartMario101TlutWheel3, + gKartMario102TlutWheel0, + gKartMario102TlutWheel1, + gKartMario102TlutWheel2, + gKartMario102TlutWheel3, + gKartMario103TlutWheel0, + gKartMario103TlutWheel1, + gKartMario103TlutWheel2, + gKartMario103TlutWheel3, + gKartMario104TlutWheel0, + gKartMario104TlutWheel1, + gKartMario104TlutWheel2, + gKartMario104TlutWheel3, + gKartMario105TlutWheel0, + gKartMario105TlutWheel1, + gKartMario105TlutWheel2, + gKartMario105TlutWheel3, + gKartMario106TlutWheel0, + gKartMario106TlutWheel1, + gKartMario106TlutWheel2, + gKartMario106TlutWheel3, + gKartMario107TlutWheel0, + gKartMario107TlutWheel1, + gKartMario107TlutWheel2, + gKartMario107TlutWheel3, + gKartMario108TlutWheel0, + gKartMario108TlutWheel1, + gKartMario108TlutWheel2, + gKartMario108TlutWheel3, + gKartMario109TlutWheel0, + gKartMario109TlutWheel1, + gKartMario109TlutWheel2, + gKartMario109TlutWheel3, + gKartMario110TlutWheel0, + gKartMario110TlutWheel1, + gKartMario110TlutWheel2, + gKartMario110TlutWheel3, + gKartMario111TlutWheel0, + gKartMario111TlutWheel1, + gKartMario111TlutWheel2, + gKartMario111TlutWheel3, + gKartMario112TlutWheel0, + gKartMario112TlutWheel1, + gKartMario112TlutWheel2, + gKartMario112TlutWheel3, + gKartMario113TlutWheel0, + gKartMario113TlutWheel1, + gKartMario113TlutWheel2, + gKartMario113TlutWheel3, + gKartMario114TlutWheel0, + gKartMario114TlutWheel1, + gKartMario114TlutWheel2, + gKartMario114TlutWheel3, + gKartMario115TlutWheel0, + gKartMario115TlutWheel1, + gKartMario115TlutWheel2, + gKartMario115TlutWheel3, + gKartMario116TlutWheel0, + gKartMario116TlutWheel1, + gKartMario116TlutWheel2, + gKartMario116TlutWheel3, + gKartMario117TlutWheel0, + gKartMario117TlutWheel1, + gKartMario117TlutWheel2, + gKartMario117TlutWheel3, + gKartMario118TlutWheel0, + gKartMario118TlutWheel1, + gKartMario118TlutWheel2, + gKartMario118TlutWheel3, + gKartMario119TlutWheel0, + gKartMario119TlutWheel1, + gKartMario119TlutWheel2, + gKartMario119TlutWheel3, + gKartMario120TlutWheel0, + gKartMario120TlutWheel1, + gKartMario120TlutWheel2, + gKartMario120TlutWheel3, + gKartMario121TlutWheel0, + gKartMario121TlutWheel1, + gKartMario121TlutWheel2, + gKartMario121TlutWheel3, + gKartMario122TlutWheel0, + gKartMario122TlutWheel1, + gKartMario122TlutWheel2, + gKartMario122TlutWheel3, + gKartMario123TlutWheel0, + gKartMario123TlutWheel1, + gKartMario123TlutWheel2, + gKartMario123TlutWheel3, + gKartMario124TlutWheel0, + gKartMario124TlutWheel1, + gKartMario124TlutWheel2, + gKartMario124TlutWheel3, + gKartMario125TlutWheel0, + gKartMario125TlutWheel1, + gKartMario125TlutWheel2, + gKartMario125TlutWheel3, + gKartMario126TlutWheel0, + gKartMario126TlutWheel1, + gKartMario126TlutWheel2, + gKartMario126TlutWheel3, + gKartMario127TlutWheel0, + gKartMario127TlutWheel1, + gKartMario127TlutWheel2, + gKartMario127TlutWheel3, + gKartMario128TlutWheel0, + gKartMario128TlutWheel1, + gKartMario128TlutWheel2, + gKartMario128TlutWheel3, + gKartMario129TlutWheel0, + gKartMario129TlutWheel1, + gKartMario129TlutWheel2, + gKartMario129TlutWheel3, + gKartMario130TlutWheel0, + gKartMario130TlutWheel1, + gKartMario130TlutWheel2, + gKartMario130TlutWheel3, + gKartMario131TlutWheel0, + gKartMario131TlutWheel1, + gKartMario131TlutWheel2, + gKartMario131TlutWheel3, + gKartMario132TlutWheel0, + gKartMario132TlutWheel1, + gKartMario132TlutWheel2, + gKartMario132TlutWheel3, + gKartMario133TlutWheel0, + gKartMario133TlutWheel1, + gKartMario133TlutWheel2, + gKartMario133TlutWheel3, + gKartMario134TlutWheel0, + gKartMario134TlutWheel1, + gKartMario134TlutWheel2, + gKartMario134TlutWheel3, + gKartMario135TlutWheel0, + gKartMario135TlutWheel1, + gKartMario135TlutWheel2, + gKartMario135TlutWheel3, + gKartMario136TlutWheel0, + gKartMario136TlutWheel1, + gKartMario136TlutWheel2, + gKartMario136TlutWheel3, + gKartMario137TlutWheel0, + gKartMario137TlutWheel1, + gKartMario137TlutWheel2, + gKartMario137TlutWheel3, + gKartMario138TlutWheel0, + gKartMario138TlutWheel1, + gKartMario138TlutWheel2, + gKartMario138TlutWheel3, + gKartMario139TlutWheel0, + gKartMario139TlutWheel1, + gKartMario139TlutWheel2, + gKartMario139TlutWheel3, + gKartMario140TlutWheel0, + gKartMario140TlutWheel1, + gKartMario140TlutWheel2, + gKartMario140TlutWheel3, + gKartMario141TlutWheel0, + gKartMario141TlutWheel1, + gKartMario141TlutWheel2, + gKartMario141TlutWheel3, + gKartMario142TlutWheel0, + gKartMario142TlutWheel1, + gKartMario142TlutWheel2, + gKartMario142TlutWheel3, + gKartMario143TlutWheel0, + gKartMario143TlutWheel1, + gKartMario143TlutWheel2, + gKartMario143TlutWheel3, + gKartMario144TlutWheel0, + gKartMario144TlutWheel1, + gKartMario144TlutWheel2, + gKartMario144TlutWheel3, + gKartMario145TlutWheel0, + gKartMario145TlutWheel1, + gKartMario145TlutWheel2, + gKartMario145TlutWheel3, + gKartMario146TlutWheel0, + gKartMario146TlutWheel1, + gKartMario146TlutWheel2, + gKartMario146TlutWheel3, + gKartMario147TlutWheel0, + gKartMario147TlutWheel1, + gKartMario147TlutWheel2, + gKartMario147TlutWheel3, + gKartMario148TlutWheel0, + gKartMario148TlutWheel1, + gKartMario148TlutWheel2, + gKartMario148TlutWheel3, + gKartMario149TlutWheel0, + gKartMario149TlutWheel1, + gKartMario149TlutWheel2, + gKartMario149TlutWheel3, + gKartMario150TlutWheel0, + gKartMario150TlutWheel1, + gKartMario150TlutWheel2, + gKartMario150TlutWheel3, + gKartMario151TlutWheel0, + gKartMario151TlutWheel1, + gKartMario151TlutWheel2, + gKartMario151TlutWheel3, + gKartMario152TlutWheel0, + gKartMario152TlutWheel1, + gKartMario152TlutWheel2, + gKartMario152TlutWheel3, + gKartMario153TlutWheel0, + gKartMario153TlutWheel1, + gKartMario153TlutWheel2, + gKartMario153TlutWheel3, + gKartMario154TlutWheel0, + gKartMario154TlutWheel1, + gKartMario154TlutWheel2, + gKartMario154TlutWheel3, + gKartMario155TlutWheel0, + gKartMario155TlutWheel1, + gKartMario155TlutWheel2, + gKartMario155TlutWheel3, + gKartMario156TlutWheel0, + gKartMario156TlutWheel1, + gKartMario156TlutWheel2, + gKartMario156TlutWheel3, + gKartMario157TlutWheel0, + gKartMario157TlutWheel1, + gKartMario157TlutWheel2, + gKartMario157TlutWheel3, + gKartMario158TlutWheel0, + gKartMario158TlutWheel1, + gKartMario158TlutWheel2, + gKartMario158TlutWheel3, + gKartMario159TlutWheel0, + gKartMario159TlutWheel1, + gKartMario159TlutWheel2, + gKartMario159TlutWheel3, + gKartMario160TlutWheel0, + gKartMario160TlutWheel1, + gKartMario160TlutWheel2, + gKartMario160TlutWheel3, + gKartMario161TlutWheel0, + gKartMario161TlutWheel1, + gKartMario161TlutWheel2, + gKartMario161TlutWheel3, + gKartMario162TlutWheel0, + gKartMario162TlutWheel1, + gKartMario162TlutWheel2, + gKartMario162TlutWheel3, + gKartMario163TlutWheel0, + gKartMario163TlutWheel1, + gKartMario163TlutWheel2, + gKartMario163TlutWheel3, + gKartMario164TlutWheel0, + gKartMario164TlutWheel1, + gKartMario164TlutWheel2, + gKartMario164TlutWheel3, + gKartMario165TlutWheel0, + gKartMario165TlutWheel1, + gKartMario165TlutWheel2, + gKartMario165TlutWheel3, + gKartMario166TlutWheel0, + gKartMario166TlutWheel1, + gKartMario166TlutWheel2, + gKartMario166TlutWheel3, + gKartMario167TlutWheel0, + gKartMario167TlutWheel1, + gKartMario167TlutWheel2, + gKartMario167TlutWheel3, + gKartMario168TlutWheel0, + gKartMario168TlutWheel1, + gKartMario168TlutWheel2, + gKartMario168TlutWheel3, + gKartMario169TlutWheel0, + gKartMario169TlutWheel1, + gKartMario169TlutWheel2, + gKartMario169TlutWheel3, + gKartMario170TlutWheel0, + gKartMario170TlutWheel1, + gKartMario170TlutWheel2, + gKartMario170TlutWheel3, + gKartMario171TlutWheel0, + gKartMario171TlutWheel1, + gKartMario171TlutWheel2, + gKartMario171TlutWheel3, + gKartMario172TlutWheel0, + gKartMario172TlutWheel1, + gKartMario172TlutWheel2, + gKartMario172TlutWheel3, + gKartMario173TlutWheel0, + gKartMario173TlutWheel1, + gKartMario173TlutWheel2, + gKartMario173TlutWheel3, + gKartMario174TlutWheel0, + gKartMario174TlutWheel1, + gKartMario174TlutWheel2, + gKartMario174TlutWheel3, + gKartMario175TlutWheel0, + gKartMario175TlutWheel1, + gKartMario175TlutWheel2, + gKartMario175TlutWheel3, + gKartMario176TlutWheel0, + gKartMario176TlutWheel1, + gKartMario176TlutWheel2, + gKartMario176TlutWheel3, + gKartMario177TlutWheel0, + gKartMario177TlutWheel1, + gKartMario177TlutWheel2, + gKartMario177TlutWheel3, + gKartMario178TlutWheel0, + gKartMario178TlutWheel1, + gKartMario178TlutWheel2, + gKartMario178TlutWheel3, + gKartMario179TlutWheel0, + gKartMario179TlutWheel1, + gKartMario179TlutWheel2, + gKartMario179TlutWheel3, + gKartMario180TlutWheel0, + gKartMario180TlutWheel1, + gKartMario180TlutWheel2, + gKartMario180TlutWheel3, + gKartMario181TlutWheel0, + gKartMario181TlutWheel1, + gKartMario181TlutWheel2, + gKartMario181TlutWheel3, + gKartMario182TlutWheel0, + gKartMario182TlutWheel1, + gKartMario182TlutWheel2, + gKartMario182TlutWheel3, + gKartMario183TlutWheel0, + gKartMario183TlutWheel1, + gKartMario183TlutWheel2, + gKartMario183TlutWheel3, + gKartMario184TlutWheel0, + gKartMario184TlutWheel1, + gKartMario184TlutWheel2, + gKartMario184TlutWheel3, + gKartMario185TlutWheel0, + gKartMario185TlutWheel1, + gKartMario185TlutWheel2, + gKartMario185TlutWheel3, + gKartMario186TlutWheel0, + gKartMario186TlutWheel1, + gKartMario186TlutWheel2, + gKartMario186TlutWheel3, + gKartMario187TlutWheel0, + gKartMario187TlutWheel1, + gKartMario187TlutWheel2, + gKartMario187TlutWheel3, + gKartMario188TlutWheel0, + gKartMario188TlutWheel1, + gKartMario188TlutWheel2, + gKartMario188TlutWheel3, + gKartMario189TlutWheel0, + gKartMario189TlutWheel1, + gKartMario189TlutWheel2, + gKartMario189TlutWheel3, + gKartMario190TlutWheel0, + gKartMario190TlutWheel1, + gKartMario190TlutWheel2, + gKartMario190TlutWheel3, + gKartMario191TlutWheel0, + gKartMario191TlutWheel1, + gKartMario191TlutWheel2, + gKartMario191TlutWheel3, + gKartMario192TlutWheel0, + gKartMario192TlutWheel1, + gKartMario192TlutWheel2, + gKartMario192TlutWheel3, + gKartMario193TlutWheel0, + gKartMario193TlutWheel1, + gKartMario193TlutWheel2, + gKartMario193TlutWheel3, + gKartMario194TlutWheel0, + gKartMario194TlutWheel1, + gKartMario194TlutWheel2, + gKartMario194TlutWheel3, + gKartMario195TlutWheel0, + gKartMario195TlutWheel1, + gKartMario195TlutWheel2, + gKartMario195TlutWheel3, + gKartMario196TlutWheel0, + gKartMario196TlutWheel1, + gKartMario196TlutWheel2, + gKartMario196TlutWheel3, + gKartMario197TlutWheel0, + gKartMario197TlutWheel1, + gKartMario197TlutWheel2, + gKartMario197TlutWheel3, + gKartMario198TlutWheel0, + gKartMario198TlutWheel1, + gKartMario198TlutWheel2, + gKartMario198TlutWheel3, + gKartMario199TlutWheel0, + gKartMario199TlutWheel1, + gKartMario199TlutWheel2, + gKartMario199TlutWheel3, + gKartMario200TlutWheel0, + gKartMario200TlutWheel1, + gKartMario200TlutWheel2, + gKartMario200TlutWheel3, + gKartMario201TlutWheel0, + gKartMario201TlutWheel1, + gKartMario201TlutWheel2, + gKartMario201TlutWheel3, + gKartMario202TlutWheel0, + gKartMario202TlutWheel1, + gKartMario202TlutWheel2, + gKartMario202TlutWheel3, + gKartMario203TlutWheel0, + gKartMario203TlutWheel1, + gKartMario203TlutWheel2, + gKartMario203TlutWheel3, + gKartMario204TlutWheel0, + gKartMario204TlutWheel1, + gKartMario204TlutWheel2, + gKartMario204TlutWheel3, + gKartMario205TlutWheel0, + gKartMario205TlutWheel1, + gKartMario205TlutWheel2, + gKartMario205TlutWheel3, + gKartMario206TlutWheel0, + gKartMario206TlutWheel1, + gKartMario206TlutWheel2, + gKartMario206TlutWheel3, + gKartMario207TlutWheel0, + gKartMario207TlutWheel1, + gKartMario207TlutWheel2, + gKartMario207TlutWheel3, + gKartMario208TlutWheel0, + gKartMario208TlutWheel1, + gKartMario208TlutWheel2, + gKartMario208TlutWheel3, + gKartMario209TlutWheel0, + gKartMario209TlutWheel1, + gKartMario209TlutWheel2, + gKartMario209TlutWheel3, + gKartMario210TlutWheel0, + gKartMario210TlutWheel1, + gKartMario210TlutWheel2, + gKartMario210TlutWheel3, + gKartMario211TlutWheel0, + gKartMario211TlutWheel1, + gKartMario211TlutWheel2, + gKartMario211TlutWheel3, + gKartMario212TlutWheel0, + gKartMario212TlutWheel1, + gKartMario212TlutWheel2, + gKartMario212TlutWheel3, + gKartMario213TlutWheel0, + gKartMario213TlutWheel1, + gKartMario213TlutWheel2, + gKartMario213TlutWheel3, + gKartMario214TlutWheel0, + gKartMario214TlutWheel1, + gKartMario214TlutWheel2, + gKartMario214TlutWheel3, + gKartMario215TlutWheel0, + gKartMario215TlutWheel1, + gKartMario215TlutWheel2, + gKartMario215TlutWheel3, + gKartMario216TlutWheel0, + gKartMario216TlutWheel1, + gKartMario216TlutWheel2, + gKartMario216TlutWheel3, + gKartMario217TlutWheel0, + gKartMario217TlutWheel1, + gKartMario217TlutWheel2, + gKartMario217TlutWheel3, + gKartMario218TlutWheel0, + gKartMario218TlutWheel1, + gKartMario218TlutWheel2, + gKartMario218TlutWheel3, + gKartMario219TlutWheel0, + gKartMario219TlutWheel1, + gKartMario219TlutWheel2, + gKartMario219TlutWheel3, + gKartMario220TlutWheel0, + gKartMario220TlutWheel1, + gKartMario220TlutWheel2, + gKartMario220TlutWheel3, + gKartMario221TlutWheel0, + gKartMario221TlutWheel1, + gKartMario221TlutWheel2, + gKartMario221TlutWheel3, + gKartMario222TlutWheel0, + gKartMario222TlutWheel1, + gKartMario222TlutWheel2, + gKartMario222TlutWheel3, + gKartMario223TlutWheel0, + gKartMario223TlutWheel1, + gKartMario223TlutWheel2, + gKartMario223TlutWheel3, + gKartMario224TlutWheel0, + gKartMario224TlutWheel1, + gKartMario224TlutWheel2, + gKartMario224TlutWheel3, + gKartMario225TlutWheel0, + gKartMario225TlutWheel1, + gKartMario225TlutWheel2, + gKartMario225TlutWheel3, + gKartMario226TlutWheel0, + gKartMario226TlutWheel1, + gKartMario226TlutWheel2, + gKartMario226TlutWheel3, + gKartMario227TlutWheel0, + gKartMario227TlutWheel1, + gKartMario227TlutWheel2, + gKartMario227TlutWheel3, + gKartMario228TlutWheel0, + gKartMario228TlutWheel1, + gKartMario228TlutWheel2, + gKartMario228TlutWheel3, + gKartMario229TlutWheel0, + gKartMario229TlutWheel1, + gKartMario229TlutWheel2, + gKartMario229TlutWheel3, + gKartMario230TlutWheel0, + gKartMario230TlutWheel1, + gKartMario230TlutWheel2, + gKartMario230TlutWheel3, + gKartMario231TlutWheel0, + gKartMario231TlutWheel1, + gKartMario231TlutWheel2, + gKartMario231TlutWheel3, + gKartMario232TlutWheel0, + gKartMario232TlutWheel1, + gKartMario232TlutWheel2, + gKartMario232TlutWheel3, + gKartMario233TlutWheel0, + gKartMario233TlutWheel1, + gKartMario233TlutWheel2, + gKartMario233TlutWheel3, + gKartMario234TlutWheel0, + gKartMario234TlutWheel1, + gKartMario234TlutWheel2, + gKartMario234TlutWheel3, + gKartMario235TlutWheel0, + gKartMario235TlutWheel1, + gKartMario235TlutWheel2, + gKartMario235TlutWheel3, + gKartMario236TlutWheel0, + gKartMario236TlutWheel1, + gKartMario236TlutWheel2, + gKartMario236TlutWheel3, + gKartMario237TlutWheel0, + gKartMario237TlutWheel1, + gKartMario237TlutWheel2, + gKartMario237TlutWheel3, + gKartMario238TlutWheel0, + gKartMario238TlutWheel1, + gKartMario238TlutWheel2, + gKartMario238TlutWheel3, + gKartMario239TlutWheel0, + gKartMario239TlutWheel1, + gKartMario239TlutWheel2, + gKartMario239TlutWheel3, + gKartMario240TlutWheel0, + gKartMario240TlutWheel1, + gKartMario240TlutWheel2, + gKartMario240TlutWheel3, + gKartMario241TlutWheel0, + gKartMario241TlutWheel1, + gKartMario241TlutWheel2, + gKartMario241TlutWheel3, + gKartMario242TlutWheel0, + gKartMario242TlutWheel1, + gKartMario242TlutWheel2, + gKartMario242TlutWheel3, + gKartMario243TlutWheel0, + gKartMario243TlutWheel1, + gKartMario243TlutWheel2, + gKartMario243TlutWheel3, + gKartMario244TlutWheel0, + gKartMario244TlutWheel1, + gKartMario244TlutWheel2, + gKartMario244TlutWheel3, + gKartMario245TlutWheel0, + gKartMario245TlutWheel1, + gKartMario245TlutWheel2, + gKartMario245TlutWheel3, + gKartMario246TlutWheel0, + gKartMario246TlutWheel1, + gKartMario246TlutWheel2, + gKartMario246TlutWheel3, + gKartMario247TlutWheel0, + gKartMario247TlutWheel1, + gKartMario247TlutWheel2, + gKartMario247TlutWheel3, + gKartMario248TlutWheel0, + gKartMario248TlutWheel1, + gKartMario248TlutWheel2, + gKartMario248TlutWheel3, + gKartMario249TlutWheel0, + gKartMario249TlutWheel1, + gKartMario249TlutWheel2, + gKartMario249TlutWheel3, + gKartMario250TlutWheel0, + gKartMario250TlutWheel1, + gKartMario250TlutWheel2, + gKartMario250TlutWheel3, + gKartMario251TlutWheel0, + gKartMario251TlutWheel1, + gKartMario251TlutWheel2, + gKartMario251TlutWheel3, + gKartMario252TlutWheel0, + gKartMario252TlutWheel1, + gKartMario252TlutWheel2, + gKartMario252TlutWheel3, + gKartMario253TlutWheel0, + gKartMario253TlutWheel1, + gKartMario253TlutWheel2, + gKartMario253TlutWheel3, + gKartMario254TlutWheel0, + gKartMario254TlutWheel1, + gKartMario254TlutWheel2, + gKartMario254TlutWheel3, + gKartMario255TlutWheel0, + gKartMario255TlutWheel1, + gKartMario255TlutWheel2, + gKartMario255TlutWheel3, + gKartMario256TlutWheel0, + gKartMario256TlutWheel1, + gKartMario256TlutWheel2, + gKartMario256TlutWheel3, + gKartMario257TlutWheel0, + gKartMario257TlutWheel1, + gKartMario257TlutWheel2, + gKartMario257TlutWheel3, + gKartMario258TlutWheel0, + gKartMario258TlutWheel1, + gKartMario258TlutWheel2, + gKartMario258TlutWheel3, + gKartMario259TlutWheel0, + gKartMario259TlutWheel1, + gKartMario259TlutWheel2, + gKartMario259TlutWheel3, + gKartMario260TlutWheel0, + gKartMario260TlutWheel1, + gKartMario260TlutWheel2, + gKartMario260TlutWheel3, + gKartMario261TlutWheel0, + gKartMario261TlutWheel1, + gKartMario261TlutWheel2, + gKartMario261TlutWheel3, + gKartMario262TlutWheel0, + gKartMario262TlutWheel1, + gKartMario262TlutWheel2, + gKartMario262TlutWheel3, + gKartMario263TlutWheel0, + gKartMario263TlutWheel1, + gKartMario263TlutWheel2, + gKartMario263TlutWheel3, + gKartMario264TlutWheel0, + gKartMario264TlutWheel1, + gKartMario264TlutWheel2, + gKartMario264TlutWheel3, + gKartMario265TlutWheel0, + gKartMario265TlutWheel1, + gKartMario265TlutWheel2, + gKartMario265TlutWheel3, + gKartMario266TlutWheel0, + gKartMario266TlutWheel1, + gKartMario266TlutWheel2, + gKartMario266TlutWheel3, + gKartMario267TlutWheel0, + gKartMario267TlutWheel1, + gKartMario267TlutWheel2, + gKartMario267TlutWheel3, + gKartMario268TlutWheel0, + gKartMario268TlutWheel1, + gKartMario268TlutWheel2, + gKartMario268TlutWheel3, + gKartMario269TlutWheel0, + gKartMario269TlutWheel1, + gKartMario269TlutWheel2, + gKartMario269TlutWheel3, + gKartMario270TlutWheel0, + gKartMario270TlutWheel1, + gKartMario270TlutWheel2, + gKartMario270TlutWheel3, + gKartMario271TlutWheel0, + gKartMario271TlutWheel1, + gKartMario271TlutWheel2, + gKartMario271TlutWheel3, + gKartMario272TlutWheel0, + gKartMario272TlutWheel1, + gKartMario272TlutWheel2, + gKartMario272TlutWheel3, + gKartMario273TlutWheel0, + gKartMario273TlutWheel1, + gKartMario273TlutWheel2, + gKartMario273TlutWheel3, + gKartMario274TlutWheel0, + gKartMario274TlutWheel1, + gKartMario274TlutWheel2, + gKartMario274TlutWheel3, + gKartMario275TlutWheel0, + gKartMario275TlutWheel1, + gKartMario275TlutWheel2, + gKartMario275TlutWheel3, + gKartMario276TlutWheel0, + gKartMario276TlutWheel1, + gKartMario276TlutWheel2, + gKartMario276TlutWheel3, + gKartMario277TlutWheel0, + gKartMario277TlutWheel1, + gKartMario277TlutWheel2, + gKartMario277TlutWheel3, + gKartMario278TlutWheel0, + gKartMario278TlutWheel1, + gKartMario278TlutWheel2, + gKartMario278TlutWheel3, + gKartMario279TlutWheel0, + gKartMario279TlutWheel1, + gKartMario279TlutWheel2, + gKartMario279TlutWheel3, + gKartMario280TlutWheel0, + gKartMario280TlutWheel1, + gKartMario280TlutWheel2, + gKartMario280TlutWheel3, + gKartMario281TlutWheel0, + gKartMario281TlutWheel1, + gKartMario281TlutWheel2, + gKartMario281TlutWheel3, + gKartMario282TlutWheel0, + gKartMario282TlutWheel1, + gKartMario282TlutWheel2, + gKartMario282TlutWheel3, + gKartMario283TlutWheel0, + gKartMario283TlutWheel1, + gKartMario283TlutWheel2, + gKartMario283TlutWheel3, + gKartMario284TlutWheel0, + gKartMario284TlutWheel1, + gKartMario284TlutWheel2, + gKartMario284TlutWheel3, + gKartMario285TlutWheel0, + gKartMario285TlutWheel1, + gKartMario285TlutWheel2, + gKartMario285TlutWheel3, + gKartMario286TlutWheel0, + gKartMario286TlutWheel1, + gKartMario286TlutWheel2, + gKartMario286TlutWheel3, + gKartMario287TlutWheel0, + gKartMario287TlutWheel1, + gKartMario287TlutWheel2, + gKartMario287TlutWheel3, + gKartMario288TlutWheel0, + gKartMario288TlutWheel1, + gKartMario288TlutWheel2, + gKartMario288TlutWheel3, +}; + +static const ALIGN_ASSET(2) char gKartMarioPalette[] = "__OTR__textures/karts/mario_kart/mario_kart_palette"; + diff --git a/include/assets/textures/karts/peach_kart.h b/include/assets/textures/karts/peach_kart.h new file mode 100644 index 000000000..60c5f4b18 --- /dev/null +++ b/include/assets/textures/karts/peach_kart.h @@ -0,0 +1,5854 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gKartPeach000Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame000_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach000Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame000_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach000Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame000_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach000Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame000_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach001Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame001_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach001Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame001_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach001Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame001_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach001Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame001_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach002Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame002_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach002Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame002_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach002Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame002_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach002Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame002_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach003Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame003_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach003Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame003_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach003Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame003_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach003Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame003_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach004Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame004_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach004Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame004_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach004Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame004_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach004Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame004_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach005Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame005_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach005Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame005_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach005Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame005_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach005Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame005_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach006Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame006_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach006Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame006_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach006Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame006_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach006Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame006_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach007Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame007_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach007Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame007_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach007Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame007_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach007Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame007_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach008Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame008_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach008Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame008_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach008Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame008_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach008Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame008_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach009Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame009_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach009Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame009_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach009Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame009_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach009Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame009_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach010Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame010_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach010Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame010_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach010Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame010_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach010Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame010_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach011Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame011_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach011Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame011_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach011Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame011_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach011Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame011_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach012Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame012_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach012Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame012_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach012Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame012_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach012Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame012_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach013Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame013_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach013Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame013_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach013Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame013_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach013Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame013_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach014Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame014_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach014Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame014_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach014Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame014_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach014Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame014_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach015Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame015_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach015Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame015_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach015Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame015_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach015Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame015_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach016Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame016_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach016Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame016_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach016Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame016_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach016Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame016_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach017Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame017_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach017Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame017_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach017Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame017_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach017Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame017_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach018Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame018_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach018Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame018_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach018Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame018_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach018Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame018_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach019Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame019_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach019Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame019_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach019Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame019_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach019Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame019_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach020Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame020_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach020Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame020_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach020Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame020_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach020Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame020_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach021Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame021_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach021Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame021_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach021Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame021_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach021Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame021_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach022Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame022_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach022Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame022_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach022Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame022_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach022Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame022_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach023Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame023_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach023Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame023_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach023Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame023_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach023Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame023_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach024Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame024_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach024Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame024_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach024Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame024_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach024Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame024_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach025Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame025_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach025Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame025_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach025Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame025_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach025Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame025_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach026Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame026_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach026Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame026_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach026Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame026_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach026Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame026_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach027Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame027_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach027Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame027_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach027Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame027_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach027Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame027_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach028Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame028_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach028Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame028_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach028Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame028_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach028Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame028_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach029Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame029_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach029Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame029_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach029Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame029_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach029Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame029_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach030Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame030_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach030Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame030_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach030Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame030_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach030Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame030_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach031Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame031_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach031Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame031_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach031Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame031_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach031Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame031_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach032Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame032_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach032Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame032_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach032Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame032_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach032Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame032_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach033Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame033_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach033Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame033_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach033Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame033_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach033Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame033_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach034Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame034_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach034Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame034_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach034Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame034_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach034Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame034_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach035Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame035_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach035Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame035_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach035Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame035_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach035Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame035_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach036Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame036_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach036Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame036_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach036Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame036_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach036Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame036_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach037Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame037_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach037Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame037_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach037Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame037_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach037Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame037_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach038Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame038_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach038Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame038_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach038Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame038_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach038Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame038_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach039Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame039_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach039Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame039_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach039Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame039_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach039Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame039_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach040Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame040_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach040Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame040_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach040Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame040_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach040Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame040_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach041Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame041_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach041Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame041_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach041Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame041_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach041Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame041_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach042Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame042_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach042Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame042_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach042Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame042_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach042Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame042_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach043Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame043_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach043Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame043_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach043Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame043_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach043Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame043_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach044Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame044_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach044Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame044_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach044Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame044_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach044Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame044_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach045Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame045_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach045Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame045_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach045Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame045_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach045Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame045_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach046Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame046_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach046Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame046_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach046Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame046_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach046Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame046_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach047Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame047_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach047Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame047_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach047Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame047_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach047Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame047_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach048Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame048_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach048Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame048_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach048Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame048_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach048Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame048_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach049Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame049_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach049Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame049_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach049Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame049_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach049Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame049_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach050Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame050_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach050Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame050_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach050Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame050_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach050Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame050_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach051Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame051_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach051Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame051_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach051Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame051_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach051Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame051_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach052Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame052_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach052Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame052_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach052Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame052_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach052Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame052_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach053Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame053_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach053Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame053_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach053Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame053_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach053Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame053_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach054Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame054_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach054Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame054_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach054Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame054_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach054Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame054_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach055Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame055_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach055Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame055_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach055Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame055_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach055Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame055_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach056Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame056_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach056Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame056_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach056Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame056_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach056Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame056_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach057Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame057_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach057Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame057_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach057Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame057_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach057Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame057_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach058Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame058_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach058Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame058_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach058Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame058_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach058Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame058_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach059Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame059_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach059Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame059_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach059Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame059_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach059Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame059_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach060Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame060_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach060Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame060_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach060Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame060_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach060Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame060_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach061Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame061_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach061Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame061_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach061Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame061_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach061Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame061_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach062Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame062_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach062Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame062_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach062Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame062_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach062Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame062_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach063Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame063_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach063Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame063_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach063Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame063_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach063Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame063_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach064Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame064_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach064Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame064_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach064Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame064_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach064Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame064_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach065Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame065_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach065Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame065_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach065Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame065_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach065Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame065_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach066Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame066_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach066Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame066_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach066Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame066_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach066Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame066_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach067Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame067_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach067Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame067_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach067Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame067_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach067Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame067_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach068Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame068_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach068Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame068_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach068Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame068_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach068Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame068_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach069Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame069_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach069Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame069_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach069Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame069_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach069Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame069_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach070Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame070_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach070Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame070_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach070Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame070_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach070Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame070_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach071Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame071_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach071Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame071_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach071Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame071_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach071Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame071_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach072Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame072_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach072Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame072_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach072Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame072_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach072Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame072_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach073Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame073_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach073Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame073_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach073Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame073_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach073Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame073_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach074Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame074_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach074Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame074_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach074Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame074_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach074Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame074_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach075Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame075_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach075Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame075_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach075Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame075_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach075Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame075_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach076Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame076_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach076Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame076_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach076Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame076_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach076Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame076_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach077Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame077_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach077Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame077_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach077Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame077_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach077Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame077_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach078Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame078_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach078Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame078_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach078Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame078_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach078Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame078_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach079Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame079_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach079Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame079_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach079Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame079_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach079Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame079_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach080Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame080_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach080Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame080_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach080Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame080_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach080Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame080_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach081Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame081_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach081Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame081_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach081Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame081_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach081Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame081_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach082Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame082_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach082Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame082_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach082Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame082_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach082Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame082_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach083Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame083_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach083Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame083_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach083Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame083_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach083Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame083_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach084Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame084_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach084Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame084_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach084Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame084_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach084Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame084_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach085Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame085_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach085Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame085_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach085Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame085_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach085Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame085_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach086Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame086_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach086Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame086_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach086Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame086_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach086Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame086_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach087Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame087_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach087Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame087_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach087Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame087_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach087Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame087_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach088Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame088_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach088Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame088_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach088Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame088_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach088Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame088_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach089Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame089_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach089Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame089_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach089Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame089_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach089Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame089_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach090Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame090_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach090Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame090_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach090Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame090_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach090Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame090_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach091Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame091_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach091Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame091_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach091Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame091_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach091Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame091_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach092Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame092_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach092Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame092_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach092Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame092_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach092Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame092_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach093Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame093_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach093Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame093_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach093Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame093_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach093Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame093_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach094Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame094_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach094Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame094_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach094Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame094_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach094Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame094_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach095Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame095_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach095Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame095_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach095Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame095_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach095Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame095_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach096Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame096_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach096Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame096_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach096Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame096_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach096Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame096_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach097Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame097_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach097Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame097_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach097Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame097_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach097Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame097_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach098Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame098_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach098Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame098_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach098Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame098_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach098Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame098_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach099Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame099_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach099Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame099_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach099Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame099_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach099Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame099_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach100Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame100_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach100Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame100_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach100Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame100_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach100Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame100_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach101Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame101_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach101Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame101_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach101Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame101_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach101Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame101_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach102Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame102_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach102Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame102_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach102Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame102_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach102Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame102_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach103Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame103_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach103Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame103_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach103Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame103_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach103Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame103_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach104Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame104_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach104Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame104_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach104Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame104_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach104Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame104_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach105Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame105_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach105Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame105_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach105Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame105_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach105Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame105_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach106Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame106_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach106Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame106_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach106Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame106_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach106Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame106_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach107Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame107_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach107Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame107_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach107Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame107_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach107Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame107_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach108Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame108_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach108Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame108_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach108Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame108_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach108Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame108_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach109Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame109_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach109Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame109_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach109Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame109_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach109Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame109_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach110Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame110_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach110Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame110_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach110Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame110_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach110Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame110_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach111Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame111_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach111Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame111_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach111Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame111_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach111Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame111_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach112Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame112_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach112Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame112_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach112Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame112_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach112Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame112_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach113Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame113_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach113Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame113_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach113Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame113_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach113Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame113_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach114Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame114_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach114Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame114_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach114Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame114_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach114Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame114_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach115Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame115_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach115Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame115_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach115Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame115_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach115Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame115_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach116Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame116_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach116Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame116_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach116Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame116_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach116Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame116_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach117Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame117_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach117Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame117_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach117Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame117_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach117Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame117_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach118Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame118_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach118Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame118_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach118Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame118_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach118Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame118_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach119Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame119_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach119Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame119_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach119Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame119_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach119Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame119_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach120Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame120_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach120Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame120_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach120Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame120_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach120Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame120_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach121Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame121_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach121Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame121_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach121Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame121_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach121Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame121_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach122Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame122_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach122Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame122_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach122Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame122_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach122Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame122_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach123Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame123_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach123Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame123_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach123Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame123_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach123Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame123_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach124Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame124_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach124Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame124_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach124Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame124_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach124Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame124_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach125Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame125_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach125Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame125_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach125Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame125_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach125Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame125_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach126Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame126_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach126Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame126_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach126Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame126_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach126Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame126_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach127Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame127_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach127Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame127_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach127Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame127_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach127Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame127_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach128Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame128_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach128Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame128_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach128Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame128_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach128Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame128_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach129Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame129_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach129Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame129_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach129Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame129_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach129Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame129_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach130Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame130_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach130Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame130_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach130Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame130_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach130Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame130_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach131Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame131_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach131Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame131_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach131Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame131_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach131Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame131_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach132Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame132_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach132Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame132_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach132Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame132_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach132Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame132_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach133Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame133_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach133Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame133_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach133Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame133_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach133Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame133_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach134Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame134_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach134Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame134_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach134Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame134_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach134Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame134_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach135Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame135_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach135Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame135_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach135Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame135_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach135Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame135_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach136Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame136_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach136Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame136_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach136Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame136_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach136Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame136_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach137Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame137_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach137Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame137_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach137Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame137_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach137Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame137_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach138Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame138_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach138Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame138_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach138Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame138_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach138Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame138_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach139Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame139_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach139Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame139_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach139Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame139_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach139Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame139_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach140Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame140_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach140Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame140_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach140Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame140_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach140Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame140_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach141Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame141_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach141Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame141_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach141Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame141_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach141Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame141_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach142Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame142_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach142Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame142_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach142Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame142_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach142Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame142_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach143Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame143_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach143Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame143_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach143Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame143_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach143Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame143_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach144Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame144_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach144Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame144_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach144Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame144_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach144Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame144_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach145Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame145_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach145Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame145_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach145Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame145_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach145Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame145_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach146Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame146_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach146Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame146_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach146Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame146_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach146Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame146_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach147Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame147_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach147Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame147_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach147Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame147_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach147Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame147_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach148Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame148_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach148Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame148_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach148Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame148_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach148Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame148_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach149Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame149_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach149Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame149_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach149Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame149_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach149Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame149_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach150Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame150_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach150Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame150_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach150Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame150_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach150Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame150_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach151Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame151_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach151Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame151_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach151Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame151_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach151Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame151_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach152Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame152_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach152Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame152_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach152Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame152_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach152Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame152_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach153Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame153_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach153Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame153_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach153Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame153_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach153Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame153_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach154Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame154_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach154Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame154_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach154Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame154_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach154Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame154_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach155Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame155_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach155Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame155_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach155Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame155_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach155Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame155_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach156Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame156_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach156Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame156_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach156Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame156_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach156Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame156_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach157Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame157_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach157Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame157_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach157Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame157_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach157Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame157_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach158Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame158_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach158Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame158_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach158Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame158_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach158Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame158_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach159Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame159_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach159Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame159_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach159Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame159_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach159Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame159_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach160Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame160_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach160Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame160_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach160Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame160_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach160Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame160_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach161Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame161_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach161Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame161_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach161Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame161_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach161Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame161_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach162Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame162_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach162Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame162_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach162Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame162_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach162Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame162_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach163Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame163_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach163Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame163_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach163Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame163_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach163Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame163_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach164Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame164_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach164Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame164_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach164Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame164_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach164Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame164_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach165Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame165_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach165Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame165_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach165Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame165_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach165Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame165_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach166Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame166_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach166Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame166_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach166Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame166_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach166Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame166_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach167Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame167_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach167Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame167_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach167Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame167_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach167Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame167_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach168Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame168_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach168Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame168_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach168Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame168_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach168Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame168_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach169Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame169_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach169Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame169_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach169Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame169_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach169Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame169_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach170Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame170_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach170Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame170_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach170Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame170_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach170Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame170_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach171Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame171_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach171Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame171_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach171Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame171_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach171Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame171_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach172Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame172_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach172Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame172_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach172Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame172_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach172Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame172_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach173Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame173_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach173Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame173_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach173Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame173_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach173Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame173_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach174Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame174_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach174Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame174_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach174Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame174_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach174Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame174_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach175Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame175_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach175Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame175_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach175Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame175_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach175Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame175_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach176Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame176_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach176Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame176_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach176Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame176_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach176Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame176_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach177Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame177_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach177Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame177_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach177Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame177_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach177Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame177_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach178Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame178_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach178Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame178_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach178Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame178_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach178Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame178_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach179Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame179_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach179Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame179_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach179Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame179_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach179Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame179_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach180Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame180_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach180Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame180_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach180Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame180_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach180Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame180_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach181Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame181_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach181Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame181_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach181Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame181_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach181Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame181_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach182Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame182_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach182Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame182_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach182Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame182_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach182Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame182_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach183Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame183_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach183Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame183_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach183Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame183_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach183Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame183_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach184Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame184_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach184Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame184_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach184Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame184_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach184Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame184_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach185Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame185_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach185Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame185_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach185Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame185_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach185Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame185_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach186Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame186_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach186Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame186_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach186Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame186_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach186Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame186_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach187Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame187_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach187Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame187_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach187Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame187_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach187Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame187_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach188Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame188_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach188Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame188_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach188Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame188_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach188Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame188_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach189Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame189_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach189Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame189_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach189Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame189_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach189Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame189_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach190Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame190_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach190Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame190_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach190Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame190_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach190Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame190_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach191Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame191_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach191Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame191_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach191Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame191_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach191Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame191_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach192Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame192_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach192Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame192_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach192Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame192_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach192Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame192_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach193Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame193_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach193Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame193_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach193Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame193_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach193Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame193_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach194Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame194_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach194Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame194_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach194Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame194_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach194Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame194_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach195Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame195_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach195Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame195_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach195Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame195_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach195Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame195_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach196Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame196_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach196Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame196_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach196Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame196_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach196Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame196_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach197Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame197_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach197Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame197_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach197Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame197_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach197Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame197_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach198Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame198_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach198Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame198_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach198Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame198_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach198Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame198_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach199Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame199_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach199Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame199_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach199Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame199_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach199Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame199_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach200Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame200_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach200Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame200_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach200Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame200_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach200Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame200_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach201Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame201_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach201Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame201_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach201Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame201_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach201Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame201_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach202Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame202_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach202Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame202_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach202Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame202_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach202Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame202_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach203Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame203_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach203Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame203_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach203Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame203_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach203Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame203_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach204Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame204_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach204Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame204_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach204Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame204_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach204Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame204_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach205Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame205_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach205Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame205_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach205Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame205_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach205Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame205_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach206Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame206_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach206Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame206_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach206Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame206_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach206Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame206_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach207Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame207_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach207Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame207_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach207Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame207_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach207Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame207_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach208Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame208_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach208Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame208_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach208Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame208_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach208Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame208_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach209Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame209_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach209Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame209_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach209Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame209_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach209Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame209_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach210Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame210_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach210Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame210_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach210Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame210_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach210Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame210_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach211Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame211_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach211Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame211_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach211Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame211_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach211Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame211_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach212Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame212_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach212Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame212_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach212Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame212_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach212Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame212_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach213Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame213_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach213Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame213_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach213Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame213_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach213Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame213_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach214Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame214_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach214Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame214_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach214Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame214_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach214Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame214_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach215Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame215_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach215Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame215_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach215Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame215_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach215Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame215_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach216Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame216_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach216Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame216_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach216Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame216_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach216Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame216_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach217Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame217_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach217Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame217_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach217Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame217_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach217Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame217_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach218Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame218_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach218Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame218_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach218Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame218_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach218Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame218_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach219Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame219_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach219Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame219_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach219Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame219_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach219Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame219_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach220Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame220_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach220Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame220_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach220Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame220_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach220Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame220_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach221Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame221_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach221Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame221_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach221Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame221_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach221Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame221_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach222Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame222_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach222Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame222_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach222Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame222_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach222Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame222_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach223Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame223_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach223Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame223_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach223Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame223_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach223Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame223_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach224Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame224_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach224Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame224_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach224Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame224_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach224Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame224_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach225Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame225_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach225Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame225_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach225Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame225_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach225Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame225_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach226Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame226_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach226Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame226_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach226Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame226_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach226Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame226_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach227Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame227_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach227Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame227_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach227Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame227_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach227Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame227_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach228Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame228_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach228Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame228_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach228Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame228_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach228Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame228_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach229Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame229_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach229Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame229_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach229Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame229_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach229Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame229_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach230Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame230_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach230Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame230_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach230Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame230_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach230Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame230_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach231Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame231_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach231Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame231_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach231Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame231_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach231Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame231_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach232Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame232_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach232Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame232_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach232Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame232_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach232Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame232_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach233Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame233_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach233Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame233_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach233Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame233_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach233Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame233_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach234Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame234_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach234Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame234_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach234Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame234_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach234Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame234_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach235Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame235_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach235Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame235_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach235Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame235_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach235Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame235_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach236Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame236_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach236Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame236_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach236Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame236_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach236Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame236_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach237Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame237_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach237Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame237_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach237Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame237_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach237Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame237_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach238Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame238_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach238Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame238_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach238Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame238_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach238Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame238_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach239Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame239_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach239Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame239_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach239Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame239_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach239Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame239_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach240Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame240_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach240Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame240_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach240Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame240_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach240Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame240_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach241Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame241_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach241Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame241_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach241Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame241_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach241Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame241_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach242Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame242_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach242Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame242_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach242Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame242_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach242Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame242_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach243Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame243_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach243Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame243_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach243Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame243_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach243Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame243_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach244Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame244_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach244Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame244_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach244Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame244_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach244Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame244_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach245Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame245_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach245Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame245_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach245Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame245_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach245Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame245_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach246Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame246_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach246Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame246_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach246Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame246_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach246Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame246_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach247Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame247_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach247Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame247_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach247Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame247_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach247Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame247_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach248Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame248_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach248Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame248_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach248Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame248_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach248Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame248_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach249Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame249_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach249Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame249_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach249Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame249_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach249Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame249_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach250Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame250_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach250Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame250_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach250Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame250_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach250Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame250_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach251Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame251_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach251Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame251_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach251Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame251_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach251Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame251_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach252Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame252_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach252Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame252_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach252Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame252_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach252Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame252_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach253Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame253_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach253Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame253_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach253Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame253_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach253Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame253_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach254Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame254_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach254Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame254_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach254Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame254_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach254Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame254_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach255Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame255_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach255Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame255_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach255Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame255_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach255Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame255_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach256Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame256_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach256Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame256_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach256Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame256_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach256Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame256_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach257Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame257_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach257Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame257_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach257Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame257_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach257Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame257_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach258Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame258_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach258Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame258_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach258Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame258_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach258Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame258_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach259Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame259_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach259Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame259_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach259Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame259_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach259Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame259_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach260Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame260_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach260Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame260_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach260Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame260_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach260Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame260_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach261Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame261_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach261Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame261_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach261Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame261_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach261Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame261_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach262Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame262_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach262Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame262_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach262Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame262_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach262Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame262_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach263Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame263_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach263Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame263_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach263Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame263_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach263Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame263_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach264Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame264_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach264Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame264_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach264Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame264_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach264Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame264_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach265Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame265_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach265Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame265_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach265Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame265_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach265Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame265_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach266Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame266_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach266Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame266_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach266Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame266_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach266Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame266_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach267Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame267_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach267Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame267_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach267Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame267_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach267Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame267_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach268Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame268_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach268Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame268_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach268Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame268_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach268Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame268_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach269Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame269_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach269Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame269_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach269Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame269_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach269Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame269_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach270Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame270_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach270Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame270_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach270Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame270_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach270Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame270_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach271Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame271_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach271Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame271_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach271Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame271_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach271Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame271_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach272Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame272_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach272Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame272_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach272Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame272_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach272Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame272_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach273Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame273_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach273Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame273_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach273Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame273_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach273Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame273_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach274Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame274_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach274Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame274_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach274Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame274_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach274Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame274_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach275Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame275_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach275Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame275_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach275Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame275_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach275Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame275_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach276Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame276_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach276Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame276_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach276Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame276_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach276Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame276_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach277Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame277_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach277Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame277_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach277Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame277_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach277Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame277_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach278Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame278_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach278Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame278_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach278Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame278_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach278Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame278_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach279Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame279_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach279Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame279_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach279Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame279_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach279Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame279_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach280Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame280_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach280Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame280_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach280Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame280_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach280Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame280_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach281Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame281_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach281Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame281_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach281Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame281_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach281Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame281_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach282Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame282_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach282Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame282_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach282Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame282_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach282Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame282_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach283Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame283_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach283Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame283_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach283Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame283_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach283Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame283_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach284Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame284_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach284Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame284_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach284Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame284_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach284Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame284_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach285Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame285_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach285Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame285_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach285Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame285_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach285Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame285_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach286Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame286_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach286Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame286_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach286Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame286_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach286Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame286_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach287Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame287_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach287Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame287_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach287Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame287_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach287Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame287_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach288Wheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_frame288_wheel3"; + +static const ALIGN_ASSET(2) char gKartPeach288Wheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_frame288_wheel1"; + +static const ALIGN_ASSET(2) char gKartPeach288Wheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_frame288_wheel0"; + +static const ALIGN_ASSET(2) char gKartPeach288Wheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_frame288_wheel2"; + +static const ALIGN_ASSET(2) char gKartPeach289[] = "__OTR__textures/karts/peach_kart/peach_kart_frame289"; + +static const ALIGN_ASSET(2) char gKartPeach290[] = "__OTR__textures/karts/peach_kart/peach_kart_frame290"; + +static const ALIGN_ASSET(2) char gKartPeach291[] = "__OTR__textures/karts/peach_kart/peach_kart_frame291"; + +static const ALIGN_ASSET(2) char gKartPeach292[] = "__OTR__textures/karts/peach_kart/peach_kart_frame292"; + +static const ALIGN_ASSET(2) char gKartPeach293[] = "__OTR__textures/karts/peach_kart/peach_kart_frame293"; + +static const ALIGN_ASSET(2) char gKartPeach294[] = "__OTR__textures/karts/peach_kart/peach_kart_frame294"; + +static const ALIGN_ASSET(2) char gKartPeach295[] = "__OTR__textures/karts/peach_kart/peach_kart_frame295"; + +static const ALIGN_ASSET(2) char gKartPeach296[] = "__OTR__textures/karts/peach_kart/peach_kart_frame296"; + +static const ALIGN_ASSET(2) char gKartPeach297[] = "__OTR__textures/karts/peach_kart/peach_kart_frame297"; + +static const ALIGN_ASSET(2) char gKartPeach298[] = "__OTR__textures/karts/peach_kart/peach_kart_frame298"; + +static const ALIGN_ASSET(2) char gKartPeach299[] = "__OTR__textures/karts/peach_kart/peach_kart_frame299"; + +static const ALIGN_ASSET(2) char gKartPeach300[] = "__OTR__textures/karts/peach_kart/peach_kart_frame300"; + +static const ALIGN_ASSET(2) char gKartPeach301[] = "__OTR__textures/karts/peach_kart/peach_kart_frame301"; + +static const ALIGN_ASSET(2) char gKartPeach302[] = "__OTR__textures/karts/peach_kart/peach_kart_frame302"; + +static const ALIGN_ASSET(2) char gKartPeach303[] = "__OTR__textures/karts/peach_kart/peach_kart_frame303"; + +static const ALIGN_ASSET(2) char gKartPeach304[] = "__OTR__textures/karts/peach_kart/peach_kart_frame304"; + +static const ALIGN_ASSET(2) char gKartPeach305[] = "__OTR__textures/karts/peach_kart/peach_kart_frame305"; + +static const ALIGN_ASSET(2) char gKartPeach306[] = "__OTR__textures/karts/peach_kart/peach_kart_frame306"; + +static const ALIGN_ASSET(2) char gKartPeach307[] = "__OTR__textures/karts/peach_kart/peach_kart_frame307"; + +static const ALIGN_ASSET(2) char gKartPeach308[] = "__OTR__textures/karts/peach_kart/peach_kart_frame308"; + +static const ALIGN_ASSET(2) char gKartPeach309[] = "__OTR__textures/karts/peach_kart/peach_kart_frame309"; + +static const ALIGN_ASSET(2) char gKartPeach310[] = "__OTR__textures/karts/peach_kart/peach_kart_frame310"; + +static const ALIGN_ASSET(2) char gKartPeach311[] = "__OTR__textures/karts/peach_kart/peach_kart_frame311"; + +static const ALIGN_ASSET(2) char gKartPeach312[] = "__OTR__textures/karts/peach_kart/peach_kart_frame312"; + +static const ALIGN_ASSET(2) char gKartPeach313[] = "__OTR__textures/karts/peach_kart/peach_kart_frame313"; + +static const ALIGN_ASSET(2) char gKartPeach314[] = "__OTR__textures/karts/peach_kart/peach_kart_frame314"; + +static const ALIGN_ASSET(2) char gKartPeach315[] = "__OTR__textures/karts/peach_kart/peach_kart_frame315"; + +static const ALIGN_ASSET(2) char gKartPeach316[] = "__OTR__textures/karts/peach_kart/peach_kart_frame316"; + +static const ALIGN_ASSET(2) char gKartPeach317[] = "__OTR__textures/karts/peach_kart/peach_kart_frame317"; + +static const ALIGN_ASSET(2) char gKartPeach318[] = "__OTR__textures/karts/peach_kart/peach_kart_frame318"; + +static const ALIGN_ASSET(2) char gKartPeach319[] = "__OTR__textures/karts/peach_kart/peach_kart_frame319"; + +static const ALIGN_ASSET(2) char gKartPeach320[] = "__OTR__textures/karts/peach_kart/peach_kart_frame320"; + +static const ALIGN_ASSET(2) char gKartPeach000TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_000_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach000TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_000_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach000TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_000_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach000TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_000_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach001TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_001_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach001TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_001_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach001TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_001_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach001TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_001_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach002TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_002_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach002TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_002_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach002TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_002_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach002TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_002_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach003TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_003_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach003TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_003_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach003TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_003_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach003TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_003_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach004TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_004_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach004TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_004_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach004TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_004_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach004TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_004_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach005TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_005_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach005TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_005_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach005TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_005_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach005TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_005_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach006TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_006_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach006TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_006_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach006TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_006_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach006TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_006_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach007TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_007_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach007TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_007_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach007TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_007_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach007TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_007_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach008TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_008_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach008TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_008_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach008TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_008_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach008TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_008_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach009TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_009_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach009TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_009_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach009TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_009_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach009TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_009_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach010TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_010_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach010TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_010_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach010TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_010_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach010TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_010_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach011TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_011_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach011TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_011_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach011TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_011_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach011TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_011_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach012TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_012_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach012TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_012_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach012TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_012_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach012TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_012_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach013TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_013_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach013TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_013_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach013TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_013_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach013TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_013_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach014TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_014_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach014TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_014_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach014TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_014_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach014TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_014_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach015TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_015_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach015TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_015_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach015TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_015_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach015TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_015_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach016TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_016_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach016TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_016_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach016TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_016_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach016TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_016_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach017TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_017_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach017TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_017_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach017TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_017_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach017TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_017_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach018TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_018_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach018TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_018_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach018TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_018_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach018TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_018_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach019TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_019_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach019TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_019_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach019TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_019_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach019TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_019_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach020TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_020_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach020TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_020_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach020TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_020_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach020TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_020_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach021TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_021_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach021TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_021_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach021TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_021_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach021TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_021_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach022TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_022_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach022TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_022_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach022TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_022_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach022TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_022_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach023TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_023_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach023TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_023_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach023TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_023_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach023TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_023_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach024TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_024_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach024TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_024_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach024TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_024_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach024TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_024_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach025TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_025_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach025TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_025_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach025TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_025_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach025TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_025_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach026TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_026_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach026TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_026_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach026TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_026_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach026TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_026_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach027TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_027_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach027TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_027_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach027TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_027_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach027TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_027_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach028TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_028_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach028TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_028_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach028TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_028_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach028TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_028_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach029TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_029_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach029TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_029_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach029TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_029_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach029TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_029_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach030TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_030_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach030TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_030_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach030TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_030_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach030TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_030_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach031TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_031_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach031TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_031_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach031TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_031_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach031TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_031_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach032TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_032_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach032TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_032_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach032TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_032_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach032TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_032_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach033TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_033_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach033TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_033_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach033TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_033_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach033TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_033_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach034TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_034_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach034TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_034_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach034TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_034_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach034TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_034_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach035TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_035_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach035TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_035_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach035TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_035_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach035TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_035_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach036TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_036_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach036TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_036_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach036TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_036_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach036TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_036_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach037TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_037_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach037TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_037_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach037TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_037_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach037TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_037_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach038TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_038_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach038TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_038_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach038TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_038_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach038TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_038_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach039TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_039_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach039TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_039_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach039TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_039_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach039TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_039_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach040TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_040_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach040TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_040_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach040TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_040_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach040TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_040_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach041TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_041_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach041TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_041_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach041TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_041_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach041TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_041_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach042TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_042_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach042TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_042_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach042TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_042_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach042TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_042_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach043TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_043_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach043TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_043_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach043TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_043_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach043TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_043_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach044TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_044_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach044TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_044_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach044TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_044_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach044TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_044_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach045TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_045_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach045TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_045_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach045TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_045_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach045TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_045_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach046TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_046_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach046TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_046_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach046TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_046_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach046TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_046_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach047TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_047_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach047TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_047_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach047TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_047_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach047TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_047_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach048TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_048_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach048TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_048_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach048TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_048_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach048TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_048_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach049TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_049_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach049TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_049_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach049TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_049_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach049TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_049_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach050TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_050_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach050TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_050_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach050TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_050_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach050TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_050_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach051TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_051_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach051TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_051_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach051TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_051_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach051TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_051_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach052TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_052_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach052TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_052_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach052TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_052_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach052TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_052_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach053TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_053_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach053TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_053_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach053TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_053_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach053TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_053_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach054TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_054_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach054TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_054_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach054TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_054_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach054TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_054_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach055TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_055_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach055TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_055_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach055TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_055_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach055TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_055_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach056TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_056_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach056TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_056_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach056TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_056_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach056TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_056_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach057TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_057_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach057TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_057_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach057TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_057_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach057TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_057_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach058TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_058_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach058TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_058_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach058TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_058_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach058TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_058_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach059TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_059_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach059TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_059_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach059TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_059_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach059TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_059_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach060TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_060_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach060TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_060_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach060TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_060_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach060TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_060_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach061TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_061_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach061TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_061_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach061TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_061_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach061TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_061_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach062TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_062_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach062TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_062_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach062TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_062_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach062TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_062_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach063TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_063_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach063TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_063_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach063TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_063_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach063TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_063_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach064TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_064_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach064TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_064_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach064TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_064_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach064TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_064_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach065TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_065_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach065TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_065_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach065TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_065_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach065TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_065_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach066TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_066_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach066TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_066_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach066TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_066_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach066TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_066_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach067TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_067_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach067TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_067_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach067TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_067_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach067TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_067_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach068TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_068_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach068TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_068_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach068TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_068_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach068TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_068_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach069TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_069_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach069TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_069_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach069TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_069_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach069TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_069_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach070TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_070_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach070TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_070_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach070TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_070_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach070TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_070_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach071TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_071_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach071TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_071_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach071TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_071_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach071TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_071_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach072TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_072_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach072TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_072_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach072TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_072_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach072TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_072_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach073TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_073_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach073TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_073_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach073TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_073_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach073TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_073_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach074TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_074_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach074TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_074_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach074TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_074_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach074TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_074_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach075TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_075_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach075TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_075_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach075TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_075_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach075TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_075_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach076TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_076_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach076TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_076_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach076TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_076_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach076TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_076_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach077TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_077_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach077TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_077_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach077TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_077_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach077TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_077_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach078TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_078_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach078TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_078_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach078TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_078_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach078TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_078_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach079TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_079_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach079TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_079_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach079TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_079_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach079TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_079_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach080TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_080_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach080TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_080_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach080TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_080_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach080TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_080_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach081TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_081_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach081TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_081_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach081TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_081_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach081TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_081_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach082TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_082_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach082TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_082_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach082TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_082_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach082TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_082_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach083TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_083_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach083TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_083_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach083TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_083_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach083TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_083_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach084TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_084_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach084TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_084_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach084TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_084_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach084TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_084_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach085TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_085_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach085TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_085_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach085TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_085_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach085TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_085_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach086TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_086_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach086TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_086_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach086TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_086_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach086TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_086_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach087TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_087_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach087TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_087_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach087TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_087_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach087TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_087_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach088TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_088_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach088TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_088_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach088TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_088_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach088TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_088_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach089TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_089_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach089TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_089_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach089TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_089_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach089TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_089_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach090TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_090_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach090TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_090_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach090TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_090_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach090TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_090_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach091TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_091_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach091TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_091_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach091TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_091_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach091TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_091_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach092TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_092_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach092TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_092_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach092TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_092_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach092TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_092_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach093TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_093_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach093TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_093_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach093TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_093_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach093TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_093_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach094TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_094_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach094TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_094_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach094TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_094_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach094TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_094_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach095TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_095_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach095TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_095_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach095TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_095_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach095TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_095_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach096TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_096_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach096TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_096_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach096TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_096_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach096TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_096_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach097TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_097_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach097TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_097_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach097TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_097_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach097TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_097_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach098TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_098_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach098TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_098_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach098TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_098_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach098TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_098_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach099TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_099_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach099TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_099_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach099TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_099_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach099TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_099_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach100TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_100_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach100TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_100_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach100TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_100_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach100TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_100_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach101TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_101_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach101TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_101_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach101TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_101_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach101TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_101_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach102TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_102_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach102TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_102_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach102TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_102_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach102TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_102_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach103TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_103_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach103TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_103_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach103TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_103_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach103TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_103_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach104TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_104_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach104TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_104_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach104TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_104_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach104TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_104_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach105TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_105_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach105TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_105_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach105TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_105_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach105TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_105_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach106TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_106_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach106TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_106_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach106TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_106_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach106TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_106_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach107TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_107_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach107TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_107_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach107TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_107_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach107TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_107_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach108TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_108_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach108TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_108_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach108TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_108_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach108TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_108_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach109TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_109_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach109TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_109_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach109TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_109_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach109TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_109_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach110TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_110_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach110TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_110_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach110TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_110_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach110TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_110_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach111TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_111_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach111TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_111_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach111TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_111_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach111TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_111_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach112TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_112_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach112TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_112_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach112TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_112_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach112TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_112_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach113TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_113_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach113TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_113_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach113TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_113_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach113TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_113_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach114TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_114_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach114TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_114_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach114TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_114_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach114TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_114_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach115TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_115_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach115TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_115_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach115TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_115_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach115TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_115_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach116TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_116_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach116TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_116_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach116TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_116_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach116TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_116_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach117TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_117_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach117TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_117_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach117TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_117_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach117TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_117_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach118TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_118_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach118TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_118_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach118TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_118_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach118TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_118_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach119TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_119_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach119TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_119_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach119TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_119_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach119TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_119_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach120TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_120_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach120TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_120_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach120TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_120_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach120TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_120_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach121TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_121_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach121TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_121_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach121TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_121_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach121TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_121_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach122TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_122_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach122TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_122_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach122TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_122_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach122TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_122_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach123TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_123_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach123TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_123_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach123TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_123_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach123TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_123_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach124TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_124_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach124TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_124_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach124TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_124_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach124TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_124_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach125TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_125_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach125TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_125_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach125TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_125_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach125TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_125_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach126TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_126_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach126TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_126_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach126TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_126_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach126TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_126_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach127TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_127_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach127TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_127_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach127TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_127_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach127TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_127_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach128TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_128_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach128TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_128_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach128TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_128_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach128TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_128_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach129TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_129_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach129TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_129_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach129TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_129_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach129TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_129_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach130TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_130_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach130TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_130_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach130TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_130_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach130TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_130_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach131TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_131_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach131TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_131_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach131TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_131_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach131TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_131_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach132TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_132_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach132TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_132_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach132TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_132_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach132TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_132_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach133TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_133_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach133TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_133_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach133TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_133_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach133TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_133_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach134TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_134_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach134TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_134_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach134TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_134_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach134TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_134_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach135TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_135_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach135TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_135_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach135TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_135_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach135TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_135_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach136TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_136_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach136TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_136_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach136TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_136_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach136TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_136_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach137TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_137_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach137TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_137_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach137TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_137_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach137TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_137_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach138TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_138_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach138TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_138_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach138TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_138_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach138TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_138_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach139TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_139_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach139TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_139_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach139TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_139_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach139TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_139_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach140TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_140_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach140TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_140_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach140TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_140_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach140TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_140_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach141TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_141_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach141TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_141_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach141TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_141_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach141TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_141_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach142TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_142_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach142TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_142_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach142TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_142_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach142TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_142_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach143TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_143_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach143TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_143_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach143TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_143_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach143TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_143_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach144TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_144_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach144TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_144_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach144TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_144_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach144TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_144_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach145TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_145_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach145TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_145_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach145TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_145_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach145TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_145_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach146TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_146_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach146TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_146_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach146TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_146_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach146TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_146_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach147TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_147_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach147TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_147_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach147TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_147_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach147TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_147_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach148TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_148_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach148TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_148_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach148TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_148_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach148TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_148_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach149TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_149_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach149TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_149_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach149TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_149_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach149TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_149_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach150TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_150_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach150TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_150_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach150TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_150_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach150TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_150_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach151TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_151_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach151TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_151_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach151TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_151_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach151TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_151_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach152TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_152_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach152TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_152_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach152TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_152_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach152TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_152_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach153TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_153_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach153TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_153_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach153TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_153_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach153TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_153_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach154TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_154_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach154TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_154_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach154TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_154_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach154TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_154_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach155TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_155_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach155TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_155_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach155TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_155_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach155TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_155_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach156TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_156_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach156TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_156_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach156TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_156_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach156TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_156_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach157TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_157_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach157TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_157_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach157TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_157_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach157TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_157_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach158TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_158_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach158TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_158_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach158TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_158_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach158TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_158_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach159TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_159_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach159TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_159_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach159TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_159_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach159TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_159_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach160TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_160_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach160TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_160_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach160TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_160_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach160TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_160_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach161TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_161_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach161TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_161_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach161TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_161_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach161TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_161_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach162TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_162_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach162TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_162_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach162TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_162_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach162TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_162_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach163TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_163_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach163TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_163_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach163TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_163_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach163TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_163_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach164TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_164_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach164TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_164_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach164TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_164_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach164TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_164_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach165TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_165_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach165TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_165_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach165TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_165_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach165TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_165_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach166TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_166_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach166TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_166_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach166TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_166_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach166TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_166_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach167TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_167_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach167TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_167_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach167TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_167_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach167TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_167_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach168TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_168_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach168TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_168_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach168TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_168_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach168TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_168_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach169TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_169_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach169TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_169_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach169TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_169_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach169TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_169_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach170TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_170_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach170TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_170_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach170TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_170_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach170TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_170_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach171TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_171_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach171TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_171_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach171TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_171_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach171TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_171_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach172TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_172_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach172TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_172_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach172TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_172_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach172TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_172_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach173TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_173_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach173TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_173_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach173TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_173_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach173TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_173_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach174TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_174_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach174TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_174_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach174TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_174_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach174TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_174_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach175TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_175_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach175TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_175_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach175TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_175_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach175TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_175_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach176TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_176_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach176TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_176_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach176TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_176_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach176TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_176_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach177TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_177_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach177TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_177_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach177TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_177_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach177TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_177_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach178TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_178_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach178TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_178_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach178TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_178_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach178TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_178_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach179TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_179_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach179TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_179_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach179TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_179_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach179TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_179_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach180TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_180_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach180TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_180_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach180TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_180_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach180TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_180_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach181TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_181_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach181TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_181_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach181TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_181_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach181TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_181_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach182TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_182_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach182TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_182_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach182TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_182_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach182TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_182_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach183TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_183_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach183TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_183_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach183TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_183_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach183TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_183_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach184TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_184_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach184TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_184_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach184TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_184_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach184TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_184_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach185TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_185_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach185TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_185_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach185TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_185_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach185TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_185_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach186TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_186_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach186TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_186_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach186TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_186_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach186TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_186_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach187TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_187_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach187TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_187_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach187TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_187_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach187TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_187_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach188TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_188_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach188TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_188_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach188TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_188_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach188TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_188_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach189TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_189_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach189TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_189_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach189TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_189_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach189TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_189_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach190TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_190_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach190TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_190_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach190TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_190_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach190TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_190_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach191TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_191_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach191TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_191_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach191TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_191_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach191TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_191_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach192TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_192_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach192TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_192_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach192TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_192_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach192TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_192_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach193TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_193_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach193TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_193_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach193TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_193_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach193TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_193_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach194TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_194_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach194TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_194_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach194TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_194_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach194TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_194_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach195TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_195_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach195TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_195_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach195TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_195_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach195TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_195_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach196TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_196_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach196TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_196_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach196TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_196_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach196TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_196_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach197TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_197_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach197TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_197_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach197TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_197_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach197TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_197_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach198TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_198_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach198TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_198_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach198TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_198_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach198TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_198_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach199TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_199_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach199TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_199_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach199TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_199_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach199TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_199_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach200TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_200_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach200TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_200_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach200TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_200_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach200TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_200_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach201TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_201_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach201TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_201_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach201TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_201_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach201TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_201_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach202TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_202_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach202TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_202_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach202TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_202_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach202TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_202_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach203TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_203_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach203TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_203_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach203TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_203_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach203TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_203_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach204TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_204_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach204TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_204_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach204TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_204_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach204TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_204_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach205TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_205_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach205TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_205_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach205TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_205_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach205TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_205_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach206TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_206_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach206TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_206_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach206TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_206_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach206TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_206_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach207TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_207_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach207TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_207_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach207TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_207_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach207TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_207_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach208TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_208_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach208TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_208_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach208TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_208_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach208TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_208_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach209TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_209_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach209TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_209_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach209TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_209_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach209TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_209_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach210TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_210_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach210TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_210_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach210TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_210_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach210TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_210_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach211TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_211_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach211TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_211_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach211TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_211_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach211TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_211_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach212TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_212_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach212TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_212_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach212TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_212_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach212TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_212_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach213TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_213_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach213TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_213_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach213TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_213_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach213TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_213_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach214TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_214_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach214TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_214_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach214TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_214_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach214TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_214_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach215TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_215_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach215TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_215_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach215TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_215_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach215TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_215_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach216TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_216_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach216TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_216_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach216TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_216_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach216TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_216_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach217TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_217_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach217TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_217_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach217TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_217_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach217TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_217_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach218TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_218_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach218TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_218_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach218TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_218_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach218TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_218_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach219TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_219_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach219TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_219_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach219TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_219_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach219TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_219_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach220TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_220_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach220TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_220_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach220TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_220_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach220TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_220_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach221TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_221_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach221TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_221_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach221TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_221_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach221TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_221_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach222TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_222_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach222TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_222_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach222TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_222_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach222TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_222_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach223TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_223_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach223TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_223_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach223TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_223_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach223TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_223_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach224TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_224_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach224TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_224_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach224TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_224_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach224TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_224_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach225TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_225_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach225TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_225_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach225TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_225_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach225TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_225_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach226TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_226_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach226TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_226_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach226TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_226_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach226TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_226_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach227TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_227_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach227TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_227_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach227TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_227_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach227TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_227_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach228TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_228_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach228TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_228_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach228TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_228_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach228TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_228_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach229TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_229_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach229TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_229_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach229TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_229_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach229TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_229_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach230TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_230_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach230TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_230_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach230TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_230_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach230TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_230_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach231TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_231_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach231TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_231_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach231TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_231_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach231TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_231_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach232TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_232_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach232TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_232_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach232TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_232_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach232TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_232_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach233TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_233_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach233TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_233_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach233TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_233_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach233TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_233_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach234TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_234_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach234TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_234_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach234TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_234_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach234TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_234_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach235TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_235_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach235TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_235_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach235TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_235_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach235TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_235_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach236TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_236_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach236TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_236_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach236TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_236_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach236TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_236_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach237TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_237_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach237TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_237_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach237TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_237_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach237TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_237_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach238TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_238_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach238TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_238_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach238TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_238_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach238TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_238_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach239TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_239_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach239TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_239_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach239TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_239_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach239TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_239_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach240TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_240_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach240TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_240_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach240TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_240_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach240TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_240_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach241TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_241_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach241TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_241_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach241TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_241_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach241TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_241_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach242TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_242_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach242TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_242_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach242TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_242_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach242TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_242_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach243TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_243_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach243TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_243_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach243TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_243_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach243TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_243_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach244TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_244_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach244TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_244_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach244TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_244_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach244TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_244_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach245TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_245_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach245TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_245_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach245TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_245_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach245TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_245_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach246TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_246_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach246TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_246_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach246TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_246_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach246TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_246_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach247TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_247_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach247TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_247_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach247TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_247_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach247TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_247_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach248TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_248_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach248TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_248_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach248TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_248_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach248TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_248_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach249TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_249_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach249TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_249_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach249TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_249_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach249TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_249_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach250TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_250_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach250TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_250_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach250TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_250_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach250TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_250_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach251TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_251_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach251TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_251_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach251TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_251_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach251TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_251_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach252TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_252_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach252TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_252_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach252TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_252_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach252TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_252_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach253TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_253_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach253TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_253_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach253TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_253_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach253TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_253_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach254TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_254_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach254TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_254_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach254TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_254_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach254TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_254_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach255TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_255_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach255TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_255_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach255TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_255_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach255TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_255_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach256TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_256_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach256TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_256_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach256TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_256_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach256TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_256_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach257TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_257_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach257TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_257_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach257TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_257_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach257TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_257_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach258TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_258_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach258TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_258_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach258TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_258_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach258TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_258_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach259TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_259_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach259TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_259_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach259TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_259_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach259TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_259_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach260TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_260_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach260TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_260_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach260TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_260_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach260TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_260_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach261TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_261_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach261TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_261_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach261TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_261_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach261TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_261_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach262TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_262_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach262TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_262_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach262TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_262_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach262TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_262_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach263TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_263_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach263TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_263_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach263TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_263_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach263TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_263_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach264TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_264_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach264TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_264_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach264TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_264_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach264TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_264_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach265TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_265_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach265TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_265_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach265TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_265_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach265TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_265_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach266TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_266_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach266TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_266_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach266TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_266_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach266TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_266_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach267TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_267_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach267TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_267_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach267TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_267_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach267TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_267_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach268TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_268_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach268TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_268_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach268TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_268_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach268TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_268_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach269TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_269_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach269TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_269_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach269TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_269_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach269TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_269_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach270TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_270_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach270TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_270_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach270TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_270_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach270TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_270_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach271TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_271_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach271TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_271_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach271TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_271_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach271TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_271_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach272TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_272_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach272TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_272_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach272TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_272_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach272TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_272_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach273TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_273_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach273TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_273_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach273TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_273_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach273TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_273_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach274TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_274_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach274TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_274_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach274TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_274_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach274TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_274_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach275TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_275_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach275TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_275_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach275TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_275_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach275TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_275_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach276TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_276_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach276TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_276_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach276TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_276_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach276TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_276_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach277TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_277_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach277TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_277_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach277TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_277_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach277TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_277_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach278TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_278_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach278TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_278_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach278TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_278_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach278TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_278_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach279TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_279_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach279TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_279_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach279TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_279_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach279TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_279_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach280TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_280_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach280TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_280_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach280TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_280_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach280TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_280_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach281TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_281_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach281TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_281_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach281TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_281_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach281TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_281_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach282TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_282_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach282TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_282_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach282TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_282_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach282TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_282_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach283TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_283_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach283TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_283_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach283TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_283_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach283TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_283_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach284TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_284_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach284TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_284_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach284TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_284_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach284TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_284_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach285TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_285_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach285TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_285_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach285TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_285_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach285TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_285_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach286TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_286_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach286TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_286_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach286TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_286_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach286TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_286_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach287TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_287_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach287TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_287_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach287TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_287_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach287TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_287_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartPeach288TlutWheel0[] = "__OTR__textures/karts/peach_kart/peach_kart_288_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartPeach288TlutWheel1[] = "__OTR__textures/karts/peach_kart/peach_kart_288_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartPeach288TlutWheel2[] = "__OTR__textures/karts/peach_kart/peach_kart_288_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartPeach288TlutWheel3[] = "__OTR__textures/karts/peach_kart/peach_kart_288_tlut_wheel_3"; + +static const char* peach_kart_wheels[] = { + gKartPeach000TlutWheel0, + gKartPeach000TlutWheel1, + gKartPeach000TlutWheel2, + gKartPeach000TlutWheel3, + gKartPeach001TlutWheel0, + gKartPeach001TlutWheel1, + gKartPeach001TlutWheel2, + gKartPeach001TlutWheel3, + gKartPeach002TlutWheel0, + gKartPeach002TlutWheel1, + gKartPeach002TlutWheel2, + gKartPeach002TlutWheel3, + gKartPeach003TlutWheel0, + gKartPeach003TlutWheel1, + gKartPeach003TlutWheel2, + gKartPeach003TlutWheel3, + gKartPeach004TlutWheel0, + gKartPeach004TlutWheel1, + gKartPeach004TlutWheel2, + gKartPeach004TlutWheel3, + gKartPeach005TlutWheel0, + gKartPeach005TlutWheel1, + gKartPeach005TlutWheel2, + gKartPeach005TlutWheel3, + gKartPeach006TlutWheel0, + gKartPeach006TlutWheel1, + gKartPeach006TlutWheel2, + gKartPeach006TlutWheel3, + gKartPeach007TlutWheel0, + gKartPeach007TlutWheel1, + gKartPeach007TlutWheel2, + gKartPeach007TlutWheel3, + gKartPeach008TlutWheel0, + gKartPeach008TlutWheel1, + gKartPeach008TlutWheel2, + gKartPeach008TlutWheel3, + gKartPeach009TlutWheel0, + gKartPeach009TlutWheel1, + gKartPeach009TlutWheel2, + gKartPeach009TlutWheel3, + gKartPeach010TlutWheel0, + gKartPeach010TlutWheel1, + gKartPeach010TlutWheel2, + gKartPeach010TlutWheel3, + gKartPeach011TlutWheel0, + gKartPeach011TlutWheel1, + gKartPeach011TlutWheel2, + gKartPeach011TlutWheel3, + gKartPeach012TlutWheel0, + gKartPeach012TlutWheel1, + gKartPeach012TlutWheel2, + gKartPeach012TlutWheel3, + gKartPeach013TlutWheel0, + gKartPeach013TlutWheel1, + gKartPeach013TlutWheel2, + gKartPeach013TlutWheel3, + gKartPeach014TlutWheel0, + gKartPeach014TlutWheel1, + gKartPeach014TlutWheel2, + gKartPeach014TlutWheel3, + gKartPeach015TlutWheel0, + gKartPeach015TlutWheel1, + gKartPeach015TlutWheel2, + gKartPeach015TlutWheel3, + gKartPeach016TlutWheel0, + gKartPeach016TlutWheel1, + gKartPeach016TlutWheel2, + gKartPeach016TlutWheel3, + gKartPeach017TlutWheel0, + gKartPeach017TlutWheel1, + gKartPeach017TlutWheel2, + gKartPeach017TlutWheel3, + gKartPeach018TlutWheel0, + gKartPeach018TlutWheel1, + gKartPeach018TlutWheel2, + gKartPeach018TlutWheel3, + gKartPeach019TlutWheel0, + gKartPeach019TlutWheel1, + gKartPeach019TlutWheel2, + gKartPeach019TlutWheel3, + gKartPeach020TlutWheel0, + gKartPeach020TlutWheel1, + gKartPeach020TlutWheel2, + gKartPeach020TlutWheel3, + gKartPeach021TlutWheel0, + gKartPeach021TlutWheel1, + gKartPeach021TlutWheel2, + gKartPeach021TlutWheel3, + gKartPeach022TlutWheel0, + gKartPeach022TlutWheel1, + gKartPeach022TlutWheel2, + gKartPeach022TlutWheel3, + gKartPeach023TlutWheel0, + gKartPeach023TlutWheel1, + gKartPeach023TlutWheel2, + gKartPeach023TlutWheel3, + gKartPeach024TlutWheel0, + gKartPeach024TlutWheel1, + gKartPeach024TlutWheel2, + gKartPeach024TlutWheel3, + gKartPeach025TlutWheel0, + gKartPeach025TlutWheel1, + gKartPeach025TlutWheel2, + gKartPeach025TlutWheel3, + gKartPeach026TlutWheel0, + gKartPeach026TlutWheel1, + gKartPeach026TlutWheel2, + gKartPeach026TlutWheel3, + gKartPeach027TlutWheel0, + gKartPeach027TlutWheel1, + gKartPeach027TlutWheel2, + gKartPeach027TlutWheel3, + gKartPeach028TlutWheel0, + gKartPeach028TlutWheel1, + gKartPeach028TlutWheel2, + gKartPeach028TlutWheel3, + gKartPeach029TlutWheel0, + gKartPeach029TlutWheel1, + gKartPeach029TlutWheel2, + gKartPeach029TlutWheel3, + gKartPeach030TlutWheel0, + gKartPeach030TlutWheel1, + gKartPeach030TlutWheel2, + gKartPeach030TlutWheel3, + gKartPeach031TlutWheel0, + gKartPeach031TlutWheel1, + gKartPeach031TlutWheel2, + gKartPeach031TlutWheel3, + gKartPeach032TlutWheel0, + gKartPeach032TlutWheel1, + gKartPeach032TlutWheel2, + gKartPeach032TlutWheel3, + gKartPeach033TlutWheel0, + gKartPeach033TlutWheel1, + gKartPeach033TlutWheel2, + gKartPeach033TlutWheel3, + gKartPeach034TlutWheel0, + gKartPeach034TlutWheel1, + gKartPeach034TlutWheel2, + gKartPeach034TlutWheel3, + gKartPeach035TlutWheel0, + gKartPeach035TlutWheel1, + gKartPeach035TlutWheel2, + gKartPeach035TlutWheel3, + gKartPeach036TlutWheel0, + gKartPeach036TlutWheel1, + gKartPeach036TlutWheel2, + gKartPeach036TlutWheel3, + gKartPeach037TlutWheel0, + gKartPeach037TlutWheel1, + gKartPeach037TlutWheel2, + gKartPeach037TlutWheel3, + gKartPeach038TlutWheel0, + gKartPeach038TlutWheel1, + gKartPeach038TlutWheel2, + gKartPeach038TlutWheel3, + gKartPeach039TlutWheel0, + gKartPeach039TlutWheel1, + gKartPeach039TlutWheel2, + gKartPeach039TlutWheel3, + gKartPeach040TlutWheel0, + gKartPeach040TlutWheel1, + gKartPeach040TlutWheel2, + gKartPeach040TlutWheel3, + gKartPeach041TlutWheel0, + gKartPeach041TlutWheel1, + gKartPeach041TlutWheel2, + gKartPeach041TlutWheel3, + gKartPeach042TlutWheel0, + gKartPeach042TlutWheel1, + gKartPeach042TlutWheel2, + gKartPeach042TlutWheel3, + gKartPeach043TlutWheel0, + gKartPeach043TlutWheel1, + gKartPeach043TlutWheel2, + gKartPeach043TlutWheel3, + gKartPeach044TlutWheel0, + gKartPeach044TlutWheel1, + gKartPeach044TlutWheel2, + gKartPeach044TlutWheel3, + gKartPeach045TlutWheel0, + gKartPeach045TlutWheel1, + gKartPeach045TlutWheel2, + gKartPeach045TlutWheel3, + gKartPeach046TlutWheel0, + gKartPeach046TlutWheel1, + gKartPeach046TlutWheel2, + gKartPeach046TlutWheel3, + gKartPeach047TlutWheel0, + gKartPeach047TlutWheel1, + gKartPeach047TlutWheel2, + gKartPeach047TlutWheel3, + gKartPeach048TlutWheel0, + gKartPeach048TlutWheel1, + gKartPeach048TlutWheel2, + gKartPeach048TlutWheel3, + gKartPeach049TlutWheel0, + gKartPeach049TlutWheel1, + gKartPeach049TlutWheel2, + gKartPeach049TlutWheel3, + gKartPeach050TlutWheel0, + gKartPeach050TlutWheel1, + gKartPeach050TlutWheel2, + gKartPeach050TlutWheel3, + gKartPeach051TlutWheel0, + gKartPeach051TlutWheel1, + gKartPeach051TlutWheel2, + gKartPeach051TlutWheel3, + gKartPeach052TlutWheel0, + gKartPeach052TlutWheel1, + gKartPeach052TlutWheel2, + gKartPeach052TlutWheel3, + gKartPeach053TlutWheel0, + gKartPeach053TlutWheel1, + gKartPeach053TlutWheel2, + gKartPeach053TlutWheel3, + gKartPeach054TlutWheel0, + gKartPeach054TlutWheel1, + gKartPeach054TlutWheel2, + gKartPeach054TlutWheel3, + gKartPeach055TlutWheel0, + gKartPeach055TlutWheel1, + gKartPeach055TlutWheel2, + gKartPeach055TlutWheel3, + gKartPeach056TlutWheel0, + gKartPeach056TlutWheel1, + gKartPeach056TlutWheel2, + gKartPeach056TlutWheel3, + gKartPeach057TlutWheel0, + gKartPeach057TlutWheel1, + gKartPeach057TlutWheel2, + gKartPeach057TlutWheel3, + gKartPeach058TlutWheel0, + gKartPeach058TlutWheel1, + gKartPeach058TlutWheel2, + gKartPeach058TlutWheel3, + gKartPeach059TlutWheel0, + gKartPeach059TlutWheel1, + gKartPeach059TlutWheel2, + gKartPeach059TlutWheel3, + gKartPeach060TlutWheel0, + gKartPeach060TlutWheel1, + gKartPeach060TlutWheel2, + gKartPeach060TlutWheel3, + gKartPeach061TlutWheel0, + gKartPeach061TlutWheel1, + gKartPeach061TlutWheel2, + gKartPeach061TlutWheel3, + gKartPeach062TlutWheel0, + gKartPeach062TlutWheel1, + gKartPeach062TlutWheel2, + gKartPeach062TlutWheel3, + gKartPeach063TlutWheel0, + gKartPeach063TlutWheel1, + gKartPeach063TlutWheel2, + gKartPeach063TlutWheel3, + gKartPeach064TlutWheel0, + gKartPeach064TlutWheel1, + gKartPeach064TlutWheel2, + gKartPeach064TlutWheel3, + gKartPeach065TlutWheel0, + gKartPeach065TlutWheel1, + gKartPeach065TlutWheel2, + gKartPeach065TlutWheel3, + gKartPeach066TlutWheel0, + gKartPeach066TlutWheel1, + gKartPeach066TlutWheel2, + gKartPeach066TlutWheel3, + gKartPeach067TlutWheel0, + gKartPeach067TlutWheel1, + gKartPeach067TlutWheel2, + gKartPeach067TlutWheel3, + gKartPeach068TlutWheel0, + gKartPeach068TlutWheel1, + gKartPeach068TlutWheel2, + gKartPeach068TlutWheel3, + gKartPeach069TlutWheel0, + gKartPeach069TlutWheel1, + gKartPeach069TlutWheel2, + gKartPeach069TlutWheel3, + gKartPeach070TlutWheel0, + gKartPeach070TlutWheel1, + gKartPeach070TlutWheel2, + gKartPeach070TlutWheel3, + gKartPeach071TlutWheel0, + gKartPeach071TlutWheel1, + gKartPeach071TlutWheel2, + gKartPeach071TlutWheel3, + gKartPeach072TlutWheel0, + gKartPeach072TlutWheel1, + gKartPeach072TlutWheel2, + gKartPeach072TlutWheel3, + gKartPeach073TlutWheel0, + gKartPeach073TlutWheel1, + gKartPeach073TlutWheel2, + gKartPeach073TlutWheel3, + gKartPeach074TlutWheel0, + gKartPeach074TlutWheel1, + gKartPeach074TlutWheel2, + gKartPeach074TlutWheel3, + gKartPeach075TlutWheel0, + gKartPeach075TlutWheel1, + gKartPeach075TlutWheel2, + gKartPeach075TlutWheel3, + gKartPeach076TlutWheel0, + gKartPeach076TlutWheel1, + gKartPeach076TlutWheel2, + gKartPeach076TlutWheel3, + gKartPeach077TlutWheel0, + gKartPeach077TlutWheel1, + gKartPeach077TlutWheel2, + gKartPeach077TlutWheel3, + gKartPeach078TlutWheel0, + gKartPeach078TlutWheel1, + gKartPeach078TlutWheel2, + gKartPeach078TlutWheel3, + gKartPeach079TlutWheel0, + gKartPeach079TlutWheel1, + gKartPeach079TlutWheel2, + gKartPeach079TlutWheel3, + gKartPeach080TlutWheel0, + gKartPeach080TlutWheel1, + gKartPeach080TlutWheel2, + gKartPeach080TlutWheel3, + gKartPeach081TlutWheel0, + gKartPeach081TlutWheel1, + gKartPeach081TlutWheel2, + gKartPeach081TlutWheel3, + gKartPeach082TlutWheel0, + gKartPeach082TlutWheel1, + gKartPeach082TlutWheel2, + gKartPeach082TlutWheel3, + gKartPeach083TlutWheel0, + gKartPeach083TlutWheel1, + gKartPeach083TlutWheel2, + gKartPeach083TlutWheel3, + gKartPeach084TlutWheel0, + gKartPeach084TlutWheel1, + gKartPeach084TlutWheel2, + gKartPeach084TlutWheel3, + gKartPeach085TlutWheel0, + gKartPeach085TlutWheel1, + gKartPeach085TlutWheel2, + gKartPeach085TlutWheel3, + gKartPeach086TlutWheel0, + gKartPeach086TlutWheel1, + gKartPeach086TlutWheel2, + gKartPeach086TlutWheel3, + gKartPeach087TlutWheel0, + gKartPeach087TlutWheel1, + gKartPeach087TlutWheel2, + gKartPeach087TlutWheel3, + gKartPeach088TlutWheel0, + gKartPeach088TlutWheel1, + gKartPeach088TlutWheel2, + gKartPeach088TlutWheel3, + gKartPeach089TlutWheel0, + gKartPeach089TlutWheel1, + gKartPeach089TlutWheel2, + gKartPeach089TlutWheel3, + gKartPeach090TlutWheel0, + gKartPeach090TlutWheel1, + gKartPeach090TlutWheel2, + gKartPeach090TlutWheel3, + gKartPeach091TlutWheel0, + gKartPeach091TlutWheel1, + gKartPeach091TlutWheel2, + gKartPeach091TlutWheel3, + gKartPeach092TlutWheel0, + gKartPeach092TlutWheel1, + gKartPeach092TlutWheel2, + gKartPeach092TlutWheel3, + gKartPeach093TlutWheel0, + gKartPeach093TlutWheel1, + gKartPeach093TlutWheel2, + gKartPeach093TlutWheel3, + gKartPeach094TlutWheel0, + gKartPeach094TlutWheel1, + gKartPeach094TlutWheel2, + gKartPeach094TlutWheel3, + gKartPeach095TlutWheel0, + gKartPeach095TlutWheel1, + gKartPeach095TlutWheel2, + gKartPeach095TlutWheel3, + gKartPeach096TlutWheel0, + gKartPeach096TlutWheel1, + gKartPeach096TlutWheel2, + gKartPeach096TlutWheel3, + gKartPeach097TlutWheel0, + gKartPeach097TlutWheel1, + gKartPeach097TlutWheel2, + gKartPeach097TlutWheel3, + gKartPeach098TlutWheel0, + gKartPeach098TlutWheel1, + gKartPeach098TlutWheel2, + gKartPeach098TlutWheel3, + gKartPeach099TlutWheel0, + gKartPeach099TlutWheel1, + gKartPeach099TlutWheel2, + gKartPeach099TlutWheel3, + gKartPeach100TlutWheel0, + gKartPeach100TlutWheel1, + gKartPeach100TlutWheel2, + gKartPeach100TlutWheel3, + gKartPeach101TlutWheel0, + gKartPeach101TlutWheel1, + gKartPeach101TlutWheel2, + gKartPeach101TlutWheel3, + gKartPeach102TlutWheel0, + gKartPeach102TlutWheel1, + gKartPeach102TlutWheel2, + gKartPeach102TlutWheel3, + gKartPeach103TlutWheel0, + gKartPeach103TlutWheel1, + gKartPeach103TlutWheel2, + gKartPeach103TlutWheel3, + gKartPeach104TlutWheel0, + gKartPeach104TlutWheel1, + gKartPeach104TlutWheel2, + gKartPeach104TlutWheel3, + gKartPeach105TlutWheel0, + gKartPeach105TlutWheel1, + gKartPeach105TlutWheel2, + gKartPeach105TlutWheel3, + gKartPeach106TlutWheel0, + gKartPeach106TlutWheel1, + gKartPeach106TlutWheel2, + gKartPeach106TlutWheel3, + gKartPeach107TlutWheel0, + gKartPeach107TlutWheel1, + gKartPeach107TlutWheel2, + gKartPeach107TlutWheel3, + gKartPeach108TlutWheel0, + gKartPeach108TlutWheel1, + gKartPeach108TlutWheel2, + gKartPeach108TlutWheel3, + gKartPeach109TlutWheel0, + gKartPeach109TlutWheel1, + gKartPeach109TlutWheel2, + gKartPeach109TlutWheel3, + gKartPeach110TlutWheel0, + gKartPeach110TlutWheel1, + gKartPeach110TlutWheel2, + gKartPeach110TlutWheel3, + gKartPeach111TlutWheel0, + gKartPeach111TlutWheel1, + gKartPeach111TlutWheel2, + gKartPeach111TlutWheel3, + gKartPeach112TlutWheel0, + gKartPeach112TlutWheel1, + gKartPeach112TlutWheel2, + gKartPeach112TlutWheel3, + gKartPeach113TlutWheel0, + gKartPeach113TlutWheel1, + gKartPeach113TlutWheel2, + gKartPeach113TlutWheel3, + gKartPeach114TlutWheel0, + gKartPeach114TlutWheel1, + gKartPeach114TlutWheel2, + gKartPeach114TlutWheel3, + gKartPeach115TlutWheel0, + gKartPeach115TlutWheel1, + gKartPeach115TlutWheel2, + gKartPeach115TlutWheel3, + gKartPeach116TlutWheel0, + gKartPeach116TlutWheel1, + gKartPeach116TlutWheel2, + gKartPeach116TlutWheel3, + gKartPeach117TlutWheel0, + gKartPeach117TlutWheel1, + gKartPeach117TlutWheel2, + gKartPeach117TlutWheel3, + gKartPeach118TlutWheel0, + gKartPeach118TlutWheel1, + gKartPeach118TlutWheel2, + gKartPeach118TlutWheel3, + gKartPeach119TlutWheel0, + gKartPeach119TlutWheel1, + gKartPeach119TlutWheel2, + gKartPeach119TlutWheel3, + gKartPeach120TlutWheel0, + gKartPeach120TlutWheel1, + gKartPeach120TlutWheel2, + gKartPeach120TlutWheel3, + gKartPeach121TlutWheel0, + gKartPeach121TlutWheel1, + gKartPeach121TlutWheel2, + gKartPeach121TlutWheel3, + gKartPeach122TlutWheel0, + gKartPeach122TlutWheel1, + gKartPeach122TlutWheel2, + gKartPeach122TlutWheel3, + gKartPeach123TlutWheel0, + gKartPeach123TlutWheel1, + gKartPeach123TlutWheel2, + gKartPeach123TlutWheel3, + gKartPeach124TlutWheel0, + gKartPeach124TlutWheel1, + gKartPeach124TlutWheel2, + gKartPeach124TlutWheel3, + gKartPeach125TlutWheel0, + gKartPeach125TlutWheel1, + gKartPeach125TlutWheel2, + gKartPeach125TlutWheel3, + gKartPeach126TlutWheel0, + gKartPeach126TlutWheel1, + gKartPeach126TlutWheel2, + gKartPeach126TlutWheel3, + gKartPeach127TlutWheel0, + gKartPeach127TlutWheel1, + gKartPeach127TlutWheel2, + gKartPeach127TlutWheel3, + gKartPeach128TlutWheel0, + gKartPeach128TlutWheel1, + gKartPeach128TlutWheel2, + gKartPeach128TlutWheel3, + gKartPeach129TlutWheel0, + gKartPeach129TlutWheel1, + gKartPeach129TlutWheel2, + gKartPeach129TlutWheel3, + gKartPeach130TlutWheel0, + gKartPeach130TlutWheel1, + gKartPeach130TlutWheel2, + gKartPeach130TlutWheel3, + gKartPeach131TlutWheel0, + gKartPeach131TlutWheel1, + gKartPeach131TlutWheel2, + gKartPeach131TlutWheel3, + gKartPeach132TlutWheel0, + gKartPeach132TlutWheel1, + gKartPeach132TlutWheel2, + gKartPeach132TlutWheel3, + gKartPeach133TlutWheel0, + gKartPeach133TlutWheel1, + gKartPeach133TlutWheel2, + gKartPeach133TlutWheel3, + gKartPeach134TlutWheel0, + gKartPeach134TlutWheel1, + gKartPeach134TlutWheel2, + gKartPeach134TlutWheel3, + gKartPeach135TlutWheel0, + gKartPeach135TlutWheel1, + gKartPeach135TlutWheel2, + gKartPeach135TlutWheel3, + gKartPeach136TlutWheel0, + gKartPeach136TlutWheel1, + gKartPeach136TlutWheel2, + gKartPeach136TlutWheel3, + gKartPeach137TlutWheel0, + gKartPeach137TlutWheel1, + gKartPeach137TlutWheel2, + gKartPeach137TlutWheel3, + gKartPeach138TlutWheel0, + gKartPeach138TlutWheel1, + gKartPeach138TlutWheel2, + gKartPeach138TlutWheel3, + gKartPeach139TlutWheel0, + gKartPeach139TlutWheel1, + gKartPeach139TlutWheel2, + gKartPeach139TlutWheel3, + gKartPeach140TlutWheel0, + gKartPeach140TlutWheel1, + gKartPeach140TlutWheel2, + gKartPeach140TlutWheel3, + gKartPeach141TlutWheel0, + gKartPeach141TlutWheel1, + gKartPeach141TlutWheel2, + gKartPeach141TlutWheel3, + gKartPeach142TlutWheel0, + gKartPeach142TlutWheel1, + gKartPeach142TlutWheel2, + gKartPeach142TlutWheel3, + gKartPeach143TlutWheel0, + gKartPeach143TlutWheel1, + gKartPeach143TlutWheel2, + gKartPeach143TlutWheel3, + gKartPeach144TlutWheel0, + gKartPeach144TlutWheel1, + gKartPeach144TlutWheel2, + gKartPeach144TlutWheel3, + gKartPeach145TlutWheel0, + gKartPeach145TlutWheel1, + gKartPeach145TlutWheel2, + gKartPeach145TlutWheel3, + gKartPeach146TlutWheel0, + gKartPeach146TlutWheel1, + gKartPeach146TlutWheel2, + gKartPeach146TlutWheel3, + gKartPeach147TlutWheel0, + gKartPeach147TlutWheel1, + gKartPeach147TlutWheel2, + gKartPeach147TlutWheel3, + gKartPeach148TlutWheel0, + gKartPeach148TlutWheel1, + gKartPeach148TlutWheel2, + gKartPeach148TlutWheel3, + gKartPeach149TlutWheel0, + gKartPeach149TlutWheel1, + gKartPeach149TlutWheel2, + gKartPeach149TlutWheel3, + gKartPeach150TlutWheel0, + gKartPeach150TlutWheel1, + gKartPeach150TlutWheel2, + gKartPeach150TlutWheel3, + gKartPeach151TlutWheel0, + gKartPeach151TlutWheel1, + gKartPeach151TlutWheel2, + gKartPeach151TlutWheel3, + gKartPeach152TlutWheel0, + gKartPeach152TlutWheel1, + gKartPeach152TlutWheel2, + gKartPeach152TlutWheel3, + gKartPeach153TlutWheel0, + gKartPeach153TlutWheel1, + gKartPeach153TlutWheel2, + gKartPeach153TlutWheel3, + gKartPeach154TlutWheel0, + gKartPeach154TlutWheel1, + gKartPeach154TlutWheel2, + gKartPeach154TlutWheel3, + gKartPeach155TlutWheel0, + gKartPeach155TlutWheel1, + gKartPeach155TlutWheel2, + gKartPeach155TlutWheel3, + gKartPeach156TlutWheel0, + gKartPeach156TlutWheel1, + gKartPeach156TlutWheel2, + gKartPeach156TlutWheel3, + gKartPeach157TlutWheel0, + gKartPeach157TlutWheel1, + gKartPeach157TlutWheel2, + gKartPeach157TlutWheel3, + gKartPeach158TlutWheel0, + gKartPeach158TlutWheel1, + gKartPeach158TlutWheel2, + gKartPeach158TlutWheel3, + gKartPeach159TlutWheel0, + gKartPeach159TlutWheel1, + gKartPeach159TlutWheel2, + gKartPeach159TlutWheel3, + gKartPeach160TlutWheel0, + gKartPeach160TlutWheel1, + gKartPeach160TlutWheel2, + gKartPeach160TlutWheel3, + gKartPeach161TlutWheel0, + gKartPeach161TlutWheel1, + gKartPeach161TlutWheel2, + gKartPeach161TlutWheel3, + gKartPeach162TlutWheel0, + gKartPeach162TlutWheel1, + gKartPeach162TlutWheel2, + gKartPeach162TlutWheel3, + gKartPeach163TlutWheel0, + gKartPeach163TlutWheel1, + gKartPeach163TlutWheel2, + gKartPeach163TlutWheel3, + gKartPeach164TlutWheel0, + gKartPeach164TlutWheel1, + gKartPeach164TlutWheel2, + gKartPeach164TlutWheel3, + gKartPeach165TlutWheel0, + gKartPeach165TlutWheel1, + gKartPeach165TlutWheel2, + gKartPeach165TlutWheel3, + gKartPeach166TlutWheel0, + gKartPeach166TlutWheel1, + gKartPeach166TlutWheel2, + gKartPeach166TlutWheel3, + gKartPeach167TlutWheel0, + gKartPeach167TlutWheel1, + gKartPeach167TlutWheel2, + gKartPeach167TlutWheel3, + gKartPeach168TlutWheel0, + gKartPeach168TlutWheel1, + gKartPeach168TlutWheel2, + gKartPeach168TlutWheel3, + gKartPeach169TlutWheel0, + gKartPeach169TlutWheel1, + gKartPeach169TlutWheel2, + gKartPeach169TlutWheel3, + gKartPeach170TlutWheel0, + gKartPeach170TlutWheel1, + gKartPeach170TlutWheel2, + gKartPeach170TlutWheel3, + gKartPeach171TlutWheel0, + gKartPeach171TlutWheel1, + gKartPeach171TlutWheel2, + gKartPeach171TlutWheel3, + gKartPeach172TlutWheel0, + gKartPeach172TlutWheel1, + gKartPeach172TlutWheel2, + gKartPeach172TlutWheel3, + gKartPeach173TlutWheel0, + gKartPeach173TlutWheel1, + gKartPeach173TlutWheel2, + gKartPeach173TlutWheel3, + gKartPeach174TlutWheel0, + gKartPeach174TlutWheel1, + gKartPeach174TlutWheel2, + gKartPeach174TlutWheel3, + gKartPeach175TlutWheel0, + gKartPeach175TlutWheel1, + gKartPeach175TlutWheel2, + gKartPeach175TlutWheel3, + gKartPeach176TlutWheel0, + gKartPeach176TlutWheel1, + gKartPeach176TlutWheel2, + gKartPeach176TlutWheel3, + gKartPeach177TlutWheel0, + gKartPeach177TlutWheel1, + gKartPeach177TlutWheel2, + gKartPeach177TlutWheel3, + gKartPeach178TlutWheel0, + gKartPeach178TlutWheel1, + gKartPeach178TlutWheel2, + gKartPeach178TlutWheel3, + gKartPeach179TlutWheel0, + gKartPeach179TlutWheel1, + gKartPeach179TlutWheel2, + gKartPeach179TlutWheel3, + gKartPeach180TlutWheel0, + gKartPeach180TlutWheel1, + gKartPeach180TlutWheel2, + gKartPeach180TlutWheel3, + gKartPeach181TlutWheel0, + gKartPeach181TlutWheel1, + gKartPeach181TlutWheel2, + gKartPeach181TlutWheel3, + gKartPeach182TlutWheel0, + gKartPeach182TlutWheel1, + gKartPeach182TlutWheel2, + gKartPeach182TlutWheel3, + gKartPeach183TlutWheel0, + gKartPeach183TlutWheel1, + gKartPeach183TlutWheel2, + gKartPeach183TlutWheel3, + gKartPeach184TlutWheel0, + gKartPeach184TlutWheel1, + gKartPeach184TlutWheel2, + gKartPeach184TlutWheel3, + gKartPeach185TlutWheel0, + gKartPeach185TlutWheel1, + gKartPeach185TlutWheel2, + gKartPeach185TlutWheel3, + gKartPeach186TlutWheel0, + gKartPeach186TlutWheel1, + gKartPeach186TlutWheel2, + gKartPeach186TlutWheel3, + gKartPeach187TlutWheel0, + gKartPeach187TlutWheel1, + gKartPeach187TlutWheel2, + gKartPeach187TlutWheel3, + gKartPeach188TlutWheel0, + gKartPeach188TlutWheel1, + gKartPeach188TlutWheel2, + gKartPeach188TlutWheel3, + gKartPeach189TlutWheel0, + gKartPeach189TlutWheel1, + gKartPeach189TlutWheel2, + gKartPeach189TlutWheel3, + gKartPeach190TlutWheel0, + gKartPeach190TlutWheel1, + gKartPeach190TlutWheel2, + gKartPeach190TlutWheel3, + gKartPeach191TlutWheel0, + gKartPeach191TlutWheel1, + gKartPeach191TlutWheel2, + gKartPeach191TlutWheel3, + gKartPeach192TlutWheel0, + gKartPeach192TlutWheel1, + gKartPeach192TlutWheel2, + gKartPeach192TlutWheel3, + gKartPeach193TlutWheel0, + gKartPeach193TlutWheel1, + gKartPeach193TlutWheel2, + gKartPeach193TlutWheel3, + gKartPeach194TlutWheel0, + gKartPeach194TlutWheel1, + gKartPeach194TlutWheel2, + gKartPeach194TlutWheel3, + gKartPeach195TlutWheel0, + gKartPeach195TlutWheel1, + gKartPeach195TlutWheel2, + gKartPeach195TlutWheel3, + gKartPeach196TlutWheel0, + gKartPeach196TlutWheel1, + gKartPeach196TlutWheel2, + gKartPeach196TlutWheel3, + gKartPeach197TlutWheel0, + gKartPeach197TlutWheel1, + gKartPeach197TlutWheel2, + gKartPeach197TlutWheel3, + gKartPeach198TlutWheel0, + gKartPeach198TlutWheel1, + gKartPeach198TlutWheel2, + gKartPeach198TlutWheel3, + gKartPeach199TlutWheel0, + gKartPeach199TlutWheel1, + gKartPeach199TlutWheel2, + gKartPeach199TlutWheel3, + gKartPeach200TlutWheel0, + gKartPeach200TlutWheel1, + gKartPeach200TlutWheel2, + gKartPeach200TlutWheel3, + gKartPeach201TlutWheel0, + gKartPeach201TlutWheel1, + gKartPeach201TlutWheel2, + gKartPeach201TlutWheel3, + gKartPeach202TlutWheel0, + gKartPeach202TlutWheel1, + gKartPeach202TlutWheel2, + gKartPeach202TlutWheel3, + gKartPeach203TlutWheel0, + gKartPeach203TlutWheel1, + gKartPeach203TlutWheel2, + gKartPeach203TlutWheel3, + gKartPeach204TlutWheel0, + gKartPeach204TlutWheel1, + gKartPeach204TlutWheel2, + gKartPeach204TlutWheel3, + gKartPeach205TlutWheel0, + gKartPeach205TlutWheel1, + gKartPeach205TlutWheel2, + gKartPeach205TlutWheel3, + gKartPeach206TlutWheel0, + gKartPeach206TlutWheel1, + gKartPeach206TlutWheel2, + gKartPeach206TlutWheel3, + gKartPeach207TlutWheel0, + gKartPeach207TlutWheel1, + gKartPeach207TlutWheel2, + gKartPeach207TlutWheel3, + gKartPeach208TlutWheel0, + gKartPeach208TlutWheel1, + gKartPeach208TlutWheel2, + gKartPeach208TlutWheel3, + gKartPeach209TlutWheel0, + gKartPeach209TlutWheel1, + gKartPeach209TlutWheel2, + gKartPeach209TlutWheel3, + gKartPeach210TlutWheel0, + gKartPeach210TlutWheel1, + gKartPeach210TlutWheel2, + gKartPeach210TlutWheel3, + gKartPeach211TlutWheel0, + gKartPeach211TlutWheel1, + gKartPeach211TlutWheel2, + gKartPeach211TlutWheel3, + gKartPeach212TlutWheel0, + gKartPeach212TlutWheel1, + gKartPeach212TlutWheel2, + gKartPeach212TlutWheel3, + gKartPeach213TlutWheel0, + gKartPeach213TlutWheel1, + gKartPeach213TlutWheel2, + gKartPeach213TlutWheel3, + gKartPeach214TlutWheel0, + gKartPeach214TlutWheel1, + gKartPeach214TlutWheel2, + gKartPeach214TlutWheel3, + gKartPeach215TlutWheel0, + gKartPeach215TlutWheel1, + gKartPeach215TlutWheel2, + gKartPeach215TlutWheel3, + gKartPeach216TlutWheel0, + gKartPeach216TlutWheel1, + gKartPeach216TlutWheel2, + gKartPeach216TlutWheel3, + gKartPeach217TlutWheel0, + gKartPeach217TlutWheel1, + gKartPeach217TlutWheel2, + gKartPeach217TlutWheel3, + gKartPeach218TlutWheel0, + gKartPeach218TlutWheel1, + gKartPeach218TlutWheel2, + gKartPeach218TlutWheel3, + gKartPeach219TlutWheel0, + gKartPeach219TlutWheel1, + gKartPeach219TlutWheel2, + gKartPeach219TlutWheel3, + gKartPeach220TlutWheel0, + gKartPeach220TlutWheel1, + gKartPeach220TlutWheel2, + gKartPeach220TlutWheel3, + gKartPeach221TlutWheel0, + gKartPeach221TlutWheel1, + gKartPeach221TlutWheel2, + gKartPeach221TlutWheel3, + gKartPeach222TlutWheel0, + gKartPeach222TlutWheel1, + gKartPeach222TlutWheel2, + gKartPeach222TlutWheel3, + gKartPeach223TlutWheel0, + gKartPeach223TlutWheel1, + gKartPeach223TlutWheel2, + gKartPeach223TlutWheel3, + gKartPeach224TlutWheel0, + gKartPeach224TlutWheel1, + gKartPeach224TlutWheel2, + gKartPeach224TlutWheel3, + gKartPeach225TlutWheel0, + gKartPeach225TlutWheel1, + gKartPeach225TlutWheel2, + gKartPeach225TlutWheel3, + gKartPeach226TlutWheel0, + gKartPeach226TlutWheel1, + gKartPeach226TlutWheel2, + gKartPeach226TlutWheel3, + gKartPeach227TlutWheel0, + gKartPeach227TlutWheel1, + gKartPeach227TlutWheel2, + gKartPeach227TlutWheel3, + gKartPeach228TlutWheel0, + gKartPeach228TlutWheel1, + gKartPeach228TlutWheel2, + gKartPeach228TlutWheel3, + gKartPeach229TlutWheel0, + gKartPeach229TlutWheel1, + gKartPeach229TlutWheel2, + gKartPeach229TlutWheel3, + gKartPeach230TlutWheel0, + gKartPeach230TlutWheel1, + gKartPeach230TlutWheel2, + gKartPeach230TlutWheel3, + gKartPeach231TlutWheel0, + gKartPeach231TlutWheel1, + gKartPeach231TlutWheel2, + gKartPeach231TlutWheel3, + gKartPeach232TlutWheel0, + gKartPeach232TlutWheel1, + gKartPeach232TlutWheel2, + gKartPeach232TlutWheel3, + gKartPeach233TlutWheel0, + gKartPeach233TlutWheel1, + gKartPeach233TlutWheel2, + gKartPeach233TlutWheel3, + gKartPeach234TlutWheel0, + gKartPeach234TlutWheel1, + gKartPeach234TlutWheel2, + gKartPeach234TlutWheel3, + gKartPeach235TlutWheel0, + gKartPeach235TlutWheel1, + gKartPeach235TlutWheel2, + gKartPeach235TlutWheel3, + gKartPeach236TlutWheel0, + gKartPeach236TlutWheel1, + gKartPeach236TlutWheel2, + gKartPeach236TlutWheel3, + gKartPeach237TlutWheel0, + gKartPeach237TlutWheel1, + gKartPeach237TlutWheel2, + gKartPeach237TlutWheel3, + gKartPeach238TlutWheel0, + gKartPeach238TlutWheel1, + gKartPeach238TlutWheel2, + gKartPeach238TlutWheel3, + gKartPeach239TlutWheel0, + gKartPeach239TlutWheel1, + gKartPeach239TlutWheel2, + gKartPeach239TlutWheel3, + gKartPeach240TlutWheel0, + gKartPeach240TlutWheel1, + gKartPeach240TlutWheel2, + gKartPeach240TlutWheel3, + gKartPeach241TlutWheel0, + gKartPeach241TlutWheel1, + gKartPeach241TlutWheel2, + gKartPeach241TlutWheel3, + gKartPeach242TlutWheel0, + gKartPeach242TlutWheel1, + gKartPeach242TlutWheel2, + gKartPeach242TlutWheel3, + gKartPeach243TlutWheel0, + gKartPeach243TlutWheel1, + gKartPeach243TlutWheel2, + gKartPeach243TlutWheel3, + gKartPeach244TlutWheel0, + gKartPeach244TlutWheel1, + gKartPeach244TlutWheel2, + gKartPeach244TlutWheel3, + gKartPeach245TlutWheel0, + gKartPeach245TlutWheel1, + gKartPeach245TlutWheel2, + gKartPeach245TlutWheel3, + gKartPeach246TlutWheel0, + gKartPeach246TlutWheel1, + gKartPeach246TlutWheel2, + gKartPeach246TlutWheel3, + gKartPeach247TlutWheel0, + gKartPeach247TlutWheel1, + gKartPeach247TlutWheel2, + gKartPeach247TlutWheel3, + gKartPeach248TlutWheel0, + gKartPeach248TlutWheel1, + gKartPeach248TlutWheel2, + gKartPeach248TlutWheel3, + gKartPeach249TlutWheel0, + gKartPeach249TlutWheel1, + gKartPeach249TlutWheel2, + gKartPeach249TlutWheel3, + gKartPeach250TlutWheel0, + gKartPeach250TlutWheel1, + gKartPeach250TlutWheel2, + gKartPeach250TlutWheel3, + gKartPeach251TlutWheel0, + gKartPeach251TlutWheel1, + gKartPeach251TlutWheel2, + gKartPeach251TlutWheel3, + gKartPeach252TlutWheel0, + gKartPeach252TlutWheel1, + gKartPeach252TlutWheel2, + gKartPeach252TlutWheel3, + gKartPeach253TlutWheel0, + gKartPeach253TlutWheel1, + gKartPeach253TlutWheel2, + gKartPeach253TlutWheel3, + gKartPeach254TlutWheel0, + gKartPeach254TlutWheel1, + gKartPeach254TlutWheel2, + gKartPeach254TlutWheel3, + gKartPeach255TlutWheel0, + gKartPeach255TlutWheel1, + gKartPeach255TlutWheel2, + gKartPeach255TlutWheel3, + gKartPeach256TlutWheel0, + gKartPeach256TlutWheel1, + gKartPeach256TlutWheel2, + gKartPeach256TlutWheel3, + gKartPeach257TlutWheel0, + gKartPeach257TlutWheel1, + gKartPeach257TlutWheel2, + gKartPeach257TlutWheel3, + gKartPeach258TlutWheel0, + gKartPeach258TlutWheel1, + gKartPeach258TlutWheel2, + gKartPeach258TlutWheel3, + gKartPeach259TlutWheel0, + gKartPeach259TlutWheel1, + gKartPeach259TlutWheel2, + gKartPeach259TlutWheel3, + gKartPeach260TlutWheel0, + gKartPeach260TlutWheel1, + gKartPeach260TlutWheel2, + gKartPeach260TlutWheel3, + gKartPeach261TlutWheel0, + gKartPeach261TlutWheel1, + gKartPeach261TlutWheel2, + gKartPeach261TlutWheel3, + gKartPeach262TlutWheel0, + gKartPeach262TlutWheel1, + gKartPeach262TlutWheel2, + gKartPeach262TlutWheel3, + gKartPeach263TlutWheel0, + gKartPeach263TlutWheel1, + gKartPeach263TlutWheel2, + gKartPeach263TlutWheel3, + gKartPeach264TlutWheel0, + gKartPeach264TlutWheel1, + gKartPeach264TlutWheel2, + gKartPeach264TlutWheel3, + gKartPeach265TlutWheel0, + gKartPeach265TlutWheel1, + gKartPeach265TlutWheel2, + gKartPeach265TlutWheel3, + gKartPeach266TlutWheel0, + gKartPeach266TlutWheel1, + gKartPeach266TlutWheel2, + gKartPeach266TlutWheel3, + gKartPeach267TlutWheel0, + gKartPeach267TlutWheel1, + gKartPeach267TlutWheel2, + gKartPeach267TlutWheel3, + gKartPeach268TlutWheel0, + gKartPeach268TlutWheel1, + gKartPeach268TlutWheel2, + gKartPeach268TlutWheel3, + gKartPeach269TlutWheel0, + gKartPeach269TlutWheel1, + gKartPeach269TlutWheel2, + gKartPeach269TlutWheel3, + gKartPeach270TlutWheel0, + gKartPeach270TlutWheel1, + gKartPeach270TlutWheel2, + gKartPeach270TlutWheel3, + gKartPeach271TlutWheel0, + gKartPeach271TlutWheel1, + gKartPeach271TlutWheel2, + gKartPeach271TlutWheel3, + gKartPeach272TlutWheel0, + gKartPeach272TlutWheel1, + gKartPeach272TlutWheel2, + gKartPeach272TlutWheel3, + gKartPeach273TlutWheel0, + gKartPeach273TlutWheel1, + gKartPeach273TlutWheel2, + gKartPeach273TlutWheel3, + gKartPeach274TlutWheel0, + gKartPeach274TlutWheel1, + gKartPeach274TlutWheel2, + gKartPeach274TlutWheel3, + gKartPeach275TlutWheel0, + gKartPeach275TlutWheel1, + gKartPeach275TlutWheel2, + gKartPeach275TlutWheel3, + gKartPeach276TlutWheel0, + gKartPeach276TlutWheel1, + gKartPeach276TlutWheel2, + gKartPeach276TlutWheel3, + gKartPeach277TlutWheel0, + gKartPeach277TlutWheel1, + gKartPeach277TlutWheel2, + gKartPeach277TlutWheel3, + gKartPeach278TlutWheel0, + gKartPeach278TlutWheel1, + gKartPeach278TlutWheel2, + gKartPeach278TlutWheel3, + gKartPeach279TlutWheel0, + gKartPeach279TlutWheel1, + gKartPeach279TlutWheel2, + gKartPeach279TlutWheel3, + gKartPeach280TlutWheel0, + gKartPeach280TlutWheel1, + gKartPeach280TlutWheel2, + gKartPeach280TlutWheel3, + gKartPeach281TlutWheel0, + gKartPeach281TlutWheel1, + gKartPeach281TlutWheel2, + gKartPeach281TlutWheel3, + gKartPeach282TlutWheel0, + gKartPeach282TlutWheel1, + gKartPeach282TlutWheel2, + gKartPeach282TlutWheel3, + gKartPeach283TlutWheel0, + gKartPeach283TlutWheel1, + gKartPeach283TlutWheel2, + gKartPeach283TlutWheel3, + gKartPeach284TlutWheel0, + gKartPeach284TlutWheel1, + gKartPeach284TlutWheel2, + gKartPeach284TlutWheel3, + gKartPeach285TlutWheel0, + gKartPeach285TlutWheel1, + gKartPeach285TlutWheel2, + gKartPeach285TlutWheel3, + gKartPeach286TlutWheel0, + gKartPeach286TlutWheel1, + gKartPeach286TlutWheel2, + gKartPeach286TlutWheel3, + gKartPeach287TlutWheel0, + gKartPeach287TlutWheel1, + gKartPeach287TlutWheel2, + gKartPeach287TlutWheel3, + gKartPeach288TlutWheel0, + gKartPeach288TlutWheel1, + gKartPeach288TlutWheel2, + gKartPeach288TlutWheel3, +}; + +static const ALIGN_ASSET(2) char gKartPeachPalette[] = "__OTR__textures/karts/peach_kart/peach_kart_palette"; + diff --git a/include/assets/textures/karts/toad_kart.h b/include/assets/textures/karts/toad_kart.h new file mode 100644 index 000000000..a1366d3cd --- /dev/null +++ b/include/assets/textures/karts/toad_kart.h @@ -0,0 +1,5854 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gKartToad000Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame000_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad000Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame000_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad000Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame000_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad000Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame000_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad001Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame001_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad001Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame001_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad001Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame001_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad001Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame001_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad002Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame002_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad002Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame002_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad002Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame002_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad002Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame002_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad003Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame003_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad003Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame003_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad003Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame003_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad003Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame003_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad004Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame004_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad004Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame004_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad004Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame004_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad004Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame004_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad005Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame005_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad005Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame005_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad005Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame005_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad005Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame005_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad006Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame006_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad006Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame006_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad006Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame006_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad006Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame006_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad007Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame007_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad007Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame007_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad007Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame007_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad007Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame007_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad008Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame008_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad008Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame008_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad008Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame008_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad008Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame008_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad009Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame009_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad009Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame009_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad009Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame009_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad009Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame009_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad010Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame010_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad010Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame010_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad010Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame010_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad010Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame010_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad011Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame011_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad011Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame011_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad011Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame011_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad011Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame011_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad012Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame012_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad012Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame012_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad012Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame012_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad012Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame012_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad013Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame013_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad013Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame013_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad013Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame013_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad013Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame013_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad014Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame014_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad014Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame014_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad014Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame014_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad014Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame014_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad015Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame015_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad015Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame015_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad015Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame015_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad015Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame015_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad016Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame016_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad016Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame016_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad016Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame016_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad016Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame016_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad017Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame017_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad017Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame017_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad017Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame017_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad017Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame017_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad018Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame018_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad018Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame018_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad018Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame018_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad018Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame018_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad019Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame019_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad019Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame019_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad019Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame019_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad019Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame019_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad020Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame020_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad020Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame020_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad020Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame020_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad020Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame020_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad021Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame021_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad021Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame021_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad021Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame021_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad021Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame021_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad022Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame022_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad022Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame022_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad022Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame022_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad022Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame022_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad023Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame023_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad023Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame023_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad023Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame023_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad023Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame023_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad024Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame024_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad024Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame024_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad024Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame024_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad024Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame024_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad025Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame025_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad025Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame025_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad025Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame025_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad025Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame025_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad026Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame026_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad026Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame026_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad026Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame026_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad026Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame026_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad027Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame027_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad027Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame027_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad027Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame027_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad027Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame027_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad028Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame028_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad028Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame028_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad028Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame028_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad028Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame028_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad029Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame029_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad029Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame029_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad029Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame029_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad029Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame029_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad030Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame030_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad030Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame030_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad030Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame030_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad030Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame030_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad031Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame031_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad031Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame031_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad031Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame031_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad031Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame031_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad032Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame032_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad032Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame032_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad032Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame032_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad032Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame032_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad033Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame033_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad033Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame033_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad033Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame033_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad033Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame033_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad034Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame034_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad034Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame034_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad034Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame034_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad034Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame034_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad035Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame035_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad035Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame035_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad035Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame035_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad035Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame035_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad036Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame036_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad036Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame036_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad036Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame036_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad036Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame036_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad037Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame037_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad037Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame037_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad037Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame037_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad037Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame037_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad038Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame038_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad038Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame038_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad038Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame038_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad038Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame038_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad039Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame039_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad039Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame039_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad039Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame039_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad039Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame039_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad040Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame040_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad040Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame040_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad040Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame040_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad040Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame040_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad041Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame041_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad041Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame041_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad041Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame041_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad041Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame041_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad042Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame042_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad042Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame042_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad042Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame042_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad042Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame042_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad043Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame043_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad043Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame043_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad043Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame043_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad043Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame043_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad044Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame044_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad044Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame044_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad044Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame044_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad044Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame044_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad045Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame045_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad045Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame045_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad045Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame045_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad045Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame045_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad046Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame046_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad046Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame046_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad046Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame046_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad046Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame046_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad047Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame047_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad047Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame047_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad047Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame047_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad047Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame047_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad048Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame048_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad048Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame048_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad048Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame048_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad048Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame048_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad049Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame049_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad049Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame049_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad049Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame049_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad049Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame049_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad050Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame050_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad050Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame050_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad050Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame050_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad050Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame050_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad051Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame051_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad051Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame051_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad051Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame051_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad051Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame051_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad052Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame052_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad052Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame052_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad052Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame052_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad052Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame052_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad053Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame053_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad053Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame053_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad053Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame053_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad053Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame053_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad054Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame054_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad054Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame054_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad054Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame054_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad054Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame054_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad055Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame055_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad055Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame055_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad055Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame055_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad055Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame055_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad056Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame056_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad056Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame056_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad056Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame056_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad056Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame056_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad057Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame057_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad057Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame057_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad057Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame057_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad057Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame057_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad058Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame058_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad058Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame058_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad058Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame058_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad058Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame058_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad059Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame059_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad059Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame059_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad059Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame059_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad059Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame059_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad060Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame060_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad060Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame060_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad060Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame060_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad060Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame060_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad061Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame061_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad061Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame061_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad061Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame061_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad061Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame061_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad062Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame062_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad062Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame062_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad062Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame062_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad062Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame062_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad063Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame063_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad063Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame063_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad063Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame063_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad063Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame063_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad064Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame064_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad064Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame064_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad064Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame064_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad064Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame064_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad065Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame065_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad065Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame065_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad065Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame065_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad065Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame065_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad066Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame066_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad066Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame066_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad066Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame066_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad066Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame066_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad067Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame067_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad067Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame067_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad067Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame067_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad067Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame067_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad068Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame068_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad068Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame068_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad068Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame068_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad068Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame068_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad069Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame069_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad069Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame069_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad069Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame069_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad069Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame069_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad070Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame070_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad070Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame070_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad070Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame070_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad070Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame070_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad071Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame071_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad071Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame071_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad071Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame071_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad071Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame071_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad072Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame072_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad072Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame072_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad072Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame072_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad072Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame072_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad073Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame073_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad073Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame073_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad073Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame073_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad073Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame073_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad074Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame074_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad074Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame074_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad074Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame074_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad074Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame074_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad075Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame075_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad075Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame075_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad075Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame075_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad075Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame075_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad076Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame076_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad076Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame076_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad076Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame076_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad076Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame076_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad077Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame077_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad077Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame077_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad077Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame077_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad077Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame077_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad078Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame078_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad078Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame078_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad078Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame078_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad078Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame078_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad079Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame079_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad079Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame079_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad079Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame079_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad079Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame079_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad080Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame080_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad080Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame080_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad080Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame080_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad080Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame080_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad081Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame081_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad081Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame081_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad081Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame081_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad081Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame081_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad082Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame082_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad082Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame082_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad082Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame082_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad082Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame082_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad083Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame083_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad083Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame083_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad083Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame083_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad083Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame083_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad084Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame084_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad084Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame084_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad084Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame084_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad084Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame084_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad085Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame085_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad085Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame085_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad085Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame085_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad085Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame085_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad086Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame086_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad086Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame086_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad086Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame086_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad086Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame086_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad087Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame087_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad087Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame087_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad087Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame087_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad087Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame087_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad088Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame088_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad088Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame088_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad088Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame088_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad088Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame088_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad089Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame089_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad089Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame089_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad089Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame089_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad089Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame089_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad090Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame090_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad090Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame090_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad090Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame090_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad090Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame090_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad091Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame091_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad091Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame091_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad091Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame091_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad091Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame091_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad092Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame092_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad092Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame092_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad092Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame092_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad092Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame092_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad093Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame093_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad093Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame093_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad093Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame093_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad093Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame093_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad094Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame094_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad094Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame094_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad094Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame094_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad094Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame094_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad095Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame095_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad095Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame095_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad095Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame095_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad095Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame095_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad096Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame096_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad096Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame096_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad096Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame096_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad096Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame096_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad097Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame097_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad097Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame097_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad097Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame097_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad097Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame097_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad098Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame098_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad098Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame098_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad098Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame098_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad098Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame098_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad099Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame099_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad099Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame099_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad099Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame099_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad099Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame099_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad100Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame100_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad100Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame100_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad100Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame100_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad100Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame100_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad101Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame101_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad101Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame101_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad101Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame101_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad101Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame101_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad102Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame102_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad102Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame102_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad102Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame102_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad102Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame102_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad103Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame103_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad103Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame103_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad103Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame103_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad103Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame103_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad104Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame104_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad104Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame104_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad104Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame104_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad104Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame104_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad105Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame105_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad105Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame105_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad105Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame105_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad105Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame105_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad106Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame106_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad106Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame106_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad106Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame106_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad106Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame106_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad107Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame107_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad107Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame107_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad107Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame107_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad107Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame107_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad108Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame108_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad108Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame108_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad108Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame108_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad108Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame108_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad109Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame109_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad109Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame109_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad109Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame109_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad109Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame109_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad110Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame110_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad110Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame110_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad110Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame110_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad110Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame110_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad111Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame111_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad111Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame111_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad111Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame111_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad111Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame111_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad112Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame112_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad112Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame112_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad112Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame112_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad112Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame112_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad113Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame113_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad113Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame113_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad113Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame113_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad113Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame113_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad114Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame114_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad114Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame114_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad114Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame114_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad114Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame114_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad115Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame115_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad115Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame115_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad115Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame115_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad115Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame115_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad116Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame116_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad116Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame116_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad116Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame116_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad116Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame116_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad117Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame117_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad117Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame117_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad117Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame117_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad117Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame117_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad118Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame118_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad118Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame118_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad118Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame118_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad118Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame118_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad119Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame119_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad119Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame119_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad119Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame119_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad119Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame119_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad120Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame120_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad120Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame120_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad120Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame120_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad120Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame120_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad121Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame121_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad121Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame121_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad121Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame121_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad121Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame121_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad122Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame122_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad122Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame122_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad122Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame122_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad122Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame122_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad123Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame123_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad123Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame123_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad123Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame123_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad123Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame123_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad124Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame124_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad124Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame124_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad124Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame124_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad124Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame124_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad125Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame125_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad125Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame125_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad125Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame125_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad125Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame125_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad126Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame126_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad126Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame126_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad126Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame126_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad126Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame126_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad127Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame127_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad127Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame127_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad127Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame127_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad127Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame127_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad128Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame128_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad128Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame128_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad128Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame128_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad128Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame128_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad129Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame129_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad129Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame129_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad129Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame129_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad129Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame129_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad130Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame130_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad130Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame130_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad130Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame130_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad130Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame130_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad131Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame131_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad131Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame131_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad131Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame131_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad131Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame131_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad132Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame132_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad132Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame132_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad132Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame132_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad132Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame132_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad133Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame133_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad133Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame133_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad133Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame133_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad133Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame133_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad134Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame134_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad134Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame134_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad134Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame134_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad134Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame134_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad135Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame135_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad135Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame135_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad135Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame135_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad135Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame135_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad136Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame136_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad136Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame136_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad136Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame136_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad136Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame136_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad137Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame137_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad137Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame137_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad137Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame137_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad137Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame137_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad138Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame138_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad138Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame138_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad138Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame138_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad138Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame138_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad139Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame139_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad139Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame139_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad139Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame139_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad139Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame139_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad140Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame140_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad140Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame140_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad140Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame140_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad140Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame140_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad141Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame141_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad141Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame141_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad141Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame141_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad141Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame141_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad142Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame142_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad142Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame142_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad142Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame142_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad142Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame142_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad143Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame143_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad143Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame143_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad143Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame143_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad143Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame143_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad144Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame144_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad144Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame144_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad144Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame144_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad144Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame144_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad145Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame145_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad145Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame145_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad145Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame145_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad145Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame145_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad146Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame146_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad146Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame146_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad146Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame146_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad146Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame146_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad147Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame147_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad147Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame147_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad147Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame147_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad147Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame147_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad148Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame148_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad148Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame148_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad148Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame148_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad148Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame148_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad149Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame149_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad149Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame149_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad149Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame149_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad149Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame149_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad150Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame150_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad150Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame150_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad150Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame150_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad150Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame150_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad151Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame151_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad151Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame151_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad151Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame151_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad151Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame151_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad152Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame152_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad152Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame152_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad152Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame152_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad152Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame152_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad153Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame153_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad153Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame153_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad153Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame153_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad153Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame153_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad154Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame154_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad154Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame154_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad154Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame154_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad154Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame154_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad155Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame155_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad155Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame155_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad155Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame155_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad155Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame155_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad156Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame156_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad156Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame156_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad156Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame156_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad156Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame156_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad157Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame157_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad157Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame157_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad157Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame157_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad157Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame157_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad158Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame158_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad158Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame158_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad158Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame158_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad158Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame158_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad159Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame159_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad159Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame159_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad159Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame159_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad159Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame159_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad160Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame160_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad160Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame160_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad160Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame160_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad160Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame160_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad161Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame161_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad161Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame161_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad161Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame161_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad161Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame161_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad162Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame162_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad162Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame162_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad162Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame162_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad162Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame162_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad163Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame163_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad163Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame163_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad163Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame163_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad163Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame163_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad164Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame164_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad164Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame164_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad164Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame164_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad164Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame164_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad165Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame165_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad165Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame165_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad165Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame165_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad165Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame165_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad166Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame166_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad166Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame166_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad166Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame166_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad166Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame166_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad167Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame167_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad167Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame167_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad167Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame167_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad167Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame167_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad168Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame168_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad168Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame168_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad168Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame168_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad168Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame168_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad169Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame169_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad169Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame169_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad169Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame169_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad169Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame169_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad170Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame170_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad170Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame170_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad170Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame170_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad170Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame170_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad171Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame171_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad171Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame171_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad171Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame171_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad171Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame171_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad172Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame172_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad172Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame172_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad172Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame172_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad172Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame172_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad173Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame173_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad173Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame173_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad173Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame173_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad173Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame173_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad174Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame174_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad174Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame174_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad174Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame174_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad174Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame174_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad175Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame175_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad175Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame175_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad175Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame175_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad175Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame175_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad176Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame176_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad176Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame176_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad176Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame176_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad176Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame176_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad177Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame177_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad177Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame177_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad177Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame177_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad177Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame177_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad178Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame178_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad178Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame178_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad178Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame178_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad178Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame178_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad179Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame179_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad179Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame179_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad179Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame179_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad179Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame179_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad180Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame180_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad180Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame180_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad180Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame180_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad180Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame180_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad181Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame181_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad181Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame181_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad181Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame181_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad181Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame181_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad182Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame182_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad182Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame182_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad182Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame182_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad182Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame182_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad183Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame183_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad183Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame183_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad183Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame183_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad183Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame183_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad184Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame184_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad184Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame184_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad184Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame184_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad184Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame184_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad185Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame185_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad185Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame185_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad185Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame185_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad185Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame185_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad186Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame186_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad186Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame186_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad186Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame186_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad186Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame186_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad187Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame187_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad187Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame187_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad187Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame187_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad187Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame187_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad188Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame188_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad188Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame188_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad188Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame188_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad188Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame188_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad189Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame189_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad189Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame189_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad189Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame189_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad189Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame189_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad190Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame190_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad190Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame190_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad190Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame190_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad190Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame190_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad191Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame191_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad191Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame191_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad191Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame191_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad191Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame191_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad192Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame192_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad192Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame192_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad192Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame192_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad192Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame192_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad193Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame193_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad193Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame193_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad193Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame193_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad193Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame193_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad194Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame194_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad194Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame194_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad194Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame194_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad194Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame194_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad195Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame195_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad195Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame195_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad195Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame195_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad195Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame195_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad196Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame196_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad196Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame196_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad196Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame196_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad196Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame196_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad197Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame197_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad197Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame197_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad197Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame197_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad197Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame197_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad198Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame198_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad198Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame198_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad198Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame198_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad198Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame198_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad199Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame199_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad199Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame199_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad199Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame199_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad199Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame199_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad200Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame200_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad200Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame200_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad200Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame200_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad200Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame200_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad201Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame201_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad201Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame201_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad201Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame201_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad201Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame201_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad202Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame202_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad202Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame202_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad202Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame202_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad202Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame202_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad203Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame203_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad203Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame203_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad203Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame203_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad203Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame203_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad204Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame204_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad204Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame204_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad204Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame204_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad204Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame204_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad205Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame205_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad205Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame205_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad205Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame205_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad205Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame205_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad206Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame206_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad206Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame206_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad206Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame206_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad206Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame206_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad207Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame207_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad207Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame207_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad207Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame207_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad207Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame207_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad208Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame208_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad208Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame208_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad208Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame208_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad208Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame208_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad209Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame209_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad209Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame209_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad209Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame209_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad209Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame209_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad210Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame210_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad210Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame210_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad210Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame210_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad210Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame210_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad211Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame211_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad211Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame211_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad211Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame211_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad211Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame211_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad212Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame212_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad212Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame212_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad212Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame212_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad212Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame212_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad213Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame213_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad213Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame213_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad213Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame213_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad213Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame213_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad214Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame214_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad214Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame214_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad214Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame214_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad214Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame214_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad215Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame215_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad215Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame215_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad215Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame215_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad215Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame215_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad216Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame216_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad216Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame216_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad216Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame216_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad216Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame216_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad217Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame217_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad217Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame217_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad217Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame217_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad217Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame217_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad218Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame218_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad218Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame218_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad218Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame218_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad218Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame218_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad219Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame219_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad219Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame219_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad219Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame219_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad219Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame219_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad220Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame220_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad220Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame220_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad220Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame220_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad220Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame220_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad221Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame221_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad221Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame221_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad221Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame221_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad221Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame221_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad222Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame222_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad222Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame222_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad222Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame222_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad222Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame222_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad223Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame223_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad223Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame223_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad223Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame223_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad223Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame223_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad224Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame224_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad224Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame224_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad224Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame224_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad224Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame224_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad225Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame225_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad225Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame225_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad225Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame225_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad225Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame225_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad226Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame226_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad226Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame226_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad226Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame226_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad226Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame226_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad227Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame227_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad227Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame227_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad227Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame227_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad227Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame227_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad228Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame228_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad228Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame228_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad228Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame228_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad228Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame228_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad229Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame229_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad229Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame229_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad229Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame229_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad229Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame229_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad230Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame230_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad230Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame230_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad230Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame230_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad230Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame230_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad231Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame231_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad231Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame231_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad231Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame231_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad231Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame231_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad232Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame232_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad232Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame232_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad232Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame232_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad232Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame232_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad233Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame233_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad233Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame233_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad233Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame233_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad233Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame233_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad234Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame234_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad234Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame234_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad234Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame234_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad234Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame234_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad235Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame235_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad235Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame235_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad235Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame235_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad235Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame235_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad236Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame236_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad236Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame236_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad236Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame236_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad236Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame236_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad237Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame237_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad237Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame237_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad237Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame237_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad237Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame237_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad238Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame238_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad238Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame238_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad238Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame238_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad238Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame238_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad239Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame239_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad239Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame239_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad239Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame239_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad239Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame239_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad240Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame240_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad240Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame240_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad240Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame240_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad240Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame240_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad241Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame241_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad241Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame241_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad241Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame241_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad241Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame241_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad242Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame242_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad242Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame242_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad242Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame242_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad242Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame242_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad243Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame243_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad243Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame243_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad243Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame243_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad243Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame243_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad244Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame244_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad244Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame244_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad244Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame244_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad244Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame244_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad245Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame245_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad245Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame245_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad245Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame245_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad245Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame245_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad246Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame246_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad246Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame246_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad246Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame246_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad246Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame246_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad247Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame247_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad247Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame247_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad247Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame247_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad247Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame247_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad248Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame248_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad248Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame248_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad248Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame248_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad248Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame248_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad249Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame249_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad249Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame249_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad249Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame249_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad249Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame249_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad250Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame250_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad250Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame250_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad250Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame250_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad250Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame250_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad251Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame251_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad251Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame251_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad251Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame251_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad251Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame251_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad252Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame252_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad252Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame252_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad252Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame252_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad252Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame252_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad253Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame253_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad253Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame253_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad253Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame253_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad253Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame253_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad254Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame254_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad254Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame254_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad254Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame254_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad254Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame254_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad255Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame255_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad255Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame255_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad255Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame255_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad255Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame255_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad256Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame256_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad256Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame256_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad256Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame256_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad256Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame256_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad257Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame257_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad257Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame257_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad257Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame257_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad257Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame257_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad258Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame258_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad258Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame258_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad258Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame258_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad258Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame258_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad259Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame259_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad259Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame259_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad259Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame259_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad259Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame259_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad260Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame260_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad260Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame260_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad260Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame260_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad260Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame260_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad261Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame261_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad261Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame261_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad261Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame261_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad261Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame261_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad262Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame262_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad262Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame262_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad262Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame262_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad262Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame262_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad263Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame263_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad263Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame263_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad263Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame263_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad263Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame263_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad264Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame264_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad264Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame264_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad264Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame264_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad264Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame264_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad265Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame265_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad265Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame265_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad265Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame265_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad265Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame265_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad266Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame266_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad266Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame266_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad266Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame266_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad266Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame266_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad267Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame267_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad267Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame267_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad267Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame267_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad267Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame267_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad268Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame268_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad268Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame268_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad268Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame268_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad268Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame268_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad269Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame269_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad269Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame269_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad269Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame269_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad269Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame269_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad270Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame270_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad270Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame270_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad270Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame270_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad270Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame270_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad271Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame271_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad271Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame271_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad271Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame271_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad271Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame271_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad272Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame272_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad272Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame272_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad272Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame272_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad272Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame272_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad273Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame273_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad273Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame273_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad273Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame273_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad273Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame273_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad274Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame274_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad274Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame274_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad274Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame274_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad274Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame274_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad275Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame275_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad275Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame275_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad275Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame275_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad275Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame275_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad276Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame276_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad276Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame276_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad276Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame276_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad276Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame276_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad277Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame277_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad277Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame277_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad277Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame277_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad277Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame277_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad278Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame278_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad278Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame278_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad278Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame278_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad278Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame278_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad279Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame279_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad279Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame279_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad279Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame279_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad279Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame279_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad280Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame280_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad280Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame280_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad280Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame280_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad280Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame280_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad281Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame281_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad281Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame281_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad281Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame281_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad281Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame281_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad282Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame282_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad282Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame282_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad282Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame282_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad282Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame282_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad283Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame283_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad283Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame283_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad283Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame283_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad283Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame283_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad284Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame284_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad284Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame284_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad284Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame284_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad284Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame284_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad285Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame285_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad285Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame285_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad285Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame285_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad285Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame285_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad286Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame286_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad286Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame286_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad286Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame286_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad286Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame286_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad287Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame287_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad287Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame287_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad287Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame287_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad287Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame287_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad288Wheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_frame288_wheel3"; + +static const ALIGN_ASSET(2) char gKartToad288Wheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_frame288_wheel1"; + +static const ALIGN_ASSET(2) char gKartToad288Wheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_frame288_wheel0"; + +static const ALIGN_ASSET(2) char gKartToad288Wheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_frame288_wheel2"; + +static const ALIGN_ASSET(2) char gKartToad289[] = "__OTR__textures/karts/toad_kart/toad_kart_frame289"; + +static const ALIGN_ASSET(2) char gKartToad290[] = "__OTR__textures/karts/toad_kart/toad_kart_frame290"; + +static const ALIGN_ASSET(2) char gKartToad291[] = "__OTR__textures/karts/toad_kart/toad_kart_frame291"; + +static const ALIGN_ASSET(2) char gKartToad292[] = "__OTR__textures/karts/toad_kart/toad_kart_frame292"; + +static const ALIGN_ASSET(2) char gKartToad293[] = "__OTR__textures/karts/toad_kart/toad_kart_frame293"; + +static const ALIGN_ASSET(2) char gKartToad294[] = "__OTR__textures/karts/toad_kart/toad_kart_frame294"; + +static const ALIGN_ASSET(2) char gKartToad295[] = "__OTR__textures/karts/toad_kart/toad_kart_frame295"; + +static const ALIGN_ASSET(2) char gKartToad296[] = "__OTR__textures/karts/toad_kart/toad_kart_frame296"; + +static const ALIGN_ASSET(2) char gKartToad297[] = "__OTR__textures/karts/toad_kart/toad_kart_frame297"; + +static const ALIGN_ASSET(2) char gKartToad298[] = "__OTR__textures/karts/toad_kart/toad_kart_frame298"; + +static const ALIGN_ASSET(2) char gKartToad299[] = "__OTR__textures/karts/toad_kart/toad_kart_frame299"; + +static const ALIGN_ASSET(2) char gKartToad300[] = "__OTR__textures/karts/toad_kart/toad_kart_frame300"; + +static const ALIGN_ASSET(2) char gKartToad301[] = "__OTR__textures/karts/toad_kart/toad_kart_frame301"; + +static const ALIGN_ASSET(2) char gKartToad302[] = "__OTR__textures/karts/toad_kart/toad_kart_frame302"; + +static const ALIGN_ASSET(2) char gKartToad303[] = "__OTR__textures/karts/toad_kart/toad_kart_frame303"; + +static const ALIGN_ASSET(2) char gKartToad304[] = "__OTR__textures/karts/toad_kart/toad_kart_frame304"; + +static const ALIGN_ASSET(2) char gKartToad305[] = "__OTR__textures/karts/toad_kart/toad_kart_frame305"; + +static const ALIGN_ASSET(2) char gKartToad306[] = "__OTR__textures/karts/toad_kart/toad_kart_frame306"; + +static const ALIGN_ASSET(2) char gKartToad307[] = "__OTR__textures/karts/toad_kart/toad_kart_frame307"; + +static const ALIGN_ASSET(2) char gKartToad308[] = "__OTR__textures/karts/toad_kart/toad_kart_frame308"; + +static const ALIGN_ASSET(2) char gKartToad309[] = "__OTR__textures/karts/toad_kart/toad_kart_frame309"; + +static const ALIGN_ASSET(2) char gKartToad310[] = "__OTR__textures/karts/toad_kart/toad_kart_frame310"; + +static const ALIGN_ASSET(2) char gKartToad311[] = "__OTR__textures/karts/toad_kart/toad_kart_frame311"; + +static const ALIGN_ASSET(2) char gKartToad312[] = "__OTR__textures/karts/toad_kart/toad_kart_frame312"; + +static const ALIGN_ASSET(2) char gKartToad313[] = "__OTR__textures/karts/toad_kart/toad_kart_frame313"; + +static const ALIGN_ASSET(2) char gKartToad314[] = "__OTR__textures/karts/toad_kart/toad_kart_frame314"; + +static const ALIGN_ASSET(2) char gKartToad315[] = "__OTR__textures/karts/toad_kart/toad_kart_frame315"; + +static const ALIGN_ASSET(2) char gKartToad316[] = "__OTR__textures/karts/toad_kart/toad_kart_frame316"; + +static const ALIGN_ASSET(2) char gKartToad317[] = "__OTR__textures/karts/toad_kart/toad_kart_frame317"; + +static const ALIGN_ASSET(2) char gKartToad318[] = "__OTR__textures/karts/toad_kart/toad_kart_frame318"; + +static const ALIGN_ASSET(2) char gKartToad319[] = "__OTR__textures/karts/toad_kart/toad_kart_frame319"; + +static const ALIGN_ASSET(2) char gKartToad320[] = "__OTR__textures/karts/toad_kart/toad_kart_frame320"; + +static const ALIGN_ASSET(2) char gKartToad000TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_000_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad000TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_000_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad000TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_000_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad000TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_000_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad001TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_001_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad001TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_001_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad001TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_001_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad001TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_001_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad002TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_002_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad002TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_002_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad002TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_002_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad002TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_002_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad003TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_003_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad003TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_003_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad003TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_003_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad003TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_003_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad004TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_004_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad004TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_004_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad004TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_004_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad004TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_004_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad005TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_005_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad005TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_005_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad005TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_005_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad005TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_005_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad006TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_006_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad006TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_006_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad006TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_006_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad006TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_006_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad007TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_007_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad007TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_007_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad007TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_007_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad007TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_007_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad008TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_008_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad008TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_008_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad008TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_008_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad008TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_008_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad009TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_009_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad009TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_009_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad009TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_009_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad009TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_009_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad010TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_010_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad010TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_010_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad010TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_010_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad010TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_010_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad011TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_011_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad011TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_011_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad011TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_011_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad011TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_011_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad012TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_012_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad012TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_012_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad012TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_012_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad012TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_012_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad013TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_013_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad013TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_013_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad013TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_013_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad013TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_013_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad014TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_014_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad014TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_014_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad014TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_014_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad014TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_014_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad015TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_015_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad015TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_015_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad015TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_015_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad015TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_015_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad016TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_016_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad016TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_016_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad016TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_016_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad016TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_016_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad017TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_017_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad017TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_017_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad017TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_017_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad017TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_017_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad018TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_018_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad018TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_018_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad018TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_018_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad018TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_018_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad019TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_019_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad019TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_019_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad019TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_019_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad019TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_019_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad020TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_020_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad020TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_020_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad020TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_020_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad020TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_020_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad021TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_021_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad021TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_021_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad021TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_021_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad021TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_021_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad022TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_022_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad022TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_022_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad022TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_022_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad022TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_022_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad023TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_023_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad023TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_023_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad023TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_023_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad023TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_023_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad024TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_024_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad024TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_024_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad024TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_024_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad024TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_024_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad025TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_025_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad025TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_025_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad025TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_025_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad025TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_025_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad026TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_026_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad026TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_026_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad026TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_026_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad026TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_026_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad027TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_027_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad027TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_027_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad027TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_027_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad027TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_027_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad028TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_028_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad028TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_028_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad028TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_028_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad028TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_028_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad029TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_029_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad029TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_029_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad029TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_029_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad029TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_029_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad030TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_030_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad030TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_030_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad030TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_030_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad030TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_030_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad031TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_031_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad031TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_031_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad031TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_031_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad031TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_031_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad032TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_032_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad032TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_032_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad032TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_032_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad032TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_032_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad033TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_033_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad033TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_033_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad033TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_033_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad033TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_033_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad034TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_034_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad034TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_034_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad034TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_034_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad034TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_034_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad035TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_035_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad035TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_035_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad035TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_035_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad035TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_035_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad036TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_036_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad036TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_036_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad036TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_036_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad036TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_036_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad037TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_037_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad037TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_037_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad037TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_037_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad037TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_037_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad038TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_038_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad038TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_038_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad038TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_038_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad038TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_038_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad039TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_039_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad039TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_039_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad039TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_039_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad039TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_039_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad040TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_040_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad040TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_040_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad040TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_040_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad040TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_040_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad041TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_041_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad041TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_041_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad041TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_041_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad041TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_041_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad042TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_042_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad042TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_042_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad042TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_042_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad042TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_042_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad043TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_043_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad043TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_043_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad043TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_043_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad043TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_043_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad044TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_044_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad044TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_044_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad044TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_044_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad044TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_044_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad045TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_045_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad045TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_045_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad045TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_045_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad045TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_045_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad046TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_046_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad046TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_046_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad046TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_046_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad046TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_046_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad047TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_047_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad047TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_047_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad047TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_047_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad047TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_047_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad048TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_048_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad048TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_048_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad048TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_048_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad048TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_048_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad049TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_049_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad049TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_049_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad049TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_049_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad049TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_049_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad050TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_050_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad050TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_050_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad050TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_050_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad050TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_050_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad051TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_051_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad051TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_051_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad051TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_051_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad051TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_051_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad052TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_052_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad052TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_052_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad052TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_052_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad052TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_052_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad053TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_053_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad053TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_053_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad053TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_053_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad053TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_053_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad054TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_054_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad054TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_054_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad054TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_054_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad054TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_054_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad055TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_055_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad055TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_055_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad055TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_055_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad055TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_055_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad056TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_056_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad056TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_056_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad056TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_056_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad056TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_056_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad057TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_057_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad057TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_057_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad057TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_057_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad057TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_057_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad058TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_058_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad058TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_058_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad058TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_058_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad058TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_058_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad059TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_059_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad059TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_059_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad059TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_059_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad059TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_059_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad060TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_060_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad060TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_060_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad060TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_060_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad060TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_060_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad061TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_061_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad061TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_061_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad061TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_061_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad061TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_061_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad062TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_062_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad062TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_062_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad062TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_062_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad062TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_062_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad063TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_063_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad063TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_063_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad063TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_063_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad063TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_063_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad064TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_064_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad064TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_064_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad064TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_064_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad064TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_064_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad065TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_065_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad065TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_065_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad065TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_065_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad065TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_065_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad066TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_066_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad066TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_066_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad066TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_066_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad066TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_066_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad067TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_067_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad067TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_067_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad067TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_067_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad067TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_067_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad068TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_068_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad068TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_068_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad068TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_068_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad068TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_068_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad069TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_069_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad069TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_069_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad069TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_069_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad069TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_069_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad070TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_070_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad070TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_070_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad070TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_070_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad070TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_070_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad071TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_071_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad071TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_071_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad071TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_071_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad071TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_071_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad072TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_072_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad072TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_072_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad072TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_072_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad072TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_072_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad073TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_073_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad073TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_073_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad073TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_073_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad073TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_073_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad074TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_074_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad074TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_074_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad074TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_074_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad074TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_074_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad075TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_075_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad075TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_075_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad075TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_075_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad075TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_075_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad076TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_076_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad076TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_076_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad076TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_076_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad076TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_076_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad077TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_077_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad077TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_077_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad077TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_077_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad077TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_077_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad078TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_078_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad078TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_078_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad078TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_078_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad078TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_078_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad079TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_079_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad079TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_079_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad079TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_079_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad079TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_079_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad080TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_080_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad080TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_080_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad080TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_080_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad080TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_080_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad081TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_081_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad081TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_081_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad081TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_081_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad081TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_081_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad082TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_082_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad082TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_082_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad082TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_082_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad082TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_082_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad083TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_083_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad083TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_083_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad083TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_083_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad083TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_083_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad084TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_084_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad084TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_084_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad084TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_084_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad084TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_084_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad085TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_085_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad085TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_085_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad085TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_085_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad085TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_085_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad086TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_086_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad086TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_086_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad086TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_086_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad086TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_086_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad087TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_087_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad087TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_087_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad087TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_087_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad087TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_087_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad088TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_088_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad088TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_088_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad088TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_088_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad088TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_088_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad089TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_089_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad089TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_089_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad089TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_089_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad089TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_089_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad090TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_090_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad090TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_090_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad090TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_090_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad090TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_090_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad091TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_091_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad091TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_091_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad091TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_091_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad091TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_091_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad092TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_092_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad092TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_092_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad092TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_092_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad092TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_092_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad093TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_093_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad093TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_093_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad093TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_093_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad093TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_093_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad094TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_094_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad094TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_094_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad094TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_094_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad094TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_094_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad095TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_095_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad095TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_095_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad095TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_095_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad095TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_095_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad096TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_096_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad096TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_096_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad096TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_096_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad096TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_096_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad097TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_097_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad097TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_097_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad097TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_097_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad097TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_097_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad098TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_098_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad098TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_098_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad098TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_098_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad098TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_098_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad099TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_099_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad099TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_099_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad099TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_099_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad099TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_099_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad100TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_100_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad100TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_100_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad100TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_100_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad100TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_100_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad101TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_101_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad101TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_101_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad101TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_101_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad101TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_101_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad102TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_102_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad102TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_102_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad102TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_102_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad102TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_102_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad103TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_103_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad103TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_103_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad103TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_103_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad103TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_103_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad104TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_104_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad104TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_104_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad104TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_104_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad104TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_104_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad105TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_105_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad105TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_105_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad105TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_105_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad105TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_105_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad106TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_106_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad106TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_106_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad106TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_106_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad106TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_106_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad107TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_107_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad107TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_107_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad107TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_107_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad107TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_107_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad108TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_108_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad108TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_108_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad108TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_108_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad108TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_108_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad109TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_109_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad109TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_109_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad109TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_109_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad109TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_109_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad110TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_110_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad110TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_110_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad110TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_110_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad110TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_110_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad111TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_111_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad111TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_111_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad111TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_111_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad111TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_111_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad112TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_112_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad112TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_112_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad112TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_112_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad112TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_112_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad113TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_113_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad113TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_113_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad113TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_113_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad113TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_113_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad114TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_114_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad114TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_114_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad114TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_114_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad114TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_114_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad115TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_115_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad115TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_115_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad115TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_115_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad115TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_115_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad116TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_116_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad116TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_116_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad116TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_116_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad116TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_116_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad117TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_117_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad117TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_117_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad117TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_117_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad117TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_117_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad118TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_118_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad118TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_118_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad118TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_118_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad118TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_118_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad119TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_119_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad119TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_119_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad119TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_119_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad119TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_119_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad120TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_120_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad120TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_120_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad120TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_120_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad120TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_120_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad121TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_121_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad121TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_121_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad121TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_121_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad121TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_121_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad122TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_122_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad122TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_122_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad122TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_122_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad122TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_122_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad123TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_123_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad123TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_123_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad123TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_123_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad123TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_123_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad124TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_124_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad124TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_124_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad124TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_124_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad124TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_124_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad125TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_125_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad125TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_125_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad125TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_125_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad125TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_125_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad126TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_126_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad126TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_126_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad126TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_126_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad126TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_126_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad127TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_127_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad127TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_127_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad127TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_127_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad127TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_127_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad128TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_128_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad128TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_128_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad128TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_128_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad128TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_128_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad129TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_129_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad129TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_129_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad129TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_129_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad129TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_129_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad130TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_130_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad130TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_130_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad130TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_130_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad130TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_130_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad131TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_131_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad131TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_131_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad131TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_131_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad131TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_131_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad132TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_132_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad132TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_132_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad132TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_132_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad132TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_132_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad133TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_133_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad133TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_133_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad133TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_133_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad133TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_133_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad134TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_134_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad134TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_134_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad134TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_134_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad134TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_134_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad135TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_135_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad135TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_135_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad135TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_135_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad135TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_135_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad136TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_136_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad136TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_136_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad136TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_136_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad136TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_136_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad137TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_137_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad137TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_137_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad137TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_137_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad137TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_137_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad138TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_138_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad138TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_138_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad138TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_138_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad138TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_138_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad139TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_139_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad139TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_139_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad139TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_139_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad139TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_139_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad140TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_140_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad140TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_140_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad140TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_140_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad140TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_140_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad141TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_141_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad141TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_141_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad141TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_141_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad141TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_141_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad142TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_142_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad142TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_142_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad142TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_142_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad142TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_142_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad143TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_143_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad143TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_143_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad143TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_143_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad143TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_143_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad144TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_144_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad144TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_144_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad144TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_144_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad144TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_144_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad145TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_145_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad145TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_145_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad145TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_145_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad145TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_145_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad146TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_146_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad146TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_146_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad146TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_146_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad146TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_146_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad147TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_147_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad147TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_147_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad147TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_147_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad147TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_147_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad148TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_148_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad148TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_148_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad148TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_148_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad148TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_148_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad149TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_149_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad149TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_149_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad149TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_149_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad149TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_149_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad150TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_150_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad150TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_150_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad150TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_150_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad150TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_150_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad151TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_151_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad151TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_151_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad151TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_151_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad151TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_151_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad152TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_152_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad152TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_152_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad152TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_152_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad152TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_152_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad153TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_153_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad153TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_153_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad153TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_153_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad153TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_153_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad154TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_154_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad154TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_154_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad154TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_154_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad154TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_154_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad155TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_155_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad155TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_155_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad155TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_155_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad155TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_155_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad156TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_156_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad156TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_156_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad156TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_156_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad156TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_156_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad157TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_157_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad157TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_157_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad157TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_157_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad157TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_157_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad158TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_158_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad158TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_158_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad158TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_158_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad158TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_158_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad159TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_159_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad159TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_159_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad159TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_159_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad159TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_159_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad160TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_160_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad160TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_160_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad160TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_160_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad160TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_160_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad161TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_161_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad161TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_161_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad161TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_161_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad161TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_161_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad162TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_162_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad162TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_162_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad162TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_162_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad162TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_162_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad163TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_163_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad163TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_163_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad163TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_163_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad163TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_163_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad164TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_164_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad164TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_164_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad164TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_164_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad164TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_164_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad165TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_165_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad165TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_165_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad165TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_165_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad165TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_165_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad166TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_166_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad166TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_166_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad166TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_166_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad166TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_166_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad167TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_167_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad167TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_167_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad167TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_167_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad167TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_167_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad168TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_168_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad168TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_168_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad168TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_168_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad168TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_168_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad169TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_169_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad169TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_169_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad169TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_169_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad169TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_169_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad170TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_170_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad170TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_170_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad170TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_170_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad170TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_170_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad171TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_171_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad171TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_171_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad171TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_171_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad171TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_171_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad172TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_172_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad172TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_172_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad172TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_172_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad172TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_172_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad173TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_173_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad173TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_173_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad173TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_173_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad173TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_173_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad174TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_174_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad174TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_174_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad174TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_174_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad174TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_174_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad175TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_175_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad175TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_175_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad175TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_175_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad175TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_175_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad176TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_176_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad176TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_176_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad176TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_176_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad176TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_176_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad177TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_177_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad177TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_177_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad177TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_177_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad177TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_177_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad178TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_178_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad178TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_178_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad178TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_178_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad178TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_178_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad179TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_179_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad179TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_179_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad179TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_179_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad179TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_179_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad180TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_180_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad180TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_180_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad180TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_180_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad180TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_180_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad181TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_181_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad181TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_181_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad181TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_181_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad181TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_181_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad182TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_182_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad182TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_182_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad182TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_182_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad182TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_182_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad183TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_183_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad183TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_183_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad183TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_183_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad183TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_183_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad184TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_184_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad184TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_184_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad184TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_184_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad184TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_184_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad185TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_185_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad185TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_185_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad185TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_185_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad185TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_185_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad186TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_186_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad186TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_186_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad186TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_186_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad186TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_186_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad187TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_187_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad187TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_187_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad187TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_187_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad187TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_187_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad188TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_188_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad188TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_188_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad188TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_188_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad188TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_188_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad189TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_189_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad189TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_189_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad189TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_189_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad189TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_189_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad190TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_190_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad190TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_190_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad190TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_190_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad190TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_190_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad191TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_191_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad191TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_191_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad191TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_191_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad191TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_191_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad192TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_192_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad192TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_192_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad192TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_192_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad192TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_192_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad193TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_193_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad193TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_193_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad193TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_193_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad193TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_193_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad194TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_194_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad194TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_194_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad194TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_194_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad194TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_194_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad195TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_195_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad195TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_195_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad195TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_195_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad195TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_195_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad196TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_196_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad196TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_196_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad196TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_196_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad196TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_196_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad197TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_197_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad197TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_197_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad197TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_197_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad197TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_197_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad198TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_198_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad198TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_198_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad198TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_198_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad198TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_198_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad199TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_199_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad199TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_199_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad199TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_199_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad199TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_199_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad200TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_200_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad200TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_200_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad200TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_200_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad200TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_200_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad201TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_201_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad201TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_201_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad201TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_201_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad201TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_201_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad202TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_202_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad202TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_202_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad202TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_202_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad202TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_202_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad203TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_203_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad203TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_203_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad203TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_203_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad203TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_203_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad204TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_204_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad204TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_204_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad204TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_204_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad204TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_204_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad205TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_205_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad205TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_205_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad205TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_205_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad205TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_205_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad206TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_206_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad206TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_206_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad206TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_206_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad206TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_206_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad207TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_207_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad207TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_207_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad207TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_207_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad207TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_207_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad208TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_208_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad208TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_208_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad208TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_208_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad208TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_208_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad209TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_209_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad209TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_209_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad209TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_209_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad209TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_209_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad210TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_210_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad210TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_210_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad210TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_210_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad210TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_210_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad211TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_211_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad211TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_211_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad211TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_211_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad211TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_211_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad212TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_212_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad212TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_212_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad212TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_212_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad212TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_212_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad213TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_213_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad213TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_213_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad213TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_213_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad213TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_213_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad214TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_214_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad214TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_214_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad214TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_214_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad214TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_214_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad215TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_215_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad215TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_215_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad215TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_215_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad215TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_215_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad216TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_216_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad216TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_216_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad216TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_216_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad216TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_216_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad217TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_217_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad217TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_217_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad217TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_217_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad217TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_217_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad218TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_218_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad218TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_218_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad218TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_218_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad218TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_218_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad219TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_219_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad219TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_219_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad219TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_219_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad219TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_219_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad220TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_220_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad220TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_220_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad220TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_220_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad220TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_220_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad221TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_221_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad221TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_221_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad221TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_221_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad221TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_221_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad222TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_222_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad222TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_222_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad222TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_222_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad222TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_222_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad223TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_223_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad223TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_223_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad223TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_223_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad223TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_223_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad224TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_224_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad224TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_224_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad224TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_224_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad224TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_224_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad225TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_225_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad225TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_225_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad225TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_225_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad225TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_225_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad226TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_226_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad226TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_226_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad226TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_226_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad226TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_226_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad227TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_227_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad227TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_227_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad227TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_227_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad227TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_227_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad228TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_228_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad228TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_228_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad228TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_228_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad228TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_228_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad229TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_229_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad229TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_229_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad229TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_229_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad229TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_229_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad230TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_230_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad230TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_230_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad230TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_230_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad230TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_230_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad231TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_231_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad231TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_231_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad231TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_231_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad231TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_231_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad232TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_232_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad232TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_232_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad232TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_232_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad232TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_232_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad233TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_233_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad233TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_233_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad233TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_233_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad233TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_233_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad234TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_234_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad234TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_234_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad234TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_234_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad234TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_234_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad235TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_235_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad235TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_235_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad235TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_235_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad235TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_235_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad236TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_236_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad236TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_236_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad236TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_236_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad236TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_236_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad237TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_237_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad237TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_237_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad237TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_237_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad237TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_237_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad238TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_238_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad238TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_238_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad238TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_238_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad238TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_238_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad239TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_239_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad239TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_239_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad239TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_239_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad239TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_239_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad240TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_240_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad240TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_240_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad240TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_240_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad240TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_240_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad241TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_241_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad241TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_241_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad241TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_241_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad241TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_241_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad242TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_242_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad242TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_242_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad242TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_242_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad242TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_242_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad243TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_243_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad243TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_243_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad243TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_243_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad243TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_243_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad244TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_244_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad244TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_244_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad244TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_244_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad244TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_244_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad245TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_245_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad245TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_245_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad245TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_245_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad245TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_245_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad246TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_246_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad246TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_246_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad246TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_246_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad246TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_246_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad247TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_247_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad247TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_247_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad247TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_247_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad247TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_247_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad248TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_248_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad248TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_248_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad248TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_248_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad248TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_248_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad249TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_249_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad249TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_249_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad249TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_249_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad249TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_249_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad250TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_250_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad250TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_250_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad250TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_250_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad250TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_250_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad251TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_251_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad251TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_251_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad251TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_251_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad251TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_251_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad252TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_252_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad252TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_252_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad252TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_252_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad252TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_252_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad253TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_253_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad253TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_253_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad253TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_253_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad253TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_253_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad254TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_254_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad254TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_254_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad254TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_254_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad254TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_254_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad255TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_255_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad255TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_255_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad255TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_255_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad255TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_255_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad256TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_256_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad256TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_256_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad256TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_256_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad256TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_256_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad257TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_257_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad257TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_257_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad257TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_257_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad257TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_257_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad258TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_258_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad258TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_258_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad258TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_258_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad258TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_258_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad259TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_259_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad259TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_259_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad259TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_259_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad259TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_259_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad260TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_260_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad260TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_260_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad260TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_260_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad260TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_260_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad261TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_261_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad261TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_261_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad261TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_261_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad261TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_261_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad262TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_262_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad262TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_262_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad262TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_262_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad262TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_262_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad263TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_263_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad263TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_263_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad263TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_263_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad263TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_263_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad264TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_264_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad264TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_264_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad264TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_264_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad264TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_264_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad265TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_265_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad265TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_265_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad265TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_265_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad265TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_265_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad266TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_266_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad266TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_266_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad266TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_266_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad266TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_266_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad267TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_267_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad267TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_267_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad267TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_267_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad267TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_267_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad268TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_268_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad268TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_268_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad268TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_268_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad268TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_268_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad269TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_269_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad269TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_269_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad269TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_269_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad269TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_269_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad270TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_270_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad270TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_270_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad270TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_270_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad270TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_270_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad271TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_271_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad271TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_271_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad271TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_271_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad271TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_271_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad272TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_272_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad272TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_272_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad272TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_272_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad272TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_272_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad273TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_273_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad273TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_273_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad273TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_273_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad273TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_273_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad274TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_274_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad274TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_274_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad274TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_274_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad274TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_274_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad275TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_275_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad275TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_275_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad275TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_275_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad275TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_275_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad276TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_276_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad276TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_276_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad276TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_276_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad276TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_276_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad277TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_277_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad277TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_277_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad277TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_277_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad277TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_277_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad278TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_278_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad278TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_278_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad278TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_278_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad278TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_278_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad279TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_279_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad279TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_279_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad279TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_279_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad279TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_279_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad280TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_280_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad280TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_280_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad280TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_280_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad280TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_280_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad281TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_281_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad281TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_281_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad281TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_281_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad281TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_281_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad282TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_282_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad282TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_282_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad282TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_282_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad282TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_282_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad283TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_283_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad283TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_283_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad283TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_283_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad283TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_283_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad284TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_284_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad284TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_284_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad284TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_284_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad284TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_284_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad285TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_285_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad285TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_285_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad285TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_285_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad285TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_285_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad286TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_286_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad286TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_286_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad286TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_286_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad286TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_286_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad287TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_287_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad287TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_287_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad287TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_287_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad287TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_287_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartToad288TlutWheel0[] = "__OTR__textures/karts/toad_kart/toad_kart_288_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartToad288TlutWheel1[] = "__OTR__textures/karts/toad_kart/toad_kart_288_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartToad288TlutWheel2[] = "__OTR__textures/karts/toad_kart/toad_kart_288_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartToad288TlutWheel3[] = "__OTR__textures/karts/toad_kart/toad_kart_288_tlut_wheel_3"; + +static const char* toad_kart_wheels[] = { + gKartToad000TlutWheel0, + gKartToad000TlutWheel1, + gKartToad000TlutWheel2, + gKartToad000TlutWheel3, + gKartToad001TlutWheel0, + gKartToad001TlutWheel1, + gKartToad001TlutWheel2, + gKartToad001TlutWheel3, + gKartToad002TlutWheel0, + gKartToad002TlutWheel1, + gKartToad002TlutWheel2, + gKartToad002TlutWheel3, + gKartToad003TlutWheel0, + gKartToad003TlutWheel1, + gKartToad003TlutWheel2, + gKartToad003TlutWheel3, + gKartToad004TlutWheel0, + gKartToad004TlutWheel1, + gKartToad004TlutWheel2, + gKartToad004TlutWheel3, + gKartToad005TlutWheel0, + gKartToad005TlutWheel1, + gKartToad005TlutWheel2, + gKartToad005TlutWheel3, + gKartToad006TlutWheel0, + gKartToad006TlutWheel1, + gKartToad006TlutWheel2, + gKartToad006TlutWheel3, + gKartToad007TlutWheel0, + gKartToad007TlutWheel1, + gKartToad007TlutWheel2, + gKartToad007TlutWheel3, + gKartToad008TlutWheel0, + gKartToad008TlutWheel1, + gKartToad008TlutWheel2, + gKartToad008TlutWheel3, + gKartToad009TlutWheel0, + gKartToad009TlutWheel1, + gKartToad009TlutWheel2, + gKartToad009TlutWheel3, + gKartToad010TlutWheel0, + gKartToad010TlutWheel1, + gKartToad010TlutWheel2, + gKartToad010TlutWheel3, + gKartToad011TlutWheel0, + gKartToad011TlutWheel1, + gKartToad011TlutWheel2, + gKartToad011TlutWheel3, + gKartToad012TlutWheel0, + gKartToad012TlutWheel1, + gKartToad012TlutWheel2, + gKartToad012TlutWheel3, + gKartToad013TlutWheel0, + gKartToad013TlutWheel1, + gKartToad013TlutWheel2, + gKartToad013TlutWheel3, + gKartToad014TlutWheel0, + gKartToad014TlutWheel1, + gKartToad014TlutWheel2, + gKartToad014TlutWheel3, + gKartToad015TlutWheel0, + gKartToad015TlutWheel1, + gKartToad015TlutWheel2, + gKartToad015TlutWheel3, + gKartToad016TlutWheel0, + gKartToad016TlutWheel1, + gKartToad016TlutWheel2, + gKartToad016TlutWheel3, + gKartToad017TlutWheel0, + gKartToad017TlutWheel1, + gKartToad017TlutWheel2, + gKartToad017TlutWheel3, + gKartToad018TlutWheel0, + gKartToad018TlutWheel1, + gKartToad018TlutWheel2, + gKartToad018TlutWheel3, + gKartToad019TlutWheel0, + gKartToad019TlutWheel1, + gKartToad019TlutWheel2, + gKartToad019TlutWheel3, + gKartToad020TlutWheel0, + gKartToad020TlutWheel1, + gKartToad020TlutWheel2, + gKartToad020TlutWheel3, + gKartToad021TlutWheel0, + gKartToad021TlutWheel1, + gKartToad021TlutWheel2, + gKartToad021TlutWheel3, + gKartToad022TlutWheel0, + gKartToad022TlutWheel1, + gKartToad022TlutWheel2, + gKartToad022TlutWheel3, + gKartToad023TlutWheel0, + gKartToad023TlutWheel1, + gKartToad023TlutWheel2, + gKartToad023TlutWheel3, + gKartToad024TlutWheel0, + gKartToad024TlutWheel1, + gKartToad024TlutWheel2, + gKartToad024TlutWheel3, + gKartToad025TlutWheel0, + gKartToad025TlutWheel1, + gKartToad025TlutWheel2, + gKartToad025TlutWheel3, + gKartToad026TlutWheel0, + gKartToad026TlutWheel1, + gKartToad026TlutWheel2, + gKartToad026TlutWheel3, + gKartToad027TlutWheel0, + gKartToad027TlutWheel1, + gKartToad027TlutWheel2, + gKartToad027TlutWheel3, + gKartToad028TlutWheel0, + gKartToad028TlutWheel1, + gKartToad028TlutWheel2, + gKartToad028TlutWheel3, + gKartToad029TlutWheel0, + gKartToad029TlutWheel1, + gKartToad029TlutWheel2, + gKartToad029TlutWheel3, + gKartToad030TlutWheel0, + gKartToad030TlutWheel1, + gKartToad030TlutWheel2, + gKartToad030TlutWheel3, + gKartToad031TlutWheel0, + gKartToad031TlutWheel1, + gKartToad031TlutWheel2, + gKartToad031TlutWheel3, + gKartToad032TlutWheel0, + gKartToad032TlutWheel1, + gKartToad032TlutWheel2, + gKartToad032TlutWheel3, + gKartToad033TlutWheel0, + gKartToad033TlutWheel1, + gKartToad033TlutWheel2, + gKartToad033TlutWheel3, + gKartToad034TlutWheel0, + gKartToad034TlutWheel1, + gKartToad034TlutWheel2, + gKartToad034TlutWheel3, + gKartToad035TlutWheel0, + gKartToad035TlutWheel1, + gKartToad035TlutWheel2, + gKartToad035TlutWheel3, + gKartToad036TlutWheel0, + gKartToad036TlutWheel1, + gKartToad036TlutWheel2, + gKartToad036TlutWheel3, + gKartToad037TlutWheel0, + gKartToad037TlutWheel1, + gKartToad037TlutWheel2, + gKartToad037TlutWheel3, + gKartToad038TlutWheel0, + gKartToad038TlutWheel1, + gKartToad038TlutWheel2, + gKartToad038TlutWheel3, + gKartToad039TlutWheel0, + gKartToad039TlutWheel1, + gKartToad039TlutWheel2, + gKartToad039TlutWheel3, + gKartToad040TlutWheel0, + gKartToad040TlutWheel1, + gKartToad040TlutWheel2, + gKartToad040TlutWheel3, + gKartToad041TlutWheel0, + gKartToad041TlutWheel1, + gKartToad041TlutWheel2, + gKartToad041TlutWheel3, + gKartToad042TlutWheel0, + gKartToad042TlutWheel1, + gKartToad042TlutWheel2, + gKartToad042TlutWheel3, + gKartToad043TlutWheel0, + gKartToad043TlutWheel1, + gKartToad043TlutWheel2, + gKartToad043TlutWheel3, + gKartToad044TlutWheel0, + gKartToad044TlutWheel1, + gKartToad044TlutWheel2, + gKartToad044TlutWheel3, + gKartToad045TlutWheel0, + gKartToad045TlutWheel1, + gKartToad045TlutWheel2, + gKartToad045TlutWheel3, + gKartToad046TlutWheel0, + gKartToad046TlutWheel1, + gKartToad046TlutWheel2, + gKartToad046TlutWheel3, + gKartToad047TlutWheel0, + gKartToad047TlutWheel1, + gKartToad047TlutWheel2, + gKartToad047TlutWheel3, + gKartToad048TlutWheel0, + gKartToad048TlutWheel1, + gKartToad048TlutWheel2, + gKartToad048TlutWheel3, + gKartToad049TlutWheel0, + gKartToad049TlutWheel1, + gKartToad049TlutWheel2, + gKartToad049TlutWheel3, + gKartToad050TlutWheel0, + gKartToad050TlutWheel1, + gKartToad050TlutWheel2, + gKartToad050TlutWheel3, + gKartToad051TlutWheel0, + gKartToad051TlutWheel1, + gKartToad051TlutWheel2, + gKartToad051TlutWheel3, + gKartToad052TlutWheel0, + gKartToad052TlutWheel1, + gKartToad052TlutWheel2, + gKartToad052TlutWheel3, + gKartToad053TlutWheel0, + gKartToad053TlutWheel1, + gKartToad053TlutWheel2, + gKartToad053TlutWheel3, + gKartToad054TlutWheel0, + gKartToad054TlutWheel1, + gKartToad054TlutWheel2, + gKartToad054TlutWheel3, + gKartToad055TlutWheel0, + gKartToad055TlutWheel1, + gKartToad055TlutWheel2, + gKartToad055TlutWheel3, + gKartToad056TlutWheel0, + gKartToad056TlutWheel1, + gKartToad056TlutWheel2, + gKartToad056TlutWheel3, + gKartToad057TlutWheel0, + gKartToad057TlutWheel1, + gKartToad057TlutWheel2, + gKartToad057TlutWheel3, + gKartToad058TlutWheel0, + gKartToad058TlutWheel1, + gKartToad058TlutWheel2, + gKartToad058TlutWheel3, + gKartToad059TlutWheel0, + gKartToad059TlutWheel1, + gKartToad059TlutWheel2, + gKartToad059TlutWheel3, + gKartToad060TlutWheel0, + gKartToad060TlutWheel1, + gKartToad060TlutWheel2, + gKartToad060TlutWheel3, + gKartToad061TlutWheel0, + gKartToad061TlutWheel1, + gKartToad061TlutWheel2, + gKartToad061TlutWheel3, + gKartToad062TlutWheel0, + gKartToad062TlutWheel1, + gKartToad062TlutWheel2, + gKartToad062TlutWheel3, + gKartToad063TlutWheel0, + gKartToad063TlutWheel1, + gKartToad063TlutWheel2, + gKartToad063TlutWheel3, + gKartToad064TlutWheel0, + gKartToad064TlutWheel1, + gKartToad064TlutWheel2, + gKartToad064TlutWheel3, + gKartToad065TlutWheel0, + gKartToad065TlutWheel1, + gKartToad065TlutWheel2, + gKartToad065TlutWheel3, + gKartToad066TlutWheel0, + gKartToad066TlutWheel1, + gKartToad066TlutWheel2, + gKartToad066TlutWheel3, + gKartToad067TlutWheel0, + gKartToad067TlutWheel1, + gKartToad067TlutWheel2, + gKartToad067TlutWheel3, + gKartToad068TlutWheel0, + gKartToad068TlutWheel1, + gKartToad068TlutWheel2, + gKartToad068TlutWheel3, + gKartToad069TlutWheel0, + gKartToad069TlutWheel1, + gKartToad069TlutWheel2, + gKartToad069TlutWheel3, + gKartToad070TlutWheel0, + gKartToad070TlutWheel1, + gKartToad070TlutWheel2, + gKartToad070TlutWheel3, + gKartToad071TlutWheel0, + gKartToad071TlutWheel1, + gKartToad071TlutWheel2, + gKartToad071TlutWheel3, + gKartToad072TlutWheel0, + gKartToad072TlutWheel1, + gKartToad072TlutWheel2, + gKartToad072TlutWheel3, + gKartToad073TlutWheel0, + gKartToad073TlutWheel1, + gKartToad073TlutWheel2, + gKartToad073TlutWheel3, + gKartToad074TlutWheel0, + gKartToad074TlutWheel1, + gKartToad074TlutWheel2, + gKartToad074TlutWheel3, + gKartToad075TlutWheel0, + gKartToad075TlutWheel1, + gKartToad075TlutWheel2, + gKartToad075TlutWheel3, + gKartToad076TlutWheel0, + gKartToad076TlutWheel1, + gKartToad076TlutWheel2, + gKartToad076TlutWheel3, + gKartToad077TlutWheel0, + gKartToad077TlutWheel1, + gKartToad077TlutWheel2, + gKartToad077TlutWheel3, + gKartToad078TlutWheel0, + gKartToad078TlutWheel1, + gKartToad078TlutWheel2, + gKartToad078TlutWheel3, + gKartToad079TlutWheel0, + gKartToad079TlutWheel1, + gKartToad079TlutWheel2, + gKartToad079TlutWheel3, + gKartToad080TlutWheel0, + gKartToad080TlutWheel1, + gKartToad080TlutWheel2, + gKartToad080TlutWheel3, + gKartToad081TlutWheel0, + gKartToad081TlutWheel1, + gKartToad081TlutWheel2, + gKartToad081TlutWheel3, + gKartToad082TlutWheel0, + gKartToad082TlutWheel1, + gKartToad082TlutWheel2, + gKartToad082TlutWheel3, + gKartToad083TlutWheel0, + gKartToad083TlutWheel1, + gKartToad083TlutWheel2, + gKartToad083TlutWheel3, + gKartToad084TlutWheel0, + gKartToad084TlutWheel1, + gKartToad084TlutWheel2, + gKartToad084TlutWheel3, + gKartToad085TlutWheel0, + gKartToad085TlutWheel1, + gKartToad085TlutWheel2, + gKartToad085TlutWheel3, + gKartToad086TlutWheel0, + gKartToad086TlutWheel1, + gKartToad086TlutWheel2, + gKartToad086TlutWheel3, + gKartToad087TlutWheel0, + gKartToad087TlutWheel1, + gKartToad087TlutWheel2, + gKartToad087TlutWheel3, + gKartToad088TlutWheel0, + gKartToad088TlutWheel1, + gKartToad088TlutWheel2, + gKartToad088TlutWheel3, + gKartToad089TlutWheel0, + gKartToad089TlutWheel1, + gKartToad089TlutWheel2, + gKartToad089TlutWheel3, + gKartToad090TlutWheel0, + gKartToad090TlutWheel1, + gKartToad090TlutWheel2, + gKartToad090TlutWheel3, + gKartToad091TlutWheel0, + gKartToad091TlutWheel1, + gKartToad091TlutWheel2, + gKartToad091TlutWheel3, + gKartToad092TlutWheel0, + gKartToad092TlutWheel1, + gKartToad092TlutWheel2, + gKartToad092TlutWheel3, + gKartToad093TlutWheel0, + gKartToad093TlutWheel1, + gKartToad093TlutWheel2, + gKartToad093TlutWheel3, + gKartToad094TlutWheel0, + gKartToad094TlutWheel1, + gKartToad094TlutWheel2, + gKartToad094TlutWheel3, + gKartToad095TlutWheel0, + gKartToad095TlutWheel1, + gKartToad095TlutWheel2, + gKartToad095TlutWheel3, + gKartToad096TlutWheel0, + gKartToad096TlutWheel1, + gKartToad096TlutWheel2, + gKartToad096TlutWheel3, + gKartToad097TlutWheel0, + gKartToad097TlutWheel1, + gKartToad097TlutWheel2, + gKartToad097TlutWheel3, + gKartToad098TlutWheel0, + gKartToad098TlutWheel1, + gKartToad098TlutWheel2, + gKartToad098TlutWheel3, + gKartToad099TlutWheel0, + gKartToad099TlutWheel1, + gKartToad099TlutWheel2, + gKartToad099TlutWheel3, + gKartToad100TlutWheel0, + gKartToad100TlutWheel1, + gKartToad100TlutWheel2, + gKartToad100TlutWheel3, + gKartToad101TlutWheel0, + gKartToad101TlutWheel1, + gKartToad101TlutWheel2, + gKartToad101TlutWheel3, + gKartToad102TlutWheel0, + gKartToad102TlutWheel1, + gKartToad102TlutWheel2, + gKartToad102TlutWheel3, + gKartToad103TlutWheel0, + gKartToad103TlutWheel1, + gKartToad103TlutWheel2, + gKartToad103TlutWheel3, + gKartToad104TlutWheel0, + gKartToad104TlutWheel1, + gKartToad104TlutWheel2, + gKartToad104TlutWheel3, + gKartToad105TlutWheel0, + gKartToad105TlutWheel1, + gKartToad105TlutWheel2, + gKartToad105TlutWheel3, + gKartToad106TlutWheel0, + gKartToad106TlutWheel1, + gKartToad106TlutWheel2, + gKartToad106TlutWheel3, + gKartToad107TlutWheel0, + gKartToad107TlutWheel1, + gKartToad107TlutWheel2, + gKartToad107TlutWheel3, + gKartToad108TlutWheel0, + gKartToad108TlutWheel1, + gKartToad108TlutWheel2, + gKartToad108TlutWheel3, + gKartToad109TlutWheel0, + gKartToad109TlutWheel1, + gKartToad109TlutWheel2, + gKartToad109TlutWheel3, + gKartToad110TlutWheel0, + gKartToad110TlutWheel1, + gKartToad110TlutWheel2, + gKartToad110TlutWheel3, + gKartToad111TlutWheel0, + gKartToad111TlutWheel1, + gKartToad111TlutWheel2, + gKartToad111TlutWheel3, + gKartToad112TlutWheel0, + gKartToad112TlutWheel1, + gKartToad112TlutWheel2, + gKartToad112TlutWheel3, + gKartToad113TlutWheel0, + gKartToad113TlutWheel1, + gKartToad113TlutWheel2, + gKartToad113TlutWheel3, + gKartToad114TlutWheel0, + gKartToad114TlutWheel1, + gKartToad114TlutWheel2, + gKartToad114TlutWheel3, + gKartToad115TlutWheel0, + gKartToad115TlutWheel1, + gKartToad115TlutWheel2, + gKartToad115TlutWheel3, + gKartToad116TlutWheel0, + gKartToad116TlutWheel1, + gKartToad116TlutWheel2, + gKartToad116TlutWheel3, + gKartToad117TlutWheel0, + gKartToad117TlutWheel1, + gKartToad117TlutWheel2, + gKartToad117TlutWheel3, + gKartToad118TlutWheel0, + gKartToad118TlutWheel1, + gKartToad118TlutWheel2, + gKartToad118TlutWheel3, + gKartToad119TlutWheel0, + gKartToad119TlutWheel1, + gKartToad119TlutWheel2, + gKartToad119TlutWheel3, + gKartToad120TlutWheel0, + gKartToad120TlutWheel1, + gKartToad120TlutWheel2, + gKartToad120TlutWheel3, + gKartToad121TlutWheel0, + gKartToad121TlutWheel1, + gKartToad121TlutWheel2, + gKartToad121TlutWheel3, + gKartToad122TlutWheel0, + gKartToad122TlutWheel1, + gKartToad122TlutWheel2, + gKartToad122TlutWheel3, + gKartToad123TlutWheel0, + gKartToad123TlutWheel1, + gKartToad123TlutWheel2, + gKartToad123TlutWheel3, + gKartToad124TlutWheel0, + gKartToad124TlutWheel1, + gKartToad124TlutWheel2, + gKartToad124TlutWheel3, + gKartToad125TlutWheel0, + gKartToad125TlutWheel1, + gKartToad125TlutWheel2, + gKartToad125TlutWheel3, + gKartToad126TlutWheel0, + gKartToad126TlutWheel1, + gKartToad126TlutWheel2, + gKartToad126TlutWheel3, + gKartToad127TlutWheel0, + gKartToad127TlutWheel1, + gKartToad127TlutWheel2, + gKartToad127TlutWheel3, + gKartToad128TlutWheel0, + gKartToad128TlutWheel1, + gKartToad128TlutWheel2, + gKartToad128TlutWheel3, + gKartToad129TlutWheel0, + gKartToad129TlutWheel1, + gKartToad129TlutWheel2, + gKartToad129TlutWheel3, + gKartToad130TlutWheel0, + gKartToad130TlutWheel1, + gKartToad130TlutWheel2, + gKartToad130TlutWheel3, + gKartToad131TlutWheel0, + gKartToad131TlutWheel1, + gKartToad131TlutWheel2, + gKartToad131TlutWheel3, + gKartToad132TlutWheel0, + gKartToad132TlutWheel1, + gKartToad132TlutWheel2, + gKartToad132TlutWheel3, + gKartToad133TlutWheel0, + gKartToad133TlutWheel1, + gKartToad133TlutWheel2, + gKartToad133TlutWheel3, + gKartToad134TlutWheel0, + gKartToad134TlutWheel1, + gKartToad134TlutWheel2, + gKartToad134TlutWheel3, + gKartToad135TlutWheel0, + gKartToad135TlutWheel1, + gKartToad135TlutWheel2, + gKartToad135TlutWheel3, + gKartToad136TlutWheel0, + gKartToad136TlutWheel1, + gKartToad136TlutWheel2, + gKartToad136TlutWheel3, + gKartToad137TlutWheel0, + gKartToad137TlutWheel1, + gKartToad137TlutWheel2, + gKartToad137TlutWheel3, + gKartToad138TlutWheel0, + gKartToad138TlutWheel1, + gKartToad138TlutWheel2, + gKartToad138TlutWheel3, + gKartToad139TlutWheel0, + gKartToad139TlutWheel1, + gKartToad139TlutWheel2, + gKartToad139TlutWheel3, + gKartToad140TlutWheel0, + gKartToad140TlutWheel1, + gKartToad140TlutWheel2, + gKartToad140TlutWheel3, + gKartToad141TlutWheel0, + gKartToad141TlutWheel1, + gKartToad141TlutWheel2, + gKartToad141TlutWheel3, + gKartToad142TlutWheel0, + gKartToad142TlutWheel1, + gKartToad142TlutWheel2, + gKartToad142TlutWheel3, + gKartToad143TlutWheel0, + gKartToad143TlutWheel1, + gKartToad143TlutWheel2, + gKartToad143TlutWheel3, + gKartToad144TlutWheel0, + gKartToad144TlutWheel1, + gKartToad144TlutWheel2, + gKartToad144TlutWheel3, + gKartToad145TlutWheel0, + gKartToad145TlutWheel1, + gKartToad145TlutWheel2, + gKartToad145TlutWheel3, + gKartToad146TlutWheel0, + gKartToad146TlutWheel1, + gKartToad146TlutWheel2, + gKartToad146TlutWheel3, + gKartToad147TlutWheel0, + gKartToad147TlutWheel1, + gKartToad147TlutWheel2, + gKartToad147TlutWheel3, + gKartToad148TlutWheel0, + gKartToad148TlutWheel1, + gKartToad148TlutWheel2, + gKartToad148TlutWheel3, + gKartToad149TlutWheel0, + gKartToad149TlutWheel1, + gKartToad149TlutWheel2, + gKartToad149TlutWheel3, + gKartToad150TlutWheel0, + gKartToad150TlutWheel1, + gKartToad150TlutWheel2, + gKartToad150TlutWheel3, + gKartToad151TlutWheel0, + gKartToad151TlutWheel1, + gKartToad151TlutWheel2, + gKartToad151TlutWheel3, + gKartToad152TlutWheel0, + gKartToad152TlutWheel1, + gKartToad152TlutWheel2, + gKartToad152TlutWheel3, + gKartToad153TlutWheel0, + gKartToad153TlutWheel1, + gKartToad153TlutWheel2, + gKartToad153TlutWheel3, + gKartToad154TlutWheel0, + gKartToad154TlutWheel1, + gKartToad154TlutWheel2, + gKartToad154TlutWheel3, + gKartToad155TlutWheel0, + gKartToad155TlutWheel1, + gKartToad155TlutWheel2, + gKartToad155TlutWheel3, + gKartToad156TlutWheel0, + gKartToad156TlutWheel1, + gKartToad156TlutWheel2, + gKartToad156TlutWheel3, + gKartToad157TlutWheel0, + gKartToad157TlutWheel1, + gKartToad157TlutWheel2, + gKartToad157TlutWheel3, + gKartToad158TlutWheel0, + gKartToad158TlutWheel1, + gKartToad158TlutWheel2, + gKartToad158TlutWheel3, + gKartToad159TlutWheel0, + gKartToad159TlutWheel1, + gKartToad159TlutWheel2, + gKartToad159TlutWheel3, + gKartToad160TlutWheel0, + gKartToad160TlutWheel1, + gKartToad160TlutWheel2, + gKartToad160TlutWheel3, + gKartToad161TlutWheel0, + gKartToad161TlutWheel1, + gKartToad161TlutWheel2, + gKartToad161TlutWheel3, + gKartToad162TlutWheel0, + gKartToad162TlutWheel1, + gKartToad162TlutWheel2, + gKartToad162TlutWheel3, + gKartToad163TlutWheel0, + gKartToad163TlutWheel1, + gKartToad163TlutWheel2, + gKartToad163TlutWheel3, + gKartToad164TlutWheel0, + gKartToad164TlutWheel1, + gKartToad164TlutWheel2, + gKartToad164TlutWheel3, + gKartToad165TlutWheel0, + gKartToad165TlutWheel1, + gKartToad165TlutWheel2, + gKartToad165TlutWheel3, + gKartToad166TlutWheel0, + gKartToad166TlutWheel1, + gKartToad166TlutWheel2, + gKartToad166TlutWheel3, + gKartToad167TlutWheel0, + gKartToad167TlutWheel1, + gKartToad167TlutWheel2, + gKartToad167TlutWheel3, + gKartToad168TlutWheel0, + gKartToad168TlutWheel1, + gKartToad168TlutWheel2, + gKartToad168TlutWheel3, + gKartToad169TlutWheel0, + gKartToad169TlutWheel1, + gKartToad169TlutWheel2, + gKartToad169TlutWheel3, + gKartToad170TlutWheel0, + gKartToad170TlutWheel1, + gKartToad170TlutWheel2, + gKartToad170TlutWheel3, + gKartToad171TlutWheel0, + gKartToad171TlutWheel1, + gKartToad171TlutWheel2, + gKartToad171TlutWheel3, + gKartToad172TlutWheel0, + gKartToad172TlutWheel1, + gKartToad172TlutWheel2, + gKartToad172TlutWheel3, + gKartToad173TlutWheel0, + gKartToad173TlutWheel1, + gKartToad173TlutWheel2, + gKartToad173TlutWheel3, + gKartToad174TlutWheel0, + gKartToad174TlutWheel1, + gKartToad174TlutWheel2, + gKartToad174TlutWheel3, + gKartToad175TlutWheel0, + gKartToad175TlutWheel1, + gKartToad175TlutWheel2, + gKartToad175TlutWheel3, + gKartToad176TlutWheel0, + gKartToad176TlutWheel1, + gKartToad176TlutWheel2, + gKartToad176TlutWheel3, + gKartToad177TlutWheel0, + gKartToad177TlutWheel1, + gKartToad177TlutWheel2, + gKartToad177TlutWheel3, + gKartToad178TlutWheel0, + gKartToad178TlutWheel1, + gKartToad178TlutWheel2, + gKartToad178TlutWheel3, + gKartToad179TlutWheel0, + gKartToad179TlutWheel1, + gKartToad179TlutWheel2, + gKartToad179TlutWheel3, + gKartToad180TlutWheel0, + gKartToad180TlutWheel1, + gKartToad180TlutWheel2, + gKartToad180TlutWheel3, + gKartToad181TlutWheel0, + gKartToad181TlutWheel1, + gKartToad181TlutWheel2, + gKartToad181TlutWheel3, + gKartToad182TlutWheel0, + gKartToad182TlutWheel1, + gKartToad182TlutWheel2, + gKartToad182TlutWheel3, + gKartToad183TlutWheel0, + gKartToad183TlutWheel1, + gKartToad183TlutWheel2, + gKartToad183TlutWheel3, + gKartToad184TlutWheel0, + gKartToad184TlutWheel1, + gKartToad184TlutWheel2, + gKartToad184TlutWheel3, + gKartToad185TlutWheel0, + gKartToad185TlutWheel1, + gKartToad185TlutWheel2, + gKartToad185TlutWheel3, + gKartToad186TlutWheel0, + gKartToad186TlutWheel1, + gKartToad186TlutWheel2, + gKartToad186TlutWheel3, + gKartToad187TlutWheel0, + gKartToad187TlutWheel1, + gKartToad187TlutWheel2, + gKartToad187TlutWheel3, + gKartToad188TlutWheel0, + gKartToad188TlutWheel1, + gKartToad188TlutWheel2, + gKartToad188TlutWheel3, + gKartToad189TlutWheel0, + gKartToad189TlutWheel1, + gKartToad189TlutWheel2, + gKartToad189TlutWheel3, + gKartToad190TlutWheel0, + gKartToad190TlutWheel1, + gKartToad190TlutWheel2, + gKartToad190TlutWheel3, + gKartToad191TlutWheel0, + gKartToad191TlutWheel1, + gKartToad191TlutWheel2, + gKartToad191TlutWheel3, + gKartToad192TlutWheel0, + gKartToad192TlutWheel1, + gKartToad192TlutWheel2, + gKartToad192TlutWheel3, + gKartToad193TlutWheel0, + gKartToad193TlutWheel1, + gKartToad193TlutWheel2, + gKartToad193TlutWheel3, + gKartToad194TlutWheel0, + gKartToad194TlutWheel1, + gKartToad194TlutWheel2, + gKartToad194TlutWheel3, + gKartToad195TlutWheel0, + gKartToad195TlutWheel1, + gKartToad195TlutWheel2, + gKartToad195TlutWheel3, + gKartToad196TlutWheel0, + gKartToad196TlutWheel1, + gKartToad196TlutWheel2, + gKartToad196TlutWheel3, + gKartToad197TlutWheel0, + gKartToad197TlutWheel1, + gKartToad197TlutWheel2, + gKartToad197TlutWheel3, + gKartToad198TlutWheel0, + gKartToad198TlutWheel1, + gKartToad198TlutWheel2, + gKartToad198TlutWheel3, + gKartToad199TlutWheel0, + gKartToad199TlutWheel1, + gKartToad199TlutWheel2, + gKartToad199TlutWheel3, + gKartToad200TlutWheel0, + gKartToad200TlutWheel1, + gKartToad200TlutWheel2, + gKartToad200TlutWheel3, + gKartToad201TlutWheel0, + gKartToad201TlutWheel1, + gKartToad201TlutWheel2, + gKartToad201TlutWheel3, + gKartToad202TlutWheel0, + gKartToad202TlutWheel1, + gKartToad202TlutWheel2, + gKartToad202TlutWheel3, + gKartToad203TlutWheel0, + gKartToad203TlutWheel1, + gKartToad203TlutWheel2, + gKartToad203TlutWheel3, + gKartToad204TlutWheel0, + gKartToad204TlutWheel1, + gKartToad204TlutWheel2, + gKartToad204TlutWheel3, + gKartToad205TlutWheel0, + gKartToad205TlutWheel1, + gKartToad205TlutWheel2, + gKartToad205TlutWheel3, + gKartToad206TlutWheel0, + gKartToad206TlutWheel1, + gKartToad206TlutWheel2, + gKartToad206TlutWheel3, + gKartToad207TlutWheel0, + gKartToad207TlutWheel1, + gKartToad207TlutWheel2, + gKartToad207TlutWheel3, + gKartToad208TlutWheel0, + gKartToad208TlutWheel1, + gKartToad208TlutWheel2, + gKartToad208TlutWheel3, + gKartToad209TlutWheel0, + gKartToad209TlutWheel1, + gKartToad209TlutWheel2, + gKartToad209TlutWheel3, + gKartToad210TlutWheel0, + gKartToad210TlutWheel1, + gKartToad210TlutWheel2, + gKartToad210TlutWheel3, + gKartToad211TlutWheel0, + gKartToad211TlutWheel1, + gKartToad211TlutWheel2, + gKartToad211TlutWheel3, + gKartToad212TlutWheel0, + gKartToad212TlutWheel1, + gKartToad212TlutWheel2, + gKartToad212TlutWheel3, + gKartToad213TlutWheel0, + gKartToad213TlutWheel1, + gKartToad213TlutWheel2, + gKartToad213TlutWheel3, + gKartToad214TlutWheel0, + gKartToad214TlutWheel1, + gKartToad214TlutWheel2, + gKartToad214TlutWheel3, + gKartToad215TlutWheel0, + gKartToad215TlutWheel1, + gKartToad215TlutWheel2, + gKartToad215TlutWheel3, + gKartToad216TlutWheel0, + gKartToad216TlutWheel1, + gKartToad216TlutWheel2, + gKartToad216TlutWheel3, + gKartToad217TlutWheel0, + gKartToad217TlutWheel1, + gKartToad217TlutWheel2, + gKartToad217TlutWheel3, + gKartToad218TlutWheel0, + gKartToad218TlutWheel1, + gKartToad218TlutWheel2, + gKartToad218TlutWheel3, + gKartToad219TlutWheel0, + gKartToad219TlutWheel1, + gKartToad219TlutWheel2, + gKartToad219TlutWheel3, + gKartToad220TlutWheel0, + gKartToad220TlutWheel1, + gKartToad220TlutWheel2, + gKartToad220TlutWheel3, + gKartToad221TlutWheel0, + gKartToad221TlutWheel1, + gKartToad221TlutWheel2, + gKartToad221TlutWheel3, + gKartToad222TlutWheel0, + gKartToad222TlutWheel1, + gKartToad222TlutWheel2, + gKartToad222TlutWheel3, + gKartToad223TlutWheel0, + gKartToad223TlutWheel1, + gKartToad223TlutWheel2, + gKartToad223TlutWheel3, + gKartToad224TlutWheel0, + gKartToad224TlutWheel1, + gKartToad224TlutWheel2, + gKartToad224TlutWheel3, + gKartToad225TlutWheel0, + gKartToad225TlutWheel1, + gKartToad225TlutWheel2, + gKartToad225TlutWheel3, + gKartToad226TlutWheel0, + gKartToad226TlutWheel1, + gKartToad226TlutWheel2, + gKartToad226TlutWheel3, + gKartToad227TlutWheel0, + gKartToad227TlutWheel1, + gKartToad227TlutWheel2, + gKartToad227TlutWheel3, + gKartToad228TlutWheel0, + gKartToad228TlutWheel1, + gKartToad228TlutWheel2, + gKartToad228TlutWheel3, + gKartToad229TlutWheel0, + gKartToad229TlutWheel1, + gKartToad229TlutWheel2, + gKartToad229TlutWheel3, + gKartToad230TlutWheel0, + gKartToad230TlutWheel1, + gKartToad230TlutWheel2, + gKartToad230TlutWheel3, + gKartToad231TlutWheel0, + gKartToad231TlutWheel1, + gKartToad231TlutWheel2, + gKartToad231TlutWheel3, + gKartToad232TlutWheel0, + gKartToad232TlutWheel1, + gKartToad232TlutWheel2, + gKartToad232TlutWheel3, + gKartToad233TlutWheel0, + gKartToad233TlutWheel1, + gKartToad233TlutWheel2, + gKartToad233TlutWheel3, + gKartToad234TlutWheel0, + gKartToad234TlutWheel1, + gKartToad234TlutWheel2, + gKartToad234TlutWheel3, + gKartToad235TlutWheel0, + gKartToad235TlutWheel1, + gKartToad235TlutWheel2, + gKartToad235TlutWheel3, + gKartToad236TlutWheel0, + gKartToad236TlutWheel1, + gKartToad236TlutWheel2, + gKartToad236TlutWheel3, + gKartToad237TlutWheel0, + gKartToad237TlutWheel1, + gKartToad237TlutWheel2, + gKartToad237TlutWheel3, + gKartToad238TlutWheel0, + gKartToad238TlutWheel1, + gKartToad238TlutWheel2, + gKartToad238TlutWheel3, + gKartToad239TlutWheel0, + gKartToad239TlutWheel1, + gKartToad239TlutWheel2, + gKartToad239TlutWheel3, + gKartToad240TlutWheel0, + gKartToad240TlutWheel1, + gKartToad240TlutWheel2, + gKartToad240TlutWheel3, + gKartToad241TlutWheel0, + gKartToad241TlutWheel1, + gKartToad241TlutWheel2, + gKartToad241TlutWheel3, + gKartToad242TlutWheel0, + gKartToad242TlutWheel1, + gKartToad242TlutWheel2, + gKartToad242TlutWheel3, + gKartToad243TlutWheel0, + gKartToad243TlutWheel1, + gKartToad243TlutWheel2, + gKartToad243TlutWheel3, + gKartToad244TlutWheel0, + gKartToad244TlutWheel1, + gKartToad244TlutWheel2, + gKartToad244TlutWheel3, + gKartToad245TlutWheel0, + gKartToad245TlutWheel1, + gKartToad245TlutWheel2, + gKartToad245TlutWheel3, + gKartToad246TlutWheel0, + gKartToad246TlutWheel1, + gKartToad246TlutWheel2, + gKartToad246TlutWheel3, + gKartToad247TlutWheel0, + gKartToad247TlutWheel1, + gKartToad247TlutWheel2, + gKartToad247TlutWheel3, + gKartToad248TlutWheel0, + gKartToad248TlutWheel1, + gKartToad248TlutWheel2, + gKartToad248TlutWheel3, + gKartToad249TlutWheel0, + gKartToad249TlutWheel1, + gKartToad249TlutWheel2, + gKartToad249TlutWheel3, + gKartToad250TlutWheel0, + gKartToad250TlutWheel1, + gKartToad250TlutWheel2, + gKartToad250TlutWheel3, + gKartToad251TlutWheel0, + gKartToad251TlutWheel1, + gKartToad251TlutWheel2, + gKartToad251TlutWheel3, + gKartToad252TlutWheel0, + gKartToad252TlutWheel1, + gKartToad252TlutWheel2, + gKartToad252TlutWheel3, + gKartToad253TlutWheel0, + gKartToad253TlutWheel1, + gKartToad253TlutWheel2, + gKartToad253TlutWheel3, + gKartToad254TlutWheel0, + gKartToad254TlutWheel1, + gKartToad254TlutWheel2, + gKartToad254TlutWheel3, + gKartToad255TlutWheel0, + gKartToad255TlutWheel1, + gKartToad255TlutWheel2, + gKartToad255TlutWheel3, + gKartToad256TlutWheel0, + gKartToad256TlutWheel1, + gKartToad256TlutWheel2, + gKartToad256TlutWheel3, + gKartToad257TlutWheel0, + gKartToad257TlutWheel1, + gKartToad257TlutWheel2, + gKartToad257TlutWheel3, + gKartToad258TlutWheel0, + gKartToad258TlutWheel1, + gKartToad258TlutWheel2, + gKartToad258TlutWheel3, + gKartToad259TlutWheel0, + gKartToad259TlutWheel1, + gKartToad259TlutWheel2, + gKartToad259TlutWheel3, + gKartToad260TlutWheel0, + gKartToad260TlutWheel1, + gKartToad260TlutWheel2, + gKartToad260TlutWheel3, + gKartToad261TlutWheel0, + gKartToad261TlutWheel1, + gKartToad261TlutWheel2, + gKartToad261TlutWheel3, + gKartToad262TlutWheel0, + gKartToad262TlutWheel1, + gKartToad262TlutWheel2, + gKartToad262TlutWheel3, + gKartToad263TlutWheel0, + gKartToad263TlutWheel1, + gKartToad263TlutWheel2, + gKartToad263TlutWheel3, + gKartToad264TlutWheel0, + gKartToad264TlutWheel1, + gKartToad264TlutWheel2, + gKartToad264TlutWheel3, + gKartToad265TlutWheel0, + gKartToad265TlutWheel1, + gKartToad265TlutWheel2, + gKartToad265TlutWheel3, + gKartToad266TlutWheel0, + gKartToad266TlutWheel1, + gKartToad266TlutWheel2, + gKartToad266TlutWheel3, + gKartToad267TlutWheel0, + gKartToad267TlutWheel1, + gKartToad267TlutWheel2, + gKartToad267TlutWheel3, + gKartToad268TlutWheel0, + gKartToad268TlutWheel1, + gKartToad268TlutWheel2, + gKartToad268TlutWheel3, + gKartToad269TlutWheel0, + gKartToad269TlutWheel1, + gKartToad269TlutWheel2, + gKartToad269TlutWheel3, + gKartToad270TlutWheel0, + gKartToad270TlutWheel1, + gKartToad270TlutWheel2, + gKartToad270TlutWheel3, + gKartToad271TlutWheel0, + gKartToad271TlutWheel1, + gKartToad271TlutWheel2, + gKartToad271TlutWheel3, + gKartToad272TlutWheel0, + gKartToad272TlutWheel1, + gKartToad272TlutWheel2, + gKartToad272TlutWheel3, + gKartToad273TlutWheel0, + gKartToad273TlutWheel1, + gKartToad273TlutWheel2, + gKartToad273TlutWheel3, + gKartToad274TlutWheel0, + gKartToad274TlutWheel1, + gKartToad274TlutWheel2, + gKartToad274TlutWheel3, + gKartToad275TlutWheel0, + gKartToad275TlutWheel1, + gKartToad275TlutWheel2, + gKartToad275TlutWheel3, + gKartToad276TlutWheel0, + gKartToad276TlutWheel1, + gKartToad276TlutWheel2, + gKartToad276TlutWheel3, + gKartToad277TlutWheel0, + gKartToad277TlutWheel1, + gKartToad277TlutWheel2, + gKartToad277TlutWheel3, + gKartToad278TlutWheel0, + gKartToad278TlutWheel1, + gKartToad278TlutWheel2, + gKartToad278TlutWheel3, + gKartToad279TlutWheel0, + gKartToad279TlutWheel1, + gKartToad279TlutWheel2, + gKartToad279TlutWheel3, + gKartToad280TlutWheel0, + gKartToad280TlutWheel1, + gKartToad280TlutWheel2, + gKartToad280TlutWheel3, + gKartToad281TlutWheel0, + gKartToad281TlutWheel1, + gKartToad281TlutWheel2, + gKartToad281TlutWheel3, + gKartToad282TlutWheel0, + gKartToad282TlutWheel1, + gKartToad282TlutWheel2, + gKartToad282TlutWheel3, + gKartToad283TlutWheel0, + gKartToad283TlutWheel1, + gKartToad283TlutWheel2, + gKartToad283TlutWheel3, + gKartToad284TlutWheel0, + gKartToad284TlutWheel1, + gKartToad284TlutWheel2, + gKartToad284TlutWheel3, + gKartToad285TlutWheel0, + gKartToad285TlutWheel1, + gKartToad285TlutWheel2, + gKartToad285TlutWheel3, + gKartToad286TlutWheel0, + gKartToad286TlutWheel1, + gKartToad286TlutWheel2, + gKartToad286TlutWheel3, + gKartToad287TlutWheel0, + gKartToad287TlutWheel1, + gKartToad287TlutWheel2, + gKartToad287TlutWheel3, + gKartToad288TlutWheel0, + gKartToad288TlutWheel1, + gKartToad288TlutWheel2, + gKartToad288TlutWheel3, +}; + +static const ALIGN_ASSET(2) char gKartToadPalette[] = "__OTR__textures/karts/toad_kart/toad_kart_palette"; + diff --git a/include/assets/textures/karts/wario_kart.h b/include/assets/textures/karts/wario_kart.h new file mode 100644 index 000000000..741da5969 --- /dev/null +++ b/include/assets/textures/karts/wario_kart.h @@ -0,0 +1,5854 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gKartWario000Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame000_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario000Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame000_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario000Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame000_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario000Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame000_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario001Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame001_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario001Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame001_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario001Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame001_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario001Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame001_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario002Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame002_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario002Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame002_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario002Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame002_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario002Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame002_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario003Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame003_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario003Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame003_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario003Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame003_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario003Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame003_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario004Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame004_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario004Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame004_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario004Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame004_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario004Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame004_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario005Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame005_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario005Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame005_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario005Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame005_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario005Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame005_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario006Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame006_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario006Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame006_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario006Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame006_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario006Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame006_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario007Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame007_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario007Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame007_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario007Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame007_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario007Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame007_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario008Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame008_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario008Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame008_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario008Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame008_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario008Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame008_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario009Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame009_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario009Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame009_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario009Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame009_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario009Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame009_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario010Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame010_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario010Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame010_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario010Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame010_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario010Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame010_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario011Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame011_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario011Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame011_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario011Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame011_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario011Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame011_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario012Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame012_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario012Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame012_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario012Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame012_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario012Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame012_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario013Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame013_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario013Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame013_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario013Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame013_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario013Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame013_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario014Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame014_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario014Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame014_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario014Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame014_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario014Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame014_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario015Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame015_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario015Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame015_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario015Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame015_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario015Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame015_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario016Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame016_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario016Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame016_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario016Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame016_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario016Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame016_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario017Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame017_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario017Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame017_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario017Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame017_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario017Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame017_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario018Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame018_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario018Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame018_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario018Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame018_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario018Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame018_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario019Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame019_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario019Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame019_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario019Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame019_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario019Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame019_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario020Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame020_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario020Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame020_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario020Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame020_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario020Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame020_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario021Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame021_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario021Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame021_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario021Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame021_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario021Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame021_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario022Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame022_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario022Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame022_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario022Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame022_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario022Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame022_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario023Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame023_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario023Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame023_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario023Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame023_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario023Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame023_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario024Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame024_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario024Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame024_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario024Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame024_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario024Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame024_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario025Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame025_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario025Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame025_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario025Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame025_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario025Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame025_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario026Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame026_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario026Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame026_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario026Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame026_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario026Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame026_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario027Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame027_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario027Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame027_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario027Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame027_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario027Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame027_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario028Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame028_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario028Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame028_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario028Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame028_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario028Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame028_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario029Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame029_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario029Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame029_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario029Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame029_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario029Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame029_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario030Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame030_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario030Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame030_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario030Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame030_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario030Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame030_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario031Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame031_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario031Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame031_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario031Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame031_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario031Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame031_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario032Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame032_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario032Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame032_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario032Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame032_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario032Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame032_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario033Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame033_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario033Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame033_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario033Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame033_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario033Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame033_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario034Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame034_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario034Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame034_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario034Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame034_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario034Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame034_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario035Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame035_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario035Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame035_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario035Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame035_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario035Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame035_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario036Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame036_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario036Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame036_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario036Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame036_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario036Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame036_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario037Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame037_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario037Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame037_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario037Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame037_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario037Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame037_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario038Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame038_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario038Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame038_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario038Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame038_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario038Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame038_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario039Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame039_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario039Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame039_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario039Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame039_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario039Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame039_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario040Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame040_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario040Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame040_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario040Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame040_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario040Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame040_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario041Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame041_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario041Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame041_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario041Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame041_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario041Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame041_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario042Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame042_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario042Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame042_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario042Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame042_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario042Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame042_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario043Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame043_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario043Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame043_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario043Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame043_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario043Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame043_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario044Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame044_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario044Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame044_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario044Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame044_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario044Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame044_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario045Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame045_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario045Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame045_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario045Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame045_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario045Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame045_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario046Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame046_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario046Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame046_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario046Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame046_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario046Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame046_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario047Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame047_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario047Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame047_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario047Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame047_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario047Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame047_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario048Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame048_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario048Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame048_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario048Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame048_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario048Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame048_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario049Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame049_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario049Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame049_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario049Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame049_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario049Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame049_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario050Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame050_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario050Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame050_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario050Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame050_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario050Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame050_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario051Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame051_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario051Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame051_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario051Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame051_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario051Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame051_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario052Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame052_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario052Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame052_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario052Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame052_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario052Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame052_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario053Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame053_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario053Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame053_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario053Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame053_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario053Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame053_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario054Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame054_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario054Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame054_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario054Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame054_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario054Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame054_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario055Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame055_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario055Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame055_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario055Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame055_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario055Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame055_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario056Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame056_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario056Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame056_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario056Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame056_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario056Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame056_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario057Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame057_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario057Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame057_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario057Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame057_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario057Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame057_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario058Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame058_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario058Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame058_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario058Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame058_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario058Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame058_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario059Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame059_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario059Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame059_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario059Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame059_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario059Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame059_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario060Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame060_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario060Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame060_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario060Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame060_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario060Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame060_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario061Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame061_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario061Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame061_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario061Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame061_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario061Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame061_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario062Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame062_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario062Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame062_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario062Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame062_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario062Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame062_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario063Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame063_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario063Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame063_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario063Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame063_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario063Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame063_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario064Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame064_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario064Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame064_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario064Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame064_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario064Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame064_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario065Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame065_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario065Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame065_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario065Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame065_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario065Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame065_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario066Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame066_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario066Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame066_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario066Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame066_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario066Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame066_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario067Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame067_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario067Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame067_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario067Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame067_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario067Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame067_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario068Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame068_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario068Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame068_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario068Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame068_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario068Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame068_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario069Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame069_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario069Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame069_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario069Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame069_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario069Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame069_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario070Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame070_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario070Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame070_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario070Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame070_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario070Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame070_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario071Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame071_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario071Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame071_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario071Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame071_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario071Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame071_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario072Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame072_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario072Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame072_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario072Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame072_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario072Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame072_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario073Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame073_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario073Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame073_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario073Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame073_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario073Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame073_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario074Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame074_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario074Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame074_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario074Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame074_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario074Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame074_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario075Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame075_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario075Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame075_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario075Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame075_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario075Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame075_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario076Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame076_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario076Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame076_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario076Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame076_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario076Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame076_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario077Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame077_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario077Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame077_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario077Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame077_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario077Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame077_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario078Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame078_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario078Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame078_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario078Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame078_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario078Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame078_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario079Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame079_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario079Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame079_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario079Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame079_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario079Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame079_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario080Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame080_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario080Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame080_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario080Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame080_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario080Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame080_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario081Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame081_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario081Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame081_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario081Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame081_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario081Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame081_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario082Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame082_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario082Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame082_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario082Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame082_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario082Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame082_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario083Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame083_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario083Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame083_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario083Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame083_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario083Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame083_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario084Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame084_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario084Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame084_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario084Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame084_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario084Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame084_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario085Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame085_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario085Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame085_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario085Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame085_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario085Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame085_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario086Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame086_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario086Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame086_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario086Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame086_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario086Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame086_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario087Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame087_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario087Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame087_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario087Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame087_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario087Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame087_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario088Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame088_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario088Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame088_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario088Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame088_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario088Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame088_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario089Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame089_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario089Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame089_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario089Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame089_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario089Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame089_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario090Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame090_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario090Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame090_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario090Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame090_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario090Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame090_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario091Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame091_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario091Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame091_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario091Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame091_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario091Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame091_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario092Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame092_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario092Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame092_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario092Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame092_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario092Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame092_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario093Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame093_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario093Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame093_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario093Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame093_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario093Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame093_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario094Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame094_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario094Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame094_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario094Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame094_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario094Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame094_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario095Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame095_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario095Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame095_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario095Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame095_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario095Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame095_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario096Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame096_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario096Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame096_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario096Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame096_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario096Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame096_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario097Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame097_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario097Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame097_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario097Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame097_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario097Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame097_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario098Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame098_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario098Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame098_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario098Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame098_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario098Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame098_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario099Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame099_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario099Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame099_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario099Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame099_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario099Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame099_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario100Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame100_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario100Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame100_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario100Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame100_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario100Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame100_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario101Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame101_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario101Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame101_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario101Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame101_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario101Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame101_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario102Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame102_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario102Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame102_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario102Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame102_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario102Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame102_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario103Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame103_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario103Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame103_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario103Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame103_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario103Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame103_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario104Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame104_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario104Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame104_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario104Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame104_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario104Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame104_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario105Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame105_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario105Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame105_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario105Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame105_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario105Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame105_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario106Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame106_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario106Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame106_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario106Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame106_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario106Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame106_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario107Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame107_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario107Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame107_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario107Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame107_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario107Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame107_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario108Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame108_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario108Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame108_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario108Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame108_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario108Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame108_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario109Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame109_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario109Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame109_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario109Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame109_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario109Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame109_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario110Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame110_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario110Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame110_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario110Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame110_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario110Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame110_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario111Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame111_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario111Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame111_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario111Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame111_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario111Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame111_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario112Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame112_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario112Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame112_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario112Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame112_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario112Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame112_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario113Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame113_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario113Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame113_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario113Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame113_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario113Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame113_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario114Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame114_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario114Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame114_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario114Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame114_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario114Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame114_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario115Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame115_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario115Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame115_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario115Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame115_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario115Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame115_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario116Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame116_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario116Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame116_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario116Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame116_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario116Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame116_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario117Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame117_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario117Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame117_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario117Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame117_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario117Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame117_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario118Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame118_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario118Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame118_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario118Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame118_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario118Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame118_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario119Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame119_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario119Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame119_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario119Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame119_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario119Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame119_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario120Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame120_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario120Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame120_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario120Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame120_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario120Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame120_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario121Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame121_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario121Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame121_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario121Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame121_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario121Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame121_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario122Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame122_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario122Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame122_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario122Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame122_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario122Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame122_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario123Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame123_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario123Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame123_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario123Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame123_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario123Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame123_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario124Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame124_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario124Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame124_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario124Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame124_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario124Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame124_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario125Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame125_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario125Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame125_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario125Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame125_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario125Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame125_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario126Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame126_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario126Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame126_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario126Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame126_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario126Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame126_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario127Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame127_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario127Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame127_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario127Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame127_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario127Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame127_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario128Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame128_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario128Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame128_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario128Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame128_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario128Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame128_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario129Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame129_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario129Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame129_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario129Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame129_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario129Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame129_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario130Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame130_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario130Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame130_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario130Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame130_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario130Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame130_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario131Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame131_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario131Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame131_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario131Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame131_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario131Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame131_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario132Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame132_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario132Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame132_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario132Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame132_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario132Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame132_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario133Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame133_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario133Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame133_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario133Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame133_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario133Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame133_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario134Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame134_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario134Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame134_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario134Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame134_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario134Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame134_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario135Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame135_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario135Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame135_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario135Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame135_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario135Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame135_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario136Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame136_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario136Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame136_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario136Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame136_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario136Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame136_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario137Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame137_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario137Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame137_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario137Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame137_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario137Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame137_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario138Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame138_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario138Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame138_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario138Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame138_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario138Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame138_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario139Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame139_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario139Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame139_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario139Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame139_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario139Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame139_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario140Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame140_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario140Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame140_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario140Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame140_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario140Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame140_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario141Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame141_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario141Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame141_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario141Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame141_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario141Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame141_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario142Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame142_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario142Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame142_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario142Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame142_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario142Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame142_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario143Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame143_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario143Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame143_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario143Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame143_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario143Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame143_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario144Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame144_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario144Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame144_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario144Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame144_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario144Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame144_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario145Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame145_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario145Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame145_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario145Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame145_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario145Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame145_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario146Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame146_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario146Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame146_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario146Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame146_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario146Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame146_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario147Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame147_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario147Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame147_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario147Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame147_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario147Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame147_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario148Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame148_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario148Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame148_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario148Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame148_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario148Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame148_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario149Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame149_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario149Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame149_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario149Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame149_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario149Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame149_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario150Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame150_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario150Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame150_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario150Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame150_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario150Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame150_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario151Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame151_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario151Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame151_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario151Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame151_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario151Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame151_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario152Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame152_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario152Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame152_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario152Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame152_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario152Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame152_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario153Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame153_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario153Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame153_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario153Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame153_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario153Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame153_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario154Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame154_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario154Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame154_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario154Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame154_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario154Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame154_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario155Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame155_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario155Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame155_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario155Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame155_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario155Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame155_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario156Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame156_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario156Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame156_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario156Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame156_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario156Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame156_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario157Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame157_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario157Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame157_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario157Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame157_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario157Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame157_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario158Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame158_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario158Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame158_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario158Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame158_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario158Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame158_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario159Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame159_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario159Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame159_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario159Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame159_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario159Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame159_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario160Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame160_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario160Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame160_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario160Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame160_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario160Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame160_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario161Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame161_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario161Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame161_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario161Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame161_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario161Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame161_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario162Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame162_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario162Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame162_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario162Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame162_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario162Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame162_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario163Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame163_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario163Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame163_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario163Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame163_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario163Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame163_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario164Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame164_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario164Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame164_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario164Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame164_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario164Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame164_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario165Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame165_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario165Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame165_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario165Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame165_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario165Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame165_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario166Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame166_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario166Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame166_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario166Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame166_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario166Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame166_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario167Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame167_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario167Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame167_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario167Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame167_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario167Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame167_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario168Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame168_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario168Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame168_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario168Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame168_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario168Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame168_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario169Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame169_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario169Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame169_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario169Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame169_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario169Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame169_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario170Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame170_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario170Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame170_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario170Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame170_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario170Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame170_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario171Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame171_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario171Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame171_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario171Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame171_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario171Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame171_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario172Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame172_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario172Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame172_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario172Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame172_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario172Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame172_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario173Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame173_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario173Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame173_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario173Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame173_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario173Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame173_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario174Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame174_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario174Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame174_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario174Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame174_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario174Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame174_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario175Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame175_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario175Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame175_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario175Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame175_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario175Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame175_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario176Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame176_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario176Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame176_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario176Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame176_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario176Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame176_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario177Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame177_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario177Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame177_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario177Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame177_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario177Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame177_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario178Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame178_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario178Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame178_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario178Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame178_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario178Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame178_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario179Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame179_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario179Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame179_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario179Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame179_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario179Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame179_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario180Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame180_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario180Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame180_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario180Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame180_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario180Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame180_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario181Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame181_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario181Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame181_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario181Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame181_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario181Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame181_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario182Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame182_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario182Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame182_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario182Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame182_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario182Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame182_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario183Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame183_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario183Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame183_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario183Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame183_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario183Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame183_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario184Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame184_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario184Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame184_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario184Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame184_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario184Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame184_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario185Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame185_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario185Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame185_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario185Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame185_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario185Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame185_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario186Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame186_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario186Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame186_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario186Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame186_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario186Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame186_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario187Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame187_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario187Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame187_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario187Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame187_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario187Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame187_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario188Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame188_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario188Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame188_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario188Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame188_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario188Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame188_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario189Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame189_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario189Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame189_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario189Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame189_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario189Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame189_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario190Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame190_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario190Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame190_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario190Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame190_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario190Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame190_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario191Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame191_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario191Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame191_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario191Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame191_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario191Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame191_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario192Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame192_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario192Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame192_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario192Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame192_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario192Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame192_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario193Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame193_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario193Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame193_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario193Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame193_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario193Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame193_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario194Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame194_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario194Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame194_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario194Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame194_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario194Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame194_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario195Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame195_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario195Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame195_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario195Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame195_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario195Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame195_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario196Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame196_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario196Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame196_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario196Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame196_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario196Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame196_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario197Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame197_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario197Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame197_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario197Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame197_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario197Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame197_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario198Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame198_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario198Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame198_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario198Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame198_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario198Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame198_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario199Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame199_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario199Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame199_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario199Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame199_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario199Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame199_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario200Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame200_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario200Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame200_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario200Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame200_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario200Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame200_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario201Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame201_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario201Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame201_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario201Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame201_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario201Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame201_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario202Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame202_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario202Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame202_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario202Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame202_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario202Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame202_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario203Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame203_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario203Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame203_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario203Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame203_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario203Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame203_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario204Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame204_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario204Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame204_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario204Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame204_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario204Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame204_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario205Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame205_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario205Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame205_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario205Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame205_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario205Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame205_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario206Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame206_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario206Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame206_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario206Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame206_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario206Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame206_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario207Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame207_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario207Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame207_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario207Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame207_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario207Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame207_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario208Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame208_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario208Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame208_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario208Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame208_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario208Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame208_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario209Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame209_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario209Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame209_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario209Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame209_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario209Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame209_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario210Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame210_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario210Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame210_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario210Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame210_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario210Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame210_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario211Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame211_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario211Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame211_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario211Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame211_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario211Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame211_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario212Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame212_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario212Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame212_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario212Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame212_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario212Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame212_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario213Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame213_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario213Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame213_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario213Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame213_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario213Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame213_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario214Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame214_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario214Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame214_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario214Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame214_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario214Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame214_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario215Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame215_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario215Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame215_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario215Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame215_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario215Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame215_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario216Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame216_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario216Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame216_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario216Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame216_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario216Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame216_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario217Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame217_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario217Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame217_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario217Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame217_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario217Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame217_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario218Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame218_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario218Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame218_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario218Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame218_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario218Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame218_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario219Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame219_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario219Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame219_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario219Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame219_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario219Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame219_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario220Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame220_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario220Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame220_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario220Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame220_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario220Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame220_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario221Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame221_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario221Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame221_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario221Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame221_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario221Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame221_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario222Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame222_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario222Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame222_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario222Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame222_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario222Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame222_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario223Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame223_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario223Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame223_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario223Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame223_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario223Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame223_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario224Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame224_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario224Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame224_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario224Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame224_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario224Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame224_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario225Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame225_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario225Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame225_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario225Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame225_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario225Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame225_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario226Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame226_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario226Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame226_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario226Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame226_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario226Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame226_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario227Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame227_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario227Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame227_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario227Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame227_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario227Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame227_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario228Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame228_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario228Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame228_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario228Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame228_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario228Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame228_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario229Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame229_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario229Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame229_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario229Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame229_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario229Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame229_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario230Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame230_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario230Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame230_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario230Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame230_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario230Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame230_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario231Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame231_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario231Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame231_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario231Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame231_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario231Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame231_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario232Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame232_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario232Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame232_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario232Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame232_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario232Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame232_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario233Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame233_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario233Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame233_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario233Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame233_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario233Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame233_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario234Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame234_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario234Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame234_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario234Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame234_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario234Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame234_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario235Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame235_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario235Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame235_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario235Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame235_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario235Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame235_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario236Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame236_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario236Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame236_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario236Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame236_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario236Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame236_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario237Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame237_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario237Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame237_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario237Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame237_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario237Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame237_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario238Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame238_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario238Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame238_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario238Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame238_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario238Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame238_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario239Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame239_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario239Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame239_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario239Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame239_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario239Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame239_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario240Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame240_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario240Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame240_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario240Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame240_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario240Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame240_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario241Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame241_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario241Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame241_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario241Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame241_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario241Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame241_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario242Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame242_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario242Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame242_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario242Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame242_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario242Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame242_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario243Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame243_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario243Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame243_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario243Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame243_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario243Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame243_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario244Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame244_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario244Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame244_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario244Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame244_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario244Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame244_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario245Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame245_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario245Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame245_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario245Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame245_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario245Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame245_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario246Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame246_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario246Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame246_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario246Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame246_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario246Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame246_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario247Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame247_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario247Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame247_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario247Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame247_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario247Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame247_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario248Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame248_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario248Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame248_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario248Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame248_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario248Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame248_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario249Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame249_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario249Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame249_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario249Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame249_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario249Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame249_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario250Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame250_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario250Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame250_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario250Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame250_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario250Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame250_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario251Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame251_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario251Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame251_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario251Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame251_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario251Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame251_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario252Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame252_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario252Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame252_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario252Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame252_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario252Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame252_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario253Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame253_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario253Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame253_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario253Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame253_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario253Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame253_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario254Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame254_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario254Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame254_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario254Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame254_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario254Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame254_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario255Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame255_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario255Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame255_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario255Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame255_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario255Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame255_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario256Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame256_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario256Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame256_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario256Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame256_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario256Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame256_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario257Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame257_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario257Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame257_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario257Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame257_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario257Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame257_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario258Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame258_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario258Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame258_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario258Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame258_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario258Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame258_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario259Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame259_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario259Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame259_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario259Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame259_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario259Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame259_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario260Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame260_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario260Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame260_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario260Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame260_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario260Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame260_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario261Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame261_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario261Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame261_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario261Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame261_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario261Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame261_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario262Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame262_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario262Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame262_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario262Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame262_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario262Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame262_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario263Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame263_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario263Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame263_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario263Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame263_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario263Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame263_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario264Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame264_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario264Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame264_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario264Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame264_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario264Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame264_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario265Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame265_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario265Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame265_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario265Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame265_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario265Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame265_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario266Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame266_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario266Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame266_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario266Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame266_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario266Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame266_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario267Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame267_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario267Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame267_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario267Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame267_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario267Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame267_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario268Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame268_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario268Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame268_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario268Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame268_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario268Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame268_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario269Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame269_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario269Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame269_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario269Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame269_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario269Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame269_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario270Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame270_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario270Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame270_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario270Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame270_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario270Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame270_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario271Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame271_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario271Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame271_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario271Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame271_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario271Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame271_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario272Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame272_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario272Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame272_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario272Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame272_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario272Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame272_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario273Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame273_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario273Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame273_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario273Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame273_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario273Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame273_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario274Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame274_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario274Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame274_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario274Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame274_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario274Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame274_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario275Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame275_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario275Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame275_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario275Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame275_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario275Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame275_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario276Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame276_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario276Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame276_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario276Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame276_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario276Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame276_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario277Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame277_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario277Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame277_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario277Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame277_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario277Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame277_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario278Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame278_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario278Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame278_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario278Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame278_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario278Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame278_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario279Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame279_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario279Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame279_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario279Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame279_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario279Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame279_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario280Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame280_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario280Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame280_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario280Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame280_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario280Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame280_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario281Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame281_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario281Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame281_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario281Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame281_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario281Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame281_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario282Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame282_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario282Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame282_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario282Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame282_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario282Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame282_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario283Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame283_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario283Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame283_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario283Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame283_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario283Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame283_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario284Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame284_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario284Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame284_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario284Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame284_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario284Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame284_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario285Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame285_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario285Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame285_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario285Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame285_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario285Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame285_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario286Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame286_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario286Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame286_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario286Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame286_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario286Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame286_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario287Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame287_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario287Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame287_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario287Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame287_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario287Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame287_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario288Wheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_frame288_wheel3"; + +static const ALIGN_ASSET(2) char gKartWario288Wheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_frame288_wheel1"; + +static const ALIGN_ASSET(2) char gKartWario288Wheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_frame288_wheel0"; + +static const ALIGN_ASSET(2) char gKartWario288Wheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_frame288_wheel2"; + +static const ALIGN_ASSET(2) char gKartWario289[] = "__OTR__textures/karts/wario_kart/wario_kart_frame289"; + +static const ALIGN_ASSET(2) char gKartWario290[] = "__OTR__textures/karts/wario_kart/wario_kart_frame290"; + +static const ALIGN_ASSET(2) char gKartWario291[] = "__OTR__textures/karts/wario_kart/wario_kart_frame291"; + +static const ALIGN_ASSET(2) char gKartWario292[] = "__OTR__textures/karts/wario_kart/wario_kart_frame292"; + +static const ALIGN_ASSET(2) char gKartWario293[] = "__OTR__textures/karts/wario_kart/wario_kart_frame293"; + +static const ALIGN_ASSET(2) char gKartWario294[] = "__OTR__textures/karts/wario_kart/wario_kart_frame294"; + +static const ALIGN_ASSET(2) char gKartWario295[] = "__OTR__textures/karts/wario_kart/wario_kart_frame295"; + +static const ALIGN_ASSET(2) char gKartWario296[] = "__OTR__textures/karts/wario_kart/wario_kart_frame296"; + +static const ALIGN_ASSET(2) char gKartWario297[] = "__OTR__textures/karts/wario_kart/wario_kart_frame297"; + +static const ALIGN_ASSET(2) char gKartWario298[] = "__OTR__textures/karts/wario_kart/wario_kart_frame298"; + +static const ALIGN_ASSET(2) char gKartWario299[] = "__OTR__textures/karts/wario_kart/wario_kart_frame299"; + +static const ALIGN_ASSET(2) char gKartWario300[] = "__OTR__textures/karts/wario_kart/wario_kart_frame300"; + +static const ALIGN_ASSET(2) char gKartWario301[] = "__OTR__textures/karts/wario_kart/wario_kart_frame301"; + +static const ALIGN_ASSET(2) char gKartWario302[] = "__OTR__textures/karts/wario_kart/wario_kart_frame302"; + +static const ALIGN_ASSET(2) char gKartWario303[] = "__OTR__textures/karts/wario_kart/wario_kart_frame303"; + +static const ALIGN_ASSET(2) char gKartWario304[] = "__OTR__textures/karts/wario_kart/wario_kart_frame304"; + +static const ALIGN_ASSET(2) char gKartWario305[] = "__OTR__textures/karts/wario_kart/wario_kart_frame305"; + +static const ALIGN_ASSET(2) char gKartWario306[] = "__OTR__textures/karts/wario_kart/wario_kart_frame306"; + +static const ALIGN_ASSET(2) char gKartWario307[] = "__OTR__textures/karts/wario_kart/wario_kart_frame307"; + +static const ALIGN_ASSET(2) char gKartWario308[] = "__OTR__textures/karts/wario_kart/wario_kart_frame308"; + +static const ALIGN_ASSET(2) char gKartWario309[] = "__OTR__textures/karts/wario_kart/wario_kart_frame309"; + +static const ALIGN_ASSET(2) char gKartWario310[] = "__OTR__textures/karts/wario_kart/wario_kart_frame310"; + +static const ALIGN_ASSET(2) char gKartWario311[] = "__OTR__textures/karts/wario_kart/wario_kart_frame311"; + +static const ALIGN_ASSET(2) char gKartWario312[] = "__OTR__textures/karts/wario_kart/wario_kart_frame312"; + +static const ALIGN_ASSET(2) char gKartWario313[] = "__OTR__textures/karts/wario_kart/wario_kart_frame313"; + +static const ALIGN_ASSET(2) char gKartWario314[] = "__OTR__textures/karts/wario_kart/wario_kart_frame314"; + +static const ALIGN_ASSET(2) char gKartWario315[] = "__OTR__textures/karts/wario_kart/wario_kart_frame315"; + +static const ALIGN_ASSET(2) char gKartWario316[] = "__OTR__textures/karts/wario_kart/wario_kart_frame316"; + +static const ALIGN_ASSET(2) char gKartWario317[] = "__OTR__textures/karts/wario_kart/wario_kart_frame317"; + +static const ALIGN_ASSET(2) char gKartWario318[] = "__OTR__textures/karts/wario_kart/wario_kart_frame318"; + +static const ALIGN_ASSET(2) char gKartWario319[] = "__OTR__textures/karts/wario_kart/wario_kart_frame319"; + +static const ALIGN_ASSET(2) char gKartWario320[] = "__OTR__textures/karts/wario_kart/wario_kart_frame320"; + +static const ALIGN_ASSET(2) char gKartWario000TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_000_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario000TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_000_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario000TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_000_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario000TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_000_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario001TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_001_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario001TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_001_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario001TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_001_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario001TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_001_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario002TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_002_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario002TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_002_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario002TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_002_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario002TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_002_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario003TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_003_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario003TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_003_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario003TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_003_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario003TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_003_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario004TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_004_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario004TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_004_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario004TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_004_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario004TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_004_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario005TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_005_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario005TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_005_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario005TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_005_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario005TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_005_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario006TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_006_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario006TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_006_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario006TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_006_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario006TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_006_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario007TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_007_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario007TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_007_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario007TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_007_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario007TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_007_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario008TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_008_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario008TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_008_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario008TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_008_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario008TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_008_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario009TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_009_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario009TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_009_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario009TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_009_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario009TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_009_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario010TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_010_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario010TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_010_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario010TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_010_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario010TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_010_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario011TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_011_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario011TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_011_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario011TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_011_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario011TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_011_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario012TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_012_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario012TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_012_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario012TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_012_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario012TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_012_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario013TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_013_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario013TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_013_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario013TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_013_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario013TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_013_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario014TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_014_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario014TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_014_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario014TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_014_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario014TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_014_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario015TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_015_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario015TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_015_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario015TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_015_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario015TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_015_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario016TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_016_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario016TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_016_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario016TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_016_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario016TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_016_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario017TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_017_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario017TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_017_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario017TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_017_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario017TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_017_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario018TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_018_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario018TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_018_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario018TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_018_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario018TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_018_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario019TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_019_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario019TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_019_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario019TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_019_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario019TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_019_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario020TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_020_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario020TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_020_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario020TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_020_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario020TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_020_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario021TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_021_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario021TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_021_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario021TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_021_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario021TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_021_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario022TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_022_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario022TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_022_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario022TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_022_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario022TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_022_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario023TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_023_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario023TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_023_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario023TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_023_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario023TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_023_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario024TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_024_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario024TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_024_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario024TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_024_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario024TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_024_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario025TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_025_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario025TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_025_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario025TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_025_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario025TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_025_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario026TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_026_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario026TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_026_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario026TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_026_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario026TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_026_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario027TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_027_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario027TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_027_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario027TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_027_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario027TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_027_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario028TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_028_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario028TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_028_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario028TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_028_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario028TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_028_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario029TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_029_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario029TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_029_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario029TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_029_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario029TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_029_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario030TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_030_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario030TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_030_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario030TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_030_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario030TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_030_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario031TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_031_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario031TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_031_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario031TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_031_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario031TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_031_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario032TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_032_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario032TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_032_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario032TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_032_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario032TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_032_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario033TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_033_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario033TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_033_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario033TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_033_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario033TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_033_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario034TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_034_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario034TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_034_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario034TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_034_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario034TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_034_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario035TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_035_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario035TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_035_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario035TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_035_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario035TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_035_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario036TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_036_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario036TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_036_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario036TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_036_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario036TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_036_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario037TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_037_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario037TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_037_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario037TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_037_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario037TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_037_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario038TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_038_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario038TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_038_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario038TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_038_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario038TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_038_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario039TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_039_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario039TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_039_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario039TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_039_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario039TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_039_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario040TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_040_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario040TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_040_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario040TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_040_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario040TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_040_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario041TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_041_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario041TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_041_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario041TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_041_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario041TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_041_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario042TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_042_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario042TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_042_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario042TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_042_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario042TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_042_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario043TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_043_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario043TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_043_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario043TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_043_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario043TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_043_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario044TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_044_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario044TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_044_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario044TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_044_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario044TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_044_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario045TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_045_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario045TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_045_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario045TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_045_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario045TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_045_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario046TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_046_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario046TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_046_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario046TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_046_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario046TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_046_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario047TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_047_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario047TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_047_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario047TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_047_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario047TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_047_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario048TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_048_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario048TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_048_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario048TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_048_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario048TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_048_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario049TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_049_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario049TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_049_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario049TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_049_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario049TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_049_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario050TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_050_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario050TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_050_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario050TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_050_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario050TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_050_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario051TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_051_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario051TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_051_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario051TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_051_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario051TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_051_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario052TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_052_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario052TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_052_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario052TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_052_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario052TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_052_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario053TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_053_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario053TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_053_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario053TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_053_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario053TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_053_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario054TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_054_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario054TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_054_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario054TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_054_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario054TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_054_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario055TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_055_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario055TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_055_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario055TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_055_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario055TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_055_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario056TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_056_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario056TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_056_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario056TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_056_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario056TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_056_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario057TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_057_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario057TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_057_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario057TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_057_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario057TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_057_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario058TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_058_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario058TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_058_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario058TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_058_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario058TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_058_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario059TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_059_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario059TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_059_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario059TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_059_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario059TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_059_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario060TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_060_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario060TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_060_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario060TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_060_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario060TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_060_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario061TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_061_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario061TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_061_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario061TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_061_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario061TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_061_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario062TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_062_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario062TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_062_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario062TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_062_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario062TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_062_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario063TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_063_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario063TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_063_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario063TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_063_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario063TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_063_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario064TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_064_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario064TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_064_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario064TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_064_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario064TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_064_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario065TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_065_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario065TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_065_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario065TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_065_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario065TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_065_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario066TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_066_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario066TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_066_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario066TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_066_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario066TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_066_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario067TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_067_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario067TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_067_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario067TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_067_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario067TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_067_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario068TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_068_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario068TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_068_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario068TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_068_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario068TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_068_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario069TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_069_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario069TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_069_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario069TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_069_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario069TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_069_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario070TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_070_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario070TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_070_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario070TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_070_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario070TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_070_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario071TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_071_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario071TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_071_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario071TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_071_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario071TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_071_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario072TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_072_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario072TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_072_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario072TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_072_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario072TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_072_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario073TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_073_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario073TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_073_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario073TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_073_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario073TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_073_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario074TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_074_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario074TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_074_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario074TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_074_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario074TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_074_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario075TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_075_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario075TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_075_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario075TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_075_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario075TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_075_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario076TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_076_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario076TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_076_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario076TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_076_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario076TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_076_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario077TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_077_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario077TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_077_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario077TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_077_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario077TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_077_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario078TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_078_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario078TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_078_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario078TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_078_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario078TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_078_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario079TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_079_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario079TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_079_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario079TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_079_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario079TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_079_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario080TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_080_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario080TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_080_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario080TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_080_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario080TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_080_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario081TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_081_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario081TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_081_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario081TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_081_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario081TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_081_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario082TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_082_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario082TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_082_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario082TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_082_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario082TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_082_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario083TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_083_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario083TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_083_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario083TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_083_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario083TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_083_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario084TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_084_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario084TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_084_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario084TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_084_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario084TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_084_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario085TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_085_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario085TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_085_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario085TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_085_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario085TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_085_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario086TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_086_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario086TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_086_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario086TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_086_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario086TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_086_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario087TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_087_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario087TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_087_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario087TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_087_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario087TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_087_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario088TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_088_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario088TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_088_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario088TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_088_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario088TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_088_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario089TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_089_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario089TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_089_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario089TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_089_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario089TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_089_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario090TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_090_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario090TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_090_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario090TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_090_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario090TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_090_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario091TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_091_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario091TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_091_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario091TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_091_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario091TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_091_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario092TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_092_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario092TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_092_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario092TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_092_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario092TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_092_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario093TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_093_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario093TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_093_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario093TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_093_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario093TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_093_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario094TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_094_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario094TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_094_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario094TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_094_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario094TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_094_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario095TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_095_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario095TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_095_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario095TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_095_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario095TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_095_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario096TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_096_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario096TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_096_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario096TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_096_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario096TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_096_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario097TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_097_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario097TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_097_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario097TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_097_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario097TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_097_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario098TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_098_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario098TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_098_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario098TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_098_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario098TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_098_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario099TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_099_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario099TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_099_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario099TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_099_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario099TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_099_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario100TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_100_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario100TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_100_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario100TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_100_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario100TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_100_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario101TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_101_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario101TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_101_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario101TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_101_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario101TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_101_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario102TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_102_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario102TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_102_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario102TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_102_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario102TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_102_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario103TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_103_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario103TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_103_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario103TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_103_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario103TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_103_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario104TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_104_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario104TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_104_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario104TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_104_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario104TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_104_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario105TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_105_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario105TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_105_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario105TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_105_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario105TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_105_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario106TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_106_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario106TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_106_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario106TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_106_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario106TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_106_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario107TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_107_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario107TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_107_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario107TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_107_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario107TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_107_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario108TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_108_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario108TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_108_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario108TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_108_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario108TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_108_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario109TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_109_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario109TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_109_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario109TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_109_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario109TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_109_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario110TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_110_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario110TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_110_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario110TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_110_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario110TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_110_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario111TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_111_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario111TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_111_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario111TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_111_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario111TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_111_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario112TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_112_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario112TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_112_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario112TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_112_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario112TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_112_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario113TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_113_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario113TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_113_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario113TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_113_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario113TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_113_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario114TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_114_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario114TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_114_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario114TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_114_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario114TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_114_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario115TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_115_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario115TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_115_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario115TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_115_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario115TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_115_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario116TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_116_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario116TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_116_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario116TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_116_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario116TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_116_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario117TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_117_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario117TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_117_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario117TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_117_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario117TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_117_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario118TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_118_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario118TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_118_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario118TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_118_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario118TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_118_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario119TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_119_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario119TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_119_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario119TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_119_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario119TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_119_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario120TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_120_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario120TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_120_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario120TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_120_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario120TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_120_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario121TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_121_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario121TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_121_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario121TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_121_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario121TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_121_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario122TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_122_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario122TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_122_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario122TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_122_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario122TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_122_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario123TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_123_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario123TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_123_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario123TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_123_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario123TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_123_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario124TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_124_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario124TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_124_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario124TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_124_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario124TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_124_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario125TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_125_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario125TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_125_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario125TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_125_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario125TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_125_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario126TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_126_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario126TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_126_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario126TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_126_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario126TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_126_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario127TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_127_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario127TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_127_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario127TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_127_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario127TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_127_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario128TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_128_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario128TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_128_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario128TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_128_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario128TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_128_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario129TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_129_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario129TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_129_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario129TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_129_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario129TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_129_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario130TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_130_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario130TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_130_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario130TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_130_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario130TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_130_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario131TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_131_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario131TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_131_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario131TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_131_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario131TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_131_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario132TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_132_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario132TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_132_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario132TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_132_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario132TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_132_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario133TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_133_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario133TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_133_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario133TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_133_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario133TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_133_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario134TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_134_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario134TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_134_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario134TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_134_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario134TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_134_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario135TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_135_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario135TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_135_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario135TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_135_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario135TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_135_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario136TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_136_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario136TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_136_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario136TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_136_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario136TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_136_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario137TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_137_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario137TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_137_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario137TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_137_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario137TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_137_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario138TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_138_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario138TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_138_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario138TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_138_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario138TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_138_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario139TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_139_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario139TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_139_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario139TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_139_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario139TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_139_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario140TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_140_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario140TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_140_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario140TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_140_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario140TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_140_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario141TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_141_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario141TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_141_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario141TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_141_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario141TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_141_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario142TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_142_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario142TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_142_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario142TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_142_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario142TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_142_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario143TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_143_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario143TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_143_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario143TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_143_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario143TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_143_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario144TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_144_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario144TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_144_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario144TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_144_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario144TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_144_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario145TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_145_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario145TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_145_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario145TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_145_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario145TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_145_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario146TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_146_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario146TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_146_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario146TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_146_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario146TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_146_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario147TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_147_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario147TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_147_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario147TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_147_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario147TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_147_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario148TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_148_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario148TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_148_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario148TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_148_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario148TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_148_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario149TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_149_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario149TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_149_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario149TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_149_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario149TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_149_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario150TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_150_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario150TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_150_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario150TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_150_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario150TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_150_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario151TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_151_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario151TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_151_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario151TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_151_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario151TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_151_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario152TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_152_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario152TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_152_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario152TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_152_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario152TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_152_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario153TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_153_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario153TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_153_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario153TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_153_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario153TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_153_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario154TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_154_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario154TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_154_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario154TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_154_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario154TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_154_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario155TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_155_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario155TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_155_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario155TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_155_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario155TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_155_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario156TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_156_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario156TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_156_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario156TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_156_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario156TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_156_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario157TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_157_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario157TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_157_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario157TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_157_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario157TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_157_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario158TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_158_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario158TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_158_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario158TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_158_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario158TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_158_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario159TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_159_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario159TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_159_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario159TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_159_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario159TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_159_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario160TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_160_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario160TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_160_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario160TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_160_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario160TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_160_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario161TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_161_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario161TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_161_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario161TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_161_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario161TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_161_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario162TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_162_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario162TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_162_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario162TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_162_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario162TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_162_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario163TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_163_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario163TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_163_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario163TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_163_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario163TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_163_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario164TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_164_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario164TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_164_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario164TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_164_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario164TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_164_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario165TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_165_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario165TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_165_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario165TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_165_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario165TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_165_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario166TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_166_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario166TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_166_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario166TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_166_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario166TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_166_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario167TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_167_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario167TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_167_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario167TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_167_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario167TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_167_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario168TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_168_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario168TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_168_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario168TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_168_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario168TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_168_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario169TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_169_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario169TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_169_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario169TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_169_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario169TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_169_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario170TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_170_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario170TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_170_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario170TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_170_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario170TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_170_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario171TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_171_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario171TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_171_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario171TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_171_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario171TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_171_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario172TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_172_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario172TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_172_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario172TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_172_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario172TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_172_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario173TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_173_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario173TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_173_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario173TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_173_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario173TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_173_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario174TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_174_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario174TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_174_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario174TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_174_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario174TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_174_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario175TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_175_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario175TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_175_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario175TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_175_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario175TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_175_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario176TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_176_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario176TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_176_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario176TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_176_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario176TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_176_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario177TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_177_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario177TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_177_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario177TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_177_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario177TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_177_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario178TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_178_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario178TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_178_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario178TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_178_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario178TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_178_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario179TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_179_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario179TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_179_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario179TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_179_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario179TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_179_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario180TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_180_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario180TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_180_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario180TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_180_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario180TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_180_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario181TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_181_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario181TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_181_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario181TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_181_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario181TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_181_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario182TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_182_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario182TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_182_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario182TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_182_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario182TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_182_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario183TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_183_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario183TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_183_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario183TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_183_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario183TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_183_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario184TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_184_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario184TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_184_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario184TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_184_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario184TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_184_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario185TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_185_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario185TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_185_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario185TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_185_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario185TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_185_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario186TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_186_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario186TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_186_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario186TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_186_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario186TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_186_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario187TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_187_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario187TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_187_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario187TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_187_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario187TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_187_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario188TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_188_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario188TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_188_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario188TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_188_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario188TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_188_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario189TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_189_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario189TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_189_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario189TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_189_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario189TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_189_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario190TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_190_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario190TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_190_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario190TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_190_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario190TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_190_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario191TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_191_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario191TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_191_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario191TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_191_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario191TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_191_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario192TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_192_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario192TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_192_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario192TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_192_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario192TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_192_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario193TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_193_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario193TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_193_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario193TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_193_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario193TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_193_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario194TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_194_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario194TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_194_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario194TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_194_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario194TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_194_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario195TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_195_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario195TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_195_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario195TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_195_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario195TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_195_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario196TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_196_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario196TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_196_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario196TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_196_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario196TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_196_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario197TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_197_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario197TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_197_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario197TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_197_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario197TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_197_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario198TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_198_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario198TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_198_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario198TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_198_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario198TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_198_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario199TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_199_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario199TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_199_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario199TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_199_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario199TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_199_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario200TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_200_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario200TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_200_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario200TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_200_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario200TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_200_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario201TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_201_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario201TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_201_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario201TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_201_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario201TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_201_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario202TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_202_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario202TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_202_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario202TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_202_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario202TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_202_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario203TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_203_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario203TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_203_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario203TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_203_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario203TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_203_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario204TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_204_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario204TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_204_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario204TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_204_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario204TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_204_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario205TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_205_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario205TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_205_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario205TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_205_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario205TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_205_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario206TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_206_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario206TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_206_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario206TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_206_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario206TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_206_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario207TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_207_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario207TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_207_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario207TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_207_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario207TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_207_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario208TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_208_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario208TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_208_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario208TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_208_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario208TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_208_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario209TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_209_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario209TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_209_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario209TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_209_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario209TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_209_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario210TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_210_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario210TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_210_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario210TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_210_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario210TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_210_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario211TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_211_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario211TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_211_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario211TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_211_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario211TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_211_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario212TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_212_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario212TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_212_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario212TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_212_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario212TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_212_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario213TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_213_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario213TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_213_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario213TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_213_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario213TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_213_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario214TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_214_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario214TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_214_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario214TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_214_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario214TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_214_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario215TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_215_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario215TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_215_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario215TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_215_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario215TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_215_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario216TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_216_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario216TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_216_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario216TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_216_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario216TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_216_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario217TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_217_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario217TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_217_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario217TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_217_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario217TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_217_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario218TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_218_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario218TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_218_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario218TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_218_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario218TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_218_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario219TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_219_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario219TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_219_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario219TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_219_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario219TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_219_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario220TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_220_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario220TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_220_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario220TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_220_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario220TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_220_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario221TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_221_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario221TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_221_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario221TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_221_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario221TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_221_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario222TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_222_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario222TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_222_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario222TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_222_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario222TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_222_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario223TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_223_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario223TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_223_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario223TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_223_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario223TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_223_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario224TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_224_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario224TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_224_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario224TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_224_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario224TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_224_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario225TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_225_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario225TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_225_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario225TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_225_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario225TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_225_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario226TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_226_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario226TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_226_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario226TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_226_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario226TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_226_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario227TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_227_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario227TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_227_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario227TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_227_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario227TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_227_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario228TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_228_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario228TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_228_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario228TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_228_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario228TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_228_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario229TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_229_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario229TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_229_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario229TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_229_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario229TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_229_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario230TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_230_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario230TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_230_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario230TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_230_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario230TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_230_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario231TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_231_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario231TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_231_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario231TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_231_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario231TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_231_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario232TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_232_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario232TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_232_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario232TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_232_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario232TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_232_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario233TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_233_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario233TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_233_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario233TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_233_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario233TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_233_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario234TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_234_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario234TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_234_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario234TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_234_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario234TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_234_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario235TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_235_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario235TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_235_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario235TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_235_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario235TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_235_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario236TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_236_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario236TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_236_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario236TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_236_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario236TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_236_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario237TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_237_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario237TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_237_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario237TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_237_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario237TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_237_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario238TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_238_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario238TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_238_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario238TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_238_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario238TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_238_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario239TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_239_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario239TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_239_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario239TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_239_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario239TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_239_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario240TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_240_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario240TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_240_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario240TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_240_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario240TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_240_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario241TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_241_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario241TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_241_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario241TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_241_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario241TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_241_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario242TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_242_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario242TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_242_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario242TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_242_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario242TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_242_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario243TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_243_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario243TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_243_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario243TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_243_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario243TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_243_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario244TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_244_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario244TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_244_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario244TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_244_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario244TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_244_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario245TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_245_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario245TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_245_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario245TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_245_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario245TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_245_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario246TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_246_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario246TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_246_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario246TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_246_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario246TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_246_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario247TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_247_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario247TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_247_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario247TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_247_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario247TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_247_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario248TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_248_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario248TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_248_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario248TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_248_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario248TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_248_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario249TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_249_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario249TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_249_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario249TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_249_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario249TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_249_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario250TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_250_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario250TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_250_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario250TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_250_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario250TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_250_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario251TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_251_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario251TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_251_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario251TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_251_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario251TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_251_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario252TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_252_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario252TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_252_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario252TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_252_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario252TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_252_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario253TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_253_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario253TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_253_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario253TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_253_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario253TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_253_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario254TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_254_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario254TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_254_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario254TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_254_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario254TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_254_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario255TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_255_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario255TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_255_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario255TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_255_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario255TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_255_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario256TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_256_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario256TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_256_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario256TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_256_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario256TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_256_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario257TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_257_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario257TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_257_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario257TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_257_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario257TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_257_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario258TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_258_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario258TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_258_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario258TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_258_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario258TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_258_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario259TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_259_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario259TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_259_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario259TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_259_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario259TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_259_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario260TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_260_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario260TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_260_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario260TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_260_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario260TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_260_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario261TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_261_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario261TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_261_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario261TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_261_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario261TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_261_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario262TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_262_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario262TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_262_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario262TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_262_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario262TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_262_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario263TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_263_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario263TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_263_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario263TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_263_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario263TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_263_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario264TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_264_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario264TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_264_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario264TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_264_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario264TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_264_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario265TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_265_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario265TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_265_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario265TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_265_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario265TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_265_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario266TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_266_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario266TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_266_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario266TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_266_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario266TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_266_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario267TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_267_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario267TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_267_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario267TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_267_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario267TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_267_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario268TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_268_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario268TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_268_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario268TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_268_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario268TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_268_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario269TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_269_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario269TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_269_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario269TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_269_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario269TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_269_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario270TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_270_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario270TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_270_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario270TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_270_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario270TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_270_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario271TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_271_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario271TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_271_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario271TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_271_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario271TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_271_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario272TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_272_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario272TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_272_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario272TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_272_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario272TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_272_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario273TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_273_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario273TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_273_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario273TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_273_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario273TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_273_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario274TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_274_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario274TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_274_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario274TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_274_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario274TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_274_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario275TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_275_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario275TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_275_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario275TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_275_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario275TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_275_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario276TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_276_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario276TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_276_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario276TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_276_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario276TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_276_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario277TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_277_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario277TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_277_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario277TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_277_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario277TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_277_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario278TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_278_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario278TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_278_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario278TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_278_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario278TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_278_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario279TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_279_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario279TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_279_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario279TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_279_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario279TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_279_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario280TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_280_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario280TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_280_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario280TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_280_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario280TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_280_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario281TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_281_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario281TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_281_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario281TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_281_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario281TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_281_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario282TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_282_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario282TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_282_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario282TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_282_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario282TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_282_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario283TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_283_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario283TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_283_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario283TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_283_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario283TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_283_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario284TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_284_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario284TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_284_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario284TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_284_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario284TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_284_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario285TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_285_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario285TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_285_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario285TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_285_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario285TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_285_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario286TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_286_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario286TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_286_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario286TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_286_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario286TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_286_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario287TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_287_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario287TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_287_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario287TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_287_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario287TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_287_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartWario288TlutWheel0[] = "__OTR__textures/karts/wario_kart/wario_kart_288_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartWario288TlutWheel1[] = "__OTR__textures/karts/wario_kart/wario_kart_288_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartWario288TlutWheel2[] = "__OTR__textures/karts/wario_kart/wario_kart_288_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartWario288TlutWheel3[] = "__OTR__textures/karts/wario_kart/wario_kart_288_tlut_wheel_3"; + +static const char* wario_kart_wheels[] = { + gKartWario000TlutWheel0, + gKartWario000TlutWheel1, + gKartWario000TlutWheel2, + gKartWario000TlutWheel3, + gKartWario001TlutWheel0, + gKartWario001TlutWheel1, + gKartWario001TlutWheel2, + gKartWario001TlutWheel3, + gKartWario002TlutWheel0, + gKartWario002TlutWheel1, + gKartWario002TlutWheel2, + gKartWario002TlutWheel3, + gKartWario003TlutWheel0, + gKartWario003TlutWheel1, + gKartWario003TlutWheel2, + gKartWario003TlutWheel3, + gKartWario004TlutWheel0, + gKartWario004TlutWheel1, + gKartWario004TlutWheel2, + gKartWario004TlutWheel3, + gKartWario005TlutWheel0, + gKartWario005TlutWheel1, + gKartWario005TlutWheel2, + gKartWario005TlutWheel3, + gKartWario006TlutWheel0, + gKartWario006TlutWheel1, + gKartWario006TlutWheel2, + gKartWario006TlutWheel3, + gKartWario007TlutWheel0, + gKartWario007TlutWheel1, + gKartWario007TlutWheel2, + gKartWario007TlutWheel3, + gKartWario008TlutWheel0, + gKartWario008TlutWheel1, + gKartWario008TlutWheel2, + gKartWario008TlutWheel3, + gKartWario009TlutWheel0, + gKartWario009TlutWheel1, + gKartWario009TlutWheel2, + gKartWario009TlutWheel3, + gKartWario010TlutWheel0, + gKartWario010TlutWheel1, + gKartWario010TlutWheel2, + gKartWario010TlutWheel3, + gKartWario011TlutWheel0, + gKartWario011TlutWheel1, + gKartWario011TlutWheel2, + gKartWario011TlutWheel3, + gKartWario012TlutWheel0, + gKartWario012TlutWheel1, + gKartWario012TlutWheel2, + gKartWario012TlutWheel3, + gKartWario013TlutWheel0, + gKartWario013TlutWheel1, + gKartWario013TlutWheel2, + gKartWario013TlutWheel3, + gKartWario014TlutWheel0, + gKartWario014TlutWheel1, + gKartWario014TlutWheel2, + gKartWario014TlutWheel3, + gKartWario015TlutWheel0, + gKartWario015TlutWheel1, + gKartWario015TlutWheel2, + gKartWario015TlutWheel3, + gKartWario016TlutWheel0, + gKartWario016TlutWheel1, + gKartWario016TlutWheel2, + gKartWario016TlutWheel3, + gKartWario017TlutWheel0, + gKartWario017TlutWheel1, + gKartWario017TlutWheel2, + gKartWario017TlutWheel3, + gKartWario018TlutWheel0, + gKartWario018TlutWheel1, + gKartWario018TlutWheel2, + gKartWario018TlutWheel3, + gKartWario019TlutWheel0, + gKartWario019TlutWheel1, + gKartWario019TlutWheel2, + gKartWario019TlutWheel3, + gKartWario020TlutWheel0, + gKartWario020TlutWheel1, + gKartWario020TlutWheel2, + gKartWario020TlutWheel3, + gKartWario021TlutWheel0, + gKartWario021TlutWheel1, + gKartWario021TlutWheel2, + gKartWario021TlutWheel3, + gKartWario022TlutWheel0, + gKartWario022TlutWheel1, + gKartWario022TlutWheel2, + gKartWario022TlutWheel3, + gKartWario023TlutWheel0, + gKartWario023TlutWheel1, + gKartWario023TlutWheel2, + gKartWario023TlutWheel3, + gKartWario024TlutWheel0, + gKartWario024TlutWheel1, + gKartWario024TlutWheel2, + gKartWario024TlutWheel3, + gKartWario025TlutWheel0, + gKartWario025TlutWheel1, + gKartWario025TlutWheel2, + gKartWario025TlutWheel3, + gKartWario026TlutWheel0, + gKartWario026TlutWheel1, + gKartWario026TlutWheel2, + gKartWario026TlutWheel3, + gKartWario027TlutWheel0, + gKartWario027TlutWheel1, + gKartWario027TlutWheel2, + gKartWario027TlutWheel3, + gKartWario028TlutWheel0, + gKartWario028TlutWheel1, + gKartWario028TlutWheel2, + gKartWario028TlutWheel3, + gKartWario029TlutWheel0, + gKartWario029TlutWheel1, + gKartWario029TlutWheel2, + gKartWario029TlutWheel3, + gKartWario030TlutWheel0, + gKartWario030TlutWheel1, + gKartWario030TlutWheel2, + gKartWario030TlutWheel3, + gKartWario031TlutWheel0, + gKartWario031TlutWheel1, + gKartWario031TlutWheel2, + gKartWario031TlutWheel3, + gKartWario032TlutWheel0, + gKartWario032TlutWheel1, + gKartWario032TlutWheel2, + gKartWario032TlutWheel3, + gKartWario033TlutWheel0, + gKartWario033TlutWheel1, + gKartWario033TlutWheel2, + gKartWario033TlutWheel3, + gKartWario034TlutWheel0, + gKartWario034TlutWheel1, + gKartWario034TlutWheel2, + gKartWario034TlutWheel3, + gKartWario035TlutWheel0, + gKartWario035TlutWheel1, + gKartWario035TlutWheel2, + gKartWario035TlutWheel3, + gKartWario036TlutWheel0, + gKartWario036TlutWheel1, + gKartWario036TlutWheel2, + gKartWario036TlutWheel3, + gKartWario037TlutWheel0, + gKartWario037TlutWheel1, + gKartWario037TlutWheel2, + gKartWario037TlutWheel3, + gKartWario038TlutWheel0, + gKartWario038TlutWheel1, + gKartWario038TlutWheel2, + gKartWario038TlutWheel3, + gKartWario039TlutWheel0, + gKartWario039TlutWheel1, + gKartWario039TlutWheel2, + gKartWario039TlutWheel3, + gKartWario040TlutWheel0, + gKartWario040TlutWheel1, + gKartWario040TlutWheel2, + gKartWario040TlutWheel3, + gKartWario041TlutWheel0, + gKartWario041TlutWheel1, + gKartWario041TlutWheel2, + gKartWario041TlutWheel3, + gKartWario042TlutWheel0, + gKartWario042TlutWheel1, + gKartWario042TlutWheel2, + gKartWario042TlutWheel3, + gKartWario043TlutWheel0, + gKartWario043TlutWheel1, + gKartWario043TlutWheel2, + gKartWario043TlutWheel3, + gKartWario044TlutWheel0, + gKartWario044TlutWheel1, + gKartWario044TlutWheel2, + gKartWario044TlutWheel3, + gKartWario045TlutWheel0, + gKartWario045TlutWheel1, + gKartWario045TlutWheel2, + gKartWario045TlutWheel3, + gKartWario046TlutWheel0, + gKartWario046TlutWheel1, + gKartWario046TlutWheel2, + gKartWario046TlutWheel3, + gKartWario047TlutWheel0, + gKartWario047TlutWheel1, + gKartWario047TlutWheel2, + gKartWario047TlutWheel3, + gKartWario048TlutWheel0, + gKartWario048TlutWheel1, + gKartWario048TlutWheel2, + gKartWario048TlutWheel3, + gKartWario049TlutWheel0, + gKartWario049TlutWheel1, + gKartWario049TlutWheel2, + gKartWario049TlutWheel3, + gKartWario050TlutWheel0, + gKartWario050TlutWheel1, + gKartWario050TlutWheel2, + gKartWario050TlutWheel3, + gKartWario051TlutWheel0, + gKartWario051TlutWheel1, + gKartWario051TlutWheel2, + gKartWario051TlutWheel3, + gKartWario052TlutWheel0, + gKartWario052TlutWheel1, + gKartWario052TlutWheel2, + gKartWario052TlutWheel3, + gKartWario053TlutWheel0, + gKartWario053TlutWheel1, + gKartWario053TlutWheel2, + gKartWario053TlutWheel3, + gKartWario054TlutWheel0, + gKartWario054TlutWheel1, + gKartWario054TlutWheel2, + gKartWario054TlutWheel3, + gKartWario055TlutWheel0, + gKartWario055TlutWheel1, + gKartWario055TlutWheel2, + gKartWario055TlutWheel3, + gKartWario056TlutWheel0, + gKartWario056TlutWheel1, + gKartWario056TlutWheel2, + gKartWario056TlutWheel3, + gKartWario057TlutWheel0, + gKartWario057TlutWheel1, + gKartWario057TlutWheel2, + gKartWario057TlutWheel3, + gKartWario058TlutWheel0, + gKartWario058TlutWheel1, + gKartWario058TlutWheel2, + gKartWario058TlutWheel3, + gKartWario059TlutWheel0, + gKartWario059TlutWheel1, + gKartWario059TlutWheel2, + gKartWario059TlutWheel3, + gKartWario060TlutWheel0, + gKartWario060TlutWheel1, + gKartWario060TlutWheel2, + gKartWario060TlutWheel3, + gKartWario061TlutWheel0, + gKartWario061TlutWheel1, + gKartWario061TlutWheel2, + gKartWario061TlutWheel3, + gKartWario062TlutWheel0, + gKartWario062TlutWheel1, + gKartWario062TlutWheel2, + gKartWario062TlutWheel3, + gKartWario063TlutWheel0, + gKartWario063TlutWheel1, + gKartWario063TlutWheel2, + gKartWario063TlutWheel3, + gKartWario064TlutWheel0, + gKartWario064TlutWheel1, + gKartWario064TlutWheel2, + gKartWario064TlutWheel3, + gKartWario065TlutWheel0, + gKartWario065TlutWheel1, + gKartWario065TlutWheel2, + gKartWario065TlutWheel3, + gKartWario066TlutWheel0, + gKartWario066TlutWheel1, + gKartWario066TlutWheel2, + gKartWario066TlutWheel3, + gKartWario067TlutWheel0, + gKartWario067TlutWheel1, + gKartWario067TlutWheel2, + gKartWario067TlutWheel3, + gKartWario068TlutWheel0, + gKartWario068TlutWheel1, + gKartWario068TlutWheel2, + gKartWario068TlutWheel3, + gKartWario069TlutWheel0, + gKartWario069TlutWheel1, + gKartWario069TlutWheel2, + gKartWario069TlutWheel3, + gKartWario070TlutWheel0, + gKartWario070TlutWheel1, + gKartWario070TlutWheel2, + gKartWario070TlutWheel3, + gKartWario071TlutWheel0, + gKartWario071TlutWheel1, + gKartWario071TlutWheel2, + gKartWario071TlutWheel3, + gKartWario072TlutWheel0, + gKartWario072TlutWheel1, + gKartWario072TlutWheel2, + gKartWario072TlutWheel3, + gKartWario073TlutWheel0, + gKartWario073TlutWheel1, + gKartWario073TlutWheel2, + gKartWario073TlutWheel3, + gKartWario074TlutWheel0, + gKartWario074TlutWheel1, + gKartWario074TlutWheel2, + gKartWario074TlutWheel3, + gKartWario075TlutWheel0, + gKartWario075TlutWheel1, + gKartWario075TlutWheel2, + gKartWario075TlutWheel3, + gKartWario076TlutWheel0, + gKartWario076TlutWheel1, + gKartWario076TlutWheel2, + gKartWario076TlutWheel3, + gKartWario077TlutWheel0, + gKartWario077TlutWheel1, + gKartWario077TlutWheel2, + gKartWario077TlutWheel3, + gKartWario078TlutWheel0, + gKartWario078TlutWheel1, + gKartWario078TlutWheel2, + gKartWario078TlutWheel3, + gKartWario079TlutWheel0, + gKartWario079TlutWheel1, + gKartWario079TlutWheel2, + gKartWario079TlutWheel3, + gKartWario080TlutWheel0, + gKartWario080TlutWheel1, + gKartWario080TlutWheel2, + gKartWario080TlutWheel3, + gKartWario081TlutWheel0, + gKartWario081TlutWheel1, + gKartWario081TlutWheel2, + gKartWario081TlutWheel3, + gKartWario082TlutWheel0, + gKartWario082TlutWheel1, + gKartWario082TlutWheel2, + gKartWario082TlutWheel3, + gKartWario083TlutWheel0, + gKartWario083TlutWheel1, + gKartWario083TlutWheel2, + gKartWario083TlutWheel3, + gKartWario084TlutWheel0, + gKartWario084TlutWheel1, + gKartWario084TlutWheel2, + gKartWario084TlutWheel3, + gKartWario085TlutWheel0, + gKartWario085TlutWheel1, + gKartWario085TlutWheel2, + gKartWario085TlutWheel3, + gKartWario086TlutWheel0, + gKartWario086TlutWheel1, + gKartWario086TlutWheel2, + gKartWario086TlutWheel3, + gKartWario087TlutWheel0, + gKartWario087TlutWheel1, + gKartWario087TlutWheel2, + gKartWario087TlutWheel3, + gKartWario088TlutWheel0, + gKartWario088TlutWheel1, + gKartWario088TlutWheel2, + gKartWario088TlutWheel3, + gKartWario089TlutWheel0, + gKartWario089TlutWheel1, + gKartWario089TlutWheel2, + gKartWario089TlutWheel3, + gKartWario090TlutWheel0, + gKartWario090TlutWheel1, + gKartWario090TlutWheel2, + gKartWario090TlutWheel3, + gKartWario091TlutWheel0, + gKartWario091TlutWheel1, + gKartWario091TlutWheel2, + gKartWario091TlutWheel3, + gKartWario092TlutWheel0, + gKartWario092TlutWheel1, + gKartWario092TlutWheel2, + gKartWario092TlutWheel3, + gKartWario093TlutWheel0, + gKartWario093TlutWheel1, + gKartWario093TlutWheel2, + gKartWario093TlutWheel3, + gKartWario094TlutWheel0, + gKartWario094TlutWheel1, + gKartWario094TlutWheel2, + gKartWario094TlutWheel3, + gKartWario095TlutWheel0, + gKartWario095TlutWheel1, + gKartWario095TlutWheel2, + gKartWario095TlutWheel3, + gKartWario096TlutWheel0, + gKartWario096TlutWheel1, + gKartWario096TlutWheel2, + gKartWario096TlutWheel3, + gKartWario097TlutWheel0, + gKartWario097TlutWheel1, + gKartWario097TlutWheel2, + gKartWario097TlutWheel3, + gKartWario098TlutWheel0, + gKartWario098TlutWheel1, + gKartWario098TlutWheel2, + gKartWario098TlutWheel3, + gKartWario099TlutWheel0, + gKartWario099TlutWheel1, + gKartWario099TlutWheel2, + gKartWario099TlutWheel3, + gKartWario100TlutWheel0, + gKartWario100TlutWheel1, + gKartWario100TlutWheel2, + gKartWario100TlutWheel3, + gKartWario101TlutWheel0, + gKartWario101TlutWheel1, + gKartWario101TlutWheel2, + gKartWario101TlutWheel3, + gKartWario102TlutWheel0, + gKartWario102TlutWheel1, + gKartWario102TlutWheel2, + gKartWario102TlutWheel3, + gKartWario103TlutWheel0, + gKartWario103TlutWheel1, + gKartWario103TlutWheel2, + gKartWario103TlutWheel3, + gKartWario104TlutWheel0, + gKartWario104TlutWheel1, + gKartWario104TlutWheel2, + gKartWario104TlutWheel3, + gKartWario105TlutWheel0, + gKartWario105TlutWheel1, + gKartWario105TlutWheel2, + gKartWario105TlutWheel3, + gKartWario106TlutWheel0, + gKartWario106TlutWheel1, + gKartWario106TlutWheel2, + gKartWario106TlutWheel3, + gKartWario107TlutWheel0, + gKartWario107TlutWheel1, + gKartWario107TlutWheel2, + gKartWario107TlutWheel3, + gKartWario108TlutWheel0, + gKartWario108TlutWheel1, + gKartWario108TlutWheel2, + gKartWario108TlutWheel3, + gKartWario109TlutWheel0, + gKartWario109TlutWheel1, + gKartWario109TlutWheel2, + gKartWario109TlutWheel3, + gKartWario110TlutWheel0, + gKartWario110TlutWheel1, + gKartWario110TlutWheel2, + gKartWario110TlutWheel3, + gKartWario111TlutWheel0, + gKartWario111TlutWheel1, + gKartWario111TlutWheel2, + gKartWario111TlutWheel3, + gKartWario112TlutWheel0, + gKartWario112TlutWheel1, + gKartWario112TlutWheel2, + gKartWario112TlutWheel3, + gKartWario113TlutWheel0, + gKartWario113TlutWheel1, + gKartWario113TlutWheel2, + gKartWario113TlutWheel3, + gKartWario114TlutWheel0, + gKartWario114TlutWheel1, + gKartWario114TlutWheel2, + gKartWario114TlutWheel3, + gKartWario115TlutWheel0, + gKartWario115TlutWheel1, + gKartWario115TlutWheel2, + gKartWario115TlutWheel3, + gKartWario116TlutWheel0, + gKartWario116TlutWheel1, + gKartWario116TlutWheel2, + gKartWario116TlutWheel3, + gKartWario117TlutWheel0, + gKartWario117TlutWheel1, + gKartWario117TlutWheel2, + gKartWario117TlutWheel3, + gKartWario118TlutWheel0, + gKartWario118TlutWheel1, + gKartWario118TlutWheel2, + gKartWario118TlutWheel3, + gKartWario119TlutWheel0, + gKartWario119TlutWheel1, + gKartWario119TlutWheel2, + gKartWario119TlutWheel3, + gKartWario120TlutWheel0, + gKartWario120TlutWheel1, + gKartWario120TlutWheel2, + gKartWario120TlutWheel3, + gKartWario121TlutWheel0, + gKartWario121TlutWheel1, + gKartWario121TlutWheel2, + gKartWario121TlutWheel3, + gKartWario122TlutWheel0, + gKartWario122TlutWheel1, + gKartWario122TlutWheel2, + gKartWario122TlutWheel3, + gKartWario123TlutWheel0, + gKartWario123TlutWheel1, + gKartWario123TlutWheel2, + gKartWario123TlutWheel3, + gKartWario124TlutWheel0, + gKartWario124TlutWheel1, + gKartWario124TlutWheel2, + gKartWario124TlutWheel3, + gKartWario125TlutWheel0, + gKartWario125TlutWheel1, + gKartWario125TlutWheel2, + gKartWario125TlutWheel3, + gKartWario126TlutWheel0, + gKartWario126TlutWheel1, + gKartWario126TlutWheel2, + gKartWario126TlutWheel3, + gKartWario127TlutWheel0, + gKartWario127TlutWheel1, + gKartWario127TlutWheel2, + gKartWario127TlutWheel3, + gKartWario128TlutWheel0, + gKartWario128TlutWheel1, + gKartWario128TlutWheel2, + gKartWario128TlutWheel3, + gKartWario129TlutWheel0, + gKartWario129TlutWheel1, + gKartWario129TlutWheel2, + gKartWario129TlutWheel3, + gKartWario130TlutWheel0, + gKartWario130TlutWheel1, + gKartWario130TlutWheel2, + gKartWario130TlutWheel3, + gKartWario131TlutWheel0, + gKartWario131TlutWheel1, + gKartWario131TlutWheel2, + gKartWario131TlutWheel3, + gKartWario132TlutWheel0, + gKartWario132TlutWheel1, + gKartWario132TlutWheel2, + gKartWario132TlutWheel3, + gKartWario133TlutWheel0, + gKartWario133TlutWheel1, + gKartWario133TlutWheel2, + gKartWario133TlutWheel3, + gKartWario134TlutWheel0, + gKartWario134TlutWheel1, + gKartWario134TlutWheel2, + gKartWario134TlutWheel3, + gKartWario135TlutWheel0, + gKartWario135TlutWheel1, + gKartWario135TlutWheel2, + gKartWario135TlutWheel3, + gKartWario136TlutWheel0, + gKartWario136TlutWheel1, + gKartWario136TlutWheel2, + gKartWario136TlutWheel3, + gKartWario137TlutWheel0, + gKartWario137TlutWheel1, + gKartWario137TlutWheel2, + gKartWario137TlutWheel3, + gKartWario138TlutWheel0, + gKartWario138TlutWheel1, + gKartWario138TlutWheel2, + gKartWario138TlutWheel3, + gKartWario139TlutWheel0, + gKartWario139TlutWheel1, + gKartWario139TlutWheel2, + gKartWario139TlutWheel3, + gKartWario140TlutWheel0, + gKartWario140TlutWheel1, + gKartWario140TlutWheel2, + gKartWario140TlutWheel3, + gKartWario141TlutWheel0, + gKartWario141TlutWheel1, + gKartWario141TlutWheel2, + gKartWario141TlutWheel3, + gKartWario142TlutWheel0, + gKartWario142TlutWheel1, + gKartWario142TlutWheel2, + gKartWario142TlutWheel3, + gKartWario143TlutWheel0, + gKartWario143TlutWheel1, + gKartWario143TlutWheel2, + gKartWario143TlutWheel3, + gKartWario144TlutWheel0, + gKartWario144TlutWheel1, + gKartWario144TlutWheel2, + gKartWario144TlutWheel3, + gKartWario145TlutWheel0, + gKartWario145TlutWheel1, + gKartWario145TlutWheel2, + gKartWario145TlutWheel3, + gKartWario146TlutWheel0, + gKartWario146TlutWheel1, + gKartWario146TlutWheel2, + gKartWario146TlutWheel3, + gKartWario147TlutWheel0, + gKartWario147TlutWheel1, + gKartWario147TlutWheel2, + gKartWario147TlutWheel3, + gKartWario148TlutWheel0, + gKartWario148TlutWheel1, + gKartWario148TlutWheel2, + gKartWario148TlutWheel3, + gKartWario149TlutWheel0, + gKartWario149TlutWheel1, + gKartWario149TlutWheel2, + gKartWario149TlutWheel3, + gKartWario150TlutWheel0, + gKartWario150TlutWheel1, + gKartWario150TlutWheel2, + gKartWario150TlutWheel3, + gKartWario151TlutWheel0, + gKartWario151TlutWheel1, + gKartWario151TlutWheel2, + gKartWario151TlutWheel3, + gKartWario152TlutWheel0, + gKartWario152TlutWheel1, + gKartWario152TlutWheel2, + gKartWario152TlutWheel3, + gKartWario153TlutWheel0, + gKartWario153TlutWheel1, + gKartWario153TlutWheel2, + gKartWario153TlutWheel3, + gKartWario154TlutWheel0, + gKartWario154TlutWheel1, + gKartWario154TlutWheel2, + gKartWario154TlutWheel3, + gKartWario155TlutWheel0, + gKartWario155TlutWheel1, + gKartWario155TlutWheel2, + gKartWario155TlutWheel3, + gKartWario156TlutWheel0, + gKartWario156TlutWheel1, + gKartWario156TlutWheel2, + gKartWario156TlutWheel3, + gKartWario157TlutWheel0, + gKartWario157TlutWheel1, + gKartWario157TlutWheel2, + gKartWario157TlutWheel3, + gKartWario158TlutWheel0, + gKartWario158TlutWheel1, + gKartWario158TlutWheel2, + gKartWario158TlutWheel3, + gKartWario159TlutWheel0, + gKartWario159TlutWheel1, + gKartWario159TlutWheel2, + gKartWario159TlutWheel3, + gKartWario160TlutWheel0, + gKartWario160TlutWheel1, + gKartWario160TlutWheel2, + gKartWario160TlutWheel3, + gKartWario161TlutWheel0, + gKartWario161TlutWheel1, + gKartWario161TlutWheel2, + gKartWario161TlutWheel3, + gKartWario162TlutWheel0, + gKartWario162TlutWheel1, + gKartWario162TlutWheel2, + gKartWario162TlutWheel3, + gKartWario163TlutWheel0, + gKartWario163TlutWheel1, + gKartWario163TlutWheel2, + gKartWario163TlutWheel3, + gKartWario164TlutWheel0, + gKartWario164TlutWheel1, + gKartWario164TlutWheel2, + gKartWario164TlutWheel3, + gKartWario165TlutWheel0, + gKartWario165TlutWheel1, + gKartWario165TlutWheel2, + gKartWario165TlutWheel3, + gKartWario166TlutWheel0, + gKartWario166TlutWheel1, + gKartWario166TlutWheel2, + gKartWario166TlutWheel3, + gKartWario167TlutWheel0, + gKartWario167TlutWheel1, + gKartWario167TlutWheel2, + gKartWario167TlutWheel3, + gKartWario168TlutWheel0, + gKartWario168TlutWheel1, + gKartWario168TlutWheel2, + gKartWario168TlutWheel3, + gKartWario169TlutWheel0, + gKartWario169TlutWheel1, + gKartWario169TlutWheel2, + gKartWario169TlutWheel3, + gKartWario170TlutWheel0, + gKartWario170TlutWheel1, + gKartWario170TlutWheel2, + gKartWario170TlutWheel3, + gKartWario171TlutWheel0, + gKartWario171TlutWheel1, + gKartWario171TlutWheel2, + gKartWario171TlutWheel3, + gKartWario172TlutWheel0, + gKartWario172TlutWheel1, + gKartWario172TlutWheel2, + gKartWario172TlutWheel3, + gKartWario173TlutWheel0, + gKartWario173TlutWheel1, + gKartWario173TlutWheel2, + gKartWario173TlutWheel3, + gKartWario174TlutWheel0, + gKartWario174TlutWheel1, + gKartWario174TlutWheel2, + gKartWario174TlutWheel3, + gKartWario175TlutWheel0, + gKartWario175TlutWheel1, + gKartWario175TlutWheel2, + gKartWario175TlutWheel3, + gKartWario176TlutWheel0, + gKartWario176TlutWheel1, + gKartWario176TlutWheel2, + gKartWario176TlutWheel3, + gKartWario177TlutWheel0, + gKartWario177TlutWheel1, + gKartWario177TlutWheel2, + gKartWario177TlutWheel3, + gKartWario178TlutWheel0, + gKartWario178TlutWheel1, + gKartWario178TlutWheel2, + gKartWario178TlutWheel3, + gKartWario179TlutWheel0, + gKartWario179TlutWheel1, + gKartWario179TlutWheel2, + gKartWario179TlutWheel3, + gKartWario180TlutWheel0, + gKartWario180TlutWheel1, + gKartWario180TlutWheel2, + gKartWario180TlutWheel3, + gKartWario181TlutWheel0, + gKartWario181TlutWheel1, + gKartWario181TlutWheel2, + gKartWario181TlutWheel3, + gKartWario182TlutWheel0, + gKartWario182TlutWheel1, + gKartWario182TlutWheel2, + gKartWario182TlutWheel3, + gKartWario183TlutWheel0, + gKartWario183TlutWheel1, + gKartWario183TlutWheel2, + gKartWario183TlutWheel3, + gKartWario184TlutWheel0, + gKartWario184TlutWheel1, + gKartWario184TlutWheel2, + gKartWario184TlutWheel3, + gKartWario185TlutWheel0, + gKartWario185TlutWheel1, + gKartWario185TlutWheel2, + gKartWario185TlutWheel3, + gKartWario186TlutWheel0, + gKartWario186TlutWheel1, + gKartWario186TlutWheel2, + gKartWario186TlutWheel3, + gKartWario187TlutWheel0, + gKartWario187TlutWheel1, + gKartWario187TlutWheel2, + gKartWario187TlutWheel3, + gKartWario188TlutWheel0, + gKartWario188TlutWheel1, + gKartWario188TlutWheel2, + gKartWario188TlutWheel3, + gKartWario189TlutWheel0, + gKartWario189TlutWheel1, + gKartWario189TlutWheel2, + gKartWario189TlutWheel3, + gKartWario190TlutWheel0, + gKartWario190TlutWheel1, + gKartWario190TlutWheel2, + gKartWario190TlutWheel3, + gKartWario191TlutWheel0, + gKartWario191TlutWheel1, + gKartWario191TlutWheel2, + gKartWario191TlutWheel3, + gKartWario192TlutWheel0, + gKartWario192TlutWheel1, + gKartWario192TlutWheel2, + gKartWario192TlutWheel3, + gKartWario193TlutWheel0, + gKartWario193TlutWheel1, + gKartWario193TlutWheel2, + gKartWario193TlutWheel3, + gKartWario194TlutWheel0, + gKartWario194TlutWheel1, + gKartWario194TlutWheel2, + gKartWario194TlutWheel3, + gKartWario195TlutWheel0, + gKartWario195TlutWheel1, + gKartWario195TlutWheel2, + gKartWario195TlutWheel3, + gKartWario196TlutWheel0, + gKartWario196TlutWheel1, + gKartWario196TlutWheel2, + gKartWario196TlutWheel3, + gKartWario197TlutWheel0, + gKartWario197TlutWheel1, + gKartWario197TlutWheel2, + gKartWario197TlutWheel3, + gKartWario198TlutWheel0, + gKartWario198TlutWheel1, + gKartWario198TlutWheel2, + gKartWario198TlutWheel3, + gKartWario199TlutWheel0, + gKartWario199TlutWheel1, + gKartWario199TlutWheel2, + gKartWario199TlutWheel3, + gKartWario200TlutWheel0, + gKartWario200TlutWheel1, + gKartWario200TlutWheel2, + gKartWario200TlutWheel3, + gKartWario201TlutWheel0, + gKartWario201TlutWheel1, + gKartWario201TlutWheel2, + gKartWario201TlutWheel3, + gKartWario202TlutWheel0, + gKartWario202TlutWheel1, + gKartWario202TlutWheel2, + gKartWario202TlutWheel3, + gKartWario203TlutWheel0, + gKartWario203TlutWheel1, + gKartWario203TlutWheel2, + gKartWario203TlutWheel3, + gKartWario204TlutWheel0, + gKartWario204TlutWheel1, + gKartWario204TlutWheel2, + gKartWario204TlutWheel3, + gKartWario205TlutWheel0, + gKartWario205TlutWheel1, + gKartWario205TlutWheel2, + gKartWario205TlutWheel3, + gKartWario206TlutWheel0, + gKartWario206TlutWheel1, + gKartWario206TlutWheel2, + gKartWario206TlutWheel3, + gKartWario207TlutWheel0, + gKartWario207TlutWheel1, + gKartWario207TlutWheel2, + gKartWario207TlutWheel3, + gKartWario208TlutWheel0, + gKartWario208TlutWheel1, + gKartWario208TlutWheel2, + gKartWario208TlutWheel3, + gKartWario209TlutWheel0, + gKartWario209TlutWheel1, + gKartWario209TlutWheel2, + gKartWario209TlutWheel3, + gKartWario210TlutWheel0, + gKartWario210TlutWheel1, + gKartWario210TlutWheel2, + gKartWario210TlutWheel3, + gKartWario211TlutWheel0, + gKartWario211TlutWheel1, + gKartWario211TlutWheel2, + gKartWario211TlutWheel3, + gKartWario212TlutWheel0, + gKartWario212TlutWheel1, + gKartWario212TlutWheel2, + gKartWario212TlutWheel3, + gKartWario213TlutWheel0, + gKartWario213TlutWheel1, + gKartWario213TlutWheel2, + gKartWario213TlutWheel3, + gKartWario214TlutWheel0, + gKartWario214TlutWheel1, + gKartWario214TlutWheel2, + gKartWario214TlutWheel3, + gKartWario215TlutWheel0, + gKartWario215TlutWheel1, + gKartWario215TlutWheel2, + gKartWario215TlutWheel3, + gKartWario216TlutWheel0, + gKartWario216TlutWheel1, + gKartWario216TlutWheel2, + gKartWario216TlutWheel3, + gKartWario217TlutWheel0, + gKartWario217TlutWheel1, + gKartWario217TlutWheel2, + gKartWario217TlutWheel3, + gKartWario218TlutWheel0, + gKartWario218TlutWheel1, + gKartWario218TlutWheel2, + gKartWario218TlutWheel3, + gKartWario219TlutWheel0, + gKartWario219TlutWheel1, + gKartWario219TlutWheel2, + gKartWario219TlutWheel3, + gKartWario220TlutWheel0, + gKartWario220TlutWheel1, + gKartWario220TlutWheel2, + gKartWario220TlutWheel3, + gKartWario221TlutWheel0, + gKartWario221TlutWheel1, + gKartWario221TlutWheel2, + gKartWario221TlutWheel3, + gKartWario222TlutWheel0, + gKartWario222TlutWheel1, + gKartWario222TlutWheel2, + gKartWario222TlutWheel3, + gKartWario223TlutWheel0, + gKartWario223TlutWheel1, + gKartWario223TlutWheel2, + gKartWario223TlutWheel3, + gKartWario224TlutWheel0, + gKartWario224TlutWheel1, + gKartWario224TlutWheel2, + gKartWario224TlutWheel3, + gKartWario225TlutWheel0, + gKartWario225TlutWheel1, + gKartWario225TlutWheel2, + gKartWario225TlutWheel3, + gKartWario226TlutWheel0, + gKartWario226TlutWheel1, + gKartWario226TlutWheel2, + gKartWario226TlutWheel3, + gKartWario227TlutWheel0, + gKartWario227TlutWheel1, + gKartWario227TlutWheel2, + gKartWario227TlutWheel3, + gKartWario228TlutWheel0, + gKartWario228TlutWheel1, + gKartWario228TlutWheel2, + gKartWario228TlutWheel3, + gKartWario229TlutWheel0, + gKartWario229TlutWheel1, + gKartWario229TlutWheel2, + gKartWario229TlutWheel3, + gKartWario230TlutWheel0, + gKartWario230TlutWheel1, + gKartWario230TlutWheel2, + gKartWario230TlutWheel3, + gKartWario231TlutWheel0, + gKartWario231TlutWheel1, + gKartWario231TlutWheel2, + gKartWario231TlutWheel3, + gKartWario232TlutWheel0, + gKartWario232TlutWheel1, + gKartWario232TlutWheel2, + gKartWario232TlutWheel3, + gKartWario233TlutWheel0, + gKartWario233TlutWheel1, + gKartWario233TlutWheel2, + gKartWario233TlutWheel3, + gKartWario234TlutWheel0, + gKartWario234TlutWheel1, + gKartWario234TlutWheel2, + gKartWario234TlutWheel3, + gKartWario235TlutWheel0, + gKartWario235TlutWheel1, + gKartWario235TlutWheel2, + gKartWario235TlutWheel3, + gKartWario236TlutWheel0, + gKartWario236TlutWheel1, + gKartWario236TlutWheel2, + gKartWario236TlutWheel3, + gKartWario237TlutWheel0, + gKartWario237TlutWheel1, + gKartWario237TlutWheel2, + gKartWario237TlutWheel3, + gKartWario238TlutWheel0, + gKartWario238TlutWheel1, + gKartWario238TlutWheel2, + gKartWario238TlutWheel3, + gKartWario239TlutWheel0, + gKartWario239TlutWheel1, + gKartWario239TlutWheel2, + gKartWario239TlutWheel3, + gKartWario240TlutWheel0, + gKartWario240TlutWheel1, + gKartWario240TlutWheel2, + gKartWario240TlutWheel3, + gKartWario241TlutWheel0, + gKartWario241TlutWheel1, + gKartWario241TlutWheel2, + gKartWario241TlutWheel3, + gKartWario242TlutWheel0, + gKartWario242TlutWheel1, + gKartWario242TlutWheel2, + gKartWario242TlutWheel3, + gKartWario243TlutWheel0, + gKartWario243TlutWheel1, + gKartWario243TlutWheel2, + gKartWario243TlutWheel3, + gKartWario244TlutWheel0, + gKartWario244TlutWheel1, + gKartWario244TlutWheel2, + gKartWario244TlutWheel3, + gKartWario245TlutWheel0, + gKartWario245TlutWheel1, + gKartWario245TlutWheel2, + gKartWario245TlutWheel3, + gKartWario246TlutWheel0, + gKartWario246TlutWheel1, + gKartWario246TlutWheel2, + gKartWario246TlutWheel3, + gKartWario247TlutWheel0, + gKartWario247TlutWheel1, + gKartWario247TlutWheel2, + gKartWario247TlutWheel3, + gKartWario248TlutWheel0, + gKartWario248TlutWheel1, + gKartWario248TlutWheel2, + gKartWario248TlutWheel3, + gKartWario249TlutWheel0, + gKartWario249TlutWheel1, + gKartWario249TlutWheel2, + gKartWario249TlutWheel3, + gKartWario250TlutWheel0, + gKartWario250TlutWheel1, + gKartWario250TlutWheel2, + gKartWario250TlutWheel3, + gKartWario251TlutWheel0, + gKartWario251TlutWheel1, + gKartWario251TlutWheel2, + gKartWario251TlutWheel3, + gKartWario252TlutWheel0, + gKartWario252TlutWheel1, + gKartWario252TlutWheel2, + gKartWario252TlutWheel3, + gKartWario253TlutWheel0, + gKartWario253TlutWheel1, + gKartWario253TlutWheel2, + gKartWario253TlutWheel3, + gKartWario254TlutWheel0, + gKartWario254TlutWheel1, + gKartWario254TlutWheel2, + gKartWario254TlutWheel3, + gKartWario255TlutWheel0, + gKartWario255TlutWheel1, + gKartWario255TlutWheel2, + gKartWario255TlutWheel3, + gKartWario256TlutWheel0, + gKartWario256TlutWheel1, + gKartWario256TlutWheel2, + gKartWario256TlutWheel3, + gKartWario257TlutWheel0, + gKartWario257TlutWheel1, + gKartWario257TlutWheel2, + gKartWario257TlutWheel3, + gKartWario258TlutWheel0, + gKartWario258TlutWheel1, + gKartWario258TlutWheel2, + gKartWario258TlutWheel3, + gKartWario259TlutWheel0, + gKartWario259TlutWheel1, + gKartWario259TlutWheel2, + gKartWario259TlutWheel3, + gKartWario260TlutWheel0, + gKartWario260TlutWheel1, + gKartWario260TlutWheel2, + gKartWario260TlutWheel3, + gKartWario261TlutWheel0, + gKartWario261TlutWheel1, + gKartWario261TlutWheel2, + gKartWario261TlutWheel3, + gKartWario262TlutWheel0, + gKartWario262TlutWheel1, + gKartWario262TlutWheel2, + gKartWario262TlutWheel3, + gKartWario263TlutWheel0, + gKartWario263TlutWheel1, + gKartWario263TlutWheel2, + gKartWario263TlutWheel3, + gKartWario264TlutWheel0, + gKartWario264TlutWheel1, + gKartWario264TlutWheel2, + gKartWario264TlutWheel3, + gKartWario265TlutWheel0, + gKartWario265TlutWheel1, + gKartWario265TlutWheel2, + gKartWario265TlutWheel3, + gKartWario266TlutWheel0, + gKartWario266TlutWheel1, + gKartWario266TlutWheel2, + gKartWario266TlutWheel3, + gKartWario267TlutWheel0, + gKartWario267TlutWheel1, + gKartWario267TlutWheel2, + gKartWario267TlutWheel3, + gKartWario268TlutWheel0, + gKartWario268TlutWheel1, + gKartWario268TlutWheel2, + gKartWario268TlutWheel3, + gKartWario269TlutWheel0, + gKartWario269TlutWheel1, + gKartWario269TlutWheel2, + gKartWario269TlutWheel3, + gKartWario270TlutWheel0, + gKartWario270TlutWheel1, + gKartWario270TlutWheel2, + gKartWario270TlutWheel3, + gKartWario271TlutWheel0, + gKartWario271TlutWheel1, + gKartWario271TlutWheel2, + gKartWario271TlutWheel3, + gKartWario272TlutWheel0, + gKartWario272TlutWheel1, + gKartWario272TlutWheel2, + gKartWario272TlutWheel3, + gKartWario273TlutWheel0, + gKartWario273TlutWheel1, + gKartWario273TlutWheel2, + gKartWario273TlutWheel3, + gKartWario274TlutWheel0, + gKartWario274TlutWheel1, + gKartWario274TlutWheel2, + gKartWario274TlutWheel3, + gKartWario275TlutWheel0, + gKartWario275TlutWheel1, + gKartWario275TlutWheel2, + gKartWario275TlutWheel3, + gKartWario276TlutWheel0, + gKartWario276TlutWheel1, + gKartWario276TlutWheel2, + gKartWario276TlutWheel3, + gKartWario277TlutWheel0, + gKartWario277TlutWheel1, + gKartWario277TlutWheel2, + gKartWario277TlutWheel3, + gKartWario278TlutWheel0, + gKartWario278TlutWheel1, + gKartWario278TlutWheel2, + gKartWario278TlutWheel3, + gKartWario279TlutWheel0, + gKartWario279TlutWheel1, + gKartWario279TlutWheel2, + gKartWario279TlutWheel3, + gKartWario280TlutWheel0, + gKartWario280TlutWheel1, + gKartWario280TlutWheel2, + gKartWario280TlutWheel3, + gKartWario281TlutWheel0, + gKartWario281TlutWheel1, + gKartWario281TlutWheel2, + gKartWario281TlutWheel3, + gKartWario282TlutWheel0, + gKartWario282TlutWheel1, + gKartWario282TlutWheel2, + gKartWario282TlutWheel3, + gKartWario283TlutWheel0, + gKartWario283TlutWheel1, + gKartWario283TlutWheel2, + gKartWario283TlutWheel3, + gKartWario284TlutWheel0, + gKartWario284TlutWheel1, + gKartWario284TlutWheel2, + gKartWario284TlutWheel3, + gKartWario285TlutWheel0, + gKartWario285TlutWheel1, + gKartWario285TlutWheel2, + gKartWario285TlutWheel3, + gKartWario286TlutWheel0, + gKartWario286TlutWheel1, + gKartWario286TlutWheel2, + gKartWario286TlutWheel3, + gKartWario287TlutWheel0, + gKartWario287TlutWheel1, + gKartWario287TlutWheel2, + gKartWario287TlutWheel3, + gKartWario288TlutWheel0, + gKartWario288TlutWheel1, + gKartWario288TlutWheel2, + gKartWario288TlutWheel3, +}; + +static const ALIGN_ASSET(2) char gKartWarioPalette[] = "__OTR__textures/karts/wario_kart/wario_kart_palette"; + diff --git a/include/assets/textures/karts/yoshi_kart.h b/include/assets/textures/karts/yoshi_kart.h new file mode 100644 index 000000000..f7b44b388 --- /dev/null +++ b/include/assets/textures/karts/yoshi_kart.h @@ -0,0 +1,5854 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gKartYoshi000Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame000_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi000Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame000_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi000Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame000_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi000Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame000_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi001Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame001_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi001Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame001_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi001Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame001_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi001Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame001_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi002Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame002_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi002Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame002_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi002Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame002_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi002Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame002_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi003Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame003_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi003Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame003_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi003Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame003_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi003Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame003_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi004Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame004_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi004Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame004_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi004Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame004_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi004Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame004_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi005Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame005_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi005Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame005_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi005Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame005_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi005Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame005_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi006Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame006_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi006Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame006_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi006Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame006_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi006Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame006_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi007Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame007_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi007Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame007_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi007Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame007_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi007Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame007_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi008Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame008_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi008Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame008_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi008Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame008_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi008Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame008_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi009Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame009_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi009Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame009_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi009Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame009_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi009Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame009_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi010Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame010_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi010Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame010_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi010Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame010_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi010Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame010_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi011Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame011_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi011Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame011_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi011Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame011_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi011Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame011_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi012Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame012_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi012Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame012_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi012Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame012_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi012Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame012_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi013Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame013_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi013Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame013_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi013Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame013_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi013Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame013_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi014Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame014_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi014Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame014_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi014Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame014_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi014Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame014_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi015Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame015_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi015Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame015_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi015Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame015_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi015Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame015_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi016Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame016_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi016Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame016_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi016Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame016_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi016Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame016_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi017Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame017_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi017Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame017_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi017Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame017_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi017Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame017_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi018Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame018_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi018Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame018_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi018Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame018_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi018Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame018_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi019Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame019_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi019Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame019_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi019Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame019_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi019Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame019_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi020Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame020_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi020Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame020_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi020Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame020_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi020Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame020_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi021Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame021_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi021Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame021_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi021Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame021_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi021Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame021_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi022Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame022_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi022Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame022_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi022Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame022_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi022Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame022_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi023Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame023_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi023Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame023_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi023Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame023_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi023Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame023_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi024Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame024_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi024Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame024_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi024Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame024_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi024Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame024_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi025Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame025_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi025Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame025_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi025Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame025_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi025Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame025_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi026Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame026_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi026Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame026_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi026Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame026_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi026Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame026_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi027Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame027_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi027Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame027_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi027Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame027_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi027Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame027_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi028Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame028_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi028Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame028_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi028Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame028_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi028Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame028_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi029Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame029_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi029Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame029_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi029Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame029_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi029Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame029_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi030Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame030_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi030Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame030_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi030Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame030_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi030Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame030_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi031Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame031_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi031Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame031_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi031Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame031_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi031Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame031_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi032Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame032_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi032Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame032_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi032Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame032_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi032Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame032_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi033Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame033_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi033Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame033_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi033Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame033_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi033Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame033_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi034Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame034_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi034Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame034_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi034Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame034_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi034Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame034_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi035Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame035_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi035Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame035_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi035Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame035_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi035Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame035_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi036Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame036_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi036Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame036_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi036Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame036_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi036Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame036_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi037Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame037_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi037Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame037_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi037Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame037_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi037Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame037_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi038Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame038_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi038Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame038_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi038Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame038_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi038Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame038_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi039Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame039_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi039Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame039_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi039Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame039_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi039Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame039_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi040Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame040_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi040Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame040_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi040Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame040_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi040Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame040_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi041Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame041_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi041Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame041_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi041Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame041_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi041Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame041_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi042Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame042_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi042Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame042_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi042Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame042_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi042Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame042_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi043Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame043_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi043Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame043_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi043Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame043_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi043Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame043_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi044Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame044_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi044Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame044_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi044Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame044_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi044Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame044_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi045Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame045_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi045Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame045_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi045Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame045_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi045Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame045_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi046Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame046_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi046Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame046_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi046Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame046_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi046Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame046_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi047Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame047_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi047Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame047_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi047Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame047_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi047Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame047_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi048Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame048_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi048Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame048_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi048Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame048_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi048Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame048_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi049Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame049_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi049Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame049_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi049Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame049_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi049Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame049_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi050Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame050_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi050Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame050_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi050Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame050_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi050Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame050_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi051Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame051_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi051Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame051_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi051Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame051_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi051Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame051_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi052Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame052_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi052Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame052_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi052Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame052_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi052Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame052_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi053Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame053_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi053Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame053_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi053Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame053_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi053Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame053_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi054Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame054_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi054Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame054_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi054Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame054_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi054Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame054_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi055Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame055_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi055Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame055_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi055Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame055_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi055Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame055_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi056Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame056_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi056Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame056_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi056Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame056_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi056Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame056_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi057Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame057_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi057Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame057_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi057Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame057_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi057Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame057_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi058Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame058_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi058Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame058_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi058Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame058_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi058Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame058_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi059Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame059_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi059Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame059_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi059Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame059_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi059Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame059_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi060Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame060_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi060Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame060_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi060Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame060_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi060Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame060_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi061Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame061_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi061Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame061_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi061Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame061_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi061Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame061_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi062Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame062_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi062Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame062_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi062Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame062_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi062Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame062_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi063Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame063_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi063Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame063_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi063Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame063_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi063Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame063_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi064Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame064_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi064Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame064_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi064Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame064_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi064Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame064_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi065Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame065_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi065Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame065_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi065Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame065_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi065Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame065_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi066Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame066_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi066Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame066_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi066Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame066_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi066Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame066_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi067Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame067_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi067Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame067_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi067Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame067_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi067Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame067_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi068Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame068_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi068Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame068_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi068Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame068_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi068Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame068_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi069Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame069_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi069Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame069_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi069Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame069_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi069Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame069_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi070Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame070_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi070Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame070_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi070Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame070_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi070Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame070_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi071Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame071_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi071Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame071_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi071Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame071_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi071Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame071_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi072Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame072_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi072Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame072_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi072Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame072_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi072Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame072_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi073Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame073_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi073Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame073_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi073Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame073_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi073Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame073_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi074Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame074_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi074Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame074_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi074Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame074_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi074Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame074_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi075Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame075_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi075Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame075_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi075Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame075_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi075Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame075_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi076Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame076_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi076Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame076_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi076Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame076_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi076Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame076_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi077Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame077_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi077Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame077_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi077Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame077_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi077Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame077_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi078Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame078_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi078Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame078_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi078Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame078_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi078Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame078_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi079Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame079_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi079Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame079_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi079Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame079_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi079Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame079_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi080Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame080_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi080Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame080_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi080Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame080_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi080Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame080_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi081Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame081_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi081Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame081_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi081Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame081_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi081Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame081_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi082Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame082_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi082Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame082_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi082Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame082_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi082Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame082_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi083Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame083_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi083Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame083_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi083Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame083_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi083Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame083_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi084Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame084_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi084Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame084_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi084Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame084_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi084Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame084_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi085Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame085_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi085Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame085_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi085Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame085_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi085Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame085_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi086Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame086_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi086Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame086_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi086Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame086_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi086Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame086_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi087Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame087_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi087Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame087_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi087Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame087_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi087Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame087_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi088Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame088_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi088Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame088_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi088Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame088_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi088Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame088_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi089Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame089_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi089Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame089_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi089Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame089_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi089Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame089_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi090Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame090_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi090Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame090_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi090Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame090_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi090Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame090_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi091Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame091_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi091Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame091_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi091Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame091_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi091Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame091_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi092Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame092_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi092Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame092_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi092Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame092_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi092Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame092_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi093Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame093_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi093Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame093_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi093Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame093_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi093Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame093_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi094Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame094_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi094Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame094_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi094Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame094_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi094Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame094_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi095Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame095_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi095Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame095_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi095Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame095_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi095Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame095_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi096Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame096_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi096Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame096_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi096Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame096_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi096Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame096_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi097Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame097_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi097Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame097_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi097Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame097_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi097Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame097_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi098Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame098_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi098Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame098_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi098Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame098_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi098Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame098_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi099Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame099_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi099Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame099_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi099Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame099_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi099Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame099_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi100Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame100_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi100Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame100_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi100Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame100_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi100Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame100_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi101Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame101_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi101Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame101_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi101Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame101_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi101Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame101_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi102Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame102_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi102Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame102_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi102Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame102_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi102Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame102_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi103Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame103_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi103Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame103_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi103Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame103_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi103Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame103_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi104Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame104_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi104Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame104_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi104Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame104_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi104Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame104_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi105Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame105_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi105Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame105_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi105Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame105_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi105Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame105_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi106Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame106_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi106Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame106_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi106Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame106_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi106Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame106_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi107Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame107_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi107Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame107_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi107Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame107_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi107Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame107_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi108Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame108_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi108Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame108_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi108Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame108_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi108Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame108_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi109Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame109_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi109Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame109_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi109Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame109_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi109Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame109_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi110Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame110_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi110Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame110_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi110Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame110_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi110Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame110_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi111Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame111_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi111Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame111_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi111Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame111_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi111Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame111_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi112Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame112_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi112Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame112_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi112Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame112_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi112Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame112_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi113Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame113_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi113Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame113_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi113Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame113_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi113Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame113_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi114Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame114_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi114Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame114_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi114Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame114_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi114Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame114_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi115Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame115_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi115Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame115_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi115Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame115_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi115Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame115_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi116Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame116_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi116Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame116_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi116Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame116_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi116Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame116_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi117Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame117_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi117Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame117_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi117Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame117_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi117Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame117_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi118Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame118_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi118Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame118_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi118Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame118_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi118Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame118_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi119Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame119_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi119Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame119_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi119Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame119_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi119Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame119_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi120Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame120_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi120Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame120_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi120Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame120_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi120Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame120_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi121Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame121_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi121Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame121_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi121Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame121_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi121Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame121_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi122Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame122_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi122Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame122_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi122Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame122_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi122Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame122_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi123Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame123_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi123Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame123_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi123Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame123_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi123Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame123_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi124Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame124_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi124Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame124_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi124Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame124_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi124Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame124_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi125Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame125_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi125Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame125_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi125Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame125_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi125Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame125_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi126Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame126_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi126Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame126_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi126Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame126_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi126Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame126_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi127Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame127_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi127Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame127_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi127Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame127_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi127Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame127_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi128Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame128_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi128Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame128_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi128Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame128_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi128Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame128_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi129Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame129_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi129Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame129_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi129Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame129_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi129Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame129_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi130Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame130_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi130Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame130_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi130Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame130_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi130Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame130_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi131Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame131_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi131Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame131_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi131Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame131_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi131Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame131_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi132Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame132_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi132Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame132_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi132Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame132_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi132Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame132_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi133Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame133_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi133Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame133_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi133Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame133_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi133Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame133_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi134Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame134_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi134Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame134_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi134Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame134_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi134Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame134_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi135Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame135_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi135Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame135_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi135Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame135_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi135Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame135_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi136Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame136_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi136Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame136_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi136Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame136_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi136Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame136_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi137Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame137_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi137Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame137_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi137Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame137_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi137Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame137_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi138Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame138_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi138Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame138_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi138Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame138_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi138Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame138_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi139Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame139_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi139Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame139_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi139Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame139_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi139Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame139_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi140Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame140_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi140Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame140_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi140Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame140_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi140Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame140_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi141Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame141_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi141Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame141_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi141Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame141_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi141Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame141_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi142Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame142_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi142Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame142_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi142Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame142_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi142Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame142_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi143Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame143_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi143Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame143_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi143Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame143_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi143Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame143_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi144Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame144_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi144Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame144_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi144Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame144_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi144Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame144_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi145Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame145_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi145Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame145_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi145Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame145_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi145Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame145_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi146Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame146_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi146Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame146_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi146Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame146_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi146Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame146_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi147Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame147_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi147Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame147_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi147Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame147_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi147Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame147_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi148Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame148_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi148Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame148_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi148Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame148_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi148Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame148_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi149Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame149_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi149Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame149_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi149Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame149_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi149Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame149_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi150Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame150_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi150Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame150_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi150Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame150_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi150Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame150_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi151Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame151_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi151Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame151_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi151Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame151_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi151Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame151_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi152Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame152_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi152Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame152_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi152Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame152_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi152Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame152_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi153Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame153_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi153Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame153_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi153Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame153_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi153Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame153_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi154Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame154_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi154Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame154_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi154Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame154_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi154Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame154_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi155Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame155_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi155Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame155_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi155Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame155_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi155Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame155_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi156Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame156_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi156Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame156_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi156Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame156_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi156Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame156_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi157Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame157_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi157Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame157_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi157Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame157_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi157Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame157_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi158Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame158_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi158Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame158_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi158Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame158_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi158Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame158_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi159Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame159_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi159Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame159_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi159Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame159_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi159Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame159_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi160Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame160_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi160Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame160_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi160Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame160_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi160Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame160_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi161Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame161_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi161Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame161_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi161Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame161_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi161Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame161_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi162Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame162_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi162Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame162_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi162Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame162_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi162Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame162_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi163Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame163_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi163Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame163_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi163Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame163_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi163Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame163_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi164Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame164_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi164Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame164_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi164Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame164_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi164Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame164_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi165Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame165_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi165Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame165_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi165Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame165_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi165Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame165_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi166Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame166_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi166Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame166_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi166Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame166_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi166Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame166_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi167Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame167_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi167Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame167_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi167Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame167_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi167Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame167_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi168Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame168_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi168Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame168_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi168Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame168_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi168Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame168_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi169Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame169_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi169Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame169_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi169Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame169_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi169Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame169_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi170Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame170_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi170Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame170_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi170Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame170_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi170Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame170_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi171Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame171_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi171Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame171_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi171Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame171_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi171Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame171_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi172Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame172_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi172Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame172_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi172Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame172_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi172Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame172_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi173Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame173_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi173Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame173_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi173Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame173_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi173Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame173_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi174Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame174_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi174Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame174_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi174Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame174_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi174Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame174_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi175Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame175_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi175Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame175_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi175Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame175_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi175Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame175_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi176Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame176_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi176Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame176_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi176Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame176_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi176Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame176_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi177Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame177_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi177Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame177_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi177Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame177_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi177Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame177_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi178Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame178_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi178Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame178_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi178Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame178_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi178Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame178_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi179Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame179_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi179Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame179_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi179Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame179_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi179Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame179_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi180Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame180_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi180Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame180_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi180Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame180_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi180Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame180_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi181Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame181_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi181Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame181_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi181Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame181_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi181Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame181_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi182Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame182_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi182Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame182_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi182Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame182_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi182Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame182_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi183Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame183_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi183Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame183_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi183Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame183_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi183Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame183_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi184Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame184_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi184Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame184_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi184Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame184_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi184Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame184_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi185Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame185_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi185Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame185_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi185Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame185_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi185Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame185_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi186Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame186_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi186Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame186_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi186Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame186_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi186Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame186_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi187Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame187_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi187Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame187_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi187Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame187_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi187Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame187_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi188Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame188_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi188Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame188_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi188Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame188_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi188Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame188_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi189Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame189_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi189Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame189_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi189Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame189_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi189Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame189_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi190Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame190_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi190Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame190_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi190Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame190_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi190Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame190_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi191Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame191_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi191Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame191_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi191Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame191_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi191Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame191_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi192Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame192_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi192Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame192_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi192Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame192_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi192Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame192_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi193Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame193_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi193Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame193_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi193Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame193_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi193Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame193_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi194Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame194_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi194Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame194_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi194Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame194_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi194Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame194_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi195Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame195_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi195Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame195_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi195Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame195_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi195Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame195_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi196Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame196_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi196Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame196_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi196Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame196_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi196Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame196_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi197Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame197_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi197Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame197_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi197Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame197_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi197Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame197_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi198Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame198_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi198Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame198_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi198Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame198_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi198Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame198_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi199Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame199_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi199Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame199_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi199Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame199_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi199Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame199_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi200Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame200_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi200Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame200_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi200Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame200_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi200Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame200_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi201Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame201_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi201Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame201_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi201Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame201_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi201Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame201_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi202Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame202_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi202Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame202_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi202Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame202_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi202Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame202_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi203Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame203_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi203Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame203_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi203Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame203_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi203Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame203_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi204Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame204_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi204Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame204_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi204Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame204_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi204Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame204_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi205Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame205_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi205Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame205_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi205Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame205_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi205Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame205_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi206Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame206_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi206Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame206_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi206Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame206_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi206Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame206_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi207Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame207_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi207Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame207_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi207Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame207_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi207Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame207_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi208Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame208_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi208Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame208_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi208Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame208_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi208Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame208_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi209Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame209_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi209Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame209_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi209Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame209_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi209Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame209_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi210Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame210_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi210Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame210_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi210Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame210_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi210Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame210_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi211Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame211_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi211Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame211_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi211Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame211_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi211Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame211_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi212Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame212_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi212Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame212_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi212Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame212_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi212Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame212_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi213Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame213_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi213Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame213_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi213Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame213_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi213Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame213_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi214Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame214_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi214Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame214_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi214Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame214_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi214Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame214_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi215Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame215_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi215Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame215_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi215Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame215_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi215Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame215_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi216Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame216_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi216Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame216_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi216Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame216_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi216Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame216_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi217Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame217_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi217Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame217_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi217Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame217_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi217Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame217_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi218Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame218_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi218Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame218_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi218Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame218_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi218Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame218_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi219Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame219_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi219Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame219_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi219Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame219_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi219Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame219_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi220Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame220_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi220Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame220_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi220Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame220_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi220Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame220_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi221Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame221_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi221Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame221_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi221Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame221_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi221Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame221_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi222Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame222_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi222Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame222_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi222Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame222_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi222Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame222_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi223Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame223_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi223Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame223_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi223Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame223_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi223Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame223_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi224Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame224_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi224Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame224_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi224Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame224_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi224Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame224_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi225Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame225_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi225Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame225_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi225Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame225_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi225Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame225_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi226Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame226_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi226Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame226_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi226Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame226_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi226Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame226_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi227Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame227_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi227Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame227_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi227Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame227_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi227Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame227_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi228Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame228_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi228Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame228_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi228Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame228_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi228Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame228_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi229Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame229_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi229Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame229_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi229Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame229_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi229Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame229_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi230Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame230_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi230Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame230_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi230Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame230_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi230Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame230_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi231Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame231_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi231Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame231_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi231Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame231_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi231Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame231_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi232Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame232_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi232Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame232_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi232Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame232_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi232Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame232_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi233Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame233_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi233Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame233_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi233Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame233_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi233Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame233_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi234Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame234_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi234Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame234_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi234Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame234_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi234Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame234_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi235Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame235_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi235Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame235_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi235Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame235_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi235Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame235_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi236Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame236_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi236Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame236_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi236Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame236_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi236Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame236_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi237Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame237_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi237Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame237_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi237Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame237_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi237Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame237_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi238Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame238_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi238Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame238_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi238Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame238_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi238Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame238_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi239Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame239_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi239Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame239_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi239Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame239_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi239Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame239_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi240Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame240_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi240Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame240_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi240Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame240_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi240Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame240_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi241Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame241_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi241Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame241_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi241Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame241_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi241Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame241_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi242Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame242_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi242Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame242_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi242Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame242_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi242Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame242_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi243Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame243_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi243Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame243_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi243Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame243_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi243Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame243_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi244Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame244_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi244Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame244_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi244Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame244_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi244Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame244_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi245Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame245_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi245Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame245_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi245Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame245_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi245Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame245_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi246Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame246_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi246Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame246_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi246Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame246_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi246Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame246_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi247Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame247_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi247Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame247_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi247Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame247_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi247Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame247_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi248Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame248_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi248Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame248_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi248Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame248_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi248Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame248_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi249Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame249_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi249Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame249_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi249Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame249_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi249Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame249_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi250Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame250_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi250Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame250_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi250Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame250_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi250Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame250_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi251Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame251_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi251Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame251_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi251Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame251_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi251Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame251_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi252Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame252_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi252Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame252_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi252Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame252_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi252Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame252_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi253Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame253_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi253Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame253_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi253Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame253_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi253Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame253_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi254Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame254_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi254Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame254_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi254Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame254_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi254Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame254_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi255Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame255_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi255Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame255_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi255Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame255_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi255Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame255_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi256Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame256_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi256Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame256_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi256Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame256_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi256Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame256_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi257Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame257_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi257Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame257_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi257Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame257_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi257Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame257_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi258Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame258_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi258Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame258_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi258Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame258_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi258Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame258_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi259Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame259_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi259Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame259_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi259Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame259_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi259Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame259_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi260Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame260_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi260Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame260_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi260Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame260_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi260Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame260_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi261Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame261_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi261Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame261_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi261Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame261_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi261Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame261_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi262Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame262_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi262Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame262_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi262Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame262_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi262Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame262_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi263Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame263_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi263Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame263_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi263Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame263_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi263Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame263_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi264Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame264_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi264Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame264_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi264Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame264_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi264Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame264_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi265Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame265_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi265Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame265_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi265Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame265_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi265Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame265_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi266Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame266_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi266Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame266_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi266Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame266_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi266Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame266_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi267Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame267_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi267Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame267_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi267Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame267_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi267Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame267_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi268Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame268_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi268Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame268_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi268Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame268_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi268Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame268_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi269Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame269_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi269Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame269_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi269Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame269_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi269Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame269_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi270Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame270_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi270Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame270_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi270Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame270_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi270Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame270_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi271Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame271_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi271Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame271_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi271Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame271_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi271Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame271_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi272Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame272_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi272Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame272_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi272Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame272_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi272Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame272_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi273Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame273_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi273Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame273_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi273Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame273_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi273Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame273_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi274Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame274_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi274Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame274_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi274Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame274_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi274Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame274_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi275Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame275_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi275Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame275_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi275Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame275_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi275Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame275_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi276Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame276_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi276Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame276_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi276Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame276_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi276Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame276_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi277Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame277_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi277Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame277_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi277Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame277_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi277Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame277_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi278Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame278_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi278Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame278_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi278Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame278_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi278Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame278_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi279Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame279_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi279Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame279_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi279Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame279_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi279Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame279_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi280Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame280_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi280Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame280_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi280Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame280_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi280Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame280_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi281Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame281_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi281Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame281_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi281Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame281_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi281Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame281_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi282Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame282_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi282Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame282_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi282Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame282_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi282Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame282_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi283Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame283_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi283Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame283_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi283Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame283_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi283Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame283_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi284Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame284_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi284Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame284_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi284Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame284_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi284Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame284_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi285Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame285_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi285Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame285_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi285Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame285_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi285Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame285_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi286Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame286_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi286Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame286_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi286Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame286_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi286Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame286_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi287Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame287_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi287Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame287_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi287Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame287_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi287Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame287_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi288Wheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame288_wheel3"; + +static const ALIGN_ASSET(2) char gKartYoshi288Wheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame288_wheel1"; + +static const ALIGN_ASSET(2) char gKartYoshi288Wheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame288_wheel0"; + +static const ALIGN_ASSET(2) char gKartYoshi288Wheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame288_wheel2"; + +static const ALIGN_ASSET(2) char gKartYoshi289[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame289"; + +static const ALIGN_ASSET(2) char gKartYoshi290[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame290"; + +static const ALIGN_ASSET(2) char gKartYoshi291[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame291"; + +static const ALIGN_ASSET(2) char gKartYoshi292[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame292"; + +static const ALIGN_ASSET(2) char gKartYoshi293[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame293"; + +static const ALIGN_ASSET(2) char gKartYoshi294[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame294"; + +static const ALIGN_ASSET(2) char gKartYoshi295[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame295"; + +static const ALIGN_ASSET(2) char gKartYoshi296[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame296"; + +static const ALIGN_ASSET(2) char gKartYoshi297[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame297"; + +static const ALIGN_ASSET(2) char gKartYoshi298[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame298"; + +static const ALIGN_ASSET(2) char gKartYoshi299[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame299"; + +static const ALIGN_ASSET(2) char gKartYoshi300[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame300"; + +static const ALIGN_ASSET(2) char gKartYoshi301[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame301"; + +static const ALIGN_ASSET(2) char gKartYoshi302[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame302"; + +static const ALIGN_ASSET(2) char gKartYoshi303[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame303"; + +static const ALIGN_ASSET(2) char gKartYoshi304[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame304"; + +static const ALIGN_ASSET(2) char gKartYoshi305[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame305"; + +static const ALIGN_ASSET(2) char gKartYoshi306[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame306"; + +static const ALIGN_ASSET(2) char gKartYoshi307[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame307"; + +static const ALIGN_ASSET(2) char gKartYoshi308[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame308"; + +static const ALIGN_ASSET(2) char gKartYoshi309[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame309"; + +static const ALIGN_ASSET(2) char gKartYoshi310[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame310"; + +static const ALIGN_ASSET(2) char gKartYoshi311[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame311"; + +static const ALIGN_ASSET(2) char gKartYoshi312[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame312"; + +static const ALIGN_ASSET(2) char gKartYoshi313[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame313"; + +static const ALIGN_ASSET(2) char gKartYoshi314[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame314"; + +static const ALIGN_ASSET(2) char gKartYoshi315[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame315"; + +static const ALIGN_ASSET(2) char gKartYoshi316[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame316"; + +static const ALIGN_ASSET(2) char gKartYoshi317[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame317"; + +static const ALIGN_ASSET(2) char gKartYoshi318[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame318"; + +static const ALIGN_ASSET(2) char gKartYoshi319[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame319"; + +static const ALIGN_ASSET(2) char gKartYoshi320[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_frame320"; + +static const ALIGN_ASSET(2) char gKartYoshi000TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_000_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi000TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_000_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi000TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_000_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi000TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_000_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi001TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_001_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi001TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_001_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi001TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_001_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi001TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_001_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi002TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_002_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi002TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_002_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi002TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_002_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi002TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_002_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi003TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_003_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi003TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_003_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi003TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_003_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi003TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_003_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi004TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_004_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi004TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_004_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi004TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_004_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi004TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_004_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi005TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_005_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi005TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_005_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi005TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_005_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi005TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_005_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi006TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_006_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi006TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_006_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi006TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_006_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi006TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_006_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi007TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_007_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi007TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_007_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi007TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_007_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi007TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_007_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi008TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_008_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi008TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_008_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi008TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_008_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi008TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_008_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi009TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_009_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi009TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_009_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi009TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_009_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi009TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_009_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi010TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_010_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi010TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_010_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi010TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_010_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi010TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_010_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi011TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_011_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi011TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_011_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi011TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_011_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi011TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_011_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi012TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_012_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi012TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_012_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi012TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_012_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi012TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_012_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi013TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_013_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi013TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_013_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi013TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_013_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi013TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_013_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi014TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_014_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi014TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_014_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi014TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_014_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi014TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_014_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi015TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_015_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi015TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_015_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi015TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_015_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi015TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_015_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi016TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_016_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi016TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_016_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi016TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_016_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi016TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_016_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi017TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_017_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi017TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_017_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi017TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_017_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi017TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_017_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi018TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_018_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi018TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_018_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi018TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_018_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi018TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_018_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi019TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_019_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi019TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_019_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi019TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_019_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi019TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_019_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi020TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_020_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi020TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_020_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi020TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_020_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi020TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_020_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi021TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_021_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi021TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_021_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi021TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_021_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi021TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_021_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi022TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_022_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi022TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_022_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi022TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_022_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi022TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_022_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi023TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_023_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi023TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_023_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi023TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_023_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi023TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_023_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi024TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_024_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi024TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_024_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi024TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_024_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi024TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_024_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi025TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_025_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi025TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_025_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi025TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_025_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi025TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_025_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi026TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_026_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi026TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_026_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi026TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_026_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi026TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_026_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi027TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_027_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi027TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_027_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi027TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_027_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi027TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_027_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi028TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_028_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi028TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_028_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi028TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_028_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi028TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_028_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi029TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_029_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi029TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_029_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi029TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_029_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi029TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_029_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi030TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_030_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi030TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_030_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi030TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_030_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi030TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_030_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi031TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_031_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi031TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_031_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi031TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_031_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi031TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_031_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi032TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_032_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi032TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_032_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi032TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_032_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi032TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_032_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi033TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_033_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi033TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_033_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi033TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_033_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi033TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_033_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi034TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_034_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi034TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_034_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi034TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_034_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi034TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_034_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi035TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_035_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi035TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_035_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi035TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_035_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi035TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_035_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi036TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_036_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi036TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_036_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi036TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_036_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi036TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_036_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi037TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_037_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi037TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_037_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi037TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_037_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi037TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_037_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi038TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_038_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi038TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_038_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi038TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_038_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi038TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_038_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi039TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_039_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi039TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_039_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi039TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_039_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi039TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_039_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi040TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_040_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi040TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_040_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi040TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_040_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi040TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_040_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi041TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_041_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi041TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_041_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi041TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_041_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi041TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_041_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi042TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_042_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi042TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_042_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi042TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_042_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi042TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_042_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi043TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_043_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi043TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_043_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi043TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_043_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi043TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_043_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi044TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_044_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi044TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_044_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi044TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_044_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi044TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_044_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi045TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_045_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi045TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_045_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi045TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_045_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi045TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_045_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi046TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_046_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi046TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_046_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi046TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_046_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi046TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_046_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi047TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_047_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi047TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_047_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi047TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_047_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi047TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_047_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi048TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_048_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi048TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_048_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi048TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_048_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi048TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_048_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi049TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_049_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi049TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_049_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi049TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_049_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi049TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_049_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi050TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_050_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi050TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_050_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi050TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_050_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi050TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_050_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi051TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_051_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi051TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_051_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi051TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_051_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi051TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_051_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi052TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_052_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi052TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_052_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi052TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_052_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi052TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_052_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi053TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_053_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi053TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_053_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi053TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_053_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi053TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_053_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi054TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_054_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi054TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_054_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi054TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_054_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi054TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_054_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi055TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_055_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi055TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_055_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi055TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_055_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi055TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_055_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi056TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_056_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi056TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_056_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi056TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_056_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi056TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_056_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi057TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_057_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi057TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_057_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi057TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_057_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi057TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_057_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi058TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_058_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi058TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_058_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi058TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_058_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi058TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_058_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi059TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_059_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi059TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_059_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi059TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_059_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi059TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_059_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi060TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_060_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi060TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_060_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi060TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_060_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi060TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_060_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi061TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_061_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi061TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_061_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi061TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_061_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi061TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_061_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi062TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_062_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi062TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_062_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi062TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_062_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi062TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_062_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi063TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_063_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi063TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_063_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi063TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_063_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi063TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_063_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi064TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_064_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi064TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_064_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi064TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_064_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi064TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_064_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi065TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_065_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi065TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_065_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi065TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_065_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi065TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_065_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi066TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_066_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi066TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_066_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi066TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_066_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi066TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_066_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi067TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_067_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi067TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_067_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi067TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_067_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi067TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_067_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi068TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_068_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi068TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_068_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi068TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_068_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi068TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_068_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi069TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_069_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi069TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_069_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi069TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_069_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi069TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_069_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi070TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_070_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi070TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_070_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi070TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_070_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi070TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_070_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi071TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_071_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi071TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_071_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi071TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_071_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi071TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_071_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi072TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_072_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi072TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_072_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi072TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_072_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi072TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_072_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi073TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_073_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi073TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_073_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi073TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_073_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi073TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_073_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi074TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_074_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi074TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_074_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi074TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_074_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi074TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_074_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi075TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_075_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi075TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_075_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi075TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_075_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi075TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_075_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi076TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_076_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi076TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_076_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi076TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_076_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi076TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_076_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi077TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_077_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi077TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_077_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi077TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_077_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi077TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_077_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi078TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_078_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi078TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_078_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi078TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_078_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi078TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_078_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi079TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_079_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi079TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_079_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi079TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_079_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi079TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_079_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi080TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_080_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi080TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_080_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi080TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_080_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi080TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_080_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi081TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_081_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi081TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_081_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi081TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_081_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi081TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_081_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi082TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_082_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi082TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_082_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi082TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_082_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi082TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_082_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi083TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_083_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi083TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_083_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi083TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_083_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi083TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_083_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi084TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_084_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi084TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_084_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi084TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_084_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi084TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_084_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi085TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_085_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi085TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_085_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi085TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_085_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi085TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_085_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi086TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_086_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi086TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_086_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi086TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_086_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi086TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_086_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi087TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_087_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi087TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_087_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi087TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_087_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi087TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_087_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi088TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_088_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi088TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_088_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi088TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_088_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi088TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_088_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi089TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_089_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi089TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_089_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi089TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_089_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi089TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_089_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi090TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_090_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi090TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_090_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi090TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_090_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi090TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_090_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi091TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_091_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi091TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_091_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi091TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_091_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi091TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_091_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi092TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_092_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi092TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_092_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi092TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_092_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi092TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_092_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi093TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_093_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi093TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_093_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi093TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_093_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi093TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_093_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi094TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_094_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi094TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_094_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi094TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_094_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi094TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_094_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi095TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_095_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi095TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_095_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi095TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_095_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi095TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_095_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi096TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_096_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi096TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_096_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi096TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_096_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi096TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_096_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi097TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_097_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi097TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_097_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi097TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_097_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi097TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_097_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi098TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_098_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi098TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_098_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi098TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_098_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi098TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_098_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi099TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_099_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi099TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_099_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi099TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_099_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi099TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_099_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi100TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_100_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi100TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_100_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi100TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_100_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi100TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_100_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi101TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_101_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi101TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_101_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi101TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_101_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi101TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_101_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi102TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_102_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi102TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_102_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi102TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_102_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi102TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_102_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi103TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_103_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi103TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_103_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi103TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_103_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi103TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_103_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi104TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_104_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi104TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_104_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi104TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_104_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi104TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_104_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi105TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_105_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi105TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_105_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi105TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_105_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi105TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_105_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi106TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_106_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi106TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_106_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi106TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_106_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi106TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_106_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi107TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_107_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi107TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_107_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi107TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_107_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi107TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_107_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi108TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_108_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi108TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_108_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi108TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_108_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi108TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_108_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi109TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_109_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi109TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_109_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi109TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_109_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi109TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_109_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi110TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_110_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi110TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_110_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi110TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_110_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi110TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_110_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi111TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_111_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi111TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_111_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi111TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_111_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi111TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_111_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi112TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_112_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi112TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_112_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi112TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_112_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi112TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_112_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi113TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_113_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi113TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_113_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi113TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_113_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi113TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_113_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi114TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_114_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi114TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_114_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi114TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_114_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi114TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_114_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi115TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_115_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi115TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_115_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi115TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_115_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi115TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_115_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi116TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_116_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi116TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_116_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi116TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_116_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi116TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_116_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi117TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_117_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi117TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_117_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi117TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_117_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi117TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_117_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi118TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_118_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi118TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_118_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi118TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_118_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi118TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_118_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi119TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_119_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi119TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_119_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi119TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_119_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi119TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_119_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi120TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_120_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi120TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_120_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi120TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_120_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi120TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_120_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi121TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_121_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi121TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_121_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi121TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_121_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi121TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_121_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi122TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_122_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi122TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_122_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi122TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_122_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi122TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_122_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi123TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_123_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi123TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_123_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi123TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_123_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi123TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_123_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi124TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_124_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi124TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_124_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi124TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_124_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi124TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_124_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi125TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_125_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi125TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_125_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi125TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_125_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi125TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_125_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi126TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_126_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi126TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_126_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi126TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_126_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi126TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_126_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi127TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_127_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi127TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_127_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi127TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_127_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi127TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_127_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi128TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_128_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi128TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_128_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi128TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_128_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi128TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_128_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi129TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_129_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi129TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_129_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi129TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_129_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi129TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_129_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi130TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_130_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi130TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_130_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi130TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_130_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi130TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_130_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi131TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_131_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi131TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_131_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi131TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_131_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi131TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_131_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi132TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_132_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi132TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_132_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi132TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_132_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi132TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_132_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi133TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_133_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi133TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_133_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi133TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_133_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi133TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_133_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi134TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_134_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi134TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_134_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi134TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_134_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi134TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_134_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi135TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_135_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi135TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_135_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi135TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_135_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi135TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_135_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi136TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_136_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi136TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_136_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi136TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_136_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi136TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_136_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi137TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_137_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi137TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_137_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi137TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_137_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi137TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_137_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi138TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_138_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi138TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_138_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi138TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_138_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi138TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_138_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi139TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_139_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi139TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_139_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi139TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_139_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi139TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_139_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi140TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_140_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi140TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_140_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi140TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_140_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi140TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_140_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi141TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_141_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi141TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_141_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi141TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_141_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi141TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_141_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi142TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_142_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi142TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_142_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi142TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_142_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi142TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_142_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi143TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_143_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi143TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_143_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi143TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_143_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi143TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_143_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi144TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_144_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi144TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_144_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi144TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_144_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi144TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_144_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi145TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_145_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi145TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_145_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi145TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_145_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi145TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_145_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi146TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_146_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi146TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_146_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi146TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_146_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi146TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_146_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi147TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_147_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi147TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_147_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi147TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_147_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi147TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_147_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi148TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_148_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi148TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_148_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi148TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_148_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi148TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_148_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi149TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_149_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi149TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_149_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi149TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_149_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi149TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_149_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi150TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_150_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi150TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_150_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi150TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_150_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi150TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_150_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi151TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_151_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi151TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_151_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi151TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_151_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi151TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_151_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi152TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_152_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi152TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_152_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi152TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_152_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi152TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_152_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi153TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_153_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi153TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_153_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi153TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_153_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi153TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_153_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi154TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_154_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi154TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_154_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi154TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_154_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi154TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_154_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi155TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_155_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi155TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_155_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi155TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_155_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi155TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_155_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi156TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_156_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi156TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_156_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi156TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_156_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi156TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_156_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi157TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_157_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi157TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_157_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi157TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_157_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi157TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_157_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi158TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_158_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi158TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_158_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi158TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_158_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi158TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_158_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi159TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_159_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi159TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_159_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi159TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_159_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi159TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_159_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi160TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_160_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi160TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_160_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi160TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_160_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi160TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_160_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi161TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_161_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi161TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_161_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi161TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_161_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi161TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_161_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi162TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_162_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi162TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_162_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi162TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_162_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi162TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_162_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi163TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_163_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi163TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_163_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi163TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_163_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi163TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_163_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi164TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_164_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi164TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_164_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi164TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_164_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi164TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_164_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi165TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_165_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi165TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_165_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi165TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_165_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi165TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_165_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi166TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_166_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi166TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_166_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi166TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_166_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi166TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_166_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi167TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_167_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi167TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_167_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi167TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_167_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi167TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_167_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi168TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_168_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi168TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_168_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi168TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_168_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi168TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_168_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi169TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_169_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi169TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_169_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi169TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_169_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi169TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_169_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi170TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_170_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi170TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_170_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi170TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_170_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi170TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_170_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi171TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_171_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi171TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_171_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi171TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_171_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi171TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_171_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi172TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_172_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi172TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_172_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi172TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_172_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi172TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_172_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi173TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_173_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi173TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_173_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi173TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_173_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi173TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_173_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi174TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_174_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi174TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_174_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi174TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_174_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi174TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_174_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi175TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_175_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi175TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_175_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi175TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_175_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi175TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_175_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi176TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_176_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi176TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_176_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi176TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_176_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi176TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_176_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi177TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_177_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi177TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_177_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi177TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_177_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi177TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_177_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi178TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_178_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi178TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_178_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi178TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_178_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi178TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_178_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi179TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_179_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi179TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_179_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi179TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_179_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi179TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_179_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi180TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_180_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi180TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_180_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi180TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_180_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi180TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_180_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi181TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_181_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi181TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_181_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi181TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_181_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi181TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_181_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi182TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_182_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi182TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_182_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi182TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_182_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi182TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_182_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi183TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_183_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi183TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_183_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi183TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_183_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi183TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_183_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi184TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_184_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi184TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_184_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi184TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_184_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi184TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_184_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi185TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_185_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi185TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_185_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi185TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_185_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi185TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_185_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi186TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_186_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi186TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_186_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi186TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_186_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi186TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_186_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi187TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_187_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi187TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_187_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi187TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_187_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi187TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_187_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi188TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_188_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi188TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_188_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi188TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_188_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi188TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_188_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi189TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_189_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi189TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_189_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi189TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_189_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi189TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_189_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi190TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_190_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi190TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_190_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi190TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_190_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi190TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_190_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi191TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_191_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi191TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_191_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi191TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_191_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi191TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_191_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi192TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_192_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi192TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_192_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi192TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_192_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi192TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_192_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi193TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_193_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi193TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_193_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi193TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_193_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi193TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_193_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi194TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_194_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi194TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_194_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi194TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_194_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi194TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_194_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi195TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_195_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi195TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_195_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi195TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_195_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi195TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_195_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi196TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_196_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi196TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_196_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi196TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_196_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi196TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_196_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi197TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_197_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi197TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_197_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi197TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_197_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi197TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_197_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi198TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_198_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi198TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_198_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi198TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_198_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi198TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_198_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi199TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_199_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi199TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_199_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi199TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_199_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi199TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_199_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi200TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_200_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi200TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_200_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi200TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_200_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi200TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_200_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi201TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_201_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi201TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_201_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi201TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_201_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi201TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_201_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi202TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_202_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi202TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_202_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi202TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_202_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi202TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_202_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi203TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_203_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi203TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_203_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi203TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_203_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi203TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_203_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi204TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_204_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi204TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_204_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi204TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_204_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi204TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_204_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi205TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_205_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi205TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_205_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi205TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_205_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi205TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_205_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi206TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_206_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi206TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_206_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi206TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_206_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi206TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_206_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi207TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_207_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi207TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_207_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi207TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_207_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi207TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_207_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi208TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_208_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi208TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_208_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi208TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_208_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi208TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_208_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi209TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_209_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi209TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_209_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi209TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_209_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi209TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_209_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi210TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_210_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi210TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_210_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi210TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_210_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi210TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_210_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi211TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_211_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi211TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_211_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi211TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_211_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi211TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_211_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi212TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_212_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi212TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_212_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi212TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_212_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi212TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_212_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi213TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_213_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi213TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_213_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi213TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_213_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi213TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_213_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi214TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_214_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi214TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_214_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi214TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_214_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi214TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_214_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi215TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_215_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi215TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_215_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi215TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_215_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi215TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_215_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi216TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_216_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi216TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_216_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi216TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_216_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi216TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_216_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi217TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_217_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi217TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_217_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi217TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_217_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi217TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_217_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi218TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_218_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi218TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_218_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi218TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_218_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi218TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_218_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi219TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_219_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi219TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_219_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi219TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_219_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi219TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_219_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi220TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_220_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi220TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_220_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi220TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_220_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi220TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_220_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi221TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_221_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi221TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_221_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi221TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_221_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi221TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_221_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi222TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_222_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi222TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_222_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi222TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_222_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi222TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_222_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi223TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_223_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi223TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_223_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi223TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_223_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi223TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_223_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi224TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_224_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi224TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_224_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi224TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_224_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi224TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_224_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi225TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_225_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi225TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_225_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi225TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_225_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi225TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_225_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi226TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_226_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi226TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_226_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi226TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_226_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi226TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_226_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi227TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_227_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi227TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_227_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi227TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_227_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi227TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_227_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi228TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_228_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi228TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_228_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi228TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_228_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi228TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_228_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi229TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_229_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi229TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_229_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi229TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_229_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi229TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_229_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi230TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_230_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi230TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_230_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi230TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_230_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi230TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_230_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi231TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_231_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi231TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_231_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi231TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_231_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi231TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_231_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi232TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_232_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi232TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_232_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi232TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_232_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi232TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_232_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi233TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_233_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi233TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_233_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi233TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_233_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi233TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_233_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi234TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_234_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi234TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_234_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi234TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_234_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi234TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_234_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi235TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_235_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi235TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_235_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi235TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_235_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi235TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_235_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi236TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_236_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi236TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_236_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi236TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_236_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi236TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_236_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi237TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_237_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi237TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_237_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi237TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_237_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi237TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_237_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi238TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_238_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi238TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_238_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi238TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_238_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi238TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_238_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi239TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_239_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi239TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_239_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi239TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_239_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi239TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_239_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi240TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_240_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi240TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_240_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi240TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_240_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi240TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_240_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi241TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_241_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi241TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_241_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi241TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_241_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi241TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_241_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi242TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_242_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi242TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_242_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi242TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_242_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi242TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_242_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi243TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_243_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi243TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_243_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi243TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_243_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi243TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_243_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi244TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_244_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi244TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_244_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi244TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_244_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi244TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_244_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi245TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_245_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi245TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_245_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi245TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_245_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi245TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_245_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi246TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_246_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi246TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_246_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi246TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_246_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi246TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_246_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi247TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_247_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi247TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_247_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi247TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_247_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi247TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_247_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi248TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_248_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi248TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_248_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi248TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_248_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi248TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_248_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi249TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_249_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi249TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_249_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi249TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_249_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi249TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_249_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi250TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_250_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi250TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_250_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi250TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_250_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi250TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_250_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi251TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_251_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi251TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_251_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi251TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_251_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi251TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_251_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi252TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_252_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi252TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_252_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi252TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_252_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi252TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_252_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi253TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_253_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi253TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_253_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi253TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_253_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi253TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_253_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi254TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_254_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi254TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_254_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi254TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_254_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi254TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_254_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi255TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_255_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi255TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_255_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi255TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_255_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi255TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_255_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi256TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_256_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi256TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_256_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi256TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_256_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi256TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_256_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi257TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_257_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi257TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_257_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi257TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_257_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi257TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_257_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi258TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_258_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi258TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_258_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi258TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_258_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi258TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_258_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi259TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_259_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi259TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_259_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi259TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_259_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi259TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_259_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi260TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_260_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi260TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_260_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi260TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_260_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi260TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_260_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi261TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_261_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi261TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_261_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi261TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_261_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi261TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_261_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi262TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_262_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi262TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_262_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi262TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_262_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi262TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_262_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi263TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_263_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi263TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_263_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi263TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_263_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi263TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_263_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi264TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_264_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi264TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_264_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi264TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_264_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi264TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_264_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi265TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_265_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi265TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_265_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi265TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_265_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi265TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_265_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi266TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_266_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi266TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_266_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi266TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_266_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi266TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_266_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi267TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_267_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi267TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_267_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi267TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_267_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi267TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_267_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi268TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_268_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi268TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_268_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi268TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_268_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi268TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_268_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi269TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_269_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi269TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_269_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi269TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_269_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi269TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_269_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi270TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_270_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi270TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_270_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi270TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_270_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi270TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_270_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi271TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_271_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi271TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_271_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi271TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_271_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi271TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_271_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi272TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_272_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi272TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_272_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi272TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_272_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi272TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_272_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi273TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_273_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi273TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_273_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi273TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_273_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi273TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_273_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi274TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_274_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi274TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_274_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi274TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_274_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi274TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_274_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi275TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_275_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi275TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_275_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi275TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_275_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi275TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_275_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi276TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_276_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi276TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_276_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi276TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_276_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi276TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_276_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi277TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_277_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi277TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_277_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi277TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_277_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi277TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_277_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi278TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_278_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi278TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_278_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi278TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_278_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi278TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_278_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi279TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_279_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi279TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_279_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi279TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_279_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi279TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_279_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi280TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_280_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi280TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_280_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi280TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_280_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi280TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_280_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi281TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_281_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi281TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_281_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi281TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_281_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi281TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_281_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi282TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_282_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi282TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_282_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi282TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_282_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi282TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_282_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi283TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_283_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi283TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_283_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi283TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_283_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi283TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_283_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi284TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_284_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi284TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_284_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi284TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_284_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi284TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_284_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi285TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_285_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi285TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_285_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi285TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_285_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi285TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_285_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi286TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_286_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi286TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_286_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi286TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_286_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi286TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_286_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi287TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_287_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi287TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_287_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi287TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_287_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi287TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_287_tlut_wheel_3"; + +static const ALIGN_ASSET(2) char gKartYoshi288TlutWheel0[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_288_tlut_wheel_0"; + +static const ALIGN_ASSET(2) char gKartYoshi288TlutWheel1[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_288_tlut_wheel_1"; + +static const ALIGN_ASSET(2) char gKartYoshi288TlutWheel2[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_288_tlut_wheel_2"; + +static const ALIGN_ASSET(2) char gKartYoshi288TlutWheel3[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_288_tlut_wheel_3"; + +static const char* yoshi_kart_wheels[] = { + gKartYoshi000TlutWheel0, + gKartYoshi000TlutWheel1, + gKartYoshi000TlutWheel2, + gKartYoshi000TlutWheel3, + gKartYoshi001TlutWheel0, + gKartYoshi001TlutWheel1, + gKartYoshi001TlutWheel2, + gKartYoshi001TlutWheel3, + gKartYoshi002TlutWheel0, + gKartYoshi002TlutWheel1, + gKartYoshi002TlutWheel2, + gKartYoshi002TlutWheel3, + gKartYoshi003TlutWheel0, + gKartYoshi003TlutWheel1, + gKartYoshi003TlutWheel2, + gKartYoshi003TlutWheel3, + gKartYoshi004TlutWheel0, + gKartYoshi004TlutWheel1, + gKartYoshi004TlutWheel2, + gKartYoshi004TlutWheel3, + gKartYoshi005TlutWheel0, + gKartYoshi005TlutWheel1, + gKartYoshi005TlutWheel2, + gKartYoshi005TlutWheel3, + gKartYoshi006TlutWheel0, + gKartYoshi006TlutWheel1, + gKartYoshi006TlutWheel2, + gKartYoshi006TlutWheel3, + gKartYoshi007TlutWheel0, + gKartYoshi007TlutWheel1, + gKartYoshi007TlutWheel2, + gKartYoshi007TlutWheel3, + gKartYoshi008TlutWheel0, + gKartYoshi008TlutWheel1, + gKartYoshi008TlutWheel2, + gKartYoshi008TlutWheel3, + gKartYoshi009TlutWheel0, + gKartYoshi009TlutWheel1, + gKartYoshi009TlutWheel2, + gKartYoshi009TlutWheel3, + gKartYoshi010TlutWheel0, + gKartYoshi010TlutWheel1, + gKartYoshi010TlutWheel2, + gKartYoshi010TlutWheel3, + gKartYoshi011TlutWheel0, + gKartYoshi011TlutWheel1, + gKartYoshi011TlutWheel2, + gKartYoshi011TlutWheel3, + gKartYoshi012TlutWheel0, + gKartYoshi012TlutWheel1, + gKartYoshi012TlutWheel2, + gKartYoshi012TlutWheel3, + gKartYoshi013TlutWheel0, + gKartYoshi013TlutWheel1, + gKartYoshi013TlutWheel2, + gKartYoshi013TlutWheel3, + gKartYoshi014TlutWheel0, + gKartYoshi014TlutWheel1, + gKartYoshi014TlutWheel2, + gKartYoshi014TlutWheel3, + gKartYoshi015TlutWheel0, + gKartYoshi015TlutWheel1, + gKartYoshi015TlutWheel2, + gKartYoshi015TlutWheel3, + gKartYoshi016TlutWheel0, + gKartYoshi016TlutWheel1, + gKartYoshi016TlutWheel2, + gKartYoshi016TlutWheel3, + gKartYoshi017TlutWheel0, + gKartYoshi017TlutWheel1, + gKartYoshi017TlutWheel2, + gKartYoshi017TlutWheel3, + gKartYoshi018TlutWheel0, + gKartYoshi018TlutWheel1, + gKartYoshi018TlutWheel2, + gKartYoshi018TlutWheel3, + gKartYoshi019TlutWheel0, + gKartYoshi019TlutWheel1, + gKartYoshi019TlutWheel2, + gKartYoshi019TlutWheel3, + gKartYoshi020TlutWheel0, + gKartYoshi020TlutWheel1, + gKartYoshi020TlutWheel2, + gKartYoshi020TlutWheel3, + gKartYoshi021TlutWheel0, + gKartYoshi021TlutWheel1, + gKartYoshi021TlutWheel2, + gKartYoshi021TlutWheel3, + gKartYoshi022TlutWheel0, + gKartYoshi022TlutWheel1, + gKartYoshi022TlutWheel2, + gKartYoshi022TlutWheel3, + gKartYoshi023TlutWheel0, + gKartYoshi023TlutWheel1, + gKartYoshi023TlutWheel2, + gKartYoshi023TlutWheel3, + gKartYoshi024TlutWheel0, + gKartYoshi024TlutWheel1, + gKartYoshi024TlutWheel2, + gKartYoshi024TlutWheel3, + gKartYoshi025TlutWheel0, + gKartYoshi025TlutWheel1, + gKartYoshi025TlutWheel2, + gKartYoshi025TlutWheel3, + gKartYoshi026TlutWheel0, + gKartYoshi026TlutWheel1, + gKartYoshi026TlutWheel2, + gKartYoshi026TlutWheel3, + gKartYoshi027TlutWheel0, + gKartYoshi027TlutWheel1, + gKartYoshi027TlutWheel2, + gKartYoshi027TlutWheel3, + gKartYoshi028TlutWheel0, + gKartYoshi028TlutWheel1, + gKartYoshi028TlutWheel2, + gKartYoshi028TlutWheel3, + gKartYoshi029TlutWheel0, + gKartYoshi029TlutWheel1, + gKartYoshi029TlutWheel2, + gKartYoshi029TlutWheel3, + gKartYoshi030TlutWheel0, + gKartYoshi030TlutWheel1, + gKartYoshi030TlutWheel2, + gKartYoshi030TlutWheel3, + gKartYoshi031TlutWheel0, + gKartYoshi031TlutWheel1, + gKartYoshi031TlutWheel2, + gKartYoshi031TlutWheel3, + gKartYoshi032TlutWheel0, + gKartYoshi032TlutWheel1, + gKartYoshi032TlutWheel2, + gKartYoshi032TlutWheel3, + gKartYoshi033TlutWheel0, + gKartYoshi033TlutWheel1, + gKartYoshi033TlutWheel2, + gKartYoshi033TlutWheel3, + gKartYoshi034TlutWheel0, + gKartYoshi034TlutWheel1, + gKartYoshi034TlutWheel2, + gKartYoshi034TlutWheel3, + gKartYoshi035TlutWheel0, + gKartYoshi035TlutWheel1, + gKartYoshi035TlutWheel2, + gKartYoshi035TlutWheel3, + gKartYoshi036TlutWheel0, + gKartYoshi036TlutWheel1, + gKartYoshi036TlutWheel2, + gKartYoshi036TlutWheel3, + gKartYoshi037TlutWheel0, + gKartYoshi037TlutWheel1, + gKartYoshi037TlutWheel2, + gKartYoshi037TlutWheel3, + gKartYoshi038TlutWheel0, + gKartYoshi038TlutWheel1, + gKartYoshi038TlutWheel2, + gKartYoshi038TlutWheel3, + gKartYoshi039TlutWheel0, + gKartYoshi039TlutWheel1, + gKartYoshi039TlutWheel2, + gKartYoshi039TlutWheel3, + gKartYoshi040TlutWheel0, + gKartYoshi040TlutWheel1, + gKartYoshi040TlutWheel2, + gKartYoshi040TlutWheel3, + gKartYoshi041TlutWheel0, + gKartYoshi041TlutWheel1, + gKartYoshi041TlutWheel2, + gKartYoshi041TlutWheel3, + gKartYoshi042TlutWheel0, + gKartYoshi042TlutWheel1, + gKartYoshi042TlutWheel2, + gKartYoshi042TlutWheel3, + gKartYoshi043TlutWheel0, + gKartYoshi043TlutWheel1, + gKartYoshi043TlutWheel2, + gKartYoshi043TlutWheel3, + gKartYoshi044TlutWheel0, + gKartYoshi044TlutWheel1, + gKartYoshi044TlutWheel2, + gKartYoshi044TlutWheel3, + gKartYoshi045TlutWheel0, + gKartYoshi045TlutWheel1, + gKartYoshi045TlutWheel2, + gKartYoshi045TlutWheel3, + gKartYoshi046TlutWheel0, + gKartYoshi046TlutWheel1, + gKartYoshi046TlutWheel2, + gKartYoshi046TlutWheel3, + gKartYoshi047TlutWheel0, + gKartYoshi047TlutWheel1, + gKartYoshi047TlutWheel2, + gKartYoshi047TlutWheel3, + gKartYoshi048TlutWheel0, + gKartYoshi048TlutWheel1, + gKartYoshi048TlutWheel2, + gKartYoshi048TlutWheel3, + gKartYoshi049TlutWheel0, + gKartYoshi049TlutWheel1, + gKartYoshi049TlutWheel2, + gKartYoshi049TlutWheel3, + gKartYoshi050TlutWheel0, + gKartYoshi050TlutWheel1, + gKartYoshi050TlutWheel2, + gKartYoshi050TlutWheel3, + gKartYoshi051TlutWheel0, + gKartYoshi051TlutWheel1, + gKartYoshi051TlutWheel2, + gKartYoshi051TlutWheel3, + gKartYoshi052TlutWheel0, + gKartYoshi052TlutWheel1, + gKartYoshi052TlutWheel2, + gKartYoshi052TlutWheel3, + gKartYoshi053TlutWheel0, + gKartYoshi053TlutWheel1, + gKartYoshi053TlutWheel2, + gKartYoshi053TlutWheel3, + gKartYoshi054TlutWheel0, + gKartYoshi054TlutWheel1, + gKartYoshi054TlutWheel2, + gKartYoshi054TlutWheel3, + gKartYoshi055TlutWheel0, + gKartYoshi055TlutWheel1, + gKartYoshi055TlutWheel2, + gKartYoshi055TlutWheel3, + gKartYoshi056TlutWheel0, + gKartYoshi056TlutWheel1, + gKartYoshi056TlutWheel2, + gKartYoshi056TlutWheel3, + gKartYoshi057TlutWheel0, + gKartYoshi057TlutWheel1, + gKartYoshi057TlutWheel2, + gKartYoshi057TlutWheel3, + gKartYoshi058TlutWheel0, + gKartYoshi058TlutWheel1, + gKartYoshi058TlutWheel2, + gKartYoshi058TlutWheel3, + gKartYoshi059TlutWheel0, + gKartYoshi059TlutWheel1, + gKartYoshi059TlutWheel2, + gKartYoshi059TlutWheel3, + gKartYoshi060TlutWheel0, + gKartYoshi060TlutWheel1, + gKartYoshi060TlutWheel2, + gKartYoshi060TlutWheel3, + gKartYoshi061TlutWheel0, + gKartYoshi061TlutWheel1, + gKartYoshi061TlutWheel2, + gKartYoshi061TlutWheel3, + gKartYoshi062TlutWheel0, + gKartYoshi062TlutWheel1, + gKartYoshi062TlutWheel2, + gKartYoshi062TlutWheel3, + gKartYoshi063TlutWheel0, + gKartYoshi063TlutWheel1, + gKartYoshi063TlutWheel2, + gKartYoshi063TlutWheel3, + gKartYoshi064TlutWheel0, + gKartYoshi064TlutWheel1, + gKartYoshi064TlutWheel2, + gKartYoshi064TlutWheel3, + gKartYoshi065TlutWheel0, + gKartYoshi065TlutWheel1, + gKartYoshi065TlutWheel2, + gKartYoshi065TlutWheel3, + gKartYoshi066TlutWheel0, + gKartYoshi066TlutWheel1, + gKartYoshi066TlutWheel2, + gKartYoshi066TlutWheel3, + gKartYoshi067TlutWheel0, + gKartYoshi067TlutWheel1, + gKartYoshi067TlutWheel2, + gKartYoshi067TlutWheel3, + gKartYoshi068TlutWheel0, + gKartYoshi068TlutWheel1, + gKartYoshi068TlutWheel2, + gKartYoshi068TlutWheel3, + gKartYoshi069TlutWheel0, + gKartYoshi069TlutWheel1, + gKartYoshi069TlutWheel2, + gKartYoshi069TlutWheel3, + gKartYoshi070TlutWheel0, + gKartYoshi070TlutWheel1, + gKartYoshi070TlutWheel2, + gKartYoshi070TlutWheel3, + gKartYoshi071TlutWheel0, + gKartYoshi071TlutWheel1, + gKartYoshi071TlutWheel2, + gKartYoshi071TlutWheel3, + gKartYoshi072TlutWheel0, + gKartYoshi072TlutWheel1, + gKartYoshi072TlutWheel2, + gKartYoshi072TlutWheel3, + gKartYoshi073TlutWheel0, + gKartYoshi073TlutWheel1, + gKartYoshi073TlutWheel2, + gKartYoshi073TlutWheel3, + gKartYoshi074TlutWheel0, + gKartYoshi074TlutWheel1, + gKartYoshi074TlutWheel2, + gKartYoshi074TlutWheel3, + gKartYoshi075TlutWheel0, + gKartYoshi075TlutWheel1, + gKartYoshi075TlutWheel2, + gKartYoshi075TlutWheel3, + gKartYoshi076TlutWheel0, + gKartYoshi076TlutWheel1, + gKartYoshi076TlutWheel2, + gKartYoshi076TlutWheel3, + gKartYoshi077TlutWheel0, + gKartYoshi077TlutWheel1, + gKartYoshi077TlutWheel2, + gKartYoshi077TlutWheel3, + gKartYoshi078TlutWheel0, + gKartYoshi078TlutWheel1, + gKartYoshi078TlutWheel2, + gKartYoshi078TlutWheel3, + gKartYoshi079TlutWheel0, + gKartYoshi079TlutWheel1, + gKartYoshi079TlutWheel2, + gKartYoshi079TlutWheel3, + gKartYoshi080TlutWheel0, + gKartYoshi080TlutWheel1, + gKartYoshi080TlutWheel2, + gKartYoshi080TlutWheel3, + gKartYoshi081TlutWheel0, + gKartYoshi081TlutWheel1, + gKartYoshi081TlutWheel2, + gKartYoshi081TlutWheel3, + gKartYoshi082TlutWheel0, + gKartYoshi082TlutWheel1, + gKartYoshi082TlutWheel2, + gKartYoshi082TlutWheel3, + gKartYoshi083TlutWheel0, + gKartYoshi083TlutWheel1, + gKartYoshi083TlutWheel2, + gKartYoshi083TlutWheel3, + gKartYoshi084TlutWheel0, + gKartYoshi084TlutWheel1, + gKartYoshi084TlutWheel2, + gKartYoshi084TlutWheel3, + gKartYoshi085TlutWheel0, + gKartYoshi085TlutWheel1, + gKartYoshi085TlutWheel2, + gKartYoshi085TlutWheel3, + gKartYoshi086TlutWheel0, + gKartYoshi086TlutWheel1, + gKartYoshi086TlutWheel2, + gKartYoshi086TlutWheel3, + gKartYoshi087TlutWheel0, + gKartYoshi087TlutWheel1, + gKartYoshi087TlutWheel2, + gKartYoshi087TlutWheel3, + gKartYoshi088TlutWheel0, + gKartYoshi088TlutWheel1, + gKartYoshi088TlutWheel2, + gKartYoshi088TlutWheel3, + gKartYoshi089TlutWheel0, + gKartYoshi089TlutWheel1, + gKartYoshi089TlutWheel2, + gKartYoshi089TlutWheel3, + gKartYoshi090TlutWheel0, + gKartYoshi090TlutWheel1, + gKartYoshi090TlutWheel2, + gKartYoshi090TlutWheel3, + gKartYoshi091TlutWheel0, + gKartYoshi091TlutWheel1, + gKartYoshi091TlutWheel2, + gKartYoshi091TlutWheel3, + gKartYoshi092TlutWheel0, + gKartYoshi092TlutWheel1, + gKartYoshi092TlutWheel2, + gKartYoshi092TlutWheel3, + gKartYoshi093TlutWheel0, + gKartYoshi093TlutWheel1, + gKartYoshi093TlutWheel2, + gKartYoshi093TlutWheel3, + gKartYoshi094TlutWheel0, + gKartYoshi094TlutWheel1, + gKartYoshi094TlutWheel2, + gKartYoshi094TlutWheel3, + gKartYoshi095TlutWheel0, + gKartYoshi095TlutWheel1, + gKartYoshi095TlutWheel2, + gKartYoshi095TlutWheel3, + gKartYoshi096TlutWheel0, + gKartYoshi096TlutWheel1, + gKartYoshi096TlutWheel2, + gKartYoshi096TlutWheel3, + gKartYoshi097TlutWheel0, + gKartYoshi097TlutWheel1, + gKartYoshi097TlutWheel2, + gKartYoshi097TlutWheel3, + gKartYoshi098TlutWheel0, + gKartYoshi098TlutWheel1, + gKartYoshi098TlutWheel2, + gKartYoshi098TlutWheel3, + gKartYoshi099TlutWheel0, + gKartYoshi099TlutWheel1, + gKartYoshi099TlutWheel2, + gKartYoshi099TlutWheel3, + gKartYoshi100TlutWheel0, + gKartYoshi100TlutWheel1, + gKartYoshi100TlutWheel2, + gKartYoshi100TlutWheel3, + gKartYoshi101TlutWheel0, + gKartYoshi101TlutWheel1, + gKartYoshi101TlutWheel2, + gKartYoshi101TlutWheel3, + gKartYoshi102TlutWheel0, + gKartYoshi102TlutWheel1, + gKartYoshi102TlutWheel2, + gKartYoshi102TlutWheel3, + gKartYoshi103TlutWheel0, + gKartYoshi103TlutWheel1, + gKartYoshi103TlutWheel2, + gKartYoshi103TlutWheel3, + gKartYoshi104TlutWheel0, + gKartYoshi104TlutWheel1, + gKartYoshi104TlutWheel2, + gKartYoshi104TlutWheel3, + gKartYoshi105TlutWheel0, + gKartYoshi105TlutWheel1, + gKartYoshi105TlutWheel2, + gKartYoshi105TlutWheel3, + gKartYoshi106TlutWheel0, + gKartYoshi106TlutWheel1, + gKartYoshi106TlutWheel2, + gKartYoshi106TlutWheel3, + gKartYoshi107TlutWheel0, + gKartYoshi107TlutWheel1, + gKartYoshi107TlutWheel2, + gKartYoshi107TlutWheel3, + gKartYoshi108TlutWheel0, + gKartYoshi108TlutWheel1, + gKartYoshi108TlutWheel2, + gKartYoshi108TlutWheel3, + gKartYoshi109TlutWheel0, + gKartYoshi109TlutWheel1, + gKartYoshi109TlutWheel2, + gKartYoshi109TlutWheel3, + gKartYoshi110TlutWheel0, + gKartYoshi110TlutWheel1, + gKartYoshi110TlutWheel2, + gKartYoshi110TlutWheel3, + gKartYoshi111TlutWheel0, + gKartYoshi111TlutWheel1, + gKartYoshi111TlutWheel2, + gKartYoshi111TlutWheel3, + gKartYoshi112TlutWheel0, + gKartYoshi112TlutWheel1, + gKartYoshi112TlutWheel2, + gKartYoshi112TlutWheel3, + gKartYoshi113TlutWheel0, + gKartYoshi113TlutWheel1, + gKartYoshi113TlutWheel2, + gKartYoshi113TlutWheel3, + gKartYoshi114TlutWheel0, + gKartYoshi114TlutWheel1, + gKartYoshi114TlutWheel2, + gKartYoshi114TlutWheel3, + gKartYoshi115TlutWheel0, + gKartYoshi115TlutWheel1, + gKartYoshi115TlutWheel2, + gKartYoshi115TlutWheel3, + gKartYoshi116TlutWheel0, + gKartYoshi116TlutWheel1, + gKartYoshi116TlutWheel2, + gKartYoshi116TlutWheel3, + gKartYoshi117TlutWheel0, + gKartYoshi117TlutWheel1, + gKartYoshi117TlutWheel2, + gKartYoshi117TlutWheel3, + gKartYoshi118TlutWheel0, + gKartYoshi118TlutWheel1, + gKartYoshi118TlutWheel2, + gKartYoshi118TlutWheel3, + gKartYoshi119TlutWheel0, + gKartYoshi119TlutWheel1, + gKartYoshi119TlutWheel2, + gKartYoshi119TlutWheel3, + gKartYoshi120TlutWheel0, + gKartYoshi120TlutWheel1, + gKartYoshi120TlutWheel2, + gKartYoshi120TlutWheel3, + gKartYoshi121TlutWheel0, + gKartYoshi121TlutWheel1, + gKartYoshi121TlutWheel2, + gKartYoshi121TlutWheel3, + gKartYoshi122TlutWheel0, + gKartYoshi122TlutWheel1, + gKartYoshi122TlutWheel2, + gKartYoshi122TlutWheel3, + gKartYoshi123TlutWheel0, + gKartYoshi123TlutWheel1, + gKartYoshi123TlutWheel2, + gKartYoshi123TlutWheel3, + gKartYoshi124TlutWheel0, + gKartYoshi124TlutWheel1, + gKartYoshi124TlutWheel2, + gKartYoshi124TlutWheel3, + gKartYoshi125TlutWheel0, + gKartYoshi125TlutWheel1, + gKartYoshi125TlutWheel2, + gKartYoshi125TlutWheel3, + gKartYoshi126TlutWheel0, + gKartYoshi126TlutWheel1, + gKartYoshi126TlutWheel2, + gKartYoshi126TlutWheel3, + gKartYoshi127TlutWheel0, + gKartYoshi127TlutWheel1, + gKartYoshi127TlutWheel2, + gKartYoshi127TlutWheel3, + gKartYoshi128TlutWheel0, + gKartYoshi128TlutWheel1, + gKartYoshi128TlutWheel2, + gKartYoshi128TlutWheel3, + gKartYoshi129TlutWheel0, + gKartYoshi129TlutWheel1, + gKartYoshi129TlutWheel2, + gKartYoshi129TlutWheel3, + gKartYoshi130TlutWheel0, + gKartYoshi130TlutWheel1, + gKartYoshi130TlutWheel2, + gKartYoshi130TlutWheel3, + gKartYoshi131TlutWheel0, + gKartYoshi131TlutWheel1, + gKartYoshi131TlutWheel2, + gKartYoshi131TlutWheel3, + gKartYoshi132TlutWheel0, + gKartYoshi132TlutWheel1, + gKartYoshi132TlutWheel2, + gKartYoshi132TlutWheel3, + gKartYoshi133TlutWheel0, + gKartYoshi133TlutWheel1, + gKartYoshi133TlutWheel2, + gKartYoshi133TlutWheel3, + gKartYoshi134TlutWheel0, + gKartYoshi134TlutWheel1, + gKartYoshi134TlutWheel2, + gKartYoshi134TlutWheel3, + gKartYoshi135TlutWheel0, + gKartYoshi135TlutWheel1, + gKartYoshi135TlutWheel2, + gKartYoshi135TlutWheel3, + gKartYoshi136TlutWheel0, + gKartYoshi136TlutWheel1, + gKartYoshi136TlutWheel2, + gKartYoshi136TlutWheel3, + gKartYoshi137TlutWheel0, + gKartYoshi137TlutWheel1, + gKartYoshi137TlutWheel2, + gKartYoshi137TlutWheel3, + gKartYoshi138TlutWheel0, + gKartYoshi138TlutWheel1, + gKartYoshi138TlutWheel2, + gKartYoshi138TlutWheel3, + gKartYoshi139TlutWheel0, + gKartYoshi139TlutWheel1, + gKartYoshi139TlutWheel2, + gKartYoshi139TlutWheel3, + gKartYoshi140TlutWheel0, + gKartYoshi140TlutWheel1, + gKartYoshi140TlutWheel2, + gKartYoshi140TlutWheel3, + gKartYoshi141TlutWheel0, + gKartYoshi141TlutWheel1, + gKartYoshi141TlutWheel2, + gKartYoshi141TlutWheel3, + gKartYoshi142TlutWheel0, + gKartYoshi142TlutWheel1, + gKartYoshi142TlutWheel2, + gKartYoshi142TlutWheel3, + gKartYoshi143TlutWheel0, + gKartYoshi143TlutWheel1, + gKartYoshi143TlutWheel2, + gKartYoshi143TlutWheel3, + gKartYoshi144TlutWheel0, + gKartYoshi144TlutWheel1, + gKartYoshi144TlutWheel2, + gKartYoshi144TlutWheel3, + gKartYoshi145TlutWheel0, + gKartYoshi145TlutWheel1, + gKartYoshi145TlutWheel2, + gKartYoshi145TlutWheel3, + gKartYoshi146TlutWheel0, + gKartYoshi146TlutWheel1, + gKartYoshi146TlutWheel2, + gKartYoshi146TlutWheel3, + gKartYoshi147TlutWheel0, + gKartYoshi147TlutWheel1, + gKartYoshi147TlutWheel2, + gKartYoshi147TlutWheel3, + gKartYoshi148TlutWheel0, + gKartYoshi148TlutWheel1, + gKartYoshi148TlutWheel2, + gKartYoshi148TlutWheel3, + gKartYoshi149TlutWheel0, + gKartYoshi149TlutWheel1, + gKartYoshi149TlutWheel2, + gKartYoshi149TlutWheel3, + gKartYoshi150TlutWheel0, + gKartYoshi150TlutWheel1, + gKartYoshi150TlutWheel2, + gKartYoshi150TlutWheel3, + gKartYoshi151TlutWheel0, + gKartYoshi151TlutWheel1, + gKartYoshi151TlutWheel2, + gKartYoshi151TlutWheel3, + gKartYoshi152TlutWheel0, + gKartYoshi152TlutWheel1, + gKartYoshi152TlutWheel2, + gKartYoshi152TlutWheel3, + gKartYoshi153TlutWheel0, + gKartYoshi153TlutWheel1, + gKartYoshi153TlutWheel2, + gKartYoshi153TlutWheel3, + gKartYoshi154TlutWheel0, + gKartYoshi154TlutWheel1, + gKartYoshi154TlutWheel2, + gKartYoshi154TlutWheel3, + gKartYoshi155TlutWheel0, + gKartYoshi155TlutWheel1, + gKartYoshi155TlutWheel2, + gKartYoshi155TlutWheel3, + gKartYoshi156TlutWheel0, + gKartYoshi156TlutWheel1, + gKartYoshi156TlutWheel2, + gKartYoshi156TlutWheel3, + gKartYoshi157TlutWheel0, + gKartYoshi157TlutWheel1, + gKartYoshi157TlutWheel2, + gKartYoshi157TlutWheel3, + gKartYoshi158TlutWheel0, + gKartYoshi158TlutWheel1, + gKartYoshi158TlutWheel2, + gKartYoshi158TlutWheel3, + gKartYoshi159TlutWheel0, + gKartYoshi159TlutWheel1, + gKartYoshi159TlutWheel2, + gKartYoshi159TlutWheel3, + gKartYoshi160TlutWheel0, + gKartYoshi160TlutWheel1, + gKartYoshi160TlutWheel2, + gKartYoshi160TlutWheel3, + gKartYoshi161TlutWheel0, + gKartYoshi161TlutWheel1, + gKartYoshi161TlutWheel2, + gKartYoshi161TlutWheel3, + gKartYoshi162TlutWheel0, + gKartYoshi162TlutWheel1, + gKartYoshi162TlutWheel2, + gKartYoshi162TlutWheel3, + gKartYoshi163TlutWheel0, + gKartYoshi163TlutWheel1, + gKartYoshi163TlutWheel2, + gKartYoshi163TlutWheel3, + gKartYoshi164TlutWheel0, + gKartYoshi164TlutWheel1, + gKartYoshi164TlutWheel2, + gKartYoshi164TlutWheel3, + gKartYoshi165TlutWheel0, + gKartYoshi165TlutWheel1, + gKartYoshi165TlutWheel2, + gKartYoshi165TlutWheel3, + gKartYoshi166TlutWheel0, + gKartYoshi166TlutWheel1, + gKartYoshi166TlutWheel2, + gKartYoshi166TlutWheel3, + gKartYoshi167TlutWheel0, + gKartYoshi167TlutWheel1, + gKartYoshi167TlutWheel2, + gKartYoshi167TlutWheel3, + gKartYoshi168TlutWheel0, + gKartYoshi168TlutWheel1, + gKartYoshi168TlutWheel2, + gKartYoshi168TlutWheel3, + gKartYoshi169TlutWheel0, + gKartYoshi169TlutWheel1, + gKartYoshi169TlutWheel2, + gKartYoshi169TlutWheel3, + gKartYoshi170TlutWheel0, + gKartYoshi170TlutWheel1, + gKartYoshi170TlutWheel2, + gKartYoshi170TlutWheel3, + gKartYoshi171TlutWheel0, + gKartYoshi171TlutWheel1, + gKartYoshi171TlutWheel2, + gKartYoshi171TlutWheel3, + gKartYoshi172TlutWheel0, + gKartYoshi172TlutWheel1, + gKartYoshi172TlutWheel2, + gKartYoshi172TlutWheel3, + gKartYoshi173TlutWheel0, + gKartYoshi173TlutWheel1, + gKartYoshi173TlutWheel2, + gKartYoshi173TlutWheel3, + gKartYoshi174TlutWheel0, + gKartYoshi174TlutWheel1, + gKartYoshi174TlutWheel2, + gKartYoshi174TlutWheel3, + gKartYoshi175TlutWheel0, + gKartYoshi175TlutWheel1, + gKartYoshi175TlutWheel2, + gKartYoshi175TlutWheel3, + gKartYoshi176TlutWheel0, + gKartYoshi176TlutWheel1, + gKartYoshi176TlutWheel2, + gKartYoshi176TlutWheel3, + gKartYoshi177TlutWheel0, + gKartYoshi177TlutWheel1, + gKartYoshi177TlutWheel2, + gKartYoshi177TlutWheel3, + gKartYoshi178TlutWheel0, + gKartYoshi178TlutWheel1, + gKartYoshi178TlutWheel2, + gKartYoshi178TlutWheel3, + gKartYoshi179TlutWheel0, + gKartYoshi179TlutWheel1, + gKartYoshi179TlutWheel2, + gKartYoshi179TlutWheel3, + gKartYoshi180TlutWheel0, + gKartYoshi180TlutWheel1, + gKartYoshi180TlutWheel2, + gKartYoshi180TlutWheel3, + gKartYoshi181TlutWheel0, + gKartYoshi181TlutWheel1, + gKartYoshi181TlutWheel2, + gKartYoshi181TlutWheel3, + gKartYoshi182TlutWheel0, + gKartYoshi182TlutWheel1, + gKartYoshi182TlutWheel2, + gKartYoshi182TlutWheel3, + gKartYoshi183TlutWheel0, + gKartYoshi183TlutWheel1, + gKartYoshi183TlutWheel2, + gKartYoshi183TlutWheel3, + gKartYoshi184TlutWheel0, + gKartYoshi184TlutWheel1, + gKartYoshi184TlutWheel2, + gKartYoshi184TlutWheel3, + gKartYoshi185TlutWheel0, + gKartYoshi185TlutWheel1, + gKartYoshi185TlutWheel2, + gKartYoshi185TlutWheel3, + gKartYoshi186TlutWheel0, + gKartYoshi186TlutWheel1, + gKartYoshi186TlutWheel2, + gKartYoshi186TlutWheel3, + gKartYoshi187TlutWheel0, + gKartYoshi187TlutWheel1, + gKartYoshi187TlutWheel2, + gKartYoshi187TlutWheel3, + gKartYoshi188TlutWheel0, + gKartYoshi188TlutWheel1, + gKartYoshi188TlutWheel2, + gKartYoshi188TlutWheel3, + gKartYoshi189TlutWheel0, + gKartYoshi189TlutWheel1, + gKartYoshi189TlutWheel2, + gKartYoshi189TlutWheel3, + gKartYoshi190TlutWheel0, + gKartYoshi190TlutWheel1, + gKartYoshi190TlutWheel2, + gKartYoshi190TlutWheel3, + gKartYoshi191TlutWheel0, + gKartYoshi191TlutWheel1, + gKartYoshi191TlutWheel2, + gKartYoshi191TlutWheel3, + gKartYoshi192TlutWheel0, + gKartYoshi192TlutWheel1, + gKartYoshi192TlutWheel2, + gKartYoshi192TlutWheel3, + gKartYoshi193TlutWheel0, + gKartYoshi193TlutWheel1, + gKartYoshi193TlutWheel2, + gKartYoshi193TlutWheel3, + gKartYoshi194TlutWheel0, + gKartYoshi194TlutWheel1, + gKartYoshi194TlutWheel2, + gKartYoshi194TlutWheel3, + gKartYoshi195TlutWheel0, + gKartYoshi195TlutWheel1, + gKartYoshi195TlutWheel2, + gKartYoshi195TlutWheel3, + gKartYoshi196TlutWheel0, + gKartYoshi196TlutWheel1, + gKartYoshi196TlutWheel2, + gKartYoshi196TlutWheel3, + gKartYoshi197TlutWheel0, + gKartYoshi197TlutWheel1, + gKartYoshi197TlutWheel2, + gKartYoshi197TlutWheel3, + gKartYoshi198TlutWheel0, + gKartYoshi198TlutWheel1, + gKartYoshi198TlutWheel2, + gKartYoshi198TlutWheel3, + gKartYoshi199TlutWheel0, + gKartYoshi199TlutWheel1, + gKartYoshi199TlutWheel2, + gKartYoshi199TlutWheel3, + gKartYoshi200TlutWheel0, + gKartYoshi200TlutWheel1, + gKartYoshi200TlutWheel2, + gKartYoshi200TlutWheel3, + gKartYoshi201TlutWheel0, + gKartYoshi201TlutWheel1, + gKartYoshi201TlutWheel2, + gKartYoshi201TlutWheel3, + gKartYoshi202TlutWheel0, + gKartYoshi202TlutWheel1, + gKartYoshi202TlutWheel2, + gKartYoshi202TlutWheel3, + gKartYoshi203TlutWheel0, + gKartYoshi203TlutWheel1, + gKartYoshi203TlutWheel2, + gKartYoshi203TlutWheel3, + gKartYoshi204TlutWheel0, + gKartYoshi204TlutWheel1, + gKartYoshi204TlutWheel2, + gKartYoshi204TlutWheel3, + gKartYoshi205TlutWheel0, + gKartYoshi205TlutWheel1, + gKartYoshi205TlutWheel2, + gKartYoshi205TlutWheel3, + gKartYoshi206TlutWheel0, + gKartYoshi206TlutWheel1, + gKartYoshi206TlutWheel2, + gKartYoshi206TlutWheel3, + gKartYoshi207TlutWheel0, + gKartYoshi207TlutWheel1, + gKartYoshi207TlutWheel2, + gKartYoshi207TlutWheel3, + gKartYoshi208TlutWheel0, + gKartYoshi208TlutWheel1, + gKartYoshi208TlutWheel2, + gKartYoshi208TlutWheel3, + gKartYoshi209TlutWheel0, + gKartYoshi209TlutWheel1, + gKartYoshi209TlutWheel2, + gKartYoshi209TlutWheel3, + gKartYoshi210TlutWheel0, + gKartYoshi210TlutWheel1, + gKartYoshi210TlutWheel2, + gKartYoshi210TlutWheel3, + gKartYoshi211TlutWheel0, + gKartYoshi211TlutWheel1, + gKartYoshi211TlutWheel2, + gKartYoshi211TlutWheel3, + gKartYoshi212TlutWheel0, + gKartYoshi212TlutWheel1, + gKartYoshi212TlutWheel2, + gKartYoshi212TlutWheel3, + gKartYoshi213TlutWheel0, + gKartYoshi213TlutWheel1, + gKartYoshi213TlutWheel2, + gKartYoshi213TlutWheel3, + gKartYoshi214TlutWheel0, + gKartYoshi214TlutWheel1, + gKartYoshi214TlutWheel2, + gKartYoshi214TlutWheel3, + gKartYoshi215TlutWheel0, + gKartYoshi215TlutWheel1, + gKartYoshi215TlutWheel2, + gKartYoshi215TlutWheel3, + gKartYoshi216TlutWheel0, + gKartYoshi216TlutWheel1, + gKartYoshi216TlutWheel2, + gKartYoshi216TlutWheel3, + gKartYoshi217TlutWheel0, + gKartYoshi217TlutWheel1, + gKartYoshi217TlutWheel2, + gKartYoshi217TlutWheel3, + gKartYoshi218TlutWheel0, + gKartYoshi218TlutWheel1, + gKartYoshi218TlutWheel2, + gKartYoshi218TlutWheel3, + gKartYoshi219TlutWheel0, + gKartYoshi219TlutWheel1, + gKartYoshi219TlutWheel2, + gKartYoshi219TlutWheel3, + gKartYoshi220TlutWheel0, + gKartYoshi220TlutWheel1, + gKartYoshi220TlutWheel2, + gKartYoshi220TlutWheel3, + gKartYoshi221TlutWheel0, + gKartYoshi221TlutWheel1, + gKartYoshi221TlutWheel2, + gKartYoshi221TlutWheel3, + gKartYoshi222TlutWheel0, + gKartYoshi222TlutWheel1, + gKartYoshi222TlutWheel2, + gKartYoshi222TlutWheel3, + gKartYoshi223TlutWheel0, + gKartYoshi223TlutWheel1, + gKartYoshi223TlutWheel2, + gKartYoshi223TlutWheel3, + gKartYoshi224TlutWheel0, + gKartYoshi224TlutWheel1, + gKartYoshi224TlutWheel2, + gKartYoshi224TlutWheel3, + gKartYoshi225TlutWheel0, + gKartYoshi225TlutWheel1, + gKartYoshi225TlutWheel2, + gKartYoshi225TlutWheel3, + gKartYoshi226TlutWheel0, + gKartYoshi226TlutWheel1, + gKartYoshi226TlutWheel2, + gKartYoshi226TlutWheel3, + gKartYoshi227TlutWheel0, + gKartYoshi227TlutWheel1, + gKartYoshi227TlutWheel2, + gKartYoshi227TlutWheel3, + gKartYoshi228TlutWheel0, + gKartYoshi228TlutWheel1, + gKartYoshi228TlutWheel2, + gKartYoshi228TlutWheel3, + gKartYoshi229TlutWheel0, + gKartYoshi229TlutWheel1, + gKartYoshi229TlutWheel2, + gKartYoshi229TlutWheel3, + gKartYoshi230TlutWheel0, + gKartYoshi230TlutWheel1, + gKartYoshi230TlutWheel2, + gKartYoshi230TlutWheel3, + gKartYoshi231TlutWheel0, + gKartYoshi231TlutWheel1, + gKartYoshi231TlutWheel2, + gKartYoshi231TlutWheel3, + gKartYoshi232TlutWheel0, + gKartYoshi232TlutWheel1, + gKartYoshi232TlutWheel2, + gKartYoshi232TlutWheel3, + gKartYoshi233TlutWheel0, + gKartYoshi233TlutWheel1, + gKartYoshi233TlutWheel2, + gKartYoshi233TlutWheel3, + gKartYoshi234TlutWheel0, + gKartYoshi234TlutWheel1, + gKartYoshi234TlutWheel2, + gKartYoshi234TlutWheel3, + gKartYoshi235TlutWheel0, + gKartYoshi235TlutWheel1, + gKartYoshi235TlutWheel2, + gKartYoshi235TlutWheel3, + gKartYoshi236TlutWheel0, + gKartYoshi236TlutWheel1, + gKartYoshi236TlutWheel2, + gKartYoshi236TlutWheel3, + gKartYoshi237TlutWheel0, + gKartYoshi237TlutWheel1, + gKartYoshi237TlutWheel2, + gKartYoshi237TlutWheel3, + gKartYoshi238TlutWheel0, + gKartYoshi238TlutWheel1, + gKartYoshi238TlutWheel2, + gKartYoshi238TlutWheel3, + gKartYoshi239TlutWheel0, + gKartYoshi239TlutWheel1, + gKartYoshi239TlutWheel2, + gKartYoshi239TlutWheel3, + gKartYoshi240TlutWheel0, + gKartYoshi240TlutWheel1, + gKartYoshi240TlutWheel2, + gKartYoshi240TlutWheel3, + gKartYoshi241TlutWheel0, + gKartYoshi241TlutWheel1, + gKartYoshi241TlutWheel2, + gKartYoshi241TlutWheel3, + gKartYoshi242TlutWheel0, + gKartYoshi242TlutWheel1, + gKartYoshi242TlutWheel2, + gKartYoshi242TlutWheel3, + gKartYoshi243TlutWheel0, + gKartYoshi243TlutWheel1, + gKartYoshi243TlutWheel2, + gKartYoshi243TlutWheel3, + gKartYoshi244TlutWheel0, + gKartYoshi244TlutWheel1, + gKartYoshi244TlutWheel2, + gKartYoshi244TlutWheel3, + gKartYoshi245TlutWheel0, + gKartYoshi245TlutWheel1, + gKartYoshi245TlutWheel2, + gKartYoshi245TlutWheel3, + gKartYoshi246TlutWheel0, + gKartYoshi246TlutWheel1, + gKartYoshi246TlutWheel2, + gKartYoshi246TlutWheel3, + gKartYoshi247TlutWheel0, + gKartYoshi247TlutWheel1, + gKartYoshi247TlutWheel2, + gKartYoshi247TlutWheel3, + gKartYoshi248TlutWheel0, + gKartYoshi248TlutWheel1, + gKartYoshi248TlutWheel2, + gKartYoshi248TlutWheel3, + gKartYoshi249TlutWheel0, + gKartYoshi249TlutWheel1, + gKartYoshi249TlutWheel2, + gKartYoshi249TlutWheel3, + gKartYoshi250TlutWheel0, + gKartYoshi250TlutWheel1, + gKartYoshi250TlutWheel2, + gKartYoshi250TlutWheel3, + gKartYoshi251TlutWheel0, + gKartYoshi251TlutWheel1, + gKartYoshi251TlutWheel2, + gKartYoshi251TlutWheel3, + gKartYoshi252TlutWheel0, + gKartYoshi252TlutWheel1, + gKartYoshi252TlutWheel2, + gKartYoshi252TlutWheel3, + gKartYoshi253TlutWheel0, + gKartYoshi253TlutWheel1, + gKartYoshi253TlutWheel2, + gKartYoshi253TlutWheel3, + gKartYoshi254TlutWheel0, + gKartYoshi254TlutWheel1, + gKartYoshi254TlutWheel2, + gKartYoshi254TlutWheel3, + gKartYoshi255TlutWheel0, + gKartYoshi255TlutWheel1, + gKartYoshi255TlutWheel2, + gKartYoshi255TlutWheel3, + gKartYoshi256TlutWheel0, + gKartYoshi256TlutWheel1, + gKartYoshi256TlutWheel2, + gKartYoshi256TlutWheel3, + gKartYoshi257TlutWheel0, + gKartYoshi257TlutWheel1, + gKartYoshi257TlutWheel2, + gKartYoshi257TlutWheel3, + gKartYoshi258TlutWheel0, + gKartYoshi258TlutWheel1, + gKartYoshi258TlutWheel2, + gKartYoshi258TlutWheel3, + gKartYoshi259TlutWheel0, + gKartYoshi259TlutWheel1, + gKartYoshi259TlutWheel2, + gKartYoshi259TlutWheel3, + gKartYoshi260TlutWheel0, + gKartYoshi260TlutWheel1, + gKartYoshi260TlutWheel2, + gKartYoshi260TlutWheel3, + gKartYoshi261TlutWheel0, + gKartYoshi261TlutWheel1, + gKartYoshi261TlutWheel2, + gKartYoshi261TlutWheel3, + gKartYoshi262TlutWheel0, + gKartYoshi262TlutWheel1, + gKartYoshi262TlutWheel2, + gKartYoshi262TlutWheel3, + gKartYoshi263TlutWheel0, + gKartYoshi263TlutWheel1, + gKartYoshi263TlutWheel2, + gKartYoshi263TlutWheel3, + gKartYoshi264TlutWheel0, + gKartYoshi264TlutWheel1, + gKartYoshi264TlutWheel2, + gKartYoshi264TlutWheel3, + gKartYoshi265TlutWheel0, + gKartYoshi265TlutWheel1, + gKartYoshi265TlutWheel2, + gKartYoshi265TlutWheel3, + gKartYoshi266TlutWheel0, + gKartYoshi266TlutWheel1, + gKartYoshi266TlutWheel2, + gKartYoshi266TlutWheel3, + gKartYoshi267TlutWheel0, + gKartYoshi267TlutWheel1, + gKartYoshi267TlutWheel2, + gKartYoshi267TlutWheel3, + gKartYoshi268TlutWheel0, + gKartYoshi268TlutWheel1, + gKartYoshi268TlutWheel2, + gKartYoshi268TlutWheel3, + gKartYoshi269TlutWheel0, + gKartYoshi269TlutWheel1, + gKartYoshi269TlutWheel2, + gKartYoshi269TlutWheel3, + gKartYoshi270TlutWheel0, + gKartYoshi270TlutWheel1, + gKartYoshi270TlutWheel2, + gKartYoshi270TlutWheel3, + gKartYoshi271TlutWheel0, + gKartYoshi271TlutWheel1, + gKartYoshi271TlutWheel2, + gKartYoshi271TlutWheel3, + gKartYoshi272TlutWheel0, + gKartYoshi272TlutWheel1, + gKartYoshi272TlutWheel2, + gKartYoshi272TlutWheel3, + gKartYoshi273TlutWheel0, + gKartYoshi273TlutWheel1, + gKartYoshi273TlutWheel2, + gKartYoshi273TlutWheel3, + gKartYoshi274TlutWheel0, + gKartYoshi274TlutWheel1, + gKartYoshi274TlutWheel2, + gKartYoshi274TlutWheel3, + gKartYoshi275TlutWheel0, + gKartYoshi275TlutWheel1, + gKartYoshi275TlutWheel2, + gKartYoshi275TlutWheel3, + gKartYoshi276TlutWheel0, + gKartYoshi276TlutWheel1, + gKartYoshi276TlutWheel2, + gKartYoshi276TlutWheel3, + gKartYoshi277TlutWheel0, + gKartYoshi277TlutWheel1, + gKartYoshi277TlutWheel2, + gKartYoshi277TlutWheel3, + gKartYoshi278TlutWheel0, + gKartYoshi278TlutWheel1, + gKartYoshi278TlutWheel2, + gKartYoshi278TlutWheel3, + gKartYoshi279TlutWheel0, + gKartYoshi279TlutWheel1, + gKartYoshi279TlutWheel2, + gKartYoshi279TlutWheel3, + gKartYoshi280TlutWheel0, + gKartYoshi280TlutWheel1, + gKartYoshi280TlutWheel2, + gKartYoshi280TlutWheel3, + gKartYoshi281TlutWheel0, + gKartYoshi281TlutWheel1, + gKartYoshi281TlutWheel2, + gKartYoshi281TlutWheel3, + gKartYoshi282TlutWheel0, + gKartYoshi282TlutWheel1, + gKartYoshi282TlutWheel2, + gKartYoshi282TlutWheel3, + gKartYoshi283TlutWheel0, + gKartYoshi283TlutWheel1, + gKartYoshi283TlutWheel2, + gKartYoshi283TlutWheel3, + gKartYoshi284TlutWheel0, + gKartYoshi284TlutWheel1, + gKartYoshi284TlutWheel2, + gKartYoshi284TlutWheel3, + gKartYoshi285TlutWheel0, + gKartYoshi285TlutWheel1, + gKartYoshi285TlutWheel2, + gKartYoshi285TlutWheel3, + gKartYoshi286TlutWheel0, + gKartYoshi286TlutWheel1, + gKartYoshi286TlutWheel2, + gKartYoshi286TlutWheel3, + gKartYoshi287TlutWheel0, + gKartYoshi287TlutWheel1, + gKartYoshi287TlutWheel2, + gKartYoshi287TlutWheel3, + gKartYoshi288TlutWheel0, + gKartYoshi288TlutWheel1, + gKartYoshi288TlutWheel2, + gKartYoshi288TlutWheel3, +}; + +static const ALIGN_ASSET(2) char gKartYoshiPalette[] = "__OTR__textures/karts/yoshi_kart/yoshi_kart_palette"; + diff --git a/include/assets/textures/other_textures.h b/include/assets/textures/other_textures.h new file mode 100644 index 000000000..56dd99833 --- /dev/null +++ b/include/assets/textures/other_textures.h @@ -0,0 +1,1087 @@ +#pragma once + +#include +#include + +static const ALIGN_ASSET(2) char gTextureSignShellShot0[] = "__OTR__textures/other_textures/sign_shell_shot_0"; + +static const ALIGN_ASSET(2) char gTextureSignShellShot1[] = "__OTR__textures/other_textures/sign_shell_shot_1"; + +static const ALIGN_ASSET(2) char gTextureGrayCheckerboard[] = "__OTR__textures/other_textures/gray_checkerboard"; + +static const ALIGN_ASSET(2) char gTextureGrayCobblestone[] = "__OTR__textures/other_textures/gray_cobblestone"; + +static const ALIGN_ASSET(2) char gTexture64275C[] = "__OTR__textures/other_textures/texture_64275C"; + +static const ALIGN_ASSET(2) char gTexture64286C[] = "__OTR__textures/other_textures/texture_64286C"; + +static const ALIGN_ASSET(2) char gTexture642978[] = "__OTR__textures/other_textures/texture_642978"; + +static const ALIGN_ASSET(2) char gTextureSignBlue64[] = "__OTR__textures/other_textures/sign_blue_64"; + +static const ALIGN_ASSET(2) char gTextureCheckerboardYellowPink[] = "__OTR__textures/other_textures/checkerboard_yellow_pink"; + +static const ALIGN_ASSET(2) char gTexture64313C[] = "__OTR__textures/other_textures/texture_64313C"; + +static const ALIGN_ASSET(2) char gTextureCheckerboardYellowBlue[] = "__OTR__textures/other_textures/checkerbord_yellow_blue"; + +static const ALIGN_ASSET(2) char gTexture643430[] = "__OTR__textures/other_textures/texture_643430"; + +static const ALIGN_ASSET(2) char gTexture643A34[] = "__OTR__textures/other_textures/texture_643A34"; + +static const ALIGN_ASSET(2) char gTexture643B3C[] = "__OTR__textures/other_textures/texture_643B3C"; + +static const ALIGN_ASSET(2) char gTexture6442D4[] = "__OTR__textures/other_textures/texture_6442D4"; + +static const ALIGN_ASSET(2) char gTexture64440C[] = "__OTR__textures/other_textures/texture_64440C"; + +static const ALIGN_ASSET(2) char gTexture6446AC[] = "__OTR__textures/other_textures/texture_6446AC"; + +static const ALIGN_ASSET(2) char gTexture6447C4[] = "__OTR__textures/other_textures/texture_6447C4"; + +static const ALIGN_ASSET(2) char gTextureCheckerboardBlackWhite[] = "__OTR__textures/other_textures/checkerboard_black_white"; + +static const ALIGN_ASSET(2) char gTexture6449D4[] = "__OTR__textures/other_textures/texture_6449D4"; + +static const ALIGN_ASSET(2) char gTexture645134[] = "__OTR__textures/other_textures/texture_645134"; + +static const ALIGN_ASSET(2) char gTexture645660[] = "__OTR__textures/other_textures/texture_645660"; + +static const ALIGN_ASSET(2) char gTexture6457D8[] = "__OTR__textures/other_textures/texture_6457D8"; + +static const ALIGN_ASSET(2) char gTextureCheckerboardBlueGreen[] = "__OTR__textures/other_textures/checkerboard_blue_green"; + +static const ALIGN_ASSET(2) char gTextureNumberYellowBlue1[] = "__OTR__textures/other_textures/number_yellow_blue_1"; + +static const ALIGN_ASSET(2) char gTextureNumberYellowBlue2[] = "__OTR__textures/other_textures/number_yellow_blue_2"; + +static const ALIGN_ASSET(2) char gTextureNumberYellowBlue3[] = "__OTR__textures/other_textures/number_yellow_blue_3"; + +static const ALIGN_ASSET(2) char gTextureNumberYellowBlue4[] = "__OTR__textures/other_textures/number_yellow_blue_4"; + +static const ALIGN_ASSET(2) char gTexture64619C[] = "__OTR__textures/other_textures/texture_64619C"; + +static const ALIGN_ASSET(2) char gTexture6462C0[] = "__OTR__textures/other_textures/texture_6462C0"; + +static const ALIGN_ASSET(2) char gTexture64647C[] = "__OTR__textures/other_textures/texture_64647C"; + +static const ALIGN_ASSET(2) char gTexture646CA8[] = "__OTR__textures/other_textures/texture_646CA8"; + +static const ALIGN_ASSET(2) char gTexture6473E4[] = "__OTR__textures/other_textures/texture_6473E4"; + +static const ALIGN_ASSET(2) char gTexture647994[] = "__OTR__textures/other_textures/texture_647994"; + +static const ALIGN_ASSET(2) char gTexture647F4C[] = "__OTR__textures/other_textures/texture_647F4C"; + +static const ALIGN_ASSET(2) char gTexture648508[] = "__OTR__textures/other_textures/texture_648508"; + +static const ALIGN_ASSET(2) char gTextureGrass1[] = "__OTR__textures/other_textures/grass_1"; + +static const ALIGN_ASSET(2) char gTextureWoodDoor0[] = "__OTR__textures/other_textures/wood_door_0"; + +static const ALIGN_ASSET(2) char gTextureWoodDoor1[] = "__OTR__textures/other_textures/wood_door_1"; + +static const ALIGN_ASSET(2) char gTextureGrass2[] = "__OTR__textures/other_textures/grass_2"; + +static const ALIGN_ASSET(2) char gTextureMooMooFarmSignLeft[] = "__OTR__textures/other_textures/gTextureMooMooFarmSignLeft"; + +static const ALIGN_ASSET(2) char gTextureMooMooFarmSignRight[] = "__OTR__textures/other_textures/gTextureMooMooFarmSignRight"; + +static const ALIGN_ASSET(2) char gTexture64ACAC[] = "__OTR__textures/other_textures/texture_64ACAC"; + +static const ALIGN_ASSET(2) char gTexture64AF50[] = "__OTR__textures/other_textures/texture_64AF50"; + +static const ALIGN_ASSET(2) char gTexture64B090[] = "__OTR__textures/other_textures/texture_64B090"; + +static const ALIGN_ASSET(2) char gTexture64B3F8[] = "__OTR__textures/other_textures/texture_64B3F8"; + +static const ALIGN_ASSET(2) char gTexture64B54C[] = "__OTR__textures/other_textures/texture_64B54C"; + +static const ALIGN_ASSET(2) char gTexture64B8D8[] = "__OTR__textures/other_textures/texture_64B8D8"; + +static const ALIGN_ASSET(2) char gTexture64BA50[] = "__OTR__textures/other_textures/texture_64BA50"; + +static const ALIGN_ASSET(2) char gTexture64BB60[] = "__OTR__textures/other_textures/texture_64BB60"; + +static const ALIGN_ASSET(2) char gTexture64BCCC[] = "__OTR__textures/other_textures/texture_64BCCC"; + +static const ALIGN_ASSET(2) char gTexture64C11C[] = "__OTR__textures/other_textures/texture_64C11C"; + +static const ALIGN_ASSET(2) char gTexture64C7B4[] = "__OTR__textures/other_textures/texture_64C7B4"; + +static const ALIGN_ASSET(2) char gTexture64CC20[] = "__OTR__textures/other_textures/texture_64CC20"; + +static const ALIGN_ASSET(2) char gTextureSignMergingLanes[] = "__OTR__textures/other_textures/sign_merging_lanes"; + +static const ALIGN_ASSET(2) char gTextureGrass3[] = "__OTR__textures/other_textures/grass_3"; + +static const ALIGN_ASSET(2) char gTextureGrass4[] = "__OTR__textures/other_textures/grass_4"; + +static const ALIGN_ASSET(2) char gTextureGrass5[] = "__OTR__textures/other_textures/grass_5"; + +static const ALIGN_ASSET(2) char gTextureGrass6[] = "__OTR__textures/other_textures/grass_6"; + +static const ALIGN_ASSET(2) char gTextureSignNintendo0[] = "__OTR__textures/other_textures/sign_nintendo_0"; + +static const ALIGN_ASSET(2) char gTextureSignNintendo1[] = "__OTR__textures/other_textures/sign_nintendo_1"; + +static const ALIGN_ASSET(2) char gTextureGrass7[] = "__OTR__textures/other_textures/grass_7"; + +static const ALIGN_ASSET(2) char gTexture64F9E8[] = "__OTR__textures/other_textures/texture_64F9E8"; + +static const ALIGN_ASSET(2) char gTexture64FBF4[] = "__OTR__textures/other_textures/texture_64FBF4"; + +static const ALIGN_ASSET(2) char gTexture64FE68[] = "__OTR__textures/other_textures/texture_64FE68"; + +static const ALIGN_ASSET(2) char gTextureWoodBridgeSlats[] = "__OTR__textures/other_textures/wood_bridge_slats"; + +static const ALIGN_ASSET(2) char gTextureFlagRed[] = "__OTR__textures/other_textures/flag_red"; + +static const ALIGN_ASSET(2) char gTexture65100C[] = "__OTR__textures/other_textures/texture_65100C"; + +static const ALIGN_ASSET(2) char gTexture65112C[] = "__OTR__textures/other_textures/texture_65112C"; + +static const ALIGN_ASSET(2) char gTexture65127C[] = "__OTR__textures/other_textures/texture_65127C"; + +static const ALIGN_ASSET(2) char gTexture651428[] = "__OTR__textures/other_textures/texture_651428"; + +static const ALIGN_ASSET(2) char gTexture651984[] = "__OTR__textures/other_textures/texture_651984"; + +static const ALIGN_ASSET(2) char gTexture651B20[] = "__OTR__textures/other_textures/texture_651B20"; + +static const ALIGN_ASSET(2) char gTexture651F40[] = "__OTR__textures/other_textures/texture_651F40"; + +static const ALIGN_ASSET(2) char gTexture6522E0[] = "__OTR__textures/other_textures/texture_6522E0"; + +static const ALIGN_ASSET(2) char gTexture6528DC[] = "__OTR__textures/other_textures/texture_6528DC"; + +static const ALIGN_ASSET(2) char gTexture652B54[] = "__OTR__textures/other_textures/texture_652B54"; + +static const ALIGN_ASSET(2) char gTexture65315C[] = "__OTR__textures/other_textures/texture_65315C"; + +static const ALIGN_ASSET(2) char gTexture653608[] = "__OTR__textures/other_textures/texture_653608"; + +static const ALIGN_ASSET(2) char gTexture653DB0[] = "__OTR__textures/other_textures/texture_653DB0"; + +static const ALIGN_ASSET(2) char gTexture654460[] = "__OTR__textures/other_textures/texture_654460"; + +static const ALIGN_ASSET(2) char gTexture654F74[] = "__OTR__textures/other_textures/texture_654F74"; + +static const ALIGN_ASSET(2) char gTexture655998[] = "__OTR__textures/other_textures/texture_655998"; + +static const ALIGN_ASSET(2) char gTexture655F38[] = "__OTR__textures/other_textures/texture_655F38"; + +static const ALIGN_ASSET(2) char gTexture656AF4[] = "__OTR__textures/other_textures/texture_656AF4"; + +static const ALIGN_ASSET(2) char gTexture6575C8[] = "__OTR__textures/other_textures/texture_6575C8"; + +static const ALIGN_ASSET(2) char gTexture658370[] = "__OTR__textures/other_textures/texture_658370"; + +static const ALIGN_ASSET(2) char gTexture65912C[] = "__OTR__textures/other_textures/texture_65912C"; + +static const ALIGN_ASSET(2) char gTexture659EE8[] = "__OTR__textures/other_textures/texture_659EE8"; + +static const ALIGN_ASSET(2) char gTexture65ADE0[] = "__OTR__textures/other_textures/texture_65ADE0"; + +static const ALIGN_ASSET(2) char gTexture65BB3C[] = "__OTR__textures/other_textures/texture_65BB3C"; + +static const ALIGN_ASSET(2) char gTexture65C8DC[] = "__OTR__textures/other_textures/texture_65C8DC"; + +static const ALIGN_ASSET(2) char gTexture65D5D4[] = "__OTR__textures/other_textures/texture_65D5D4"; + +static const ALIGN_ASSET(2) char gTexture65E2EC[] = "__OTR__textures/other_textures/texture_65E2EC"; + +static const ALIGN_ASSET(2) char gTexture65E59C[] = "__OTR__textures/other_textures/texture_65E59C"; + +static const ALIGN_ASSET(2) char gTexture65EAEC[] = "__OTR__textures/other_textures/texture_65EAEC"; + +static const ALIGN_ASSET(2) char gTexture65EE38[] = "__OTR__textures/other_textures/texture_65EE38"; + +static const ALIGN_ASSET(2) char gTexture65FB18[] = "__OTR__textures/other_textures/texture_65FB18"; + +static const ALIGN_ASSET(2) char gTextureSignPinkArrow[] = "__OTR__textures/other_textures/sign_pink_arrow"; + +static const ALIGN_ASSET(2) char gTextureCrownJewelBlue[] = "__OTR__textures/other_textures/crown_jewel_blue"; + +static const ALIGN_ASSET(2) char gTextureCrown[] = "__OTR__textures/other_textures/crown"; + +static const ALIGN_ASSET(2) char gTextureCrownJewelPink[] = "__OTR__textures/other_textures/crown_jewel_pink"; + +static const ALIGN_ASSET(2) char gTexture6607C0[] = "__OTR__textures/other_textures/texture_6607C0"; + +static const ALIGN_ASSET(2) char gTexture6608C8[] = "__OTR__textures/other_textures/texture_6608C8"; + +static const ALIGN_ASSET(2) char gTexture6609D0[] = "__OTR__textures/other_textures/texture_6609D0"; + +static const ALIGN_ASSET(2) char gTexture660D8C[] = "__OTR__textures/other_textures/texture_660D8C"; + +static const ALIGN_ASSET(2) char gTextureRoofTile[] = "__OTR__textures/other_textures/roof_tile"; + +static const ALIGN_ASSET(2) char gTextureCastleBricks[] = "__OTR__textures/other_textures/castle_bricks"; + +static const ALIGN_ASSET(2) char gTextureCastleBridge[] = "__OTR__textures/other_textures/castle_bridge"; + +static const ALIGN_ASSET(2) char gTextureGrass8[] = "__OTR__textures/other_textures/grass_8"; + +static const ALIGN_ASSET(2) char gTextureGrass9[] = "__OTR__textures/other_textures/grass_9"; + +static const ALIGN_ASSET(2) char gTexture66262C[] = "__OTR__textures/other_textures/texture_66262C"; + +static const ALIGN_ASSET(2) char gTexture662924[] = "__OTR__textures/other_textures/texture_662924"; + +static const ALIGN_ASSET(2) char gTexture662A34[] = "__OTR__textures/other_textures/texture_662A34"; + +static const ALIGN_ASSET(2) char gTextureSignToadYellow[] = "__OTR__textures/other_textures/sign_toad_yellow"; + +static const ALIGN_ASSET(2) char gTextureSignToadGreen[] = "__OTR__textures/other_textures/sign_toad_green"; + +static const ALIGN_ASSET(2) char gTextureSignToadRed[] = "__OTR__textures/other_textures/sign_toad_red"; + +static const ALIGN_ASSET(2) char gTexture663F90[] = "__OTR__textures/other_textures/texture_663F90"; + +static const ALIGN_ASSET(2) char gTexture6640B4[] = "__OTR__textures/other_textures/texture_6640B4"; + +static const ALIGN_ASSET(2) char gTexture6642A4[] = "__OTR__textures/other_textures/texture_6642A4"; + +static const ALIGN_ASSET(2) char gTexture664408[] = "__OTR__textures/other_textures/texture_664408"; + +static const ALIGN_ASSET(2) char gTexture6646B8[] = "__OTR__textures/other_textures/texture_6646B8"; + +static const ALIGN_ASSET(2) char gTextureSignKoopaAir0[] = "__OTR__textures/other_textures/sign_koopa_air_0"; + +static const ALIGN_ASSET(2) char gTextureSignKoopaAir1[] = "__OTR__textures/other_textures/sign_koopa_air_1"; + +static const ALIGN_ASSET(2) char gTextureBricksRed[] = "__OTR__textures/other_textures/bricks_red"; + +static const ALIGN_ASSET(2) char gTexture665C0C[] = "__OTR__textures/other_textures/texture_665C0C"; + +static const ALIGN_ASSET(2) char gTexture6661AC[] = "__OTR__textures/other_textures/texture_6661AC"; + +static const ALIGN_ASSET(2) char gTexture6663A4[] = "__OTR__textures/other_textures/texture_6663A4"; + +static const ALIGN_ASSET(2) char gTextureSignBowser0[] = "__OTR__textures/other_textures/sign_bowser_0"; + +static const ALIGN_ASSET(2) char gTextureSignBowser1[] = "__OTR__textures/other_textures/sign_bowser_1"; + +static const ALIGN_ASSET(2) char gTextureGrass10[] = "__OTR__textures/other_textures/grass_10"; + +static const ALIGN_ASSET(2) char gTextureGrass11[] = "__OTR__textures/other_textures/grass_11"; + +static const ALIGN_ASSET(2) char gTexture667BAC[] = "__OTR__textures/other_textures/texture_667BAC"; + +static const ALIGN_ASSET(2) char gTexture668228[] = "__OTR__textures/other_textures/texture_668228"; + +static const ALIGN_ASSET(2) char gTexture668358[] = "__OTR__textures/other_textures/texture_668358"; + +static const ALIGN_ASSET(2) char gTexture6684F8[] = "__OTR__textures/other_textures/texture_6684F8"; + +static const ALIGN_ASSET(2) char gTexture668608[] = "__OTR__textures/other_textures/texture_668608"; + +static const ALIGN_ASSET(2) char gTexture668728[] = "__OTR__textures/other_textures/texture_668728"; + +static const ALIGN_ASSET(2) char gTexture668920[] = "__OTR__textures/other_textures/texture_668920"; + +static const ALIGN_ASSET(2) char gTextureGrass12[] = "__OTR__textures/other_textures/grass_12"; + +static const ALIGN_ASSET(2) char gTexture669570[] = "__OTR__textures/other_textures/texture_669570"; + +static const ALIGN_ASSET(2) char gTexture66A3DC[] = "__OTR__textures/other_textures/texture_66A3DC"; + +static const ALIGN_ASSET(2) char gTexture66ABA4[] = "__OTR__textures/other_textures/texture_66ABA4"; + +static const ALIGN_ASSET(2) char gTexture66AEB8[] = "__OTR__textures/other_textures/texture_66AEB8"; + +static const ALIGN_ASSET(2) char gTextureSignLuigiFace0[] = "__OTR__textures/other_textures/sign_luigi_face_0"; + +static const ALIGN_ASSET(2) char gTextureSignLuigiFace1[] = "__OTR__textures/other_textures/sign_luigi_face_1"; + +static const ALIGN_ASSET(2) char gTextureSignLuigis0[] = "__OTR__textures/other_textures/sign_luigis_0"; + +static const ALIGN_ASSET(2) char gTextureSignLuigis1[] = "__OTR__textures/other_textures/sign_luigis_1"; + +static const ALIGN_ASSET(2) char gTextureSignMarioStar0[] = "__OTR__textures/other_textures/sign_mario_star_0"; + +static const ALIGN_ASSET(2) char gTextureSignMarioStar1[] = "__OTR__textures/other_textures/sign_mario_star_1"; + +static const ALIGN_ASSET(2) char gTexture66C7A8[] = "__OTR__textures/other_textures/texture_66C7A8"; + +static const ALIGN_ASSET(2) char gTexture66C8F4[] = "__OTR__textures/other_textures/texture_66C8F4"; + +static const ALIGN_ASSET(2) char gTexture66CA98[] = "__OTR__textures/other_textures/texture_66CA98"; + +static const ALIGN_ASSET(2) char gTexture66CD64[] = "__OTR__textures/other_textures/texture_66CD64"; + +static const ALIGN_ASSET(2) char gTexture66D024[] = "__OTR__textures/other_textures/texture_66D024"; + +static const ALIGN_ASSET(2) char gTextureFlagRed2[] = "__OTR__textures/other_textures/flag_red_2"; + +static const ALIGN_ASSET(2) char gTexture66D698[] = "__OTR__textures/other_textures/texture_66D698"; + +static const ALIGN_ASSET(2) char gTextureCheckerboardPink[] = "__OTR__textures/other_textures/checkerboard_pink"; + +static const ALIGN_ASSET(2) char gTexture66DB60[] = "__OTR__textures/other_textures/texture_66DB60"; + +static const ALIGN_ASSET(2) char gTexture66DD38[] = "__OTR__textures/other_textures/texture_66DD38"; + +static const ALIGN_ASSET(2) char gTextureSignNintendoRed0[] = "__OTR__textures/other_textures/sign_nintendo_red_0"; + +static const ALIGN_ASSET(2) char gTextureSignNintendoRed1[] = "__OTR__textures/other_textures/sign_nintendo_red_1"; + +static const ALIGN_ASSET(2) char gTexture66E608[] = "__OTR__textures/other_textures/texture_66E608"; + +static const ALIGN_ASSET(2) char gTexture66EBF0[] = "__OTR__textures/other_textures/texture_66EBF0"; + +static const ALIGN_ASSET(2) char gTexture66ED38[] = "__OTR__textures/other_textures/texture_66ED38"; + +static const ALIGN_ASSET(2) char gTextureStainglassPeach0[] = "__OTR__textures/other_textures/stainglass_peach_0"; + +static const ALIGN_ASSET(2) char gTextureStainglassPeach1[] = "__OTR__textures/other_textures/stainglass_peach_1"; + +static const ALIGN_ASSET(2) char gTexture670AC8[] = "__OTR__textures/other_textures/texture_670AC8"; + +static const ALIGN_ASSET(2) char gTexture671A88[] = "__OTR__textures/other_textures/texture_671A88"; + +static const ALIGN_ASSET(2) char gTextureRailroadTrack[] = "__OTR__textures/other_textures/railroad_track"; + +static const ALIGN_ASSET(2) char gTextureRailroadCrossingTrack[] = "__OTR__textures/other_textures/railroad_crossing_track"; + +static const ALIGN_ASSET(2) char gTexture67291C[] = "__OTR__textures/other_textures/texture_67291C"; + +static const ALIGN_ASSET(2) char gTextureRainbow[] = "__OTR__textures/other_textures/rainbow"; + +static const ALIGN_ASSET(2) char gTexture673118[] = "__OTR__textures/other_textures/texture_673118"; + +static const ALIGN_ASSET(2) char gTexture6733CC[] = "__OTR__textures/other_textures/texture_6733CC"; + +static const ALIGN_ASSET(2) char gTexture6735DC[] = "__OTR__textures/other_textures/texture_6735DC"; + +static const ALIGN_ASSET(2) char gTexture673990[] = "__OTR__textures/other_textures/texture_673990"; + +static const ALIGN_ASSET(2) char gTexture673C68[] = "__OTR__textures/other_textures/texture_673C68"; + +static const ALIGN_ASSET(2) char gTexture673FF8[] = "__OTR__textures/other_textures/texture_673FF8"; + +static const ALIGN_ASSET(2) char gTexture674354[] = "__OTR__textures/other_textures/texture_674354"; + +static const ALIGN_ASSET(2) char gTexture6747C4[] = "__OTR__textures/other_textures/texture_6747C4"; + +static const ALIGN_ASSET(2) char gTexture67490C[] = "__OTR__textures/other_textures/texture_67490C"; + +static const ALIGN_ASSET(2) char gTexture674B28[] = "__OTR__textures/other_textures/texture_674B28"; + +static const ALIGN_ASSET(2) char gTexture674D58[] = "__OTR__textures/other_textures/texture_674D58"; + +static const ALIGN_ASSET(2) char gTexture675064[] = "__OTR__textures/other_textures/texture_675064"; + +static const ALIGN_ASSET(2) char gTexture675220[] = "__OTR__textures/other_textures/texture_675220"; + +static const ALIGN_ASSET(2) char gTexture675434[] = "__OTR__textures/other_textures/texture_675434"; + +static const ALIGN_ASSET(2) char gTextureRoad0[] = "__OTR__textures/other_textures/road_0"; + +static const ALIGN_ASSET(2) char gTextureRoad1[] = "__OTR__textures/other_textures/road_1"; + +static const ALIGN_ASSET(2) char gTextureRoad2[] = "__OTR__textures/other_textures/road_2"; + +static const ALIGN_ASSET(2) char gTextureRoad3[] = "__OTR__textures/other_textures/road_3"; + +static const ALIGN_ASSET(2) char gTextureRoad4[] = "__OTR__textures/other_textures/road_4"; + +static const ALIGN_ASSET(2) char gTextureRoad5[] = "__OTR__textures/other_textures/road_5"; + +static const ALIGN_ASSET(2) char gTextureRoadFinish0[] = "__OTR__textures/other_textures/road_finish_0"; + +static const ALIGN_ASSET(2) char gTextureRoadFinish1[] = "__OTR__textures/other_textures/road_finish_1"; + +static const ALIGN_ASSET(2) char gTexture676C6C[] = "__OTR__textures/other_textures/texture_676C6C"; + +static const ALIGN_ASSET(2) char gTexture676D7C[] = "__OTR__textures/other_textures/texture_676D7C"; + +static const ALIGN_ASSET(2) char gTexture676EA8[] = "__OTR__textures/other_textures/texture_676EA8"; + +static const ALIGN_ASSET(2) char gTexture676FB0[] = "__OTR__textures/other_textures/texture_676FB0"; + +static const ALIGN_ASSET(2) char gTexture6774D8[] = "__OTR__textures/other_textures/texture_6774D8"; + +static const ALIGN_ASSET(2) char gTexture6775EC[] = "__OTR__textures/other_textures/texture_6775EC"; + +static const ALIGN_ASSET(2) char gTextureFenceBarbedWire[] = "__OTR__textures/other_textures/fence_barbed_wire"; + +static const ALIGN_ASSET(2) char gTexture677A40[] = "__OTR__textures/other_textures/texture_677A40"; + +static const ALIGN_ASSET(2) char gTextureSignFallingRocks[] = "__OTR__textures/other_textures/sign_falling_rocks"; + +static const ALIGN_ASSET(2) char gTextureSignBackside[] = "__OTR__textures/other_textures/sign_backside"; + +static const ALIGN_ASSET(2) char gTexture677F04[] = "__OTR__textures/other_textures/texture_677F04"; + +static const ALIGN_ASSET(2) char gTexture678118[] = "__OTR__textures/other_textures/texture_678118"; + +static const ALIGN_ASSET(2) char gTexture67842C[] = "__OTR__textures/other_textures/texture_67842C"; + +static const ALIGN_ASSET(2) char gTexture67893C[] = "__OTR__textures/other_textures/texture_67893C"; + +static const ALIGN_ASSET(2) char gTexture678CC8[] = "__OTR__textures/other_textures/texture_678CC8"; + +static const ALIGN_ASSET(2) char gTexture679258[] = "__OTR__textures/other_textures/texture_679258"; + +static const ALIGN_ASSET(2) char gTexture67973C[] = "__OTR__textures/other_textures/texture_67973C"; + +static const ALIGN_ASSET(2) char gTexture679C04[] = "__OTR__textures/other_textures/texture_679C04"; + +static const ALIGN_ASSET(2) char gTexture679D34[] = "__OTR__textures/other_textures/texture_679D34"; + +static const ALIGN_ASSET(2) char gTextureStarOutline[] = "__OTR__textures/other_textures/star_outline"; + +static const ALIGN_ASSET(2) char gTexture67A1B8[] = "__OTR__textures/other_textures/texture_67A1B8"; + +static const ALIGN_ASSET(2) char gTexture67A370[] = "__OTR__textures/other_textures/texture_67A370"; + +static const ALIGN_ASSET(2) char gTexture67A91C[] = "__OTR__textures/other_textures/texture_67A91C"; + +static const ALIGN_ASSET(2) char gTexture67ADF0[] = "__OTR__textures/other_textures/texture_67ADF0"; + +static const ALIGN_ASSET(2) char gTexture67B388[] = "__OTR__textures/other_textures/texture_67B388"; + +static const ALIGN_ASSET(2) char gTexture67B75C[] = "__OTR__textures/other_textures/texture_67B75C"; + +static const ALIGN_ASSET(2) char gTexture67B864[] = "__OTR__textures/other_textures/texture_67B864"; + +static const ALIGN_ASSET(2) char gTexture67B9B0[] = "__OTR__textures/other_textures/texture_67B9B0"; + +static const ALIGN_ASSET(2) char gTexture67BBD8[] = "__OTR__textures/other_textures/texture_67BBD8"; + +static const ALIGN_ASSET(2) char gTexture67BEE8[] = "__OTR__textures/other_textures/texture_67BEE8"; + +static const ALIGN_ASSET(2) char gTextureSandFinish[] = "__OTR__textures/other_textures/sand_finish"; + +static const ALIGN_ASSET(2) char gTextureWaves0[] = "__OTR__textures/other_textures/waves_0"; + +static const ALIGN_ASSET(2) char gTextureWaves1[] = "__OTR__textures/other_textures/waves_1"; + +static const ALIGN_ASSET(2) char gTextureWaves2[] = "__OTR__textures/other_textures/waves_2"; + +static const ALIGN_ASSET(2) char gTexture67D304[] = "__OTR__textures/other_textures/texture_67D304"; + +static const ALIGN_ASSET(2) char gTexture67DC20[] = "__OTR__textures/other_textures/texture_67DC20"; + +static const ALIGN_ASSET(2) char gTexture67E010[] = "__OTR__textures/other_textures/texture_67E010"; + +static const ALIGN_ASSET(2) char gTexture67E428[] = "__OTR__textures/other_textures/texture_67E428"; + +static const ALIGN_ASSET(2) char gTexture67EEAC[] = "__OTR__textures/other_textures/texture_67EEAC"; + +static const ALIGN_ASSET(2) char gTexture67EFEC[] = "__OTR__textures/other_textures/texture_67EFEC"; + +static const ALIGN_ASSET(2) char gTexture67F15C[] = "__OTR__textures/other_textures/texture_67F15C"; + +static const ALIGN_ASSET(2) char gTexture67F450[] = "__OTR__textures/other_textures/texture_67F450"; + +static const ALIGN_ASSET(2) char gTextureSignWarioFace[] = "__OTR__textures/other_textures/sign_wario_face"; + +static const ALIGN_ASSET(2) char gTexture67FE0C[] = "__OTR__textures/other_textures/texture_67FE0C"; + +static const ALIGN_ASSET(2) char gTextureSignWelcome0[] = "__OTR__textures/other_textures/sign_welcome_0"; + +static const ALIGN_ASSET(2) char gTextureSignWelcome1[] = "__OTR__textures/other_textures/sign_welcome_1"; + +static const ALIGN_ASSET(2) char gTextureSignWoodenBack0[] = "__OTR__textures/other_textures/sign_wooden_back_0"; + +static const ALIGN_ASSET(2) char gTextureSignWoodenBack1[] = "__OTR__textures/other_textures/sign_wooden_back_1"; + +static const ALIGN_ASSET(2) char gTextureWheelSteamEngine[] = "__OTR__textures/other_textures/wheel_steam_engine"; + +static const ALIGN_ASSET(2) char gTextureWheelSteamEngineReal[] = "__OTR__textures/other_textures/wheel_steam_engine_real"; + +static const ALIGN_ASSET(2) char gTexture68272C[] = "__OTR__textures/other_textures/texture_68272C"; + +static const ALIGN_ASSET(2) char gTexture682928[] = "__OTR__textures/other_textures/texture_682928"; + +static const ALIGN_ASSET(2) char gTexture682B24[] = "__OTR__textures/other_textures/texture_682B24"; + +static const ALIGN_ASSET(2) char gTexture682D20[] = "__OTR__textures/other_textures/texture_682D20"; + +static const ALIGN_ASSET(2) char gTexture682F1C[] = "__OTR__textures/other_textures/texture_682F1C"; + +static const ALIGN_ASSET(2) char gTexture683118[] = "__OTR__textures/other_textures/texture_683118"; + +static const ALIGN_ASSET(2) char gTexture683314[] = "__OTR__textures/other_textures/texture_683314"; + +static const ALIGN_ASSET(2) char gTexture6835F0[] = "__OTR__textures/other_textures/texture_6835F0"; + +static const ALIGN_ASSET(2) char gTexture683844[] = "__OTR__textures/other_textures/texture_683844"; + +static const ALIGN_ASSET(2) char gTextureFencePostWooden[] = "__OTR__textures/other_textures/fence_post_wooden"; + +static const ALIGN_ASSET(2) char gTexture6846DC[] = "__OTR__textures/other_textures/texture_6846DC"; + +static const ALIGN_ASSET(2) char gTextureFenceRope[] = "__OTR__textures/other_textures/fence_rope"; + +static const ALIGN_ASSET(2) char gTexture685108[] = "__OTR__textures/other_textures/texture_685108"; + +static const ALIGN_ASSET(2) char gTextureSignWoodRedArrow[] = "__OTR__textures/other_textures/sign_wood_red_arrow"; + +static const ALIGN_ASSET(2) char gTexture685AC0[] = "__OTR__textures/other_textures/texture_685AC0"; + +static const ALIGN_ASSET(2) char gTextureSignGreenArrow[] = "__OTR__textures/other_textures/sign_green_arrow"; + +static const ALIGN_ASSET(2) char gTexture6864E8[] = "__OTR__textures/other_textures/texture_6864E8"; + +static const ALIGN_ASSET(2) char gTexture686CF0[] = "__OTR__textures/other_textures/texture_686CF0"; + +static const ALIGN_ASSET(2) char gTexture6875A8[] = "__OTR__textures/other_textures/texture_6875A8"; + +static const ALIGN_ASSET(2) char gTexture687EE8[] = "__OTR__textures/other_textures/texture_687EE8"; + +static const ALIGN_ASSET(2) char gTexture68876C[] = "__OTR__textures/other_textures/texture_68876C"; + +static const ALIGN_ASSET(2) char gTexture689230[] = "__OTR__textures/other_textures/texture_689230"; + +static const ALIGN_ASSET(2) char gTexture689C00[] = "__OTR__textures/other_textures/texture_689C00"; + +static const ALIGN_ASSET(2) char gTexture68A484[] = "__OTR__textures/other_textures/texture_68A484"; + +static const ALIGN_ASSET(2) char gTexture68AC5C[] = "__OTR__textures/other_textures/texture_68AC5C"; + +static const ALIGN_ASSET(2) char gTexture68B6A4[] = "__OTR__textures/other_textures/texture_68B6A4"; + +static const ALIGN_ASSET(2) char gTexture68BE6C[] = "__OTR__textures/other_textures/texture_68BE6C"; + +static const ALIGN_ASSET(2) char gTexture68C310[] = "__OTR__textures/other_textures/texture_68C310"; + +static const ALIGN_ASSET(2) char gTexture68C620[] = "__OTR__textures/other_textures/texture_68C620"; + +static const ALIGN_ASSET(2) char gTexture68C79C[] = "__OTR__textures/other_textures/texture_68C79C"; + +static const ALIGN_ASSET(2) char gTexture68C944[] = "__OTR__textures/other_textures/texture_68C944"; + +static const ALIGN_ASSET(2) char gTexture68CA94[] = "__OTR__textures/other_textures/texture_68CA94"; + +static const ALIGN_ASSET(2) char gTexture68CC0C[] = "__OTR__textures/other_textures/texture_68CC0C"; + +static const ALIGN_ASSET(2) char gTexture68CDA0[] = "__OTR__textures/other_textures/texture_68CDA0"; + +static const ALIGN_ASSET(2) char gTextureSignYoshi[] = "__OTR__textures/other_textures/sign_yoshi"; + +static const ALIGN_ASSET(2) char gTextureCheckerboardBlueGray[] = "__OTR__textures/other_textures/checkerboard_blue_gray"; + +static const ALIGN_ASSET(2) char gTexture68D834[] = "__OTR__textures/other_textures/texture_68D834"; + +static const ALIGN_ASSET(2) char gTexture68D940[] = "__OTR__textures/other_textures/texture_68D940"; + +static const ALIGN_ASSET(2) char gTexture68DEC0[] = "__OTR__textures/other_textures/texture_68DEC0"; + +static const ALIGN_ASSET(2) char gTexture68E2D0[] = "__OTR__textures/other_textures/texture_68E2D0"; + +static const ALIGN_ASSET(2) char texture_red_shell_0[] = "__OTR__textures/other_textures/texture_red_shell_0"; + +static const ALIGN_ASSET(2) char texture_green_shell_0[] = "__OTR__textures/other_textures/texture_green_shell_0"; + +static const ALIGN_ASSET(2) char texture_green_shell_1[] = "__OTR__textures/other_textures/texture_green_shell_1"; + +static const ALIGN_ASSET(2) char texture_red_shell_1[] = "__OTR__textures/other_textures/texture_red_shell_1"; + +static const ALIGN_ASSET(2) char texture_green_shell_2[] = "__OTR__textures/other_textures/texture_green_shell_2"; + +static const ALIGN_ASSET(2) char texture_red_shell_2[] = "__OTR__textures/other_textures/texture_red_shell_2"; + +static const ALIGN_ASSET(2) char texture_green_shell_3[] = "__OTR__textures/other_textures/texture_green_shell_3"; + +static const ALIGN_ASSET(2) char texture_red_shell_3[] = "__OTR__textures/other_textures/texture_red_shell_3"; + +static const ALIGN_ASSET(2) char texture_red_shell_4[] = "__OTR__textures/other_textures/texture_red_shell_4"; + +static const ALIGN_ASSET(2) char texture_green_shell_4[] = "__OTR__textures/other_textures/texture_green_shell_4"; + +static const ALIGN_ASSET(2) char texture_green_shell_5[] = "__OTR__textures/other_textures/texture_green_shell_5"; + +static const ALIGN_ASSET(2) char texture_red_shell_5[] = "__OTR__textures/other_textures/texture_red_shell_5"; + +static const ALIGN_ASSET(2) char texture_green_shell_6[] = "__OTR__textures/other_textures/texture_green_shell_6"; + +static const ALIGN_ASSET(2) char texture_red_shell_6[] = "__OTR__textures/other_textures/texture_red_shell_6"; + +static const ALIGN_ASSET(2) char texture_green_shell_7[] = "__OTR__textures/other_textures/texture_green_shell_7"; + +static const ALIGN_ASSET(2) char texture_red_shell_7[] = "__OTR__textures/other_textures/texture_red_shell_7"; + +static const ALIGN_ASSET(2) char texture_blue_shell_0[] = "__OTR__textures/other_textures/texture_blue_shell_0"; + +static const ALIGN_ASSET(2) char texture_blue_shell_1[] = "__OTR__textures/other_textures/texture_blue_shell_1"; + +static const ALIGN_ASSET(2) char texture_blue_shell_2[] = "__OTR__textures/other_textures/texture_blue_shell_2"; + +static const ALIGN_ASSET(2) char texture_blue_shell_3[] = "__OTR__textures/other_textures/texture_blue_shell_3"; + +static const ALIGN_ASSET(2) char texture_blue_shell_4[] = "__OTR__textures/other_textures/texture_blue_shell_4"; + +static const ALIGN_ASSET(2) char texture_blue_shell_5[] = "__OTR__textures/other_textures/texture_blue_shell_5"; + +static const ALIGN_ASSET(2) char texture_blue_shell_6[] = "__OTR__textures/other_textures/texture_blue_shell_6"; + +static const ALIGN_ASSET(2) char texture_blue_shell_7[] = "__OTR__textures/other_textures/texture_blue_shell_7"; + +static const ALIGN_ASSET(2) char gTextureQuestionMarkYellow[] = "__OTR__textures/other_textures/question_mark_yellow"; + +static const ALIGN_ASSET(2) char gTextureTrees1[] = "__OTR__textures/other_textures/gTextureTrees1"; + +static const ALIGN_ASSET(2) char gTextureTrees2[] = "__OTR__textures/other_textures/gTextureTrees2"; + +static const ALIGN_ASSET(2) char gTextureTrees3[] = "__OTR__textures/other_textures/gTextureTrees3"; + +static const ALIGN_ASSET(2) char gTextureTrees4Left[] = "__OTR__textures/other_textures/gTextureTrees4Left"; + +static const ALIGN_ASSET(2) char gTextureTrees4Right[] = "__OTR__textures/other_textures/gTextureTrees4Right"; + +static const ALIGN_ASSET(2) char gTextureTrees5Left[] = "__OTR__textures/other_textures/gTextureTrees5Left"; + +static const ALIGN_ASSET(2) char gTextureTrees5Right[] = "__OTR__textures/other_textures/gTextureTrees5Right"; + +static const ALIGN_ASSET(2) char gTextureTrees6[] = "__OTR__textures/other_textures/gTextureTrees6"; + +static const ALIGN_ASSET(2) char gTextureTrees7[] = "__OTR__textures/other_textures/gTextureTrees7"; + +static const ALIGN_ASSET(2) char gTextureShrub[] = "__OTR__textures/other_textures/shrub"; + +static const ALIGN_ASSET(2) char gTextureFrappeSnowlandTreeLeft[] = "__OTR__textures/other_textures/gTextureFrappeSnowlandTreeLeft"; + +static const ALIGN_ASSET(2) char gTextureFrappeSnowlandTreeRight[] = "__OTR__textures/other_textures/gTextureFrappeSnowlandTreeRight"; + +static const ALIGN_ASSET(2) char gTextureCow01Left[] = "__OTR__textures/other_textures/gTextureCow01Left"; + +static const ALIGN_ASSET(2) char gTextureCow01Right[] = "__OTR__textures/other_textures/gTextureCow01Right"; + +static const ALIGN_ASSET(2) char gTextureCow02Left[] = "__OTR__textures/other_textures/gTextureCow02Left"; + +static const ALIGN_ASSET(2) char gTextureCow02Right[] = "__OTR__textures/other_textures/gTextureCow02Right"; + +static const ALIGN_ASSET(2) char gTextureCow03Left[] = "__OTR__textures/other_textures/gTextureCow03Left"; + +static const ALIGN_ASSET(2) char gTextureCow03Right[] = "__OTR__textures/other_textures/gTextureCow03Right"; + +static const ALIGN_ASSET(2) char gTextureCow04Left[] = "__OTR__textures/other_textures/gTextureCow04Left"; + +static const ALIGN_ASSET(2) char gTextureCow04Right[] = "__OTR__textures/other_textures/gTextureCow04Right"; + +static const ALIGN_ASSET(2) char gTextureCow05Left[] = "__OTR__textures/other_textures/gTextureCow05Left"; + +static const ALIGN_ASSET(2) char gTextureCow05Right[] = "__OTR__textures/other_textures/gTextureCow05Right"; + +static const ALIGN_ASSET(2) char gTextureCactus1Left[] = "__OTR__textures/other_textures/gTextureCactus1Left"; + +static const ALIGN_ASSET(2) char gTextureCactus1Right[] = "__OTR__textures/other_textures/gTextureCactus1Right"; + +static const ALIGN_ASSET(2) char gTextureCactus2Left[] = "__OTR__textures/other_textures/gTextureCactus2Left"; + +static const ALIGN_ASSET(2) char gTextureCactus2Right[] = "__OTR__textures/other_textures/gTextureCactus2Right"; + +static const ALIGN_ASSET(2) char gTextureCactus3[] = "__OTR__textures/other_textures/gTextureCactus3"; + +static const ALIGN_ASSET(2) char gTextureFinishLineBanner1[] = "__OTR__textures/other_textures/gTextureFinishLineBanner1"; + +static const ALIGN_ASSET(2) char gTextureFinishLineBanner2[] = "__OTR__textures/other_textures/gTextureFinishLineBanner2"; + +static const ALIGN_ASSET(2) char gTextureFinishLineBanner3[] = "__OTR__textures/other_textures/gTextureFinishLineBanner3"; + +static const ALIGN_ASSET(2) char gTextureFinishLineBanner4[] = "__OTR__textures/other_textures/gTextureFinishLineBanner4"; + +static const ALIGN_ASSET(2) char gTextureFinishLineBanner5[] = "__OTR__textures/other_textures/gTextureFinishLineBanner5"; + +static const ALIGN_ASSET(2) char gTextureFinishLineBanner6[] = "__OTR__textures/other_textures/gTextureFinishLineBanner6"; + +static const ALIGN_ASSET(2) char gTextureFinishLineBanner7[] = "__OTR__textures/other_textures/gTextureFinishLineBanner7"; + +static const ALIGN_ASSET(2) char gTextureFinishLineBanner8[] = "__OTR__textures/other_textures/gTextureFinishLineBanner8"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant1[] = "__OTR__textures/other_textures/gTexturePiranhaPlant1"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant2[] = "__OTR__textures/other_textures/gTexturePiranhaPlant2"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant3[] = "__OTR__textures/other_textures/gTexturePiranhaPlant3"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant4[] = "__OTR__textures/other_textures/gTexturePiranhaPlant4"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant5[] = "__OTR__textures/other_textures/gTexturePiranhaPlant5"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant6[] = "__OTR__textures/other_textures/gTexturePiranhaPlant6"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant7[] = "__OTR__textures/other_textures/gTexturePiranhaPlant7"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant8[] = "__OTR__textures/other_textures/gTexturePiranhaPlant8"; + +static const ALIGN_ASSET(2) char gTexturePiranhaPlant9[] = "__OTR__textures/other_textures/gTexturePiranhaPlant9"; + +static const ALIGN_ASSET(2) char gTexture6997E0[] = "__OTR__textures/other_textures/texture_6997E0"; + +static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit1[] = "__OTR__textures/other_textures/gTextureDksJungleParkwayKiwanoFruit1"; + +static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit2[] = "__OTR__textures/other_textures/gTextureDksJungleParkwayKiwanoFruit2"; + +static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit3[] = "__OTR__textures/other_textures/gTextureDksJungleParkwayKiwanoFruit3"; + +static const ALIGN_ASSET(2) char gTextureKartShadow[] = "__OTR__textures/other_textures/kart_shadow"; + +static const ALIGN_ASSET(2) char gTexture69B03C[] = "__OTR__textures/other_textures/texture_69B03C"; + +static const ALIGN_ASSET(2) char gTexture69B140[] = "__OTR__textures/other_textures/texture_69B140"; + +static const ALIGN_ASSET(2) char gGrassParticle[] = "__OTR__textures/other_textures/gGrassParticle"; + +static const ALIGN_ASSET(2) char gTextureMusicNote[] = "__OTR__textures/other_textures/texture_69B960"; + +static const ALIGN_ASSET(2) char gTextureSpeechBubble[] = "__OTR__textures/other_textures/texture_69BA28"; + +static const ALIGN_ASSET(2) char gTextureBoingExclamation[] = "__OTR__textures/other_textures/boing_exclamation"; + +static const ALIGN_ASSET(2) char gTexture69BE6C[] = "__OTR__textures/other_textures/texture_69BE6C"; + +static const ALIGN_ASSET(2) char gTexture69BF54[] = "__OTR__textures/other_textures/texture_69BF54"; + +static const ALIGN_ASSET(2) char gTexture69C090[] = "__OTR__textures/other_textures/texture_69C090"; + +static const ALIGN_ASSET(2) char gTexture69C1E8[] = "__OTR__textures/other_textures/texture_69C1E8"; + +static const ALIGN_ASSET(2) char gTextureSmokePuff[] = "__OTR__textures/other_textures/texture_69C354"; + +static const ALIGN_ASSET(2) char gGroundDust[] = "__OTR__textures/other_textures/gGroundDust"; + +static const ALIGN_ASSET(2) char gTexture69C80C[] = "__OTR__textures/other_textures/texture_69C80C"; + +static const ALIGN_ASSET(2) char gTexture69C9C4[] = "__OTR__textures/other_textures/texture_69C9C4"; + +static const ALIGN_ASSET(2) char gTexture69CB84[] = "__OTR__textures/other_textures/texture_69CB84"; + +static const ALIGN_ASSET(2) char gTexture69CCEC[] = "__OTR__textures/other_textures/texture_69CCEC"; + +static const ALIGN_ASSET(2) char gTexture69CEB8[] = "__OTR__textures/other_textures/texture_69CEB8"; + +static const ALIGN_ASSET(2) char gTexture69D148[] = "__OTR__textures/other_textures/texture_69D148"; + +static const ALIGN_ASSET(2) char gTexture69D4E0[] = "__OTR__textures/other_textures/texture_69D4E0"; + +static const ALIGN_ASSET(2) char gTexture69D8FC[] = "__OTR__textures/other_textures/texture_69D8FC"; + +static const ALIGN_ASSET(2) char gTexture69DCB4[] = "__OTR__textures/other_textures/texture_69DCB4"; + +static const ALIGN_ASSET(2) char gTexture69DFA0[] = "__OTR__textures/other_textures/texture_69DFA0"; + +static const ALIGN_ASSET(2) char gTexture69E25C[] = "__OTR__textures/other_textures/texture_69E25C"; + +static const ALIGN_ASSET(2) char gTexture69E518[] = "__OTR__textures/other_textures/texture_69E518"; + +static const ALIGN_ASSET(2) char gTexture69E7A8[] = "__OTR__textures/other_textures/texture_69E7A8"; + +static const ALIGN_ASSET(2) char gTexture69EA18[] = "__OTR__textures/other_textures/texture_69EA18"; + +static const ALIGN_ASSET(2) char gTexture69EC54[] = "__OTR__textures/other_textures/texture_69EC54"; + +static const ALIGN_ASSET(2) char gTexture69EE38[] = "__OTR__textures/other_textures/texture_69EE38"; + +static const ALIGN_ASSET(2) char gTexture69EFE0[] = "__OTR__textures/other_textures/texture_69EFE0"; + +static const ALIGN_ASSET(2) char gTextureOnomatopoeiaCrash1[] = "__OTR__textures/other_textures/gTextureOnomatopoeiaCrash1"; + +static const ALIGN_ASSET(2) char gTextureOnomatopoeiaCrash2[] = "__OTR__textures/other_textures/gTextureOnomatopoeiaCrash2"; + +static const ALIGN_ASSET(2) char gTextureOnomatopoeiaWhrrrr1[] = "__OTR__textures/other_textures/gTextureOnomatopoeiaWhrrrr1"; + +static const ALIGN_ASSET(2) char gTextureOnomatopoeiaWhrrrr2[] = "__OTR__textures/other_textures/gTextureOnomatopoeiaWhrrrr2"; + +static const ALIGN_ASSET(2) char gTextureOnomatopoeiaPoomp1[] = "__OTR__textures/other_textures/gTextureOnomatopoeiaPoomp1"; + +static const ALIGN_ASSET(2) char gTextureOnomatopoeiaPoomp2[] = "__OTR__textures/other_textures/gTextureOnomatopoeiaPoomp2"; + +static const ALIGN_ASSET(2) char gTextureBalloon1[] = "__OTR__textures/other_textures/gTextureBalloon1"; + +static const ALIGN_ASSET(2) char gTextureBalloon2[] = "__OTR__textures/other_textures/gTextureBalloon2"; + +static const ALIGN_ASSET(2) char gTextureLightningBolt0[] = "__OTR__textures/other_textures/lightning_zap_0"; + +static const ALIGN_ASSET(2) char gTextureLightningBolt1[] = "__OTR__textures/other_textures/lightning_zap_1"; + +static const ALIGN_ASSET(2) char gTextureLakituNoLights1[] = "__OTR__textures/other_textures/gTextureLakituNoLights1"; + +static const ALIGN_ASSET(2) char gTextureLakituNoLights2[] = "__OTR__textures/other_textures/gTextureLakituNoLights2"; + +static const ALIGN_ASSET(2) char gTextureLakituNoLights3[] = "__OTR__textures/other_textures/gTextureLakituNoLights3"; + +static const ALIGN_ASSET(2) char gTextureLakituNoLights4[] = "__OTR__textures/other_textures/gTextureLakituNoLights4"; + +static const ALIGN_ASSET(2) char gTextureLakituNoLights5[] = "__OTR__textures/other_textures/gTextureLakituNoLights5"; + +static const ALIGN_ASSET(2) char gTextureLakituNoLights6[] = "__OTR__textures/other_textures/gTextureLakituNoLights6"; + +static const ALIGN_ASSET(2) char gTextureLakituNoLights7[] = "__OTR__textures/other_textures/gTextureLakituNoLights7"; + +static const ALIGN_ASSET(2) char gTextureLakituNoLights8[] = "__OTR__textures/other_textures/gTextureLakituNoLights8"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights01[] = "__OTR__textures/other_textures/gTextureLakituRedLights01"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights02[] = "__OTR__textures/other_textures/gTextureLakituRedLights02"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights03[] = "__OTR__textures/other_textures/gTextureLakituRedLights03"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights04[] = "__OTR__textures/other_textures/gTextureLakituRedLights04"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights05[] = "__OTR__textures/other_textures/gTextureLakituRedLights05"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights06[] = "__OTR__textures/other_textures/gTextureLakituRedLights06"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights07[] = "__OTR__textures/other_textures/gTextureLakituRedLights07"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights08[] = "__OTR__textures/other_textures/gTextureLakituRedLights08"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights09[] = "__OTR__textures/other_textures/gTextureLakituRedLights09"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights10[] = "__OTR__textures/other_textures/gTextureLakituRedLights10"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights11[] = "__OTR__textures/other_textures/gTextureLakituRedLights11"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights12[] = "__OTR__textures/other_textures/gTextureLakituRedLights12"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights13[] = "__OTR__textures/other_textures/gTextureLakituRedLights13"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights14[] = "__OTR__textures/other_textures/gTextureLakituRedLights14"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights15[] = "__OTR__textures/other_textures/gTextureLakituRedLights15"; + +static const ALIGN_ASSET(2) char gTextureLakituRedLights16[] = "__OTR__textures/other_textures/gTextureLakituRedLights16"; + +static const ALIGN_ASSET(2) char gTextureLakituBlueLight1[] = "__OTR__textures/other_textures/gTextureLakituBlueLight1"; + +static const ALIGN_ASSET(2) char gTextureLakituBlueLight2[] = "__OTR__textures/other_textures/gTextureLakituBlueLight2"; + +static const ALIGN_ASSET(2) char gTextureLakituBlueLight3[] = "__OTR__textures/other_textures/gTextureLakituBlueLight3"; + +static const ALIGN_ASSET(2) char gTextureLakituBlueLight4[] = "__OTR__textures/other_textures/gTextureLakituBlueLight4"; + +static const ALIGN_ASSET(2) char gTextureLakituBlueLight5[] = "__OTR__textures/other_textures/gTextureLakituBlueLight5"; + +static const ALIGN_ASSET(2) char gTextureLakituBlueLight6[] = "__OTR__textures/other_textures/gTextureLakituBlueLight6"; + +static const ALIGN_ASSET(2) char gTextureLakituBlueLight7[] = "__OTR__textures/other_textures/gTextureLakituBlueLight7"; + +static const ALIGN_ASSET(2) char gTextureLakituBlueLight8[] = "__OTR__textures/other_textures/gTextureLakituBlueLight8"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag01[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag01"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag02[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag02"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag03[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag03"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag04[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag04"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag05[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag05"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag06[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag06"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag07[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag07"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag08[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag08"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag09[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag09"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag10[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag10"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag11[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag11"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag12[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag12"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag13[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag13"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag14[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag14"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag15[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag15"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag16[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag16"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag17[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag17"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag18[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag18"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag19[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag19"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag20[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag20"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag21[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag21"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag22[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag22"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag23[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag23"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag24[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag24"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag25[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag25"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag26[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag26"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag27[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag27"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag28[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag28"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag29[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag29"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag30[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag30"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag31[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag31"; + +static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag32[] = "__OTR__textures/other_textures/gTextureLakituCheckeredFlag32"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap01[] = "__OTR__textures/other_textures/gTextureLakituSecondLap01"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap02[] = "__OTR__textures/other_textures/gTextureLakituSecondLap02"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap03[] = "__OTR__textures/other_textures/gTextureLakituSecondLap03"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap04[] = "__OTR__textures/other_textures/gTextureLakituSecondLap04"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap05[] = "__OTR__textures/other_textures/gTextureLakituSecondLap05"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap06[] = "__OTR__textures/other_textures/gTextureLakituSecondLap06"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap07[] = "__OTR__textures/other_textures/gTextureLakituSecondLap07"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap08[] = "__OTR__textures/other_textures/gTextureLakituSecondLap08"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap09[] = "__OTR__textures/other_textures/gTextureLakituSecondLap09"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap10[] = "__OTR__textures/other_textures/gTextureLakituSecondLap10"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap11[] = "__OTR__textures/other_textures/gTextureLakituSecondLap11"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap12[] = "__OTR__textures/other_textures/gTextureLakituSecondLap12"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap13[] = "__OTR__textures/other_textures/gTextureLakituSecondLap13"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap14[] = "__OTR__textures/other_textures/gTextureLakituSecondLap14"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap15[] = "__OTR__textures/other_textures/gTextureLakituSecondLap15"; + +static const ALIGN_ASSET(2) char gTextureLakituSecondLap16[] = "__OTR__textures/other_textures/gTextureLakituSecondLap16"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap01[] = "__OTR__textures/other_textures/gTextureLakituFinalLap01"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap02[] = "__OTR__textures/other_textures/gTextureLakituFinalLap02"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap03[] = "__OTR__textures/other_textures/gTextureLakituFinalLap03"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap04[] = "__OTR__textures/other_textures/gTextureLakituFinalLap04"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap05[] = "__OTR__textures/other_textures/gTextureLakituFinalLap05"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap06[] = "__OTR__textures/other_textures/gTextureLakituFinalLap06"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap07[] = "__OTR__textures/other_textures/gTextureLakituFinalLap07"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap08[] = "__OTR__textures/other_textures/gTextureLakituFinalLap08"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap09[] = "__OTR__textures/other_textures/gTextureLakituFinalLap09"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap10[] = "__OTR__textures/other_textures/gTextureLakituFinalLap10"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap11[] = "__OTR__textures/other_textures/gTextureLakituFinalLap11"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap12[] = "__OTR__textures/other_textures/gTextureLakituFinalLap12"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap13[] = "__OTR__textures/other_textures/gTextureLakituFinalLap13"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap14[] = "__OTR__textures/other_textures/gTextureLakituFinalLap14"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap15[] = "__OTR__textures/other_textures/gTextureLakituFinalLap15"; + +static const ALIGN_ASSET(2) char gTextureLakituFinalLap16[] = "__OTR__textures/other_textures/gTextureLakituFinalLap16"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse01[] = "__OTR__textures/other_textures/gTextureLakituReverse01"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse02[] = "__OTR__textures/other_textures/gTextureLakituReverse02"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse03[] = "__OTR__textures/other_textures/gTextureLakituReverse03"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse04[] = "__OTR__textures/other_textures/gTextureLakituReverse04"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse05[] = "__OTR__textures/other_textures/gTextureLakituReverse05"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse06[] = "__OTR__textures/other_textures/gTextureLakituReverse06"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse07[] = "__OTR__textures/other_textures/gTextureLakituReverse07"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse08[] = "__OTR__textures/other_textures/gTextureLakituReverse08"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse09[] = "__OTR__textures/other_textures/gTextureLakituReverse09"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse10[] = "__OTR__textures/other_textures/gTextureLakituReverse10"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse11[] = "__OTR__textures/other_textures/gTextureLakituReverse11"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse12[] = "__OTR__textures/other_textures/gTextureLakituReverse12"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse13[] = "__OTR__textures/other_textures/gTextureLakituReverse13"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse14[] = "__OTR__textures/other_textures/gTextureLakituReverse14"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse15[] = "__OTR__textures/other_textures/gTextureLakituReverse15"; + +static const ALIGN_ASSET(2) char gTextureLakituReverse16[] = "__OTR__textures/other_textures/gTextureLakituReverse16"; + +static const ALIGN_ASSET(2) char gTextureLakituFishing1[] = "__OTR__textures/other_textures/gTextureLakituFishing1"; + +static const ALIGN_ASSET(2) char gTextureLakituFishing2[] = "__OTR__textures/other_textures/gTextureLakituFishing2"; + +static const ALIGN_ASSET(2) char gTextureLakituFishing3[] = "__OTR__textures/other_textures/gTextureLakituFishing3"; + +static const ALIGN_ASSET(2) char gTextureLakituFishing4[] = "__OTR__textures/other_textures/gTextureLakituFishing4"; + +static const ALIGN_ASSET(2) char gTextureExhaust0[] = "__OTR__textures/other_textures/exhaust_0"; + +static const ALIGN_ASSET(2) char gTextureExhaust1[] = "__OTR__textures/other_textures/exhaust_1"; + +static const ALIGN_ASSET(2) char gTextureExhaust2[] = "__OTR__textures/other_textures/exhaust_2"; + +static const ALIGN_ASSET(2) char gTextureExhaust3[] = "__OTR__textures/other_textures/exhaust_3"; + +static const ALIGN_ASSET(2) char gTextureExhaust4[] = "__OTR__textures/other_textures/exhaust_4"; + +static const ALIGN_ASSET(2) char gTextureExhaust5[] = "__OTR__textures/other_textures/exhaust_5"; + +static const ALIGN_ASSET(2) char logo_mario_kart_64[] = "__OTR__textures/other_textures/logo_mario_kart_64"; + +static const ALIGN_ASSET(2) char minimap_mario_raceway[] = "__OTR__textures/other_textures/minimap_mario_raceway"; + +static const ALIGN_ASSET(2) char minimap_choco_mountain[] = "__OTR__textures/other_textures/minimap_choco_mountain"; + +static const ALIGN_ASSET(2) char minimap_bowsers_castle[] = "__OTR__textures/other_textures/minimap_bowsers_castle"; + +static const ALIGN_ASSET(2) char minimap_banshee_boardwalk[] = "__OTR__textures/other_textures/minimap_banshee_boardwalk"; + +static const ALIGN_ASSET(2) char minimap_yoshi_valley[] = "__OTR__textures/other_textures/minimap_yoshi_valley"; + +static const ALIGN_ASSET(2) char minimap_frappe_snowland[] = "__OTR__textures/other_textures/minimap_frappe_snowland"; + +static const ALIGN_ASSET(2) char minimap_koopa_troopa_beach[] = "__OTR__textures/other_textures/minimap_koopa_troopa_beach"; + +static const ALIGN_ASSET(2) char minimap_royal_raceway[] = "__OTR__textures/other_textures/minimap_royal_raceway"; + +static const ALIGN_ASSET(2) char minimap_luigi_raceway[] = "__OTR__textures/other_textures/minimap_luigi_raceway"; + +static const ALIGN_ASSET(2) char minimap_moo_moo_farm[] = "__OTR__textures/other_textures/minimap_moo_moo_farm"; + +static const ALIGN_ASSET(2) char minimap_toads_turnpike[] = "__OTR__textures/other_textures/minimap_toads_turnpike"; + +static const ALIGN_ASSET(2) char minimap_kalimari_desert[] = "__OTR__textures/other_textures/minimap_kalimari_desert"; + +static const ALIGN_ASSET(2) char minimap_sherbet_land[] = "__OTR__textures/other_textures/minimap_sherbet_land"; + +static const ALIGN_ASSET(2) char minimap_rainbow_road[] = "__OTR__textures/other_textures/minimap_rainbow_road"; + +static const ALIGN_ASSET(2) char minimap_wario_stadium[] = "__OTR__textures/other_textures/minimap_wario_stadium"; + +static const ALIGN_ASSET(2) char minimap_block_fort[] = "__OTR__textures/other_textures/minimap_block_fort"; + +static const ALIGN_ASSET(2) char minimap_skyscraper[] = "__OTR__textures/other_textures/minimap_skyscraper"; + +static const ALIGN_ASSET(2) char minimap_double_deck[] = "__OTR__textures/other_textures/minimap_double_deck"; + +static const ALIGN_ASSET(2) char minimap_dks_jungle_parkway[] = "__OTR__textures/other_textures/minimap_dks_jungle_parkway"; + +static const ALIGN_ASSET(2) char minimap_big_donut[] = "__OTR__textures/other_textures/minimap_big_donut"; + diff --git a/include/assets/player_selection.h b/include/assets/textures/player_selection.h similarity index 50% rename from include/assets/player_selection.h rename to include/assets/textures/player_selection.h index 940c55c1a..4861c9fa8 100644 --- a/include/assets/player_selection.h +++ b/include/assets/textures/player_selection.h @@ -4,343 +4,343 @@ #include #include -static const ALIGN_ASSET(2) char gTextureMarioFace00[] = "__OTR__player_selection/mario_face_00"; +static const ALIGN_ASSET(2) char gTextureMarioFace00[] = "__OTR__textures/player_selection/mario_face_00"; -static const ALIGN_ASSET(2) char gTextureMarioFace01[] = "__OTR__player_selection/mario_face_01"; +static const ALIGN_ASSET(2) char gTextureMarioFace01[] = "__OTR__textures/player_selection/mario_face_01"; -static const ALIGN_ASSET(2) char gTextureMarioFace02[] = "__OTR__player_selection/mario_face_02"; +static const ALIGN_ASSET(2) char gTextureMarioFace02[] = "__OTR__textures/player_selection/mario_face_02"; -static const ALIGN_ASSET(2) char gTextureMarioFace03[] = "__OTR__player_selection/mario_face_03"; +static const ALIGN_ASSET(2) char gTextureMarioFace03[] = "__OTR__textures/player_selection/mario_face_03"; -static const ALIGN_ASSET(2) char gTextureMarioFace04[] = "__OTR__player_selection/mario_face_04"; +static const ALIGN_ASSET(2) char gTextureMarioFace04[] = "__OTR__textures/player_selection/mario_face_04"; -static const ALIGN_ASSET(2) char gTextureMarioFace05[] = "__OTR__player_selection/mario_face_05"; +static const ALIGN_ASSET(2) char gTextureMarioFace05[] = "__OTR__textures/player_selection/mario_face_05"; -static const ALIGN_ASSET(2) char gTextureMarioFace06[] = "__OTR__player_selection/mario_face_06"; +static const ALIGN_ASSET(2) char gTextureMarioFace06[] = "__OTR__textures/player_selection/mario_face_06"; -static const ALIGN_ASSET(2) char gTextureMarioFace07[] = "__OTR__player_selection/mario_face_07"; +static const ALIGN_ASSET(2) char gTextureMarioFace07[] = "__OTR__textures/player_selection/mario_face_07"; -static const ALIGN_ASSET(2) char gTextureMarioFace08[] = "__OTR__player_selection/mario_face_08"; +static const ALIGN_ASSET(2) char gTextureMarioFace08[] = "__OTR__textures/player_selection/mario_face_08"; -static const ALIGN_ASSET(2) char gTextureMarioFace09[] = "__OTR__player_selection/mario_face_09"; +static const ALIGN_ASSET(2) char gTextureMarioFace09[] = "__OTR__textures/player_selection/mario_face_09"; -static const ALIGN_ASSET(2) char gTextureMarioFace10[] = "__OTR__player_selection/mario_face_10"; +static const ALIGN_ASSET(2) char gTextureMarioFace10[] = "__OTR__textures/player_selection/mario_face_10"; -static const ALIGN_ASSET(2) char gTextureMarioFace11[] = "__OTR__player_selection/mario_face_11"; +static const ALIGN_ASSET(2) char gTextureMarioFace11[] = "__OTR__textures/player_selection/mario_face_11"; -static const ALIGN_ASSET(2) char gTextureMarioFace12[] = "__OTR__player_selection/mario_face_12"; +static const ALIGN_ASSET(2) char gTextureMarioFace12[] = "__OTR__textures/player_selection/mario_face_12"; -static const ALIGN_ASSET(2) char gTextureMarioFace13[] = "__OTR__player_selection/mario_face_13"; +static const ALIGN_ASSET(2) char gTextureMarioFace13[] = "__OTR__textures/player_selection/mario_face_13"; -static const ALIGN_ASSET(2) char gTextureMarioFace14[] = "__OTR__player_selection/mario_face_14"; +static const ALIGN_ASSET(2) char gTextureMarioFace14[] = "__OTR__textures/player_selection/mario_face_14"; -static const ALIGN_ASSET(2) char gTextureMarioFace15[] = "__OTR__player_selection/mario_face_15"; +static const ALIGN_ASSET(2) char gTextureMarioFace15[] = "__OTR__textures/player_selection/mario_face_15"; -static const ALIGN_ASSET(2) char gTextureMarioFace16[] = "__OTR__player_selection/mario_face_16"; +static const ALIGN_ASSET(2) char gTextureMarioFace16[] = "__OTR__textures/player_selection/mario_face_16"; -static const ALIGN_ASSET(2) char gTextureLuigiFace00[] = "__OTR__player_selection/luigi_face_00"; +static const ALIGN_ASSET(2) char gTextureLuigiFace00[] = "__OTR__textures/player_selection/luigi_face_00"; -static const ALIGN_ASSET(2) char gTextureLuigiFace01[] = "__OTR__player_selection/luigi_face_01"; +static const ALIGN_ASSET(2) char gTextureLuigiFace01[] = "__OTR__textures/player_selection/luigi_face_01"; -static const ALIGN_ASSET(2) char gTextureLuigiFace02[] = "__OTR__player_selection/luigi_face_02"; +static const ALIGN_ASSET(2) char gTextureLuigiFace02[] = "__OTR__textures/player_selection/luigi_face_02"; -static const ALIGN_ASSET(2) char gTextureLuigiFace03[] = "__OTR__player_selection/luigi_face_03"; +static const ALIGN_ASSET(2) char gTextureLuigiFace03[] = "__OTR__textures/player_selection/luigi_face_03"; -static const ALIGN_ASSET(2) char gTextureLuigiFace04[] = "__OTR__player_selection/luigi_face_04"; +static const ALIGN_ASSET(2) char gTextureLuigiFace04[] = "__OTR__textures/player_selection/luigi_face_04"; -static const ALIGN_ASSET(2) char gTextureLuigiFace05[] = "__OTR__player_selection/luigi_face_05"; +static const ALIGN_ASSET(2) char gTextureLuigiFace05[] = "__OTR__textures/player_selection/luigi_face_05"; -static const ALIGN_ASSET(2) char gTextureLuigiFace06[] = "__OTR__player_selection/luigi_face_06"; +static const ALIGN_ASSET(2) char gTextureLuigiFace06[] = "__OTR__textures/player_selection/luigi_face_06"; -static const ALIGN_ASSET(2) char gTextureLuigiFace07[] = "__OTR__player_selection/luigi_face_07"; +static const ALIGN_ASSET(2) char gTextureLuigiFace07[] = "__OTR__textures/player_selection/luigi_face_07"; -static const ALIGN_ASSET(2) char gTextureLuigiFace08[] = "__OTR__player_selection/luigi_face_08"; +static const ALIGN_ASSET(2) char gTextureLuigiFace08[] = "__OTR__textures/player_selection/luigi_face_08"; -static const ALIGN_ASSET(2) char gTextureLuigiFace09[] = "__OTR__player_selection/luigi_face_09"; +static const ALIGN_ASSET(2) char gTextureLuigiFace09[] = "__OTR__textures/player_selection/luigi_face_09"; -static const ALIGN_ASSET(2) char gTextureLuigiFace10[] = "__OTR__player_selection/luigi_face_10"; +static const ALIGN_ASSET(2) char gTextureLuigiFace10[] = "__OTR__textures/player_selection/luigi_face_10"; -static const ALIGN_ASSET(2) char gTextureLuigiFace11[] = "__OTR__player_selection/luigi_face_11"; +static const ALIGN_ASSET(2) char gTextureLuigiFace11[] = "__OTR__textures/player_selection/luigi_face_11"; -static const ALIGN_ASSET(2) char gTextureLuigiFace12[] = "__OTR__player_selection/luigi_face_12"; +static const ALIGN_ASSET(2) char gTextureLuigiFace12[] = "__OTR__textures/player_selection/luigi_face_12"; -static const ALIGN_ASSET(2) char gTextureLuigiFace13[] = "__OTR__player_selection/luigi_face_13"; +static const ALIGN_ASSET(2) char gTextureLuigiFace13[] = "__OTR__textures/player_selection/luigi_face_13"; -static const ALIGN_ASSET(2) char gTextureLuigiFace14[] = "__OTR__player_selection/luigi_face_14"; +static const ALIGN_ASSET(2) char gTextureLuigiFace14[] = "__OTR__textures/player_selection/luigi_face_14"; -static const ALIGN_ASSET(2) char gTextureLuigiFace15[] = "__OTR__player_selection/luigi_face_15"; +static const ALIGN_ASSET(2) char gTextureLuigiFace15[] = "__OTR__textures/player_selection/luigi_face_15"; -static const ALIGN_ASSET(2) char gTextureLuigiFace16[] = "__OTR__player_selection/luigi_face_16"; +static const ALIGN_ASSET(2) char gTextureLuigiFace16[] = "__OTR__textures/player_selection/luigi_face_16"; -static const ALIGN_ASSET(2) char gTexturePeachFace00[] = "__OTR__player_selection/peach_face_00"; +static const ALIGN_ASSET(2) char gTexturePeachFace00[] = "__OTR__textures/player_selection/peach_face_00"; -static const ALIGN_ASSET(2) char gTexturePeachFace01[] = "__OTR__player_selection/peach_face_01"; +static const ALIGN_ASSET(2) char gTexturePeachFace01[] = "__OTR__textures/player_selection/peach_face_01"; -static const ALIGN_ASSET(2) char gTexturePeachFace02[] = "__OTR__player_selection/peach_face_02"; +static const ALIGN_ASSET(2) char gTexturePeachFace02[] = "__OTR__textures/player_selection/peach_face_02"; -static const ALIGN_ASSET(2) char gTexturePeachFace03[] = "__OTR__player_selection/peach_face_03"; +static const ALIGN_ASSET(2) char gTexturePeachFace03[] = "__OTR__textures/player_selection/peach_face_03"; -static const ALIGN_ASSET(2) char gTexturePeachFace04[] = "__OTR__player_selection/peach_face_04"; +static const ALIGN_ASSET(2) char gTexturePeachFace04[] = "__OTR__textures/player_selection/peach_face_04"; -static const ALIGN_ASSET(2) char gTexturePeachFace05[] = "__OTR__player_selection/peach_face_05"; +static const ALIGN_ASSET(2) char gTexturePeachFace05[] = "__OTR__textures/player_selection/peach_face_05"; -static const ALIGN_ASSET(2) char gTexturePeachFace06[] = "__OTR__player_selection/peach_face_06"; +static const ALIGN_ASSET(2) char gTexturePeachFace06[] = "__OTR__textures/player_selection/peach_face_06"; -static const ALIGN_ASSET(2) char gTexturePeachFace07[] = "__OTR__player_selection/peach_face_07"; +static const ALIGN_ASSET(2) char gTexturePeachFace07[] = "__OTR__textures/player_selection/peach_face_07"; -static const ALIGN_ASSET(2) char gTexturePeachFace08[] = "__OTR__player_selection/peach_face_08"; +static const ALIGN_ASSET(2) char gTexturePeachFace08[] = "__OTR__textures/player_selection/peach_face_08"; -static const ALIGN_ASSET(2) char gTexturePeachFace09[] = "__OTR__player_selection/peach_face_09"; +static const ALIGN_ASSET(2) char gTexturePeachFace09[] = "__OTR__textures/player_selection/peach_face_09"; -static const ALIGN_ASSET(2) char gTexturePeachFace10[] = "__OTR__player_selection/peach_face_10"; +static const ALIGN_ASSET(2) char gTexturePeachFace10[] = "__OTR__textures/player_selection/peach_face_10"; -static const ALIGN_ASSET(2) char gTexturePeachFace11[] = "__OTR__player_selection/peach_face_11"; +static const ALIGN_ASSET(2) char gTexturePeachFace11[] = "__OTR__textures/player_selection/peach_face_11"; -static const ALIGN_ASSET(2) char gTexturePeachFace12[] = "__OTR__player_selection/peach_face_12"; +static const ALIGN_ASSET(2) char gTexturePeachFace12[] = "__OTR__textures/player_selection/peach_face_12"; -static const ALIGN_ASSET(2) char gTexturePeachFace13[] = "__OTR__player_selection/peach_face_13"; +static const ALIGN_ASSET(2) char gTexturePeachFace13[] = "__OTR__textures/player_selection/peach_face_13"; -static const ALIGN_ASSET(2) char gTexturePeachFace14[] = "__OTR__player_selection/peach_face_14"; +static const ALIGN_ASSET(2) char gTexturePeachFace14[] = "__OTR__textures/player_selection/peach_face_14"; -static const ALIGN_ASSET(2) char gTexturePeachFace15[] = "__OTR__player_selection/peach_face_15"; +static const ALIGN_ASSET(2) char gTexturePeachFace15[] = "__OTR__textures/player_selection/peach_face_15"; -static const ALIGN_ASSET(2) char gTexturePeachFace16[] = "__OTR__player_selection/peach_face_16"; +static const ALIGN_ASSET(2) char gTexturePeachFace16[] = "__OTR__textures/player_selection/peach_face_16"; -static const ALIGN_ASSET(2) char gTextureToadFace00[] = "__OTR__player_selection/toad_face_00"; +static const ALIGN_ASSET(2) char gTextureToadFace00[] = "__OTR__textures/player_selection/toad_face_00"; -static const ALIGN_ASSET(2) char gTextureToadFace01[] = "__OTR__player_selection/toad_face_01"; +static const ALIGN_ASSET(2) char gTextureToadFace01[] = "__OTR__textures/player_selection/toad_face_01"; -static const ALIGN_ASSET(2) char gTextureToadFace02[] = "__OTR__player_selection/toad_face_02"; +static const ALIGN_ASSET(2) char gTextureToadFace02[] = "__OTR__textures/player_selection/toad_face_02"; -static const ALIGN_ASSET(2) char gTextureToadFace03[] = "__OTR__player_selection/toad_face_03"; +static const ALIGN_ASSET(2) char gTextureToadFace03[] = "__OTR__textures/player_selection/toad_face_03"; -static const ALIGN_ASSET(2) char gTextureToadFace04[] = "__OTR__player_selection/toad_face_04"; +static const ALIGN_ASSET(2) char gTextureToadFace04[] = "__OTR__textures/player_selection/toad_face_04"; -static const ALIGN_ASSET(2) char gTextureToadFace05[] = "__OTR__player_selection/toad_face_05"; +static const ALIGN_ASSET(2) char gTextureToadFace05[] = "__OTR__textures/player_selection/toad_face_05"; -static const ALIGN_ASSET(2) char gTextureToadFace06[] = "__OTR__player_selection/toad_face_06"; +static const ALIGN_ASSET(2) char gTextureToadFace06[] = "__OTR__textures/player_selection/toad_face_06"; -static const ALIGN_ASSET(2) char gTextureToadFace07[] = "__OTR__player_selection/toad_face_07"; +static const ALIGN_ASSET(2) char gTextureToadFace07[] = "__OTR__textures/player_selection/toad_face_07"; -static const ALIGN_ASSET(2) char gTextureToadFace08[] = "__OTR__player_selection/toad_face_08"; +static const ALIGN_ASSET(2) char gTextureToadFace08[] = "__OTR__textures/player_selection/toad_face_08"; -static const ALIGN_ASSET(2) char gTextureToadFace09[] = "__OTR__player_selection/toad_face_09"; +static const ALIGN_ASSET(2) char gTextureToadFace09[] = "__OTR__textures/player_selection/toad_face_09"; -static const ALIGN_ASSET(2) char gTextureToadFace10[] = "__OTR__player_selection/toad_face_10"; +static const ALIGN_ASSET(2) char gTextureToadFace10[] = "__OTR__textures/player_selection/toad_face_10"; -static const ALIGN_ASSET(2) char gTextureToadFace11[] = "__OTR__player_selection/toad_face_11"; +static const ALIGN_ASSET(2) char gTextureToadFace11[] = "__OTR__textures/player_selection/toad_face_11"; -static const ALIGN_ASSET(2) char gTextureToadFace12[] = "__OTR__player_selection/toad_face_12"; +static const ALIGN_ASSET(2) char gTextureToadFace12[] = "__OTR__textures/player_selection/toad_face_12"; -static const ALIGN_ASSET(2) char gTextureToadFace13[] = "__OTR__player_selection/toad_face_13"; +static const ALIGN_ASSET(2) char gTextureToadFace13[] = "__OTR__textures/player_selection/toad_face_13"; -static const ALIGN_ASSET(2) char gTextureToadFace14[] = "__OTR__player_selection/toad_face_14"; +static const ALIGN_ASSET(2) char gTextureToadFace14[] = "__OTR__textures/player_selection/toad_face_14"; -static const ALIGN_ASSET(2) char gTextureToadFace15[] = "__OTR__player_selection/toad_face_15"; +static const ALIGN_ASSET(2) char gTextureToadFace15[] = "__OTR__textures/player_selection/toad_face_15"; -static const ALIGN_ASSET(2) char gTextureToadFace16[] = "__OTR__player_selection/toad_face_16"; +static const ALIGN_ASSET(2) char gTextureToadFace16[] = "__OTR__textures/player_selection/toad_face_16"; -static const ALIGN_ASSET(2) char gTextureYoshiFace00[] = "__OTR__player_selection/yoshi_face_00"; +static const ALIGN_ASSET(2) char gTextureYoshiFace00[] = "__OTR__textures/player_selection/yoshi_face_00"; -static const ALIGN_ASSET(2) char gTextureYoshiFace01[] = "__OTR__player_selection/yoshi_face_01"; +static const ALIGN_ASSET(2) char gTextureYoshiFace01[] = "__OTR__textures/player_selection/yoshi_face_01"; -static const ALIGN_ASSET(2) char gTextureYoshiFace02[] = "__OTR__player_selection/yoshi_face_02"; +static const ALIGN_ASSET(2) char gTextureYoshiFace02[] = "__OTR__textures/player_selection/yoshi_face_02"; -static const ALIGN_ASSET(2) char gTextureYoshiFace03[] = "__OTR__player_selection/yoshi_face_03"; +static const ALIGN_ASSET(2) char gTextureYoshiFace03[] = "__OTR__textures/player_selection/yoshi_face_03"; -static const ALIGN_ASSET(2) char gTextureYoshiFace04[] = "__OTR__player_selection/yoshi_face_04"; +static const ALIGN_ASSET(2) char gTextureYoshiFace04[] = "__OTR__textures/player_selection/yoshi_face_04"; -static const ALIGN_ASSET(2) char gTextureYoshiFace05[] = "__OTR__player_selection/yoshi_face_05"; +static const ALIGN_ASSET(2) char gTextureYoshiFace05[] = "__OTR__textures/player_selection/yoshi_face_05"; -static const ALIGN_ASSET(2) char gTextureYoshiFace06[] = "__OTR__player_selection/yoshi_face_06"; +static const ALIGN_ASSET(2) char gTextureYoshiFace06[] = "__OTR__textures/player_selection/yoshi_face_06"; -static const ALIGN_ASSET(2) char gTextureYoshiFace07[] = "__OTR__player_selection/yoshi_face_07"; +static const ALIGN_ASSET(2) char gTextureYoshiFace07[] = "__OTR__textures/player_selection/yoshi_face_07"; -static const ALIGN_ASSET(2) char gTextureYoshiFace08[] = "__OTR__player_selection/yoshi_face_08"; +static const ALIGN_ASSET(2) char gTextureYoshiFace08[] = "__OTR__textures/player_selection/yoshi_face_08"; -static const ALIGN_ASSET(2) char gTextureYoshiFace09[] = "__OTR__player_selection/yoshi_face_09"; +static const ALIGN_ASSET(2) char gTextureYoshiFace09[] = "__OTR__textures/player_selection/yoshi_face_09"; -static const ALIGN_ASSET(2) char gTextureYoshiFace10[] = "__OTR__player_selection/yoshi_face_10"; +static const ALIGN_ASSET(2) char gTextureYoshiFace10[] = "__OTR__textures/player_selection/yoshi_face_10"; -static const ALIGN_ASSET(2) char gTextureYoshiFace11[] = "__OTR__player_selection/yoshi_face_11"; +static const ALIGN_ASSET(2) char gTextureYoshiFace11[] = "__OTR__textures/player_selection/yoshi_face_11"; -static const ALIGN_ASSET(2) char gTextureYoshiFace12[] = "__OTR__player_selection/yoshi_face_12"; +static const ALIGN_ASSET(2) char gTextureYoshiFace12[] = "__OTR__textures/player_selection/yoshi_face_12"; -static const ALIGN_ASSET(2) char gTextureYoshiFace13[] = "__OTR__player_selection/yoshi_face_13"; +static const ALIGN_ASSET(2) char gTextureYoshiFace13[] = "__OTR__textures/player_selection/yoshi_face_13"; -static const ALIGN_ASSET(2) char gTextureYoshiFace14[] = "__OTR__player_selection/yoshi_face_14"; +static const ALIGN_ASSET(2) char gTextureYoshiFace14[] = "__OTR__textures/player_selection/yoshi_face_14"; -static const ALIGN_ASSET(2) char gTextureYoshiFace15[] = "__OTR__player_selection/yoshi_face_15"; +static const ALIGN_ASSET(2) char gTextureYoshiFace15[] = "__OTR__textures/player_selection/yoshi_face_15"; -static const ALIGN_ASSET(2) char gTextureYoshiFace16[] = "__OTR__player_selection/yoshi_face_16"; +static const ALIGN_ASSET(2) char gTextureYoshiFace16[] = "__OTR__textures/player_selection/yoshi_face_16"; -static const ALIGN_ASSET(2) char gTextureDkFace00[] = "__OTR__player_selection/donkeykong_face_00"; +static const ALIGN_ASSET(2) char gTextureDkFace00[] = "__OTR__textures/player_selection/donkeykong_face_00"; -static const ALIGN_ASSET(2) char gTextureDkFace01[] = "__OTR__player_selection/donkeykong_face_01"; +static const ALIGN_ASSET(2) char gTextureDkFace01[] = "__OTR__textures/player_selection/donkeykong_face_01"; -static const ALIGN_ASSET(2) char gTextureDkFace02[] = "__OTR__player_selection/donkeykong_face_02"; +static const ALIGN_ASSET(2) char gTextureDkFace02[] = "__OTR__textures/player_selection/donkeykong_face_02"; -static const ALIGN_ASSET(2) char gTextureDkFace03[] = "__OTR__player_selection/donkeykong_face_03"; +static const ALIGN_ASSET(2) char gTextureDkFace03[] = "__OTR__textures/player_selection/donkeykong_face_03"; -static const ALIGN_ASSET(2) char gTextureDkFace04[] = "__OTR__player_selection/donkeykong_face_04"; +static const ALIGN_ASSET(2) char gTextureDkFace04[] = "__OTR__textures/player_selection/donkeykong_face_04"; -static const ALIGN_ASSET(2) char gTextureDkFace05[] = "__OTR__player_selection/donkeykong_face_05"; +static const ALIGN_ASSET(2) char gTextureDkFace05[] = "__OTR__textures/player_selection/donkeykong_face_05"; -static const ALIGN_ASSET(2) char gTextureDkFace06[] = "__OTR__player_selection/donkeykong_face_06"; +static const ALIGN_ASSET(2) char gTextureDkFace06[] = "__OTR__textures/player_selection/donkeykong_face_06"; -static const ALIGN_ASSET(2) char gTextureDkFace07[] = "__OTR__player_selection/donkeykong_face_07"; +static const ALIGN_ASSET(2) char gTextureDkFace07[] = "__OTR__textures/player_selection/donkeykong_face_07"; -static const ALIGN_ASSET(2) char gTextureDkFace08[] = "__OTR__player_selection/donkeykong_face_08"; +static const ALIGN_ASSET(2) char gTextureDkFace08[] = "__OTR__textures/player_selection/donkeykong_face_08"; -static const ALIGN_ASSET(2) char gTextureDkFace09[] = "__OTR__player_selection/donkeykong_face_09"; +static const ALIGN_ASSET(2) char gTextureDkFace09[] = "__OTR__textures/player_selection/donkeykong_face_09"; -static const ALIGN_ASSET(2) char gTextureDkFace10[] = "__OTR__player_selection/donkeykong_face_10"; +static const ALIGN_ASSET(2) char gTextureDkFace10[] = "__OTR__textures/player_selection/donkeykong_face_10"; -static const ALIGN_ASSET(2) char gTextureDkFace11[] = "__OTR__player_selection/donkeykong_face_11"; +static const ALIGN_ASSET(2) char gTextureDkFace11[] = "__OTR__textures/player_selection/donkeykong_face_11"; -static const ALIGN_ASSET(2) char gTextureDkFace12[] = "__OTR__player_selection/donkeykong_face_12"; +static const ALIGN_ASSET(2) char gTextureDkFace12[] = "__OTR__textures/player_selection/donkeykong_face_12"; -static const ALIGN_ASSET(2) char gTextureDkFace13[] = "__OTR__player_selection/donkeykong_face_13"; +static const ALIGN_ASSET(2) char gTextureDkFace13[] = "__OTR__textures/player_selection/donkeykong_face_13"; -static const ALIGN_ASSET(2) char gTextureDkFace14[] = "__OTR__player_selection/donkeykong_face_14"; +static const ALIGN_ASSET(2) char gTextureDkFace14[] = "__OTR__textures/player_selection/donkeykong_face_14"; -static const ALIGN_ASSET(2) char gTextureDkFace15[] = "__OTR__player_selection/donkeykong_face_15"; +static const ALIGN_ASSET(2) char gTextureDkFace15[] = "__OTR__textures/player_selection/donkeykong_face_15"; -static const ALIGN_ASSET(2) char gTextureDkFace16[] = "__OTR__player_selection/donkeykong_face_16"; +static const ALIGN_ASSET(2) char gTextureDkFace16[] = "__OTR__textures/player_selection/donkeykong_face_16"; -static const ALIGN_ASSET(2) char gTextureWarioFace00[] = "__OTR__player_selection/wario_face_00"; +static const ALIGN_ASSET(2) char gTextureWarioFace00[] = "__OTR__textures/player_selection/wario_face_00"; -static const ALIGN_ASSET(2) char gTextureWarioFace01[] = "__OTR__player_selection/wario_face_01"; +static const ALIGN_ASSET(2) char gTextureWarioFace01[] = "__OTR__textures/player_selection/wario_face_01"; -static const ALIGN_ASSET(2) char gTextureWarioFace02[] = "__OTR__player_selection/wario_face_02"; +static const ALIGN_ASSET(2) char gTextureWarioFace02[] = "__OTR__textures/player_selection/wario_face_02"; -static const ALIGN_ASSET(2) char gTextureWarioFace03[] = "__OTR__player_selection/wario_face_03"; +static const ALIGN_ASSET(2) char gTextureWarioFace03[] = "__OTR__textures/player_selection/wario_face_03"; -static const ALIGN_ASSET(2) char gTextureWarioFace04[] = "__OTR__player_selection/wario_face_04"; +static const ALIGN_ASSET(2) char gTextureWarioFace04[] = "__OTR__textures/player_selection/wario_face_04"; -static const ALIGN_ASSET(2) char gTextureWarioFace05[] = "__OTR__player_selection/wario_face_05"; +static const ALIGN_ASSET(2) char gTextureWarioFace05[] = "__OTR__textures/player_selection/wario_face_05"; -static const ALIGN_ASSET(2) char gTextureWarioFace06[] = "__OTR__player_selection/wario_face_06"; +static const ALIGN_ASSET(2) char gTextureWarioFace06[] = "__OTR__textures/player_selection/wario_face_06"; -static const ALIGN_ASSET(2) char gTextureWarioFace07[] = "__OTR__player_selection/wario_face_07"; +static const ALIGN_ASSET(2) char gTextureWarioFace07[] = "__OTR__textures/player_selection/wario_face_07"; -static const ALIGN_ASSET(2) char gTextureWarioFace08[] = "__OTR__player_selection/wario_face_08"; +static const ALIGN_ASSET(2) char gTextureWarioFace08[] = "__OTR__textures/player_selection/wario_face_08"; -static const ALIGN_ASSET(2) char gTextureWarioFace09[] = "__OTR__player_selection/wario_face_09"; +static const ALIGN_ASSET(2) char gTextureWarioFace09[] = "__OTR__textures/player_selection/wario_face_09"; -static const ALIGN_ASSET(2) char gTextureWarioFace10[] = "__OTR__player_selection/wario_face_10"; +static const ALIGN_ASSET(2) char gTextureWarioFace10[] = "__OTR__textures/player_selection/wario_face_10"; -static const ALIGN_ASSET(2) char gTextureWarioFace11[] = "__OTR__player_selection/wario_face_11"; +static const ALIGN_ASSET(2) char gTextureWarioFace11[] = "__OTR__textures/player_selection/wario_face_11"; -static const ALIGN_ASSET(2) char gTextureWarioFace12[] = "__OTR__player_selection/wario_face_12"; +static const ALIGN_ASSET(2) char gTextureWarioFace12[] = "__OTR__textures/player_selection/wario_face_12"; -static const ALIGN_ASSET(2) char gTextureWarioFace13[] = "__OTR__player_selection/wario_face_13"; +static const ALIGN_ASSET(2) char gTextureWarioFace13[] = "__OTR__textures/player_selection/wario_face_13"; -static const ALIGN_ASSET(2) char gTextureWarioFace14[] = "__OTR__player_selection/wario_face_14"; +static const ALIGN_ASSET(2) char gTextureWarioFace14[] = "__OTR__textures/player_selection/wario_face_14"; -static const ALIGN_ASSET(2) char gTextureWarioFace15[] = "__OTR__player_selection/wario_face_15"; +static const ALIGN_ASSET(2) char gTextureWarioFace15[] = "__OTR__textures/player_selection/wario_face_15"; -static const ALIGN_ASSET(2) char gTextureWarioFace16[] = "__OTR__player_selection/wario_face_16"; +static const ALIGN_ASSET(2) char gTextureWarioFace16[] = "__OTR__textures/player_selection/wario_face_16"; -static const ALIGN_ASSET(2) char gTextureBowserFace00[] = "__OTR__player_selection/bowser_face_00"; +static const ALIGN_ASSET(2) char gTextureBowserFace00[] = "__OTR__textures/player_selection/bowser_face_00"; -static const ALIGN_ASSET(2) char gTextureBowserFace01[] = "__OTR__player_selection/bowser_face_01"; +static const ALIGN_ASSET(2) char gTextureBowserFace01[] = "__OTR__textures/player_selection/bowser_face_01"; -static const ALIGN_ASSET(2) char gTextureBowserFace02[] = "__OTR__player_selection/bowser_face_02"; +static const ALIGN_ASSET(2) char gTextureBowserFace02[] = "__OTR__textures/player_selection/bowser_face_02"; -static const ALIGN_ASSET(2) char gTextureBowserFace03[] = "__OTR__player_selection/bowser_face_03"; +static const ALIGN_ASSET(2) char gTextureBowserFace03[] = "__OTR__textures/player_selection/bowser_face_03"; -static const ALIGN_ASSET(2) char gTextureBowserFace04[] = "__OTR__player_selection/bowser_face_04"; +static const ALIGN_ASSET(2) char gTextureBowserFace04[] = "__OTR__textures/player_selection/bowser_face_04"; -static const ALIGN_ASSET(2) char gTextureBowserFace05[] = "__OTR__player_selection/bowser_face_05"; +static const ALIGN_ASSET(2) char gTextureBowserFace05[] = "__OTR__textures/player_selection/bowser_face_05"; -static const ALIGN_ASSET(2) char gTextureBowserFace06[] = "__OTR__player_selection/bowser_face_06"; +static const ALIGN_ASSET(2) char gTextureBowserFace06[] = "__OTR__textures/player_selection/bowser_face_06"; -static const ALIGN_ASSET(2) char gTextureBowserFace07[] = "__OTR__player_selection/bowser_face_07"; +static const ALIGN_ASSET(2) char gTextureBowserFace07[] = "__OTR__textures/player_selection/bowser_face_07"; -static const ALIGN_ASSET(2) char gTextureBowserFace08[] = "__OTR__player_selection/bowser_face_08"; +static const ALIGN_ASSET(2) char gTextureBowserFace08[] = "__OTR__textures/player_selection/bowser_face_08"; -static const ALIGN_ASSET(2) char gTextureBowserFace09[] = "__OTR__player_selection/bowser_face_09"; +static const ALIGN_ASSET(2) char gTextureBowserFace09[] = "__OTR__textures/player_selection/bowser_face_09"; -static const ALIGN_ASSET(2) char gTextureBowserFace10[] = "__OTR__player_selection/bowser_face_10"; +static const ALIGN_ASSET(2) char gTextureBowserFace10[] = "__OTR__textures/player_selection/bowser_face_10"; -static const ALIGN_ASSET(2) char gTextureBowserFace11[] = "__OTR__player_selection/bowser_face_11"; +static const ALIGN_ASSET(2) char gTextureBowserFace11[] = "__OTR__textures/player_selection/bowser_face_11"; -static const ALIGN_ASSET(2) char gTextureBowserFace12[] = "__OTR__player_selection/bowser_face_12"; +static const ALIGN_ASSET(2) char gTextureBowserFace12[] = "__OTR__textures/player_selection/bowser_face_12"; -static const ALIGN_ASSET(2) char gTextureBowserFace13[] = "__OTR__player_selection/bowser_face_13"; +static const ALIGN_ASSET(2) char gTextureBowserFace13[] = "__OTR__textures/player_selection/bowser_face_13"; -static const ALIGN_ASSET(2) char gTextureBowserFace14[] = "__OTR__player_selection/bowser_face_14"; +static const ALIGN_ASSET(2) char gTextureBowserFace14[] = "__OTR__textures/player_selection/bowser_face_14"; -static const ALIGN_ASSET(2) char gTextureBowserFace15[] = "__OTR__player_selection/bowser_face_15"; +static const ALIGN_ASSET(2) char gTextureBowserFace15[] = "__OTR__textures/player_selection/bowser_face_15"; -static const ALIGN_ASSET(2) char gTextureBowserFace16[] = "__OTR__player_selection/bowser_face_16"; +static const ALIGN_ASSET(2) char gTextureBowserFace16[] = "__OTR__textures/player_selection/bowser_face_16"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewMarioRaceway[] = "__OTR__player_selection/gTextureCoursePreviewMarioRaceway"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewMarioRaceway[] = "__OTR__textures/player_selection/gTextureCoursePreviewMarioRaceway"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewChocoMountain[] = "__OTR__player_selection/gTextureCoursePreviewChocoMountain"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewChocoMountain[] = "__OTR__textures/player_selection/gTextureCoursePreviewChocoMountain"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewBowsersCastle[] = "__OTR__player_selection/gTextureCoursePreviewBowsersCastle"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewBowsersCastle[] = "__OTR__textures/player_selection/gTextureCoursePreviewBowsersCastle"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewBansheeBoardwalk[] = "__OTR__player_selection/gTextureCoursePreviewBansheeBoardwalk"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewBansheeBoardwalk[] = "__OTR__textures/player_selection/gTextureCoursePreviewBansheeBoardwalk"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewYoshiValley[] = "__OTR__player_selection/gTextureCoursePreviewYoshiValley"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewYoshiValley[] = "__OTR__textures/player_selection/gTextureCoursePreviewYoshiValley"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewFrappeSnowland[] = "__OTR__player_selection/gTextureCoursePreviewFrappeSnowland"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewFrappeSnowland[] = "__OTR__textures/player_selection/gTextureCoursePreviewFrappeSnowland"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewKoopaTroopaBeach[] = "__OTR__player_selection/gTextureCoursePreviewKoopaTroopaBeach"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewKoopaTroopaBeach[] = "__OTR__textures/player_selection/gTextureCoursePreviewKoopaTroopaBeach"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewRoyalRaceway[] = "__OTR__player_selection/gTextureCoursePreviewRoyalRaceway"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewRoyalRaceway[] = "__OTR__textures/player_selection/gTextureCoursePreviewRoyalRaceway"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewLuigiRaceway[] = "__OTR__player_selection/gTextureCoursePreviewLuigiRaceway"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewLuigiRaceway[] = "__OTR__textures/player_selection/gTextureCoursePreviewLuigiRaceway"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewMooMooFarm[] = "__OTR__player_selection/gTextureCoursePreviewMooMooFarm"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewMooMooFarm[] = "__OTR__textures/player_selection/gTextureCoursePreviewMooMooFarm"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewToadsTurnpike[] = "__OTR__player_selection/gTextureCoursePreviewToadsTurnpike"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewToadsTurnpike[] = "__OTR__textures/player_selection/gTextureCoursePreviewToadsTurnpike"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewKalimariDesert[] = "__OTR__player_selection/gTextureCoursePreviewKalimariDesert"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewKalimariDesert[] = "__OTR__textures/player_selection/gTextureCoursePreviewKalimariDesert"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewSherbetLand[] = "__OTR__player_selection/gTextureCoursePreviewSherbetLand"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewSherbetLand[] = "__OTR__textures/player_selection/gTextureCoursePreviewSherbetLand"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewRainbowRoad[] = "__OTR__player_selection/gTextureCoursePreviewRainbowRoad"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewRainbowRoad[] = "__OTR__textures/player_selection/gTextureCoursePreviewRainbowRoad"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewWarioStadium[] = "__OTR__player_selection/gTextureCoursePreviewWarioStadium"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewWarioStadium[] = "__OTR__textures/player_selection/gTextureCoursePreviewWarioStadium"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewBlockFort[] = "__OTR__player_selection/gTextureCoursePreviewBlockFort"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewBlockFort[] = "__OTR__textures/player_selection/gTextureCoursePreviewBlockFort"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewSkyscraper[] = "__OTR__player_selection/gTextureCoursePreviewSkyscraper"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewSkyscraper[] = "__OTR__textures/player_selection/gTextureCoursePreviewSkyscraper"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewDoubleDeck[] = "__OTR__player_selection/gTextureCoursePreviewDoubleDeck"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewDoubleDeck[] = "__OTR__textures/player_selection/gTextureCoursePreviewDoubleDeck"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewDksJungleParkway[] = "__OTR__player_selection/gTextureCoursePreviewDksJungleParkway"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewDksJungleParkway[] = "__OTR__textures/player_selection/gTextureCoursePreviewDksJungleParkway"; -static const ALIGN_ASSET(2) char gTextureCoursePreviewBigDonut[] = "__OTR__player_selection/gTextureCoursePreviewBigDonut"; +static const ALIGN_ASSET(2) char gTextureCoursePreviewBigDonut[] = "__OTR__textures/player_selection/gTextureCoursePreviewBigDonut"; -static const ALIGN_ASSET(2) char gTextureTrophyGold[] = "__OTR__player_selection/trophy_gold"; +static const ALIGN_ASSET(2) char gTextureTrophyGold[] = "__OTR__textures/player_selection/trophy_gold"; -static const ALIGN_ASSET(2) char gTextureTrophySilver[] = "__OTR__player_selection/trophy_silver"; +static const ALIGN_ASSET(2) char gTextureTrophySilver[] = "__OTR__textures/player_selection/trophy_silver"; -static const ALIGN_ASSET(2) char gTextureTrophyBronze[] = "__OTR__player_selection/trophy_bronze"; +static const ALIGN_ASSET(2) char gTextureTrophyBronze[] = "__OTR__textures/player_selection/trophy_bronze"; -static const ALIGN_ASSET(2) char gTextureCupGold[] = "__OTR__player_selection/cup_gold"; +static const ALIGN_ASSET(2) char gTextureCupGold[] = "__OTR__textures/player_selection/cup_gold"; -static const ALIGN_ASSET(2) char gTextureCupSilver[] = "__OTR__player_selection/cup_silver"; +static const ALIGN_ASSET(2) char gTextureCupSilver[] = "__OTR__textures/player_selection/cup_silver"; -static const ALIGN_ASSET(2) char gTextureCupBronze[] = "__OTR__player_selection/cup_bronze"; +static const ALIGN_ASSET(2) char gTextureCupBronze[] = "__OTR__textures/player_selection/cup_bronze"; -static const ALIGN_ASSET(2) char push_start_button[] = "__OTR__player_selection/push_start_button"; +static const ALIGN_ASSET(2) char push_start_button[] = "__OTR__textures/player_selection/push_start_button"; -static const ALIGN_ASSET(2) char copyright_1996[] = "__OTR__player_selection/copyright_1996"; +static const ALIGN_ASSET(2) char copyright_1996[] = "__OTR__textures/player_selection/copyright_1996"; -static const ALIGN_ASSET(2) char gTextureP1BorderBlue[] = "__OTR__player_selection/p1_border_blue"; +static const ALIGN_ASSET(2) char gTextureP1BorderBlue[] = "__OTR__textures/player_selection/p1_border_blue"; -static const ALIGN_ASSET(2) char gTextureP2BorderRed[] = "__OTR__player_selection/p2_border_red"; +static const ALIGN_ASSET(2) char gTextureP2BorderRed[] = "__OTR__textures/player_selection/p2_border_red"; -static const ALIGN_ASSET(2) char gTextureP3BorderOrange[] = "__OTR__player_selection/p3_border_orange"; +static const ALIGN_ASSET(2) char gTextureP3BorderOrange[] = "__OTR__textures/player_selection/p3_border_orange"; -static const ALIGN_ASSET(2) char gTextureP4BorderGreen[] = "__OTR__player_selection/p4_border_green"; +static const ALIGN_ASSET(2) char gTextureP4BorderGreen[] = "__OTR__textures/player_selection/p4_border_green"; -static const ALIGN_ASSET(2) char texture_small_green_triangle[] = "__OTR__player_selection/texture_small_green_triangle"; +static const ALIGN_ASSET(2) char texture_small_green_triangle[] = "__OTR__textures/player_selection/texture_small_green_triangle"; -static const ALIGN_ASSET(2) char gTexture7E56E4[] = "__OTR__player_selection/texture_7E56E4"; +static const ALIGN_ASSET(2) char gTexture7E56E4[] = "__OTR__textures/player_selection/texture_7E56E4"; diff --git a/include/assets/textures/some_data.h b/include/assets/textures/some_data.h new file mode 100644 index 000000000..2b3485b77 --- /dev/null +++ b/include/assets/textures/some_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char gTLUTOnomatopoeia[] = "__OTR__textures/some_data/gTLUTOnomatopoeia"; + diff --git a/include/assets/textures/startup_logo.h b/include/assets/textures/startup_logo.h new file mode 100644 index 000000000..f1d7244de --- /dev/null +++ b/include/assets/textures/startup_logo.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char startup_reflection_map_gold[] = "__OTR__textures/startup_logo/startup_reflection_map_gold"; + diff --git a/include/assets/texture_data_2.h b/include/assets/textures/texture_data_2.h similarity index 64% rename from include/assets/texture_data_2.h rename to include/assets/textures/texture_data_2.h index 17acda24f..87431f291 100644 --- a/include/assets/texture_data_2.h +++ b/include/assets/textures/texture_data_2.h @@ -3,797 +3,797 @@ #include #include -static const ALIGN_ASSET(2) char gTextureSmallFont0[] = "__OTR__texture_data_2/small_letter_0"; +static const ALIGN_ASSET(2) char gTextureSmallFont0[] = "__OTR__textures/texture_data_2/small_letter_0"; -static const ALIGN_ASSET(2) char gTextureSmallFont1[] = "__OTR__texture_data_2/small_letter_1"; +static const ALIGN_ASSET(2) char gTextureSmallFont1[] = "__OTR__textures/texture_data_2/small_letter_1"; -static const ALIGN_ASSET(2) char gTextureSmallFont2[] = "__OTR__texture_data_2/small_letter_2"; +static const ALIGN_ASSET(2) char gTextureSmallFont2[] = "__OTR__textures/texture_data_2/small_letter_2"; -static const ALIGN_ASSET(2) char gTextureSmallFont3[] = "__OTR__texture_data_2/small_letter_3"; +static const ALIGN_ASSET(2) char gTextureSmallFont3[] = "__OTR__textures/texture_data_2/small_letter_3"; -static const ALIGN_ASSET(2) char gTextureSmallFont4[] = "__OTR__texture_data_2/small_letter_4"; +static const ALIGN_ASSET(2) char gTextureSmallFont4[] = "__OTR__textures/texture_data_2/small_letter_4"; -static const ALIGN_ASSET(2) char gTextureSmallFont5[] = "__OTR__texture_data_2/small_letter_5"; +static const ALIGN_ASSET(2) char gTextureSmallFont5[] = "__OTR__textures/texture_data_2/small_letter_5"; -static const ALIGN_ASSET(2) char gTextureSmallFont6[] = "__OTR__texture_data_2/small_letter_6"; +static const ALIGN_ASSET(2) char gTextureSmallFont6[] = "__OTR__textures/texture_data_2/small_letter_6"; -static const ALIGN_ASSET(2) char gTextureSmallFont7[] = "__OTR__texture_data_2/small_letter_7"; +static const ALIGN_ASSET(2) char gTextureSmallFont7[] = "__OTR__textures/texture_data_2/small_letter_7"; -static const ALIGN_ASSET(2) char gTextureSmallFont8[] = "__OTR__texture_data_2/small_letter_8"; +static const ALIGN_ASSET(2) char gTextureSmallFont8[] = "__OTR__textures/texture_data_2/small_letter_8"; -static const ALIGN_ASSET(2) char gTextureSmallFont9[] = "__OTR__texture_data_2/small_letter_9"; +static const ALIGN_ASSET(2) char gTextureSmallFont9[] = "__OTR__textures/texture_data_2/small_letter_9"; -static const ALIGN_ASSET(2) char gTextureN64ControllerPakDataSelect[] = "__OTR__texture_data_2/n64_controller_pak_data_select"; +static const ALIGN_ASSET(2) char gTextureN64ControllerPakDataSelect[] = "__OTR__textures/texture_data_2/n64_controller_pak_data_select"; -static const ALIGN_ASSET(2) char gTextureEraseDataRecordConfirmation[] = "__OTR__texture_data_2/erase_data_record_confirmation"; +static const ALIGN_ASSET(2) char gTextureEraseDataRecordConfirmation[] = "__OTR__textures/texture_data_2/erase_data_record_confirmation"; -static const ALIGN_ASSET(2) char gTextureRecordNotErased[] = "__OTR__texture_data_2/record_not_erased"; +static const ALIGN_ASSET(2) char gTextureRecordNotErased[] = "__OTR__textures/texture_data_2/record_not_erased"; -static const ALIGN_ASSET(2) char gTexturePlaceN64ControllerPakIntoController1[] = "__OTR__texture_data_2/place_n64_controller_pak_into_controller_1"; +static const ALIGN_ASSET(2) char gTexturePlaceN64ControllerPakIntoController1[] = "__OTR__textures/texture_data_2/place_n64_controller_pak_into_controller_1"; -static const ALIGN_ASSET(2) char gTexturePleaseReinsertOriginalN64ControllerPak[] = "__OTR__texture_data_2/please_reinsert_original_n64_controller_pak"; +static const ALIGN_ASSET(2) char gTexturePleaseReinsertOriginalN64ControllerPak[] = "__OTR__textures/texture_data_2/please_reinsert_original_n64_controller_pak"; -static const ALIGN_ASSET(2) char gTextureErasingSelectedRecord[] = "__OTR__texture_data_2/erasing_selected_record"; +static const ALIGN_ASSET(2) char gTextureErasingSelectedRecord[] = "__OTR__textures/texture_data_2/erasing_selected_record"; -static const ALIGN_ASSET(2) char gTextureSelectRecord[] = "__OTR__texture_data_2/select_record"; +static const ALIGN_ASSET(2) char gTextureSelectRecord[] = "__OTR__textures/texture_data_2/select_record"; -static const ALIGN_ASSET(2) char gTextureTextEnd[] = "__OTR__texture_data_2/text_end"; +static const ALIGN_ASSET(2) char gTextureTextEnd[] = "__OTR__textures/texture_data_2/text_end"; -static const ALIGN_ASSET(2) char gTextureTableOfContents[] = "__OTR__texture_data_2/table_of_contents"; +static const ALIGN_ASSET(2) char gTextureTableOfContents[] = "__OTR__textures/texture_data_2/table_of_contents"; -static const ALIGN_ASSET(2) char gTextureTextHash[] = "__OTR__texture_data_2/text_hash"; +static const ALIGN_ASSET(2) char gTextureTextHash[] = "__OTR__textures/texture_data_2/text_hash"; -static const ALIGN_ASSET(2) char gTextureTextGameData[] = "__OTR__texture_data_2/text_game_data"; +static const ALIGN_ASSET(2) char gTextureTextGameData[] = "__OTR__textures/texture_data_2/text_game_data"; -static const ALIGN_ASSET(2) char gTextureTextPages[] = "__OTR__texture_data_2/text_pages"; +static const ALIGN_ASSET(2) char gTextureTextPages[] = "__OTR__textures/texture_data_2/text_pages"; -static const ALIGN_ASSET(2) char gTextureTextPagesFree[] = "__OTR__texture_data_2/text_pages_free"; +static const ALIGN_ASSET(2) char gTextureTextPagesFree[] = "__OTR__textures/texture_data_2/text_pages_free"; -static const ALIGN_ASSET(2) char gTextureTextErase[] = "__OTR__texture_data_2/text_erase"; +static const ALIGN_ASSET(2) char gTextureTextErase[] = "__OTR__textures/texture_data_2/text_erase"; -static const ALIGN_ASSET(2) char gTextureTextQuit[] = "__OTR__texture_data_2/text_quit"; +static const ALIGN_ASSET(2) char gTextureTextQuit[] = "__OTR__textures/texture_data_2/text_quit"; -static const ALIGN_ASSET(2) char gTexture7ED058[] = "__OTR__texture_data_2/texture_7ED058"; +static const ALIGN_ASSET(2) char gTexture7ED058[] = "__OTR__textures/texture_data_2/texture_7ED058"; -static const ALIGN_ASSET(2) char gTexture7ED290[] = "__OTR__texture_data_2/texture_7ED290"; +static const ALIGN_ASSET(2) char gTexture7ED290[] = "__OTR__textures/texture_data_2/texture_7ED290"; -static const ALIGN_ASSET(2) char gTexture7ED50C[] = "__OTR__texture_data_2/texture_7ED50C"; +static const ALIGN_ASSET(2) char gTexture7ED50C[] = "__OTR__textures/texture_data_2/texture_7ED50C"; -static const ALIGN_ASSET(2) char gTexture7ED6A4[] = "__OTR__texture_data_2/texture_7ED6A4"; +static const ALIGN_ASSET(2) char gTexture7ED6A4[] = "__OTR__textures/texture_data_2/texture_7ED6A4"; -static const ALIGN_ASSET(2) char gTextureTinyFont0[] = "__OTR__texture_data_2/tiny_font_0"; +static const ALIGN_ASSET(2) char gTextureTinyFont0[] = "__OTR__textures/texture_data_2/tiny_font_0"; -static const ALIGN_ASSET(2) char gTextureTinyFont1[] = "__OTR__texture_data_2/tiny_font_1"; +static const ALIGN_ASSET(2) char gTextureTinyFont1[] = "__OTR__textures/texture_data_2/tiny_font_1"; -static const ALIGN_ASSET(2) char gTextureTinyFont2[] = "__OTR__texture_data_2/tiny_font_2"; +static const ALIGN_ASSET(2) char gTextureTinyFont2[] = "__OTR__textures/texture_data_2/tiny_font_2"; -static const ALIGN_ASSET(2) char gTextureTinyFont3[] = "__OTR__texture_data_2/tiny_font_3"; +static const ALIGN_ASSET(2) char gTextureTinyFont3[] = "__OTR__textures/texture_data_2/tiny_font_3"; -static const ALIGN_ASSET(2) char gTextureTinyFont4[] = "__OTR__texture_data_2/tiny_font_4"; +static const ALIGN_ASSET(2) char gTextureTinyFont4[] = "__OTR__textures/texture_data_2/tiny_font_4"; -static const ALIGN_ASSET(2) char gTextureTinyFont5[] = "__OTR__texture_data_2/tiny_font_5"; +static const ALIGN_ASSET(2) char gTextureTinyFont5[] = "__OTR__textures/texture_data_2/tiny_font_5"; -static const ALIGN_ASSET(2) char gTextureTinyFont6[] = "__OTR__texture_data_2/tiny_font_6"; +static const ALIGN_ASSET(2) char gTextureTinyFont6[] = "__OTR__textures/texture_data_2/tiny_font_6"; -static const ALIGN_ASSET(2) char gTextureTinyFont7[] = "__OTR__texture_data_2/tiny_font_7"; +static const ALIGN_ASSET(2) char gTextureTinyFont7[] = "__OTR__textures/texture_data_2/tiny_font_7"; -static const ALIGN_ASSET(2) char gTextureTinyFont8[] = "__OTR__texture_data_2/tiny_font_8"; +static const ALIGN_ASSET(2) char gTextureTinyFont8[] = "__OTR__textures/texture_data_2/tiny_font_8"; -static const ALIGN_ASSET(2) char gTextureTinyFont9[] = "__OTR__texture_data_2/tiny_font_9"; +static const ALIGN_ASSET(2) char gTextureTinyFont9[] = "__OTR__textures/texture_data_2/tiny_font_9"; -static const ALIGN_ASSET(2) char gTextureTinyFontA[] = "__OTR__texture_data_2/tiny_font_A"; +static const ALIGN_ASSET(2) char gTextureTinyFontA[] = "__OTR__textures/texture_data_2/tiny_font_A"; -static const ALIGN_ASSET(2) char gTextureTinyFontB[] = "__OTR__texture_data_2/tiny_font_B"; +static const ALIGN_ASSET(2) char gTextureTinyFontB[] = "__OTR__textures/texture_data_2/tiny_font_B"; -static const ALIGN_ASSET(2) char gTextureTinyFontC[] = "__OTR__texture_data_2/tiny_font_C"; +static const ALIGN_ASSET(2) char gTextureTinyFontC[] = "__OTR__textures/texture_data_2/tiny_font_C"; -static const ALIGN_ASSET(2) char gTextureTinyFontD[] = "__OTR__texture_data_2/tiny_font_D"; +static const ALIGN_ASSET(2) char gTextureTinyFontD[] = "__OTR__textures/texture_data_2/tiny_font_D"; -static const ALIGN_ASSET(2) char gTextureTinyFontE[] = "__OTR__texture_data_2/tiny_font_E"; +static const ALIGN_ASSET(2) char gTextureTinyFontE[] = "__OTR__textures/texture_data_2/tiny_font_E"; -static const ALIGN_ASSET(2) char gTextureTinyFontF[] = "__OTR__texture_data_2/tiny_font_F"; +static const ALIGN_ASSET(2) char gTextureTinyFontF[] = "__OTR__textures/texture_data_2/tiny_font_F"; -static const ALIGN_ASSET(2) char gTextureTinyFontG[] = "__OTR__texture_data_2/tiny_font_G"; +static const ALIGN_ASSET(2) char gTextureTinyFontG[] = "__OTR__textures/texture_data_2/tiny_font_G"; -static const ALIGN_ASSET(2) char gTextureTinyFontH[] = "__OTR__texture_data_2/tiny_font_H"; +static const ALIGN_ASSET(2) char gTextureTinyFontH[] = "__OTR__textures/texture_data_2/tiny_font_H"; -static const ALIGN_ASSET(2) char gTextureTinyFontI[] = "__OTR__texture_data_2/tiny_font_I"; +static const ALIGN_ASSET(2) char gTextureTinyFontI[] = "__OTR__textures/texture_data_2/tiny_font_I"; -static const ALIGN_ASSET(2) char gTextureTinyFontJ[] = "__OTR__texture_data_2/tiny_font_J"; +static const ALIGN_ASSET(2) char gTextureTinyFontJ[] = "__OTR__textures/texture_data_2/tiny_font_J"; -static const ALIGN_ASSET(2) char gTextureTinyFontK[] = "__OTR__texture_data_2/tiny_font_K"; +static const ALIGN_ASSET(2) char gTextureTinyFontK[] = "__OTR__textures/texture_data_2/tiny_font_K"; -static const ALIGN_ASSET(2) char gTextureTinyFontL[] = "__OTR__texture_data_2/tiny_font_L"; +static const ALIGN_ASSET(2) char gTextureTinyFontL[] = "__OTR__textures/texture_data_2/tiny_font_L"; -static const ALIGN_ASSET(2) char gTextureTinyFontM[] = "__OTR__texture_data_2/tiny_font_M"; +static const ALIGN_ASSET(2) char gTextureTinyFontM[] = "__OTR__textures/texture_data_2/tiny_font_M"; -static const ALIGN_ASSET(2) char gTextureTinyFontN[] = "__OTR__texture_data_2/tiny_font_N"; +static const ALIGN_ASSET(2) char gTextureTinyFontN[] = "__OTR__textures/texture_data_2/tiny_font_N"; -static const ALIGN_ASSET(2) char gTextureTinyFontO[] = "__OTR__texture_data_2/tiny_font_O"; +static const ALIGN_ASSET(2) char gTextureTinyFontO[] = "__OTR__textures/texture_data_2/tiny_font_O"; -static const ALIGN_ASSET(2) char gTextureTinyFontP[] = "__OTR__texture_data_2/tiny_font_P"; +static const ALIGN_ASSET(2) char gTextureTinyFontP[] = "__OTR__textures/texture_data_2/tiny_font_P"; -static const ALIGN_ASSET(2) char gTextureTinyFontQ[] = "__OTR__texture_data_2/tiny_font_Q"; +static const ALIGN_ASSET(2) char gTextureTinyFontQ[] = "__OTR__textures/texture_data_2/tiny_font_Q"; -static const ALIGN_ASSET(2) char gTextureTinyFontR[] = "__OTR__texture_data_2/tiny_font_R"; +static const ALIGN_ASSET(2) char gTextureTinyFontR[] = "__OTR__textures/texture_data_2/tiny_font_R"; -static const ALIGN_ASSET(2) char gTextureTinyFontS[] = "__OTR__texture_data_2/tiny_font_S"; +static const ALIGN_ASSET(2) char gTextureTinyFontS[] = "__OTR__textures/texture_data_2/tiny_font_S"; -static const ALIGN_ASSET(2) char gTextureTinyFontT[] = "__OTR__texture_data_2/tiny_font_T"; +static const ALIGN_ASSET(2) char gTextureTinyFontT[] = "__OTR__textures/texture_data_2/tiny_font_T"; -static const ALIGN_ASSET(2) char gTextureTinyFontU[] = "__OTR__texture_data_2/tiny_font_U"; +static const ALIGN_ASSET(2) char gTextureTinyFontU[] = "__OTR__textures/texture_data_2/tiny_font_U"; -static const ALIGN_ASSET(2) char gTextureTinyFontV[] = "__OTR__texture_data_2/tiny_font_V"; +static const ALIGN_ASSET(2) char gTextureTinyFontV[] = "__OTR__textures/texture_data_2/tiny_font_V"; -static const ALIGN_ASSET(2) char gTextureTinyFontW[] = "__OTR__texture_data_2/tiny_font_W"; +static const ALIGN_ASSET(2) char gTextureTinyFontW[] = "__OTR__textures/texture_data_2/tiny_font_W"; -static const ALIGN_ASSET(2) char gTextureTinyFontX[] = "__OTR__texture_data_2/tiny_font_X"; +static const ALIGN_ASSET(2) char gTextureTinyFontX[] = "__OTR__textures/texture_data_2/tiny_font_X"; -static const ALIGN_ASSET(2) char gTextureTinyFontY[] = "__OTR__texture_data_2/tiny_font_Y"; +static const ALIGN_ASSET(2) char gTextureTinyFontY[] = "__OTR__textures/texture_data_2/tiny_font_Y"; -static const ALIGN_ASSET(2) char gTextureTinyFontZ[] = "__OTR__texture_data_2/tiny_font_Z"; +static const ALIGN_ASSET(2) char gTextureTinyFontZ[] = "__OTR__textures/texture_data_2/tiny_font_Z"; -static const ALIGN_ASSET(2) char gTextureTinyFontExclamationMark[] = "__OTR__texture_data_2/tiny_font_exclamation_mark"; +static const ALIGN_ASSET(2) char gTextureTinyFontExclamationMark[] = "__OTR__textures/texture_data_2/tiny_font_exclamation_mark"; -static const ALIGN_ASSET(2) char gTextureTinyFontDoubleQuote[] = "__OTR__texture_data_2/tiny_font_double_quote"; +static const ALIGN_ASSET(2) char gTextureTinyFontDoubleQuote[] = "__OTR__textures/texture_data_2/tiny_font_double_quote"; -static const ALIGN_ASSET(2) char gTextureTinyFontHash[] = "__OTR__texture_data_2/tiny_font_hash"; +static const ALIGN_ASSET(2) char gTextureTinyFontHash[] = "__OTR__textures/texture_data_2/tiny_font_hash"; -static const ALIGN_ASSET(2) char gTextureTinyFontSingleQuote[] = "__OTR__texture_data_2/tiny_font_single_quote"; +static const ALIGN_ASSET(2) char gTextureTinyFontSingleQuote[] = "__OTR__textures/texture_data_2/tiny_font_single_quote"; -static const ALIGN_ASSET(2) char gTextureTinyFontAsterisk[] = "__OTR__texture_data_2/tiny_font_asterisk"; +static const ALIGN_ASSET(2) char gTextureTinyFontAsterisk[] = "__OTR__textures/texture_data_2/tiny_font_asterisk"; -static const ALIGN_ASSET(2) char gTextureTinyFontPlus[] = "__OTR__texture_data_2/tiny_font_plus"; +static const ALIGN_ASSET(2) char gTextureTinyFontPlus[] = "__OTR__textures/texture_data_2/tiny_font_plus"; -static const ALIGN_ASSET(2) char gTexture7EEB18[] = "__OTR__texture_data_2/texture_7EEB18"; +static const ALIGN_ASSET(2) char gTexture7EEB18[] = "__OTR__textures/texture_data_2/texture_7EEB18"; -static const ALIGN_ASSET(2) char gTextureTinyFontMinus[] = "__OTR__texture_data_2/tiny_font_minus"; +static const ALIGN_ASSET(2) char gTextureTinyFontMinus[] = "__OTR__textures/texture_data_2/tiny_font_minus"; -static const ALIGN_ASSET(2) char gTextureTinyFontComma[] = "__OTR__texture_data_2/tiny_font_dot"; +static const ALIGN_ASSET(2) char gTextureTinyFontComma[] = "__OTR__textures/texture_data_2/tiny_font_dot"; -static const ALIGN_ASSET(2) char gTextureTinyFontForwardSlash[] = "__OTR__texture_data_2/tiny_font_forward_slash"; +static const ALIGN_ASSET(2) char gTextureTinyFontForwardSlash[] = "__OTR__textures/texture_data_2/tiny_font_forward_slash"; -static const ALIGN_ASSET(2) char gTextureTinyFontColon[] = "__OTR__texture_data_2/tiny_font_colon"; +static const ALIGN_ASSET(2) char gTextureTinyFontColon[] = "__OTR__textures/texture_data_2/tiny_font_colon"; -static const ALIGN_ASSET(2) char gTexture7EEC34[] = "__OTR__texture_data_2/texture_7EEC34"; +static const ALIGN_ASSET(2) char gTexture7EEC34[] = "__OTR__textures/texture_data_2/texture_7EEC34"; -static const ALIGN_ASSET(2) char gTextureTinyFontQuestion[] = "__OTR__texture_data_2/tiny_font_question"; +static const ALIGN_ASSET(2) char gTextureTinyFontQuestion[] = "__OTR__textures/texture_data_2/tiny_font_question"; -static const ALIGN_ASSET(2) char gTexture7EECE4[] = "__OTR__texture_data_2/texture_7EECE4"; +static const ALIGN_ASSET(2) char gTexture7EECE4[] = "__OTR__textures/texture_data_2/texture_7EECE4"; -static const ALIGN_ASSET(2) char gTexture7EED74[] = "__OTR__texture_data_2/texture_7EED74"; +static const ALIGN_ASSET(2) char gTexture7EED74[] = "__OTR__textures/texture_data_2/texture_7EED74"; -static const ALIGN_ASSET(2) char gTexture7EEDB0[] = "__OTR__texture_data_2/texture_7EEDB0"; +static const ALIGN_ASSET(2) char gTexture7EEDB0[] = "__OTR__textures/texture_data_2/texture_7EEDB0"; -static const ALIGN_ASSET(2) char gTexture7EEDE8[] = "__OTR__texture_data_2/texture_7EEDE8"; +static const ALIGN_ASSET(2) char gTexture7EEDE8[] = "__OTR__textures/texture_data_2/texture_7EEDE8"; -static const ALIGN_ASSET(2) char gTexture7EEE20[] = "__OTR__texture_data_2/texture_7EEE20"; +static const ALIGN_ASSET(2) char gTexture7EEE20[] = "__OTR__textures/texture_data_2/texture_7EEE20"; -static const ALIGN_ASSET(2) char gTexture7EEE7C[] = "__OTR__texture_data_2/texture_7EEE7C"; +static const ALIGN_ASSET(2) char gTexture7EEE7C[] = "__OTR__textures/texture_data_2/texture_7EEE7C"; -static const ALIGN_ASSET(2) char gTexture7EEED0[] = "__OTR__texture_data_2/texture_7EEED0"; +static const ALIGN_ASSET(2) char gTexture7EEED0[] = "__OTR__textures/texture_data_2/texture_7EEED0"; -static const ALIGN_ASSET(2) char gTexture7EEF3C[] = "__OTR__texture_data_2/texture_7EEF3C"; +static const ALIGN_ASSET(2) char gTexture7EEF3C[] = "__OTR__textures/texture_data_2/texture_7EEF3C"; -static const ALIGN_ASSET(2) char gTexture7EEF90[] = "__OTR__texture_data_2/texture_7EEF90"; +static const ALIGN_ASSET(2) char gTexture7EEF90[] = "__OTR__textures/texture_data_2/texture_7EEF90"; -static const ALIGN_ASSET(2) char gTexture7EEFF4[] = "__OTR__texture_data_2/texture_7EEFF4"; +static const ALIGN_ASSET(2) char gTexture7EEFF4[] = "__OTR__textures/texture_data_2/texture_7EEFF4"; -static const ALIGN_ASSET(2) char gTexture7EF058[] = "__OTR__texture_data_2/texture_7EF058"; +static const ALIGN_ASSET(2) char gTexture7EF058[] = "__OTR__textures/texture_data_2/texture_7EF058"; -static const ALIGN_ASSET(2) char gTexture7EF0B4[] = "__OTR__texture_data_2/texture_7EF0B4"; +static const ALIGN_ASSET(2) char gTexture7EF0B4[] = "__OTR__textures/texture_data_2/texture_7EF0B4"; -static const ALIGN_ASSET(2) char gTexture7EF110[] = "__OTR__texture_data_2/texture_7EF110"; +static const ALIGN_ASSET(2) char gTexture7EF110[] = "__OTR__textures/texture_data_2/texture_7EF110"; -static const ALIGN_ASSET(2) char gTexture7EF17C[] = "__OTR__texture_data_2/texture_7EF17C"; +static const ALIGN_ASSET(2) char gTexture7EF17C[] = "__OTR__textures/texture_data_2/texture_7EF17C"; -static const ALIGN_ASSET(2) char gTexture7EF1F0[] = "__OTR__texture_data_2/texture_7EF1F0"; +static const ALIGN_ASSET(2) char gTexture7EF1F0[] = "__OTR__textures/texture_data_2/texture_7EF1F0"; -static const ALIGN_ASSET(2) char gTexture7EF250[] = "__OTR__texture_data_2/texture_7EF250"; +static const ALIGN_ASSET(2) char gTexture7EF250[] = "__OTR__textures/texture_data_2/texture_7EF250"; -static const ALIGN_ASSET(2) char gTexture7EF2B8[] = "__OTR__texture_data_2/texture_7EF2B8"; +static const ALIGN_ASSET(2) char gTexture7EF2B8[] = "__OTR__textures/texture_data_2/texture_7EF2B8"; -static const ALIGN_ASSET(2) char gTexture7EF314[] = "__OTR__texture_data_2/texture_7EF314"; +static const ALIGN_ASSET(2) char gTexture7EF314[] = "__OTR__textures/texture_data_2/texture_7EF314"; -static const ALIGN_ASSET(2) char gTexture7EF388[] = "__OTR__texture_data_2/texture_7EF388"; +static const ALIGN_ASSET(2) char gTexture7EF388[] = "__OTR__textures/texture_data_2/texture_7EF388"; -static const ALIGN_ASSET(2) char gTexture7EF3F8[] = "__OTR__texture_data_2/texture_7EF3F8"; +static const ALIGN_ASSET(2) char gTexture7EF3F8[] = "__OTR__textures/texture_data_2/texture_7EF3F8"; -static const ALIGN_ASSET(2) char gTexture7EF470[] = "__OTR__texture_data_2/texture_7EF470"; +static const ALIGN_ASSET(2) char gTexture7EF470[] = "__OTR__textures/texture_data_2/texture_7EF470"; -static const ALIGN_ASSET(2) char gTexture7EF4E4[] = "__OTR__texture_data_2/texture_7EF4E4"; +static const ALIGN_ASSET(2) char gTexture7EF4E4[] = "__OTR__textures/texture_data_2/texture_7EF4E4"; -static const ALIGN_ASSET(2) char gTexture7EF554[] = "__OTR__texture_data_2/texture_7EF554"; +static const ALIGN_ASSET(2) char gTexture7EF554[] = "__OTR__textures/texture_data_2/texture_7EF554"; -static const ALIGN_ASSET(2) char gTexture7EF5C0[] = "__OTR__texture_data_2/texture_7EF5C0"; +static const ALIGN_ASSET(2) char gTexture7EF5C0[] = "__OTR__textures/texture_data_2/texture_7EF5C0"; -static const ALIGN_ASSET(2) char gTexture7EF620[] = "__OTR__texture_data_2/texture_7EF620"; +static const ALIGN_ASSET(2) char gTexture7EF620[] = "__OTR__textures/texture_data_2/texture_7EF620"; -static const ALIGN_ASSET(2) char gTexture7EF694[] = "__OTR__texture_data_2/texture_7EF694"; +static const ALIGN_ASSET(2) char gTexture7EF694[] = "__OTR__textures/texture_data_2/texture_7EF694"; -static const ALIGN_ASSET(2) char gTexture7EF708[] = "__OTR__texture_data_2/texture_7EF708"; +static const ALIGN_ASSET(2) char gTexture7EF708[] = "__OTR__textures/texture_data_2/texture_7EF708"; -static const ALIGN_ASSET(2) char gTexture7EF77C[] = "__OTR__texture_data_2/texture_7EF77C"; +static const ALIGN_ASSET(2) char gTexture7EF77C[] = "__OTR__textures/texture_data_2/texture_7EF77C"; -static const ALIGN_ASSET(2) char gTexture7EF7E8[] = "__OTR__texture_data_2/texture_7EF7E8"; +static const ALIGN_ASSET(2) char gTexture7EF7E8[] = "__OTR__textures/texture_data_2/texture_7EF7E8"; -static const ALIGN_ASSET(2) char gTexture7EF85C[] = "__OTR__texture_data_2/texture_7EF85C"; +static const ALIGN_ASSET(2) char gTexture7EF85C[] = "__OTR__textures/texture_data_2/texture_7EF85C"; -static const ALIGN_ASSET(2) char gTexture7EF8C8[] = "__OTR__texture_data_2/texture_7EF8C8"; +static const ALIGN_ASSET(2) char gTexture7EF8C8[] = "__OTR__textures/texture_data_2/texture_7EF8C8"; -static const ALIGN_ASSET(2) char gTexture7EF93C[] = "__OTR__texture_data_2/texture_7EF93C"; +static const ALIGN_ASSET(2) char gTexture7EF93C[] = "__OTR__textures/texture_data_2/texture_7EF93C"; -static const ALIGN_ASSET(2) char gTexture7EF9B4[] = "__OTR__texture_data_2/texture_7EF9B4"; +static const ALIGN_ASSET(2) char gTexture7EF9B4[] = "__OTR__textures/texture_data_2/texture_7EF9B4"; -static const ALIGN_ASSET(2) char gTexture7EFA2C[] = "__OTR__texture_data_2/texture_7EFA2C"; +static const ALIGN_ASSET(2) char gTexture7EFA2C[] = "__OTR__textures/texture_data_2/texture_7EFA2C"; -static const ALIGN_ASSET(2) char gTexture7EFAA8[] = "__OTR__texture_data_2/texture_7EFAA8"; +static const ALIGN_ASSET(2) char gTexture7EFAA8[] = "__OTR__textures/texture_data_2/texture_7EFAA8"; -static const ALIGN_ASSET(2) char gTexture7EFB00[] = "__OTR__texture_data_2/texture_7EFB00"; +static const ALIGN_ASSET(2) char gTexture7EFB00[] = "__OTR__textures/texture_data_2/texture_7EFB00"; -static const ALIGN_ASSET(2) char gTexture7EFB64[] = "__OTR__texture_data_2/texture_7EFB64"; +static const ALIGN_ASSET(2) char gTexture7EFB64[] = "__OTR__textures/texture_data_2/texture_7EFB64"; -static const ALIGN_ASSET(2) char gTexture7EFBBC[] = "__OTR__texture_data_2/texture_7EFBBC"; +static const ALIGN_ASSET(2) char gTexture7EFBBC[] = "__OTR__textures/texture_data_2/texture_7EFBBC"; -static const ALIGN_ASSET(2) char gTexture7EFC30[] = "__OTR__texture_data_2/texture_7EFC30"; +static const ALIGN_ASSET(2) char gTexture7EFC30[] = "__OTR__textures/texture_data_2/texture_7EFC30"; -static const ALIGN_ASSET(2) char gTexture7EFCAC[] = "__OTR__texture_data_2/texture_7EFCAC"; +static const ALIGN_ASSET(2) char gTexture7EFCAC[] = "__OTR__textures/texture_data_2/texture_7EFCAC"; -static const ALIGN_ASSET(2) char gTexture7EFD00[] = "__OTR__texture_data_2/texture_7EFD00"; +static const ALIGN_ASSET(2) char gTexture7EFD00[] = "__OTR__textures/texture_data_2/texture_7EFD00"; -static const ALIGN_ASSET(2) char gTexture7EFD60[] = "__OTR__texture_data_2/texture_7EFD60"; +static const ALIGN_ASSET(2) char gTexture7EFD60[] = "__OTR__textures/texture_data_2/texture_7EFD60"; -static const ALIGN_ASSET(2) char gTexture7EFDD4[] = "__OTR__texture_data_2/texture_7EFDD4"; +static const ALIGN_ASSET(2) char gTexture7EFDD4[] = "__OTR__textures/texture_data_2/texture_7EFDD4"; -static const ALIGN_ASSET(2) char gTexture7EFE48[] = "__OTR__texture_data_2/texture_7EFE48"; +static const ALIGN_ASSET(2) char gTexture7EFE48[] = "__OTR__textures/texture_data_2/texture_7EFE48"; -static const ALIGN_ASSET(2) char gTexture7EFEA0[] = "__OTR__texture_data_2/texture_7EFEA0"; +static const ALIGN_ASSET(2) char gTexture7EFEA0[] = "__OTR__textures/texture_data_2/texture_7EFEA0"; -static const ALIGN_ASSET(2) char gTexture7EFF2C[] = "__OTR__texture_data_2/texture_7EFF2C"; +static const ALIGN_ASSET(2) char gTexture7EFF2C[] = "__OTR__textures/texture_data_2/texture_7EFF2C"; -static const ALIGN_ASSET(2) char gTexture7EFF90[] = "__OTR__texture_data_2/texture_7EFF90"; +static const ALIGN_ASSET(2) char gTexture7EFF90[] = "__OTR__textures/texture_data_2/texture_7EFF90"; -static const ALIGN_ASSET(2) char gTexture7F0000[] = "__OTR__texture_data_2/texture_7F0000"; +static const ALIGN_ASSET(2) char gTexture7F0000[] = "__OTR__textures/texture_data_2/texture_7F0000"; -static const ALIGN_ASSET(2) char gTexture7F006C[] = "__OTR__texture_data_2/texture_7F006C"; +static const ALIGN_ASSET(2) char gTexture7F006C[] = "__OTR__textures/texture_data_2/texture_7F006C"; -static const ALIGN_ASSET(2) char gTexture7F00D8[] = "__OTR__texture_data_2/texture_7F00D8"; +static const ALIGN_ASSET(2) char gTexture7F00D8[] = "__OTR__textures/texture_data_2/texture_7F00D8"; -static const ALIGN_ASSET(2) char gTexture7F0158[] = "__OTR__texture_data_2/texture_7F0158"; +static const ALIGN_ASSET(2) char gTexture7F0158[] = "__OTR__textures/texture_data_2/texture_7F0158"; -static const ALIGN_ASSET(2) char gTexture7F01D0[] = "__OTR__texture_data_2/texture_7F01D0"; +static const ALIGN_ASSET(2) char gTexture7F01D0[] = "__OTR__textures/texture_data_2/texture_7F01D0"; -static const ALIGN_ASSET(2) char gTexture7F023C[] = "__OTR__texture_data_2/texture_7F023C"; +static const ALIGN_ASSET(2) char gTexture7F023C[] = "__OTR__textures/texture_data_2/texture_7F023C"; -static const ALIGN_ASSET(2) char gTexture7F02B4[] = "__OTR__texture_data_2/texture_7F02B4"; +static const ALIGN_ASSET(2) char gTexture7F02B4[] = "__OTR__textures/texture_data_2/texture_7F02B4"; -static const ALIGN_ASSET(2) char gTexture7F032C[] = "__OTR__texture_data_2/texture_7F032C"; +static const ALIGN_ASSET(2) char gTexture7F032C[] = "__OTR__textures/texture_data_2/texture_7F032C"; -static const ALIGN_ASSET(2) char gTexture7F0390[] = "__OTR__texture_data_2/texture_7F0390"; +static const ALIGN_ASSET(2) char gTexture7F0390[] = "__OTR__textures/texture_data_2/texture_7F0390"; -static const ALIGN_ASSET(2) char gTexture7F0404[] = "__OTR__texture_data_2/texture_7F0404"; +static const ALIGN_ASSET(2) char gTexture7F0404[] = "__OTR__textures/texture_data_2/texture_7F0404"; -static const ALIGN_ASSET(2) char gTexture7F0470[] = "__OTR__texture_data_2/texture_7F0470"; +static const ALIGN_ASSET(2) char gTexture7F0470[] = "__OTR__textures/texture_data_2/texture_7F0470"; -static const ALIGN_ASSET(2) char gTexture7F04EC[] = "__OTR__texture_data_2/texture_7F04EC"; +static const ALIGN_ASSET(2) char gTexture7F04EC[] = "__OTR__textures/texture_data_2/texture_7F04EC"; -static const ALIGN_ASSET(2) char gTexture7F055C[] = "__OTR__texture_data_2/texture_7F055C"; +static const ALIGN_ASSET(2) char gTexture7F055C[] = "__OTR__textures/texture_data_2/texture_7F055C"; -static const ALIGN_ASSET(2) char gTexture7F05F0[] = "__OTR__texture_data_2/texture_7F05F0"; +static const ALIGN_ASSET(2) char gTexture7F05F0[] = "__OTR__textures/texture_data_2/texture_7F05F0"; -static const ALIGN_ASSET(2) char gTexture7F0670[] = "__OTR__texture_data_2/texture_7F0670"; +static const ALIGN_ASSET(2) char gTexture7F0670[] = "__OTR__textures/texture_data_2/texture_7F0670"; -static const ALIGN_ASSET(2) char gTexture7F06EC[] = "__OTR__texture_data_2/texture_7F06EC"; +static const ALIGN_ASSET(2) char gTexture7F06EC[] = "__OTR__textures/texture_data_2/texture_7F06EC"; -static const ALIGN_ASSET(2) char gTexture7F0768[] = "__OTR__texture_data_2/texture_7F0768"; +static const ALIGN_ASSET(2) char gTexture7F0768[] = "__OTR__textures/texture_data_2/texture_7F0768"; -static const ALIGN_ASSET(2) char gTexture7F07E0[] = "__OTR__texture_data_2/texture_7F07E0"; +static const ALIGN_ASSET(2) char gTexture7F07E0[] = "__OTR__textures/texture_data_2/texture_7F07E0"; -static const ALIGN_ASSET(2) char gTexture7F0858[] = "__OTR__texture_data_2/texture_7F0858"; +static const ALIGN_ASSET(2) char gTexture7F0858[] = "__OTR__textures/texture_data_2/texture_7F0858"; -static const ALIGN_ASSET(2) char gTexture7F08D8[] = "__OTR__texture_data_2/texture_7F08D8"; +static const ALIGN_ASSET(2) char gTexture7F08D8[] = "__OTR__textures/texture_data_2/texture_7F08D8"; -static const ALIGN_ASSET(2) char gTexture7F0948[] = "__OTR__texture_data_2/texture_7F0948"; +static const ALIGN_ASSET(2) char gTexture7F0948[] = "__OTR__textures/texture_data_2/texture_7F0948"; -static const ALIGN_ASSET(2) char gTexture7F09D0[] = "__OTR__texture_data_2/texture_7F09D0"; +static const ALIGN_ASSET(2) char gTexture7F09D0[] = "__OTR__textures/texture_data_2/texture_7F09D0"; -static const ALIGN_ASSET(2) char gTexture7F0A3C[] = "__OTR__texture_data_2/texture_7F0A3C"; +static const ALIGN_ASSET(2) char gTexture7F0A3C[] = "__OTR__textures/texture_data_2/texture_7F0A3C"; -static const ALIGN_ASSET(2) char gTexture7F0ABC[] = "__OTR__texture_data_2/texture_7F0ABC"; +static const ALIGN_ASSET(2) char gTexture7F0ABC[] = "__OTR__textures/texture_data_2/texture_7F0ABC"; -static const ALIGN_ASSET(2) char gTexture7F0B34[] = "__OTR__texture_data_2/texture_7F0B34"; +static const ALIGN_ASSET(2) char gTexture7F0B34[] = "__OTR__textures/texture_data_2/texture_7F0B34"; -static const ALIGN_ASSET(2) char gTexture7F0BB0[] = "__OTR__texture_data_2/texture_7F0BB0"; +static const ALIGN_ASSET(2) char gTexture7F0BB0[] = "__OTR__textures/texture_data_2/texture_7F0BB0"; -static const ALIGN_ASSET(2) char gTexture7F0C24[] = "__OTR__texture_data_2/texture_7F0C24"; +static const ALIGN_ASSET(2) char gTexture7F0C24[] = "__OTR__textures/texture_data_2/texture_7F0C24"; -static const ALIGN_ASSET(2) char gTexture7F0C94[] = "__OTR__texture_data_2/texture_7F0C94"; +static const ALIGN_ASSET(2) char gTexture7F0C94[] = "__OTR__textures/texture_data_2/texture_7F0C94"; -static const ALIGN_ASSET(2) char gTexture7F0D0C[] = "__OTR__texture_data_2/texture_7F0D0C"; +static const ALIGN_ASSET(2) char gTexture7F0D0C[] = "__OTR__textures/texture_data_2/texture_7F0D0C"; -static const ALIGN_ASSET(2) char gTexture7F0D8C[] = "__OTR__texture_data_2/texture_7F0D8C"; +static const ALIGN_ASSET(2) char gTexture7F0D8C[] = "__OTR__textures/texture_data_2/texture_7F0D8C"; -static const ALIGN_ASSET(2) char gTexture7F0DEC[] = "__OTR__texture_data_2/texture_7F0DEC"; +static const ALIGN_ASSET(2) char gTexture7F0DEC[] = "__OTR__textures/texture_data_2/texture_7F0DEC"; -static const ALIGN_ASSET(2) char gTexture7F0E5C[] = "__OTR__texture_data_2/texture_7F0E5C"; +static const ALIGN_ASSET(2) char gTexture7F0E5C[] = "__OTR__textures/texture_data_2/texture_7F0E5C"; -static const ALIGN_ASSET(2) char gTexture7F0EE4[] = "__OTR__texture_data_2/texture_7F0EE4"; +static const ALIGN_ASSET(2) char gTexture7F0EE4[] = "__OTR__textures/texture_data_2/texture_7F0EE4"; -static const ALIGN_ASSET(2) char gTexture7F0F5C[] = "__OTR__texture_data_2/texture_7F0F5C"; +static const ALIGN_ASSET(2) char gTexture7F0F5C[] = "__OTR__textures/texture_data_2/texture_7F0F5C"; -static const ALIGN_ASSET(2) char gTexture7F0FD8[] = "__OTR__texture_data_2/texture_7F0FD8"; +static const ALIGN_ASSET(2) char gTexture7F0FD8[] = "__OTR__textures/texture_data_2/texture_7F0FD8"; -static const ALIGN_ASSET(2) char gTexture7F1038[] = "__OTR__texture_data_2/texture_7F1038"; +static const ALIGN_ASSET(2) char gTexture7F1038[] = "__OTR__textures/texture_data_2/texture_7F1038"; -static const ALIGN_ASSET(2) char gTexture7F109C[] = "__OTR__texture_data_2/texture_7F109C"; +static const ALIGN_ASSET(2) char gTexture7F109C[] = "__OTR__textures/texture_data_2/texture_7F109C"; -static const ALIGN_ASSET(2) char font_four_dote[] = "__OTR__texture_data_2/font_four_dote"; +static const ALIGN_ASSET(2) char font_four_dote[] = "__OTR__textures/texture_data_2/font_four_dote"; -static const ALIGN_ASSET(2) char font_cc[] = "__OTR__texture_data_2/font_cc"; +static const ALIGN_ASSET(2) char font_cc[] = "__OTR__textures/texture_data_2/font_cc"; -static const ALIGN_ASSET(2) char font_double_quote[] = "__OTR__texture_data_2/font_double_quote"; +static const ALIGN_ASSET(2) char font_double_quote[] = "__OTR__textures/texture_data_2/font_double_quote"; -static const ALIGN_ASSET(2) char font_exclamation_mark[] = "__OTR__texture_data_2/font_exclamation_mark"; +static const ALIGN_ASSET(2) char font_exclamation_mark[] = "__OTR__textures/texture_data_2/font_exclamation_mark"; -static const ALIGN_ASSET(2) char font_minus[] = "__OTR__texture_data_2/font_minus"; +static const ALIGN_ASSET(2) char font_minus[] = "__OTR__textures/texture_data_2/font_minus"; -static const ALIGN_ASSET(2) char font_dot[] = "__OTR__texture_data_2/7F1534"; +static const ALIGN_ASSET(2) char font_dot[] = "__OTR__textures/texture_data_2/7F1534"; -static const ALIGN_ASSET(2) char font_plus[] = "__OTR__texture_data_2/font_plus"; +static const ALIGN_ASSET(2) char font_plus[] = "__OTR__textures/texture_data_2/font_plus"; -static const ALIGN_ASSET(2) char font_interogation_mark[] = "__OTR__texture_data_2/7F16D4"; +static const ALIGN_ASSET(2) char font_interogation_mark[] = "__OTR__textures/texture_data_2/7F16D4"; -static const ALIGN_ASSET(2) char font_simple_quote[] = "__OTR__texture_data_2/7F17A4"; +static const ALIGN_ASSET(2) char font_simple_quote[] = "__OTR__textures/texture_data_2/7F17A4"; -static const ALIGN_ASSET(2) char font_number_zero[] = "__OTR__texture_data_2/font_number_zero"; +static const ALIGN_ASSET(2) char font_number_zero[] = "__OTR__textures/texture_data_2/font_number_zero"; -static const ALIGN_ASSET(2) char font_number_one[] = "__OTR__texture_data_2/font_number_one"; +static const ALIGN_ASSET(2) char font_number_one[] = "__OTR__textures/texture_data_2/font_number_one"; -static const ALIGN_ASSET(2) char font_number_two[] = "__OTR__texture_data_2/font_number_two"; +static const ALIGN_ASSET(2) char font_number_two[] = "__OTR__textures/texture_data_2/font_number_two"; -static const ALIGN_ASSET(2) char font_number_three[] = "__OTR__texture_data_2/font_number_three"; +static const ALIGN_ASSET(2) char font_number_three[] = "__OTR__textures/texture_data_2/font_number_three"; -static const ALIGN_ASSET(2) char font_number_four[] = "__OTR__texture_data_2/font_number_four"; +static const ALIGN_ASSET(2) char font_number_four[] = "__OTR__textures/texture_data_2/font_number_four"; -static const ALIGN_ASSET(2) char font_number_five[] = "__OTR__texture_data_2/font_number_five"; +static const ALIGN_ASSET(2) char font_number_five[] = "__OTR__textures/texture_data_2/font_number_five"; -static const ALIGN_ASSET(2) char font_number_six[] = "__OTR__texture_data_2/font_number_six"; +static const ALIGN_ASSET(2) char font_number_six[] = "__OTR__textures/texture_data_2/font_number_six"; -static const ALIGN_ASSET(2) char font_number_seven[] = "__OTR__texture_data_2/font_number_seven"; +static const ALIGN_ASSET(2) char font_number_seven[] = "__OTR__textures/texture_data_2/font_number_seven"; -static const ALIGN_ASSET(2) char font_number_eight[] = "__OTR__texture_data_2/font_number_eight"; +static const ALIGN_ASSET(2) char font_number_eight[] = "__OTR__textures/texture_data_2/font_number_eight"; -static const ALIGN_ASSET(2) char font_number_nine[] = "__OTR__texture_data_2/font_number_nine"; +static const ALIGN_ASSET(2) char font_number_nine[] = "__OTR__textures/texture_data_2/font_number_nine"; -static const ALIGN_ASSET(2) char font_letter_A[] = "__OTR__texture_data_2/font_letter_A"; +static const ALIGN_ASSET(2) char font_letter_A[] = "__OTR__textures/texture_data_2/font_letter_A"; -static const ALIGN_ASSET(2) char font_letter_B[] = "__OTR__texture_data_2/font_letter_B"; +static const ALIGN_ASSET(2) char font_letter_B[] = "__OTR__textures/texture_data_2/font_letter_B"; -static const ALIGN_ASSET(2) char font_letter_C[] = "__OTR__texture_data_2/font_letter_C"; +static const ALIGN_ASSET(2) char font_letter_C[] = "__OTR__textures/texture_data_2/font_letter_C"; -static const ALIGN_ASSET(2) char font_letter_D[] = "__OTR__texture_data_2/font_letter_D"; +static const ALIGN_ASSET(2) char font_letter_D[] = "__OTR__textures/texture_data_2/font_letter_D"; -static const ALIGN_ASSET(2) char font_letter_E[] = "__OTR__texture_data_2/font_letter_E"; +static const ALIGN_ASSET(2) char font_letter_E[] = "__OTR__textures/texture_data_2/font_letter_E"; -static const ALIGN_ASSET(2) char font_letter_F[] = "__OTR__texture_data_2/font_letter_F"; +static const ALIGN_ASSET(2) char font_letter_F[] = "__OTR__textures/texture_data_2/font_letter_F"; -static const ALIGN_ASSET(2) char font_letter_G[] = "__OTR__texture_data_2/font_letter_G"; +static const ALIGN_ASSET(2) char font_letter_G[] = "__OTR__textures/texture_data_2/font_letter_G"; -static const ALIGN_ASSET(2) char font_letter_H[] = "__OTR__texture_data_2/font_letter_H"; +static const ALIGN_ASSET(2) char font_letter_H[] = "__OTR__textures/texture_data_2/font_letter_H"; -static const ALIGN_ASSET(2) char font_letter_I[] = "__OTR__texture_data_2/font_letter_I"; +static const ALIGN_ASSET(2) char font_letter_I[] = "__OTR__textures/texture_data_2/font_letter_I"; -static const ALIGN_ASSET(2) char font_letter_J[] = "__OTR__texture_data_2/font_letter_J"; +static const ALIGN_ASSET(2) char font_letter_J[] = "__OTR__textures/texture_data_2/font_letter_J"; -static const ALIGN_ASSET(2) char font_letter_K[] = "__OTR__texture_data_2/font_letter_K"; +static const ALIGN_ASSET(2) char font_letter_K[] = "__OTR__textures/texture_data_2/font_letter_K"; -static const ALIGN_ASSET(2) char font_letter_L[] = "__OTR__texture_data_2/font_letter_L"; +static const ALIGN_ASSET(2) char font_letter_L[] = "__OTR__textures/texture_data_2/font_letter_L"; -static const ALIGN_ASSET(2) char font_letter_M[] = "__OTR__texture_data_2/font_letter_M"; +static const ALIGN_ASSET(2) char font_letter_M[] = "__OTR__textures/texture_data_2/font_letter_M"; -static const ALIGN_ASSET(2) char font_letter_N[] = "__OTR__texture_data_2/font_letter_N"; +static const ALIGN_ASSET(2) char font_letter_N[] = "__OTR__textures/texture_data_2/font_letter_N"; -static const ALIGN_ASSET(2) char font_letter_O[] = "__OTR__texture_data_2/font_letter_O"; +static const ALIGN_ASSET(2) char font_letter_O[] = "__OTR__textures/texture_data_2/font_letter_O"; -static const ALIGN_ASSET(2) char font_letter_P[] = "__OTR__texture_data_2/font_letter_P"; +static const ALIGN_ASSET(2) char font_letter_P[] = "__OTR__textures/texture_data_2/font_letter_P"; -static const ALIGN_ASSET(2) char font_letter_Q[] = "__OTR__texture_data_2/font_letter_Q"; +static const ALIGN_ASSET(2) char font_letter_Q[] = "__OTR__textures/texture_data_2/font_letter_Q"; -static const ALIGN_ASSET(2) char font_letter_R[] = "__OTR__texture_data_2/font_letter_R"; +static const ALIGN_ASSET(2) char font_letter_R[] = "__OTR__textures/texture_data_2/font_letter_R"; -static const ALIGN_ASSET(2) char font_letter_S[] = "__OTR__texture_data_2/font_letter_S"; +static const ALIGN_ASSET(2) char font_letter_S[] = "__OTR__textures/texture_data_2/font_letter_S"; -static const ALIGN_ASSET(2) char font_letter_T[] = "__OTR__texture_data_2/font_letter_T"; +static const ALIGN_ASSET(2) char font_letter_T[] = "__OTR__textures/texture_data_2/font_letter_T"; -static const ALIGN_ASSET(2) char font_letter_U[] = "__OTR__texture_data_2/font_letter_U"; +static const ALIGN_ASSET(2) char font_letter_U[] = "__OTR__textures/texture_data_2/font_letter_U"; -static const ALIGN_ASSET(2) char font_letter_V[] = "__OTR__texture_data_2/font_letter_V"; +static const ALIGN_ASSET(2) char font_letter_V[] = "__OTR__textures/texture_data_2/font_letter_V"; -static const ALIGN_ASSET(2) char font_letter_W[] = "__OTR__texture_data_2/font_letter_W"; +static const ALIGN_ASSET(2) char font_letter_W[] = "__OTR__textures/texture_data_2/font_letter_W"; -static const ALIGN_ASSET(2) char font_letter_X[] = "__OTR__texture_data_2/font_letter_X"; +static const ALIGN_ASSET(2) char font_letter_X[] = "__OTR__textures/texture_data_2/font_letter_X"; -static const ALIGN_ASSET(2) char font_letter_Y[] = "__OTR__texture_data_2/font_letter_Y"; +static const ALIGN_ASSET(2) char font_letter_Y[] = "__OTR__textures/texture_data_2/font_letter_Y"; -static const ALIGN_ASSET(2) char font_letter_Z[] = "__OTR__texture_data_2/font_letter_Z"; +static const ALIGN_ASSET(2) char font_letter_Z[] = "__OTR__textures/texture_data_2/font_letter_Z"; -static const ALIGN_ASSET(2) char gTexture7F35B4[] = "__OTR__texture_data_2/7F35B4"; +static const ALIGN_ASSET(2) char gTexture7F35B4[] = "__OTR__textures/texture_data_2/7F35B4"; -static const ALIGN_ASSET(2) char gTexture7F3634[] = "__OTR__texture_data_2/7F3634"; +static const ALIGN_ASSET(2) char gTexture7F3634[] = "__OTR__textures/texture_data_2/7F3634"; -static const ALIGN_ASSET(2) char gTexture7F36B4[] = "__OTR__texture_data_2/7F36B4"; +static const ALIGN_ASSET(2) char gTexture7F36B4[] = "__OTR__textures/texture_data_2/7F36B4"; -static const ALIGN_ASSET(2) char gTexture7F3734[] = "__OTR__texture_data_2/7F3734"; +static const ALIGN_ASSET(2) char gTexture7F3734[] = "__OTR__textures/texture_data_2/7F3734"; -static const ALIGN_ASSET(2) char gTexture7F37B4[] = "__OTR__texture_data_2/7F37B4"; +static const ALIGN_ASSET(2) char gTexture7F37B4[] = "__OTR__textures/texture_data_2/7F37B4"; -static const ALIGN_ASSET(2) char gTexture7F3834[] = "__OTR__texture_data_2/7F3834"; +static const ALIGN_ASSET(2) char gTexture7F3834[] = "__OTR__textures/texture_data_2/7F3834"; -static const ALIGN_ASSET(2) char gTexture7F38B4[] = "__OTR__texture_data_2/7F38B4"; +static const ALIGN_ASSET(2) char gTexture7F38B4[] = "__OTR__textures/texture_data_2/7F38B4"; -static const ALIGN_ASSET(2) char gTexture7F3934[] = "__OTR__texture_data_2/7F3934"; +static const ALIGN_ASSET(2) char gTexture7F3934[] = "__OTR__textures/texture_data_2/7F3934"; -static const ALIGN_ASSET(2) char gTexture7F39B4[] = "__OTR__texture_data_2/7F39B4"; +static const ALIGN_ASSET(2) char gTexture7F39B4[] = "__OTR__textures/texture_data_2/7F39B4"; -static const ALIGN_ASSET(2) char gTexture7F3A34[] = "__OTR__texture_data_2/7F3A34"; +static const ALIGN_ASSET(2) char gTexture7F3A34[] = "__OTR__textures/texture_data_2/7F3A34"; -static const ALIGN_ASSET(2) char gTexture7F3AB4[] = "__OTR__texture_data_2/7F3AB4"; +static const ALIGN_ASSET(2) char gTexture7F3AB4[] = "__OTR__textures/texture_data_2/7F3AB4"; -static const ALIGN_ASSET(2) char gTexture7F3B34[] = "__OTR__texture_data_2/7F3B34"; +static const ALIGN_ASSET(2) char gTexture7F3B34[] = "__OTR__textures/texture_data_2/7F3B34"; -static const ALIGN_ASSET(2) char gTexture7F3BB4[] = "__OTR__texture_data_2/7F3BB4"; +static const ALIGN_ASSET(2) char gTexture7F3BB4[] = "__OTR__textures/texture_data_2/7F3BB4"; -static const ALIGN_ASSET(2) char gTexture7F3C34[] = "__OTR__texture_data_2/7F3C34"; +static const ALIGN_ASSET(2) char gTexture7F3C34[] = "__OTR__textures/texture_data_2/7F3C34"; -static const ALIGN_ASSET(2) char gTexture7F3CB4[] = "__OTR__texture_data_2/7F3CB4"; +static const ALIGN_ASSET(2) char gTexture7F3CB4[] = "__OTR__textures/texture_data_2/7F3CB4"; -static const ALIGN_ASSET(2) char gTexture7F3D34[] = "__OTR__texture_data_2/7F3D34"; +static const ALIGN_ASSET(2) char gTexture7F3D34[] = "__OTR__textures/texture_data_2/7F3D34"; -static const ALIGN_ASSET(2) char gTexture7F3DB4[] = "__OTR__texture_data_2/7F3DB4"; +static const ALIGN_ASSET(2) char gTexture7F3DB4[] = "__OTR__textures/texture_data_2/7F3DB4"; -static const ALIGN_ASSET(2) char gTexture7F3E34[] = "__OTR__texture_data_2/7F3E34"; +static const ALIGN_ASSET(2) char gTexture7F3E34[] = "__OTR__textures/texture_data_2/7F3E34"; -static const ALIGN_ASSET(2) char gTexture7F3EB4[] = "__OTR__texture_data_2/7F3EB4"; +static const ALIGN_ASSET(2) char gTexture7F3EB4[] = "__OTR__textures/texture_data_2/7F3EB4"; -static const ALIGN_ASSET(2) char gTexture7F3F34[] = "__OTR__texture_data_2/7F3F34"; +static const ALIGN_ASSET(2) char gTexture7F3F34[] = "__OTR__textures/texture_data_2/7F3F34"; -static const ALIGN_ASSET(2) char gTexture7F3FB4[] = "__OTR__texture_data_2/7F3FB4"; +static const ALIGN_ASSET(2) char gTexture7F3FB4[] = "__OTR__textures/texture_data_2/7F3FB4"; -static const ALIGN_ASSET(2) char gTexture7F4034[] = "__OTR__texture_data_2/7F4034"; +static const ALIGN_ASSET(2) char gTexture7F4034[] = "__OTR__textures/texture_data_2/7F4034"; -static const ALIGN_ASSET(2) char gTexture7F40B4[] = "__OTR__texture_data_2/7F40B4"; +static const ALIGN_ASSET(2) char gTexture7F40B4[] = "__OTR__textures/texture_data_2/7F40B4"; -static const ALIGN_ASSET(2) char gTexture7F4134[] = "__OTR__texture_data_2/7F4134"; +static const ALIGN_ASSET(2) char gTexture7F4134[] = "__OTR__textures/texture_data_2/7F4134"; -static const ALIGN_ASSET(2) char gTexture7F41B4[] = "__OTR__texture_data_2/7F41B4"; +static const ALIGN_ASSET(2) char gTexture7F41B4[] = "__OTR__textures/texture_data_2/7F41B4"; -static const ALIGN_ASSET(2) char gTexture7F4234[] = "__OTR__texture_data_2/7F4234"; +static const ALIGN_ASSET(2) char gTexture7F4234[] = "__OTR__textures/texture_data_2/7F4234"; -static const ALIGN_ASSET(2) char gTexture7F42B4[] = "__OTR__texture_data_2/7F42B4"; +static const ALIGN_ASSET(2) char gTexture7F42B4[] = "__OTR__textures/texture_data_2/7F42B4"; -static const ALIGN_ASSET(2) char gTexture7F4334[] = "__OTR__texture_data_2/7F4334"; +static const ALIGN_ASSET(2) char gTexture7F4334[] = "__OTR__textures/texture_data_2/7F4334"; -static const ALIGN_ASSET(2) char gTexture7F43B4[] = "__OTR__texture_data_2/7F43B4"; +static const ALIGN_ASSET(2) char gTexture7F43B4[] = "__OTR__textures/texture_data_2/7F43B4"; -static const ALIGN_ASSET(2) char gTexture7F4434[] = "__OTR__texture_data_2/7F4434"; +static const ALIGN_ASSET(2) char gTexture7F4434[] = "__OTR__textures/texture_data_2/7F4434"; -static const ALIGN_ASSET(2) char gTexture7F44B4[] = "__OTR__texture_data_2/7F44B4"; +static const ALIGN_ASSET(2) char gTexture7F44B4[] = "__OTR__textures/texture_data_2/7F44B4"; -static const ALIGN_ASSET(2) char gTexture7F4534[] = "__OTR__texture_data_2/7F4534"; +static const ALIGN_ASSET(2) char gTexture7F4534[] = "__OTR__textures/texture_data_2/7F4534"; -static const ALIGN_ASSET(2) char gTexture7F45B4[] = "__OTR__texture_data_2/7F45B4"; +static const ALIGN_ASSET(2) char gTexture7F45B4[] = "__OTR__textures/texture_data_2/7F45B4"; -static const ALIGN_ASSET(2) char gTexture7F4634[] = "__OTR__texture_data_2/7F4634"; +static const ALIGN_ASSET(2) char gTexture7F4634[] = "__OTR__textures/texture_data_2/7F4634"; -static const ALIGN_ASSET(2) char gTexture7F46B4[] = "__OTR__texture_data_2/7F46B4"; +static const ALIGN_ASSET(2) char gTexture7F46B4[] = "__OTR__textures/texture_data_2/7F46B4"; -static const ALIGN_ASSET(2) char gTexture7F4734[] = "__OTR__texture_data_2/7F4734"; +static const ALIGN_ASSET(2) char gTexture7F4734[] = "__OTR__textures/texture_data_2/7F4734"; -static const ALIGN_ASSET(2) char gTexture7F47B4[] = "__OTR__texture_data_2/7F47B4"; +static const ALIGN_ASSET(2) char gTexture7F47B4[] = "__OTR__textures/texture_data_2/7F47B4"; -static const ALIGN_ASSET(2) char gTexture7F4834[] = "__OTR__texture_data_2/7F4834"; +static const ALIGN_ASSET(2) char gTexture7F4834[] = "__OTR__textures/texture_data_2/7F4834"; -static const ALIGN_ASSET(2) char gTexture7F48B4[] = "__OTR__texture_data_2/7F48B4"; +static const ALIGN_ASSET(2) char gTexture7F48B4[] = "__OTR__textures/texture_data_2/7F48B4"; -static const ALIGN_ASSET(2) char gTexture7F4934[] = "__OTR__texture_data_2/7F4934"; +static const ALIGN_ASSET(2) char gTexture7F4934[] = "__OTR__textures/texture_data_2/7F4934"; -static const ALIGN_ASSET(2) char gTexture7F49B4[] = "__OTR__texture_data_2/7F49B4"; +static const ALIGN_ASSET(2) char gTexture7F49B4[] = "__OTR__textures/texture_data_2/7F49B4"; -static const ALIGN_ASSET(2) char gTexture7F4A34[] = "__OTR__texture_data_2/7F4A34"; +static const ALIGN_ASSET(2) char gTexture7F4A34[] = "__OTR__textures/texture_data_2/7F4A34"; -static const ALIGN_ASSET(2) char gTexture7F4AB4[] = "__OTR__texture_data_2/7F4AB4"; +static const ALIGN_ASSET(2) char gTexture7F4AB4[] = "__OTR__textures/texture_data_2/7F4AB4"; -static const ALIGN_ASSET(2) char gTexture7F4B34[] = "__OTR__texture_data_2/7F4B34"; +static const ALIGN_ASSET(2) char gTexture7F4B34[] = "__OTR__textures/texture_data_2/7F4B34"; -static const ALIGN_ASSET(2) char gTexture7F4BB4[] = "__OTR__texture_data_2/7F4BB4"; +static const ALIGN_ASSET(2) char gTexture7F4BB4[] = "__OTR__textures/texture_data_2/7F4BB4"; -static const ALIGN_ASSET(2) char gTexture7F4C34[] = "__OTR__texture_data_2/7F4C34"; +static const ALIGN_ASSET(2) char gTexture7F4C34[] = "__OTR__textures/texture_data_2/7F4C34"; -static const ALIGN_ASSET(2) char gTexture7F4CB4[] = "__OTR__texture_data_2/7F4CB4"; +static const ALIGN_ASSET(2) char gTexture7F4CB4[] = "__OTR__textures/texture_data_2/7F4CB4"; -static const ALIGN_ASSET(2) char gTexture7F4D34[] = "__OTR__texture_data_2/7F4D34"; +static const ALIGN_ASSET(2) char gTexture7F4D34[] = "__OTR__textures/texture_data_2/7F4D34"; -static const ALIGN_ASSET(2) char gTexture7F4DB4[] = "__OTR__texture_data_2/7F4DB4"; +static const ALIGN_ASSET(2) char gTexture7F4DB4[] = "__OTR__textures/texture_data_2/7F4DB4"; -static const ALIGN_ASSET(2) char gTexture7F4E34[] = "__OTR__texture_data_2/7F4E34"; +static const ALIGN_ASSET(2) char gTexture7F4E34[] = "__OTR__textures/texture_data_2/7F4E34"; -static const ALIGN_ASSET(2) char gTexture7F4EB4[] = "__OTR__texture_data_2/7F4EB4"; +static const ALIGN_ASSET(2) char gTexture7F4EB4[] = "__OTR__textures/texture_data_2/7F4EB4"; -static const ALIGN_ASSET(2) char gTexture7F4F34[] = "__OTR__texture_data_2/7F4F34"; +static const ALIGN_ASSET(2) char gTexture7F4F34[] = "__OTR__textures/texture_data_2/7F4F34"; -static const ALIGN_ASSET(2) char gTexture7F4FB4[] = "__OTR__texture_data_2/7F4FB4"; +static const ALIGN_ASSET(2) char gTexture7F4FB4[] = "__OTR__textures/texture_data_2/7F4FB4"; -static const ALIGN_ASSET(2) char gTexture7F5034[] = "__OTR__texture_data_2/7F5034"; +static const ALIGN_ASSET(2) char gTexture7F5034[] = "__OTR__textures/texture_data_2/7F5034"; -static const ALIGN_ASSET(2) char gTexture7F50B4[] = "__OTR__texture_data_2/7F50B4"; +static const ALIGN_ASSET(2) char gTexture7F50B4[] = "__OTR__textures/texture_data_2/7F50B4"; -static const ALIGN_ASSET(2) char gTexture7F5134[] = "__OTR__texture_data_2/7F5134"; +static const ALIGN_ASSET(2) char gTexture7F5134[] = "__OTR__textures/texture_data_2/7F5134"; -static const ALIGN_ASSET(2) char gTexture7F51B4[] = "__OTR__texture_data_2/7F51B4"; +static const ALIGN_ASSET(2) char gTexture7F51B4[] = "__OTR__textures/texture_data_2/7F51B4"; -static const ALIGN_ASSET(2) char gTexture7F5234[] = "__OTR__texture_data_2/7F5234"; +static const ALIGN_ASSET(2) char gTexture7F5234[] = "__OTR__textures/texture_data_2/7F5234"; -static const ALIGN_ASSET(2) char gTexture7F52B4[] = "__OTR__texture_data_2/7F52B4"; +static const ALIGN_ASSET(2) char gTexture7F52B4[] = "__OTR__textures/texture_data_2/7F52B4"; -static const ALIGN_ASSET(2) char gTexture7F5334[] = "__OTR__texture_data_2/7F5334"; +static const ALIGN_ASSET(2) char gTexture7F5334[] = "__OTR__textures/texture_data_2/7F5334"; -static const ALIGN_ASSET(2) char gTexture7F53B4[] = "__OTR__texture_data_2/7F53B4"; +static const ALIGN_ASSET(2) char gTexture7F53B4[] = "__OTR__textures/texture_data_2/7F53B4"; -static const ALIGN_ASSET(2) char gTexture7F5434[] = "__OTR__texture_data_2/7F5434"; +static const ALIGN_ASSET(2) char gTexture7F5434[] = "__OTR__textures/texture_data_2/7F5434"; -static const ALIGN_ASSET(2) char gTexture7F54B4[] = "__OTR__texture_data_2/7F54B4"; +static const ALIGN_ASSET(2) char gTexture7F54B4[] = "__OTR__textures/texture_data_2/7F54B4"; -static const ALIGN_ASSET(2) char gTexture7F5534[] = "__OTR__texture_data_2/7F5534"; +static const ALIGN_ASSET(2) char gTexture7F5534[] = "__OTR__textures/texture_data_2/7F5534"; -static const ALIGN_ASSET(2) char gTexture7F55B4[] = "__OTR__texture_data_2/7F55B4"; +static const ALIGN_ASSET(2) char gTexture7F55B4[] = "__OTR__textures/texture_data_2/7F55B4"; -static const ALIGN_ASSET(2) char gTexture7F5634[] = "__OTR__texture_data_2/7F5634"; +static const ALIGN_ASSET(2) char gTexture7F5634[] = "__OTR__textures/texture_data_2/7F5634"; -static const ALIGN_ASSET(2) char gTexture7F56B4[] = "__OTR__texture_data_2/7F56B4"; +static const ALIGN_ASSET(2) char gTexture7F56B4[] = "__OTR__textures/texture_data_2/7F56B4"; -static const ALIGN_ASSET(2) char gTexture7F5734[] = "__OTR__texture_data_2/7F5734"; +static const ALIGN_ASSET(2) char gTexture7F5734[] = "__OTR__textures/texture_data_2/7F5734"; -static const ALIGN_ASSET(2) char gTexture7F57B4[] = "__OTR__texture_data_2/7F57B4"; +static const ALIGN_ASSET(2) char gTexture7F57B4[] = "__OTR__textures/texture_data_2/7F57B4"; -static const ALIGN_ASSET(2) char gTexture7F5834[] = "__OTR__texture_data_2/7F5834"; +static const ALIGN_ASSET(2) char gTexture7F5834[] = "__OTR__textures/texture_data_2/7F5834"; -static const ALIGN_ASSET(2) char gTexture7F58B4[] = "__OTR__texture_data_2/7F58B4"; +static const ALIGN_ASSET(2) char gTexture7F58B4[] = "__OTR__textures/texture_data_2/7F58B4"; -static const ALIGN_ASSET(2) char gTexture7F5934[] = "__OTR__texture_data_2/7F5934"; +static const ALIGN_ASSET(2) char gTexture7F5934[] = "__OTR__textures/texture_data_2/7F5934"; -static const ALIGN_ASSET(2) char gTexture7F59B4[] = "__OTR__texture_data_2/7F59B4"; +static const ALIGN_ASSET(2) char gTexture7F59B4[] = "__OTR__textures/texture_data_2/7F59B4"; -static const ALIGN_ASSET(2) char gTexture7F5A34[] = "__OTR__texture_data_2/7F5A34"; +static const ALIGN_ASSET(2) char gTexture7F5A34[] = "__OTR__textures/texture_data_2/7F5A34"; -static const ALIGN_ASSET(2) char gTexture7F5AB4[] = "__OTR__texture_data_2/7F5AB4"; +static const ALIGN_ASSET(2) char gTexture7F5AB4[] = "__OTR__textures/texture_data_2/7F5AB4"; -static const ALIGN_ASSET(2) char gTexture7F5B34[] = "__OTR__texture_data_2/7F5B34"; +static const ALIGN_ASSET(2) char gTexture7F5B34[] = "__OTR__textures/texture_data_2/7F5B34"; -static const ALIGN_ASSET(2) char gTexture7F5BB4[] = "__OTR__texture_data_2/7F5BB4"; +static const ALIGN_ASSET(2) char gTexture7F5BB4[] = "__OTR__textures/texture_data_2/7F5BB4"; -static const ALIGN_ASSET(2) char gTexture7F5C34[] = "__OTR__texture_data_2/7F5C34"; +static const ALIGN_ASSET(2) char gTexture7F5C34[] = "__OTR__textures/texture_data_2/7F5C34"; -static const ALIGN_ASSET(2) char gTexture7F5CB4[] = "__OTR__texture_data_2/7F5CB4"; +static const ALIGN_ASSET(2) char gTexture7F5CB4[] = "__OTR__textures/texture_data_2/7F5CB4"; -static const ALIGN_ASSET(2) char gTexture7F5D34[] = "__OTR__texture_data_2/7F5D34"; +static const ALIGN_ASSET(2) char gTexture7F5D34[] = "__OTR__textures/texture_data_2/7F5D34"; -static const ALIGN_ASSET(2) char gTexture7F5DB4[] = "__OTR__texture_data_2/7F5DB4"; +static const ALIGN_ASSET(2) char gTexture7F5DB4[] = "__OTR__textures/texture_data_2/7F5DB4"; -static const ALIGN_ASSET(2) char gTexture7F5E34[] = "__OTR__texture_data_2/7F5E34"; +static const ALIGN_ASSET(2) char gTexture7F5E34[] = "__OTR__textures/texture_data_2/7F5E34"; -static const ALIGN_ASSET(2) char gTexture7F5EB4[] = "__OTR__texture_data_2/7F5EB4"; +static const ALIGN_ASSET(2) char gTexture7F5EB4[] = "__OTR__textures/texture_data_2/7F5EB4"; -static const ALIGN_ASSET(2) char gTexture7F5F34[] = "__OTR__texture_data_2/7F5F34"; +static const ALIGN_ASSET(2) char gTexture7F5F34[] = "__OTR__textures/texture_data_2/7F5F34"; -static const ALIGN_ASSET(2) char gTexture7F5FB4[] = "__OTR__texture_data_2/7F5FB4"; +static const ALIGN_ASSET(2) char gTexture7F5FB4[] = "__OTR__textures/texture_data_2/7F5FB4"; -static const ALIGN_ASSET(2) char gTexture7F6034[] = "__OTR__texture_data_2/7F6034"; +static const ALIGN_ASSET(2) char gTexture7F6034[] = "__OTR__textures/texture_data_2/7F6034"; -static const ALIGN_ASSET(2) char gTexture7F60B4[] = "__OTR__texture_data_2/7F60B4"; +static const ALIGN_ASSET(2) char gTexture7F60B4[] = "__OTR__textures/texture_data_2/7F60B4"; -static const ALIGN_ASSET(2) char gTexture7F6134[] = "__OTR__texture_data_2/7F6134"; +static const ALIGN_ASSET(2) char gTexture7F6134[] = "__OTR__textures/texture_data_2/7F6134"; -static const ALIGN_ASSET(2) char gTexture7F61B4[] = "__OTR__texture_data_2/7F61B4"; +static const ALIGN_ASSET(2) char gTexture7F61B4[] = "__OTR__textures/texture_data_2/7F61B4"; -static const ALIGN_ASSET(2) char gTexture7F6234[] = "__OTR__texture_data_2/7F6234"; +static const ALIGN_ASSET(2) char gTexture7F6234[] = "__OTR__textures/texture_data_2/7F6234"; -static const ALIGN_ASSET(2) char gTexture7F62B4[] = "__OTR__texture_data_2/7F62B4"; +static const ALIGN_ASSET(2) char gTexture7F62B4[] = "__OTR__textures/texture_data_2/7F62B4"; -static const ALIGN_ASSET(2) char gTexture7F6334[] = "__OTR__texture_data_2/7F6334"; +static const ALIGN_ASSET(2) char gTexture7F6334[] = "__OTR__textures/texture_data_2/7F6334"; -static const ALIGN_ASSET(2) char gTexture7F63B4[] = "__OTR__texture_data_2/7F63B4"; +static const ALIGN_ASSET(2) char gTexture7F63B4[] = "__OTR__textures/texture_data_2/7F63B4"; -static const ALIGN_ASSET(2) char gTexture7F6434[] = "__OTR__texture_data_2/7F6434"; +static const ALIGN_ASSET(2) char gTexture7F6434[] = "__OTR__textures/texture_data_2/7F6434"; -static const ALIGN_ASSET(2) char gTexture7F64B4[] = "__OTR__texture_data_2/7F64B4"; +static const ALIGN_ASSET(2) char gTexture7F64B4[] = "__OTR__textures/texture_data_2/7F64B4"; -static const ALIGN_ASSET(2) char gTexture7F6534[] = "__OTR__texture_data_2/7F6534"; +static const ALIGN_ASSET(2) char gTexture7F6534[] = "__OTR__textures/texture_data_2/7F6534"; -static const ALIGN_ASSET(2) char gTexture7F65B4[] = "__OTR__texture_data_2/7F65B4"; +static const ALIGN_ASSET(2) char gTexture7F65B4[] = "__OTR__textures/texture_data_2/7F65B4"; -static const ALIGN_ASSET(2) char gTexture7F6634[] = "__OTR__texture_data_2/7F6634"; +static const ALIGN_ASSET(2) char gTexture7F6634[] = "__OTR__textures/texture_data_2/7F6634"; -static const ALIGN_ASSET(2) char gTexture7F66B4[] = "__OTR__texture_data_2/7F66B4"; +static const ALIGN_ASSET(2) char gTexture7F66B4[] = "__OTR__textures/texture_data_2/7F66B4"; -static const ALIGN_ASSET(2) char gTexture7F6734[] = "__OTR__texture_data_2/7F6734"; +static const ALIGN_ASSET(2) char gTexture7F6734[] = "__OTR__textures/texture_data_2/7F6734"; -static const ALIGN_ASSET(2) char gTexture7F67B4[] = "__OTR__texture_data_2/7F67B4"; +static const ALIGN_ASSET(2) char gTexture7F67B4[] = "__OTR__textures/texture_data_2/7F67B4"; -static const ALIGN_ASSET(2) char gTexture7F6834[] = "__OTR__texture_data_2/7F6834"; +static const ALIGN_ASSET(2) char gTexture7F6834[] = "__OTR__textures/texture_data_2/7F6834"; -static const ALIGN_ASSET(2) char gTexture7F68B4[] = "__OTR__texture_data_2/7F68B4"; +static const ALIGN_ASSET(2) char gTexture7F68B4[] = "__OTR__textures/texture_data_2/7F68B4"; -static const ALIGN_ASSET(2) char gTexture7F6934[] = "__OTR__texture_data_2/7F6934"; +static const ALIGN_ASSET(2) char gTexture7F6934[] = "__OTR__textures/texture_data_2/7F6934"; -static const ALIGN_ASSET(2) char gTexture7F69B4[] = "__OTR__texture_data_2/7F69B4"; +static const ALIGN_ASSET(2) char gTexture7F69B4[] = "__OTR__textures/texture_data_2/7F69B4"; -static const ALIGN_ASSET(2) char gTexture7F6A34[] = "__OTR__texture_data_2/7F6A34"; +static const ALIGN_ASSET(2) char gTexture7F6A34[] = "__OTR__textures/texture_data_2/7F6A34"; -static const ALIGN_ASSET(2) char gTexture7F6AB4[] = "__OTR__texture_data_2/7F6AB4"; +static const ALIGN_ASSET(2) char gTexture7F6AB4[] = "__OTR__textures/texture_data_2/7F6AB4"; -static const ALIGN_ASSET(2) char gTexture7F6B34[] = "__OTR__texture_data_2/7F6B34"; +static const ALIGN_ASSET(2) char gTexture7F6B34[] = "__OTR__textures/texture_data_2/7F6B34"; -static const ALIGN_ASSET(2) char gTexture7F6BB4[] = "__OTR__texture_data_2/7F6BB4"; +static const ALIGN_ASSET(2) char gTexture7F6BB4[] = "__OTR__textures/texture_data_2/7F6BB4"; -static const ALIGN_ASSET(2) char gTexture7F6C34[] = "__OTR__texture_data_2/7F6C34"; +static const ALIGN_ASSET(2) char gTexture7F6C34[] = "__OTR__textures/texture_data_2/7F6C34"; -static const ALIGN_ASSET(2) char gTexture7F6CB4[] = "__OTR__texture_data_2/7F6CB4"; +static const ALIGN_ASSET(2) char gTexture7F6CB4[] = "__OTR__textures/texture_data_2/7F6CB4"; -static const ALIGN_ASSET(2) char gTexture7F6D34[] = "__OTR__texture_data_2/7F6D34"; +static const ALIGN_ASSET(2) char gTexture7F6D34[] = "__OTR__textures/texture_data_2/7F6D34"; -static const ALIGN_ASSET(2) char gTexture7F6DB4[] = "__OTR__texture_data_2/7F6DB4"; +static const ALIGN_ASSET(2) char gTexture7F6DB4[] = "__OTR__textures/texture_data_2/7F6DB4"; -static const ALIGN_ASSET(2) char gTexture7F6E34[] = "__OTR__texture_data_2/7F6E34"; +static const ALIGN_ASSET(2) char gTexture7F6E34[] = "__OTR__textures/texture_data_2/7F6E34"; -static const ALIGN_ASSET(2) char gTexture7F6EB4[] = "__OTR__texture_data_2/7F6EB4"; +static const ALIGN_ASSET(2) char gTexture7F6EB4[] = "__OTR__textures/texture_data_2/7F6EB4"; -static const ALIGN_ASSET(2) char gTexture7F6F34[] = "__OTR__texture_data_2/7F6F34"; +static const ALIGN_ASSET(2) char gTexture7F6F34[] = "__OTR__textures/texture_data_2/7F6F34"; -static const ALIGN_ASSET(2) char gTexture7F6FB4[] = "__OTR__texture_data_2/7F6FB4"; +static const ALIGN_ASSET(2) char gTexture7F6FB4[] = "__OTR__textures/texture_data_2/7F6FB4"; -static const ALIGN_ASSET(2) char gTexture7F7034[] = "__OTR__texture_data_2/7F7034"; +static const ALIGN_ASSET(2) char gTexture7F7034[] = "__OTR__textures/texture_data_2/7F7034"; -static const ALIGN_ASSET(2) char gTexture7F70B4[] = "__OTR__texture_data_2/7F70B4"; +static const ALIGN_ASSET(2) char gTexture7F70B4[] = "__OTR__textures/texture_data_2/7F70B4"; -static const ALIGN_ASSET(2) char gTexture7F7134[] = "__OTR__texture_data_2/7F7134"; +static const ALIGN_ASSET(2) char gTexture7F7134[] = "__OTR__textures/texture_data_2/7F7134"; -static const ALIGN_ASSET(2) char gTexture7F71B4[] = "__OTR__texture_data_2/7F71B4"; +static const ALIGN_ASSET(2) char gTexture7F71B4[] = "__OTR__textures/texture_data_2/7F71B4"; -static const ALIGN_ASSET(2) char gTexture7F7234[] = "__OTR__texture_data_2/7F7234"; +static const ALIGN_ASSET(2) char gTexture7F7234[] = "__OTR__textures/texture_data_2/7F7234"; -static const ALIGN_ASSET(2) char gTexture7F72B4[] = "__OTR__texture_data_2/7F72B4"; +static const ALIGN_ASSET(2) char gTexture7F72B4[] = "__OTR__textures/texture_data_2/7F72B4"; -static const ALIGN_ASSET(2) char gTexture7F7334[] = "__OTR__texture_data_2/7F7334"; +static const ALIGN_ASSET(2) char gTexture7F7334[] = "__OTR__textures/texture_data_2/7F7334"; -static const ALIGN_ASSET(2) char gTexture7F73B4[] = "__OTR__texture_data_2/7F73B4"; +static const ALIGN_ASSET(2) char gTexture7F73B4[] = "__OTR__textures/texture_data_2/7F73B4"; -static const ALIGN_ASSET(2) char gTexture7F7434[] = "__OTR__texture_data_2/7F7434"; +static const ALIGN_ASSET(2) char gTexture7F7434[] = "__OTR__textures/texture_data_2/7F7434"; -static const ALIGN_ASSET(2) char gTexture7F74B4[] = "__OTR__texture_data_2/7F74B4"; +static const ALIGN_ASSET(2) char gTexture7F74B4[] = "__OTR__textures/texture_data_2/7F74B4"; -static const ALIGN_ASSET(2) char gTexture7F7534[] = "__OTR__texture_data_2/7F7534"; +static const ALIGN_ASSET(2) char gTexture7F7534[] = "__OTR__textures/texture_data_2/7F7534"; -static const ALIGN_ASSET(2) char gTexture7F75B4[] = "__OTR__texture_data_2/7F75B4"; +static const ALIGN_ASSET(2) char gTexture7F75B4[] = "__OTR__textures/texture_data_2/7F75B4"; -static const ALIGN_ASSET(2) char gTexture7F7634[] = "__OTR__texture_data_2/7F7634"; +static const ALIGN_ASSET(2) char gTexture7F7634[] = "__OTR__textures/texture_data_2/7F7634"; -static const ALIGN_ASSET(2) char gTexture7F76B4[] = "__OTR__texture_data_2/7F76B4"; +static const ALIGN_ASSET(2) char gTexture7F76B4[] = "__OTR__textures/texture_data_2/7F76B4"; -static const ALIGN_ASSET(2) char gTexture7F7734[] = "__OTR__texture_data_2/7F7734"; +static const ALIGN_ASSET(2) char gTexture7F7734[] = "__OTR__textures/texture_data_2/7F7734"; -static const ALIGN_ASSET(2) char gTexture7F77B4[] = "__OTR__texture_data_2/7F77B4"; +static const ALIGN_ASSET(2) char gTexture7F77B4[] = "__OTR__textures/texture_data_2/7F77B4"; -static const ALIGN_ASSET(2) char gTexture7F7834[] = "__OTR__texture_data_2/7F7834"; +static const ALIGN_ASSET(2) char gTexture7F7834[] = "__OTR__textures/texture_data_2/7F7834"; -static const ALIGN_ASSET(2) char gTexture7F78B4[] = "__OTR__texture_data_2/7F78B4"; +static const ALIGN_ASSET(2) char gTexture7F78B4[] = "__OTR__textures/texture_data_2/7F78B4"; -static const ALIGN_ASSET(2) char gTexture7F7934[] = "__OTR__texture_data_2/7F7934"; +static const ALIGN_ASSET(2) char gTexture7F7934[] = "__OTR__textures/texture_data_2/7F7934"; -static const ALIGN_ASSET(2) char gTexture7F79B4[] = "__OTR__texture_data_2/7F79B4"; +static const ALIGN_ASSET(2) char gTexture7F79B4[] = "__OTR__textures/texture_data_2/7F79B4"; -static const ALIGN_ASSET(2) char gTexture7F7A34[] = "__OTR__texture_data_2/7F7A34"; +static const ALIGN_ASSET(2) char gTexture7F7A34[] = "__OTR__textures/texture_data_2/7F7A34"; -static const ALIGN_ASSET(2) char gTexture7F7AB4[] = "__OTR__texture_data_2/7F7AB4"; +static const ALIGN_ASSET(2) char gTexture7F7AB4[] = "__OTR__textures/texture_data_2/7F7AB4"; -static const ALIGN_ASSET(2) char gTexture7F7B34[] = "__OTR__texture_data_2/7F7B34"; +static const ALIGN_ASSET(2) char gTexture7F7B34[] = "__OTR__textures/texture_data_2/7F7B34"; -static const ALIGN_ASSET(2) char gTexture7F7BB4[] = "__OTR__texture_data_2/7F7BB4"; +static const ALIGN_ASSET(2) char gTexture7F7BB4[] = "__OTR__textures/texture_data_2/7F7BB4"; -static const ALIGN_ASSET(2) char gTexture7F7C34[] = "__OTR__texture_data_2/7F7C34"; +static const ALIGN_ASSET(2) char gTexture7F7C34[] = "__OTR__textures/texture_data_2/7F7C34"; -static const ALIGN_ASSET(2) char gTexture7F7CB4[] = "__OTR__texture_data_2/7F7CB4"; +static const ALIGN_ASSET(2) char gTexture7F7CB4[] = "__OTR__textures/texture_data_2/7F7CB4"; -static const ALIGN_ASSET(2) char gTexture7F7D34[] = "__OTR__texture_data_2/7F7D34"; +static const ALIGN_ASSET(2) char gTexture7F7D34[] = "__OTR__textures/texture_data_2/7F7D34"; -static const ALIGN_ASSET(2) char gTexture7F7DB4[] = "__OTR__texture_data_2/7F7DB4"; +static const ALIGN_ASSET(2) char gTexture7F7DB4[] = "__OTR__textures/texture_data_2/7F7DB4"; -static const ALIGN_ASSET(2) char gTexture7F7E34[] = "__OTR__texture_data_2/7F7E34"; +static const ALIGN_ASSET(2) char gTexture7F7E34[] = "__OTR__textures/texture_data_2/7F7E34"; -static const ALIGN_ASSET(2) char gTexture7F7EB4[] = "__OTR__texture_data_2/7F7EB4"; +static const ALIGN_ASSET(2) char gTexture7F7EB4[] = "__OTR__textures/texture_data_2/7F7EB4"; -static const ALIGN_ASSET(2) char gTexture7F7F34[] = "__OTR__texture_data_2/7F7F34"; +static const ALIGN_ASSET(2) char gTexture7F7F34[] = "__OTR__textures/texture_data_2/7F7F34"; -static const ALIGN_ASSET(2) char gTexture7F7FB4[] = "__OTR__texture_data_2/7F7FB4"; +static const ALIGN_ASSET(2) char gTexture7F7FB4[] = "__OTR__textures/texture_data_2/7F7FB4"; -static const ALIGN_ASSET(2) char gTexture7F8034[] = "__OTR__texture_data_2/7F8034"; +static const ALIGN_ASSET(2) char gTexture7F8034[] = "__OTR__textures/texture_data_2/7F8034"; -static const ALIGN_ASSET(2) char gTexture7F80B4[] = "__OTR__texture_data_2/7F80B4"; +static const ALIGN_ASSET(2) char gTexture7F80B4[] = "__OTR__textures/texture_data_2/7F80B4"; -static const ALIGN_ASSET(2) char gTexture7F8134[] = "__OTR__texture_data_2/7F8134"; +static const ALIGN_ASSET(2) char gTexture7F8134[] = "__OTR__textures/texture_data_2/7F8134"; -static const ALIGN_ASSET(2) char gTexture7F81B4[] = "__OTR__texture_data_2/7F81B4"; +static const ALIGN_ASSET(2) char gTexture7F81B4[] = "__OTR__textures/texture_data_2/7F81B4"; -static const ALIGN_ASSET(2) char gTexture7F8234[] = "__OTR__texture_data_2/7F8234"; +static const ALIGN_ASSET(2) char gTexture7F8234[] = "__OTR__textures/texture_data_2/7F8234"; -static const ALIGN_ASSET(2) char gTexture7F82B4[] = "__OTR__texture_data_2/7F82B4"; +static const ALIGN_ASSET(2) char gTexture7F82B4[] = "__OTR__textures/texture_data_2/7F82B4"; -static const ALIGN_ASSET(2) char gTexture7F8334[] = "__OTR__texture_data_2/7F8334"; +static const ALIGN_ASSET(2) char gTexture7F8334[] = "__OTR__textures/texture_data_2/7F8334"; -static const ALIGN_ASSET(2) char gTexture7F83B4[] = "__OTR__texture_data_2/7F83B4"; +static const ALIGN_ASSET(2) char gTexture7F83B4[] = "__OTR__textures/texture_data_2/7F83B4"; -static const ALIGN_ASSET(2) char gTexture7F8434[] = "__OTR__texture_data_2/7F8434"; +static const ALIGN_ASSET(2) char gTexture7F8434[] = "__OTR__textures/texture_data_2/7F8434"; -static const ALIGN_ASSET(2) char gTexture7F84B4[] = "__OTR__texture_data_2/7F84B4"; +static const ALIGN_ASSET(2) char gTexture7F84B4[] = "__OTR__textures/texture_data_2/7F84B4"; -static const ALIGN_ASSET(2) char gTexture7F8534[] = "__OTR__texture_data_2/7F8534"; +static const ALIGN_ASSET(2) char gTexture7F8534[] = "__OTR__textures/texture_data_2/7F8534"; -static const ALIGN_ASSET(2) char gTexture7F85B4[] = "__OTR__texture_data_2/7F85B4"; +static const ALIGN_ASSET(2) char gTexture7F85B4[] = "__OTR__textures/texture_data_2/7F85B4"; -static const ALIGN_ASSET(2) char gTexture7F8634[] = "__OTR__texture_data_2/7F8634"; +static const ALIGN_ASSET(2) char gTexture7F8634[] = "__OTR__textures/texture_data_2/7F8634"; -static const ALIGN_ASSET(2) char gTexture7F86B4[] = "__OTR__texture_data_2/7F86B4"; +static const ALIGN_ASSET(2) char gTexture7F86B4[] = "__OTR__textures/texture_data_2/7F86B4"; -static const ALIGN_ASSET(2) char gTexture7F8734[] = "__OTR__texture_data_2/7F8734"; +static const ALIGN_ASSET(2) char gTexture7F8734[] = "__OTR__textures/texture_data_2/7F8734"; -static const ALIGN_ASSET(2) char gTexture7F8914[] = "__OTR__texture_data_2/7F8914"; +static const ALIGN_ASSET(2) char gTexture7F8914[] = "__OTR__textures/texture_data_2/7F8914"; -static const ALIGN_ASSET(2) char gTexture7F8AF4[] = "__OTR__texture_data_2/7F8AF4"; +static const ALIGN_ASSET(2) char gTexture7F8AF4[] = "__OTR__textures/texture_data_2/7F8AF4"; -static const ALIGN_ASSET(2) char gTexture7F8CD4[] = "__OTR__texture_data_2/7F8CD4"; +static const ALIGN_ASSET(2) char gTexture7F8CD4[] = "__OTR__textures/texture_data_2/7F8CD4"; -static const ALIGN_ASSET(2) char gTexture7F8EB4[] = "__OTR__texture_data_2/7F8EB4"; +static const ALIGN_ASSET(2) char gTexture7F8EB4[] = "__OTR__textures/texture_data_2/7F8EB4"; -static const ALIGN_ASSET(2) char gTexture7F9094[] = "__OTR__texture_data_2/7F9094"; +static const ALIGN_ASSET(2) char gTexture7F9094[] = "__OTR__textures/texture_data_2/7F9094"; -static const ALIGN_ASSET(2) char gTexture7F9274[] = "__OTR__texture_data_2/7F9274"; +static const ALIGN_ASSET(2) char gTexture7F9274[] = "__OTR__textures/texture_data_2/7F9274"; -static const ALIGN_ASSET(2) char gTexture7F9454[] = "__OTR__texture_data_2/7F9454"; +static const ALIGN_ASSET(2) char gTexture7F9454[] = "__OTR__textures/texture_data_2/7F9454"; -static const ALIGN_ASSET(2) char gTexture7F9634[] = "__OTR__texture_data_2/7F9634"; +static const ALIGN_ASSET(2) char gTexture7F9634[] = "__OTR__textures/texture_data_2/7F9634"; -static const ALIGN_ASSET(2) char gTexture7F9814[] = "__OTR__texture_data_2/7F9814"; +static const ALIGN_ASSET(2) char gTexture7F9814[] = "__OTR__textures/texture_data_2/7F9814"; -static const ALIGN_ASSET(2) char gTexture7F99F4[] = "__OTR__texture_data_2/7F99F4"; +static const ALIGN_ASSET(2) char gTexture7F99F4[] = "__OTR__textures/texture_data_2/7F99F4"; -static const ALIGN_ASSET(2) char gTexture7F9A74[] = "__OTR__texture_data_2/7F9A74"; +static const ALIGN_ASSET(2) char gTexture7F9A74[] = "__OTR__textures/texture_data_2/7F9A74"; -static const ALIGN_ASSET(2) char gTexture7F9AF4[] = "__OTR__texture_data_2/7F9AF4"; +static const ALIGN_ASSET(2) char gTexture7F9AF4[] = "__OTR__textures/texture_data_2/7F9AF4"; -static const ALIGN_ASSET(2) char gTexture7F9B74[] = "__OTR__texture_data_2/7F9B74"; +static const ALIGN_ASSET(2) char gTexture7F9B74[] = "__OTR__textures/texture_data_2/7F9B74"; -static const ALIGN_ASSET(2) char gTexture7F9BF4[] = "__OTR__texture_data_2/7F9BF4"; +static const ALIGN_ASSET(2) char gTexture7F9BF4[] = "__OTR__textures/texture_data_2/7F9BF4"; -static const ALIGN_ASSET(2) char gTexture7F9C74[] = "__OTR__texture_data_2/7F9C74"; +static const ALIGN_ASSET(2) char gTexture7F9C74[] = "__OTR__textures/texture_data_2/7F9C74"; -static const ALIGN_ASSET(2) char gTexture7F9CF4[] = "__OTR__texture_data_2/7F9CF4"; +static const ALIGN_ASSET(2) char gTexture7F9CF4[] = "__OTR__textures/texture_data_2/7F9CF4"; -static const ALIGN_ASSET(2) char gTexture7F9DC4[] = "__OTR__texture_data_2/7F9DC4"; +static const ALIGN_ASSET(2) char gTexture7F9DC4[] = "__OTR__textures/texture_data_2/7F9DC4"; -static const ALIGN_ASSET(2) char gTexture7F9E44[] = "__OTR__texture_data_2/7F9E44"; +static const ALIGN_ASSET(2) char gTexture7F9E44[] = "__OTR__textures/texture_data_2/7F9E44"; -static const ALIGN_ASSET(2) char gTexture7F9EC4[] = "__OTR__texture_data_2/7F9EC4"; +static const ALIGN_ASSET(2) char gTexture7F9EC4[] = "__OTR__textures/texture_data_2/7F9EC4"; -static const ALIGN_ASSET(2) char gTexture7F9F44[] = "__OTR__texture_data_2/7F9F44"; +static const ALIGN_ASSET(2) char gTexture7F9F44[] = "__OTR__textures/texture_data_2/7F9F44"; -static const ALIGN_ASSET(2) char gTexture7F9FC4[] = "__OTR__texture_data_2/7F9FC4"; +static const ALIGN_ASSET(2) char gTexture7F9FC4[] = "__OTR__textures/texture_data_2/7F9FC4"; -static const ALIGN_ASSET(2) char font_apostrophe[] = "__OTR__texture_data_2/font_apostrophe"; +static const ALIGN_ASSET(2) char font_apostrophe[] = "__OTR__textures/texture_data_2/font_apostrophe"; -static const ALIGN_ASSET(2) char gTexture7FA0C4[] = "__OTR__texture_data_2/7FA0C4"; +static const ALIGN_ASSET(2) char gTexture7FA0C4[] = "__OTR__textures/texture_data_2/7FA0C4"; -static const ALIGN_ASSET(2) char gTexture7FA194[] = "__OTR__texture_data_2/7FA194"; +static const ALIGN_ASSET(2) char gTexture7FA194[] = "__OTR__textures/texture_data_2/7FA194"; -static const ALIGN_ASSET(2) char gTexture7FA264[] = "__OTR__texture_data_2/7FA264"; +static const ALIGN_ASSET(2) char gTexture7FA264[] = "__OTR__textures/texture_data_2/7FA264"; -static const ALIGN_ASSET(2) char font_comma[] = "__OTR__texture_data_2/7FA334"; +static const ALIGN_ASSET(2) char font_comma[] = "__OTR__textures/texture_data_2/7FA334"; diff --git a/include/assets/texture_tkmk00.h b/include/assets/textures/texture_tkmk00.h similarity index 56% rename from include/assets/texture_tkmk00.h rename to include/assets/textures/texture_tkmk00.h index b18a748f5..7179ccba8 100644 --- a/include/assets/texture_tkmk00.h +++ b/include/assets/textures/texture_tkmk00.h @@ -3,129 +3,129 @@ #include #include -static const ALIGN_ASSET(2) char texture_player_select[] = "__OTR__texture_tkmk00/texture_player_select"; +static const ALIGN_ASSET(2) char texture_player_select[] = "__OTR__textures/texture_tkmk00/texture_player_select"; -static const ALIGN_ASSET(2) char texture_option[] = "__OTR__texture_tkmk00/texture_option"; +static const ALIGN_ASSET(2) char texture_option[] = "__OTR__textures/texture_tkmk00/texture_option"; -static const ALIGN_ASSET(2) char texture_name_dk[] = "__OTR__texture_tkmk00/texture_name_dk"; +static const ALIGN_ASSET(2) char texture_name_dk[] = "__OTR__textures/texture_tkmk00/texture_name_dk"; -static const ALIGN_ASSET(2) char texture_name_toad[] = "__OTR__texture_tkmk00/texture_name_toad"; +static const ALIGN_ASSET(2) char texture_name_toad[] = "__OTR__textures/texture_tkmk00/texture_name_toad"; -static const ALIGN_ASSET(2) char texture_name_bowser[] = "__OTR__texture_tkmk00/texture_name_bowser"; +static const ALIGN_ASSET(2) char texture_name_bowser[] = "__OTR__textures/texture_tkmk00/texture_name_bowser"; -static const ALIGN_ASSET(2) char texture_name_luigi[] = "__OTR__texture_tkmk00/texture_name_luigi"; +static const ALIGN_ASSET(2) char texture_name_luigi[] = "__OTR__textures/texture_tkmk00/texture_name_luigi"; -static const ALIGN_ASSET(2) char texture_name_mario[] = "__OTR__texture_tkmk00/texture_name_mario"; +static const ALIGN_ASSET(2) char texture_name_mario[] = "__OTR__textures/texture_tkmk00/texture_name_mario"; -static const ALIGN_ASSET(2) char texture_name_peach[] = "__OTR__texture_tkmk00/texture_name_peach"; +static const ALIGN_ASSET(2) char texture_name_peach[] = "__OTR__textures/texture_tkmk00/texture_name_peach"; -static const ALIGN_ASSET(2) char texture_name_wario[] = "__OTR__texture_tkmk00/texture_name_wario"; +static const ALIGN_ASSET(2) char texture_name_wario[] = "__OTR__textures/texture_tkmk00/texture_name_wario"; -static const ALIGN_ASSET(2) char texture_name_yoshi[] = "__OTR__texture_tkmk00/texture_name_yoshi"; +static const ALIGN_ASSET(2) char texture_name_yoshi[] = "__OTR__textures/texture_tkmk00/texture_name_yoshi"; -static const ALIGN_ASSET(2) char gTextureTitleMarioRaceway[] = "__OTR__texture_tkmk00/gTextureTitleMarioRaceway"; +static const ALIGN_ASSET(2) char gTextureTitleMarioRaceway[] = "__OTR__textures/texture_tkmk00/gTextureTitleMarioRaceway"; -static const ALIGN_ASSET(2) char gTextureTitleChocoMountain[] = "__OTR__texture_tkmk00/gTextureTitleChocoMountain"; +static const ALIGN_ASSET(2) char gTextureTitleChocoMountain[] = "__OTR__textures/texture_tkmk00/gTextureTitleChocoMountain"; -static const ALIGN_ASSET(2) char gTextureTitleBowsersCastle[] = "__OTR__texture_tkmk00/gTextureTitleBowsersCastle"; +static const ALIGN_ASSET(2) char gTextureTitleBowsersCastle[] = "__OTR__textures/texture_tkmk00/gTextureTitleBowsersCastle"; -static const ALIGN_ASSET(2) char gTextureTitleBansheeBoardwalk[] = "__OTR__texture_tkmk00/gTextureTitleBansheeBoardwalk"; +static const ALIGN_ASSET(2) char gTextureTitleBansheeBoardwalk[] = "__OTR__textures/texture_tkmk00/gTextureTitleBansheeBoardwalk"; -static const ALIGN_ASSET(2) char gTextureTitleYoshiValley[] = "__OTR__texture_tkmk00/gTextureTitleYoshiValley"; +static const ALIGN_ASSET(2) char gTextureTitleYoshiValley[] = "__OTR__textures/texture_tkmk00/gTextureTitleYoshiValley"; -static const ALIGN_ASSET(2) char gTextureTitleFrappeSnowland[] = "__OTR__texture_tkmk00/gTextureTitleFrappeSnowland"; +static const ALIGN_ASSET(2) char gTextureTitleFrappeSnowland[] = "__OTR__textures/texture_tkmk00/gTextureTitleFrappeSnowland"; -static const ALIGN_ASSET(2) char gTextureTitleKoopaTroopaBeach[] = "__OTR__texture_tkmk00/gTextureTitleKoopaTroopaBeach"; +static const ALIGN_ASSET(2) char gTextureTitleKoopaTroopaBeach[] = "__OTR__textures/texture_tkmk00/gTextureTitleKoopaTroopaBeach"; -static const ALIGN_ASSET(2) char gTextureTitleRoyalRaceway[] = "__OTR__texture_tkmk00/gTextureTitleRoyalRaceway"; +static const ALIGN_ASSET(2) char gTextureTitleRoyalRaceway[] = "__OTR__textures/texture_tkmk00/gTextureTitleRoyalRaceway"; -static const ALIGN_ASSET(2) char gTextureTitleLuigiRaceway[] = "__OTR__texture_tkmk00/gTextureTitleLuigiRaceway"; +static const ALIGN_ASSET(2) char gTextureTitleLuigiRaceway[] = "__OTR__textures/texture_tkmk00/gTextureTitleLuigiRaceway"; -static const ALIGN_ASSET(2) char gTextureTitleMooMooFarm[] = "__OTR__texture_tkmk00/gTextureTitleMooMooFarm"; +static const ALIGN_ASSET(2) char gTextureTitleMooMooFarm[] = "__OTR__textures/texture_tkmk00/gTextureTitleMooMooFarm"; -static const ALIGN_ASSET(2) char gTextureTitleToadsTurnpike[] = "__OTR__texture_tkmk00/gTextureTitleToadsTurnpike"; +static const ALIGN_ASSET(2) char gTextureTitleToadsTurnpike[] = "__OTR__textures/texture_tkmk00/gTextureTitleToadsTurnpike"; -static const ALIGN_ASSET(2) char gTextureTitleKalimariDesert[] = "__OTR__texture_tkmk00/gTextureTitleKalimariDesert"; +static const ALIGN_ASSET(2) char gTextureTitleKalimariDesert[] = "__OTR__textures/texture_tkmk00/gTextureTitleKalimariDesert"; -static const ALIGN_ASSET(2) char gTextureTitleSherbetLand[] = "__OTR__texture_tkmk00/gTextureTitleSherbetLand"; +static const ALIGN_ASSET(2) char gTextureTitleSherbetLand[] = "__OTR__textures/texture_tkmk00/gTextureTitleSherbetLand"; -static const ALIGN_ASSET(2) char gTextureTitleRainbowRoad[] = "__OTR__texture_tkmk00/gTextureTitleRainbowRoad"; +static const ALIGN_ASSET(2) char gTextureTitleRainbowRoad[] = "__OTR__textures/texture_tkmk00/gTextureTitleRainbowRoad"; -static const ALIGN_ASSET(2) char gTextureTitleWarioStadium[] = "__OTR__texture_tkmk00/gTextureTitleWarioStadium"; +static const ALIGN_ASSET(2) char gTextureTitleWarioStadium[] = "__OTR__textures/texture_tkmk00/gTextureTitleWarioStadium"; -static const ALIGN_ASSET(2) char gTextureTitleBlockFort[] = "__OTR__texture_tkmk00/gTextureTitleBlockFort"; +static const ALIGN_ASSET(2) char gTextureTitleBlockFort[] = "__OTR__textures/texture_tkmk00/gTextureTitleBlockFort"; -static const ALIGN_ASSET(2) char gTextureTitleSkyscraper[] = "__OTR__texture_tkmk00/gTextureTitleSkyscraper"; +static const ALIGN_ASSET(2) char gTextureTitleSkyscraper[] = "__OTR__textures/texture_tkmk00/gTextureTitleSkyscraper"; -static const ALIGN_ASSET(2) char gTextureTitleDoubleDeck[] = "__OTR__texture_tkmk00/gTextureTitleDoubleDeck"; +static const ALIGN_ASSET(2) char gTextureTitleDoubleDeck[] = "__OTR__textures/texture_tkmk00/gTextureTitleDoubleDeck"; -static const ALIGN_ASSET(2) char gTextureTitleDKsJungleParkway[] = "__OTR__texture_tkmk00/gTextureTitleDKsJungleParkway"; +static const ALIGN_ASSET(2) char gTextureTitleDKsJungleParkway[] = "__OTR__textures/texture_tkmk00/gTextureTitleDKsJungleParkway"; -static const ALIGN_ASSET(2) char gTextureTitleBigDonut[] = "__OTR__texture_tkmk00/gTextureTitleBigDonut"; +static const ALIGN_ASSET(2) char gTextureTitleBigDonut[] = "__OTR__textures/texture_tkmk00/gTextureTitleBigDonut"; -static const ALIGN_ASSET(2) char gTextureMapSelect[] = "__OTR__texture_tkmk00/gTextureMapSelect"; +static const ALIGN_ASSET(2) char gTextureMapSelect[] = "__OTR__textures/texture_tkmk00/gTextureMapSelect"; -static const ALIGN_ASSET(2) char gTextureMenuFlowerCup[] = "__OTR__texture_tkmk00/gTextureMenuFlowerCup"; +static const ALIGN_ASSET(2) char gTextureMenuFlowerCup[] = "__OTR__textures/texture_tkmk00/gTextureMenuFlowerCup"; -static const ALIGN_ASSET(2) char gTextureMenuMushroomCup[] = "__OTR__texture_tkmk00/gTextureMenuMushroomCup"; +static const ALIGN_ASSET(2) char gTextureMenuMushroomCup[] = "__OTR__textures/texture_tkmk00/gTextureMenuMushroomCup"; -static const ALIGN_ASSET(2) char gTextureMenuStarCup[] = "__OTR__texture_tkmk00/gTextureMenuStarCup"; +static const ALIGN_ASSET(2) char gTextureMenuStarCup[] = "__OTR__textures/texture_tkmk00/gTextureMenuStarCup"; -static const ALIGN_ASSET(2) char gTextureMenuSpecialCup[] = "__OTR__texture_tkmk00/gTextureMenuSpecialCup"; +static const ALIGN_ASSET(2) char gTextureMenuSpecialCup[] = "__OTR__textures/texture_tkmk00/gTextureMenuSpecialCup"; -static const ALIGN_ASSET(2) char texture_game_select[] = "__OTR__texture_tkmk00/texture_game_select"; +static const ALIGN_ASSET(2) char texture_game_select[] = "__OTR__textures/texture_tkmk00/texture_game_select"; -static const ALIGN_ASSET(2) char texture_menu_1p_game[] = "__OTR__texture_tkmk00/texture_menu_1p_game"; +static const ALIGN_ASSET(2) char texture_menu_1p_game[] = "__OTR__textures/texture_tkmk00/texture_menu_1p_game"; -static const ALIGN_ASSET(2) char texture_menu_2p_game[] = "__OTR__texture_tkmk00/texture_menu_2p_game"; +static const ALIGN_ASSET(2) char texture_menu_2p_game[] = "__OTR__textures/texture_tkmk00/texture_menu_2p_game"; -static const ALIGN_ASSET(2) char texture_menu_3p_game[] = "__OTR__texture_tkmk00/texture_menu_3p_game"; +static const ALIGN_ASSET(2) char texture_menu_3p_game[] = "__OTR__textures/texture_tkmk00/texture_menu_3p_game"; -static const ALIGN_ASSET(2) char texture_menu_4p_game[] = "__OTR__texture_tkmk00/texture_menu_4p_game"; +static const ALIGN_ASSET(2) char texture_menu_4p_game[] = "__OTR__textures/texture_tkmk00/texture_menu_4p_game"; -static const ALIGN_ASSET(2) char texture_mode_battle[] = "__OTR__texture_tkmk00/texture_mode_battle"; +static const ALIGN_ASSET(2) char texture_mode_battle[] = "__OTR__textures/texture_tkmk00/texture_mode_battle"; -static const ALIGN_ASSET(2) char texture_mode_time_trials[] = "__OTR__texture_tkmk00/texture_mode_time_trials"; +static const ALIGN_ASSET(2) char texture_mode_time_trials[] = "__OTR__textures/texture_tkmk00/texture_mode_time_trials"; -static const ALIGN_ASSET(2) char texture_mode_mario_gp[] = "__OTR__texture_tkmk00/texture_mode_mario_gp"; +static const ALIGN_ASSET(2) char texture_mode_mario_gp[] = "__OTR__textures/texture_tkmk00/texture_mode_mario_gp"; -static const ALIGN_ASSET(2) char texture_mode_vs[] = "__OTR__texture_tkmk00/texture_mode_vs"; +static const ALIGN_ASSET(2) char texture_mode_vs[] = "__OTR__textures/texture_tkmk00/texture_mode_vs"; -static const ALIGN_ASSET(2) char texture_l_option[] = "__OTR__texture_tkmk00/texture_l_option"; +static const ALIGN_ASSET(2) char texture_l_option[] = "__OTR__textures/texture_tkmk00/texture_l_option"; -static const ALIGN_ASSET(2) char texture_r_data[] = "__OTR__texture_tkmk00/texture_r_data"; +static const ALIGN_ASSET(2) char texture_r_data[] = "__OTR__textures/texture_tkmk00/texture_r_data"; -static const ALIGN_ASSET(2) char texture_50cc[] = "__OTR__texture_tkmk00/texture_50cc"; +static const ALIGN_ASSET(2) char texture_50cc[] = "__OTR__textures/texture_tkmk00/texture_50cc"; -static const ALIGN_ASSET(2) char texture_100cc[] = "__OTR__texture_tkmk00/texture_100cc"; +static const ALIGN_ASSET(2) char texture_100cc[] = "__OTR__textures/texture_tkmk00/texture_100cc"; -static const ALIGN_ASSET(2) char texture_150cc[] = "__OTR__texture_tkmk00/texture_150cc"; +static const ALIGN_ASSET(2) char texture_150cc[] = "__OTR__textures/texture_tkmk00/texture_150cc"; -static const ALIGN_ASSET(2) char texture_extra[] = "__OTR__texture_tkmk00/texture_extra"; +static const ALIGN_ASSET(2) char texture_extra[] = "__OTR__textures/texture_tkmk00/texture_extra"; -static const ALIGN_ASSET(2) char gTextureMenuWithoutItem[] = "__OTR__texture_tkmk00/gTextureMenuWithoutItem"; +static const ALIGN_ASSET(2) char gTextureMenuWithoutItem[] = "__OTR__textures/texture_tkmk00/gTextureMenuWithoutItem"; -static const ALIGN_ASSET(2) char gTextureMenuWithItem[] = "__OTR__texture_tkmk00/gTextureMenuWithItem"; +static const ALIGN_ASSET(2) char gTextureMenuWithItem[] = "__OTR__textures/texture_tkmk00/gTextureMenuWithItem"; -static const ALIGN_ASSET(2) char texture_begin[] = "__OTR__texture_tkmk00/texture_begin"; +static const ALIGN_ASSET(2) char texture_begin[] = "__OTR__textures/texture_tkmk00/texture_begin"; -static const ALIGN_ASSET(2) char texture_menu_ghost[] = "__OTR__texture_tkmk00/texture_menu_ghost"; +static const ALIGN_ASSET(2) char texture_menu_ghost[] = "__OTR__textures/texture_tkmk00/texture_menu_ghost"; -static const ALIGN_ASSET(2) char texture_data[] = "__OTR__texture_tkmk00/texture_data"; +static const ALIGN_ASSET(2) char texture_data[] = "__OTR__textures/texture_tkmk00/texture_data"; -static const ALIGN_ASSET(2) char texture_ok[] = "__OTR__texture_tkmk00/texture_ok"; +static const ALIGN_ASSET(2) char texture_ok[] = "__OTR__textures/texture_tkmk00/texture_ok"; -static const ALIGN_ASSET(2) char background_blue_sky[] = "__OTR__texture_tkmk00/background_blue_sky"; +static const ALIGN_ASSET(2) char background_blue_sky[] = "__OTR__textures/texture_tkmk00/background_blue_sky"; -static const ALIGN_ASSET(2) char background_sunset[] = "__OTR__texture_tkmk00/background_sunset"; +static const ALIGN_ASSET(2) char background_sunset[] = "__OTR__textures/texture_tkmk00/background_sunset"; -static const ALIGN_ASSET(2) char gTextureGreenGoldStripe[] = "__OTR__texture_tkmk00/gTextureGreenGoldStripe"; +static const ALIGN_ASSET(2) char gTextureGreenGoldStripe[] = "__OTR__textures/texture_tkmk00/gTextureGreenGoldStripe"; -static const ALIGN_ASSET(2) char gTextureGoldStripe[] = "__OTR__texture_tkmk00/gTextureGoldStripe"; +static const ALIGN_ASSET(2) char gTextureGoldStripe[] = "__OTR__textures/texture_tkmk00/gTextureGoldStripe"; -static const ALIGN_ASSET(2) char gTextureWhiteStripe[] = "__OTR__texture_tkmk00/gTextureWhiteStripe"; +static const ALIGN_ASSET(2) char gTextureWhiteStripe[] = "__OTR__textures/texture_tkmk00/gTextureWhiteStripe"; -static const ALIGN_ASSET(2) char gTexturePinkBar[] = "__OTR__texture_tkmk00/gTexturePinkBar"; +static const ALIGN_ASSET(2) char gTexturePinkBar[] = "__OTR__textures/texture_tkmk00/gTexturePinkBar"; -static const ALIGN_ASSET(2) char gTextureGoldBar[] = "__OTR__texture_tkmk00/gTextureGoldBar"; +static const ALIGN_ASSET(2) char gTextureGoldBar[] = "__OTR__textures/texture_tkmk00/gTextureGoldBar"; diff --git a/include/assets/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.h b/include/assets/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.h new file mode 100644 index 000000000..145467d25 --- /dev/null +++ b/include/assets/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.h @@ -0,0 +1,31 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_boo_tlut[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_boo_tlut"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_fish_eyes[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_fish_eyes"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_bat_tlut[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_bat_tlut"; + +static const ALIGN_ASSET(2) char gTextureBat1[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/gTextureBat1"; + +static const ALIGN_ASSET(2) char gTextureBat2[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/gTextureBat2"; + +static const ALIGN_ASSET(2) char gTextureBat3[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/gTextureBat3"; + +static const ALIGN_ASSET(2) char gTextureBat4[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/gTextureBat4"; + +static const char* d_course_banshee_boardwalk_bat[] = { + gTextureBat1, + gTextureBat2, + gTextureBat3, + gTextureBat4, +}; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_texture[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_texture"; + +static const ALIGN_ASSET(2) char d_course_banshee_boardwalk_texture2[] = "__OTR__textures/tracks/banshee_boardwalk/banshee_boardwalk_data/d_course_banshee_boardwalk_texture2"; + diff --git a/include/assets/textures/tracks/bowsers_castle/bowsers_castle_data.h b/include/assets/textures/tracks/bowsers_castle/bowsers_castle_data.h new file mode 100644 index 000000000..ea23f9ffb --- /dev/null +++ b/include/assets/textures/tracks/bowsers_castle/bowsers_castle_data.h @@ -0,0 +1,31 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_side[] = "__OTR__textures/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_thwomp_side"; + +static const ALIGN_ASSET(2) char d_course_bowsers_castle_thwomp_tlut[] = "__OTR__textures/tracks/bowsers_castle/bowsers_castle_data/d_course_bowsers_castle_thwomp_tlut"; + +static const ALIGN_ASSET(2) char gTextureThwompFace1[] = "__OTR__textures/tracks/bowsers_castle/bowsers_castle_data/gTextureThwompFace1"; + +static const ALIGN_ASSET(2) char gTextureThwompFace2[] = "__OTR__textures/tracks/bowsers_castle/bowsers_castle_data/gTextureThwompFace2"; + +static const ALIGN_ASSET(2) char gTextureThwompFace3[] = "__OTR__textures/tracks/bowsers_castle/bowsers_castle_data/gTextureThwompFace3"; + +static const ALIGN_ASSET(2) char gTextureThwompFace4[] = "__OTR__textures/tracks/bowsers_castle/bowsers_castle_data/gTextureThwompFace4"; + +static const ALIGN_ASSET(2) char gTextureThwompFace5[] = "__OTR__textures/tracks/bowsers_castle/bowsers_castle_data/gTextureThwompFace5"; + +static const ALIGN_ASSET(2) char gTextureThwompFace6[] = "__OTR__textures/tracks/bowsers_castle/bowsers_castle_data/gTextureThwompFace6"; + +static const char* d_course_bowsers_castle_thwomp_faces[] = { + gTextureThwompFace1, + gTextureThwompFace2, + gTextureThwompFace3, + gTextureThwompFace4, + gTextureThwompFace5, + gTextureThwompFace6, +}; + diff --git a/include/assets/textures/tracks/choco_mountain/choco_mountain_data.h b/include/assets/textures/tracks/choco_mountain/choco_mountain_data.h new file mode 100644 index 000000000..b909b628b --- /dev/null +++ b/include/assets/textures/tracks/choco_mountain/choco_mountain_data.h @@ -0,0 +1,10 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_choco_mountain_wall_texture[] = "__OTR__textures/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_wall_texture"; + +static const ALIGN_ASSET(2) char d_course_choco_mountain_rock_texture[] = "__OTR__textures/tracks/choco_mountain/choco_mountain_data/d_course_choco_mountain_rock_texture"; + diff --git a/include/assets/textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h b/include/assets/textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h new file mode 100644 index 000000000..2b3227c88 --- /dev/null +++ b/include/assets/textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h @@ -0,0 +1,36 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_mario_sign[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_mario_sign"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_window_upper[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_window_upper"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_window_lower[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_window_lower"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_railing[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_railing"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_paddle[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_paddle"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_boat_paddle2[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_boat_paddle2"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree2_top[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree2_top"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree2_trunk[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree2_trunk"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree3[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree3"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree4[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree4"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree_trunk[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree_trunk"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_tree5[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_tree5"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_palm_tree[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_palm_tree"; + +static const ALIGN_ASSET(2) char d_course_dks_jungle_parkway_kiwano_tlut[] = "__OTR__textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data/d_course_dks_jungle_parkway_kiwano_tlut"; + diff --git a/include/assets/textures/tracks/frappe_snowland/frappe_snowland_data.h b/include/assets/textures/tracks/frappe_snowland/frappe_snowland_data.h new file mode 100644 index 000000000..8e52fddc3 --- /dev/null +++ b/include/assets/textures/tracks/frappe_snowland/frappe_snowland_data.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_snowman_tlut[] = "__OTR__textures/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_snowman_tlut"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_snowman_head[] = "__OTR__textures/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_snowman_head"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_snowman_body[] = "__OTR__textures/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_snowman_body"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_snow_tlut[] = "__OTR__textures/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_snow_tlut"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_snow[] = "__OTR__textures/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_snow"; + +static const ALIGN_ASSET(2) char d_course_frappe_snowland_tree_tlut[] = "__OTR__textures/tracks/frappe_snowland/frappe_snowland_data/d_course_frappe_snowland_tree_tlut"; + diff --git a/include/assets/textures/tracks/kalimari_desert/kalimari_desert_data.h b/include/assets/textures/tracks/kalimari_desert/kalimari_desert_data.h new file mode 100644 index 000000000..c33bba938 --- /dev/null +++ b/include/assets/textures/tracks/kalimari_desert/kalimari_desert_data.h @@ -0,0 +1,50 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_tree_tlut[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_tree_tlut"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_inactive_top_left[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_sign_inactive_top_left"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_inactive_top_right[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_sign_inactive_top_right"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_inactive_bottom_left[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_sign_inactive_bottom_left"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_inactive_bottom_right[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_sign_inactive_bottom_right"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_active_top_left[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_sign_active_top_left"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_active_top_right[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_sign_active_top_right"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_active_bottom_left[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_sign_active_bottom_left"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_crossing_sign_active_bottom_right[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_crossing_sign_active_bottom_right"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_64[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_64"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_cab_window[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_cab_window"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_cab_window_front[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_cab_window_front"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_chassis[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_chassis"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_lamp[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_lamp"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_boiler[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_boiler"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_railing[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_carriage_railing"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_locomotive_tender[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_locomotive_tender"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_railway_ballast[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_railway_ballast"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_lower[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_carriage_lower"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_door[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_carriage_door"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_carriage_window[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_carriage_window"; + +static const ALIGN_ASSET(2) char d_course_kalimari_desert_train_bogie[] = "__OTR__textures/tracks/kalimari_desert/kalimari_desert_data/d_course_kalimari_desert_train_bogie"; + diff --git a/include/assets/textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h b/include/assets/textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h new file mode 100644 index 000000000..a88a06fbd --- /dev/null +++ b/include/assets/textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h @@ -0,0 +1,42 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_crab_tlut[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_crab_tlut"; + +static const ALIGN_ASSET(2) char gTextureCrab1[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/gTextureCrab1"; + +static const ALIGN_ASSET(2) char gTextureCrab2[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/gTextureCrab2"; + +static const ALIGN_ASSET(2) char gTextureCrab3[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/gTextureCrab3"; + +static const ALIGN_ASSET(2) char gTextureCrab4[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/gTextureCrab4"; + +static const ALIGN_ASSET(2) char gTextureCrab5[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/gTextureCrab5"; + +static const ALIGN_ASSET(2) char gTextureCrab6[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/gTextureCrab6"; + +static const ALIGN_ASSET(2) char gTextureCrab7[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/gTextureCrab7"; + +static const char* d_course_koopa_troopa_beach_crab_frames[] = { + gTextureCrab1, + gTextureCrab2, + gTextureCrab3, + gTextureCrab4, + gTextureCrab5, + gTextureCrab6, + gTextureCrab7, +}; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_wing[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_wing"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_eye[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_eye"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_bird_beak[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_bird_beak"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_palm_frond[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_palm_frond"; + +static const ALIGN_ASSET(2) char d_course_koopa_troopa_beach_palm_trunk[] = "__OTR__textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data/d_course_koopa_troopa_beach_palm_trunk"; + diff --git a/include/assets/textures/tracks/luigi_raceway/luigi_raceway_data.h b/include/assets/textures/tracks/luigi_raceway/luigi_raceway_data.h new file mode 100644 index 000000000..9272fd554 --- /dev/null +++ b/include/assets/textures/tracks/luigi_raceway/luigi_raceway_data.h @@ -0,0 +1,14 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_sign_left[] = "__OTR__textures/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_sign_left"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_sign_right[] = "__OTR__textures/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_sign_right"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_balloon_basket[] = "__OTR__textures/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_balloon_basket"; + +static const ALIGN_ASSET(2) char d_course_luigi_raceway_balloon_rope[] = "__OTR__textures/tracks/luigi_raceway/luigi_raceway_data/d_course_luigi_raceway_balloon_rope"; + diff --git a/include/assets/textures/tracks/mario_raceway/mario_raceway_data.h b/include/assets/textures/tracks/mario_raceway/mario_raceway_data.h new file mode 100644 index 000000000..3a6f41b4c --- /dev/null +++ b/include/assets/textures/tracks/mario_raceway/mario_raceway_data.h @@ -0,0 +1,12 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_mario_raceway_piranha_plant_tlut[] = "__OTR__textures/tracks/mario_raceway/mario_raceway_data/d_course_mario_raceway_piranha_plant_tlut"; + +static const ALIGN_ASSET(2) char d_course_mario_sign_left[] = "__OTR__textures/tracks/mario_raceway/mario_raceway_data/d_course_mario_sign_left"; + +static const ALIGN_ASSET(2) char d_course_mario_sign_right[] = "__OTR__textures/tracks/mario_raceway/mario_raceway_data/d_course_mario_sign_right"; + diff --git a/include/assets/textures/tracks/moo_moo_farm/moo_moo_farm_data.h b/include/assets/textures/tracks/moo_moo_farm/moo_moo_farm_data.h new file mode 100644 index 000000000..c01c3a184 --- /dev/null +++ b/include/assets/textures/tracks/moo_moo_farm/moo_moo_farm_data.h @@ -0,0 +1,37 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_mole_tlut[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_mole_tlut"; + +static const ALIGN_ASSET(2) char gTextureMole1[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/gTextureMole1"; + +static const ALIGN_ASSET(2) char gTextureMole2[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/gTextureMole2"; + +static const ALIGN_ASSET(2) char gTextureMole3[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/gTextureMole3"; + +static const ALIGN_ASSET(2) char gTextureMole4[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/gTextureMole4"; + +static const ALIGN_ASSET(2) char gTextureMole5[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/gTextureMole5"; + +static const ALIGN_ASSET(2) char gTextureMole6[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/gTextureMole6"; + +static const ALIGN_ASSET(2) char gTextureMole7[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/gTextureMole7"; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_mole_dirt[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_mole_dirt"; + +static const char* d_course_moo_moo_farm_mole_frames[] = { + gTextureMole1, + gTextureMole2, + gTextureMole3, + gTextureMole4, + gTextureMole5, + gTextureMole6, + gTextureMole7, + d_course_moo_moo_farm_mole_dirt, +}; + +static const ALIGN_ASSET(2) char d_course_moo_moo_farm_cow_tlut[] = "__OTR__textures/tracks/moo_moo_farm/moo_moo_farm_data/d_course_moo_moo_farm_cow_tlut"; + diff --git a/include/assets/textures/tracks/rainbow_road/rainbow_road_data.h b/include/assets/textures/tracks/rainbow_road/rainbow_road_data.h new file mode 100644 index 000000000..fdcbf8c46 --- /dev/null +++ b/include/assets/textures/tracks/rainbow_road/rainbow_road_data.h @@ -0,0 +1,148 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom1[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMushroom1"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom2[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMushroom2"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom3[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMushroom3"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom4[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMushroom4"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMushroom5[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMushroom5"; + +static const char* d_course_rainbow_road_neon_mushroom_tlut_list[] = { + gTLUTRainbowRoadNeonMushroom1, + gTLUTRainbowRoadNeonMushroom2, + gTLUTRainbowRoadNeonMushroom3, + gTLUTRainbowRoadNeonMushroom4, + gTLUTRainbowRoadNeonMushroom5, +}; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario1[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMario1"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario2[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMario2"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario3[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMario3"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario4[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMario4"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonMario5[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonMario5"; + +static const char* d_course_rainbow_road_neon_mario_tlut_list[] = { + gTLUTRainbowRoadNeonMario1, + gTLUTRainbowRoadNeonMario2, + gTLUTRainbowRoadNeonMario3, + gTLUTRainbowRoadNeonMario4, + gTLUTRainbowRoadNeonMario5, +}; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo1[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonBoo1"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo2[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonBoo2"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo3[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonBoo3"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo4[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonBoo4"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBoo5[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonBoo5"; + +static const char* d_course_rainbow_road_neon_boo_tlut_list[] = { + gTLUTRainbowRoadNeonBoo1, + gTLUTRainbowRoadNeonBoo2, + gTLUTRainbowRoadNeonBoo3, + gTLUTRainbowRoadNeonBoo4, + gTLUTRainbowRoadNeonBoo5, +}; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonPeach[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonPeach"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonLuigi[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonLuigi"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonDonkeyKong[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonDonkeyKong"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonYoshi[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonYoshi"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonBowser[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonBowser"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonWario[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonWario"; + +static const ALIGN_ASSET(2) char gTLUTRainbowRoadNeonToad[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTLUTRainbowRoadNeonToad"; + +static const char* d_course_rainbow_road_static_tluts[] = { + gTLUTRainbowRoadNeonPeach, + gTLUTRainbowRoadNeonLuigi, + gTLUTRainbowRoadNeonDonkeyKong, + gTLUTRainbowRoadNeonYoshi, + gTLUTRainbowRoadNeonBowser, + gTLUTRainbowRoadNeonWario, + gTLUTRainbowRoadNeonToad, +}; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom5[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mushroom5"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom4[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mushroom4"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom3[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mushroom3"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom1[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mushroom1"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mushroom2[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mushroom2"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario1[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mario1"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario2[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mario2"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario3[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mario3"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario4[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mario4"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_mario5[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_mario5"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo1[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_boo1"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo2[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_boo2"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo3[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_boo3"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo4[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_boo4"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_neon_boo5[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_neon_boo5"; + +static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonPeach[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTextureRainbowRoadNeonPeach"; + +static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonLuigi[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTextureRainbowRoadNeonLuigi"; + +static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonDonkeyKong[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTextureRainbowRoadNeonDonkeyKong"; + +static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonYoshi[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTextureRainbowRoadNeonYoshi"; + +static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonBowser[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTextureRainbowRoadNeonBowser"; + +static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonWario[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTextureRainbowRoadNeonWario"; + +static const ALIGN_ASSET(2) char gTextureRainbowRoadNeonToad[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/gTextureRainbowRoadNeonToad"; + +static const char* d_course_rainbow_road_static_textures[] = { + gTextureRainbowRoadNeonPeach, + gTextureRainbowRoadNeonLuigi, + gTextureRainbowRoadNeonDonkeyKong, + gTextureRainbowRoadNeonYoshi, + gTextureRainbowRoadNeonBowser, + gTextureRainbowRoadNeonWario, + gTextureRainbowRoadNeonToad, +}; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_sphere[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_sphere"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_reflection_map_metal[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_reflection_map_metal"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_reflection_map_gold[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_reflection_map_gold"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chain_chomp_tongue[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chain_chomp_tongue"; + +static const ALIGN_ASSET(2) char d_course_rainbow_road_chain_chomp_eye[] = "__OTR__textures/tracks/rainbow_road/rainbow_road_data/d_course_rainbow_road_chain_chomp_eye"; + diff --git a/include/assets/textures/tracks/royal_raceway/royal_raceway_data.h b/include/assets/textures/tracks/royal_raceway/royal_raceway_data.h new file mode 100644 index 000000000..cc2839ea2 --- /dev/null +++ b/include/assets/textures/tracks/royal_raceway/royal_raceway_data.h @@ -0,0 +1,8 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_royal_raceway_piranha_plant_tlut[] = "__OTR__textures/tracks/royal_raceway/royal_raceway_data/d_course_royal_raceway_piranha_plant_tlut"; + diff --git a/include/assets/textures/tracks/sherbet_land/sherbet_land_data.h b/include/assets/textures/tracks/sherbet_land/sherbet_land_data.h new file mode 100644 index 000000000..f449b7919 --- /dev/null +++ b/include/assets/textures/tracks/sherbet_land/sherbet_land_data.h @@ -0,0 +1,12 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_sherbet_land_ice[] = "__OTR__textures/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_ice"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_beak[] = "__OTR__textures/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_beak"; + +static const ALIGN_ASSET(2) char d_course_sherbet_land_penguin_eye[] = "__OTR__textures/tracks/sherbet_land/sherbet_land_data/d_course_sherbet_land_penguin_eye"; + diff --git a/include/assets/textures/tracks/toads_turnpike/toads_turnpike_data.h b/include/assets/textures/tracks/toads_turnpike/toads_turnpike_data.h new file mode 100644 index 000000000..4160573d2 --- /dev/null +++ b/include/assets/textures/tracks/toads_turnpike/toads_turnpike_data.h @@ -0,0 +1,74 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_unk_windshield1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_unk_windshield1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_unk_windshield2[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_unk_windshield2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_box1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_box1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck1_headlights[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck1_headlights"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck1_tyre[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck1_tyre"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck1_cab[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck1_cab"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck1_cab_side[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck1_cab_side"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_back_lod0[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_back_lod0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_side[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_side"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_door_lod0[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_door_lod0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_window[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_window"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_front_lod0[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_front_lod0"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_black[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_black"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_driver_window[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_driver_window"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_door_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_door_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_side_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_side_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_front_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_front_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_back_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_bus_back_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_stripe[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_stripe"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_windshield[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_windshield"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_front[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_front"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_headlights[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_headlights"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_bumper[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_bumper"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_side_back_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_side_back_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_back_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_back_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_side_front_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_side_front_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_front_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_tanker_truck_front_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_box2[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_box2"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_box3[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_truck_box3"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_headlights[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_headlights"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_taillights[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_taillights"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_front_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_front_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_back_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_back_lod1"; + +static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_side_lod1[] = "__OTR__textures/tracks/toads_turnpike/toads_turnpike_data/d_course_toads_turnpike_car_side_lod1"; + diff --git a/include/assets/textures/tracks/wario_stadium/wario_stadium_data.h b/include/assets/textures/tracks/wario_stadium/wario_stadium_data.h new file mode 100644 index 000000000..3f2822669 --- /dev/null +++ b/include/assets/textures/tracks/wario_stadium/wario_stadium_data.h @@ -0,0 +1,14 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_top_left[] = "__OTR__textures/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_sign_top_left"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_bottom_left[] = "__OTR__textures/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_sign_bottom_left"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_top_right[] = "__OTR__textures/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_sign_top_right"; + +static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_bottom_right[] = "__OTR__textures/tracks/wario_stadium/wario_stadium_data/d_course_wario_stadium_sign_bottom_right"; + diff --git a/include/assets/textures/tracks/yoshi_valley/yoshi_valley_data.h b/include/assets/textures/tracks/yoshi_valley/yoshi_valley_data.h new file mode 100644 index 000000000..d1137b2b1 --- /dev/null +++ b/include/assets/textures/tracks/yoshi_valley/yoshi_valley_data.h @@ -0,0 +1,16 @@ +#pragma once + +#include +#include +#include + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_yoshi_flag[] = "__OTR__textures/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_yoshi_flag"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_hedgehog_tlut[] = "__OTR__textures/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_hedgehog_tlut"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_hedgehog[] = "__OTR__textures/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_hedgehog"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_spot[] = "__OTR__textures/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_egg_spot"; + +static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg[] = "__OTR__textures/tracks/yoshi_valley/yoshi_valley_data/d_course_yoshi_valley_egg"; + diff --git a/include/assets/toad_kart.h b/include/assets/toad_kart.h deleted file mode 100644 index cd1081c95..000000000 --- a/include/assets/toad_kart.h +++ /dev/null @@ -1,4120 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gKartToad000[] = "__OTR__toad_kart/toad_kart_frame000"; - -static const ALIGN_ASSET(2) char gKartToad001[] = "__OTR__toad_kart/toad_kart_frame001"; - -static const ALIGN_ASSET(2) char gKartToad002[] = "__OTR__toad_kart/toad_kart_frame002"; - -static const ALIGN_ASSET(2) char gKartToad003[] = "__OTR__toad_kart/toad_kart_frame003"; - -static const ALIGN_ASSET(2) char gKartToad004[] = "__OTR__toad_kart/toad_kart_frame004"; - -static const ALIGN_ASSET(2) char gKartToad005[] = "__OTR__toad_kart/toad_kart_frame005"; - -static const ALIGN_ASSET(2) char gKartToad006[] = "__OTR__toad_kart/toad_kart_frame006"; - -static const ALIGN_ASSET(2) char gKartToad007[] = "__OTR__toad_kart/toad_kart_frame007"; - -static const ALIGN_ASSET(2) char gKartToad008[] = "__OTR__toad_kart/toad_kart_frame008"; - -static const ALIGN_ASSET(2) char gKartToad009[] = "__OTR__toad_kart/toad_kart_frame009"; - -static const ALIGN_ASSET(2) char gKartToad010[] = "__OTR__toad_kart/toad_kart_frame010"; - -static const ALIGN_ASSET(2) char gKartToad011[] = "__OTR__toad_kart/toad_kart_frame011"; - -static const ALIGN_ASSET(2) char gKartToad012[] = "__OTR__toad_kart/toad_kart_frame012"; - -static const ALIGN_ASSET(2) char gKartToad013[] = "__OTR__toad_kart/toad_kart_frame013"; - -static const ALIGN_ASSET(2) char gKartToad014[] = "__OTR__toad_kart/toad_kart_frame014"; - -static const ALIGN_ASSET(2) char gKartToad015[] = "__OTR__toad_kart/toad_kart_frame015"; - -static const ALIGN_ASSET(2) char gKartToad016[] = "__OTR__toad_kart/toad_kart_frame016"; - -static const ALIGN_ASSET(2) char gKartToad017[] = "__OTR__toad_kart/toad_kart_frame017"; - -static const ALIGN_ASSET(2) char gKartToad018[] = "__OTR__toad_kart/toad_kart_frame018"; - -static const ALIGN_ASSET(2) char gKartToad019[] = "__OTR__toad_kart/toad_kart_frame019"; - -static const ALIGN_ASSET(2) char gKartToad020[] = "__OTR__toad_kart/toad_kart_frame020"; - -static const ALIGN_ASSET(2) char gKartToad021[] = "__OTR__toad_kart/toad_kart_frame021"; - -static const ALIGN_ASSET(2) char gKartToad022[] = "__OTR__toad_kart/toad_kart_frame022"; - -static const ALIGN_ASSET(2) char gKartToad023[] = "__OTR__toad_kart/toad_kart_frame023"; - -static const ALIGN_ASSET(2) char gKartToad024[] = "__OTR__toad_kart/toad_kart_frame024"; - -static const ALIGN_ASSET(2) char gKartToad025[] = "__OTR__toad_kart/toad_kart_frame025"; - -static const ALIGN_ASSET(2) char gKartToad026[] = "__OTR__toad_kart/toad_kart_frame026"; - -static const ALIGN_ASSET(2) char gKartToad027[] = "__OTR__toad_kart/toad_kart_frame027"; - -static const ALIGN_ASSET(2) char gKartToad028[] = "__OTR__toad_kart/toad_kart_frame028"; - -static const ALIGN_ASSET(2) char gKartToad029[] = "__OTR__toad_kart/toad_kart_frame029"; - -static const ALIGN_ASSET(2) char gKartToad030[] = "__OTR__toad_kart/toad_kart_frame030"; - -static const ALIGN_ASSET(2) char gKartToad031[] = "__OTR__toad_kart/toad_kart_frame031"; - -static const ALIGN_ASSET(2) char gKartToad032[] = "__OTR__toad_kart/toad_kart_frame032"; - -static const ALIGN_ASSET(2) char gKartToad033[] = "__OTR__toad_kart/toad_kart_frame033"; - -static const ALIGN_ASSET(2) char gKartToad034[] = "__OTR__toad_kart/toad_kart_frame034"; - -static const ALIGN_ASSET(2) char gKartToad035[] = "__OTR__toad_kart/toad_kart_frame035"; - -static const ALIGN_ASSET(2) char gKartToad036[] = "__OTR__toad_kart/toad_kart_frame036"; - -static const ALIGN_ASSET(2) char gKartToad037[] = "__OTR__toad_kart/toad_kart_frame037"; - -static const ALIGN_ASSET(2) char gKartToad038[] = "__OTR__toad_kart/toad_kart_frame038"; - -static const ALIGN_ASSET(2) char gKartToad039[] = "__OTR__toad_kart/toad_kart_frame039"; - -static const ALIGN_ASSET(2) char gKartToad040[] = "__OTR__toad_kart/toad_kart_frame040"; - -static const ALIGN_ASSET(2) char gKartToad041[] = "__OTR__toad_kart/toad_kart_frame041"; - -static const ALIGN_ASSET(2) char gKartToad042[] = "__OTR__toad_kart/toad_kart_frame042"; - -static const ALIGN_ASSET(2) char gKartToad043[] = "__OTR__toad_kart/toad_kart_frame043"; - -static const ALIGN_ASSET(2) char gKartToad044[] = "__OTR__toad_kart/toad_kart_frame044"; - -static const ALIGN_ASSET(2) char gKartToad045[] = "__OTR__toad_kart/toad_kart_frame045"; - -static const ALIGN_ASSET(2) char gKartToad046[] = "__OTR__toad_kart/toad_kart_frame046"; - -static const ALIGN_ASSET(2) char gKartToad047[] = "__OTR__toad_kart/toad_kart_frame047"; - -static const ALIGN_ASSET(2) char gKartToad048[] = "__OTR__toad_kart/toad_kart_frame048"; - -static const ALIGN_ASSET(2) char gKartToad049[] = "__OTR__toad_kart/toad_kart_frame049"; - -static const ALIGN_ASSET(2) char gKartToad050[] = "__OTR__toad_kart/toad_kart_frame050"; - -static const ALIGN_ASSET(2) char gKartToad051[] = "__OTR__toad_kart/toad_kart_frame051"; - -static const ALIGN_ASSET(2) char gKartToad052[] = "__OTR__toad_kart/toad_kart_frame052"; - -static const ALIGN_ASSET(2) char gKartToad053[] = "__OTR__toad_kart/toad_kart_frame053"; - -static const ALIGN_ASSET(2) char gKartToad054[] = "__OTR__toad_kart/toad_kart_frame054"; - -static const ALIGN_ASSET(2) char gKartToad055[] = "__OTR__toad_kart/toad_kart_frame055"; - -static const ALIGN_ASSET(2) char gKartToad056[] = "__OTR__toad_kart/toad_kart_frame056"; - -static const ALIGN_ASSET(2) char gKartToad057[] = "__OTR__toad_kart/toad_kart_frame057"; - -static const ALIGN_ASSET(2) char gKartToad058[] = "__OTR__toad_kart/toad_kart_frame058"; - -static const ALIGN_ASSET(2) char gKartToad059[] = "__OTR__toad_kart/toad_kart_frame059"; - -static const ALIGN_ASSET(2) char gKartToad060[] = "__OTR__toad_kart/toad_kart_frame060"; - -static const ALIGN_ASSET(2) char gKartToad061[] = "__OTR__toad_kart/toad_kart_frame061"; - -static const ALIGN_ASSET(2) char gKartToad062[] = "__OTR__toad_kart/toad_kart_frame062"; - -static const ALIGN_ASSET(2) char gKartToad063[] = "__OTR__toad_kart/toad_kart_frame063"; - -static const ALIGN_ASSET(2) char gKartToad064[] = "__OTR__toad_kart/toad_kart_frame064"; - -static const ALIGN_ASSET(2) char gKartToad065[] = "__OTR__toad_kart/toad_kart_frame065"; - -static const ALIGN_ASSET(2) char gKartToad066[] = "__OTR__toad_kart/toad_kart_frame066"; - -static const ALIGN_ASSET(2) char gKartToad067[] = "__OTR__toad_kart/toad_kart_frame067"; - -static const ALIGN_ASSET(2) char gKartToad068[] = "__OTR__toad_kart/toad_kart_frame068"; - -static const ALIGN_ASSET(2) char gKartToad069[] = "__OTR__toad_kart/toad_kart_frame069"; - -static const ALIGN_ASSET(2) char gKartToad070[] = "__OTR__toad_kart/toad_kart_frame070"; - -static const ALIGN_ASSET(2) char gKartToad071[] = "__OTR__toad_kart/toad_kart_frame071"; - -static const ALIGN_ASSET(2) char gKartToad072[] = "__OTR__toad_kart/toad_kart_frame072"; - -static const ALIGN_ASSET(2) char gKartToad073[] = "__OTR__toad_kart/toad_kart_frame073"; - -static const ALIGN_ASSET(2) char gKartToad074[] = "__OTR__toad_kart/toad_kart_frame074"; - -static const ALIGN_ASSET(2) char gKartToad075[] = "__OTR__toad_kart/toad_kart_frame075"; - -static const ALIGN_ASSET(2) char gKartToad076[] = "__OTR__toad_kart/toad_kart_frame076"; - -static const ALIGN_ASSET(2) char gKartToad077[] = "__OTR__toad_kart/toad_kart_frame077"; - -static const ALIGN_ASSET(2) char gKartToad078[] = "__OTR__toad_kart/toad_kart_frame078"; - -static const ALIGN_ASSET(2) char gKartToad079[] = "__OTR__toad_kart/toad_kart_frame079"; - -static const ALIGN_ASSET(2) char gKartToad080[] = "__OTR__toad_kart/toad_kart_frame080"; - -static const ALIGN_ASSET(2) char gKartToad081[] = "__OTR__toad_kart/toad_kart_frame081"; - -static const ALIGN_ASSET(2) char gKartToad082[] = "__OTR__toad_kart/toad_kart_frame082"; - -static const ALIGN_ASSET(2) char gKartToad083[] = "__OTR__toad_kart/toad_kart_frame083"; - -static const ALIGN_ASSET(2) char gKartToad084[] = "__OTR__toad_kart/toad_kart_frame084"; - -static const ALIGN_ASSET(2) char gKartToad085[] = "__OTR__toad_kart/toad_kart_frame085"; - -static const ALIGN_ASSET(2) char gKartToad086[] = "__OTR__toad_kart/toad_kart_frame086"; - -static const ALIGN_ASSET(2) char gKartToad087[] = "__OTR__toad_kart/toad_kart_frame087"; - -static const ALIGN_ASSET(2) char gKartToad088[] = "__OTR__toad_kart/toad_kart_frame088"; - -static const ALIGN_ASSET(2) char gKartToad089[] = "__OTR__toad_kart/toad_kart_frame089"; - -static const ALIGN_ASSET(2) char gKartToad090[] = "__OTR__toad_kart/toad_kart_frame090"; - -static const ALIGN_ASSET(2) char gKartToad091[] = "__OTR__toad_kart/toad_kart_frame091"; - -static const ALIGN_ASSET(2) char gKartToad092[] = "__OTR__toad_kart/toad_kart_frame092"; - -static const ALIGN_ASSET(2) char gKartToad093[] = "__OTR__toad_kart/toad_kart_frame093"; - -static const ALIGN_ASSET(2) char gKartToad094[] = "__OTR__toad_kart/toad_kart_frame094"; - -static const ALIGN_ASSET(2) char gKartToad095[] = "__OTR__toad_kart/toad_kart_frame095"; - -static const ALIGN_ASSET(2) char gKartToad096[] = "__OTR__toad_kart/toad_kart_frame096"; - -static const ALIGN_ASSET(2) char gKartToad097[] = "__OTR__toad_kart/toad_kart_frame097"; - -static const ALIGN_ASSET(2) char gKartToad098[] = "__OTR__toad_kart/toad_kart_frame098"; - -static const ALIGN_ASSET(2) char gKartToad099[] = "__OTR__toad_kart/toad_kart_frame099"; - -static const ALIGN_ASSET(2) char gKartToad100[] = "__OTR__toad_kart/toad_kart_frame100"; - -static const ALIGN_ASSET(2) char gKartToad101[] = "__OTR__toad_kart/toad_kart_frame101"; - -static const ALIGN_ASSET(2) char gKartToad102[] = "__OTR__toad_kart/toad_kart_frame102"; - -static const ALIGN_ASSET(2) char gKartToad103[] = "__OTR__toad_kart/toad_kart_frame103"; - -static const ALIGN_ASSET(2) char gKartToad104[] = "__OTR__toad_kart/toad_kart_frame104"; - -static const ALIGN_ASSET(2) char gKartToad105[] = "__OTR__toad_kart/toad_kart_frame105"; - -static const ALIGN_ASSET(2) char gKartToad106[] = "__OTR__toad_kart/toad_kart_frame106"; - -static const ALIGN_ASSET(2) char gKartToad107[] = "__OTR__toad_kart/toad_kart_frame107"; - -static const ALIGN_ASSET(2) char gKartToad108[] = "__OTR__toad_kart/toad_kart_frame108"; - -static const ALIGN_ASSET(2) char gKartToad109[] = "__OTR__toad_kart/toad_kart_frame109"; - -static const ALIGN_ASSET(2) char gKartToad110[] = "__OTR__toad_kart/toad_kart_frame110"; - -static const ALIGN_ASSET(2) char gKartToad111[] = "__OTR__toad_kart/toad_kart_frame111"; - -static const ALIGN_ASSET(2) char gKartToad112[] = "__OTR__toad_kart/toad_kart_frame112"; - -static const ALIGN_ASSET(2) char gKartToad113[] = "__OTR__toad_kart/toad_kart_frame113"; - -static const ALIGN_ASSET(2) char gKartToad114[] = "__OTR__toad_kart/toad_kart_frame114"; - -static const ALIGN_ASSET(2) char gKartToad115[] = "__OTR__toad_kart/toad_kart_frame115"; - -static const ALIGN_ASSET(2) char gKartToad116[] = "__OTR__toad_kart/toad_kart_frame116"; - -static const ALIGN_ASSET(2) char gKartToad117[] = "__OTR__toad_kart/toad_kart_frame117"; - -static const ALIGN_ASSET(2) char gKartToad118[] = "__OTR__toad_kart/toad_kart_frame118"; - -static const ALIGN_ASSET(2) char gKartToad119[] = "__OTR__toad_kart/toad_kart_frame119"; - -static const ALIGN_ASSET(2) char gKartToad120[] = "__OTR__toad_kart/toad_kart_frame120"; - -static const ALIGN_ASSET(2) char gKartToad121[] = "__OTR__toad_kart/toad_kart_frame121"; - -static const ALIGN_ASSET(2) char gKartToad122[] = "__OTR__toad_kart/toad_kart_frame122"; - -static const ALIGN_ASSET(2) char gKartToad123[] = "__OTR__toad_kart/toad_kart_frame123"; - -static const ALIGN_ASSET(2) char gKartToad124[] = "__OTR__toad_kart/toad_kart_frame124"; - -static const ALIGN_ASSET(2) char gKartToad125[] = "__OTR__toad_kart/toad_kart_frame125"; - -static const ALIGN_ASSET(2) char gKartToad126[] = "__OTR__toad_kart/toad_kart_frame126"; - -static const ALIGN_ASSET(2) char gKartToad127[] = "__OTR__toad_kart/toad_kart_frame127"; - -static const ALIGN_ASSET(2) char gKartToad128[] = "__OTR__toad_kart/toad_kart_frame128"; - -static const ALIGN_ASSET(2) char gKartToad129[] = "__OTR__toad_kart/toad_kart_frame129"; - -static const ALIGN_ASSET(2) char gKartToad130[] = "__OTR__toad_kart/toad_kart_frame130"; - -static const ALIGN_ASSET(2) char gKartToad131[] = "__OTR__toad_kart/toad_kart_frame131"; - -static const ALIGN_ASSET(2) char gKartToad132[] = "__OTR__toad_kart/toad_kart_frame132"; - -static const ALIGN_ASSET(2) char gKartToad133[] = "__OTR__toad_kart/toad_kart_frame133"; - -static const ALIGN_ASSET(2) char gKartToad134[] = "__OTR__toad_kart/toad_kart_frame134"; - -static const ALIGN_ASSET(2) char gKartToad135[] = "__OTR__toad_kart/toad_kart_frame135"; - -static const ALIGN_ASSET(2) char gKartToad136[] = "__OTR__toad_kart/toad_kart_frame136"; - -static const ALIGN_ASSET(2) char gKartToad137[] = "__OTR__toad_kart/toad_kart_frame137"; - -static const ALIGN_ASSET(2) char gKartToad138[] = "__OTR__toad_kart/toad_kart_frame138"; - -static const ALIGN_ASSET(2) char gKartToad139[] = "__OTR__toad_kart/toad_kart_frame139"; - -static const ALIGN_ASSET(2) char gKartToad140[] = "__OTR__toad_kart/toad_kart_frame140"; - -static const ALIGN_ASSET(2) char gKartToad141[] = "__OTR__toad_kart/toad_kart_frame141"; - -static const ALIGN_ASSET(2) char gKartToad142[] = "__OTR__toad_kart/toad_kart_frame142"; - -static const ALIGN_ASSET(2) char gKartToad143[] = "__OTR__toad_kart/toad_kart_frame143"; - -static const ALIGN_ASSET(2) char gKartToad144[] = "__OTR__toad_kart/toad_kart_frame144"; - -static const ALIGN_ASSET(2) char gKartToad145[] = "__OTR__toad_kart/toad_kart_frame145"; - -static const ALIGN_ASSET(2) char gKartToad146[] = "__OTR__toad_kart/toad_kart_frame146"; - -static const ALIGN_ASSET(2) char gKartToad147[] = "__OTR__toad_kart/toad_kart_frame147"; - -static const ALIGN_ASSET(2) char gKartToad148[] = "__OTR__toad_kart/toad_kart_frame148"; - -static const ALIGN_ASSET(2) char gKartToad149[] = "__OTR__toad_kart/toad_kart_frame149"; - -static const ALIGN_ASSET(2) char gKartToad150[] = "__OTR__toad_kart/toad_kart_frame150"; - -static const ALIGN_ASSET(2) char gKartToad151[] = "__OTR__toad_kart/toad_kart_frame151"; - -static const ALIGN_ASSET(2) char gKartToad152[] = "__OTR__toad_kart/toad_kart_frame152"; - -static const ALIGN_ASSET(2) char gKartToad153[] = "__OTR__toad_kart/toad_kart_frame153"; - -static const ALIGN_ASSET(2) char gKartToad154[] = "__OTR__toad_kart/toad_kart_frame154"; - -static const ALIGN_ASSET(2) char gKartToad155[] = "__OTR__toad_kart/toad_kart_frame155"; - -static const ALIGN_ASSET(2) char gKartToad156[] = "__OTR__toad_kart/toad_kart_frame156"; - -static const ALIGN_ASSET(2) char gKartToad157[] = "__OTR__toad_kart/toad_kart_frame157"; - -static const ALIGN_ASSET(2) char gKartToad158[] = "__OTR__toad_kart/toad_kart_frame158"; - -static const ALIGN_ASSET(2) char gKartToad159[] = "__OTR__toad_kart/toad_kart_frame159"; - -static const ALIGN_ASSET(2) char gKartToad160[] = "__OTR__toad_kart/toad_kart_frame160"; - -static const ALIGN_ASSET(2) char gKartToad161[] = "__OTR__toad_kart/toad_kart_frame161"; - -static const ALIGN_ASSET(2) char gKartToad162[] = "__OTR__toad_kart/toad_kart_frame162"; - -static const ALIGN_ASSET(2) char gKartToad163[] = "__OTR__toad_kart/toad_kart_frame163"; - -static const ALIGN_ASSET(2) char gKartToad164[] = "__OTR__toad_kart/toad_kart_frame164"; - -static const ALIGN_ASSET(2) char gKartToad165[] = "__OTR__toad_kart/toad_kart_frame165"; - -static const ALIGN_ASSET(2) char gKartToad166[] = "__OTR__toad_kart/toad_kart_frame166"; - -static const ALIGN_ASSET(2) char gKartToad167[] = "__OTR__toad_kart/toad_kart_frame167"; - -static const ALIGN_ASSET(2) char gKartToad168[] = "__OTR__toad_kart/toad_kart_frame168"; - -static const ALIGN_ASSET(2) char gKartToad169[] = "__OTR__toad_kart/toad_kart_frame169"; - -static const ALIGN_ASSET(2) char gKartToad170[] = "__OTR__toad_kart/toad_kart_frame170"; - -static const ALIGN_ASSET(2) char gKartToad171[] = "__OTR__toad_kart/toad_kart_frame171"; - -static const ALIGN_ASSET(2) char gKartToad172[] = "__OTR__toad_kart/toad_kart_frame172"; - -static const ALIGN_ASSET(2) char gKartToad173[] = "__OTR__toad_kart/toad_kart_frame173"; - -static const ALIGN_ASSET(2) char gKartToad174[] = "__OTR__toad_kart/toad_kart_frame174"; - -static const ALIGN_ASSET(2) char gKartToad175[] = "__OTR__toad_kart/toad_kart_frame175"; - -static const ALIGN_ASSET(2) char gKartToad176[] = "__OTR__toad_kart/toad_kart_frame176"; - -static const ALIGN_ASSET(2) char gKartToad177[] = "__OTR__toad_kart/toad_kart_frame177"; - -static const ALIGN_ASSET(2) char gKartToad178[] = "__OTR__toad_kart/toad_kart_frame178"; - -static const ALIGN_ASSET(2) char gKartToad179[] = "__OTR__toad_kart/toad_kart_frame179"; - -static const ALIGN_ASSET(2) char gKartToad180[] = "__OTR__toad_kart/toad_kart_frame180"; - -static const ALIGN_ASSET(2) char gKartToad181[] = "__OTR__toad_kart/toad_kart_frame181"; - -static const ALIGN_ASSET(2) char gKartToad182[] = "__OTR__toad_kart/toad_kart_frame182"; - -static const ALIGN_ASSET(2) char gKartToad183[] = "__OTR__toad_kart/toad_kart_frame183"; - -static const ALIGN_ASSET(2) char gKartToad184[] = "__OTR__toad_kart/toad_kart_frame184"; - -static const ALIGN_ASSET(2) char gKartToad185[] = "__OTR__toad_kart/toad_kart_frame185"; - -static const ALIGN_ASSET(2) char gKartToad186[] = "__OTR__toad_kart/toad_kart_frame186"; - -static const ALIGN_ASSET(2) char gKartToad187[] = "__OTR__toad_kart/toad_kart_frame187"; - -static const ALIGN_ASSET(2) char gKartToad188[] = "__OTR__toad_kart/toad_kart_frame188"; - -static const ALIGN_ASSET(2) char gKartToad189[] = "__OTR__toad_kart/toad_kart_frame189"; - -static const ALIGN_ASSET(2) char gKartToad190[] = "__OTR__toad_kart/toad_kart_frame190"; - -static const ALIGN_ASSET(2) char gKartToad191[] = "__OTR__toad_kart/toad_kart_frame191"; - -static const ALIGN_ASSET(2) char gKartToad192[] = "__OTR__toad_kart/toad_kart_frame192"; - -static const ALIGN_ASSET(2) char gKartToad193[] = "__OTR__toad_kart/toad_kart_frame193"; - -static const ALIGN_ASSET(2) char gKartToad194[] = "__OTR__toad_kart/toad_kart_frame194"; - -static const ALIGN_ASSET(2) char gKartToad195[] = "__OTR__toad_kart/toad_kart_frame195"; - -static const ALIGN_ASSET(2) char gKartToad196[] = "__OTR__toad_kart/toad_kart_frame196"; - -static const ALIGN_ASSET(2) char gKartToad197[] = "__OTR__toad_kart/toad_kart_frame197"; - -static const ALIGN_ASSET(2) char gKartToad198[] = "__OTR__toad_kart/toad_kart_frame198"; - -static const ALIGN_ASSET(2) char gKartToad199[] = "__OTR__toad_kart/toad_kart_frame199"; - -static const ALIGN_ASSET(2) char gKartToad200[] = "__OTR__toad_kart/toad_kart_frame200"; - -static const ALIGN_ASSET(2) char gKartToad201[] = "__OTR__toad_kart/toad_kart_frame201"; - -static const ALIGN_ASSET(2) char gKartToad202[] = "__OTR__toad_kart/toad_kart_frame202"; - -static const ALIGN_ASSET(2) char gKartToad203[] = "__OTR__toad_kart/toad_kart_frame203"; - -static const ALIGN_ASSET(2) char gKartToad204[] = "__OTR__toad_kart/toad_kart_frame204"; - -static const ALIGN_ASSET(2) char gKartToad205[] = "__OTR__toad_kart/toad_kart_frame205"; - -static const ALIGN_ASSET(2) char gKartToad206[] = "__OTR__toad_kart/toad_kart_frame206"; - -static const ALIGN_ASSET(2) char gKartToad207[] = "__OTR__toad_kart/toad_kart_frame207"; - -static const ALIGN_ASSET(2) char gKartToad208[] = "__OTR__toad_kart/toad_kart_frame208"; - -static const ALIGN_ASSET(2) char gKartToad209[] = "__OTR__toad_kart/toad_kart_frame209"; - -static const ALIGN_ASSET(2) char gKartToad210[] = "__OTR__toad_kart/toad_kart_frame210"; - -static const ALIGN_ASSET(2) char gKartToad211[] = "__OTR__toad_kart/toad_kart_frame211"; - -static const ALIGN_ASSET(2) char gKartToad212[] = "__OTR__toad_kart/toad_kart_frame212"; - -static const ALIGN_ASSET(2) char gKartToad213[] = "__OTR__toad_kart/toad_kart_frame213"; - -static const ALIGN_ASSET(2) char gKartToad214[] = "__OTR__toad_kart/toad_kart_frame214"; - -static const ALIGN_ASSET(2) char gKartToad215[] = "__OTR__toad_kart/toad_kart_frame215"; - -static const ALIGN_ASSET(2) char gKartToad216[] = "__OTR__toad_kart/toad_kart_frame216"; - -static const ALIGN_ASSET(2) char gKartToad217[] = "__OTR__toad_kart/toad_kart_frame217"; - -static const ALIGN_ASSET(2) char gKartToad218[] = "__OTR__toad_kart/toad_kart_frame218"; - -static const ALIGN_ASSET(2) char gKartToad219[] = "__OTR__toad_kart/toad_kart_frame219"; - -static const ALIGN_ASSET(2) char gKartToad220[] = "__OTR__toad_kart/toad_kart_frame220"; - -static const ALIGN_ASSET(2) char gKartToad221[] = "__OTR__toad_kart/toad_kart_frame221"; - -static const ALIGN_ASSET(2) char gKartToad222[] = "__OTR__toad_kart/toad_kart_frame222"; - -static const ALIGN_ASSET(2) char gKartToad223[] = "__OTR__toad_kart/toad_kart_frame223"; - -static const ALIGN_ASSET(2) char gKartToad224[] = "__OTR__toad_kart/toad_kart_frame224"; - -static const ALIGN_ASSET(2) char gKartToad225[] = "__OTR__toad_kart/toad_kart_frame225"; - -static const ALIGN_ASSET(2) char gKartToad226[] = "__OTR__toad_kart/toad_kart_frame226"; - -static const ALIGN_ASSET(2) char gKartToad227[] = "__OTR__toad_kart/toad_kart_frame227"; - -static const ALIGN_ASSET(2) char gKartToad228[] = "__OTR__toad_kart/toad_kart_frame228"; - -static const ALIGN_ASSET(2) char gKartToad229[] = "__OTR__toad_kart/toad_kart_frame229"; - -static const ALIGN_ASSET(2) char gKartToad230[] = "__OTR__toad_kart/toad_kart_frame230"; - -static const ALIGN_ASSET(2) char gKartToad231[] = "__OTR__toad_kart/toad_kart_frame231"; - -static const ALIGN_ASSET(2) char gKartToad232[] = "__OTR__toad_kart/toad_kart_frame232"; - -static const ALIGN_ASSET(2) char gKartToad233[] = "__OTR__toad_kart/toad_kart_frame233"; - -static const ALIGN_ASSET(2) char gKartToad234[] = "__OTR__toad_kart/toad_kart_frame234"; - -static const ALIGN_ASSET(2) char gKartToad235[] = "__OTR__toad_kart/toad_kart_frame235"; - -static const ALIGN_ASSET(2) char gKartToad236[] = "__OTR__toad_kart/toad_kart_frame236"; - -static const ALIGN_ASSET(2) char gKartToad237[] = "__OTR__toad_kart/toad_kart_frame237"; - -static const ALIGN_ASSET(2) char gKartToad238[] = "__OTR__toad_kart/toad_kart_frame238"; - -static const ALIGN_ASSET(2) char gKartToad239[] = "__OTR__toad_kart/toad_kart_frame239"; - -static const ALIGN_ASSET(2) char gKartToad240[] = "__OTR__toad_kart/toad_kart_frame240"; - -static const ALIGN_ASSET(2) char gKartToad241[] = "__OTR__toad_kart/toad_kart_frame241"; - -static const ALIGN_ASSET(2) char gKartToad242[] = "__OTR__toad_kart/toad_kart_frame242"; - -static const ALIGN_ASSET(2) char gKartToad243[] = "__OTR__toad_kart/toad_kart_frame243"; - -static const ALIGN_ASSET(2) char gKartToad244[] = "__OTR__toad_kart/toad_kart_frame244"; - -static const ALIGN_ASSET(2) char gKartToad245[] = "__OTR__toad_kart/toad_kart_frame245"; - -static const ALIGN_ASSET(2) char gKartToad246[] = "__OTR__toad_kart/toad_kart_frame246"; - -static const ALIGN_ASSET(2) char gKartToad247[] = "__OTR__toad_kart/toad_kart_frame247"; - -static const ALIGN_ASSET(2) char gKartToad248[] = "__OTR__toad_kart/toad_kart_frame248"; - -static const ALIGN_ASSET(2) char gKartToad249[] = "__OTR__toad_kart/toad_kart_frame249"; - -static const ALIGN_ASSET(2) char gKartToad250[] = "__OTR__toad_kart/toad_kart_frame250"; - -static const ALIGN_ASSET(2) char gKartToad251[] = "__OTR__toad_kart/toad_kart_frame251"; - -static const ALIGN_ASSET(2) char gKartToad252[] = "__OTR__toad_kart/toad_kart_frame252"; - -static const ALIGN_ASSET(2) char gKartToad253[] = "__OTR__toad_kart/toad_kart_frame253"; - -static const ALIGN_ASSET(2) char gKartToad254[] = "__OTR__toad_kart/toad_kart_frame254"; - -static const ALIGN_ASSET(2) char gKartToad255[] = "__OTR__toad_kart/toad_kart_frame255"; - -static const ALIGN_ASSET(2) char gKartToad256[] = "__OTR__toad_kart/toad_kart_frame256"; - -static const ALIGN_ASSET(2) char gKartToad257[] = "__OTR__toad_kart/toad_kart_frame257"; - -static const ALIGN_ASSET(2) char gKartToad258[] = "__OTR__toad_kart/toad_kart_frame258"; - -static const ALIGN_ASSET(2) char gKartToad259[] = "__OTR__toad_kart/toad_kart_frame259"; - -static const ALIGN_ASSET(2) char gKartToad260[] = "__OTR__toad_kart/toad_kart_frame260"; - -static const ALIGN_ASSET(2) char gKartToad261[] = "__OTR__toad_kart/toad_kart_frame261"; - -static const ALIGN_ASSET(2) char gKartToad262[] = "__OTR__toad_kart/toad_kart_frame262"; - -static const ALIGN_ASSET(2) char gKartToad263[] = "__OTR__toad_kart/toad_kart_frame263"; - -static const ALIGN_ASSET(2) char gKartToad264[] = "__OTR__toad_kart/toad_kart_frame264"; - -static const ALIGN_ASSET(2) char gKartToad265[] = "__OTR__toad_kart/toad_kart_frame265"; - -static const ALIGN_ASSET(2) char gKartToad266[] = "__OTR__toad_kart/toad_kart_frame266"; - -static const ALIGN_ASSET(2) char gKartToad267[] = "__OTR__toad_kart/toad_kart_frame267"; - -static const ALIGN_ASSET(2) char gKartToad268[] = "__OTR__toad_kart/toad_kart_frame268"; - -static const ALIGN_ASSET(2) char gKartToad269[] = "__OTR__toad_kart/toad_kart_frame269"; - -static const ALIGN_ASSET(2) char gKartToad270[] = "__OTR__toad_kart/toad_kart_frame270"; - -static const ALIGN_ASSET(2) char gKartToad271[] = "__OTR__toad_kart/toad_kart_frame271"; - -static const ALIGN_ASSET(2) char gKartToad272[] = "__OTR__toad_kart/toad_kart_frame272"; - -static const ALIGN_ASSET(2) char gKartToad273[] = "__OTR__toad_kart/toad_kart_frame273"; - -static const ALIGN_ASSET(2) char gKartToad274[] = "__OTR__toad_kart/toad_kart_frame274"; - -static const ALIGN_ASSET(2) char gKartToad275[] = "__OTR__toad_kart/toad_kart_frame275"; - -static const ALIGN_ASSET(2) char gKartToad276[] = "__OTR__toad_kart/toad_kart_frame276"; - -static const ALIGN_ASSET(2) char gKartToad277[] = "__OTR__toad_kart/toad_kart_frame277"; - -static const ALIGN_ASSET(2) char gKartToad278[] = "__OTR__toad_kart/toad_kart_frame278"; - -static const ALIGN_ASSET(2) char gKartToad279[] = "__OTR__toad_kart/toad_kart_frame279"; - -static const ALIGN_ASSET(2) char gKartToad280[] = "__OTR__toad_kart/toad_kart_frame280"; - -static const ALIGN_ASSET(2) char gKartToad281[] = "__OTR__toad_kart/toad_kart_frame281"; - -static const ALIGN_ASSET(2) char gKartToad282[] = "__OTR__toad_kart/toad_kart_frame282"; - -static const ALIGN_ASSET(2) char gKartToad283[] = "__OTR__toad_kart/toad_kart_frame283"; - -static const ALIGN_ASSET(2) char gKartToad284[] = "__OTR__toad_kart/toad_kart_frame284"; - -static const ALIGN_ASSET(2) char gKartToad285[] = "__OTR__toad_kart/toad_kart_frame285"; - -static const ALIGN_ASSET(2) char gKartToad286[] = "__OTR__toad_kart/toad_kart_frame286"; - -static const ALIGN_ASSET(2) char gKartToad287[] = "__OTR__toad_kart/toad_kart_frame287"; - -static const ALIGN_ASSET(2) char gKartToad288[] = "__OTR__toad_kart/toad_kart_frame288"; - -static const ALIGN_ASSET(2) char gKartToad289[] = "__OTR__toad_kart/toad_kart_frame289"; - -static const ALIGN_ASSET(2) char gKartToad290[] = "__OTR__toad_kart/toad_kart_frame290"; - -static const ALIGN_ASSET(2) char gKartToad291[] = "__OTR__toad_kart/toad_kart_frame291"; - -static const ALIGN_ASSET(2) char gKartToad292[] = "__OTR__toad_kart/toad_kart_frame292"; - -static const ALIGN_ASSET(2) char gKartToad293[] = "__OTR__toad_kart/toad_kart_frame293"; - -static const ALIGN_ASSET(2) char gKartToad294[] = "__OTR__toad_kart/toad_kart_frame294"; - -static const ALIGN_ASSET(2) char gKartToad295[] = "__OTR__toad_kart/toad_kart_frame295"; - -static const ALIGN_ASSET(2) char gKartToad296[] = "__OTR__toad_kart/toad_kart_frame296"; - -static const ALIGN_ASSET(2) char gKartToad297[] = "__OTR__toad_kart/toad_kart_frame297"; - -static const ALIGN_ASSET(2) char gKartToad298[] = "__OTR__toad_kart/toad_kart_frame298"; - -static const ALIGN_ASSET(2) char gKartToad299[] = "__OTR__toad_kart/toad_kart_frame299"; - -static const ALIGN_ASSET(2) char gKartToad300[] = "__OTR__toad_kart/toad_kart_frame300"; - -static const ALIGN_ASSET(2) char gKartToad301[] = "__OTR__toad_kart/toad_kart_frame301"; - -static const ALIGN_ASSET(2) char gKartToad302[] = "__OTR__toad_kart/toad_kart_frame302"; - -static const ALIGN_ASSET(2) char gKartToad303[] = "__OTR__toad_kart/toad_kart_frame303"; - -static const ALIGN_ASSET(2) char gKartToad304[] = "__OTR__toad_kart/toad_kart_frame304"; - -static const ALIGN_ASSET(2) char gKartToad305[] = "__OTR__toad_kart/toad_kart_frame305"; - -static const ALIGN_ASSET(2) char gKartToad306[] = "__OTR__toad_kart/toad_kart_frame306"; - -static const ALIGN_ASSET(2) char gKartToad307[] = "__OTR__toad_kart/toad_kart_frame307"; - -static const ALIGN_ASSET(2) char gKartToad308[] = "__OTR__toad_kart/toad_kart_frame308"; - -static const ALIGN_ASSET(2) char gKartToad309[] = "__OTR__toad_kart/toad_kart_frame309"; - -static const ALIGN_ASSET(2) char gKartToad310[] = "__OTR__toad_kart/toad_kart_frame310"; - -static const ALIGN_ASSET(2) char gKartToad311[] = "__OTR__toad_kart/toad_kart_frame311"; - -static const ALIGN_ASSET(2) char gKartToad312[] = "__OTR__toad_kart/toad_kart_frame312"; - -static const ALIGN_ASSET(2) char gKartToad313[] = "__OTR__toad_kart/toad_kart_frame313"; - -static const ALIGN_ASSET(2) char gKartToad314[] = "__OTR__toad_kart/toad_kart_frame314"; - -static const ALIGN_ASSET(2) char gKartToad315[] = "__OTR__toad_kart/toad_kart_frame315"; - -static const ALIGN_ASSET(2) char gKartToad316[] = "__OTR__toad_kart/toad_kart_frame316"; - -static const ALIGN_ASSET(2) char gKartToad317[] = "__OTR__toad_kart/toad_kart_frame317"; - -static const ALIGN_ASSET(2) char gKartToad318[] = "__OTR__toad_kart/toad_kart_frame318"; - -static const ALIGN_ASSET(2) char gKartToad319[] = "__OTR__toad_kart/toad_kart_frame319"; - -static const ALIGN_ASSET(2) char gKartToad320[] = "__OTR__toad_kart/toad_kart_frame320"; - -static const ALIGN_ASSET(2) char gKartToad000Wheel0[] = "__OTR__toad_kart/kart_000_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad000Wheel1[] = "__OTR__toad_kart/kart_000_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad000Wheel2[] = "__OTR__toad_kart/kart_000_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad000Wheel3[] = "__OTR__toad_kart/kart_000_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad001Wheel0[] = "__OTR__toad_kart/kart_001_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad001Wheel1[] = "__OTR__toad_kart/kart_001_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad001Wheel2[] = "__OTR__toad_kart/kart_001_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad001Wheel3[] = "__OTR__toad_kart/kart_001_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad002Wheel0[] = "__OTR__toad_kart/kart_002_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad002Wheel1[] = "__OTR__toad_kart/kart_002_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad002Wheel2[] = "__OTR__toad_kart/kart_002_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad002Wheel3[] = "__OTR__toad_kart/kart_002_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad003Wheel0[] = "__OTR__toad_kart/kart_003_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad003Wheel1[] = "__OTR__toad_kart/kart_003_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad003Wheel2[] = "__OTR__toad_kart/kart_003_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad003Wheel3[] = "__OTR__toad_kart/kart_003_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad004Wheel0[] = "__OTR__toad_kart/kart_004_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad004Wheel1[] = "__OTR__toad_kart/kart_004_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad004Wheel2[] = "__OTR__toad_kart/kart_004_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad004Wheel3[] = "__OTR__toad_kart/kart_004_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad005Wheel0[] = "__OTR__toad_kart/kart_005_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad005Wheel1[] = "__OTR__toad_kart/kart_005_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad005Wheel2[] = "__OTR__toad_kart/kart_005_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad005Wheel3[] = "__OTR__toad_kart/kart_005_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad006Wheel0[] = "__OTR__toad_kart/kart_006_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad006Wheel1[] = "__OTR__toad_kart/kart_006_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad006Wheel2[] = "__OTR__toad_kart/kart_006_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad006Wheel3[] = "__OTR__toad_kart/kart_006_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad007Wheel0[] = "__OTR__toad_kart/kart_007_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad007Wheel1[] = "__OTR__toad_kart/kart_007_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad007Wheel2[] = "__OTR__toad_kart/kart_007_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad007Wheel3[] = "__OTR__toad_kart/kart_007_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad008Wheel0[] = "__OTR__toad_kart/kart_008_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad008Wheel1[] = "__OTR__toad_kart/kart_008_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad008Wheel2[] = "__OTR__toad_kart/kart_008_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad008Wheel3[] = "__OTR__toad_kart/kart_008_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad009Wheel0[] = "__OTR__toad_kart/kart_009_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad009Wheel1[] = "__OTR__toad_kart/kart_009_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad009Wheel2[] = "__OTR__toad_kart/kart_009_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad009Wheel3[] = "__OTR__toad_kart/kart_009_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad010Wheel0[] = "__OTR__toad_kart/kart_010_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad010Wheel1[] = "__OTR__toad_kart/kart_010_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad010Wheel2[] = "__OTR__toad_kart/kart_010_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad010Wheel3[] = "__OTR__toad_kart/kart_010_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad011Wheel0[] = "__OTR__toad_kart/kart_011_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad011Wheel1[] = "__OTR__toad_kart/kart_011_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad011Wheel2[] = "__OTR__toad_kart/kart_011_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad011Wheel3[] = "__OTR__toad_kart/kart_011_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad012Wheel0[] = "__OTR__toad_kart/kart_012_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad012Wheel1[] = "__OTR__toad_kart/kart_012_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad012Wheel2[] = "__OTR__toad_kart/kart_012_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad012Wheel3[] = "__OTR__toad_kart/kart_012_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad013Wheel0[] = "__OTR__toad_kart/kart_013_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad013Wheel1[] = "__OTR__toad_kart/kart_013_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad013Wheel2[] = "__OTR__toad_kart/kart_013_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad013Wheel3[] = "__OTR__toad_kart/kart_013_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad014Wheel0[] = "__OTR__toad_kart/kart_014_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad014Wheel1[] = "__OTR__toad_kart/kart_014_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad014Wheel2[] = "__OTR__toad_kart/kart_014_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad014Wheel3[] = "__OTR__toad_kart/kart_014_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad015Wheel0[] = "__OTR__toad_kart/kart_015_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad015Wheel1[] = "__OTR__toad_kart/kart_015_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad015Wheel2[] = "__OTR__toad_kart/kart_015_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad015Wheel3[] = "__OTR__toad_kart/kart_015_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad016Wheel0[] = "__OTR__toad_kart/kart_016_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad016Wheel1[] = "__OTR__toad_kart/kart_016_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad016Wheel2[] = "__OTR__toad_kart/kart_016_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad016Wheel3[] = "__OTR__toad_kart/kart_016_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad017Wheel0[] = "__OTR__toad_kart/kart_017_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad017Wheel1[] = "__OTR__toad_kart/kart_017_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad017Wheel2[] = "__OTR__toad_kart/kart_017_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad017Wheel3[] = "__OTR__toad_kart/kart_017_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad018Wheel0[] = "__OTR__toad_kart/kart_018_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad018Wheel1[] = "__OTR__toad_kart/kart_018_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad018Wheel2[] = "__OTR__toad_kart/kart_018_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad018Wheel3[] = "__OTR__toad_kart/kart_018_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad019Wheel0[] = "__OTR__toad_kart/kart_019_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad019Wheel1[] = "__OTR__toad_kart/kart_019_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad019Wheel2[] = "__OTR__toad_kart/kart_019_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad019Wheel3[] = "__OTR__toad_kart/kart_019_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad020Wheel0[] = "__OTR__toad_kart/kart_020_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad020Wheel1[] = "__OTR__toad_kart/kart_020_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad020Wheel2[] = "__OTR__toad_kart/kart_020_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad020Wheel3[] = "__OTR__toad_kart/kart_020_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad021Wheel0[] = "__OTR__toad_kart/kart_021_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad021Wheel1[] = "__OTR__toad_kart/kart_021_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad021Wheel2[] = "__OTR__toad_kart/kart_021_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad021Wheel3[] = "__OTR__toad_kart/kart_021_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad022Wheel0[] = "__OTR__toad_kart/kart_022_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad022Wheel1[] = "__OTR__toad_kart/kart_022_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad022Wheel2[] = "__OTR__toad_kart/kart_022_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad022Wheel3[] = "__OTR__toad_kart/kart_022_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad023Wheel0[] = "__OTR__toad_kart/kart_023_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad023Wheel1[] = "__OTR__toad_kart/kart_023_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad023Wheel2[] = "__OTR__toad_kart/kart_023_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad023Wheel3[] = "__OTR__toad_kart/kart_023_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad024Wheel0[] = "__OTR__toad_kart/kart_024_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad024Wheel1[] = "__OTR__toad_kart/kart_024_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad024Wheel2[] = "__OTR__toad_kart/kart_024_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad024Wheel3[] = "__OTR__toad_kart/kart_024_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad025Wheel0[] = "__OTR__toad_kart/kart_025_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad025Wheel1[] = "__OTR__toad_kart/kart_025_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad025Wheel2[] = "__OTR__toad_kart/kart_025_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad025Wheel3[] = "__OTR__toad_kart/kart_025_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad026Wheel0[] = "__OTR__toad_kart/kart_026_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad026Wheel1[] = "__OTR__toad_kart/kart_026_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad026Wheel2[] = "__OTR__toad_kart/kart_026_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad026Wheel3[] = "__OTR__toad_kart/kart_026_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad027Wheel0[] = "__OTR__toad_kart/kart_027_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad027Wheel1[] = "__OTR__toad_kart/kart_027_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad027Wheel2[] = "__OTR__toad_kart/kart_027_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad027Wheel3[] = "__OTR__toad_kart/kart_027_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad028Wheel0[] = "__OTR__toad_kart/kart_028_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad028Wheel1[] = "__OTR__toad_kart/kart_028_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad028Wheel2[] = "__OTR__toad_kart/kart_028_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad028Wheel3[] = "__OTR__toad_kart/kart_028_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad029Wheel0[] = "__OTR__toad_kart/kart_029_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad029Wheel1[] = "__OTR__toad_kart/kart_029_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad029Wheel2[] = "__OTR__toad_kart/kart_029_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad029Wheel3[] = "__OTR__toad_kart/kart_029_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad030Wheel0[] = "__OTR__toad_kart/kart_030_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad030Wheel1[] = "__OTR__toad_kart/kart_030_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad030Wheel2[] = "__OTR__toad_kart/kart_030_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad030Wheel3[] = "__OTR__toad_kart/kart_030_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad031Wheel0[] = "__OTR__toad_kart/kart_031_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad031Wheel1[] = "__OTR__toad_kart/kart_031_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad031Wheel2[] = "__OTR__toad_kart/kart_031_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad031Wheel3[] = "__OTR__toad_kart/kart_031_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad032Wheel0[] = "__OTR__toad_kart/kart_032_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad032Wheel1[] = "__OTR__toad_kart/kart_032_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad032Wheel2[] = "__OTR__toad_kart/kart_032_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad032Wheel3[] = "__OTR__toad_kart/kart_032_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad033Wheel0[] = "__OTR__toad_kart/kart_033_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad033Wheel1[] = "__OTR__toad_kart/kart_033_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad033Wheel2[] = "__OTR__toad_kart/kart_033_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad033Wheel3[] = "__OTR__toad_kart/kart_033_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad034Wheel0[] = "__OTR__toad_kart/kart_034_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad034Wheel1[] = "__OTR__toad_kart/kart_034_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad034Wheel2[] = "__OTR__toad_kart/kart_034_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad034Wheel3[] = "__OTR__toad_kart/kart_034_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad035Wheel0[] = "__OTR__toad_kart/kart_035_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad035Wheel1[] = "__OTR__toad_kart/kart_035_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad035Wheel2[] = "__OTR__toad_kart/kart_035_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad035Wheel3[] = "__OTR__toad_kart/kart_035_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad036Wheel0[] = "__OTR__toad_kart/kart_036_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad036Wheel1[] = "__OTR__toad_kart/kart_036_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad036Wheel2[] = "__OTR__toad_kart/kart_036_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad036Wheel3[] = "__OTR__toad_kart/kart_036_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad037Wheel0[] = "__OTR__toad_kart/kart_037_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad037Wheel1[] = "__OTR__toad_kart/kart_037_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad037Wheel2[] = "__OTR__toad_kart/kart_037_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad037Wheel3[] = "__OTR__toad_kart/kart_037_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad038Wheel0[] = "__OTR__toad_kart/kart_038_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad038Wheel1[] = "__OTR__toad_kart/kart_038_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad038Wheel2[] = "__OTR__toad_kart/kart_038_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad038Wheel3[] = "__OTR__toad_kart/kart_038_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad039Wheel0[] = "__OTR__toad_kart/kart_039_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad039Wheel1[] = "__OTR__toad_kart/kart_039_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad039Wheel2[] = "__OTR__toad_kart/kart_039_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad039Wheel3[] = "__OTR__toad_kart/kart_039_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad040Wheel0[] = "__OTR__toad_kart/kart_040_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad040Wheel1[] = "__OTR__toad_kart/kart_040_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad040Wheel2[] = "__OTR__toad_kart/kart_040_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad040Wheel3[] = "__OTR__toad_kart/kart_040_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad041Wheel0[] = "__OTR__toad_kart/kart_041_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad041Wheel1[] = "__OTR__toad_kart/kart_041_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad041Wheel2[] = "__OTR__toad_kart/kart_041_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad041Wheel3[] = "__OTR__toad_kart/kart_041_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad042Wheel0[] = "__OTR__toad_kart/kart_042_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad042Wheel1[] = "__OTR__toad_kart/kart_042_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad042Wheel2[] = "__OTR__toad_kart/kart_042_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad042Wheel3[] = "__OTR__toad_kart/kart_042_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad043Wheel0[] = "__OTR__toad_kart/kart_043_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad043Wheel1[] = "__OTR__toad_kart/kart_043_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad043Wheel2[] = "__OTR__toad_kart/kart_043_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad043Wheel3[] = "__OTR__toad_kart/kart_043_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad044Wheel0[] = "__OTR__toad_kart/kart_044_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad044Wheel1[] = "__OTR__toad_kart/kart_044_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad044Wheel2[] = "__OTR__toad_kart/kart_044_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad044Wheel3[] = "__OTR__toad_kart/kart_044_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad045Wheel0[] = "__OTR__toad_kart/kart_045_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad045Wheel1[] = "__OTR__toad_kart/kart_045_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad045Wheel2[] = "__OTR__toad_kart/kart_045_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad045Wheel3[] = "__OTR__toad_kart/kart_045_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad046Wheel0[] = "__OTR__toad_kart/kart_046_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad046Wheel1[] = "__OTR__toad_kart/kart_046_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad046Wheel2[] = "__OTR__toad_kart/kart_046_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad046Wheel3[] = "__OTR__toad_kart/kart_046_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad047Wheel0[] = "__OTR__toad_kart/kart_047_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad047Wheel1[] = "__OTR__toad_kart/kart_047_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad047Wheel2[] = "__OTR__toad_kart/kart_047_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad047Wheel3[] = "__OTR__toad_kart/kart_047_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad048Wheel0[] = "__OTR__toad_kart/kart_048_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad048Wheel1[] = "__OTR__toad_kart/kart_048_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad048Wheel2[] = "__OTR__toad_kart/kart_048_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad048Wheel3[] = "__OTR__toad_kart/kart_048_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad049Wheel0[] = "__OTR__toad_kart/kart_049_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad049Wheel1[] = "__OTR__toad_kart/kart_049_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad049Wheel2[] = "__OTR__toad_kart/kart_049_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad049Wheel3[] = "__OTR__toad_kart/kart_049_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad050Wheel0[] = "__OTR__toad_kart/kart_050_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad050Wheel1[] = "__OTR__toad_kart/kart_050_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad050Wheel2[] = "__OTR__toad_kart/kart_050_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad050Wheel3[] = "__OTR__toad_kart/kart_050_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad051Wheel0[] = "__OTR__toad_kart/kart_051_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad051Wheel1[] = "__OTR__toad_kart/kart_051_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad051Wheel2[] = "__OTR__toad_kart/kart_051_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad051Wheel3[] = "__OTR__toad_kart/kart_051_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad052Wheel0[] = "__OTR__toad_kart/kart_052_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad052Wheel1[] = "__OTR__toad_kart/kart_052_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad052Wheel2[] = "__OTR__toad_kart/kart_052_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad052Wheel3[] = "__OTR__toad_kart/kart_052_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad053Wheel0[] = "__OTR__toad_kart/kart_053_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad053Wheel1[] = "__OTR__toad_kart/kart_053_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad053Wheel2[] = "__OTR__toad_kart/kart_053_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad053Wheel3[] = "__OTR__toad_kart/kart_053_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad054Wheel0[] = "__OTR__toad_kart/kart_054_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad054Wheel1[] = "__OTR__toad_kart/kart_054_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad054Wheel2[] = "__OTR__toad_kart/kart_054_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad054Wheel3[] = "__OTR__toad_kart/kart_054_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad055Wheel0[] = "__OTR__toad_kart/kart_055_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad055Wheel1[] = "__OTR__toad_kart/kart_055_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad055Wheel2[] = "__OTR__toad_kart/kart_055_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad055Wheel3[] = "__OTR__toad_kart/kart_055_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad056Wheel0[] = "__OTR__toad_kart/kart_056_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad056Wheel1[] = "__OTR__toad_kart/kart_056_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad056Wheel2[] = "__OTR__toad_kart/kart_056_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad056Wheel3[] = "__OTR__toad_kart/kart_056_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad057Wheel0[] = "__OTR__toad_kart/kart_057_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad057Wheel1[] = "__OTR__toad_kart/kart_057_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad057Wheel2[] = "__OTR__toad_kart/kart_057_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad057Wheel3[] = "__OTR__toad_kart/kart_057_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad058Wheel0[] = "__OTR__toad_kart/kart_058_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad058Wheel1[] = "__OTR__toad_kart/kart_058_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad058Wheel2[] = "__OTR__toad_kart/kart_058_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad058Wheel3[] = "__OTR__toad_kart/kart_058_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad059Wheel0[] = "__OTR__toad_kart/kart_059_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad059Wheel1[] = "__OTR__toad_kart/kart_059_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad059Wheel2[] = "__OTR__toad_kart/kart_059_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad059Wheel3[] = "__OTR__toad_kart/kart_059_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad060Wheel0[] = "__OTR__toad_kart/kart_060_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad060Wheel1[] = "__OTR__toad_kart/kart_060_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad060Wheel2[] = "__OTR__toad_kart/kart_060_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad060Wheel3[] = "__OTR__toad_kart/kart_060_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad061Wheel0[] = "__OTR__toad_kart/kart_061_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad061Wheel1[] = "__OTR__toad_kart/kart_061_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad061Wheel2[] = "__OTR__toad_kart/kart_061_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad061Wheel3[] = "__OTR__toad_kart/kart_061_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad062Wheel0[] = "__OTR__toad_kart/kart_062_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad062Wheel1[] = "__OTR__toad_kart/kart_062_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad062Wheel2[] = "__OTR__toad_kart/kart_062_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad062Wheel3[] = "__OTR__toad_kart/kart_062_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad063Wheel0[] = "__OTR__toad_kart/kart_063_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad063Wheel1[] = "__OTR__toad_kart/kart_063_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad063Wheel2[] = "__OTR__toad_kart/kart_063_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad063Wheel3[] = "__OTR__toad_kart/kart_063_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad064Wheel0[] = "__OTR__toad_kart/kart_064_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad064Wheel1[] = "__OTR__toad_kart/kart_064_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad064Wheel2[] = "__OTR__toad_kart/kart_064_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad064Wheel3[] = "__OTR__toad_kart/kart_064_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad065Wheel0[] = "__OTR__toad_kart/kart_065_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad065Wheel1[] = "__OTR__toad_kart/kart_065_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad065Wheel2[] = "__OTR__toad_kart/kart_065_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad065Wheel3[] = "__OTR__toad_kart/kart_065_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad066Wheel0[] = "__OTR__toad_kart/kart_066_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad066Wheel1[] = "__OTR__toad_kart/kart_066_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad066Wheel2[] = "__OTR__toad_kart/kart_066_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad066Wheel3[] = "__OTR__toad_kart/kart_066_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad067Wheel0[] = "__OTR__toad_kart/kart_067_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad067Wheel1[] = "__OTR__toad_kart/kart_067_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad067Wheel2[] = "__OTR__toad_kart/kart_067_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad067Wheel3[] = "__OTR__toad_kart/kart_067_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad068Wheel0[] = "__OTR__toad_kart/kart_068_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad068Wheel1[] = "__OTR__toad_kart/kart_068_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad068Wheel2[] = "__OTR__toad_kart/kart_068_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad068Wheel3[] = "__OTR__toad_kart/kart_068_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad069Wheel0[] = "__OTR__toad_kart/kart_069_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad069Wheel1[] = "__OTR__toad_kart/kart_069_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad069Wheel2[] = "__OTR__toad_kart/kart_069_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad069Wheel3[] = "__OTR__toad_kart/kart_069_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad070Wheel0[] = "__OTR__toad_kart/kart_070_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad070Wheel1[] = "__OTR__toad_kart/kart_070_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad070Wheel2[] = "__OTR__toad_kart/kart_070_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad070Wheel3[] = "__OTR__toad_kart/kart_070_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad071Wheel0[] = "__OTR__toad_kart/kart_071_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad071Wheel1[] = "__OTR__toad_kart/kart_071_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad071Wheel2[] = "__OTR__toad_kart/kart_071_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad071Wheel3[] = "__OTR__toad_kart/kart_071_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad072Wheel0[] = "__OTR__toad_kart/kart_072_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad072Wheel1[] = "__OTR__toad_kart/kart_072_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad072Wheel2[] = "__OTR__toad_kart/kart_072_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad072Wheel3[] = "__OTR__toad_kart/kart_072_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad073Wheel0[] = "__OTR__toad_kart/kart_073_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad073Wheel1[] = "__OTR__toad_kart/kart_073_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad073Wheel2[] = "__OTR__toad_kart/kart_073_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad073Wheel3[] = "__OTR__toad_kart/kart_073_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad074Wheel0[] = "__OTR__toad_kart/kart_074_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad074Wheel1[] = "__OTR__toad_kart/kart_074_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad074Wheel2[] = "__OTR__toad_kart/kart_074_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad074Wheel3[] = "__OTR__toad_kart/kart_074_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad075Wheel0[] = "__OTR__toad_kart/kart_075_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad075Wheel1[] = "__OTR__toad_kart/kart_075_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad075Wheel2[] = "__OTR__toad_kart/kart_075_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad075Wheel3[] = "__OTR__toad_kart/kart_075_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad076Wheel0[] = "__OTR__toad_kart/kart_076_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad076Wheel1[] = "__OTR__toad_kart/kart_076_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad076Wheel2[] = "__OTR__toad_kart/kart_076_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad076Wheel3[] = "__OTR__toad_kart/kart_076_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad077Wheel0[] = "__OTR__toad_kart/kart_077_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad077Wheel1[] = "__OTR__toad_kart/kart_077_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad077Wheel2[] = "__OTR__toad_kart/kart_077_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad077Wheel3[] = "__OTR__toad_kart/kart_077_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad078Wheel0[] = "__OTR__toad_kart/kart_078_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad078Wheel1[] = "__OTR__toad_kart/kart_078_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad078Wheel2[] = "__OTR__toad_kart/kart_078_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad078Wheel3[] = "__OTR__toad_kart/kart_078_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad079Wheel0[] = "__OTR__toad_kart/kart_079_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad079Wheel1[] = "__OTR__toad_kart/kart_079_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad079Wheel2[] = "__OTR__toad_kart/kart_079_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad079Wheel3[] = "__OTR__toad_kart/kart_079_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad080Wheel0[] = "__OTR__toad_kart/kart_080_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad080Wheel1[] = "__OTR__toad_kart/kart_080_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad080Wheel2[] = "__OTR__toad_kart/kart_080_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad080Wheel3[] = "__OTR__toad_kart/kart_080_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad081Wheel0[] = "__OTR__toad_kart/kart_081_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad081Wheel1[] = "__OTR__toad_kart/kart_081_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad081Wheel2[] = "__OTR__toad_kart/kart_081_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad081Wheel3[] = "__OTR__toad_kart/kart_081_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad082Wheel0[] = "__OTR__toad_kart/kart_082_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad082Wheel1[] = "__OTR__toad_kart/kart_082_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad082Wheel2[] = "__OTR__toad_kart/kart_082_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad082Wheel3[] = "__OTR__toad_kart/kart_082_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad083Wheel0[] = "__OTR__toad_kart/kart_083_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad083Wheel1[] = "__OTR__toad_kart/kart_083_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad083Wheel2[] = "__OTR__toad_kart/kart_083_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad083Wheel3[] = "__OTR__toad_kart/kart_083_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad084Wheel0[] = "__OTR__toad_kart/kart_084_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad084Wheel1[] = "__OTR__toad_kart/kart_084_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad084Wheel2[] = "__OTR__toad_kart/kart_084_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad084Wheel3[] = "__OTR__toad_kart/kart_084_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad085Wheel0[] = "__OTR__toad_kart/kart_085_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad085Wheel1[] = "__OTR__toad_kart/kart_085_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad085Wheel2[] = "__OTR__toad_kart/kart_085_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad085Wheel3[] = "__OTR__toad_kart/kart_085_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad086Wheel0[] = "__OTR__toad_kart/kart_086_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad086Wheel1[] = "__OTR__toad_kart/kart_086_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad086Wheel2[] = "__OTR__toad_kart/kart_086_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad086Wheel3[] = "__OTR__toad_kart/kart_086_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad087Wheel0[] = "__OTR__toad_kart/kart_087_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad087Wheel1[] = "__OTR__toad_kart/kart_087_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad087Wheel2[] = "__OTR__toad_kart/kart_087_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad087Wheel3[] = "__OTR__toad_kart/kart_087_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad088Wheel0[] = "__OTR__toad_kart/kart_088_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad088Wheel1[] = "__OTR__toad_kart/kart_088_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad088Wheel2[] = "__OTR__toad_kart/kart_088_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad088Wheel3[] = "__OTR__toad_kart/kart_088_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad089Wheel0[] = "__OTR__toad_kart/kart_089_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad089Wheel1[] = "__OTR__toad_kart/kart_089_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad089Wheel2[] = "__OTR__toad_kart/kart_089_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad089Wheel3[] = "__OTR__toad_kart/kart_089_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad090Wheel0[] = "__OTR__toad_kart/kart_090_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad090Wheel1[] = "__OTR__toad_kart/kart_090_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad090Wheel2[] = "__OTR__toad_kart/kart_090_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad090Wheel3[] = "__OTR__toad_kart/kart_090_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad091Wheel0[] = "__OTR__toad_kart/kart_091_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad091Wheel1[] = "__OTR__toad_kart/kart_091_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad091Wheel2[] = "__OTR__toad_kart/kart_091_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad091Wheel3[] = "__OTR__toad_kart/kart_091_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad092Wheel0[] = "__OTR__toad_kart/kart_092_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad092Wheel1[] = "__OTR__toad_kart/kart_092_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad092Wheel2[] = "__OTR__toad_kart/kart_092_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad092Wheel3[] = "__OTR__toad_kart/kart_092_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad093Wheel0[] = "__OTR__toad_kart/kart_093_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad093Wheel1[] = "__OTR__toad_kart/kart_093_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad093Wheel2[] = "__OTR__toad_kart/kart_093_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad093Wheel3[] = "__OTR__toad_kart/kart_093_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad094Wheel0[] = "__OTR__toad_kart/kart_094_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad094Wheel1[] = "__OTR__toad_kart/kart_094_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad094Wheel2[] = "__OTR__toad_kart/kart_094_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad094Wheel3[] = "__OTR__toad_kart/kart_094_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad095Wheel0[] = "__OTR__toad_kart/kart_095_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad095Wheel1[] = "__OTR__toad_kart/kart_095_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad095Wheel2[] = "__OTR__toad_kart/kart_095_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad095Wheel3[] = "__OTR__toad_kart/kart_095_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad096Wheel0[] = "__OTR__toad_kart/kart_096_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad096Wheel1[] = "__OTR__toad_kart/kart_096_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad096Wheel2[] = "__OTR__toad_kart/kart_096_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad096Wheel3[] = "__OTR__toad_kart/kart_096_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad097Wheel0[] = "__OTR__toad_kart/kart_097_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad097Wheel1[] = "__OTR__toad_kart/kart_097_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad097Wheel2[] = "__OTR__toad_kart/kart_097_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad097Wheel3[] = "__OTR__toad_kart/kart_097_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad098Wheel0[] = "__OTR__toad_kart/kart_098_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad098Wheel1[] = "__OTR__toad_kart/kart_098_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad098Wheel2[] = "__OTR__toad_kart/kart_098_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad098Wheel3[] = "__OTR__toad_kart/kart_098_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad099Wheel0[] = "__OTR__toad_kart/kart_099_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad099Wheel1[] = "__OTR__toad_kart/kart_099_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad099Wheel2[] = "__OTR__toad_kart/kart_099_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad099Wheel3[] = "__OTR__toad_kart/kart_099_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad100Wheel0[] = "__OTR__toad_kart/kart_100_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad100Wheel1[] = "__OTR__toad_kart/kart_100_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad100Wheel2[] = "__OTR__toad_kart/kart_100_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad100Wheel3[] = "__OTR__toad_kart/kart_100_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad101Wheel0[] = "__OTR__toad_kart/kart_101_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad101Wheel1[] = "__OTR__toad_kart/kart_101_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad101Wheel2[] = "__OTR__toad_kart/kart_101_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad101Wheel3[] = "__OTR__toad_kart/kart_101_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad102Wheel0[] = "__OTR__toad_kart/kart_102_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad102Wheel1[] = "__OTR__toad_kart/kart_102_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad102Wheel2[] = "__OTR__toad_kart/kart_102_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad102Wheel3[] = "__OTR__toad_kart/kart_102_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad103Wheel0[] = "__OTR__toad_kart/kart_103_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad103Wheel1[] = "__OTR__toad_kart/kart_103_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad103Wheel2[] = "__OTR__toad_kart/kart_103_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad103Wheel3[] = "__OTR__toad_kart/kart_103_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad104Wheel0[] = "__OTR__toad_kart/kart_104_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad104Wheel1[] = "__OTR__toad_kart/kart_104_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad104Wheel2[] = "__OTR__toad_kart/kart_104_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad104Wheel3[] = "__OTR__toad_kart/kart_104_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad105Wheel0[] = "__OTR__toad_kart/kart_105_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad105Wheel1[] = "__OTR__toad_kart/kart_105_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad105Wheel2[] = "__OTR__toad_kart/kart_105_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad105Wheel3[] = "__OTR__toad_kart/kart_105_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad106Wheel0[] = "__OTR__toad_kart/kart_106_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad106Wheel1[] = "__OTR__toad_kart/kart_106_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad106Wheel2[] = "__OTR__toad_kart/kart_106_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad106Wheel3[] = "__OTR__toad_kart/kart_106_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad107Wheel0[] = "__OTR__toad_kart/kart_107_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad107Wheel1[] = "__OTR__toad_kart/kart_107_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad107Wheel2[] = "__OTR__toad_kart/kart_107_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad107Wheel3[] = "__OTR__toad_kart/kart_107_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad108Wheel0[] = "__OTR__toad_kart/kart_108_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad108Wheel1[] = "__OTR__toad_kart/kart_108_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad108Wheel2[] = "__OTR__toad_kart/kart_108_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad108Wheel3[] = "__OTR__toad_kart/kart_108_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad109Wheel0[] = "__OTR__toad_kart/kart_109_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad109Wheel1[] = "__OTR__toad_kart/kart_109_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad109Wheel2[] = "__OTR__toad_kart/kart_109_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad109Wheel3[] = "__OTR__toad_kart/kart_109_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad110Wheel0[] = "__OTR__toad_kart/kart_110_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad110Wheel1[] = "__OTR__toad_kart/kart_110_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad110Wheel2[] = "__OTR__toad_kart/kart_110_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad110Wheel3[] = "__OTR__toad_kart/kart_110_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad111Wheel0[] = "__OTR__toad_kart/kart_111_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad111Wheel1[] = "__OTR__toad_kart/kart_111_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad111Wheel2[] = "__OTR__toad_kart/kart_111_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad111Wheel3[] = "__OTR__toad_kart/kart_111_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad112Wheel0[] = "__OTR__toad_kart/kart_112_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad112Wheel1[] = "__OTR__toad_kart/kart_112_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad112Wheel2[] = "__OTR__toad_kart/kart_112_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad112Wheel3[] = "__OTR__toad_kart/kart_112_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad113Wheel0[] = "__OTR__toad_kart/kart_113_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad113Wheel1[] = "__OTR__toad_kart/kart_113_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad113Wheel2[] = "__OTR__toad_kart/kart_113_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad113Wheel3[] = "__OTR__toad_kart/kart_113_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad114Wheel0[] = "__OTR__toad_kart/kart_114_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad114Wheel1[] = "__OTR__toad_kart/kart_114_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad114Wheel2[] = "__OTR__toad_kart/kart_114_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad114Wheel3[] = "__OTR__toad_kart/kart_114_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad115Wheel0[] = "__OTR__toad_kart/kart_115_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad115Wheel1[] = "__OTR__toad_kart/kart_115_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad115Wheel2[] = "__OTR__toad_kart/kart_115_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad115Wheel3[] = "__OTR__toad_kart/kart_115_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad116Wheel0[] = "__OTR__toad_kart/kart_116_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad116Wheel1[] = "__OTR__toad_kart/kart_116_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad116Wheel2[] = "__OTR__toad_kart/kart_116_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad116Wheel3[] = "__OTR__toad_kart/kart_116_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad117Wheel0[] = "__OTR__toad_kart/kart_117_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad117Wheel1[] = "__OTR__toad_kart/kart_117_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad117Wheel2[] = "__OTR__toad_kart/kart_117_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad117Wheel3[] = "__OTR__toad_kart/kart_117_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad118Wheel0[] = "__OTR__toad_kart/kart_118_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad118Wheel1[] = "__OTR__toad_kart/kart_118_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad118Wheel2[] = "__OTR__toad_kart/kart_118_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad118Wheel3[] = "__OTR__toad_kart/kart_118_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad119Wheel0[] = "__OTR__toad_kart/kart_119_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad119Wheel1[] = "__OTR__toad_kart/kart_119_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad119Wheel2[] = "__OTR__toad_kart/kart_119_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad119Wheel3[] = "__OTR__toad_kart/kart_119_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad120Wheel0[] = "__OTR__toad_kart/kart_120_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad120Wheel1[] = "__OTR__toad_kart/kart_120_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad120Wheel2[] = "__OTR__toad_kart/kart_120_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad120Wheel3[] = "__OTR__toad_kart/kart_120_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad121Wheel0[] = "__OTR__toad_kart/kart_121_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad121Wheel1[] = "__OTR__toad_kart/kart_121_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad121Wheel2[] = "__OTR__toad_kart/kart_121_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad121Wheel3[] = "__OTR__toad_kart/kart_121_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad122Wheel0[] = "__OTR__toad_kart/kart_122_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad122Wheel1[] = "__OTR__toad_kart/kart_122_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad122Wheel2[] = "__OTR__toad_kart/kart_122_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad122Wheel3[] = "__OTR__toad_kart/kart_122_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad123Wheel0[] = "__OTR__toad_kart/kart_123_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad123Wheel1[] = "__OTR__toad_kart/kart_123_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad123Wheel2[] = "__OTR__toad_kart/kart_123_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad123Wheel3[] = "__OTR__toad_kart/kart_123_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad124Wheel0[] = "__OTR__toad_kart/kart_124_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad124Wheel1[] = "__OTR__toad_kart/kart_124_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad124Wheel2[] = "__OTR__toad_kart/kart_124_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad124Wheel3[] = "__OTR__toad_kart/kart_124_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad125Wheel0[] = "__OTR__toad_kart/kart_125_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad125Wheel1[] = "__OTR__toad_kart/kart_125_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad125Wheel2[] = "__OTR__toad_kart/kart_125_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad125Wheel3[] = "__OTR__toad_kart/kart_125_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad126Wheel0[] = "__OTR__toad_kart/kart_126_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad126Wheel1[] = "__OTR__toad_kart/kart_126_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad126Wheel2[] = "__OTR__toad_kart/kart_126_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad126Wheel3[] = "__OTR__toad_kart/kart_126_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad127Wheel0[] = "__OTR__toad_kart/kart_127_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad127Wheel1[] = "__OTR__toad_kart/kart_127_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad127Wheel2[] = "__OTR__toad_kart/kart_127_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad127Wheel3[] = "__OTR__toad_kart/kart_127_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad128Wheel0[] = "__OTR__toad_kart/kart_128_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad128Wheel1[] = "__OTR__toad_kart/kart_128_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad128Wheel2[] = "__OTR__toad_kart/kart_128_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad128Wheel3[] = "__OTR__toad_kart/kart_128_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad129Wheel0[] = "__OTR__toad_kart/kart_129_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad129Wheel1[] = "__OTR__toad_kart/kart_129_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad129Wheel2[] = "__OTR__toad_kart/kart_129_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad129Wheel3[] = "__OTR__toad_kart/kart_129_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad130Wheel0[] = "__OTR__toad_kart/kart_130_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad130Wheel1[] = "__OTR__toad_kart/kart_130_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad130Wheel2[] = "__OTR__toad_kart/kart_130_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad130Wheel3[] = "__OTR__toad_kart/kart_130_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad131Wheel0[] = "__OTR__toad_kart/kart_131_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad131Wheel1[] = "__OTR__toad_kart/kart_131_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad131Wheel2[] = "__OTR__toad_kart/kart_131_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad131Wheel3[] = "__OTR__toad_kart/kart_131_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad132Wheel0[] = "__OTR__toad_kart/kart_132_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad132Wheel1[] = "__OTR__toad_kart/kart_132_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad132Wheel2[] = "__OTR__toad_kart/kart_132_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad132Wheel3[] = "__OTR__toad_kart/kart_132_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad133Wheel0[] = "__OTR__toad_kart/kart_133_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad133Wheel1[] = "__OTR__toad_kart/kart_133_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad133Wheel2[] = "__OTR__toad_kart/kart_133_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad133Wheel3[] = "__OTR__toad_kart/kart_133_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad134Wheel0[] = "__OTR__toad_kart/kart_134_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad134Wheel1[] = "__OTR__toad_kart/kart_134_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad134Wheel2[] = "__OTR__toad_kart/kart_134_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad134Wheel3[] = "__OTR__toad_kart/kart_134_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad135Wheel0[] = "__OTR__toad_kart/kart_135_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad135Wheel1[] = "__OTR__toad_kart/kart_135_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad135Wheel2[] = "__OTR__toad_kart/kart_135_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad135Wheel3[] = "__OTR__toad_kart/kart_135_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad136Wheel0[] = "__OTR__toad_kart/kart_136_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad136Wheel1[] = "__OTR__toad_kart/kart_136_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad136Wheel2[] = "__OTR__toad_kart/kart_136_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad136Wheel3[] = "__OTR__toad_kart/kart_136_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad137Wheel0[] = "__OTR__toad_kart/kart_137_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad137Wheel1[] = "__OTR__toad_kart/kart_137_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad137Wheel2[] = "__OTR__toad_kart/kart_137_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad137Wheel3[] = "__OTR__toad_kart/kart_137_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad138Wheel0[] = "__OTR__toad_kart/kart_138_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad138Wheel1[] = "__OTR__toad_kart/kart_138_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad138Wheel2[] = "__OTR__toad_kart/kart_138_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad138Wheel3[] = "__OTR__toad_kart/kart_138_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad139Wheel0[] = "__OTR__toad_kart/kart_139_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad139Wheel1[] = "__OTR__toad_kart/kart_139_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad139Wheel2[] = "__OTR__toad_kart/kart_139_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad139Wheel3[] = "__OTR__toad_kart/kart_139_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad140Wheel0[] = "__OTR__toad_kart/kart_140_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad140Wheel1[] = "__OTR__toad_kart/kart_140_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad140Wheel2[] = "__OTR__toad_kart/kart_140_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad140Wheel3[] = "__OTR__toad_kart/kart_140_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad141Wheel0[] = "__OTR__toad_kart/kart_141_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad141Wheel1[] = "__OTR__toad_kart/kart_141_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad141Wheel2[] = "__OTR__toad_kart/kart_141_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad141Wheel3[] = "__OTR__toad_kart/kart_141_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad142Wheel0[] = "__OTR__toad_kart/kart_142_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad142Wheel1[] = "__OTR__toad_kart/kart_142_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad142Wheel2[] = "__OTR__toad_kart/kart_142_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad142Wheel3[] = "__OTR__toad_kart/kart_142_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad143Wheel0[] = "__OTR__toad_kart/kart_143_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad143Wheel1[] = "__OTR__toad_kart/kart_143_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad143Wheel2[] = "__OTR__toad_kart/kart_143_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad143Wheel3[] = "__OTR__toad_kart/kart_143_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad144Wheel0[] = "__OTR__toad_kart/kart_144_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad144Wheel1[] = "__OTR__toad_kart/kart_144_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad144Wheel2[] = "__OTR__toad_kart/kart_144_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad144Wheel3[] = "__OTR__toad_kart/kart_144_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad145Wheel0[] = "__OTR__toad_kart/kart_145_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad145Wheel1[] = "__OTR__toad_kart/kart_145_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad145Wheel2[] = "__OTR__toad_kart/kart_145_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad145Wheel3[] = "__OTR__toad_kart/kart_145_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad146Wheel0[] = "__OTR__toad_kart/kart_146_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad146Wheel1[] = "__OTR__toad_kart/kart_146_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad146Wheel2[] = "__OTR__toad_kart/kart_146_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad146Wheel3[] = "__OTR__toad_kart/kart_146_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad147Wheel0[] = "__OTR__toad_kart/kart_147_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad147Wheel1[] = "__OTR__toad_kart/kart_147_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad147Wheel2[] = "__OTR__toad_kart/kart_147_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad147Wheel3[] = "__OTR__toad_kart/kart_147_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad148Wheel0[] = "__OTR__toad_kart/kart_148_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad148Wheel1[] = "__OTR__toad_kart/kart_148_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad148Wheel2[] = "__OTR__toad_kart/kart_148_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad148Wheel3[] = "__OTR__toad_kart/kart_148_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad149Wheel0[] = "__OTR__toad_kart/kart_149_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad149Wheel1[] = "__OTR__toad_kart/kart_149_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad149Wheel2[] = "__OTR__toad_kart/kart_149_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad149Wheel3[] = "__OTR__toad_kart/kart_149_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad150Wheel0[] = "__OTR__toad_kart/kart_150_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad150Wheel1[] = "__OTR__toad_kart/kart_150_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad150Wheel2[] = "__OTR__toad_kart/kart_150_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad150Wheel3[] = "__OTR__toad_kart/kart_150_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad151Wheel0[] = "__OTR__toad_kart/kart_151_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad151Wheel1[] = "__OTR__toad_kart/kart_151_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad151Wheel2[] = "__OTR__toad_kart/kart_151_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad151Wheel3[] = "__OTR__toad_kart/kart_151_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad152Wheel0[] = "__OTR__toad_kart/kart_152_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad152Wheel1[] = "__OTR__toad_kart/kart_152_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad152Wheel2[] = "__OTR__toad_kart/kart_152_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad152Wheel3[] = "__OTR__toad_kart/kart_152_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad153Wheel0[] = "__OTR__toad_kart/kart_153_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad153Wheel1[] = "__OTR__toad_kart/kart_153_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad153Wheel2[] = "__OTR__toad_kart/kart_153_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad153Wheel3[] = "__OTR__toad_kart/kart_153_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad154Wheel0[] = "__OTR__toad_kart/kart_154_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad154Wheel1[] = "__OTR__toad_kart/kart_154_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad154Wheel2[] = "__OTR__toad_kart/kart_154_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad154Wheel3[] = "__OTR__toad_kart/kart_154_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad155Wheel0[] = "__OTR__toad_kart/kart_155_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad155Wheel1[] = "__OTR__toad_kart/kart_155_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad155Wheel2[] = "__OTR__toad_kart/kart_155_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad155Wheel3[] = "__OTR__toad_kart/kart_155_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad156Wheel0[] = "__OTR__toad_kart/kart_156_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad156Wheel1[] = "__OTR__toad_kart/kart_156_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad156Wheel2[] = "__OTR__toad_kart/kart_156_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad156Wheel3[] = "__OTR__toad_kart/kart_156_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad157Wheel0[] = "__OTR__toad_kart/kart_157_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad157Wheel1[] = "__OTR__toad_kart/kart_157_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad157Wheel2[] = "__OTR__toad_kart/kart_157_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad157Wheel3[] = "__OTR__toad_kart/kart_157_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad158Wheel0[] = "__OTR__toad_kart/kart_158_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad158Wheel1[] = "__OTR__toad_kart/kart_158_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad158Wheel2[] = "__OTR__toad_kart/kart_158_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad158Wheel3[] = "__OTR__toad_kart/kart_158_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad159Wheel0[] = "__OTR__toad_kart/kart_159_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad159Wheel1[] = "__OTR__toad_kart/kart_159_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad159Wheel2[] = "__OTR__toad_kart/kart_159_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad159Wheel3[] = "__OTR__toad_kart/kart_159_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad160Wheel0[] = "__OTR__toad_kart/kart_160_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad160Wheel1[] = "__OTR__toad_kart/kart_160_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad160Wheel2[] = "__OTR__toad_kart/kart_160_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad160Wheel3[] = "__OTR__toad_kart/kart_160_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad161Wheel0[] = "__OTR__toad_kart/kart_161_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad161Wheel1[] = "__OTR__toad_kart/kart_161_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad161Wheel2[] = "__OTR__toad_kart/kart_161_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad161Wheel3[] = "__OTR__toad_kart/kart_161_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad162Wheel0[] = "__OTR__toad_kart/kart_162_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad162Wheel1[] = "__OTR__toad_kart/kart_162_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad162Wheel2[] = "__OTR__toad_kart/kart_162_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad162Wheel3[] = "__OTR__toad_kart/kart_162_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad163Wheel0[] = "__OTR__toad_kart/kart_163_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad163Wheel1[] = "__OTR__toad_kart/kart_163_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad163Wheel2[] = "__OTR__toad_kart/kart_163_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad163Wheel3[] = "__OTR__toad_kart/kart_163_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad164Wheel0[] = "__OTR__toad_kart/kart_164_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad164Wheel1[] = "__OTR__toad_kart/kart_164_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad164Wheel2[] = "__OTR__toad_kart/kart_164_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad164Wheel3[] = "__OTR__toad_kart/kart_164_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad165Wheel0[] = "__OTR__toad_kart/kart_165_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad165Wheel1[] = "__OTR__toad_kart/kart_165_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad165Wheel2[] = "__OTR__toad_kart/kart_165_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad165Wheel3[] = "__OTR__toad_kart/kart_165_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad166Wheel0[] = "__OTR__toad_kart/kart_166_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad166Wheel1[] = "__OTR__toad_kart/kart_166_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad166Wheel2[] = "__OTR__toad_kart/kart_166_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad166Wheel3[] = "__OTR__toad_kart/kart_166_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad167Wheel0[] = "__OTR__toad_kart/kart_167_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad167Wheel1[] = "__OTR__toad_kart/kart_167_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad167Wheel2[] = "__OTR__toad_kart/kart_167_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad167Wheel3[] = "__OTR__toad_kart/kart_167_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad168Wheel0[] = "__OTR__toad_kart/kart_168_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad168Wheel1[] = "__OTR__toad_kart/kart_168_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad168Wheel2[] = "__OTR__toad_kart/kart_168_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad168Wheel3[] = "__OTR__toad_kart/kart_168_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad169Wheel0[] = "__OTR__toad_kart/kart_169_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad169Wheel1[] = "__OTR__toad_kart/kart_169_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad169Wheel2[] = "__OTR__toad_kart/kart_169_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad169Wheel3[] = "__OTR__toad_kart/kart_169_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad170Wheel0[] = "__OTR__toad_kart/kart_170_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad170Wheel1[] = "__OTR__toad_kart/kart_170_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad170Wheel2[] = "__OTR__toad_kart/kart_170_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad170Wheel3[] = "__OTR__toad_kart/kart_170_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad171Wheel0[] = "__OTR__toad_kart/kart_171_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad171Wheel1[] = "__OTR__toad_kart/kart_171_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad171Wheel2[] = "__OTR__toad_kart/kart_171_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad171Wheel3[] = "__OTR__toad_kart/kart_171_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad172Wheel0[] = "__OTR__toad_kart/kart_172_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad172Wheel1[] = "__OTR__toad_kart/kart_172_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad172Wheel2[] = "__OTR__toad_kart/kart_172_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad172Wheel3[] = "__OTR__toad_kart/kart_172_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad173Wheel0[] = "__OTR__toad_kart/kart_173_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad173Wheel1[] = "__OTR__toad_kart/kart_173_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad173Wheel2[] = "__OTR__toad_kart/kart_173_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad173Wheel3[] = "__OTR__toad_kart/kart_173_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad174Wheel0[] = "__OTR__toad_kart/kart_174_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad174Wheel1[] = "__OTR__toad_kart/kart_174_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad174Wheel2[] = "__OTR__toad_kart/kart_174_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad174Wheel3[] = "__OTR__toad_kart/kart_174_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad175Wheel0[] = "__OTR__toad_kart/kart_175_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad175Wheel1[] = "__OTR__toad_kart/kart_175_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad175Wheel2[] = "__OTR__toad_kart/kart_175_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad175Wheel3[] = "__OTR__toad_kart/kart_175_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad176Wheel0[] = "__OTR__toad_kart/kart_176_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad176Wheel1[] = "__OTR__toad_kart/kart_176_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad176Wheel2[] = "__OTR__toad_kart/kart_176_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad176Wheel3[] = "__OTR__toad_kart/kart_176_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad177Wheel0[] = "__OTR__toad_kart/kart_177_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad177Wheel1[] = "__OTR__toad_kart/kart_177_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad177Wheel2[] = "__OTR__toad_kart/kart_177_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad177Wheel3[] = "__OTR__toad_kart/kart_177_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad178Wheel0[] = "__OTR__toad_kart/kart_178_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad178Wheel1[] = "__OTR__toad_kart/kart_178_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad178Wheel2[] = "__OTR__toad_kart/kart_178_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad178Wheel3[] = "__OTR__toad_kart/kart_178_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad179Wheel0[] = "__OTR__toad_kart/kart_179_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad179Wheel1[] = "__OTR__toad_kart/kart_179_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad179Wheel2[] = "__OTR__toad_kart/kart_179_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad179Wheel3[] = "__OTR__toad_kart/kart_179_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad180Wheel0[] = "__OTR__toad_kart/kart_180_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad180Wheel1[] = "__OTR__toad_kart/kart_180_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad180Wheel2[] = "__OTR__toad_kart/kart_180_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad180Wheel3[] = "__OTR__toad_kart/kart_180_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad181Wheel0[] = "__OTR__toad_kart/kart_181_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad181Wheel1[] = "__OTR__toad_kart/kart_181_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad181Wheel2[] = "__OTR__toad_kart/kart_181_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad181Wheel3[] = "__OTR__toad_kart/kart_181_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad182Wheel0[] = "__OTR__toad_kart/kart_182_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad182Wheel1[] = "__OTR__toad_kart/kart_182_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad182Wheel2[] = "__OTR__toad_kart/kart_182_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad182Wheel3[] = "__OTR__toad_kart/kart_182_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad183Wheel0[] = "__OTR__toad_kart/kart_183_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad183Wheel1[] = "__OTR__toad_kart/kart_183_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad183Wheel2[] = "__OTR__toad_kart/kart_183_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad183Wheel3[] = "__OTR__toad_kart/kart_183_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad184Wheel0[] = "__OTR__toad_kart/kart_184_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad184Wheel1[] = "__OTR__toad_kart/kart_184_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad184Wheel2[] = "__OTR__toad_kart/kart_184_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad184Wheel3[] = "__OTR__toad_kart/kart_184_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad185Wheel0[] = "__OTR__toad_kart/kart_185_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad185Wheel1[] = "__OTR__toad_kart/kart_185_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad185Wheel2[] = "__OTR__toad_kart/kart_185_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad185Wheel3[] = "__OTR__toad_kart/kart_185_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad186Wheel0[] = "__OTR__toad_kart/kart_186_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad186Wheel1[] = "__OTR__toad_kart/kart_186_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad186Wheel2[] = "__OTR__toad_kart/kart_186_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad186Wheel3[] = "__OTR__toad_kart/kart_186_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad187Wheel0[] = "__OTR__toad_kart/kart_187_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad187Wheel1[] = "__OTR__toad_kart/kart_187_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad187Wheel2[] = "__OTR__toad_kart/kart_187_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad187Wheel3[] = "__OTR__toad_kart/kart_187_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad188Wheel0[] = "__OTR__toad_kart/kart_188_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad188Wheel1[] = "__OTR__toad_kart/kart_188_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad188Wheel2[] = "__OTR__toad_kart/kart_188_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad188Wheel3[] = "__OTR__toad_kart/kart_188_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad189Wheel0[] = "__OTR__toad_kart/kart_189_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad189Wheel1[] = "__OTR__toad_kart/kart_189_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad189Wheel2[] = "__OTR__toad_kart/kart_189_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad189Wheel3[] = "__OTR__toad_kart/kart_189_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad190Wheel0[] = "__OTR__toad_kart/kart_190_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad190Wheel1[] = "__OTR__toad_kart/kart_190_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad190Wheel2[] = "__OTR__toad_kart/kart_190_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad190Wheel3[] = "__OTR__toad_kart/kart_190_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad191Wheel0[] = "__OTR__toad_kart/kart_191_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad191Wheel1[] = "__OTR__toad_kart/kart_191_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad191Wheel2[] = "__OTR__toad_kart/kart_191_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad191Wheel3[] = "__OTR__toad_kart/kart_191_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad192Wheel0[] = "__OTR__toad_kart/kart_192_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad192Wheel1[] = "__OTR__toad_kart/kart_192_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad192Wheel2[] = "__OTR__toad_kart/kart_192_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad192Wheel3[] = "__OTR__toad_kart/kart_192_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad193Wheel0[] = "__OTR__toad_kart/kart_193_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad193Wheel1[] = "__OTR__toad_kart/kart_193_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad193Wheel2[] = "__OTR__toad_kart/kart_193_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad193Wheel3[] = "__OTR__toad_kart/kart_193_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad194Wheel0[] = "__OTR__toad_kart/kart_194_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad194Wheel1[] = "__OTR__toad_kart/kart_194_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad194Wheel2[] = "__OTR__toad_kart/kart_194_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad194Wheel3[] = "__OTR__toad_kart/kart_194_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad195Wheel0[] = "__OTR__toad_kart/kart_195_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad195Wheel1[] = "__OTR__toad_kart/kart_195_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad195Wheel2[] = "__OTR__toad_kart/kart_195_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad195Wheel3[] = "__OTR__toad_kart/kart_195_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad196Wheel0[] = "__OTR__toad_kart/kart_196_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad196Wheel1[] = "__OTR__toad_kart/kart_196_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad196Wheel2[] = "__OTR__toad_kart/kart_196_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad196Wheel3[] = "__OTR__toad_kart/kart_196_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad197Wheel0[] = "__OTR__toad_kart/kart_197_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad197Wheel1[] = "__OTR__toad_kart/kart_197_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad197Wheel2[] = "__OTR__toad_kart/kart_197_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad197Wheel3[] = "__OTR__toad_kart/kart_197_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad198Wheel0[] = "__OTR__toad_kart/kart_198_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad198Wheel1[] = "__OTR__toad_kart/kart_198_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad198Wheel2[] = "__OTR__toad_kart/kart_198_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad198Wheel3[] = "__OTR__toad_kart/kart_198_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad199Wheel0[] = "__OTR__toad_kart/kart_199_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad199Wheel1[] = "__OTR__toad_kart/kart_199_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad199Wheel2[] = "__OTR__toad_kart/kart_199_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad199Wheel3[] = "__OTR__toad_kart/kart_199_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad200Wheel0[] = "__OTR__toad_kart/kart_200_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad200Wheel1[] = "__OTR__toad_kart/kart_200_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad200Wheel2[] = "__OTR__toad_kart/kart_200_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad200Wheel3[] = "__OTR__toad_kart/kart_200_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad201Wheel0[] = "__OTR__toad_kart/kart_201_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad201Wheel1[] = "__OTR__toad_kart/kart_201_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad201Wheel2[] = "__OTR__toad_kart/kart_201_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad201Wheel3[] = "__OTR__toad_kart/kart_201_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad202Wheel0[] = "__OTR__toad_kart/kart_202_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad202Wheel1[] = "__OTR__toad_kart/kart_202_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad202Wheel2[] = "__OTR__toad_kart/kart_202_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad202Wheel3[] = "__OTR__toad_kart/kart_202_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad203Wheel0[] = "__OTR__toad_kart/kart_203_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad203Wheel1[] = "__OTR__toad_kart/kart_203_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad203Wheel2[] = "__OTR__toad_kart/kart_203_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad203Wheel3[] = "__OTR__toad_kart/kart_203_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad204Wheel0[] = "__OTR__toad_kart/kart_204_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad204Wheel1[] = "__OTR__toad_kart/kart_204_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad204Wheel2[] = "__OTR__toad_kart/kart_204_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad204Wheel3[] = "__OTR__toad_kart/kart_204_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad205Wheel0[] = "__OTR__toad_kart/kart_205_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad205Wheel1[] = "__OTR__toad_kart/kart_205_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad205Wheel2[] = "__OTR__toad_kart/kart_205_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad205Wheel3[] = "__OTR__toad_kart/kart_205_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad206Wheel0[] = "__OTR__toad_kart/kart_206_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad206Wheel1[] = "__OTR__toad_kart/kart_206_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad206Wheel2[] = "__OTR__toad_kart/kart_206_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad206Wheel3[] = "__OTR__toad_kart/kart_206_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad207Wheel0[] = "__OTR__toad_kart/kart_207_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad207Wheel1[] = "__OTR__toad_kart/kart_207_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad207Wheel2[] = "__OTR__toad_kart/kart_207_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad207Wheel3[] = "__OTR__toad_kart/kart_207_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad208Wheel0[] = "__OTR__toad_kart/kart_208_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad208Wheel1[] = "__OTR__toad_kart/kart_208_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad208Wheel2[] = "__OTR__toad_kart/kart_208_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad208Wheel3[] = "__OTR__toad_kart/kart_208_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad209Wheel0[] = "__OTR__toad_kart/kart_209_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad209Wheel1[] = "__OTR__toad_kart/kart_209_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad209Wheel2[] = "__OTR__toad_kart/kart_209_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad209Wheel3[] = "__OTR__toad_kart/kart_209_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad210Wheel0[] = "__OTR__toad_kart/kart_210_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad210Wheel1[] = "__OTR__toad_kart/kart_210_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad210Wheel2[] = "__OTR__toad_kart/kart_210_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad210Wheel3[] = "__OTR__toad_kart/kart_210_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad211Wheel0[] = "__OTR__toad_kart/kart_211_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad211Wheel1[] = "__OTR__toad_kart/kart_211_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad211Wheel2[] = "__OTR__toad_kart/kart_211_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad211Wheel3[] = "__OTR__toad_kart/kart_211_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad212Wheel0[] = "__OTR__toad_kart/kart_212_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad212Wheel1[] = "__OTR__toad_kart/kart_212_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad212Wheel2[] = "__OTR__toad_kart/kart_212_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad212Wheel3[] = "__OTR__toad_kart/kart_212_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad213Wheel0[] = "__OTR__toad_kart/kart_213_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad213Wheel1[] = "__OTR__toad_kart/kart_213_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad213Wheel2[] = "__OTR__toad_kart/kart_213_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad213Wheel3[] = "__OTR__toad_kart/kart_213_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad214Wheel0[] = "__OTR__toad_kart/kart_214_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad214Wheel1[] = "__OTR__toad_kart/kart_214_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad214Wheel2[] = "__OTR__toad_kart/kart_214_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad214Wheel3[] = "__OTR__toad_kart/kart_214_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad215Wheel0[] = "__OTR__toad_kart/kart_215_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad215Wheel1[] = "__OTR__toad_kart/kart_215_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad215Wheel2[] = "__OTR__toad_kart/kart_215_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad215Wheel3[] = "__OTR__toad_kart/kart_215_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad216Wheel0[] = "__OTR__toad_kart/kart_216_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad216Wheel1[] = "__OTR__toad_kart/kart_216_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad216Wheel2[] = "__OTR__toad_kart/kart_216_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad216Wheel3[] = "__OTR__toad_kart/kart_216_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad217Wheel0[] = "__OTR__toad_kart/kart_217_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad217Wheel1[] = "__OTR__toad_kart/kart_217_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad217Wheel2[] = "__OTR__toad_kart/kart_217_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad217Wheel3[] = "__OTR__toad_kart/kart_217_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad218Wheel0[] = "__OTR__toad_kart/kart_218_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad218Wheel1[] = "__OTR__toad_kart/kart_218_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad218Wheel2[] = "__OTR__toad_kart/kart_218_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad218Wheel3[] = "__OTR__toad_kart/kart_218_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad219Wheel0[] = "__OTR__toad_kart/kart_219_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad219Wheel1[] = "__OTR__toad_kart/kart_219_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad219Wheel2[] = "__OTR__toad_kart/kart_219_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad219Wheel3[] = "__OTR__toad_kart/kart_219_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad220Wheel0[] = "__OTR__toad_kart/kart_220_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad220Wheel1[] = "__OTR__toad_kart/kart_220_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad220Wheel2[] = "__OTR__toad_kart/kart_220_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad220Wheel3[] = "__OTR__toad_kart/kart_220_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad221Wheel0[] = "__OTR__toad_kart/kart_221_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad221Wheel1[] = "__OTR__toad_kart/kart_221_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad221Wheel2[] = "__OTR__toad_kart/kart_221_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad221Wheel3[] = "__OTR__toad_kart/kart_221_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad222Wheel0[] = "__OTR__toad_kart/kart_222_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad222Wheel1[] = "__OTR__toad_kart/kart_222_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad222Wheel2[] = "__OTR__toad_kart/kart_222_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad222Wheel3[] = "__OTR__toad_kart/kart_222_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad223Wheel0[] = "__OTR__toad_kart/kart_223_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad223Wheel1[] = "__OTR__toad_kart/kart_223_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad223Wheel2[] = "__OTR__toad_kart/kart_223_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad223Wheel3[] = "__OTR__toad_kart/kart_223_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad224Wheel0[] = "__OTR__toad_kart/kart_224_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad224Wheel1[] = "__OTR__toad_kart/kart_224_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad224Wheel2[] = "__OTR__toad_kart/kart_224_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad224Wheel3[] = "__OTR__toad_kart/kart_224_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad225Wheel0[] = "__OTR__toad_kart/kart_225_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad225Wheel1[] = "__OTR__toad_kart/kart_225_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad225Wheel2[] = "__OTR__toad_kart/kart_225_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad225Wheel3[] = "__OTR__toad_kart/kart_225_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad226Wheel0[] = "__OTR__toad_kart/kart_226_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad226Wheel1[] = "__OTR__toad_kart/kart_226_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad226Wheel2[] = "__OTR__toad_kart/kart_226_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad226Wheel3[] = "__OTR__toad_kart/kart_226_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad227Wheel0[] = "__OTR__toad_kart/kart_227_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad227Wheel1[] = "__OTR__toad_kart/kart_227_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad227Wheel2[] = "__OTR__toad_kart/kart_227_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad227Wheel3[] = "__OTR__toad_kart/kart_227_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad228Wheel0[] = "__OTR__toad_kart/kart_228_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad228Wheel1[] = "__OTR__toad_kart/kart_228_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad228Wheel2[] = "__OTR__toad_kart/kart_228_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad228Wheel3[] = "__OTR__toad_kart/kart_228_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad229Wheel0[] = "__OTR__toad_kart/kart_229_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad229Wheel1[] = "__OTR__toad_kart/kart_229_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad229Wheel2[] = "__OTR__toad_kart/kart_229_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad229Wheel3[] = "__OTR__toad_kart/kart_229_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad230Wheel0[] = "__OTR__toad_kart/kart_230_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad230Wheel1[] = "__OTR__toad_kart/kart_230_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad230Wheel2[] = "__OTR__toad_kart/kart_230_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad230Wheel3[] = "__OTR__toad_kart/kart_230_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad231Wheel0[] = "__OTR__toad_kart/kart_231_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad231Wheel1[] = "__OTR__toad_kart/kart_231_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad231Wheel2[] = "__OTR__toad_kart/kart_231_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad231Wheel3[] = "__OTR__toad_kart/kart_231_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad232Wheel0[] = "__OTR__toad_kart/kart_232_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad232Wheel1[] = "__OTR__toad_kart/kart_232_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad232Wheel2[] = "__OTR__toad_kart/kart_232_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad232Wheel3[] = "__OTR__toad_kart/kart_232_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad233Wheel0[] = "__OTR__toad_kart/kart_233_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad233Wheel1[] = "__OTR__toad_kart/kart_233_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad233Wheel2[] = "__OTR__toad_kart/kart_233_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad233Wheel3[] = "__OTR__toad_kart/kart_233_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad234Wheel0[] = "__OTR__toad_kart/kart_234_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad234Wheel1[] = "__OTR__toad_kart/kart_234_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad234Wheel2[] = "__OTR__toad_kart/kart_234_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad234Wheel3[] = "__OTR__toad_kart/kart_234_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad235Wheel0[] = "__OTR__toad_kart/kart_235_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad235Wheel1[] = "__OTR__toad_kart/kart_235_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad235Wheel2[] = "__OTR__toad_kart/kart_235_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad235Wheel3[] = "__OTR__toad_kart/kart_235_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad236Wheel0[] = "__OTR__toad_kart/kart_236_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad236Wheel1[] = "__OTR__toad_kart/kart_236_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad236Wheel2[] = "__OTR__toad_kart/kart_236_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad236Wheel3[] = "__OTR__toad_kart/kart_236_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad237Wheel0[] = "__OTR__toad_kart/kart_237_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad237Wheel1[] = "__OTR__toad_kart/kart_237_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad237Wheel2[] = "__OTR__toad_kart/kart_237_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad237Wheel3[] = "__OTR__toad_kart/kart_237_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad238Wheel0[] = "__OTR__toad_kart/kart_238_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad238Wheel1[] = "__OTR__toad_kart/kart_238_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad238Wheel2[] = "__OTR__toad_kart/kart_238_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad238Wheel3[] = "__OTR__toad_kart/kart_238_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad239Wheel0[] = "__OTR__toad_kart/kart_239_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad239Wheel1[] = "__OTR__toad_kart/kart_239_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad239Wheel2[] = "__OTR__toad_kart/kart_239_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad239Wheel3[] = "__OTR__toad_kart/kart_239_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad240Wheel0[] = "__OTR__toad_kart/kart_240_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad240Wheel1[] = "__OTR__toad_kart/kart_240_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad240Wheel2[] = "__OTR__toad_kart/kart_240_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad240Wheel3[] = "__OTR__toad_kart/kart_240_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad241Wheel0[] = "__OTR__toad_kart/kart_241_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad241Wheel1[] = "__OTR__toad_kart/kart_241_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad241Wheel2[] = "__OTR__toad_kart/kart_241_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad241Wheel3[] = "__OTR__toad_kart/kart_241_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad242Wheel0[] = "__OTR__toad_kart/kart_242_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad242Wheel1[] = "__OTR__toad_kart/kart_242_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad242Wheel2[] = "__OTR__toad_kart/kart_242_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad242Wheel3[] = "__OTR__toad_kart/kart_242_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad243Wheel0[] = "__OTR__toad_kart/kart_243_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad243Wheel1[] = "__OTR__toad_kart/kart_243_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad243Wheel2[] = "__OTR__toad_kart/kart_243_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad243Wheel3[] = "__OTR__toad_kart/kart_243_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad244Wheel0[] = "__OTR__toad_kart/kart_244_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad244Wheel1[] = "__OTR__toad_kart/kart_244_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad244Wheel2[] = "__OTR__toad_kart/kart_244_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad244Wheel3[] = "__OTR__toad_kart/kart_244_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad245Wheel0[] = "__OTR__toad_kart/kart_245_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad245Wheel1[] = "__OTR__toad_kart/kart_245_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad245Wheel2[] = "__OTR__toad_kart/kart_245_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad245Wheel3[] = "__OTR__toad_kart/kart_245_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad246Wheel0[] = "__OTR__toad_kart/kart_246_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad246Wheel1[] = "__OTR__toad_kart/kart_246_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad246Wheel2[] = "__OTR__toad_kart/kart_246_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad246Wheel3[] = "__OTR__toad_kart/kart_246_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad247Wheel0[] = "__OTR__toad_kart/kart_247_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad247Wheel1[] = "__OTR__toad_kart/kart_247_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad247Wheel2[] = "__OTR__toad_kart/kart_247_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad247Wheel3[] = "__OTR__toad_kart/kart_247_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad248Wheel0[] = "__OTR__toad_kart/kart_248_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad248Wheel1[] = "__OTR__toad_kart/kart_248_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad248Wheel2[] = "__OTR__toad_kart/kart_248_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad248Wheel3[] = "__OTR__toad_kart/kart_248_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad249Wheel0[] = "__OTR__toad_kart/kart_249_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad249Wheel1[] = "__OTR__toad_kart/kart_249_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad249Wheel2[] = "__OTR__toad_kart/kart_249_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad249Wheel3[] = "__OTR__toad_kart/kart_249_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad250Wheel0[] = "__OTR__toad_kart/kart_250_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad250Wheel1[] = "__OTR__toad_kart/kart_250_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad250Wheel2[] = "__OTR__toad_kart/kart_250_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad250Wheel3[] = "__OTR__toad_kart/kart_250_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad251Wheel0[] = "__OTR__toad_kart/kart_251_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad251Wheel1[] = "__OTR__toad_kart/kart_251_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad251Wheel2[] = "__OTR__toad_kart/kart_251_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad251Wheel3[] = "__OTR__toad_kart/kart_251_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad252Wheel0[] = "__OTR__toad_kart/kart_252_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad252Wheel1[] = "__OTR__toad_kart/kart_252_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad252Wheel2[] = "__OTR__toad_kart/kart_252_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad252Wheel3[] = "__OTR__toad_kart/kart_252_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad253Wheel0[] = "__OTR__toad_kart/kart_253_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad253Wheel1[] = "__OTR__toad_kart/kart_253_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad253Wheel2[] = "__OTR__toad_kart/kart_253_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad253Wheel3[] = "__OTR__toad_kart/kart_253_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad254Wheel0[] = "__OTR__toad_kart/kart_254_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad254Wheel1[] = "__OTR__toad_kart/kart_254_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad254Wheel2[] = "__OTR__toad_kart/kart_254_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad254Wheel3[] = "__OTR__toad_kart/kart_254_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad255Wheel0[] = "__OTR__toad_kart/kart_255_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad255Wheel1[] = "__OTR__toad_kart/kart_255_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad255Wheel2[] = "__OTR__toad_kart/kart_255_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad255Wheel3[] = "__OTR__toad_kart/kart_255_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad256Wheel0[] = "__OTR__toad_kart/kart_256_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad256Wheel1[] = "__OTR__toad_kart/kart_256_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad256Wheel2[] = "__OTR__toad_kart/kart_256_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad256Wheel3[] = "__OTR__toad_kart/kart_256_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad257Wheel0[] = "__OTR__toad_kart/kart_257_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad257Wheel1[] = "__OTR__toad_kart/kart_257_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad257Wheel2[] = "__OTR__toad_kart/kart_257_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad257Wheel3[] = "__OTR__toad_kart/kart_257_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad258Wheel0[] = "__OTR__toad_kart/kart_258_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad258Wheel1[] = "__OTR__toad_kart/kart_258_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad258Wheel2[] = "__OTR__toad_kart/kart_258_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad258Wheel3[] = "__OTR__toad_kart/kart_258_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad259Wheel0[] = "__OTR__toad_kart/kart_259_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad259Wheel1[] = "__OTR__toad_kart/kart_259_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad259Wheel2[] = "__OTR__toad_kart/kart_259_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad259Wheel3[] = "__OTR__toad_kart/kart_259_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad260Wheel0[] = "__OTR__toad_kart/kart_260_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad260Wheel1[] = "__OTR__toad_kart/kart_260_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad260Wheel2[] = "__OTR__toad_kart/kart_260_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad260Wheel3[] = "__OTR__toad_kart/kart_260_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad261Wheel0[] = "__OTR__toad_kart/kart_261_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad261Wheel1[] = "__OTR__toad_kart/kart_261_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad261Wheel2[] = "__OTR__toad_kart/kart_261_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad261Wheel3[] = "__OTR__toad_kart/kart_261_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad262Wheel0[] = "__OTR__toad_kart/kart_262_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad262Wheel1[] = "__OTR__toad_kart/kart_262_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad262Wheel2[] = "__OTR__toad_kart/kart_262_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad262Wheel3[] = "__OTR__toad_kart/kart_262_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad263Wheel0[] = "__OTR__toad_kart/kart_263_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad263Wheel1[] = "__OTR__toad_kart/kart_263_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad263Wheel2[] = "__OTR__toad_kart/kart_263_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad263Wheel3[] = "__OTR__toad_kart/kart_263_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad264Wheel0[] = "__OTR__toad_kart/kart_264_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad264Wheel1[] = "__OTR__toad_kart/kart_264_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad264Wheel2[] = "__OTR__toad_kart/kart_264_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad264Wheel3[] = "__OTR__toad_kart/kart_264_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad265Wheel0[] = "__OTR__toad_kart/kart_265_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad265Wheel1[] = "__OTR__toad_kart/kart_265_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad265Wheel2[] = "__OTR__toad_kart/kart_265_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad265Wheel3[] = "__OTR__toad_kart/kart_265_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad266Wheel0[] = "__OTR__toad_kart/kart_266_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad266Wheel1[] = "__OTR__toad_kart/kart_266_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad266Wheel2[] = "__OTR__toad_kart/kart_266_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad266Wheel3[] = "__OTR__toad_kart/kart_266_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad267Wheel0[] = "__OTR__toad_kart/kart_267_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad267Wheel1[] = "__OTR__toad_kart/kart_267_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad267Wheel2[] = "__OTR__toad_kart/kart_267_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad267Wheel3[] = "__OTR__toad_kart/kart_267_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad268Wheel0[] = "__OTR__toad_kart/kart_268_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad268Wheel1[] = "__OTR__toad_kart/kart_268_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad268Wheel2[] = "__OTR__toad_kart/kart_268_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad268Wheel3[] = "__OTR__toad_kart/kart_268_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad269Wheel0[] = "__OTR__toad_kart/kart_269_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad269Wheel1[] = "__OTR__toad_kart/kart_269_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad269Wheel2[] = "__OTR__toad_kart/kart_269_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad269Wheel3[] = "__OTR__toad_kart/kart_269_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad270Wheel0[] = "__OTR__toad_kart/kart_270_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad270Wheel1[] = "__OTR__toad_kart/kart_270_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad270Wheel2[] = "__OTR__toad_kart/kart_270_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad270Wheel3[] = "__OTR__toad_kart/kart_270_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad271Wheel0[] = "__OTR__toad_kart/kart_271_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad271Wheel1[] = "__OTR__toad_kart/kart_271_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad271Wheel2[] = "__OTR__toad_kart/kart_271_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad271Wheel3[] = "__OTR__toad_kart/kart_271_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad272Wheel0[] = "__OTR__toad_kart/kart_272_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad272Wheel1[] = "__OTR__toad_kart/kart_272_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad272Wheel2[] = "__OTR__toad_kart/kart_272_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad272Wheel3[] = "__OTR__toad_kart/kart_272_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad273Wheel0[] = "__OTR__toad_kart/kart_273_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad273Wheel1[] = "__OTR__toad_kart/kart_273_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad273Wheel2[] = "__OTR__toad_kart/kart_273_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad273Wheel3[] = "__OTR__toad_kart/kart_273_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad274Wheel0[] = "__OTR__toad_kart/kart_274_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad274Wheel1[] = "__OTR__toad_kart/kart_274_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad274Wheel2[] = "__OTR__toad_kart/kart_274_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad274Wheel3[] = "__OTR__toad_kart/kart_274_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad275Wheel0[] = "__OTR__toad_kart/kart_275_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad275Wheel1[] = "__OTR__toad_kart/kart_275_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad275Wheel2[] = "__OTR__toad_kart/kart_275_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad275Wheel3[] = "__OTR__toad_kart/kart_275_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad276Wheel0[] = "__OTR__toad_kart/kart_276_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad276Wheel1[] = "__OTR__toad_kart/kart_276_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad276Wheel2[] = "__OTR__toad_kart/kart_276_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad276Wheel3[] = "__OTR__toad_kart/kart_276_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad277Wheel0[] = "__OTR__toad_kart/kart_277_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad277Wheel1[] = "__OTR__toad_kart/kart_277_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad277Wheel2[] = "__OTR__toad_kart/kart_277_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad277Wheel3[] = "__OTR__toad_kart/kart_277_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad278Wheel0[] = "__OTR__toad_kart/kart_278_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad278Wheel1[] = "__OTR__toad_kart/kart_278_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad278Wheel2[] = "__OTR__toad_kart/kart_278_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad278Wheel3[] = "__OTR__toad_kart/kart_278_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad279Wheel0[] = "__OTR__toad_kart/kart_279_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad279Wheel1[] = "__OTR__toad_kart/kart_279_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad279Wheel2[] = "__OTR__toad_kart/kart_279_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad279Wheel3[] = "__OTR__toad_kart/kart_279_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad280Wheel0[] = "__OTR__toad_kart/kart_280_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad280Wheel1[] = "__OTR__toad_kart/kart_280_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad280Wheel2[] = "__OTR__toad_kart/kart_280_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad280Wheel3[] = "__OTR__toad_kart/kart_280_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad281Wheel0[] = "__OTR__toad_kart/kart_281_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad281Wheel1[] = "__OTR__toad_kart/kart_281_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad281Wheel2[] = "__OTR__toad_kart/kart_281_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad281Wheel3[] = "__OTR__toad_kart/kart_281_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad282Wheel0[] = "__OTR__toad_kart/kart_282_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad282Wheel1[] = "__OTR__toad_kart/kart_282_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad282Wheel2[] = "__OTR__toad_kart/kart_282_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad282Wheel3[] = "__OTR__toad_kart/kart_282_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad283Wheel0[] = "__OTR__toad_kart/kart_283_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad283Wheel1[] = "__OTR__toad_kart/kart_283_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad283Wheel2[] = "__OTR__toad_kart/kart_283_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad283Wheel3[] = "__OTR__toad_kart/kart_283_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad284Wheel0[] = "__OTR__toad_kart/kart_284_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad284Wheel1[] = "__OTR__toad_kart/kart_284_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad284Wheel2[] = "__OTR__toad_kart/kart_284_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad284Wheel3[] = "__OTR__toad_kart/kart_284_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad285Wheel0[] = "__OTR__toad_kart/kart_285_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad285Wheel1[] = "__OTR__toad_kart/kart_285_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad285Wheel2[] = "__OTR__toad_kart/kart_285_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad285Wheel3[] = "__OTR__toad_kart/kart_285_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad286Wheel0[] = "__OTR__toad_kart/kart_286_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad286Wheel1[] = "__OTR__toad_kart/kart_286_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad286Wheel2[] = "__OTR__toad_kart/kart_286_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad286Wheel3[] = "__OTR__toad_kart/kart_286_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad287Wheel0[] = "__OTR__toad_kart/kart_287_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad287Wheel1[] = "__OTR__toad_kart/kart_287_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad287Wheel2[] = "__OTR__toad_kart/kart_287_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad287Wheel3[] = "__OTR__toad_kart/kart_287_wheel_3"; - -static const ALIGN_ASSET(2) char gKartToad288Wheel0[] = "__OTR__toad_kart/kart_288_wheel_0"; - -static const ALIGN_ASSET(2) char gKartToad288Wheel1[] = "__OTR__toad_kart/kart_288_wheel_1"; - -static const ALIGN_ASSET(2) char gKartToad288Wheel2[] = "__OTR__toad_kart/kart_288_wheel_2"; - -static const ALIGN_ASSET(2) char gKartToad288Wheel3[] = "__OTR__toad_kart/kart_288_wheel_3"; - -static const char* toad_kart_wheels[] = { - gKartToad000Wheel0, - gKartToad000Wheel1, - gKartToad000Wheel2, - gKartToad000Wheel3, - gKartToad001Wheel0, - gKartToad001Wheel1, - gKartToad001Wheel2, - gKartToad001Wheel3, - gKartToad002Wheel0, - gKartToad002Wheel1, - gKartToad002Wheel2, - gKartToad002Wheel3, - gKartToad003Wheel0, - gKartToad003Wheel1, - gKartToad003Wheel2, - gKartToad003Wheel3, - gKartToad004Wheel0, - gKartToad004Wheel1, - gKartToad004Wheel2, - gKartToad004Wheel3, - gKartToad005Wheel0, - gKartToad005Wheel1, - gKartToad005Wheel2, - gKartToad005Wheel3, - gKartToad006Wheel0, - gKartToad006Wheel1, - gKartToad006Wheel2, - gKartToad006Wheel3, - gKartToad007Wheel0, - gKartToad007Wheel1, - gKartToad007Wheel2, - gKartToad007Wheel3, - gKartToad008Wheel0, - gKartToad008Wheel1, - gKartToad008Wheel2, - gKartToad008Wheel3, - gKartToad009Wheel0, - gKartToad009Wheel1, - gKartToad009Wheel2, - gKartToad009Wheel3, - gKartToad010Wheel0, - gKartToad010Wheel1, - gKartToad010Wheel2, - gKartToad010Wheel3, - gKartToad011Wheel0, - gKartToad011Wheel1, - gKartToad011Wheel2, - gKartToad011Wheel3, - gKartToad012Wheel0, - gKartToad012Wheel1, - gKartToad012Wheel2, - gKartToad012Wheel3, - gKartToad013Wheel0, - gKartToad013Wheel1, - gKartToad013Wheel2, - gKartToad013Wheel3, - gKartToad014Wheel0, - gKartToad014Wheel1, - gKartToad014Wheel2, - gKartToad014Wheel3, - gKartToad015Wheel0, - gKartToad015Wheel1, - gKartToad015Wheel2, - gKartToad015Wheel3, - gKartToad016Wheel0, - gKartToad016Wheel1, - gKartToad016Wheel2, - gKartToad016Wheel3, - gKartToad017Wheel0, - gKartToad017Wheel1, - gKartToad017Wheel2, - gKartToad017Wheel3, - gKartToad018Wheel0, - gKartToad018Wheel1, - gKartToad018Wheel2, - gKartToad018Wheel3, - gKartToad019Wheel0, - gKartToad019Wheel1, - gKartToad019Wheel2, - gKartToad019Wheel3, - gKartToad020Wheel0, - gKartToad020Wheel1, - gKartToad020Wheel2, - gKartToad020Wheel3, - gKartToad021Wheel0, - gKartToad021Wheel1, - gKartToad021Wheel2, - gKartToad021Wheel3, - gKartToad022Wheel0, - gKartToad022Wheel1, - gKartToad022Wheel2, - gKartToad022Wheel3, - gKartToad023Wheel0, - gKartToad023Wheel1, - gKartToad023Wheel2, - gKartToad023Wheel3, - gKartToad024Wheel0, - gKartToad024Wheel1, - gKartToad024Wheel2, - gKartToad024Wheel3, - gKartToad025Wheel0, - gKartToad025Wheel1, - gKartToad025Wheel2, - gKartToad025Wheel3, - gKartToad026Wheel0, - gKartToad026Wheel1, - gKartToad026Wheel2, - gKartToad026Wheel3, - gKartToad027Wheel0, - gKartToad027Wheel1, - gKartToad027Wheel2, - gKartToad027Wheel3, - gKartToad028Wheel0, - gKartToad028Wheel1, - gKartToad028Wheel2, - gKartToad028Wheel3, - gKartToad029Wheel0, - gKartToad029Wheel1, - gKartToad029Wheel2, - gKartToad029Wheel3, - gKartToad030Wheel0, - gKartToad030Wheel1, - gKartToad030Wheel2, - gKartToad030Wheel3, - gKartToad031Wheel0, - gKartToad031Wheel1, - gKartToad031Wheel2, - gKartToad031Wheel3, - gKartToad032Wheel0, - gKartToad032Wheel1, - gKartToad032Wheel2, - gKartToad032Wheel3, - gKartToad033Wheel0, - gKartToad033Wheel1, - gKartToad033Wheel2, - gKartToad033Wheel3, - gKartToad034Wheel0, - gKartToad034Wheel1, - gKartToad034Wheel2, - gKartToad034Wheel3, - gKartToad035Wheel0, - gKartToad035Wheel1, - gKartToad035Wheel2, - gKartToad035Wheel3, - gKartToad036Wheel0, - gKartToad036Wheel1, - gKartToad036Wheel2, - gKartToad036Wheel3, - gKartToad037Wheel0, - gKartToad037Wheel1, - gKartToad037Wheel2, - gKartToad037Wheel3, - gKartToad038Wheel0, - gKartToad038Wheel1, - gKartToad038Wheel2, - gKartToad038Wheel3, - gKartToad039Wheel0, - gKartToad039Wheel1, - gKartToad039Wheel2, - gKartToad039Wheel3, - gKartToad040Wheel0, - gKartToad040Wheel1, - gKartToad040Wheel2, - gKartToad040Wheel3, - gKartToad041Wheel0, - gKartToad041Wheel1, - gKartToad041Wheel2, - gKartToad041Wheel3, - gKartToad042Wheel0, - gKartToad042Wheel1, - gKartToad042Wheel2, - gKartToad042Wheel3, - gKartToad043Wheel0, - gKartToad043Wheel1, - gKartToad043Wheel2, - gKartToad043Wheel3, - gKartToad044Wheel0, - gKartToad044Wheel1, - gKartToad044Wheel2, - gKartToad044Wheel3, - gKartToad045Wheel0, - gKartToad045Wheel1, - gKartToad045Wheel2, - gKartToad045Wheel3, - gKartToad046Wheel0, - gKartToad046Wheel1, - gKartToad046Wheel2, - gKartToad046Wheel3, - gKartToad047Wheel0, - gKartToad047Wheel1, - gKartToad047Wheel2, - gKartToad047Wheel3, - gKartToad048Wheel0, - gKartToad048Wheel1, - gKartToad048Wheel2, - gKartToad048Wheel3, - gKartToad049Wheel0, - gKartToad049Wheel1, - gKartToad049Wheel2, - gKartToad049Wheel3, - gKartToad050Wheel0, - gKartToad050Wheel1, - gKartToad050Wheel2, - gKartToad050Wheel3, - gKartToad051Wheel0, - gKartToad051Wheel1, - gKartToad051Wheel2, - gKartToad051Wheel3, - gKartToad052Wheel0, - gKartToad052Wheel1, - gKartToad052Wheel2, - gKartToad052Wheel3, - gKartToad053Wheel0, - gKartToad053Wheel1, - gKartToad053Wheel2, - gKartToad053Wheel3, - gKartToad054Wheel0, - gKartToad054Wheel1, - gKartToad054Wheel2, - gKartToad054Wheel3, - gKartToad055Wheel0, - gKartToad055Wheel1, - gKartToad055Wheel2, - gKartToad055Wheel3, - gKartToad056Wheel0, - gKartToad056Wheel1, - gKartToad056Wheel2, - gKartToad056Wheel3, - gKartToad057Wheel0, - gKartToad057Wheel1, - gKartToad057Wheel2, - gKartToad057Wheel3, - gKartToad058Wheel0, - gKartToad058Wheel1, - gKartToad058Wheel2, - gKartToad058Wheel3, - gKartToad059Wheel0, - gKartToad059Wheel1, - gKartToad059Wheel2, - gKartToad059Wheel3, - gKartToad060Wheel0, - gKartToad060Wheel1, - gKartToad060Wheel2, - gKartToad060Wheel3, - gKartToad061Wheel0, - gKartToad061Wheel1, - gKartToad061Wheel2, - gKartToad061Wheel3, - gKartToad062Wheel0, - gKartToad062Wheel1, - gKartToad062Wheel2, - gKartToad062Wheel3, - gKartToad063Wheel0, - gKartToad063Wheel1, - gKartToad063Wheel2, - gKartToad063Wheel3, - gKartToad064Wheel0, - gKartToad064Wheel1, - gKartToad064Wheel2, - gKartToad064Wheel3, - gKartToad065Wheel0, - gKartToad065Wheel1, - gKartToad065Wheel2, - gKartToad065Wheel3, - gKartToad066Wheel0, - gKartToad066Wheel1, - gKartToad066Wheel2, - gKartToad066Wheel3, - gKartToad067Wheel0, - gKartToad067Wheel1, - gKartToad067Wheel2, - gKartToad067Wheel3, - gKartToad068Wheel0, - gKartToad068Wheel1, - gKartToad068Wheel2, - gKartToad068Wheel3, - gKartToad069Wheel0, - gKartToad069Wheel1, - gKartToad069Wheel2, - gKartToad069Wheel3, - gKartToad070Wheel0, - gKartToad070Wheel1, - gKartToad070Wheel2, - gKartToad070Wheel3, - gKartToad071Wheel0, - gKartToad071Wheel1, - gKartToad071Wheel2, - gKartToad071Wheel3, - gKartToad072Wheel0, - gKartToad072Wheel1, - gKartToad072Wheel2, - gKartToad072Wheel3, - gKartToad073Wheel0, - gKartToad073Wheel1, - gKartToad073Wheel2, - gKartToad073Wheel3, - gKartToad074Wheel0, - gKartToad074Wheel1, - gKartToad074Wheel2, - gKartToad074Wheel3, - gKartToad075Wheel0, - gKartToad075Wheel1, - gKartToad075Wheel2, - gKartToad075Wheel3, - gKartToad076Wheel0, - gKartToad076Wheel1, - gKartToad076Wheel2, - gKartToad076Wheel3, - gKartToad077Wheel0, - gKartToad077Wheel1, - gKartToad077Wheel2, - gKartToad077Wheel3, - gKartToad078Wheel0, - gKartToad078Wheel1, - gKartToad078Wheel2, - gKartToad078Wheel3, - gKartToad079Wheel0, - gKartToad079Wheel1, - gKartToad079Wheel2, - gKartToad079Wheel3, - gKartToad080Wheel0, - gKartToad080Wheel1, - gKartToad080Wheel2, - gKartToad080Wheel3, - gKartToad081Wheel0, - gKartToad081Wheel1, - gKartToad081Wheel2, - gKartToad081Wheel3, - gKartToad082Wheel0, - gKartToad082Wheel1, - gKartToad082Wheel2, - gKartToad082Wheel3, - gKartToad083Wheel0, - gKartToad083Wheel1, - gKartToad083Wheel2, - gKartToad083Wheel3, - gKartToad084Wheel0, - gKartToad084Wheel1, - gKartToad084Wheel2, - gKartToad084Wheel3, - gKartToad085Wheel0, - gKartToad085Wheel1, - gKartToad085Wheel2, - gKartToad085Wheel3, - gKartToad086Wheel0, - gKartToad086Wheel1, - gKartToad086Wheel2, - gKartToad086Wheel3, - gKartToad087Wheel0, - gKartToad087Wheel1, - gKartToad087Wheel2, - gKartToad087Wheel3, - gKartToad088Wheel0, - gKartToad088Wheel1, - gKartToad088Wheel2, - gKartToad088Wheel3, - gKartToad089Wheel0, - gKartToad089Wheel1, - gKartToad089Wheel2, - gKartToad089Wheel3, - gKartToad090Wheel0, - gKartToad090Wheel1, - gKartToad090Wheel2, - gKartToad090Wheel3, - gKartToad091Wheel0, - gKartToad091Wheel1, - gKartToad091Wheel2, - gKartToad091Wheel3, - gKartToad092Wheel0, - gKartToad092Wheel1, - gKartToad092Wheel2, - gKartToad092Wheel3, - gKartToad093Wheel0, - gKartToad093Wheel1, - gKartToad093Wheel2, - gKartToad093Wheel3, - gKartToad094Wheel0, - gKartToad094Wheel1, - gKartToad094Wheel2, - gKartToad094Wheel3, - gKartToad095Wheel0, - gKartToad095Wheel1, - gKartToad095Wheel2, - gKartToad095Wheel3, - gKartToad096Wheel0, - gKartToad096Wheel1, - gKartToad096Wheel2, - gKartToad096Wheel3, - gKartToad097Wheel0, - gKartToad097Wheel1, - gKartToad097Wheel2, - gKartToad097Wheel3, - gKartToad098Wheel0, - gKartToad098Wheel1, - gKartToad098Wheel2, - gKartToad098Wheel3, - gKartToad099Wheel0, - gKartToad099Wheel1, - gKartToad099Wheel2, - gKartToad099Wheel3, - gKartToad100Wheel0, - gKartToad100Wheel1, - gKartToad100Wheel2, - gKartToad100Wheel3, - gKartToad101Wheel0, - gKartToad101Wheel1, - gKartToad101Wheel2, - gKartToad101Wheel3, - gKartToad102Wheel0, - gKartToad102Wheel1, - gKartToad102Wheel2, - gKartToad102Wheel3, - gKartToad103Wheel0, - gKartToad103Wheel1, - gKartToad103Wheel2, - gKartToad103Wheel3, - gKartToad104Wheel0, - gKartToad104Wheel1, - gKartToad104Wheel2, - gKartToad104Wheel3, - gKartToad105Wheel0, - gKartToad105Wheel1, - gKartToad105Wheel2, - gKartToad105Wheel3, - gKartToad106Wheel0, - gKartToad106Wheel1, - gKartToad106Wheel2, - gKartToad106Wheel3, - gKartToad107Wheel0, - gKartToad107Wheel1, - gKartToad107Wheel2, - gKartToad107Wheel3, - gKartToad108Wheel0, - gKartToad108Wheel1, - gKartToad108Wheel2, - gKartToad108Wheel3, - gKartToad109Wheel0, - gKartToad109Wheel1, - gKartToad109Wheel2, - gKartToad109Wheel3, - gKartToad110Wheel0, - gKartToad110Wheel1, - gKartToad110Wheel2, - gKartToad110Wheel3, - gKartToad111Wheel0, - gKartToad111Wheel1, - gKartToad111Wheel2, - gKartToad111Wheel3, - gKartToad112Wheel0, - gKartToad112Wheel1, - gKartToad112Wheel2, - gKartToad112Wheel3, - gKartToad113Wheel0, - gKartToad113Wheel1, - gKartToad113Wheel2, - gKartToad113Wheel3, - gKartToad114Wheel0, - gKartToad114Wheel1, - gKartToad114Wheel2, - gKartToad114Wheel3, - gKartToad115Wheel0, - gKartToad115Wheel1, - gKartToad115Wheel2, - gKartToad115Wheel3, - gKartToad116Wheel0, - gKartToad116Wheel1, - gKartToad116Wheel2, - gKartToad116Wheel3, - gKartToad117Wheel0, - gKartToad117Wheel1, - gKartToad117Wheel2, - gKartToad117Wheel3, - gKartToad118Wheel0, - gKartToad118Wheel1, - gKartToad118Wheel2, - gKartToad118Wheel3, - gKartToad119Wheel0, - gKartToad119Wheel1, - gKartToad119Wheel2, - gKartToad119Wheel3, - gKartToad120Wheel0, - gKartToad120Wheel1, - gKartToad120Wheel2, - gKartToad120Wheel3, - gKartToad121Wheel0, - gKartToad121Wheel1, - gKartToad121Wheel2, - gKartToad121Wheel3, - gKartToad122Wheel0, - gKartToad122Wheel1, - gKartToad122Wheel2, - gKartToad122Wheel3, - gKartToad123Wheel0, - gKartToad123Wheel1, - gKartToad123Wheel2, - gKartToad123Wheel3, - gKartToad124Wheel0, - gKartToad124Wheel1, - gKartToad124Wheel2, - gKartToad124Wheel3, - gKartToad125Wheel0, - gKartToad125Wheel1, - gKartToad125Wheel2, - gKartToad125Wheel3, - gKartToad126Wheel0, - gKartToad126Wheel1, - gKartToad126Wheel2, - gKartToad126Wheel3, - gKartToad127Wheel0, - gKartToad127Wheel1, - gKartToad127Wheel2, - gKartToad127Wheel3, - gKartToad128Wheel0, - gKartToad128Wheel1, - gKartToad128Wheel2, - gKartToad128Wheel3, - gKartToad129Wheel0, - gKartToad129Wheel1, - gKartToad129Wheel2, - gKartToad129Wheel3, - gKartToad130Wheel0, - gKartToad130Wheel1, - gKartToad130Wheel2, - gKartToad130Wheel3, - gKartToad131Wheel0, - gKartToad131Wheel1, - gKartToad131Wheel2, - gKartToad131Wheel3, - gKartToad132Wheel0, - gKartToad132Wheel1, - gKartToad132Wheel2, - gKartToad132Wheel3, - gKartToad133Wheel0, - gKartToad133Wheel1, - gKartToad133Wheel2, - gKartToad133Wheel3, - gKartToad134Wheel0, - gKartToad134Wheel1, - gKartToad134Wheel2, - gKartToad134Wheel3, - gKartToad135Wheel0, - gKartToad135Wheel1, - gKartToad135Wheel2, - gKartToad135Wheel3, - gKartToad136Wheel0, - gKartToad136Wheel1, - gKartToad136Wheel2, - gKartToad136Wheel3, - gKartToad137Wheel0, - gKartToad137Wheel1, - gKartToad137Wheel2, - gKartToad137Wheel3, - gKartToad138Wheel0, - gKartToad138Wheel1, - gKartToad138Wheel2, - gKartToad138Wheel3, - gKartToad139Wheel0, - gKartToad139Wheel1, - gKartToad139Wheel2, - gKartToad139Wheel3, - gKartToad140Wheel0, - gKartToad140Wheel1, - gKartToad140Wheel2, - gKartToad140Wheel3, - gKartToad141Wheel0, - gKartToad141Wheel1, - gKartToad141Wheel2, - gKartToad141Wheel3, - gKartToad142Wheel0, - gKartToad142Wheel1, - gKartToad142Wheel2, - gKartToad142Wheel3, - gKartToad143Wheel0, - gKartToad143Wheel1, - gKartToad143Wheel2, - gKartToad143Wheel3, - gKartToad144Wheel0, - gKartToad144Wheel1, - gKartToad144Wheel2, - gKartToad144Wheel3, - gKartToad145Wheel0, - gKartToad145Wheel1, - gKartToad145Wheel2, - gKartToad145Wheel3, - gKartToad146Wheel0, - gKartToad146Wheel1, - gKartToad146Wheel2, - gKartToad146Wheel3, - gKartToad147Wheel0, - gKartToad147Wheel1, - gKartToad147Wheel2, - gKartToad147Wheel3, - gKartToad148Wheel0, - gKartToad148Wheel1, - gKartToad148Wheel2, - gKartToad148Wheel3, - gKartToad149Wheel0, - gKartToad149Wheel1, - gKartToad149Wheel2, - gKartToad149Wheel3, - gKartToad150Wheel0, - gKartToad150Wheel1, - gKartToad150Wheel2, - gKartToad150Wheel3, - gKartToad151Wheel0, - gKartToad151Wheel1, - gKartToad151Wheel2, - gKartToad151Wheel3, - gKartToad152Wheel0, - gKartToad152Wheel1, - gKartToad152Wheel2, - gKartToad152Wheel3, - gKartToad153Wheel0, - gKartToad153Wheel1, - gKartToad153Wheel2, - gKartToad153Wheel3, - gKartToad154Wheel0, - gKartToad154Wheel1, - gKartToad154Wheel2, - gKartToad154Wheel3, - gKartToad155Wheel0, - gKartToad155Wheel1, - gKartToad155Wheel2, - gKartToad155Wheel3, - gKartToad156Wheel0, - gKartToad156Wheel1, - gKartToad156Wheel2, - gKartToad156Wheel3, - gKartToad157Wheel0, - gKartToad157Wheel1, - gKartToad157Wheel2, - gKartToad157Wheel3, - gKartToad158Wheel0, - gKartToad158Wheel1, - gKartToad158Wheel2, - gKartToad158Wheel3, - gKartToad159Wheel0, - gKartToad159Wheel1, - gKartToad159Wheel2, - gKartToad159Wheel3, - gKartToad160Wheel0, - gKartToad160Wheel1, - gKartToad160Wheel2, - gKartToad160Wheel3, - gKartToad161Wheel0, - gKartToad161Wheel1, - gKartToad161Wheel2, - gKartToad161Wheel3, - gKartToad162Wheel0, - gKartToad162Wheel1, - gKartToad162Wheel2, - gKartToad162Wheel3, - gKartToad163Wheel0, - gKartToad163Wheel1, - gKartToad163Wheel2, - gKartToad163Wheel3, - gKartToad164Wheel0, - gKartToad164Wheel1, - gKartToad164Wheel2, - gKartToad164Wheel3, - gKartToad165Wheel0, - gKartToad165Wheel1, - gKartToad165Wheel2, - gKartToad165Wheel3, - gKartToad166Wheel0, - gKartToad166Wheel1, - gKartToad166Wheel2, - gKartToad166Wheel3, - gKartToad167Wheel0, - gKartToad167Wheel1, - gKartToad167Wheel2, - gKartToad167Wheel3, - gKartToad168Wheel0, - gKartToad168Wheel1, - gKartToad168Wheel2, - gKartToad168Wheel3, - gKartToad169Wheel0, - gKartToad169Wheel1, - gKartToad169Wheel2, - gKartToad169Wheel3, - gKartToad170Wheel0, - gKartToad170Wheel1, - gKartToad170Wheel2, - gKartToad170Wheel3, - gKartToad171Wheel0, - gKartToad171Wheel1, - gKartToad171Wheel2, - gKartToad171Wheel3, - gKartToad172Wheel0, - gKartToad172Wheel1, - gKartToad172Wheel2, - gKartToad172Wheel3, - gKartToad173Wheel0, - gKartToad173Wheel1, - gKartToad173Wheel2, - gKartToad173Wheel3, - gKartToad174Wheel0, - gKartToad174Wheel1, - gKartToad174Wheel2, - gKartToad174Wheel3, - gKartToad175Wheel0, - gKartToad175Wheel1, - gKartToad175Wheel2, - gKartToad175Wheel3, - gKartToad176Wheel0, - gKartToad176Wheel1, - gKartToad176Wheel2, - gKartToad176Wheel3, - gKartToad177Wheel0, - gKartToad177Wheel1, - gKartToad177Wheel2, - gKartToad177Wheel3, - gKartToad178Wheel0, - gKartToad178Wheel1, - gKartToad178Wheel2, - gKartToad178Wheel3, - gKartToad179Wheel0, - gKartToad179Wheel1, - gKartToad179Wheel2, - gKartToad179Wheel3, - gKartToad180Wheel0, - gKartToad180Wheel1, - gKartToad180Wheel2, - gKartToad180Wheel3, - gKartToad181Wheel0, - gKartToad181Wheel1, - gKartToad181Wheel2, - gKartToad181Wheel3, - gKartToad182Wheel0, - gKartToad182Wheel1, - gKartToad182Wheel2, - gKartToad182Wheel3, - gKartToad183Wheel0, - gKartToad183Wheel1, - gKartToad183Wheel2, - gKartToad183Wheel3, - gKartToad184Wheel0, - gKartToad184Wheel1, - gKartToad184Wheel2, - gKartToad184Wheel3, - gKartToad185Wheel0, - gKartToad185Wheel1, - gKartToad185Wheel2, - gKartToad185Wheel3, - gKartToad186Wheel0, - gKartToad186Wheel1, - gKartToad186Wheel2, - gKartToad186Wheel3, - gKartToad187Wheel0, - gKartToad187Wheel1, - gKartToad187Wheel2, - gKartToad187Wheel3, - gKartToad188Wheel0, - gKartToad188Wheel1, - gKartToad188Wheel2, - gKartToad188Wheel3, - gKartToad189Wheel0, - gKartToad189Wheel1, - gKartToad189Wheel2, - gKartToad189Wheel3, - gKartToad190Wheel0, - gKartToad190Wheel1, - gKartToad190Wheel2, - gKartToad190Wheel3, - gKartToad191Wheel0, - gKartToad191Wheel1, - gKartToad191Wheel2, - gKartToad191Wheel3, - gKartToad192Wheel0, - gKartToad192Wheel1, - gKartToad192Wheel2, - gKartToad192Wheel3, - gKartToad193Wheel0, - gKartToad193Wheel1, - gKartToad193Wheel2, - gKartToad193Wheel3, - gKartToad194Wheel0, - gKartToad194Wheel1, - gKartToad194Wheel2, - gKartToad194Wheel3, - gKartToad195Wheel0, - gKartToad195Wheel1, - gKartToad195Wheel2, - gKartToad195Wheel3, - gKartToad196Wheel0, - gKartToad196Wheel1, - gKartToad196Wheel2, - gKartToad196Wheel3, - gKartToad197Wheel0, - gKartToad197Wheel1, - gKartToad197Wheel2, - gKartToad197Wheel3, - gKartToad198Wheel0, - gKartToad198Wheel1, - gKartToad198Wheel2, - gKartToad198Wheel3, - gKartToad199Wheel0, - gKartToad199Wheel1, - gKartToad199Wheel2, - gKartToad199Wheel3, - gKartToad200Wheel0, - gKartToad200Wheel1, - gKartToad200Wheel2, - gKartToad200Wheel3, - gKartToad201Wheel0, - gKartToad201Wheel1, - gKartToad201Wheel2, - gKartToad201Wheel3, - gKartToad202Wheel0, - gKartToad202Wheel1, - gKartToad202Wheel2, - gKartToad202Wheel3, - gKartToad203Wheel0, - gKartToad203Wheel1, - gKartToad203Wheel2, - gKartToad203Wheel3, - gKartToad204Wheel0, - gKartToad204Wheel1, - gKartToad204Wheel2, - gKartToad204Wheel3, - gKartToad205Wheel0, - gKartToad205Wheel1, - gKartToad205Wheel2, - gKartToad205Wheel3, - gKartToad206Wheel0, - gKartToad206Wheel1, - gKartToad206Wheel2, - gKartToad206Wheel3, - gKartToad207Wheel0, - gKartToad207Wheel1, - gKartToad207Wheel2, - gKartToad207Wheel3, - gKartToad208Wheel0, - gKartToad208Wheel1, - gKartToad208Wheel2, - gKartToad208Wheel3, - gKartToad209Wheel0, - gKartToad209Wheel1, - gKartToad209Wheel2, - gKartToad209Wheel3, - gKartToad210Wheel0, - gKartToad210Wheel1, - gKartToad210Wheel2, - gKartToad210Wheel3, - gKartToad211Wheel0, - gKartToad211Wheel1, - gKartToad211Wheel2, - gKartToad211Wheel3, - gKartToad212Wheel0, - gKartToad212Wheel1, - gKartToad212Wheel2, - gKartToad212Wheel3, - gKartToad213Wheel0, - gKartToad213Wheel1, - gKartToad213Wheel2, - gKartToad213Wheel3, - gKartToad214Wheel0, - gKartToad214Wheel1, - gKartToad214Wheel2, - gKartToad214Wheel3, - gKartToad215Wheel0, - gKartToad215Wheel1, - gKartToad215Wheel2, - gKartToad215Wheel3, - gKartToad216Wheel0, - gKartToad216Wheel1, - gKartToad216Wheel2, - gKartToad216Wheel3, - gKartToad217Wheel0, - gKartToad217Wheel1, - gKartToad217Wheel2, - gKartToad217Wheel3, - gKartToad218Wheel0, - gKartToad218Wheel1, - gKartToad218Wheel2, - gKartToad218Wheel3, - gKartToad219Wheel0, - gKartToad219Wheel1, - gKartToad219Wheel2, - gKartToad219Wheel3, - gKartToad220Wheel0, - gKartToad220Wheel1, - gKartToad220Wheel2, - gKartToad220Wheel3, - gKartToad221Wheel0, - gKartToad221Wheel1, - gKartToad221Wheel2, - gKartToad221Wheel3, - gKartToad222Wheel0, - gKartToad222Wheel1, - gKartToad222Wheel2, - gKartToad222Wheel3, - gKartToad223Wheel0, - gKartToad223Wheel1, - gKartToad223Wheel2, - gKartToad223Wheel3, - gKartToad224Wheel0, - gKartToad224Wheel1, - gKartToad224Wheel2, - gKartToad224Wheel3, - gKartToad225Wheel0, - gKartToad225Wheel1, - gKartToad225Wheel2, - gKartToad225Wheel3, - gKartToad226Wheel0, - gKartToad226Wheel1, - gKartToad226Wheel2, - gKartToad226Wheel3, - gKartToad227Wheel0, - gKartToad227Wheel1, - gKartToad227Wheel2, - gKartToad227Wheel3, - gKartToad228Wheel0, - gKartToad228Wheel1, - gKartToad228Wheel2, - gKartToad228Wheel3, - gKartToad229Wheel0, - gKartToad229Wheel1, - gKartToad229Wheel2, - gKartToad229Wheel3, - gKartToad230Wheel0, - gKartToad230Wheel1, - gKartToad230Wheel2, - gKartToad230Wheel3, - gKartToad231Wheel0, - gKartToad231Wheel1, - gKartToad231Wheel2, - gKartToad231Wheel3, - gKartToad232Wheel0, - gKartToad232Wheel1, - gKartToad232Wheel2, - gKartToad232Wheel3, - gKartToad233Wheel0, - gKartToad233Wheel1, - gKartToad233Wheel2, - gKartToad233Wheel3, - gKartToad234Wheel0, - gKartToad234Wheel1, - gKartToad234Wheel2, - gKartToad234Wheel3, - gKartToad235Wheel0, - gKartToad235Wheel1, - gKartToad235Wheel2, - gKartToad235Wheel3, - gKartToad236Wheel0, - gKartToad236Wheel1, - gKartToad236Wheel2, - gKartToad236Wheel3, - gKartToad237Wheel0, - gKartToad237Wheel1, - gKartToad237Wheel2, - gKartToad237Wheel3, - gKartToad238Wheel0, - gKartToad238Wheel1, - gKartToad238Wheel2, - gKartToad238Wheel3, - gKartToad239Wheel0, - gKartToad239Wheel1, - gKartToad239Wheel2, - gKartToad239Wheel3, - gKartToad240Wheel0, - gKartToad240Wheel1, - gKartToad240Wheel2, - gKartToad240Wheel3, - gKartToad241Wheel0, - gKartToad241Wheel1, - gKartToad241Wheel2, - gKartToad241Wheel3, - gKartToad242Wheel0, - gKartToad242Wheel1, - gKartToad242Wheel2, - gKartToad242Wheel3, - gKartToad243Wheel0, - gKartToad243Wheel1, - gKartToad243Wheel2, - gKartToad243Wheel3, - gKartToad244Wheel0, - gKartToad244Wheel1, - gKartToad244Wheel2, - gKartToad244Wheel3, - gKartToad245Wheel0, - gKartToad245Wheel1, - gKartToad245Wheel2, - gKartToad245Wheel3, - gKartToad246Wheel0, - gKartToad246Wheel1, - gKartToad246Wheel2, - gKartToad246Wheel3, - gKartToad247Wheel0, - gKartToad247Wheel1, - gKartToad247Wheel2, - gKartToad247Wheel3, - gKartToad248Wheel0, - gKartToad248Wheel1, - gKartToad248Wheel2, - gKartToad248Wheel3, - gKartToad249Wheel0, - gKartToad249Wheel1, - gKartToad249Wheel2, - gKartToad249Wheel3, - gKartToad250Wheel0, - gKartToad250Wheel1, - gKartToad250Wheel2, - gKartToad250Wheel3, - gKartToad251Wheel0, - gKartToad251Wheel1, - gKartToad251Wheel2, - gKartToad251Wheel3, - gKartToad252Wheel0, - gKartToad252Wheel1, - gKartToad252Wheel2, - gKartToad252Wheel3, - gKartToad253Wheel0, - gKartToad253Wheel1, - gKartToad253Wheel2, - gKartToad253Wheel3, - gKartToad254Wheel0, - gKartToad254Wheel1, - gKartToad254Wheel2, - gKartToad254Wheel3, - gKartToad255Wheel0, - gKartToad255Wheel1, - gKartToad255Wheel2, - gKartToad255Wheel3, - gKartToad256Wheel0, - gKartToad256Wheel1, - gKartToad256Wheel2, - gKartToad256Wheel3, - gKartToad257Wheel0, - gKartToad257Wheel1, - gKartToad257Wheel2, - gKartToad257Wheel3, - gKartToad258Wheel0, - gKartToad258Wheel1, - gKartToad258Wheel2, - gKartToad258Wheel3, - gKartToad259Wheel0, - gKartToad259Wheel1, - gKartToad259Wheel2, - gKartToad259Wheel3, - gKartToad260Wheel0, - gKartToad260Wheel1, - gKartToad260Wheel2, - gKartToad260Wheel3, - gKartToad261Wheel0, - gKartToad261Wheel1, - gKartToad261Wheel2, - gKartToad261Wheel3, - gKartToad262Wheel0, - gKartToad262Wheel1, - gKartToad262Wheel2, - gKartToad262Wheel3, - gKartToad263Wheel0, - gKartToad263Wheel1, - gKartToad263Wheel2, - gKartToad263Wheel3, - gKartToad264Wheel0, - gKartToad264Wheel1, - gKartToad264Wheel2, - gKartToad264Wheel3, - gKartToad265Wheel0, - gKartToad265Wheel1, - gKartToad265Wheel2, - gKartToad265Wheel3, - gKartToad266Wheel0, - gKartToad266Wheel1, - gKartToad266Wheel2, - gKartToad266Wheel3, - gKartToad267Wheel0, - gKartToad267Wheel1, - gKartToad267Wheel2, - gKartToad267Wheel3, - gKartToad268Wheel0, - gKartToad268Wheel1, - gKartToad268Wheel2, - gKartToad268Wheel3, - gKartToad269Wheel0, - gKartToad269Wheel1, - gKartToad269Wheel2, - gKartToad269Wheel3, - gKartToad270Wheel0, - gKartToad270Wheel1, - gKartToad270Wheel2, - gKartToad270Wheel3, - gKartToad271Wheel0, - gKartToad271Wheel1, - gKartToad271Wheel2, - gKartToad271Wheel3, - gKartToad272Wheel0, - gKartToad272Wheel1, - gKartToad272Wheel2, - gKartToad272Wheel3, - gKartToad273Wheel0, - gKartToad273Wheel1, - gKartToad273Wheel2, - gKartToad273Wheel3, - gKartToad274Wheel0, - gKartToad274Wheel1, - gKartToad274Wheel2, - gKartToad274Wheel3, - gKartToad275Wheel0, - gKartToad275Wheel1, - gKartToad275Wheel2, - gKartToad275Wheel3, - gKartToad276Wheel0, - gKartToad276Wheel1, - gKartToad276Wheel2, - gKartToad276Wheel3, - gKartToad277Wheel0, - gKartToad277Wheel1, - gKartToad277Wheel2, - gKartToad277Wheel3, - gKartToad278Wheel0, - gKartToad278Wheel1, - gKartToad278Wheel2, - gKartToad278Wheel3, - gKartToad279Wheel0, - gKartToad279Wheel1, - gKartToad279Wheel2, - gKartToad279Wheel3, - gKartToad280Wheel0, - gKartToad280Wheel1, - gKartToad280Wheel2, - gKartToad280Wheel3, - gKartToad281Wheel0, - gKartToad281Wheel1, - gKartToad281Wheel2, - gKartToad281Wheel3, - gKartToad282Wheel0, - gKartToad282Wheel1, - gKartToad282Wheel2, - gKartToad282Wheel3, - gKartToad283Wheel0, - gKartToad283Wheel1, - gKartToad283Wheel2, - gKartToad283Wheel3, - gKartToad284Wheel0, - gKartToad284Wheel1, - gKartToad284Wheel2, - gKartToad284Wheel3, - gKartToad285Wheel0, - gKartToad285Wheel1, - gKartToad285Wheel2, - gKartToad285Wheel3, - gKartToad286Wheel0, - gKartToad286Wheel1, - gKartToad286Wheel2, - gKartToad286Wheel3, - gKartToad287Wheel0, - gKartToad287Wheel1, - gKartToad287Wheel2, - gKartToad287Wheel3, - gKartToad288Wheel0, - gKartToad288Wheel1, - gKartToad288Wheel2, - gKartToad288Wheel3, -}; - -static const ALIGN_ASSET(2) char gKartToadPalette[] = "__OTR__toad_kart/toad_kart_palette"; - diff --git a/include/assets/toads_turnpike_data.h b/include/assets/toads_turnpike_data.h deleted file mode 100644 index 6557ebdd3..000000000 --- a/include/assets/toads_turnpike_data.h +++ /dev/null @@ -1,994 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_60[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_60"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_60[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_60"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_80[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_80"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_158[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_158"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2D0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2D0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_380[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_380"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_438[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_438"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_4E8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_4E8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_5B8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_5B8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_668[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_668"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_718[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_718"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_7D8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_7D8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_878[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_878"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_948[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_948"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_9F0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_9F0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_AC8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_AC8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_B88[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_B88"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_C70[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_C70"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_D00[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_D00"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_DD0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_DD0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_E70[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_E70"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_F18[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_F18"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_FA8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_FA8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1070[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1070"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1118[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1118"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_11C0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_11C0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1250[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1250"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1310[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1310"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_13E0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_13E0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1468[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1468"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1510[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1510"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_15A8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_15A8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1678[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1678"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1708[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1708"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_17F8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_17F8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18C0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_18C0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19C0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19C0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A60[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A60"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B50[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B50"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C10[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1C10"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1D18[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1D18"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1DC0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1DC0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E80[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E80"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F40[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F40"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2030[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2030"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20F8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_20F8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21C8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21C8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22A8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22A8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2358[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2358"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2440[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2440"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2530[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2530"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2628[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2628"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_26D8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_26D8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_27D0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_27D0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2898[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2898"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2960[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2960"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2A00[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2A00"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2AF0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2AF0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2B88[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2B88"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2C38[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2C38"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2CC0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2CC0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2DB8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2DB8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2E50[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2E50"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2EF0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2EF0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_2F78[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_2F78"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3030[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3030"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_30F8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_30F8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3190[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3190"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3228[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3228"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_32F0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_32F0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_33A0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_33A0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3438[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3438"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_34D0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_34D0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3570[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3570"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3618[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3618"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_36A8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_36A8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3758[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3758"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_37F0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_37F0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3910[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3910"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_39C8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_39C8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_3AD8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_3AD8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_unknown_waypoints[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_track_waypoints[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_unk_windshield1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_unk_windshield1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_unk_windshield2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_unk_windshield2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_box1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_box1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck1_headlights[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck1_headlights"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck1_tyre[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck1_tyre"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck1_cab[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck1_cab"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck1_cab_side[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck1_cab_side"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_back_lod0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_back_lod0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_side[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_side"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_door_lod0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_door_lod0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_window[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_window"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_front_lod0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_front_lod0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_black[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_black"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_driver_window[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_driver_window"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_door_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_door_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_side_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_side_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_front_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_front_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_back_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_back_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_stripe[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_stripe"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_windshield[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_windshield"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_front[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_front"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_headlights[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_headlights"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_bumper[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_bumper"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_side_back_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_side_back_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_back_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_back_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_side_front_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_side_front_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_front_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_front_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_box2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_box2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_box3[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_box3"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_headlights[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_headlights"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_taillights[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_taillights"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_front_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_front_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_back_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_back_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_side_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_side_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_model_lod0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_model_lod0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model3[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model3"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model4[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model4"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model5[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model5"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model6[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model6"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model7[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model7"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model9[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model9"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model10[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model10"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model11[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model11"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model12[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model12"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model13[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model13"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18DB8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_18DB8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_18DB8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_18DB8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18E38[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_18E38"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_18E38[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_18E38"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18EB8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_18EB8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_18EB8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_18EB8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18F58[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_18F58"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_18F58[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_18F58"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_18FF8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_18FF8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_18FF8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_18FF8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19020[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19020"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19030[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19030"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19030[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19030"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_190E8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_190E8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_190E8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_190E8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19168[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19168"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19168[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19168"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_192B0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_192B0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_192B0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_192B0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19390[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19390"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19390[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19390"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19450[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19450"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19450[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19450"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_194E0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_194E0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_194E0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_194E0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19518[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19518"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_model_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_model_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model14[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model14"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model15[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model15"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model16[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model16"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model17[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model17"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model18[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model18"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model19[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model19"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model20[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model20"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19CF8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19CF8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19CF8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19CF8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19D68[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19D68"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19D68[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19D68"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19DD8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19DD8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19DD8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19DD8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19DF0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19DF0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19E00[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19E00"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19E00[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19E00"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19E38[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19E38"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19E38[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19E38"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19EA0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19EA0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19EA0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19EA0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_19F08[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_19F08"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_19F08[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_19F08"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A040[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A040"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1A040[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1A040"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A068[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A068"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_model_lod2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_model_lod2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model21[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model21"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model22[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model22"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model23[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model23"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_truck_unknown_model24[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_truck_unknown_model24"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A4B8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A4B8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1A4B8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1A4B8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A528[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A528"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1A528[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1A528"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A5E0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A5E0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1A5E0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1A5E0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A5F8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A5F8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A608[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A608"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1A608[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1A608"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A640[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A640"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1A640[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1A640"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A6B0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A6B0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1A6B0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1A6B0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1A6C8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1A6C8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_model_lod0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_model_lod0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model3[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model3"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model4[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model4"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model5[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model5"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model6[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model6"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model7[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model7"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model9[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model9"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model10[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model10"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model11[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model11"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model12[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model12"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model13[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model13"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model14[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model14"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model15[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model15"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1B5C8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1B5C8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B5C8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B5C8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B658[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B658"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1B658[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1B658"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B6D8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B6D8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1B6D8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1B6D8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B758[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B758"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1B758[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1B758"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B778[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B778"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1B788[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1B788"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B788[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B788"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B810[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B810"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1B810[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1B810"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1B8A0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1B8A0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1B8A0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1B8A0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1BC78[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1BC78"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1BC78[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1BC78"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1BD48[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1BD48"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1BD48[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1BD48"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1BE18[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1BE18"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1BE18[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1BE18"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1BE48[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1BE48"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_model_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_model_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model16[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model16"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model17[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model17"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model18[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model18"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model19[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model19"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model20[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model20"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model21[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model21"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model22[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model22"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model23[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model23"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model24[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model24"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model25[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model25"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C628[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1C628"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1C628[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1C628"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C688[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1C688"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1C688[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1C688"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1C6E8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1C6E8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C6E8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1C6E8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C700[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1C700"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C710[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1C710"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1C710[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1C710"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C770[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1C770"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1C770[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1C770"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1C7D0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1C7D0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1C7D0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1C7D0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CA88[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1CA88"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1CA88[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1CA88"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CAA8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1CAA8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_model_lod2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_model_lod2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model26[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model26"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model27[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model27"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model28[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model28"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model29[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model29"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model30[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model30"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_bus_unknown_model31[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_bus_unknown_model31"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1CD98[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1CD98"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CD98[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1CD98"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1CDF8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1CDF8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CDF8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1CDF8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1CE58[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1CE58"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CE58[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1CE58"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CE70[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1CE70"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1CE80[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1CE80"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1CE80[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1CE80"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1D008[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1D008"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1D008[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1D008"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1D018[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1D018"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_model_lod0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_model_lod0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model3[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model3"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model4[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model4"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model5[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model5"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model6[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model6"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model7[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model7"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model9[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model9"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model10[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model10"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model11[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model11"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model12[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model12"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model13[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model13"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model14[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model14"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E288[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E288"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E288[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E288"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E318[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E318"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E318[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E318"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E3A8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E3A8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E3A8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E3A8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E438[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E438"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E438[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E438"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E458[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E458"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E468[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E468"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E468[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E468"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E508[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E508"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E508[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E508"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E810[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E810"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E810[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E810"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E8A0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E8A0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E8A0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E8A0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1E970[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1E970"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1E970[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1E970"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1EA40[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1EA40"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1EA40[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1EA40"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1EB10[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1EB10"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1EB10[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1EB10"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1EB48[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1EB48"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_model_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_model_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model15[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model15"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model16[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model16"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model17[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model17"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model18[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model18"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model19[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model19"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model20[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model20"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model21[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model21"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model22[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model22"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model23[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model23"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model24[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model24"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model25[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model25"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model26[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model26"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model27[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model27"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model28[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model28"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model29[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model29"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model30[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model30"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1F7D8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1F7D8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F7D8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F7D8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1F850[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1F850"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F850[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F850"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1F8C0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1F8C0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F8C0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F8C0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F938[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F938"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1F938[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1F938"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F9A8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F9A8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1F9A8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1F9A8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F9D0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F9D0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1F9E0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1F9E0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1F9E0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1F9E0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1FCD8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1FCD8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FCD8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1FCD8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FD58[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1FD58"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1FD58[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1FD58"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FDD0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1FDD0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1FDD0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1FDD0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FE50[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1FE50"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1FE50[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1FE50"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1FEC8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1FEC8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FEC8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1FEC8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1FF50[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1FF50"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FF50[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1FF50"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_1FFC8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_1FFC8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_1FFC8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_1FFC8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20008[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_20008"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_model_lod2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_model_lod2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model31[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model31"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model32[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model32"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_tanker_truck_unknown_model33[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_tanker_truck_unknown_model33"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_20348[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_20348"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20348[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_20348"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_20450[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_20450"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20450[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_20450"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_204F8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_204F8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_204F8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_204F8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20510[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_20510"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_20520[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_20520"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20520[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_20520"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_20598[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_20598"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_20598[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_20598"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_205A8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_205A8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_model_lod0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_model_lod0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model3[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model3"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model4[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model4"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model5[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model5"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model6[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model6"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model7[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model7"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model9[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model9"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model10[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model10"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model11[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model11"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model12[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model12"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model13[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model13"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model14[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model14"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model15[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model15"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21648[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21648"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21648[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21648"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_216D8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_216D8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_216D8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_216D8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21768[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21768"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21768[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21768"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21780[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21780"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21790[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21790"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21790[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21790"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21820[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21820"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21820[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21820"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_218B0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_218B0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_218B0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_218B0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21950[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21950"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21950[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21950"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21A28[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21A28"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21A28[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21A28"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21C78[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21C78"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21C78[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21C78"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21CD0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21CD0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21CD0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21CD0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21D28[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21D28"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21D28[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21D28"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21D80[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21D80"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21D80[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21D80"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_21DD8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_21DD8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21DD8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21DD8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_21E28[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_21E28"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_model_lod1[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_model_lod1"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model16[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model16"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model17[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model17"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model18[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model18"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model19[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model19"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model20[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model20"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model21[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model21"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model22[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model22"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model23[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model23"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model24[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model24"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model25[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model25"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model26[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model26"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22A68[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22A68"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22A68[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22A68"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22AF8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22AF8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22AF8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22AF8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22B88[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22B88"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22B88[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22B88"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22BA0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22BA0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22BB0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22BB0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22BB0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22BB0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22C50[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22C50"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22C50[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22C50"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22C88[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22C88"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22C88[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22C88"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22CC0[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22CC0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22CC0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22CC0"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22D60[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22D60"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22D60[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22D60"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_22E38[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_22E38"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_22E38[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_22E38"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_23040[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_23040"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23040[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23040"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23078[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23078"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_model_lod2[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_model_lod2"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model27[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model27"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model28[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model28"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model29[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model29"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model30[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model30"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model31[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model31"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_car_unknown_model32[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_car_unknown_model32"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_23538[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_23538"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23538[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23538"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23600[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23600"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_23600[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_23600"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23678[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23678"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_23678[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_23678"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_237D8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_237D8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_237D8[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_237D8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_237F8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_237F8"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_23808[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_23808"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23808[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23808"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23838[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23838"; - -static const ALIGN_ASSET(2) char toads_turnpike_data_seg6_gfx_23838[] = "__OTR__toads_turnpike_data/toads_turnpike_data_seg6_gfx_23838"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23848[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23848"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23858[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23858"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_238A0[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_238A0"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_238E8[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_238E8"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_dl_23930[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_dl_23930"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_item_box_spawns[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_addr[] = "__OTR__toads_turnpike_data/d_course_toads_turnpike_addr"; - diff --git a/include/assets/toads_turnpike_displaylists.h b/include/assets/toads_turnpike_displaylists.h deleted file mode 100644 index 634cbfb49..000000000 --- a/include/assets/toads_turnpike_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_packed_dls[] = "__OTR__toads_turnpike_displaylists/d_course_toads_turnpike_packed_dls"; - diff --git a/include/assets/toads_turnpike_offsets.h b/include/assets/toads_turnpike_offsets.h deleted file mode 100644 index 5739bbfb2..000000000 --- a/include/assets/toads_turnpike_offsets.h +++ /dev/null @@ -1,30 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char toads_turnpike_dl_0[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_0"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_1[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_1"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_2[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_2"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_3[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_3"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_4[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_4"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_5[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_5"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_6[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_6"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_7[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_7"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_8[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_8"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_9[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_9"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_10[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_10"; - -static const ALIGN_ASSET(2) char toads_turnpike_dl_11[] = "__OTR__toads_turnpike_offsets/toads_turnpike_dl_11"; - diff --git a/include/assets/toads_turnpike_vertices.h b/include/assets/toads_turnpike_vertices.h deleted file mode 100644 index cff4f19b9..000000000 --- a/include/assets/toads_turnpike_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_toads_turnpike_vertex[] = "__OTR__toads_turnpike_vertices/d_course_toads_turnpike_vertex"; - diff --git a/include/assets/wario_kart.h b/include/assets/wario_kart.h deleted file mode 100644 index a82b93d45..000000000 --- a/include/assets/wario_kart.h +++ /dev/null @@ -1,4120 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gKartWario000[] = "__OTR__wario_kart/wario_kart_frame000"; - -static const ALIGN_ASSET(2) char gKartWario001[] = "__OTR__wario_kart/wario_kart_frame001"; - -static const ALIGN_ASSET(2) char gKartWario002[] = "__OTR__wario_kart/wario_kart_frame002"; - -static const ALIGN_ASSET(2) char gKartWario003[] = "__OTR__wario_kart/wario_kart_frame003"; - -static const ALIGN_ASSET(2) char gKartWario004[] = "__OTR__wario_kart/wario_kart_frame004"; - -static const ALIGN_ASSET(2) char gKartWario005[] = "__OTR__wario_kart/wario_kart_frame005"; - -static const ALIGN_ASSET(2) char gKartWario006[] = "__OTR__wario_kart/wario_kart_frame006"; - -static const ALIGN_ASSET(2) char gKartWario007[] = "__OTR__wario_kart/wario_kart_frame007"; - -static const ALIGN_ASSET(2) char gKartWario008[] = "__OTR__wario_kart/wario_kart_frame008"; - -static const ALIGN_ASSET(2) char gKartWario009[] = "__OTR__wario_kart/wario_kart_frame009"; - -static const ALIGN_ASSET(2) char gKartWario010[] = "__OTR__wario_kart/wario_kart_frame010"; - -static const ALIGN_ASSET(2) char gKartWario011[] = "__OTR__wario_kart/wario_kart_frame011"; - -static const ALIGN_ASSET(2) char gKartWario012[] = "__OTR__wario_kart/wario_kart_frame012"; - -static const ALIGN_ASSET(2) char gKartWario013[] = "__OTR__wario_kart/wario_kart_frame013"; - -static const ALIGN_ASSET(2) char gKartWario014[] = "__OTR__wario_kart/wario_kart_frame014"; - -static const ALIGN_ASSET(2) char gKartWario015[] = "__OTR__wario_kart/wario_kart_frame015"; - -static const ALIGN_ASSET(2) char gKartWario016[] = "__OTR__wario_kart/wario_kart_frame016"; - -static const ALIGN_ASSET(2) char gKartWario017[] = "__OTR__wario_kart/wario_kart_frame017"; - -static const ALIGN_ASSET(2) char gKartWario018[] = "__OTR__wario_kart/wario_kart_frame018"; - -static const ALIGN_ASSET(2) char gKartWario019[] = "__OTR__wario_kart/wario_kart_frame019"; - -static const ALIGN_ASSET(2) char gKartWario020[] = "__OTR__wario_kart/wario_kart_frame020"; - -static const ALIGN_ASSET(2) char gKartWario021[] = "__OTR__wario_kart/wario_kart_frame021"; - -static const ALIGN_ASSET(2) char gKartWario022[] = "__OTR__wario_kart/wario_kart_frame022"; - -static const ALIGN_ASSET(2) char gKartWario023[] = "__OTR__wario_kart/wario_kart_frame023"; - -static const ALIGN_ASSET(2) char gKartWario024[] = "__OTR__wario_kart/wario_kart_frame024"; - -static const ALIGN_ASSET(2) char gKartWario025[] = "__OTR__wario_kart/wario_kart_frame025"; - -static const ALIGN_ASSET(2) char gKartWario026[] = "__OTR__wario_kart/wario_kart_frame026"; - -static const ALIGN_ASSET(2) char gKartWario027[] = "__OTR__wario_kart/wario_kart_frame027"; - -static const ALIGN_ASSET(2) char gKartWario028[] = "__OTR__wario_kart/wario_kart_frame028"; - -static const ALIGN_ASSET(2) char gKartWario029[] = "__OTR__wario_kart/wario_kart_frame029"; - -static const ALIGN_ASSET(2) char gKartWario030[] = "__OTR__wario_kart/wario_kart_frame030"; - -static const ALIGN_ASSET(2) char gKartWario031[] = "__OTR__wario_kart/wario_kart_frame031"; - -static const ALIGN_ASSET(2) char gKartWario032[] = "__OTR__wario_kart/wario_kart_frame032"; - -static const ALIGN_ASSET(2) char gKartWario033[] = "__OTR__wario_kart/wario_kart_frame033"; - -static const ALIGN_ASSET(2) char gKartWario034[] = "__OTR__wario_kart/wario_kart_frame034"; - -static const ALIGN_ASSET(2) char gKartWario035[] = "__OTR__wario_kart/wario_kart_frame035"; - -static const ALIGN_ASSET(2) char gKartWario036[] = "__OTR__wario_kart/wario_kart_frame036"; - -static const ALIGN_ASSET(2) char gKartWario037[] = "__OTR__wario_kart/wario_kart_frame037"; - -static const ALIGN_ASSET(2) char gKartWario038[] = "__OTR__wario_kart/wario_kart_frame038"; - -static const ALIGN_ASSET(2) char gKartWario039[] = "__OTR__wario_kart/wario_kart_frame039"; - -static const ALIGN_ASSET(2) char gKartWario040[] = "__OTR__wario_kart/wario_kart_frame040"; - -static const ALIGN_ASSET(2) char gKartWario041[] = "__OTR__wario_kart/wario_kart_frame041"; - -static const ALIGN_ASSET(2) char gKartWario042[] = "__OTR__wario_kart/wario_kart_frame042"; - -static const ALIGN_ASSET(2) char gKartWario043[] = "__OTR__wario_kart/wario_kart_frame043"; - -static const ALIGN_ASSET(2) char gKartWario044[] = "__OTR__wario_kart/wario_kart_frame044"; - -static const ALIGN_ASSET(2) char gKartWario045[] = "__OTR__wario_kart/wario_kart_frame045"; - -static const ALIGN_ASSET(2) char gKartWario046[] = "__OTR__wario_kart/wario_kart_frame046"; - -static const ALIGN_ASSET(2) char gKartWario047[] = "__OTR__wario_kart/wario_kart_frame047"; - -static const ALIGN_ASSET(2) char gKartWario048[] = "__OTR__wario_kart/wario_kart_frame048"; - -static const ALIGN_ASSET(2) char gKartWario049[] = "__OTR__wario_kart/wario_kart_frame049"; - -static const ALIGN_ASSET(2) char gKartWario050[] = "__OTR__wario_kart/wario_kart_frame050"; - -static const ALIGN_ASSET(2) char gKartWario051[] = "__OTR__wario_kart/wario_kart_frame051"; - -static const ALIGN_ASSET(2) char gKartWario052[] = "__OTR__wario_kart/wario_kart_frame052"; - -static const ALIGN_ASSET(2) char gKartWario053[] = "__OTR__wario_kart/wario_kart_frame053"; - -static const ALIGN_ASSET(2) char gKartWario054[] = "__OTR__wario_kart/wario_kart_frame054"; - -static const ALIGN_ASSET(2) char gKartWario055[] = "__OTR__wario_kart/wario_kart_frame055"; - -static const ALIGN_ASSET(2) char gKartWario056[] = "__OTR__wario_kart/wario_kart_frame056"; - -static const ALIGN_ASSET(2) char gKartWario057[] = "__OTR__wario_kart/wario_kart_frame057"; - -static const ALIGN_ASSET(2) char gKartWario058[] = "__OTR__wario_kart/wario_kart_frame058"; - -static const ALIGN_ASSET(2) char gKartWario059[] = "__OTR__wario_kart/wario_kart_frame059"; - -static const ALIGN_ASSET(2) char gKartWario060[] = "__OTR__wario_kart/wario_kart_frame060"; - -static const ALIGN_ASSET(2) char gKartWario061[] = "__OTR__wario_kart/wario_kart_frame061"; - -static const ALIGN_ASSET(2) char gKartWario062[] = "__OTR__wario_kart/wario_kart_frame062"; - -static const ALIGN_ASSET(2) char gKartWario063[] = "__OTR__wario_kart/wario_kart_frame063"; - -static const ALIGN_ASSET(2) char gKartWario064[] = "__OTR__wario_kart/wario_kart_frame064"; - -static const ALIGN_ASSET(2) char gKartWario065[] = "__OTR__wario_kart/wario_kart_frame065"; - -static const ALIGN_ASSET(2) char gKartWario066[] = "__OTR__wario_kart/wario_kart_frame066"; - -static const ALIGN_ASSET(2) char gKartWario067[] = "__OTR__wario_kart/wario_kart_frame067"; - -static const ALIGN_ASSET(2) char gKartWario068[] = "__OTR__wario_kart/wario_kart_frame068"; - -static const ALIGN_ASSET(2) char gKartWario069[] = "__OTR__wario_kart/wario_kart_frame069"; - -static const ALIGN_ASSET(2) char gKartWario070[] = "__OTR__wario_kart/wario_kart_frame070"; - -static const ALIGN_ASSET(2) char gKartWario071[] = "__OTR__wario_kart/wario_kart_frame071"; - -static const ALIGN_ASSET(2) char gKartWario072[] = "__OTR__wario_kart/wario_kart_frame072"; - -static const ALIGN_ASSET(2) char gKartWario073[] = "__OTR__wario_kart/wario_kart_frame073"; - -static const ALIGN_ASSET(2) char gKartWario074[] = "__OTR__wario_kart/wario_kart_frame074"; - -static const ALIGN_ASSET(2) char gKartWario075[] = "__OTR__wario_kart/wario_kart_frame075"; - -static const ALIGN_ASSET(2) char gKartWario076[] = "__OTR__wario_kart/wario_kart_frame076"; - -static const ALIGN_ASSET(2) char gKartWario077[] = "__OTR__wario_kart/wario_kart_frame077"; - -static const ALIGN_ASSET(2) char gKartWario078[] = "__OTR__wario_kart/wario_kart_frame078"; - -static const ALIGN_ASSET(2) char gKartWario079[] = "__OTR__wario_kart/wario_kart_frame079"; - -static const ALIGN_ASSET(2) char gKartWario080[] = "__OTR__wario_kart/wario_kart_frame080"; - -static const ALIGN_ASSET(2) char gKartWario081[] = "__OTR__wario_kart/wario_kart_frame081"; - -static const ALIGN_ASSET(2) char gKartWario082[] = "__OTR__wario_kart/wario_kart_frame082"; - -static const ALIGN_ASSET(2) char gKartWario083[] = "__OTR__wario_kart/wario_kart_frame083"; - -static const ALIGN_ASSET(2) char gKartWario084[] = "__OTR__wario_kart/wario_kart_frame084"; - -static const ALIGN_ASSET(2) char gKartWario085[] = "__OTR__wario_kart/wario_kart_frame085"; - -static const ALIGN_ASSET(2) char gKartWario086[] = "__OTR__wario_kart/wario_kart_frame086"; - -static const ALIGN_ASSET(2) char gKartWario087[] = "__OTR__wario_kart/wario_kart_frame087"; - -static const ALIGN_ASSET(2) char gKartWario088[] = "__OTR__wario_kart/wario_kart_frame088"; - -static const ALIGN_ASSET(2) char gKartWario089[] = "__OTR__wario_kart/wario_kart_frame089"; - -static const ALIGN_ASSET(2) char gKartWario090[] = "__OTR__wario_kart/wario_kart_frame090"; - -static const ALIGN_ASSET(2) char gKartWario091[] = "__OTR__wario_kart/wario_kart_frame091"; - -static const ALIGN_ASSET(2) char gKartWario092[] = "__OTR__wario_kart/wario_kart_frame092"; - -static const ALIGN_ASSET(2) char gKartWario093[] = "__OTR__wario_kart/wario_kart_frame093"; - -static const ALIGN_ASSET(2) char gKartWario094[] = "__OTR__wario_kart/wario_kart_frame094"; - -static const ALIGN_ASSET(2) char gKartWario095[] = "__OTR__wario_kart/wario_kart_frame095"; - -static const ALIGN_ASSET(2) char gKartWario096[] = "__OTR__wario_kart/wario_kart_frame096"; - -static const ALIGN_ASSET(2) char gKartWario097[] = "__OTR__wario_kart/wario_kart_frame097"; - -static const ALIGN_ASSET(2) char gKartWario098[] = "__OTR__wario_kart/wario_kart_frame098"; - -static const ALIGN_ASSET(2) char gKartWario099[] = "__OTR__wario_kart/wario_kart_frame099"; - -static const ALIGN_ASSET(2) char gKartWario100[] = "__OTR__wario_kart/wario_kart_frame100"; - -static const ALIGN_ASSET(2) char gKartWario101[] = "__OTR__wario_kart/wario_kart_frame101"; - -static const ALIGN_ASSET(2) char gKartWario102[] = "__OTR__wario_kart/wario_kart_frame102"; - -static const ALIGN_ASSET(2) char gKartWario103[] = "__OTR__wario_kart/wario_kart_frame103"; - -static const ALIGN_ASSET(2) char gKartWario104[] = "__OTR__wario_kart/wario_kart_frame104"; - -static const ALIGN_ASSET(2) char gKartWario105[] = "__OTR__wario_kart/wario_kart_frame105"; - -static const ALIGN_ASSET(2) char gKartWario106[] = "__OTR__wario_kart/wario_kart_frame106"; - -static const ALIGN_ASSET(2) char gKartWario107[] = "__OTR__wario_kart/wario_kart_frame107"; - -static const ALIGN_ASSET(2) char gKartWario108[] = "__OTR__wario_kart/wario_kart_frame108"; - -static const ALIGN_ASSET(2) char gKartWario109[] = "__OTR__wario_kart/wario_kart_frame109"; - -static const ALIGN_ASSET(2) char gKartWario110[] = "__OTR__wario_kart/wario_kart_frame110"; - -static const ALIGN_ASSET(2) char gKartWario111[] = "__OTR__wario_kart/wario_kart_frame111"; - -static const ALIGN_ASSET(2) char gKartWario112[] = "__OTR__wario_kart/wario_kart_frame112"; - -static const ALIGN_ASSET(2) char gKartWario113[] = "__OTR__wario_kart/wario_kart_frame113"; - -static const ALIGN_ASSET(2) char gKartWario114[] = "__OTR__wario_kart/wario_kart_frame114"; - -static const ALIGN_ASSET(2) char gKartWario115[] = "__OTR__wario_kart/wario_kart_frame115"; - -static const ALIGN_ASSET(2) char gKartWario116[] = "__OTR__wario_kart/wario_kart_frame116"; - -static const ALIGN_ASSET(2) char gKartWario117[] = "__OTR__wario_kart/wario_kart_frame117"; - -static const ALIGN_ASSET(2) char gKartWario118[] = "__OTR__wario_kart/wario_kart_frame118"; - -static const ALIGN_ASSET(2) char gKartWario119[] = "__OTR__wario_kart/wario_kart_frame119"; - -static const ALIGN_ASSET(2) char gKartWario120[] = "__OTR__wario_kart/wario_kart_frame120"; - -static const ALIGN_ASSET(2) char gKartWario121[] = "__OTR__wario_kart/wario_kart_frame121"; - -static const ALIGN_ASSET(2) char gKartWario122[] = "__OTR__wario_kart/wario_kart_frame122"; - -static const ALIGN_ASSET(2) char gKartWario123[] = "__OTR__wario_kart/wario_kart_frame123"; - -static const ALIGN_ASSET(2) char gKartWario124[] = "__OTR__wario_kart/wario_kart_frame124"; - -static const ALIGN_ASSET(2) char gKartWario125[] = "__OTR__wario_kart/wario_kart_frame125"; - -static const ALIGN_ASSET(2) char gKartWario126[] = "__OTR__wario_kart/wario_kart_frame126"; - -static const ALIGN_ASSET(2) char gKartWario127[] = "__OTR__wario_kart/wario_kart_frame127"; - -static const ALIGN_ASSET(2) char gKartWario128[] = "__OTR__wario_kart/wario_kart_frame128"; - -static const ALIGN_ASSET(2) char gKartWario129[] = "__OTR__wario_kart/wario_kart_frame129"; - -static const ALIGN_ASSET(2) char gKartWario130[] = "__OTR__wario_kart/wario_kart_frame130"; - -static const ALIGN_ASSET(2) char gKartWario131[] = "__OTR__wario_kart/wario_kart_frame131"; - -static const ALIGN_ASSET(2) char gKartWario132[] = "__OTR__wario_kart/wario_kart_frame132"; - -static const ALIGN_ASSET(2) char gKartWario133[] = "__OTR__wario_kart/wario_kart_frame133"; - -static const ALIGN_ASSET(2) char gKartWario134[] = "__OTR__wario_kart/wario_kart_frame134"; - -static const ALIGN_ASSET(2) char gKartWario135[] = "__OTR__wario_kart/wario_kart_frame135"; - -static const ALIGN_ASSET(2) char gKartWario136[] = "__OTR__wario_kart/wario_kart_frame136"; - -static const ALIGN_ASSET(2) char gKartWario137[] = "__OTR__wario_kart/wario_kart_frame137"; - -static const ALIGN_ASSET(2) char gKartWario138[] = "__OTR__wario_kart/wario_kart_frame138"; - -static const ALIGN_ASSET(2) char gKartWario139[] = "__OTR__wario_kart/wario_kart_frame139"; - -static const ALIGN_ASSET(2) char gKartWario140[] = "__OTR__wario_kart/wario_kart_frame140"; - -static const ALIGN_ASSET(2) char gKartWario141[] = "__OTR__wario_kart/wario_kart_frame141"; - -static const ALIGN_ASSET(2) char gKartWario142[] = "__OTR__wario_kart/wario_kart_frame142"; - -static const ALIGN_ASSET(2) char gKartWario143[] = "__OTR__wario_kart/wario_kart_frame143"; - -static const ALIGN_ASSET(2) char gKartWario144[] = "__OTR__wario_kart/wario_kart_frame144"; - -static const ALIGN_ASSET(2) char gKartWario145[] = "__OTR__wario_kart/wario_kart_frame145"; - -static const ALIGN_ASSET(2) char gKartWario146[] = "__OTR__wario_kart/wario_kart_frame146"; - -static const ALIGN_ASSET(2) char gKartWario147[] = "__OTR__wario_kart/wario_kart_frame147"; - -static const ALIGN_ASSET(2) char gKartWario148[] = "__OTR__wario_kart/wario_kart_frame148"; - -static const ALIGN_ASSET(2) char gKartWario149[] = "__OTR__wario_kart/wario_kart_frame149"; - -static const ALIGN_ASSET(2) char gKartWario150[] = "__OTR__wario_kart/wario_kart_frame150"; - -static const ALIGN_ASSET(2) char gKartWario151[] = "__OTR__wario_kart/wario_kart_frame151"; - -static const ALIGN_ASSET(2) char gKartWario152[] = "__OTR__wario_kart/wario_kart_frame152"; - -static const ALIGN_ASSET(2) char gKartWario153[] = "__OTR__wario_kart/wario_kart_frame153"; - -static const ALIGN_ASSET(2) char gKartWario154[] = "__OTR__wario_kart/wario_kart_frame154"; - -static const ALIGN_ASSET(2) char gKartWario155[] = "__OTR__wario_kart/wario_kart_frame155"; - -static const ALIGN_ASSET(2) char gKartWario156[] = "__OTR__wario_kart/wario_kart_frame156"; - -static const ALIGN_ASSET(2) char gKartWario157[] = "__OTR__wario_kart/wario_kart_frame157"; - -static const ALIGN_ASSET(2) char gKartWario158[] = "__OTR__wario_kart/wario_kart_frame158"; - -static const ALIGN_ASSET(2) char gKartWario159[] = "__OTR__wario_kart/wario_kart_frame159"; - -static const ALIGN_ASSET(2) char gKartWario160[] = "__OTR__wario_kart/wario_kart_frame160"; - -static const ALIGN_ASSET(2) char gKartWario161[] = "__OTR__wario_kart/wario_kart_frame161"; - -static const ALIGN_ASSET(2) char gKartWario162[] = "__OTR__wario_kart/wario_kart_frame162"; - -static const ALIGN_ASSET(2) char gKartWario163[] = "__OTR__wario_kart/wario_kart_frame163"; - -static const ALIGN_ASSET(2) char gKartWario164[] = "__OTR__wario_kart/wario_kart_frame164"; - -static const ALIGN_ASSET(2) char gKartWario165[] = "__OTR__wario_kart/wario_kart_frame165"; - -static const ALIGN_ASSET(2) char gKartWario166[] = "__OTR__wario_kart/wario_kart_frame166"; - -static const ALIGN_ASSET(2) char gKartWario167[] = "__OTR__wario_kart/wario_kart_frame167"; - -static const ALIGN_ASSET(2) char gKartWario168[] = "__OTR__wario_kart/wario_kart_frame168"; - -static const ALIGN_ASSET(2) char gKartWario169[] = "__OTR__wario_kart/wario_kart_frame169"; - -static const ALIGN_ASSET(2) char gKartWario170[] = "__OTR__wario_kart/wario_kart_frame170"; - -static const ALIGN_ASSET(2) char gKartWario171[] = "__OTR__wario_kart/wario_kart_frame171"; - -static const ALIGN_ASSET(2) char gKartWario172[] = "__OTR__wario_kart/wario_kart_frame172"; - -static const ALIGN_ASSET(2) char gKartWario173[] = "__OTR__wario_kart/wario_kart_frame173"; - -static const ALIGN_ASSET(2) char gKartWario174[] = "__OTR__wario_kart/wario_kart_frame174"; - -static const ALIGN_ASSET(2) char gKartWario175[] = "__OTR__wario_kart/wario_kart_frame175"; - -static const ALIGN_ASSET(2) char gKartWario176[] = "__OTR__wario_kart/wario_kart_frame176"; - -static const ALIGN_ASSET(2) char gKartWario177[] = "__OTR__wario_kart/wario_kart_frame177"; - -static const ALIGN_ASSET(2) char gKartWario178[] = "__OTR__wario_kart/wario_kart_frame178"; - -static const ALIGN_ASSET(2) char gKartWario179[] = "__OTR__wario_kart/wario_kart_frame179"; - -static const ALIGN_ASSET(2) char gKartWario180[] = "__OTR__wario_kart/wario_kart_frame180"; - -static const ALIGN_ASSET(2) char gKartWario181[] = "__OTR__wario_kart/wario_kart_frame181"; - -static const ALIGN_ASSET(2) char gKartWario182[] = "__OTR__wario_kart/wario_kart_frame182"; - -static const ALIGN_ASSET(2) char gKartWario183[] = "__OTR__wario_kart/wario_kart_frame183"; - -static const ALIGN_ASSET(2) char gKartWario184[] = "__OTR__wario_kart/wario_kart_frame184"; - -static const ALIGN_ASSET(2) char gKartWario185[] = "__OTR__wario_kart/wario_kart_frame185"; - -static const ALIGN_ASSET(2) char gKartWario186[] = "__OTR__wario_kart/wario_kart_frame186"; - -static const ALIGN_ASSET(2) char gKartWario187[] = "__OTR__wario_kart/wario_kart_frame187"; - -static const ALIGN_ASSET(2) char gKartWario188[] = "__OTR__wario_kart/wario_kart_frame188"; - -static const ALIGN_ASSET(2) char gKartWario189[] = "__OTR__wario_kart/wario_kart_frame189"; - -static const ALIGN_ASSET(2) char gKartWario190[] = "__OTR__wario_kart/wario_kart_frame190"; - -static const ALIGN_ASSET(2) char gKartWario191[] = "__OTR__wario_kart/wario_kart_frame191"; - -static const ALIGN_ASSET(2) char gKartWario192[] = "__OTR__wario_kart/wario_kart_frame192"; - -static const ALIGN_ASSET(2) char gKartWario193[] = "__OTR__wario_kart/wario_kart_frame193"; - -static const ALIGN_ASSET(2) char gKartWario194[] = "__OTR__wario_kart/wario_kart_frame194"; - -static const ALIGN_ASSET(2) char gKartWario195[] = "__OTR__wario_kart/wario_kart_frame195"; - -static const ALIGN_ASSET(2) char gKartWario196[] = "__OTR__wario_kart/wario_kart_frame196"; - -static const ALIGN_ASSET(2) char gKartWario197[] = "__OTR__wario_kart/wario_kart_frame197"; - -static const ALIGN_ASSET(2) char gKartWario198[] = "__OTR__wario_kart/wario_kart_frame198"; - -static const ALIGN_ASSET(2) char gKartWario199[] = "__OTR__wario_kart/wario_kart_frame199"; - -static const ALIGN_ASSET(2) char gKartWario200[] = "__OTR__wario_kart/wario_kart_frame200"; - -static const ALIGN_ASSET(2) char gKartWario201[] = "__OTR__wario_kart/wario_kart_frame201"; - -static const ALIGN_ASSET(2) char gKartWario202[] = "__OTR__wario_kart/wario_kart_frame202"; - -static const ALIGN_ASSET(2) char gKartWario203[] = "__OTR__wario_kart/wario_kart_frame203"; - -static const ALIGN_ASSET(2) char gKartWario204[] = "__OTR__wario_kart/wario_kart_frame204"; - -static const ALIGN_ASSET(2) char gKartWario205[] = "__OTR__wario_kart/wario_kart_frame205"; - -static const ALIGN_ASSET(2) char gKartWario206[] = "__OTR__wario_kart/wario_kart_frame206"; - -static const ALIGN_ASSET(2) char gKartWario207[] = "__OTR__wario_kart/wario_kart_frame207"; - -static const ALIGN_ASSET(2) char gKartWario208[] = "__OTR__wario_kart/wario_kart_frame208"; - -static const ALIGN_ASSET(2) char gKartWario209[] = "__OTR__wario_kart/wario_kart_frame209"; - -static const ALIGN_ASSET(2) char gKartWario210[] = "__OTR__wario_kart/wario_kart_frame210"; - -static const ALIGN_ASSET(2) char gKartWario211[] = "__OTR__wario_kart/wario_kart_frame211"; - -static const ALIGN_ASSET(2) char gKartWario212[] = "__OTR__wario_kart/wario_kart_frame212"; - -static const ALIGN_ASSET(2) char gKartWario213[] = "__OTR__wario_kart/wario_kart_frame213"; - -static const ALIGN_ASSET(2) char gKartWario214[] = "__OTR__wario_kart/wario_kart_frame214"; - -static const ALIGN_ASSET(2) char gKartWario215[] = "__OTR__wario_kart/wario_kart_frame215"; - -static const ALIGN_ASSET(2) char gKartWario216[] = "__OTR__wario_kart/wario_kart_frame216"; - -static const ALIGN_ASSET(2) char gKartWario217[] = "__OTR__wario_kart/wario_kart_frame217"; - -static const ALIGN_ASSET(2) char gKartWario218[] = "__OTR__wario_kart/wario_kart_frame218"; - -static const ALIGN_ASSET(2) char gKartWario219[] = "__OTR__wario_kart/wario_kart_frame219"; - -static const ALIGN_ASSET(2) char gKartWario220[] = "__OTR__wario_kart/wario_kart_frame220"; - -static const ALIGN_ASSET(2) char gKartWario221[] = "__OTR__wario_kart/wario_kart_frame221"; - -static const ALIGN_ASSET(2) char gKartWario222[] = "__OTR__wario_kart/wario_kart_frame222"; - -static const ALIGN_ASSET(2) char gKartWario223[] = "__OTR__wario_kart/wario_kart_frame223"; - -static const ALIGN_ASSET(2) char gKartWario224[] = "__OTR__wario_kart/wario_kart_frame224"; - -static const ALIGN_ASSET(2) char gKartWario225[] = "__OTR__wario_kart/wario_kart_frame225"; - -static const ALIGN_ASSET(2) char gKartWario226[] = "__OTR__wario_kart/wario_kart_frame226"; - -static const ALIGN_ASSET(2) char gKartWario227[] = "__OTR__wario_kart/wario_kart_frame227"; - -static const ALIGN_ASSET(2) char gKartWario228[] = "__OTR__wario_kart/wario_kart_frame228"; - -static const ALIGN_ASSET(2) char gKartWario229[] = "__OTR__wario_kart/wario_kart_frame229"; - -static const ALIGN_ASSET(2) char gKartWario230[] = "__OTR__wario_kart/wario_kart_frame230"; - -static const ALIGN_ASSET(2) char gKartWario231[] = "__OTR__wario_kart/wario_kart_frame231"; - -static const ALIGN_ASSET(2) char gKartWario232[] = "__OTR__wario_kart/wario_kart_frame232"; - -static const ALIGN_ASSET(2) char gKartWario233[] = "__OTR__wario_kart/wario_kart_frame233"; - -static const ALIGN_ASSET(2) char gKartWario234[] = "__OTR__wario_kart/wario_kart_frame234"; - -static const ALIGN_ASSET(2) char gKartWario235[] = "__OTR__wario_kart/wario_kart_frame235"; - -static const ALIGN_ASSET(2) char gKartWario236[] = "__OTR__wario_kart/wario_kart_frame236"; - -static const ALIGN_ASSET(2) char gKartWario237[] = "__OTR__wario_kart/wario_kart_frame237"; - -static const ALIGN_ASSET(2) char gKartWario238[] = "__OTR__wario_kart/wario_kart_frame238"; - -static const ALIGN_ASSET(2) char gKartWario239[] = "__OTR__wario_kart/wario_kart_frame239"; - -static const ALIGN_ASSET(2) char gKartWario240[] = "__OTR__wario_kart/wario_kart_frame240"; - -static const ALIGN_ASSET(2) char gKartWario241[] = "__OTR__wario_kart/wario_kart_frame241"; - -static const ALIGN_ASSET(2) char gKartWario242[] = "__OTR__wario_kart/wario_kart_frame242"; - -static const ALIGN_ASSET(2) char gKartWario243[] = "__OTR__wario_kart/wario_kart_frame243"; - -static const ALIGN_ASSET(2) char gKartWario244[] = "__OTR__wario_kart/wario_kart_frame244"; - -static const ALIGN_ASSET(2) char gKartWario245[] = "__OTR__wario_kart/wario_kart_frame245"; - -static const ALIGN_ASSET(2) char gKartWario246[] = "__OTR__wario_kart/wario_kart_frame246"; - -static const ALIGN_ASSET(2) char gKartWario247[] = "__OTR__wario_kart/wario_kart_frame247"; - -static const ALIGN_ASSET(2) char gKartWario248[] = "__OTR__wario_kart/wario_kart_frame248"; - -static const ALIGN_ASSET(2) char gKartWario249[] = "__OTR__wario_kart/wario_kart_frame249"; - -static const ALIGN_ASSET(2) char gKartWario250[] = "__OTR__wario_kart/wario_kart_frame250"; - -static const ALIGN_ASSET(2) char gKartWario251[] = "__OTR__wario_kart/wario_kart_frame251"; - -static const ALIGN_ASSET(2) char gKartWario252[] = "__OTR__wario_kart/wario_kart_frame252"; - -static const ALIGN_ASSET(2) char gKartWario253[] = "__OTR__wario_kart/wario_kart_frame253"; - -static const ALIGN_ASSET(2) char gKartWario254[] = "__OTR__wario_kart/wario_kart_frame254"; - -static const ALIGN_ASSET(2) char gKartWario255[] = "__OTR__wario_kart/wario_kart_frame255"; - -static const ALIGN_ASSET(2) char gKartWario256[] = "__OTR__wario_kart/wario_kart_frame256"; - -static const ALIGN_ASSET(2) char gKartWario257[] = "__OTR__wario_kart/wario_kart_frame257"; - -static const ALIGN_ASSET(2) char gKartWario258[] = "__OTR__wario_kart/wario_kart_frame258"; - -static const ALIGN_ASSET(2) char gKartWario259[] = "__OTR__wario_kart/wario_kart_frame259"; - -static const ALIGN_ASSET(2) char gKartWario260[] = "__OTR__wario_kart/wario_kart_frame260"; - -static const ALIGN_ASSET(2) char gKartWario261[] = "__OTR__wario_kart/wario_kart_frame261"; - -static const ALIGN_ASSET(2) char gKartWario262[] = "__OTR__wario_kart/wario_kart_frame262"; - -static const ALIGN_ASSET(2) char gKartWario263[] = "__OTR__wario_kart/wario_kart_frame263"; - -static const ALIGN_ASSET(2) char gKartWario264[] = "__OTR__wario_kart/wario_kart_frame264"; - -static const ALIGN_ASSET(2) char gKartWario265[] = "__OTR__wario_kart/wario_kart_frame265"; - -static const ALIGN_ASSET(2) char gKartWario266[] = "__OTR__wario_kart/wario_kart_frame266"; - -static const ALIGN_ASSET(2) char gKartWario267[] = "__OTR__wario_kart/wario_kart_frame267"; - -static const ALIGN_ASSET(2) char gKartWario268[] = "__OTR__wario_kart/wario_kart_frame268"; - -static const ALIGN_ASSET(2) char gKartWario269[] = "__OTR__wario_kart/wario_kart_frame269"; - -static const ALIGN_ASSET(2) char gKartWario270[] = "__OTR__wario_kart/wario_kart_frame270"; - -static const ALIGN_ASSET(2) char gKartWario271[] = "__OTR__wario_kart/wario_kart_frame271"; - -static const ALIGN_ASSET(2) char gKartWario272[] = "__OTR__wario_kart/wario_kart_frame272"; - -static const ALIGN_ASSET(2) char gKartWario273[] = "__OTR__wario_kart/wario_kart_frame273"; - -static const ALIGN_ASSET(2) char gKartWario274[] = "__OTR__wario_kart/wario_kart_frame274"; - -static const ALIGN_ASSET(2) char gKartWario275[] = "__OTR__wario_kart/wario_kart_frame275"; - -static const ALIGN_ASSET(2) char gKartWario276[] = "__OTR__wario_kart/wario_kart_frame276"; - -static const ALIGN_ASSET(2) char gKartWario277[] = "__OTR__wario_kart/wario_kart_frame277"; - -static const ALIGN_ASSET(2) char gKartWario278[] = "__OTR__wario_kart/wario_kart_frame278"; - -static const ALIGN_ASSET(2) char gKartWario279[] = "__OTR__wario_kart/wario_kart_frame279"; - -static const ALIGN_ASSET(2) char gKartWario280[] = "__OTR__wario_kart/wario_kart_frame280"; - -static const ALIGN_ASSET(2) char gKartWario281[] = "__OTR__wario_kart/wario_kart_frame281"; - -static const ALIGN_ASSET(2) char gKartWario282[] = "__OTR__wario_kart/wario_kart_frame282"; - -static const ALIGN_ASSET(2) char gKartWario283[] = "__OTR__wario_kart/wario_kart_frame283"; - -static const ALIGN_ASSET(2) char gKartWario284[] = "__OTR__wario_kart/wario_kart_frame284"; - -static const ALIGN_ASSET(2) char gKartWario285[] = "__OTR__wario_kart/wario_kart_frame285"; - -static const ALIGN_ASSET(2) char gKartWario286[] = "__OTR__wario_kart/wario_kart_frame286"; - -static const ALIGN_ASSET(2) char gKartWario287[] = "__OTR__wario_kart/wario_kart_frame287"; - -static const ALIGN_ASSET(2) char gKartWario288[] = "__OTR__wario_kart/wario_kart_frame288"; - -static const ALIGN_ASSET(2) char gKartWario289[] = "__OTR__wario_kart/wario_kart_frame289"; - -static const ALIGN_ASSET(2) char gKartWario290[] = "__OTR__wario_kart/wario_kart_frame290"; - -static const ALIGN_ASSET(2) char gKartWario291[] = "__OTR__wario_kart/wario_kart_frame291"; - -static const ALIGN_ASSET(2) char gKartWario292[] = "__OTR__wario_kart/wario_kart_frame292"; - -static const ALIGN_ASSET(2) char gKartWario293[] = "__OTR__wario_kart/wario_kart_frame293"; - -static const ALIGN_ASSET(2) char gKartWario294[] = "__OTR__wario_kart/wario_kart_frame294"; - -static const ALIGN_ASSET(2) char gKartWario295[] = "__OTR__wario_kart/wario_kart_frame295"; - -static const ALIGN_ASSET(2) char gKartWario296[] = "__OTR__wario_kart/wario_kart_frame296"; - -static const ALIGN_ASSET(2) char gKartWario297[] = "__OTR__wario_kart/wario_kart_frame297"; - -static const ALIGN_ASSET(2) char gKartWario298[] = "__OTR__wario_kart/wario_kart_frame298"; - -static const ALIGN_ASSET(2) char gKartWario299[] = "__OTR__wario_kart/wario_kart_frame299"; - -static const ALIGN_ASSET(2) char gKartWario300[] = "__OTR__wario_kart/wario_kart_frame300"; - -static const ALIGN_ASSET(2) char gKartWario301[] = "__OTR__wario_kart/wario_kart_frame301"; - -static const ALIGN_ASSET(2) char gKartWario302[] = "__OTR__wario_kart/wario_kart_frame302"; - -static const ALIGN_ASSET(2) char gKartWario303[] = "__OTR__wario_kart/wario_kart_frame303"; - -static const ALIGN_ASSET(2) char gKartWario304[] = "__OTR__wario_kart/wario_kart_frame304"; - -static const ALIGN_ASSET(2) char gKartWario305[] = "__OTR__wario_kart/wario_kart_frame305"; - -static const ALIGN_ASSET(2) char gKartWario306[] = "__OTR__wario_kart/wario_kart_frame306"; - -static const ALIGN_ASSET(2) char gKartWario307[] = "__OTR__wario_kart/wario_kart_frame307"; - -static const ALIGN_ASSET(2) char gKartWario308[] = "__OTR__wario_kart/wario_kart_frame308"; - -static const ALIGN_ASSET(2) char gKartWario309[] = "__OTR__wario_kart/wario_kart_frame309"; - -static const ALIGN_ASSET(2) char gKartWario310[] = "__OTR__wario_kart/wario_kart_frame310"; - -static const ALIGN_ASSET(2) char gKartWario311[] = "__OTR__wario_kart/wario_kart_frame311"; - -static const ALIGN_ASSET(2) char gKartWario312[] = "__OTR__wario_kart/wario_kart_frame312"; - -static const ALIGN_ASSET(2) char gKartWario313[] = "__OTR__wario_kart/wario_kart_frame313"; - -static const ALIGN_ASSET(2) char gKartWario314[] = "__OTR__wario_kart/wario_kart_frame314"; - -static const ALIGN_ASSET(2) char gKartWario315[] = "__OTR__wario_kart/wario_kart_frame315"; - -static const ALIGN_ASSET(2) char gKartWario316[] = "__OTR__wario_kart/wario_kart_frame316"; - -static const ALIGN_ASSET(2) char gKartWario317[] = "__OTR__wario_kart/wario_kart_frame317"; - -static const ALIGN_ASSET(2) char gKartWario318[] = "__OTR__wario_kart/wario_kart_frame318"; - -static const ALIGN_ASSET(2) char gKartWario319[] = "__OTR__wario_kart/wario_kart_frame319"; - -static const ALIGN_ASSET(2) char gKartWario320[] = "__OTR__wario_kart/wario_kart_frame320"; - -static const ALIGN_ASSET(2) char gKartWario000Wheel0[] = "__OTR__wario_kart/kart_000_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario000Wheel1[] = "__OTR__wario_kart/kart_000_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario000Wheel2[] = "__OTR__wario_kart/kart_000_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario000Wheel3[] = "__OTR__wario_kart/kart_000_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario001Wheel0[] = "__OTR__wario_kart/kart_001_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario001Wheel1[] = "__OTR__wario_kart/kart_001_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario001Wheel2[] = "__OTR__wario_kart/kart_001_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario001Wheel3[] = "__OTR__wario_kart/kart_001_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario002Wheel0[] = "__OTR__wario_kart/kart_002_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario002Wheel1[] = "__OTR__wario_kart/kart_002_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario002Wheel2[] = "__OTR__wario_kart/kart_002_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario002Wheel3[] = "__OTR__wario_kart/kart_002_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario003Wheel0[] = "__OTR__wario_kart/kart_003_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario003Wheel1[] = "__OTR__wario_kart/kart_003_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario003Wheel2[] = "__OTR__wario_kart/kart_003_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario003Wheel3[] = "__OTR__wario_kart/kart_003_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario004Wheel0[] = "__OTR__wario_kart/kart_004_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario004Wheel1[] = "__OTR__wario_kart/kart_004_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario004Wheel2[] = "__OTR__wario_kart/kart_004_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario004Wheel3[] = "__OTR__wario_kart/kart_004_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario005Wheel0[] = "__OTR__wario_kart/kart_005_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario005Wheel1[] = "__OTR__wario_kart/kart_005_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario005Wheel2[] = "__OTR__wario_kart/kart_005_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario005Wheel3[] = "__OTR__wario_kart/kart_005_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario006Wheel0[] = "__OTR__wario_kart/kart_006_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario006Wheel1[] = "__OTR__wario_kart/kart_006_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario006Wheel2[] = "__OTR__wario_kart/kart_006_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario006Wheel3[] = "__OTR__wario_kart/kart_006_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario007Wheel0[] = "__OTR__wario_kart/kart_007_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario007Wheel1[] = "__OTR__wario_kart/kart_007_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario007Wheel2[] = "__OTR__wario_kart/kart_007_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario007Wheel3[] = "__OTR__wario_kart/kart_007_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario008Wheel0[] = "__OTR__wario_kart/kart_008_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario008Wheel1[] = "__OTR__wario_kart/kart_008_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario008Wheel2[] = "__OTR__wario_kart/kart_008_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario008Wheel3[] = "__OTR__wario_kart/kart_008_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario009Wheel0[] = "__OTR__wario_kart/kart_009_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario009Wheel1[] = "__OTR__wario_kart/kart_009_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario009Wheel2[] = "__OTR__wario_kart/kart_009_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario009Wheel3[] = "__OTR__wario_kart/kart_009_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario010Wheel0[] = "__OTR__wario_kart/kart_010_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario010Wheel1[] = "__OTR__wario_kart/kart_010_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario010Wheel2[] = "__OTR__wario_kart/kart_010_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario010Wheel3[] = "__OTR__wario_kart/kart_010_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario011Wheel0[] = "__OTR__wario_kart/kart_011_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario011Wheel1[] = "__OTR__wario_kart/kart_011_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario011Wheel2[] = "__OTR__wario_kart/kart_011_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario011Wheel3[] = "__OTR__wario_kart/kart_011_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario012Wheel0[] = "__OTR__wario_kart/kart_012_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario012Wheel1[] = "__OTR__wario_kart/kart_012_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario012Wheel2[] = "__OTR__wario_kart/kart_012_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario012Wheel3[] = "__OTR__wario_kart/kart_012_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario013Wheel0[] = "__OTR__wario_kart/kart_013_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario013Wheel1[] = "__OTR__wario_kart/kart_013_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario013Wheel2[] = "__OTR__wario_kart/kart_013_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario013Wheel3[] = "__OTR__wario_kart/kart_013_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario014Wheel0[] = "__OTR__wario_kart/kart_014_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario014Wheel1[] = "__OTR__wario_kart/kart_014_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario014Wheel2[] = "__OTR__wario_kart/kart_014_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario014Wheel3[] = "__OTR__wario_kart/kart_014_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario015Wheel0[] = "__OTR__wario_kart/kart_015_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario015Wheel1[] = "__OTR__wario_kart/kart_015_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario015Wheel2[] = "__OTR__wario_kart/kart_015_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario015Wheel3[] = "__OTR__wario_kart/kart_015_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario016Wheel0[] = "__OTR__wario_kart/kart_016_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario016Wheel1[] = "__OTR__wario_kart/kart_016_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario016Wheel2[] = "__OTR__wario_kart/kart_016_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario016Wheel3[] = "__OTR__wario_kart/kart_016_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario017Wheel0[] = "__OTR__wario_kart/kart_017_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario017Wheel1[] = "__OTR__wario_kart/kart_017_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario017Wheel2[] = "__OTR__wario_kart/kart_017_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario017Wheel3[] = "__OTR__wario_kart/kart_017_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario018Wheel0[] = "__OTR__wario_kart/kart_018_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario018Wheel1[] = "__OTR__wario_kart/kart_018_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario018Wheel2[] = "__OTR__wario_kart/kart_018_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario018Wheel3[] = "__OTR__wario_kart/kart_018_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario019Wheel0[] = "__OTR__wario_kart/kart_019_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario019Wheel1[] = "__OTR__wario_kart/kart_019_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario019Wheel2[] = "__OTR__wario_kart/kart_019_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario019Wheel3[] = "__OTR__wario_kart/kart_019_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario020Wheel0[] = "__OTR__wario_kart/kart_020_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario020Wheel1[] = "__OTR__wario_kart/kart_020_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario020Wheel2[] = "__OTR__wario_kart/kart_020_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario020Wheel3[] = "__OTR__wario_kart/kart_020_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario021Wheel0[] = "__OTR__wario_kart/kart_021_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario021Wheel1[] = "__OTR__wario_kart/kart_021_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario021Wheel2[] = "__OTR__wario_kart/kart_021_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario021Wheel3[] = "__OTR__wario_kart/kart_021_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario022Wheel0[] = "__OTR__wario_kart/kart_022_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario022Wheel1[] = "__OTR__wario_kart/kart_022_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario022Wheel2[] = "__OTR__wario_kart/kart_022_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario022Wheel3[] = "__OTR__wario_kart/kart_022_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario023Wheel0[] = "__OTR__wario_kart/kart_023_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario023Wheel1[] = "__OTR__wario_kart/kart_023_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario023Wheel2[] = "__OTR__wario_kart/kart_023_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario023Wheel3[] = "__OTR__wario_kart/kart_023_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario024Wheel0[] = "__OTR__wario_kart/kart_024_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario024Wheel1[] = "__OTR__wario_kart/kart_024_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario024Wheel2[] = "__OTR__wario_kart/kart_024_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario024Wheel3[] = "__OTR__wario_kart/kart_024_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario025Wheel0[] = "__OTR__wario_kart/kart_025_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario025Wheel1[] = "__OTR__wario_kart/kart_025_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario025Wheel2[] = "__OTR__wario_kart/kart_025_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario025Wheel3[] = "__OTR__wario_kart/kart_025_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario026Wheel0[] = "__OTR__wario_kart/kart_026_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario026Wheel1[] = "__OTR__wario_kart/kart_026_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario026Wheel2[] = "__OTR__wario_kart/kart_026_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario026Wheel3[] = "__OTR__wario_kart/kart_026_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario027Wheel0[] = "__OTR__wario_kart/kart_027_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario027Wheel1[] = "__OTR__wario_kart/kart_027_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario027Wheel2[] = "__OTR__wario_kart/kart_027_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario027Wheel3[] = "__OTR__wario_kart/kart_027_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario028Wheel0[] = "__OTR__wario_kart/kart_028_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario028Wheel1[] = "__OTR__wario_kart/kart_028_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario028Wheel2[] = "__OTR__wario_kart/kart_028_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario028Wheel3[] = "__OTR__wario_kart/kart_028_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario029Wheel0[] = "__OTR__wario_kart/kart_029_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario029Wheel1[] = "__OTR__wario_kart/kart_029_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario029Wheel2[] = "__OTR__wario_kart/kart_029_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario029Wheel3[] = "__OTR__wario_kart/kart_029_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario030Wheel0[] = "__OTR__wario_kart/kart_030_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario030Wheel1[] = "__OTR__wario_kart/kart_030_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario030Wheel2[] = "__OTR__wario_kart/kart_030_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario030Wheel3[] = "__OTR__wario_kart/kart_030_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario031Wheel0[] = "__OTR__wario_kart/kart_031_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario031Wheel1[] = "__OTR__wario_kart/kart_031_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario031Wheel2[] = "__OTR__wario_kart/kart_031_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario031Wheel3[] = "__OTR__wario_kart/kart_031_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario032Wheel0[] = "__OTR__wario_kart/kart_032_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario032Wheel1[] = "__OTR__wario_kart/kart_032_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario032Wheel2[] = "__OTR__wario_kart/kart_032_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario032Wheel3[] = "__OTR__wario_kart/kart_032_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario033Wheel0[] = "__OTR__wario_kart/kart_033_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario033Wheel1[] = "__OTR__wario_kart/kart_033_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario033Wheel2[] = "__OTR__wario_kart/kart_033_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario033Wheel3[] = "__OTR__wario_kart/kart_033_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario034Wheel0[] = "__OTR__wario_kart/kart_034_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario034Wheel1[] = "__OTR__wario_kart/kart_034_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario034Wheel2[] = "__OTR__wario_kart/kart_034_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario034Wheel3[] = "__OTR__wario_kart/kart_034_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario035Wheel0[] = "__OTR__wario_kart/kart_035_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario035Wheel1[] = "__OTR__wario_kart/kart_035_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario035Wheel2[] = "__OTR__wario_kart/kart_035_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario035Wheel3[] = "__OTR__wario_kart/kart_035_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario036Wheel0[] = "__OTR__wario_kart/kart_036_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario036Wheel1[] = "__OTR__wario_kart/kart_036_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario036Wheel2[] = "__OTR__wario_kart/kart_036_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario036Wheel3[] = "__OTR__wario_kart/kart_036_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario037Wheel0[] = "__OTR__wario_kart/kart_037_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario037Wheel1[] = "__OTR__wario_kart/kart_037_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario037Wheel2[] = "__OTR__wario_kart/kart_037_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario037Wheel3[] = "__OTR__wario_kart/kart_037_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario038Wheel0[] = "__OTR__wario_kart/kart_038_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario038Wheel1[] = "__OTR__wario_kart/kart_038_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario038Wheel2[] = "__OTR__wario_kart/kart_038_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario038Wheel3[] = "__OTR__wario_kart/kart_038_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario039Wheel0[] = "__OTR__wario_kart/kart_039_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario039Wheel1[] = "__OTR__wario_kart/kart_039_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario039Wheel2[] = "__OTR__wario_kart/kart_039_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario039Wheel3[] = "__OTR__wario_kart/kart_039_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario040Wheel0[] = "__OTR__wario_kart/kart_040_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario040Wheel1[] = "__OTR__wario_kart/kart_040_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario040Wheel2[] = "__OTR__wario_kart/kart_040_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario040Wheel3[] = "__OTR__wario_kart/kart_040_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario041Wheel0[] = "__OTR__wario_kart/kart_041_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario041Wheel1[] = "__OTR__wario_kart/kart_041_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario041Wheel2[] = "__OTR__wario_kart/kart_041_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario041Wheel3[] = "__OTR__wario_kart/kart_041_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario042Wheel0[] = "__OTR__wario_kart/kart_042_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario042Wheel1[] = "__OTR__wario_kart/kart_042_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario042Wheel2[] = "__OTR__wario_kart/kart_042_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario042Wheel3[] = "__OTR__wario_kart/kart_042_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario043Wheel0[] = "__OTR__wario_kart/kart_043_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario043Wheel1[] = "__OTR__wario_kart/kart_043_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario043Wheel2[] = "__OTR__wario_kart/kart_043_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario043Wheel3[] = "__OTR__wario_kart/kart_043_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario044Wheel0[] = "__OTR__wario_kart/kart_044_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario044Wheel1[] = "__OTR__wario_kart/kart_044_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario044Wheel2[] = "__OTR__wario_kart/kart_044_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario044Wheel3[] = "__OTR__wario_kart/kart_044_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario045Wheel0[] = "__OTR__wario_kart/kart_045_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario045Wheel1[] = "__OTR__wario_kart/kart_045_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario045Wheel2[] = "__OTR__wario_kart/kart_045_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario045Wheel3[] = "__OTR__wario_kart/kart_045_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario046Wheel0[] = "__OTR__wario_kart/kart_046_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario046Wheel1[] = "__OTR__wario_kart/kart_046_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario046Wheel2[] = "__OTR__wario_kart/kart_046_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario046Wheel3[] = "__OTR__wario_kart/kart_046_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario047Wheel0[] = "__OTR__wario_kart/kart_047_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario047Wheel1[] = "__OTR__wario_kart/kart_047_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario047Wheel2[] = "__OTR__wario_kart/kart_047_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario047Wheel3[] = "__OTR__wario_kart/kart_047_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario048Wheel0[] = "__OTR__wario_kart/kart_048_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario048Wheel1[] = "__OTR__wario_kart/kart_048_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario048Wheel2[] = "__OTR__wario_kart/kart_048_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario048Wheel3[] = "__OTR__wario_kart/kart_048_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario049Wheel0[] = "__OTR__wario_kart/kart_049_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario049Wheel1[] = "__OTR__wario_kart/kart_049_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario049Wheel2[] = "__OTR__wario_kart/kart_049_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario049Wheel3[] = "__OTR__wario_kart/kart_049_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario050Wheel0[] = "__OTR__wario_kart/kart_050_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario050Wheel1[] = "__OTR__wario_kart/kart_050_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario050Wheel2[] = "__OTR__wario_kart/kart_050_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario050Wheel3[] = "__OTR__wario_kart/kart_050_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario051Wheel0[] = "__OTR__wario_kart/kart_051_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario051Wheel1[] = "__OTR__wario_kart/kart_051_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario051Wheel2[] = "__OTR__wario_kart/kart_051_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario051Wheel3[] = "__OTR__wario_kart/kart_051_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario052Wheel0[] = "__OTR__wario_kart/kart_052_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario052Wheel1[] = "__OTR__wario_kart/kart_052_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario052Wheel2[] = "__OTR__wario_kart/kart_052_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario052Wheel3[] = "__OTR__wario_kart/kart_052_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario053Wheel0[] = "__OTR__wario_kart/kart_053_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario053Wheel1[] = "__OTR__wario_kart/kart_053_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario053Wheel2[] = "__OTR__wario_kart/kart_053_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario053Wheel3[] = "__OTR__wario_kart/kart_053_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario054Wheel0[] = "__OTR__wario_kart/kart_054_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario054Wheel1[] = "__OTR__wario_kart/kart_054_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario054Wheel2[] = "__OTR__wario_kart/kart_054_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario054Wheel3[] = "__OTR__wario_kart/kart_054_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario055Wheel0[] = "__OTR__wario_kart/kart_055_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario055Wheel1[] = "__OTR__wario_kart/kart_055_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario055Wheel2[] = "__OTR__wario_kart/kart_055_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario055Wheel3[] = "__OTR__wario_kart/kart_055_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario056Wheel0[] = "__OTR__wario_kart/kart_056_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario056Wheel1[] = "__OTR__wario_kart/kart_056_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario056Wheel2[] = "__OTR__wario_kart/kart_056_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario056Wheel3[] = "__OTR__wario_kart/kart_056_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario057Wheel0[] = "__OTR__wario_kart/kart_057_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario057Wheel1[] = "__OTR__wario_kart/kart_057_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario057Wheel2[] = "__OTR__wario_kart/kart_057_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario057Wheel3[] = "__OTR__wario_kart/kart_057_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario058Wheel0[] = "__OTR__wario_kart/kart_058_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario058Wheel1[] = "__OTR__wario_kart/kart_058_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario058Wheel2[] = "__OTR__wario_kart/kart_058_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario058Wheel3[] = "__OTR__wario_kart/kart_058_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario059Wheel0[] = "__OTR__wario_kart/kart_059_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario059Wheel1[] = "__OTR__wario_kart/kart_059_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario059Wheel2[] = "__OTR__wario_kart/kart_059_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario059Wheel3[] = "__OTR__wario_kart/kart_059_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario060Wheel0[] = "__OTR__wario_kart/kart_060_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario060Wheel1[] = "__OTR__wario_kart/kart_060_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario060Wheel2[] = "__OTR__wario_kart/kart_060_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario060Wheel3[] = "__OTR__wario_kart/kart_060_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario061Wheel0[] = "__OTR__wario_kart/kart_061_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario061Wheel1[] = "__OTR__wario_kart/kart_061_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario061Wheel2[] = "__OTR__wario_kart/kart_061_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario061Wheel3[] = "__OTR__wario_kart/kart_061_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario062Wheel0[] = "__OTR__wario_kart/kart_062_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario062Wheel1[] = "__OTR__wario_kart/kart_062_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario062Wheel2[] = "__OTR__wario_kart/kart_062_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario062Wheel3[] = "__OTR__wario_kart/kart_062_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario063Wheel0[] = "__OTR__wario_kart/kart_063_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario063Wheel1[] = "__OTR__wario_kart/kart_063_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario063Wheel2[] = "__OTR__wario_kart/kart_063_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario063Wheel3[] = "__OTR__wario_kart/kart_063_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario064Wheel0[] = "__OTR__wario_kart/kart_064_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario064Wheel1[] = "__OTR__wario_kart/kart_064_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario064Wheel2[] = "__OTR__wario_kart/kart_064_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario064Wheel3[] = "__OTR__wario_kart/kart_064_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario065Wheel0[] = "__OTR__wario_kart/kart_065_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario065Wheel1[] = "__OTR__wario_kart/kart_065_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario065Wheel2[] = "__OTR__wario_kart/kart_065_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario065Wheel3[] = "__OTR__wario_kart/kart_065_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario066Wheel0[] = "__OTR__wario_kart/kart_066_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario066Wheel1[] = "__OTR__wario_kart/kart_066_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario066Wheel2[] = "__OTR__wario_kart/kart_066_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario066Wheel3[] = "__OTR__wario_kart/kart_066_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario067Wheel0[] = "__OTR__wario_kart/kart_067_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario067Wheel1[] = "__OTR__wario_kart/kart_067_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario067Wheel2[] = "__OTR__wario_kart/kart_067_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario067Wheel3[] = "__OTR__wario_kart/kart_067_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario068Wheel0[] = "__OTR__wario_kart/kart_068_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario068Wheel1[] = "__OTR__wario_kart/kart_068_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario068Wheel2[] = "__OTR__wario_kart/kart_068_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario068Wheel3[] = "__OTR__wario_kart/kart_068_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario069Wheel0[] = "__OTR__wario_kart/kart_069_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario069Wheel1[] = "__OTR__wario_kart/kart_069_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario069Wheel2[] = "__OTR__wario_kart/kart_069_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario069Wheel3[] = "__OTR__wario_kart/kart_069_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario070Wheel0[] = "__OTR__wario_kart/kart_070_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario070Wheel1[] = "__OTR__wario_kart/kart_070_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario070Wheel2[] = "__OTR__wario_kart/kart_070_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario070Wheel3[] = "__OTR__wario_kart/kart_070_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario071Wheel0[] = "__OTR__wario_kart/kart_071_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario071Wheel1[] = "__OTR__wario_kart/kart_071_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario071Wheel2[] = "__OTR__wario_kart/kart_071_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario071Wheel3[] = "__OTR__wario_kart/kart_071_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario072Wheel0[] = "__OTR__wario_kart/kart_072_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario072Wheel1[] = "__OTR__wario_kart/kart_072_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario072Wheel2[] = "__OTR__wario_kart/kart_072_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario072Wheel3[] = "__OTR__wario_kart/kart_072_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario073Wheel0[] = "__OTR__wario_kart/kart_073_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario073Wheel1[] = "__OTR__wario_kart/kart_073_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario073Wheel2[] = "__OTR__wario_kart/kart_073_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario073Wheel3[] = "__OTR__wario_kart/kart_073_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario074Wheel0[] = "__OTR__wario_kart/kart_074_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario074Wheel1[] = "__OTR__wario_kart/kart_074_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario074Wheel2[] = "__OTR__wario_kart/kart_074_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario074Wheel3[] = "__OTR__wario_kart/kart_074_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario075Wheel0[] = "__OTR__wario_kart/kart_075_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario075Wheel1[] = "__OTR__wario_kart/kart_075_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario075Wheel2[] = "__OTR__wario_kart/kart_075_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario075Wheel3[] = "__OTR__wario_kart/kart_075_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario076Wheel0[] = "__OTR__wario_kart/kart_076_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario076Wheel1[] = "__OTR__wario_kart/kart_076_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario076Wheel2[] = "__OTR__wario_kart/kart_076_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario076Wheel3[] = "__OTR__wario_kart/kart_076_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario077Wheel0[] = "__OTR__wario_kart/kart_077_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario077Wheel1[] = "__OTR__wario_kart/kart_077_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario077Wheel2[] = "__OTR__wario_kart/kart_077_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario077Wheel3[] = "__OTR__wario_kart/kart_077_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario078Wheel0[] = "__OTR__wario_kart/kart_078_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario078Wheel1[] = "__OTR__wario_kart/kart_078_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario078Wheel2[] = "__OTR__wario_kart/kart_078_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario078Wheel3[] = "__OTR__wario_kart/kart_078_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario079Wheel0[] = "__OTR__wario_kart/kart_079_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario079Wheel1[] = "__OTR__wario_kart/kart_079_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario079Wheel2[] = "__OTR__wario_kart/kart_079_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario079Wheel3[] = "__OTR__wario_kart/kart_079_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario080Wheel0[] = "__OTR__wario_kart/kart_080_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario080Wheel1[] = "__OTR__wario_kart/kart_080_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario080Wheel2[] = "__OTR__wario_kart/kart_080_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario080Wheel3[] = "__OTR__wario_kart/kart_080_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario081Wheel0[] = "__OTR__wario_kart/kart_081_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario081Wheel1[] = "__OTR__wario_kart/kart_081_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario081Wheel2[] = "__OTR__wario_kart/kart_081_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario081Wheel3[] = "__OTR__wario_kart/kart_081_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario082Wheel0[] = "__OTR__wario_kart/kart_082_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario082Wheel1[] = "__OTR__wario_kart/kart_082_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario082Wheel2[] = "__OTR__wario_kart/kart_082_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario082Wheel3[] = "__OTR__wario_kart/kart_082_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario083Wheel0[] = "__OTR__wario_kart/kart_083_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario083Wheel1[] = "__OTR__wario_kart/kart_083_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario083Wheel2[] = "__OTR__wario_kart/kart_083_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario083Wheel3[] = "__OTR__wario_kart/kart_083_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario084Wheel0[] = "__OTR__wario_kart/kart_084_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario084Wheel1[] = "__OTR__wario_kart/kart_084_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario084Wheel2[] = "__OTR__wario_kart/kart_084_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario084Wheel3[] = "__OTR__wario_kart/kart_084_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario085Wheel0[] = "__OTR__wario_kart/kart_085_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario085Wheel1[] = "__OTR__wario_kart/kart_085_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario085Wheel2[] = "__OTR__wario_kart/kart_085_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario085Wheel3[] = "__OTR__wario_kart/kart_085_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario086Wheel0[] = "__OTR__wario_kart/kart_086_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario086Wheel1[] = "__OTR__wario_kart/kart_086_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario086Wheel2[] = "__OTR__wario_kart/kart_086_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario086Wheel3[] = "__OTR__wario_kart/kart_086_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario087Wheel0[] = "__OTR__wario_kart/kart_087_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario087Wheel1[] = "__OTR__wario_kart/kart_087_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario087Wheel2[] = "__OTR__wario_kart/kart_087_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario087Wheel3[] = "__OTR__wario_kart/kart_087_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario088Wheel0[] = "__OTR__wario_kart/kart_088_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario088Wheel1[] = "__OTR__wario_kart/kart_088_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario088Wheel2[] = "__OTR__wario_kart/kart_088_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario088Wheel3[] = "__OTR__wario_kart/kart_088_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario089Wheel0[] = "__OTR__wario_kart/kart_089_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario089Wheel1[] = "__OTR__wario_kart/kart_089_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario089Wheel2[] = "__OTR__wario_kart/kart_089_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario089Wheel3[] = "__OTR__wario_kart/kart_089_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario090Wheel0[] = "__OTR__wario_kart/kart_090_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario090Wheel1[] = "__OTR__wario_kart/kart_090_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario090Wheel2[] = "__OTR__wario_kart/kart_090_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario090Wheel3[] = "__OTR__wario_kart/kart_090_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario091Wheel0[] = "__OTR__wario_kart/kart_091_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario091Wheel1[] = "__OTR__wario_kart/kart_091_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario091Wheel2[] = "__OTR__wario_kart/kart_091_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario091Wheel3[] = "__OTR__wario_kart/kart_091_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario092Wheel0[] = "__OTR__wario_kart/kart_092_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario092Wheel1[] = "__OTR__wario_kart/kart_092_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario092Wheel2[] = "__OTR__wario_kart/kart_092_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario092Wheel3[] = "__OTR__wario_kart/kart_092_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario093Wheel0[] = "__OTR__wario_kart/kart_093_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario093Wheel1[] = "__OTR__wario_kart/kart_093_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario093Wheel2[] = "__OTR__wario_kart/kart_093_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario093Wheel3[] = "__OTR__wario_kart/kart_093_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario094Wheel0[] = "__OTR__wario_kart/kart_094_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario094Wheel1[] = "__OTR__wario_kart/kart_094_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario094Wheel2[] = "__OTR__wario_kart/kart_094_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario094Wheel3[] = "__OTR__wario_kart/kart_094_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario095Wheel0[] = "__OTR__wario_kart/kart_095_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario095Wheel1[] = "__OTR__wario_kart/kart_095_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario095Wheel2[] = "__OTR__wario_kart/kart_095_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario095Wheel3[] = "__OTR__wario_kart/kart_095_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario096Wheel0[] = "__OTR__wario_kart/kart_096_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario096Wheel1[] = "__OTR__wario_kart/kart_096_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario096Wheel2[] = "__OTR__wario_kart/kart_096_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario096Wheel3[] = "__OTR__wario_kart/kart_096_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario097Wheel0[] = "__OTR__wario_kart/kart_097_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario097Wheel1[] = "__OTR__wario_kart/kart_097_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario097Wheel2[] = "__OTR__wario_kart/kart_097_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario097Wheel3[] = "__OTR__wario_kart/kart_097_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario098Wheel0[] = "__OTR__wario_kart/kart_098_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario098Wheel1[] = "__OTR__wario_kart/kart_098_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario098Wheel2[] = "__OTR__wario_kart/kart_098_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario098Wheel3[] = "__OTR__wario_kart/kart_098_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario099Wheel0[] = "__OTR__wario_kart/kart_099_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario099Wheel1[] = "__OTR__wario_kart/kart_099_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario099Wheel2[] = "__OTR__wario_kart/kart_099_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario099Wheel3[] = "__OTR__wario_kart/kart_099_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario100Wheel0[] = "__OTR__wario_kart/kart_100_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario100Wheel1[] = "__OTR__wario_kart/kart_100_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario100Wheel2[] = "__OTR__wario_kart/kart_100_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario100Wheel3[] = "__OTR__wario_kart/kart_100_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario101Wheel0[] = "__OTR__wario_kart/kart_101_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario101Wheel1[] = "__OTR__wario_kart/kart_101_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario101Wheel2[] = "__OTR__wario_kart/kart_101_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario101Wheel3[] = "__OTR__wario_kart/kart_101_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario102Wheel0[] = "__OTR__wario_kart/kart_102_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario102Wheel1[] = "__OTR__wario_kart/kart_102_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario102Wheel2[] = "__OTR__wario_kart/kart_102_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario102Wheel3[] = "__OTR__wario_kart/kart_102_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario103Wheel0[] = "__OTR__wario_kart/kart_103_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario103Wheel1[] = "__OTR__wario_kart/kart_103_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario103Wheel2[] = "__OTR__wario_kart/kart_103_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario103Wheel3[] = "__OTR__wario_kart/kart_103_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario104Wheel0[] = "__OTR__wario_kart/kart_104_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario104Wheel1[] = "__OTR__wario_kart/kart_104_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario104Wheel2[] = "__OTR__wario_kart/kart_104_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario104Wheel3[] = "__OTR__wario_kart/kart_104_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario105Wheel0[] = "__OTR__wario_kart/kart_105_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario105Wheel1[] = "__OTR__wario_kart/kart_105_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario105Wheel2[] = "__OTR__wario_kart/kart_105_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario105Wheel3[] = "__OTR__wario_kart/kart_105_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario106Wheel0[] = "__OTR__wario_kart/kart_106_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario106Wheel1[] = "__OTR__wario_kart/kart_106_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario106Wheel2[] = "__OTR__wario_kart/kart_106_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario106Wheel3[] = "__OTR__wario_kart/kart_106_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario107Wheel0[] = "__OTR__wario_kart/kart_107_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario107Wheel1[] = "__OTR__wario_kart/kart_107_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario107Wheel2[] = "__OTR__wario_kart/kart_107_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario107Wheel3[] = "__OTR__wario_kart/kart_107_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario108Wheel0[] = "__OTR__wario_kart/kart_108_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario108Wheel1[] = "__OTR__wario_kart/kart_108_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario108Wheel2[] = "__OTR__wario_kart/kart_108_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario108Wheel3[] = "__OTR__wario_kart/kart_108_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario109Wheel0[] = "__OTR__wario_kart/kart_109_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario109Wheel1[] = "__OTR__wario_kart/kart_109_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario109Wheel2[] = "__OTR__wario_kart/kart_109_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario109Wheel3[] = "__OTR__wario_kart/kart_109_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario110Wheel0[] = "__OTR__wario_kart/kart_110_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario110Wheel1[] = "__OTR__wario_kart/kart_110_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario110Wheel2[] = "__OTR__wario_kart/kart_110_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario110Wheel3[] = "__OTR__wario_kart/kart_110_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario111Wheel0[] = "__OTR__wario_kart/kart_111_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario111Wheel1[] = "__OTR__wario_kart/kart_111_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario111Wheel2[] = "__OTR__wario_kart/kart_111_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario111Wheel3[] = "__OTR__wario_kart/kart_111_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario112Wheel0[] = "__OTR__wario_kart/kart_112_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario112Wheel1[] = "__OTR__wario_kart/kart_112_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario112Wheel2[] = "__OTR__wario_kart/kart_112_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario112Wheel3[] = "__OTR__wario_kart/kart_112_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario113Wheel0[] = "__OTR__wario_kart/kart_113_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario113Wheel1[] = "__OTR__wario_kart/kart_113_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario113Wheel2[] = "__OTR__wario_kart/kart_113_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario113Wheel3[] = "__OTR__wario_kart/kart_113_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario114Wheel0[] = "__OTR__wario_kart/kart_114_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario114Wheel1[] = "__OTR__wario_kart/kart_114_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario114Wheel2[] = "__OTR__wario_kart/kart_114_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario114Wheel3[] = "__OTR__wario_kart/kart_114_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario115Wheel0[] = "__OTR__wario_kart/kart_115_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario115Wheel1[] = "__OTR__wario_kart/kart_115_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario115Wheel2[] = "__OTR__wario_kart/kart_115_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario115Wheel3[] = "__OTR__wario_kart/kart_115_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario116Wheel0[] = "__OTR__wario_kart/kart_116_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario116Wheel1[] = "__OTR__wario_kart/kart_116_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario116Wheel2[] = "__OTR__wario_kart/kart_116_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario116Wheel3[] = "__OTR__wario_kart/kart_116_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario117Wheel0[] = "__OTR__wario_kart/kart_117_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario117Wheel1[] = "__OTR__wario_kart/kart_117_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario117Wheel2[] = "__OTR__wario_kart/kart_117_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario117Wheel3[] = "__OTR__wario_kart/kart_117_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario118Wheel0[] = "__OTR__wario_kart/kart_118_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario118Wheel1[] = "__OTR__wario_kart/kart_118_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario118Wheel2[] = "__OTR__wario_kart/kart_118_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario118Wheel3[] = "__OTR__wario_kart/kart_118_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario119Wheel0[] = "__OTR__wario_kart/kart_119_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario119Wheel1[] = "__OTR__wario_kart/kart_119_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario119Wheel2[] = "__OTR__wario_kart/kart_119_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario119Wheel3[] = "__OTR__wario_kart/kart_119_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario120Wheel0[] = "__OTR__wario_kart/kart_120_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario120Wheel1[] = "__OTR__wario_kart/kart_120_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario120Wheel2[] = "__OTR__wario_kart/kart_120_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario120Wheel3[] = "__OTR__wario_kart/kart_120_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario121Wheel0[] = "__OTR__wario_kart/kart_121_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario121Wheel1[] = "__OTR__wario_kart/kart_121_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario121Wheel2[] = "__OTR__wario_kart/kart_121_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario121Wheel3[] = "__OTR__wario_kart/kart_121_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario122Wheel0[] = "__OTR__wario_kart/kart_122_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario122Wheel1[] = "__OTR__wario_kart/kart_122_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario122Wheel2[] = "__OTR__wario_kart/kart_122_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario122Wheel3[] = "__OTR__wario_kart/kart_122_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario123Wheel0[] = "__OTR__wario_kart/kart_123_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario123Wheel1[] = "__OTR__wario_kart/kart_123_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario123Wheel2[] = "__OTR__wario_kart/kart_123_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario123Wheel3[] = "__OTR__wario_kart/kart_123_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario124Wheel0[] = "__OTR__wario_kart/kart_124_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario124Wheel1[] = "__OTR__wario_kart/kart_124_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario124Wheel2[] = "__OTR__wario_kart/kart_124_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario124Wheel3[] = "__OTR__wario_kart/kart_124_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario125Wheel0[] = "__OTR__wario_kart/kart_125_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario125Wheel1[] = "__OTR__wario_kart/kart_125_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario125Wheel2[] = "__OTR__wario_kart/kart_125_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario125Wheel3[] = "__OTR__wario_kart/kart_125_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario126Wheel0[] = "__OTR__wario_kart/kart_126_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario126Wheel1[] = "__OTR__wario_kart/kart_126_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario126Wheel2[] = "__OTR__wario_kart/kart_126_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario126Wheel3[] = "__OTR__wario_kart/kart_126_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario127Wheel0[] = "__OTR__wario_kart/kart_127_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario127Wheel1[] = "__OTR__wario_kart/kart_127_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario127Wheel2[] = "__OTR__wario_kart/kart_127_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario127Wheel3[] = "__OTR__wario_kart/kart_127_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario128Wheel0[] = "__OTR__wario_kart/kart_128_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario128Wheel1[] = "__OTR__wario_kart/kart_128_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario128Wheel2[] = "__OTR__wario_kart/kart_128_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario128Wheel3[] = "__OTR__wario_kart/kart_128_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario129Wheel0[] = "__OTR__wario_kart/kart_129_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario129Wheel1[] = "__OTR__wario_kart/kart_129_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario129Wheel2[] = "__OTR__wario_kart/kart_129_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario129Wheel3[] = "__OTR__wario_kart/kart_129_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario130Wheel0[] = "__OTR__wario_kart/kart_130_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario130Wheel1[] = "__OTR__wario_kart/kart_130_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario130Wheel2[] = "__OTR__wario_kart/kart_130_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario130Wheel3[] = "__OTR__wario_kart/kart_130_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario131Wheel0[] = "__OTR__wario_kart/kart_131_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario131Wheel1[] = "__OTR__wario_kart/kart_131_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario131Wheel2[] = "__OTR__wario_kart/kart_131_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario131Wheel3[] = "__OTR__wario_kart/kart_131_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario132Wheel0[] = "__OTR__wario_kart/kart_132_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario132Wheel1[] = "__OTR__wario_kart/kart_132_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario132Wheel2[] = "__OTR__wario_kart/kart_132_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario132Wheel3[] = "__OTR__wario_kart/kart_132_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario133Wheel0[] = "__OTR__wario_kart/kart_133_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario133Wheel1[] = "__OTR__wario_kart/kart_133_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario133Wheel2[] = "__OTR__wario_kart/kart_133_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario133Wheel3[] = "__OTR__wario_kart/kart_133_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario134Wheel0[] = "__OTR__wario_kart/kart_134_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario134Wheel1[] = "__OTR__wario_kart/kart_134_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario134Wheel2[] = "__OTR__wario_kart/kart_134_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario134Wheel3[] = "__OTR__wario_kart/kart_134_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario135Wheel0[] = "__OTR__wario_kart/kart_135_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario135Wheel1[] = "__OTR__wario_kart/kart_135_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario135Wheel2[] = "__OTR__wario_kart/kart_135_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario135Wheel3[] = "__OTR__wario_kart/kart_135_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario136Wheel0[] = "__OTR__wario_kart/kart_136_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario136Wheel1[] = "__OTR__wario_kart/kart_136_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario136Wheel2[] = "__OTR__wario_kart/kart_136_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario136Wheel3[] = "__OTR__wario_kart/kart_136_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario137Wheel0[] = "__OTR__wario_kart/kart_137_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario137Wheel1[] = "__OTR__wario_kart/kart_137_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario137Wheel2[] = "__OTR__wario_kart/kart_137_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario137Wheel3[] = "__OTR__wario_kart/kart_137_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario138Wheel0[] = "__OTR__wario_kart/kart_138_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario138Wheel1[] = "__OTR__wario_kart/kart_138_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario138Wheel2[] = "__OTR__wario_kart/kart_138_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario138Wheel3[] = "__OTR__wario_kart/kart_138_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario139Wheel0[] = "__OTR__wario_kart/kart_139_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario139Wheel1[] = "__OTR__wario_kart/kart_139_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario139Wheel2[] = "__OTR__wario_kart/kart_139_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario139Wheel3[] = "__OTR__wario_kart/kart_139_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario140Wheel0[] = "__OTR__wario_kart/kart_140_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario140Wheel1[] = "__OTR__wario_kart/kart_140_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario140Wheel2[] = "__OTR__wario_kart/kart_140_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario140Wheel3[] = "__OTR__wario_kart/kart_140_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario141Wheel0[] = "__OTR__wario_kart/kart_141_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario141Wheel1[] = "__OTR__wario_kart/kart_141_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario141Wheel2[] = "__OTR__wario_kart/kart_141_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario141Wheel3[] = "__OTR__wario_kart/kart_141_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario142Wheel0[] = "__OTR__wario_kart/kart_142_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario142Wheel1[] = "__OTR__wario_kart/kart_142_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario142Wheel2[] = "__OTR__wario_kart/kart_142_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario142Wheel3[] = "__OTR__wario_kart/kart_142_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario143Wheel0[] = "__OTR__wario_kart/kart_143_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario143Wheel1[] = "__OTR__wario_kart/kart_143_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario143Wheel2[] = "__OTR__wario_kart/kart_143_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario143Wheel3[] = "__OTR__wario_kart/kart_143_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario144Wheel0[] = "__OTR__wario_kart/kart_144_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario144Wheel1[] = "__OTR__wario_kart/kart_144_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario144Wheel2[] = "__OTR__wario_kart/kart_144_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario144Wheel3[] = "__OTR__wario_kart/kart_144_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario145Wheel0[] = "__OTR__wario_kart/kart_145_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario145Wheel1[] = "__OTR__wario_kart/kart_145_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario145Wheel2[] = "__OTR__wario_kart/kart_145_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario145Wheel3[] = "__OTR__wario_kart/kart_145_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario146Wheel0[] = "__OTR__wario_kart/kart_146_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario146Wheel1[] = "__OTR__wario_kart/kart_146_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario146Wheel2[] = "__OTR__wario_kart/kart_146_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario146Wheel3[] = "__OTR__wario_kart/kart_146_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario147Wheel0[] = "__OTR__wario_kart/kart_147_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario147Wheel1[] = "__OTR__wario_kart/kart_147_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario147Wheel2[] = "__OTR__wario_kart/kart_147_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario147Wheel3[] = "__OTR__wario_kart/kart_147_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario148Wheel0[] = "__OTR__wario_kart/kart_148_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario148Wheel1[] = "__OTR__wario_kart/kart_148_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario148Wheel2[] = "__OTR__wario_kart/kart_148_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario148Wheel3[] = "__OTR__wario_kart/kart_148_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario149Wheel0[] = "__OTR__wario_kart/kart_149_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario149Wheel1[] = "__OTR__wario_kart/kart_149_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario149Wheel2[] = "__OTR__wario_kart/kart_149_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario149Wheel3[] = "__OTR__wario_kart/kart_149_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario150Wheel0[] = "__OTR__wario_kart/kart_150_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario150Wheel1[] = "__OTR__wario_kart/kart_150_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario150Wheel2[] = "__OTR__wario_kart/kart_150_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario150Wheel3[] = "__OTR__wario_kart/kart_150_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario151Wheel0[] = "__OTR__wario_kart/kart_151_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario151Wheel1[] = "__OTR__wario_kart/kart_151_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario151Wheel2[] = "__OTR__wario_kart/kart_151_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario151Wheel3[] = "__OTR__wario_kart/kart_151_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario152Wheel0[] = "__OTR__wario_kart/kart_152_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario152Wheel1[] = "__OTR__wario_kart/kart_152_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario152Wheel2[] = "__OTR__wario_kart/kart_152_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario152Wheel3[] = "__OTR__wario_kart/kart_152_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario153Wheel0[] = "__OTR__wario_kart/kart_153_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario153Wheel1[] = "__OTR__wario_kart/kart_153_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario153Wheel2[] = "__OTR__wario_kart/kart_153_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario153Wheel3[] = "__OTR__wario_kart/kart_153_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario154Wheel0[] = "__OTR__wario_kart/kart_154_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario154Wheel1[] = "__OTR__wario_kart/kart_154_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario154Wheel2[] = "__OTR__wario_kart/kart_154_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario154Wheel3[] = "__OTR__wario_kart/kart_154_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario155Wheel0[] = "__OTR__wario_kart/kart_155_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario155Wheel1[] = "__OTR__wario_kart/kart_155_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario155Wheel2[] = "__OTR__wario_kart/kart_155_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario155Wheel3[] = "__OTR__wario_kart/kart_155_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario156Wheel0[] = "__OTR__wario_kart/kart_156_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario156Wheel1[] = "__OTR__wario_kart/kart_156_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario156Wheel2[] = "__OTR__wario_kart/kart_156_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario156Wheel3[] = "__OTR__wario_kart/kart_156_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario157Wheel0[] = "__OTR__wario_kart/kart_157_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario157Wheel1[] = "__OTR__wario_kart/kart_157_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario157Wheel2[] = "__OTR__wario_kart/kart_157_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario157Wheel3[] = "__OTR__wario_kart/kart_157_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario158Wheel0[] = "__OTR__wario_kart/kart_158_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario158Wheel1[] = "__OTR__wario_kart/kart_158_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario158Wheel2[] = "__OTR__wario_kart/kart_158_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario158Wheel3[] = "__OTR__wario_kart/kart_158_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario159Wheel0[] = "__OTR__wario_kart/kart_159_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario159Wheel1[] = "__OTR__wario_kart/kart_159_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario159Wheel2[] = "__OTR__wario_kart/kart_159_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario159Wheel3[] = "__OTR__wario_kart/kart_159_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario160Wheel0[] = "__OTR__wario_kart/kart_160_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario160Wheel1[] = "__OTR__wario_kart/kart_160_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario160Wheel2[] = "__OTR__wario_kart/kart_160_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario160Wheel3[] = "__OTR__wario_kart/kart_160_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario161Wheel0[] = "__OTR__wario_kart/kart_161_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario161Wheel1[] = "__OTR__wario_kart/kart_161_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario161Wheel2[] = "__OTR__wario_kart/kart_161_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario161Wheel3[] = "__OTR__wario_kart/kart_161_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario162Wheel0[] = "__OTR__wario_kart/kart_162_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario162Wheel1[] = "__OTR__wario_kart/kart_162_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario162Wheel2[] = "__OTR__wario_kart/kart_162_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario162Wheel3[] = "__OTR__wario_kart/kart_162_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario163Wheel0[] = "__OTR__wario_kart/kart_163_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario163Wheel1[] = "__OTR__wario_kart/kart_163_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario163Wheel2[] = "__OTR__wario_kart/kart_163_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario163Wheel3[] = "__OTR__wario_kart/kart_163_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario164Wheel0[] = "__OTR__wario_kart/kart_164_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario164Wheel1[] = "__OTR__wario_kart/kart_164_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario164Wheel2[] = "__OTR__wario_kart/kart_164_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario164Wheel3[] = "__OTR__wario_kart/kart_164_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario165Wheel0[] = "__OTR__wario_kart/kart_165_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario165Wheel1[] = "__OTR__wario_kart/kart_165_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario165Wheel2[] = "__OTR__wario_kart/kart_165_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario165Wheel3[] = "__OTR__wario_kart/kart_165_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario166Wheel0[] = "__OTR__wario_kart/kart_166_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario166Wheel1[] = "__OTR__wario_kart/kart_166_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario166Wheel2[] = "__OTR__wario_kart/kart_166_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario166Wheel3[] = "__OTR__wario_kart/kart_166_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario167Wheel0[] = "__OTR__wario_kart/kart_167_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario167Wheel1[] = "__OTR__wario_kart/kart_167_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario167Wheel2[] = "__OTR__wario_kart/kart_167_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario167Wheel3[] = "__OTR__wario_kart/kart_167_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario168Wheel0[] = "__OTR__wario_kart/kart_168_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario168Wheel1[] = "__OTR__wario_kart/kart_168_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario168Wheel2[] = "__OTR__wario_kart/kart_168_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario168Wheel3[] = "__OTR__wario_kart/kart_168_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario169Wheel0[] = "__OTR__wario_kart/kart_169_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario169Wheel1[] = "__OTR__wario_kart/kart_169_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario169Wheel2[] = "__OTR__wario_kart/kart_169_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario169Wheel3[] = "__OTR__wario_kart/kart_169_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario170Wheel0[] = "__OTR__wario_kart/kart_170_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario170Wheel1[] = "__OTR__wario_kart/kart_170_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario170Wheel2[] = "__OTR__wario_kart/kart_170_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario170Wheel3[] = "__OTR__wario_kart/kart_170_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario171Wheel0[] = "__OTR__wario_kart/kart_171_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario171Wheel1[] = "__OTR__wario_kart/kart_171_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario171Wheel2[] = "__OTR__wario_kart/kart_171_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario171Wheel3[] = "__OTR__wario_kart/kart_171_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario172Wheel0[] = "__OTR__wario_kart/kart_172_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario172Wheel1[] = "__OTR__wario_kart/kart_172_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario172Wheel2[] = "__OTR__wario_kart/kart_172_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario172Wheel3[] = "__OTR__wario_kart/kart_172_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario173Wheel0[] = "__OTR__wario_kart/kart_173_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario173Wheel1[] = "__OTR__wario_kart/kart_173_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario173Wheel2[] = "__OTR__wario_kart/kart_173_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario173Wheel3[] = "__OTR__wario_kart/kart_173_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario174Wheel0[] = "__OTR__wario_kart/kart_174_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario174Wheel1[] = "__OTR__wario_kart/kart_174_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario174Wheel2[] = "__OTR__wario_kart/kart_174_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario174Wheel3[] = "__OTR__wario_kart/kart_174_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario175Wheel0[] = "__OTR__wario_kart/kart_175_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario175Wheel1[] = "__OTR__wario_kart/kart_175_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario175Wheel2[] = "__OTR__wario_kart/kart_175_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario175Wheel3[] = "__OTR__wario_kart/kart_175_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario176Wheel0[] = "__OTR__wario_kart/kart_176_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario176Wheel1[] = "__OTR__wario_kart/kart_176_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario176Wheel2[] = "__OTR__wario_kart/kart_176_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario176Wheel3[] = "__OTR__wario_kart/kart_176_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario177Wheel0[] = "__OTR__wario_kart/kart_177_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario177Wheel1[] = "__OTR__wario_kart/kart_177_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario177Wheel2[] = "__OTR__wario_kart/kart_177_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario177Wheel3[] = "__OTR__wario_kart/kart_177_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario178Wheel0[] = "__OTR__wario_kart/kart_178_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario178Wheel1[] = "__OTR__wario_kart/kart_178_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario178Wheel2[] = "__OTR__wario_kart/kart_178_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario178Wheel3[] = "__OTR__wario_kart/kart_178_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario179Wheel0[] = "__OTR__wario_kart/kart_179_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario179Wheel1[] = "__OTR__wario_kart/kart_179_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario179Wheel2[] = "__OTR__wario_kart/kart_179_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario179Wheel3[] = "__OTR__wario_kart/kart_179_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario180Wheel0[] = "__OTR__wario_kart/kart_180_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario180Wheel1[] = "__OTR__wario_kart/kart_180_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario180Wheel2[] = "__OTR__wario_kart/kart_180_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario180Wheel3[] = "__OTR__wario_kart/kart_180_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario181Wheel0[] = "__OTR__wario_kart/kart_181_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario181Wheel1[] = "__OTR__wario_kart/kart_181_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario181Wheel2[] = "__OTR__wario_kart/kart_181_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario181Wheel3[] = "__OTR__wario_kart/kart_181_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario182Wheel0[] = "__OTR__wario_kart/kart_182_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario182Wheel1[] = "__OTR__wario_kart/kart_182_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario182Wheel2[] = "__OTR__wario_kart/kart_182_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario182Wheel3[] = "__OTR__wario_kart/kart_182_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario183Wheel0[] = "__OTR__wario_kart/kart_183_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario183Wheel1[] = "__OTR__wario_kart/kart_183_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario183Wheel2[] = "__OTR__wario_kart/kart_183_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario183Wheel3[] = "__OTR__wario_kart/kart_183_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario184Wheel0[] = "__OTR__wario_kart/kart_184_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario184Wheel1[] = "__OTR__wario_kart/kart_184_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario184Wheel2[] = "__OTR__wario_kart/kart_184_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario184Wheel3[] = "__OTR__wario_kart/kart_184_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario185Wheel0[] = "__OTR__wario_kart/kart_185_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario185Wheel1[] = "__OTR__wario_kart/kart_185_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario185Wheel2[] = "__OTR__wario_kart/kart_185_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario185Wheel3[] = "__OTR__wario_kart/kart_185_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario186Wheel0[] = "__OTR__wario_kart/kart_186_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario186Wheel1[] = "__OTR__wario_kart/kart_186_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario186Wheel2[] = "__OTR__wario_kart/kart_186_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario186Wheel3[] = "__OTR__wario_kart/kart_186_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario187Wheel0[] = "__OTR__wario_kart/kart_187_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario187Wheel1[] = "__OTR__wario_kart/kart_187_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario187Wheel2[] = "__OTR__wario_kart/kart_187_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario187Wheel3[] = "__OTR__wario_kart/kart_187_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario188Wheel0[] = "__OTR__wario_kart/kart_188_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario188Wheel1[] = "__OTR__wario_kart/kart_188_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario188Wheel2[] = "__OTR__wario_kart/kart_188_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario188Wheel3[] = "__OTR__wario_kart/kart_188_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario189Wheel0[] = "__OTR__wario_kart/kart_189_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario189Wheel1[] = "__OTR__wario_kart/kart_189_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario189Wheel2[] = "__OTR__wario_kart/kart_189_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario189Wheel3[] = "__OTR__wario_kart/kart_189_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario190Wheel0[] = "__OTR__wario_kart/kart_190_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario190Wheel1[] = "__OTR__wario_kart/kart_190_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario190Wheel2[] = "__OTR__wario_kart/kart_190_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario190Wheel3[] = "__OTR__wario_kart/kart_190_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario191Wheel0[] = "__OTR__wario_kart/kart_191_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario191Wheel1[] = "__OTR__wario_kart/kart_191_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario191Wheel2[] = "__OTR__wario_kart/kart_191_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario191Wheel3[] = "__OTR__wario_kart/kart_191_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario192Wheel0[] = "__OTR__wario_kart/kart_192_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario192Wheel1[] = "__OTR__wario_kart/kart_192_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario192Wheel2[] = "__OTR__wario_kart/kart_192_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario192Wheel3[] = "__OTR__wario_kart/kart_192_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario193Wheel0[] = "__OTR__wario_kart/kart_193_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario193Wheel1[] = "__OTR__wario_kart/kart_193_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario193Wheel2[] = "__OTR__wario_kart/kart_193_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario193Wheel3[] = "__OTR__wario_kart/kart_193_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario194Wheel0[] = "__OTR__wario_kart/kart_194_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario194Wheel1[] = "__OTR__wario_kart/kart_194_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario194Wheel2[] = "__OTR__wario_kart/kart_194_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario194Wheel3[] = "__OTR__wario_kart/kart_194_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario195Wheel0[] = "__OTR__wario_kart/kart_195_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario195Wheel1[] = "__OTR__wario_kart/kart_195_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario195Wheel2[] = "__OTR__wario_kart/kart_195_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario195Wheel3[] = "__OTR__wario_kart/kart_195_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario196Wheel0[] = "__OTR__wario_kart/kart_196_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario196Wheel1[] = "__OTR__wario_kart/kart_196_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario196Wheel2[] = "__OTR__wario_kart/kart_196_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario196Wheel3[] = "__OTR__wario_kart/kart_196_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario197Wheel0[] = "__OTR__wario_kart/kart_197_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario197Wheel1[] = "__OTR__wario_kart/kart_197_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario197Wheel2[] = "__OTR__wario_kart/kart_197_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario197Wheel3[] = "__OTR__wario_kart/kart_197_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario198Wheel0[] = "__OTR__wario_kart/kart_198_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario198Wheel1[] = "__OTR__wario_kart/kart_198_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario198Wheel2[] = "__OTR__wario_kart/kart_198_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario198Wheel3[] = "__OTR__wario_kart/kart_198_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario199Wheel0[] = "__OTR__wario_kart/kart_199_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario199Wheel1[] = "__OTR__wario_kart/kart_199_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario199Wheel2[] = "__OTR__wario_kart/kart_199_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario199Wheel3[] = "__OTR__wario_kart/kart_199_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario200Wheel0[] = "__OTR__wario_kart/kart_200_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario200Wheel1[] = "__OTR__wario_kart/kart_200_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario200Wheel2[] = "__OTR__wario_kart/kart_200_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario200Wheel3[] = "__OTR__wario_kart/kart_200_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario201Wheel0[] = "__OTR__wario_kart/kart_201_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario201Wheel1[] = "__OTR__wario_kart/kart_201_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario201Wheel2[] = "__OTR__wario_kart/kart_201_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario201Wheel3[] = "__OTR__wario_kart/kart_201_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario202Wheel0[] = "__OTR__wario_kart/kart_202_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario202Wheel1[] = "__OTR__wario_kart/kart_202_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario202Wheel2[] = "__OTR__wario_kart/kart_202_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario202Wheel3[] = "__OTR__wario_kart/kart_202_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario203Wheel0[] = "__OTR__wario_kart/kart_203_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario203Wheel1[] = "__OTR__wario_kart/kart_203_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario203Wheel2[] = "__OTR__wario_kart/kart_203_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario203Wheel3[] = "__OTR__wario_kart/kart_203_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario204Wheel0[] = "__OTR__wario_kart/kart_204_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario204Wheel1[] = "__OTR__wario_kart/kart_204_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario204Wheel2[] = "__OTR__wario_kart/kart_204_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario204Wheel3[] = "__OTR__wario_kart/kart_204_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario205Wheel0[] = "__OTR__wario_kart/kart_205_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario205Wheel1[] = "__OTR__wario_kart/kart_205_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario205Wheel2[] = "__OTR__wario_kart/kart_205_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario205Wheel3[] = "__OTR__wario_kart/kart_205_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario206Wheel0[] = "__OTR__wario_kart/kart_206_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario206Wheel1[] = "__OTR__wario_kart/kart_206_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario206Wheel2[] = "__OTR__wario_kart/kart_206_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario206Wheel3[] = "__OTR__wario_kart/kart_206_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario207Wheel0[] = "__OTR__wario_kart/kart_207_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario207Wheel1[] = "__OTR__wario_kart/kart_207_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario207Wheel2[] = "__OTR__wario_kart/kart_207_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario207Wheel3[] = "__OTR__wario_kart/kart_207_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario208Wheel0[] = "__OTR__wario_kart/kart_208_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario208Wheel1[] = "__OTR__wario_kart/kart_208_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario208Wheel2[] = "__OTR__wario_kart/kart_208_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario208Wheel3[] = "__OTR__wario_kart/kart_208_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario209Wheel0[] = "__OTR__wario_kart/kart_209_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario209Wheel1[] = "__OTR__wario_kart/kart_209_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario209Wheel2[] = "__OTR__wario_kart/kart_209_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario209Wheel3[] = "__OTR__wario_kart/kart_209_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario210Wheel0[] = "__OTR__wario_kart/kart_210_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario210Wheel1[] = "__OTR__wario_kart/kart_210_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario210Wheel2[] = "__OTR__wario_kart/kart_210_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario210Wheel3[] = "__OTR__wario_kart/kart_210_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario211Wheel0[] = "__OTR__wario_kart/kart_211_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario211Wheel1[] = "__OTR__wario_kart/kart_211_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario211Wheel2[] = "__OTR__wario_kart/kart_211_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario211Wheel3[] = "__OTR__wario_kart/kart_211_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario212Wheel0[] = "__OTR__wario_kart/kart_212_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario212Wheel1[] = "__OTR__wario_kart/kart_212_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario212Wheel2[] = "__OTR__wario_kart/kart_212_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario212Wheel3[] = "__OTR__wario_kart/kart_212_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario213Wheel0[] = "__OTR__wario_kart/kart_213_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario213Wheel1[] = "__OTR__wario_kart/kart_213_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario213Wheel2[] = "__OTR__wario_kart/kart_213_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario213Wheel3[] = "__OTR__wario_kart/kart_213_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario214Wheel0[] = "__OTR__wario_kart/kart_214_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario214Wheel1[] = "__OTR__wario_kart/kart_214_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario214Wheel2[] = "__OTR__wario_kart/kart_214_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario214Wheel3[] = "__OTR__wario_kart/kart_214_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario215Wheel0[] = "__OTR__wario_kart/kart_215_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario215Wheel1[] = "__OTR__wario_kart/kart_215_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario215Wheel2[] = "__OTR__wario_kart/kart_215_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario215Wheel3[] = "__OTR__wario_kart/kart_215_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario216Wheel0[] = "__OTR__wario_kart/kart_216_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario216Wheel1[] = "__OTR__wario_kart/kart_216_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario216Wheel2[] = "__OTR__wario_kart/kart_216_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario216Wheel3[] = "__OTR__wario_kart/kart_216_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario217Wheel0[] = "__OTR__wario_kart/kart_217_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario217Wheel1[] = "__OTR__wario_kart/kart_217_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario217Wheel2[] = "__OTR__wario_kart/kart_217_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario217Wheel3[] = "__OTR__wario_kart/kart_217_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario218Wheel0[] = "__OTR__wario_kart/kart_218_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario218Wheel1[] = "__OTR__wario_kart/kart_218_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario218Wheel2[] = "__OTR__wario_kart/kart_218_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario218Wheel3[] = "__OTR__wario_kart/kart_218_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario219Wheel0[] = "__OTR__wario_kart/kart_219_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario219Wheel1[] = "__OTR__wario_kart/kart_219_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario219Wheel2[] = "__OTR__wario_kart/kart_219_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario219Wheel3[] = "__OTR__wario_kart/kart_219_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario220Wheel0[] = "__OTR__wario_kart/kart_220_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario220Wheel1[] = "__OTR__wario_kart/kart_220_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario220Wheel2[] = "__OTR__wario_kart/kart_220_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario220Wheel3[] = "__OTR__wario_kart/kart_220_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario221Wheel0[] = "__OTR__wario_kart/kart_221_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario221Wheel1[] = "__OTR__wario_kart/kart_221_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario221Wheel2[] = "__OTR__wario_kart/kart_221_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario221Wheel3[] = "__OTR__wario_kart/kart_221_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario222Wheel0[] = "__OTR__wario_kart/kart_222_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario222Wheel1[] = "__OTR__wario_kart/kart_222_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario222Wheel2[] = "__OTR__wario_kart/kart_222_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario222Wheel3[] = "__OTR__wario_kart/kart_222_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario223Wheel0[] = "__OTR__wario_kart/kart_223_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario223Wheel1[] = "__OTR__wario_kart/kart_223_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario223Wheel2[] = "__OTR__wario_kart/kart_223_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario223Wheel3[] = "__OTR__wario_kart/kart_223_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario224Wheel0[] = "__OTR__wario_kart/kart_224_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario224Wheel1[] = "__OTR__wario_kart/kart_224_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario224Wheel2[] = "__OTR__wario_kart/kart_224_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario224Wheel3[] = "__OTR__wario_kart/kart_224_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario225Wheel0[] = "__OTR__wario_kart/kart_225_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario225Wheel1[] = "__OTR__wario_kart/kart_225_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario225Wheel2[] = "__OTR__wario_kart/kart_225_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario225Wheel3[] = "__OTR__wario_kart/kart_225_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario226Wheel0[] = "__OTR__wario_kart/kart_226_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario226Wheel1[] = "__OTR__wario_kart/kart_226_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario226Wheel2[] = "__OTR__wario_kart/kart_226_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario226Wheel3[] = "__OTR__wario_kart/kart_226_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario227Wheel0[] = "__OTR__wario_kart/kart_227_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario227Wheel1[] = "__OTR__wario_kart/kart_227_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario227Wheel2[] = "__OTR__wario_kart/kart_227_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario227Wheel3[] = "__OTR__wario_kart/kart_227_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario228Wheel0[] = "__OTR__wario_kart/kart_228_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario228Wheel1[] = "__OTR__wario_kart/kart_228_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario228Wheel2[] = "__OTR__wario_kart/kart_228_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario228Wheel3[] = "__OTR__wario_kart/kart_228_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario229Wheel0[] = "__OTR__wario_kart/kart_229_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario229Wheel1[] = "__OTR__wario_kart/kart_229_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario229Wheel2[] = "__OTR__wario_kart/kart_229_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario229Wheel3[] = "__OTR__wario_kart/kart_229_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario230Wheel0[] = "__OTR__wario_kart/kart_230_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario230Wheel1[] = "__OTR__wario_kart/kart_230_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario230Wheel2[] = "__OTR__wario_kart/kart_230_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario230Wheel3[] = "__OTR__wario_kart/kart_230_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario231Wheel0[] = "__OTR__wario_kart/kart_231_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario231Wheel1[] = "__OTR__wario_kart/kart_231_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario231Wheel2[] = "__OTR__wario_kart/kart_231_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario231Wheel3[] = "__OTR__wario_kart/kart_231_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario232Wheel0[] = "__OTR__wario_kart/kart_232_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario232Wheel1[] = "__OTR__wario_kart/kart_232_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario232Wheel2[] = "__OTR__wario_kart/kart_232_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario232Wheel3[] = "__OTR__wario_kart/kart_232_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario233Wheel0[] = "__OTR__wario_kart/kart_233_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario233Wheel1[] = "__OTR__wario_kart/kart_233_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario233Wheel2[] = "__OTR__wario_kart/kart_233_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario233Wheel3[] = "__OTR__wario_kart/kart_233_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario234Wheel0[] = "__OTR__wario_kart/kart_234_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario234Wheel1[] = "__OTR__wario_kart/kart_234_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario234Wheel2[] = "__OTR__wario_kart/kart_234_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario234Wheel3[] = "__OTR__wario_kart/kart_234_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario235Wheel0[] = "__OTR__wario_kart/kart_235_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario235Wheel1[] = "__OTR__wario_kart/kart_235_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario235Wheel2[] = "__OTR__wario_kart/kart_235_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario235Wheel3[] = "__OTR__wario_kart/kart_235_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario236Wheel0[] = "__OTR__wario_kart/kart_236_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario236Wheel1[] = "__OTR__wario_kart/kart_236_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario236Wheel2[] = "__OTR__wario_kart/kart_236_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario236Wheel3[] = "__OTR__wario_kart/kart_236_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario237Wheel0[] = "__OTR__wario_kart/kart_237_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario237Wheel1[] = "__OTR__wario_kart/kart_237_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario237Wheel2[] = "__OTR__wario_kart/kart_237_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario237Wheel3[] = "__OTR__wario_kart/kart_237_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario238Wheel0[] = "__OTR__wario_kart/kart_238_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario238Wheel1[] = "__OTR__wario_kart/kart_238_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario238Wheel2[] = "__OTR__wario_kart/kart_238_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario238Wheel3[] = "__OTR__wario_kart/kart_238_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario239Wheel0[] = "__OTR__wario_kart/kart_239_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario239Wheel1[] = "__OTR__wario_kart/kart_239_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario239Wheel2[] = "__OTR__wario_kart/kart_239_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario239Wheel3[] = "__OTR__wario_kart/kart_239_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario240Wheel0[] = "__OTR__wario_kart/kart_240_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario240Wheel1[] = "__OTR__wario_kart/kart_240_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario240Wheel2[] = "__OTR__wario_kart/kart_240_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario240Wheel3[] = "__OTR__wario_kart/kart_240_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario241Wheel0[] = "__OTR__wario_kart/kart_241_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario241Wheel1[] = "__OTR__wario_kart/kart_241_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario241Wheel2[] = "__OTR__wario_kart/kart_241_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario241Wheel3[] = "__OTR__wario_kart/kart_241_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario242Wheel0[] = "__OTR__wario_kart/kart_242_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario242Wheel1[] = "__OTR__wario_kart/kart_242_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario242Wheel2[] = "__OTR__wario_kart/kart_242_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario242Wheel3[] = "__OTR__wario_kart/kart_242_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario243Wheel0[] = "__OTR__wario_kart/kart_243_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario243Wheel1[] = "__OTR__wario_kart/kart_243_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario243Wheel2[] = "__OTR__wario_kart/kart_243_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario243Wheel3[] = "__OTR__wario_kart/kart_243_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario244Wheel0[] = "__OTR__wario_kart/kart_244_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario244Wheel1[] = "__OTR__wario_kart/kart_244_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario244Wheel2[] = "__OTR__wario_kart/kart_244_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario244Wheel3[] = "__OTR__wario_kart/kart_244_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario245Wheel0[] = "__OTR__wario_kart/kart_245_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario245Wheel1[] = "__OTR__wario_kart/kart_245_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario245Wheel2[] = "__OTR__wario_kart/kart_245_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario245Wheel3[] = "__OTR__wario_kart/kart_245_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario246Wheel0[] = "__OTR__wario_kart/kart_246_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario246Wheel1[] = "__OTR__wario_kart/kart_246_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario246Wheel2[] = "__OTR__wario_kart/kart_246_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario246Wheel3[] = "__OTR__wario_kart/kart_246_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario247Wheel0[] = "__OTR__wario_kart/kart_247_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario247Wheel1[] = "__OTR__wario_kart/kart_247_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario247Wheel2[] = "__OTR__wario_kart/kart_247_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario247Wheel3[] = "__OTR__wario_kart/kart_247_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario248Wheel0[] = "__OTR__wario_kart/kart_248_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario248Wheel1[] = "__OTR__wario_kart/kart_248_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario248Wheel2[] = "__OTR__wario_kart/kart_248_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario248Wheel3[] = "__OTR__wario_kart/kart_248_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario249Wheel0[] = "__OTR__wario_kart/kart_249_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario249Wheel1[] = "__OTR__wario_kart/kart_249_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario249Wheel2[] = "__OTR__wario_kart/kart_249_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario249Wheel3[] = "__OTR__wario_kart/kart_249_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario250Wheel0[] = "__OTR__wario_kart/kart_250_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario250Wheel1[] = "__OTR__wario_kart/kart_250_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario250Wheel2[] = "__OTR__wario_kart/kart_250_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario250Wheel3[] = "__OTR__wario_kart/kart_250_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario251Wheel0[] = "__OTR__wario_kart/kart_251_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario251Wheel1[] = "__OTR__wario_kart/kart_251_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario251Wheel2[] = "__OTR__wario_kart/kart_251_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario251Wheel3[] = "__OTR__wario_kart/kart_251_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario252Wheel0[] = "__OTR__wario_kart/kart_252_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario252Wheel1[] = "__OTR__wario_kart/kart_252_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario252Wheel2[] = "__OTR__wario_kart/kart_252_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario252Wheel3[] = "__OTR__wario_kart/kart_252_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario253Wheel0[] = "__OTR__wario_kart/kart_253_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario253Wheel1[] = "__OTR__wario_kart/kart_253_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario253Wheel2[] = "__OTR__wario_kart/kart_253_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario253Wheel3[] = "__OTR__wario_kart/kart_253_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario254Wheel0[] = "__OTR__wario_kart/kart_254_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario254Wheel1[] = "__OTR__wario_kart/kart_254_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario254Wheel2[] = "__OTR__wario_kart/kart_254_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario254Wheel3[] = "__OTR__wario_kart/kart_254_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario255Wheel0[] = "__OTR__wario_kart/kart_255_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario255Wheel1[] = "__OTR__wario_kart/kart_255_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario255Wheel2[] = "__OTR__wario_kart/kart_255_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario255Wheel3[] = "__OTR__wario_kart/kart_255_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario256Wheel0[] = "__OTR__wario_kart/kart_256_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario256Wheel1[] = "__OTR__wario_kart/kart_256_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario256Wheel2[] = "__OTR__wario_kart/kart_256_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario256Wheel3[] = "__OTR__wario_kart/kart_256_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario257Wheel0[] = "__OTR__wario_kart/kart_257_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario257Wheel1[] = "__OTR__wario_kart/kart_257_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario257Wheel2[] = "__OTR__wario_kart/kart_257_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario257Wheel3[] = "__OTR__wario_kart/kart_257_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario258Wheel0[] = "__OTR__wario_kart/kart_258_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario258Wheel1[] = "__OTR__wario_kart/kart_258_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario258Wheel2[] = "__OTR__wario_kart/kart_258_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario258Wheel3[] = "__OTR__wario_kart/kart_258_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario259Wheel0[] = "__OTR__wario_kart/kart_259_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario259Wheel1[] = "__OTR__wario_kart/kart_259_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario259Wheel2[] = "__OTR__wario_kart/kart_259_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario259Wheel3[] = "__OTR__wario_kart/kart_259_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario260Wheel0[] = "__OTR__wario_kart/kart_260_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario260Wheel1[] = "__OTR__wario_kart/kart_260_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario260Wheel2[] = "__OTR__wario_kart/kart_260_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario260Wheel3[] = "__OTR__wario_kart/kart_260_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario261Wheel0[] = "__OTR__wario_kart/kart_261_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario261Wheel1[] = "__OTR__wario_kart/kart_261_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario261Wheel2[] = "__OTR__wario_kart/kart_261_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario261Wheel3[] = "__OTR__wario_kart/kart_261_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario262Wheel0[] = "__OTR__wario_kart/kart_262_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario262Wheel1[] = "__OTR__wario_kart/kart_262_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario262Wheel2[] = "__OTR__wario_kart/kart_262_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario262Wheel3[] = "__OTR__wario_kart/kart_262_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario263Wheel0[] = "__OTR__wario_kart/kart_263_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario263Wheel1[] = "__OTR__wario_kart/kart_263_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario263Wheel2[] = "__OTR__wario_kart/kart_263_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario263Wheel3[] = "__OTR__wario_kart/kart_263_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario264Wheel0[] = "__OTR__wario_kart/kart_264_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario264Wheel1[] = "__OTR__wario_kart/kart_264_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario264Wheel2[] = "__OTR__wario_kart/kart_264_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario264Wheel3[] = "__OTR__wario_kart/kart_264_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario265Wheel0[] = "__OTR__wario_kart/kart_265_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario265Wheel1[] = "__OTR__wario_kart/kart_265_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario265Wheel2[] = "__OTR__wario_kart/kart_265_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario265Wheel3[] = "__OTR__wario_kart/kart_265_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario266Wheel0[] = "__OTR__wario_kart/kart_266_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario266Wheel1[] = "__OTR__wario_kart/kart_266_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario266Wheel2[] = "__OTR__wario_kart/kart_266_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario266Wheel3[] = "__OTR__wario_kart/kart_266_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario267Wheel0[] = "__OTR__wario_kart/kart_267_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario267Wheel1[] = "__OTR__wario_kart/kart_267_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario267Wheel2[] = "__OTR__wario_kart/kart_267_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario267Wheel3[] = "__OTR__wario_kart/kart_267_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario268Wheel0[] = "__OTR__wario_kart/kart_268_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario268Wheel1[] = "__OTR__wario_kart/kart_268_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario268Wheel2[] = "__OTR__wario_kart/kart_268_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario268Wheel3[] = "__OTR__wario_kart/kart_268_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario269Wheel0[] = "__OTR__wario_kart/kart_269_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario269Wheel1[] = "__OTR__wario_kart/kart_269_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario269Wheel2[] = "__OTR__wario_kart/kart_269_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario269Wheel3[] = "__OTR__wario_kart/kart_269_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario270Wheel0[] = "__OTR__wario_kart/kart_270_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario270Wheel1[] = "__OTR__wario_kart/kart_270_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario270Wheel2[] = "__OTR__wario_kart/kart_270_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario270Wheel3[] = "__OTR__wario_kart/kart_270_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario271Wheel0[] = "__OTR__wario_kart/kart_271_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario271Wheel1[] = "__OTR__wario_kart/kart_271_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario271Wheel2[] = "__OTR__wario_kart/kart_271_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario271Wheel3[] = "__OTR__wario_kart/kart_271_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario272Wheel0[] = "__OTR__wario_kart/kart_272_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario272Wheel1[] = "__OTR__wario_kart/kart_272_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario272Wheel2[] = "__OTR__wario_kart/kart_272_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario272Wheel3[] = "__OTR__wario_kart/kart_272_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario273Wheel0[] = "__OTR__wario_kart/kart_273_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario273Wheel1[] = "__OTR__wario_kart/kart_273_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario273Wheel2[] = "__OTR__wario_kart/kart_273_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario273Wheel3[] = "__OTR__wario_kart/kart_273_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario274Wheel0[] = "__OTR__wario_kart/kart_274_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario274Wheel1[] = "__OTR__wario_kart/kart_274_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario274Wheel2[] = "__OTR__wario_kart/kart_274_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario274Wheel3[] = "__OTR__wario_kart/kart_274_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario275Wheel0[] = "__OTR__wario_kart/kart_275_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario275Wheel1[] = "__OTR__wario_kart/kart_275_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario275Wheel2[] = "__OTR__wario_kart/kart_275_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario275Wheel3[] = "__OTR__wario_kart/kart_275_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario276Wheel0[] = "__OTR__wario_kart/kart_276_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario276Wheel1[] = "__OTR__wario_kart/kart_276_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario276Wheel2[] = "__OTR__wario_kart/kart_276_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario276Wheel3[] = "__OTR__wario_kart/kart_276_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario277Wheel0[] = "__OTR__wario_kart/kart_277_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario277Wheel1[] = "__OTR__wario_kart/kart_277_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario277Wheel2[] = "__OTR__wario_kart/kart_277_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario277Wheel3[] = "__OTR__wario_kart/kart_277_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario278Wheel0[] = "__OTR__wario_kart/kart_278_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario278Wheel1[] = "__OTR__wario_kart/kart_278_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario278Wheel2[] = "__OTR__wario_kart/kart_278_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario278Wheel3[] = "__OTR__wario_kart/kart_278_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario279Wheel0[] = "__OTR__wario_kart/kart_279_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario279Wheel1[] = "__OTR__wario_kart/kart_279_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario279Wheel2[] = "__OTR__wario_kart/kart_279_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario279Wheel3[] = "__OTR__wario_kart/kart_279_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario280Wheel0[] = "__OTR__wario_kart/kart_280_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario280Wheel1[] = "__OTR__wario_kart/kart_280_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario280Wheel2[] = "__OTR__wario_kart/kart_280_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario280Wheel3[] = "__OTR__wario_kart/kart_280_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario281Wheel0[] = "__OTR__wario_kart/kart_281_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario281Wheel1[] = "__OTR__wario_kart/kart_281_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario281Wheel2[] = "__OTR__wario_kart/kart_281_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario281Wheel3[] = "__OTR__wario_kart/kart_281_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario282Wheel0[] = "__OTR__wario_kart/kart_282_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario282Wheel1[] = "__OTR__wario_kart/kart_282_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario282Wheel2[] = "__OTR__wario_kart/kart_282_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario282Wheel3[] = "__OTR__wario_kart/kart_282_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario283Wheel0[] = "__OTR__wario_kart/kart_283_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario283Wheel1[] = "__OTR__wario_kart/kart_283_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario283Wheel2[] = "__OTR__wario_kart/kart_283_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario283Wheel3[] = "__OTR__wario_kart/kart_283_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario284Wheel0[] = "__OTR__wario_kart/kart_284_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario284Wheel1[] = "__OTR__wario_kart/kart_284_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario284Wheel2[] = "__OTR__wario_kart/kart_284_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario284Wheel3[] = "__OTR__wario_kart/kart_284_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario285Wheel0[] = "__OTR__wario_kart/kart_285_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario285Wheel1[] = "__OTR__wario_kart/kart_285_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario285Wheel2[] = "__OTR__wario_kart/kart_285_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario285Wheel3[] = "__OTR__wario_kart/kart_285_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario286Wheel0[] = "__OTR__wario_kart/kart_286_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario286Wheel1[] = "__OTR__wario_kart/kart_286_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario286Wheel2[] = "__OTR__wario_kart/kart_286_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario286Wheel3[] = "__OTR__wario_kart/kart_286_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario287Wheel0[] = "__OTR__wario_kart/kart_287_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario287Wheel1[] = "__OTR__wario_kart/kart_287_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario287Wheel2[] = "__OTR__wario_kart/kart_287_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario287Wheel3[] = "__OTR__wario_kart/kart_287_wheel_3"; - -static const ALIGN_ASSET(2) char gKartWario288Wheel0[] = "__OTR__wario_kart/kart_288_wheel_0"; - -static const ALIGN_ASSET(2) char gKartWario288Wheel1[] = "__OTR__wario_kart/kart_288_wheel_1"; - -static const ALIGN_ASSET(2) char gKartWario288Wheel2[] = "__OTR__wario_kart/kart_288_wheel_2"; - -static const ALIGN_ASSET(2) char gKartWario288Wheel3[] = "__OTR__wario_kart/kart_288_wheel_3"; - -static const char* wario_kart_wheels[] = { - gKartWario000Wheel0, - gKartWario000Wheel1, - gKartWario000Wheel2, - gKartWario000Wheel3, - gKartWario001Wheel0, - gKartWario001Wheel1, - gKartWario001Wheel2, - gKartWario001Wheel3, - gKartWario002Wheel0, - gKartWario002Wheel1, - gKartWario002Wheel2, - gKartWario002Wheel3, - gKartWario003Wheel0, - gKartWario003Wheel1, - gKartWario003Wheel2, - gKartWario003Wheel3, - gKartWario004Wheel0, - gKartWario004Wheel1, - gKartWario004Wheel2, - gKartWario004Wheel3, - gKartWario005Wheel0, - gKartWario005Wheel1, - gKartWario005Wheel2, - gKartWario005Wheel3, - gKartWario006Wheel0, - gKartWario006Wheel1, - gKartWario006Wheel2, - gKartWario006Wheel3, - gKartWario007Wheel0, - gKartWario007Wheel1, - gKartWario007Wheel2, - gKartWario007Wheel3, - gKartWario008Wheel0, - gKartWario008Wheel1, - gKartWario008Wheel2, - gKartWario008Wheel3, - gKartWario009Wheel0, - gKartWario009Wheel1, - gKartWario009Wheel2, - gKartWario009Wheel3, - gKartWario010Wheel0, - gKartWario010Wheel1, - gKartWario010Wheel2, - gKartWario010Wheel3, - gKartWario011Wheel0, - gKartWario011Wheel1, - gKartWario011Wheel2, - gKartWario011Wheel3, - gKartWario012Wheel0, - gKartWario012Wheel1, - gKartWario012Wheel2, - gKartWario012Wheel3, - gKartWario013Wheel0, - gKartWario013Wheel1, - gKartWario013Wheel2, - gKartWario013Wheel3, - gKartWario014Wheel0, - gKartWario014Wheel1, - gKartWario014Wheel2, - gKartWario014Wheel3, - gKartWario015Wheel0, - gKartWario015Wheel1, - gKartWario015Wheel2, - gKartWario015Wheel3, - gKartWario016Wheel0, - gKartWario016Wheel1, - gKartWario016Wheel2, - gKartWario016Wheel3, - gKartWario017Wheel0, - gKartWario017Wheel1, - gKartWario017Wheel2, - gKartWario017Wheel3, - gKartWario018Wheel0, - gKartWario018Wheel1, - gKartWario018Wheel2, - gKartWario018Wheel3, - gKartWario019Wheel0, - gKartWario019Wheel1, - gKartWario019Wheel2, - gKartWario019Wheel3, - gKartWario020Wheel0, - gKartWario020Wheel1, - gKartWario020Wheel2, - gKartWario020Wheel3, - gKartWario021Wheel0, - gKartWario021Wheel1, - gKartWario021Wheel2, - gKartWario021Wheel3, - gKartWario022Wheel0, - gKartWario022Wheel1, - gKartWario022Wheel2, - gKartWario022Wheel3, - gKartWario023Wheel0, - gKartWario023Wheel1, - gKartWario023Wheel2, - gKartWario023Wheel3, - gKartWario024Wheel0, - gKartWario024Wheel1, - gKartWario024Wheel2, - gKartWario024Wheel3, - gKartWario025Wheel0, - gKartWario025Wheel1, - gKartWario025Wheel2, - gKartWario025Wheel3, - gKartWario026Wheel0, - gKartWario026Wheel1, - gKartWario026Wheel2, - gKartWario026Wheel3, - gKartWario027Wheel0, - gKartWario027Wheel1, - gKartWario027Wheel2, - gKartWario027Wheel3, - gKartWario028Wheel0, - gKartWario028Wheel1, - gKartWario028Wheel2, - gKartWario028Wheel3, - gKartWario029Wheel0, - gKartWario029Wheel1, - gKartWario029Wheel2, - gKartWario029Wheel3, - gKartWario030Wheel0, - gKartWario030Wheel1, - gKartWario030Wheel2, - gKartWario030Wheel3, - gKartWario031Wheel0, - gKartWario031Wheel1, - gKartWario031Wheel2, - gKartWario031Wheel3, - gKartWario032Wheel0, - gKartWario032Wheel1, - gKartWario032Wheel2, - gKartWario032Wheel3, - gKartWario033Wheel0, - gKartWario033Wheel1, - gKartWario033Wheel2, - gKartWario033Wheel3, - gKartWario034Wheel0, - gKartWario034Wheel1, - gKartWario034Wheel2, - gKartWario034Wheel3, - gKartWario035Wheel0, - gKartWario035Wheel1, - gKartWario035Wheel2, - gKartWario035Wheel3, - gKartWario036Wheel0, - gKartWario036Wheel1, - gKartWario036Wheel2, - gKartWario036Wheel3, - gKartWario037Wheel0, - gKartWario037Wheel1, - gKartWario037Wheel2, - gKartWario037Wheel3, - gKartWario038Wheel0, - gKartWario038Wheel1, - gKartWario038Wheel2, - gKartWario038Wheel3, - gKartWario039Wheel0, - gKartWario039Wheel1, - gKartWario039Wheel2, - gKartWario039Wheel3, - gKartWario040Wheel0, - gKartWario040Wheel1, - gKartWario040Wheel2, - gKartWario040Wheel3, - gKartWario041Wheel0, - gKartWario041Wheel1, - gKartWario041Wheel2, - gKartWario041Wheel3, - gKartWario042Wheel0, - gKartWario042Wheel1, - gKartWario042Wheel2, - gKartWario042Wheel3, - gKartWario043Wheel0, - gKartWario043Wheel1, - gKartWario043Wheel2, - gKartWario043Wheel3, - gKartWario044Wheel0, - gKartWario044Wheel1, - gKartWario044Wheel2, - gKartWario044Wheel3, - gKartWario045Wheel0, - gKartWario045Wheel1, - gKartWario045Wheel2, - gKartWario045Wheel3, - gKartWario046Wheel0, - gKartWario046Wheel1, - gKartWario046Wheel2, - gKartWario046Wheel3, - gKartWario047Wheel0, - gKartWario047Wheel1, - gKartWario047Wheel2, - gKartWario047Wheel3, - gKartWario048Wheel0, - gKartWario048Wheel1, - gKartWario048Wheel2, - gKartWario048Wheel3, - gKartWario049Wheel0, - gKartWario049Wheel1, - gKartWario049Wheel2, - gKartWario049Wheel3, - gKartWario050Wheel0, - gKartWario050Wheel1, - gKartWario050Wheel2, - gKartWario050Wheel3, - gKartWario051Wheel0, - gKartWario051Wheel1, - gKartWario051Wheel2, - gKartWario051Wheel3, - gKartWario052Wheel0, - gKartWario052Wheel1, - gKartWario052Wheel2, - gKartWario052Wheel3, - gKartWario053Wheel0, - gKartWario053Wheel1, - gKartWario053Wheel2, - gKartWario053Wheel3, - gKartWario054Wheel0, - gKartWario054Wheel1, - gKartWario054Wheel2, - gKartWario054Wheel3, - gKartWario055Wheel0, - gKartWario055Wheel1, - gKartWario055Wheel2, - gKartWario055Wheel3, - gKartWario056Wheel0, - gKartWario056Wheel1, - gKartWario056Wheel2, - gKartWario056Wheel3, - gKartWario057Wheel0, - gKartWario057Wheel1, - gKartWario057Wheel2, - gKartWario057Wheel3, - gKartWario058Wheel0, - gKartWario058Wheel1, - gKartWario058Wheel2, - gKartWario058Wheel3, - gKartWario059Wheel0, - gKartWario059Wheel1, - gKartWario059Wheel2, - gKartWario059Wheel3, - gKartWario060Wheel0, - gKartWario060Wheel1, - gKartWario060Wheel2, - gKartWario060Wheel3, - gKartWario061Wheel0, - gKartWario061Wheel1, - gKartWario061Wheel2, - gKartWario061Wheel3, - gKartWario062Wheel0, - gKartWario062Wheel1, - gKartWario062Wheel2, - gKartWario062Wheel3, - gKartWario063Wheel0, - gKartWario063Wheel1, - gKartWario063Wheel2, - gKartWario063Wheel3, - gKartWario064Wheel0, - gKartWario064Wheel1, - gKartWario064Wheel2, - gKartWario064Wheel3, - gKartWario065Wheel0, - gKartWario065Wheel1, - gKartWario065Wheel2, - gKartWario065Wheel3, - gKartWario066Wheel0, - gKartWario066Wheel1, - gKartWario066Wheel2, - gKartWario066Wheel3, - gKartWario067Wheel0, - gKartWario067Wheel1, - gKartWario067Wheel2, - gKartWario067Wheel3, - gKartWario068Wheel0, - gKartWario068Wheel1, - gKartWario068Wheel2, - gKartWario068Wheel3, - gKartWario069Wheel0, - gKartWario069Wheel1, - gKartWario069Wheel2, - gKartWario069Wheel3, - gKartWario070Wheel0, - gKartWario070Wheel1, - gKartWario070Wheel2, - gKartWario070Wheel3, - gKartWario071Wheel0, - gKartWario071Wheel1, - gKartWario071Wheel2, - gKartWario071Wheel3, - gKartWario072Wheel0, - gKartWario072Wheel1, - gKartWario072Wheel2, - gKartWario072Wheel3, - gKartWario073Wheel0, - gKartWario073Wheel1, - gKartWario073Wheel2, - gKartWario073Wheel3, - gKartWario074Wheel0, - gKartWario074Wheel1, - gKartWario074Wheel2, - gKartWario074Wheel3, - gKartWario075Wheel0, - gKartWario075Wheel1, - gKartWario075Wheel2, - gKartWario075Wheel3, - gKartWario076Wheel0, - gKartWario076Wheel1, - gKartWario076Wheel2, - gKartWario076Wheel3, - gKartWario077Wheel0, - gKartWario077Wheel1, - gKartWario077Wheel2, - gKartWario077Wheel3, - gKartWario078Wheel0, - gKartWario078Wheel1, - gKartWario078Wheel2, - gKartWario078Wheel3, - gKartWario079Wheel0, - gKartWario079Wheel1, - gKartWario079Wheel2, - gKartWario079Wheel3, - gKartWario080Wheel0, - gKartWario080Wheel1, - gKartWario080Wheel2, - gKartWario080Wheel3, - gKartWario081Wheel0, - gKartWario081Wheel1, - gKartWario081Wheel2, - gKartWario081Wheel3, - gKartWario082Wheel0, - gKartWario082Wheel1, - gKartWario082Wheel2, - gKartWario082Wheel3, - gKartWario083Wheel0, - gKartWario083Wheel1, - gKartWario083Wheel2, - gKartWario083Wheel3, - gKartWario084Wheel0, - gKartWario084Wheel1, - gKartWario084Wheel2, - gKartWario084Wheel3, - gKartWario085Wheel0, - gKartWario085Wheel1, - gKartWario085Wheel2, - gKartWario085Wheel3, - gKartWario086Wheel0, - gKartWario086Wheel1, - gKartWario086Wheel2, - gKartWario086Wheel3, - gKartWario087Wheel0, - gKartWario087Wheel1, - gKartWario087Wheel2, - gKartWario087Wheel3, - gKartWario088Wheel0, - gKartWario088Wheel1, - gKartWario088Wheel2, - gKartWario088Wheel3, - gKartWario089Wheel0, - gKartWario089Wheel1, - gKartWario089Wheel2, - gKartWario089Wheel3, - gKartWario090Wheel0, - gKartWario090Wheel1, - gKartWario090Wheel2, - gKartWario090Wheel3, - gKartWario091Wheel0, - gKartWario091Wheel1, - gKartWario091Wheel2, - gKartWario091Wheel3, - gKartWario092Wheel0, - gKartWario092Wheel1, - gKartWario092Wheel2, - gKartWario092Wheel3, - gKartWario093Wheel0, - gKartWario093Wheel1, - gKartWario093Wheel2, - gKartWario093Wheel3, - gKartWario094Wheel0, - gKartWario094Wheel1, - gKartWario094Wheel2, - gKartWario094Wheel3, - gKartWario095Wheel0, - gKartWario095Wheel1, - gKartWario095Wheel2, - gKartWario095Wheel3, - gKartWario096Wheel0, - gKartWario096Wheel1, - gKartWario096Wheel2, - gKartWario096Wheel3, - gKartWario097Wheel0, - gKartWario097Wheel1, - gKartWario097Wheel2, - gKartWario097Wheel3, - gKartWario098Wheel0, - gKartWario098Wheel1, - gKartWario098Wheel2, - gKartWario098Wheel3, - gKartWario099Wheel0, - gKartWario099Wheel1, - gKartWario099Wheel2, - gKartWario099Wheel3, - gKartWario100Wheel0, - gKartWario100Wheel1, - gKartWario100Wheel2, - gKartWario100Wheel3, - gKartWario101Wheel0, - gKartWario101Wheel1, - gKartWario101Wheel2, - gKartWario101Wheel3, - gKartWario102Wheel0, - gKartWario102Wheel1, - gKartWario102Wheel2, - gKartWario102Wheel3, - gKartWario103Wheel0, - gKartWario103Wheel1, - gKartWario103Wheel2, - gKartWario103Wheel3, - gKartWario104Wheel0, - gKartWario104Wheel1, - gKartWario104Wheel2, - gKartWario104Wheel3, - gKartWario105Wheel0, - gKartWario105Wheel1, - gKartWario105Wheel2, - gKartWario105Wheel3, - gKartWario106Wheel0, - gKartWario106Wheel1, - gKartWario106Wheel2, - gKartWario106Wheel3, - gKartWario107Wheel0, - gKartWario107Wheel1, - gKartWario107Wheel2, - gKartWario107Wheel3, - gKartWario108Wheel0, - gKartWario108Wheel1, - gKartWario108Wheel2, - gKartWario108Wheel3, - gKartWario109Wheel0, - gKartWario109Wheel1, - gKartWario109Wheel2, - gKartWario109Wheel3, - gKartWario110Wheel0, - gKartWario110Wheel1, - gKartWario110Wheel2, - gKartWario110Wheel3, - gKartWario111Wheel0, - gKartWario111Wheel1, - gKartWario111Wheel2, - gKartWario111Wheel3, - gKartWario112Wheel0, - gKartWario112Wheel1, - gKartWario112Wheel2, - gKartWario112Wheel3, - gKartWario113Wheel0, - gKartWario113Wheel1, - gKartWario113Wheel2, - gKartWario113Wheel3, - gKartWario114Wheel0, - gKartWario114Wheel1, - gKartWario114Wheel2, - gKartWario114Wheel3, - gKartWario115Wheel0, - gKartWario115Wheel1, - gKartWario115Wheel2, - gKartWario115Wheel3, - gKartWario116Wheel0, - gKartWario116Wheel1, - gKartWario116Wheel2, - gKartWario116Wheel3, - gKartWario117Wheel0, - gKartWario117Wheel1, - gKartWario117Wheel2, - gKartWario117Wheel3, - gKartWario118Wheel0, - gKartWario118Wheel1, - gKartWario118Wheel2, - gKartWario118Wheel3, - gKartWario119Wheel0, - gKartWario119Wheel1, - gKartWario119Wheel2, - gKartWario119Wheel3, - gKartWario120Wheel0, - gKartWario120Wheel1, - gKartWario120Wheel2, - gKartWario120Wheel3, - gKartWario121Wheel0, - gKartWario121Wheel1, - gKartWario121Wheel2, - gKartWario121Wheel3, - gKartWario122Wheel0, - gKartWario122Wheel1, - gKartWario122Wheel2, - gKartWario122Wheel3, - gKartWario123Wheel0, - gKartWario123Wheel1, - gKartWario123Wheel2, - gKartWario123Wheel3, - gKartWario124Wheel0, - gKartWario124Wheel1, - gKartWario124Wheel2, - gKartWario124Wheel3, - gKartWario125Wheel0, - gKartWario125Wheel1, - gKartWario125Wheel2, - gKartWario125Wheel3, - gKartWario126Wheel0, - gKartWario126Wheel1, - gKartWario126Wheel2, - gKartWario126Wheel3, - gKartWario127Wheel0, - gKartWario127Wheel1, - gKartWario127Wheel2, - gKartWario127Wheel3, - gKartWario128Wheel0, - gKartWario128Wheel1, - gKartWario128Wheel2, - gKartWario128Wheel3, - gKartWario129Wheel0, - gKartWario129Wheel1, - gKartWario129Wheel2, - gKartWario129Wheel3, - gKartWario130Wheel0, - gKartWario130Wheel1, - gKartWario130Wheel2, - gKartWario130Wheel3, - gKartWario131Wheel0, - gKartWario131Wheel1, - gKartWario131Wheel2, - gKartWario131Wheel3, - gKartWario132Wheel0, - gKartWario132Wheel1, - gKartWario132Wheel2, - gKartWario132Wheel3, - gKartWario133Wheel0, - gKartWario133Wheel1, - gKartWario133Wheel2, - gKartWario133Wheel3, - gKartWario134Wheel0, - gKartWario134Wheel1, - gKartWario134Wheel2, - gKartWario134Wheel3, - gKartWario135Wheel0, - gKartWario135Wheel1, - gKartWario135Wheel2, - gKartWario135Wheel3, - gKartWario136Wheel0, - gKartWario136Wheel1, - gKartWario136Wheel2, - gKartWario136Wheel3, - gKartWario137Wheel0, - gKartWario137Wheel1, - gKartWario137Wheel2, - gKartWario137Wheel3, - gKartWario138Wheel0, - gKartWario138Wheel1, - gKartWario138Wheel2, - gKartWario138Wheel3, - gKartWario139Wheel0, - gKartWario139Wheel1, - gKartWario139Wheel2, - gKartWario139Wheel3, - gKartWario140Wheel0, - gKartWario140Wheel1, - gKartWario140Wheel2, - gKartWario140Wheel3, - gKartWario141Wheel0, - gKartWario141Wheel1, - gKartWario141Wheel2, - gKartWario141Wheel3, - gKartWario142Wheel0, - gKartWario142Wheel1, - gKartWario142Wheel2, - gKartWario142Wheel3, - gKartWario143Wheel0, - gKartWario143Wheel1, - gKartWario143Wheel2, - gKartWario143Wheel3, - gKartWario144Wheel0, - gKartWario144Wheel1, - gKartWario144Wheel2, - gKartWario144Wheel3, - gKartWario145Wheel0, - gKartWario145Wheel1, - gKartWario145Wheel2, - gKartWario145Wheel3, - gKartWario146Wheel0, - gKartWario146Wheel1, - gKartWario146Wheel2, - gKartWario146Wheel3, - gKartWario147Wheel0, - gKartWario147Wheel1, - gKartWario147Wheel2, - gKartWario147Wheel3, - gKartWario148Wheel0, - gKartWario148Wheel1, - gKartWario148Wheel2, - gKartWario148Wheel3, - gKartWario149Wheel0, - gKartWario149Wheel1, - gKartWario149Wheel2, - gKartWario149Wheel3, - gKartWario150Wheel0, - gKartWario150Wheel1, - gKartWario150Wheel2, - gKartWario150Wheel3, - gKartWario151Wheel0, - gKartWario151Wheel1, - gKartWario151Wheel2, - gKartWario151Wheel3, - gKartWario152Wheel0, - gKartWario152Wheel1, - gKartWario152Wheel2, - gKartWario152Wheel3, - gKartWario153Wheel0, - gKartWario153Wheel1, - gKartWario153Wheel2, - gKartWario153Wheel3, - gKartWario154Wheel0, - gKartWario154Wheel1, - gKartWario154Wheel2, - gKartWario154Wheel3, - gKartWario155Wheel0, - gKartWario155Wheel1, - gKartWario155Wheel2, - gKartWario155Wheel3, - gKartWario156Wheel0, - gKartWario156Wheel1, - gKartWario156Wheel2, - gKartWario156Wheel3, - gKartWario157Wheel0, - gKartWario157Wheel1, - gKartWario157Wheel2, - gKartWario157Wheel3, - gKartWario158Wheel0, - gKartWario158Wheel1, - gKartWario158Wheel2, - gKartWario158Wheel3, - gKartWario159Wheel0, - gKartWario159Wheel1, - gKartWario159Wheel2, - gKartWario159Wheel3, - gKartWario160Wheel0, - gKartWario160Wheel1, - gKartWario160Wheel2, - gKartWario160Wheel3, - gKartWario161Wheel0, - gKartWario161Wheel1, - gKartWario161Wheel2, - gKartWario161Wheel3, - gKartWario162Wheel0, - gKartWario162Wheel1, - gKartWario162Wheel2, - gKartWario162Wheel3, - gKartWario163Wheel0, - gKartWario163Wheel1, - gKartWario163Wheel2, - gKartWario163Wheel3, - gKartWario164Wheel0, - gKartWario164Wheel1, - gKartWario164Wheel2, - gKartWario164Wheel3, - gKartWario165Wheel0, - gKartWario165Wheel1, - gKartWario165Wheel2, - gKartWario165Wheel3, - gKartWario166Wheel0, - gKartWario166Wheel1, - gKartWario166Wheel2, - gKartWario166Wheel3, - gKartWario167Wheel0, - gKartWario167Wheel1, - gKartWario167Wheel2, - gKartWario167Wheel3, - gKartWario168Wheel0, - gKartWario168Wheel1, - gKartWario168Wheel2, - gKartWario168Wheel3, - gKartWario169Wheel0, - gKartWario169Wheel1, - gKartWario169Wheel2, - gKartWario169Wheel3, - gKartWario170Wheel0, - gKartWario170Wheel1, - gKartWario170Wheel2, - gKartWario170Wheel3, - gKartWario171Wheel0, - gKartWario171Wheel1, - gKartWario171Wheel2, - gKartWario171Wheel3, - gKartWario172Wheel0, - gKartWario172Wheel1, - gKartWario172Wheel2, - gKartWario172Wheel3, - gKartWario173Wheel0, - gKartWario173Wheel1, - gKartWario173Wheel2, - gKartWario173Wheel3, - gKartWario174Wheel0, - gKartWario174Wheel1, - gKartWario174Wheel2, - gKartWario174Wheel3, - gKartWario175Wheel0, - gKartWario175Wheel1, - gKartWario175Wheel2, - gKartWario175Wheel3, - gKartWario176Wheel0, - gKartWario176Wheel1, - gKartWario176Wheel2, - gKartWario176Wheel3, - gKartWario177Wheel0, - gKartWario177Wheel1, - gKartWario177Wheel2, - gKartWario177Wheel3, - gKartWario178Wheel0, - gKartWario178Wheel1, - gKartWario178Wheel2, - gKartWario178Wheel3, - gKartWario179Wheel0, - gKartWario179Wheel1, - gKartWario179Wheel2, - gKartWario179Wheel3, - gKartWario180Wheel0, - gKartWario180Wheel1, - gKartWario180Wheel2, - gKartWario180Wheel3, - gKartWario181Wheel0, - gKartWario181Wheel1, - gKartWario181Wheel2, - gKartWario181Wheel3, - gKartWario182Wheel0, - gKartWario182Wheel1, - gKartWario182Wheel2, - gKartWario182Wheel3, - gKartWario183Wheel0, - gKartWario183Wheel1, - gKartWario183Wheel2, - gKartWario183Wheel3, - gKartWario184Wheel0, - gKartWario184Wheel1, - gKartWario184Wheel2, - gKartWario184Wheel3, - gKartWario185Wheel0, - gKartWario185Wheel1, - gKartWario185Wheel2, - gKartWario185Wheel3, - gKartWario186Wheel0, - gKartWario186Wheel1, - gKartWario186Wheel2, - gKartWario186Wheel3, - gKartWario187Wheel0, - gKartWario187Wheel1, - gKartWario187Wheel2, - gKartWario187Wheel3, - gKartWario188Wheel0, - gKartWario188Wheel1, - gKartWario188Wheel2, - gKartWario188Wheel3, - gKartWario189Wheel0, - gKartWario189Wheel1, - gKartWario189Wheel2, - gKartWario189Wheel3, - gKartWario190Wheel0, - gKartWario190Wheel1, - gKartWario190Wheel2, - gKartWario190Wheel3, - gKartWario191Wheel0, - gKartWario191Wheel1, - gKartWario191Wheel2, - gKartWario191Wheel3, - gKartWario192Wheel0, - gKartWario192Wheel1, - gKartWario192Wheel2, - gKartWario192Wheel3, - gKartWario193Wheel0, - gKartWario193Wheel1, - gKartWario193Wheel2, - gKartWario193Wheel3, - gKartWario194Wheel0, - gKartWario194Wheel1, - gKartWario194Wheel2, - gKartWario194Wheel3, - gKartWario195Wheel0, - gKartWario195Wheel1, - gKartWario195Wheel2, - gKartWario195Wheel3, - gKartWario196Wheel0, - gKartWario196Wheel1, - gKartWario196Wheel2, - gKartWario196Wheel3, - gKartWario197Wheel0, - gKartWario197Wheel1, - gKartWario197Wheel2, - gKartWario197Wheel3, - gKartWario198Wheel0, - gKartWario198Wheel1, - gKartWario198Wheel2, - gKartWario198Wheel3, - gKartWario199Wheel0, - gKartWario199Wheel1, - gKartWario199Wheel2, - gKartWario199Wheel3, - gKartWario200Wheel0, - gKartWario200Wheel1, - gKartWario200Wheel2, - gKartWario200Wheel3, - gKartWario201Wheel0, - gKartWario201Wheel1, - gKartWario201Wheel2, - gKartWario201Wheel3, - gKartWario202Wheel0, - gKartWario202Wheel1, - gKartWario202Wheel2, - gKartWario202Wheel3, - gKartWario203Wheel0, - gKartWario203Wheel1, - gKartWario203Wheel2, - gKartWario203Wheel3, - gKartWario204Wheel0, - gKartWario204Wheel1, - gKartWario204Wheel2, - gKartWario204Wheel3, - gKartWario205Wheel0, - gKartWario205Wheel1, - gKartWario205Wheel2, - gKartWario205Wheel3, - gKartWario206Wheel0, - gKartWario206Wheel1, - gKartWario206Wheel2, - gKartWario206Wheel3, - gKartWario207Wheel0, - gKartWario207Wheel1, - gKartWario207Wheel2, - gKartWario207Wheel3, - gKartWario208Wheel0, - gKartWario208Wheel1, - gKartWario208Wheel2, - gKartWario208Wheel3, - gKartWario209Wheel0, - gKartWario209Wheel1, - gKartWario209Wheel2, - gKartWario209Wheel3, - gKartWario210Wheel0, - gKartWario210Wheel1, - gKartWario210Wheel2, - gKartWario210Wheel3, - gKartWario211Wheel0, - gKartWario211Wheel1, - gKartWario211Wheel2, - gKartWario211Wheel3, - gKartWario212Wheel0, - gKartWario212Wheel1, - gKartWario212Wheel2, - gKartWario212Wheel3, - gKartWario213Wheel0, - gKartWario213Wheel1, - gKartWario213Wheel2, - gKartWario213Wheel3, - gKartWario214Wheel0, - gKartWario214Wheel1, - gKartWario214Wheel2, - gKartWario214Wheel3, - gKartWario215Wheel0, - gKartWario215Wheel1, - gKartWario215Wheel2, - gKartWario215Wheel3, - gKartWario216Wheel0, - gKartWario216Wheel1, - gKartWario216Wheel2, - gKartWario216Wheel3, - gKartWario217Wheel0, - gKartWario217Wheel1, - gKartWario217Wheel2, - gKartWario217Wheel3, - gKartWario218Wheel0, - gKartWario218Wheel1, - gKartWario218Wheel2, - gKartWario218Wheel3, - gKartWario219Wheel0, - gKartWario219Wheel1, - gKartWario219Wheel2, - gKartWario219Wheel3, - gKartWario220Wheel0, - gKartWario220Wheel1, - gKartWario220Wheel2, - gKartWario220Wheel3, - gKartWario221Wheel0, - gKartWario221Wheel1, - gKartWario221Wheel2, - gKartWario221Wheel3, - gKartWario222Wheel0, - gKartWario222Wheel1, - gKartWario222Wheel2, - gKartWario222Wheel3, - gKartWario223Wheel0, - gKartWario223Wheel1, - gKartWario223Wheel2, - gKartWario223Wheel3, - gKartWario224Wheel0, - gKartWario224Wheel1, - gKartWario224Wheel2, - gKartWario224Wheel3, - gKartWario225Wheel0, - gKartWario225Wheel1, - gKartWario225Wheel2, - gKartWario225Wheel3, - gKartWario226Wheel0, - gKartWario226Wheel1, - gKartWario226Wheel2, - gKartWario226Wheel3, - gKartWario227Wheel0, - gKartWario227Wheel1, - gKartWario227Wheel2, - gKartWario227Wheel3, - gKartWario228Wheel0, - gKartWario228Wheel1, - gKartWario228Wheel2, - gKartWario228Wheel3, - gKartWario229Wheel0, - gKartWario229Wheel1, - gKartWario229Wheel2, - gKartWario229Wheel3, - gKartWario230Wheel0, - gKartWario230Wheel1, - gKartWario230Wheel2, - gKartWario230Wheel3, - gKartWario231Wheel0, - gKartWario231Wheel1, - gKartWario231Wheel2, - gKartWario231Wheel3, - gKartWario232Wheel0, - gKartWario232Wheel1, - gKartWario232Wheel2, - gKartWario232Wheel3, - gKartWario233Wheel0, - gKartWario233Wheel1, - gKartWario233Wheel2, - gKartWario233Wheel3, - gKartWario234Wheel0, - gKartWario234Wheel1, - gKartWario234Wheel2, - gKartWario234Wheel3, - gKartWario235Wheel0, - gKartWario235Wheel1, - gKartWario235Wheel2, - gKartWario235Wheel3, - gKartWario236Wheel0, - gKartWario236Wheel1, - gKartWario236Wheel2, - gKartWario236Wheel3, - gKartWario237Wheel0, - gKartWario237Wheel1, - gKartWario237Wheel2, - gKartWario237Wheel3, - gKartWario238Wheel0, - gKartWario238Wheel1, - gKartWario238Wheel2, - gKartWario238Wheel3, - gKartWario239Wheel0, - gKartWario239Wheel1, - gKartWario239Wheel2, - gKartWario239Wheel3, - gKartWario240Wheel0, - gKartWario240Wheel1, - gKartWario240Wheel2, - gKartWario240Wheel3, - gKartWario241Wheel0, - gKartWario241Wheel1, - gKartWario241Wheel2, - gKartWario241Wheel3, - gKartWario242Wheel0, - gKartWario242Wheel1, - gKartWario242Wheel2, - gKartWario242Wheel3, - gKartWario243Wheel0, - gKartWario243Wheel1, - gKartWario243Wheel2, - gKartWario243Wheel3, - gKartWario244Wheel0, - gKartWario244Wheel1, - gKartWario244Wheel2, - gKartWario244Wheel3, - gKartWario245Wheel0, - gKartWario245Wheel1, - gKartWario245Wheel2, - gKartWario245Wheel3, - gKartWario246Wheel0, - gKartWario246Wheel1, - gKartWario246Wheel2, - gKartWario246Wheel3, - gKartWario247Wheel0, - gKartWario247Wheel1, - gKartWario247Wheel2, - gKartWario247Wheel3, - gKartWario248Wheel0, - gKartWario248Wheel1, - gKartWario248Wheel2, - gKartWario248Wheel3, - gKartWario249Wheel0, - gKartWario249Wheel1, - gKartWario249Wheel2, - gKartWario249Wheel3, - gKartWario250Wheel0, - gKartWario250Wheel1, - gKartWario250Wheel2, - gKartWario250Wheel3, - gKartWario251Wheel0, - gKartWario251Wheel1, - gKartWario251Wheel2, - gKartWario251Wheel3, - gKartWario252Wheel0, - gKartWario252Wheel1, - gKartWario252Wheel2, - gKartWario252Wheel3, - gKartWario253Wheel0, - gKartWario253Wheel1, - gKartWario253Wheel2, - gKartWario253Wheel3, - gKartWario254Wheel0, - gKartWario254Wheel1, - gKartWario254Wheel2, - gKartWario254Wheel3, - gKartWario255Wheel0, - gKartWario255Wheel1, - gKartWario255Wheel2, - gKartWario255Wheel3, - gKartWario256Wheel0, - gKartWario256Wheel1, - gKartWario256Wheel2, - gKartWario256Wheel3, - gKartWario257Wheel0, - gKartWario257Wheel1, - gKartWario257Wheel2, - gKartWario257Wheel3, - gKartWario258Wheel0, - gKartWario258Wheel1, - gKartWario258Wheel2, - gKartWario258Wheel3, - gKartWario259Wheel0, - gKartWario259Wheel1, - gKartWario259Wheel2, - gKartWario259Wheel3, - gKartWario260Wheel0, - gKartWario260Wheel1, - gKartWario260Wheel2, - gKartWario260Wheel3, - gKartWario261Wheel0, - gKartWario261Wheel1, - gKartWario261Wheel2, - gKartWario261Wheel3, - gKartWario262Wheel0, - gKartWario262Wheel1, - gKartWario262Wheel2, - gKartWario262Wheel3, - gKartWario263Wheel0, - gKartWario263Wheel1, - gKartWario263Wheel2, - gKartWario263Wheel3, - gKartWario264Wheel0, - gKartWario264Wheel1, - gKartWario264Wheel2, - gKartWario264Wheel3, - gKartWario265Wheel0, - gKartWario265Wheel1, - gKartWario265Wheel2, - gKartWario265Wheel3, - gKartWario266Wheel0, - gKartWario266Wheel1, - gKartWario266Wheel2, - gKartWario266Wheel3, - gKartWario267Wheel0, - gKartWario267Wheel1, - gKartWario267Wheel2, - gKartWario267Wheel3, - gKartWario268Wheel0, - gKartWario268Wheel1, - gKartWario268Wheel2, - gKartWario268Wheel3, - gKartWario269Wheel0, - gKartWario269Wheel1, - gKartWario269Wheel2, - gKartWario269Wheel3, - gKartWario270Wheel0, - gKartWario270Wheel1, - gKartWario270Wheel2, - gKartWario270Wheel3, - gKartWario271Wheel0, - gKartWario271Wheel1, - gKartWario271Wheel2, - gKartWario271Wheel3, - gKartWario272Wheel0, - gKartWario272Wheel1, - gKartWario272Wheel2, - gKartWario272Wheel3, - gKartWario273Wheel0, - gKartWario273Wheel1, - gKartWario273Wheel2, - gKartWario273Wheel3, - gKartWario274Wheel0, - gKartWario274Wheel1, - gKartWario274Wheel2, - gKartWario274Wheel3, - gKartWario275Wheel0, - gKartWario275Wheel1, - gKartWario275Wheel2, - gKartWario275Wheel3, - gKartWario276Wheel0, - gKartWario276Wheel1, - gKartWario276Wheel2, - gKartWario276Wheel3, - gKartWario277Wheel0, - gKartWario277Wheel1, - gKartWario277Wheel2, - gKartWario277Wheel3, - gKartWario278Wheel0, - gKartWario278Wheel1, - gKartWario278Wheel2, - gKartWario278Wheel3, - gKartWario279Wheel0, - gKartWario279Wheel1, - gKartWario279Wheel2, - gKartWario279Wheel3, - gKartWario280Wheel0, - gKartWario280Wheel1, - gKartWario280Wheel2, - gKartWario280Wheel3, - gKartWario281Wheel0, - gKartWario281Wheel1, - gKartWario281Wheel2, - gKartWario281Wheel3, - gKartWario282Wheel0, - gKartWario282Wheel1, - gKartWario282Wheel2, - gKartWario282Wheel3, - gKartWario283Wheel0, - gKartWario283Wheel1, - gKartWario283Wheel2, - gKartWario283Wheel3, - gKartWario284Wheel0, - gKartWario284Wheel1, - gKartWario284Wheel2, - gKartWario284Wheel3, - gKartWario285Wheel0, - gKartWario285Wheel1, - gKartWario285Wheel2, - gKartWario285Wheel3, - gKartWario286Wheel0, - gKartWario286Wheel1, - gKartWario286Wheel2, - gKartWario286Wheel3, - gKartWario287Wheel0, - gKartWario287Wheel1, - gKartWario287Wheel2, - gKartWario287Wheel3, - gKartWario288Wheel0, - gKartWario288Wheel1, - gKartWario288Wheel2, - gKartWario288Wheel3, -}; - -static const ALIGN_ASSET(2) char gKartWarioPalette[] = "__OTR__wario_kart/wario_kart_palette"; - diff --git a/include/assets/wario_stadium_data.h b/include/assets/wario_stadium_data.h deleted file mode 100644 index ac8cc029c..000000000 --- a/include/assets/wario_stadium_data.h +++ /dev/null @@ -1,260 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_B8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_B8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_158[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_158"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1B8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1B8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2A0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2A0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_350[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_350"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_440[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_440"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4C0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4C0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5E8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_5E8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_668[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_668"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_798[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_798"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_830[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_830"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_940[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_940"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_990[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_990"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_AB0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_AB0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_B60[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_B60"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_C08[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_C08"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_C70[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_C70"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_D60[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_D60"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_E30[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_E30"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_ED0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_ED0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_F70[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_F70"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1068[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1068"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1158[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1158"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_11F8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_11F8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_12E0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_12E0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_13C0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_13C0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_14A0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_14A0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1590[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1590"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1630[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1630"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1708[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1708"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_17A8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_17A8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1868[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1868"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1908[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1908"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_19E0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_19E0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1AB8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1AB8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1B48[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1B48"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1BB0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1BB0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1CA8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1CA8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1D68[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1D68"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1DF8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1DF8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1E70[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1E70"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_1FD8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_1FD8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_20A8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_20A8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_21A8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_21A8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2218[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2218"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2308[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2308"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_23B0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_23B0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2490[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2490"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2530[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2530"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2610[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2610"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2698[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2698"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2798[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2798"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2870[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2870"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2928[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2928"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_29D0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_29D0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2AB0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2AB0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2B60[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2B60"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2C30[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2C30"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2CE0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2CE0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2DC0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2DC0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2E70[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2E70"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_2FB8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_2FB8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3098[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3098"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_31B0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_31B0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3260[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3260"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3368[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3368"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3450[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3450"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3550[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3550"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3600[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3600"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_36D8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_36D8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_37A8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_37A8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3890[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3890"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3980[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3980"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3A10[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3A10"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3AD0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3AD0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3BB0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3BB0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3CF8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3CF8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3D90[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3D90"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3E80[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3E80"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_3F78[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_3F78"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4060[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4060"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_40F0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_40F0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_41D0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_41D0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4270[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4270"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4340[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4340"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_43E0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_43E0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_44B0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_44B0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4550[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4550"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_46E0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_46E0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_47F0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_47F0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4948[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4948"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4A78[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4A78"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4B30[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4B30"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4BE8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4BE8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4C60[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4C60"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4D40[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4D40"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4E30[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4E30"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4EF0[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4EF0"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_4F80[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_4F80"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5090[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_5090"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5168[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_5168"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_51E8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_51E8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5270[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_5270"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5338[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_5338"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5460[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_5460"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_54E8[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_54E8"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_5588[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_5588"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_unknown_waypoints[] = "__OTR__wario_stadium_data/d_course_wario_stadium_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_track_waypoints[] = "__OTR__wario_stadium_data/d_course_wario_stadium_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_head_model1[] = "__OTR__wario_stadium_data/d_course_wario_stadium_sign_head_model1"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_head_model2[] = "__OTR__wario_stadium_data/d_course_wario_stadium_sign_head_model2"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_head_model3[] = "__OTR__wario_stadium_data/d_course_wario_stadium_sign_head_model3"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_head_model4[] = "__OTR__wario_stadium_data/d_course_wario_stadium_sign_head_model4"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_top_left[] = "__OTR__wario_stadium_data/d_course_wario_stadium_sign_top_left"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_bottom_left[] = "__OTR__wario_stadium_data/d_course_wario_stadium_sign_bottom_left"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_top_right[] = "__OTR__wario_stadium_data/d_course_wario_stadium_sign_top_right"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_sign_bottom_right[] = "__OTR__wario_stadium_data/d_course_wario_stadium_sign_bottom_right"; - -static const ALIGN_ASSET(2) char wario_stadium_data_seg6_gfx_C890[] = "__OTR__wario_stadium_data/wario_stadium_data_seg6_gfx_C890"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_C890[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_C890"; - -static const ALIGN_ASSET(2) char wario_stadium_data_seg6_gfx_CA50[] = "__OTR__wario_stadium_data/wario_stadium_data_seg6_gfx_CA50"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_CA50[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_CA50"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_sign[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_sign"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_CA70[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_CA70"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_dl_CA78[] = "__OTR__wario_stadium_data/d_course_wario_stadium_dl_CA78"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_item_box_spawns[] = "__OTR__wario_stadium_data/d_course_wario_stadium_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_wario_stadium_addr[] = "__OTR__wario_stadium_data/d_course_wario_stadium_addr"; - diff --git a/include/assets/wario_stadium_displaylists.h b/include/assets/wario_stadium_displaylists.h deleted file mode 100644 index f0b3504f0..000000000 --- a/include/assets/wario_stadium_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_wario_stadium_packed_dls[] = "__OTR__wario_stadium_displaylists/d_course_wario_stadium_packed_dls"; - diff --git a/include/assets/wario_stadium_vertices.h b/include/assets/wario_stadium_vertices.h deleted file mode 100644 index 48b348388..000000000 --- a/include/assets/wario_stadium_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_wario_stadium_vertex[] = "__OTR__wario_stadium_vertices/d_course_wario_stadium_vertex"; - diff --git a/include/assets/yoshi_kart.h b/include/assets/yoshi_kart.h deleted file mode 100644 index 5a2e0893d..000000000 --- a/include/assets/yoshi_kart.h +++ /dev/null @@ -1,4120 +0,0 @@ -#pragma once - -#include -#include - -static const ALIGN_ASSET(2) char gKartYoshi000[] = "__OTR__yoshi_kart/yoshi_kart_frame000"; - -static const ALIGN_ASSET(2) char gKartYoshi001[] = "__OTR__yoshi_kart/yoshi_kart_frame001"; - -static const ALIGN_ASSET(2) char gKartYoshi002[] = "__OTR__yoshi_kart/yoshi_kart_frame002"; - -static const ALIGN_ASSET(2) char gKartYoshi003[] = "__OTR__yoshi_kart/yoshi_kart_frame003"; - -static const ALIGN_ASSET(2) char gKartYoshi004[] = "__OTR__yoshi_kart/yoshi_kart_frame004"; - -static const ALIGN_ASSET(2) char gKartYoshi005[] = "__OTR__yoshi_kart/yoshi_kart_frame005"; - -static const ALIGN_ASSET(2) char gKartYoshi006[] = "__OTR__yoshi_kart/yoshi_kart_frame006"; - -static const ALIGN_ASSET(2) char gKartYoshi007[] = "__OTR__yoshi_kart/yoshi_kart_frame007"; - -static const ALIGN_ASSET(2) char gKartYoshi008[] = "__OTR__yoshi_kart/yoshi_kart_frame008"; - -static const ALIGN_ASSET(2) char gKartYoshi009[] = "__OTR__yoshi_kart/yoshi_kart_frame009"; - -static const ALIGN_ASSET(2) char gKartYoshi010[] = "__OTR__yoshi_kart/yoshi_kart_frame010"; - -static const ALIGN_ASSET(2) char gKartYoshi011[] = "__OTR__yoshi_kart/yoshi_kart_frame011"; - -static const ALIGN_ASSET(2) char gKartYoshi012[] = "__OTR__yoshi_kart/yoshi_kart_frame012"; - -static const ALIGN_ASSET(2) char gKartYoshi013[] = "__OTR__yoshi_kart/yoshi_kart_frame013"; - -static const ALIGN_ASSET(2) char gKartYoshi014[] = "__OTR__yoshi_kart/yoshi_kart_frame014"; - -static const ALIGN_ASSET(2) char gKartYoshi015[] = "__OTR__yoshi_kart/yoshi_kart_frame015"; - -static const ALIGN_ASSET(2) char gKartYoshi016[] = "__OTR__yoshi_kart/yoshi_kart_frame016"; - -static const ALIGN_ASSET(2) char gKartYoshi017[] = "__OTR__yoshi_kart/yoshi_kart_frame017"; - -static const ALIGN_ASSET(2) char gKartYoshi018[] = "__OTR__yoshi_kart/yoshi_kart_frame018"; - -static const ALIGN_ASSET(2) char gKartYoshi019[] = "__OTR__yoshi_kart/yoshi_kart_frame019"; - -static const ALIGN_ASSET(2) char gKartYoshi020[] = "__OTR__yoshi_kart/yoshi_kart_frame020"; - -static const ALIGN_ASSET(2) char gKartYoshi021[] = "__OTR__yoshi_kart/yoshi_kart_frame021"; - -static const ALIGN_ASSET(2) char gKartYoshi022[] = "__OTR__yoshi_kart/yoshi_kart_frame022"; - -static const ALIGN_ASSET(2) char gKartYoshi023[] = "__OTR__yoshi_kart/yoshi_kart_frame023"; - -static const ALIGN_ASSET(2) char gKartYoshi024[] = "__OTR__yoshi_kart/yoshi_kart_frame024"; - -static const ALIGN_ASSET(2) char gKartYoshi025[] = "__OTR__yoshi_kart/yoshi_kart_frame025"; - -static const ALIGN_ASSET(2) char gKartYoshi026[] = "__OTR__yoshi_kart/yoshi_kart_frame026"; - -static const ALIGN_ASSET(2) char gKartYoshi027[] = "__OTR__yoshi_kart/yoshi_kart_frame027"; - -static const ALIGN_ASSET(2) char gKartYoshi028[] = "__OTR__yoshi_kart/yoshi_kart_frame028"; - -static const ALIGN_ASSET(2) char gKartYoshi029[] = "__OTR__yoshi_kart/yoshi_kart_frame029"; - -static const ALIGN_ASSET(2) char gKartYoshi030[] = "__OTR__yoshi_kart/yoshi_kart_frame030"; - -static const ALIGN_ASSET(2) char gKartYoshi031[] = "__OTR__yoshi_kart/yoshi_kart_frame031"; - -static const ALIGN_ASSET(2) char gKartYoshi032[] = "__OTR__yoshi_kart/yoshi_kart_frame032"; - -static const ALIGN_ASSET(2) char gKartYoshi033[] = "__OTR__yoshi_kart/yoshi_kart_frame033"; - -static const ALIGN_ASSET(2) char gKartYoshi034[] = "__OTR__yoshi_kart/yoshi_kart_frame034"; - -static const ALIGN_ASSET(2) char gKartYoshi035[] = "__OTR__yoshi_kart/yoshi_kart_frame035"; - -static const ALIGN_ASSET(2) char gKartYoshi036[] = "__OTR__yoshi_kart/yoshi_kart_frame036"; - -static const ALIGN_ASSET(2) char gKartYoshi037[] = "__OTR__yoshi_kart/yoshi_kart_frame037"; - -static const ALIGN_ASSET(2) char gKartYoshi038[] = "__OTR__yoshi_kart/yoshi_kart_frame038"; - -static const ALIGN_ASSET(2) char gKartYoshi039[] = "__OTR__yoshi_kart/yoshi_kart_frame039"; - -static const ALIGN_ASSET(2) char gKartYoshi040[] = "__OTR__yoshi_kart/yoshi_kart_frame040"; - -static const ALIGN_ASSET(2) char gKartYoshi041[] = "__OTR__yoshi_kart/yoshi_kart_frame041"; - -static const ALIGN_ASSET(2) char gKartYoshi042[] = "__OTR__yoshi_kart/yoshi_kart_frame042"; - -static const ALIGN_ASSET(2) char gKartYoshi043[] = "__OTR__yoshi_kart/yoshi_kart_frame043"; - -static const ALIGN_ASSET(2) char gKartYoshi044[] = "__OTR__yoshi_kart/yoshi_kart_frame044"; - -static const ALIGN_ASSET(2) char gKartYoshi045[] = "__OTR__yoshi_kart/yoshi_kart_frame045"; - -static const ALIGN_ASSET(2) char gKartYoshi046[] = "__OTR__yoshi_kart/yoshi_kart_frame046"; - -static const ALIGN_ASSET(2) char gKartYoshi047[] = "__OTR__yoshi_kart/yoshi_kart_frame047"; - -static const ALIGN_ASSET(2) char gKartYoshi048[] = "__OTR__yoshi_kart/yoshi_kart_frame048"; - -static const ALIGN_ASSET(2) char gKartYoshi049[] = "__OTR__yoshi_kart/yoshi_kart_frame049"; - -static const ALIGN_ASSET(2) char gKartYoshi050[] = "__OTR__yoshi_kart/yoshi_kart_frame050"; - -static const ALIGN_ASSET(2) char gKartYoshi051[] = "__OTR__yoshi_kart/yoshi_kart_frame051"; - -static const ALIGN_ASSET(2) char gKartYoshi052[] = "__OTR__yoshi_kart/yoshi_kart_frame052"; - -static const ALIGN_ASSET(2) char gKartYoshi053[] = "__OTR__yoshi_kart/yoshi_kart_frame053"; - -static const ALIGN_ASSET(2) char gKartYoshi054[] = "__OTR__yoshi_kart/yoshi_kart_frame054"; - -static const ALIGN_ASSET(2) char gKartYoshi055[] = "__OTR__yoshi_kart/yoshi_kart_frame055"; - -static const ALIGN_ASSET(2) char gKartYoshi056[] = "__OTR__yoshi_kart/yoshi_kart_frame056"; - -static const ALIGN_ASSET(2) char gKartYoshi057[] = "__OTR__yoshi_kart/yoshi_kart_frame057"; - -static const ALIGN_ASSET(2) char gKartYoshi058[] = "__OTR__yoshi_kart/yoshi_kart_frame058"; - -static const ALIGN_ASSET(2) char gKartYoshi059[] = "__OTR__yoshi_kart/yoshi_kart_frame059"; - -static const ALIGN_ASSET(2) char gKartYoshi060[] = "__OTR__yoshi_kart/yoshi_kart_frame060"; - -static const ALIGN_ASSET(2) char gKartYoshi061[] = "__OTR__yoshi_kart/yoshi_kart_frame061"; - -static const ALIGN_ASSET(2) char gKartYoshi062[] = "__OTR__yoshi_kart/yoshi_kart_frame062"; - -static const ALIGN_ASSET(2) char gKartYoshi063[] = "__OTR__yoshi_kart/yoshi_kart_frame063"; - -static const ALIGN_ASSET(2) char gKartYoshi064[] = "__OTR__yoshi_kart/yoshi_kart_frame064"; - -static const ALIGN_ASSET(2) char gKartYoshi065[] = "__OTR__yoshi_kart/yoshi_kart_frame065"; - -static const ALIGN_ASSET(2) char gKartYoshi066[] = "__OTR__yoshi_kart/yoshi_kart_frame066"; - -static const ALIGN_ASSET(2) char gKartYoshi067[] = "__OTR__yoshi_kart/yoshi_kart_frame067"; - -static const ALIGN_ASSET(2) char gKartYoshi068[] = "__OTR__yoshi_kart/yoshi_kart_frame068"; - -static const ALIGN_ASSET(2) char gKartYoshi069[] = "__OTR__yoshi_kart/yoshi_kart_frame069"; - -static const ALIGN_ASSET(2) char gKartYoshi070[] = "__OTR__yoshi_kart/yoshi_kart_frame070"; - -static const ALIGN_ASSET(2) char gKartYoshi071[] = "__OTR__yoshi_kart/yoshi_kart_frame071"; - -static const ALIGN_ASSET(2) char gKartYoshi072[] = "__OTR__yoshi_kart/yoshi_kart_frame072"; - -static const ALIGN_ASSET(2) char gKartYoshi073[] = "__OTR__yoshi_kart/yoshi_kart_frame073"; - -static const ALIGN_ASSET(2) char gKartYoshi074[] = "__OTR__yoshi_kart/yoshi_kart_frame074"; - -static const ALIGN_ASSET(2) char gKartYoshi075[] = "__OTR__yoshi_kart/yoshi_kart_frame075"; - -static const ALIGN_ASSET(2) char gKartYoshi076[] = "__OTR__yoshi_kart/yoshi_kart_frame076"; - -static const ALIGN_ASSET(2) char gKartYoshi077[] = "__OTR__yoshi_kart/yoshi_kart_frame077"; - -static const ALIGN_ASSET(2) char gKartYoshi078[] = "__OTR__yoshi_kart/yoshi_kart_frame078"; - -static const ALIGN_ASSET(2) char gKartYoshi079[] = "__OTR__yoshi_kart/yoshi_kart_frame079"; - -static const ALIGN_ASSET(2) char gKartYoshi080[] = "__OTR__yoshi_kart/yoshi_kart_frame080"; - -static const ALIGN_ASSET(2) char gKartYoshi081[] = "__OTR__yoshi_kart/yoshi_kart_frame081"; - -static const ALIGN_ASSET(2) char gKartYoshi082[] = "__OTR__yoshi_kart/yoshi_kart_frame082"; - -static const ALIGN_ASSET(2) char gKartYoshi083[] = "__OTR__yoshi_kart/yoshi_kart_frame083"; - -static const ALIGN_ASSET(2) char gKartYoshi084[] = "__OTR__yoshi_kart/yoshi_kart_frame084"; - -static const ALIGN_ASSET(2) char gKartYoshi085[] = "__OTR__yoshi_kart/yoshi_kart_frame085"; - -static const ALIGN_ASSET(2) char gKartYoshi086[] = "__OTR__yoshi_kart/yoshi_kart_frame086"; - -static const ALIGN_ASSET(2) char gKartYoshi087[] = "__OTR__yoshi_kart/yoshi_kart_frame087"; - -static const ALIGN_ASSET(2) char gKartYoshi088[] = "__OTR__yoshi_kart/yoshi_kart_frame088"; - -static const ALIGN_ASSET(2) char gKartYoshi089[] = "__OTR__yoshi_kart/yoshi_kart_frame089"; - -static const ALIGN_ASSET(2) char gKartYoshi090[] = "__OTR__yoshi_kart/yoshi_kart_frame090"; - -static const ALIGN_ASSET(2) char gKartYoshi091[] = "__OTR__yoshi_kart/yoshi_kart_frame091"; - -static const ALIGN_ASSET(2) char gKartYoshi092[] = "__OTR__yoshi_kart/yoshi_kart_frame092"; - -static const ALIGN_ASSET(2) char gKartYoshi093[] = "__OTR__yoshi_kart/yoshi_kart_frame093"; - -static const ALIGN_ASSET(2) char gKartYoshi094[] = "__OTR__yoshi_kart/yoshi_kart_frame094"; - -static const ALIGN_ASSET(2) char gKartYoshi095[] = "__OTR__yoshi_kart/yoshi_kart_frame095"; - -static const ALIGN_ASSET(2) char gKartYoshi096[] = "__OTR__yoshi_kart/yoshi_kart_frame096"; - -static const ALIGN_ASSET(2) char gKartYoshi097[] = "__OTR__yoshi_kart/yoshi_kart_frame097"; - -static const ALIGN_ASSET(2) char gKartYoshi098[] = "__OTR__yoshi_kart/yoshi_kart_frame098"; - -static const ALIGN_ASSET(2) char gKartYoshi099[] = "__OTR__yoshi_kart/yoshi_kart_frame099"; - -static const ALIGN_ASSET(2) char gKartYoshi100[] = "__OTR__yoshi_kart/yoshi_kart_frame100"; - -static const ALIGN_ASSET(2) char gKartYoshi101[] = "__OTR__yoshi_kart/yoshi_kart_frame101"; - -static const ALIGN_ASSET(2) char gKartYoshi102[] = "__OTR__yoshi_kart/yoshi_kart_frame102"; - -static const ALIGN_ASSET(2) char gKartYoshi103[] = "__OTR__yoshi_kart/yoshi_kart_frame103"; - -static const ALIGN_ASSET(2) char gKartYoshi104[] = "__OTR__yoshi_kart/yoshi_kart_frame104"; - -static const ALIGN_ASSET(2) char gKartYoshi105[] = "__OTR__yoshi_kart/yoshi_kart_frame105"; - -static const ALIGN_ASSET(2) char gKartYoshi106[] = "__OTR__yoshi_kart/yoshi_kart_frame106"; - -static const ALIGN_ASSET(2) char gKartYoshi107[] = "__OTR__yoshi_kart/yoshi_kart_frame107"; - -static const ALIGN_ASSET(2) char gKartYoshi108[] = "__OTR__yoshi_kart/yoshi_kart_frame108"; - -static const ALIGN_ASSET(2) char gKartYoshi109[] = "__OTR__yoshi_kart/yoshi_kart_frame109"; - -static const ALIGN_ASSET(2) char gKartYoshi110[] = "__OTR__yoshi_kart/yoshi_kart_frame110"; - -static const ALIGN_ASSET(2) char gKartYoshi111[] = "__OTR__yoshi_kart/yoshi_kart_frame111"; - -static const ALIGN_ASSET(2) char gKartYoshi112[] = "__OTR__yoshi_kart/yoshi_kart_frame112"; - -static const ALIGN_ASSET(2) char gKartYoshi113[] = "__OTR__yoshi_kart/yoshi_kart_frame113"; - -static const ALIGN_ASSET(2) char gKartYoshi114[] = "__OTR__yoshi_kart/yoshi_kart_frame114"; - -static const ALIGN_ASSET(2) char gKartYoshi115[] = "__OTR__yoshi_kart/yoshi_kart_frame115"; - -static const ALIGN_ASSET(2) char gKartYoshi116[] = "__OTR__yoshi_kart/yoshi_kart_frame116"; - -static const ALIGN_ASSET(2) char gKartYoshi117[] = "__OTR__yoshi_kart/yoshi_kart_frame117"; - -static const ALIGN_ASSET(2) char gKartYoshi118[] = "__OTR__yoshi_kart/yoshi_kart_frame118"; - -static const ALIGN_ASSET(2) char gKartYoshi119[] = "__OTR__yoshi_kart/yoshi_kart_frame119"; - -static const ALIGN_ASSET(2) char gKartYoshi120[] = "__OTR__yoshi_kart/yoshi_kart_frame120"; - -static const ALIGN_ASSET(2) char gKartYoshi121[] = "__OTR__yoshi_kart/yoshi_kart_frame121"; - -static const ALIGN_ASSET(2) char gKartYoshi122[] = "__OTR__yoshi_kart/yoshi_kart_frame122"; - -static const ALIGN_ASSET(2) char gKartYoshi123[] = "__OTR__yoshi_kart/yoshi_kart_frame123"; - -static const ALIGN_ASSET(2) char gKartYoshi124[] = "__OTR__yoshi_kart/yoshi_kart_frame124"; - -static const ALIGN_ASSET(2) char gKartYoshi125[] = "__OTR__yoshi_kart/yoshi_kart_frame125"; - -static const ALIGN_ASSET(2) char gKartYoshi126[] = "__OTR__yoshi_kart/yoshi_kart_frame126"; - -static const ALIGN_ASSET(2) char gKartYoshi127[] = "__OTR__yoshi_kart/yoshi_kart_frame127"; - -static const ALIGN_ASSET(2) char gKartYoshi128[] = "__OTR__yoshi_kart/yoshi_kart_frame128"; - -static const ALIGN_ASSET(2) char gKartYoshi129[] = "__OTR__yoshi_kart/yoshi_kart_frame129"; - -static const ALIGN_ASSET(2) char gKartYoshi130[] = "__OTR__yoshi_kart/yoshi_kart_frame130"; - -static const ALIGN_ASSET(2) char gKartYoshi131[] = "__OTR__yoshi_kart/yoshi_kart_frame131"; - -static const ALIGN_ASSET(2) char gKartYoshi132[] = "__OTR__yoshi_kart/yoshi_kart_frame132"; - -static const ALIGN_ASSET(2) char gKartYoshi133[] = "__OTR__yoshi_kart/yoshi_kart_frame133"; - -static const ALIGN_ASSET(2) char gKartYoshi134[] = "__OTR__yoshi_kart/yoshi_kart_frame134"; - -static const ALIGN_ASSET(2) char gKartYoshi135[] = "__OTR__yoshi_kart/yoshi_kart_frame135"; - -static const ALIGN_ASSET(2) char gKartYoshi136[] = "__OTR__yoshi_kart/yoshi_kart_frame136"; - -static const ALIGN_ASSET(2) char gKartYoshi137[] = "__OTR__yoshi_kart/yoshi_kart_frame137"; - -static const ALIGN_ASSET(2) char gKartYoshi138[] = "__OTR__yoshi_kart/yoshi_kart_frame138"; - -static const ALIGN_ASSET(2) char gKartYoshi139[] = "__OTR__yoshi_kart/yoshi_kart_frame139"; - -static const ALIGN_ASSET(2) char gKartYoshi140[] = "__OTR__yoshi_kart/yoshi_kart_frame140"; - -static const ALIGN_ASSET(2) char gKartYoshi141[] = "__OTR__yoshi_kart/yoshi_kart_frame141"; - -static const ALIGN_ASSET(2) char gKartYoshi142[] = "__OTR__yoshi_kart/yoshi_kart_frame142"; - -static const ALIGN_ASSET(2) char gKartYoshi143[] = "__OTR__yoshi_kart/yoshi_kart_frame143"; - -static const ALIGN_ASSET(2) char gKartYoshi144[] = "__OTR__yoshi_kart/yoshi_kart_frame144"; - -static const ALIGN_ASSET(2) char gKartYoshi145[] = "__OTR__yoshi_kart/yoshi_kart_frame145"; - -static const ALIGN_ASSET(2) char gKartYoshi146[] = "__OTR__yoshi_kart/yoshi_kart_frame146"; - -static const ALIGN_ASSET(2) char gKartYoshi147[] = "__OTR__yoshi_kart/yoshi_kart_frame147"; - -static const ALIGN_ASSET(2) char gKartYoshi148[] = "__OTR__yoshi_kart/yoshi_kart_frame148"; - -static const ALIGN_ASSET(2) char gKartYoshi149[] = "__OTR__yoshi_kart/yoshi_kart_frame149"; - -static const ALIGN_ASSET(2) char gKartYoshi150[] = "__OTR__yoshi_kart/yoshi_kart_frame150"; - -static const ALIGN_ASSET(2) char gKartYoshi151[] = "__OTR__yoshi_kart/yoshi_kart_frame151"; - -static const ALIGN_ASSET(2) char gKartYoshi152[] = "__OTR__yoshi_kart/yoshi_kart_frame152"; - -static const ALIGN_ASSET(2) char gKartYoshi153[] = "__OTR__yoshi_kart/yoshi_kart_frame153"; - -static const ALIGN_ASSET(2) char gKartYoshi154[] = "__OTR__yoshi_kart/yoshi_kart_frame154"; - -static const ALIGN_ASSET(2) char gKartYoshi155[] = "__OTR__yoshi_kart/yoshi_kart_frame155"; - -static const ALIGN_ASSET(2) char gKartYoshi156[] = "__OTR__yoshi_kart/yoshi_kart_frame156"; - -static const ALIGN_ASSET(2) char gKartYoshi157[] = "__OTR__yoshi_kart/yoshi_kart_frame157"; - -static const ALIGN_ASSET(2) char gKartYoshi158[] = "__OTR__yoshi_kart/yoshi_kart_frame158"; - -static const ALIGN_ASSET(2) char gKartYoshi159[] = "__OTR__yoshi_kart/yoshi_kart_frame159"; - -static const ALIGN_ASSET(2) char gKartYoshi160[] = "__OTR__yoshi_kart/yoshi_kart_frame160"; - -static const ALIGN_ASSET(2) char gKartYoshi161[] = "__OTR__yoshi_kart/yoshi_kart_frame161"; - -static const ALIGN_ASSET(2) char gKartYoshi162[] = "__OTR__yoshi_kart/yoshi_kart_frame162"; - -static const ALIGN_ASSET(2) char gKartYoshi163[] = "__OTR__yoshi_kart/yoshi_kart_frame163"; - -static const ALIGN_ASSET(2) char gKartYoshi164[] = "__OTR__yoshi_kart/yoshi_kart_frame164"; - -static const ALIGN_ASSET(2) char gKartYoshi165[] = "__OTR__yoshi_kart/yoshi_kart_frame165"; - -static const ALIGN_ASSET(2) char gKartYoshi166[] = "__OTR__yoshi_kart/yoshi_kart_frame166"; - -static const ALIGN_ASSET(2) char gKartYoshi167[] = "__OTR__yoshi_kart/yoshi_kart_frame167"; - -static const ALIGN_ASSET(2) char gKartYoshi168[] = "__OTR__yoshi_kart/yoshi_kart_frame168"; - -static const ALIGN_ASSET(2) char gKartYoshi169[] = "__OTR__yoshi_kart/yoshi_kart_frame169"; - -static const ALIGN_ASSET(2) char gKartYoshi170[] = "__OTR__yoshi_kart/yoshi_kart_frame170"; - -static const ALIGN_ASSET(2) char gKartYoshi171[] = "__OTR__yoshi_kart/yoshi_kart_frame171"; - -static const ALIGN_ASSET(2) char gKartYoshi172[] = "__OTR__yoshi_kart/yoshi_kart_frame172"; - -static const ALIGN_ASSET(2) char gKartYoshi173[] = "__OTR__yoshi_kart/yoshi_kart_frame173"; - -static const ALIGN_ASSET(2) char gKartYoshi174[] = "__OTR__yoshi_kart/yoshi_kart_frame174"; - -static const ALIGN_ASSET(2) char gKartYoshi175[] = "__OTR__yoshi_kart/yoshi_kart_frame175"; - -static const ALIGN_ASSET(2) char gKartYoshi176[] = "__OTR__yoshi_kart/yoshi_kart_frame176"; - -static const ALIGN_ASSET(2) char gKartYoshi177[] = "__OTR__yoshi_kart/yoshi_kart_frame177"; - -static const ALIGN_ASSET(2) char gKartYoshi178[] = "__OTR__yoshi_kart/yoshi_kart_frame178"; - -static const ALIGN_ASSET(2) char gKartYoshi179[] = "__OTR__yoshi_kart/yoshi_kart_frame179"; - -static const ALIGN_ASSET(2) char gKartYoshi180[] = "__OTR__yoshi_kart/yoshi_kart_frame180"; - -static const ALIGN_ASSET(2) char gKartYoshi181[] = "__OTR__yoshi_kart/yoshi_kart_frame181"; - -static const ALIGN_ASSET(2) char gKartYoshi182[] = "__OTR__yoshi_kart/yoshi_kart_frame182"; - -static const ALIGN_ASSET(2) char gKartYoshi183[] = "__OTR__yoshi_kart/yoshi_kart_frame183"; - -static const ALIGN_ASSET(2) char gKartYoshi184[] = "__OTR__yoshi_kart/yoshi_kart_frame184"; - -static const ALIGN_ASSET(2) char gKartYoshi185[] = "__OTR__yoshi_kart/yoshi_kart_frame185"; - -static const ALIGN_ASSET(2) char gKartYoshi186[] = "__OTR__yoshi_kart/yoshi_kart_frame186"; - -static const ALIGN_ASSET(2) char gKartYoshi187[] = "__OTR__yoshi_kart/yoshi_kart_frame187"; - -static const ALIGN_ASSET(2) char gKartYoshi188[] = "__OTR__yoshi_kart/yoshi_kart_frame188"; - -static const ALIGN_ASSET(2) char gKartYoshi189[] = "__OTR__yoshi_kart/yoshi_kart_frame189"; - -static const ALIGN_ASSET(2) char gKartYoshi190[] = "__OTR__yoshi_kart/yoshi_kart_frame190"; - -static const ALIGN_ASSET(2) char gKartYoshi191[] = "__OTR__yoshi_kart/yoshi_kart_frame191"; - -static const ALIGN_ASSET(2) char gKartYoshi192[] = "__OTR__yoshi_kart/yoshi_kart_frame192"; - -static const ALIGN_ASSET(2) char gKartYoshi193[] = "__OTR__yoshi_kart/yoshi_kart_frame193"; - -static const ALIGN_ASSET(2) char gKartYoshi194[] = "__OTR__yoshi_kart/yoshi_kart_frame194"; - -static const ALIGN_ASSET(2) char gKartYoshi195[] = "__OTR__yoshi_kart/yoshi_kart_frame195"; - -static const ALIGN_ASSET(2) char gKartYoshi196[] = "__OTR__yoshi_kart/yoshi_kart_frame196"; - -static const ALIGN_ASSET(2) char gKartYoshi197[] = "__OTR__yoshi_kart/yoshi_kart_frame197"; - -static const ALIGN_ASSET(2) char gKartYoshi198[] = "__OTR__yoshi_kart/yoshi_kart_frame198"; - -static const ALIGN_ASSET(2) char gKartYoshi199[] = "__OTR__yoshi_kart/yoshi_kart_frame199"; - -static const ALIGN_ASSET(2) char gKartYoshi200[] = "__OTR__yoshi_kart/yoshi_kart_frame200"; - -static const ALIGN_ASSET(2) char gKartYoshi201[] = "__OTR__yoshi_kart/yoshi_kart_frame201"; - -static const ALIGN_ASSET(2) char gKartYoshi202[] = "__OTR__yoshi_kart/yoshi_kart_frame202"; - -static const ALIGN_ASSET(2) char gKartYoshi203[] = "__OTR__yoshi_kart/yoshi_kart_frame203"; - -static const ALIGN_ASSET(2) char gKartYoshi204[] = "__OTR__yoshi_kart/yoshi_kart_frame204"; - -static const ALIGN_ASSET(2) char gKartYoshi205[] = "__OTR__yoshi_kart/yoshi_kart_frame205"; - -static const ALIGN_ASSET(2) char gKartYoshi206[] = "__OTR__yoshi_kart/yoshi_kart_frame206"; - -static const ALIGN_ASSET(2) char gKartYoshi207[] = "__OTR__yoshi_kart/yoshi_kart_frame207"; - -static const ALIGN_ASSET(2) char gKartYoshi208[] = "__OTR__yoshi_kart/yoshi_kart_frame208"; - -static const ALIGN_ASSET(2) char gKartYoshi209[] = "__OTR__yoshi_kart/yoshi_kart_frame209"; - -static const ALIGN_ASSET(2) char gKartYoshi210[] = "__OTR__yoshi_kart/yoshi_kart_frame210"; - -static const ALIGN_ASSET(2) char gKartYoshi211[] = "__OTR__yoshi_kart/yoshi_kart_frame211"; - -static const ALIGN_ASSET(2) char gKartYoshi212[] = "__OTR__yoshi_kart/yoshi_kart_frame212"; - -static const ALIGN_ASSET(2) char gKartYoshi213[] = "__OTR__yoshi_kart/yoshi_kart_frame213"; - -static const ALIGN_ASSET(2) char gKartYoshi214[] = "__OTR__yoshi_kart/yoshi_kart_frame214"; - -static const ALIGN_ASSET(2) char gKartYoshi215[] = "__OTR__yoshi_kart/yoshi_kart_frame215"; - -static const ALIGN_ASSET(2) char gKartYoshi216[] = "__OTR__yoshi_kart/yoshi_kart_frame216"; - -static const ALIGN_ASSET(2) char gKartYoshi217[] = "__OTR__yoshi_kart/yoshi_kart_frame217"; - -static const ALIGN_ASSET(2) char gKartYoshi218[] = "__OTR__yoshi_kart/yoshi_kart_frame218"; - -static const ALIGN_ASSET(2) char gKartYoshi219[] = "__OTR__yoshi_kart/yoshi_kart_frame219"; - -static const ALIGN_ASSET(2) char gKartYoshi220[] = "__OTR__yoshi_kart/yoshi_kart_frame220"; - -static const ALIGN_ASSET(2) char gKartYoshi221[] = "__OTR__yoshi_kart/yoshi_kart_frame221"; - -static const ALIGN_ASSET(2) char gKartYoshi222[] = "__OTR__yoshi_kart/yoshi_kart_frame222"; - -static const ALIGN_ASSET(2) char gKartYoshi223[] = "__OTR__yoshi_kart/yoshi_kart_frame223"; - -static const ALIGN_ASSET(2) char gKartYoshi224[] = "__OTR__yoshi_kart/yoshi_kart_frame224"; - -static const ALIGN_ASSET(2) char gKartYoshi225[] = "__OTR__yoshi_kart/yoshi_kart_frame225"; - -static const ALIGN_ASSET(2) char gKartYoshi226[] = "__OTR__yoshi_kart/yoshi_kart_frame226"; - -static const ALIGN_ASSET(2) char gKartYoshi227[] = "__OTR__yoshi_kart/yoshi_kart_frame227"; - -static const ALIGN_ASSET(2) char gKartYoshi228[] = "__OTR__yoshi_kart/yoshi_kart_frame228"; - -static const ALIGN_ASSET(2) char gKartYoshi229[] = "__OTR__yoshi_kart/yoshi_kart_frame229"; - -static const ALIGN_ASSET(2) char gKartYoshi230[] = "__OTR__yoshi_kart/yoshi_kart_frame230"; - -static const ALIGN_ASSET(2) char gKartYoshi231[] = "__OTR__yoshi_kart/yoshi_kart_frame231"; - -static const ALIGN_ASSET(2) char gKartYoshi232[] = "__OTR__yoshi_kart/yoshi_kart_frame232"; - -static const ALIGN_ASSET(2) char gKartYoshi233[] = "__OTR__yoshi_kart/yoshi_kart_frame233"; - -static const ALIGN_ASSET(2) char gKartYoshi234[] = "__OTR__yoshi_kart/yoshi_kart_frame234"; - -static const ALIGN_ASSET(2) char gKartYoshi235[] = "__OTR__yoshi_kart/yoshi_kart_frame235"; - -static const ALIGN_ASSET(2) char gKartYoshi236[] = "__OTR__yoshi_kart/yoshi_kart_frame236"; - -static const ALIGN_ASSET(2) char gKartYoshi237[] = "__OTR__yoshi_kart/yoshi_kart_frame237"; - -static const ALIGN_ASSET(2) char gKartYoshi238[] = "__OTR__yoshi_kart/yoshi_kart_frame238"; - -static const ALIGN_ASSET(2) char gKartYoshi239[] = "__OTR__yoshi_kart/yoshi_kart_frame239"; - -static const ALIGN_ASSET(2) char gKartYoshi240[] = "__OTR__yoshi_kart/yoshi_kart_frame240"; - -static const ALIGN_ASSET(2) char gKartYoshi241[] = "__OTR__yoshi_kart/yoshi_kart_frame241"; - -static const ALIGN_ASSET(2) char gKartYoshi242[] = "__OTR__yoshi_kart/yoshi_kart_frame242"; - -static const ALIGN_ASSET(2) char gKartYoshi243[] = "__OTR__yoshi_kart/yoshi_kart_frame243"; - -static const ALIGN_ASSET(2) char gKartYoshi244[] = "__OTR__yoshi_kart/yoshi_kart_frame244"; - -static const ALIGN_ASSET(2) char gKartYoshi245[] = "__OTR__yoshi_kart/yoshi_kart_frame245"; - -static const ALIGN_ASSET(2) char gKartYoshi246[] = "__OTR__yoshi_kart/yoshi_kart_frame246"; - -static const ALIGN_ASSET(2) char gKartYoshi247[] = "__OTR__yoshi_kart/yoshi_kart_frame247"; - -static const ALIGN_ASSET(2) char gKartYoshi248[] = "__OTR__yoshi_kart/yoshi_kart_frame248"; - -static const ALIGN_ASSET(2) char gKartYoshi249[] = "__OTR__yoshi_kart/yoshi_kart_frame249"; - -static const ALIGN_ASSET(2) char gKartYoshi250[] = "__OTR__yoshi_kart/yoshi_kart_frame250"; - -static const ALIGN_ASSET(2) char gKartYoshi251[] = "__OTR__yoshi_kart/yoshi_kart_frame251"; - -static const ALIGN_ASSET(2) char gKartYoshi252[] = "__OTR__yoshi_kart/yoshi_kart_frame252"; - -static const ALIGN_ASSET(2) char gKartYoshi253[] = "__OTR__yoshi_kart/yoshi_kart_frame253"; - -static const ALIGN_ASSET(2) char gKartYoshi254[] = "__OTR__yoshi_kart/yoshi_kart_frame254"; - -static const ALIGN_ASSET(2) char gKartYoshi255[] = "__OTR__yoshi_kart/yoshi_kart_frame255"; - -static const ALIGN_ASSET(2) char gKartYoshi256[] = "__OTR__yoshi_kart/yoshi_kart_frame256"; - -static const ALIGN_ASSET(2) char gKartYoshi257[] = "__OTR__yoshi_kart/yoshi_kart_frame257"; - -static const ALIGN_ASSET(2) char gKartYoshi258[] = "__OTR__yoshi_kart/yoshi_kart_frame258"; - -static const ALIGN_ASSET(2) char gKartYoshi259[] = "__OTR__yoshi_kart/yoshi_kart_frame259"; - -static const ALIGN_ASSET(2) char gKartYoshi260[] = "__OTR__yoshi_kart/yoshi_kart_frame260"; - -static const ALIGN_ASSET(2) char gKartYoshi261[] = "__OTR__yoshi_kart/yoshi_kart_frame261"; - -static const ALIGN_ASSET(2) char gKartYoshi262[] = "__OTR__yoshi_kart/yoshi_kart_frame262"; - -static const ALIGN_ASSET(2) char gKartYoshi263[] = "__OTR__yoshi_kart/yoshi_kart_frame263"; - -static const ALIGN_ASSET(2) char gKartYoshi264[] = "__OTR__yoshi_kart/yoshi_kart_frame264"; - -static const ALIGN_ASSET(2) char gKartYoshi265[] = "__OTR__yoshi_kart/yoshi_kart_frame265"; - -static const ALIGN_ASSET(2) char gKartYoshi266[] = "__OTR__yoshi_kart/yoshi_kart_frame266"; - -static const ALIGN_ASSET(2) char gKartYoshi267[] = "__OTR__yoshi_kart/yoshi_kart_frame267"; - -static const ALIGN_ASSET(2) char gKartYoshi268[] = "__OTR__yoshi_kart/yoshi_kart_frame268"; - -static const ALIGN_ASSET(2) char gKartYoshi269[] = "__OTR__yoshi_kart/yoshi_kart_frame269"; - -static const ALIGN_ASSET(2) char gKartYoshi270[] = "__OTR__yoshi_kart/yoshi_kart_frame270"; - -static const ALIGN_ASSET(2) char gKartYoshi271[] = "__OTR__yoshi_kart/yoshi_kart_frame271"; - -static const ALIGN_ASSET(2) char gKartYoshi272[] = "__OTR__yoshi_kart/yoshi_kart_frame272"; - -static const ALIGN_ASSET(2) char gKartYoshi273[] = "__OTR__yoshi_kart/yoshi_kart_frame273"; - -static const ALIGN_ASSET(2) char gKartYoshi274[] = "__OTR__yoshi_kart/yoshi_kart_frame274"; - -static const ALIGN_ASSET(2) char gKartYoshi275[] = "__OTR__yoshi_kart/yoshi_kart_frame275"; - -static const ALIGN_ASSET(2) char gKartYoshi276[] = "__OTR__yoshi_kart/yoshi_kart_frame276"; - -static const ALIGN_ASSET(2) char gKartYoshi277[] = "__OTR__yoshi_kart/yoshi_kart_frame277"; - -static const ALIGN_ASSET(2) char gKartYoshi278[] = "__OTR__yoshi_kart/yoshi_kart_frame278"; - -static const ALIGN_ASSET(2) char gKartYoshi279[] = "__OTR__yoshi_kart/yoshi_kart_frame279"; - -static const ALIGN_ASSET(2) char gKartYoshi280[] = "__OTR__yoshi_kart/yoshi_kart_frame280"; - -static const ALIGN_ASSET(2) char gKartYoshi281[] = "__OTR__yoshi_kart/yoshi_kart_frame281"; - -static const ALIGN_ASSET(2) char gKartYoshi282[] = "__OTR__yoshi_kart/yoshi_kart_frame282"; - -static const ALIGN_ASSET(2) char gKartYoshi283[] = "__OTR__yoshi_kart/yoshi_kart_frame283"; - -static const ALIGN_ASSET(2) char gKartYoshi284[] = "__OTR__yoshi_kart/yoshi_kart_frame284"; - -static const ALIGN_ASSET(2) char gKartYoshi285[] = "__OTR__yoshi_kart/yoshi_kart_frame285"; - -static const ALIGN_ASSET(2) char gKartYoshi286[] = "__OTR__yoshi_kart/yoshi_kart_frame286"; - -static const ALIGN_ASSET(2) char gKartYoshi287[] = "__OTR__yoshi_kart/yoshi_kart_frame287"; - -static const ALIGN_ASSET(2) char gKartYoshi288[] = "__OTR__yoshi_kart/yoshi_kart_frame288"; - -static const ALIGN_ASSET(2) char gKartYoshi289[] = "__OTR__yoshi_kart/yoshi_kart_frame289"; - -static const ALIGN_ASSET(2) char gKartYoshi290[] = "__OTR__yoshi_kart/yoshi_kart_frame290"; - -static const ALIGN_ASSET(2) char gKartYoshi291[] = "__OTR__yoshi_kart/yoshi_kart_frame291"; - -static const ALIGN_ASSET(2) char gKartYoshi292[] = "__OTR__yoshi_kart/yoshi_kart_frame292"; - -static const ALIGN_ASSET(2) char gKartYoshi293[] = "__OTR__yoshi_kart/yoshi_kart_frame293"; - -static const ALIGN_ASSET(2) char gKartYoshi294[] = "__OTR__yoshi_kart/yoshi_kart_frame294"; - -static const ALIGN_ASSET(2) char gKartYoshi295[] = "__OTR__yoshi_kart/yoshi_kart_frame295"; - -static const ALIGN_ASSET(2) char gKartYoshi296[] = "__OTR__yoshi_kart/yoshi_kart_frame296"; - -static const ALIGN_ASSET(2) char gKartYoshi297[] = "__OTR__yoshi_kart/yoshi_kart_frame297"; - -static const ALIGN_ASSET(2) char gKartYoshi298[] = "__OTR__yoshi_kart/yoshi_kart_frame298"; - -static const ALIGN_ASSET(2) char gKartYoshi299[] = "__OTR__yoshi_kart/yoshi_kart_frame299"; - -static const ALIGN_ASSET(2) char gKartYoshi300[] = "__OTR__yoshi_kart/yoshi_kart_frame300"; - -static const ALIGN_ASSET(2) char gKartYoshi301[] = "__OTR__yoshi_kart/yoshi_kart_frame301"; - -static const ALIGN_ASSET(2) char gKartYoshi302[] = "__OTR__yoshi_kart/yoshi_kart_frame302"; - -static const ALIGN_ASSET(2) char gKartYoshi303[] = "__OTR__yoshi_kart/yoshi_kart_frame303"; - -static const ALIGN_ASSET(2) char gKartYoshi304[] = "__OTR__yoshi_kart/yoshi_kart_frame304"; - -static const ALIGN_ASSET(2) char gKartYoshi305[] = "__OTR__yoshi_kart/yoshi_kart_frame305"; - -static const ALIGN_ASSET(2) char gKartYoshi306[] = "__OTR__yoshi_kart/yoshi_kart_frame306"; - -static const ALIGN_ASSET(2) char gKartYoshi307[] = "__OTR__yoshi_kart/yoshi_kart_frame307"; - -static const ALIGN_ASSET(2) char gKartYoshi308[] = "__OTR__yoshi_kart/yoshi_kart_frame308"; - -static const ALIGN_ASSET(2) char gKartYoshi309[] = "__OTR__yoshi_kart/yoshi_kart_frame309"; - -static const ALIGN_ASSET(2) char gKartYoshi310[] = "__OTR__yoshi_kart/yoshi_kart_frame310"; - -static const ALIGN_ASSET(2) char gKartYoshi311[] = "__OTR__yoshi_kart/yoshi_kart_frame311"; - -static const ALIGN_ASSET(2) char gKartYoshi312[] = "__OTR__yoshi_kart/yoshi_kart_frame312"; - -static const ALIGN_ASSET(2) char gKartYoshi313[] = "__OTR__yoshi_kart/yoshi_kart_frame313"; - -static const ALIGN_ASSET(2) char gKartYoshi314[] = "__OTR__yoshi_kart/yoshi_kart_frame314"; - -static const ALIGN_ASSET(2) char gKartYoshi315[] = "__OTR__yoshi_kart/yoshi_kart_frame315"; - -static const ALIGN_ASSET(2) char gKartYoshi316[] = "__OTR__yoshi_kart/yoshi_kart_frame316"; - -static const ALIGN_ASSET(2) char gKartYoshi317[] = "__OTR__yoshi_kart/yoshi_kart_frame317"; - -static const ALIGN_ASSET(2) char gKartYoshi318[] = "__OTR__yoshi_kart/yoshi_kart_frame318"; - -static const ALIGN_ASSET(2) char gKartYoshi319[] = "__OTR__yoshi_kart/yoshi_kart_frame319"; - -static const ALIGN_ASSET(2) char gKartYoshi320[] = "__OTR__yoshi_kart/yoshi_kart_frame320"; - -static const ALIGN_ASSET(2) char gKartYoshi000Wheel0[] = "__OTR__yoshi_kart/kart_000_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi000Wheel1[] = "__OTR__yoshi_kart/kart_000_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi000Wheel2[] = "__OTR__yoshi_kart/kart_000_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi000Wheel3[] = "__OTR__yoshi_kart/kart_000_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi001Wheel0[] = "__OTR__yoshi_kart/kart_001_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi001Wheel1[] = "__OTR__yoshi_kart/kart_001_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi001Wheel2[] = "__OTR__yoshi_kart/kart_001_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi001Wheel3[] = "__OTR__yoshi_kart/kart_001_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi002Wheel0[] = "__OTR__yoshi_kart/kart_002_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi002Wheel1[] = "__OTR__yoshi_kart/kart_002_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi002Wheel2[] = "__OTR__yoshi_kart/kart_002_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi002Wheel3[] = "__OTR__yoshi_kart/kart_002_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi003Wheel0[] = "__OTR__yoshi_kart/kart_003_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi003Wheel1[] = "__OTR__yoshi_kart/kart_003_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi003Wheel2[] = "__OTR__yoshi_kart/kart_003_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi003Wheel3[] = "__OTR__yoshi_kart/kart_003_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi004Wheel0[] = "__OTR__yoshi_kart/kart_004_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi004Wheel1[] = "__OTR__yoshi_kart/kart_004_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi004Wheel2[] = "__OTR__yoshi_kart/kart_004_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi004Wheel3[] = "__OTR__yoshi_kart/kart_004_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi005Wheel0[] = "__OTR__yoshi_kart/kart_005_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi005Wheel1[] = "__OTR__yoshi_kart/kart_005_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi005Wheel2[] = "__OTR__yoshi_kart/kart_005_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi005Wheel3[] = "__OTR__yoshi_kart/kart_005_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi006Wheel0[] = "__OTR__yoshi_kart/kart_006_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi006Wheel1[] = "__OTR__yoshi_kart/kart_006_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi006Wheel2[] = "__OTR__yoshi_kart/kart_006_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi006Wheel3[] = "__OTR__yoshi_kart/kart_006_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi007Wheel0[] = "__OTR__yoshi_kart/kart_007_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi007Wheel1[] = "__OTR__yoshi_kart/kart_007_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi007Wheel2[] = "__OTR__yoshi_kart/kart_007_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi007Wheel3[] = "__OTR__yoshi_kart/kart_007_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi008Wheel0[] = "__OTR__yoshi_kart/kart_008_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi008Wheel1[] = "__OTR__yoshi_kart/kart_008_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi008Wheel2[] = "__OTR__yoshi_kart/kart_008_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi008Wheel3[] = "__OTR__yoshi_kart/kart_008_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi009Wheel0[] = "__OTR__yoshi_kart/kart_009_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi009Wheel1[] = "__OTR__yoshi_kart/kart_009_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi009Wheel2[] = "__OTR__yoshi_kart/kart_009_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi009Wheel3[] = "__OTR__yoshi_kart/kart_009_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi010Wheel0[] = "__OTR__yoshi_kart/kart_010_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi010Wheel1[] = "__OTR__yoshi_kart/kart_010_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi010Wheel2[] = "__OTR__yoshi_kart/kart_010_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi010Wheel3[] = "__OTR__yoshi_kart/kart_010_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi011Wheel0[] = "__OTR__yoshi_kart/kart_011_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi011Wheel1[] = "__OTR__yoshi_kart/kart_011_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi011Wheel2[] = "__OTR__yoshi_kart/kart_011_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi011Wheel3[] = "__OTR__yoshi_kart/kart_011_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi012Wheel0[] = "__OTR__yoshi_kart/kart_012_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi012Wheel1[] = "__OTR__yoshi_kart/kart_012_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi012Wheel2[] = "__OTR__yoshi_kart/kart_012_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi012Wheel3[] = "__OTR__yoshi_kart/kart_012_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi013Wheel0[] = "__OTR__yoshi_kart/kart_013_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi013Wheel1[] = "__OTR__yoshi_kart/kart_013_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi013Wheel2[] = "__OTR__yoshi_kart/kart_013_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi013Wheel3[] = "__OTR__yoshi_kart/kart_013_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi014Wheel0[] = "__OTR__yoshi_kart/kart_014_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi014Wheel1[] = "__OTR__yoshi_kart/kart_014_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi014Wheel2[] = "__OTR__yoshi_kart/kart_014_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi014Wheel3[] = "__OTR__yoshi_kart/kart_014_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi015Wheel0[] = "__OTR__yoshi_kart/kart_015_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi015Wheel1[] = "__OTR__yoshi_kart/kart_015_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi015Wheel2[] = "__OTR__yoshi_kart/kart_015_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi015Wheel3[] = "__OTR__yoshi_kart/kart_015_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi016Wheel0[] = "__OTR__yoshi_kart/kart_016_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi016Wheel1[] = "__OTR__yoshi_kart/kart_016_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi016Wheel2[] = "__OTR__yoshi_kart/kart_016_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi016Wheel3[] = "__OTR__yoshi_kart/kart_016_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi017Wheel0[] = "__OTR__yoshi_kart/kart_017_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi017Wheel1[] = "__OTR__yoshi_kart/kart_017_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi017Wheel2[] = "__OTR__yoshi_kart/kart_017_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi017Wheel3[] = "__OTR__yoshi_kart/kart_017_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi018Wheel0[] = "__OTR__yoshi_kart/kart_018_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi018Wheel1[] = "__OTR__yoshi_kart/kart_018_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi018Wheel2[] = "__OTR__yoshi_kart/kart_018_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi018Wheel3[] = "__OTR__yoshi_kart/kart_018_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi019Wheel0[] = "__OTR__yoshi_kart/kart_019_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi019Wheel1[] = "__OTR__yoshi_kart/kart_019_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi019Wheel2[] = "__OTR__yoshi_kart/kart_019_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi019Wheel3[] = "__OTR__yoshi_kart/kart_019_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi020Wheel0[] = "__OTR__yoshi_kart/kart_020_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi020Wheel1[] = "__OTR__yoshi_kart/kart_020_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi020Wheel2[] = "__OTR__yoshi_kart/kart_020_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi020Wheel3[] = "__OTR__yoshi_kart/kart_020_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi021Wheel0[] = "__OTR__yoshi_kart/kart_021_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi021Wheel1[] = "__OTR__yoshi_kart/kart_021_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi021Wheel2[] = "__OTR__yoshi_kart/kart_021_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi021Wheel3[] = "__OTR__yoshi_kart/kart_021_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi022Wheel0[] = "__OTR__yoshi_kart/kart_022_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi022Wheel1[] = "__OTR__yoshi_kart/kart_022_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi022Wheel2[] = "__OTR__yoshi_kart/kart_022_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi022Wheel3[] = "__OTR__yoshi_kart/kart_022_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi023Wheel0[] = "__OTR__yoshi_kart/kart_023_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi023Wheel1[] = "__OTR__yoshi_kart/kart_023_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi023Wheel2[] = "__OTR__yoshi_kart/kart_023_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi023Wheel3[] = "__OTR__yoshi_kart/kart_023_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi024Wheel0[] = "__OTR__yoshi_kart/kart_024_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi024Wheel1[] = "__OTR__yoshi_kart/kart_024_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi024Wheel2[] = "__OTR__yoshi_kart/kart_024_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi024Wheel3[] = "__OTR__yoshi_kart/kart_024_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi025Wheel0[] = "__OTR__yoshi_kart/kart_025_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi025Wheel1[] = "__OTR__yoshi_kart/kart_025_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi025Wheel2[] = "__OTR__yoshi_kart/kart_025_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi025Wheel3[] = "__OTR__yoshi_kart/kart_025_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi026Wheel0[] = "__OTR__yoshi_kart/kart_026_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi026Wheel1[] = "__OTR__yoshi_kart/kart_026_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi026Wheel2[] = "__OTR__yoshi_kart/kart_026_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi026Wheel3[] = "__OTR__yoshi_kart/kart_026_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi027Wheel0[] = "__OTR__yoshi_kart/kart_027_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi027Wheel1[] = "__OTR__yoshi_kart/kart_027_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi027Wheel2[] = "__OTR__yoshi_kart/kart_027_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi027Wheel3[] = "__OTR__yoshi_kart/kart_027_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi028Wheel0[] = "__OTR__yoshi_kart/kart_028_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi028Wheel1[] = "__OTR__yoshi_kart/kart_028_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi028Wheel2[] = "__OTR__yoshi_kart/kart_028_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi028Wheel3[] = "__OTR__yoshi_kart/kart_028_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi029Wheel0[] = "__OTR__yoshi_kart/kart_029_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi029Wheel1[] = "__OTR__yoshi_kart/kart_029_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi029Wheel2[] = "__OTR__yoshi_kart/kart_029_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi029Wheel3[] = "__OTR__yoshi_kart/kart_029_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi030Wheel0[] = "__OTR__yoshi_kart/kart_030_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi030Wheel1[] = "__OTR__yoshi_kart/kart_030_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi030Wheel2[] = "__OTR__yoshi_kart/kart_030_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi030Wheel3[] = "__OTR__yoshi_kart/kart_030_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi031Wheel0[] = "__OTR__yoshi_kart/kart_031_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi031Wheel1[] = "__OTR__yoshi_kart/kart_031_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi031Wheel2[] = "__OTR__yoshi_kart/kart_031_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi031Wheel3[] = "__OTR__yoshi_kart/kart_031_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi032Wheel0[] = "__OTR__yoshi_kart/kart_032_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi032Wheel1[] = "__OTR__yoshi_kart/kart_032_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi032Wheel2[] = "__OTR__yoshi_kart/kart_032_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi032Wheel3[] = "__OTR__yoshi_kart/kart_032_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi033Wheel0[] = "__OTR__yoshi_kart/kart_033_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi033Wheel1[] = "__OTR__yoshi_kart/kart_033_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi033Wheel2[] = "__OTR__yoshi_kart/kart_033_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi033Wheel3[] = "__OTR__yoshi_kart/kart_033_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi034Wheel0[] = "__OTR__yoshi_kart/kart_034_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi034Wheel1[] = "__OTR__yoshi_kart/kart_034_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi034Wheel2[] = "__OTR__yoshi_kart/kart_034_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi034Wheel3[] = "__OTR__yoshi_kart/kart_034_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi035Wheel0[] = "__OTR__yoshi_kart/kart_035_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi035Wheel1[] = "__OTR__yoshi_kart/kart_035_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi035Wheel2[] = "__OTR__yoshi_kart/kart_035_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi035Wheel3[] = "__OTR__yoshi_kart/kart_035_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi036Wheel0[] = "__OTR__yoshi_kart/kart_036_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi036Wheel1[] = "__OTR__yoshi_kart/kart_036_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi036Wheel2[] = "__OTR__yoshi_kart/kart_036_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi036Wheel3[] = "__OTR__yoshi_kart/kart_036_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi037Wheel0[] = "__OTR__yoshi_kart/kart_037_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi037Wheel1[] = "__OTR__yoshi_kart/kart_037_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi037Wheel2[] = "__OTR__yoshi_kart/kart_037_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi037Wheel3[] = "__OTR__yoshi_kart/kart_037_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi038Wheel0[] = "__OTR__yoshi_kart/kart_038_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi038Wheel1[] = "__OTR__yoshi_kart/kart_038_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi038Wheel2[] = "__OTR__yoshi_kart/kart_038_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi038Wheel3[] = "__OTR__yoshi_kart/kart_038_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi039Wheel0[] = "__OTR__yoshi_kart/kart_039_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi039Wheel1[] = "__OTR__yoshi_kart/kart_039_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi039Wheel2[] = "__OTR__yoshi_kart/kart_039_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi039Wheel3[] = "__OTR__yoshi_kart/kart_039_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi040Wheel0[] = "__OTR__yoshi_kart/kart_040_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi040Wheel1[] = "__OTR__yoshi_kart/kart_040_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi040Wheel2[] = "__OTR__yoshi_kart/kart_040_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi040Wheel3[] = "__OTR__yoshi_kart/kart_040_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi041Wheel0[] = "__OTR__yoshi_kart/kart_041_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi041Wheel1[] = "__OTR__yoshi_kart/kart_041_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi041Wheel2[] = "__OTR__yoshi_kart/kart_041_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi041Wheel3[] = "__OTR__yoshi_kart/kart_041_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi042Wheel0[] = "__OTR__yoshi_kart/kart_042_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi042Wheel1[] = "__OTR__yoshi_kart/kart_042_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi042Wheel2[] = "__OTR__yoshi_kart/kart_042_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi042Wheel3[] = "__OTR__yoshi_kart/kart_042_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi043Wheel0[] = "__OTR__yoshi_kart/kart_043_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi043Wheel1[] = "__OTR__yoshi_kart/kart_043_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi043Wheel2[] = "__OTR__yoshi_kart/kart_043_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi043Wheel3[] = "__OTR__yoshi_kart/kart_043_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi044Wheel0[] = "__OTR__yoshi_kart/kart_044_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi044Wheel1[] = "__OTR__yoshi_kart/kart_044_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi044Wheel2[] = "__OTR__yoshi_kart/kart_044_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi044Wheel3[] = "__OTR__yoshi_kart/kart_044_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi045Wheel0[] = "__OTR__yoshi_kart/kart_045_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi045Wheel1[] = "__OTR__yoshi_kart/kart_045_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi045Wheel2[] = "__OTR__yoshi_kart/kart_045_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi045Wheel3[] = "__OTR__yoshi_kart/kart_045_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi046Wheel0[] = "__OTR__yoshi_kart/kart_046_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi046Wheel1[] = "__OTR__yoshi_kart/kart_046_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi046Wheel2[] = "__OTR__yoshi_kart/kart_046_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi046Wheel3[] = "__OTR__yoshi_kart/kart_046_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi047Wheel0[] = "__OTR__yoshi_kart/kart_047_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi047Wheel1[] = "__OTR__yoshi_kart/kart_047_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi047Wheel2[] = "__OTR__yoshi_kart/kart_047_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi047Wheel3[] = "__OTR__yoshi_kart/kart_047_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi048Wheel0[] = "__OTR__yoshi_kart/kart_048_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi048Wheel1[] = "__OTR__yoshi_kart/kart_048_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi048Wheel2[] = "__OTR__yoshi_kart/kart_048_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi048Wheel3[] = "__OTR__yoshi_kart/kart_048_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi049Wheel0[] = "__OTR__yoshi_kart/kart_049_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi049Wheel1[] = "__OTR__yoshi_kart/kart_049_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi049Wheel2[] = "__OTR__yoshi_kart/kart_049_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi049Wheel3[] = "__OTR__yoshi_kart/kart_049_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi050Wheel0[] = "__OTR__yoshi_kart/kart_050_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi050Wheel1[] = "__OTR__yoshi_kart/kart_050_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi050Wheel2[] = "__OTR__yoshi_kart/kart_050_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi050Wheel3[] = "__OTR__yoshi_kart/kart_050_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi051Wheel0[] = "__OTR__yoshi_kart/kart_051_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi051Wheel1[] = "__OTR__yoshi_kart/kart_051_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi051Wheel2[] = "__OTR__yoshi_kart/kart_051_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi051Wheel3[] = "__OTR__yoshi_kart/kart_051_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi052Wheel0[] = "__OTR__yoshi_kart/kart_052_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi052Wheel1[] = "__OTR__yoshi_kart/kart_052_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi052Wheel2[] = "__OTR__yoshi_kart/kart_052_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi052Wheel3[] = "__OTR__yoshi_kart/kart_052_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi053Wheel0[] = "__OTR__yoshi_kart/kart_053_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi053Wheel1[] = "__OTR__yoshi_kart/kart_053_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi053Wheel2[] = "__OTR__yoshi_kart/kart_053_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi053Wheel3[] = "__OTR__yoshi_kart/kart_053_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi054Wheel0[] = "__OTR__yoshi_kart/kart_054_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi054Wheel1[] = "__OTR__yoshi_kart/kart_054_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi054Wheel2[] = "__OTR__yoshi_kart/kart_054_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi054Wheel3[] = "__OTR__yoshi_kart/kart_054_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi055Wheel0[] = "__OTR__yoshi_kart/kart_055_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi055Wheel1[] = "__OTR__yoshi_kart/kart_055_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi055Wheel2[] = "__OTR__yoshi_kart/kart_055_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi055Wheel3[] = "__OTR__yoshi_kart/kart_055_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi056Wheel0[] = "__OTR__yoshi_kart/kart_056_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi056Wheel1[] = "__OTR__yoshi_kart/kart_056_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi056Wheel2[] = "__OTR__yoshi_kart/kart_056_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi056Wheel3[] = "__OTR__yoshi_kart/kart_056_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi057Wheel0[] = "__OTR__yoshi_kart/kart_057_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi057Wheel1[] = "__OTR__yoshi_kart/kart_057_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi057Wheel2[] = "__OTR__yoshi_kart/kart_057_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi057Wheel3[] = "__OTR__yoshi_kart/kart_057_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi058Wheel0[] = "__OTR__yoshi_kart/kart_058_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi058Wheel1[] = "__OTR__yoshi_kart/kart_058_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi058Wheel2[] = "__OTR__yoshi_kart/kart_058_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi058Wheel3[] = "__OTR__yoshi_kart/kart_058_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi059Wheel0[] = "__OTR__yoshi_kart/kart_059_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi059Wheel1[] = "__OTR__yoshi_kart/kart_059_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi059Wheel2[] = "__OTR__yoshi_kart/kart_059_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi059Wheel3[] = "__OTR__yoshi_kart/kart_059_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi060Wheel0[] = "__OTR__yoshi_kart/kart_060_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi060Wheel1[] = "__OTR__yoshi_kart/kart_060_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi060Wheel2[] = "__OTR__yoshi_kart/kart_060_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi060Wheel3[] = "__OTR__yoshi_kart/kart_060_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi061Wheel0[] = "__OTR__yoshi_kart/kart_061_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi061Wheel1[] = "__OTR__yoshi_kart/kart_061_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi061Wheel2[] = "__OTR__yoshi_kart/kart_061_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi061Wheel3[] = "__OTR__yoshi_kart/kart_061_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi062Wheel0[] = "__OTR__yoshi_kart/kart_062_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi062Wheel1[] = "__OTR__yoshi_kart/kart_062_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi062Wheel2[] = "__OTR__yoshi_kart/kart_062_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi062Wheel3[] = "__OTR__yoshi_kart/kart_062_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi063Wheel0[] = "__OTR__yoshi_kart/kart_063_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi063Wheel1[] = "__OTR__yoshi_kart/kart_063_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi063Wheel2[] = "__OTR__yoshi_kart/kart_063_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi063Wheel3[] = "__OTR__yoshi_kart/kart_063_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi064Wheel0[] = "__OTR__yoshi_kart/kart_064_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi064Wheel1[] = "__OTR__yoshi_kart/kart_064_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi064Wheel2[] = "__OTR__yoshi_kart/kart_064_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi064Wheel3[] = "__OTR__yoshi_kart/kart_064_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi065Wheel0[] = "__OTR__yoshi_kart/kart_065_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi065Wheel1[] = "__OTR__yoshi_kart/kart_065_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi065Wheel2[] = "__OTR__yoshi_kart/kart_065_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi065Wheel3[] = "__OTR__yoshi_kart/kart_065_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi066Wheel0[] = "__OTR__yoshi_kart/kart_066_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi066Wheel1[] = "__OTR__yoshi_kart/kart_066_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi066Wheel2[] = "__OTR__yoshi_kart/kart_066_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi066Wheel3[] = "__OTR__yoshi_kart/kart_066_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi067Wheel0[] = "__OTR__yoshi_kart/kart_067_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi067Wheel1[] = "__OTR__yoshi_kart/kart_067_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi067Wheel2[] = "__OTR__yoshi_kart/kart_067_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi067Wheel3[] = "__OTR__yoshi_kart/kart_067_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi068Wheel0[] = "__OTR__yoshi_kart/kart_068_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi068Wheel1[] = "__OTR__yoshi_kart/kart_068_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi068Wheel2[] = "__OTR__yoshi_kart/kart_068_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi068Wheel3[] = "__OTR__yoshi_kart/kart_068_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi069Wheel0[] = "__OTR__yoshi_kart/kart_069_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi069Wheel1[] = "__OTR__yoshi_kart/kart_069_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi069Wheel2[] = "__OTR__yoshi_kart/kart_069_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi069Wheel3[] = "__OTR__yoshi_kart/kart_069_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi070Wheel0[] = "__OTR__yoshi_kart/kart_070_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi070Wheel1[] = "__OTR__yoshi_kart/kart_070_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi070Wheel2[] = "__OTR__yoshi_kart/kart_070_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi070Wheel3[] = "__OTR__yoshi_kart/kart_070_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi071Wheel0[] = "__OTR__yoshi_kart/kart_071_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi071Wheel1[] = "__OTR__yoshi_kart/kart_071_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi071Wheel2[] = "__OTR__yoshi_kart/kart_071_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi071Wheel3[] = "__OTR__yoshi_kart/kart_071_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi072Wheel0[] = "__OTR__yoshi_kart/kart_072_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi072Wheel1[] = "__OTR__yoshi_kart/kart_072_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi072Wheel2[] = "__OTR__yoshi_kart/kart_072_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi072Wheel3[] = "__OTR__yoshi_kart/kart_072_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi073Wheel0[] = "__OTR__yoshi_kart/kart_073_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi073Wheel1[] = "__OTR__yoshi_kart/kart_073_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi073Wheel2[] = "__OTR__yoshi_kart/kart_073_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi073Wheel3[] = "__OTR__yoshi_kart/kart_073_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi074Wheel0[] = "__OTR__yoshi_kart/kart_074_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi074Wheel1[] = "__OTR__yoshi_kart/kart_074_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi074Wheel2[] = "__OTR__yoshi_kart/kart_074_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi074Wheel3[] = "__OTR__yoshi_kart/kart_074_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi075Wheel0[] = "__OTR__yoshi_kart/kart_075_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi075Wheel1[] = "__OTR__yoshi_kart/kart_075_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi075Wheel2[] = "__OTR__yoshi_kart/kart_075_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi075Wheel3[] = "__OTR__yoshi_kart/kart_075_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi076Wheel0[] = "__OTR__yoshi_kart/kart_076_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi076Wheel1[] = "__OTR__yoshi_kart/kart_076_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi076Wheel2[] = "__OTR__yoshi_kart/kart_076_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi076Wheel3[] = "__OTR__yoshi_kart/kart_076_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi077Wheel0[] = "__OTR__yoshi_kart/kart_077_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi077Wheel1[] = "__OTR__yoshi_kart/kart_077_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi077Wheel2[] = "__OTR__yoshi_kart/kart_077_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi077Wheel3[] = "__OTR__yoshi_kart/kart_077_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi078Wheel0[] = "__OTR__yoshi_kart/kart_078_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi078Wheel1[] = "__OTR__yoshi_kart/kart_078_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi078Wheel2[] = "__OTR__yoshi_kart/kart_078_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi078Wheel3[] = "__OTR__yoshi_kart/kart_078_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi079Wheel0[] = "__OTR__yoshi_kart/kart_079_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi079Wheel1[] = "__OTR__yoshi_kart/kart_079_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi079Wheel2[] = "__OTR__yoshi_kart/kart_079_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi079Wheel3[] = "__OTR__yoshi_kart/kart_079_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi080Wheel0[] = "__OTR__yoshi_kart/kart_080_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi080Wheel1[] = "__OTR__yoshi_kart/kart_080_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi080Wheel2[] = "__OTR__yoshi_kart/kart_080_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi080Wheel3[] = "__OTR__yoshi_kart/kart_080_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi081Wheel0[] = "__OTR__yoshi_kart/kart_081_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi081Wheel1[] = "__OTR__yoshi_kart/kart_081_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi081Wheel2[] = "__OTR__yoshi_kart/kart_081_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi081Wheel3[] = "__OTR__yoshi_kart/kart_081_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi082Wheel0[] = "__OTR__yoshi_kart/kart_082_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi082Wheel1[] = "__OTR__yoshi_kart/kart_082_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi082Wheel2[] = "__OTR__yoshi_kart/kart_082_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi082Wheel3[] = "__OTR__yoshi_kart/kart_082_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi083Wheel0[] = "__OTR__yoshi_kart/kart_083_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi083Wheel1[] = "__OTR__yoshi_kart/kart_083_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi083Wheel2[] = "__OTR__yoshi_kart/kart_083_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi083Wheel3[] = "__OTR__yoshi_kart/kart_083_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi084Wheel0[] = "__OTR__yoshi_kart/kart_084_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi084Wheel1[] = "__OTR__yoshi_kart/kart_084_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi084Wheel2[] = "__OTR__yoshi_kart/kart_084_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi084Wheel3[] = "__OTR__yoshi_kart/kart_084_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi085Wheel0[] = "__OTR__yoshi_kart/kart_085_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi085Wheel1[] = "__OTR__yoshi_kart/kart_085_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi085Wheel2[] = "__OTR__yoshi_kart/kart_085_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi085Wheel3[] = "__OTR__yoshi_kart/kart_085_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi086Wheel0[] = "__OTR__yoshi_kart/kart_086_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi086Wheel1[] = "__OTR__yoshi_kart/kart_086_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi086Wheel2[] = "__OTR__yoshi_kart/kart_086_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi086Wheel3[] = "__OTR__yoshi_kart/kart_086_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi087Wheel0[] = "__OTR__yoshi_kart/kart_087_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi087Wheel1[] = "__OTR__yoshi_kart/kart_087_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi087Wheel2[] = "__OTR__yoshi_kart/kart_087_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi087Wheel3[] = "__OTR__yoshi_kart/kart_087_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi088Wheel0[] = "__OTR__yoshi_kart/kart_088_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi088Wheel1[] = "__OTR__yoshi_kart/kart_088_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi088Wheel2[] = "__OTR__yoshi_kart/kart_088_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi088Wheel3[] = "__OTR__yoshi_kart/kart_088_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi089Wheel0[] = "__OTR__yoshi_kart/kart_089_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi089Wheel1[] = "__OTR__yoshi_kart/kart_089_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi089Wheel2[] = "__OTR__yoshi_kart/kart_089_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi089Wheel3[] = "__OTR__yoshi_kart/kart_089_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi090Wheel0[] = "__OTR__yoshi_kart/kart_090_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi090Wheel1[] = "__OTR__yoshi_kart/kart_090_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi090Wheel2[] = "__OTR__yoshi_kart/kart_090_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi090Wheel3[] = "__OTR__yoshi_kart/kart_090_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi091Wheel0[] = "__OTR__yoshi_kart/kart_091_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi091Wheel1[] = "__OTR__yoshi_kart/kart_091_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi091Wheel2[] = "__OTR__yoshi_kart/kart_091_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi091Wheel3[] = "__OTR__yoshi_kart/kart_091_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi092Wheel0[] = "__OTR__yoshi_kart/kart_092_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi092Wheel1[] = "__OTR__yoshi_kart/kart_092_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi092Wheel2[] = "__OTR__yoshi_kart/kart_092_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi092Wheel3[] = "__OTR__yoshi_kart/kart_092_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi093Wheel0[] = "__OTR__yoshi_kart/kart_093_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi093Wheel1[] = "__OTR__yoshi_kart/kart_093_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi093Wheel2[] = "__OTR__yoshi_kart/kart_093_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi093Wheel3[] = "__OTR__yoshi_kart/kart_093_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi094Wheel0[] = "__OTR__yoshi_kart/kart_094_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi094Wheel1[] = "__OTR__yoshi_kart/kart_094_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi094Wheel2[] = "__OTR__yoshi_kart/kart_094_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi094Wheel3[] = "__OTR__yoshi_kart/kart_094_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi095Wheel0[] = "__OTR__yoshi_kart/kart_095_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi095Wheel1[] = "__OTR__yoshi_kart/kart_095_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi095Wheel2[] = "__OTR__yoshi_kart/kart_095_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi095Wheel3[] = "__OTR__yoshi_kart/kart_095_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi096Wheel0[] = "__OTR__yoshi_kart/kart_096_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi096Wheel1[] = "__OTR__yoshi_kart/kart_096_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi096Wheel2[] = "__OTR__yoshi_kart/kart_096_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi096Wheel3[] = "__OTR__yoshi_kart/kart_096_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi097Wheel0[] = "__OTR__yoshi_kart/kart_097_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi097Wheel1[] = "__OTR__yoshi_kart/kart_097_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi097Wheel2[] = "__OTR__yoshi_kart/kart_097_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi097Wheel3[] = "__OTR__yoshi_kart/kart_097_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi098Wheel0[] = "__OTR__yoshi_kart/kart_098_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi098Wheel1[] = "__OTR__yoshi_kart/kart_098_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi098Wheel2[] = "__OTR__yoshi_kart/kart_098_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi098Wheel3[] = "__OTR__yoshi_kart/kart_098_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi099Wheel0[] = "__OTR__yoshi_kart/kart_099_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi099Wheel1[] = "__OTR__yoshi_kart/kart_099_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi099Wheel2[] = "__OTR__yoshi_kart/kart_099_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi099Wheel3[] = "__OTR__yoshi_kart/kart_099_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi100Wheel0[] = "__OTR__yoshi_kart/kart_100_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi100Wheel1[] = "__OTR__yoshi_kart/kart_100_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi100Wheel2[] = "__OTR__yoshi_kart/kart_100_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi100Wheel3[] = "__OTR__yoshi_kart/kart_100_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi101Wheel0[] = "__OTR__yoshi_kart/kart_101_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi101Wheel1[] = "__OTR__yoshi_kart/kart_101_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi101Wheel2[] = "__OTR__yoshi_kart/kart_101_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi101Wheel3[] = "__OTR__yoshi_kart/kart_101_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi102Wheel0[] = "__OTR__yoshi_kart/kart_102_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi102Wheel1[] = "__OTR__yoshi_kart/kart_102_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi102Wheel2[] = "__OTR__yoshi_kart/kart_102_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi102Wheel3[] = "__OTR__yoshi_kart/kart_102_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi103Wheel0[] = "__OTR__yoshi_kart/kart_103_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi103Wheel1[] = "__OTR__yoshi_kart/kart_103_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi103Wheel2[] = "__OTR__yoshi_kart/kart_103_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi103Wheel3[] = "__OTR__yoshi_kart/kart_103_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi104Wheel0[] = "__OTR__yoshi_kart/kart_104_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi104Wheel1[] = "__OTR__yoshi_kart/kart_104_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi104Wheel2[] = "__OTR__yoshi_kart/kart_104_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi104Wheel3[] = "__OTR__yoshi_kart/kart_104_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi105Wheel0[] = "__OTR__yoshi_kart/kart_105_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi105Wheel1[] = "__OTR__yoshi_kart/kart_105_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi105Wheel2[] = "__OTR__yoshi_kart/kart_105_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi105Wheel3[] = "__OTR__yoshi_kart/kart_105_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi106Wheel0[] = "__OTR__yoshi_kart/kart_106_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi106Wheel1[] = "__OTR__yoshi_kart/kart_106_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi106Wheel2[] = "__OTR__yoshi_kart/kart_106_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi106Wheel3[] = "__OTR__yoshi_kart/kart_106_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi107Wheel0[] = "__OTR__yoshi_kart/kart_107_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi107Wheel1[] = "__OTR__yoshi_kart/kart_107_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi107Wheel2[] = "__OTR__yoshi_kart/kart_107_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi107Wheel3[] = "__OTR__yoshi_kart/kart_107_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi108Wheel0[] = "__OTR__yoshi_kart/kart_108_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi108Wheel1[] = "__OTR__yoshi_kart/kart_108_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi108Wheel2[] = "__OTR__yoshi_kart/kart_108_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi108Wheel3[] = "__OTR__yoshi_kart/kart_108_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi109Wheel0[] = "__OTR__yoshi_kart/kart_109_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi109Wheel1[] = "__OTR__yoshi_kart/kart_109_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi109Wheel2[] = "__OTR__yoshi_kart/kart_109_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi109Wheel3[] = "__OTR__yoshi_kart/kart_109_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi110Wheel0[] = "__OTR__yoshi_kart/kart_110_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi110Wheel1[] = "__OTR__yoshi_kart/kart_110_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi110Wheel2[] = "__OTR__yoshi_kart/kart_110_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi110Wheel3[] = "__OTR__yoshi_kart/kart_110_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi111Wheel0[] = "__OTR__yoshi_kart/kart_111_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi111Wheel1[] = "__OTR__yoshi_kart/kart_111_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi111Wheel2[] = "__OTR__yoshi_kart/kart_111_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi111Wheel3[] = "__OTR__yoshi_kart/kart_111_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi112Wheel0[] = "__OTR__yoshi_kart/kart_112_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi112Wheel1[] = "__OTR__yoshi_kart/kart_112_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi112Wheel2[] = "__OTR__yoshi_kart/kart_112_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi112Wheel3[] = "__OTR__yoshi_kart/kart_112_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi113Wheel0[] = "__OTR__yoshi_kart/kart_113_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi113Wheel1[] = "__OTR__yoshi_kart/kart_113_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi113Wheel2[] = "__OTR__yoshi_kart/kart_113_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi113Wheel3[] = "__OTR__yoshi_kart/kart_113_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi114Wheel0[] = "__OTR__yoshi_kart/kart_114_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi114Wheel1[] = "__OTR__yoshi_kart/kart_114_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi114Wheel2[] = "__OTR__yoshi_kart/kart_114_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi114Wheel3[] = "__OTR__yoshi_kart/kart_114_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi115Wheel0[] = "__OTR__yoshi_kart/kart_115_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi115Wheel1[] = "__OTR__yoshi_kart/kart_115_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi115Wheel2[] = "__OTR__yoshi_kart/kart_115_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi115Wheel3[] = "__OTR__yoshi_kart/kart_115_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi116Wheel0[] = "__OTR__yoshi_kart/kart_116_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi116Wheel1[] = "__OTR__yoshi_kart/kart_116_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi116Wheel2[] = "__OTR__yoshi_kart/kart_116_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi116Wheel3[] = "__OTR__yoshi_kart/kart_116_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi117Wheel0[] = "__OTR__yoshi_kart/kart_117_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi117Wheel1[] = "__OTR__yoshi_kart/kart_117_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi117Wheel2[] = "__OTR__yoshi_kart/kart_117_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi117Wheel3[] = "__OTR__yoshi_kart/kart_117_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi118Wheel0[] = "__OTR__yoshi_kart/kart_118_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi118Wheel1[] = "__OTR__yoshi_kart/kart_118_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi118Wheel2[] = "__OTR__yoshi_kart/kart_118_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi118Wheel3[] = "__OTR__yoshi_kart/kart_118_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi119Wheel0[] = "__OTR__yoshi_kart/kart_119_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi119Wheel1[] = "__OTR__yoshi_kart/kart_119_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi119Wheel2[] = "__OTR__yoshi_kart/kart_119_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi119Wheel3[] = "__OTR__yoshi_kart/kart_119_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi120Wheel0[] = "__OTR__yoshi_kart/kart_120_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi120Wheel1[] = "__OTR__yoshi_kart/kart_120_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi120Wheel2[] = "__OTR__yoshi_kart/kart_120_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi120Wheel3[] = "__OTR__yoshi_kart/kart_120_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi121Wheel0[] = "__OTR__yoshi_kart/kart_121_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi121Wheel1[] = "__OTR__yoshi_kart/kart_121_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi121Wheel2[] = "__OTR__yoshi_kart/kart_121_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi121Wheel3[] = "__OTR__yoshi_kart/kart_121_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi122Wheel0[] = "__OTR__yoshi_kart/kart_122_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi122Wheel1[] = "__OTR__yoshi_kart/kart_122_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi122Wheel2[] = "__OTR__yoshi_kart/kart_122_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi122Wheel3[] = "__OTR__yoshi_kart/kart_122_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi123Wheel0[] = "__OTR__yoshi_kart/kart_123_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi123Wheel1[] = "__OTR__yoshi_kart/kart_123_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi123Wheel2[] = "__OTR__yoshi_kart/kart_123_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi123Wheel3[] = "__OTR__yoshi_kart/kart_123_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi124Wheel0[] = "__OTR__yoshi_kart/kart_124_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi124Wheel1[] = "__OTR__yoshi_kart/kart_124_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi124Wheel2[] = "__OTR__yoshi_kart/kart_124_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi124Wheel3[] = "__OTR__yoshi_kart/kart_124_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi125Wheel0[] = "__OTR__yoshi_kart/kart_125_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi125Wheel1[] = "__OTR__yoshi_kart/kart_125_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi125Wheel2[] = "__OTR__yoshi_kart/kart_125_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi125Wheel3[] = "__OTR__yoshi_kart/kart_125_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi126Wheel0[] = "__OTR__yoshi_kart/kart_126_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi126Wheel1[] = "__OTR__yoshi_kart/kart_126_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi126Wheel2[] = "__OTR__yoshi_kart/kart_126_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi126Wheel3[] = "__OTR__yoshi_kart/kart_126_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi127Wheel0[] = "__OTR__yoshi_kart/kart_127_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi127Wheel1[] = "__OTR__yoshi_kart/kart_127_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi127Wheel2[] = "__OTR__yoshi_kart/kart_127_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi127Wheel3[] = "__OTR__yoshi_kart/kart_127_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi128Wheel0[] = "__OTR__yoshi_kart/kart_128_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi128Wheel1[] = "__OTR__yoshi_kart/kart_128_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi128Wheel2[] = "__OTR__yoshi_kart/kart_128_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi128Wheel3[] = "__OTR__yoshi_kart/kart_128_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi129Wheel0[] = "__OTR__yoshi_kart/kart_129_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi129Wheel1[] = "__OTR__yoshi_kart/kart_129_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi129Wheel2[] = "__OTR__yoshi_kart/kart_129_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi129Wheel3[] = "__OTR__yoshi_kart/kart_129_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi130Wheel0[] = "__OTR__yoshi_kart/kart_130_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi130Wheel1[] = "__OTR__yoshi_kart/kart_130_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi130Wheel2[] = "__OTR__yoshi_kart/kart_130_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi130Wheel3[] = "__OTR__yoshi_kart/kart_130_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi131Wheel0[] = "__OTR__yoshi_kart/kart_131_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi131Wheel1[] = "__OTR__yoshi_kart/kart_131_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi131Wheel2[] = "__OTR__yoshi_kart/kart_131_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi131Wheel3[] = "__OTR__yoshi_kart/kart_131_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi132Wheel0[] = "__OTR__yoshi_kart/kart_132_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi132Wheel1[] = "__OTR__yoshi_kart/kart_132_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi132Wheel2[] = "__OTR__yoshi_kart/kart_132_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi132Wheel3[] = "__OTR__yoshi_kart/kart_132_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi133Wheel0[] = "__OTR__yoshi_kart/kart_133_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi133Wheel1[] = "__OTR__yoshi_kart/kart_133_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi133Wheel2[] = "__OTR__yoshi_kart/kart_133_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi133Wheel3[] = "__OTR__yoshi_kart/kart_133_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi134Wheel0[] = "__OTR__yoshi_kart/kart_134_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi134Wheel1[] = "__OTR__yoshi_kart/kart_134_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi134Wheel2[] = "__OTR__yoshi_kart/kart_134_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi134Wheel3[] = "__OTR__yoshi_kart/kart_134_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi135Wheel0[] = "__OTR__yoshi_kart/kart_135_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi135Wheel1[] = "__OTR__yoshi_kart/kart_135_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi135Wheel2[] = "__OTR__yoshi_kart/kart_135_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi135Wheel3[] = "__OTR__yoshi_kart/kart_135_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi136Wheel0[] = "__OTR__yoshi_kart/kart_136_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi136Wheel1[] = "__OTR__yoshi_kart/kart_136_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi136Wheel2[] = "__OTR__yoshi_kart/kart_136_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi136Wheel3[] = "__OTR__yoshi_kart/kart_136_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi137Wheel0[] = "__OTR__yoshi_kart/kart_137_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi137Wheel1[] = "__OTR__yoshi_kart/kart_137_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi137Wheel2[] = "__OTR__yoshi_kart/kart_137_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi137Wheel3[] = "__OTR__yoshi_kart/kart_137_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi138Wheel0[] = "__OTR__yoshi_kart/kart_138_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi138Wheel1[] = "__OTR__yoshi_kart/kart_138_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi138Wheel2[] = "__OTR__yoshi_kart/kart_138_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi138Wheel3[] = "__OTR__yoshi_kart/kart_138_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi139Wheel0[] = "__OTR__yoshi_kart/kart_139_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi139Wheel1[] = "__OTR__yoshi_kart/kart_139_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi139Wheel2[] = "__OTR__yoshi_kart/kart_139_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi139Wheel3[] = "__OTR__yoshi_kart/kart_139_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi140Wheel0[] = "__OTR__yoshi_kart/kart_140_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi140Wheel1[] = "__OTR__yoshi_kart/kart_140_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi140Wheel2[] = "__OTR__yoshi_kart/kart_140_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi140Wheel3[] = "__OTR__yoshi_kart/kart_140_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi141Wheel0[] = "__OTR__yoshi_kart/kart_141_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi141Wheel1[] = "__OTR__yoshi_kart/kart_141_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi141Wheel2[] = "__OTR__yoshi_kart/kart_141_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi141Wheel3[] = "__OTR__yoshi_kart/kart_141_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi142Wheel0[] = "__OTR__yoshi_kart/kart_142_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi142Wheel1[] = "__OTR__yoshi_kart/kart_142_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi142Wheel2[] = "__OTR__yoshi_kart/kart_142_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi142Wheel3[] = "__OTR__yoshi_kart/kart_142_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi143Wheel0[] = "__OTR__yoshi_kart/kart_143_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi143Wheel1[] = "__OTR__yoshi_kart/kart_143_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi143Wheel2[] = "__OTR__yoshi_kart/kart_143_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi143Wheel3[] = "__OTR__yoshi_kart/kart_143_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi144Wheel0[] = "__OTR__yoshi_kart/kart_144_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi144Wheel1[] = "__OTR__yoshi_kart/kart_144_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi144Wheel2[] = "__OTR__yoshi_kart/kart_144_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi144Wheel3[] = "__OTR__yoshi_kart/kart_144_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi145Wheel0[] = "__OTR__yoshi_kart/kart_145_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi145Wheel1[] = "__OTR__yoshi_kart/kart_145_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi145Wheel2[] = "__OTR__yoshi_kart/kart_145_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi145Wheel3[] = "__OTR__yoshi_kart/kart_145_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi146Wheel0[] = "__OTR__yoshi_kart/kart_146_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi146Wheel1[] = "__OTR__yoshi_kart/kart_146_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi146Wheel2[] = "__OTR__yoshi_kart/kart_146_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi146Wheel3[] = "__OTR__yoshi_kart/kart_146_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi147Wheel0[] = "__OTR__yoshi_kart/kart_147_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi147Wheel1[] = "__OTR__yoshi_kart/kart_147_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi147Wheel2[] = "__OTR__yoshi_kart/kart_147_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi147Wheel3[] = "__OTR__yoshi_kart/kart_147_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi148Wheel0[] = "__OTR__yoshi_kart/kart_148_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi148Wheel1[] = "__OTR__yoshi_kart/kart_148_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi148Wheel2[] = "__OTR__yoshi_kart/kart_148_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi148Wheel3[] = "__OTR__yoshi_kart/kart_148_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi149Wheel0[] = "__OTR__yoshi_kart/kart_149_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi149Wheel1[] = "__OTR__yoshi_kart/kart_149_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi149Wheel2[] = "__OTR__yoshi_kart/kart_149_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi149Wheel3[] = "__OTR__yoshi_kart/kart_149_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi150Wheel0[] = "__OTR__yoshi_kart/kart_150_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi150Wheel1[] = "__OTR__yoshi_kart/kart_150_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi150Wheel2[] = "__OTR__yoshi_kart/kart_150_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi150Wheel3[] = "__OTR__yoshi_kart/kart_150_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi151Wheel0[] = "__OTR__yoshi_kart/kart_151_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi151Wheel1[] = "__OTR__yoshi_kart/kart_151_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi151Wheel2[] = "__OTR__yoshi_kart/kart_151_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi151Wheel3[] = "__OTR__yoshi_kart/kart_151_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi152Wheel0[] = "__OTR__yoshi_kart/kart_152_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi152Wheel1[] = "__OTR__yoshi_kart/kart_152_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi152Wheel2[] = "__OTR__yoshi_kart/kart_152_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi152Wheel3[] = "__OTR__yoshi_kart/kart_152_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi153Wheel0[] = "__OTR__yoshi_kart/kart_153_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi153Wheel1[] = "__OTR__yoshi_kart/kart_153_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi153Wheel2[] = "__OTR__yoshi_kart/kart_153_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi153Wheel3[] = "__OTR__yoshi_kart/kart_153_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi154Wheel0[] = "__OTR__yoshi_kart/kart_154_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi154Wheel1[] = "__OTR__yoshi_kart/kart_154_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi154Wheel2[] = "__OTR__yoshi_kart/kart_154_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi154Wheel3[] = "__OTR__yoshi_kart/kart_154_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi155Wheel0[] = "__OTR__yoshi_kart/kart_155_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi155Wheel1[] = "__OTR__yoshi_kart/kart_155_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi155Wheel2[] = "__OTR__yoshi_kart/kart_155_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi155Wheel3[] = "__OTR__yoshi_kart/kart_155_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi156Wheel0[] = "__OTR__yoshi_kart/kart_156_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi156Wheel1[] = "__OTR__yoshi_kart/kart_156_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi156Wheel2[] = "__OTR__yoshi_kart/kart_156_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi156Wheel3[] = "__OTR__yoshi_kart/kart_156_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi157Wheel0[] = "__OTR__yoshi_kart/kart_157_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi157Wheel1[] = "__OTR__yoshi_kart/kart_157_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi157Wheel2[] = "__OTR__yoshi_kart/kart_157_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi157Wheel3[] = "__OTR__yoshi_kart/kart_157_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi158Wheel0[] = "__OTR__yoshi_kart/kart_158_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi158Wheel1[] = "__OTR__yoshi_kart/kart_158_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi158Wheel2[] = "__OTR__yoshi_kart/kart_158_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi158Wheel3[] = "__OTR__yoshi_kart/kart_158_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi159Wheel0[] = "__OTR__yoshi_kart/kart_159_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi159Wheel1[] = "__OTR__yoshi_kart/kart_159_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi159Wheel2[] = "__OTR__yoshi_kart/kart_159_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi159Wheel3[] = "__OTR__yoshi_kart/kart_159_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi160Wheel0[] = "__OTR__yoshi_kart/kart_160_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi160Wheel1[] = "__OTR__yoshi_kart/kart_160_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi160Wheel2[] = "__OTR__yoshi_kart/kart_160_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi160Wheel3[] = "__OTR__yoshi_kart/kart_160_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi161Wheel0[] = "__OTR__yoshi_kart/kart_161_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi161Wheel1[] = "__OTR__yoshi_kart/kart_161_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi161Wheel2[] = "__OTR__yoshi_kart/kart_161_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi161Wheel3[] = "__OTR__yoshi_kart/kart_161_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi162Wheel0[] = "__OTR__yoshi_kart/kart_162_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi162Wheel1[] = "__OTR__yoshi_kart/kart_162_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi162Wheel2[] = "__OTR__yoshi_kart/kart_162_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi162Wheel3[] = "__OTR__yoshi_kart/kart_162_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi163Wheel0[] = "__OTR__yoshi_kart/kart_163_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi163Wheel1[] = "__OTR__yoshi_kart/kart_163_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi163Wheel2[] = "__OTR__yoshi_kart/kart_163_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi163Wheel3[] = "__OTR__yoshi_kart/kart_163_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi164Wheel0[] = "__OTR__yoshi_kart/kart_164_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi164Wheel1[] = "__OTR__yoshi_kart/kart_164_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi164Wheel2[] = "__OTR__yoshi_kart/kart_164_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi164Wheel3[] = "__OTR__yoshi_kart/kart_164_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi165Wheel0[] = "__OTR__yoshi_kart/kart_165_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi165Wheel1[] = "__OTR__yoshi_kart/kart_165_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi165Wheel2[] = "__OTR__yoshi_kart/kart_165_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi165Wheel3[] = "__OTR__yoshi_kart/kart_165_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi166Wheel0[] = "__OTR__yoshi_kart/kart_166_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi166Wheel1[] = "__OTR__yoshi_kart/kart_166_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi166Wheel2[] = "__OTR__yoshi_kart/kart_166_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi166Wheel3[] = "__OTR__yoshi_kart/kart_166_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi167Wheel0[] = "__OTR__yoshi_kart/kart_167_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi167Wheel1[] = "__OTR__yoshi_kart/kart_167_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi167Wheel2[] = "__OTR__yoshi_kart/kart_167_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi167Wheel3[] = "__OTR__yoshi_kart/kart_167_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi168Wheel0[] = "__OTR__yoshi_kart/kart_168_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi168Wheel1[] = "__OTR__yoshi_kart/kart_168_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi168Wheel2[] = "__OTR__yoshi_kart/kart_168_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi168Wheel3[] = "__OTR__yoshi_kart/kart_168_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi169Wheel0[] = "__OTR__yoshi_kart/kart_169_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi169Wheel1[] = "__OTR__yoshi_kart/kart_169_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi169Wheel2[] = "__OTR__yoshi_kart/kart_169_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi169Wheel3[] = "__OTR__yoshi_kart/kart_169_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi170Wheel0[] = "__OTR__yoshi_kart/kart_170_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi170Wheel1[] = "__OTR__yoshi_kart/kart_170_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi170Wheel2[] = "__OTR__yoshi_kart/kart_170_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi170Wheel3[] = "__OTR__yoshi_kart/kart_170_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi171Wheel0[] = "__OTR__yoshi_kart/kart_171_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi171Wheel1[] = "__OTR__yoshi_kart/kart_171_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi171Wheel2[] = "__OTR__yoshi_kart/kart_171_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi171Wheel3[] = "__OTR__yoshi_kart/kart_171_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi172Wheel0[] = "__OTR__yoshi_kart/kart_172_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi172Wheel1[] = "__OTR__yoshi_kart/kart_172_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi172Wheel2[] = "__OTR__yoshi_kart/kart_172_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi172Wheel3[] = "__OTR__yoshi_kart/kart_172_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi173Wheel0[] = "__OTR__yoshi_kart/kart_173_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi173Wheel1[] = "__OTR__yoshi_kart/kart_173_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi173Wheel2[] = "__OTR__yoshi_kart/kart_173_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi173Wheel3[] = "__OTR__yoshi_kart/kart_173_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi174Wheel0[] = "__OTR__yoshi_kart/kart_174_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi174Wheel1[] = "__OTR__yoshi_kart/kart_174_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi174Wheel2[] = "__OTR__yoshi_kart/kart_174_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi174Wheel3[] = "__OTR__yoshi_kart/kart_174_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi175Wheel0[] = "__OTR__yoshi_kart/kart_175_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi175Wheel1[] = "__OTR__yoshi_kart/kart_175_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi175Wheel2[] = "__OTR__yoshi_kart/kart_175_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi175Wheel3[] = "__OTR__yoshi_kart/kart_175_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi176Wheel0[] = "__OTR__yoshi_kart/kart_176_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi176Wheel1[] = "__OTR__yoshi_kart/kart_176_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi176Wheel2[] = "__OTR__yoshi_kart/kart_176_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi176Wheel3[] = "__OTR__yoshi_kart/kart_176_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi177Wheel0[] = "__OTR__yoshi_kart/kart_177_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi177Wheel1[] = "__OTR__yoshi_kart/kart_177_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi177Wheel2[] = "__OTR__yoshi_kart/kart_177_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi177Wheel3[] = "__OTR__yoshi_kart/kart_177_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi178Wheel0[] = "__OTR__yoshi_kart/kart_178_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi178Wheel1[] = "__OTR__yoshi_kart/kart_178_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi178Wheel2[] = "__OTR__yoshi_kart/kart_178_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi178Wheel3[] = "__OTR__yoshi_kart/kart_178_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi179Wheel0[] = "__OTR__yoshi_kart/kart_179_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi179Wheel1[] = "__OTR__yoshi_kart/kart_179_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi179Wheel2[] = "__OTR__yoshi_kart/kart_179_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi179Wheel3[] = "__OTR__yoshi_kart/kart_179_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi180Wheel0[] = "__OTR__yoshi_kart/kart_180_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi180Wheel1[] = "__OTR__yoshi_kart/kart_180_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi180Wheel2[] = "__OTR__yoshi_kart/kart_180_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi180Wheel3[] = "__OTR__yoshi_kart/kart_180_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi181Wheel0[] = "__OTR__yoshi_kart/kart_181_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi181Wheel1[] = "__OTR__yoshi_kart/kart_181_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi181Wheel2[] = "__OTR__yoshi_kart/kart_181_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi181Wheel3[] = "__OTR__yoshi_kart/kart_181_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi182Wheel0[] = "__OTR__yoshi_kart/kart_182_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi182Wheel1[] = "__OTR__yoshi_kart/kart_182_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi182Wheel2[] = "__OTR__yoshi_kart/kart_182_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi182Wheel3[] = "__OTR__yoshi_kart/kart_182_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi183Wheel0[] = "__OTR__yoshi_kart/kart_183_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi183Wheel1[] = "__OTR__yoshi_kart/kart_183_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi183Wheel2[] = "__OTR__yoshi_kart/kart_183_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi183Wheel3[] = "__OTR__yoshi_kart/kart_183_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi184Wheel0[] = "__OTR__yoshi_kart/kart_184_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi184Wheel1[] = "__OTR__yoshi_kart/kart_184_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi184Wheel2[] = "__OTR__yoshi_kart/kart_184_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi184Wheel3[] = "__OTR__yoshi_kart/kart_184_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi185Wheel0[] = "__OTR__yoshi_kart/kart_185_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi185Wheel1[] = "__OTR__yoshi_kart/kart_185_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi185Wheel2[] = "__OTR__yoshi_kart/kart_185_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi185Wheel3[] = "__OTR__yoshi_kart/kart_185_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi186Wheel0[] = "__OTR__yoshi_kart/kart_186_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi186Wheel1[] = "__OTR__yoshi_kart/kart_186_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi186Wheel2[] = "__OTR__yoshi_kart/kart_186_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi186Wheel3[] = "__OTR__yoshi_kart/kart_186_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi187Wheel0[] = "__OTR__yoshi_kart/kart_187_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi187Wheel1[] = "__OTR__yoshi_kart/kart_187_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi187Wheel2[] = "__OTR__yoshi_kart/kart_187_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi187Wheel3[] = "__OTR__yoshi_kart/kart_187_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi188Wheel0[] = "__OTR__yoshi_kart/kart_188_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi188Wheel1[] = "__OTR__yoshi_kart/kart_188_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi188Wheel2[] = "__OTR__yoshi_kart/kart_188_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi188Wheel3[] = "__OTR__yoshi_kart/kart_188_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi189Wheel0[] = "__OTR__yoshi_kart/kart_189_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi189Wheel1[] = "__OTR__yoshi_kart/kart_189_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi189Wheel2[] = "__OTR__yoshi_kart/kart_189_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi189Wheel3[] = "__OTR__yoshi_kart/kart_189_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi190Wheel0[] = "__OTR__yoshi_kart/kart_190_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi190Wheel1[] = "__OTR__yoshi_kart/kart_190_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi190Wheel2[] = "__OTR__yoshi_kart/kart_190_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi190Wheel3[] = "__OTR__yoshi_kart/kart_190_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi191Wheel0[] = "__OTR__yoshi_kart/kart_191_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi191Wheel1[] = "__OTR__yoshi_kart/kart_191_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi191Wheel2[] = "__OTR__yoshi_kart/kart_191_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi191Wheel3[] = "__OTR__yoshi_kart/kart_191_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi192Wheel0[] = "__OTR__yoshi_kart/kart_192_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi192Wheel1[] = "__OTR__yoshi_kart/kart_192_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi192Wheel2[] = "__OTR__yoshi_kart/kart_192_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi192Wheel3[] = "__OTR__yoshi_kart/kart_192_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi193Wheel0[] = "__OTR__yoshi_kart/kart_193_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi193Wheel1[] = "__OTR__yoshi_kart/kart_193_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi193Wheel2[] = "__OTR__yoshi_kart/kart_193_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi193Wheel3[] = "__OTR__yoshi_kart/kart_193_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi194Wheel0[] = "__OTR__yoshi_kart/kart_194_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi194Wheel1[] = "__OTR__yoshi_kart/kart_194_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi194Wheel2[] = "__OTR__yoshi_kart/kart_194_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi194Wheel3[] = "__OTR__yoshi_kart/kart_194_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi195Wheel0[] = "__OTR__yoshi_kart/kart_195_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi195Wheel1[] = "__OTR__yoshi_kart/kart_195_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi195Wheel2[] = "__OTR__yoshi_kart/kart_195_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi195Wheel3[] = "__OTR__yoshi_kart/kart_195_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi196Wheel0[] = "__OTR__yoshi_kart/kart_196_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi196Wheel1[] = "__OTR__yoshi_kart/kart_196_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi196Wheel2[] = "__OTR__yoshi_kart/kart_196_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi196Wheel3[] = "__OTR__yoshi_kart/kart_196_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi197Wheel0[] = "__OTR__yoshi_kart/kart_197_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi197Wheel1[] = "__OTR__yoshi_kart/kart_197_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi197Wheel2[] = "__OTR__yoshi_kart/kart_197_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi197Wheel3[] = "__OTR__yoshi_kart/kart_197_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi198Wheel0[] = "__OTR__yoshi_kart/kart_198_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi198Wheel1[] = "__OTR__yoshi_kart/kart_198_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi198Wheel2[] = "__OTR__yoshi_kart/kart_198_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi198Wheel3[] = "__OTR__yoshi_kart/kart_198_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi199Wheel0[] = "__OTR__yoshi_kart/kart_199_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi199Wheel1[] = "__OTR__yoshi_kart/kart_199_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi199Wheel2[] = "__OTR__yoshi_kart/kart_199_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi199Wheel3[] = "__OTR__yoshi_kart/kart_199_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi200Wheel0[] = "__OTR__yoshi_kart/kart_200_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi200Wheel1[] = "__OTR__yoshi_kart/kart_200_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi200Wheel2[] = "__OTR__yoshi_kart/kart_200_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi200Wheel3[] = "__OTR__yoshi_kart/kart_200_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi201Wheel0[] = "__OTR__yoshi_kart/kart_201_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi201Wheel1[] = "__OTR__yoshi_kart/kart_201_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi201Wheel2[] = "__OTR__yoshi_kart/kart_201_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi201Wheel3[] = "__OTR__yoshi_kart/kart_201_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi202Wheel0[] = "__OTR__yoshi_kart/kart_202_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi202Wheel1[] = "__OTR__yoshi_kart/kart_202_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi202Wheel2[] = "__OTR__yoshi_kart/kart_202_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi202Wheel3[] = "__OTR__yoshi_kart/kart_202_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi203Wheel0[] = "__OTR__yoshi_kart/kart_203_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi203Wheel1[] = "__OTR__yoshi_kart/kart_203_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi203Wheel2[] = "__OTR__yoshi_kart/kart_203_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi203Wheel3[] = "__OTR__yoshi_kart/kart_203_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi204Wheel0[] = "__OTR__yoshi_kart/kart_204_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi204Wheel1[] = "__OTR__yoshi_kart/kart_204_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi204Wheel2[] = "__OTR__yoshi_kart/kart_204_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi204Wheel3[] = "__OTR__yoshi_kart/kart_204_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi205Wheel0[] = "__OTR__yoshi_kart/kart_205_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi205Wheel1[] = "__OTR__yoshi_kart/kart_205_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi205Wheel2[] = "__OTR__yoshi_kart/kart_205_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi205Wheel3[] = "__OTR__yoshi_kart/kart_205_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi206Wheel0[] = "__OTR__yoshi_kart/kart_206_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi206Wheel1[] = "__OTR__yoshi_kart/kart_206_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi206Wheel2[] = "__OTR__yoshi_kart/kart_206_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi206Wheel3[] = "__OTR__yoshi_kart/kart_206_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi207Wheel0[] = "__OTR__yoshi_kart/kart_207_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi207Wheel1[] = "__OTR__yoshi_kart/kart_207_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi207Wheel2[] = "__OTR__yoshi_kart/kart_207_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi207Wheel3[] = "__OTR__yoshi_kart/kart_207_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi208Wheel0[] = "__OTR__yoshi_kart/kart_208_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi208Wheel1[] = "__OTR__yoshi_kart/kart_208_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi208Wheel2[] = "__OTR__yoshi_kart/kart_208_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi208Wheel3[] = "__OTR__yoshi_kart/kart_208_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi209Wheel0[] = "__OTR__yoshi_kart/kart_209_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi209Wheel1[] = "__OTR__yoshi_kart/kart_209_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi209Wheel2[] = "__OTR__yoshi_kart/kart_209_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi209Wheel3[] = "__OTR__yoshi_kart/kart_209_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi210Wheel0[] = "__OTR__yoshi_kart/kart_210_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi210Wheel1[] = "__OTR__yoshi_kart/kart_210_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi210Wheel2[] = "__OTR__yoshi_kart/kart_210_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi210Wheel3[] = "__OTR__yoshi_kart/kart_210_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi211Wheel0[] = "__OTR__yoshi_kart/kart_211_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi211Wheel1[] = "__OTR__yoshi_kart/kart_211_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi211Wheel2[] = "__OTR__yoshi_kart/kart_211_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi211Wheel3[] = "__OTR__yoshi_kart/kart_211_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi212Wheel0[] = "__OTR__yoshi_kart/kart_212_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi212Wheel1[] = "__OTR__yoshi_kart/kart_212_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi212Wheel2[] = "__OTR__yoshi_kart/kart_212_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi212Wheel3[] = "__OTR__yoshi_kart/kart_212_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi213Wheel0[] = "__OTR__yoshi_kart/kart_213_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi213Wheel1[] = "__OTR__yoshi_kart/kart_213_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi213Wheel2[] = "__OTR__yoshi_kart/kart_213_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi213Wheel3[] = "__OTR__yoshi_kart/kart_213_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi214Wheel0[] = "__OTR__yoshi_kart/kart_214_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi214Wheel1[] = "__OTR__yoshi_kart/kart_214_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi214Wheel2[] = "__OTR__yoshi_kart/kart_214_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi214Wheel3[] = "__OTR__yoshi_kart/kart_214_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi215Wheel0[] = "__OTR__yoshi_kart/kart_215_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi215Wheel1[] = "__OTR__yoshi_kart/kart_215_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi215Wheel2[] = "__OTR__yoshi_kart/kart_215_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi215Wheel3[] = "__OTR__yoshi_kart/kart_215_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi216Wheel0[] = "__OTR__yoshi_kart/kart_216_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi216Wheel1[] = "__OTR__yoshi_kart/kart_216_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi216Wheel2[] = "__OTR__yoshi_kart/kart_216_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi216Wheel3[] = "__OTR__yoshi_kart/kart_216_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi217Wheel0[] = "__OTR__yoshi_kart/kart_217_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi217Wheel1[] = "__OTR__yoshi_kart/kart_217_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi217Wheel2[] = "__OTR__yoshi_kart/kart_217_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi217Wheel3[] = "__OTR__yoshi_kart/kart_217_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi218Wheel0[] = "__OTR__yoshi_kart/kart_218_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi218Wheel1[] = "__OTR__yoshi_kart/kart_218_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi218Wheel2[] = "__OTR__yoshi_kart/kart_218_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi218Wheel3[] = "__OTR__yoshi_kart/kart_218_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi219Wheel0[] = "__OTR__yoshi_kart/kart_219_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi219Wheel1[] = "__OTR__yoshi_kart/kart_219_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi219Wheel2[] = "__OTR__yoshi_kart/kart_219_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi219Wheel3[] = "__OTR__yoshi_kart/kart_219_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi220Wheel0[] = "__OTR__yoshi_kart/kart_220_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi220Wheel1[] = "__OTR__yoshi_kart/kart_220_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi220Wheel2[] = "__OTR__yoshi_kart/kart_220_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi220Wheel3[] = "__OTR__yoshi_kart/kart_220_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi221Wheel0[] = "__OTR__yoshi_kart/kart_221_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi221Wheel1[] = "__OTR__yoshi_kart/kart_221_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi221Wheel2[] = "__OTR__yoshi_kart/kart_221_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi221Wheel3[] = "__OTR__yoshi_kart/kart_221_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi222Wheel0[] = "__OTR__yoshi_kart/kart_222_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi222Wheel1[] = "__OTR__yoshi_kart/kart_222_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi222Wheel2[] = "__OTR__yoshi_kart/kart_222_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi222Wheel3[] = "__OTR__yoshi_kart/kart_222_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi223Wheel0[] = "__OTR__yoshi_kart/kart_223_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi223Wheel1[] = "__OTR__yoshi_kart/kart_223_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi223Wheel2[] = "__OTR__yoshi_kart/kart_223_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi223Wheel3[] = "__OTR__yoshi_kart/kart_223_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi224Wheel0[] = "__OTR__yoshi_kart/kart_224_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi224Wheel1[] = "__OTR__yoshi_kart/kart_224_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi224Wheel2[] = "__OTR__yoshi_kart/kart_224_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi224Wheel3[] = "__OTR__yoshi_kart/kart_224_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi225Wheel0[] = "__OTR__yoshi_kart/kart_225_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi225Wheel1[] = "__OTR__yoshi_kart/kart_225_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi225Wheel2[] = "__OTR__yoshi_kart/kart_225_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi225Wheel3[] = "__OTR__yoshi_kart/kart_225_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi226Wheel0[] = "__OTR__yoshi_kart/kart_226_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi226Wheel1[] = "__OTR__yoshi_kart/kart_226_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi226Wheel2[] = "__OTR__yoshi_kart/kart_226_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi226Wheel3[] = "__OTR__yoshi_kart/kart_226_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi227Wheel0[] = "__OTR__yoshi_kart/kart_227_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi227Wheel1[] = "__OTR__yoshi_kart/kart_227_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi227Wheel2[] = "__OTR__yoshi_kart/kart_227_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi227Wheel3[] = "__OTR__yoshi_kart/kart_227_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi228Wheel0[] = "__OTR__yoshi_kart/kart_228_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi228Wheel1[] = "__OTR__yoshi_kart/kart_228_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi228Wheel2[] = "__OTR__yoshi_kart/kart_228_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi228Wheel3[] = "__OTR__yoshi_kart/kart_228_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi229Wheel0[] = "__OTR__yoshi_kart/kart_229_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi229Wheel1[] = "__OTR__yoshi_kart/kart_229_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi229Wheel2[] = "__OTR__yoshi_kart/kart_229_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi229Wheel3[] = "__OTR__yoshi_kart/kart_229_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi230Wheel0[] = "__OTR__yoshi_kart/kart_230_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi230Wheel1[] = "__OTR__yoshi_kart/kart_230_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi230Wheel2[] = "__OTR__yoshi_kart/kart_230_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi230Wheel3[] = "__OTR__yoshi_kart/kart_230_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi231Wheel0[] = "__OTR__yoshi_kart/kart_231_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi231Wheel1[] = "__OTR__yoshi_kart/kart_231_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi231Wheel2[] = "__OTR__yoshi_kart/kart_231_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi231Wheel3[] = "__OTR__yoshi_kart/kart_231_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi232Wheel0[] = "__OTR__yoshi_kart/kart_232_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi232Wheel1[] = "__OTR__yoshi_kart/kart_232_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi232Wheel2[] = "__OTR__yoshi_kart/kart_232_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi232Wheel3[] = "__OTR__yoshi_kart/kart_232_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi233Wheel0[] = "__OTR__yoshi_kart/kart_233_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi233Wheel1[] = "__OTR__yoshi_kart/kart_233_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi233Wheel2[] = "__OTR__yoshi_kart/kart_233_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi233Wheel3[] = "__OTR__yoshi_kart/kart_233_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi234Wheel0[] = "__OTR__yoshi_kart/kart_234_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi234Wheel1[] = "__OTR__yoshi_kart/kart_234_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi234Wheel2[] = "__OTR__yoshi_kart/kart_234_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi234Wheel3[] = "__OTR__yoshi_kart/kart_234_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi235Wheel0[] = "__OTR__yoshi_kart/kart_235_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi235Wheel1[] = "__OTR__yoshi_kart/kart_235_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi235Wheel2[] = "__OTR__yoshi_kart/kart_235_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi235Wheel3[] = "__OTR__yoshi_kart/kart_235_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi236Wheel0[] = "__OTR__yoshi_kart/kart_236_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi236Wheel1[] = "__OTR__yoshi_kart/kart_236_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi236Wheel2[] = "__OTR__yoshi_kart/kart_236_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi236Wheel3[] = "__OTR__yoshi_kart/kart_236_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi237Wheel0[] = "__OTR__yoshi_kart/kart_237_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi237Wheel1[] = "__OTR__yoshi_kart/kart_237_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi237Wheel2[] = "__OTR__yoshi_kart/kart_237_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi237Wheel3[] = "__OTR__yoshi_kart/kart_237_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi238Wheel0[] = "__OTR__yoshi_kart/kart_238_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi238Wheel1[] = "__OTR__yoshi_kart/kart_238_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi238Wheel2[] = "__OTR__yoshi_kart/kart_238_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi238Wheel3[] = "__OTR__yoshi_kart/kart_238_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi239Wheel0[] = "__OTR__yoshi_kart/kart_239_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi239Wheel1[] = "__OTR__yoshi_kart/kart_239_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi239Wheel2[] = "__OTR__yoshi_kart/kart_239_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi239Wheel3[] = "__OTR__yoshi_kart/kart_239_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi240Wheel0[] = "__OTR__yoshi_kart/kart_240_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi240Wheel1[] = "__OTR__yoshi_kart/kart_240_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi240Wheel2[] = "__OTR__yoshi_kart/kart_240_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi240Wheel3[] = "__OTR__yoshi_kart/kart_240_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi241Wheel0[] = "__OTR__yoshi_kart/kart_241_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi241Wheel1[] = "__OTR__yoshi_kart/kart_241_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi241Wheel2[] = "__OTR__yoshi_kart/kart_241_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi241Wheel3[] = "__OTR__yoshi_kart/kart_241_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi242Wheel0[] = "__OTR__yoshi_kart/kart_242_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi242Wheel1[] = "__OTR__yoshi_kart/kart_242_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi242Wheel2[] = "__OTR__yoshi_kart/kart_242_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi242Wheel3[] = "__OTR__yoshi_kart/kart_242_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi243Wheel0[] = "__OTR__yoshi_kart/kart_243_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi243Wheel1[] = "__OTR__yoshi_kart/kart_243_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi243Wheel2[] = "__OTR__yoshi_kart/kart_243_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi243Wheel3[] = "__OTR__yoshi_kart/kart_243_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi244Wheel0[] = "__OTR__yoshi_kart/kart_244_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi244Wheel1[] = "__OTR__yoshi_kart/kart_244_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi244Wheel2[] = "__OTR__yoshi_kart/kart_244_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi244Wheel3[] = "__OTR__yoshi_kart/kart_244_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi245Wheel0[] = "__OTR__yoshi_kart/kart_245_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi245Wheel1[] = "__OTR__yoshi_kart/kart_245_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi245Wheel2[] = "__OTR__yoshi_kart/kart_245_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi245Wheel3[] = "__OTR__yoshi_kart/kart_245_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi246Wheel0[] = "__OTR__yoshi_kart/kart_246_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi246Wheel1[] = "__OTR__yoshi_kart/kart_246_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi246Wheel2[] = "__OTR__yoshi_kart/kart_246_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi246Wheel3[] = "__OTR__yoshi_kart/kart_246_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi247Wheel0[] = "__OTR__yoshi_kart/kart_247_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi247Wheel1[] = "__OTR__yoshi_kart/kart_247_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi247Wheel2[] = "__OTR__yoshi_kart/kart_247_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi247Wheel3[] = "__OTR__yoshi_kart/kart_247_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi248Wheel0[] = "__OTR__yoshi_kart/kart_248_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi248Wheel1[] = "__OTR__yoshi_kart/kart_248_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi248Wheel2[] = "__OTR__yoshi_kart/kart_248_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi248Wheel3[] = "__OTR__yoshi_kart/kart_248_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi249Wheel0[] = "__OTR__yoshi_kart/kart_249_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi249Wheel1[] = "__OTR__yoshi_kart/kart_249_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi249Wheel2[] = "__OTR__yoshi_kart/kart_249_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi249Wheel3[] = "__OTR__yoshi_kart/kart_249_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi250Wheel0[] = "__OTR__yoshi_kart/kart_250_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi250Wheel1[] = "__OTR__yoshi_kart/kart_250_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi250Wheel2[] = "__OTR__yoshi_kart/kart_250_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi250Wheel3[] = "__OTR__yoshi_kart/kart_250_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi251Wheel0[] = "__OTR__yoshi_kart/kart_251_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi251Wheel1[] = "__OTR__yoshi_kart/kart_251_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi251Wheel2[] = "__OTR__yoshi_kart/kart_251_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi251Wheel3[] = "__OTR__yoshi_kart/kart_251_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi252Wheel0[] = "__OTR__yoshi_kart/kart_252_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi252Wheel1[] = "__OTR__yoshi_kart/kart_252_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi252Wheel2[] = "__OTR__yoshi_kart/kart_252_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi252Wheel3[] = "__OTR__yoshi_kart/kart_252_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi253Wheel0[] = "__OTR__yoshi_kart/kart_253_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi253Wheel1[] = "__OTR__yoshi_kart/kart_253_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi253Wheel2[] = "__OTR__yoshi_kart/kart_253_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi253Wheel3[] = "__OTR__yoshi_kart/kart_253_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi254Wheel0[] = "__OTR__yoshi_kart/kart_254_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi254Wheel1[] = "__OTR__yoshi_kart/kart_254_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi254Wheel2[] = "__OTR__yoshi_kart/kart_254_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi254Wheel3[] = "__OTR__yoshi_kart/kart_254_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi255Wheel0[] = "__OTR__yoshi_kart/kart_255_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi255Wheel1[] = "__OTR__yoshi_kart/kart_255_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi255Wheel2[] = "__OTR__yoshi_kart/kart_255_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi255Wheel3[] = "__OTR__yoshi_kart/kart_255_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi256Wheel0[] = "__OTR__yoshi_kart/kart_256_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi256Wheel1[] = "__OTR__yoshi_kart/kart_256_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi256Wheel2[] = "__OTR__yoshi_kart/kart_256_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi256Wheel3[] = "__OTR__yoshi_kart/kart_256_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi257Wheel0[] = "__OTR__yoshi_kart/kart_257_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi257Wheel1[] = "__OTR__yoshi_kart/kart_257_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi257Wheel2[] = "__OTR__yoshi_kart/kart_257_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi257Wheel3[] = "__OTR__yoshi_kart/kart_257_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi258Wheel0[] = "__OTR__yoshi_kart/kart_258_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi258Wheel1[] = "__OTR__yoshi_kart/kart_258_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi258Wheel2[] = "__OTR__yoshi_kart/kart_258_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi258Wheel3[] = "__OTR__yoshi_kart/kart_258_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi259Wheel0[] = "__OTR__yoshi_kart/kart_259_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi259Wheel1[] = "__OTR__yoshi_kart/kart_259_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi259Wheel2[] = "__OTR__yoshi_kart/kart_259_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi259Wheel3[] = "__OTR__yoshi_kart/kart_259_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi260Wheel0[] = "__OTR__yoshi_kart/kart_260_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi260Wheel1[] = "__OTR__yoshi_kart/kart_260_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi260Wheel2[] = "__OTR__yoshi_kart/kart_260_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi260Wheel3[] = "__OTR__yoshi_kart/kart_260_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi261Wheel0[] = "__OTR__yoshi_kart/kart_261_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi261Wheel1[] = "__OTR__yoshi_kart/kart_261_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi261Wheel2[] = "__OTR__yoshi_kart/kart_261_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi261Wheel3[] = "__OTR__yoshi_kart/kart_261_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi262Wheel0[] = "__OTR__yoshi_kart/kart_262_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi262Wheel1[] = "__OTR__yoshi_kart/kart_262_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi262Wheel2[] = "__OTR__yoshi_kart/kart_262_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi262Wheel3[] = "__OTR__yoshi_kart/kart_262_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi263Wheel0[] = "__OTR__yoshi_kart/kart_263_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi263Wheel1[] = "__OTR__yoshi_kart/kart_263_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi263Wheel2[] = "__OTR__yoshi_kart/kart_263_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi263Wheel3[] = "__OTR__yoshi_kart/kart_263_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi264Wheel0[] = "__OTR__yoshi_kart/kart_264_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi264Wheel1[] = "__OTR__yoshi_kart/kart_264_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi264Wheel2[] = "__OTR__yoshi_kart/kart_264_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi264Wheel3[] = "__OTR__yoshi_kart/kart_264_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi265Wheel0[] = "__OTR__yoshi_kart/kart_265_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi265Wheel1[] = "__OTR__yoshi_kart/kart_265_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi265Wheel2[] = "__OTR__yoshi_kart/kart_265_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi265Wheel3[] = "__OTR__yoshi_kart/kart_265_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi266Wheel0[] = "__OTR__yoshi_kart/kart_266_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi266Wheel1[] = "__OTR__yoshi_kart/kart_266_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi266Wheel2[] = "__OTR__yoshi_kart/kart_266_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi266Wheel3[] = "__OTR__yoshi_kart/kart_266_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi267Wheel0[] = "__OTR__yoshi_kart/kart_267_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi267Wheel1[] = "__OTR__yoshi_kart/kart_267_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi267Wheel2[] = "__OTR__yoshi_kart/kart_267_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi267Wheel3[] = "__OTR__yoshi_kart/kart_267_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi268Wheel0[] = "__OTR__yoshi_kart/kart_268_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi268Wheel1[] = "__OTR__yoshi_kart/kart_268_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi268Wheel2[] = "__OTR__yoshi_kart/kart_268_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi268Wheel3[] = "__OTR__yoshi_kart/kart_268_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi269Wheel0[] = "__OTR__yoshi_kart/kart_269_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi269Wheel1[] = "__OTR__yoshi_kart/kart_269_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi269Wheel2[] = "__OTR__yoshi_kart/kart_269_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi269Wheel3[] = "__OTR__yoshi_kart/kart_269_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi270Wheel0[] = "__OTR__yoshi_kart/kart_270_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi270Wheel1[] = "__OTR__yoshi_kart/kart_270_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi270Wheel2[] = "__OTR__yoshi_kart/kart_270_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi270Wheel3[] = "__OTR__yoshi_kart/kart_270_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi271Wheel0[] = "__OTR__yoshi_kart/kart_271_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi271Wheel1[] = "__OTR__yoshi_kart/kart_271_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi271Wheel2[] = "__OTR__yoshi_kart/kart_271_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi271Wheel3[] = "__OTR__yoshi_kart/kart_271_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi272Wheel0[] = "__OTR__yoshi_kart/kart_272_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi272Wheel1[] = "__OTR__yoshi_kart/kart_272_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi272Wheel2[] = "__OTR__yoshi_kart/kart_272_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi272Wheel3[] = "__OTR__yoshi_kart/kart_272_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi273Wheel0[] = "__OTR__yoshi_kart/kart_273_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi273Wheel1[] = "__OTR__yoshi_kart/kart_273_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi273Wheel2[] = "__OTR__yoshi_kart/kart_273_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi273Wheel3[] = "__OTR__yoshi_kart/kart_273_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi274Wheel0[] = "__OTR__yoshi_kart/kart_274_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi274Wheel1[] = "__OTR__yoshi_kart/kart_274_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi274Wheel2[] = "__OTR__yoshi_kart/kart_274_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi274Wheel3[] = "__OTR__yoshi_kart/kart_274_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi275Wheel0[] = "__OTR__yoshi_kart/kart_275_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi275Wheel1[] = "__OTR__yoshi_kart/kart_275_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi275Wheel2[] = "__OTR__yoshi_kart/kart_275_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi275Wheel3[] = "__OTR__yoshi_kart/kart_275_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi276Wheel0[] = "__OTR__yoshi_kart/kart_276_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi276Wheel1[] = "__OTR__yoshi_kart/kart_276_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi276Wheel2[] = "__OTR__yoshi_kart/kart_276_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi276Wheel3[] = "__OTR__yoshi_kart/kart_276_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi277Wheel0[] = "__OTR__yoshi_kart/kart_277_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi277Wheel1[] = "__OTR__yoshi_kart/kart_277_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi277Wheel2[] = "__OTR__yoshi_kart/kart_277_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi277Wheel3[] = "__OTR__yoshi_kart/kart_277_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi278Wheel0[] = "__OTR__yoshi_kart/kart_278_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi278Wheel1[] = "__OTR__yoshi_kart/kart_278_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi278Wheel2[] = "__OTR__yoshi_kart/kart_278_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi278Wheel3[] = "__OTR__yoshi_kart/kart_278_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi279Wheel0[] = "__OTR__yoshi_kart/kart_279_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi279Wheel1[] = "__OTR__yoshi_kart/kart_279_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi279Wheel2[] = "__OTR__yoshi_kart/kart_279_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi279Wheel3[] = "__OTR__yoshi_kart/kart_279_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi280Wheel0[] = "__OTR__yoshi_kart/kart_280_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi280Wheel1[] = "__OTR__yoshi_kart/kart_280_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi280Wheel2[] = "__OTR__yoshi_kart/kart_280_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi280Wheel3[] = "__OTR__yoshi_kart/kart_280_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi281Wheel0[] = "__OTR__yoshi_kart/kart_281_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi281Wheel1[] = "__OTR__yoshi_kart/kart_281_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi281Wheel2[] = "__OTR__yoshi_kart/kart_281_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi281Wheel3[] = "__OTR__yoshi_kart/kart_281_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi282Wheel0[] = "__OTR__yoshi_kart/kart_282_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi282Wheel1[] = "__OTR__yoshi_kart/kart_282_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi282Wheel2[] = "__OTR__yoshi_kart/kart_282_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi282Wheel3[] = "__OTR__yoshi_kart/kart_282_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi283Wheel0[] = "__OTR__yoshi_kart/kart_283_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi283Wheel1[] = "__OTR__yoshi_kart/kart_283_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi283Wheel2[] = "__OTR__yoshi_kart/kart_283_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi283Wheel3[] = "__OTR__yoshi_kart/kart_283_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi284Wheel0[] = "__OTR__yoshi_kart/kart_284_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi284Wheel1[] = "__OTR__yoshi_kart/kart_284_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi284Wheel2[] = "__OTR__yoshi_kart/kart_284_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi284Wheel3[] = "__OTR__yoshi_kart/kart_284_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi285Wheel0[] = "__OTR__yoshi_kart/kart_285_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi285Wheel1[] = "__OTR__yoshi_kart/kart_285_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi285Wheel2[] = "__OTR__yoshi_kart/kart_285_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi285Wheel3[] = "__OTR__yoshi_kart/kart_285_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi286Wheel0[] = "__OTR__yoshi_kart/kart_286_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi286Wheel1[] = "__OTR__yoshi_kart/kart_286_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi286Wheel2[] = "__OTR__yoshi_kart/kart_286_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi286Wheel3[] = "__OTR__yoshi_kart/kart_286_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi287Wheel0[] = "__OTR__yoshi_kart/kart_287_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi287Wheel1[] = "__OTR__yoshi_kart/kart_287_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi287Wheel2[] = "__OTR__yoshi_kart/kart_287_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi287Wheel3[] = "__OTR__yoshi_kart/kart_287_wheel_3"; - -static const ALIGN_ASSET(2) char gKartYoshi288Wheel0[] = "__OTR__yoshi_kart/kart_288_wheel_0"; - -static const ALIGN_ASSET(2) char gKartYoshi288Wheel1[] = "__OTR__yoshi_kart/kart_288_wheel_1"; - -static const ALIGN_ASSET(2) char gKartYoshi288Wheel2[] = "__OTR__yoshi_kart/kart_288_wheel_2"; - -static const ALIGN_ASSET(2) char gKartYoshi288Wheel3[] = "__OTR__yoshi_kart/kart_288_wheel_3"; - -static const char* yoshi_kart_wheels[] = { - gKartYoshi000Wheel0, - gKartYoshi000Wheel1, - gKartYoshi000Wheel2, - gKartYoshi000Wheel3, - gKartYoshi001Wheel0, - gKartYoshi001Wheel1, - gKartYoshi001Wheel2, - gKartYoshi001Wheel3, - gKartYoshi002Wheel0, - gKartYoshi002Wheel1, - gKartYoshi002Wheel2, - gKartYoshi002Wheel3, - gKartYoshi003Wheel0, - gKartYoshi003Wheel1, - gKartYoshi003Wheel2, - gKartYoshi003Wheel3, - gKartYoshi004Wheel0, - gKartYoshi004Wheel1, - gKartYoshi004Wheel2, - gKartYoshi004Wheel3, - gKartYoshi005Wheel0, - gKartYoshi005Wheel1, - gKartYoshi005Wheel2, - gKartYoshi005Wheel3, - gKartYoshi006Wheel0, - gKartYoshi006Wheel1, - gKartYoshi006Wheel2, - gKartYoshi006Wheel3, - gKartYoshi007Wheel0, - gKartYoshi007Wheel1, - gKartYoshi007Wheel2, - gKartYoshi007Wheel3, - gKartYoshi008Wheel0, - gKartYoshi008Wheel1, - gKartYoshi008Wheel2, - gKartYoshi008Wheel3, - gKartYoshi009Wheel0, - gKartYoshi009Wheel1, - gKartYoshi009Wheel2, - gKartYoshi009Wheel3, - gKartYoshi010Wheel0, - gKartYoshi010Wheel1, - gKartYoshi010Wheel2, - gKartYoshi010Wheel3, - gKartYoshi011Wheel0, - gKartYoshi011Wheel1, - gKartYoshi011Wheel2, - gKartYoshi011Wheel3, - gKartYoshi012Wheel0, - gKartYoshi012Wheel1, - gKartYoshi012Wheel2, - gKartYoshi012Wheel3, - gKartYoshi013Wheel0, - gKartYoshi013Wheel1, - gKartYoshi013Wheel2, - gKartYoshi013Wheel3, - gKartYoshi014Wheel0, - gKartYoshi014Wheel1, - gKartYoshi014Wheel2, - gKartYoshi014Wheel3, - gKartYoshi015Wheel0, - gKartYoshi015Wheel1, - gKartYoshi015Wheel2, - gKartYoshi015Wheel3, - gKartYoshi016Wheel0, - gKartYoshi016Wheel1, - gKartYoshi016Wheel2, - gKartYoshi016Wheel3, - gKartYoshi017Wheel0, - gKartYoshi017Wheel1, - gKartYoshi017Wheel2, - gKartYoshi017Wheel3, - gKartYoshi018Wheel0, - gKartYoshi018Wheel1, - gKartYoshi018Wheel2, - gKartYoshi018Wheel3, - gKartYoshi019Wheel0, - gKartYoshi019Wheel1, - gKartYoshi019Wheel2, - gKartYoshi019Wheel3, - gKartYoshi020Wheel0, - gKartYoshi020Wheel1, - gKartYoshi020Wheel2, - gKartYoshi020Wheel3, - gKartYoshi021Wheel0, - gKartYoshi021Wheel1, - gKartYoshi021Wheel2, - gKartYoshi021Wheel3, - gKartYoshi022Wheel0, - gKartYoshi022Wheel1, - gKartYoshi022Wheel2, - gKartYoshi022Wheel3, - gKartYoshi023Wheel0, - gKartYoshi023Wheel1, - gKartYoshi023Wheel2, - gKartYoshi023Wheel3, - gKartYoshi024Wheel0, - gKartYoshi024Wheel1, - gKartYoshi024Wheel2, - gKartYoshi024Wheel3, - gKartYoshi025Wheel0, - gKartYoshi025Wheel1, - gKartYoshi025Wheel2, - gKartYoshi025Wheel3, - gKartYoshi026Wheel0, - gKartYoshi026Wheel1, - gKartYoshi026Wheel2, - gKartYoshi026Wheel3, - gKartYoshi027Wheel0, - gKartYoshi027Wheel1, - gKartYoshi027Wheel2, - gKartYoshi027Wheel3, - gKartYoshi028Wheel0, - gKartYoshi028Wheel1, - gKartYoshi028Wheel2, - gKartYoshi028Wheel3, - gKartYoshi029Wheel0, - gKartYoshi029Wheel1, - gKartYoshi029Wheel2, - gKartYoshi029Wheel3, - gKartYoshi030Wheel0, - gKartYoshi030Wheel1, - gKartYoshi030Wheel2, - gKartYoshi030Wheel3, - gKartYoshi031Wheel0, - gKartYoshi031Wheel1, - gKartYoshi031Wheel2, - gKartYoshi031Wheel3, - gKartYoshi032Wheel0, - gKartYoshi032Wheel1, - gKartYoshi032Wheel2, - gKartYoshi032Wheel3, - gKartYoshi033Wheel0, - gKartYoshi033Wheel1, - gKartYoshi033Wheel2, - gKartYoshi033Wheel3, - gKartYoshi034Wheel0, - gKartYoshi034Wheel1, - gKartYoshi034Wheel2, - gKartYoshi034Wheel3, - gKartYoshi035Wheel0, - gKartYoshi035Wheel1, - gKartYoshi035Wheel2, - gKartYoshi035Wheel3, - gKartYoshi036Wheel0, - gKartYoshi036Wheel1, - gKartYoshi036Wheel2, - gKartYoshi036Wheel3, - gKartYoshi037Wheel0, - gKartYoshi037Wheel1, - gKartYoshi037Wheel2, - gKartYoshi037Wheel3, - gKartYoshi038Wheel0, - gKartYoshi038Wheel1, - gKartYoshi038Wheel2, - gKartYoshi038Wheel3, - gKartYoshi039Wheel0, - gKartYoshi039Wheel1, - gKartYoshi039Wheel2, - gKartYoshi039Wheel3, - gKartYoshi040Wheel0, - gKartYoshi040Wheel1, - gKartYoshi040Wheel2, - gKartYoshi040Wheel3, - gKartYoshi041Wheel0, - gKartYoshi041Wheel1, - gKartYoshi041Wheel2, - gKartYoshi041Wheel3, - gKartYoshi042Wheel0, - gKartYoshi042Wheel1, - gKartYoshi042Wheel2, - gKartYoshi042Wheel3, - gKartYoshi043Wheel0, - gKartYoshi043Wheel1, - gKartYoshi043Wheel2, - gKartYoshi043Wheel3, - gKartYoshi044Wheel0, - gKartYoshi044Wheel1, - gKartYoshi044Wheel2, - gKartYoshi044Wheel3, - gKartYoshi045Wheel0, - gKartYoshi045Wheel1, - gKartYoshi045Wheel2, - gKartYoshi045Wheel3, - gKartYoshi046Wheel0, - gKartYoshi046Wheel1, - gKartYoshi046Wheel2, - gKartYoshi046Wheel3, - gKartYoshi047Wheel0, - gKartYoshi047Wheel1, - gKartYoshi047Wheel2, - gKartYoshi047Wheel3, - gKartYoshi048Wheel0, - gKartYoshi048Wheel1, - gKartYoshi048Wheel2, - gKartYoshi048Wheel3, - gKartYoshi049Wheel0, - gKartYoshi049Wheel1, - gKartYoshi049Wheel2, - gKartYoshi049Wheel3, - gKartYoshi050Wheel0, - gKartYoshi050Wheel1, - gKartYoshi050Wheel2, - gKartYoshi050Wheel3, - gKartYoshi051Wheel0, - gKartYoshi051Wheel1, - gKartYoshi051Wheel2, - gKartYoshi051Wheel3, - gKartYoshi052Wheel0, - gKartYoshi052Wheel1, - gKartYoshi052Wheel2, - gKartYoshi052Wheel3, - gKartYoshi053Wheel0, - gKartYoshi053Wheel1, - gKartYoshi053Wheel2, - gKartYoshi053Wheel3, - gKartYoshi054Wheel0, - gKartYoshi054Wheel1, - gKartYoshi054Wheel2, - gKartYoshi054Wheel3, - gKartYoshi055Wheel0, - gKartYoshi055Wheel1, - gKartYoshi055Wheel2, - gKartYoshi055Wheel3, - gKartYoshi056Wheel0, - gKartYoshi056Wheel1, - gKartYoshi056Wheel2, - gKartYoshi056Wheel3, - gKartYoshi057Wheel0, - gKartYoshi057Wheel1, - gKartYoshi057Wheel2, - gKartYoshi057Wheel3, - gKartYoshi058Wheel0, - gKartYoshi058Wheel1, - gKartYoshi058Wheel2, - gKartYoshi058Wheel3, - gKartYoshi059Wheel0, - gKartYoshi059Wheel1, - gKartYoshi059Wheel2, - gKartYoshi059Wheel3, - gKartYoshi060Wheel0, - gKartYoshi060Wheel1, - gKartYoshi060Wheel2, - gKartYoshi060Wheel3, - gKartYoshi061Wheel0, - gKartYoshi061Wheel1, - gKartYoshi061Wheel2, - gKartYoshi061Wheel3, - gKartYoshi062Wheel0, - gKartYoshi062Wheel1, - gKartYoshi062Wheel2, - gKartYoshi062Wheel3, - gKartYoshi063Wheel0, - gKartYoshi063Wheel1, - gKartYoshi063Wheel2, - gKartYoshi063Wheel3, - gKartYoshi064Wheel0, - gKartYoshi064Wheel1, - gKartYoshi064Wheel2, - gKartYoshi064Wheel3, - gKartYoshi065Wheel0, - gKartYoshi065Wheel1, - gKartYoshi065Wheel2, - gKartYoshi065Wheel3, - gKartYoshi066Wheel0, - gKartYoshi066Wheel1, - gKartYoshi066Wheel2, - gKartYoshi066Wheel3, - gKartYoshi067Wheel0, - gKartYoshi067Wheel1, - gKartYoshi067Wheel2, - gKartYoshi067Wheel3, - gKartYoshi068Wheel0, - gKartYoshi068Wheel1, - gKartYoshi068Wheel2, - gKartYoshi068Wheel3, - gKartYoshi069Wheel0, - gKartYoshi069Wheel1, - gKartYoshi069Wheel2, - gKartYoshi069Wheel3, - gKartYoshi070Wheel0, - gKartYoshi070Wheel1, - gKartYoshi070Wheel2, - gKartYoshi070Wheel3, - gKartYoshi071Wheel0, - gKartYoshi071Wheel1, - gKartYoshi071Wheel2, - gKartYoshi071Wheel3, - gKartYoshi072Wheel0, - gKartYoshi072Wheel1, - gKartYoshi072Wheel2, - gKartYoshi072Wheel3, - gKartYoshi073Wheel0, - gKartYoshi073Wheel1, - gKartYoshi073Wheel2, - gKartYoshi073Wheel3, - gKartYoshi074Wheel0, - gKartYoshi074Wheel1, - gKartYoshi074Wheel2, - gKartYoshi074Wheel3, - gKartYoshi075Wheel0, - gKartYoshi075Wheel1, - gKartYoshi075Wheel2, - gKartYoshi075Wheel3, - gKartYoshi076Wheel0, - gKartYoshi076Wheel1, - gKartYoshi076Wheel2, - gKartYoshi076Wheel3, - gKartYoshi077Wheel0, - gKartYoshi077Wheel1, - gKartYoshi077Wheel2, - gKartYoshi077Wheel3, - gKartYoshi078Wheel0, - gKartYoshi078Wheel1, - gKartYoshi078Wheel2, - gKartYoshi078Wheel3, - gKartYoshi079Wheel0, - gKartYoshi079Wheel1, - gKartYoshi079Wheel2, - gKartYoshi079Wheel3, - gKartYoshi080Wheel0, - gKartYoshi080Wheel1, - gKartYoshi080Wheel2, - gKartYoshi080Wheel3, - gKartYoshi081Wheel0, - gKartYoshi081Wheel1, - gKartYoshi081Wheel2, - gKartYoshi081Wheel3, - gKartYoshi082Wheel0, - gKartYoshi082Wheel1, - gKartYoshi082Wheel2, - gKartYoshi082Wheel3, - gKartYoshi083Wheel0, - gKartYoshi083Wheel1, - gKartYoshi083Wheel2, - gKartYoshi083Wheel3, - gKartYoshi084Wheel0, - gKartYoshi084Wheel1, - gKartYoshi084Wheel2, - gKartYoshi084Wheel3, - gKartYoshi085Wheel0, - gKartYoshi085Wheel1, - gKartYoshi085Wheel2, - gKartYoshi085Wheel3, - gKartYoshi086Wheel0, - gKartYoshi086Wheel1, - gKartYoshi086Wheel2, - gKartYoshi086Wheel3, - gKartYoshi087Wheel0, - gKartYoshi087Wheel1, - gKartYoshi087Wheel2, - gKartYoshi087Wheel3, - gKartYoshi088Wheel0, - gKartYoshi088Wheel1, - gKartYoshi088Wheel2, - gKartYoshi088Wheel3, - gKartYoshi089Wheel0, - gKartYoshi089Wheel1, - gKartYoshi089Wheel2, - gKartYoshi089Wheel3, - gKartYoshi090Wheel0, - gKartYoshi090Wheel1, - gKartYoshi090Wheel2, - gKartYoshi090Wheel3, - gKartYoshi091Wheel0, - gKartYoshi091Wheel1, - gKartYoshi091Wheel2, - gKartYoshi091Wheel3, - gKartYoshi092Wheel0, - gKartYoshi092Wheel1, - gKartYoshi092Wheel2, - gKartYoshi092Wheel3, - gKartYoshi093Wheel0, - gKartYoshi093Wheel1, - gKartYoshi093Wheel2, - gKartYoshi093Wheel3, - gKartYoshi094Wheel0, - gKartYoshi094Wheel1, - gKartYoshi094Wheel2, - gKartYoshi094Wheel3, - gKartYoshi095Wheel0, - gKartYoshi095Wheel1, - gKartYoshi095Wheel2, - gKartYoshi095Wheel3, - gKartYoshi096Wheel0, - gKartYoshi096Wheel1, - gKartYoshi096Wheel2, - gKartYoshi096Wheel3, - gKartYoshi097Wheel0, - gKartYoshi097Wheel1, - gKartYoshi097Wheel2, - gKartYoshi097Wheel3, - gKartYoshi098Wheel0, - gKartYoshi098Wheel1, - gKartYoshi098Wheel2, - gKartYoshi098Wheel3, - gKartYoshi099Wheel0, - gKartYoshi099Wheel1, - gKartYoshi099Wheel2, - gKartYoshi099Wheel3, - gKartYoshi100Wheel0, - gKartYoshi100Wheel1, - gKartYoshi100Wheel2, - gKartYoshi100Wheel3, - gKartYoshi101Wheel0, - gKartYoshi101Wheel1, - gKartYoshi101Wheel2, - gKartYoshi101Wheel3, - gKartYoshi102Wheel0, - gKartYoshi102Wheel1, - gKartYoshi102Wheel2, - gKartYoshi102Wheel3, - gKartYoshi103Wheel0, - gKartYoshi103Wheel1, - gKartYoshi103Wheel2, - gKartYoshi103Wheel3, - gKartYoshi104Wheel0, - gKartYoshi104Wheel1, - gKartYoshi104Wheel2, - gKartYoshi104Wheel3, - gKartYoshi105Wheel0, - gKartYoshi105Wheel1, - gKartYoshi105Wheel2, - gKartYoshi105Wheel3, - gKartYoshi106Wheel0, - gKartYoshi106Wheel1, - gKartYoshi106Wheel2, - gKartYoshi106Wheel3, - gKartYoshi107Wheel0, - gKartYoshi107Wheel1, - gKartYoshi107Wheel2, - gKartYoshi107Wheel3, - gKartYoshi108Wheel0, - gKartYoshi108Wheel1, - gKartYoshi108Wheel2, - gKartYoshi108Wheel3, - gKartYoshi109Wheel0, - gKartYoshi109Wheel1, - gKartYoshi109Wheel2, - gKartYoshi109Wheel3, - gKartYoshi110Wheel0, - gKartYoshi110Wheel1, - gKartYoshi110Wheel2, - gKartYoshi110Wheel3, - gKartYoshi111Wheel0, - gKartYoshi111Wheel1, - gKartYoshi111Wheel2, - gKartYoshi111Wheel3, - gKartYoshi112Wheel0, - gKartYoshi112Wheel1, - gKartYoshi112Wheel2, - gKartYoshi112Wheel3, - gKartYoshi113Wheel0, - gKartYoshi113Wheel1, - gKartYoshi113Wheel2, - gKartYoshi113Wheel3, - gKartYoshi114Wheel0, - gKartYoshi114Wheel1, - gKartYoshi114Wheel2, - gKartYoshi114Wheel3, - gKartYoshi115Wheel0, - gKartYoshi115Wheel1, - gKartYoshi115Wheel2, - gKartYoshi115Wheel3, - gKartYoshi116Wheel0, - gKartYoshi116Wheel1, - gKartYoshi116Wheel2, - gKartYoshi116Wheel3, - gKartYoshi117Wheel0, - gKartYoshi117Wheel1, - gKartYoshi117Wheel2, - gKartYoshi117Wheel3, - gKartYoshi118Wheel0, - gKartYoshi118Wheel1, - gKartYoshi118Wheel2, - gKartYoshi118Wheel3, - gKartYoshi119Wheel0, - gKartYoshi119Wheel1, - gKartYoshi119Wheel2, - gKartYoshi119Wheel3, - gKartYoshi120Wheel0, - gKartYoshi120Wheel1, - gKartYoshi120Wheel2, - gKartYoshi120Wheel3, - gKartYoshi121Wheel0, - gKartYoshi121Wheel1, - gKartYoshi121Wheel2, - gKartYoshi121Wheel3, - gKartYoshi122Wheel0, - gKartYoshi122Wheel1, - gKartYoshi122Wheel2, - gKartYoshi122Wheel3, - gKartYoshi123Wheel0, - gKartYoshi123Wheel1, - gKartYoshi123Wheel2, - gKartYoshi123Wheel3, - gKartYoshi124Wheel0, - gKartYoshi124Wheel1, - gKartYoshi124Wheel2, - gKartYoshi124Wheel3, - gKartYoshi125Wheel0, - gKartYoshi125Wheel1, - gKartYoshi125Wheel2, - gKartYoshi125Wheel3, - gKartYoshi126Wheel0, - gKartYoshi126Wheel1, - gKartYoshi126Wheel2, - gKartYoshi126Wheel3, - gKartYoshi127Wheel0, - gKartYoshi127Wheel1, - gKartYoshi127Wheel2, - gKartYoshi127Wheel3, - gKartYoshi128Wheel0, - gKartYoshi128Wheel1, - gKartYoshi128Wheel2, - gKartYoshi128Wheel3, - gKartYoshi129Wheel0, - gKartYoshi129Wheel1, - gKartYoshi129Wheel2, - gKartYoshi129Wheel3, - gKartYoshi130Wheel0, - gKartYoshi130Wheel1, - gKartYoshi130Wheel2, - gKartYoshi130Wheel3, - gKartYoshi131Wheel0, - gKartYoshi131Wheel1, - gKartYoshi131Wheel2, - gKartYoshi131Wheel3, - gKartYoshi132Wheel0, - gKartYoshi132Wheel1, - gKartYoshi132Wheel2, - gKartYoshi132Wheel3, - gKartYoshi133Wheel0, - gKartYoshi133Wheel1, - gKartYoshi133Wheel2, - gKartYoshi133Wheel3, - gKartYoshi134Wheel0, - gKartYoshi134Wheel1, - gKartYoshi134Wheel2, - gKartYoshi134Wheel3, - gKartYoshi135Wheel0, - gKartYoshi135Wheel1, - gKartYoshi135Wheel2, - gKartYoshi135Wheel3, - gKartYoshi136Wheel0, - gKartYoshi136Wheel1, - gKartYoshi136Wheel2, - gKartYoshi136Wheel3, - gKartYoshi137Wheel0, - gKartYoshi137Wheel1, - gKartYoshi137Wheel2, - gKartYoshi137Wheel3, - gKartYoshi138Wheel0, - gKartYoshi138Wheel1, - gKartYoshi138Wheel2, - gKartYoshi138Wheel3, - gKartYoshi139Wheel0, - gKartYoshi139Wheel1, - gKartYoshi139Wheel2, - gKartYoshi139Wheel3, - gKartYoshi140Wheel0, - gKartYoshi140Wheel1, - gKartYoshi140Wheel2, - gKartYoshi140Wheel3, - gKartYoshi141Wheel0, - gKartYoshi141Wheel1, - gKartYoshi141Wheel2, - gKartYoshi141Wheel3, - gKartYoshi142Wheel0, - gKartYoshi142Wheel1, - gKartYoshi142Wheel2, - gKartYoshi142Wheel3, - gKartYoshi143Wheel0, - gKartYoshi143Wheel1, - gKartYoshi143Wheel2, - gKartYoshi143Wheel3, - gKartYoshi144Wheel0, - gKartYoshi144Wheel1, - gKartYoshi144Wheel2, - gKartYoshi144Wheel3, - gKartYoshi145Wheel0, - gKartYoshi145Wheel1, - gKartYoshi145Wheel2, - gKartYoshi145Wheel3, - gKartYoshi146Wheel0, - gKartYoshi146Wheel1, - gKartYoshi146Wheel2, - gKartYoshi146Wheel3, - gKartYoshi147Wheel0, - gKartYoshi147Wheel1, - gKartYoshi147Wheel2, - gKartYoshi147Wheel3, - gKartYoshi148Wheel0, - gKartYoshi148Wheel1, - gKartYoshi148Wheel2, - gKartYoshi148Wheel3, - gKartYoshi149Wheel0, - gKartYoshi149Wheel1, - gKartYoshi149Wheel2, - gKartYoshi149Wheel3, - gKartYoshi150Wheel0, - gKartYoshi150Wheel1, - gKartYoshi150Wheel2, - gKartYoshi150Wheel3, - gKartYoshi151Wheel0, - gKartYoshi151Wheel1, - gKartYoshi151Wheel2, - gKartYoshi151Wheel3, - gKartYoshi152Wheel0, - gKartYoshi152Wheel1, - gKartYoshi152Wheel2, - gKartYoshi152Wheel3, - gKartYoshi153Wheel0, - gKartYoshi153Wheel1, - gKartYoshi153Wheel2, - gKartYoshi153Wheel3, - gKartYoshi154Wheel0, - gKartYoshi154Wheel1, - gKartYoshi154Wheel2, - gKartYoshi154Wheel3, - gKartYoshi155Wheel0, - gKartYoshi155Wheel1, - gKartYoshi155Wheel2, - gKartYoshi155Wheel3, - gKartYoshi156Wheel0, - gKartYoshi156Wheel1, - gKartYoshi156Wheel2, - gKartYoshi156Wheel3, - gKartYoshi157Wheel0, - gKartYoshi157Wheel1, - gKartYoshi157Wheel2, - gKartYoshi157Wheel3, - gKartYoshi158Wheel0, - gKartYoshi158Wheel1, - gKartYoshi158Wheel2, - gKartYoshi158Wheel3, - gKartYoshi159Wheel0, - gKartYoshi159Wheel1, - gKartYoshi159Wheel2, - gKartYoshi159Wheel3, - gKartYoshi160Wheel0, - gKartYoshi160Wheel1, - gKartYoshi160Wheel2, - gKartYoshi160Wheel3, - gKartYoshi161Wheel0, - gKartYoshi161Wheel1, - gKartYoshi161Wheel2, - gKartYoshi161Wheel3, - gKartYoshi162Wheel0, - gKartYoshi162Wheel1, - gKartYoshi162Wheel2, - gKartYoshi162Wheel3, - gKartYoshi163Wheel0, - gKartYoshi163Wheel1, - gKartYoshi163Wheel2, - gKartYoshi163Wheel3, - gKartYoshi164Wheel0, - gKartYoshi164Wheel1, - gKartYoshi164Wheel2, - gKartYoshi164Wheel3, - gKartYoshi165Wheel0, - gKartYoshi165Wheel1, - gKartYoshi165Wheel2, - gKartYoshi165Wheel3, - gKartYoshi166Wheel0, - gKartYoshi166Wheel1, - gKartYoshi166Wheel2, - gKartYoshi166Wheel3, - gKartYoshi167Wheel0, - gKartYoshi167Wheel1, - gKartYoshi167Wheel2, - gKartYoshi167Wheel3, - gKartYoshi168Wheel0, - gKartYoshi168Wheel1, - gKartYoshi168Wheel2, - gKartYoshi168Wheel3, - gKartYoshi169Wheel0, - gKartYoshi169Wheel1, - gKartYoshi169Wheel2, - gKartYoshi169Wheel3, - gKartYoshi170Wheel0, - gKartYoshi170Wheel1, - gKartYoshi170Wheel2, - gKartYoshi170Wheel3, - gKartYoshi171Wheel0, - gKartYoshi171Wheel1, - gKartYoshi171Wheel2, - gKartYoshi171Wheel3, - gKartYoshi172Wheel0, - gKartYoshi172Wheel1, - gKartYoshi172Wheel2, - gKartYoshi172Wheel3, - gKartYoshi173Wheel0, - gKartYoshi173Wheel1, - gKartYoshi173Wheel2, - gKartYoshi173Wheel3, - gKartYoshi174Wheel0, - gKartYoshi174Wheel1, - gKartYoshi174Wheel2, - gKartYoshi174Wheel3, - gKartYoshi175Wheel0, - gKartYoshi175Wheel1, - gKartYoshi175Wheel2, - gKartYoshi175Wheel3, - gKartYoshi176Wheel0, - gKartYoshi176Wheel1, - gKartYoshi176Wheel2, - gKartYoshi176Wheel3, - gKartYoshi177Wheel0, - gKartYoshi177Wheel1, - gKartYoshi177Wheel2, - gKartYoshi177Wheel3, - gKartYoshi178Wheel0, - gKartYoshi178Wheel1, - gKartYoshi178Wheel2, - gKartYoshi178Wheel3, - gKartYoshi179Wheel0, - gKartYoshi179Wheel1, - gKartYoshi179Wheel2, - gKartYoshi179Wheel3, - gKartYoshi180Wheel0, - gKartYoshi180Wheel1, - gKartYoshi180Wheel2, - gKartYoshi180Wheel3, - gKartYoshi181Wheel0, - gKartYoshi181Wheel1, - gKartYoshi181Wheel2, - gKartYoshi181Wheel3, - gKartYoshi182Wheel0, - gKartYoshi182Wheel1, - gKartYoshi182Wheel2, - gKartYoshi182Wheel3, - gKartYoshi183Wheel0, - gKartYoshi183Wheel1, - gKartYoshi183Wheel2, - gKartYoshi183Wheel3, - gKartYoshi184Wheel0, - gKartYoshi184Wheel1, - gKartYoshi184Wheel2, - gKartYoshi184Wheel3, - gKartYoshi185Wheel0, - gKartYoshi185Wheel1, - gKartYoshi185Wheel2, - gKartYoshi185Wheel3, - gKartYoshi186Wheel0, - gKartYoshi186Wheel1, - gKartYoshi186Wheel2, - gKartYoshi186Wheel3, - gKartYoshi187Wheel0, - gKartYoshi187Wheel1, - gKartYoshi187Wheel2, - gKartYoshi187Wheel3, - gKartYoshi188Wheel0, - gKartYoshi188Wheel1, - gKartYoshi188Wheel2, - gKartYoshi188Wheel3, - gKartYoshi189Wheel0, - gKartYoshi189Wheel1, - gKartYoshi189Wheel2, - gKartYoshi189Wheel3, - gKartYoshi190Wheel0, - gKartYoshi190Wheel1, - gKartYoshi190Wheel2, - gKartYoshi190Wheel3, - gKartYoshi191Wheel0, - gKartYoshi191Wheel1, - gKartYoshi191Wheel2, - gKartYoshi191Wheel3, - gKartYoshi192Wheel0, - gKartYoshi192Wheel1, - gKartYoshi192Wheel2, - gKartYoshi192Wheel3, - gKartYoshi193Wheel0, - gKartYoshi193Wheel1, - gKartYoshi193Wheel2, - gKartYoshi193Wheel3, - gKartYoshi194Wheel0, - gKartYoshi194Wheel1, - gKartYoshi194Wheel2, - gKartYoshi194Wheel3, - gKartYoshi195Wheel0, - gKartYoshi195Wheel1, - gKartYoshi195Wheel2, - gKartYoshi195Wheel3, - gKartYoshi196Wheel0, - gKartYoshi196Wheel1, - gKartYoshi196Wheel2, - gKartYoshi196Wheel3, - gKartYoshi197Wheel0, - gKartYoshi197Wheel1, - gKartYoshi197Wheel2, - gKartYoshi197Wheel3, - gKartYoshi198Wheel0, - gKartYoshi198Wheel1, - gKartYoshi198Wheel2, - gKartYoshi198Wheel3, - gKartYoshi199Wheel0, - gKartYoshi199Wheel1, - gKartYoshi199Wheel2, - gKartYoshi199Wheel3, - gKartYoshi200Wheel0, - gKartYoshi200Wheel1, - gKartYoshi200Wheel2, - gKartYoshi200Wheel3, - gKartYoshi201Wheel0, - gKartYoshi201Wheel1, - gKartYoshi201Wheel2, - gKartYoshi201Wheel3, - gKartYoshi202Wheel0, - gKartYoshi202Wheel1, - gKartYoshi202Wheel2, - gKartYoshi202Wheel3, - gKartYoshi203Wheel0, - gKartYoshi203Wheel1, - gKartYoshi203Wheel2, - gKartYoshi203Wheel3, - gKartYoshi204Wheel0, - gKartYoshi204Wheel1, - gKartYoshi204Wheel2, - gKartYoshi204Wheel3, - gKartYoshi205Wheel0, - gKartYoshi205Wheel1, - gKartYoshi205Wheel2, - gKartYoshi205Wheel3, - gKartYoshi206Wheel0, - gKartYoshi206Wheel1, - gKartYoshi206Wheel2, - gKartYoshi206Wheel3, - gKartYoshi207Wheel0, - gKartYoshi207Wheel1, - gKartYoshi207Wheel2, - gKartYoshi207Wheel3, - gKartYoshi208Wheel0, - gKartYoshi208Wheel1, - gKartYoshi208Wheel2, - gKartYoshi208Wheel3, - gKartYoshi209Wheel0, - gKartYoshi209Wheel1, - gKartYoshi209Wheel2, - gKartYoshi209Wheel3, - gKartYoshi210Wheel0, - gKartYoshi210Wheel1, - gKartYoshi210Wheel2, - gKartYoshi210Wheel3, - gKartYoshi211Wheel0, - gKartYoshi211Wheel1, - gKartYoshi211Wheel2, - gKartYoshi211Wheel3, - gKartYoshi212Wheel0, - gKartYoshi212Wheel1, - gKartYoshi212Wheel2, - gKartYoshi212Wheel3, - gKartYoshi213Wheel0, - gKartYoshi213Wheel1, - gKartYoshi213Wheel2, - gKartYoshi213Wheel3, - gKartYoshi214Wheel0, - gKartYoshi214Wheel1, - gKartYoshi214Wheel2, - gKartYoshi214Wheel3, - gKartYoshi215Wheel0, - gKartYoshi215Wheel1, - gKartYoshi215Wheel2, - gKartYoshi215Wheel3, - gKartYoshi216Wheel0, - gKartYoshi216Wheel1, - gKartYoshi216Wheel2, - gKartYoshi216Wheel3, - gKartYoshi217Wheel0, - gKartYoshi217Wheel1, - gKartYoshi217Wheel2, - gKartYoshi217Wheel3, - gKartYoshi218Wheel0, - gKartYoshi218Wheel1, - gKartYoshi218Wheel2, - gKartYoshi218Wheel3, - gKartYoshi219Wheel0, - gKartYoshi219Wheel1, - gKartYoshi219Wheel2, - gKartYoshi219Wheel3, - gKartYoshi220Wheel0, - gKartYoshi220Wheel1, - gKartYoshi220Wheel2, - gKartYoshi220Wheel3, - gKartYoshi221Wheel0, - gKartYoshi221Wheel1, - gKartYoshi221Wheel2, - gKartYoshi221Wheel3, - gKartYoshi222Wheel0, - gKartYoshi222Wheel1, - gKartYoshi222Wheel2, - gKartYoshi222Wheel3, - gKartYoshi223Wheel0, - gKartYoshi223Wheel1, - gKartYoshi223Wheel2, - gKartYoshi223Wheel3, - gKartYoshi224Wheel0, - gKartYoshi224Wheel1, - gKartYoshi224Wheel2, - gKartYoshi224Wheel3, - gKartYoshi225Wheel0, - gKartYoshi225Wheel1, - gKartYoshi225Wheel2, - gKartYoshi225Wheel3, - gKartYoshi226Wheel0, - gKartYoshi226Wheel1, - gKartYoshi226Wheel2, - gKartYoshi226Wheel3, - gKartYoshi227Wheel0, - gKartYoshi227Wheel1, - gKartYoshi227Wheel2, - gKartYoshi227Wheel3, - gKartYoshi228Wheel0, - gKartYoshi228Wheel1, - gKartYoshi228Wheel2, - gKartYoshi228Wheel3, - gKartYoshi229Wheel0, - gKartYoshi229Wheel1, - gKartYoshi229Wheel2, - gKartYoshi229Wheel3, - gKartYoshi230Wheel0, - gKartYoshi230Wheel1, - gKartYoshi230Wheel2, - gKartYoshi230Wheel3, - gKartYoshi231Wheel0, - gKartYoshi231Wheel1, - gKartYoshi231Wheel2, - gKartYoshi231Wheel3, - gKartYoshi232Wheel0, - gKartYoshi232Wheel1, - gKartYoshi232Wheel2, - gKartYoshi232Wheel3, - gKartYoshi233Wheel0, - gKartYoshi233Wheel1, - gKartYoshi233Wheel2, - gKartYoshi233Wheel3, - gKartYoshi234Wheel0, - gKartYoshi234Wheel1, - gKartYoshi234Wheel2, - gKartYoshi234Wheel3, - gKartYoshi235Wheel0, - gKartYoshi235Wheel1, - gKartYoshi235Wheel2, - gKartYoshi235Wheel3, - gKartYoshi236Wheel0, - gKartYoshi236Wheel1, - gKartYoshi236Wheel2, - gKartYoshi236Wheel3, - gKartYoshi237Wheel0, - gKartYoshi237Wheel1, - gKartYoshi237Wheel2, - gKartYoshi237Wheel3, - gKartYoshi238Wheel0, - gKartYoshi238Wheel1, - gKartYoshi238Wheel2, - gKartYoshi238Wheel3, - gKartYoshi239Wheel0, - gKartYoshi239Wheel1, - gKartYoshi239Wheel2, - gKartYoshi239Wheel3, - gKartYoshi240Wheel0, - gKartYoshi240Wheel1, - gKartYoshi240Wheel2, - gKartYoshi240Wheel3, - gKartYoshi241Wheel0, - gKartYoshi241Wheel1, - gKartYoshi241Wheel2, - gKartYoshi241Wheel3, - gKartYoshi242Wheel0, - gKartYoshi242Wheel1, - gKartYoshi242Wheel2, - gKartYoshi242Wheel3, - gKartYoshi243Wheel0, - gKartYoshi243Wheel1, - gKartYoshi243Wheel2, - gKartYoshi243Wheel3, - gKartYoshi244Wheel0, - gKartYoshi244Wheel1, - gKartYoshi244Wheel2, - gKartYoshi244Wheel3, - gKartYoshi245Wheel0, - gKartYoshi245Wheel1, - gKartYoshi245Wheel2, - gKartYoshi245Wheel3, - gKartYoshi246Wheel0, - gKartYoshi246Wheel1, - gKartYoshi246Wheel2, - gKartYoshi246Wheel3, - gKartYoshi247Wheel0, - gKartYoshi247Wheel1, - gKartYoshi247Wheel2, - gKartYoshi247Wheel3, - gKartYoshi248Wheel0, - gKartYoshi248Wheel1, - gKartYoshi248Wheel2, - gKartYoshi248Wheel3, - gKartYoshi249Wheel0, - gKartYoshi249Wheel1, - gKartYoshi249Wheel2, - gKartYoshi249Wheel3, - gKartYoshi250Wheel0, - gKartYoshi250Wheel1, - gKartYoshi250Wheel2, - gKartYoshi250Wheel3, - gKartYoshi251Wheel0, - gKartYoshi251Wheel1, - gKartYoshi251Wheel2, - gKartYoshi251Wheel3, - gKartYoshi252Wheel0, - gKartYoshi252Wheel1, - gKartYoshi252Wheel2, - gKartYoshi252Wheel3, - gKartYoshi253Wheel0, - gKartYoshi253Wheel1, - gKartYoshi253Wheel2, - gKartYoshi253Wheel3, - gKartYoshi254Wheel0, - gKartYoshi254Wheel1, - gKartYoshi254Wheel2, - gKartYoshi254Wheel3, - gKartYoshi255Wheel0, - gKartYoshi255Wheel1, - gKartYoshi255Wheel2, - gKartYoshi255Wheel3, - gKartYoshi256Wheel0, - gKartYoshi256Wheel1, - gKartYoshi256Wheel2, - gKartYoshi256Wheel3, - gKartYoshi257Wheel0, - gKartYoshi257Wheel1, - gKartYoshi257Wheel2, - gKartYoshi257Wheel3, - gKartYoshi258Wheel0, - gKartYoshi258Wheel1, - gKartYoshi258Wheel2, - gKartYoshi258Wheel3, - gKartYoshi259Wheel0, - gKartYoshi259Wheel1, - gKartYoshi259Wheel2, - gKartYoshi259Wheel3, - gKartYoshi260Wheel0, - gKartYoshi260Wheel1, - gKartYoshi260Wheel2, - gKartYoshi260Wheel3, - gKartYoshi261Wheel0, - gKartYoshi261Wheel1, - gKartYoshi261Wheel2, - gKartYoshi261Wheel3, - gKartYoshi262Wheel0, - gKartYoshi262Wheel1, - gKartYoshi262Wheel2, - gKartYoshi262Wheel3, - gKartYoshi263Wheel0, - gKartYoshi263Wheel1, - gKartYoshi263Wheel2, - gKartYoshi263Wheel3, - gKartYoshi264Wheel0, - gKartYoshi264Wheel1, - gKartYoshi264Wheel2, - gKartYoshi264Wheel3, - gKartYoshi265Wheel0, - gKartYoshi265Wheel1, - gKartYoshi265Wheel2, - gKartYoshi265Wheel3, - gKartYoshi266Wheel0, - gKartYoshi266Wheel1, - gKartYoshi266Wheel2, - gKartYoshi266Wheel3, - gKartYoshi267Wheel0, - gKartYoshi267Wheel1, - gKartYoshi267Wheel2, - gKartYoshi267Wheel3, - gKartYoshi268Wheel0, - gKartYoshi268Wheel1, - gKartYoshi268Wheel2, - gKartYoshi268Wheel3, - gKartYoshi269Wheel0, - gKartYoshi269Wheel1, - gKartYoshi269Wheel2, - gKartYoshi269Wheel3, - gKartYoshi270Wheel0, - gKartYoshi270Wheel1, - gKartYoshi270Wheel2, - gKartYoshi270Wheel3, - gKartYoshi271Wheel0, - gKartYoshi271Wheel1, - gKartYoshi271Wheel2, - gKartYoshi271Wheel3, - gKartYoshi272Wheel0, - gKartYoshi272Wheel1, - gKartYoshi272Wheel2, - gKartYoshi272Wheel3, - gKartYoshi273Wheel0, - gKartYoshi273Wheel1, - gKartYoshi273Wheel2, - gKartYoshi273Wheel3, - gKartYoshi274Wheel0, - gKartYoshi274Wheel1, - gKartYoshi274Wheel2, - gKartYoshi274Wheel3, - gKartYoshi275Wheel0, - gKartYoshi275Wheel1, - gKartYoshi275Wheel2, - gKartYoshi275Wheel3, - gKartYoshi276Wheel0, - gKartYoshi276Wheel1, - gKartYoshi276Wheel2, - gKartYoshi276Wheel3, - gKartYoshi277Wheel0, - gKartYoshi277Wheel1, - gKartYoshi277Wheel2, - gKartYoshi277Wheel3, - gKartYoshi278Wheel0, - gKartYoshi278Wheel1, - gKartYoshi278Wheel2, - gKartYoshi278Wheel3, - gKartYoshi279Wheel0, - gKartYoshi279Wheel1, - gKartYoshi279Wheel2, - gKartYoshi279Wheel3, - gKartYoshi280Wheel0, - gKartYoshi280Wheel1, - gKartYoshi280Wheel2, - gKartYoshi280Wheel3, - gKartYoshi281Wheel0, - gKartYoshi281Wheel1, - gKartYoshi281Wheel2, - gKartYoshi281Wheel3, - gKartYoshi282Wheel0, - gKartYoshi282Wheel1, - gKartYoshi282Wheel2, - gKartYoshi282Wheel3, - gKartYoshi283Wheel0, - gKartYoshi283Wheel1, - gKartYoshi283Wheel2, - gKartYoshi283Wheel3, - gKartYoshi284Wheel0, - gKartYoshi284Wheel1, - gKartYoshi284Wheel2, - gKartYoshi284Wheel3, - gKartYoshi285Wheel0, - gKartYoshi285Wheel1, - gKartYoshi285Wheel2, - gKartYoshi285Wheel3, - gKartYoshi286Wheel0, - gKartYoshi286Wheel1, - gKartYoshi286Wheel2, - gKartYoshi286Wheel3, - gKartYoshi287Wheel0, - gKartYoshi287Wheel1, - gKartYoshi287Wheel2, - gKartYoshi287Wheel3, - gKartYoshi288Wheel0, - gKartYoshi288Wheel1, - gKartYoshi288Wheel2, - gKartYoshi288Wheel3, -}; - -static const ALIGN_ASSET(2) char gKartYoshiPalette[] = "__OTR__yoshi_kart/yoshi_kart_palette"; - diff --git a/include/assets/yoshi_valley_data.h b/include/assets/yoshi_valley_data.h deleted file mode 100644 index b93a478a4..000000000 --- a/include/assets/yoshi_valley_data.h +++ /dev/null @@ -1,362 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_0"; - -static const ALIGN_ASSET(2) char yoshi_valley_data_seg6_gfx_0[] = "__OTR__yoshi_valley_data/yoshi_valley_data_seg6_gfx_0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_20[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_20"; - -static const ALIGN_ASSET(2) char yoshi_valley_data_seg6_gfx_20[] = "__OTR__yoshi_valley_data/yoshi_valley_data_seg6_gfx_20"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_40[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_40"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_290[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_290"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3F0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3F0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4E8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_4E8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7A0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7A0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9C8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_9C8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BC0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_BC0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_CC0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_CC0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_FA0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_FA0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_1178[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_1178"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_13F8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_13F8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_14D0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_14D0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_17A8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_17A8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_1968[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_1968"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_1C38[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_1C38"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_1D48[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_1D48"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2000[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_2000"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_21B0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_21B0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2408[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_2408"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_25E8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_25E8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2840[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_2840"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2978[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_2978"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2BC0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_2BC0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2D70[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_2D70"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_2F48[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_2F48"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3078[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3078"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3258[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3258"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3420[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3420"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3560[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3560"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_36D0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_36D0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3880[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3880"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3A38[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3A38"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3BA0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3BA0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3D20[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3D20"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3E30[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3E30"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_3F88[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_3F88"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_40B8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_40B8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4320[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_4320"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_44C8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_44C8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4718[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_4718"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_48C0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_48C0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4A98[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_4A98"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4C28[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_4C28"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_4E60[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_4E60"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5018[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_5018"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_51D0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_51D0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_53E0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_53E0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5638[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_5638"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5778[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_5778"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5890[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_5890"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5A80[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_5A80"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5C70[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_5C70"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5D60[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_5D60"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_5ED8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_5ED8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6070[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_6070"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6268[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_6268"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6358[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_6358"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6530[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_6530"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_66B0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_66B0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_68C8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_68C8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_69C0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_69C0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6BF0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_6BF0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6D78[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_6D78"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_6FB8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_6FB8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7100[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7100"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7310[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7310"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7400[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7400"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_75C8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_75C8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7770[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7770"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7938[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7938"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7A08[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7A08"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7BB8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7BB8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7CE8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7CE8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_7F80[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_7F80"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8030[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8030"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8218[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8218"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8420[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8420"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8710[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8710"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8830[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8830"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8958[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8958"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8C30[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8C30"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8D58[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8D58"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_8FD8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_8FD8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_91D8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_91D8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9340[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_9340"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9548[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_9548"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9780[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_9780"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9A00[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_9A00"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9BB0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_9BB0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9DB8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_9DB8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_9F70[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_9F70"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A188[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_A188"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A328[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_A328"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A518[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_A518"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A6B8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_A6B8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_A8A0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_A8A0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_AAC0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_AAC0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_ACF0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_ACF0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_AE78[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_AE78"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_AFF8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_AFF8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B220[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_B220"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B428[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_B428"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B578[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_B578"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B778[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_B778"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_B970[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_B970"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BAF8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_BAF8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BC98[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_BC98"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BE18[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_BE18"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_BFC8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_BFC8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C140[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_C140"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C2D8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_C2D8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C470[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_C470"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C580[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_C580"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C668[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_C668"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C728[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_C728"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C838[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_C838"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_C8F8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_C8F8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_CAD8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_CAD8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_CC80[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_CC80"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_CEC8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_CEC8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_D018[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_D018"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_D1E8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_D1E8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_D3D0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_D3D0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_D540[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_D540"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_waypoints[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_waypoints"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_waypoints_2[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_waypoints_2"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_waypoints_3[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_waypoints_3"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_waypoints_4[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_waypoints_4"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_track_waypoints[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_track_waypoints"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_track_waypoints_2[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_track_waypoints_2"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_track_waypoints_3[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_track_waypoints_3"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_track_waypoints_4[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_track_waypoints_4"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light1[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_light1"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light2[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_light2"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light3[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_light3"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_yoshi_flag[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_yoshi_flag"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light4[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_light4"; - -static const ALIGN_ASSET(2) char yoshi_valley_data_seg6_lights_141A0[] = "__OTR__yoshi_valley_data/yoshi_valley_data_seg6_lights_141A0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_unknown_light5[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_unknown_light5"; - -static const ALIGN_ASSET(2) char yoshi_valley_data_seg6_lights_141B8[] = "__OTR__yoshi_valley_data/yoshi_valley_data_seg6_lights_141B8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_pole_model1[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_flag_pole_model1"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_pole_model2[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_flag_pole_model2"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_142C0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_142C0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_1_model1[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_flag_1_model1"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_1_model2[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_flag_1_model2"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_143C8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_143C8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_2_model[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_flag_2_model"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_144A8[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_144A8"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_3_model[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_flag_3_model"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_14500[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_14500"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_4_model[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_flag_4_model"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_14558[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_14558"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_flag_5_model[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_flag_5_model"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_145D0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_145D0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_hedgehog_tlut[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_hedgehog_tlut"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_hedgehog[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_hedgehog"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_tree_model[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_tree_model"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_tree[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_tree"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model1[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_egg_model1"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model2[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_egg_model2"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model3[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_egg_model3"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model4[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_egg_model4"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model5[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_egg_model5"; - -static const ALIGN_ASSET(2) char yoshi_valley_data_seg6_lights_16558[] = "__OTR__yoshi_valley_data/yoshi_valley_data_seg6_lights_16558"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_lights4[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_lights4"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_spot[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_egg_spot"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_16D70[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_16D70"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg_model_lod0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_egg_model_lod0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_egg[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_egg"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_egg_lod0[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_egg_lod0"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_dl_18020[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_dl_18020"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_tree_spawn[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_tree_spawn"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_item_box_spawns[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_item_box_spawns"; - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_addr[] = "__OTR__yoshi_valley_data/d_course_yoshi_valley_addr"; - diff --git a/include/assets/yoshi_valley_displaylists.h b/include/assets/yoshi_valley_displaylists.h deleted file mode 100644 index 757db3897..000000000 --- a/include/assets/yoshi_valley_displaylists.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_packed_dls[] = "__OTR__yoshi_valley_displaylists/d_course_yoshi_valley_packed_dls"; - diff --git a/include/assets/yoshi_valley_vertices.h b/include/assets/yoshi_valley_vertices.h deleted file mode 100644 index 5a2b89788..000000000 --- a/include/assets/yoshi_valley_vertices.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -#include -#include -#include - -static const ALIGN_ASSET(2) char d_course_yoshi_valley_vertex[] = "__OTR__yoshi_valley_vertices/d_course_yoshi_valley_vertex"; - diff --git a/include/course.h b/include/course.h index 14e1daacd..8bbd83054 100644 --- a/include/course.h +++ b/include/course.h @@ -10,7 +10,7 @@ */ typedef struct { - Gfx* addr; + uint64_t crc; u8 surfaceType; u8 sectionId; u16 flags; diff --git a/include/course_offsets.h b/include/course_offsets.h index 947ebbebf..25fe63215 100644 --- a/include/course_offsets.h +++ b/include/course_offsets.h @@ -4,7 +4,7 @@ #include #include #include -#include +#include #include "animation.h" typedef struct { @@ -60,8 +60,6 @@ extern Animation d_rainbow_road_unk2; extern Animation* d_rainbow_road_unk3[]; extern u32 d_rainbow_road_unk5[]; -extern Gfx* d_course_koopa_troopa_beach_dl_list1[]; -extern Gfx* koopa_troopa_beach_dls2[]; extern uintptr_t d_course_koopa_troopa_beach_unk_data1[]; extern s16 d_course_koopa_troopa_beach_unk_data2[]; extern AnimationLimbVector d_course_koopa_troopa_beach_unk_data3[]; diff --git a/libultraship b/libultraship index 09dfab5fb..d1bbd53e8 160000 --- a/libultraship +++ b/libultraship @@ -1 +1 @@ -Subproject commit 09dfab5fb2a9a047a6e268dc9db2daad9b2ce5f0 +Subproject commit d1bbd53e8a1d2a4d6cfcce588ed13aa8d0686909 diff --git a/meta/mods.toml b/meta/mods.toml new file mode 100644 index 000000000..7f95939ae --- /dev/null +++ b/meta/mods.toml @@ -0,0 +1,3 @@ +[mod] +name="mk64-assets" +version="1.0.0-alpha1" diff --git a/src/actors/box_truck/render.inc.c b/src/actors/box_truck/render.inc.c index c53c13abc..cb1bd6643 100644 --- a/src/actors/box_truck/render.inc.c +++ b/src/actors/box_truck/render.inc.c @@ -2,7 +2,8 @@ #include #include #include -#include +#include +#include /** * @brief Renders the box truck actor. diff --git a/src/actors/car/render.inc.c b/src/actors/car/render.inc.c index 0eb8d03b8..73c6fc9dc 100644 --- a/src/actors/car/render.inc.c +++ b/src/actors/car/render.inc.c @@ -1,7 +1,7 @@ #include #include #include -#include +#include /** * @brief Renders the car actor. diff --git a/src/actors/cow/render.inc.c b/src/actors/cow/render.inc.c index af15363c4..946806068 100644 --- a/src/actors/cow/render.inc.c +++ b/src/actors/cow/render.inc.c @@ -2,7 +2,7 @@ #include #include #include -#include +#include /** * @brief Renders the cow actor. diff --git a/src/actors/falling_rock/render.inc.c b/src/actors/falling_rock/render.inc.c index a2d132b01..b19b4f024 100644 --- a/src/actors/falling_rock/render.inc.c +++ b/src/actors/falling_rock/render.inc.c @@ -1,6 +1,6 @@ #include #include -#include +#include #include "port/interpolation/FrameInterpolation.h" /** diff --git a/src/actors/falling_rock/update.inc.c b/src/actors/falling_rock/update.inc.c index c4b996531..4d477cc6c 100644 --- a/src/actors/falling_rock/update.inc.c +++ b/src/actors/falling_rock/update.inc.c @@ -1,16 +1,11 @@ +#include "math_util.h" #include #include #include -#include +#include void func_8029CF0C(struct ActorSpawnData* spawnData, struct FallingRock* rock) { -#ifndef TARGET_N64 struct ActorSpawnData* temp_v0 = spawnData; -#else - s32 segment = SEGMENT_NUMBER2(spawnData); - s32 offset = SEGMENT_OFFSET(spawnData); - struct ActorSpawnData* temp_v0 = (struct ActorSpawnData*) VIRTUAL_TO_PHYSICAL2(gSegmentTable[segment] + offset); -#endif Vec3s sp24 = { 60, 120, 180 }; temp_v0 += rock->unk_06; rock->respawnTimer = sp24[rock->unk_06]; // * 2 @@ -29,15 +24,8 @@ void func_8029CF0C(struct ActorSpawnData* spawnData, struct FallingRock* rock) { */ static struct ActorSpawnData* sRockSpawnData; void spawn_falling_rocks(struct ActorSpawnData* spawnData) { -#ifndef TARGET_N64 struct ActorSpawnData* temp_s0 = spawnData; sRockSpawnData = spawnData; -#else - s32 addr = SEGMENT_NUMBER2(spawnData); - s32 offset = SEGMENT_OFFSET(spawnData); - // Casting this to prevent warning does not work. - struct ActorSpawnData* temp_s0 = (struct ActorSpawnData*) VIRTUAL_TO_PHYSICAL2(gSegmentTable[addr] + offset); -#endif struct FallingRock* temp_v1; Vec3f startingPos; Vec3f startingVelocity; diff --git a/src/actors/green_shell/render.inc.c b/src/actors/green_shell/render.inc.c index 7c67fd4c9..ac8094aed 100644 --- a/src/actors/green_shell/render.inc.c +++ b/src/actors/green_shell/render.inc.c @@ -1,7 +1,7 @@ #include #include #include -#include +#include /** * @brief Renders the green shell actor. diff --git a/src/actors/kiwano_fruit/render.inc.c b/src/actors/kiwano_fruit/render.inc.c index 0ecfacf29..0a50473b0 100644 --- a/src/actors/kiwano_fruit/render.inc.c +++ b/src/actors/kiwano_fruit/render.inc.c @@ -1,7 +1,7 @@ #include #include #include -#include "assets/other_textures.h" +#include "assets/textures/other_textures.h" // #include /** @@ -44,7 +44,6 @@ void render_actor_kiwano_fruit(UNUSED Camera* camera, Mat4 arg1, struct Actor* a break; } - //addr = segmented_texture_to_virtual((actor->rot[0] << 0xA) + 0x03009000); gDPLoadTextureBlock(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(addr), G_IM_FMT_CI, G_IM_SIZ_8b, 32, 32, 0, G_TX_NOMIRROR | G_TX_CLAMP, G_TX_NOMIRROR | G_TX_CLAMP, G_TX_NOMASK, G_TX_NOMASK, G_TX_NOLOD, G_TX_NOLOD); diff --git a/src/actors/mario_sign/render.inc.c b/src/actors/mario_sign/render.inc.c index 19b0a004e..9490e4241 100644 --- a/src/actors/mario_sign/render.inc.c +++ b/src/actors/mario_sign/render.inc.c @@ -1,6 +1,6 @@ #include #include -#include +#include #include "port/interpolation/FrameInterpolation.h" /** diff --git a/src/actors/paddle_boat/render.inc.c b/src/actors/paddle_boat/render.inc.c index 26d65f160..5e2c77b45 100644 --- a/src/actors/paddle_boat/render.inc.c +++ b/src/actors/paddle_boat/render.inc.c @@ -5,7 +5,7 @@ #include "main.h" #include "actors.h" #include "courses/all_course_data.h" -#include +#include #include /** diff --git a/src/actors/palm_tree/render.inc.c b/src/actors/palm_tree/render.inc.c index 064e0fe13..8a7deee77 100644 --- a/src/actors/palm_tree/render.inc.c +++ b/src/actors/palm_tree/render.inc.c @@ -1,6 +1,6 @@ #include #include -#include +#include /** * @brief Renders the palm tree actor. diff --git a/src/actors/piranha_plant/render.inc.c b/src/actors/piranha_plant/render.inc.c index 16cd42025..bbf062043 100644 --- a/src/actors/piranha_plant/render.inc.c +++ b/src/actors/piranha_plant/render.inc.c @@ -1,8 +1,8 @@ #include #include #include -#include -#include +#include +#include const char* sPiranhaPlantTextures[] = { gTexturePiranhaPlant1, @@ -127,8 +127,7 @@ void render_actor_piranha_plant(Camera* arg0, Mat4 arg1, struct PiranhaPlant* ar if (animationFrame > 8) { animationFrame = 8; } - addr = LOAD_ASSET(sPiranhaPlantTextures[animationFrame]); - gDPLoadTextureBlock(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(addr), G_IM_FMT_CI, G_IM_SIZ_8b, 32, 64, 0, + gDPLoadTextureBlock(gDisplayListHead++, sPiranhaPlantTextures[animationFrame], G_IM_FMT_CI, G_IM_SIZ_8b, 32, 64, 0, G_TX_MIRROR | G_TX_WRAP, G_TX_NOMIRROR | G_TX_CLAMP, G_TX_NOMASK, G_TX_NOMASK, G_TX_NOLOD, G_TX_NOLOD); diff --git a/src/actors/railroad_crossing/render.inc.c b/src/actors/railroad_crossing/render.inc.c index 10ca253f0..d5d5ff01a 100644 --- a/src/actors/railroad_crossing/render.inc.c +++ b/src/actors/railroad_crossing/render.inc.c @@ -1,7 +1,7 @@ #include #include #include -#include "assets/kalimari_desert_data.h" +#include "assets/models/tracks/kalimari_desert/kalimari_desert_data.h" /** * @brief Renders the railroad crossing actor. diff --git a/src/actors/train/render.inc.c b/src/actors/train/render.inc.c index 825aa4cd9..60a3dc745 100644 --- a/src/actors/train/render.inc.c +++ b/src/actors/train/render.inc.c @@ -1,7 +1,7 @@ #include #include #include -#include +#include /** * @brief Renders the train engine actor. diff --git a/src/actors/trees/render.inc.c b/src/actors/trees/render.inc.c index db059deed..9f2e5bfa1 100644 --- a/src/actors/trees/render.inc.c +++ b/src/actors/trees/render.inc.c @@ -1,10 +1,11 @@ #include #include #include -#include +#include +#include #include "courses/all_course_data.h" -#include -#include +#include +#include /** * @brief Renders the tree actor in Mario rawceay. diff --git a/src/actors/wario_sign/render.inc.c b/src/actors/wario_sign/render.inc.c index 3658b7efb..68b2d831e 100644 --- a/src/actors/wario_sign/render.inc.c +++ b/src/actors/wario_sign/render.inc.c @@ -1,7 +1,7 @@ #include #include #include -#include +#include /** * @brief Renders the Wario sign actor. diff --git a/src/audio/load.c b/src/audio/load.c index 2efa086af..b3555ed88 100644 --- a/src/audio/load.c +++ b/src/audio/load.c @@ -240,7 +240,7 @@ void* dma_sample_data(uintptr_t devAddr, u32 size, s32 arg2, u8* dmaIndexRef) { dma->ttl = 2; dma->source = dmaDevAddr; dma->sizeUnused = transfer; - dma->buffer = dmaDevAddr; + dma->buffer = (void*) dmaDevAddr; // osPiStartDma(&gCurrAudioFrameDmaIoMesgBufs[gCurrAudioFrameDmaCount++], OS_MESG_PRI_NORMAL, OS_READ, dmaDevAddr, // dma->buffer, transfer, &gCurrAudioFrameDmaQueue); *dmaIndexRef = dmaIndex; diff --git a/src/code_800029B0.c b/src/code_800029B0.c index 7a878a392..784ec3bb1 100644 --- a/src/code_800029B0.c +++ b/src/code_800029B0.c @@ -23,9 +23,9 @@ #include "courses/all_course_data.h" #include "courses/all_course_packed.h" #include "menus.h" -#include -#include -#include +#include +#include +#include #include "port/Game.h" extern s32 D_802BA038; @@ -65,6 +65,12 @@ bool gIsEditorPaused = true; u8* pAppNmiBuffer = (u8*) &osAppNmiBuffer; s32 gIsMirrorMode = 0; +void set_mirror_mode(s32 mirror) { + if (gIsMirrorMode != mirror) { + UnLoadCourse(); + } + gIsMirrorMode = mirror; +} Vec3f gVtxStretch = {1.0f, 1.0f, 1.0f}; Lights1 D_800DC610[] = { gdSPDefLights1(175, 175, 175, 255, 255, 255, 0, 0, 120), @@ -192,7 +198,7 @@ void setup_race(void) { gPlayerCountSelection1 = gPlayerCount; if (gGamestate != RACING) { - gIsMirrorMode = 0; + set_mirror_mode(0); } if (gIsMirrorMode) { gCourseDirection = -1.0f; @@ -273,7 +279,7 @@ void setup_editor(void) { gPlayerCountSelection1 = 1; if (gGamestate != RACING) { - gIsMirrorMode = 0; + set_mirror_mode(0); } gActiveScreenMode = gScreenModeSelection; @@ -374,11 +380,10 @@ void credits_spawn_actors(void) { D_800DC5BC = 0; D_800DC5C8 = 0; gNumActors = 0; - gIsMirrorMode = 0; + set_mirror_mode(0); gCourseDirection = 1.0f; gPlayerCountSelection1 = 1; - set_segment_base_addr_x64(3, (void*) gNextFreeMemoryAddress); // Stupid hack to sync segment 3 memory allocations with hard-coded address in data. gNextFreeMemoryAddress += 0x9000; diff --git a/src/code_800029B0.h b/src/code_800029B0.h index 331e0b513..6cb307dea 100644 --- a/src/code_800029B0.h +++ b/src/code_800029B0.h @@ -65,6 +65,7 @@ extern u16 gIsGamePaused; extern bool gIsEditorPaused; extern u8* pAppNmiBuffer; extern s32 gIsMirrorMode; // D_800DC604 +extern void set_mirror_mode(s32 mirror); extern s16 gCreditsCourseId; extern s16 gPlaceItemBoxes; extern Vec3f gVtxStretch; diff --git a/src/code_80005FD0.c b/src/code_80005FD0.c index 984b6a197..9e9e10cfb 100644 --- a/src/code_80005FD0.c +++ b/src/code_80005FD0.c @@ -23,7 +23,7 @@ #include "code_80057C60.h" #include "bomb_kart.h" #include "courses/all_course_data.h" -#include +#include #include #include "main.h" #include "menus.h" @@ -33,9 +33,11 @@ #include "spawn_players.h" #include "sounds.h" #include "data/path_spawn_metadata.h" -#include -#include -#include +#include +#include +#include +#include +#include #include #include "port/Game.h" diff --git a/src/code_80005FD0.h b/src/code_80005FD0.h index ec262131f..67c437f7b 100644 --- a/src/code_80005FD0.h +++ b/src/code_80005FD0.h @@ -4,7 +4,7 @@ #include "vehicles.h" #include "camera.h" #include "waypoints.h" -#include +#include struct unexpiredActors { /* 0x00 */ s32 unk0; diff --git a/src/code_80057C60.c b/src/code_80057C60.c index 1c45d7ba4..625372589 100644 --- a/src/code_80057C60.c +++ b/src/code_80057C60.c @@ -25,18 +25,18 @@ #include "update_objects.h" #include "code_80086E70.h" #include "effects.h" -#include +#include #include "skybox_and_splitscreen.h" -#include +#include #include "audio/external.h" #include "objects.h" #include "bomb_kart.h" #include "menus.h" -#include +#include #include "spawn_players.h" #include "sounds.h" #include "data/some_data.h" -#include +#include #include "port/Game.h" #include "engine/Matrix.h" #include "port/interpolation/FrameInterpolation.h" diff --git a/src/code_8006E9C0.c b/src/code_8006E9C0.c index bb1e706df..39abc18d3 100644 --- a/src/code_8006E9C0.c +++ b/src/code_8006E9C0.c @@ -14,19 +14,19 @@ #include "objects.h" #include "bomb_kart.h" #include "save.h" -#include +#include #include #include #include "audio/external.h" #include "courses/all_course_data.h" #include "main.h" #include "menus.h" -#include +#include #include "render_objects.h" #include "menu_items.h" #include "src/data/some_data.h" #include "effects.h" -#include +#include #include "port/Game.h" #include "port/Engine.h" diff --git a/src/data/path_spawn_metadata.c b/src/data/path_spawn_metadata.c index 0cab6fe13..993045671 100644 --- a/src/data/path_spawn_metadata.c +++ b/src/data/path_spawn_metadata.c @@ -1,16 +1,16 @@ #include "data/path_spawn_metadata.h" #include "courses/all_course_data.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include TrackPathPoint nullPath = { 0x8000, 0x0000, 0x0000, 0x0000 }; diff --git a/src/data/path_spawn_metadata.h b/src/data/path_spawn_metadata.h index c9b7ebb61..981b944fc 100644 --- a/src/data/path_spawn_metadata.h +++ b/src/data/path_spawn_metadata.h @@ -3,7 +3,7 @@ #include "waypoints.h" #include -#include +#include #include "include/bomb_kart.h" typedef struct { diff --git a/src/data/some_data.c b/src/data/some_data.c index f619ab4a4..5e25181ce 100644 --- a/src/data/some_data.c +++ b/src/data/some_data.c @@ -1,6 +1,6 @@ #include #include -#include +#include #include "some_data.h" // Values below are altered so that the whole kart texture may be rendered as one texture instead of two half. diff --git a/src/data/some_data.h b/src/data/some_data.h index b9c672c76..f746cc836 100644 --- a/src/data/some_data.h +++ b/src/data/some_data.h @@ -4,7 +4,7 @@ #include #include "spline.h" -#include +#include #include "objects.h" #ifdef __cplusplus diff --git a/src/data/textures.c b/src/data/textures.c index d61123215..99e867d2a 100644 --- a/src/data/textures.c +++ b/src/data/textures.c @@ -4,9 +4,9 @@ * start in ram 0x801978D0 * look like link to menu_items */ -#include -#include -#include +#include +#include +#include #include "textures.h" /** diff --git a/src/debug/all_variables.h b/src/debug/all_variables.h index d71336b89..74f7c11d3 100644 --- a/src/debug/all_variables.h +++ b/src/debug/all_variables.h @@ -30,9 +30,9 @@ #include #include #include -#include +#include #include -#include +#include #include #include #include diff --git a/src/ending/code_80280000.c b/src/ending/code_80280000.c index f1ad2fb06..91a80b65e 100644 --- a/src/ending/code_80280000.c +++ b/src/ending/code_80280000.c @@ -151,9 +151,6 @@ void load_credits(void) { gNextFreeMemoryAddress = gFreeMemoryResetAnchor; load_course(gCurrentCourseId); gFreeMemoryCourseAnchor = gNextFreeMemoryAddress; -#ifdef TARGET_N64 - set_segment_base_addr(0xB, (void*) decompress_segments((u8*) CEREMONY_DATA_ROM_START, (u8*) CEREMONY_DATA_ROM_END)); -#endif gCourseMinX = -0x15A1; gCourseMinY = -0x15A1; diff --git a/src/ending/code_80281780.c b/src/ending/code_80281780.c index b5b65e038..dfafe70e7 100644 --- a/src/ending/code_80281780.c +++ b/src/ending/code_80281780.c @@ -3,7 +3,7 @@ #include #include #include -#include +#include #include "code_80281780.h" #include "memory.h" @@ -100,7 +100,7 @@ void setup_podium_ceremony(void) { gCurrentCourseId = COURSE_ROYAL_RACEWAY; SelectPodiumCeremony(); D_800DC5B4 = (u16) 1; - gIsMirrorMode = 0; + set_mirror_mode(0); gGotoMenu = 0xFFFF; D_80287554 = 0; func_802A4D18(); @@ -117,11 +117,6 @@ void setup_podium_ceremony(void) { gModeSelection = GRAND_PRIX; load_course(gCurrentCourseId); gFreeMemoryCourseAnchor = (s32) gNextFreeMemoryAddress; -#ifdef TARGET_N64 - set_segment_base_addr(0xB, (void*) decompress_segments((u8*) CEREMONY_DATA_ROM_START, (u8*) CEREMONY_DATA_ROM_END)); - set_segment_base_addr(6, (void*) decompress_segments((u8*) &_course_banshee_boardwalk_dl_mio0SegmentRomStart, - (u8*) &_course_yoshi_valley_dl_mio0SegmentRomStart)); -#endif gWaterLevel = -2000.0f; gCourseMinX = -0x15A1; @@ -141,25 +136,23 @@ void setup_podium_ceremony(void) { gCollisionMesh = (CollisionTriangle*) gNextFreeMemoryAddress; //! @bug these segmented addresses need to be symbols for mobility // d_course_royal_raceway_packed_dl_67E8 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x070067E8), -1); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_67E8, -1); // d_course_royal_raceway_packed_dl_AEF8 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x0700AEF8), -1); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_AEF8, -1); // d_course_royal_raceway_packed_dl_A970 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x0700A970), 8); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_A970, 8); // d_course_royal_raceway_packed_dl_AC30 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x0700AC30), 8); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_AC30, 8); // d_course_royal_raceway_packed_dl_CE0 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x07000CE0), 0x10); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_CE0, 0x10); // d_course_royal_raceway_packed_dl_E88 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x07000E88), 0x10); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_E88, 0x10); // d_course_royal_raceway_packed_dl_A618 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x0700A618), -1); - // d_course_royal_raceway_packed_dl_A618 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x0700A618), -1); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_A618, -1); // d_course_royal_raceway_packed_dl_23F8 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x070023F8), 1); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_23F8, 1); // d_course_royal_raceway_packed_dl_2478 - generate_collision_mesh_with_default_section_id(segmented_gfx_to_virtual(0x07002478), 1); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_royal_raceway_packed_dl_2478, 1); func_80295C6C(); debug_switch_character_ceremony_cutscene(); func_802818BC(); diff --git a/src/ending/code_80281C40.c b/src/ending/code_80281C40.c index dff4fd9e6..080610969 100644 --- a/src/ending/code_80281C40.c +++ b/src/ending/code_80281C40.c @@ -4,6 +4,7 @@ #include "code_80281C40.h" #include "main.h" #include "math_util.h" +#include "models/tracks/royal_raceway/royal_raceway_displaylists.h" #include "skybox_and_splitscreen.h" #include "render_objects.h" #include "code_80057C60.h" @@ -84,51 +85,7 @@ void func_80281D00(void) { G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); mtxf_identity(matrix); render_set_position(matrix, 0); - - // gSPDisplayList(gDisplayListHead++, VIRTUAL_TO_PHYSICAL2(&D_80284F70)); - - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070067E8)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x0700AEF8)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07001438)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x0700A970)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000CE0)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000E88)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x0700A618)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x0700AC30)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003728)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070036B8)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003628)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003540)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003DC0)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E50)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003F18)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070050B0)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005138)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070055D0)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005B50)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005C00)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005D18)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005DC8)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005EF8)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005740)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070057F0)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070058E8)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07001788)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07001AA0)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07001A30)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070023F8)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07002478)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003790)); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070006D0)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070004D0)); - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000840)); - + gSPDisplayList(gDisplayListHead++, D_80284F70); render_players_on_screen_one(); gSPDisplayList(gDisplayListHead++, VIRTUAL_TO_PHYSICAL2(&D_80284EE0)); update_actors_loop(); diff --git a/src/ending/dl_unk_80284EE0.c b/src/ending/dl_unk_80284EE0.c index c53979414..2d154cd59 100644 --- a/src/ending/dl_unk_80284EE0.c +++ b/src/ending/dl_unk_80284EE0.c @@ -1,6 +1,6 @@ #include #include -#include +#include // Init RDP - RSP (Ceremony) Gfx D_80284EE0[] = { @@ -30,42 +30,42 @@ Gfx D_80284F70[] = { gsDPSetRenderMode(G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2), gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), - gsSPDisplayList(0x070067E8), - gsSPDisplayList(0x0700AEF8), - gsSPDisplayList(0x07001438), - gsSPDisplayList(0x0700A970), - gsSPDisplayList(0x07000CE0), - gsSPDisplayList(0x07000E88), - gsSPDisplayList(0x0700A618), - gsSPDisplayList(0x0700AC30), - gsSPDisplayList(0x07003728), - gsSPDisplayList(0x070036B8), - gsSPDisplayList(0x07003628), - gsSPDisplayList(0x07003540), - gsSPDisplayList(0x07003DC0), - gsSPDisplayList(0x07003E50), - gsSPDisplayList(0x07003F18), - gsSPDisplayList(0x070050B0), - gsSPDisplayList(0x07005138), - gsSPDisplayList(0x070055D0), - gsSPDisplayList(0x07005B50), - gsSPDisplayList(0x07005C00), - gsSPDisplayList(0x07005D18), - gsSPDisplayList(0x07005DC8), - gsSPDisplayList(0x07005EF8), - gsSPDisplayList(0x07005740), - gsSPDisplayList(0x070057F0), - gsSPDisplayList(0x070058E8), - gsSPDisplayList(0x07001788), - gsSPDisplayList(0x07001AA0), - gsSPDisplayList(0x07001A30), - gsSPDisplayList(0x070023F8), - gsSPDisplayList(0x07002478), - gsSPDisplayList(0x07003790), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_67E8), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_AEF8), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_1438), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_A970), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_CE0), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_E88), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_A618), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_AC30), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_3728), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_36B8), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_3628), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_3540), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_3DC0), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_3E50), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_3F18), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_50B0), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_5138), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_55D0), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_5B50), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_5C00), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_5D18), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_5DC8), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_5EF8), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_5740), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_57F0), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_58E8), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_1788), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_1AA0), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_1A30), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_23F8), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_2478), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_3790), gsDPSetCombineMode(G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA), gsDPSetRenderMode(G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2), - gsSPDisplayList(0x070006D0), - gsSPDisplayList(0x070004D0), - gsSPDisplayList(0x07000840), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_6D0), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_4D0), + gsSPDisplayListOTRFilePath(d_course_royal_raceway_packed_dl_840), gsSPEndDisplayList(), }; diff --git a/src/ending/podium_ceremony_actors.c b/src/ending/podium_ceremony_actors.c index 28884b997..f42340ea6 100644 --- a/src/ending/podium_ceremony_actors.c +++ b/src/ending/podium_ceremony_actors.c @@ -7,7 +7,7 @@ #include "../camera.h" #include "main.h" #include "memory.h" -#include +#include #include "render_player.h" #include "render_objects.h" #include "podium_ceremony_actors.h" diff --git a/src/engine/HM_Intro.cpp b/src/engine/HM_Intro.cpp index 1e05d1639..bbbd6d910 100644 --- a/src/engine/HM_Intro.cpp +++ b/src/engine/HM_Intro.cpp @@ -167,8 +167,7 @@ void HarbourMastersIntro::HM_DrawIntro() { void HarbourMastersIntro::Setup() { u16 perspNorm; - - move_segment_table_to_dmem(); + gDPSetTexturePersp(gDisplayListHead++, G_TP_PERSP); // Setup camera perspective diff --git a/src/engine/ModelLoader.cpp b/src/engine/ModelLoader.cpp deleted file mode 100644 index b73d98aee..000000000 --- a/src/engine/ModelLoader.cpp +++ /dev/null @@ -1,94 +0,0 @@ -#include "ModelLoader.h" -#include "port/Engine.h" -#include "engine/courses/Course.h" - -extern "C" { -#include "memory.h" -} - -void ModelLoader::Add(LoadModelList list) { - _deferredList.push_back(list); -} - -void ModelLoader::Load() { - if (_hasRan) { // Ensure this does not get ran multiple times - printf("ModelLoader.cpp has already been ran once.\n"); - return; - } - _hasRan = true; - - // Set to track processed courses - std::unordered_set> processedCourses; - - for (auto& list : _deferredList) { - // Check if the course has already been processed - if (processedCourses.find(list.course) != processedCourses.end()) { - continue; // Skip if already processed - } - - // Process the course - ModelLoader::Extract(list.course); - - // Mark this course as processed - processedCourses.insert(list.course); - } -} - -void ModelLoader::Extract(std::shared_ptr course) { - std::shared_ptr saveCourse = gWorldInstance.CurrentCourse; - gWorldInstance.CurrentCourse = course; // Quick hack so that `get_texture` will find the right textures. - - size_t vtxSize = (ResourceGetSizeByName(course->vtx) / sizeof(CourseVtx)) * sizeof(Vtx); - size_t texSegSize; - - // Convert course vtx to vtx - Vtx* vtx = reinterpret_cast(malloc(vtxSize)); - if (vtx == NULL) { - printf("ModelLoader: Failed to allocate vertex buffer for course: %s\n", course->Props.Name); - return; - } - func_802A86A8(reinterpret_cast(LOAD_ASSET_RAW(course->vtx)), vtx, vtxSize / sizeof(Vtx)); - - // Extract packed DLs - u8* packed = reinterpret_cast(LOAD_ASSET_RAW(course->gfx)); - Gfx* gfx = reinterpret_cast(malloc(sizeof(Gfx) * course->gfxSize)); // Size of unpacked DLs - if (gfx == NULL) { - printf("ModelLoader: Failed to allocate course displaylist memory for course: %s\n", course->Props.Name); - return; - } - - displaylist_unpack(reinterpret_cast(gfx), reinterpret_cast(packed), 0); - - // Now that the data has been retrieved, extract the model data and save to provided buffers. - for (auto& list : _deferredList) { - // Ensure the list matches the course being extracted. - if (list.course != course) { - return; - } - - memcpy(list.vtxBuffer, &vtx[list.vtxStart], list.vtxBufferSize * sizeof(Vtx)); - memcpy(list.gfxBuffer, &gfx[list.gfxStart], list.gfxBufferSize * sizeof(Gfx)); - - UpdateVtx(list); - - } - - free(vtx); - free(gfx); - - _deferredList.clear(); - gWorldInstance.CurrentCourse = saveCourse; -} - -void ModelLoader::UpdateVtx(LoadModelList list) { - for (size_t i = 0; i < list.gfxStart + list.gfxBufferSize; i++) { - Gfx* gfx = &list.gfxBuffer[i]; - - // Check if the current Gfx command is G_VTX - if (GFX_GET_OPCODE(gfx->words.w0) == (G_VTX << 24)) { - // Re-write the vtx to point at the provided vtx buffer. - size_t vtxIndex = (gfx->words.w1 / sizeof(Vtx)) - list.vtxStart; - gfx->words.w1 = reinterpret_cast(&list.vtxBuffer[vtxIndex]); - } - } -} diff --git a/src/engine/ModelLoader.h b/src/engine/ModelLoader.h deleted file mode 100644 index 0bc233706..000000000 --- a/src/engine/ModelLoader.h +++ /dev/null @@ -1,63 +0,0 @@ -#pragma once - -#include -#include "engine/courses/Course.h" - -extern "C" { -#include "common_structs.h" -} - -class Course; - -/** - * - * Lists are deferred until load time so that models that use the same course may all use the same extraction - * - * Note ensure that the buffers passed to LoadModelList are big enough for the requested data. - * - * This class should only be ran once. - * - * - * Usage: - * - * ModelLoader::LoadModelList bowserStatueList = { - .course = gBowsersCastle, - .gfxBuffer = &gBowserStatueGfx[0], - .gfxBufferSize = 162, - .gfxStart = (0x2BB8 / 8), // This is 0x2BB8 / sizeof(N64Gfx) not sizeof(Gfx) - .vtxBuffer = &gBowserStatueVtx[0], - .vtxBufferSize = 717, - .vtxStart = 1942, - }; - * - * gModelLoader.Add(bowserStatueList); - */ - -class ModelLoader { - -public: - struct LoadModelList { - std::shared_ptr course; - - Gfx* gfxBuffer; // buffer for output gfx - size_t gfxBufferSize; - size_t gfxStart; // The starting point to extract data in NumGfx - - Vtx* vtxBuffer; // buffer for output vtx - size_t vtxBufferSize; - size_t vtxStart; // The starting point to extract data in NumVtx - }; - - void Add(LoadModelList list); - void Load(); -private: - struct CourseMap { - - }; - - void Extract(std::shared_ptr course); - void UpdateVtx(LoadModelList list); - - std::vector _deferredList; - bool _hasRan = false; -}; diff --git a/src/engine/PlayerBombKart.cpp b/src/engine/PlayerBombKart.cpp index 7f8d05f8d..7b571d003 100644 --- a/src/engine/PlayerBombKart.cpp +++ b/src/engine/PlayerBombKart.cpp @@ -3,7 +3,8 @@ extern "C" { #include "common_structs.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" +#include "assets/textures/common_data.h" #include "camera.h" #include "render_objects.h" #include "math_util_2.h" diff --git a/src/engine/RaceManager.cpp b/src/engine/RaceManager.cpp index ae1ef828f..75b871cde 100644 --- a/src/engine/RaceManager.cpp +++ b/src/engine/RaceManager.cpp @@ -13,9 +13,54 @@ extern "C" { RaceManager::RaceManager(World& world) : WorldContext(world) { } +std::unordered_map> mirroredVtxCache; + +// Populates a collision mesh for mirror mode +extern "C" void add_triangle_to_collision_mesh(Vtx* vtx1, Vtx* vtx2, Vtx* vtx3, Vtx** outVtx1, Vtx** outVtx2, Vtx** outVtx3) { + if (gIsMirrorMode != 0) { + auto getOrCreateMirrored = [](Vtx* original) -> Vtx* { + uintptr_t key = reinterpret_cast(original); + + auto it = mirroredVtxCache.find(key); + if (it != mirroredVtxCache.end()) { + return it->second.get(); + } + + auto newVtx = std::make_shared(*original); + newVtx->v.ob[0] = -newVtx->v.ob[0]; + + mirroredVtxCache[key] = newVtx; + + return newVtx.get(); + }; + + Vtx* m1 = getOrCreateMirrored(vtx1); + Vtx* m2 = getOrCreateMirrored(vtx2); + Vtx* m3 = getOrCreateMirrored(vtx3); + + // don't invert winding here, already done in the gfx + *outVtx1 = m1; + *outVtx2 = m2; + *outVtx3 = m3; + + } else { + // Pas de miroir, on passe les originaux + *outVtx1 = vtx1; + *outVtx2 = vtx2; + *outVtx3 = vtx3; + } +} + void RaceManager::Load() { - if (WorldContext.CurrentCourse) { - WorldContext.CurrentCourse->Load(); + if (WorldContext.GetCurrentCourse()) { + mirroredVtxCache.clear(); + WorldContext.GetCurrentCourse()->Load(); + } +} + +void RaceManager::UnLoad() { + if (WorldContext.GetCurrentCourse()) { + WorldContext.GetCurrentCourse()->UnLoad(); } } @@ -29,7 +74,7 @@ void RaceManager::PreInit() { } void RaceManager::BeginPlay() { - auto course = WorldContext.CurrentCourse; + auto course = WorldContext.GetCurrentCourse(); if (course) { // Do not spawn finishline in credits or battle mode. And if bSpawnFinishline. diff --git a/src/engine/RaceManager.h b/src/engine/RaceManager.h index fb38bb33c..1df65f06b 100644 --- a/src/engine/RaceManager.h +++ b/src/engine/RaceManager.h @@ -1,5 +1,17 @@ #pragma once +#ifdef __cplusplus +extern "C" { +#endif +#include + +void add_triangle_to_collision_mesh(Vtx* vtx1, Vtx* vtx2, Vtx* vtx3, Vtx** outVtx1, Vtx** outVtx2, Vtx** outVtx3); + +#ifdef __cplusplus +} +#endif + +#ifdef __cplusplus class World; /** @@ -22,6 +34,7 @@ class RaceManager { public: RaceManager(World& world); virtual void Load(); // virtual required here in the base class to allow inherited classes to override + virtual void UnLoad(); virtual void PreInit(); virtual void BeginPlay(); virtual void PostInit(); @@ -29,3 +42,5 @@ public: protected: World& WorldContext; }; + +#endif \ No newline at end of file diff --git a/src/engine/Smoke.cpp b/src/engine/Smoke.cpp index 6a4566df4..2ae315a84 100644 --- a/src/engine/Smoke.cpp +++ b/src/engine/Smoke.cpp @@ -13,7 +13,8 @@ extern "C" { #include "code_80057C60.h" #include "update_objects.h" #include "math_util_2.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" +#include "assets/textures/common_data.h" } //! @todo: This should be an Object class one day diff --git a/src/engine/World.cpp b/src/engine/World.cpp index cca7a2199..0922e6c6e 100644 --- a/src/engine/World.cpp +++ b/src/engine/World.cpp @@ -17,8 +17,8 @@ extern "C" { #include "defines.h" #include "audio/external.h" #include "menus.h" -#include "common_data.h" -#include "mario_raceway_data.h" +#include "assets/models/common_data.h" +#include "assets/models/tracks/mario_raceway/mario_raceway_data.h" } std::shared_ptr CurrentCourse; @@ -41,8 +41,18 @@ void World::AddCup(Cup* cup) { Cups.push_back(cup); } +void World::SetCurrentCourse(std::shared_ptr course) { + if (CurrentCourse) { + UnLoadCourse(); + } + if (CurrentCourse == course) { + return; + } + CurrentCourse = std::move(course); +} + void World::SetCourseFromCup() { - CurrentCourse = CurrentCup->GetCourse(); + SetCurrentCourse(CurrentCup->GetCourse()); } TrainCrossing* World::AddCrossing(Vec3f position, u32 waypointMin, u32 waypointMax, f32 approachRadius, @@ -91,7 +101,7 @@ void World::SetCupIndex(size_t index) { CupIndex = index; } -void World::SetCup(Cup* cup) { +void World::SetCurrentCup(Cup* cup) { if (cup) { CurrentCup = cup; CurrentCup->CursorPosition = 0; @@ -102,7 +112,7 @@ void World::SetCourse(const char* name) { //! @todo Use content dictionary instead for (size_t i = 0; i < Courses.size(); i++) { if (strcmp(Courses[i]->Props.Name, name) == 0) { - CurrentCourse = Courses[i]; + SetCurrentCourse(Courses[i]); break; } } @@ -115,7 +125,7 @@ void World::NextCourse() { } else { CourseIndex = 0; } - gWorldInstance.CurrentCourse = Courses[CourseIndex]; + gWorldInstance.SetCurrentCourse(Courses[CourseIndex]); } void World::PreviousCourse() { @@ -124,7 +134,7 @@ void World::PreviousCourse() { } else { CourseIndex = Courses.size() - 1; } - gWorldInstance.CurrentCourse = Courses[CourseIndex]; + gWorldInstance.SetCurrentCourse(Courses[CourseIndex]); } AActor* World::AddActor(AActor* actor) { diff --git a/src/engine/World.h b/src/engine/World.h index 4e1e6e06e..214814f1f 100644 --- a/src/engine/World.h +++ b/src/engine/World.h @@ -9,6 +9,7 @@ #include "TrainCrossing.h" #include #include +#include #include "RaceManager.h" #include "Actor.h" #include "StaticMeshActor.h" @@ -16,6 +17,7 @@ #include "editor/Editor.h" #include "editor/GameObject.h" +#include "port/Game.h" extern "C" { #include "camera.h" @@ -46,6 +48,9 @@ typedef struct Matrix { : Hud(200), Objects(1000) {} }; +private: + std::shared_ptr CurrentCourse; + Cup* CurrentCup; public: explicit World(); @@ -81,7 +86,10 @@ public: void Reset(void); // Sets OObjects or AActors static member variables back to default values void AddCup(Cup*); - void SetCup(Cup* cup); + void SetCurrentCup(Cup* cup); + Cup* GetCurrentCup() { + return CurrentCup; + } void SetCupIndex(size_t index); const char* GetCupName(); u32 GetCupIndex(); @@ -92,6 +100,12 @@ public: World* GetWorld(void); void ClearWorld(void); + // getter/setter for current course + std::shared_ptr GetCurrentCourse() { + return CurrentCourse; + } + + void SetCurrentCourse(std::shared_ptr course); // These are only for browsing through the course list void SetCourse(const char*); @@ -99,7 +113,7 @@ public: void SetCourseByType() { for (const auto& course : Courses) { if (dynamic_cast(course.get())) { - CurrentCourse = course; + SetCurrentCourse(course); return; } } @@ -110,10 +124,6 @@ public: Matrix Mtx; - - std::shared_ptr CurrentCourse; - Cup* CurrentCup; - std::vector Cups; size_t CupIndex = 1; diff --git a/src/engine/actors/BowserStatue.cpp b/src/engine/actors/BowserStatue.cpp index af9036fc3..258dc9de3 100644 --- a/src/engine/actors/BowserStatue.cpp +++ b/src/engine/actors/BowserStatue.cpp @@ -6,7 +6,7 @@ extern "C" { #include "common_structs.h" #include "math_util.h" #include "main.h" -#include "assets/bowsers_castle_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_data.h" } Vtx gBowserStatueVtx[717]; diff --git a/src/engine/actors/BowserStatue.h b/src/engine/actors/BowserStatue.h index 51d58c0f1..1e4fbaff2 100644 --- a/src/engine/actors/BowserStatue.h +++ b/src/engine/actors/BowserStatue.h @@ -7,7 +7,7 @@ extern "C" { #include "common_structs.h" -#include "assets/other_textures.h" +#include "assets/textures/other_textures.h" } extern Vtx gBowserStatueVtx[717]; diff --git a/src/engine/actors/Cloud.cpp b/src/engine/actors/Cloud.cpp index 34f6466c9..70acd4101 100644 --- a/src/engine/actors/Cloud.cpp +++ b/src/engine/actors/Cloud.cpp @@ -11,7 +11,7 @@ extern "C" { #include "math_util.h" #include "actor_types.h" #include "actors.h" -#include "other_textures.h" +#include "assets/textures/other_textures.h" extern f32 gKartHopInitialVelocityTable[]; extern f32 gKartGravityTable[]; } diff --git a/src/engine/actors/FallingRock.cpp b/src/engine/actors/FallingRock.cpp index 80e968294..958c23e71 100644 --- a/src/engine/actors/FallingRock.cpp +++ b/src/engine/actors/FallingRock.cpp @@ -2,7 +2,8 @@ #include #include "CoreMath.h" -#include +#include +#include #include "port/interpolation/FrameInterpolation.h" #include "port/Game.h" diff --git a/src/engine/actors/Finishline.cpp b/src/engine/actors/Finishline.cpp index 52fa9c895..ef2846997 100644 --- a/src/engine/actors/Finishline.cpp +++ b/src/engine/actors/Finishline.cpp @@ -5,7 +5,7 @@ #include "Finishline.h" #include "engine/Actor.h" #include "World.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" #include "src/port/Game.h" #include "port/interpolation/FrameInterpolation.h" diff --git a/src/engine/actors/MarioSign.cpp b/src/engine/actors/MarioSign.cpp index b5fc51860..3ca926b02 100644 --- a/src/engine/actors/MarioSign.cpp +++ b/src/engine/actors/MarioSign.cpp @@ -1,7 +1,7 @@ #include "MarioSign.h" #include -#include +#include #include "CoreMath.h" extern "C" { diff --git a/src/engine/actors/Ship.h b/src/engine/actors/Ship.h index c1f082c78..9c05a7184 100644 --- a/src/engine/actors/Ship.h +++ b/src/engine/actors/Ship.h @@ -8,7 +8,7 @@ extern "C" { #include "common_structs.h" -#include "assets/other_textures.h" +#include "assets/textures/other_textures.h" } class AShip : public AActor { diff --git a/src/engine/actors/SpaghettiShip.cpp b/src/engine/actors/SpaghettiShip.cpp index 63ed048ec..880933b42 100644 --- a/src/engine/actors/SpaghettiShip.cpp +++ b/src/engine/actors/SpaghettiShip.cpp @@ -52,7 +52,7 @@ void ASpaghettiShip::Draw(Camera *camera) { Mat4 resultMtx; Vec3f hullPos = {Pos[0], Pos[1], Pos[2]}; Vec3s hullRot = {Rot[0], Rot[1], Rot[2]}; - Vec3s rot = {WheelRot.pitch, WheelRot.yaw, WheelRot.roll}; + Vec3s rot = {(s16) WheelRot.pitch, (s16) WheelRot.yaw, (s16) WheelRot.roll}; gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); diff --git a/src/engine/actors/SpaghettiShip.h b/src/engine/actors/SpaghettiShip.h index fef2e05a5..2f90202f7 100644 --- a/src/engine/actors/SpaghettiShip.h +++ b/src/engine/actors/SpaghettiShip.h @@ -8,7 +8,7 @@ extern "C" { #include "common_structs.h" -#include "assets/other_textures.h" +#include "assets/textures/other_textures.h" } class ASpaghettiShip : public AActor { diff --git a/src/engine/actors/Starship.h b/src/engine/actors/Starship.h index c76c10c68..d0e775e2f 100644 --- a/src/engine/actors/Starship.h +++ b/src/engine/actors/Starship.h @@ -8,7 +8,7 @@ extern "C" { #include "common_structs.h" -#include "assets/other_textures.h" +#include "assets/textures/other_textures.h" } class AStarship : public AActor { diff --git a/src/engine/actors/Text.cpp b/src/engine/actors/Text.cpp index 06a74c54d..c6f84e8d2 100644 --- a/src/engine/actors/Text.cpp +++ b/src/engine/actors/Text.cpp @@ -12,10 +12,10 @@ extern "C" { #include "defines.h" #include "main.h" #include "menu_items.h" -#include "assets/data_segment2.h" +#include "assets/models/data_segment2.h" #include "render_player.h" #include "math_util.h" -#include "assets/texture_data_2.h" +#include "assets/textures/texture_data_2.h" #include "render_objects.h" #include "common_structs.h" #include "code_80005FD0.h" diff --git a/src/engine/actors/WarioSign.cpp b/src/engine/actors/WarioSign.cpp index 66cffcb4b..dac6b55b9 100644 --- a/src/engine/actors/WarioSign.cpp +++ b/src/engine/actors/WarioSign.cpp @@ -1,7 +1,7 @@ #include "WarioSign.h" #include -#include +#include extern "C" { #include "common_structs.h" diff --git a/src/engine/courses/BansheeBoardwalk.cpp b/src/engine/courses/BansheeBoardwalk.cpp index b9634cd60..c3ea03e60 100644 --- a/src/engine/courses/BansheeBoardwalk.cpp +++ b/src/engine/courses/BansheeBoardwalk.cpp @@ -1,18 +1,22 @@ +#include #include #include +#include #include #include #include "BansheeBoardwalk.h" #include "World.h" +#include "align_asset_macro.h" #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" #include "engine/objects/CheepCheep.h" #include "engine/objects/TrashBin.h" #include "engine/objects/Bat.h" #include "engine/objects/Boos.h" -#include "assets/banshee_boardwalk_data.h" -#include "assets/boo_frames.h" +#include "assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h" +#include "assets/other/tracks/banshee_boardwalk/banshee_boardwalk_data.h" +#include "assets/textures/boo_frames.h" extern "C" { #include "main.h" @@ -28,47 +32,17 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" #include "course.h" -extern const char *banshee_boardwalk_dls[]; +extern const char *banshee_boardwalk_dls[100]; } -const course_texture banshee_boardwalk_textures[] = { - { gTexture6447C4, 0x0106, 0x0800, 0x0 }, - { gTexture676FB0, 0x0525, 0x0800, 0x0 }, - { gTexture643B3C, 0x0798, 0x0800, 0x0 }, - { gTexture64BB60, 0x0169, 0x0800, 0x0 }, - { gTexture64BCCC, 0x0450, 0x0800, 0x0 }, - { gTexture64FBF4, 0x0274, 0x0800, 0x0 }, - { gTexture651B20, 0x041D, 0x0800, 0x0 }, - { gTexture66262C, 0x02F7, 0x0800, 0x0 }, - { gTexture668728, 0x01F5, 0x0800, 0x0 }, - { gTexture66A3DC, 0x07C5, 0x0800, 0x0 }, - { gTexture66CA98, 0x02C9, 0x0800, 0x0 }, - { gTexture66CD64, 0x02C0, 0x0800, 0x0 }, - { gTexture66D698, 0x0370, 0x0800, 0x0 }, - { gTexture66E608, 0x05E8, 0x0800, 0x0 }, - { gTexture67B388, 0x03D2, 0x0800, 0x0 }, - { gTextureSignWelcome0, 0x0A2E, 0x1000, 0x0 }, - { gTextureSignWelcome1, 0x0A0A, 0x1000, 0x0 }, - { gTextureSignWoodenBack0, 0x06EF, 0x1000, 0x0 }, - { gTextureSignWoodenBack1, 0x06D1, 0x1000, 0x0 }, - { gTextureSignWoodRedArrow, 0x04E1, 0x1000, 0x0 }, - { gTexture68D940, 0x057D, 0x0800, 0x0 }, - { gTexture685AC0, 0x07CC, 0x1000, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - BansheeBoardwalk::BansheeBoardwalk() { - this->vtx = d_course_banshee_boardwalk_vertex; - this->gfx = d_course_banshee_boardwalk_packed_dls; - this->gfxSize = 3689; - Props.textures = banshee_boardwalk_textures; Props.Minimap.Texture = minimap_banshee_boardwalk; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -141,24 +115,44 @@ BansheeBoardwalk::BansheeBoardwalk() { Props.Sequence = MusicSeq::MUSIC_SEQ_BANSHEE_BOARDWALK; Props.WaterLevel = -80.0f; - for (size_t i = 0; i < 100; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) banshee_boardwalk_dls[i], Props.textures); - } } void BansheeBoardwalk::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(banshee_boardwalk_dls); i++) { + InvertTriangleWindingByName(banshee_boardwalk_dls[i]); + } + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_7228); + + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_5CD0); + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_4E60); + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_69B0); + + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_580); + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_60); + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_540); + + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_6310); + + InvertTriangleWindingByName(d_course_banshee_boardwalk_dl_B278); + + // transparent DLs + InvertTriangleWindingByName(d_course_banshee_boardwalk_packed_dl_878); + } + D_800DC5BC = 1; D_801625EC = 0; D_801625F4 = 0; D_801625F0 = 0; - parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_banshee_boardwalk_track_sections)); + parse_course_displaylists((TrackSections*) LOAD_ASSET_RAW(d_course_banshee_boardwalk_track_sections)); func_80295C6C(); - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07000878), 128, 0, 0, 0); + find_vtx_and_set_colours((Gfx*) d_course_banshee_boardwalk_packed_dl_878, 128, 0, 0, 0); } -void BansheeBoardwalk::LoadTextures() { +void BansheeBoardwalk::UnLoad() { + RestoreTriangleWinding(); } void BansheeBoardwalk::BeginPlay() { @@ -264,7 +258,7 @@ void BansheeBoardwalk::Render(struct UnkStruct_800DC5EC* arg0) { gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); gDPSetCombineMode(gDisplayListHead++, G_CC_DECALRGBA, G_CC_DECALRGBA); // d_course_banshee_boardwalk_packed_dl_7228 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07007228))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_7228); gSPFogPosition(gDisplayListHead++, D_802B87B0, D_802B87B4); @@ -279,11 +273,11 @@ void BansheeBoardwalk::Render(struct UnkStruct_800DC5EC* arg0) { gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); // d_course_banshee_boardwalk_packed_dl_5CD0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07005CD0))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_5CD0); // d_course_banshee_boardwalk_packed_dl_4E60 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07004E60))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_4E60); // d_course_banshee_boardwalk_packed_dl_69B0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x070069B0))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_69B0); render_course_segments(banshee_boardwalk_dls, arg0); @@ -293,15 +287,15 @@ void BansheeBoardwalk::Render(struct UnkStruct_800DC5EC* arg0) { gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); gSPSetGeometryMode(gDisplayListHead++, G_SHADE | G_SHADING_SMOOTH); // d_course_banshee_boardwalk_packed_dl_580 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07000580))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_580); // d_course_banshee_boardwalk_packed_dl_60 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07000060))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_60); // d_course_banshee_boardwalk_packed_dl_540 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07000540))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_540); if (camera->pos[1] < -20.0f) { // d_course_banshee_boardwalk_packed_dl_6310 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07006310))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_6310); } spA8[0] = camera->pos[0]; spA8[1] = -82.0f; @@ -347,13 +341,13 @@ void BansheeBoardwalk::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pat gDPSetBlendMask(gDisplayListHead++, 0xFF); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); // d_course_banshee_boardwalk_packed_dl_878 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*) 0x07000878)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_banshee_boardwalk_packed_dl_878); gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); gDPPipeSync(gDisplayListHead++); } void BansheeBoardwalk::CreditsSpawnActors() { - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000878), 0x32, 0, 0, 0); + find_vtx_and_set_colours((Gfx*) d_course_banshee_boardwalk_packed_dl_878, 0x32, 0, 0, 0); } void BansheeBoardwalk::Destroy() { diff --git a/src/engine/courses/BansheeBoardwalk.h b/src/engine/courses/BansheeBoardwalk.h index cc5b72213..a299709db 100644 --- a/src/engine/courses/BansheeBoardwalk.h +++ b/src/engine/courses/BansheeBoardwalk.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/banshee_boardwalk_vertices.h" - #include "assets/banshee_boardwalk_displaylists.h" - #include "assets/banshee_boardwalk_data.h" + #include "assets/models/tracks/banshee_boardwalk/banshee_boardwalk_vertices.h" + #include "assets/models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists.h" + #include "assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; //virtual void InitClouds() override; virtual void InitCourseObjects() override; diff --git a/src/engine/courses/BigDonut.cpp b/src/engine/courses/BigDonut.cpp index 1c8fd5b76..b5c6bbff3 100644 --- a/src/engine/courses/BigDonut.cpp +++ b/src/engine/courses/BigDonut.cpp @@ -6,7 +6,8 @@ #include "BigDonut.h" #include "World.h" #include "engine/objects/BombKart.h" -#include "assets/big_donut_data.h" +#include "assets/models/tracks/big_donut/big_donut_data.h" +#include "assets/other/tracks/big_donut/big_donut_data.h" extern "C" { #include "main.h" @@ -22,27 +23,16 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" -extern const char* big_donut_dls[]; extern s16 currentScreenSection; } -const course_texture big_donut_textures[] = { - { gTexture66ABA4, 0x0312, 0x0800, 0x0 }, { gTexture6747C4, 0x0145, 0x0800, 0x0 }, - { gTexture67490C, 0x021C, 0x0800, 0x0 }, { gTexture64BA50, 0x0110, 0x0800, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - BigDonut::BigDonut() { - this->vtx = d_course_big_donut_vertex; - this->gfx = d_course_big_donut_packed_dls; - this->gfxSize = 528; - Props.textures = big_donut_textures; Props.Minimap.Texture = minimap_big_donut; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -114,20 +104,30 @@ BigDonut::BigDonut() { void BigDonut::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + InvertTriangleWindingByName(d_course_big_donut_packed_dl_DE8); + InvertTriangleWindingByName(d_course_big_donut_packed_dl_450); + InvertTriangleWindingByName(d_course_big_donut_packed_dl_AC0); + InvertTriangleWindingByName(d_course_big_donut_packed_dl_D20); + InvertTriangleWindingByName(d_course_big_donut_packed_dl_230); + } // d_course_big_donut_packed_dl_1018 - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*) 0x07001018), 6); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_big_donut_packed_dl_1018, 6); // d_course_big_donut_packed_dl_450 - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*) 0x07000450), 6); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_big_donut_packed_dl_450, 6); // d_course_big_donut_packed_dl_AC0 - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*) 0x07000AC0), 6); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_big_donut_packed_dl_AC0, 6); // d_course_big_donut_packed_dl_B58 - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*) 0x07000B58), 6); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_big_donut_packed_dl_B58, 6); // d_course_big_donut_packed_dl_230 - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*) 0x07000230), 6); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_big_donut_packed_dl_230, 6); func_80295C6C(); } +void BigDonut::UnLoad() { +} + void BigDonut::BeginPlay() { spawn_all_item_boxes((ActorSpawnData*) LOAD_ASSET_RAW(d_course_big_donut_item_box_spawns)); @@ -153,16 +153,16 @@ void BigDonut::Render(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_big_donut_packed_dl_DE8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*) 0x07000DE8))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_big_donut_packed_dl_DE8); } // d_course_big_donut_packed_dl_450 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*) 0x07000450))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_big_donut_packed_dl_450); // d_course_big_donut_packed_dl_AC0 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*) 0x07000AC0))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_big_donut_packed_dl_AC0); // d_course_big_donut_packed_dl_D20 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*) 0x07000D20))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_big_donut_packed_dl_D20); // d_course_big_donut_packed_dl_230 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*) 0x07000230))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_big_donut_packed_dl_230); } void BigDonut::RenderCredits() { diff --git a/src/engine/courses/BigDonut.h b/src/engine/courses/BigDonut.h index bc10105e1..751d3cbcb 100644 --- a/src/engine/courses/BigDonut.h +++ b/src/engine/courses/BigDonut.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/big_donut_vertices.h" - #include "assets/big_donut_displaylists.h" - #include "assets/big_donut_data.h" + #include "assets/models/tracks/big_donut/big_donut_vertices.h" + #include "assets/models/tracks/big_donut/big_donut_displaylists.h" + #include "assets/models/tracks/big_donut/big_donut_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -22,6 +22,7 @@ public: explicit BigDonut(); virtual void Load() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void Render(struct UnkStruct_800DC5EC*) override; virtual void RenderCredits() override; diff --git a/src/engine/courses/BlockFort.cpp b/src/engine/courses/BlockFort.cpp index 0ec9cb555..a80e4a619 100644 --- a/src/engine/courses/BlockFort.cpp +++ b/src/engine/courses/BlockFort.cpp @@ -5,8 +5,10 @@ #include "BlockFort.h" #include "World.h" +#include "align_asset_macro.h" #include "engine/objects/BombKart.h" -#include "assets/block_fort_data.h" +#include "assets/models/tracks/block_fort/block_fort_data.h" +#include "assets/other/tracks/block_fort/block_fort_data.h" extern "C" { #include "main.h" @@ -22,29 +24,17 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" #include "course_offsets.h" -extern const char* block_fort_dls[]; extern s16 currentScreenSection; } -const course_texture block_fort_textures[] = { - { gTexture64286C, 0x010A, 0x0800, 0x0 }, { gTextureGrayCheckerboard, 0x010C, 0x0800, 0x0 }, - { gTextureGrayCobblestone, 0x010C, 0x0800, 0x0 }, { gTexture64275C, 0x0110, 0x0800, 0x0 }, - { gTexture642978, 0x010D, 0x0800, 0x0 }, { gTexture6747C4, 0x0145, 0x0800, 0x0 }, - { gTexture6442D4, 0x0138, 0x0800, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - BlockFort::BlockFort() { - this->vtx = d_course_block_fort_vertex; - this->gfx = d_course_block_fort_packed_dls; - this->gfxSize = 699; - Props.textures = block_fort_textures; Props.Minimap.Texture = minimap_block_fort; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -118,11 +108,17 @@ BlockFort::BlockFort() { void BlockFort::Load() { Course::Load(); - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*) 0x070015C0), 1); + if (gIsMirrorMode != 0) { + InvertTriangleWindingByName(d_course_block_fort_packed_dl_15C0); + } + generate_collision_mesh_with_default_section_id((Gfx*) d_course_block_fort_packed_dl_15C0, 1); func_80295C6C(); Props.WaterLevel = gCourseMinY - 10.0f; } +void BlockFort::UnLoad() { +} + void BlockFort::BeginPlay() { spawn_all_item_boxes((ActorSpawnData*) LOAD_ASSET_RAW(d_course_block_fort_item_box_spawns)); @@ -143,7 +139,7 @@ void BlockFort::Render(struct UnkStruct_800DC5EC* arg0) { gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); // d_course_block_fort_packed_dl_15C0 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*) 0x070015C0))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_block_fort_packed_dl_15C0); } void BlockFort::Waypoints(Player* player, int8_t playerId) { diff --git a/src/engine/courses/BlockFort.h b/src/engine/courses/BlockFort.h index f0e4c6aa6..296809b03 100644 --- a/src/engine/courses/BlockFort.h +++ b/src/engine/courses/BlockFort.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/block_fort_vertices.h" - #include "assets/block_fort_displaylists.h" - #include "assets/block_fort_data.h" + #include "assets/models/tracks/block_fort/block_fort_vertices.h" + #include "assets/models/tracks/block_fort/block_fort_displaylists.h" + #include "assets/models/tracks/block_fort/block_fort_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,6 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void Render(struct UnkStruct_800DC5EC*) override; virtual void Waypoints(Player*, int8_t) override; diff --git a/src/engine/courses/BowsersCastle.cpp b/src/engine/courses/BowsersCastle.cpp index 9258683ce..32550a636 100644 --- a/src/engine/courses/BowsersCastle.cpp +++ b/src/engine/courses/BowsersCastle.cpp @@ -4,12 +4,14 @@ #include #include "BowsersCastle.h" +#include "align_asset_macro.h" #include "engine/World.h" #include "engine/courses/Course.h" #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" #include "engine/objects/Thwomp.h" -#include "bowsers_castle_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_data.h" +#include "assets/other/tracks/bowsers_castle/bowsers_castle_data.h" extern "C" { #include "main.h" @@ -25,7 +27,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -33,46 +35,10 @@ extern "C" { #include "code_8003DC40.h" #include "memory.h" #include "course.h" - extern const char *bowsers_castle_dls[]; + extern const char *bowsers_castle_dls[108]; } -const course_texture bowsers_castle_textures[] = { - { gTexture64313C, 0x01B8, 0x0800, 0x0 }, - { gTexture6528DC, 0x0278, 0x0800, 0x0 }, - { gTexture66ED38, 0x010E, 0x0800, 0x0 }, - { gTexture676C6C, 0x0110, 0x0800, 0x0 }, - { gTexture676EA8, 0x0108, 0x0800, 0x0 }, - { gTexture679D34, 0x0106, 0x0800, 0x0 }, - { gTextureGrass6, 0x023B, 0x0800, 0x0 }, - { gTexture6522E0, 0x05FC, 0x0800, 0x0 }, - { gTexture651F40, 0x039F, 0x0800, 0x0 }, - { gTextureRoofTile, 0x0129, 0x0800, 0x0 }, - { gTextureSignBowser0, 0x07D0, 0x1000, 0x0 }, - { gTextureSignBowser1, 0x064D, 0x1000, 0x0 }, - { gTexture66ABA4, 0x0312, 0x0800, 0x0 }, - { gTexture66EBF0, 0x0146, 0x0800, 0x0 }, - { gTexture6733CC, 0x020E, 0x0800, 0x0 }, - { gTexture673118, 0x02B1, 0x0800, 0x0 }, - { gTexture673FF8, 0x035B, 0x0800, 0x0 }, - { gTexture674B28, 0x0230, 0x0800, 0x0 }, - { gTextureSignGreenArrow, 0x025B, 0x1000, 0x0 }, - { gTexture68D834, 0x010A, 0x0800, 0x0 }, - { gTexture676D7C, 0x012C, 0x0800, 0x0 }, - { gTexture67ADF0, 0x0595, 0x0800, 0x0 }, - { gTexture67EFEC, 0x016F, 0x0800, 0x0 }, - { gTexture653DB0, 0x06AE, 0x0800, 0x0 }, - { gTexture66CA98, 0x02C9, 0x0800, 0x0 }, - { gTexture673990, 0x02D8, 0x0800, 0x0 }, - { gTexture67A370, 0x05AA, 0x0800, 0x0 }, - { gTexture67A91C, 0x04D1, 0x0800, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - BowsersCastle::BowsersCastle() { - this->vtx = d_course_bowsers_castle_vertex; - this->gfx = d_course_bowsers_castle_packed_dls; - this->gfxSize = 4900; - Props.textures = bowsers_castle_textures; Props.Minimap.Texture = minimap_bowsers_castle; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -146,21 +112,28 @@ BowsersCastle::BowsersCastle() { Props.WaterLevel = -50.0f; WaterVolumes.push_back({20.0f, 1549.0f, 1859.0f, -1402.0f, -1102.0f}); - for (size_t i = 0; i < 108; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) bowsers_castle_dls[i], Props.textures); - } } void BowsersCastle::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(bowsers_castle_dls); i++) { + InvertTriangleWindingByName(bowsers_castle_dls[i]); + } + InvertTriangleWindingByName(d_course_bowsers_castle_packed_dl_6A80); + + InvertTriangleWindingByName(d_course_bowsers_castle_packed_dl_248); + + InvertTriangleWindingByName(d_course_bowsers_castle_dl_9228); + } parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_bowsers_castle_addr)); func_80295C6C(); - find_vtx_and_set_colours(segmented_gfx_to_virtual(reinterpret_cast(0x07001350)), 0x32, 0, 0, 0); + find_vtx_and_set_colours((Gfx*) d_course_bowsers_castle_packed_dl_1350, 0x32, 0, 0, 0); } -void BowsersCastle::LoadTextures() { - dma_textures(gTextureShrub, 0x000003FFU, 0x00000800U); // 0x03009000 +void BowsersCastle::UnLoad() { + RestoreTriangleWinding(); } void BowsersCastle::BeginPlay() { @@ -297,7 +270,7 @@ void BowsersCastle::Render(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_bowsers_castle_packed_dl_6A80 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07006A80))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_bowsers_castle_packed_dl_6A80); } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); @@ -312,7 +285,7 @@ void BowsersCastle::Render(struct UnkStruct_800DC5EC* arg0) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); // d_course_bowsers_castle_packed_dl_248 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07000248))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_bowsers_castle_packed_dl_248); } void BowsersCastle::RenderCredits() { @@ -360,7 +333,7 @@ void BowsersCastle::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCo } void BowsersCastle::CreditsSpawnActors() { - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07001350), 0x32, 0, 0, 0); + find_vtx_and_set_colours((Gfx*) d_course_bowsers_castle_packed_dl_1350, 0x32, 0, 0, 0); } void BowsersCastle::Destroy() { diff --git a/src/engine/courses/BowsersCastle.h b/src/engine/courses/BowsersCastle.h index b52af2a26..5f62cd320 100644 --- a/src/engine/courses/BowsersCastle.h +++ b/src/engine/courses/BowsersCastle.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/bowsers_castle_vertices.h" - #include "assets/bowsers_castle_displaylists.h" - #include "assets/bowsers_castle_data.h" + #include "assets/models/tracks/bowsers_castle/bowsers_castle_vertices.h" + #include "assets/models/tracks/bowsers_castle/bowsers_castle_displaylists.h" + #include "assets/models/tracks/bowsers_castle/bowsers_castle_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; void SpawnStockThwomp(); virtual void BeginPlay() override; //virtual void InitClouds() override; diff --git a/src/engine/courses/ChocoMountain.cpp b/src/engine/courses/ChocoMountain.cpp index 8fa1c1d19..e04aa825f 100644 --- a/src/engine/courses/ChocoMountain.cpp +++ b/src/engine/courses/ChocoMountain.cpp @@ -5,8 +5,10 @@ #include "ChocoMountain.h" #include "World.h" +#include "align_asset_macro.h" #include "engine/objects/BombKart.h" -#include "choco_mountain_data.h" +#include "assets/models/tracks/choco_mountain/choco_mountain_data.h" +#include "assets/other/tracks/choco_mountain/choco_mountain_data.h" #include "engine/actors/Finishline.h" #include "engine/actors/FallingRock.h" @@ -24,7 +26,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -33,38 +35,10 @@ extern "C" { #include "memory.h" #include "course_offsets.h" #include "course.h" - extern const char *choco_mountain_dls[]; + extern const char *choco_mountain_dls[96]; } -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, 0x0287, 0x1000, 0x0 }, - { gTextureSignLuigis1, 0x02AF, 0x1000, 0x0 }, - { gTextureSignNintendoRed0, 0x02A6, 0x1000, 0x0 }, - { gTextureSignNintendoRed1, 0x02F7, 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, 0x04DF, 0x1000, 0x0 }, - { gTextureCheckerboardBlueGray, 0x04A1, 0x1000, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - ChocoMountain::ChocoMountain() { - this->vtx = d_course_choco_mountain_vertex; - this->gfx = d_course_choco_mountain_packed_dls; - this->gfxSize = 2910; - Props.textures = choco_mountain_textures; Props.Minimap.Texture = minimap_choco_mountain; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -136,13 +110,24 @@ ChocoMountain::ChocoMountain() { Props.Sequence = MusicSeq::MUSIC_SEQ_CHOCO_MOUNTAIN; Props.WaterLevel = -80.0f; - for (size_t i = 0; i < 96; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) choco_mountain_dls[i], Props.textures); - } } void ChocoMountain::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(choco_mountain_dls); i++) { + InvertTriangleWindingByName(choco_mountain_dls[i]); + } + InvertTriangleWindingByName(d_course_choco_mountain_packed_dl_4608); + + InvertTriangleWindingByName(d_course_choco_mountain_packed_dl_5A70); + InvertTriangleWindingByName(d_course_choco_mountain_packed_dl_828); + InvertTriangleWindingByName(d_course_choco_mountain_packed_dl_8E0); + InvertTriangleWindingByName(d_course_choco_mountain_packed_dl_5868); + InvertTriangleWindingByName(d_course_choco_mountain_packed_dl_448); + InvertTriangleWindingByName(d_course_choco_mountain_packed_dl_5D8); + InvertTriangleWindingByName(d_course_choco_mountain_packed_dl_718); + } D_800DC5BC = 1; D_801625EC = 255; D_801625F4 = 255; @@ -155,17 +140,17 @@ void ChocoMountain::Load() { // Spawn guardrail only for CC_50 and time trials. if ((gCCSelection != CC_50) && (gModeSelection != TIME_TRIALS)) { // d_course_choco_mountain_packed_dl_0 - nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(reinterpret_cast(0x07000000))); + nullify_displaylist((uintptr_t) LOAD_ASSET_RAW(d_course_choco_mountain_packed_dl_0)); // d_course_choco_mountain_packed_dl_98 - nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(reinterpret_cast(0x07000098))); + nullify_displaylist((uintptr_t) LOAD_ASSET_RAW(d_course_choco_mountain_packed_dl_98)); // d_course_choco_mountain_packed_dl_178 - nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(reinterpret_cast(0x07000178))); + nullify_displaylist((uintptr_t) LOAD_ASSET_RAW(d_course_choco_mountain_packed_dl_178)); // d_course_choco_mountain_packed_dl_280 - nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(reinterpret_cast(0x07000280))); + nullify_displaylist((uintptr_t) LOAD_ASSET_RAW(d_course_choco_mountain_packed_dl_280)); // d_course_choco_mountain_packed_dl_340 - nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(reinterpret_cast(0x07000340))); + nullify_displaylist((uintptr_t) LOAD_ASSET_RAW(d_course_choco_mountain_packed_dl_340)); // d_course_choco_mountain_packed_dl_3C8 - nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(reinterpret_cast(0x070003C8))); + nullify_displaylist((uintptr_t) LOAD_ASSET_RAW(d_course_choco_mountain_packed_dl_3C8)); } parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_choco_mountain_addr)); @@ -173,7 +158,8 @@ void ChocoMountain::Load() { func_80295C6C(); } -void ChocoMountain::LoadTextures() { +void ChocoMountain::UnLoad() { + RestoreTriangleWinding(); } void ChocoMountain::BeginPlay() { @@ -248,7 +234,7 @@ void ChocoMountain::Render(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_choco_mountain_packed_dl_4608 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07004608))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_choco_mountain_packed_dl_4608); } gDPSetCycleType(gDisplayListHead++, G_CYC_2CYCLE); gDPSetFogColor(gDisplayListHead++, D_801625EC, D_801625F4, D_801625F0, 0xFF); @@ -261,13 +247,13 @@ void ChocoMountain::Render(struct UnkStruct_800DC5EC* arg0) { gDPSetRenderMode(gDisplayListHead++, G_RM_FOG_SHADE_A, G_RM_AA_ZB_OPA_SURF2); gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); // d_course_choco_mountain_packed_dl_5A70 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07005A70))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_choco_mountain_packed_dl_5A70); // d_course_choco_mountain_packed_dl_828 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07000828))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_choco_mountain_packed_dl_828); // d_course_choco_mountain_packed_dl_8E0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x070008E0))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_choco_mountain_packed_dl_8E0); // d_course_choco_mountain_packed_dl_5868 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07005868))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_choco_mountain_packed_dl_5868); gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); render_course_segments(choco_mountain_dls, arg0); @@ -276,12 +262,12 @@ void ChocoMountain::Render(struct UnkStruct_800DC5EC* arg0) { gDPSetRenderMode(gDisplayListHead++, G_RM_FOG_SHADE_A, G_RM_AA_ZB_TEX_EDGE2); gDPSetCombineMode(gDisplayListHead++, G_CC_DECALRGBA, G_CC_PASS2); // d_course_choco_mountain_packed_dl_448 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07000448))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_choco_mountain_packed_dl_448); // d_course_choco_mountain_packed_dl_5D8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x070005D8))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_choco_mountain_packed_dl_5D8); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); // d_course_choco_mountain_packed_dl_718 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07000718))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_choco_mountain_packed_dl_718); gSPClearGeometryMode(gDisplayListHead++, G_FOG); gDPSetCycleType(gDisplayListHead++, G_CYC_1CYCLE); gDPPipeSync(gDisplayListHead++); diff --git a/src/engine/courses/ChocoMountain.h b/src/engine/courses/ChocoMountain.h index b592ba9df..45df1ed5b 100644 --- a/src/engine/courses/ChocoMountain.h +++ b/src/engine/courses/ChocoMountain.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/choco_mountain_vertices.h" - #include "assets/choco_mountain_displaylists.h" - #include "assets/choco_mountain_data.h" + #include "assets/models/tracks/choco_mountain/choco_mountain_vertices.h" + #include "assets/models/tracks/choco_mountain/choco_mountain_displaylists.h" + #include "assets/models/tracks/choco_mountain/choco_mountain_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitCourseObjects() override; virtual void SomeSounds() override; diff --git a/src/engine/courses/Course.cpp b/src/engine/courses/Course.cpp index 3ad991f0a..2cc812d9f 100644 --- a/src/engine/courses/Course.cpp +++ b/src/engine/courses/Course.cpp @@ -1,4 +1,7 @@ #include +#include +#include +#include #include "Course.h" #include "MarioRaceway.h" @@ -8,6 +11,8 @@ #include "port/resource/type/TrackSections.h" #include "engine/editor/SceneManager.h" #include "Registry.h" +#include "resourcebridge.h" +#include "align_asset_macro.h" extern "C" { #include "main.h" @@ -17,7 +22,7 @@ extern "C" { #include "some_data.h" #include "code_8006E9C0.h" #include "code_8003DC40.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" #include "render_objects.h" #include "save.h" #include "replays.h" @@ -40,6 +45,204 @@ void ResizeMinimap(MinimapProps* minimap) { } } +static std::unordered_set gModifiedGfxSet; + +static void SwapTriangleVertices(Gfx* cmd) { + int8_t opcode = cmd->words.w0 >> 24; + + if (opcode == G_TRI1) { + uint32_t w1 = cmd->words.w1; + uint8_t v0 = (w1 >> 16) & 0xFF; + uint8_t v1 = (w1 >> 8) & 0xFF; + uint8_t v2 = w1 & 0xFF; + + cmd->words.w1 = (v0 << 16) | (v2 << 8) | v1; + } + else if (opcode == G_TRI1_OTR) { + uint32_t w0 = cmd->words.w0; + uint32_t w1 = cmd->words.w1; + uint16_t v0 = w0 & 0xFFFF; + uint16_t v1 = (w1 >> 16) & 0xFFFF; + uint16_t v2 = w1 & 0xFFFF; + + cmd->words.w0 = (opcode << 24) | v0; + cmd->words.w1 = (v2 << 16) | v1; + } + else if (opcode == G_TRI2 || opcode == G_QUAD) { + uint32_t w0 = cmd->words.w0; + uint8_t v0_a = (w0 >> 16) & 0xFF; + uint8_t v1_a = (w0 >> 8) & 0xFF; + uint8_t v2_a = w0 & 0xFF; + + uint32_t w1 = cmd->words.w1; + uint8_t v0_b = (w1 >> 16) & 0xFF; + uint8_t v1_b = (w1 >> 8) & 0xFF; + uint8_t v2_b = w1 & 0xFF; + + cmd->words.w0 = (opcode << 24) | (v0_a << 16) | (v2_a << 8) | v1_a; + cmd->words.w1 = (v0_b << 16) | (v2_b << 8) | v1_b; + } +} + +static void InvertTriangleWindingInternal(Gfx* gfx, const char* gfxName, bool shouldSwap) { + if (gfx == nullptr) { + return; + } + + if (GameEngine_OTRSigCheck((char*)gfx)) { + gfx = (Gfx*)LOAD_ASSET(gfx); + } + + if (gfxName != nullptr) { + std::string nameStr(gfxName); + if (gModifiedGfxSet.find(nameStr) != gModifiedGfxSet.end()) { + return; + } + gModifiedGfxSet.insert(nameStr); + } + + Gfx* cmd = gfx; + + for (int i = 0; i < 0x1FFF; i++) { + int8_t opcode = cmd->words.w0 >> 24; + + switch (opcode) { + case G_TRI1: + case G_TRI1_OTR: + case G_TRI2: + case G_QUAD: + if (shouldSwap) { + SwapTriangleVertices(cmd); + } + break; + case G_DL: { + Gfx* subDL = (Gfx*)(uintptr_t)cmd->words.w1; + InvertTriangleWindingInternal(subDL, nullptr, shouldSwap); + break; + } + case G_DL_OTR_HASH: { + cmd++; + i++; + uint64_t hash = ((uint64_t)cmd->words.w0 << 32) | cmd->words.w1; + const char* name = ResourceGetNameByCrc(hash); + if (name != nullptr) { + bool subShouldSwap = (strstr(name, "packed") != nullptr); + Gfx* subDL = (Gfx*)ResourceGetDataByCrc(hash); + InvertTriangleWindingInternal(subDL, name, subShouldSwap); + } + break; + } + case G_DL_OTR_FILEPATH: { + const char* name = (const char*)(uintptr_t)cmd->words.w1; + if (name != nullptr) { + bool subShouldSwap = (strstr(name, "packed") != nullptr); + Gfx* subDL = (Gfx*)ResourceGetDataByName(name); + InvertTriangleWindingInternal(subDL, name, subShouldSwap); + } + break; + } + case G_VTX_OTR_FILEPATH: + case G_VTX_OTR_HASH: + cmd++; + i++; + break; + case G_MARKER: { + cmd++; + i++; + uint64_t hash = ((uint64_t)cmd->words.w0 << 32) | cmd->words.w1; + const char* name = ResourceGetNameByCrc(hash); + if (name != nullptr && gfxName == nullptr) { + std::string nameStr(name); + if (gModifiedGfxSet.find(nameStr) != gModifiedGfxSet.end()) { + return; + } + gModifiedGfxSet.insert(nameStr); + shouldSwap = (strstr(name, "packed") != nullptr); + } + break; + } + case G_MTX_OTR: + case G_SETTIMG_OTR_HASH: + cmd++; + i++; + break; + case G_ENDDL: + return; + default: + break; + } + + cmd++; + } +} + +void InvertTriangleWinding(Gfx* gfx) { + InvertTriangleWindingInternal(gfx, nullptr, false); +} + +void InvertTriangleWindingByName(const char* name) { + if (name == nullptr) { + return; + } + Gfx* gfx = (Gfx*)ResourceGetDataByName(name); + bool shouldSwap = (strstr(name, "packed") != nullptr); + InvertTriangleWindingInternal(gfx, name, shouldSwap); +} + +void RestoreTriangleWinding() { + for (const std::string& name : gModifiedGfxSet) { + if (strstr(name.c_str(), "packed") == nullptr) { + continue; + } + + Gfx* gfx = (Gfx*)ResourceGetDataByName(name.c_str()); + if (gfx == nullptr) { + continue; + } + + Gfx* cmd = gfx; + + for (int i = 0; i < 0x1FFF; i++) { + int8_t opcode = cmd->words.w0 >> 24; + + switch (opcode) { + case G_TRI1: + case G_TRI1_OTR: + case G_TRI2: + case G_QUAD: + SwapTriangleVertices(cmd); + break; + + case G_DL_OTR_HASH: + case G_VTX_OTR_FILEPATH: + case G_VTX_OTR_HASH: + case G_MARKER: + case G_MTX_OTR: + case G_SETTIMG_OTR_HASH: + cmd++; + i++; + break; + + case G_ENDDL: + goto next_gfx; + + default: + break; + } + + cmd++; + } + next_gfx:; + } + + gModifiedGfxSet.clear(); +} + +bool IsTriangleWindingInverted() { + return !gModifiedGfxSet.empty(); +} + + Course::Course() { Props.SetText(Props.Name, "Blank Track", sizeof(Props.Name)); Props.SetText(Props.DebugName, "blnktrck", sizeof(Props.DebugName)); @@ -111,12 +314,12 @@ Course::Course() { // Load custom track from code void Course::Load(Vtx* vtx, Gfx* gfx) { - gSegmentTable[4] = reinterpret_cast(&vtx[0]); - gSegmentTable[7] = reinterpret_cast(&gfx[0]); - Course::Init(); } +void Course::UnLoad() { +} + void Course::LoadO2R(std::string trackPath) { if (!trackPath.empty()) { SceneFilePtr = (trackPath + "/scene.json"); @@ -161,7 +364,7 @@ void Course::Load() { bIsMod = true; // auto res = std::dynamic_pointer_cast(ResourceLoad(TrackSectionsPtr.c_str())); - TrackSectionsO2R* sections = (TrackSectionsO2R*) LOAD_ASSET_RAW(TrackSectionsPtr.c_str()); + TrackSections* sections = (TrackSections*) LOAD_ASSET_RAW(TrackSectionsPtr.c_str()); size_t size = ResourceGetSizeByName(TrackSectionsPtr.c_str()); if (sections != nullptr) { @@ -178,55 +381,13 @@ void Course::Load() { return; } - // Stock - size_t vtxSize = (ResourceGetSizeByName(this->vtx) / sizeof(CourseVtx)) * sizeof(Vtx); - size_t texSegSize; - - // Convert course vtx to vtx - Vtx* vtx = reinterpret_cast(allocate_memory(vtxSize)); - gSegmentTable[4] = reinterpret_cast(&vtx[0]); - func_802A86A8(reinterpret_cast(LOAD_ASSET_RAW(this->vtx)), vtx, vtxSize / sizeof(Vtx)); - - // Load and allocate memory for course textures - const course_texture* asset = this->Props.textures; - u8* freeMemory = NULL; - u8* texture = NULL; - size_t size = 0; - texSegSize = 0; - while (asset->addr) { - size = ResourceGetTexSizeByName(asset->addr); - freeMemory = (u8*) allocate_memory(size); - - texture = (u8*) (asset->addr); - if (texture) { - if (asset == &this->Props.textures[0]) { - gSegmentTable[5] = reinterpret_cast(&freeMemory[0]); - } - strcpy(reinterpret_cast(freeMemory), asset->addr); - // memcpy(freeMemory, texture, size); - texSegSize += size; - // printf("Texture Addr: 0x%llX, size 0x%X\n", &freeMemory[0], size); - } - asset++; - } - - // Extract packed DLs - u8* packed = reinterpret_cast(LOAD_ASSET_RAW(this->gfx)); - Gfx* gfx = (Gfx*) allocate_memory(sizeof(Gfx) * this->gfxSize); // Size of unpacked DLs - if (gfx == NULL) { - printf("Failed to allocate course displaylist memory\n"); - } - - gSegmentTable[7] = reinterpret_cast(&gfx[0]); - displaylist_unpack(reinterpret_cast(gfx), reinterpret_cast(packed), 0); - Course::Init(); } // C++ version of parse_course_displaylists() -void Course::ParseCourseSections(TrackSectionsO2R* sections, size_t size) { +void Course::ParseCourseSections(TrackSections* sections, size_t size) { printf("\n[Track] Generating Collision Meshes...\n"); - for (size_t i = 0; i < (size / sizeof(TrackSectionsO2R)); i++) { + for (size_t i = 0; i < (size / sizeof(TrackSections)); i++) { if (sections[i].flags & 0x8000) { D_8015F59C = 1; // single-sided wall } else { @@ -242,8 +403,9 @@ void Course::ParseCourseSections(TrackSectionsO2R* sections, size_t size) { } else { D_8015F5A4 = 0; } - printf(" %s\n", sections[i].addr.c_str()); - generate_collision_mesh((Gfx*) LOAD_ASSET_RAW(sections[i].addr.c_str()), sections[i].surfaceType, + const char* name = ResourceGetNameByCrc(sections[i].crc); + printf(" %s\n", name); + generate_collision_mesh((Gfx*) ResourceGetDataByCrc(sections[i].crc), sections[i].surfaceType, sections[i].sectionId); } printf("[Track] Collision Mesh Generation Complete!\n\n"); @@ -268,7 +430,7 @@ void Course::TestPath() { } f32 height = spawn_actor_on_surface(x, 2000.0f, z); - Vec3f itemPos = { x, height, z }; + Vec3f itemPos = { (f32) x, height, (f32) z }; add_actor_to_empty_slot(itemPos, rot, vel, ACTOR_ITEM_BOX); } } @@ -293,9 +455,6 @@ void Course::Init() { D_800DC5C8 = 0; } -void Course::LoadTextures() { -} - void Course::BeginPlay() { printf("[Track] BeginPlay\n"); TestPath(); @@ -388,10 +547,10 @@ void Course::Render(struct UnkStruct_800DC5EC* arg0) { // d_course_big_donut_packed_dl_DE8 } - TrackSectionsO2R* sections = (TrackSectionsO2R*) LOAD_ASSET_RAW(TrackSectionsPtr.c_str()); + TrackSections* sections = (TrackSections*) LOAD_ASSET_RAW(TrackSectionsPtr.c_str()); size_t size = ResourceGetSizeByName(TrackSectionsPtr.c_str()); - for (size_t i = 0; i < (size / sizeof(TrackSectionsO2R)); i++) { - gSPDisplayList(gDisplayListHead++, (Gfx*) LOAD_ASSET_RAW(sections[i].addr.c_str())); + for (size_t i = 0; i < (size / sizeof(TrackSections)); i++) { + gSPDisplayList(gDisplayListHead++, (Gfx*) ResourceGetDataByCrc(sections[i].crc)); } } } @@ -403,7 +562,7 @@ f32 Course::GetWaterLevel(FVector pos, Collision* collision) { float highestWater = -FLT_MAX; bool found = false; - for (const auto& volume : gWorldInstance.CurrentCourse->WaterVolumes) { + for (const auto& volume : gWorldInstance.GetCurrentCourse()->WaterVolumes) { if (pos.x >= volume.MinX && pos.x <= volume.MaxX && pos.z >= volume.MinZ && pos.z <= volume.MaxZ) { // Choose the highest water volume the player is over if (!found || volume.Height > highestWater) { @@ -414,7 +573,7 @@ f32 Course::GetWaterLevel(FVector pos, Collision* collision) { } // If player is not over-top of a water volume then return the courses default water level - return found ? highestWater : gWorldInstance.CurrentCourse->Props.WaterLevel; + return found ? highestWater : gWorldInstance.GetCurrentCourse()->Props.WaterLevel; } void Course::ScrollingTextures() { diff --git a/src/engine/courses/Course.h b/src/engine/courses/Course.h index 80e61fdbd..c1eeb488a 100644 --- a/src/engine/courses/Course.h +++ b/src/engine/courses/Course.h @@ -65,6 +65,12 @@ typedef struct MinimapProps { } MinimapProps; void ResizeMinimap(MinimapProps* minimap); +void ReverseGfx(Gfx* gfx); + +void InvertTriangleWinding(Gfx* gfx); +void InvertTriangleWindingByName(const char* name); +void RestoreTriangleWinding(); +bool IsTriangleWindingInverted(); typedef struct Properties { char Name[128]; @@ -90,7 +96,6 @@ typedef struct Properties { CloudData *Clouds; CloudData *CloudList; SkyboxColours Skybox; - const course_texture* textures; enum MusicSeq Sequence; float WaterLevel; // Used for effects, and Lakitu pick up height. Not necessarily the visual water model height. @@ -302,10 +307,6 @@ public: // Ex. DK Jungle where there's a waterfall and you can drive above and below it. std::vector WaterVolumes; - const char* vtx = nullptr; - const char* gfx = nullptr; - size_t gfxSize = 0; - const course_texture* textures = nullptr; bool bSpawnFinishline = true; std::optional FinishlineSpawnPoint; @@ -324,8 +325,8 @@ public: virtual void LoadO2R(std::string trackPath); // Load custom track from o2r virtual void Load(); // Decompress and load stock courses or from o2r but TrackSectionsPtr must be set. virtual void Load(Vtx* vtx, Gfx *gfx); // Load custom track from code. Load must be overridden and then call to this base class method impl. - virtual void LoadTextures(); - virtual void ParseCourseSections(TrackSectionsO2R* sections, size_t size); + virtual void UnLoad(); + virtual void ParseCourseSections(TrackSections* sections, size_t size); /** * @brief BeginPlay This function is called once at the start of gameplay. @@ -350,6 +351,7 @@ public: virtual void Waypoints(Player* player, int8_t playerId); virtual f32 GetWaterLevel(FVector pos, Collision* collision); virtual void ScrollingTextures(); + // Draw transparent models (water, signs, arrows, etc.) virtual void DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter, uint16_t cameraRot, uint16_t playerDirection); virtual void Destroy(); diff --git a/src/engine/courses/DKJungle.cpp b/src/engine/courses/DKJungle.cpp index 261f4b672..77e5bab88 100644 --- a/src/engine/courses/DKJungle.cpp +++ b/src/engine/courses/DKJungle.cpp @@ -7,7 +7,8 @@ #include "World.h" #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" -#include "assets/dks_jungle_parkway_data.h" +#include "assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h" +#include "assets/other/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h" #include "engine/vehicles/Boat.h" #include "engine/vehicles/Utils.h" @@ -27,7 +28,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -36,43 +37,11 @@ extern "C" { #include "memory.h" #include "sounds.h" #include "course.h" - extern const char *d_course_dks_jungle_parkway_unknown_dl_list[]; + extern const char *d_course_dks_jungle_parkway_unknown_dl_list[105]; extern s16 currentScreenSection; } -const course_texture dks_jungle_parkway_textures[] = { - { gTexture648508, 0x01FE, 0x1000, 0x0 }, - { gTexture6684F8, 0x010D, 0x0800, 0x0 }, - { gTextureWoodBridgeSlats, 0x0DAB, 0x1000, 0x0 }, - { gTexture654460, 0x0B12, 0x1000, 0x0 }, - { gTexture654F74, 0x0A24, 0x1000, 0x0 }, - { gTexture655998, 0x059F, 0x0800, 0x0 }, - { gTexture655F38, 0x0BB9, 0x1000, 0x0 }, - { gTexture656AF4, 0x0AD3, 0x1000, 0x0 }, - { gTexture6575C8, 0x0DA7, 0x1000, 0x0 }, - { gTexture658370, 0x0DBA, 0x1000, 0x0 }, - { gTexture65912C, 0x0DBC, 0x1000, 0x0 }, - { gTexture659EE8, 0x0EF5, 0x1000, 0x0 }, - { gTexture65ADE0, 0x0D5A, 0x1000, 0x0 }, - { gTexture65BB3C, 0x0D9E, 0x1000, 0x0 }, - { gTexture65C8DC, 0x0CF5, 0x1000, 0x0 }, - { gTexture65D5D4, 0x0D18, 0x1000, 0x0 }, - { gTexture65E2EC, 0x02B0, 0x0800, 0x0 }, - { gTexture65EAEC, 0x034A, 0x0800, 0x0 }, - { gTexture65E59C, 0x054F, 0x1000, 0x0 }, - { gTexture65EE38, 0x0CDE, 0x1000, 0x0 }, - { gTexture65FB18, 0x03EE, 0x0800, 0x0 }, - { gTextureSignPinkArrow, 0x0198, 0x0800, 0x0 }, - { gTextureWaves0, 0x04D0, 0x0800, 0x0 }, - { gTexture683844, 0x0655, 0x0800, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - DKJungle::DKJungle() { - this->vtx = d_course_dks_jungle_parkway_vertex; - this->gfx = d_course_dks_jungle_parkway_packed_dls; - this->gfxSize = 4997; - Props.textures = dks_jungle_parkway_textures; Props.Minimap.Texture = minimap_dks_jungle_parkway; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -143,18 +112,30 @@ DKJungle::DKJungle() { Props.Sequence = MusicSeq::MUSIC_SEQ_DK_JUNGLE; Props.WaterLevel = -475.0f; - for (size_t i = 0; i < 104; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) d_course_dks_jungle_parkway_unknown_dl_list[i], Props.textures); - } } void DKJungle::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(d_course_dks_jungle_parkway_unknown_dl_list); i++) { + InvertTriangleWindingByName(d_course_dks_jungle_parkway_unknown_dl_list[i]); + } + InvertTriangleWindingByName(d_course_dks_jungle_parkway_packed_dl_92D8); + InvertTriangleWindingByName(d_course_dks_jungle_parkway_packed_dl_3E40); + InvertTriangleWindingByName(d_course_dks_jungle_parkway_packed_dl_3EB0); + InvertTriangleWindingByName(d_course_dks_jungle_parkway_packed_dl_3DD0); + InvertTriangleWindingByName(d_course_dks_jungle_parkway_packed_dl_36A8); + InvertTriangleWindingByName(d_course_dks_jungle_parkway_packed_dl_3F30); + } parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_dks_jungle_parkway_addr)); func_80295C6C(); // d_course_dks_jungle_parkway_packed_dl_3FA8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07003FA8), 120, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_dks_jungle_parkway_packed_dl_3FA8, 120, 255, 255, 255); +} + +void DKJungle::UnLoad() { + RestoreTriangleWinding(); } f32 DKJungle::GetWaterLevel(FVector pos, Collision* collision) { @@ -188,12 +169,6 @@ f32 DKJungle::GetWaterLevel(FVector pos, Collision* collision) { return -33.9f; } -void DKJungle::LoadTextures() { - dma_textures(gTextureDksJungleParkwayKiwanoFruit1, 0x0000032FU, 0x00000400U); // 0x03009000 - dma_textures(gTextureDksJungleParkwayKiwanoFruit2, 0x00000369U, 0x00000400U); // 0x03009800 - dma_textures(gTextureDksJungleParkwayKiwanoFruit3, 0x00000364U, 0x00000400U); // 0x0300A000 -} - void DKJungle::BeginPlay() { spawn_all_item_boxes((struct ActorSpawnData*)LOAD_ASSET_RAW(d_course_dks_jungle_parkway_item_box_spawns)); @@ -299,7 +274,7 @@ void DKJungle::Render(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_dks_jungle_parkway_packed_dl_92D8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x070092D8))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_92D8); } gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); @@ -336,26 +311,25 @@ void DKJungle::ScrollingTextures() { D_802B87BC = 0; } // d_course_dks_jungle_parkway_packed_dl_3DD0 - find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual((void*)0x07003DD0), 0, D_802B87BC); + find_and_set_tile_size((uintptr_t) (Gfx*) d_course_dks_jungle_parkway_packed_dl_3DD0, 0, D_802B87BC); // d_course_dks_jungle_parkway_packed_dl_3E40 - find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual((void*)0x07003E40), 0, D_802B87BC); + find_and_set_tile_size((uintptr_t) (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40, 0, D_802B87BC); // d_course_dks_jungle_parkway_packed_dl_3EB0 - find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual((void*)0x07003EB0), 0, D_802B87BC); + find_and_set_tile_size((uintptr_t) (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0, 0, D_802B87BC); // d_course_dks_jungle_parkway_packed_dl_3F30 - find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual((void*)0x07003F30), 0, D_802B87BC); + find_and_set_tile_size((uintptr_t) (Gfx*) d_course_dks_jungle_parkway_packed_dl_3F30, 0, D_802B87BC); // d_course_dks_jungle_parkway_packed_dl_36A8 - find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual((void*)0x070036A8), 0, D_802B87BC); + find_and_set_tile_size((uintptr_t) (Gfx*) d_course_dks_jungle_parkway_packed_dl_36A8, 0, D_802B87BC); D_802B87C4 -= 20; if (D_802B87C4 < 0) { D_802B87C4 = 0xFF; } // d_course_dks_jungle_parkway_packed_dl_9880 - find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual((void*)0x07009880), 0, D_802B87C4); + find_and_set_tile_size((uintptr_t) (Gfx*) d_course_dks_jungle_parkway_packed_dl_9880, 0, D_802B87C4); evaluate_collision_players_palm_trees(); } void DKJungle::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter, uint16_t cameraRot, uint16_t playerDirection) { - Mat4 matrix; gDPPipeSync(gDisplayListHead++); gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); @@ -363,55 +337,52 @@ void DKJungle::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter gDPSetTextureFilter(gDisplayListHead++, G_TF_BILERP); gDPSetTexturePersp(gDisplayListHead++, G_TP_PERSP); - mtxf_identity(matrix); - render_set_position(matrix, 0); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2); if (pathCounter < 17) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); // d_course_dks_jungle_parkway_packed_dl_3E40 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003E40)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40); // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); if ((pathCounter >= 6) && (pathCounter < 13)) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); // d_course_dks_jungle_parkway_packed_dl_3DD0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003DD0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3DD0); } } else if ((pathCounter == 21) || (pathCounter == 22)) { if (playerDirection == 3) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); // d_course_dks_jungle_parkway_packed_dl_36A8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x070036A8)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_36A8); } if ((playerDirection == 1) || (playerDirection == 0)) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); // d_course_dks_jungle_parkway_packed_dl_36A8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x070036A8)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_36A8); } else { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); // d_course_dks_jungle_parkway_packed_dl_3F30 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003F30)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3F30); // d_course_dks_jungle_parkway_packed_dl_36A8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x070036A8)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_36A8); } } else if (pathCounter == 24) { if ((playerDirection == 0) || (playerDirection == 3)) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); // d_course_dks_jungle_parkway_packed_dl_36A8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x070036A8)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_36A8); } } else if (pathCounter == 23) { if (playerDirection == 3) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); // d_course_dks_jungle_parkway_packed_dl_36A8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x070036A8)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_36A8); } else if (playerDirection == 0) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); // d_course_dks_jungle_parkway_packed_dl_36A8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x070036A8)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_36A8); } } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); @@ -419,38 +390,38 @@ void DKJungle::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter case 5: if (playerDirection != 3) { // d_course_dks_jungle_parkway_packed_dl_3DD0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003DD0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3DD0); } break; case 17: switch (playerDirection) { case 0: // d_course_dks_jungle_parkway_packed_dl_3E40 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003E40)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40); // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); break; case 1: // d_course_dks_jungle_parkway_packed_dl_3DD0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003DD0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3DD0); // d_course_dks_jungle_parkway_packed_dl_3E40 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003E40)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40); // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); break; case 2: // d_course_dks_jungle_parkway_packed_dl_ - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003E40)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40); // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); // d_course_dks_jungle_parkway_packed_dl_3F30 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003F30)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3F30); break; case 3: // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); // d_course_dks_jungle_parkway_packed_dl_3F30 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003F30)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3F30); break; } break; @@ -458,49 +429,49 @@ void DKJungle::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter switch (playerDirection) { case 0: // d_course_dks_jungle_parkway_packed_dl_3E40 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003E40)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40); // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); break; case 1: // d_course_dks_jungle_parkway_packed_dl_3DD0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003DD0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3DD0); // d_course_dks_jungle_parkway_packed_dl_3E40 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003E40)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40); // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); break; case 2: // d_course_dks_jungle_parkway_packed_dl_3E40 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003E40)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40); // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); break; } break; case 21: if ((playerDirection == 0) || (playerDirection == 1)) { // d_course_dks_jungle_parkway_packed_dl_3E40 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003E40)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3E40); // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); // d_course_dks_jungle_parkway_packed_dl_3F30 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003F30)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3F30); } else { // d_course_dks_jungle_parkway_packed_dl_3EB0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003EB0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3EB0); } break; case 22: if (playerDirection == 0) { // d_course_dks_jungle_parkway_packed_dl_3F30 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003F30)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3F30); } break; case 23: if (playerDirection != 1) { // d_course_dks_jungle_parkway_packed_dl_3F30 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07003F30)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_dks_jungle_parkway_packed_dl_3F30); } break; } @@ -511,7 +482,7 @@ void DKJungle::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter void DKJungle::CreditsSpawnActors() { // d_course_dks_jungle_parkway_packed_dl_3FA8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07003FA8), 0x78, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_dks_jungle_parkway_packed_dl_3FA8, 0x78, 0xFF, 0xFF, 0xFF); } void DKJungle::Destroy() { } diff --git a/src/engine/courses/DKJungle.h b/src/engine/courses/DKJungle.h index 84767a94a..0b7f09524 100644 --- a/src/engine/courses/DKJungle.h +++ b/src/engine/courses/DKJungle.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/dks_jungle_parkway_vertices.h" - #include "assets/dks_jungle_parkway_displaylists.h" - #include "assets/dks_jungle_parkway_data.h" + #include "assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices.h" + #include "assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists.h" + #include "assets/models/tracks/dks_jungle_parkway/dks_jungle_parkway_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual f32 GetWaterLevel(FVector pos, Collision* collision) override; virtual void BeginPlay() override; //virtual void InitClouds() override; diff --git a/src/engine/courses/DoubleDeck.cpp b/src/engine/courses/DoubleDeck.cpp index e92bc22d8..ad7de5700 100644 --- a/src/engine/courses/DoubleDeck.cpp +++ b/src/engine/courses/DoubleDeck.cpp @@ -5,8 +5,10 @@ #include "DoubleDeck.h" #include "World.h" +#include "align_asset_macro.h" #include "engine/objects/BombKart.h" -#include "assets/double_deck_data.h" +#include "assets/models/tracks/double_deck/double_deck_data.h" +#include "assets/other/tracks/double_deck/double_deck_data.h" extern "C" { #include "main.h" @@ -22,27 +24,16 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" - extern const char *double_deck_dls[]; extern s16 currentScreenSection; } -const course_texture double_deck_textures[] = { - { gTextureGrayCobblestone, 0x010C, 0x0800, 0x0 }, - { gTexture642978, 0x010D, 0x0800, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - DoubleDeck::DoubleDeck() { - this->vtx = d_course_double_deck_vertex; - this->gfx = d_course_double_deck_packed_dls; - this->gfxSize = 699; - Props.textures = double_deck_textures; Props.Minimap.Texture = minimap_double_deck; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -116,13 +107,15 @@ DoubleDeck::DoubleDeck() { void DoubleDeck::Load() { Course::Load(); - - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*)0x07000738), 1); + if (gIsMirrorMode != 0) { + InvertTriangleWindingByName(d_course_double_deck_packed_dl_738); + } + generate_collision_mesh_with_default_section_id((Gfx*) d_course_double_deck_packed_dl_738, 1); func_80295C6C(); Props.WaterLevel = gCourseMinY - 10.0f; } -void DoubleDeck::LoadTextures() { +void DoubleDeck::UnLoad() { } void DoubleDeck::BeginPlay() { @@ -154,7 +147,7 @@ void DoubleDeck::Render(struct UnkStruct_800DC5EC* arg0) { gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); // d_course_double_deck_packed_dl_738 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07000738))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_double_deck_packed_dl_738); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); } diff --git a/src/engine/courses/DoubleDeck.h b/src/engine/courses/DoubleDeck.h index 2ebb5d9c3..354ab116a 100644 --- a/src/engine/courses/DoubleDeck.h +++ b/src/engine/courses/DoubleDeck.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/double_deck_vertices.h" - #include "assets/double_deck_displaylists.h" - #include "assets/double_deck_data.h" + #include "assets/models/tracks/double_deck/double_deck_vertices.h" + #include "assets/models/tracks/double_deck/double_deck_displaylists.h" + #include "assets/models/tracks/double_deck/double_deck_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitCourseObjects() override; virtual void SomeSounds() override; diff --git a/src/engine/courses/FrappeSnowland.cpp b/src/engine/courses/FrappeSnowland.cpp index 1be4bf04a..dbba9efbf 100644 --- a/src/engine/courses/FrappeSnowland.cpp +++ b/src/engine/courses/FrappeSnowland.cpp @@ -9,8 +9,9 @@ #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" #include "engine/objects/Snowman.h" -#include "assets/frappe_snowland_data.h" -#include "assets/boo_frames.h" +#include "assets/models/tracks/frappe_snowland/frappe_snowland_data.h" +#include "assets/other/tracks/frappe_snowland/frappe_snowland_data.h" +#include "assets/textures/boo_frames.h" extern "C" { #include "main.h" @@ -26,7 +27,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -35,23 +36,11 @@ extern "C" { #include "update_objects.h" #include "course_offsets.h" #include "course.h" - extern const char *d_course_frappe_snowland_dl_list[]; + extern const char *d_course_frappe_snowland_dl_list[68]; extern s8 gPlayerCount; } -const course_texture frappe_snowland_textures[] = { - { gTexture6684F8, 0x010D, 0x0800, 0x0 }, { gTexture66CA98, 0x02C9, 0x0800, 0x0 }, - { gTexture66EBF0, 0x0146, 0x0800, 0x0 }, { gTexture675434, 0x0245, 0x0800, 0x0 }, - { gTexture677F04, 0x0213, 0x0800, 0x0 }, { gTexture678118, 0x0314, 0x0800, 0x0 }, - { gTexture679258, 0x04E3, 0x1000, 0x0 }, { gTexture67973C, 0x04C6, 0x1000, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - FrappeSnowland::FrappeSnowland() { - this->vtx = d_course_frappe_snowland_vertex; - this->gfx = d_course_frappe_snowland_packed_dls; - this->gfxSize = 4140; - Props.textures = frappe_snowland_textures; Props.Minimap.Texture = minimap_frappe_snowland; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -123,21 +112,24 @@ FrappeSnowland::FrappeSnowland() { Props.Sequence = MusicSeq::MUSIC_SEQ_FRAPPE_SNOWLAND; Props.WaterLevel = -50.0f; - for (size_t i = 0; i < 68; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) d_course_frappe_snowland_dl_list[i], Props.textures); - } } void FrappeSnowland::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(d_course_frappe_snowland_dl_list); i++) { + InvertTriangleWindingByName(d_course_frappe_snowland_dl_list[i]); + } + + InvertTriangleWindingByName(d_course_frappe_snowland_packed_dl_65E0); + } parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_frappe_snowland_addr)); func_80295C6C(); } -void FrappeSnowland::LoadTextures() { - dma_textures(gTextureFrappeSnowlandTreeLeft, 0x00000454U, 0x00000800U); // 0x03009000 - dma_textures(gTextureFrappeSnowlandTreeRight, 0x00000432U, 0x00000800U); // 0x03009800 +void FrappeSnowland::UnLoad() { + RestoreTriangleWinding(); } void FrappeSnowland::BeginPlay() { @@ -218,7 +210,7 @@ void FrappeSnowland::Render(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_frappe_snowland_packed_dl_65E0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x070065E0))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_frappe_snowland_packed_dl_65E0); } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); diff --git a/src/engine/courses/FrappeSnowland.h b/src/engine/courses/FrappeSnowland.h index 8f01559a9..aa9052f57 100644 --- a/src/engine/courses/FrappeSnowland.h +++ b/src/engine/courses/FrappeSnowland.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/frappe_snowland_vertices.h" - #include "assets/frappe_snowland_displaylists.h" - #include "assets/frappe_snowland_data.h" + #include "assets/models/tracks/frappe_snowland/frappe_snowland_vertices.h" + #include "assets/models/tracks/frappe_snowland/frappe_snowland_displaylists.h" + #include "assets/models/tracks/frappe_snowland/frappe_snowland_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -22,7 +22,7 @@ public: explicit FrappeSnowland(); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitClouds() override; virtual void UpdateClouds(s32 sp1C, Camera* camera) override; diff --git a/src/engine/courses/Harbour.cpp b/src/engine/courses/Harbour.cpp index db81d065b..9b76457cf 100644 --- a/src/engine/courses/Harbour.cpp +++ b/src/engine/courses/Harbour.cpp @@ -13,9 +13,9 @@ #include "engine/actors/Starship.h" #include "engine/objects/Object.h" #include "engine/objects/BombKart.h" -#include "assets/mario_raceway_data.h" -#include "assets/bowsers_castle_data.h" -#include "assets/bowsers_castle_displaylists.h" +#include "assets/models/tracks/mario_raceway/mario_raceway_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_displaylists.h" #include "engine/actors/Tree.h" #include "engine/actors/Cloud.h" #include "engine/vehicles/Train.h" @@ -44,7 +44,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -517,8 +517,6 @@ TrackPathPoint harbour_path[] = { }; Harbour::Harbour() { - this->gfxSize = 100; - this->textures = NULL; Props.Minimap.Texture = minimap_mario_raceway; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -592,14 +590,25 @@ Harbour::Harbour() { } TrackSections harbour_surfaces[] = { - { road_map_001_mesh, 1, 255, 0x0000 }, - { ground_map_mesh, 8, 255, 0x0000 }, + { (uintptr_t) road_map_001_mesh, 1, 255, 0x0000 }, + { (uintptr_t) ground_map_mesh, 8, 255, 0x0000 }, { 0x00000000, 0, 0, 0x00000 }, }; void Harbour::Load() { Course::Load(road_map_001_mesh_vtx_0, NULL); + if (gIsMirrorMode != 0) { + InvertTriangleWinding(ground_map_mesh); + InvertTriangleWinding(road_map_001_mesh); + InvertTriangleWinding(bush_map_004_mesh); + InvertTriangleWinding(castle_map_002_mesh); + InvertTriangleWinding(statue_map_005_mesh); + InvertTriangleWinding(trees_map_003_mesh); + InvertTriangleWinding(water_water1_mesh); + InvertTriangleWinding(moon_moon_mesh); + } + // The light gets overridden in hm_intro, reset to normal ground_f3d_material_013_lights = gdSPDefLights1( 0x7F, 0x7F, 0x7F, @@ -618,8 +627,7 @@ void Harbour::Load() { Props.WaterLevel = gCourseMinY - 10.0f; } -void Harbour::LoadTextures() { - dma_textures(gTextureTrees1, 0x0000035BU, 0x00000800U); // 0x03009000 +void Harbour::UnLoad() { } void Harbour::BeginPlay() { diff --git a/src/engine/courses/Harbour.h b/src/engine/courses/Harbour.h index 834154f84..69524cfbf 100644 --- a/src/engine/courses/Harbour.h +++ b/src/engine/courses/Harbour.h @@ -4,14 +4,14 @@ #include "Course.h" extern "C" { - #include "mario_raceway_vertices.h" - #include "mario_raceway_displaylists.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_vertices.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_displaylists.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" #include "objects.h" #include "path_spawn_metadata.h" - #include "mario_raceway_data.h" extern const course_texture test_course_textures[]; } @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void WhatDoesThisDo(Player* player, int8_t playerId) override; virtual void WhatDoesThisDoAI(Player* player, int8_t playerId) override; diff --git a/src/engine/courses/KalimariDesert.cpp b/src/engine/courses/KalimariDesert.cpp index 4886174f1..1c523e0e4 100644 --- a/src/engine/courses/KalimariDesert.cpp +++ b/src/engine/courses/KalimariDesert.cpp @@ -7,7 +7,8 @@ #include "engine/World.h" #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" -#include "kalimari_desert_data.h" +#include "assets/models/tracks/kalimari_desert/kalimari_desert_data.h" +#include "assets/other/tracks/kalimari_desert/kalimari_desert_data.h" #include "engine/vehicles/Utils.h" #include "engine/vehicles/Train.h" @@ -26,37 +27,17 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" #include "course.h" - extern const char *kalimari_desert_dls[]; + extern const char *kalimari_desert_dls[80]; } -const course_texture kalimari_desert_textures[] = { - { gTexture6684F8, 0x010D, 0x0800, 0x0 }, { gTextureSignLuigis0, 0x0287, 0x1000, 0x0 }, - { gTextureSignLuigis1, 0x02AF, 0x1000, 0x0 }, { gTextureSignMarioStar0, 0x02D2, 0x1000, 0x0 }, - { gTextureSignMarioStar1, 0x02B1, 0x1000, 0x0 }, { gTextureSignNintendoRed0, 0x02A6, 0x1000, 0x0 }, - { gTextureSignNintendoRed1, 0x02F7, 0x1000, 0x0 }, { gTexture67490C, 0x021C, 0x0800, 0x0 }, - { gTextureSignYoshi, 0x04DF, 0x1000, 0x0 }, { gTextureCheckerboardBlueGray, 0x04A1, 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, 0x0360, 0x1000, 0x0 }, - { gTextureSignKoopaAir1, 0x0304, 0x1000, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - KalimariDesert::KalimariDesert() { - this->vtx = d_course_kalimari_desert_vertex; - this->gfx = d_course_kalimari_desert_packed_dls; - this->gfxSize = 5328; - Props.textures = kalimari_desert_textures; Props.Minimap.Texture = minimap_kalimari_desert; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -126,25 +107,31 @@ KalimariDesert::KalimariDesert() { Props.Skybox.FloorBottomLeft = {0, 0, 0}; Props.Skybox.FloorTopLeft = {255, 192, 0}; Props.Sequence = MusicSeq::MUSIC_SEQ_KALIMARI_DESERT; - for (size_t i = 0; i < 80; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) kalimari_desert_dls[i], Props.textures); - } } void KalimariDesert::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(kalimari_desert_dls); i++) { + InvertTriangleWindingByName(kalimari_desert_dls[i]); + } + InvertTriangleWindingByName(d_course_kalimari_desert_packed_dl_71C8); + + InvertTriangleWindingByName(d_course_kalimari_desert_packed_dl_1ED8); + InvertTriangleWindingByName(d_course_kalimari_desert_packed_dl_1B18); + InvertTriangleWindingByName(d_course_kalimari_desert_packed_dl_8330); + InvertTriangleWindingByName(d_course_kalimari_desert_packed_dl_998); + InvertTriangleWindingByName(d_course_kalimari_desert_packed_dl_270); + } + parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_kalimari_desert_addr)); func_80295C6C(); Props.WaterLevel = gCourseMinY - 10.0f; } -void KalimariDesert::LoadTextures() { - dma_textures(gTextureCactus1Left, 0x0000033EU, 0x00000800U); // 0x03009000 - dma_textures(gTextureCactus1Right, 0x000002FBU, 0x00000800U); // 0x03009800 - dma_textures(gTextureCactus2Left, 0x000002A8U, 0x00000800U); // 0x0300A000 - dma_textures(gTextureCactus2Right, 0x00000374U, 0x00000800U); // 0x0300A800 - dma_textures(gTextureCactus3, 0x000003AFU, 0x00000800U); // 0x0300B000 +void KalimariDesert::UnLoad() { + RestoreTriangleWinding(); } void KalimariDesert::BeginPlay() { @@ -265,25 +252,25 @@ void KalimariDesert::Render(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_kalimari_desert_packed_dl_71C8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x070071C8))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_kalimari_desert_packed_dl_71C8); } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEI, G_CC_MODULATEI); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); render_course_segments(kalimari_desert_dls, arg0); // d_course_kalimari_desert_packed_dl_1ED8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07001ED8))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_kalimari_desert_packed_dl_1ED8); // d_course_kalimari_desert_packed_dl_1B18 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07001B18))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_kalimari_desert_packed_dl_1B18); // d_course_kalimari_desert_packed_dl_8330 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07008330))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_kalimari_desert_packed_dl_8330); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); // d_course_kalimari_desert_packed_dl_998 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07000998))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_kalimari_desert_packed_dl_998); // d_course_kalimari_desert_packed_dl_270 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07000270))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_kalimari_desert_packed_dl_270); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); } diff --git a/src/engine/courses/KalimariDesert.h b/src/engine/courses/KalimariDesert.h index fe8b21f23..4b9cc4247 100644 --- a/src/engine/courses/KalimariDesert.h +++ b/src/engine/courses/KalimariDesert.h @@ -6,9 +6,9 @@ #include "engine/vehicles/Train.h" extern "C" { - #include "assets/kalimari_desert_vertices.h" - #include "assets/kalimari_desert_displaylists.h" - #include "assets/kalimari_desert_data.h" + #include "assets/models/tracks/kalimari_desert/kalimari_desert_vertices.h" + #include "assets/models/tracks/kalimari_desert/kalimari_desert_displaylists.h" + #include "assets/models/tracks/kalimari_desert/kalimari_desert_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -27,7 +27,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitCourseObjects() override; virtual void SomeSounds() override; diff --git a/src/engine/courses/KoopaTroopaBeach.cpp b/src/engine/courses/KoopaTroopaBeach.cpp index ca1c19f9e..d22580c2c 100644 --- a/src/engine/courses/KoopaTroopaBeach.cpp +++ b/src/engine/courses/KoopaTroopaBeach.cpp @@ -9,8 +9,9 @@ #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" #include "engine/objects/Crab.h" +#include "assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h" +#include "assets/other/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h" #include "engine/objects/Seagull.h" -#include "assets/koopa_troopa_beach_data.h" extern "C" { #include "main.h" @@ -26,7 +27,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -34,35 +35,12 @@ extern "C" { #include "code_8003DC40.h" #include "memory.h" #include "course.h" - extern const char *koopa_troopa_beach_dls[]; + extern const char *d_course_koopa_troopa_beach_dl_list1[148]; + extern const char *koopa_troopa_beach_dls2[148]; extern s8 gPlayerCount; } -const course_texture koopa_troopa_beach_textures[] = { - { gTexture643B3C, 0x0798, 0x0800, 0x0 }, - { gTexture66A3DC, 0x07C5, 0x0800, 0x0 }, - { gTextureSignWoodRedArrow, 0x04E1, 0x1000, 0x0 }, - { gTexture66DD38, 0x0330, 0x1000, 0x0 }, - { gTexture643430, 0x0604, 0x0800, 0x0 }, - { gTexture660D8C, 0x0126, 0x0800, 0x0 }, - { gTexture6609D0, 0x03BB, 0x1000, 0x0 }, - { gTextureGrass12, 0x0874, 0x0800, 0x0 }, - { gTexture66CA98, 0x02C9, 0x0800, 0x0 }, - { gTexture66EBF0, 0x0146, 0x0800, 0x0 }, - { gTexture67BEE8, 0x02D0, 0x0800, 0x0 }, - { gTextureSandFinish, 0x022E, 0x0800, 0x0 }, - { gTextureWheelSteamEngine, 0x020F, 0x0800, 0x0 }, - { gTexture669570, 0x0E6B, 0x1000, 0x0 }, - { gTextureWaves1, 0x05C4, 0x0800, 0x0 }, - { gTextureWaves2, 0x0488, 0x0800, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - KoopaTroopaBeach::KoopaTroopaBeach() { - this->vtx = d_course_koopa_troopa_beach_vertex; - this->gfx = d_course_koopa_troopa_beach_packed_dls; - this->gfxSize = 5720; - Props.textures = koopa_troopa_beach_textures; Props.Minimap.Texture = minimap_koopa_troopa_beach; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -137,26 +115,32 @@ KoopaTroopaBeach::KoopaTroopaBeach() { Props.WaterLevel = 0.0f; gWaterVelocity = -0.1f; WaterVolumes.push_back({0.8f, 67.0f, 239.0f, 2233.0f, 2405.0f}); - for (size_t i = 0; i < 148; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) d_course_koopa_troopa_beach_dl_list1[i], Props.textures); - } - for (size_t i = 0; i < 148; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) koopa_troopa_beach_dls2[i], Props.textures); - } } void KoopaTroopaBeach::Load() { Course::Load(); - + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(d_course_koopa_troopa_beach_dl_list1); i++) { + InvertTriangleWindingByName(d_course_koopa_troopa_beach_dl_list1[i]); + } + for (size_t i = 0; i < ARRAY_COUNT(koopa_troopa_beach_dls2); i++) { + InvertTriangleWindingByName(koopa_troopa_beach_dls2[i]); + } + InvertTriangleWindingByName(d_course_koopa_troopa_beach_packed_dl_9CC0); + InvertTriangleWindingByName(d_course_koopa_troopa_beach_packed_dl_9688); + InvertTriangleWindingByName(d_course_koopa_troopa_beach_packed_dl_2C0); + InvertTriangleWindingByName(d_course_koopa_troopa_beach_packed_dl_9E70); + } parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_koopa_troopa_beach_addr)); func_80295C6C(); - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x0700ADE0), 150, 255, 255, 255); - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x0700A540), 150, 255, 255, 255); - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07009E70), 150, 255, 255, 255); - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07000358), 150, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_koopa_troopa_beach_packed_dl_ADE0, 150, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_koopa_troopa_beach_packed_dl_A540, 150, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_koopa_troopa_beach_packed_dl_9E70, 150, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_koopa_troopa_beach_packed_dl_358, 150, 255, 255, 255); } -void KoopaTroopaBeach::LoadTextures() { +void KoopaTroopaBeach::UnLoad() { + RestoreTriangleWinding(); } void KoopaTroopaBeach::BeginPlay() { @@ -247,18 +231,18 @@ void KoopaTroopaBeach::Render(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_koopa_troopa_beach_packed_dl_9CC0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07009CC0))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_koopa_troopa_beach_packed_dl_9CC0); } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); // d_course_koopa_troopa_beach_packed_dl_9688 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x07009688))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_koopa_troopa_beach_packed_dl_9688); render_course_segments((const char**)d_course_koopa_troopa_beach_dl_list1, arg0); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); // d_course_koopa_troopa_beach_packed_dl_2C0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(reinterpret_cast(0x070002C0))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_koopa_troopa_beach_packed_dl_2C0); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); gDPPipeSync(gDisplayListHead++); } @@ -292,9 +276,9 @@ void KoopaTroopaBeach::ScrollingTextures() { } // waterfall animation // d_course_koopa_troopa_beach_packed_dl_9D58 - find_and_set_tile_size((uintptr_t)segmented_gfx_to_virtual(reinterpret_cast(0x07009D58)), 0, D_802B87BC); + find_and_set_tile_size((uintptr_t) d_course_koopa_troopa_beach_packed_dl_9D58, 0, D_802B87BC); // d_course_koopa_troopa_beach_packed_dl_9CD0 - find_and_set_tile_size((uintptr_t)segmented_gfx_to_virtual(reinterpret_cast(0x07009CD0)), 0, D_802B87C4); + find_and_set_tile_size((uintptr_t) d_course_koopa_troopa_beach_packed_dl_9CD0, 0, D_802B87C4); D_802B87CC = random_int(300) / 40; if (D_802B87C8 < 0) { D_802B87C8 = random_int(300) / 40; @@ -303,12 +287,11 @@ void KoopaTroopaBeach::ScrollingTextures() { } // Waterfall bubbling effect? (unused) // d_course_koopa_troopa_beach_packed_dl_2E8 - find_and_set_tile_size((uintptr_t)segmented_gfx_to_virtual(reinterpret_cast(0x070002E8)), D_802B87C8, D_802B87CC); + find_and_set_tile_size((uintptr_t) d_course_koopa_troopa_beach_packed_dl_2E8, D_802B87C8, D_802B87CC); } void KoopaTroopaBeach::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter, uint16_t cameraRot, uint16_t playerDirection) { - Mat4 matrix; Vec3f vector; gDPPipeSync(gDisplayListHead++); @@ -327,15 +310,13 @@ void KoopaTroopaBeach::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pat case 37: gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); // d_course_koopa_troopa_beach_packed_dl_9E70 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07009E70)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_koopa_troopa_beach_packed_dl_9E70); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); break; } vector[0] = 0.0f; vector[1] = Props.WaterLevel; vector[2] = 0.0f; - mtxf_translate(matrix, vector); - render_set_position(matrix, 0); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2); gDPSetBlendMask(gDisplayListHead++, 0xFF); diff --git a/src/engine/courses/KoopaTroopaBeach.h b/src/engine/courses/KoopaTroopaBeach.h index 7ebd8bac8..2c6d45397 100644 --- a/src/engine/courses/KoopaTroopaBeach.h +++ b/src/engine/courses/KoopaTroopaBeach.h @@ -7,9 +7,9 @@ #include "World.h" extern "C" { - #include "assets/koopa_troopa_beach_vertices.h" - #include "assets/koopa_troopa_beach_displaylists.h" - #include "assets/koopa_troopa_beach_data.h" + #include "assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices.h" + #include "assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists.h" + #include "assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -28,7 +28,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitCourseObjects() override; virtual void UpdateCourseObjects() override; diff --git a/src/engine/courses/LuigiRaceway.cpp b/src/engine/courses/LuigiRaceway.cpp index cb2fd3e14..2ebde3087 100644 --- a/src/engine/courses/LuigiRaceway.cpp +++ b/src/engine/courses/LuigiRaceway.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -5,8 +6,10 @@ #include "LuigiRaceway.h" #include "World.h" +#include "align_asset_macro.h" #include "engine/objects/BombKart.h" -#include "assets/luigi_raceway_data.h" +#include "assets/models/tracks/luigi_raceway/luigi_raceway_data.h" +#include "assets/other/tracks/luigi_raceway/luigi_raceway_data.h" #include "engine/objects/HotAirBalloon.h" #include "engine/actors/Finishline.h" #include "engine/objects/GrandPrixBalloons.h" @@ -25,7 +28,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -36,59 +39,11 @@ extern "C" { #include "framebuffer_effects.h" #include "skybox_and_splitscreen.h" #include "course.h" -extern const char* luigi_raceway_dls[]; +extern const char* luigi_raceway_dls[120]; extern s16 currentScreenSection; } -const course_texture luigi_raceway_textures[] = { - { gTextureSignShellShot0, 0x038C, 0x1000, 0x0 }, - { gTextureSignShellShot1, 0x0247, 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 }, - { gTextureGrass11, 0x01F8, 0x0800, 0x0 }, - { gTextureSignLuigiFace0, 0x05C9, 0x1000, 0x0 }, - { gTextureSignLuigiFace1, 0x065F, 0x1000, 0x0 }, - { gTexture66C7A8, 0x0149, 0x0800, 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 }, - { gTextureSignBlue64, 0x0567, 0x1000, 0x0 }, - { gTextureSignKoopaAir0, 0x0360, 0x1000, 0x0 }, - { gTextureSignKoopaAir1, 0x0304, 0x1000, 0x0 }, - { gTextureSignLuigis0, 0x0287, 0x1000, 0x0 }, - { gTextureSignLuigis1, 0x02AF, 0x1000, 0x0 }, - { gTextureSignMarioStar0, 0x02D2, 0x1000, 0x0 }, - { gTextureSignMarioStar1, 0x02B1, 0x1000, 0x0 }, - { gTextureSignNintendoRed0, 0x02A6, 0x1000, 0x0 }, - { gTextureSignNintendoRed1, 0x02F7, 0x1000, 0x0 }, - { gTextureSignYoshi, 0x04DF, 0x1000, 0x0 }, - { gTextureCheckerboardBlueGray, 0x04A1, 0x1000, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - LuigiRaceway::LuigiRaceway() { - this->vtx = d_course_luigi_raceway_vertex; - this->gfx = d_course_luigi_raceway_packed_dls; - this->gfxSize = 6377; - Props.textures = luigi_raceway_textures; Props.Minimap.Texture = minimap_luigi_raceway; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -159,22 +114,25 @@ LuigiRaceway::LuigiRaceway() { Props.Skybox.FloorBottomLeft = { 0, 0, 0 }; Props.Skybox.FloorTopLeft = { 216, 232, 248 }; Props.Sequence = MusicSeq::MUSIC_SEQ_LUIGI_RACEWAY; - for (size_t i = 0; i < 120; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) luigi_raceway_dls[i], Props.textures); - } } void LuigiRaceway::Load() { Course::Load(); - + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(luigi_raceway_dls); i++) { + InvertTriangleWindingByName(luigi_raceway_dls[i]); + } + InvertTriangleWindingByName(d_course_luigi_raceway_packed_dl_9EC0); + InvertTriangleWindingByName(d_course_luigi_raceway_packed_dl_E0); + InvertTriangleWindingByName(d_course_luigi_raceway_packed_dl_68); + } parse_course_displaylists((TrackSections*) LOAD_ASSET_RAW(d_course_luigi_raceway_addr)); func_80295C6C(); Props.WaterLevel = gCourseMinY - 10.0f; } -void LuigiRaceway::LoadTextures() { - dma_textures(gTextureTrees5Left, 0x000003E8U, 0x00000800U); // 0x03009000 - dma_textures(gTextureTrees5Right, 0x000003E8U, 0x00000800U); // 0x03009800 +void LuigiRaceway::UnLoad() { + RestoreTriangleWinding(); } void LuigiRaceway::BeginPlay() { @@ -254,59 +212,41 @@ void LuigiRaceway::SetStaffGhost() { D_80162DE4 = 1; } -void LuigiRaceway::Jumbotron() { - gDPSetTile(gDisplayListHead++, 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); - gDPSetTileSize(gDisplayListHead++, G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0xF800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0xBA20), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0x10800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0xBA60), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0x11800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0xBAA0), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0x12800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0xBAE0), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0x13800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0xBB20), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0x14800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0xBB60), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPTileSync(gDisplayListHead++); +void LuigiRaceway::CopyJumbotron(s32 ulx, s32 uly, s16 portionToDraw, u16* source) { + // Add CVar if we want to expose a user toggle for only updating 1/6 of the jumbotron per frame + bool updateWholeJumbo = true; + + if (portionToDraw == -1 || updateWholeJumbo) { + copy_framebuffer(ulx, uly, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture68272C)); + copy_framebuffer(ulx + 64, uly, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682928)); + copy_framebuffer(ulx, uly + 32, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682B24)); + copy_framebuffer(ulx + 64, uly + 32, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682D20)); + copy_framebuffer(ulx, uly + 64, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682F1C)); + copy_framebuffer(ulx + 64, uly + 64, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture683118)); + } else { + switch (portionToDraw) { + case 0: + copy_framebuffer(ulx, uly, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture68272C)); + break; + case 1: + copy_framebuffer(ulx + 64, uly, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682928)); + break; + case 2: + copy_framebuffer(ulx, uly + 32, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682B24)); + break; + case 3: + copy_framebuffer(ulx + 64, uly + 32, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682D20)); + break; + case 4: + copy_framebuffer(ulx, uly + 64, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682F1C)); + break; + case 5: + copy_framebuffer(ulx + 64, uly + 64, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture683118)); + break; + default: + break; + } + } } void LuigiRaceway::Render(struct UnkStruct_800DC5EC* arg0) { @@ -321,32 +261,31 @@ void LuigiRaceway::Render(struct UnkStruct_800DC5EC* arg0) { // Invalidate Jumbotron textures so they update each frame // This could be more efficient if we exposed the non-opcode based invalidation to be called // inside copy_framebuffers_port - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xF800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x10800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x11800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x12800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x13800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x14800); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture68272C); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture682928); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture682B24); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture682D20); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture682F1C); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture683118); if (func_80290C20(arg0->camera) == 1) { 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 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07009EC0)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_luigi_raceway_packed_dl_9EC0); } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - LuigiRaceway::Jumbotron(); render_course_segments(luigi_raceway_dls, arg0); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); // d_course_luigi_raceway_packed_dl_E0 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x070000E0)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_luigi_raceway_packed_dl_E0); // d_course_luigi_raceway_packed_dl_68 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07000068)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_luigi_raceway_packed_dl_68); D_800DC5DC = 88; D_800DC5E0 = 72; @@ -370,8 +309,8 @@ void LuigiRaceway::Render(struct UnkStruct_800DC5EC* arg0) { * The jumbo television screen used to be split into six sections to fit into the n64's texture size * restrictions It isn't split into six sections anymore */ - copy_jumbotron_fb_port(D_800DC5DC, D_800DC5E0, currentScreenSection, (u16*) gPortFramebuffers[prevFrame], - (u16*) (gSegmentTable[5] + 0xF800)); + CopyJumbotron(D_800DC5DC, D_800DC5E0, currentScreenSection, + (u16*) gPortFramebuffers[prevFrame]); } } diff --git a/src/engine/courses/LuigiRaceway.h b/src/engine/courses/LuigiRaceway.h index 48a7d8c08..53d9b8060 100644 --- a/src/engine/courses/LuigiRaceway.h +++ b/src/engine/courses/LuigiRaceway.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { -#include "assets/luigi_raceway_vertices.h" -#include "assets/luigi_raceway_displaylists.h" -#include "assets/luigi_raceway_data.h" +#include "assets/models/tracks/luigi_raceway/luigi_raceway_vertices.h" +#include "assets/models/tracks/luigi_raceway/luigi_raceway_displaylists.h" +#include "assets/models/tracks/luigi_raceway/luigi_raceway_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -16,7 +16,7 @@ extern const course_texture luigi_raceway_textures[]; } class LuigiRaceway : public Course { - void Jumbotron(); + void CopyJumbotron(s32 ulx, s32 uly, s16 portionToDraw, u16* source); public: virtual ~LuigiRaceway() = default; // Virtual destructor for proper cleanup in derived classes @@ -27,7 +27,7 @@ class LuigiRaceway : public Course { // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitCourseObjects() override; virtual void SomeSounds() override; diff --git a/src/engine/courses/MarioRaceway.cpp b/src/engine/courses/MarioRaceway.cpp index 2afba1e9f..cff1e42b2 100644 --- a/src/engine/courses/MarioRaceway.cpp +++ b/src/engine/courses/MarioRaceway.cpp @@ -25,58 +25,20 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" - #include "mario_raceway_data.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_data.h" + #include "assets/other/tracks/mario_raceway/mario_raceway_data.h" #include "collision.h" #include "memory.h" #include "courses/staff_ghost_data.h" #include "course.h" - extern const char *mario_raceway_dls[]; + extern const char *mario_raceway_dls[68]; } -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, 0x0287, 0x1000, 0x0 }, - { gTextureSignLuigis1, 0x02AF, 0x1000, 0x0 }, - { gTextureSignMarioStar0, 0x02D2, 0x1000, 0x0 }, - { gTextureSignMarioStar1, 0x02B1, 0x1000, 0x0 }, - { gTexture66C8F4, 0x01A1, 0x0800, 0x0 }, - { gTextureSignNintendoRed0, 0x02A6, 0x1000, 0x0 }, - { gTextureSignNintendoRed1, 0x02F7, 0x1000, 0x0 }, - { gTexture670AC8, 0x0FBF, 0x1000, 0x0 }, - { gTexture674354, 0x046F, 0x0800, 0x0 }, - { gTextureRoad0, 0x0300, 0x1000, 0x0 }, - { gTextureRoadFinish0, 0x0338, 0x1000, 0x0 }, - { gTexture67B9B0, 0x0225, 0x0800, 0x0 }, - { gTextureSignYoshi, 0x04DF, 0x1000, 0x0 }, - { gTextureCheckerboardBlueGray, 0x04A1, 0x1000, 0x0 }, - { gTextureSignShellShot0, 0x038C, 0x1000, 0x0 }, - { gTextureSignShellShot1, 0x0247, 0x1000, 0x0 }, - { gTextureSignKoopaAir0, 0x0360, 0x1000, 0x0 }, - { gTextureSignKoopaAir1, 0x0304, 0x1000, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - MarioRaceway::MarioRaceway() { - this->vtx = d_course_mario_raceway_vertex; - this->gfx = d_course_mario_raceway_packed_dls; - this->gfxSize = 3367; - - Props.textures = mario_raceway_textures; Props.Minimap.Texture = minimap_mario_raceway; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -148,26 +110,43 @@ MarioRaceway::MarioRaceway() { Props.Skybox.FloorBottomLeft = {0, 0, 0}; Props.Skybox.FloorTopLeft = {0, 0, 0}; Props.Sequence = MusicSeq::MUSIC_SEQ_MARIO_RACEWAY; - for (size_t i = 0; i < 68; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) mario_raceway_dls[i], Props.textures); - } } void MarioRaceway::Load() { Course::Load(); - generate_collision_mesh_with_defaults(segmented_gfx_to_virtual((void*)0x07001140)); + // Invert winding in mirror mode before generating collision meshes + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(mario_raceway_dls); i++) { + InvertTriangleWindingByName(mario_raceway_dls[i]); + } + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_1140); + + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_3508); + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_3240); + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_14A0); + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_450); + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_240); + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_E0); + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_160); + + // pipe collision mesh + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_8E8); + InvertTriangleWindingByName(d_course_mario_raceway_packed_dl_2D68); + } + + generate_collision_mesh_with_defaults((Gfx*) d_course_mario_raceway_packed_dl_1140); // Generate pipe collision mesh if (gScreenModeSelection == SCREEN_MODE_1P) { // d_course_mario_raceway_packed_dl_8E8 - generate_collision_mesh_with_defaults(segmented_gfx_to_virtual((void*)0x070008E8)); + generate_collision_mesh_with_defaults((Gfx*) d_course_mario_raceway_packed_dl_8E8); } else { if (CVarGetInteger("gDisableLod", 1) == true) { - generate_collision_mesh_with_defaults(segmented_gfx_to_virtual((void*)0x070008E8)); + generate_collision_mesh_with_defaults((Gfx*) d_course_mario_raceway_packed_dl_8E8); } else { // d_course_mario_raceway_packed_dl_2D68 - generate_collision_mesh_with_defaults(segmented_gfx_to_virtual((void*)0x07002D68)); + generate_collision_mesh_with_defaults((Gfx*) d_course_mario_raceway_packed_dl_2D68); } } @@ -176,8 +155,8 @@ void MarioRaceway::Load() { Props.WaterLevel = gCourseMinY - 10.0f; } -void MarioRaceway::LoadTextures() { - dma_textures(gTextureTrees1, 0x0000035BU, 0x00000800U); // 0x03009000 +void MarioRaceway::UnLoad() { + RestoreTriangleWinding(); } void MarioRaceway::BeginPlay() { @@ -264,6 +243,20 @@ void MarioRaceway::SetStaffGhost() { D_80162DE4 = 0; } +void render_mario_raceway_pipe(void) { + if (gScreenModeSelection == SCREEN_MODE_1P) { + // d_course_mario_raceway_packed_dl_8E8 + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_8E8); + } else { + if (CVarGetInteger("gDisableLod", 1) == true) { + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_8E8); + return; + } + // d_course_mario_raceway_packed_dl_2D68 + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_2D68); + } +} + void MarioRaceway::Render(struct UnkStruct_800DC5EC* arg0) { u16 sp22 = arg0->pathCounter; u16 temp_t0 = arg0->playerDirection; @@ -274,7 +267,7 @@ void MarioRaceway::Render(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_mario_raceway_packed_dl_3050 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07003050)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_3050); } gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); @@ -355,18 +348,18 @@ void MarioRaceway::Render(struct UnkStruct_800DC5EC* arg0) { } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07003508)))); - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07003240)))); - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x070014A0)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_3508); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_3240); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_14A0); render_course_segments(mario_raceway_dls, arg0); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07000450)))); - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07000240)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_450); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_240); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x070000E0)))); - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07000160)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_E0); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_160); } void MarioRaceway::RenderCredits() { @@ -374,7 +367,6 @@ void MarioRaceway::RenderCredits() { } void MarioRaceway::CreditsSpawnActors() { - dma_textures(gTextureTrees1, 0x35B, 0x800); spawn_foliage((struct ActorSpawnData*)LOAD_ASSET_RAW(d_course_mario_raceway_tree_spawns)); } diff --git a/src/engine/courses/MarioRaceway.h b/src/engine/courses/MarioRaceway.h index e237f1538..1e99add7e 100644 --- a/src/engine/courses/MarioRaceway.h +++ b/src/engine/courses/MarioRaceway.h @@ -4,15 +4,14 @@ #include "Course.h" extern "C" { - #include "mario_raceway_vertices.h" - #include "mario_raceway_displaylists.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_vertices.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_displaylists.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" #include "objects.h" #include "path_spawn_metadata.h" - #include "mario_raceway_data.h" - extern const course_texture mario_raceway_textures[]; } class MarioRaceway : public Course { @@ -25,7 +24,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitCourseObjects() override; virtual void SomeSounds() override; diff --git a/src/engine/courses/MooMooFarm.cpp b/src/engine/courses/MooMooFarm.cpp index 375a4e743..c509d7822 100644 --- a/src/engine/courses/MooMooFarm.cpp +++ b/src/engine/courses/MooMooFarm.cpp @@ -7,7 +7,8 @@ #include "World.h" #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" -#include "assets/moo_moo_farm_data.h" +#include "assets/models/tracks/moo_moo_farm/moo_moo_farm_data.h" +#include "assets/other/tracks/moo_moo_farm/moo_moo_farm_data.h" #include "engine/objects/MoleGroup.h" #include "engine/objects/Mole.h" @@ -25,7 +26,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -33,48 +34,12 @@ extern "C" { #include "memory.h" #include "code_80086E70.h" #include "course.h" - extern const char *moo_moo_farm_dls[]; + extern const char *moo_moo_farm_dls[92]; extern s16 currentScreenSection; extern s8 gPlayerCount; } -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, 0x0287, 0x1000, 0x0 }, - { gTextureSignLuigis1, 0x02AF, 0x1000, 0x0 }, - { gTextureSignMarioStar0, 0x02D2, 0x1000, 0x0 }, - { gTextureSignMarioStar1, 0x02B1, 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, 0x0A66, 0x1000, 0x0 }, - { gTextureMooMooFarmSignRight, 0x0A64, 0x1000, 0x0 }, - { gTexture64ACAC, 0x02A3, 0x0800, 0x0 }, - { gTexture66D698, 0x0370, 0x0800, 0x0 }, - { gTexture66EBF0, 0x0146, 0x0800, 0x0 }, - { gTextureWheelSteamEngineReal, 0x022F, 0x1000, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - MooMooFarm::MooMooFarm() { - this->vtx = d_course_moo_moo_farm_vertex; - this->gfx = d_course_moo_moo_farm_packed_dls; - this->gfxSize = 3304; - Props.textures = moo_moo_farm_textures; Props.Minimap.Texture = minimap_moo_moo_farm; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -144,32 +109,28 @@ MooMooFarm::MooMooFarm() { Props.Skybox.FloorBottomLeft = {0, 0, 0}; Props.Skybox.FloorTopLeft = {255, 184, 99}; Props.Sequence = MusicSeq::MUSIC_SEQ_MOO_MOO_FARM; - for (size_t i = 0; i < 92; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) moo_moo_farm_dls[i], Props.textures); - } } void MooMooFarm::Load() { Course::Load(); - + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(moo_moo_farm_dls); i++) { + InvertTriangleWindingByName(moo_moo_farm_dls[i]); + } + InvertTriangleWindingByName(d_course_moo_moo_farm_packed_dl_4DF8); + InvertTriangleWindingByName(d_course_moo_moo_farm_packed_dl_5640); + InvertTriangleWindingByName(d_course_moo_moo_farm_dl_13FF8); + InvertTriangleWindingByName(d_course_moo_moo_farm_packed_dl_5410); + InvertTriangleWindingByName(d_course_moo_moo_farm_dl_14060); + InvertTriangleWindingByName(d_course_moo_moo_farm_packed_dl_10C0); + } parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_moo_moo_farm_addr)); func_80295C6C(); Props.WaterLevel = gCourseMinY - 10.0f; } -void MooMooFarm::LoadTextures() { - dma_textures(gTextureTrees4Left, 0x000003E8U, 0x00000800U); // 0x03009000 - dma_textures(gTextureTrees4Right, 0x000003E8U, 0x00000800U); // 0x03009800 - dma_textures(gTextureCow01Left, 0x00000400U, 0x00000800U); // 0x0300A000 - dma_textures(gTextureCow01Right, 0x00000400U, 0x00000800U); // 0x0300A800 - dma_textures(gTextureCow02Left, 0x00000400U, 0x00000800U); // 0x0300B000 - dma_textures(gTextureCow02Right, 0x00000400U, 0x00000800U); // 0x0300B800 - dma_textures(gTextureCow03Left, 0x00000400U, 0x00000800U); // 0x0300C000 - dma_textures(gTextureCow03Right, 0x00000400U, 0x00000800U); // 0x0300C800 - dma_textures(gTextureCow04Left, 0x00000400U, 0x00000800U); // 0x0300D000 - dma_textures(gTextureCow04Right, 0x00000400U, 0x00000800U); // 0x0300D800 - dma_textures(gTextureCow05Left, 0x00000400U, 0x00000800U); // 0x0300E000 - dma_textures(gTextureCow05Right, 0x00000400U, 0x00000800U); // 0x0300E800 +void MooMooFarm::UnLoad() { + RestoreTriangleWinding(); } void MooMooFarm::BeginPlay() { @@ -310,9 +271,9 @@ void MooMooFarm::Render(struct UnkStruct_800DC5EC* arg0) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEI, G_CC_MODULATEI); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); // d_course_moo_moo_farm_packed_dl_4DF8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07004DF8)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_moo_moo_farm_packed_dl_4DF8); // d_course_moo_moo_farm_packed_dl_5640 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07005640)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_moo_moo_farm_packed_dl_5640); gSPFogPosition(gDisplayListHead++, D_802B87B0, D_802B87B4); render_course_segments(moo_moo_farm_dls, arg0); @@ -340,13 +301,13 @@ void MooMooFarm::Render(struct UnkStruct_800DC5EC* arg0) { if ((temp_s0 >= 16) && (temp_s0 < 24)) { if ((temp_s1 == 2) || (temp_s1 == 3)) { // d_course_moo_moo_farm_packed_dl_5410 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07005410)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_moo_moo_farm_packed_dl_5410); } } else if (temp_s0 < 9) { if (temp_s1 == 2) { // d_course_moo_moo_farm_packed_dl_5410 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07005410)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_moo_moo_farm_packed_dl_5410); } } if (temp_s0 < 4) { @@ -369,7 +330,7 @@ void MooMooFarm::Render(struct UnkStruct_800DC5EC* arg0) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); // d_course_moo_moo_farm_packed_dl_10C0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x070010C0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_moo_moo_farm_packed_dl_10C0); } void MooMooFarm::RenderCredits() { @@ -377,18 +338,6 @@ void MooMooFarm::RenderCredits() { } void MooMooFarm::CreditsSpawnActors() { - dma_textures(gTextureTrees4Left, 0x3E8, 0x800); - dma_textures(gTextureTrees4Right, 0x3E8, 0x800); - dma_textures(gTextureCow01Left, 0x400, 0x800); - dma_textures(gTextureCow01Right, 0x400, 0x800); - dma_textures(gTextureCow02Left, 0x400, 0x800); - dma_textures(gTextureCow02Right, 0x400, 0x800); - dma_textures(gTextureCow03Left, 0x400, 0x800); - dma_textures(gTextureCow03Right, 0x400, 0x800); - dma_textures(gTextureCow04Left, 0x400, 0x800); - dma_textures(gTextureCow04Right, 0x400, 0x800); - dma_textures(gTextureCow05Left, 0x400, 0x800); - dma_textures(gTextureCow05Right, 0x400, 0x800); spawn_foliage((struct ActorSpawnData*) LOAD_ASSET_RAW(d_course_moo_moo_farm_tree_spawn)); } diff --git a/src/engine/courses/MooMooFarm.h b/src/engine/courses/MooMooFarm.h index 3c18e5024..8468ca8aa 100644 --- a/src/engine/courses/MooMooFarm.h +++ b/src/engine/courses/MooMooFarm.h @@ -5,9 +5,9 @@ #include "engine/objects/Mole.h" extern "C" { - #include "assets/moo_moo_farm_vertices.h" - #include "assets/moo_moo_farm_displaylists.h" - #include "assets/moo_moo_farm_data.h" + #include "assets/models/tracks/moo_moo_farm/moo_moo_farm_vertices.h" + #include "assets/models/tracks/moo_moo_farm/moo_moo_farm_displaylists.h" + #include "assets/models/tracks/moo_moo_farm/moo_moo_farm_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -28,7 +28,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void WhatDoesThisDo(Player* player, int8_t playerId) override; virtual void WhatDoesThisDoAI(Player* player, int8_t playerId) override; diff --git a/src/engine/courses/PodiumCeremony.cpp b/src/engine/courses/PodiumCeremony.cpp index c41d96904..48cd2478b 100644 --- a/src/engine/courses/PodiumCeremony.cpp +++ b/src/engine/courses/PodiumCeremony.cpp @@ -6,8 +6,10 @@ #include "PodiumCeremony.h" #include "World.h" #include "engine/objects/BombKart.h" -#include "assets/royal_raceway_data.h" -#include "assets/ceremony_data.h" +#include "assets/models/tracks/royal_raceway/royal_raceway_data.h" +#include "assets/other/tracks/royal_raceway/royal_raceway_data.h" +#include "assets/models/ceremony_data.h" +#include "assets/other/ceremony_data.h" #include "engine/objects/Trophy.h" #include "engine/objects/Podium.h" #include "engine/objects/CheepCheep.h" @@ -28,7 +30,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -40,58 +42,7 @@ extern "C" { extern const char *royal_raceway_dls[]; } -const course_texture podium_ceremony_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, 0x0360, 0x1000, 0x0 }, - { gTextureSignKoopaAir1, 0x0304, 0x1000, 0x0 }, - { gTexture6684F8, 0x010D, 0x0800, 0x0 }, - { gTextureSignLuigis0, 0x0287, 0x1000, 0x0 }, - { gTextureSignLuigis1, 0x02AF, 0x1000, 0x0 }, - { gTextureSignMarioStar0, 0x02D2, 0x1000, 0x0 }, - { gTextureSignMarioStar1, 0x02B1, 0x1000, 0x0 }, - { gTexture66CA98, 0x02C9, 0x0800, 0x0 }, - { gTextureCheckerboardPink, 0x0157, 0x0800, 0x0 }, - { gTexture670AC8, 0x0FBF, 0x1000, 0x0 }, - { gTextureRoad0, 0x0300, 0x1000, 0x0 }, - { gTextureRoadFinish0, 0x0338, 0x1000, 0x0 }, - { gTextureSignYoshi, 0x04DF, 0x1000, 0x0 }, - { gTextureCheckerboardBlueGray, 0x04A1, 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 }, -}; - PodiumCeremony::PodiumCeremony() { - this->vtx = d_course_royal_raceway_vertex; - this->gfx = d_course_royal_raceway_packed_dls; - this->gfxSize = 5670; - Props.textures = podium_ceremony_textures; Props.Minimap.Width = 0; Props.Minimap.Height = 0; Props.Minimap.Pos[0].X = 262; @@ -167,7 +118,7 @@ void PodiumCeremony::Load() { func_80295C6C(); } -void PodiumCeremony::LoadTextures() { +void PodiumCeremony::UnLoad() { } void PodiumCeremony::BeginPlay() { @@ -263,23 +214,23 @@ void PodiumCeremony::Render(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_royal_raceway_packed_dl_B030 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x0700B030)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_royal_raceway_packed_dl_B030); } gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); // d_course_royal_raceway_packed_dl_A648 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x0700A648)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_royal_raceway_packed_dl_A648); render_course_segments(royal_raceway_dls, arg0); // d_course_royal_raceway_packed_dl_11A8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x070011A8)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_royal_raceway_packed_dl_11A8); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); // d_course_royal_raceway_packed_dl_8A0 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x070008A0)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_royal_raceway_packed_dl_8A0); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); } diff --git a/src/engine/courses/PodiumCeremony.h b/src/engine/courses/PodiumCeremony.h index 6026d7f9f..403f7f310 100644 --- a/src/engine/courses/PodiumCeremony.h +++ b/src/engine/courses/PodiumCeremony.h @@ -5,9 +5,9 @@ #include "Course.h" extern "C" { - #include "assets/royal_raceway_vertices.h" - #include "assets/royal_raceway_displaylists.h" - #include "assets/royal_raceway_data.h" + #include "assets/models/tracks/royal_raceway/royal_raceway_vertices.h" + #include "assets/models/tracks/royal_raceway/royal_raceway_displaylists.h" + #include "assets/models/tracks/royal_raceway/royal_raceway_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -26,7 +26,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; //virtual void InitClouds() override; virtual void InitCourseObjects() override; diff --git a/src/engine/courses/RainbowRoad.cpp b/src/engine/courses/RainbowRoad.cpp index bfc64e976..dcfd4856d 100644 --- a/src/engine/courses/RainbowRoad.cpp +++ b/src/engine/courses/RainbowRoad.cpp @@ -8,7 +8,8 @@ #include "engine/actors/Finishline.h" #include "engine/objects/ChainChomp.h" #include "engine/objects/BombKart.h" -#include "assets/rainbow_road_data.h" +#include "assets/models/tracks/rainbow_road/rainbow_road_data.h" +#include "assets/other/tracks/rainbow_road/rainbow_road_data.h" extern "C" { #include "main.h" @@ -24,31 +25,17 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" #include "course.h" - extern const char *rainbow_road_dls[]; + extern const char *rainbow_road_dls[48]; } -const course_texture rainbow_road_textures[] = { - { gTextureStarOutline, 0x037A, 0x0800, 0x0 }, - { gTexture67A1B8, 0x01B7, 0x0800, 0x0 }, - { gTextureCheckerboardBlackWhite, 0x0107, 0x0800, 0x0 }, - { gTexture662A34, 0x0106, 0x0800, 0x0 }, - { gTextureRainbow, 0x025D, 0x1000, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - - RainbowRoad::RainbowRoad() { - this->vtx = d_course_rainbow_road_vertex; - this->gfx = d_course_rainbow_road_packed_dls; - this->gfxSize = 5670; - Props.textures = rainbow_road_textures; Props.Minimap.Texture = minimap_rainbow_road; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -123,23 +110,28 @@ RainbowRoad::RainbowRoad() { void RainbowRoad::Load() { Course::Load(); - + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(rainbow_road_dls); i++) { + InvertTriangleWindingByName(rainbow_road_dls[i]); + } + } D_800DC5C8 = 1; parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_rainbow_road_addr)); func_80295C6C(); // d_course_rainbow_road_packed_dl_2068 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07002068), 150, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_rainbow_road_packed_dl_2068, 150, 255, 255, 255); // d_course_rainbow_road_packed_dl_1E18 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07001E18), 150, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_rainbow_road_packed_dl_1E18, 150, 255, 255, 255); // d_course_rainbow_road_packed_dl_1318 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07001318), 255, 255, 255, 0); + find_vtx_and_set_colours((Gfx*) d_course_rainbow_road_packed_dl_1318, 255, 255, 255, 0); if (gGamestate != CREDITS_SEQUENCE) { // d_course_rainbow_road_packed_dl_1FB8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07001FB8), 150, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_rainbow_road_packed_dl_1FB8, 150, 255, 255, 255); } } -void RainbowRoad::LoadTextures() { +void RainbowRoad::UnLoad() { + RestoreTriangleWinding(); } void RainbowRoad::BeginPlay() { @@ -217,11 +209,8 @@ void RainbowRoad::Waypoints(Player* player, int8_t playerId) { } void RainbowRoad::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter, uint16_t cameraRot, uint16_t playerDirection) { - Mat4 matrix; gDPPipeSync(gDisplayListHead++); - mtxf_identity(matrix); - render_set_position(matrix, 0); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); render_course_segments(rainbow_road_dls, screen); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); @@ -231,11 +220,11 @@ void RainbowRoad::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCoun void RainbowRoad::CreditsSpawnActors() { // d_course_rainbow_road_packed_dl_2068 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07002068), 150, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_rainbow_road_packed_dl_2068, 150, 0xFF, 0xFF, 0xFF); // d_course_rainbow_road_packed_dl_1E18 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07001E18), 150, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_rainbow_road_packed_dl_1E18, 150, 0xFF, 0xFF, 0xFF); // d_course_rainbow_road_packed_dl_1318 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07001318), 255, 0xFF, 0xFF, 0); + find_vtx_and_set_colours((Gfx*) d_course_rainbow_road_packed_dl_1318, 255, 0xFF, 0xFF, 0); } void RainbowRoad::Destroy() {} diff --git a/src/engine/courses/RainbowRoad.h b/src/engine/courses/RainbowRoad.h index 282655ace..ffe3286ca 100644 --- a/src/engine/courses/RainbowRoad.h +++ b/src/engine/courses/RainbowRoad.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/rainbow_road_vertices.h" - #include "assets/rainbow_road_displaylists.h" - #include "assets/rainbow_road_data.h" + #include "assets/models/tracks/rainbow_road/rainbow_road_vertices.h" + #include "assets/models/tracks/rainbow_road/rainbow_road_displaylists.h" + #include "assets/models/tracks/rainbow_road/rainbow_road_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitClouds() override; virtual void UpdateClouds(s32, Camera*) override; diff --git a/src/engine/courses/RoyalRaceway.cpp b/src/engine/courses/RoyalRaceway.cpp index 1fc6a10b9..6362a2c15 100644 --- a/src/engine/courses/RoyalRaceway.cpp +++ b/src/engine/courses/RoyalRaceway.cpp @@ -7,7 +7,8 @@ #include "World.h" #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" -#include "assets/royal_raceway_data.h" +#include "assets/models/tracks/royal_raceway/royal_raceway_data.h" +#include "assets/other/tracks/royal_raceway/royal_raceway_data.h" #include "engine/objects/GrandPrixBalloons.h" extern "C" { @@ -24,7 +25,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -32,61 +33,10 @@ extern "C" { #include "memory.h" #include "courses/staff_ghost_data.h" #include "course.h" - extern const char *royal_raceway_dls[]; + extern const char *royal_raceway_dls[132]; } -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, 0x0360, 0x1000, 0x0 }, - { gTextureSignKoopaAir1, 0x0304, 0x1000, 0x0 }, - { gTexture6684F8, 0x010D, 0x0800, 0x0 }, - { gTextureSignLuigis0, 0x0287, 0x1000, 0x0 }, - { gTextureSignLuigis1, 0x02AF, 0x1000, 0x0 }, - { gTextureSignMarioStar0, 0x02D2, 0x1000, 0x0 }, - { gTextureSignMarioStar1, 0x02B1, 0x1000, 0x0 }, - { gTexture66CA98, 0x02C9, 0x0800, 0x0 }, - { gTextureCheckerboardPink, 0x0157, 0x0800, 0x0 }, - { gTexture670AC8, 0x0FBF, 0x1000, 0x0 }, - { gTextureRoad0, 0x0300, 0x1000, 0x0 }, - { gTextureRoadFinish0, 0x0338, 0x1000, 0x0 }, - { gTextureSignYoshi, 0x04DF, 0x1000, 0x0 }, - { gTextureCheckerboardBlueGray, 0x04A1, 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 }, -}; - RoyalRaceway::RoyalRaceway() { - this->vtx = d_course_royal_raceway_vertex; - this->gfx = d_course_royal_raceway_packed_dls; - this->gfxSize = 5670; - Props.textures = royal_raceway_textures; Props.Minimap.Texture = minimap_royal_raceway; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -158,21 +108,25 @@ RoyalRaceway::RoyalRaceway() { Props.Sequence = MusicSeq::MUSIC_SEQ_ROYAL_RACEWAY; Props.WaterLevel = -60.0f; - for (size_t i = 0; i < 132; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) royal_raceway_dls[i], Props.textures); - } } void RoyalRaceway::Load() { Course::Load(); - + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(royal_raceway_dls); i++) { + InvertTriangleWindingByName(royal_raceway_dls[i]); + } + InvertTriangleWindingByName(d_course_royal_raceway_packed_dl_B030); + InvertTriangleWindingByName(d_course_royal_raceway_packed_dl_A648); + InvertTriangleWindingByName(d_course_royal_raceway_packed_dl_11A8); + InvertTriangleWindingByName(d_course_royal_raceway_packed_dl_8A0); + } parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_royal_raceway_addr)); func_80295C6C(); } -void RoyalRaceway::LoadTextures() { - dma_textures(gTextureTrees3, 0x000003E8U, 0x00000800U); // 0x03009000 - dma_textures(gTextureTrees7, 0x000003E8U, 0x00000800U); // 0x03009800 +void RoyalRaceway::UnLoad() { + RestoreTriangleWinding(); } void RoyalRaceway::BeginPlay() { @@ -255,23 +209,23 @@ void RoyalRaceway::Render(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_royal_raceway_packed_dl_B030 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x0700B030)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_royal_raceway_packed_dl_B030); } gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); // d_course_royal_raceway_packed_dl_A648 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x0700A648)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_royal_raceway_packed_dl_A648); render_course_segments(royal_raceway_dls, arg0); // d_course_royal_raceway_packed_dl_11A8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x070011A8)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_royal_raceway_packed_dl_11A8); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); // d_course_royal_raceway_packed_dl_8A0 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x070008A0)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_royal_raceway_packed_dl_8A0); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); } @@ -297,7 +251,7 @@ void RoyalRaceway::ScrollingTextures() { D_802B87BC = 0xFF; } // d_course_royal_raceway_packed_dl_A6A8 - find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual((void*)0x0700A6A8), 0, D_802B87BC); + find_and_set_tile_size((uintptr_t) d_course_royal_raceway_packed_dl_A6A8, 0, D_802B87BC); // d_course_royal_raceway_packed_dl_A648 - find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual((void*)0x0700A648), 0, D_802B87BC); + find_and_set_tile_size((uintptr_t) d_course_royal_raceway_packed_dl_A648, 0, D_802B87BC); } diff --git a/src/engine/courses/RoyalRaceway.h b/src/engine/courses/RoyalRaceway.h index 7fe973edd..4b8552b09 100644 --- a/src/engine/courses/RoyalRaceway.h +++ b/src/engine/courses/RoyalRaceway.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/royal_raceway_vertices.h" - #include "assets/royal_raceway_displaylists.h" - #include "assets/royal_raceway_data.h" + #include "assets/models/tracks/royal_raceway/royal_raceway_vertices.h" + #include "assets/models/tracks/royal_raceway/royal_raceway_displaylists.h" + #include "assets/models/tracks/royal_raceway/royal_raceway_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitCourseObjects() override; virtual void WhatDoesThisDo(Player* player, int8_t playerId) override; diff --git a/src/engine/courses/SherbetLand.cpp b/src/engine/courses/SherbetLand.cpp index 4d72e8095..a27f954d3 100644 --- a/src/engine/courses/SherbetLand.cpp +++ b/src/engine/courses/SherbetLand.cpp @@ -7,8 +7,10 @@ #include "World.h" #include "engine/actors/Finishline.h" #include "engine/objects/BombKart.h" -#include "assets/sherbet_land_data.h" +#include "assets/models/tracks/sherbet_land/sherbet_land_data.h" +#include "assets/other/tracks/sherbet_land/sherbet_land_data.h" #include "engine/objects/Penguin.h" +#include "resourcebridge.h" extern "C" { #include "main.h" @@ -24,31 +26,18 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" #include "course.h" - extern const char *sherbet_land_dls[]; - extern const char *sherbet_land_dls_2[]; + extern const char *sherbet_land_dls[72]; + extern const char *sherbet_land_dls_2[72]; } -const course_texture sherbet_land_textures[] = { - { gTexture643B3C, 0x0798, 0x0800, 0x0 }, { gTexture66D024, 0x04EA, 0x0800, 0x0 }, - { gTexture678118, 0x0314, 0x0800, 0x0 }, { gTextureSignWoodRedArrow, 0x04E1, 0x1000, 0x0 }, - { gTexture678CC8, 0x058E, 0x0800, 0x0 }, { gTexture67842C, 0x050E, 0x0800, 0x0 }, - { gTexture67893C, 0x038B, 0x0800, 0x0 }, { gTexture651984, 0x019C, 0x0800, 0x0 }, - { gTexture651428, 0x055B, 0x0800, 0x0 }, { gTexture662924, 0x0110, 0x0800, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - SherbetLand::SherbetLand() { - this->vtx = d_course_sherbet_land_vertex; - this->gfx = d_course_sherbet_land_packed_dls; - this->gfxSize = 1803; - Props.textures = sherbet_land_textures; Props.Minimap.Texture = minimap_sherbet_land; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -123,23 +112,28 @@ SherbetLand::SherbetLand() { Props.Sequence = MusicSeq::MUSIC_SEQ_FRAPPE_SNOWLAND; Props.WaterLevel = -18.0f; - for (size_t i = 0; i < 72; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) sherbet_land_dls[i], Props.textures); - } - for (size_t i = 0; i < 72; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) sherbet_land_dls_2[i], Props.textures); - } } void SherbetLand::Load() { Course::Load(); - + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(sherbet_land_dls); i++) { + InvertTriangleWindingByName(sherbet_land_dls[i]); + } + for (size_t i = 0; i < ARRAY_COUNT(sherbet_land_dls_2); i++) { + InvertTriangleWindingByName(sherbet_land_dls_2[i]); + } + } parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_sherbet_land_addr)); func_80295C6C(); // d_course_sherbet_land_packed_dl_1EB8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07001EB8), 180, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_sherbet_land_packed_dl_1EB8, 180, 255, 255, 255); // d_course_sherbet_land_packed_dl_2308 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07002308), 150, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_sherbet_land_packed_dl_2308, 150, 255, 255, 255); +} + +void SherbetLand::UnLoad() { + RestoreTriangleWinding(); } f32 SherbetLand::GetWaterLevel(FVector pos, Collision* collision) { @@ -220,8 +214,6 @@ void SherbetLand::RenderCredits() { } void SherbetLand::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter, uint16_t cameraRot, uint16_t playerDirection) { - Mat4 matrix; - gDPPipeSync(gDisplayListHead++); gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); @@ -229,9 +221,6 @@ void SherbetLand::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCoun gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); gDPSetTextureFilter(gDisplayListHead++, G_TF_BILERP); gDPSetTexturePersp(gDisplayListHead++, G_TP_PERSP); - - mtxf_identity(matrix); - render_set_position(matrix, 0); render_course_segments(sherbet_land_dls_2, screen); gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); @@ -240,14 +229,14 @@ void SherbetLand::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCoun gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); // d_course_sherbet_land_packed_dl_2B48 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07002B48)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_sherbet_land_packed_dl_2B48); } gDPPipeSync(gDisplayListHead++); } void SherbetLand::CreditsSpawnActors() { // d_course_sherbet_land_packed_dl_1EB8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07001EB8), 180, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_sherbet_land_packed_dl_1EB8, 180, 0xFF, 0xFF, 0xFF); // d_course_sherbet_land_packed_dl_2308 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*)0x07002308), 150, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_sherbet_land_packed_dl_2308, 150, 0xFF, 0xFF, 0xFF); } diff --git a/src/engine/courses/SherbetLand.h b/src/engine/courses/SherbetLand.h index eb62e2807..ecc72aedf 100644 --- a/src/engine/courses/SherbetLand.h +++ b/src/engine/courses/SherbetLand.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/sherbet_land_vertices.h" - #include "assets/sherbet_land_displaylists.h" - #include "assets/sherbet_land_data.h" + #include "assets/models/tracks/sherbet_land/sherbet_land_vertices.h" + #include "assets/models/tracks/sherbet_land/sherbet_land_displaylists.h" + #include "assets/models/tracks/sherbet_land/sherbet_land_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,6 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; + virtual void UnLoad() override; virtual f32 GetWaterLevel(FVector pos, Collision* collision) override; virtual void BeginPlay() override; virtual void UpdateCourseObjects() override; diff --git a/src/engine/courses/Skyscraper.cpp b/src/engine/courses/Skyscraper.cpp index 53232257d..0abd6caa5 100644 --- a/src/engine/courses/Skyscraper.cpp +++ b/src/engine/courses/Skyscraper.cpp @@ -6,7 +6,8 @@ #include "Skyscraper.h" #include "World.h" #include "engine/objects/BombKart.h" -#include "assets/skyscraper_data.h" +#include "assets/models/tracks/skyscraper/skyscraper_data.h" +#include "assets/other/tracks/skyscraper/skyscraper_data.h" extern "C" { #include "main.h" @@ -22,48 +23,16 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" - extern const char *skyscraper_dls[]; extern s16 currentScreenSection; } -const course_texture skyscraper_textures[] = { - { gTexture6457D8, 0x0160, 0x0800, 0x0 }, - { gTexture6462C0, 0x01B9, 0x0800, 0x0 }, - { gTexture6864E8, 0x0807, 0x1000, 0x0 }, - { gTexture686CF0, 0x08B7, 0x1000, 0x0 }, - { gTexture6875A8, 0x093F, 0x1000, 0x0 }, - { gTexture687EE8, 0x0883, 0x1000, 0x0 }, - { gTexture68876C, 0x0AC2, 0x1000, 0x0 }, - { gTexture689230, 0x09CE, 0x1000, 0x0 }, - { gTexture689C00, 0x0884, 0x1000, 0x0 }, - { gTexture68A484, 0x07D6, 0x1000, 0x0 }, - { gTexture68AC5C, 0x0A47, 0x1000, 0x0 }, - { gTexture68B6A4, 0x07C5, 0x1000, 0x0 }, - { gTexture68BE6C, 0x04A1, 0x1000, 0x0 }, - { gTexture68C310, 0x030D, 0x1000, 0x0 }, - { gTexture64B8D8, 0x0177, 0x0800, 0x0 }, - { gTexture645660, 0x0176, 0x0800, 0x0 }, - { gTextureNumberYellowBlue1, 0x01AE, 0x0800, 0x0 }, - { gTextureNumberYellowBlue2, 0x01C6, 0x0800, 0x0 }, - { gTextureNumberYellowBlue3, 0x01CC, 0x0800, 0x0 }, - { gTextureNumberYellowBlue4, 0x01E4, 0x0800, 0x0 }, - { gTexture668608, 0x0120, 0x0800, 0x0 }, - { gTexture67B75C, 0x0108, 0x0800, 0x0 }, - { gTexture6835F0, 0x0252, 0x1000, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - Skyscraper::Skyscraper() { - this->vtx = d_course_skyscraper_vertex; - this->gfx = d_course_skyscraper_packed_dls; - this->gfxSize = 548; - Props.textures = skyscraper_textures; Props.Minimap.Texture = minimap_skyscraper; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -138,15 +107,23 @@ Skyscraper::Skyscraper() { void Skyscraper::Load() { Course::Load(); - + if (gIsMirrorMode != 0) { + InvertTriangleWindingByName(d_course_skyscraper_packed_dl_FE8); + InvertTriangleWindingByName(d_course_skyscraper_packed_dl_C60); + InvertTriangleWindingByName(d_course_skyscraper_packed_dl_B70); + InvertTriangleWindingByName(d_course_skyscraper_packed_dl_6B8); + InvertTriangleWindingByName(d_course_skyscraper_packed_dl_570); + InvertTriangleWindingByName(d_course_skyscraper_packed_dl_10C8); + InvertTriangleWindingByName(d_course_skyscraper_packed_dl_258); + } // d_course_skyscraper_packed_dl_1110 - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*)0x07001110), 1); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_skyscraper_packed_dl_1110, 1); // d_course_skyscraper_packed_dl_258 - generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual((void*)0x07000258), 1); + generate_collision_mesh_with_default_section_id((Gfx*) d_course_skyscraper_packed_dl_258, 1); func_80295C6C(); } -void Skyscraper::LoadTextures() { +void Skyscraper::UnLoad() { } void Skyscraper::BeginPlay() { @@ -177,21 +154,21 @@ void Skyscraper::Render(struct UnkStruct_800DC5EC* arg0) { gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); // d_course_skyscraper_packed_dl_FE8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07000FE8))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_skyscraper_packed_dl_FE8); // d_course_skyscraper_packed_dl_C60 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07000C60))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_skyscraper_packed_dl_C60); // d_course_skyscraper_packed_dl_B70 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07000B70))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_skyscraper_packed_dl_B70); // d_course_skyscraper_packed_dl_6B8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x070006B8))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_skyscraper_packed_dl_6B8); // d_course_skyscraper_packed_dl_570 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07000570))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_skyscraper_packed_dl_570); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); // d_course_skyscraper_packed_dl_10C8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x070010C8))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_skyscraper_packed_dl_10C8); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); // d_course_skyscraper_packed_dl_258 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual((void*)0x07000258))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_skyscraper_packed_dl_258); } void Skyscraper::RenderCredits() {} diff --git a/src/engine/courses/Skyscraper.h b/src/engine/courses/Skyscraper.h index ed6592121..f7a323037 100644 --- a/src/engine/courses/Skyscraper.h +++ b/src/engine/courses/Skyscraper.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/skyscraper_vertices.h" - #include "assets/skyscraper_displaylists.h" - #include "assets/skyscraper_data.h" + #include "assets/models/tracks/skyscraper/skyscraper_vertices.h" + #include "assets/models/tracks/skyscraper/skyscraper_displaylists.h" + #include "assets/models/tracks/skyscraper/skyscraper_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; //virtual void InitClouds() override; virtual void InitCourseObjects() override; diff --git a/src/engine/courses/TestCourse.cpp b/src/engine/courses/TestCourse.cpp index f4a6710ac..c60198329 100644 --- a/src/engine/courses/TestCourse.cpp +++ b/src/engine/courses/TestCourse.cpp @@ -13,9 +13,9 @@ #include "engine/actors/Starship.h" #include "engine/objects/Object.h" #include "engine/objects/BombKart.h" -#include "assets/mario_raceway_data.h" -#include "assets/bowsers_castle_data.h" -#include "assets/bowsers_castle_displaylists.h" +#include "assets/models/tracks/mario_raceway/mario_raceway_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_displaylists.h" #include "engine/actors/Tree.h" #include "engine/actors/Cloud.h" #include "engine/vehicles/Train.h" @@ -45,7 +45,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -60,8 +60,6 @@ extern "C" { } TestCourse::TestCourse() { - this->gfxSize = 100; - this->textures = NULL; Props.Minimap.Texture = minimap_mario_raceway; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -139,6 +137,10 @@ TestCourse::TestCourse() { void TestCourse::Load() { Course::Load(mario_Plane_001_mesh_vtx_1, NULL); + if (gIsMirrorMode != 0) { + InvertTriangleWinding(mario_Plane_001_mesh); + } + generate_collision_mesh_with_defaults(mario_Plane_001_mesh); parse_course_displaylists((TrackSections*)test_course_addr); @@ -146,8 +148,7 @@ void TestCourse::Load() { Props.WaterLevel = gCourseMinY - 10.0f; } -void TestCourse::LoadTextures() { - dma_textures(gTextureTrees1, 0x0000035BU, 0x00000800U); // 0x03009000 +void TestCourse::UnLoad() { } void TestCourse::BeginPlay() { diff --git a/src/engine/courses/TestCourse.h b/src/engine/courses/TestCourse.h index d44e0a266..8bbb93634 100644 --- a/src/engine/courses/TestCourse.h +++ b/src/engine/courses/TestCourse.h @@ -4,14 +4,14 @@ #include "Course.h" extern "C" { - #include "mario_raceway_vertices.h" - #include "mario_raceway_displaylists.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_vertices.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_displaylists.h" + #include "assets/models/tracks/mario_raceway/mario_raceway_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" #include "objects.h" #include "path_spawn_metadata.h" - #include "mario_raceway_data.h" extern const course_texture test_course_textures[]; } @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void WhatDoesThisDo(Player* player, int8_t playerId) override; virtual void WhatDoesThisDoAI(Player* player, int8_t playerId) override; diff --git a/src/engine/courses/ToadsTurnpike.cpp b/src/engine/courses/ToadsTurnpike.cpp index 69fcc7724..af0cb51d4 100644 --- a/src/engine/courses/ToadsTurnpike.cpp +++ b/src/engine/courses/ToadsTurnpike.cpp @@ -6,7 +6,8 @@ #include "ToadsTurnpike.h" #include "World.h" #include "engine/objects/BombKart.h" -#include "assets/toads_turnpike_data.h" +#include "assets/models/tracks/toads_turnpike/toads_turnpike_data.h" +#include "assets/other/tracks/toads_turnpike/toads_turnpike_data.h" #include "engine/actors/Finishline.h" #include "engine/vehicles/Bus.h" #include "engine/vehicles/Car.h" @@ -29,7 +30,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -37,39 +38,12 @@ extern "C" { #include "memory.h" #include "code_80086E70.h" #include "course.h" - extern const char *d_course_toads_turnpike_dl_list[]; + extern const char *d_course_toads_turnpike_dl_list[81]; extern s16 currentScreenSection; extern s8 gPlayerCount; } -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, 0x02A6, 0x1000, 0x0 }, - { gTextureSignNintendoRed1, 0x02F7, 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 }, -}; - ToadsTurnpike::ToadsTurnpike() { - this->vtx = d_course_toads_turnpike_vertex; - this->gfx = d_course_toads_turnpike_packed_dls; - this->gfxSize = 3427; - Props.textures = toads_turnpike_textures; Props.Minimap.Texture = minimap_toads_turnpike; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -145,14 +119,20 @@ ToadsTurnpike::ToadsTurnpike() { Props.Skybox.FloorBottomLeft = {0, 0, 0}; Props.Skybox.FloorTopLeft = {209, 65, 23}; Props.Sequence = MusicSeq::MUSIC_SEQ_TOADS_TURNPIKE; - for (size_t i = 0; i < 80; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) d_course_toads_turnpike_dl_list[i], Props.textures); - } } void ToadsTurnpike::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(d_course_toads_turnpike_dl_list); i++) { + InvertTriangleWindingByName(d_course_toads_turnpike_dl_list[i]); + } + InvertTriangleWindingByName(d_course_toads_turnpike_packed_dl_0); + InvertTriangleWindingByName(d_course_toads_turnpike_packed_dl_68); + InvertTriangleWindingByName(d_course_toads_turnpike_packed_dl_D8); + } + D_801625EC = 43; D_801625F4 = 13; D_801625F0 = 4; @@ -163,7 +143,8 @@ void ToadsTurnpike::Load() { Props.WaterLevel = gCourseMinY - 10.0f; } -void ToadsTurnpike::LoadTextures() { +void ToadsTurnpike::UnLoad() { + RestoreTriangleWinding(); } void ToadsTurnpike::BeginPlay() { @@ -276,11 +257,11 @@ void ToadsTurnpike::Render(struct UnkStruct_800DC5EC* arg0) { gDPSetRenderMode(gDisplayListHead++, G_RM_FOG_SHADE_A, G_RM_AA_ZB_TEX_EDGE2); gDPSetCombineMode(gDisplayListHead++, G_CC_DECALRGBA, G_CC_PASS2); // d_course_toads_turnpike_packed_dl_0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07000000)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_toads_turnpike_packed_dl_0); // d_course_toads_turnpike_packed_dl_68 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x07000068)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_toads_turnpike_packed_dl_68); // d_course_toads_turnpike_packed_dl_D8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*)0x070000D8)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_toads_turnpike_packed_dl_D8); gSPClearGeometryMode(gDisplayListHead++, G_FOG); gDPSetCycleType(gDisplayListHead++, G_CYC_1CYCLE); } diff --git a/src/engine/courses/ToadsTurnpike.h b/src/engine/courses/ToadsTurnpike.h index de145849d..9c72a466e 100644 --- a/src/engine/courses/ToadsTurnpike.h +++ b/src/engine/courses/ToadsTurnpike.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/toads_turnpike_vertices.h" - #include "assets/toads_turnpike_displaylists.h" - #include "assets/toads_turnpike_data.h" + #include "assets/models/tracks/toads_turnpike/toads_turnpike_vertices.h" + #include "assets/models/tracks/toads_turnpike/toads_turnpike_displaylists.h" + #include "assets/models/tracks/toads_turnpike/toads_turnpike_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitClouds() override; virtual void UpdateClouds(s32, Camera*) override; diff --git a/src/engine/courses/WarioStadium.cpp b/src/engine/courses/WarioStadium.cpp index 6904ad45b..9f900b885 100644 --- a/src/engine/courses/WarioStadium.cpp +++ b/src/engine/courses/WarioStadium.cpp @@ -6,7 +6,8 @@ #include "WarioStadium.h" #include "World.h" #include "engine/objects/BombKart.h" -#include "assets/wario_stadium_data.h" +#include "assets/models/tracks/wario_stadium/wario_stadium_data.h" +#include "assets/other/tracks/wario_stadium/wario_stadium_data.h" #include "engine/actors/WarioSign.h" #include "engine/actors/Finishline.h" @@ -24,7 +25,7 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" @@ -33,39 +34,11 @@ extern "C" { #include "memory.h" #include "skybox_and_splitscreen.h" #include "course.h" -extern const char* wario_stadium_dls[]; +extern const char* wario_stadium_dls[108]; extern s16 currentScreenSection; } -const course_texture wario_stadium_textures[] = { - { gTexture67F15C, 0x02F1, 0x0800, 0x0 }, - { gTexture67F450, 0x0194, 0x0800, 0x0 }, - { gTextureSignWarioFace, 0x0825, 0x1000, 0x0 }, - { gTexture670AC8, 0x0FBF, 0x1000, 0x0 }, - { gTextureCheckerboardBlackWhite, 0x0107, 0x0800, 0x0 }, - { gTexture64C11C, 0x0695, 0x0800, 0x0 }, - { gTexture64C7B4, 0x046C, 0x0800, 0x0 }, - { gTexture668228, 0x0130, 0x0800, 0x0 }, - { gTexture668358, 0x01A0, 0x0800, 0x0 }, - { gTexture66AEB8, 0x0201, 0x0800, 0x0 }, - { gTexture677A40, 0x0275, 0x0800, 0x0 }, - { gTexture67E428, 0x0A81, 0x1000, 0x0 }, - { gTexture643A34, 0x0106, 0x0800, 0x0 }, - { gTexture66EBF0, 0x0146, 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 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - WarioStadium::WarioStadium() { - this->vtx = d_course_wario_stadium_vertex; - this->gfx = d_course_wario_stadium_packed_dls; - this->gfxSize = 5272; - Props.textures = wario_stadium_textures; Props.Minimap.Texture = minimap_wario_stadium; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -141,36 +114,44 @@ WarioStadium::WarioStadium() { Props.Skybox.FloorBottomLeft = { 0, 0, 0 }; Props.Skybox.FloorTopLeft = { 0, 0, 0 }; Props.Sequence = MusicSeq::MUSIC_SEQ_WARIO_STADIUM; - for (size_t i = 0; i < 108; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) wario_stadium_dls[i], Props.textures); - } } void WarioStadium::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(wario_stadium_dls); i++) { + InvertTriangleWindingByName(wario_stadium_dls[i]); + } + InvertTriangleWindingByName(d_course_wario_stadium_packed_dl_A0C8); + InvertTriangleWindingByName(d_course_wario_stadium_packed_dl_A228); + InvertTriangleWindingByName(d_course_wario_stadium_packed_dl_A88); + InvertTriangleWindingByName(d_course_wario_stadium_packed_dl_EC0); + } + parse_course_displaylists((TrackSections*) LOAD_ASSET_RAW(d_course_wario_stadium_addr)); func_80295C6C(); Props.WaterLevel = gCourseMinY - 10.0f; // d_course_wario_stadium_packed_dl_C50 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000C50), 100, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_C50, 100, 255, 255, 255); // d_course_wario_stadium_packed_dl_BD8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000BD8), 100, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_BD8, 100, 255, 255, 255); // d_course_wario_stadium_packed_dl_B60 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000B60), 100, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_B60, 100, 255, 255, 255); // d_course_wario_stadium_packed_dl_AE8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000AE8), 100, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_AE8, 100, 255, 255, 255); // d_course_wario_stadium_packed_dl_CC8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000CC8), 100, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_CC8, 100, 255, 255, 255); // d_course_wario_stadium_packed_dl_D50 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000D50), 100, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_D50, 100, 255, 255, 255); // d_course_wario_stadium_packed_dl_DD0 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000DD0), 100, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_DD0, 100, 255, 255, 255); // d_course_wario_stadium_packed_dl_E48 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000E48), 100, 255, 255, 255); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_E48, 100, 255, 255, 255); } -void WarioStadium::LoadTextures() { +void WarioStadium::UnLoad() { + RestoreTriangleWinding(); } void WarioStadium::BeginPlay() { @@ -219,58 +200,41 @@ void WarioStadium::WhatDoesThisDo(Player* player, int8_t playerId) { void WarioStadium::WhatDoesThisDoAI(Player* player, int8_t playerId) { } -void WarioStadium::Jumbotron() { - gDPSetTile(gDisplayListHead++, 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); - gDPSetTileSize(gDisplayListHead++, G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0x8800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0x179B0), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0x9800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0x179F0), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0xA800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0x17A30), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0xB800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0x17A70), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0xC800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0x17AB0), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); - gDPSetTextureImage(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gSegmentTable[5] + 0xD800); - gDPTileSync(gDisplayListHead++); - gDPSetTile(gDisplayListHead++, G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, - G_TX_NOMASK, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD); - gDPLoadSync(gDisplayListHead++); - gDPLoadBlock(gDisplayListHead++, G_TX_LOADTILE, 0, 0, 2047, 128); - gSPVertex(gDisplayListHead++, (uintptr_t) segment_vtx_to_virtual(0x17AF0), 4, 0); - gSP2Triangles(gDisplayListHead++, 0, 1, 2, 0, 0, 2, 3, 0); +void WarioStadium::CopyJumbotron(s32 ulx, s32 uly, s16 portionToDraw, u16* source) { + // Add CVar if we want to expose a user toggle for only updating 1/6 of the jumbotron per frame + u8 updateWholeJumbo = true; + + if (portionToDraw == -1 || updateWholeJumbo) { + copy_framebuffer(ulx, uly, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture68272C)); + copy_framebuffer(ulx + 64, uly, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682928)); + copy_framebuffer(ulx, uly + 32, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682B24)); + copy_framebuffer(ulx + 64, uly + 32, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682D20)); + copy_framebuffer(ulx, uly + 64, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682F1C)); + copy_framebuffer(ulx + 64, uly + 64, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture683118)); + } else { + switch (portionToDraw) { + case 0: + copy_framebuffer(ulx, uly, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture68272C)); + break; + case 1: + copy_framebuffer(ulx + 64, uly, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682928)); + break; + case 2: + copy_framebuffer(ulx, uly + 32, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682B24)); + break; + case 3: + copy_framebuffer(ulx + 64, uly + 32, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682D20)); + break; + case 4: + copy_framebuffer(ulx, uly + 64, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture682F1C)); + break; + case 5: + copy_framebuffer(ulx + 64, uly + 64, 64, 32, source, (u16*) LOAD_ASSET_RAW(gTexture683118)); + break; + default: + break; + } + } } void WarioStadium::Render(struct UnkStruct_800DC5EC* arg0) { @@ -283,32 +247,31 @@ void WarioStadium::Render(struct UnkStruct_800DC5EC* arg0) { // Invalidate Jumbotron textures so they update each frame // This could be more efficient if we exposed the non-opcode based invalidation to be called // inside copy_framebuffers_port - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x8800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x9800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xA800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xB800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xC800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xD800); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture68272C); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture682928); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture682B24); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture682D20); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture682F1C); + gSPInvalidateTexCache(gDisplayListHead++, (uintptr_t) gTexture683118); if (func_80290C20(arg0->camera) == 1) { gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); // d_course_wario_stadium_packed_dl_A0C8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x0700A0C8)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_wario_stadium_packed_dl_A0C8); } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATERGBA, G_CC_MODULATERGBA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - WarioStadium::Jumbotron(); render_course_segments(wario_stadium_dls, arg0); // d_course_wario_stadium_packed_dl_A228 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x0700A228)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_wario_stadium_packed_dl_A228); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); // d_course_wario_stadium_packed_dl_A88 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(reinterpret_cast(0x07000A88)))); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_wario_stadium_packed_dl_A88); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); D_800DC5DC = 88; @@ -329,8 +292,7 @@ void WarioStadium::Render(struct UnkStruct_800DC5EC* arg0) { * The jumbo television screen used to be split into six sections to fit into the n64's texture size * restrictions It isn't split into six sections anymore */ - copy_jumbotron_fb_port(D_800DC5DC, D_800DC5E0, currentScreenSection, (u16*) gPortFramebuffers[prevFrame], - (u16*) (gSegmentTable[5] + 0x8800)); + CopyJumbotron(D_800DC5DC, D_800DC5E0, currentScreenSection, (u16*) gPortFramebuffers[prevFrame]); } } @@ -345,7 +307,6 @@ void WarioStadium::SomeCollisionThing(Player* player, Vec3f arg1, Vec3f arg2, Ve void WarioStadium::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter, uint16_t cameraRot, uint16_t playerDirection) { - Mat4 matrix; gDPPipeSync(gDisplayListHead++); gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); @@ -356,15 +317,12 @@ void WarioStadium::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCou gDPSetTextureFilter(gDisplayListHead++, G_TF_BILERP); gDPSetTexturePersp(gDisplayListHead++, G_TP_PERSP); - mtxf_identity(matrix); - render_set_position(matrix, 0); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_SURF, G_RM_AA_ZB_XLU_SURF2); gDPSetPrimColor(gDisplayListHead++, 0, 0, 0xFF, 0xFF, 0x00, 0xFF); // d_course_wario_stadium_packed_dl_EC0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual((void*) 0x07000EC0)); + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_wario_stadium_packed_dl_EC0); gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 1, 1, G_OFF); gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); @@ -383,21 +341,21 @@ void WarioStadium::CreditsSpawnActors() { vec3f_set(position, -2622.0f, 79.0f, 739.0f); add_actor_to_empty_slot(position, rotation, velocity, ACTOR_WARIO_SIGN); // d_course_wario_stadium_packed_dl_C50 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000C50), 0x64, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_C50, 0x64, 0xFF, 0xFF, 0xFF); // d_course_wario_stadium_packed_dl_BD8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000BD8), 0x64, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_BD8, 0x64, 0xFF, 0xFF, 0xFF); // d_course_wario_stadium_packed_dl_B60 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000B60), 0x64, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_B60, 0x64, 0xFF, 0xFF, 0xFF); // d_course_wario_stadium_packed_dl_AE8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000AE8), 0x64, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_AE8, 0x64, 0xFF, 0xFF, 0xFF); // d_course_wario_stadium_packed_dl_CC8 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000CC8), 0x64, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_CC8, 0x64, 0xFF, 0xFF, 0xFF); // d_course_wario_stadium_packed_dl_D50 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000D50), 0x64, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_D50, 0x64, 0xFF, 0xFF, 0xFF); // d_course_wario_stadium_packed_dl_DD0 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000DD0), 0x64, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_DD0, 0x64, 0xFF, 0xFF, 0xFF); // d_course_wario_stadium_packed_dl_E48 - find_vtx_and_set_colours(segmented_gfx_to_virtual((void*) 0x07000E48), 0x64, 0xFF, 0xFF, 0xFF); + find_vtx_and_set_colours((Gfx*) d_course_wario_stadium_packed_dl_E48, 0x64, 0xFF, 0xFF, 0xFF); } void WarioStadium::Destroy() { diff --git a/src/engine/courses/WarioStadium.h b/src/engine/courses/WarioStadium.h index 91f613c1b..eb8c253f4 100644 --- a/src/engine/courses/WarioStadium.h +++ b/src/engine/courses/WarioStadium.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { -#include "assets/wario_stadium_vertices.h" -#include "assets/wario_stadium_displaylists.h" -#include "assets/wario_stadium_data.h" +#include "assets/models/tracks/wario_stadium/wario_stadium_vertices.h" +#include "assets/models/tracks/wario_stadium/wario_stadium_displaylists.h" +#include "assets/models/tracks/wario_stadium/wario_stadium_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -16,7 +16,7 @@ extern const course_texture wario_stadium_textures[]; } class WarioStadium : public Course { - void Jumbotron(); + void CopyJumbotron(s32 ulx, s32 uly, s16 portionToDraw, u16* source); public: virtual ~WarioStadium() = default; // Virtual destructor for proper cleanup in derived classes @@ -27,7 +27,7 @@ class WarioStadium : public Course { // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitClouds() override; virtual void UpdateClouds(s32, Camera*) override; diff --git a/src/engine/courses/YoshiValley.cpp b/src/engine/courses/YoshiValley.cpp index 4576b53ca..c2506e568 100644 --- a/src/engine/courses/YoshiValley.cpp +++ b/src/engine/courses/YoshiValley.cpp @@ -10,8 +10,8 @@ #include "engine/objects/BombKart.h" #include "engine/objects/Hedgehog.h" #include "engine/objects/Flagpole.h" -#include "assets/yoshi_valley_data.h" -#include "assets/boo_frames.h" +#include "assets/models/tracks/yoshi_valley/yoshi_valley_data.h" +#include "assets/other/tracks/yoshi_valley/yoshi_valley_data.h" extern "C" { #include "main.h" @@ -27,40 +27,17 @@ extern "C" { #include "code_80005FD0.h" #include "spawn_players.h" #include "render_objects.h" - #include "assets/common_data.h" + #include "assets/models/common_data.h" #include "save.h" #include "replays.h" #include "actors.h" #include "collision.h" #include "memory.h" #include "course.h" - extern const char *d_course_yoshi_valley_dl_list[]; + extern const char *d_course_yoshi_valley_dl_list[124]; } -const course_texture yoshi_valley_textures[] = { - { gTexture66EBF0, 0x0146, 0x0800, 0x0 }, - { gTextureWoodBridgeSlats, 0x0DAB, 0x1000, 0x0 }, - { gTexture65E2EC, 0x02B0, 0x0800, 0x0 }, - { gTexture6846DC, 0x04EA, 0x0800, 0x0 }, - { gTextureFenceRope, 0x0540, 0x0800, 0x0 }, - { gTexture685108, 0x04D4, 0x0800, 0x0 }, - { gTexture64CC20, 0x0EC3, 0x1000, 0x0 }, - { gTextureGrass4, 0x05C3, 0x0800, 0x0 }, - { gTexture6775EC, 0x0233, 0x1000, 0x0 }, - { gTexture68E2D0, 0x087F, 0x0800, 0x0 }, - { gTextureCheckerboardBlackWhite, 0x0107, 0x0800, 0x0 }, - { gTexture643B3C, 0x0798, 0x0800, 0x0 }, - { gTextureSignWoodRedArrow, 0x04E1, 0x1000, 0x0 }, - { gTexture68DEC0, 0x0410, 0x0800, 0x0 }, - { 0x00000000, 0x0000, 0x0000, 0x0 }, -}; - YoshiValley::YoshiValley() { - this->vtx = d_course_yoshi_valley_vertex; - this->gfx = d_course_yoshi_valley_packed_dls; - this->gfxSize = 4140; - Props.textures = yoshi_valley_textures; - Props.Minimap.Texture = minimap_yoshi_valley; Props.Minimap.Width = ResourceGetTexWidthByName(Props.Minimap.Texture); Props.Minimap.Height = ResourceGetTexHeightByName(Props.Minimap.Texture); @@ -128,14 +105,17 @@ YoshiValley::YoshiValley() { Props.Skybox.FloorBottomLeft = {0, 0, 0}; Props.Skybox.FloorTopLeft = {95, 40, 15}; Props.Sequence = MusicSeq::MUSIC_SEQ_YOSHI_VALLEY; - for (size_t i = 0; i < 124; i++) { - replace_segmented_textures_with_o2r_textures((Gfx*) d_course_yoshi_valley_dl_list[i], Props.textures); - } } void YoshiValley::Load() { Course::Load(); + if (gIsMirrorMode != 0) { + for (size_t i = 0; i < ARRAY_COUNT(d_course_yoshi_valley_dl_list); i++) { + InvertTriangleWindingByName(d_course_yoshi_valley_dl_list[i]); + } + } + Lights1 lights4 = gdSPDefLights1(100, 100, 100, 255, 254, 254, 0, 0, 120); set_track_light_direction(&lights4, -0x38F0, 0x1C70, 1); parse_course_displaylists((TrackSections*)LOAD_ASSET_RAW(d_course_yoshi_valley_addr)); @@ -143,8 +123,8 @@ void YoshiValley::Load() { Props.WaterLevel = gCourseMinY - 10.0f; } -void YoshiValley::LoadTextures() { - dma_textures(gTextureTrees2, 0x000003E8U, 0x00000800U); // 0x03009000 +void YoshiValley::UnLoad() { + RestoreTriangleWinding(); } void YoshiValley::BeginPlay() { diff --git a/src/engine/courses/YoshiValley.h b/src/engine/courses/YoshiValley.h index b4ec8d442..88a306533 100644 --- a/src/engine/courses/YoshiValley.h +++ b/src/engine/courses/YoshiValley.h @@ -4,9 +4,9 @@ #include "Course.h" extern "C" { - #include "assets/yoshi_valley_vertices.h" - #include "assets/yoshi_valley_displaylists.h" - #include "assets/yoshi_valley_data.h" + #include "assets/models/tracks/yoshi_valley/yoshi_valley_vertices.h" + #include "assets/models/tracks/yoshi_valley/yoshi_valley_displaylists.h" + #include "assets/models/tracks/yoshi_valley/yoshi_valley_data.h" #include "course_offsets.h" #include "camera.h" #include "data/some_data.h" @@ -25,7 +25,7 @@ public: // virtual void Load(const char* courseVtx, // course_texture* textures, const char* displaylists, size_t dlSize); virtual void Load() override; - virtual void LoadTextures() override; + virtual void UnLoad() override; virtual void BeginPlay() override; virtual void InitCourseObjects() override; virtual void UpdateCourseObjects() override; diff --git a/src/engine/editor/Collision.cpp b/src/engine/editor/Collision.cpp index 026a79bd0..5a6d734ba 100644 --- a/src/engine/editor/Collision.cpp +++ b/src/engine/editor/Collision.cpp @@ -10,7 +10,7 @@ extern "C" { #include "main.h" -#include "other_textures.h" +#include "assets/textures/other_textures.h" } namespace Editor { diff --git a/src/engine/editor/SceneManager.cpp b/src/engine/editor/SceneManager.cpp index bd3414474..f34b18adb 100644 --- a/src/engine/editor/SceneManager.cpp +++ b/src/engine/editor/SceneManager.cpp @@ -33,7 +33,7 @@ namespace Editor { std::string SceneFile = ""; void SaveLevel() { - auto props = gWorldInstance.CurrentCourse->Props; + auto props = gWorldInstance.GetCurrentCourse()->Props; if ((CurrentArchive) && (!SceneFile.empty())) { nlohmann::json data; diff --git a/src/engine/mods/ModManager.cpp b/src/engine/mods/ModManager.cpp new file mode 100644 index 000000000..0d66b8e09 --- /dev/null +++ b/src/engine/mods/ModManager.cpp @@ -0,0 +1,284 @@ +#include "archive/Archive.h" +#include "ModMetadata.h" +#include "libultraship/src/resource/archive/FolderArchive.h" +#include "libultraship/src/resource/archive/O2rArchive.h" +#include "port/Engine.h" +#include "semver.hpp" +#include "utils/StringHelper.h" +#include +#include +#include + +#include "ModManager.h" + +void CheckMK64O2RExists(); +void FindAndLoadMods(); +void PrintModInfo(); +void DetectCyclicDependencies(); +void DetectOutdatedDependencies(); +void SortModsByDependencies(); + +std::vector>> Mods = {}; +const std::string main_path = Ship::Context::GetPathRelativeToAppDirectory("mk64.o2r"); +const std::string assets_path = Ship::Context::LocateFileAcrossAppDirs("spaghetti.o2r"); + +void InitModsSystem() { + CheckMK64O2RExists(); + + FindAndLoadMods(); + + PrintModInfo(); + + DetectCyclicDependencies(); + + DetectOutdatedDependencies(); + + SortModsByDependencies(); + + std::vector> loadedArchives; + loadedArchives.reserve(Mods.size()); + for (const auto& [_, archive] : Mods) { + if (archive == nullptr) { + continue; + } + loadedArchives.push_back(archive); + } + auto context = GameEngine::Instance->context; + auto resourceManager = context->GetResourceManager(); + auto archiveManager = resourceManager->GetArchiveManager(); + archiveManager->SetArchives(std::make_shared>>(loadedArchives)); +} + +void UnloadMods() { + Mods.clear(); +} + +void GenerateAssetsMods() { + if (GameEngine::ShowYesNoBox("No O2R Files", "No O2R files found. Generate one now?") == IDYES) { + if (!GameEngine::GenAssetFile()) { + GameEngine::ShowMessage("Error", "An error occured, no O2R file was generated.\n\nExiting..."); + exit(1); + } + } else { + exit(1); + } +} + +std::vector ListMods() { + std::vector archiveFiles; + if (std::filesystem::exists(main_path)) { + archiveFiles.push_back(main_path); + } else { // should not happen, but just in case + GenerateAssetsMods(); + archiveFiles.push_back(main_path); + } + + if (std::filesystem::exists(assets_path)) { + archiveFiles.push_back(assets_path); + } + + const std::string mods_path = Ship::Context::GetPathRelativeToAppDirectory("mods"); + + if (std::filesystem::exists(mods_path) && std::filesystem::is_directory(mods_path)) { + for (const auto& p : std::filesystem::directory_iterator(mods_path)) { + auto ext = p.path().extension().string(); + if (StringHelper::IEquals(ext, ".zip") || StringHelper::IEquals(ext, ".o2r") || std::filesystem::is_directory(p.path())) { + archiveFiles.push_back(p.path().generic_string()); + } + } + } + + return archiveFiles; +} + +std::optional> CheckCyclicDependencies() { + auto list = std::vector{}; + for (const auto& [metaA, _] : Mods) { + for (const auto& [metaB, _] : Mods) { + if (metaA.name != metaB.name) { + // If A depends on B and B depends on A, we have a cycle + if (metaA.dependencies.contains(metaB.name) && + metaB.dependencies.contains(metaA.name)) { + list.push_back(metaA.name + " <-> " + metaB.name); + } + } + } + } + if (!list.empty()) { + return list; + } + return std::nullopt; +} + +std::optional> CheckOutdatedDependencies(const ModMetadata& mod) { + auto list = std::vector{}; + for (const auto& [depName, depVersion] : mod.dependencies) { + bool found = false; + for (const auto& [otherMeta, _] : Mods) { + if (otherMeta.name == depName) { + found = true; + auto range = depVersion.first; + if (!range.contains(otherMeta.version)) { + list.push_back(depName + " (required: " + depVersion.second + ", found: " + otherMeta.version.to_string() + ")"); + } + break; + } + } + if (!found) { + list.push_back(depName + " (required: " + depVersion.second + ", found: none)"); + } + } + if (!list.empty()) { + return list; + } + return std::nullopt; +} + +void SortModsByDependencies() { + // Core assets that should always be loaded first (at the bottom of the priority stack) + static const std::vector coreAssets = { "mk64-assets", "extended-assets" }; + + std::sort(Mods.begin(), Mods.end(), + [](const std::tuple>& a, + const std::tuple>& b) { + const ModMetadata& metaA = std::get<0>(a); + const ModMetadata& metaB = std::get<0>(b); + + // Check if either mod is a core asset + auto itA = std::find(coreAssets.begin(), coreAssets.end(), metaA.name); + auto itB = std::find(coreAssets.begin(), coreAssets.end(), metaB.name); + bool isACoreAsset = itA != coreAssets.end(); + bool isBCoreAsset = itB != coreAssets.end(); + + // Core assets should come first (lower priority index) + if (isACoreAsset && !isBCoreAsset) { + return true; + } + if (!isACoreAsset && isBCoreAsset) { + return false; + } + // If both are core assets, sort by their order in coreAssets + if (isACoreAsset && isBCoreAsset) { + return itA < itB; + } + + // If A depends on B, A should come after B + if (metaA.dependencies.contains(metaB.name)) { + return false; + } + // If B depends on A, B should come after A + if (metaB.dependencies.contains(metaA.name)) { + return true; + } + // Otherwise, maintain original order + return false; + }); +} + +void AddModMetadata(const ModMetadata& metadata, const std::shared_ptr& archive) { + Mods.push_back(std::make_tuple(metadata, archive)); +} + +void AddCoreDependencies() { + ModMetadata meta; + meta.name = "spaghettikart-core"; + semver::parse(SPAGHETTI_VERSION, meta.version); + + semver::range_set mk64Ver; + semver::parse("1.0.0-alpha1", mk64Ver); + semver::range_set assetsVer; + semver::parse("1.0.0-alpha1", assetsVer); + meta.dependencies = { + {"mk64-assets", {mk64Ver, "1.0.0-alpha1"}}, + {"extended-assets", {assetsVer, "1.0.0-alpha1"}}, + }; + AddModMetadata(meta, nullptr); +} + +void CheckMK64O2RExists() { + if (!std::filesystem::exists(main_path)) { + GenerateAssetsMods(); + } +} + +void FindAndLoadMods() { + Mods.clear(); + AddCoreDependencies(); + auto list = ListMods(); + for (const auto& path : list) { + const std::string extension = std::filesystem::path(path).extension().string(); + std::shared_ptr archive = nullptr; + if (StringHelper::IEquals(extension, ".o2r") || StringHelper::IEquals(extension, ".zip")) { + archive = dynamic_pointer_cast(std::make_shared(path)); + } else if (StringHelper::IEquals(extension, "") && std::filesystem::is_directory(path)) { + archive = dynamic_pointer_cast(std::make_shared(path)); + } else if (StringHelper::IEquals(extension, ".disabled")) { + // Skip disabled mods + continue; + } else { + SPDLOG_WARN("The file {} has an unrecognized extension ({}), ignoring it.", path, extension); + continue; + } + + int nb_unknown_files = 0; + archive->Load(); + ModMetadata metadata; + auto mods_file = archive->LoadFile("mods.toml"); + if (mods_file != nullptr) { + metadata = ModMetadata::LoadFromTOML(std::string(mods_file->Buffer->data(), mods_file->Buffer->size())); + SPDLOG_INFO("Loaded mod: {}\n{}", metadata.name, metadata.ToString()); + } else { + const std::string msg = "The archive at path " + path + + " is missing a mods.toml file. The Mod are likely incompatible.\n\n" + "Do you want to continue loading the mods?"; + if (GameEngine::ShowYesNoBox("Missing mods.toml", msg.c_str()) == IDNO) { + exit(1); + } + metadata.name = std::filesystem::path(path).stem().string(); + semver::parse("0.0.0", metadata.version); + SPDLOG_WARN("The mod at path {} is missing a mods.toml file. Using default metadata:\n{}", path, metadata.ToString()); + } + + AddModMetadata(metadata, archive); + } +} + +void DetectCyclicDependencies() { + if (auto cyclicDeps = CheckCyclicDependencies(); cyclicDeps.has_value()) { + std::string msg = "Cyclic dependencies detected between the following mods:\n"; + for (const auto& cycle : cyclicDeps.value()) { + msg += " - " + cycle + "\n"; + } + msg += "\nPlease resolve these cyclic dependencies before continuing.\n"; + GameEngine::ShowMessage("Cyclic Dependency Issues", msg.c_str()); + exit(1); + } +} + +void DetectOutdatedDependencies() { + bool exitDueToErrors = false; + std::string allDepIssues; + + for (const auto& [meta, _] : Mods) { + if (auto toUpdate = CheckOutdatedDependencies(meta); toUpdate.has_value()) { + exitDueToErrors = true; + allDepIssues += "The mod \"" + meta.name + "\" has the following missing or outdated dependencies:\n"; + for (const auto& dep : toUpdate.value()) { + allDepIssues += " - " + dep + "\n"; + } + } + } + + if (exitDueToErrors) { + allDepIssues += "\nPlease resolve these dependency issues before continuing.\n"; + GameEngine::ShowMessage("Dependency Issues", allDepIssues.c_str()); + exit(1); + } +} + +void PrintModInfo() { + SPDLOG_INFO("[ModManager] Detected Mods:"); + for (const auto& [meta, _] : Mods) { + SPDLOG_INFO(" - {} v{}", meta.name, meta.version.to_string()); + } +} diff --git a/src/engine/mods/ModManager.h b/src/engine/mods/ModManager.h new file mode 100644 index 000000000..af0baa2e9 --- /dev/null +++ b/src/engine/mods/ModManager.h @@ -0,0 +1,4 @@ +#pragma once + +void InitModsSystem(); +void UnloadMods(); \ No newline at end of file diff --git a/src/engine/mods/ModMetadata.cpp b/src/engine/mods/ModMetadata.cpp new file mode 100644 index 000000000..9d29e35a4 --- /dev/null +++ b/src/engine/mods/ModMetadata.cpp @@ -0,0 +1,12 @@ +#include "ModMetadata.h" +#include + +std::string ModMetadata::ToString() const { + std::string result = "Mod Name: " + name + "\n"; + result += "Version: " + version.to_string() + "\n"; + result += "Dependencies:\n"; + for (const auto& [depName, depVersion] : dependencies) { + result.append(" - ").append(depName).append(": ").append(depVersion.second).append("\n"); + } + return result; +} \ No newline at end of file diff --git a/src/engine/mods/ModMetadata.h b/src/engine/mods/ModMetadata.h new file mode 100644 index 000000000..ed66ebf3d --- /dev/null +++ b/src/engine/mods/ModMetadata.h @@ -0,0 +1,48 @@ +#pragma once + +#ifdef __cplusplus +#include "spdlog/spdlog.h" +#include +#include +#include +#include "semver.hpp" + +struct ModMetadata { + std::string name; + semver::version version; + std::map, std::string>> dependencies; + + ModMetadata() {} + static ModMetadata LoadFromTOML(const std::string& tomlContent) { + ModMetadata metadata; + try { + auto table = toml::parse(tomlContent); + auto mods_property = table["mod"]; + + if (auto nameValue = mods_property["name"].value()) { + metadata.name = *nameValue; + } + + if (auto versionValue = mods_property["version"].value()) { + semver::parse(*versionValue, metadata.version); + } + + if (auto *depsTable = table["dependencies"].as_table()) { + for (const auto& [key, value] : *depsTable) { + if (auto depVersion = value.value()) { + semver::range_set parsedVersion; + semver::parse(*depVersion, parsedVersion); + metadata.dependencies[std::string(key)] = std::make_pair(parsedVersion, *depVersion); + } + } + } + } catch (const toml::parse_error& err) { + SPDLOG_ERROR("Failed to parse mods.toml: {}", err.what()); + } + + return metadata; + } + + std::string ToString() const; +}; +#endif \ No newline at end of file diff --git a/src/engine/objects/Bat.cpp b/src/engine/objects/Bat.cpp index 25c28c751..2b6f01230 100644 --- a/src/engine/objects/Bat.cpp +++ b/src/engine/objects/Bat.cpp @@ -6,8 +6,9 @@ extern "C" { #include "render_objects.h" #include "update_objects.h" -#include "assets/banshee_boardwalk_data.h" -#include "assets/common_data.h" +#include "assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h" +#include "assets/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.h" +#include "assets/models/common_data.h" #include "math_util.h" #include "math_util_2.h" #include "code_80086E70.h" diff --git a/src/engine/objects/BombKart.cpp b/src/engine/objects/BombKart.cpp index c465aea43..4ba5ff843 100644 --- a/src/engine/objects/BombKart.cpp +++ b/src/engine/objects/BombKart.cpp @@ -24,6 +24,7 @@ extern "C" { #include "code_80005FD0.h" #include "math_util_2.h" #include "collision.h" +#include extern s8 gPlayerCount; } diff --git a/src/engine/objects/Boos.cpp b/src/engine/objects/Boos.cpp index a22b0edd0..20b16355e 100644 --- a/src/engine/objects/Boos.cpp +++ b/src/engine/objects/Boos.cpp @@ -6,10 +6,11 @@ extern "C" { #include "render_objects.h" #include "update_objects.h" -#include "assets/banshee_boardwalk_data.h" -#include "assets/common_data.h" -#include "assets/boo_frames.h" -#include "assets/other_textures.h" +#include "assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h" +#include "assets/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.h" +#include "assets/models/common_data.h" +#include "assets/textures/boo_frames.h" +#include "assets/textures/other_textures.h" #include "math_util.h" #include "math_util_2.h" #include "code_80086E70.h" diff --git a/src/engine/objects/ChainChomp.cpp b/src/engine/objects/ChainChomp.cpp index 9f750831b..b9c59606d 100644 --- a/src/engine/objects/ChainChomp.cpp +++ b/src/engine/objects/ChainChomp.cpp @@ -4,8 +4,10 @@ extern "C" { #include "render_objects.h" #include "update_objects.h" -#include "assets/rainbow_road_data.h" -#include "assets/common_data.h" +#include "assets/models/tracks/rainbow_road/rainbow_road_data.h" +#include "assets/textures/tracks/rainbow_road/rainbow_road_data.h" +#include "assets/other/tracks/rainbow_road/rainbow_road_data.h" +#include "assets/models/common_data.h" #include "math_util.h" #include "math_util_2.h" #include "code_80086E70.h" diff --git a/src/engine/objects/CheepCheep.cpp b/src/engine/objects/CheepCheep.cpp index a2432f57e..f52af62a1 100644 --- a/src/engine/objects/CheepCheep.cpp +++ b/src/engine/objects/CheepCheep.cpp @@ -1,8 +1,8 @@ #include "CheepCheep.h" #include "port/Game.h" -#include "assets/banshee_boardwalk_data.h" -#include "assets/common_data.h" +#include "assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h" +#include "assets/models/common_data.h" extern "C" { diff --git a/src/engine/objects/Crab.cpp b/src/engine/objects/Crab.cpp index 9e4e4687b..c24c07221 100644 --- a/src/engine/objects/Crab.cpp +++ b/src/engine/objects/Crab.cpp @@ -21,7 +21,9 @@ extern "C" { #include "code_80005FD0.h" #include "some_data.h" #include "ceremony_and_credits.h" -#include "assets/koopa_troopa_beach_data.h" +#include "assets/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h" +#include "assets/textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data.h" +#include "assets/models/common_data.h" } size_t OCrab::_count = 0; diff --git a/src/engine/objects/Flagpole.cpp b/src/engine/objects/Flagpole.cpp index 58581e3c9..ec7588720 100644 --- a/src/engine/objects/Flagpole.cpp +++ b/src/engine/objects/Flagpole.cpp @@ -5,8 +5,8 @@ extern "C" { #include "code_800029B0.h" #include "render_objects.h" #include "update_objects.h" -#include "assets/yoshi_valley_data.h" -#include "assets/common_data.h" +#include "assets/models/tracks/yoshi_valley/yoshi_valley_data.h" +#include "assets/models/common_data.h" #include "math_util.h" #include "math_util_2.h" #include "code_80086E70.h" diff --git a/src/engine/objects/GrandPrixBalloons.cpp b/src/engine/objects/GrandPrixBalloons.cpp index 05ba880c6..2180f85c0 100644 --- a/src/engine/objects/GrandPrixBalloons.cpp +++ b/src/engine/objects/GrandPrixBalloons.cpp @@ -1,8 +1,9 @@ #include "GrandPrixBalloons.h" #include "port/Game.h" -#include "assets/other_textures.h" -#include "assets/common_data.h" +#include "assets/textures/other_textures.h" +#include "assets/textures/some_data.h" +#include "assets/models/common_data.h" #include "port/interpolation/FrameInterpolation.h" extern "C" { diff --git a/src/engine/objects/Hedgehog.cpp b/src/engine/objects/Hedgehog.cpp index a36853a91..a166cd348 100644 --- a/src/engine/objects/Hedgehog.cpp +++ b/src/engine/objects/Hedgehog.cpp @@ -6,8 +6,9 @@ extern "C" { #include "render_objects.h" #include "update_objects.h" -#include "assets/yoshi_valley_data.h" -#include "assets/common_data.h" +#include "assets/models/tracks/yoshi_valley/yoshi_valley_data.h" +#include "assets/textures/tracks/yoshi_valley/yoshi_valley_data.h" +#include "assets/models/common_data.h" #include "math_util.h" #include "math_util_2.h" #include "code_80086E70.h" diff --git a/src/engine/objects/HotAirBalloon.cpp b/src/engine/objects/HotAirBalloon.cpp index b30c8e3ed..74de17230 100644 --- a/src/engine/objects/HotAirBalloon.cpp +++ b/src/engine/objects/HotAirBalloon.cpp @@ -5,8 +5,8 @@ extern "C" { #include "render_objects.h" #include "update_objects.h" -#include "assets/luigi_raceway_data.h" -#include "assets/common_data.h" +#include "assets/models/tracks/luigi_raceway/luigi_raceway_data.h" +#include "assets/models/common_data.h" #include "math_util.h" #include "math_util_2.h" #include "code_80086E70.h" diff --git a/src/engine/objects/Lakitu.cpp b/src/engine/objects/Lakitu.cpp index 392fe9100..d4c4b18c7 100644 --- a/src/engine/objects/Lakitu.cpp +++ b/src/engine/objects/Lakitu.cpp @@ -24,7 +24,7 @@ extern "C" { #include "defines.h" #include "code_80005FD0.h" #include "collision.h" -#include "assets/bowsers_castle_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_data.h" #include "ceremony_and_credits.h" #include "objects.h" #include "update_objects.h" @@ -34,6 +34,7 @@ extern "C" { #include "race_logic.h" #include "effects.h" #include "memory.h" +#include extern s8 gPlayerCount; } diff --git a/src/engine/objects/Mole.cpp b/src/engine/objects/Mole.cpp index 9bc470f90..92d357873 100644 --- a/src/engine/objects/Mole.cpp +++ b/src/engine/objects/Mole.cpp @@ -17,9 +17,11 @@ extern "C" { #include "code_80005FD0.h" #include "some_data.h" #include "ceremony_and_credits.h" -#include "assets/moo_moo_farm_data.h" +#include "assets/models/tracks/moo_moo_farm/moo_moo_farm_data.h" +#include "assets/textures/tracks/moo_moo_farm/moo_moo_farm_data.h" #include "sounds.h" #include "external.h" +#include } #include "port/interpolation/FrameInterpolation.h" diff --git a/src/engine/objects/Penguin.cpp b/src/engine/objects/Penguin.cpp index 262446abb..27c009489 100644 --- a/src/engine/objects/Penguin.cpp +++ b/src/engine/objects/Penguin.cpp @@ -23,7 +23,7 @@ extern "C" { #include "code_80005FD0.h" #include "math_util_2.h" #include "collision.h" -#include "assets/bowsers_castle_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_data.h" #include "ceremony_and_credits.h" #include "objects.h" #include "update_objects.h" diff --git a/src/engine/objects/Podium.cpp b/src/engine/objects/Podium.cpp index d5e09d799..621ba91ab 100644 --- a/src/engine/objects/Podium.cpp +++ b/src/engine/objects/Podium.cpp @@ -1,5 +1,5 @@ #include "Podium.h" -#include "assets/ceremony_data.h" +#include "assets/models/ceremony_data.h" extern "C" { #include "main.h" @@ -10,7 +10,7 @@ extern "C" { #include "podium_ceremony_actors.h" #include "math_util.h" #include "math_util_2.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" #include "some_data.h" #include "code_80091440.h" #include "code_80086E70.h" diff --git a/src/engine/objects/Seagull.cpp b/src/engine/objects/Seagull.cpp index 61a7f39ca..8eff07740 100644 --- a/src/engine/objects/Seagull.cpp +++ b/src/engine/objects/Seagull.cpp @@ -21,6 +21,7 @@ extern "C" { #include "code_80005FD0.h" #include "some_data.h" #include "ceremony_and_credits.h" +#include "assets/models/common_data.h" extern SplineData D_800E6034; extern SplineData D_800E60F0; extern SplineData D_800E61B4; diff --git a/src/engine/objects/Snowman.cpp b/src/engine/objects/Snowman.cpp index dd98e2df0..6e6335f2c 100644 --- a/src/engine/objects/Snowman.cpp +++ b/src/engine/objects/Snowman.cpp @@ -4,8 +4,9 @@ extern "C" { #include "render_objects.h" #include "update_objects.h" -#include "assets/frappe_snowland_data.h" -#include "assets/common_data.h" +#include "assets/models/tracks/frappe_snowland/frappe_snowland_data.h" +#include "assets/textures/tracks/frappe_snowland/frappe_snowland_data.h" +#include "assets/models/common_data.h" #include "math_util.h" #include "math_util_2.h" #include "code_80086E70.h" diff --git a/src/engine/objects/Thwomp.cpp b/src/engine/objects/Thwomp.cpp index b597f26ba..324f32cfb 100644 --- a/src/engine/objects/Thwomp.cpp +++ b/src/engine/objects/Thwomp.cpp @@ -26,12 +26,14 @@ extern "C" { #include "code_80005FD0.h" #include "math_util_2.h" #include "collision.h" -#include "assets/bowsers_castle_data.h" +#include "assets/models/tracks/bowsers_castle/bowsers_castle_data.h" +#include "assets/textures/tracks/bowsers_castle/bowsers_castle_data.h" #include "ceremony_and_credits.h" #include "objects.h" #include "update_objects.h" #include "render_objects.h" #include "some_data.h" +#include "assets/models/common_data.h" extern s8 gPlayerCount; } @@ -758,7 +760,7 @@ void OThwomp::Draw(s32 cameraId) { void OThwomp::DrawModel(s32 objectIndex) { if ((gObjectList[objectIndex].state >= 2) && (func_80072354(objectIndex, 0x00000040) != 0)) { - FrameInterpolation_RecordOpenChild("Thwomp_Main", (uintptr_t) TAG_THWOMP(this)); + FrameInterpolation_RecordOpenChild("Thwomp_Main", TAG_THWOMP(this)); func_8004A7AC(objectIndex, 1.75f); rsp_set_matrix_transformation(gObjectList[objectIndex].pos, gObjectList[objectIndex].orientation, gObjectList[objectIndex].sizeScaling); diff --git a/src/engine/objects/TrashBin.cpp b/src/engine/objects/TrashBin.cpp index 871151b8f..954b9491a 100644 --- a/src/engine/objects/TrashBin.cpp +++ b/src/engine/objects/TrashBin.cpp @@ -10,8 +10,8 @@ extern "C" { #include "code_800029B0.h" #include "render_objects.h" #include "update_objects.h" -#include "assets/banshee_boardwalk_data.h" -#include "assets/common_data.h" +#include "assets/models/tracks/banshee_boardwalk/banshee_boardwalk_data.h" +#include "assets/models/common_data.h" #include "math_util.h" #include "math_util_2.h" #include "code_80086E70.h" diff --git a/src/engine/objects/Trophy.cpp b/src/engine/objects/Trophy.cpp index ba5435953..865ccc822 100644 --- a/src/engine/objects/Trophy.cpp +++ b/src/engine/objects/Trophy.cpp @@ -1,6 +1,6 @@ #include "Trophy.h" -#include "assets/common_data.h" -#include "assets/data_segment2.h" +#include "assets/models/common_data.h" +#include "assets/models/data_segment2.h" #include "port/Game.h" extern "C" { @@ -8,7 +8,7 @@ extern "C" { #include "defines.h" #include "update_objects.h" #include "code_80057C60.h" -#include "assets/ceremony_data.h" +#include "assets/models/ceremony_data.h" #include "podium_ceremony_actors.h" #include "engine/particles/StarEmitter.h" #include "math_util.h" diff --git a/src/engine/particles/StarEmitter.cpp b/src/engine/particles/StarEmitter.cpp index cd1b60b25..fafb7a007 100644 --- a/src/engine/particles/StarEmitter.cpp +++ b/src/engine/particles/StarEmitter.cpp @@ -5,7 +5,7 @@ extern "C" { #include "render_objects.h" -#include "common_data.h" +#include "assets/models/common_data.h" #include "code_80057C60.h" #include "update_objects.h" #include "code_80086E70.h" diff --git a/src/engine/vehicles/Train.cpp b/src/engine/vehicles/Train.cpp index 6e0738033..23724fad6 100644 --- a/src/engine/vehicles/Train.cpp +++ b/src/engine/vehicles/Train.cpp @@ -23,7 +23,7 @@ extern "C" { #include "code_80057C60.h" #include "math_util_2.h" #include "render_objects.h" -#include "assets/common_data.h" +#include "assets/models/common_data.h" // #include "common_structs.h" } diff --git a/src/enhancements/collision_viewer.c b/src/enhancements/collision_viewer.c index 47c87a80e..0327310e8 100644 --- a/src/enhancements/collision_viewer.c +++ b/src/enhancements/collision_viewer.c @@ -11,8 +11,8 @@ #include "collision_viewer.h" #include "math_util.h" -#include "assets/other_textures.h" -#include "assets/common_data.h" +#include "assets/textures/other_textures.h" +#include "assets/models/common_data.h" //! @todo decide to use colours or textures and fix displaylists because they are buggy diff --git a/src/gbiMacro.c b/src/gbiMacro.c index 7e33bbc8f..d9b803518 100644 --- a/src/gbiMacro.c +++ b/src/gbiMacro.c @@ -2,7 +2,7 @@ #include #include "main.h" #include -#include +#include #include "src/port/interpolation/matrix.h" #include "math_util.h" diff --git a/src/kart_dma.c b/src/kart_dma.c index b81b22c4d..aa2d3b115 100644 --- a/src/kart_dma.c +++ b/src/kart_dma.c @@ -5,14 +5,14 @@ #include #include "kart_dma.h" #include "defines.h" -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include #include "render_player.h" // Seemingly the largest compressed size for a frame for a given character @@ -21,1156 +21,562 @@ u16 D_800DDEB0[] = { 0x06c0, 0x06e0, 0x06e0, 0x0680, 0x07c0, 0x0700, 0x0680, 0x0910, }; -u8* gKartMarioGroup0[] = { - gKartMario000, gKartMario001, gKartMario002, gKartMario003, gKartMario004, gKartMario005, gKartMario006, - gKartMario007, gKartMario008, gKartMario009, gKartMario010, gKartMario011, gKartMario012, gKartMario013, - gKartMario014, gKartMario015, gKartMario016, gKartMario017, gKartMario018, gKartMario019, gKartMario020, - gKartMario195, gKartMario196, gKartMario197, gKartMario198, gKartMario199, gKartMario200, gKartMario201, - gKartMario202, gKartMario203, gKartMario204, gKartMario205, gKartMario206, gKartMario207, gKartMario208, -}; - -u8* gKartMarioGroup1[] = { - gKartMario021, gKartMario022, gKartMario023, gKartMario024, gKartMario025, gKartMario026, gKartMario027, - gKartMario028, gKartMario029, gKartMario030, gKartMario031, gKartMario032, gKartMario033, gKartMario034, - gKartMario035, gKartMario036, gKartMario037, gKartMario038, gKartMario039, gKartMario040, gKartMario041, - gKartMario195, gKartMario196, gKartMario197, gKartMario198, gKartMario199, gKartMario200, gKartMario201, - gKartMario202, gKartMario203, gKartMario204, gKartMario205, gKartMario206, gKartMario207, gKartMario208, -}; - -u8* gKartMarioGroup2[] = { - gKartMario042, gKartMario043, gKartMario044, gKartMario045, gKartMario046, gKartMario047, gKartMario048, - gKartMario049, gKartMario050, gKartMario051, gKartMario052, gKartMario053, gKartMario054, gKartMario055, - gKartMario056, gKartMario057, gKartMario058, gKartMario059, gKartMario060, gKartMario061, gKartMario062, - gKartMario215, gKartMario216, gKartMario217, gKartMario218, gKartMario219, gKartMario220, gKartMario221, - gKartMario222, gKartMario223, gKartMario224, gKartMario225, gKartMario226, gKartMario227, gKartMario228, -}; - -u8* gKartMarioGroup3[] = { - gKartMario063, gKartMario064, gKartMario065, gKartMario066, gKartMario067, gKartMario068, gKartMario069, - gKartMario070, gKartMario071, gKartMario072, gKartMario073, gKartMario074, gKartMario075, gKartMario076, - gKartMario077, gKartMario078, gKartMario079, gKartMario080, gKartMario081, gKartMario082, gKartMario083, - gKartMario235, gKartMario236, gKartMario237, gKartMario238, gKartMario239, gKartMario240, gKartMario241, - gKartMario242, gKartMario243, gKartMario244, gKartMario245, gKartMario246, gKartMario247, gKartMario248, -}; - -u8* gKartMarioGroup4[] = { - gKartMario084, gKartMario085, gKartMario086, gKartMario087, gKartMario088, gKartMario089, gKartMario090, - gKartMario091, gKartMario092, gKartMario093, gKartMario094, gKartMario095, gKartMario096, gKartMario097, - gKartMario098, gKartMario099, gKartMario100, gKartMario101, gKartMario102, gKartMario103, gKartMario104, - gKartMario235, gKartMario236, gKartMario237, gKartMario238, gKartMario239, gKartMario240, gKartMario241, - gKartMario242, gKartMario243, gKartMario244, gKartMario245, gKartMario246, gKartMario247, gKartMario248, -}; - -u8* gKartMarioGroup5[] = { - gKartMario105, gKartMario106, gKartMario107, gKartMario108, gKartMario109, gKartMario110, gKartMario111, - gKartMario112, gKartMario113, gKartMario114, gKartMario115, gKartMario116, gKartMario117, gKartMario118, - gKartMario119, gKartMario120, gKartMario121, gKartMario122, gKartMario123, gKartMario124, gKartMario125, - gKartMario235, gKartMario236, gKartMario237, gKartMario238, gKartMario239, gKartMario240, gKartMario241, - gKartMario242, gKartMario243, gKartMario244, gKartMario245, gKartMario246, gKartMario247, gKartMario248, -}; - -u8* gKartMarioGroup6[] = { - gKartMario126, gKartMario127, gKartMario128, gKartMario129, gKartMario130, gKartMario131, gKartMario132, - gKartMario133, gKartMario134, gKartMario135, gKartMario136, gKartMario137, gKartMario138, gKartMario139, - gKartMario140, gKartMario141, gKartMario142, gKartMario143, gKartMario144, gKartMario145, gKartMario146, - gKartMario255, gKartMario256, gKartMario257, gKartMario258, gKartMario259, gKartMario260, gKartMario261, - gKartMario262, gKartMario263, gKartMario264, gKartMario265, gKartMario266, gKartMario267, gKartMario268, -}; - -u8* gKartMarioGroup7[] = { - gKartMario147, gKartMario148, gKartMario149, gKartMario150, gKartMario151, gKartMario152, gKartMario153, - gKartMario154, gKartMario155, gKartMario156, gKartMario157, gKartMario158, gKartMario159, gKartMario160, - gKartMario161, gKartMario162, gKartMario163, gKartMario164, gKartMario165, gKartMario166, gKartMario167, - gKartMario275, gKartMario276, gKartMario277, gKartMario278, gKartMario279, gKartMario280, gKartMario281, - gKartMario282, gKartMario283, gKartMario284, gKartMario285, gKartMario286, gKartMario287, gKartMario288, -}; - -u8* gKartMarioGroup8[] = { - gKartMario168, gKartMario169, gKartMario170, gKartMario171, gKartMario172, gKartMario173, gKartMario174, - gKartMario175, gKartMario176, gKartMario177, gKartMario178, gKartMario179, gKartMario180, gKartMario181, - gKartMario182, gKartMario183, gKartMario184, gKartMario185, gKartMario186, gKartMario187, gKartMario188, - gKartMario275, gKartMario276, gKartMario277, gKartMario278, gKartMario279, gKartMario280, gKartMario281, - gKartMario282, gKartMario283, gKartMario284, gKartMario285, gKartMario286, gKartMario287, gKartMario288, -}; - -u8* gKartMarioGroup9[] = { - gKartMario189, gKartMario190, gKartMario191, gKartMario192, gKartMario193, gKartMario194, gKartMario195, - gKartMario196, gKartMario197, gKartMario198, gKartMario199, gKartMario200, gKartMario201, gKartMario202, - gKartMario203, gKartMario204, gKartMario205, gKartMario206, gKartMario207, gKartMario208, -}; - -u8* gKartMarioGroup10[] = { - gKartMario189, gKartMario190, gKartMario191, gKartMario192, gKartMario193, gKartMario194, gKartMario195, - gKartMario196, gKartMario197, gKartMario198, gKartMario199, gKartMario200, gKartMario201, gKartMario202, - gKartMario203, gKartMario204, gKartMario205, gKartMario206, gKartMario207, gKartMario208, -}; - -u8* gKartMarioGroup11[] = { - gKartMario209, gKartMario210, gKartMario211, gKartMario212, gKartMario213, gKartMario214, gKartMario215, - gKartMario216, gKartMario217, gKartMario218, gKartMario219, gKartMario220, gKartMario221, gKartMario222, - gKartMario223, gKartMario224, gKartMario225, gKartMario226, gKartMario227, gKartMario228, -}; - -u8* gKartMarioGroup12[] = { - gKartMario229, gKartMario230, gKartMario231, gKartMario232, gKartMario233, gKartMario234, gKartMario235, - gKartMario236, gKartMario237, gKartMario238, gKartMario239, gKartMario240, gKartMario241, gKartMario242, - gKartMario243, gKartMario244, gKartMario245, gKartMario246, gKartMario247, gKartMario248, -}; - -u8* gKartMarioGroup13[] = { - gKartMario229, gKartMario230, gKartMario231, gKartMario232, gKartMario233, gKartMario234, gKartMario235, - gKartMario236, gKartMario237, gKartMario238, gKartMario239, gKartMario240, gKartMario241, gKartMario242, - gKartMario243, gKartMario244, gKartMario245, gKartMario246, gKartMario247, gKartMario248, -}; - -u8* gKartMarioGroup14[] = { - gKartMario229, gKartMario230, gKartMario231, gKartMario232, gKartMario233, gKartMario234, gKartMario235, - gKartMario236, gKartMario237, gKartMario238, gKartMario239, gKartMario240, gKartMario241, gKartMario242, - gKartMario243, gKartMario244, gKartMario245, gKartMario246, gKartMario247, gKartMario248, -}; - -u8* gKartMarioGroup15[] = { - gKartMario249, gKartMario250, gKartMario251, gKartMario252, gKartMario253, gKartMario254, gKartMario255, - gKartMario256, gKartMario257, gKartMario258, gKartMario259, gKartMario260, gKartMario261, gKartMario262, - gKartMario263, gKartMario264, gKartMario265, gKartMario266, gKartMario267, gKartMario268, -}; - -u8* gKartMarioGroup16[] = { - gKartMario269, gKartMario270, gKartMario271, gKartMario272, gKartMario273, gKartMario274, gKartMario275, - gKartMario276, gKartMario277, gKartMario278, gKartMario279, gKartMario280, gKartMario281, gKartMario282, - gKartMario283, gKartMario284, gKartMario285, gKartMario286, gKartMario287, gKartMario288, -}; - -u8* gKartMarioGroup17[] = { - gKartMario269, gKartMario270, gKartMario271, gKartMario272, gKartMario273, gKartMario274, gKartMario275, - gKartMario276, gKartMario277, gKartMario278, gKartMario279, gKartMario280, gKartMario281, gKartMario282, - gKartMario283, gKartMario284, gKartMario285, gKartMario286, gKartMario287, gKartMario288, -}; - -u8* gKartToadGroup0[] = { - gKartToad000, gKartToad001, gKartToad002, gKartToad003, gKartToad004, gKartToad005, gKartToad006, - gKartToad007, gKartToad008, gKartToad009, gKartToad010, gKartToad011, gKartToad012, gKartToad013, - gKartToad014, gKartToad015, gKartToad016, gKartToad017, gKartToad018, gKartToad019, gKartToad020, - gKartToad195, gKartToad196, gKartToad197, gKartToad198, gKartToad199, gKartToad200, gKartToad201, - gKartToad202, gKartToad203, gKartToad204, gKartToad205, gKartToad206, gKartToad207, gKartToad208, -}; - -u8* gKartToadGroup1[] = { - gKartToad021, gKartToad022, gKartToad023, gKartToad024, gKartToad025, gKartToad026, gKartToad027, - gKartToad028, gKartToad029, gKartToad030, gKartToad031, gKartToad032, gKartToad033, gKartToad034, - gKartToad035, gKartToad036, gKartToad037, gKartToad038, gKartToad039, gKartToad040, gKartToad041, - gKartToad195, gKartToad196, gKartToad197, gKartToad198, gKartToad199, gKartToad200, gKartToad201, - gKartToad202, gKartToad203, gKartToad204, gKartToad205, gKartToad206, gKartToad207, gKartToad208, -}; - -u8* gKartToadGroup2[] = { - gKartToad042, gKartToad043, gKartToad044, gKartToad045, gKartToad046, gKartToad047, gKartToad048, - gKartToad049, gKartToad050, gKartToad051, gKartToad052, gKartToad053, gKartToad054, gKartToad055, - gKartToad056, gKartToad057, gKartToad058, gKartToad059, gKartToad060, gKartToad061, gKartToad062, - gKartToad215, gKartToad216, gKartToad217, gKartToad218, gKartToad219, gKartToad220, gKartToad221, - gKartToad222, gKartToad223, gKartToad224, gKartToad225, gKartToad226, gKartToad227, gKartToad228, -}; - -u8* gKartToadGroup3[] = { - gKartToad063, gKartToad064, gKartToad065, gKartToad066, gKartToad067, gKartToad068, gKartToad069, - gKartToad070, gKartToad071, gKartToad072, gKartToad073, gKartToad074, gKartToad075, gKartToad076, - gKartToad077, gKartToad078, gKartToad079, gKartToad080, gKartToad081, gKartToad082, gKartToad083, - gKartToad235, gKartToad236, gKartToad237, gKartToad238, gKartToad239, gKartToad240, gKartToad241, - gKartToad242, gKartToad243, gKartToad244, gKartToad245, gKartToad246, gKartToad247, gKartToad248, -}; - -u8* gKartToadGroup4[] = { - gKartToad084, gKartToad085, gKartToad086, gKartToad087, gKartToad088, gKartToad089, gKartToad090, - gKartToad091, gKartToad092, gKartToad093, gKartToad094, gKartToad095, gKartToad096, gKartToad097, - gKartToad098, gKartToad099, gKartToad100, gKartToad101, gKartToad102, gKartToad103, gKartToad104, - gKartToad235, gKartToad236, gKartToad237, gKartToad238, gKartToad239, gKartToad240, gKartToad241, - gKartToad242, gKartToad243, gKartToad244, gKartToad245, gKartToad246, gKartToad247, gKartToad248, -}; - -u8* gKartToadGroup5[] = { - gKartToad105, gKartToad106, gKartToad107, gKartToad108, gKartToad109, gKartToad110, gKartToad111, - gKartToad112, gKartToad113, gKartToad114, gKartToad115, gKartToad116, gKartToad117, gKartToad118, - gKartToad119, gKartToad120, gKartToad121, gKartToad122, gKartToad123, gKartToad124, gKartToad125, - gKartToad235, gKartToad236, gKartToad237, gKartToad238, gKartToad239, gKartToad240, gKartToad241, - gKartToad242, gKartToad243, gKartToad244, gKartToad245, gKartToad246, gKartToad247, gKartToad248, -}; - -u8* gKartToadGroup6[] = { - gKartToad126, gKartToad127, gKartToad128, gKartToad129, gKartToad130, gKartToad131, gKartToad132, - gKartToad133, gKartToad134, gKartToad135, gKartToad136, gKartToad137, gKartToad138, gKartToad139, - gKartToad140, gKartToad141, gKartToad142, gKartToad143, gKartToad144, gKartToad145, gKartToad146, - gKartToad255, gKartToad256, gKartToad257, gKartToad258, gKartToad259, gKartToad260, gKartToad261, - gKartToad262, gKartToad263, gKartToad264, gKartToad265, gKartToad266, gKartToad267, gKartToad268, -}; - -u8* gKartToadGroup7[] = { - gKartToad147, gKartToad148, gKartToad149, gKartToad150, gKartToad151, gKartToad152, gKartToad153, - gKartToad154, gKartToad155, gKartToad156, gKartToad157, gKartToad158, gKartToad159, gKartToad160, - gKartToad161, gKartToad162, gKartToad163, gKartToad164, gKartToad165, gKartToad166, gKartToad167, - gKartToad275, gKartToad276, gKartToad277, gKartToad278, gKartToad279, gKartToad280, gKartToad281, - gKartToad282, gKartToad283, gKartToad284, gKartToad285, gKartToad286, gKartToad287, gKartToad288, -}; - -u8* gKartToadGroup8[] = { - gKartToad168, gKartToad169, gKartToad170, gKartToad171, gKartToad172, gKartToad173, gKartToad174, - gKartToad175, gKartToad176, gKartToad177, gKartToad178, gKartToad179, gKartToad180, gKartToad181, - gKartToad182, gKartToad183, gKartToad184, gKartToad185, gKartToad186, gKartToad187, gKartToad188, - gKartToad275, gKartToad276, gKartToad277, gKartToad278, gKartToad279, gKartToad280, gKartToad281, - gKartToad282, gKartToad283, gKartToad284, gKartToad285, gKartToad286, gKartToad287, gKartToad288, -}; - -u8* gKartToadGroup9[] = { - gKartToad189, gKartToad190, gKartToad191, gKartToad192, gKartToad193, gKartToad194, gKartToad195, - gKartToad196, gKartToad197, gKartToad198, gKartToad199, gKartToad200, gKartToad201, gKartToad202, - gKartToad203, gKartToad204, gKartToad205, gKartToad206, gKartToad207, gKartToad208, -}; - -u8* gKartToadGroup10[] = { - gKartToad189, gKartToad190, gKartToad191, gKartToad192, gKartToad193, gKartToad194, gKartToad195, - gKartToad196, gKartToad197, gKartToad198, gKartToad199, gKartToad200, gKartToad201, gKartToad202, - gKartToad203, gKartToad204, gKartToad205, gKartToad206, gKartToad207, gKartToad208, -}; - -u8* gKartToadGroup11[] = { - gKartToad209, gKartToad210, gKartToad211, gKartToad212, gKartToad213, gKartToad214, gKartToad215, - gKartToad216, gKartToad217, gKartToad218, gKartToad219, gKartToad220, gKartToad221, gKartToad222, - gKartToad223, gKartToad224, gKartToad225, gKartToad226, gKartToad227, gKartToad228, -}; - -u8* gKartToadGroup12[] = { - gKartToad229, gKartToad230, gKartToad231, gKartToad232, gKartToad233, gKartToad234, gKartToad235, - gKartToad236, gKartToad237, gKartToad238, gKartToad239, gKartToad240, gKartToad241, gKartToad242, - gKartToad243, gKartToad244, gKartToad245, gKartToad246, gKartToad247, gKartToad248, -}; - -u8* gKartToadGroup13[] = { - gKartToad229, gKartToad230, gKartToad231, gKartToad232, gKartToad233, gKartToad234, gKartToad235, - gKartToad236, gKartToad237, gKartToad238, gKartToad239, gKartToad240, gKartToad241, gKartToad242, - gKartToad243, gKartToad244, gKartToad245, gKartToad246, gKartToad247, gKartToad248, -}; - -u8* gKartToadGroup14[] = { - gKartToad229, gKartToad230, gKartToad231, gKartToad232, gKartToad233, gKartToad234, gKartToad235, - gKartToad236, gKartToad237, gKartToad238, gKartToad239, gKartToad240, gKartToad241, gKartToad242, - gKartToad243, gKartToad244, gKartToad245, gKartToad246, gKartToad247, gKartToad248, -}; - -u8* gKartToadGroup15[] = { - gKartToad249, gKartToad250, gKartToad251, gKartToad252, gKartToad253, gKartToad254, gKartToad255, - gKartToad256, gKartToad257, gKartToad258, gKartToad259, gKartToad260, gKartToad261, gKartToad262, - gKartToad263, gKartToad264, gKartToad265, gKartToad266, gKartToad267, gKartToad268, -}; - -u8* gKartToadGroup16[] = { - gKartToad269, gKartToad270, gKartToad271, gKartToad272, gKartToad273, gKartToad274, gKartToad275, - gKartToad276, gKartToad277, gKartToad278, gKartToad279, gKartToad280, gKartToad281, gKartToad282, - gKartToad283, gKartToad284, gKartToad285, gKartToad286, gKartToad287, gKartToad288, -}; - -u8* gKartToadGroup17[] = { - gKartToad269, gKartToad270, gKartToad271, gKartToad272, gKartToad273, gKartToad274, gKartToad275, - gKartToad276, gKartToad277, gKartToad278, gKartToad279, gKartToad280, gKartToad281, gKartToad282, - gKartToad283, gKartToad284, gKartToad285, gKartToad286, gKartToad287, gKartToad288, -}; - -u8* gKartLuigiGroup0[] = { - gKartLuigi000, gKartLuigi001, gKartLuigi002, gKartLuigi003, gKartLuigi004, gKartLuigi005, gKartLuigi006, - gKartLuigi007, gKartLuigi008, gKartLuigi009, gKartLuigi010, gKartLuigi011, gKartLuigi012, gKartLuigi013, - gKartLuigi014, gKartLuigi015, gKartLuigi016, gKartLuigi017, gKartLuigi018, gKartLuigi019, gKartLuigi020, - gKartLuigi195, gKartLuigi196, gKartLuigi197, gKartLuigi198, gKartLuigi199, gKartLuigi200, gKartLuigi201, - gKartLuigi202, gKartLuigi203, gKartLuigi204, gKartLuigi205, gKartLuigi206, gKartLuigi207, gKartLuigi208, -}; - -u8* gKartLuigiGroup1[] = { - gKartLuigi021, gKartLuigi022, gKartLuigi023, gKartLuigi024, gKartLuigi025, gKartLuigi026, gKartLuigi027, - gKartLuigi028, gKartLuigi029, gKartLuigi030, gKartLuigi031, gKartLuigi032, gKartLuigi033, gKartLuigi034, - gKartLuigi035, gKartLuigi036, gKartLuigi037, gKartLuigi038, gKartLuigi039, gKartLuigi040, gKartLuigi041, - gKartLuigi195, gKartLuigi196, gKartLuigi197, gKartLuigi198, gKartLuigi199, gKartLuigi200, gKartLuigi201, - gKartLuigi202, gKartLuigi203, gKartLuigi204, gKartLuigi205, gKartLuigi206, gKartLuigi207, gKartLuigi208, -}; - -u8* gKartLuigiGroup2[] = { - gKartLuigi042, gKartLuigi043, gKartLuigi044, gKartLuigi045, gKartLuigi046, gKartLuigi047, gKartLuigi048, - gKartLuigi049, gKartLuigi050, gKartLuigi051, gKartLuigi052, gKartLuigi053, gKartLuigi054, gKartLuigi055, - gKartLuigi056, gKartLuigi057, gKartLuigi058, gKartLuigi059, gKartLuigi060, gKartLuigi061, gKartLuigi062, - gKartLuigi215, gKartLuigi216, gKartLuigi217, gKartLuigi218, gKartLuigi219, gKartLuigi220, gKartLuigi221, - gKartLuigi222, gKartLuigi223, gKartLuigi224, gKartLuigi225, gKartLuigi226, gKartLuigi227, gKartLuigi228, -}; - -u8* gKartLuigiGroup3[] = { - gKartLuigi063, gKartLuigi064, gKartLuigi065, gKartLuigi066, gKartLuigi067, gKartLuigi068, gKartLuigi069, - gKartLuigi070, gKartLuigi071, gKartLuigi072, gKartLuigi073, gKartLuigi074, gKartLuigi075, gKartLuigi076, - gKartLuigi077, gKartLuigi078, gKartLuigi079, gKartLuigi080, gKartLuigi081, gKartLuigi082, gKartLuigi083, - gKartLuigi235, gKartLuigi236, gKartLuigi237, gKartLuigi238, gKartLuigi239, gKartLuigi240, gKartLuigi241, - gKartLuigi242, gKartLuigi243, gKartLuigi244, gKartLuigi245, gKartLuigi246, gKartLuigi247, gKartLuigi248, -}; - -u8* gKartLuigiGroup4[] = { - gKartLuigi084, gKartLuigi085, gKartLuigi086, gKartLuigi087, gKartLuigi088, gKartLuigi089, gKartLuigi090, - gKartLuigi091, gKartLuigi092, gKartLuigi093, gKartLuigi094, gKartLuigi095, gKartLuigi096, gKartLuigi097, - gKartLuigi098, gKartLuigi099, gKartLuigi100, gKartLuigi101, gKartLuigi102, gKartLuigi103, gKartLuigi104, - gKartLuigi235, gKartLuigi236, gKartLuigi237, gKartLuigi238, gKartLuigi239, gKartLuigi240, gKartLuigi241, - gKartLuigi242, gKartLuigi243, gKartLuigi244, gKartLuigi245, gKartLuigi246, gKartLuigi247, gKartLuigi248, -}; - -u8* gKartLuigiGroup5[] = { - gKartLuigi105, gKartLuigi106, gKartLuigi107, gKartLuigi108, gKartLuigi109, gKartLuigi110, gKartLuigi111, - gKartLuigi112, gKartLuigi113, gKartLuigi114, gKartLuigi115, gKartLuigi116, gKartLuigi117, gKartLuigi118, - gKartLuigi119, gKartLuigi120, gKartLuigi121, gKartLuigi122, gKartLuigi123, gKartLuigi124, gKartLuigi125, - gKartLuigi235, gKartLuigi236, gKartLuigi237, gKartLuigi238, gKartLuigi239, gKartLuigi240, gKartLuigi241, - gKartLuigi242, gKartLuigi243, gKartLuigi244, gKartLuigi245, gKartLuigi246, gKartLuigi247, gKartLuigi248, -}; - -u8* gKartLuigiGroup6[] = { - gKartLuigi126, gKartLuigi127, gKartLuigi128, gKartLuigi129, gKartLuigi130, gKartLuigi131, gKartLuigi132, - gKartLuigi133, gKartLuigi134, gKartLuigi135, gKartLuigi136, gKartLuigi137, gKartLuigi138, gKartLuigi139, - gKartLuigi140, gKartLuigi141, gKartLuigi142, gKartLuigi143, gKartLuigi144, gKartLuigi145, gKartLuigi146, - gKartLuigi255, gKartLuigi256, gKartLuigi257, gKartLuigi258, gKartLuigi259, gKartLuigi260, gKartLuigi261, - gKartLuigi262, gKartLuigi263, gKartLuigi264, gKartLuigi265, gKartLuigi266, gKartLuigi267, gKartLuigi268, -}; - -u8* gKartLuigiGroup7[] = { - gKartLuigi147, gKartLuigi148, gKartLuigi149, gKartLuigi150, gKartLuigi151, gKartLuigi152, gKartLuigi153, - gKartLuigi154, gKartLuigi155, gKartLuigi156, gKartLuigi157, gKartLuigi158, gKartLuigi159, gKartLuigi160, - gKartLuigi161, gKartLuigi162, gKartLuigi163, gKartLuigi164, gKartLuigi165, gKartLuigi166, gKartLuigi167, - gKartLuigi275, gKartLuigi276, gKartLuigi277, gKartLuigi278, gKartLuigi279, gKartLuigi280, gKartLuigi281, - gKartLuigi282, gKartLuigi283, gKartLuigi284, gKartLuigi285, gKartLuigi286, gKartLuigi287, gKartLuigi288, -}; - -u8* gKartLuigiGroup8[] = { - gKartLuigi168, gKartLuigi169, gKartLuigi170, gKartLuigi171, gKartLuigi172, gKartLuigi173, gKartLuigi174, - gKartLuigi175, gKartLuigi176, gKartLuigi177, gKartLuigi178, gKartLuigi179, gKartLuigi180, gKartLuigi181, - gKartLuigi182, gKartLuigi183, gKartLuigi184, gKartLuigi185, gKartLuigi186, gKartLuigi187, gKartLuigi188, - gKartLuigi275, gKartLuigi276, gKartLuigi277, gKartLuigi278, gKartLuigi279, gKartLuigi280, gKartLuigi281, - gKartLuigi282, gKartLuigi283, gKartLuigi284, gKartLuigi285, gKartLuigi286, gKartLuigi287, gKartLuigi288, -}; - -u8* gKartLuigiGroup9[] = { - gKartLuigi189, gKartLuigi190, gKartLuigi191, gKartLuigi192, gKartLuigi193, gKartLuigi194, gKartLuigi195, - gKartLuigi196, gKartLuigi197, gKartLuigi198, gKartLuigi199, gKartLuigi200, gKartLuigi201, gKartLuigi202, - gKartLuigi203, gKartLuigi204, gKartLuigi205, gKartLuigi206, gKartLuigi207, gKartLuigi208, -}; - -u8* gKartLuigiGroup10[] = { - gKartLuigi189, gKartLuigi190, gKartLuigi191, gKartLuigi192, gKartLuigi193, gKartLuigi194, gKartLuigi195, - gKartLuigi196, gKartLuigi197, gKartLuigi198, gKartLuigi199, gKartLuigi200, gKartLuigi201, gKartLuigi202, - gKartLuigi203, gKartLuigi204, gKartLuigi205, gKartLuigi206, gKartLuigi207, gKartLuigi208, -}; - -u8* gKartLuigiGroup11[] = { - gKartLuigi209, gKartLuigi210, gKartLuigi211, gKartLuigi212, gKartLuigi213, gKartLuigi214, gKartLuigi215, - gKartLuigi216, gKartLuigi217, gKartLuigi218, gKartLuigi219, gKartLuigi220, gKartLuigi221, gKartLuigi222, - gKartLuigi223, gKartLuigi224, gKartLuigi225, gKartLuigi226, gKartLuigi227, gKartLuigi228, -}; - -u8* gKartLuigiGroup12[] = { - gKartLuigi229, gKartLuigi230, gKartLuigi231, gKartLuigi232, gKartLuigi233, gKartLuigi234, gKartLuigi235, - gKartLuigi236, gKartLuigi237, gKartLuigi238, gKartLuigi239, gKartLuigi240, gKartLuigi241, gKartLuigi242, - gKartLuigi243, gKartLuigi244, gKartLuigi245, gKartLuigi246, gKartLuigi247, gKartLuigi248, -}; - -u8* gKartLuigiGroup13[] = { - gKartLuigi229, gKartLuigi230, gKartLuigi231, gKartLuigi232, gKartLuigi233, gKartLuigi234, gKartLuigi235, - gKartLuigi236, gKartLuigi237, gKartLuigi238, gKartLuigi239, gKartLuigi240, gKartLuigi241, gKartLuigi242, - gKartLuigi243, gKartLuigi244, gKartLuigi245, gKartLuigi246, gKartLuigi247, gKartLuigi248, -}; - -u8* gKartLuigiGroup14[] = { - gKartLuigi229, gKartLuigi230, gKartLuigi231, gKartLuigi232, gKartLuigi233, gKartLuigi234, gKartLuigi235, - gKartLuigi236, gKartLuigi237, gKartLuigi238, gKartLuigi239, gKartLuigi240, gKartLuigi241, gKartLuigi242, - gKartLuigi243, gKartLuigi244, gKartLuigi245, gKartLuigi246, gKartLuigi247, gKartLuigi248, -}; - -u8* gKartLuigiGroup15[] = { - gKartLuigi249, gKartLuigi250, gKartLuigi251, gKartLuigi252, gKartLuigi253, gKartLuigi254, gKartLuigi255, - gKartLuigi256, gKartLuigi257, gKartLuigi258, gKartLuigi259, gKartLuigi260, gKartLuigi261, gKartLuigi262, - gKartLuigi263, gKartLuigi264, gKartLuigi265, gKartLuigi266, gKartLuigi267, gKartLuigi268, -}; - -u8* gKartLuigiGroup16[] = { - gKartLuigi269, gKartLuigi270, gKartLuigi271, gKartLuigi272, gKartLuigi273, gKartLuigi274, gKartLuigi275, - gKartLuigi276, gKartLuigi277, gKartLuigi278, gKartLuigi279, gKartLuigi280, gKartLuigi281, gKartLuigi282, - gKartLuigi283, gKartLuigi284, gKartLuigi285, gKartLuigi286, gKartLuigi287, gKartLuigi288, -}; - -u8* gKartLuigiGroup17[] = { - gKartLuigi269, gKartLuigi270, gKartLuigi271, gKartLuigi272, gKartLuigi273, gKartLuigi274, gKartLuigi275, - gKartLuigi276, gKartLuigi277, gKartLuigi278, gKartLuigi279, gKartLuigi280, gKartLuigi281, gKartLuigi282, - gKartLuigi283, gKartLuigi284, gKartLuigi285, gKartLuigi286, gKartLuigi287, gKartLuigi288, -}; - -u8* gKartYoshiGroup0[] = { - gKartYoshi000, gKartYoshi001, gKartYoshi002, gKartYoshi003, gKartYoshi004, gKartYoshi005, gKartYoshi006, - gKartYoshi007, gKartYoshi008, gKartYoshi009, gKartYoshi010, gKartYoshi011, gKartYoshi012, gKartYoshi013, - gKartYoshi014, gKartYoshi015, gKartYoshi016, gKartYoshi017, gKartYoshi018, gKartYoshi019, gKartYoshi020, - gKartYoshi195, gKartYoshi196, gKartYoshi197, gKartYoshi198, gKartYoshi199, gKartYoshi200, gKartYoshi201, - gKartYoshi202, gKartYoshi203, gKartYoshi204, gKartYoshi205, gKartYoshi206, gKartYoshi207, gKartYoshi208, -}; - -u8* gKartYoshiGroup1[] = { - gKartYoshi021, gKartYoshi022, gKartYoshi023, gKartYoshi024, gKartYoshi025, gKartYoshi026, gKartYoshi027, - gKartYoshi028, gKartYoshi029, gKartYoshi030, gKartYoshi031, gKartYoshi032, gKartYoshi033, gKartYoshi034, - gKartYoshi035, gKartYoshi036, gKartYoshi037, gKartYoshi038, gKartYoshi039, gKartYoshi040, gKartYoshi041, - gKartYoshi195, gKartYoshi196, gKartYoshi197, gKartYoshi198, gKartYoshi199, gKartYoshi200, gKartYoshi201, - gKartYoshi202, gKartYoshi203, gKartYoshi204, gKartYoshi205, gKartYoshi206, gKartYoshi207, gKartYoshi208, -}; - -u8* gKartYoshiGroup2[] = { - gKartYoshi042, gKartYoshi043, gKartYoshi044, gKartYoshi045, gKartYoshi046, gKartYoshi047, gKartYoshi048, - gKartYoshi049, gKartYoshi050, gKartYoshi051, gKartYoshi052, gKartYoshi053, gKartYoshi054, gKartYoshi055, - gKartYoshi056, gKartYoshi057, gKartYoshi058, gKartYoshi059, gKartYoshi060, gKartYoshi061, gKartYoshi062, - gKartYoshi215, gKartYoshi216, gKartYoshi217, gKartYoshi218, gKartYoshi219, gKartYoshi220, gKartYoshi221, - gKartYoshi222, gKartYoshi223, gKartYoshi224, gKartYoshi225, gKartYoshi226, gKartYoshi227, gKartYoshi228, -}; - -u8* gKartYoshiGroup3[] = { - gKartYoshi063, gKartYoshi064, gKartYoshi065, gKartYoshi066, gKartYoshi067, gKartYoshi068, gKartYoshi069, - gKartYoshi070, gKartYoshi071, gKartYoshi072, gKartYoshi073, gKartYoshi074, gKartYoshi075, gKartYoshi076, - gKartYoshi077, gKartYoshi078, gKartYoshi079, gKartYoshi080, gKartYoshi081, gKartYoshi082, gKartYoshi083, - gKartYoshi235, gKartYoshi236, gKartYoshi237, gKartYoshi238, gKartYoshi239, gKartYoshi240, gKartYoshi241, - gKartYoshi242, gKartYoshi243, gKartYoshi244, gKartYoshi245, gKartYoshi246, gKartYoshi247, gKartYoshi248, -}; - -u8* gKartYoshiGroup4[] = { - gKartYoshi084, gKartYoshi085, gKartYoshi086, gKartYoshi087, gKartYoshi088, gKartYoshi089, gKartYoshi090, - gKartYoshi091, gKartYoshi092, gKartYoshi093, gKartYoshi094, gKartYoshi095, gKartYoshi096, gKartYoshi097, - gKartYoshi098, gKartYoshi099, gKartYoshi100, gKartYoshi101, gKartYoshi102, gKartYoshi103, gKartYoshi104, - gKartYoshi235, gKartYoshi236, gKartYoshi237, gKartYoshi238, gKartYoshi239, gKartYoshi240, gKartYoshi241, - gKartYoshi242, gKartYoshi243, gKartYoshi244, gKartYoshi245, gKartYoshi246, gKartYoshi247, gKartYoshi248, -}; - -u8* gKartYoshiGroup5[] = { - gKartYoshi105, gKartYoshi106, gKartYoshi107, gKartYoshi108, gKartYoshi109, gKartYoshi110, gKartYoshi111, - gKartYoshi112, gKartYoshi113, gKartYoshi114, gKartYoshi115, gKartYoshi116, gKartYoshi117, gKartYoshi118, - gKartYoshi119, gKartYoshi120, gKartYoshi121, gKartYoshi122, gKartYoshi123, gKartYoshi124, gKartYoshi125, - gKartYoshi235, gKartYoshi236, gKartYoshi237, gKartYoshi238, gKartYoshi239, gKartYoshi240, gKartYoshi241, - gKartYoshi242, gKartYoshi243, gKartYoshi244, gKartYoshi245, gKartYoshi246, gKartYoshi247, gKartYoshi248, -}; - -u8* gKartYoshiGroup6[] = { - gKartYoshi126, gKartYoshi127, gKartYoshi128, gKartYoshi129, gKartYoshi130, gKartYoshi131, gKartYoshi132, - gKartYoshi133, gKartYoshi134, gKartYoshi135, gKartYoshi136, gKartYoshi137, gKartYoshi138, gKartYoshi139, - gKartYoshi140, gKartYoshi141, gKartYoshi142, gKartYoshi143, gKartYoshi144, gKartYoshi145, gKartYoshi146, - gKartYoshi255, gKartYoshi256, gKartYoshi257, gKartYoshi258, gKartYoshi259, gKartYoshi260, gKartYoshi261, - gKartYoshi262, gKartYoshi263, gKartYoshi264, gKartYoshi265, gKartYoshi266, gKartYoshi267, gKartYoshi268, -}; - -u8* gKartYoshiGroup7[] = { - gKartYoshi147, gKartYoshi148, gKartYoshi149, gKartYoshi150, gKartYoshi151, gKartYoshi152, gKartYoshi153, - gKartYoshi154, gKartYoshi155, gKartYoshi156, gKartYoshi157, gKartYoshi158, gKartYoshi159, gKartYoshi160, - gKartYoshi161, gKartYoshi162, gKartYoshi163, gKartYoshi164, gKartYoshi165, gKartYoshi166, gKartYoshi167, - gKartYoshi275, gKartYoshi276, gKartYoshi277, gKartYoshi278, gKartYoshi279, gKartYoshi280, gKartYoshi281, - gKartYoshi282, gKartYoshi283, gKartYoshi284, gKartYoshi285, gKartYoshi286, gKartYoshi287, gKartYoshi288, -}; - -u8* gKartYoshiGroup8[] = { - gKartYoshi168, gKartYoshi169, gKartYoshi170, gKartYoshi171, gKartYoshi172, gKartYoshi173, gKartYoshi174, - gKartYoshi175, gKartYoshi176, gKartYoshi177, gKartYoshi178, gKartYoshi179, gKartYoshi180, gKartYoshi181, - gKartYoshi182, gKartYoshi183, gKartYoshi184, gKartYoshi185, gKartYoshi186, gKartYoshi187, gKartYoshi188, - gKartYoshi275, gKartYoshi276, gKartYoshi277, gKartYoshi278, gKartYoshi279, gKartYoshi280, gKartYoshi281, - gKartYoshi282, gKartYoshi283, gKartYoshi284, gKartYoshi285, gKartYoshi286, gKartYoshi287, gKartYoshi288, -}; - -u8* gKartYoshiGroup9[] = { - gKartYoshi189, gKartYoshi190, gKartYoshi191, gKartYoshi192, gKartYoshi193, gKartYoshi194, gKartYoshi195, - gKartYoshi196, gKartYoshi197, gKartYoshi198, gKartYoshi199, gKartYoshi200, gKartYoshi201, gKartYoshi202, - gKartYoshi203, gKartYoshi204, gKartYoshi205, gKartYoshi206, gKartYoshi207, gKartYoshi208, -}; - -u8* gKartYoshiGroup10[] = { - gKartYoshi189, gKartYoshi190, gKartYoshi191, gKartYoshi192, gKartYoshi193, gKartYoshi194, gKartYoshi195, - gKartYoshi196, gKartYoshi197, gKartYoshi198, gKartYoshi199, gKartYoshi200, gKartYoshi201, gKartYoshi202, - gKartYoshi203, gKartYoshi204, gKartYoshi205, gKartYoshi206, gKartYoshi207, gKartYoshi208, -}; - -u8* gKartYoshiGroup11[] = { - gKartYoshi209, gKartYoshi210, gKartYoshi211, gKartYoshi212, gKartYoshi213, gKartYoshi214, gKartYoshi215, - gKartYoshi216, gKartYoshi217, gKartYoshi218, gKartYoshi219, gKartYoshi220, gKartYoshi221, gKartYoshi222, - gKartYoshi223, gKartYoshi224, gKartYoshi225, gKartYoshi226, gKartYoshi227, gKartYoshi228, -}; - -u8* gKartYoshiGroup12[] = { - gKartYoshi229, gKartYoshi230, gKartYoshi231, gKartYoshi232, gKartYoshi233, gKartYoshi234, gKartYoshi235, - gKartYoshi236, gKartYoshi237, gKartYoshi238, gKartYoshi239, gKartYoshi240, gKartYoshi241, gKartYoshi242, - gKartYoshi243, gKartYoshi244, gKartYoshi245, gKartYoshi246, gKartYoshi247, gKartYoshi248, -}; - -u8* gKartYoshiGroup13[] = { - gKartYoshi229, gKartYoshi230, gKartYoshi231, gKartYoshi232, gKartYoshi233, gKartYoshi234, gKartYoshi235, - gKartYoshi236, gKartYoshi237, gKartYoshi238, gKartYoshi239, gKartYoshi240, gKartYoshi241, gKartYoshi242, - gKartYoshi243, gKartYoshi244, gKartYoshi245, gKartYoshi246, gKartYoshi247, gKartYoshi248, -}; - -u8* gKartYoshiGroup14[] = { - gKartYoshi229, gKartYoshi230, gKartYoshi231, gKartYoshi232, gKartYoshi233, gKartYoshi234, gKartYoshi235, - gKartYoshi236, gKartYoshi237, gKartYoshi238, gKartYoshi239, gKartYoshi240, gKartYoshi241, gKartYoshi242, - gKartYoshi243, gKartYoshi244, gKartYoshi245, gKartYoshi246, gKartYoshi247, gKartYoshi248, -}; - -u8* gKartYoshiGroup15[] = { - gKartYoshi249, gKartYoshi250, gKartYoshi251, gKartYoshi252, gKartYoshi253, gKartYoshi254, gKartYoshi255, - gKartYoshi256, gKartYoshi257, gKartYoshi258, gKartYoshi259, gKartYoshi260, gKartYoshi261, gKartYoshi262, - gKartYoshi263, gKartYoshi264, gKartYoshi265, gKartYoshi266, gKartYoshi267, gKartYoshi268, -}; - -u8* gKartYoshiGroup16[] = { - gKartYoshi269, gKartYoshi270, gKartYoshi271, gKartYoshi272, gKartYoshi273, gKartYoshi274, gKartYoshi275, - gKartYoshi276, gKartYoshi277, gKartYoshi278, gKartYoshi279, gKartYoshi280, gKartYoshi281, gKartYoshi282, - gKartYoshi283, gKartYoshi284, gKartYoshi285, gKartYoshi286, gKartYoshi287, gKartYoshi288, -}; - -u8* gKartYoshiGroup17[] = { - gKartYoshi269, gKartYoshi270, gKartYoshi271, gKartYoshi272, gKartYoshi273, gKartYoshi274, gKartYoshi275, - gKartYoshi276, gKartYoshi277, gKartYoshi278, gKartYoshi279, gKartYoshi280, gKartYoshi281, gKartYoshi282, - gKartYoshi283, gKartYoshi284, gKartYoshi285, gKartYoshi286, gKartYoshi287, gKartYoshi288, -}; - -u8* gKartDKGroup0[] = { - gKartDK000, gKartDK001, gKartDK002, gKartDK003, gKartDK004, gKartDK005, gKartDK006, gKartDK007, gKartDK008, - gKartDK009, gKartDK010, gKartDK011, gKartDK012, gKartDK013, gKartDK014, gKartDK015, gKartDK016, gKartDK017, - gKartDK018, gKartDK019, gKartDK020, gKartDK195, gKartDK196, gKartDK197, gKartDK198, gKartDK199, gKartDK200, - gKartDK201, gKartDK202, gKartDK203, gKartDK204, gKartDK205, gKartDK206, gKartDK207, gKartDK208, -}; - -u8* gKartDKGroup1[] = { - gKartDK021, gKartDK022, gKartDK023, gKartDK024, gKartDK025, gKartDK026, gKartDK027, gKartDK028, gKartDK029, - gKartDK030, gKartDK031, gKartDK032, gKartDK033, gKartDK034, gKartDK035, gKartDK036, gKartDK037, gKartDK038, - gKartDK039, gKartDK040, gKartDK041, gKartDK195, gKartDK196, gKartDK197, gKartDK198, gKartDK199, gKartDK200, - gKartDK201, gKartDK202, gKartDK203, gKartDK204, gKartDK205, gKartDK206, gKartDK207, gKartDK208, -}; - -u8* gKartDKGroup2[] = { - gKartDK042, gKartDK043, gKartDK044, gKartDK045, gKartDK046, gKartDK047, gKartDK048, gKartDK049, gKartDK050, - gKartDK051, gKartDK052, gKartDK053, gKartDK054, gKartDK055, gKartDK056, gKartDK057, gKartDK058, gKartDK059, - gKartDK060, gKartDK061, gKartDK062, gKartDK215, gKartDK216, gKartDK217, gKartDK218, gKartDK219, gKartDK220, - gKartDK221, gKartDK222, gKartDK223, gKartDK224, gKartDK225, gKartDK226, gKartDK227, gKartDK228, -}; - -u8* gKartDKGroup3[] = { - gKartDK063, gKartDK064, gKartDK065, gKartDK066, gKartDK067, gKartDK068, gKartDK069, gKartDK070, gKartDK071, - gKartDK072, gKartDK073, gKartDK074, gKartDK075, gKartDK076, gKartDK077, gKartDK078, gKartDK079, gKartDK080, - gKartDK081, gKartDK082, gKartDK083, gKartDK235, gKartDK236, gKartDK237, gKartDK238, gKartDK239, gKartDK240, - gKartDK241, gKartDK242, gKartDK243, gKartDK244, gKartDK245, gKartDK246, gKartDK247, gKartDK248, -}; - -u8* gKartDKGroup4[] = { - gKartDK084, gKartDK085, gKartDK086, gKartDK087, gKartDK088, gKartDK089, gKartDK090, gKartDK091, gKartDK092, - gKartDK093, gKartDK094, gKartDK095, gKartDK096, gKartDK097, gKartDK098, gKartDK099, gKartDK100, gKartDK101, - gKartDK102, gKartDK103, gKartDK104, gKartDK235, gKartDK236, gKartDK237, gKartDK238, gKartDK239, gKartDK240, - gKartDK241, gKartDK242, gKartDK243, gKartDK244, gKartDK245, gKartDK246, gKartDK247, gKartDK248, -}; - -u8* gKartDKGroup5[] = { - gKartDK105, gKartDK106, gKartDK107, gKartDK108, gKartDK109, gKartDK110, gKartDK111, gKartDK112, gKartDK113, - gKartDK114, gKartDK115, gKartDK116, gKartDK117, gKartDK118, gKartDK119, gKartDK120, gKartDK121, gKartDK122, - gKartDK123, gKartDK124, gKartDK125, gKartDK235, gKartDK236, gKartDK237, gKartDK238, gKartDK239, gKartDK240, - gKartDK241, gKartDK242, gKartDK243, gKartDK244, gKartDK245, gKartDK246, gKartDK247, gKartDK248, -}; - -u8* gKartDKGroup6[] = { - gKartDK126, gKartDK127, gKartDK128, gKartDK129, gKartDK130, gKartDK131, gKartDK132, gKartDK133, gKartDK134, - gKartDK135, gKartDK136, gKartDK137, gKartDK138, gKartDK139, gKartDK140, gKartDK141, gKartDK142, gKartDK143, - gKartDK144, gKartDK145, gKartDK146, gKartDK255, gKartDK256, gKartDK257, gKartDK258, gKartDK259, gKartDK260, - gKartDK261, gKartDK262, gKartDK263, gKartDK264, gKartDK265, gKartDK266, gKartDK267, gKartDK268, -}; - -u8* gKartDKGroup7[] = { - gKartDK147, gKartDK148, gKartDK149, gKartDK150, gKartDK151, gKartDK152, gKartDK153, gKartDK154, gKartDK155, - gKartDK156, gKartDK157, gKartDK158, gKartDK159, gKartDK160, gKartDK161, gKartDK162, gKartDK163, gKartDK164, - gKartDK165, gKartDK166, gKartDK167, gKartDK275, gKartDK276, gKartDK277, gKartDK278, gKartDK279, gKartDK280, - gKartDK281, gKartDK282, gKartDK283, gKartDK284, gKartDK285, gKartDK286, gKartDK287, gKartDK288, -}; - -u8* gKartDKGroup8[] = { - gKartDK168, gKartDK169, gKartDK170, gKartDK171, gKartDK172, gKartDK173, gKartDK174, gKartDK175, gKartDK176, - gKartDK177, gKartDK178, gKartDK179, gKartDK180, gKartDK181, gKartDK182, gKartDK183, gKartDK184, gKartDK185, - gKartDK186, gKartDK187, gKartDK188, gKartDK275, gKartDK276, gKartDK277, gKartDK278, gKartDK279, gKartDK280, - gKartDK281, gKartDK282, gKartDK283, gKartDK284, gKartDK285, gKartDK286, gKartDK287, gKartDK288, -}; - -u8* gKartDKGroup9[] = { - gKartDK189, gKartDK190, gKartDK191, gKartDK192, gKartDK193, gKartDK194, gKartDK195, - gKartDK196, gKartDK197, gKartDK198, gKartDK199, gKartDK200, gKartDK201, gKartDK202, - gKartDK203, gKartDK204, gKartDK205, gKartDK206, gKartDK207, gKartDK208, -}; - -u8* gKartDKGroup10[] = { - gKartDK189, gKartDK190, gKartDK191, gKartDK192, gKartDK193, gKartDK194, gKartDK195, - gKartDK196, gKartDK197, gKartDK198, gKartDK199, gKartDK200, gKartDK201, gKartDK202, - gKartDK203, gKartDK204, gKartDK205, gKartDK206, gKartDK207, gKartDK208, -}; - -u8* gKartDKGroup11[] = { - gKartDK209, gKartDK210, gKartDK211, gKartDK212, gKartDK213, gKartDK214, gKartDK215, - gKartDK216, gKartDK217, gKartDK218, gKartDK219, gKartDK220, gKartDK221, gKartDK222, - gKartDK223, gKartDK224, gKartDK225, gKartDK226, gKartDK227, gKartDK228, -}; - -u8* gKartDKGroup12[] = { - gKartDK229, gKartDK230, gKartDK231, gKartDK232, gKartDK233, gKartDK234, gKartDK235, - gKartDK236, gKartDK237, gKartDK238, gKartDK239, gKartDK240, gKartDK241, gKartDK242, - gKartDK243, gKartDK244, gKartDK245, gKartDK246, gKartDK247, gKartDK248, -}; - -u8* gKartDKGroup13[] = { - gKartDK229, gKartDK230, gKartDK231, gKartDK232, gKartDK233, gKartDK234, gKartDK235, - gKartDK236, gKartDK237, gKartDK238, gKartDK239, gKartDK240, gKartDK241, gKartDK242, - gKartDK243, gKartDK244, gKartDK245, gKartDK246, gKartDK247, gKartDK248, -}; - -u8* gKartDKGroup14[] = { - gKartDK229, gKartDK230, gKartDK231, gKartDK232, gKartDK233, gKartDK234, gKartDK235, - gKartDK236, gKartDK237, gKartDK238, gKartDK239, gKartDK240, gKartDK241, gKartDK242, - gKartDK243, gKartDK244, gKartDK245, gKartDK246, gKartDK247, gKartDK248, -}; - -u8* gKartDKGroup15[] = { - gKartDK249, gKartDK250, gKartDK251, gKartDK252, gKartDK253, gKartDK254, gKartDK255, - gKartDK256, gKartDK257, gKartDK258, gKartDK259, gKartDK260, gKartDK261, gKartDK262, - gKartDK263, gKartDK264, gKartDK265, gKartDK266, gKartDK267, gKartDK268, -}; - -u8* gKartDKGroup16[] = { - gKartDK269, gKartDK270, gKartDK271, gKartDK272, gKartDK273, gKartDK274, gKartDK275, - gKartDK276, gKartDK277, gKartDK278, gKartDK279, gKartDK280, gKartDK281, gKartDK282, - gKartDK283, gKartDK284, gKartDK285, gKartDK286, gKartDK287, gKartDK288, -}; - -u8* gKartDKGroup17[] = { - gKartDK269, gKartDK270, gKartDK271, gKartDK272, gKartDK273, gKartDK274, gKartDK275, - gKartDK276, gKartDK277, gKartDK278, gKartDK279, gKartDK280, gKartDK281, gKartDK282, - gKartDK283, gKartDK284, gKartDK285, gKartDK286, gKartDK287, gKartDK288, -}; - -u8* gKartBowserGroup0[] = { - gKartBowser000, gKartBowser001, gKartBowser002, gKartBowser003, gKartBowser004, gKartBowser005, gKartBowser006, - gKartBowser007, gKartBowser008, gKartBowser009, gKartBowser010, gKartBowser011, gKartBowser012, gKartBowser013, - gKartBowser014, gKartBowser015, gKartBowser016, gKartBowser017, gKartBowser018, gKartBowser019, gKartBowser020, - gKartBowser195, gKartBowser196, gKartBowser197, gKartBowser198, gKartBowser199, gKartBowser200, gKartBowser201, - gKartBowser202, gKartBowser203, gKartBowser204, gKartBowser205, gKartBowser206, gKartBowser207, gKartBowser208, -}; - -u8* gKartBowserGroup1[] = { - gKartBowser021, gKartBowser022, gKartBowser023, gKartBowser024, gKartBowser025, gKartBowser026, gKartBowser027, - gKartBowser028, gKartBowser029, gKartBowser030, gKartBowser031, gKartBowser032, gKartBowser033, gKartBowser034, - gKartBowser035, gKartBowser036, gKartBowser037, gKartBowser038, gKartBowser039, gKartBowser040, gKartBowser041, - gKartBowser195, gKartBowser196, gKartBowser197, gKartBowser198, gKartBowser199, gKartBowser200, gKartBowser201, - gKartBowser202, gKartBowser203, gKartBowser204, gKartBowser205, gKartBowser206, gKartBowser207, gKartBowser208, -}; - -u8* gKartBowserGroup2[] = { - gKartBowser042, gKartBowser043, gKartBowser044, gKartBowser045, gKartBowser046, gKartBowser047, gKartBowser048, - gKartBowser049, gKartBowser050, gKartBowser051, gKartBowser052, gKartBowser053, gKartBowser054, gKartBowser055, - gKartBowser056, gKartBowser057, gKartBowser058, gKartBowser059, gKartBowser060, gKartBowser061, gKartBowser062, - gKartBowser215, gKartBowser216, gKartBowser217, gKartBowser218, gKartBowser219, gKartBowser220, gKartBowser221, - gKartBowser222, gKartBowser223, gKartBowser224, gKartBowser225, gKartBowser226, gKartBowser227, gKartBowser228, -}; - -u8* gKartBowserGroup3[] = { - gKartBowser063, gKartBowser064, gKartBowser065, gKartBowser066, gKartBowser067, gKartBowser068, gKartBowser069, - gKartBowser070, gKartBowser071, gKartBowser072, gKartBowser073, gKartBowser074, gKartBowser075, gKartBowser076, - gKartBowser077, gKartBowser078, gKartBowser079, gKartBowser080, gKartBowser081, gKartBowser082, gKartBowser083, - gKartBowser235, gKartBowser236, gKartBowser237, gKartBowser238, gKartBowser239, gKartBowser240, gKartBowser241, - gKartBowser242, gKartBowser243, gKartBowser244, gKartBowser245, gKartBowser246, gKartBowser247, gKartBowser248, -}; - -u8* gKartBowserGroup4[] = { - gKartBowser084, gKartBowser085, gKartBowser086, gKartBowser087, gKartBowser088, gKartBowser089, gKartBowser090, - gKartBowser091, gKartBowser092, gKartBowser093, gKartBowser094, gKartBowser095, gKartBowser096, gKartBowser097, - gKartBowser098, gKartBowser099, gKartBowser100, gKartBowser101, gKartBowser102, gKartBowser103, gKartBowser104, - gKartBowser235, gKartBowser236, gKartBowser237, gKartBowser238, gKartBowser239, gKartBowser240, gKartBowser241, - gKartBowser242, gKartBowser243, gKartBowser244, gKartBowser245, gKartBowser246, gKartBowser247, gKartBowser248, -}; - -u8* gKartBowserGroup5[] = { - gKartBowser105, gKartBowser106, gKartBowser107, gKartBowser108, gKartBowser109, gKartBowser110, gKartBowser111, - gKartBowser112, gKartBowser113, gKartBowser114, gKartBowser115, gKartBowser116, gKartBowser117, gKartBowser118, - gKartBowser119, gKartBowser120, gKartBowser121, gKartBowser122, gKartBowser123, gKartBowser124, gKartBowser125, - gKartBowser235, gKartBowser236, gKartBowser237, gKartBowser238, gKartBowser239, gKartBowser240, gKartBowser241, - gKartBowser242, gKartBowser243, gKartBowser244, gKartBowser245, gKartBowser246, gKartBowser247, gKartBowser248, -}; - -u8* gKartBowserGroup6[] = { - gKartBowser126, gKartBowser127, gKartBowser128, gKartBowser129, gKartBowser130, gKartBowser131, gKartBowser132, - gKartBowser133, gKartBowser134, gKartBowser135, gKartBowser136, gKartBowser137, gKartBowser138, gKartBowser139, - gKartBowser140, gKartBowser141, gKartBowser142, gKartBowser143, gKartBowser144, gKartBowser145, gKartBowser146, - gKartBowser255, gKartBowser256, gKartBowser257, gKartBowser258, gKartBowser259, gKartBowser260, gKartBowser261, - gKartBowser262, gKartBowser263, gKartBowser264, gKartBowser265, gKartBowser266, gKartBowser267, gKartBowser268, -}; - -u8* gKartBowserGroup7[] = { - gKartBowser147, gKartBowser148, gKartBowser149, gKartBowser150, gKartBowser151, gKartBowser152, gKartBowser153, - gKartBowser154, gKartBowser155, gKartBowser156, gKartBowser157, gKartBowser158, gKartBowser159, gKartBowser160, - gKartBowser161, gKartBowser162, gKartBowser163, gKartBowser164, gKartBowser165, gKartBowser166, gKartBowser167, - gKartBowser275, gKartBowser276, gKartBowser277, gKartBowser278, gKartBowser279, gKartBowser280, gKartBowser281, - gKartBowser282, gKartBowser283, gKartBowser284, gKartBowser285, gKartBowser286, gKartBowser287, gKartBowser288, -}; - -u8* gKartBowserGroup8[] = { - gKartBowser168, gKartBowser169, gKartBowser170, gKartBowser171, gKartBowser172, gKartBowser173, gKartBowser174, - gKartBowser175, gKartBowser176, gKartBowser177, gKartBowser178, gKartBowser179, gKartBowser180, gKartBowser181, - gKartBowser182, gKartBowser183, gKartBowser184, gKartBowser185, gKartBowser186, gKartBowser187, gKartBowser188, - gKartBowser275, gKartBowser276, gKartBowser277, gKartBowser278, gKartBowser279, gKartBowser280, gKartBowser281, - gKartBowser282, gKartBowser283, gKartBowser284, gKartBowser285, gKartBowser286, gKartBowser287, gKartBowser288, -}; - -u8* gKartBowserGroup9[] = { - gKartBowser189, gKartBowser190, gKartBowser191, gKartBowser192, gKartBowser193, gKartBowser194, gKartBowser195, - gKartBowser196, gKartBowser197, gKartBowser198, gKartBowser199, gKartBowser200, gKartBowser201, gKartBowser202, - gKartBowser203, gKartBowser204, gKartBowser205, gKartBowser206, gKartBowser207, gKartBowser208, -}; - -u8* gKartBowserGroup10[] = { - gKartBowser189, gKartBowser190, gKartBowser191, gKartBowser192, gKartBowser193, gKartBowser194, gKartBowser195, - gKartBowser196, gKartBowser197, gKartBowser198, gKartBowser199, gKartBowser200, gKartBowser201, gKartBowser202, - gKartBowser203, gKartBowser204, gKartBowser205, gKartBowser206, gKartBowser207, gKartBowser208, -}; - -u8* gKartBowserGroup11[] = { - gKartBowser209, gKartBowser210, gKartBowser211, gKartBowser212, gKartBowser213, gKartBowser214, gKartBowser215, - gKartBowser216, gKartBowser217, gKartBowser218, gKartBowser219, gKartBowser220, gKartBowser221, gKartBowser222, - gKartBowser223, gKartBowser224, gKartBowser225, gKartBowser226, gKartBowser227, gKartBowser228, -}; - -u8* gKartBowserGroup12[] = { - gKartBowser229, gKartBowser230, gKartBowser231, gKartBowser232, gKartBowser233, gKartBowser234, gKartBowser235, - gKartBowser236, gKartBowser237, gKartBowser238, gKartBowser239, gKartBowser240, gKartBowser241, gKartBowser242, - gKartBowser243, gKartBowser244, gKartBowser245, gKartBowser246, gKartBowser247, gKartBowser248, -}; - -u8* gKartBowserGroup13[] = { - gKartBowser229, gKartBowser230, gKartBowser231, gKartBowser232, gKartBowser233, gKartBowser234, gKartBowser235, - gKartBowser236, gKartBowser237, gKartBowser238, gKartBowser239, gKartBowser240, gKartBowser241, gKartBowser242, - gKartBowser243, gKartBowser244, gKartBowser245, gKartBowser246, gKartBowser247, gKartBowser248, -}; - -u8* gKartBowserGroup14[] = { - gKartBowser229, gKartBowser230, gKartBowser231, gKartBowser232, gKartBowser233, gKartBowser234, gKartBowser235, - gKartBowser236, gKartBowser237, gKartBowser238, gKartBowser239, gKartBowser240, gKartBowser241, gKartBowser242, - gKartBowser243, gKartBowser244, gKartBowser245, gKartBowser246, gKartBowser247, gKartBowser248, -}; - -u8* gKartBowserGroup15[] = { - gKartBowser249, gKartBowser250, gKartBowser251, gKartBowser252, gKartBowser253, gKartBowser254, gKartBowser255, - gKartBowser256, gKartBowser257, gKartBowser258, gKartBowser259, gKartBowser260, gKartBowser261, gKartBowser262, - gKartBowser263, gKartBowser264, gKartBowser265, gKartBowser266, gKartBowser267, gKartBowser268, -}; - -u8* gKartBowserGroup16[] = { - gKartBowser269, gKartBowser270, gKartBowser271, gKartBowser272, gKartBowser273, gKartBowser274, gKartBowser275, - gKartBowser276, gKartBowser277, gKartBowser278, gKartBowser279, gKartBowser280, gKartBowser281, gKartBowser282, - gKartBowser283, gKartBowser284, gKartBowser285, gKartBowser286, gKartBowser287, gKartBowser288, -}; - -u8* gKartBowserGroup17[] = { - gKartBowser269, gKartBowser270, gKartBowser271, gKartBowser272, gKartBowser273, gKartBowser274, gKartBowser275, - gKartBowser276, gKartBowser277, gKartBowser278, gKartBowser279, gKartBowser280, gKartBowser281, gKartBowser282, - gKartBowser283, gKartBowser284, gKartBowser285, gKartBowser286, gKartBowser287, gKartBowser288, -}; - -u8* gKartPeachGroup0[] = { - gKartPeach000, gKartPeach001, gKartPeach002, gKartPeach003, gKartPeach004, gKartPeach005, gKartPeach006, - gKartPeach007, gKartPeach008, gKartPeach009, gKartPeach010, gKartPeach011, gKartPeach012, gKartPeach013, - gKartPeach014, gKartPeach015, gKartPeach016, gKartPeach017, gKartPeach018, gKartPeach019, gKartPeach020, - gKartPeach195, gKartPeach196, gKartPeach197, gKartPeach198, gKartPeach199, gKartPeach200, gKartPeach201, - gKartPeach202, gKartPeach203, gKartPeach204, gKartPeach205, gKartPeach206, gKartPeach207, gKartPeach208, -}; - -u8* gKartPeachGroup1[] = { - gKartPeach021, gKartPeach022, gKartPeach023, gKartPeach024, gKartPeach025, gKartPeach026, gKartPeach027, - gKartPeach028, gKartPeach029, gKartPeach030, gKartPeach031, gKartPeach032, gKartPeach033, gKartPeach034, - gKartPeach035, gKartPeach036, gKartPeach037, gKartPeach038, gKartPeach039, gKartPeach040, gKartPeach041, - gKartPeach195, gKartPeach196, gKartPeach197, gKartPeach198, gKartPeach199, gKartPeach200, gKartPeach201, - gKartPeach202, gKartPeach203, gKartPeach204, gKartPeach205, gKartPeach206, gKartPeach207, gKartPeach208, -}; - -u8* gKartPeachGroup2[] = { - gKartPeach042, gKartPeach043, gKartPeach044, gKartPeach045, gKartPeach046, gKartPeach047, gKartPeach048, - gKartPeach049, gKartPeach050, gKartPeach051, gKartPeach052, gKartPeach053, gKartPeach054, gKartPeach055, - gKartPeach056, gKartPeach057, gKartPeach058, gKartPeach059, gKartPeach060, gKartPeach061, gKartPeach062, - gKartPeach215, gKartPeach216, gKartPeach217, gKartPeach218, gKartPeach219, gKartPeach220, gKartPeach221, - gKartPeach222, gKartPeach223, gKartPeach224, gKartPeach225, gKartPeach226, gKartPeach227, gKartPeach228, -}; - -u8* gKartPeachGroup3[] = { - gKartPeach063, gKartPeach064, gKartPeach065, gKartPeach066, gKartPeach067, gKartPeach068, gKartPeach069, - gKartPeach070, gKartPeach071, gKartPeach072, gKartPeach073, gKartPeach074, gKartPeach075, gKartPeach076, - gKartPeach077, gKartPeach078, gKartPeach079, gKartPeach080, gKartPeach081, gKartPeach082, gKartPeach083, - gKartPeach235, gKartPeach236, gKartPeach237, gKartPeach238, gKartPeach239, gKartPeach240, gKartPeach241, - gKartPeach242, gKartPeach243, gKartPeach244, gKartPeach245, gKartPeach246, gKartPeach247, gKartPeach248, -}; - -u8* gKartPeachGroup4[] = { - gKartPeach084, gKartPeach085, gKartPeach086, gKartPeach087, gKartPeach088, gKartPeach089, gKartPeach090, - gKartPeach091, gKartPeach092, gKartPeach093, gKartPeach094, gKartPeach095, gKartPeach096, gKartPeach097, - gKartPeach098, gKartPeach099, gKartPeach100, gKartPeach101, gKartPeach102, gKartPeach103, gKartPeach104, - gKartPeach235, gKartPeach236, gKartPeach237, gKartPeach238, gKartPeach239, gKartPeach240, gKartPeach241, - gKartPeach242, gKartPeach243, gKartPeach244, gKartPeach245, gKartPeach246, gKartPeach247, gKartPeach248, -}; - -u8* gKartPeachGroup5[] = { - gKartPeach105, gKartPeach106, gKartPeach107, gKartPeach108, gKartPeach109, gKartPeach110, gKartPeach111, - gKartPeach112, gKartPeach113, gKartPeach114, gKartPeach115, gKartPeach116, gKartPeach117, gKartPeach118, - gKartPeach119, gKartPeach120, gKartPeach121, gKartPeach122, gKartPeach123, gKartPeach124, gKartPeach125, - gKartPeach235, gKartPeach236, gKartPeach237, gKartPeach238, gKartPeach239, gKartPeach240, gKartPeach241, - gKartPeach242, gKartPeach243, gKartPeach244, gKartPeach245, gKartPeach246, gKartPeach247, gKartPeach248, -}; - -u8* gKartPeachGroup6[] = { - gKartPeach126, gKartPeach127, gKartPeach128, gKartPeach129, gKartPeach130, gKartPeach131, gKartPeach132, - gKartPeach133, gKartPeach134, gKartPeach135, gKartPeach136, gKartPeach137, gKartPeach138, gKartPeach139, - gKartPeach140, gKartPeach141, gKartPeach142, gKartPeach143, gKartPeach144, gKartPeach145, gKartPeach146, - gKartPeach255, gKartPeach256, gKartPeach257, gKartPeach258, gKartPeach259, gKartPeach260, gKartPeach261, - gKartPeach262, gKartPeach263, gKartPeach264, gKartPeach265, gKartPeach266, gKartPeach267, gKartPeach268, -}; - -u8* gKartPeachGroup7[] = { - gKartPeach147, gKartPeach148, gKartPeach149, gKartPeach150, gKartPeach151, gKartPeach152, gKartPeach153, - gKartPeach154, gKartPeach155, gKartPeach156, gKartPeach157, gKartPeach158, gKartPeach159, gKartPeach160, - gKartPeach161, gKartPeach162, gKartPeach163, gKartPeach164, gKartPeach165, gKartPeach166, gKartPeach167, - gKartPeach275, gKartPeach276, gKartPeach277, gKartPeach278, gKartPeach279, gKartPeach280, gKartPeach281, - gKartPeach282, gKartPeach283, gKartPeach284, gKartPeach285, gKartPeach286, gKartPeach287, gKartPeach288, -}; - -u8* gKartPeachGroup8[] = { - gKartPeach168, gKartPeach169, gKartPeach170, gKartPeach171, gKartPeach172, gKartPeach173, gKartPeach174, - gKartPeach175, gKartPeach176, gKartPeach177, gKartPeach178, gKartPeach179, gKartPeach180, gKartPeach181, - gKartPeach182, gKartPeach183, gKartPeach184, gKartPeach185, gKartPeach186, gKartPeach187, gKartPeach188, - gKartPeach275, gKartPeach276, gKartPeach277, gKartPeach278, gKartPeach279, gKartPeach280, gKartPeach281, - gKartPeach282, gKartPeach283, gKartPeach284, gKartPeach285, gKartPeach286, gKartPeach287, gKartPeach288, -}; - -u8* gKartPeachGroup9[] = { - gKartPeach189, gKartPeach190, gKartPeach191, gKartPeach192, gKartPeach193, gKartPeach194, gKartPeach195, - gKartPeach196, gKartPeach197, gKartPeach198, gKartPeach199, gKartPeach200, gKartPeach201, gKartPeach202, - gKartPeach203, gKartPeach204, gKartPeach205, gKartPeach206, gKartPeach207, gKartPeach208, -}; - -u8* gKartPeachGroup10[] = { - gKartPeach189, gKartPeach190, gKartPeach191, gKartPeach192, gKartPeach193, gKartPeach194, gKartPeach195, - gKartPeach196, gKartPeach197, gKartPeach198, gKartPeach199, gKartPeach200, gKartPeach201, gKartPeach202, - gKartPeach203, gKartPeach204, gKartPeach205, gKartPeach206, gKartPeach207, gKartPeach208, -}; - -u8* gKartPeachGroup11[] = { - gKartPeach209, gKartPeach210, gKartPeach211, gKartPeach212, gKartPeach213, gKartPeach214, gKartPeach215, - gKartPeach216, gKartPeach217, gKartPeach218, gKartPeach219, gKartPeach220, gKartPeach221, gKartPeach222, - gKartPeach223, gKartPeach224, gKartPeach225, gKartPeach226, gKartPeach227, gKartPeach228, -}; - -u8* gKartPeachGroup12[] = { - gKartPeach229, gKartPeach230, gKartPeach231, gKartPeach232, gKartPeach233, gKartPeach234, gKartPeach235, - gKartPeach236, gKartPeach237, gKartPeach238, gKartPeach239, gKartPeach240, gKartPeach241, gKartPeach242, - gKartPeach243, gKartPeach244, gKartPeach245, gKartPeach246, gKartPeach247, gKartPeach248, -}; - -u8* gKartPeachGroup13[] = { - gKartPeach229, gKartPeach230, gKartPeach231, gKartPeach232, gKartPeach233, gKartPeach234, gKartPeach235, - gKartPeach236, gKartPeach237, gKartPeach238, gKartPeach239, gKartPeach240, gKartPeach241, gKartPeach242, - gKartPeach243, gKartPeach244, gKartPeach245, gKartPeach246, gKartPeach247, gKartPeach248, -}; - -u8* gKartPeachGroup14[] = { - gKartPeach229, gKartPeach230, gKartPeach231, gKartPeach232, gKartPeach233, gKartPeach234, gKartPeach235, - gKartPeach236, gKartPeach237, gKartPeach238, gKartPeach239, gKartPeach240, gKartPeach241, gKartPeach242, - gKartPeach243, gKartPeach244, gKartPeach245, gKartPeach246, gKartPeach247, gKartPeach248, -}; - -u8* gKartPeachGroup15[] = { - gKartPeach249, gKartPeach250, gKartPeach251, gKartPeach252, gKartPeach253, gKartPeach254, gKartPeach255, - gKartPeach256, gKartPeach257, gKartPeach258, gKartPeach259, gKartPeach260, gKartPeach261, gKartPeach262, - gKartPeach263, gKartPeach264, gKartPeach265, gKartPeach266, gKartPeach267, gKartPeach268, -}; - -u8* gKartPeachGroup16[] = { - gKartPeach269, gKartPeach270, gKartPeach271, gKartPeach272, gKartPeach273, gKartPeach274, gKartPeach275, - gKartPeach276, gKartPeach277, gKartPeach278, gKartPeach279, gKartPeach280, gKartPeach281, gKartPeach282, - gKartPeach283, gKartPeach284, gKartPeach285, gKartPeach286, gKartPeach287, gKartPeach288, -}; - -u8* gKartPeachGroup17[] = { - gKartPeach269, gKartPeach270, gKartPeach271, gKartPeach272, gKartPeach273, gKartPeach274, gKartPeach275, - gKartPeach276, gKartPeach277, gKartPeach278, gKartPeach279, gKartPeach280, gKartPeach281, gKartPeach282, - gKartPeach283, gKartPeach284, gKartPeach285, gKartPeach286, gKartPeach287, gKartPeach288, -}; - -u8* gKartWarioGroup0[] = { - gKartWario000, gKartWario001, gKartWario002, gKartWario003, gKartWario004, gKartWario005, gKartWario006, - gKartWario007, gKartWario008, gKartWario009, gKartWario010, gKartWario011, gKartWario012, gKartWario013, - gKartWario014, gKartWario015, gKartWario016, gKartWario017, gKartWario018, gKartWario019, gKartWario020, - gKartWario195, gKartWario196, gKartWario197, gKartWario198, gKartWario199, gKartWario200, gKartWario201, - gKartWario202, gKartWario203, gKartWario204, gKartWario205, gKartWario206, gKartWario207, gKartWario208, -}; - -u8* gKartWarioGroup1[] = { - gKartWario021, gKartWario022, gKartWario023, gKartWario024, gKartWario025, gKartWario026, gKartWario027, - gKartWario028, gKartWario029, gKartWario030, gKartWario031, gKartWario032, gKartWario033, gKartWario034, - gKartWario035, gKartWario036, gKartWario037, gKartWario038, gKartWario039, gKartWario040, gKartWario041, - gKartWario195, gKartWario196, gKartWario197, gKartWario198, gKartWario199, gKartWario200, gKartWario201, - gKartWario202, gKartWario203, gKartWario204, gKartWario205, gKartWario206, gKartWario207, gKartWario208, -}; - -u8* gKartWarioGroup2[] = { - gKartWario042, gKartWario043, gKartWario044, gKartWario045, gKartWario046, gKartWario047, gKartWario048, - gKartWario049, gKartWario050, gKartWario051, gKartWario052, gKartWario053, gKartWario054, gKartWario055, - gKartWario056, gKartWario057, gKartWario058, gKartWario059, gKartWario060, gKartWario061, gKartWario062, - gKartWario215, gKartWario216, gKartWario217, gKartWario218, gKartWario219, gKartWario220, gKartWario221, - gKartWario222, gKartWario223, gKartWario224, gKartWario225, gKartWario226, gKartWario227, gKartWario228, -}; - -u8* gKartWarioGroup3[] = { - gKartWario063, gKartWario064, gKartWario065, gKartWario066, gKartWario067, gKartWario068, gKartWario069, - gKartWario070, gKartWario071, gKartWario072, gKartWario073, gKartWario074, gKartWario075, gKartWario076, - gKartWario077, gKartWario078, gKartWario079, gKartWario080, gKartWario081, gKartWario082, gKartWario083, - gKartWario235, gKartWario236, gKartWario237, gKartWario238, gKartWario239, gKartWario240, gKartWario241, - gKartWario242, gKartWario243, gKartWario244, gKartWario245, gKartWario246, gKartWario247, gKartWario248, -}; - -u8* gKartWarioGroup4[] = { - gKartWario084, gKartWario085, gKartWario086, gKartWario087, gKartWario088, gKartWario089, gKartWario090, - gKartWario091, gKartWario092, gKartWario093, gKartWario094, gKartWario095, gKartWario096, gKartWario097, - gKartWario098, gKartWario099, gKartWario100, gKartWario101, gKartWario102, gKartWario103, gKartWario104, - gKartWario235, gKartWario236, gKartWario237, gKartWario238, gKartWario239, gKartWario240, gKartWario241, - gKartWario242, gKartWario243, gKartWario244, gKartWario245, gKartWario246, gKartWario247, gKartWario248, -}; - -u8* gKartWarioGroup5[] = { - gKartWario105, gKartWario106, gKartWario107, gKartWario108, gKartWario109, gKartWario110, gKartWario111, - gKartWario112, gKartWario113, gKartWario114, gKartWario115, gKartWario116, gKartWario117, gKartWario118, - gKartWario119, gKartWario120, gKartWario121, gKartWario122, gKartWario123, gKartWario124, gKartWario125, - gKartWario235, gKartWario236, gKartWario237, gKartWario238, gKartWario239, gKartWario240, gKartWario241, - gKartWario242, gKartWario243, gKartWario244, gKartWario245, gKartWario246, gKartWario247, gKartWario248, -}; - -u8* gKartWarioGroup6[] = { - gKartWario126, gKartWario127, gKartWario128, gKartWario129, gKartWario130, gKartWario131, gKartWario132, - gKartWario133, gKartWario134, gKartWario135, gKartWario136, gKartWario137, gKartWario138, gKartWario139, - gKartWario140, gKartWario141, gKartWario142, gKartWario143, gKartWario144, gKartWario145, gKartWario146, - gKartWario255, gKartWario256, gKartWario257, gKartWario258, gKartWario259, gKartWario260, gKartWario261, - gKartWario262, gKartWario263, gKartWario264, gKartWario265, gKartWario266, gKartWario267, gKartWario268, -}; - -u8* gKartWarioGroup7[] = { - gKartWario147, gKartWario148, gKartWario149, gKartWario150, gKartWario151, gKartWario152, gKartWario153, - gKartWario154, gKartWario155, gKartWario156, gKartWario157, gKartWario158, gKartWario159, gKartWario160, - gKartWario161, gKartWario162, gKartWario163, gKartWario164, gKartWario165, gKartWario166, gKartWario167, - gKartWario275, gKartWario276, gKartWario277, gKartWario278, gKartWario279, gKartWario280, gKartWario281, - gKartWario282, gKartWario283, gKartWario284, gKartWario285, gKartWario286, gKartWario287, gKartWario288, -}; - -u8* gKartWarioGroup8[] = { - gKartWario168, gKartWario169, gKartWario170, gKartWario171, gKartWario172, gKartWario173, gKartWario174, - gKartWario175, gKartWario176, gKartWario177, gKartWario178, gKartWario179, gKartWario180, gKartWario181, - gKartWario182, gKartWario183, gKartWario184, gKartWario185, gKartWario186, gKartWario187, gKartWario188, - gKartWario275, gKartWario276, gKartWario277, gKartWario278, gKartWario279, gKartWario280, gKartWario281, - gKartWario282, gKartWario283, gKartWario284, gKartWario285, gKartWario286, gKartWario287, gKartWario288, -}; - -u8* gKartWarioGroup9[] = { - gKartWario189, gKartWario190, gKartWario191, gKartWario192, gKartWario193, gKartWario194, gKartWario195, - gKartWario196, gKartWario197, gKartWario198, gKartWario199, gKartWario200, gKartWario201, gKartWario202, - gKartWario203, gKartWario204, gKartWario205, gKartWario206, gKartWario207, gKartWario208, -}; - -u8* gKartWarioGroup10[] = { - gKartWario189, gKartWario190, gKartWario191, gKartWario192, gKartWario193, gKartWario194, gKartWario195, - gKartWario196, gKartWario197, gKartWario198, gKartWario199, gKartWario200, gKartWario201, gKartWario202, - gKartWario203, gKartWario204, gKartWario205, gKartWario206, gKartWario207, gKartWario208, -}; - -u8* gKartWarioGroup11[] = { - gKartWario209, gKartWario210, gKartWario211, gKartWario212, gKartWario213, gKartWario214, gKartWario215, - gKartWario216, gKartWario217, gKartWario218, gKartWario219, gKartWario220, gKartWario221, gKartWario222, - gKartWario223, gKartWario224, gKartWario225, gKartWario226, gKartWario227, gKartWario228, -}; - -u8* gKartWarioGroup12[] = { - gKartWario229, gKartWario230, gKartWario231, gKartWario232, gKartWario233, gKartWario234, gKartWario235, - gKartWario236, gKartWario237, gKartWario238, gKartWario239, gKartWario240, gKartWario241, gKartWario242, - gKartWario243, gKartWario244, gKartWario245, gKartWario246, gKartWario247, gKartWario248, -}; - -u8* gKartWarioGroup13[] = { - gKartWario229, gKartWario230, gKartWario231, gKartWario232, gKartWario233, gKartWario234, gKartWario235, - gKartWario236, gKartWario237, gKartWario238, gKartWario239, gKartWario240, gKartWario241, gKartWario242, - gKartWario243, gKartWario244, gKartWario245, gKartWario246, gKartWario247, gKartWario248, -}; - -u8* gKartWarioGroup14[] = { - gKartWario229, gKartWario230, gKartWario231, gKartWario232, gKartWario233, gKartWario234, gKartWario235, - gKartWario236, gKartWario237, gKartWario238, gKartWario239, gKartWario240, gKartWario241, gKartWario242, - gKartWario243, gKartWario244, gKartWario245, gKartWario246, gKartWario247, gKartWario248, -}; - -u8* gKartWarioGroup15[] = { - gKartWario249, gKartWario250, gKartWario251, gKartWario252, gKartWario253, gKartWario254, gKartWario255, - gKartWario256, gKartWario257, gKartWario258, gKartWario259, gKartWario260, gKartWario261, gKartWario262, - gKartWario263, gKartWario264, gKartWario265, gKartWario266, gKartWario267, gKartWario268, -}; - -u8* gKartWarioGroup16[] = { - gKartWario269, gKartWario270, gKartWario271, gKartWario272, gKartWario273, gKartWario274, gKartWario275, - gKartWario276, gKartWario277, gKartWario278, gKartWario279, gKartWario280, gKartWario281, gKartWario282, - gKartWario283, gKartWario284, gKartWario285, gKartWario286, gKartWario287, gKartWario288, -}; - -u8* gKartWarioGroup17[] = { - gKartWario269, gKartWario270, gKartWario271, gKartWario272, gKartWario273, gKartWario274, gKartWario275, - gKartWario276, gKartWario277, gKartWario278, gKartWario279, gKartWario280, gKartWario281, gKartWario282, - gKartWario283, gKartWario284, gKartWario285, gKartWario286, gKartWario287, gKartWario288, -}; - -u8** gKartMarioTable0[] = { - gKartMarioGroup8, gKartMarioGroup7, gKartMarioGroup6, gKartMarioGroup5, gKartMarioGroup4, - gKartMarioGroup3, gKartMarioGroup2, gKartMarioGroup1, gKartMarioGroup0, -}; - -u8** gKartLuigiTable0[] = { - gKartLuigiGroup8, gKartLuigiGroup7, gKartLuigiGroup6, gKartLuigiGroup5, gKartLuigiGroup4, - gKartLuigiGroup3, gKartLuigiGroup2, gKartLuigiGroup1, gKartLuigiGroup0, -}; - -u8** gKartYoshiTable0[] = { - gKartYoshiGroup8, gKartYoshiGroup7, gKartYoshiGroup6, gKartYoshiGroup5, gKartYoshiGroup4, - gKartYoshiGroup3, gKartYoshiGroup2, gKartYoshiGroup1, gKartYoshiGroup0, -}; - -u8** gKartToadTable0[] = { - gKartToadGroup8, gKartToadGroup7, gKartToadGroup6, gKartToadGroup5, gKartToadGroup4, - gKartToadGroup3, gKartToadGroup2, gKartToadGroup1, gKartToadGroup0, -}; - -u8** gKartDKTable0[] = { - gKartDKGroup8, gKartDKGroup7, gKartDKGroup6, gKartDKGroup5, gKartDKGroup4, - gKartDKGroup3, gKartDKGroup2, gKartDKGroup1, gKartDKGroup0, -}; - -u8** gKartWarioTable0[] = { - gKartWarioGroup8, gKartWarioGroup7, gKartWarioGroup6, gKartWarioGroup5, gKartWarioGroup4, - gKartWarioGroup3, gKartWarioGroup2, gKartWarioGroup1, gKartWarioGroup0, -}; - -u8** gKartPeachTable0[] = { - gKartPeachGroup8, gKartPeachGroup7, gKartPeachGroup6, gKartPeachGroup5, gKartPeachGroup4, - gKartPeachGroup3, gKartPeachGroup2, gKartPeachGroup1, gKartPeachGroup0, -}; - -u8** gKartBowserTable0[] = { - gKartBowserGroup8, gKartBowserGroup7, gKartBowserGroup6, gKartBowserGroup5, gKartBowserGroup4, - gKartBowserGroup3, gKartBowserGroup2, gKartBowserGroup1, gKartBowserGroup0, -}; - -u8** gKartMarioTable1[] = { - gKartMarioGroup17, gKartMarioGroup16, gKartMarioGroup15, gKartMarioGroup14, gKartMarioGroup13, - gKartMarioGroup12, gKartMarioGroup11, gKartMarioGroup10, gKartMarioGroup9, -}; - -u8** gKartLuigiTable1[] = { - gKartLuigiGroup17, gKartLuigiGroup16, gKartLuigiGroup15, gKartLuigiGroup14, gKartLuigiGroup13, - gKartLuigiGroup12, gKartLuigiGroup11, gKartLuigiGroup10, gKartLuigiGroup9, -}; - -u8** gKartYoshiTable1[] = { - gKartYoshiGroup17, gKartYoshiGroup16, gKartYoshiGroup15, gKartYoshiGroup14, gKartYoshiGroup13, - gKartYoshiGroup12, gKartYoshiGroup11, gKartYoshiGroup10, gKartYoshiGroup9, -}; - -u8** gKartToadTable1[] = { - gKartToadGroup17, gKartToadGroup16, gKartToadGroup15, gKartToadGroup14, gKartToadGroup13, - gKartToadGroup12, gKartToadGroup11, gKartToadGroup10, gKartToadGroup9, -}; - -u8** gKartDKTable1[] = { - gKartDKGroup17, gKartDKGroup16, gKartDKGroup15, gKartDKGroup14, gKartDKGroup13, - gKartDKGroup12, gKartDKGroup11, gKartDKGroup10, gKartDKGroup9, -}; - -u8** gKartWarioTable1[] = { - gKartWarioGroup17, gKartWarioGroup16, gKartWarioGroup15, gKartWarioGroup14, gKartWarioGroup13, - gKartWarioGroup12, gKartWarioGroup11, gKartWarioGroup10, gKartWarioGroup9, -}; - -u8** gKartPeachTable1[] = { - gKartPeachGroup17, gKartPeachGroup16, gKartPeachGroup15, gKartPeachGroup14, gKartPeachGroup13, - gKartPeachGroup12, gKartPeachGroup11, gKartPeachGroup10, gKartPeachGroup9, -}; - -u8** gKartBowserTable1[] = { - gKartBowserGroup17, gKartBowserGroup16, gKartBowserGroup15, gKartBowserGroup14, gKartBowserGroup13, - gKartBowserGroup12, gKartBowserGroup11, gKartBowserGroup10, gKartBowserGroup9, -}; - -u8*** gKartTextureTable0[] = { +#define KART_TEXTURE_MACRO(var) \ + u8* var[4] = { \ + (u8*)var##Wheel0, (u8*)var##Wheel1, (u8*)var##Wheel2, (u8*)var##Wheel3 \ + }; + +#define GROUP_0_COMMENT // group 0 +#define GROUP_1_COMMENT // group 1 +#define GROUP_2_COMMENT // group 2 +#define GROUP_3_COMMENT // group 3 +#define GROUP_4_COMMENT // group 4 +#define GROUP_5_COMMENT // group 5 +#define GROUP_6_COMMENT // group 6 +#define GROUP_7_COMMENT // group 7 +#define GROUP_8_COMMENT // group 8 +#define GROUP_9_10_COMMENT // group 9 and 10 +#define GROUP_11_COMMENT // group 11 +#define GROUP_12_13_14_COMMENT // group 12, 13 and 14 +#define GROUP_15_COMMENT // group 15 +#define GROUP_16_17_COMMENT // group 16 and 17 + +#define ALSO_INCLUDE_GROUP_0_1 // also includes group 0 and 1 +#define ALSO_INCLUDE_GROUP_2 // also includes group 2 +#define ALSO_INCLUDE_GROUP_3_4_5 // also includes group 3, 4 and 5 +#define ALSO_INCLUDE_GROUP_6 // also includes group 6 +#define ALSO_INCLUDE_GROUP_7_8 // also includes group 7 and 8 + +#define DECLARE_KART_TEXTURES(var) \ + GROUP_0_COMMENT \ + KART_TEXTURE_MACRO(var##000) \ + KART_TEXTURE_MACRO(var##001) \ + KART_TEXTURE_MACRO(var##002) \ + KART_TEXTURE_MACRO(var##003) \ + KART_TEXTURE_MACRO(var##004) \ + KART_TEXTURE_MACRO(var##005) \ + KART_TEXTURE_MACRO(var##006) \ + KART_TEXTURE_MACRO(var##007) \ + KART_TEXTURE_MACRO(var##008) \ + KART_TEXTURE_MACRO(var##009) \ + KART_TEXTURE_MACRO(var##010) \ + KART_TEXTURE_MACRO(var##011) \ + KART_TEXTURE_MACRO(var##012) \ + KART_TEXTURE_MACRO(var##013) \ + KART_TEXTURE_MACRO(var##014) \ + KART_TEXTURE_MACRO(var##015) \ + KART_TEXTURE_MACRO(var##016) \ + KART_TEXTURE_MACRO(var##017) \ + KART_TEXTURE_MACRO(var##018) \ + KART_TEXTURE_MACRO(var##019) \ + KART_TEXTURE_MACRO(var##020) \ + GROUP_1_COMMENT \ + KART_TEXTURE_MACRO(var##021) \ + KART_TEXTURE_MACRO(var##022) \ + KART_TEXTURE_MACRO(var##023) \ + KART_TEXTURE_MACRO(var##024) \ + KART_TEXTURE_MACRO(var##025) \ + KART_TEXTURE_MACRO(var##026) \ + KART_TEXTURE_MACRO(var##027) \ + KART_TEXTURE_MACRO(var##028) \ + KART_TEXTURE_MACRO(var##029) \ + KART_TEXTURE_MACRO(var##030) \ + KART_TEXTURE_MACRO(var##031) \ + KART_TEXTURE_MACRO(var##032) \ + KART_TEXTURE_MACRO(var##033) \ + KART_TEXTURE_MACRO(var##034) \ + KART_TEXTURE_MACRO(var##035) \ + KART_TEXTURE_MACRO(var##036) \ + KART_TEXTURE_MACRO(var##037) \ + KART_TEXTURE_MACRO(var##038) \ + KART_TEXTURE_MACRO(var##039) \ + KART_TEXTURE_MACRO(var##040) \ + KART_TEXTURE_MACRO(var##041) \ + GROUP_2_COMMENT \ + KART_TEXTURE_MACRO(var##042) \ + KART_TEXTURE_MACRO(var##043) \ + KART_TEXTURE_MACRO(var##044) \ + KART_TEXTURE_MACRO(var##045) \ + KART_TEXTURE_MACRO(var##046) \ + KART_TEXTURE_MACRO(var##047) \ + KART_TEXTURE_MACRO(var##048) \ + KART_TEXTURE_MACRO(var##049) \ + KART_TEXTURE_MACRO(var##050) \ + KART_TEXTURE_MACRO(var##051) \ + KART_TEXTURE_MACRO(var##052) \ + KART_TEXTURE_MACRO(var##053) \ + KART_TEXTURE_MACRO(var##054) \ + KART_TEXTURE_MACRO(var##055) \ + KART_TEXTURE_MACRO(var##056) \ + KART_TEXTURE_MACRO(var##057) \ + KART_TEXTURE_MACRO(var##058) \ + KART_TEXTURE_MACRO(var##059) \ + KART_TEXTURE_MACRO(var##060) \ + KART_TEXTURE_MACRO(var##061) \ + KART_TEXTURE_MACRO(var##062) \ + GROUP_3_COMMENT \ + KART_TEXTURE_MACRO(var##063) \ + KART_TEXTURE_MACRO(var##064) \ + KART_TEXTURE_MACRO(var##065) \ + KART_TEXTURE_MACRO(var##066) \ + KART_TEXTURE_MACRO(var##067) \ + KART_TEXTURE_MACRO(var##068) \ + KART_TEXTURE_MACRO(var##069) \ + KART_TEXTURE_MACRO(var##070) \ + KART_TEXTURE_MACRO(var##071) \ + KART_TEXTURE_MACRO(var##072) \ + KART_TEXTURE_MACRO(var##073) \ + KART_TEXTURE_MACRO(var##074) \ + KART_TEXTURE_MACRO(var##075) \ + KART_TEXTURE_MACRO(var##076) \ + KART_TEXTURE_MACRO(var##077) \ + KART_TEXTURE_MACRO(var##078) \ + KART_TEXTURE_MACRO(var##079) \ + KART_TEXTURE_MACRO(var##080) \ + KART_TEXTURE_MACRO(var##081) \ + KART_TEXTURE_MACRO(var##082) \ + KART_TEXTURE_MACRO(var##083) \ + GROUP_4_COMMENT \ + KART_TEXTURE_MACRO(var##084) \ + KART_TEXTURE_MACRO(var##085) \ + KART_TEXTURE_MACRO(var##086) \ + KART_TEXTURE_MACRO(var##087) \ + KART_TEXTURE_MACRO(var##088) \ + KART_TEXTURE_MACRO(var##089) \ + KART_TEXTURE_MACRO(var##090) \ + KART_TEXTURE_MACRO(var##091) \ + KART_TEXTURE_MACRO(var##092) \ + KART_TEXTURE_MACRO(var##093) \ + KART_TEXTURE_MACRO(var##094) \ + KART_TEXTURE_MACRO(var##095) \ + KART_TEXTURE_MACRO(var##096) \ + KART_TEXTURE_MACRO(var##097) \ + KART_TEXTURE_MACRO(var##098) \ + KART_TEXTURE_MACRO(var##099) \ + KART_TEXTURE_MACRO(var##100) \ + KART_TEXTURE_MACRO(var##101) \ + KART_TEXTURE_MACRO(var##102) \ + KART_TEXTURE_MACRO(var##103) \ + KART_TEXTURE_MACRO(var##104) \ + GROUP_5_COMMENT \ + KART_TEXTURE_MACRO(var##105) \ + KART_TEXTURE_MACRO(var##106) \ + KART_TEXTURE_MACRO(var##107) \ + KART_TEXTURE_MACRO(var##108) \ + KART_TEXTURE_MACRO(var##109) \ + KART_TEXTURE_MACRO(var##110) \ + KART_TEXTURE_MACRO(var##111) \ + KART_TEXTURE_MACRO(var##112) \ + KART_TEXTURE_MACRO(var##113) \ + KART_TEXTURE_MACRO(var##114) \ + KART_TEXTURE_MACRO(var##115) \ + KART_TEXTURE_MACRO(var##116) \ + KART_TEXTURE_MACRO(var##117) \ + KART_TEXTURE_MACRO(var##118) \ + KART_TEXTURE_MACRO(var##119) \ + KART_TEXTURE_MACRO(var##120) \ + KART_TEXTURE_MACRO(var##121) \ + KART_TEXTURE_MACRO(var##122) \ + KART_TEXTURE_MACRO(var##123) \ + KART_TEXTURE_MACRO(var##124) \ + KART_TEXTURE_MACRO(var##125) \ + GROUP_6_COMMENT \ + KART_TEXTURE_MACRO(var##126) \ + KART_TEXTURE_MACRO(var##127) \ + KART_TEXTURE_MACRO(var##128) \ + KART_TEXTURE_MACRO(var##129) \ + KART_TEXTURE_MACRO(var##130) \ + KART_TEXTURE_MACRO(var##131) \ + KART_TEXTURE_MACRO(var##132) \ + KART_TEXTURE_MACRO(var##133) \ + KART_TEXTURE_MACRO(var##134) \ + KART_TEXTURE_MACRO(var##135) \ + KART_TEXTURE_MACRO(var##136) \ + KART_TEXTURE_MACRO(var##137) \ + KART_TEXTURE_MACRO(var##138) \ + KART_TEXTURE_MACRO(var##139) \ + KART_TEXTURE_MACRO(var##140) \ + KART_TEXTURE_MACRO(var##141) \ + KART_TEXTURE_MACRO(var##142) \ + KART_TEXTURE_MACRO(var##143) \ + KART_TEXTURE_MACRO(var##144) \ + KART_TEXTURE_MACRO(var##145) \ + KART_TEXTURE_MACRO(var##146) \ + GROUP_7_COMMENT \ + KART_TEXTURE_MACRO(var##147) \ + KART_TEXTURE_MACRO(var##148) \ + KART_TEXTURE_MACRO(var##149) \ + KART_TEXTURE_MACRO(var##150) \ + KART_TEXTURE_MACRO(var##151) \ + KART_TEXTURE_MACRO(var##152) \ + KART_TEXTURE_MACRO(var##153) \ + KART_TEXTURE_MACRO(var##154) \ + KART_TEXTURE_MACRO(var##155) \ + KART_TEXTURE_MACRO(var##156) \ + KART_TEXTURE_MACRO(var##157) \ + KART_TEXTURE_MACRO(var##158) \ + KART_TEXTURE_MACRO(var##159) \ + KART_TEXTURE_MACRO(var##160) \ + KART_TEXTURE_MACRO(var##161) \ + KART_TEXTURE_MACRO(var##162) \ + KART_TEXTURE_MACRO(var##163) \ + KART_TEXTURE_MACRO(var##164) \ + KART_TEXTURE_MACRO(var##165) \ + KART_TEXTURE_MACRO(var##166) \ + KART_TEXTURE_MACRO(var##167) \ + GROUP_8_COMMENT \ + KART_TEXTURE_MACRO(var##168) \ + KART_TEXTURE_MACRO(var##169) \ + KART_TEXTURE_MACRO(var##170) \ + KART_TEXTURE_MACRO(var##171) \ + KART_TEXTURE_MACRO(var##172) \ + KART_TEXTURE_MACRO(var##173) \ + KART_TEXTURE_MACRO(var##174) \ + KART_TEXTURE_MACRO(var##175) \ + KART_TEXTURE_MACRO(var##176) \ + KART_TEXTURE_MACRO(var##177) \ + KART_TEXTURE_MACRO(var##178) \ + KART_TEXTURE_MACRO(var##179) \ + KART_TEXTURE_MACRO(var##180) \ + KART_TEXTURE_MACRO(var##181) \ + KART_TEXTURE_MACRO(var##182) \ + KART_TEXTURE_MACRO(var##183) \ + KART_TEXTURE_MACRO(var##184) \ + KART_TEXTURE_MACRO(var##185) \ + KART_TEXTURE_MACRO(var##186) \ + KART_TEXTURE_MACRO(var##187) \ + KART_TEXTURE_MACRO(var##188) \ + GROUP_9_10_COMMENT \ + KART_TEXTURE_MACRO(var##189) \ + KART_TEXTURE_MACRO(var##190) \ + KART_TEXTURE_MACRO(var##191) \ + KART_TEXTURE_MACRO(var##192) \ + KART_TEXTURE_MACRO(var##193) \ + KART_TEXTURE_MACRO(var##194) \ + ALSO_INCLUDE_GROUP_0_1 \ + KART_TEXTURE_MACRO(var##195) \ + KART_TEXTURE_MACRO(var##196) \ + KART_TEXTURE_MACRO(var##197) \ + KART_TEXTURE_MACRO(var##198) \ + KART_TEXTURE_MACRO(var##199) \ + KART_TEXTURE_MACRO(var##200) \ + KART_TEXTURE_MACRO(var##201) \ + KART_TEXTURE_MACRO(var##202) \ + KART_TEXTURE_MACRO(var##203) \ + KART_TEXTURE_MACRO(var##204) \ + KART_TEXTURE_MACRO(var##205) \ + KART_TEXTURE_MACRO(var##206) \ + KART_TEXTURE_MACRO(var##207) \ + KART_TEXTURE_MACRO(var##208) \ + GROUP_11_COMMENT \ + KART_TEXTURE_MACRO(var##209) \ + KART_TEXTURE_MACRO(var##210) \ + KART_TEXTURE_MACRO(var##211) \ + KART_TEXTURE_MACRO(var##212) \ + KART_TEXTURE_MACRO(var##213) \ + KART_TEXTURE_MACRO(var##214) \ + ALSO_INCLUDE_GROUP_2 \ + KART_TEXTURE_MACRO(var##215) \ + KART_TEXTURE_MACRO(var##216) \ + KART_TEXTURE_MACRO(var##217) \ + KART_TEXTURE_MACRO(var##218) \ + KART_TEXTURE_MACRO(var##219) \ + KART_TEXTURE_MACRO(var##220) \ + KART_TEXTURE_MACRO(var##221) \ + KART_TEXTURE_MACRO(var##222) \ + KART_TEXTURE_MACRO(var##223) \ + KART_TEXTURE_MACRO(var##224) \ + KART_TEXTURE_MACRO(var##225) \ + KART_TEXTURE_MACRO(var##226) \ + KART_TEXTURE_MACRO(var##227) \ + KART_TEXTURE_MACRO(var##228) \ + GROUP_12_13_14_COMMENT \ + KART_TEXTURE_MACRO(var##229) \ + KART_TEXTURE_MACRO(var##230) \ + KART_TEXTURE_MACRO(var##231) \ + KART_TEXTURE_MACRO(var##232) \ + KART_TEXTURE_MACRO(var##233) \ + KART_TEXTURE_MACRO(var##234) \ + ALSO_INCLUDE_GROUP_3_4_5 \ + KART_TEXTURE_MACRO(var##235) \ + KART_TEXTURE_MACRO(var##236) \ + KART_TEXTURE_MACRO(var##237) \ + KART_TEXTURE_MACRO(var##238) \ + KART_TEXTURE_MACRO(var##239) \ + KART_TEXTURE_MACRO(var##240) \ + KART_TEXTURE_MACRO(var##241) \ + KART_TEXTURE_MACRO(var##242) \ + KART_TEXTURE_MACRO(var##243) \ + KART_TEXTURE_MACRO(var##244) \ + KART_TEXTURE_MACRO(var##245) \ + KART_TEXTURE_MACRO(var##246) \ + KART_TEXTURE_MACRO(var##247) \ + KART_TEXTURE_MACRO(var##248) \ + GROUP_15_COMMENT \ + KART_TEXTURE_MACRO(var##249) \ + KART_TEXTURE_MACRO(var##250) \ + KART_TEXTURE_MACRO(var##251) \ + KART_TEXTURE_MACRO(var##252) \ + KART_TEXTURE_MACRO(var##253) \ + KART_TEXTURE_MACRO(var##254) \ + ALSO_INCLUDE_GROUP_6 \ + KART_TEXTURE_MACRO(var##255) \ + KART_TEXTURE_MACRO(var##256) \ + KART_TEXTURE_MACRO(var##257) \ + KART_TEXTURE_MACRO(var##258) \ + KART_TEXTURE_MACRO(var##259) \ + KART_TEXTURE_MACRO(var##260) \ + KART_TEXTURE_MACRO(var##261) \ + KART_TEXTURE_MACRO(var##262) \ + KART_TEXTURE_MACRO(var##263) \ + KART_TEXTURE_MACRO(var##264) \ + KART_TEXTURE_MACRO(var##265) \ + KART_TEXTURE_MACRO(var##266) \ + KART_TEXTURE_MACRO(var##267) \ + KART_TEXTURE_MACRO(var##268) \ + GROUP_16_17_COMMENT \ + KART_TEXTURE_MACRO(var##269) \ + KART_TEXTURE_MACRO(var##270) \ + KART_TEXTURE_MACRO(var##271) \ + KART_TEXTURE_MACRO(var##272) \ + KART_TEXTURE_MACRO(var##273) \ + KART_TEXTURE_MACRO(var##274) \ + ALSO_INCLUDE_GROUP_7_8 \ + KART_TEXTURE_MACRO(var##275) \ + KART_TEXTURE_MACRO(var##276) \ + KART_TEXTURE_MACRO(var##277) \ + KART_TEXTURE_MACRO(var##278) \ + KART_TEXTURE_MACRO(var##279) \ + KART_TEXTURE_MACRO(var##280) \ + KART_TEXTURE_MACRO(var##281) \ + KART_TEXTURE_MACRO(var##282) \ + KART_TEXTURE_MACRO(var##283) \ + KART_TEXTURE_MACRO(var##284) \ + KART_TEXTURE_MACRO(var##285) \ + KART_TEXTURE_MACRO(var##286) \ + KART_TEXTURE_MACRO(var##287) \ + KART_TEXTURE_MACRO(var##288) + +#define DECLARE_KART_GROUP(var) \ + kart_texture_t var##Group0[] = { \ + var##000, var##001, var##002, var##003, var##004, var##005, var##006, \ + var##007, var##008, var##009, var##010, var##011, var##012, var##013, \ + var##014, var##015, var##016, var##017, var##018, var##019, var##020, \ + var##195, var##196, var##197, var##198, var##199, var##200, var##201, \ + var##202, var##203, var##204, var##205, var##206, var##207, var##208, \ + }; \ + kart_texture_t var##Group1[] = { \ + var##021, var##022, var##023, var##024, var##025, var##026, var##027, \ + var##028, var##029, var##030, var##031, var##032, var##033, var##034, \ + var##035, var##036, var##037, var##038, var##039, var##040, var##041, \ + var##195, var##196, var##197, var##198, var##199, var##200, var##201, \ + var##202, var##203, var##204, var##205, var##206, var##207, var##208, \ + }; \ + kart_texture_t var##Group2[] = { \ + var##042, var##043, var##044, var##045, var##046, var##047, var##048, \ + var##049, var##050, var##051, var##052, var##053, var##054, var##055, \ + var##056, var##057, var##058, var##059, var##060, var##061, var##062, \ + var##215, var##216, var##217, var##218, var##219, var##220, var##221, \ + var##222, var##223, var##224, var##225, var##226, var##227, var##228, \ + }; \ + kart_texture_t var##Group3[] = { \ + var##063, var##064, var##065, var##066, var##067, var##068, var##069, \ + var##070, var##071, var##072, var##073, var##074, var##075, var##076, \ + var##077, var##078, var##079, var##080, var##081, var##082, var##083, \ + var##235, var##236, var##237, var##238, var##239, var##240, var##241, \ + var##242, var##243, var##244, var##245, var##246, var##247, var##248, \ + }; \ + kart_texture_t var##Group4[] = { \ + var##084, var##085, var##086, var##087, var##088, var##089, var##090, \ + var##091, var##092, var##093, var##094, var##095, var##096, var##097, \ + var##098, var##099, var##100, var##101, var##102, var##103, var##104, \ + var##235, var##236, var##237, var##238, var##239, var##240, var##241, \ + var##242, var##243, var##244, var##245, var##246, var##247, var##248, \ + }; \ + kart_texture_t var##Group5[] = { \ + var##105, var##106, var##107, var##108, var##109, var##110, var##111, \ + var##112, var##113, var##114, var##115, var##116, var##117, var##118, \ + var##119, var##120, var##121, var##122, var##123, var##124, var##125, \ + var##235, var##236, var##237, var##238, var##239, var##240, var##241, \ + var##242, var##243, var##244, var##245, var##246, var##247, var##248, \ + }; \ + kart_texture_t var##Group6[] = { \ + var##126, var##127, var##128, var##129, var##130, var##131, var##132, \ + var##133, var##134, var##135, var##136, var##137, var##138, var##139, \ + var##140, var##141, var##142, var##143, var##144, var##145, var##146, \ + var##255, var##256, var##257, var##258, var##259, var##260, var##261, \ + var##262, var##263, var##264, var##265, var##266, var##267, var##268, \ + }; \ + kart_texture_t var##Group7[] = { \ + var##147, var##148, var##149, var##150, var##151, var##152, var##153, \ + var##154, var##155, var##156, var##157, var##158, var##159, var##160, \ + var##161, var##162, var##163, var##164, var##165, var##166, var##167, \ + var##275, var##276, var##277, var##278, var##279, var##280, var##281, \ + var##282, var##283, var##284, var##285, var##286, var##287, var##288, \ + }; \ + kart_texture_t var##Group8[] = { \ + var##168, var##169, var##170, var##171, var##172, var##173, var##174, \ + var##175, var##176, var##177, var##178, var##179, var##180, var##181, \ + var##182, var##183, var##184, var##185, var##186, var##187, var##188, \ + var##275, var##276, var##277, var##278, var##279, var##280, var##281, \ + var##282, var##283, var##284, var##285, var##286, var##287, var##288, \ + }; \ + kart_texture_t var##Group9[] = { \ + var##189, var##190, var##191, var##192, var##193, var##194, var##195, \ + var##196, var##197, var##198, var##199, var##200, var##201, var##202, \ + var##203, var##204, var##205, var##206, var##207, var##208, \ + }; \ + kart_texture_t var##Group10[] = { \ + var##189, var##190, var##191, var##192, var##193, var##194, var##195, \ + var##196, var##197, var##198, var##199, var##200, var##201, var##202, \ + var##203, var##204, var##205, var##206, var##207, var##208, \ + }; \ + kart_texture_t var##Group11[] = { \ + var##209, var##210, var##211, var##212, var##213, var##214, var##215, \ + var##216, var##217, var##218, var##219, var##220, var##221, var##222, \ + var##223, var##224, var##225, var##226, var##227, var##228, \ + }; \ + kart_texture_t var##Group12[] = { \ + var##229, var##230, var##231, var##232, var##233, var##234, var##235, \ + var##236, var##237, var##238, var##239, var##240, var##241, var##242, \ + var##243, var##244, var##245, var##246, var##247, var##248, \ + }; \ + kart_texture_t var##Group13[] = { \ + var##229, var##230, var##231, var##232, var##233, var##234, var##235, \ + var##236, var##237, var##238, var##239, var##240, var##241, var##242, \ + var##243, var##244, var##245, var##246, var##247, var##248, \ + }; \ + kart_texture_t var##Group14[] = { \ + var##229, var##230, var##231, var##232, var##233, var##234, var##235, \ + var##236, var##237, var##238, var##239, var##240, var##241, var##242, \ + var##243, var##244, var##245, var##246, var##247, var##248, \ + }; \ + kart_texture_t var##Group15[] = { \ + var##249, var##250, var##251, var##252, var##253, var##254, var##255, \ + var##256, var##257, var##258, var##259, var##260, var##261, var##262, \ + var##263, var##264, var##265, var##266, var##267, var##268, \ + }; \ + kart_texture_t var##Group16[] = { \ + var##269, var##270, var##271, var##272, var##273, var##274, var##275, \ + var##276, var##277, var##278, var##279, var##280, var##281, var##282, \ + var##283, var##284, var##285, var##286, var##287, var##288, \ + }; \ + kart_texture_t var##Group17[] = { \ + var##269, var##270, var##271, var##272, var##273, var##274, var##275, \ + var##276, var##277, var##278, var##279, var##280, var##281, var##282, \ + var##283, var##284, var##285, var##286, var##287, var##288, \ + }; + +#define DECLARE_KART_TABLE0(var) \ + kart_texture_t* var##Table0[] = { \ + var##Group8, var##Group7, var##Group6, var##Group5, var##Group4, \ + var##Group3, var##Group2, var##Group1, var##Group0, \ + }; + +#define DECLARE_KART_TABLE1(var) \ + kart_texture_t* var##Table1[] = { \ + var##Group17, var##Group16, var##Group15, var##Group14, var##Group13, \ + var##Group12, var##Group11, var##Group10, var##Group9, \ + }; + +#define DECLARE_TUMBLE_KART_TEXTURES(var) \ + KART_TEXTURE_MACRO(var##289) \ + KART_TEXTURE_MACRO(var##290) \ + KART_TEXTURE_MACRO(var##291) \ + KART_TEXTURE_MACRO(var##292) \ + KART_TEXTURE_MACRO(var##293) \ + KART_TEXTURE_MACRO(var##294) \ + KART_TEXTURE_MACRO(var##295) \ + KART_TEXTURE_MACRO(var##296) \ + KART_TEXTURE_MACRO(var##297) \ + KART_TEXTURE_MACRO(var##298) \ + KART_TEXTURE_MACRO(var##299) \ + KART_TEXTURE_MACRO(var##300) \ + KART_TEXTURE_MACRO(var##301) \ + KART_TEXTURE_MACRO(var##302) \ + KART_TEXTURE_MACRO(var##303) \ + KART_TEXTURE_MACRO(var##304) \ + KART_TEXTURE_MACRO(var##305) \ + KART_TEXTURE_MACRO(var##306) \ + KART_TEXTURE_MACRO(var##307) \ + KART_TEXTURE_MACRO(var##308) \ + KART_TEXTURE_MACRO(var##309) \ + KART_TEXTURE_MACRO(var##310) \ + KART_TEXTURE_MACRO(var##311) \ + KART_TEXTURE_MACRO(var##312) \ + KART_TEXTURE_MACRO(var##313) \ + KART_TEXTURE_MACRO(var##314) \ + KART_TEXTURE_MACRO(var##315) \ + KART_TEXTURE_MACRO(var##316) \ + KART_TEXTURE_MACRO(var##317) \ + KART_TEXTURE_MACRO(var##318) \ + KART_TEXTURE_MACRO(var##319) \ + KART_TEXTURE_MACRO(var##320) + +#define DECLARE_KART_TUMBLE_TABLE(var) \ + kart_texture_t var##Tumble[] = { \ + var##289, var##290, var##291, var##292, var##293, var##294, var##295, \ + var##296, var##297, var##298, var##299, var##300, var##301, var##302, \ + var##303, var##304, var##305, var##306, var##307, var##308, var##309, \ + var##310, var##311, var##312, var##313, var##314, var##315, var##316, \ + var##317, var##318, var##319, var##320 \ + }; + +typedef u8** kart_texture_t; + +DECLARE_KART_TEXTURES(gKartMario) +DECLARE_KART_GROUP(gKartMario) +DECLARE_KART_TEXTURES(gKartToad) +DECLARE_KART_GROUP(gKartToad) +DECLARE_KART_TEXTURES(gKartLuigi) +DECLARE_KART_GROUP(gKartLuigi) +DECLARE_KART_TEXTURES(gKartYoshi) +DECLARE_KART_GROUP(gKartYoshi) +DECLARE_KART_TEXTURES(gKartDK) +DECLARE_KART_GROUP(gKartDK) +DECLARE_KART_TEXTURES(gKartBowser) +DECLARE_KART_GROUP(gKartBowser) +DECLARE_KART_TEXTURES(gKartPeach) +DECLARE_KART_GROUP(gKartPeach) +DECLARE_KART_TEXTURES(gKartWario) +DECLARE_KART_GROUP(gKartWario) + +DECLARE_KART_TABLE0(gKartMario) +DECLARE_KART_TABLE0(gKartLuigi) +DECLARE_KART_TABLE0(gKartYoshi) +DECLARE_KART_TABLE0(gKartToad) +DECLARE_KART_TABLE0(gKartDK) +DECLARE_KART_TABLE0(gKartWario) +DECLARE_KART_TABLE0(gKartPeach) +DECLARE_KART_TABLE0(gKartBowser) + +DECLARE_KART_TABLE1(gKartMario) +DECLARE_KART_TABLE1(gKartLuigi) +DECLARE_KART_TABLE1(gKartYoshi) +DECLARE_KART_TABLE1(gKartToad) +DECLARE_KART_TABLE1(gKartDK) +DECLARE_KART_TABLE1(gKartWario) +DECLARE_KART_TABLE1(gKartPeach) +DECLARE_KART_TABLE1(gKartBowser) + +kart_texture_t** gKartTextureTable0[] = { gKartMarioTable0, gKartLuigiTable0, gKartYoshiTable0, gKartToadTable0, gKartDKTable0, gKartWarioTable0, gKartPeachTable0, gKartBowserTable0, }; -u8*** gKartTextureTable1[] = { +kart_texture_t** gKartTextureTable1[] = { gKartMarioTable1, gKartLuigiTable1, gKartYoshiTable1, gKartToadTable1, gKartDKTable1, gKartWarioTable1, gKartPeachTable1, gKartBowserTable1, }; -u8* gKartMarioTumble[] = { - gKartMario289, gKartMario290, gKartMario291, gKartMario292, gKartMario293, gKartMario294, gKartMario295, - gKartMario296, gKartMario297, gKartMario298, gKartMario299, gKartMario300, gKartMario301, gKartMario302, - gKartMario303, gKartMario304, gKartMario305, gKartMario306, gKartMario307, gKartMario308, gKartMario309, - gKartMario310, gKartMario311, gKartMario312, gKartMario313, gKartMario314, gKartMario315, gKartMario316, - gKartMario317, gKartMario318, gKartMario319, gKartMario320, -}; - -u8* gKartLuigiTumble[] = { - gKartLuigi289, gKartLuigi290, gKartLuigi291, gKartLuigi292, gKartLuigi293, gKartLuigi294, gKartLuigi295, - gKartLuigi296, gKartLuigi297, gKartLuigi298, gKartLuigi299, gKartLuigi300, gKartLuigi301, gKartLuigi302, - gKartLuigi303, gKartLuigi304, gKartLuigi305, gKartLuigi306, gKartLuigi307, gKartLuigi308, gKartLuigi309, - gKartLuigi310, gKartLuigi311, gKartLuigi312, gKartLuigi313, gKartLuigi314, gKartLuigi315, gKartLuigi316, - gKartLuigi317, gKartLuigi318, gKartLuigi319, gKartLuigi320, -}; - -u8* gKartBowserTumble[] = { - gKartBowser289, gKartBowser290, gKartBowser291, gKartBowser292, gKartBowser293, gKartBowser294, gKartBowser295, - gKartBowser296, gKartBowser297, gKartBowser298, gKartBowser299, gKartBowser300, gKartBowser301, gKartBowser302, - gKartBowser303, gKartBowser304, gKartBowser305, gKartBowser306, gKartBowser307, gKartBowser308, gKartBowser309, - gKartBowser310, gKartBowser311, gKartBowser312, gKartBowser313, gKartBowser314, gKartBowser315, gKartBowser316, - gKartBowser317, gKartBowser318, gKartBowser319, gKartBowser320, -}; - -u8* gKartToadTumble[] = { - gKartToad289, gKartToad290, gKartToad291, gKartToad292, gKartToad293, gKartToad294, gKartToad295, gKartToad296, - gKartToad297, gKartToad298, gKartToad299, gKartToad300, gKartToad301, gKartToad302, gKartToad303, gKartToad304, - gKartToad305, gKartToad306, gKartToad307, gKartToad308, gKartToad309, gKartToad310, gKartToad311, gKartToad312, - gKartToad313, gKartToad314, gKartToad315, gKartToad316, gKartToad317, gKartToad318, gKartToad319, gKartToad320, -}; - -u8* gKartYoshiTumble[] = { - gKartYoshi289, gKartYoshi290, gKartYoshi291, gKartYoshi292, gKartYoshi293, gKartYoshi294, gKartYoshi295, - gKartYoshi296, gKartYoshi297, gKartYoshi298, gKartYoshi299, gKartYoshi300, gKartYoshi301, gKartYoshi302, - gKartYoshi303, gKartYoshi304, gKartYoshi305, gKartYoshi306, gKartYoshi307, gKartYoshi308, gKartYoshi309, - gKartYoshi310, gKartYoshi311, gKartYoshi312, gKartYoshi313, gKartYoshi314, gKartYoshi315, gKartYoshi316, - gKartYoshi317, gKartYoshi318, gKartYoshi319, gKartYoshi320, -}; - -u8* gKartDKTumble[] = { - gKartDK289, gKartDK290, gKartDK291, gKartDK292, gKartDK293, gKartDK294, gKartDK295, gKartDK296, - gKartDK297, gKartDK298, gKartDK299, gKartDK300, gKartDK301, gKartDK302, gKartDK303, gKartDK304, - gKartDK305, gKartDK306, gKartDK307, gKartDK308, gKartDK309, gKartDK310, gKartDK311, gKartDK312, - gKartDK313, gKartDK314, gKartDK315, gKartDK316, gKartDK317, gKartDK318, gKartDK319, gKartDK320, -}; - -u8* gKartPeachTumble[] = { - gKartPeach289, gKartPeach290, gKartPeach291, gKartPeach292, gKartPeach293, gKartPeach294, gKartPeach295, - gKartPeach296, gKartPeach297, gKartPeach298, gKartPeach299, gKartPeach300, gKartPeach301, gKartPeach302, - gKartPeach303, gKartPeach304, gKartPeach305, gKartPeach306, gKartPeach307, gKartPeach308, gKartPeach309, - gKartPeach310, gKartPeach311, gKartPeach312, gKartPeach313, gKartPeach314, gKartPeach315, gKartPeach316, - gKartPeach317, gKartPeach318, gKartPeach319, gKartPeach320, -}; - -u8* gKartWarioTumble[] = { - gKartWario289, gKartWario290, gKartWario291, gKartWario292, gKartWario293, gKartWario294, gKartWario295, - gKartWario296, gKartWario297, gKartWario298, gKartWario299, gKartWario300, gKartWario301, gKartWario302, - gKartWario303, gKartWario304, gKartWario305, gKartWario306, gKartWario307, gKartWario308, gKartWario309, - gKartWario310, gKartWario311, gKartWario312, gKartWario313, gKartWario314, gKartWario315, gKartWario316, - gKartWario317, gKartWario318, gKartWario319, gKartWario320, -}; +DECLARE_KART_TUMBLE_TABLE(gKartMario) +DECLARE_KART_TUMBLE_TABLE(gKartLuigi) +DECLARE_KART_TUMBLE_TABLE(gKartBowser) +DECLARE_KART_TUMBLE_TABLE(gKartToad) +DECLARE_KART_TUMBLE_TABLE(gKartYoshi) +DECLARE_KART_TUMBLE_TABLE(gKartDK) +DECLARE_KART_TUMBLE_TABLE(gKartPeach) +DECLARE_KART_TUMBLE_TABLE(gKartWario) u8** gKartTextureTumbles[] = { gKartMarioTumble, gKartLuigiTumble, gKartYoshiTumble, gKartToadTumble, @@ -1196,78 +602,37 @@ u8* gKartPalettes[] = { **/ void load_kart_texture(Player* player, s8 playerId, s8 screenId, s8 screenId2, s8 index) { s32 temp = player->effects; + s16 tyreSpeed = player->tyreSpeed; if (((temp & 0x80) == 0x80) || ((temp & 0x40) == 0x40) || ((temp & 0x80000) == 0x80000) || ((temp & 0x800000) == 0x800000) || ((temp & 0x20000) == 0x20000) || ((player->unk_044 & 0x800) != 0)) { if (player->animFrameSelector[screenId] != 0) { osInvalDCache(&gEncodedKartTexture[index][screenId2][playerId], D_800DDEB0[player->characterId]); - -#ifdef TARGET_N64 - osPiStartDma(&gDmaIoMesg, OS_MESG_PRI_NORMAL, OS_READ, - (uintptr_t) &_kart_texturesSegmentRomStart[SEGMENT_OFFSET( - gKartTextureTable1[player->characterId][player->animGroupSelector[screenId]] - [player->animFrameSelector[screenId]])], - &gEncodedKartTexture[index][screenId2][playerId], D_800DDEB0[player->characterId], - &gDmaMesgQueue); - - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, OS_MESG_BLOCK); -#else gEncodedKartTexture[index][screenId2][playerId].unk_00 = gKartTextureTable1[player->characterId][player->animGroupSelector[screenId]] - [player->animFrameSelector[screenId]]; -#endif + [player->animFrameSelector[screenId]][tyreSpeed >> 8]; } else { osInvalDCache(&gEncodedKartTexture[index][screenId2][playerId], D_800DDEB0[player->characterId]); -#ifdef TARGET_N64 - osPiStartDma(&gDmaIoMesg, OS_MESG_PRI_NORMAL, OS_READ, - (uintptr_t) &_kart_texturesSegmentRomStart[SEGMENT_OFFSET( - gKartTextureTable0[player->characterId][player->animGroupSelector[screenId]] - [player->animFrameSelector[screenId]])], - &gEncodedKartTexture[index][screenId2][playerId], D_800DDEB0[player->characterId], - &gDmaMesgQueue); - - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, OS_MESG_BLOCK); -#else gEncodedKartTexture[index][screenId2][playerId].unk_00 = gKartTextureTable0[player->characterId][player->animGroupSelector[screenId]] - [player->animFrameSelector[screenId]]; -#endif + [player->animFrameSelector[screenId]][0]; } } else if (((temp & 0x400) == 0x400) || ((temp & 0x01000000) == 0x01000000) || ((temp & 0x02000000) == 0x02000000) || ((temp & 0x10000) == 0x10000)) { osInvalDCache(&gEncodedKartTexture[index][screenId2][playerId], 0x780U); // player->unk_0A8 >> 8 converts an 8.8 fixed-point animation frame to a whole number. -#ifdef TARGET_N64 - osPiStartDma(&gDmaIoMesg, OS_MESG_PRI_NORMAL, OS_READ, - (uintptr_t) &_kart_texturesSegmentRomStart[SEGMENT_OFFSET( - gKartTextureTumbles[player->characterId][player->unk_0A8 >> 8])], - &gEncodedKartTexture[index][screenId2][playerId], 0x900, &gDmaMesgQueue); - - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, OS_MESG_BLOCK); -#else gEncodedKartTexture[index][screenId2][playerId].unk_00 = gKartTextureTumbles[player->characterId][player->unk_0A8 >> 8]; -#endif } else { osInvalDCache(&gEncodedKartTexture[index][screenId2][playerId], D_800DDEB0[player->characterId]); - -#ifdef TARGET_N64 - osPiStartDma(&gDmaIoMesg, OS_MESG_PRI_NORMAL, OS_READ, - (uintptr_t) &_kart_texturesSegmentRomStart[SEGMENT_OFFSET( - gKartTextureTable0[player->characterId][player->animGroupSelector[screenId]] - [player->animFrameSelector[screenId]])], - &gEncodedKartTexture[index][screenId2][playerId], D_800DDEB0[player->characterId], &gDmaMesgQueue); - - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, OS_MESG_BLOCK); -#else gEncodedKartTexture[index][screenId2][playerId].unk_00 = gKartTextureTable0[player->characterId][player->animGroupSelector[screenId]] - [player->animFrameSelector[screenId]]; -#endif + [player->animFrameSelector[screenId]][tyreSpeed >> 8]; } } void load_kart_texture_non_blocking(Player* player, s8 arg1, s8 arg2, s8 arg3, s8 arg4) { s32 temp = player->effects; + s16 tyreSpeed = player->tyreSpeed; if (((temp & 0x80) == 0x80) || ((temp & 0x40) == 0x40) || ((temp & 0x80000) == 0x80000) || ((temp & 0x800000) == 0x800000) || ((temp & 0x20000) == 0x20000) || ((player->unk_044 & 0x800) != 0)) { @@ -1283,7 +648,7 @@ void load_kart_texture_non_blocking(Player* player, s8 arg1, s8 arg2, s8 arg3, s #else gEncodedKartTexture[arg4][arg3][arg1].unk_00 = gKartTextureTable1[player->characterId][player->animGroupSelector[arg2]] - [player->animFrameSelector[arg2]]; + [player->animFrameSelector[arg2]][tyreSpeed >> 8]; #endif } else { osInvalDCache(&gEncodedKartTexture[arg4][arg3][arg1], D_800DDEB0[player->characterId]); @@ -1297,7 +662,7 @@ void load_kart_texture_non_blocking(Player* player, s8 arg1, s8 arg2, s8 arg3, s #else gEncodedKartTexture[arg4][arg3][arg1].unk_00 = gKartTextureTable0[player->characterId][player->animGroupSelector[arg2]] - [player->animFrameSelector[arg2]]; + [player->animFrameSelector[arg2]][tyreSpeed >> 8]; #endif } } else if (((temp & 0x400) == 0x400) || ((temp & 0x01000000) == 0x01000000) || @@ -1323,7 +688,7 @@ void load_kart_texture_non_blocking(Player* player, s8 arg1, s8 arg2, s8 arg3, s &gEncodedKartTexture[arg4][arg3][arg1], D_800DDEB0[player->characterId], &gDmaMesgQueue); #else gEncodedKartTexture[arg4][arg3][arg1].unk_00 = - gKartTextureTable0[player->characterId][player->animGroupSelector[arg2]][player->animFrameSelector[arg2]]; + gKartTextureTable0[player->characterId][player->animGroupSelector[arg2]][player->animFrameSelector[arg2]][tyreSpeed >> 8]; #endif } } @@ -1331,44 +696,23 @@ void load_kart_texture_non_blocking(Player* player, s8 arg1, s8 arg2, s8 arg3, s void load_kart_palette(Player* player, s8 playerId, s8 screenId, s8 buffer) { u8* asset; size_t size; -#ifdef AVOID_UB struct_D_802F1F80* temp_s0 = &gPlayerPalettesList[buffer][screenId][playerId]; -#else - struct_D_802F1F80* temp_s0 = (struct_D_802F1F80*) &gPlayerPalettesList[buffer][screenId][playerId * 0x100]; -#endif switch (gActiveScreenMode) { case SCREEN_MODE_1P: case SCREEN_MODE_2P_SPLITSCREEN_HORIZONTAL: case SCREEN_MODE_2P_SPLITSCREEN_VERTICAL: osInvalDCache(temp_s0, sizeof(struct_D_802F1F80)); -#ifdef TARGET_N64 - osPiStartDma(&gDmaIoMesg, OS_MESG_PRI_NORMAL, OS_READ, - (uintptr_t) &_kart_texturesSegmentRomStart[SEGMENT_OFFSET(gKartPalettes[player->characterId])], - temp_s0, sizeof(struct_D_802F1F80), &gDmaMesgQueue); - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, OS_MESG_BLOCK); -#else size = ResourceGetTexSizeByName(gKartPalettes[player->characterId]); asset = (u8*) LOAD_ASSET(gKartPalettes[player->characterId]); - memcpy(&gPlayerPalettesList[buffer][screenId][playerId].kart_palette[0], asset, size); -#endif - + memcpy(&temp_s0->kart_palette[0], asset, size); break; case SCREEN_MODE_3P_4P_SPLITSCREEN: // Code identical to above osInvalDCache(temp_s0, sizeof(struct_D_802F1F80)); -#ifdef TARGET_N64 - osPiStartDma(&gDmaIoMesg, OS_MESG_PRI_NORMAL, OS_READ, - (uintptr_t) &_kart_texturesSegmentRomStart[SEGMENT_OFFSET(gKartPalettes[player->characterId])], - temp_s0, sizeof(struct_D_802F1F80), &gDmaMesgQueue); - - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, OS_MESG_BLOCK); -#else size = ResourceGetTexSizeByName(gKartPalettes[player->characterId]); asset = (u8*) LOAD_ASSET(gKartPalettes[player->characterId]); - memcpy(&gPlayerPalettesList[buffer][screenId][playerId].kart_palette[0], asset, size); -#endif - + memcpy(&temp_s0->kart_palette[0], asset, size); break; } } diff --git a/src/kart_dma.h b/src/kart_dma.h index f48dad359..51aebda21 100644 --- a/src/kart_dma.h +++ b/src/kart_dma.h @@ -16,2787 +16,8 @@ void load_wheel_palette_non_blocking(Player*, const char*, void*, u16); extern u16 D_800DDEB0[]; -extern u8* gKartMarioGroup0[]; -extern u8* gKartMarioGroup1[]; -extern u8* gKartMarioGroup2[]; -extern u8* gKartMarioGroup3[]; -extern u8* gKartMarioGroup4[]; -extern u8* gKartMarioGroup5[]; -extern u8* gKartMarioGroup6[]; -extern u8* gKartMarioGroup7[]; -extern u8* gKartMarioGroup8[]; - -extern u8* gKartMarioGroup9[]; -extern u8* gKartMarioGroup10[]; -extern u8* gKartMarioGroup11[]; -extern u8* gKartMarioGroup12[]; -extern u8* gKartMarioGroup13[]; -extern u8* gKartMarioGroup14[]; -extern u8* gKartMarioGroup15[]; -extern u8* gKartMarioGroup16[]; -extern u8* gKartMarioGroup17[]; - -extern u8* gKartToadGroup0[]; -extern u8* gKartToadGroup1[]; -extern u8* gKartToadGroup2[]; -extern u8* gKartToadGroup3[]; -extern u8* gKartToadGroup4[]; -extern u8* gKartToadGroup5[]; -extern u8* gKartToadGroup6[]; -extern u8* gKartToadGroup7[]; -extern u8* gKartToadGroup8[]; - -extern u8* gKartToadGroup9[]; -extern u8* gKartToadGroup10[]; -extern u8* gKartToadGroup11[]; -extern u8* gKartToadGroup12[]; -extern u8* gKartToadGroup13[]; -extern u8* gKartToadGroup14[]; -extern u8* gKartToadGroup15[]; -extern u8* gKartToadGroup16[]; -extern u8* gKartToadGroup17[]; - -extern u8* gKartLuigiGroup0[]; -extern u8* gKartLuigiGroup1[]; -extern u8* gKartLuigiGroup2[]; -extern u8* gKartLuigiGroup3[]; -extern u8* gKartLuigiGroup4[]; -extern u8* gKartLuigiGroup5[]; -extern u8* gKartLuigiGroup6[]; -extern u8* gKartLuigiGroup7[]; -extern u8* gKartLuigiGroup8[]; - -extern u8* gKartLuigiGroup9[]; -extern u8* gKartLuigiGroup10[]; -extern u8* gKartLuigiGroup11[]; -extern u8* gKartLuigiGroup12[]; -extern u8* gKartLuigiGroup13[]; -extern u8* gKartLuigiGroup14[]; -extern u8* gKartLuigiGroup15[]; -extern u8* gKartLuigiGroup16[]; -extern u8* gKartLuigiGroup17[]; - -extern u8* gKartYoshiGroup0[]; -extern u8* gKartYoshiGroup1[]; -extern u8* gKartYoshiGroup2[]; -extern u8* gKartYoshiGroup3[]; -extern u8* gKartYoshiGroup4[]; -extern u8* gKartYoshiGroup5[]; -extern u8* gKartYoshiGroup6[]; -extern u8* gKartYoshiGroup7[]; -extern u8* gKartYoshiGroup8[]; - -extern u8* gKartYoshiGroup9[]; -extern u8* gKartYoshiGroup10[]; -extern u8* gKartYoshiGroup11[]; -extern u8* gKartYoshiGroup12[]; -extern u8* gKartYoshiGroup13[]; -extern u8* gKartYoshiGroup14[]; -extern u8* gKartYoshiGroup15[]; -extern u8* gKartYoshiGroup16[]; -extern u8* gKartYoshiGroup17[]; - -extern u8* gKartDKGroup0[]; -extern u8* gKartDKGroup1[]; -extern u8* gKartDKGroup2[]; -extern u8* gKartDKGroup3[]; -extern u8* gKartDKGroup4[]; -extern u8* gKartDKGroup5[]; -extern u8* gKartDKGroup6[]; -extern u8* gKartDKGroup7[]; -extern u8* gKartDKGroup8[]; - -extern u8* gKartDKGroup9[]; -extern u8* gKartDKGroup10[]; -extern u8* gKartDKGroup11[]; -extern u8* gKartDKGroup12[]; -extern u8* gKartDKGroup13[]; -extern u8* gKartDKGroup14[]; -extern u8* gKartDKGroup15[]; -extern u8* gKartDKGroup16[]; -extern u8* gKartDKGroup17[]; - -extern u8* gKartBowserGroup0[]; -extern u8* gKartBowserGroup1[]; -extern u8* gKartBowserGroup2[]; -extern u8* gKartBowserGroup3[]; -extern u8* gKartBowserGroup4[]; -extern u8* gKartBowserGroup5[]; -extern u8* gKartBowserGroup6[]; -extern u8* gKartBowserGroup7[]; -extern u8* gKartBowserGroup8[]; - -extern u8* gKartBowserGroup9[]; -extern u8* gKartBowserGroup10[]; -extern u8* gKartBowserGroup11[]; -extern u8* gKartBowserGroup12[]; -extern u8* gKartBowserGroup13[]; -extern u8* gKartBowserGroup14[]; -extern u8* gKartBowserGroup15[]; -extern u8* gKartBowserGroup16[]; -extern u8* gKartBowserGroup17[]; - -extern u8* gKartPeachGroup0[]; -extern u8* gKartPeachGroup1[]; -extern u8* gKartPeachGroup2[]; -extern u8* gKartPeachGroup3[]; -extern u8* gKartPeachGroup4[]; -extern u8* gKartPeachGroup5[]; -extern u8* gKartPeachGroup6[]; -extern u8* gKartPeachGroup7[]; -extern u8* gKartPeachGroup8[]; - -extern u8* gKartPeachGroup9[]; -extern u8* gKartPeachGroup10[]; -extern u8* gKartPeachGroup11[]; -extern u8* gKartPeachGroup12[]; -extern u8* gKartPeachGroup13[]; -extern u8* gKartPeachGroup14[]; -extern u8* gKartPeachGroup15[]; -extern u8* gKartPeachGroup16[]; -extern u8* gKartPeachGroup17[]; - -extern u8* gKartWarioGroup0[]; -extern u8* gKartWarioGroup1[]; -extern u8* gKartWarioGroup2[]; -extern u8* gKartWarioGroup3[]; -extern u8* gKartWarioGroup4[]; -extern u8* gKartWarioGroup5[]; -extern u8* gKartWarioGroup6[]; -extern u8* gKartWarioGroup7[]; -extern u8* gKartWarioGroup8[]; - -extern u8* gKartWarioGroup9[]; -extern u8* gKartWarioGroup10[]; -extern u8* gKartWarioGroup11[]; -extern u8* gKartWarioGroup12[]; -extern u8* gKartWarioGroup13[]; -extern u8* gKartWarioGroup14[]; -extern u8* gKartWarioGroup15[]; -extern u8* gKartWarioGroup16[]; -extern u8* gKartWarioGroup17[]; - -extern u8** gKartMarioTable0[]; -extern u8** gKartLuigiTable0[]; -extern u8** gKartYoshiTable0[]; -extern u8** gKartToadTable0[]; -extern u8** gKartDKTable0[]; -extern u8** gKartWarioTable0[]; -extern u8** gKartPeachTable0[]; -extern u8** gKartBowserTable0[]; - -extern u8** gKartMarioTable1[]; -extern u8** gKartLuigiTable1[]; -extern u8** gKartYoshiTable1[]; -extern u8** gKartToadTable1[]; -extern u8** gKartDKTable1[]; -extern u8** gKartWarioTable1[]; -extern u8** gKartPeachTable1[]; -extern u8** gKartBowserTable1[]; - -extern u8*** gKartTextureTable0[]; -extern u8*** gKartTextureTable1[]; - -extern u8* gKartMarioTumble[]; -extern u8* gKartLuigiTumble[]; -extern u8* gKartBowserTumble[]; -extern u8* gKartToadTumble[]; -extern u8* gKartYoshiTumble[]; -extern u8* gKartDKTumble[]; -extern u8* gKartPeachTumble[]; -extern u8* gKartWarioTumble[]; - -extern u8** gKartTextureTumbles[]; - -extern u8* gKartPalettes[]; - // end of kart_dma.h variables -// extern u8 gKartMarioPalette[]; -// extern u8 gKartLuigiPalette[]; -// extern u8 gKartToadPalette[]; -// extern u8 gKartYoshiPalette[]; -// extern u8 gKartPeachPalette[]; -// extern u8 gKartWarioPalette[]; -// extern u8 gKartBowserPalette[]; -// extern u8 gKartDKPalette[]; - -// extern u8 gKartMario000[]; -// extern u8 gKartMario001[]; -// extern u8 gKartMario002[]; -// extern u8 gKartMario003[]; -// extern u8 gKartMario004[]; -// extern u8 gKartMario005[]; -// extern u8 gKartMario006[]; -// extern u8 gKartMario007[]; -// extern u8 gKartMario008[]; -// extern u8 gKartMario009[]; -// extern u8 gKartMario010[]; -// extern u8 gKartMario011[]; -// extern u8 gKartMario012[]; -// extern u8 gKartMario013[]; -// extern u8 gKartMario014[]; -// extern u8 gKartMario015[]; -// extern u8 gKartMario016[]; -// extern u8 gKartMario017[]; -// extern u8 gKartMario018[]; -// extern u8 gKartMario019[]; -// extern u8 gKartMario020[]; -// extern u8 gKartMario021[]; -// extern u8 gKartMario022[]; -// extern u8 gKartMario023[]; -// extern u8 gKartMario024[]; -// extern u8 gKartMario025[]; -// extern u8 gKartMario026[]; -// extern u8 gKartMario027[]; -// extern u8 gKartMario028[]; -// extern u8 gKartMario029[]; -// extern u8 gKartMario030[]; -// extern u8 gKartMario031[]; -// extern u8 gKartMario032[]; -// extern u8 gKartMario033[]; -// extern u8 gKartMario034[]; -// extern u8 gKartMario035[]; -// extern u8 gKartMario036[]; -// extern u8 gKartMario037[]; -// extern u8 gKartMario038[]; -// extern u8 gKartMario039[]; -// extern u8 gKartMario040[]; -// extern u8 gKartMario041[]; -// extern u8 gKartMario042[]; -// extern u8 gKartMario043[]; -// extern u8 gKartMario044[]; -// extern u8 gKartMario045[]; -// extern u8 gKartMario046[]; -// extern u8 gKartMario047[]; -// extern u8 gKartMario048[]; -// extern u8 gKartMario049[]; -// extern u8 gKartMario050[]; -// extern u8 gKartMario051[]; -// extern u8 gKartMario052[]; -// extern u8 gKartMario053[]; -// extern u8 gKartMario054[]; -// extern u8 gKartMario055[]; -// extern u8 gKartMario056[]; -// extern u8 gKartMario057[]; -// extern u8 gKartMario058[]; -// extern u8 gKartMario059[]; -// extern u8 gKartMario060[]; -// extern u8 gKartMario061[]; -// extern u8 gKartMario062[]; -// extern u8 gKartMario063[]; -// extern u8 gKartMario064[]; -// extern u8 gKartMario065[]; -// extern u8 gKartMario066[]; -// extern u8 gKartMario067[]; -// extern u8 gKartMario068[]; -// extern u8 gKartMario069[]; -// extern u8 gKartMario070[]; -// extern u8 gKartMario071[]; -// extern u8 gKartMario072[]; -// extern u8 gKartMario073[]; -// extern u8 gKartMario074[]; -// extern u8 gKartMario075[]; -// extern u8 gKartMario076[]; -// extern u8 gKartMario077[]; -// extern u8 gKartMario078[]; -// extern u8 gKartMario079[]; -// extern u8 gKartMario080[]; -// extern u8 gKartMario081[]; -// extern u8 gKartMario082[]; -// extern u8 gKartMario083[]; -// extern u8 gKartMario084[]; -// extern u8 gKartMario085[]; -// extern u8 gKartMario086[]; -// extern u8 gKartMario087[]; -// extern u8 gKartMario088[]; -// extern u8 gKartMario089[]; -// extern u8 gKartMario090[]; -// extern u8 gKartMario091[]; -// extern u8 gKartMario092[]; -// extern u8 gKartMario093[]; -// extern u8 gKartMario094[]; -// extern u8 gKartMario095[]; -// extern u8 gKartMario096[]; -// extern u8 gKartMario097[]; -// extern u8 gKartMario098[]; -// extern u8 gKartMario099[]; -// extern u8 gKartMario100[]; -// extern u8 gKartMario101[]; -// extern u8 gKartMario102[]; -// extern u8 gKartMario103[]; -// extern u8 gKartMario104[]; -// extern u8 gKartMario105[]; -// extern u8 gKartMario106[]; -// extern u8 gKartMario107[]; -// extern u8 gKartMario108[]; -// extern u8 gKartMario109[]; -// extern u8 gKartMario110[]; -// extern u8 gKartMario111[]; -// extern u8 gKartMario112[]; -// extern u8 gKartMario113[]; -// extern u8 gKartMario114[]; -// extern u8 gKartMario115[]; -// extern u8 gKartMario116[]; -// extern u8 gKartMario117[]; -// extern u8 gKartMario118[]; -// extern u8 gKartMario119[]; -// extern u8 gKartMario120[]; -// extern u8 gKartMario121[]; -// extern u8 gKartMario122[]; -// extern u8 gKartMario123[]; -// extern u8 gKartMario124[]; -// extern u8 gKartMario125[]; -// extern u8 gKartMario126[]; -// extern u8 gKartMario127[]; -// extern u8 gKartMario128[]; -// extern u8 gKartMario129[]; -// extern u8 gKartMario130[]; -// extern u8 gKartMario131[]; -// extern u8 gKartMario132[]; -// extern u8 gKartMario133[]; -// extern u8 gKartMario134[]; -// extern u8 gKartMario135[]; -// extern u8 gKartMario136[]; -// extern u8 gKartMario137[]; -// extern u8 gKartMario138[]; -// extern u8 gKartMario139[]; -// extern u8 gKartMario140[]; -// extern u8 gKartMario141[]; -// extern u8 gKartMario142[]; -// extern u8 gKartMario143[]; -// extern u8 gKartMario144[]; -// extern u8 gKartMario145[]; -// extern u8 gKartMario146[]; -// extern u8 gKartMario147[]; -// extern u8 gKartMario148[]; -// extern u8 gKartMario149[]; -// extern u8 gKartMario150[]; -// extern u8 gKartMario151[]; -// extern u8 gKartMario152[]; -// extern u8 gKartMario153[]; -// extern u8 gKartMario154[]; -// extern u8 gKartMario155[]; -// extern u8 gKartMario156[]; -// extern u8 gKartMario157[]; -// extern u8 gKartMario158[]; -// extern u8 gKartMario159[]; -// extern u8 gKartMario160[]; -// extern u8 gKartMario161[]; -// extern u8 gKartMario162[]; -// extern u8 gKartMario163[]; -// extern u8 gKartMario164[]; -// extern u8 gKartMario165[]; -// extern u8 gKartMario166[]; -// extern u8 gKartMario167[]; -// extern u8 gKartMario168[]; -// extern u8 gKartMario169[]; -// extern u8 gKartMario170[]; -// extern u8 gKartMario171[]; -// extern u8 gKartMario172[]; -// extern u8 gKartMario173[]; -// extern u8 gKartMario174[]; -// extern u8 gKartMario175[]; -// extern u8 gKartMario176[]; -// extern u8 gKartMario177[]; -// extern u8 gKartMario178[]; -// extern u8 gKartMario179[]; -// extern u8 gKartMario180[]; -// extern u8 gKartMario181[]; -// extern u8 gKartMario182[]; -// extern u8 gKartMario183[]; -// extern u8 gKartMario184[]; -// extern u8 gKartMario185[]; -// extern u8 gKartMario186[]; -// extern u8 gKartMario187[]; -// extern u8 gKartMario188[]; -// extern u8 gKartMario189[]; -// extern u8 gKartMario190[]; -// extern u8 gKartMario191[]; -// extern u8 gKartMario192[]; -// extern u8 gKartMario193[]; -// extern u8 gKartMario194[]; -// extern u8 gKartMario195[]; -// extern u8 gKartMario196[]; -// extern u8 gKartMario197[]; -// extern u8 gKartMario198[]; -// extern u8 gKartMario199[]; -// extern u8 gKartMario200[]; -// extern u8 gKartMario201[]; -// extern u8 gKartMario202[]; -// extern u8 gKartMario203[]; -// extern u8 gKartMario204[]; -// extern u8 gKartMario205[]; -// extern u8 gKartMario206[]; -// extern u8 gKartMario207[]; -// extern u8 gKartMario208[]; -// extern u8 gKartMario209[]; -// extern u8 gKartMario210[]; -// extern u8 gKartMario211[]; -// extern u8 gKartMario212[]; -// extern u8 gKartMario213[]; -// extern u8 gKartMario214[]; -// extern u8 gKartMario215[]; -// extern u8 gKartMario216[]; -// extern u8 gKartMario217[]; -// extern u8 gKartMario218[]; -// extern u8 gKartMario219[]; -// extern u8 gKartMario220[]; -// extern u8 gKartMario221[]; -// extern u8 gKartMario222[]; -// extern u8 gKartMario223[]; -// extern u8 gKartMario224[]; -// extern u8 gKartMario225[]; -// extern u8 gKartMario226[]; -// extern u8 gKartMario227[]; -// extern u8 gKartMario228[]; -// extern u8 gKartMario229[]; -// extern u8 gKartMario230[]; -// extern u8 gKartMario231[]; -// extern u8 gKartMario232[]; -// extern u8 gKartMario233[]; -// extern u8 gKartMario234[]; -// extern u8 gKartMario235[]; -// extern u8 gKartMario236[]; -// extern u8 gKartMario237[]; -// extern u8 gKartMario238[]; -// extern u8 gKartMario239[]; -// extern u8 gKartMario240[]; -// extern u8 gKartMario241[]; -// extern u8 gKartMario242[]; -// extern u8 gKartMario243[]; -// extern u8 gKartMario244[]; -// extern u8 gKartMario245[]; -// extern u8 gKartMario246[]; -// extern u8 gKartMario247[]; -// extern u8 gKartMario248[]; -// extern u8 gKartMario249[]; -// extern u8 gKartMario250[]; -// extern u8 gKartMario251[]; -// extern u8 gKartMario252[]; -// extern u8 gKartMario253[]; -// extern u8 gKartMario254[]; -// extern u8 gKartMario255[]; -// extern u8 gKartMario256[]; -// extern u8 gKartMario257[]; -// extern u8 gKartMario258[]; -// extern u8 gKartMario259[]; -// extern u8 gKartMario260[]; -// extern u8 gKartMario261[]; -// extern u8 gKartMario262[]; -// extern u8 gKartMario263[]; -// extern u8 gKartMario264[]; -// extern u8 gKartMario265[]; -// extern u8 gKartMario266[]; -// extern u8 gKartMario267[]; -// extern u8 gKartMario268[]; -// extern u8 gKartMario269[]; -// extern u8 gKartMario270[]; -// extern u8 gKartMario271[]; -// extern u8 gKartMario272[]; -// extern u8 gKartMario273[]; -// extern u8 gKartMario274[]; -// extern u8 gKartMario275[]; -// extern u8 gKartMario276[]; -// extern u8 gKartMario277[]; -// extern u8 gKartMario278[]; -// extern u8 gKartMario279[]; -// extern u8 gKartMario280[]; -// extern u8 gKartMario281[]; -// extern u8 gKartMario282[]; -// extern u8 gKartMario283[]; -// extern u8 gKartMario284[]; -// extern u8 gKartMario285[]; -// extern u8 gKartMario286[]; -// extern u8 gKartMario287[]; -// extern u8 gKartMario288[]; -// extern u8 gKartMario289[]; -// extern u8 gKartMario290[]; -// extern u8 gKartMario291[]; -// extern u8 gKartMario292[]; -// extern u8 gKartMario293[]; -// extern u8 gKartMario294[]; -// extern u8 gKartMario295[]; -// extern u8 gKartMario296[]; -// extern u8 gKartMario297[]; -// extern u8 gKartMario298[]; -// extern u8 gKartMario299[]; -// extern u8 gKartMario300[]; -// extern u8 gKartMario301[]; -// extern u8 gKartMario302[]; -// extern u8 gKartMario303[]; -// extern u8 gKartMario304[]; -// extern u8 gKartMario305[]; -// extern u8 gKartMario306[]; -// extern u8 gKartMario307[]; -// extern u8 gKartMario308[]; -// extern u8 gKartMario309[]; -// extern u8 gKartMario310[]; -// extern u8 gKartMario311[]; -// extern u8 gKartMario312[]; -// extern u8 gKartMario313[]; -// extern u8 gKartMario314[]; -// extern u8 gKartMario315[]; -// extern u8 gKartMario316[]; -// extern u8 gKartMario317[]; -// extern u8 gKartMario318[]; -// extern u8 gKartMario319[]; -// extern u8 gKartMario320[]; - -// extern u8 gKartLuigi000[]; -// extern u8 gKartLuigi001[]; -// extern u8 gKartLuigi002[]; -// extern u8 gKartLuigi003[]; -// extern u8 gKartLuigi004[]; -// extern u8 gKartLuigi005[]; -// extern u8 gKartLuigi006[]; -// extern u8 gKartLuigi007[]; -// extern u8 gKartLuigi008[]; -// extern u8 gKartLuigi009[]; -// extern u8 gKartLuigi010[]; -// extern u8 gKartLuigi011[]; -// extern u8 gKartLuigi012[]; -// extern u8 gKartLuigi013[]; -// extern u8 gKartLuigi014[]; -// extern u8 gKartLuigi015[]; -// extern u8 gKartLuigi016[]; -// extern u8 gKartLuigi017[]; -// extern u8 gKartLuigi018[]; -// extern u8 gKartLuigi019[]; -// extern u8 gKartLuigi020[]; -// extern u8 gKartLuigi021[]; -// extern u8 gKartLuigi022[]; -// extern u8 gKartLuigi023[]; -// extern u8 gKartLuigi024[]; -// extern u8 gKartLuigi025[]; -// extern u8 gKartLuigi026[]; -// extern u8 gKartLuigi027[]; -// extern u8 gKartLuigi028[]; -// extern u8 gKartLuigi029[]; -// extern u8 gKartLuigi030[]; -// extern u8 gKartLuigi031[]; -// extern u8 gKartLuigi032[]; -// extern u8 gKartLuigi033[]; -// extern u8 gKartLuigi034[]; -// extern u8 gKartLuigi035[]; -// extern u8 gKartLuigi036[]; -// extern u8 gKartLuigi037[]; -// extern u8 gKartLuigi038[]; -// extern u8 gKartLuigi039[]; -// extern u8 gKartLuigi040[]; -// extern u8 gKartLuigi041[]; -// extern u8 gKartLuigi042[]; -// extern u8 gKartLuigi043[]; -// extern u8 gKartLuigi044[]; -// extern u8 gKartLuigi045[]; -// extern u8 gKartLuigi046[]; -// extern u8 gKartLuigi047[]; -// extern u8 gKartLuigi048[]; -// extern u8 gKartLuigi049[]; -// extern u8 gKartLuigi050[]; -// extern u8 gKartLuigi051[]; -// extern u8 gKartLuigi052[]; -// extern u8 gKartLuigi053[]; -// extern u8 gKartLuigi054[]; -// extern u8 gKartLuigi055[]; -// extern u8 gKartLuigi056[]; -// extern u8 gKartLuigi057[]; -// extern u8 gKartLuigi058[]; -// extern u8 gKartLuigi059[]; -// extern u8 gKartLuigi060[]; -// extern u8 gKartLuigi061[]; -// extern u8 gKartLuigi062[]; -// extern u8 gKartLuigi063[]; -// extern u8 gKartLuigi064[]; -// extern u8 gKartLuigi065[]; -// extern u8 gKartLuigi066[]; -// extern u8 gKartLuigi067[]; -// extern u8 gKartLuigi068[]; -// extern u8 gKartLuigi069[]; -// extern u8 gKartLuigi070[]; -// extern u8 gKartLuigi071[]; -// extern u8 gKartLuigi072[]; -// extern u8 gKartLuigi073[]; -// extern u8 gKartLuigi074[]; -// extern u8 gKartLuigi075[]; -// extern u8 gKartLuigi076[]; -// extern u8 gKartLuigi077[]; -// extern u8 gKartLuigi078[]; -// extern u8 gKartLuigi079[]; -// extern u8 gKartLuigi080[]; -// extern u8 gKartLuigi081[]; -// extern u8 gKartLuigi082[]; -// extern u8 gKartLuigi083[]; -// extern u8 gKartLuigi084[]; -// extern u8 gKartLuigi085[]; -// extern u8 gKartLuigi086[]; -// extern u8 gKartLuigi087[]; -// extern u8 gKartLuigi088[]; -// extern u8 gKartLuigi089[]; -// extern u8 gKartLuigi090[]; -// extern u8 gKartLuigi091[]; -// extern u8 gKartLuigi092[]; -// extern u8 gKartLuigi093[]; -// extern u8 gKartLuigi094[]; -// extern u8 gKartLuigi095[]; -// extern u8 gKartLuigi096[]; -// extern u8 gKartLuigi097[]; -// extern u8 gKartLuigi098[]; -// extern u8 gKartLuigi099[]; -// extern u8 gKartLuigi100[]; -// extern u8 gKartLuigi101[]; -// extern u8 gKartLuigi102[]; -// extern u8 gKartLuigi103[]; -// extern u8 gKartLuigi104[]; -// extern u8 gKartLuigi105[]; -// extern u8 gKartLuigi106[]; -// extern u8 gKartLuigi107[]; -// extern u8 gKartLuigi108[]; -// extern u8 gKartLuigi109[]; -// extern u8 gKartLuigi110[]; -// extern u8 gKartLuigi111[]; -// extern u8 gKartLuigi112[]; -// extern u8 gKartLuigi113[]; -// extern u8 gKartLuigi114[]; -// extern u8 gKartLuigi115[]; -// extern u8 gKartLuigi116[]; -// extern u8 gKartLuigi117[]; -// extern u8 gKartLuigi118[]; -// extern u8 gKartLuigi119[]; -// extern u8 gKartLuigi120[]; -// extern u8 gKartLuigi121[]; -// extern u8 gKartLuigi122[]; -// extern u8 gKartLuigi123[]; -// extern u8 gKartLuigi124[]; -// extern u8 gKartLuigi125[]; -// extern u8 gKartLuigi126[]; -// extern u8 gKartLuigi127[]; -// extern u8 gKartLuigi128[]; -// extern u8 gKartLuigi129[]; -// extern u8 gKartLuigi130[]; -// extern u8 gKartLuigi131[]; -// extern u8 gKartLuigi132[]; -// extern u8 gKartLuigi133[]; -// extern u8 gKartLuigi134[]; -// extern u8 gKartLuigi135[]; -// extern u8 gKartLuigi136[]; -// extern u8 gKartLuigi137[]; -// extern u8 gKartLuigi138[]; -// extern u8 gKartLuigi139[]; -// extern u8 gKartLuigi140[]; -// extern u8 gKartLuigi141[]; -// extern u8 gKartLuigi142[]; -// extern u8 gKartLuigi143[]; -// extern u8 gKartLuigi144[]; -// extern u8 gKartLuigi145[]; -// extern u8 gKartLuigi146[]; -// extern u8 gKartLuigi147[]; -// extern u8 gKartLuigi148[]; -// extern u8 gKartLuigi149[]; -// extern u8 gKartLuigi150[]; -// extern u8 gKartLuigi151[]; -// extern u8 gKartLuigi152[]; -// extern u8 gKartLuigi153[]; -// extern u8 gKartLuigi154[]; -// extern u8 gKartLuigi155[]; -// extern u8 gKartLuigi156[]; -// extern u8 gKartLuigi157[]; -// extern u8 gKartLuigi158[]; -// extern u8 gKartLuigi159[]; -// extern u8 gKartLuigi160[]; -// extern u8 gKartLuigi161[]; -// extern u8 gKartLuigi162[]; -// extern u8 gKartLuigi163[]; -// extern u8 gKartLuigi164[]; -// extern u8 gKartLuigi165[]; -// extern u8 gKartLuigi166[]; -// extern u8 gKartLuigi167[]; -// extern u8 gKartLuigi168[]; -// extern u8 gKartLuigi169[]; -// extern u8 gKartLuigi170[]; -// extern u8 gKartLuigi171[]; -// extern u8 gKartLuigi172[]; -// extern u8 gKartLuigi173[]; -// extern u8 gKartLuigi174[]; -// extern u8 gKartLuigi175[]; -// extern u8 gKartLuigi176[]; -// extern u8 gKartLuigi177[]; -// extern u8 gKartLuigi178[]; -// extern u8 gKartLuigi179[]; -// extern u8 gKartLuigi180[]; -// extern u8 gKartLuigi181[]; -// extern u8 gKartLuigi182[]; -// extern u8 gKartLuigi183[]; -// extern u8 gKartLuigi184[]; -// extern u8 gKartLuigi185[]; -// extern u8 gKartLuigi186[]; -// extern u8 gKartLuigi187[]; -// extern u8 gKartLuigi188[]; -// extern u8 gKartLuigi189[]; -// extern u8 gKartLuigi190[]; -// extern u8 gKartLuigi191[]; -// extern u8 gKartLuigi192[]; -// extern u8 gKartLuigi193[]; -// extern u8 gKartLuigi194[]; -// extern u8 gKartLuigi195[]; -// extern u8 gKartLuigi196[]; -// extern u8 gKartLuigi197[]; -// extern u8 gKartLuigi198[]; -// extern u8 gKartLuigi199[]; -// extern u8 gKartLuigi200[]; -// extern u8 gKartLuigi201[]; -// extern u8 gKartLuigi202[]; -// extern u8 gKartLuigi203[]; -// extern u8 gKartLuigi204[]; -// extern u8 gKartLuigi205[]; -// extern u8 gKartLuigi206[]; -// extern u8 gKartLuigi207[]; -// extern u8 gKartLuigi208[]; -// extern u8 gKartLuigi209[]; -// extern u8 gKartLuigi210[]; -// extern u8 gKartLuigi211[]; -// extern u8 gKartLuigi212[]; -// extern u8 gKartLuigi213[]; -// extern u8 gKartLuigi214[]; -// extern u8 gKartLuigi215[]; -// extern u8 gKartLuigi216[]; -// extern u8 gKartLuigi217[]; -// extern u8 gKartLuigi218[]; -// extern u8 gKartLuigi219[]; -// extern u8 gKartLuigi220[]; -// extern u8 gKartLuigi221[]; -// extern u8 gKartLuigi222[]; -// extern u8 gKartLuigi223[]; -// extern u8 gKartLuigi224[]; -// extern u8 gKartLuigi225[]; -// extern u8 gKartLuigi226[]; -// extern u8 gKartLuigi227[]; -// extern u8 gKartLuigi228[]; -// extern u8 gKartLuigi229[]; -// extern u8 gKartLuigi230[]; -// extern u8 gKartLuigi231[]; -// extern u8 gKartLuigi232[]; -// extern u8 gKartLuigi233[]; -// extern u8 gKartLuigi234[]; -// extern u8 gKartLuigi235[]; -// extern u8 gKartLuigi236[]; -// extern u8 gKartLuigi237[]; -// extern u8 gKartLuigi238[]; -// extern u8 gKartLuigi239[]; -// extern u8 gKartLuigi240[]; -// extern u8 gKartLuigi241[]; -// extern u8 gKartLuigi242[]; -// extern u8 gKartLuigi243[]; -// extern u8 gKartLuigi244[]; -// extern u8 gKartLuigi245[]; -// extern u8 gKartLuigi246[]; -// extern u8 gKartLuigi247[]; -// extern u8 gKartLuigi248[]; -// extern u8 gKartLuigi249[]; -// extern u8 gKartLuigi250[]; -// extern u8 gKartLuigi251[]; -// extern u8 gKartLuigi252[]; -// extern u8 gKartLuigi253[]; -// extern u8 gKartLuigi254[]; -// extern u8 gKartLuigi255[]; -// extern u8 gKartLuigi256[]; -// extern u8 gKartLuigi257[]; -// extern u8 gKartLuigi258[]; -// extern u8 gKartLuigi259[]; -// extern u8 gKartLuigi260[]; -// extern u8 gKartLuigi261[]; -// extern u8 gKartLuigi262[]; -// extern u8 gKartLuigi263[]; -// extern u8 gKartLuigi264[]; -// extern u8 gKartLuigi265[]; -// extern u8 gKartLuigi266[]; -// extern u8 gKartLuigi267[]; -// extern u8 gKartLuigi268[]; -// extern u8 gKartLuigi269[]; -// extern u8 gKartLuigi270[]; -// extern u8 gKartLuigi271[]; -// extern u8 gKartLuigi272[]; -// extern u8 gKartLuigi273[]; -// extern u8 gKartLuigi274[]; -// extern u8 gKartLuigi275[]; -// extern u8 gKartLuigi276[]; -// extern u8 gKartLuigi277[]; -// extern u8 gKartLuigi278[]; -// extern u8 gKartLuigi279[]; -// extern u8 gKartLuigi280[]; -// extern u8 gKartLuigi281[]; -// extern u8 gKartLuigi282[]; -// extern u8 gKartLuigi283[]; -// extern u8 gKartLuigi284[]; -// extern u8 gKartLuigi285[]; -// extern u8 gKartLuigi286[]; -// extern u8 gKartLuigi287[]; -// extern u8 gKartLuigi288[]; -// extern u8 gKartLuigi289[]; -// extern u8 gKartLuigi290[]; -// extern u8 gKartLuigi291[]; -// extern u8 gKartLuigi292[]; -// extern u8 gKartLuigi293[]; -// extern u8 gKartLuigi294[]; -// extern u8 gKartLuigi295[]; -// extern u8 gKartLuigi296[]; -// extern u8 gKartLuigi297[]; -// extern u8 gKartLuigi298[]; -// extern u8 gKartLuigi299[]; -// extern u8 gKartLuigi300[]; -// extern u8 gKartLuigi301[]; -// extern u8 gKartLuigi302[]; -// extern u8 gKartLuigi303[]; -// extern u8 gKartLuigi304[]; -// extern u8 gKartLuigi305[]; -// extern u8 gKartLuigi306[]; -// extern u8 gKartLuigi307[]; -// extern u8 gKartLuigi308[]; -// extern u8 gKartLuigi309[]; -// extern u8 gKartLuigi310[]; -// extern u8 gKartLuigi311[]; -// extern u8 gKartLuigi312[]; -// extern u8 gKartLuigi313[]; -// extern u8 gKartLuigi314[]; -// extern u8 gKartLuigi315[]; -// extern u8 gKartLuigi316[]; -// extern u8 gKartLuigi317[]; -// extern u8 gKartLuigi318[]; -// extern u8 gKartLuigi319[]; -// extern u8 gKartLuigi320[]; - -// extern u8 gKartToad000[]; -// extern u8 gKartToad001[]; -// extern u8 gKartToad002[]; -// extern u8 gKartToad003[]; -// extern u8 gKartToad004[]; -// extern u8 gKartToad005[]; -// extern u8 gKartToad006[]; -// extern u8 gKartToad007[]; -// extern u8 gKartToad008[]; -// extern u8 gKartToad009[]; -// extern u8 gKartToad010[]; -// extern u8 gKartToad011[]; -// extern u8 gKartToad012[]; -// extern u8 gKartToad013[]; -// extern u8 gKartToad014[]; -// extern u8 gKartToad015[]; -// extern u8 gKartToad016[]; -// extern u8 gKartToad017[]; -// extern u8 gKartToad018[]; -// extern u8 gKartToad019[]; -// extern u8 gKartToad020[]; -// extern u8 gKartToad021[]; -// extern u8 gKartToad022[]; -// extern u8 gKartToad023[]; -// extern u8 gKartToad024[]; -// extern u8 gKartToad025[]; -// extern u8 gKartToad026[]; -// extern u8 gKartToad027[]; -// extern u8 gKartToad028[]; -// extern u8 gKartToad029[]; -// extern u8 gKartToad030[]; -// extern u8 gKartToad031[]; -// extern u8 gKartToad032[]; -// extern u8 gKartToad033[]; -// extern u8 gKartToad034[]; -// extern u8 gKartToad035[]; -// extern u8 gKartToad036[]; -// extern u8 gKartToad037[]; -// extern u8 gKartToad038[]; -// extern u8 gKartToad039[]; -// extern u8 gKartToad040[]; -// extern u8 gKartToad041[]; -// extern u8 gKartToad042[]; -// extern u8 gKartToad043[]; -// extern u8 gKartToad044[]; -// extern u8 gKartToad045[]; -// extern u8 gKartToad046[]; -// extern u8 gKartToad047[]; -// extern u8 gKartToad048[]; -// extern u8 gKartToad049[]; -// extern u8 gKartToad050[]; -// extern u8 gKartToad051[]; -// extern u8 gKartToad052[]; -// extern u8 gKartToad053[]; -// extern u8 gKartToad054[]; -// extern u8 gKartToad055[]; -// extern u8 gKartToad056[]; -// extern u8 gKartToad057[]; -// extern u8 gKartToad058[]; -// extern u8 gKartToad059[]; -// extern u8 gKartToad060[]; -// extern u8 gKartToad061[]; -// extern u8 gKartToad062[]; -// extern u8 gKartToad063[]; -// extern u8 gKartToad064[]; -// extern u8 gKartToad065[]; -// extern u8 gKartToad066[]; -// extern u8 gKartToad067[]; -// extern u8 gKartToad068[]; -// extern u8 gKartToad069[]; -// extern u8 gKartToad070[]; -// extern u8 gKartToad071[]; -// extern u8 gKartToad072[]; -// extern u8 gKartToad073[]; -// extern u8 gKartToad074[]; -// extern u8 gKartToad075[]; -// extern u8 gKartToad076[]; -// extern u8 gKartToad077[]; -// extern u8 gKartToad078[]; -// extern u8 gKartToad079[]; -// extern u8 gKartToad080[]; -// extern u8 gKartToad081[]; -// extern u8 gKartToad082[]; -// extern u8 gKartToad083[]; -// extern u8 gKartToad084[]; -// extern u8 gKartToad085[]; -// extern u8 gKartToad086[]; -// extern u8 gKartToad087[]; -// extern u8 gKartToad088[]; -// extern u8 gKartToad089[]; -// extern u8 gKartToad090[]; -// extern u8 gKartToad091[]; -// extern u8 gKartToad092[]; -// extern u8 gKartToad093[]; -// extern u8 gKartToad094[]; -// extern u8 gKartToad095[]; -// extern u8 gKartToad096[]; -// extern u8 gKartToad097[]; -// extern u8 gKartToad098[]; -// extern u8 gKartToad099[]; -// extern u8 gKartToad100[]; -// extern u8 gKartToad101[]; -// extern u8 gKartToad102[]; -// extern u8 gKartToad103[]; -// extern u8 gKartToad104[]; -// extern u8 gKartToad105[]; -// extern u8 gKartToad106[]; -// extern u8 gKartToad107[]; -// extern u8 gKartToad108[]; -// extern u8 gKartToad109[]; -// extern u8 gKartToad110[]; -// extern u8 gKartToad111[]; -// extern u8 gKartToad112[]; -// extern u8 gKartToad113[]; -// extern u8 gKartToad114[]; -// extern u8 gKartToad115[]; -// extern u8 gKartToad116[]; -// extern u8 gKartToad117[]; -// extern u8 gKartToad118[]; -// extern u8 gKartToad119[]; -// extern u8 gKartToad120[]; -// extern u8 gKartToad121[]; -// extern u8 gKartToad122[]; -// extern u8 gKartToad123[]; -// extern u8 gKartToad124[]; -// extern u8 gKartToad125[]; -// extern u8 gKartToad126[]; -// extern u8 gKartToad127[]; -// extern u8 gKartToad128[]; -// extern u8 gKartToad129[]; -// extern u8 gKartToad130[]; -// extern u8 gKartToad131[]; -// extern u8 gKartToad132[]; -// extern u8 gKartToad133[]; -// extern u8 gKartToad134[]; -// extern u8 gKartToad135[]; -// extern u8 gKartToad136[]; -// extern u8 gKartToad137[]; -// extern u8 gKartToad138[]; -// extern u8 gKartToad139[]; -// extern u8 gKartToad140[]; -// extern u8 gKartToad141[]; -// extern u8 gKartToad142[]; -// extern u8 gKartToad143[]; -// extern u8 gKartToad144[]; -// extern u8 gKartToad145[]; -// extern u8 gKartToad146[]; -// extern u8 gKartToad147[]; -// extern u8 gKartToad148[]; -// extern u8 gKartToad149[]; -// extern u8 gKartToad150[]; -// extern u8 gKartToad151[]; -// extern u8 gKartToad152[]; -// extern u8 gKartToad153[]; -// extern u8 gKartToad154[]; -// extern u8 gKartToad155[]; -// extern u8 gKartToad156[]; -// extern u8 gKartToad157[]; -// extern u8 gKartToad158[]; -// extern u8 gKartToad159[]; -// extern u8 gKartToad160[]; -// extern u8 gKartToad161[]; -// extern u8 gKartToad162[]; -// extern u8 gKartToad163[]; -// extern u8 gKartToad164[]; -// extern u8 gKartToad165[]; -// extern u8 gKartToad166[]; -// extern u8 gKartToad167[]; -// extern u8 gKartToad168[]; -// extern u8 gKartToad169[]; -// extern u8 gKartToad170[]; -// extern u8 gKartToad171[]; -// extern u8 gKartToad172[]; -// extern u8 gKartToad173[]; -// extern u8 gKartToad174[]; -// extern u8 gKartToad175[]; -// extern u8 gKartToad176[]; -// extern u8 gKartToad177[]; -// extern u8 gKartToad178[]; -// extern u8 gKartToad179[]; -// extern u8 gKartToad180[]; -// extern u8 gKartToad181[]; -// extern u8 gKartToad182[]; -// extern u8 gKartToad183[]; -// extern u8 gKartToad184[]; -// extern u8 gKartToad185[]; -// extern u8 gKartToad186[]; -// extern u8 gKartToad187[]; -// extern u8 gKartToad188[]; -// extern u8 gKartToad189[]; -// extern u8 gKartToad190[]; -// extern u8 gKartToad191[]; -// extern u8 gKartToad192[]; -// extern u8 gKartToad193[]; -// extern u8 gKartToad194[]; -// extern u8 gKartToad195[]; -// extern u8 gKartToad196[]; -// extern u8 gKartToad197[]; -// extern u8 gKartToad198[]; -// extern u8 gKartToad199[]; -// extern u8 gKartToad200[]; -// extern u8 gKartToad201[]; -// extern u8 gKartToad202[]; -// extern u8 gKartToad203[]; -// extern u8 gKartToad204[]; -// extern u8 gKartToad205[]; -// extern u8 gKartToad206[]; -// extern u8 gKartToad207[]; -// extern u8 gKartToad208[]; -// extern u8 gKartToad209[]; -// extern u8 gKartToad210[]; -// extern u8 gKartToad211[]; -// extern u8 gKartToad212[]; -// extern u8 gKartToad213[]; -// extern u8 gKartToad214[]; -// extern u8 gKartToad215[]; -// extern u8 gKartToad216[]; -// extern u8 gKartToad217[]; -// extern u8 gKartToad218[]; -// extern u8 gKartToad219[]; -// extern u8 gKartToad220[]; -// extern u8 gKartToad221[]; -// extern u8 gKartToad222[]; -// extern u8 gKartToad223[]; -// extern u8 gKartToad224[]; -// extern u8 gKartToad225[]; -// extern u8 gKartToad226[]; -// extern u8 gKartToad227[]; -// extern u8 gKartToad228[]; -// extern u8 gKartToad229[]; -// extern u8 gKartToad230[]; -// extern u8 gKartToad231[]; -// extern u8 gKartToad232[]; -// extern u8 gKartToad233[]; -// extern u8 gKartToad234[]; -// extern u8 gKartToad235[]; -// extern u8 gKartToad236[]; -// extern u8 gKartToad237[]; -// extern u8 gKartToad238[]; -// extern u8 gKartToad239[]; -// extern u8 gKartToad240[]; -// extern u8 gKartToad241[]; -// extern u8 gKartToad242[]; -// extern u8 gKartToad243[]; -// extern u8 gKartToad244[]; -// extern u8 gKartToad245[]; -// extern u8 gKartToad246[]; -// extern u8 gKartToad247[]; -// extern u8 gKartToad248[]; -// extern u8 gKartToad249[]; -// extern u8 gKartToad250[]; -// extern u8 gKartToad251[]; -// extern u8 gKartToad252[]; -// extern u8 gKartToad253[]; -// extern u8 gKartToad254[]; -// extern u8 gKartToad255[]; -// extern u8 gKartToad256[]; -// extern u8 gKartToad257[]; -// extern u8 gKartToad258[]; -// extern u8 gKartToad259[]; -// extern u8 gKartToad260[]; -// extern u8 gKartToad261[]; -// extern u8 gKartToad262[]; -// extern u8 gKartToad263[]; -// extern u8 gKartToad264[]; -// extern u8 gKartToad265[]; -// extern u8 gKartToad266[]; -// extern u8 gKartToad267[]; -// extern u8 gKartToad268[]; -// extern u8 gKartToad269[]; -// extern u8 gKartToad270[]; -// extern u8 gKartToad271[]; -// extern u8 gKartToad272[]; -// extern u8 gKartToad273[]; -// extern u8 gKartToad274[]; -// extern u8 gKartToad275[]; -// extern u8 gKartToad276[]; -// extern u8 gKartToad277[]; -// extern u8 gKartToad278[]; -// extern u8 gKartToad279[]; -// extern u8 gKartToad280[]; -// extern u8 gKartToad281[]; -// extern u8 gKartToad282[]; -// extern u8 gKartToad283[]; -// extern u8 gKartToad284[]; -// extern u8 gKartToad285[]; -// extern u8 gKartToad286[]; -// extern u8 gKartToad287[]; -// extern u8 gKartToad288[]; -// extern u8 gKartToad289[]; -// extern u8 gKartToad290[]; -// extern u8 gKartToad291[]; -// extern u8 gKartToad292[]; -// extern u8 gKartToad293[]; -// extern u8 gKartToad294[]; -// extern u8 gKartToad295[]; -// extern u8 gKartToad296[]; -// extern u8 gKartToad297[]; -// extern u8 gKartToad298[]; -// extern u8 gKartToad299[]; -// extern u8 gKartToad300[]; -// extern u8 gKartToad301[]; -// extern u8 gKartToad302[]; -// extern u8 gKartToad303[]; -// extern u8 gKartToad304[]; -// extern u8 gKartToad305[]; -// extern u8 gKartToad306[]; -// extern u8 gKartToad307[]; -// extern u8 gKartToad308[]; -// extern u8 gKartToad309[]; -// extern u8 gKartToad310[]; -// extern u8 gKartToad311[]; -// extern u8 gKartToad312[]; -// extern u8 gKartToad313[]; -// extern u8 gKartToad314[]; -// extern u8 gKartToad315[]; -// extern u8 gKartToad316[]; -// extern u8 gKartToad317[]; -// extern u8 gKartToad318[]; -// extern u8 gKartToad319[]; -// extern u8 gKartToad320[]; - -// extern u8 gKartPeach000[]; -// extern u8 gKartPeach001[]; -// extern u8 gKartPeach002[]; -// extern u8 gKartPeach003[]; -// extern u8 gKartPeach004[]; -// extern u8 gKartPeach005[]; -// extern u8 gKartPeach006[]; -// extern u8 gKartPeach007[]; -// extern u8 gKartPeach008[]; -// extern u8 gKartPeach009[]; -// extern u8 gKartPeach010[]; -// extern u8 gKartPeach011[]; -// extern u8 gKartPeach012[]; -// extern u8 gKartPeach013[]; -// extern u8 gKartPeach014[]; -// extern u8 gKartPeach015[]; -// extern u8 gKartPeach016[]; -// extern u8 gKartPeach017[]; -// extern u8 gKartPeach018[]; -// extern u8 gKartPeach019[]; -// extern u8 gKartPeach020[]; -// extern u8 gKartPeach021[]; -// extern u8 gKartPeach022[]; -// extern u8 gKartPeach023[]; -// extern u8 gKartPeach024[]; -// extern u8 gKartPeach025[]; -// extern u8 gKartPeach026[]; -// extern u8 gKartPeach027[]; -// extern u8 gKartPeach028[]; -// extern u8 gKartPeach029[]; -// extern u8 gKartPeach030[]; -// extern u8 gKartPeach031[]; -// extern u8 gKartPeach032[]; -// extern u8 gKartPeach033[]; -// extern u8 gKartPeach034[]; -// extern u8 gKartPeach035[]; -// extern u8 gKartPeach036[]; -// extern u8 gKartPeach037[]; -// extern u8 gKartPeach038[]; -// extern u8 gKartPeach039[]; -// extern u8 gKartPeach040[]; -// extern u8 gKartPeach041[]; -// extern u8 gKartPeach042[]; -// extern u8 gKartPeach043[]; -// extern u8 gKartPeach044[]; -// extern u8 gKartPeach045[]; -// extern u8 gKartPeach046[]; -// extern u8 gKartPeach047[]; -// extern u8 gKartPeach048[]; -// extern u8 gKartPeach049[]; -// extern u8 gKartPeach050[]; -// extern u8 gKartPeach051[]; -// extern u8 gKartPeach052[]; -// extern u8 gKartPeach053[]; -// extern u8 gKartPeach054[]; -// extern u8 gKartPeach055[]; -// extern u8 gKartPeach056[]; -// extern u8 gKartPeach057[]; -// extern u8 gKartPeach058[]; -// extern u8 gKartPeach059[]; -// extern u8 gKartPeach060[]; -// extern u8 gKartPeach061[]; -// extern u8 gKartPeach062[]; -// extern u8 gKartPeach063[]; -// extern u8 gKartPeach064[]; -// extern u8 gKartPeach065[]; -// extern u8 gKartPeach066[]; -// extern u8 gKartPeach067[]; -// extern u8 gKartPeach068[]; -// extern u8 gKartPeach069[]; -// extern u8 gKartPeach070[]; -// extern u8 gKartPeach071[]; -// extern u8 gKartPeach072[]; -// extern u8 gKartPeach073[]; -// extern u8 gKartPeach074[]; -// extern u8 gKartPeach075[]; -// extern u8 gKartPeach076[]; -// extern u8 gKartPeach077[]; -// extern u8 gKartPeach078[]; -// extern u8 gKartPeach079[]; -// extern u8 gKartPeach080[]; -// extern u8 gKartPeach081[]; -// extern u8 gKartPeach082[]; -// extern u8 gKartPeach083[]; -// extern u8 gKartPeach084[]; -// extern u8 gKartPeach085[]; -// extern u8 gKartPeach086[]; -// extern u8 gKartPeach087[]; -// extern u8 gKartPeach088[]; -// extern u8 gKartPeach089[]; -// extern u8 gKartPeach090[]; -// extern u8 gKartPeach091[]; -// extern u8 gKartPeach092[]; -// extern u8 gKartPeach093[]; -// extern u8 gKartPeach094[]; -// extern u8 gKartPeach095[]; -// extern u8 gKartPeach096[]; -// extern u8 gKartPeach097[]; -// extern u8 gKartPeach098[]; -// extern u8 gKartPeach099[]; -// extern u8 gKartPeach100[]; -// extern u8 gKartPeach101[]; -// extern u8 gKartPeach102[]; -// extern u8 gKartPeach103[]; -// extern u8 gKartPeach104[]; -// extern u8 gKartPeach105[]; -// extern u8 gKartPeach106[]; -// extern u8 gKartPeach107[]; -// extern u8 gKartPeach108[]; -// extern u8 gKartPeach109[]; -// extern u8 gKartPeach110[]; -// extern u8 gKartPeach111[]; -// extern u8 gKartPeach112[]; -// extern u8 gKartPeach113[]; -// extern u8 gKartPeach114[]; -// extern u8 gKartPeach115[]; -// extern u8 gKartPeach116[]; -// extern u8 gKartPeach117[]; -// extern u8 gKartPeach118[]; -// extern u8 gKartPeach119[]; -// extern u8 gKartPeach120[]; -// extern u8 gKartPeach121[]; -// extern u8 gKartPeach122[]; -// extern u8 gKartPeach123[]; -// extern u8 gKartPeach124[]; -// extern u8 gKartPeach125[]; -// extern u8 gKartPeach126[]; -// extern u8 gKartPeach127[]; -// extern u8 gKartPeach128[]; -// extern u8 gKartPeach129[]; -// extern u8 gKartPeach130[]; -// extern u8 gKartPeach131[]; -// extern u8 gKartPeach132[]; -// extern u8 gKartPeach133[]; -// extern u8 gKartPeach134[]; -// extern u8 gKartPeach135[]; -// extern u8 gKartPeach136[]; -// extern u8 gKartPeach137[]; -// extern u8 gKartPeach138[]; -// extern u8 gKartPeach139[]; -// extern u8 gKartPeach140[]; -// extern u8 gKartPeach141[]; -// extern u8 gKartPeach142[]; -// extern u8 gKartPeach143[]; -// extern u8 gKartPeach144[]; -// extern u8 gKartPeach145[]; -// extern u8 gKartPeach146[]; -// extern u8 gKartPeach147[]; -// extern u8 gKartPeach148[]; -// extern u8 gKartPeach149[]; -// extern u8 gKartPeach150[]; -// extern u8 gKartPeach151[]; -// extern u8 gKartPeach152[]; -// extern u8 gKartPeach153[]; -// extern u8 gKartPeach154[]; -// extern u8 gKartPeach155[]; -// extern u8 gKartPeach156[]; -// extern u8 gKartPeach157[]; -// extern u8 gKartPeach158[]; -// extern u8 gKartPeach159[]; -// extern u8 gKartPeach160[]; -// extern u8 gKartPeach161[]; -// extern u8 gKartPeach162[]; -// extern u8 gKartPeach163[]; -// extern u8 gKartPeach164[]; -// extern u8 gKartPeach165[]; -// extern u8 gKartPeach166[]; -// extern u8 gKartPeach167[]; -// extern u8 gKartPeach168[]; -// extern u8 gKartPeach169[]; -// extern u8 gKartPeach170[]; -// extern u8 gKartPeach171[]; -// extern u8 gKartPeach172[]; -// extern u8 gKartPeach173[]; -// extern u8 gKartPeach174[]; -// extern u8 gKartPeach175[]; -// extern u8 gKartPeach176[]; -// extern u8 gKartPeach177[]; -// extern u8 gKartPeach178[]; -// extern u8 gKartPeach179[]; -// extern u8 gKartPeach180[]; -// extern u8 gKartPeach181[]; -// extern u8 gKartPeach182[]; -// extern u8 gKartPeach183[]; -// extern u8 gKartPeach184[]; -// extern u8 gKartPeach185[]; -// extern u8 gKartPeach186[]; -// extern u8 gKartPeach187[]; -// extern u8 gKartPeach188[]; -// extern u8 gKartPeach189[]; -// extern u8 gKartPeach190[]; -// extern u8 gKartPeach191[]; -// extern u8 gKartPeach192[]; -// extern u8 gKartPeach193[]; -// extern u8 gKartPeach194[]; -// extern u8 gKartPeach195[]; -// extern u8 gKartPeach196[]; -// extern u8 gKartPeach197[]; -// extern u8 gKartPeach198[]; -// extern u8 gKartPeach199[]; -// extern u8 gKartPeach200[]; -// extern u8 gKartPeach201[]; -// extern u8 gKartPeach202[]; -// extern u8 gKartPeach203[]; -// extern u8 gKartPeach204[]; -// extern u8 gKartPeach205[]; -// extern u8 gKartPeach206[]; -// extern u8 gKartPeach207[]; -// extern u8 gKartPeach208[]; -// extern u8 gKartPeach209[]; -// extern u8 gKartPeach210[]; -// extern u8 gKartPeach211[]; -// extern u8 gKartPeach212[]; -// extern u8 gKartPeach213[]; -// extern u8 gKartPeach214[]; -// extern u8 gKartPeach215[]; -// extern u8 gKartPeach216[]; -// extern u8 gKartPeach217[]; -// extern u8 gKartPeach218[]; -// extern u8 gKartPeach219[]; -// extern u8 gKartPeach220[]; -// extern u8 gKartPeach221[]; -// extern u8 gKartPeach222[]; -// extern u8 gKartPeach223[]; -// extern u8 gKartPeach224[]; -// extern u8 gKartPeach225[]; -// extern u8 gKartPeach226[]; -// extern u8 gKartPeach227[]; -// extern u8 gKartPeach228[]; -// extern u8 gKartPeach229[]; -// extern u8 gKartPeach230[]; -// extern u8 gKartPeach231[]; -// extern u8 gKartPeach232[]; -// extern u8 gKartPeach233[]; -// extern u8 gKartPeach234[]; -// extern u8 gKartPeach235[]; -// extern u8 gKartPeach236[]; -// extern u8 gKartPeach237[]; -// extern u8 gKartPeach238[]; -// extern u8 gKartPeach239[]; -// extern u8 gKartPeach240[]; -// extern u8 gKartPeach241[]; -// extern u8 gKartPeach242[]; -// extern u8 gKartPeach243[]; -// extern u8 gKartPeach244[]; -// extern u8 gKartPeach245[]; -// extern u8 gKartPeach246[]; -// extern u8 gKartPeach247[]; -// extern u8 gKartPeach248[]; -// extern u8 gKartPeach249[]; -// extern u8 gKartPeach250[]; -// extern u8 gKartPeach251[]; -// extern u8 gKartPeach252[]; -// extern u8 gKartPeach253[]; -// extern u8 gKartPeach254[]; -// extern u8 gKartPeach255[]; -// extern u8 gKartPeach256[]; -// extern u8 gKartPeach257[]; -// extern u8 gKartPeach258[]; -// extern u8 gKartPeach259[]; -// extern u8 gKartPeach260[]; -// extern u8 gKartPeach261[]; -// extern u8 gKartPeach262[]; -// extern u8 gKartPeach263[]; -// extern u8 gKartPeach264[]; -// extern u8 gKartPeach265[]; -// extern u8 gKartPeach266[]; -// extern u8 gKartPeach267[]; -// extern u8 gKartPeach268[]; -// extern u8 gKartPeach269[]; -// extern u8 gKartPeach270[]; -// extern u8 gKartPeach271[]; -// extern u8 gKartPeach272[]; -// extern u8 gKartPeach273[]; -// extern u8 gKartPeach274[]; -// extern u8 gKartPeach275[]; -// extern u8 gKartPeach276[]; -// extern u8 gKartPeach277[]; -// extern u8 gKartPeach278[]; -// extern u8 gKartPeach279[]; -// extern u8 gKartPeach280[]; -// extern u8 gKartPeach281[]; -// extern u8 gKartPeach282[]; -// extern u8 gKartPeach283[]; -// extern u8 gKartPeach284[]; -// extern u8 gKartPeach285[]; -// extern u8 gKartPeach286[]; -// extern u8 gKartPeach287[]; -// extern u8 gKartPeach288[]; -// extern u8 gKartPeach289[]; -// extern u8 gKartPeach290[]; -// extern u8 gKartPeach291[]; -// extern u8 gKartPeach292[]; -// extern u8 gKartPeach293[]; -// extern u8 gKartPeach294[]; -// extern u8 gKartPeach295[]; -// extern u8 gKartPeach296[]; -// extern u8 gKartPeach297[]; -// extern u8 gKartPeach298[]; -// extern u8 gKartPeach299[]; -// extern u8 gKartPeach300[]; -// extern u8 gKartPeach301[]; -// extern u8 gKartPeach302[]; -// extern u8 gKartPeach303[]; -// extern u8 gKartPeach304[]; -// extern u8 gKartPeach305[]; -// extern u8 gKartPeach306[]; -// extern u8 gKartPeach307[]; -// extern u8 gKartPeach308[]; -// extern u8 gKartPeach309[]; -// extern u8 gKartPeach310[]; -// extern u8 gKartPeach311[]; -// extern u8 gKartPeach312[]; -// extern u8 gKartPeach313[]; -// extern u8 gKartPeach314[]; -// extern u8 gKartPeach315[]; -// extern u8 gKartPeach316[]; -// extern u8 gKartPeach317[]; -// extern u8 gKartPeach318[]; -// extern u8 gKartPeach319[]; -// extern u8 gKartPeach320[]; - -// extern u8 gKartYoshi000[]; -// extern u8 gKartYoshi001[]; -// extern u8 gKartYoshi002[]; -// extern u8 gKartYoshi003[]; -// extern u8 gKartYoshi004[]; -// extern u8 gKartYoshi005[]; -// extern u8 gKartYoshi006[]; -// extern u8 gKartYoshi007[]; -// extern u8 gKartYoshi008[]; -// extern u8 gKartYoshi009[]; -// extern u8 gKartYoshi010[]; -// extern u8 gKartYoshi011[]; -// extern u8 gKartYoshi012[]; -// extern u8 gKartYoshi013[]; -// extern u8 gKartYoshi014[]; -// extern u8 gKartYoshi015[]; -// extern u8 gKartYoshi016[]; -// extern u8 gKartYoshi017[]; -// extern u8 gKartYoshi018[]; -// extern u8 gKartYoshi019[]; -// extern u8 gKartYoshi020[]; -// extern u8 gKartYoshi021[]; -// extern u8 gKartYoshi022[]; -// extern u8 gKartYoshi023[]; -// extern u8 gKartYoshi024[]; -// extern u8 gKartYoshi025[]; -// extern u8 gKartYoshi026[]; -// extern u8 gKartYoshi027[]; -// extern u8 gKartYoshi028[]; -// extern u8 gKartYoshi029[]; -// extern u8 gKartYoshi030[]; -// extern u8 gKartYoshi031[]; -// extern u8 gKartYoshi032[]; -// extern u8 gKartYoshi033[]; -// extern u8 gKartYoshi034[]; -// extern u8 gKartYoshi035[]; -// extern u8 gKartYoshi036[]; -// extern u8 gKartYoshi037[]; -// extern u8 gKartYoshi038[]; -// extern u8 gKartYoshi039[]; -// extern u8 gKartYoshi040[]; -// extern u8 gKartYoshi041[]; -// extern u8 gKartYoshi042[]; -// extern u8 gKartYoshi043[]; -// extern u8 gKartYoshi044[]; -// extern u8 gKartYoshi045[]; -// extern u8 gKartYoshi046[]; -// extern u8 gKartYoshi047[]; -// extern u8 gKartYoshi048[]; -// extern u8 gKartYoshi049[]; -// extern u8 gKartYoshi050[]; -// extern u8 gKartYoshi051[]; -// extern u8 gKartYoshi052[]; -// extern u8 gKartYoshi053[]; -// extern u8 gKartYoshi054[]; -// extern u8 gKartYoshi055[]; -// extern u8 gKartYoshi056[]; -// extern u8 gKartYoshi057[]; -// extern u8 gKartYoshi058[]; -// extern u8 gKartYoshi059[]; -// extern u8 gKartYoshi060[]; -// extern u8 gKartYoshi061[]; -// extern u8 gKartYoshi062[]; -// extern u8 gKartYoshi063[]; -// extern u8 gKartYoshi064[]; -// extern u8 gKartYoshi065[]; -// extern u8 gKartYoshi066[]; -// extern u8 gKartYoshi067[]; -// extern u8 gKartYoshi068[]; -// extern u8 gKartYoshi069[]; -// extern u8 gKartYoshi070[]; -// extern u8 gKartYoshi071[]; -// extern u8 gKartYoshi072[]; -// extern u8 gKartYoshi073[]; -// extern u8 gKartYoshi074[]; -// extern u8 gKartYoshi075[]; -// extern u8 gKartYoshi076[]; -// extern u8 gKartYoshi077[]; -// extern u8 gKartYoshi078[]; -// extern u8 gKartYoshi079[]; -// extern u8 gKartYoshi080[]; -// extern u8 gKartYoshi081[]; -// extern u8 gKartYoshi082[]; -// extern u8 gKartYoshi083[]; -// extern u8 gKartYoshi084[]; -// extern u8 gKartYoshi085[]; -// extern u8 gKartYoshi086[]; -// extern u8 gKartYoshi087[]; -// extern u8 gKartYoshi088[]; -// extern u8 gKartYoshi089[]; -// extern u8 gKartYoshi090[]; -// extern u8 gKartYoshi091[]; -// extern u8 gKartYoshi092[]; -// extern u8 gKartYoshi093[]; -// extern u8 gKartYoshi094[]; -// extern u8 gKartYoshi095[]; -// extern u8 gKartYoshi096[]; -// extern u8 gKartYoshi097[]; -// extern u8 gKartYoshi098[]; -// extern u8 gKartYoshi099[]; -// extern u8 gKartYoshi100[]; -// extern u8 gKartYoshi101[]; -// extern u8 gKartYoshi102[]; -// extern u8 gKartYoshi103[]; -// extern u8 gKartYoshi104[]; -// extern u8 gKartYoshi105[]; -// extern u8 gKartYoshi106[]; -// extern u8 gKartYoshi107[]; -// extern u8 gKartYoshi108[]; -// extern u8 gKartYoshi109[]; -// extern u8 gKartYoshi110[]; -// extern u8 gKartYoshi111[]; -// extern u8 gKartYoshi112[]; -// extern u8 gKartYoshi113[]; -// extern u8 gKartYoshi114[]; -// extern u8 gKartYoshi115[]; -// extern u8 gKartYoshi116[]; -// extern u8 gKartYoshi117[]; -// extern u8 gKartYoshi118[]; -// extern u8 gKartYoshi119[]; -// extern u8 gKartYoshi120[]; -// extern u8 gKartYoshi121[]; -// extern u8 gKartYoshi122[]; -// extern u8 gKartYoshi123[]; -// extern u8 gKartYoshi124[]; -// extern u8 gKartYoshi125[]; -// extern u8 gKartYoshi126[]; -// extern u8 gKartYoshi127[]; -// extern u8 gKartYoshi128[]; -// extern u8 gKartYoshi129[]; -// extern u8 gKartYoshi130[]; -// extern u8 gKartYoshi131[]; -// extern u8 gKartYoshi132[]; -// extern u8 gKartYoshi133[]; -// extern u8 gKartYoshi134[]; -// extern u8 gKartYoshi135[]; -// extern u8 gKartYoshi136[]; -// extern u8 gKartYoshi137[]; -// extern u8 gKartYoshi138[]; -// extern u8 gKartYoshi139[]; -// extern u8 gKartYoshi140[]; -// extern u8 gKartYoshi141[]; -// extern u8 gKartYoshi142[]; -// extern u8 gKartYoshi143[]; -// extern u8 gKartYoshi144[]; -// extern u8 gKartYoshi145[]; -// extern u8 gKartYoshi146[]; -// extern u8 gKartYoshi147[]; -// extern u8 gKartYoshi148[]; -// extern u8 gKartYoshi149[]; -// extern u8 gKartYoshi150[]; -// extern u8 gKartYoshi151[]; -// extern u8 gKartYoshi152[]; -// extern u8 gKartYoshi153[]; -// extern u8 gKartYoshi154[]; -// extern u8 gKartYoshi155[]; -// extern u8 gKartYoshi156[]; -// extern u8 gKartYoshi157[]; -// extern u8 gKartYoshi158[]; -// extern u8 gKartYoshi159[]; -// extern u8 gKartYoshi160[]; -// extern u8 gKartYoshi161[]; -// extern u8 gKartYoshi162[]; -// extern u8 gKartYoshi163[]; -// extern u8 gKartYoshi164[]; -// extern u8 gKartYoshi165[]; -// extern u8 gKartYoshi166[]; -// extern u8 gKartYoshi167[]; -// extern u8 gKartYoshi168[]; -// extern u8 gKartYoshi169[]; -// extern u8 gKartYoshi170[]; -// extern u8 gKartYoshi171[]; -// extern u8 gKartYoshi172[]; -// extern u8 gKartYoshi173[]; -// extern u8 gKartYoshi174[]; -// extern u8 gKartYoshi175[]; -// extern u8 gKartYoshi176[]; -// extern u8 gKartYoshi177[]; -// extern u8 gKartYoshi178[]; -// extern u8 gKartYoshi179[]; -// extern u8 gKartYoshi180[]; -// extern u8 gKartYoshi181[]; -// extern u8 gKartYoshi182[]; -// extern u8 gKartYoshi183[]; -// extern u8 gKartYoshi184[]; -// extern u8 gKartYoshi185[]; -// extern u8 gKartYoshi186[]; -// extern u8 gKartYoshi187[]; -// extern u8 gKartYoshi188[]; -// extern u8 gKartYoshi189[]; -// extern u8 gKartYoshi190[]; -// extern u8 gKartYoshi191[]; -// extern u8 gKartYoshi192[]; -// extern u8 gKartYoshi193[]; -// extern u8 gKartYoshi194[]; -// extern u8 gKartYoshi195[]; -// extern u8 gKartYoshi196[]; -// extern u8 gKartYoshi197[]; -// extern u8 gKartYoshi198[]; -// extern u8 gKartYoshi199[]; -// extern u8 gKartYoshi200[]; -// extern u8 gKartYoshi201[]; -// extern u8 gKartYoshi202[]; -// extern u8 gKartYoshi203[]; -// extern u8 gKartYoshi204[]; -// extern u8 gKartYoshi205[]; -// extern u8 gKartYoshi206[]; -// extern u8 gKartYoshi207[]; -// extern u8 gKartYoshi208[]; -// extern u8 gKartYoshi209[]; -// extern u8 gKartYoshi210[]; -// extern u8 gKartYoshi211[]; -// extern u8 gKartYoshi212[]; -// extern u8 gKartYoshi213[]; -// extern u8 gKartYoshi214[]; -// extern u8 gKartYoshi215[]; -// extern u8 gKartYoshi216[]; -// extern u8 gKartYoshi217[]; -// extern u8 gKartYoshi218[]; -// extern u8 gKartYoshi219[]; -// extern u8 gKartYoshi220[]; -// extern u8 gKartYoshi221[]; -// extern u8 gKartYoshi222[]; -// extern u8 gKartYoshi223[]; -// extern u8 gKartYoshi224[]; -// extern u8 gKartYoshi225[]; -// extern u8 gKartYoshi226[]; -// extern u8 gKartYoshi227[]; -// extern u8 gKartYoshi228[]; -// extern u8 gKartYoshi229[]; -// extern u8 gKartYoshi230[]; -// extern u8 gKartYoshi231[]; -// extern u8 gKartYoshi232[]; -// extern u8 gKartYoshi233[]; -// extern u8 gKartYoshi234[]; -// extern u8 gKartYoshi235[]; -// extern u8 gKartYoshi236[]; -// extern u8 gKartYoshi237[]; -// extern u8 gKartYoshi238[]; -// extern u8 gKartYoshi239[]; -// extern u8 gKartYoshi240[]; -// extern u8 gKartYoshi241[]; -// extern u8 gKartYoshi242[]; -// extern u8 gKartYoshi243[]; -// extern u8 gKartYoshi244[]; -// extern u8 gKartYoshi245[]; -// extern u8 gKartYoshi246[]; -// extern u8 gKartYoshi247[]; -// extern u8 gKartYoshi248[]; -// extern u8 gKartYoshi249[]; -// extern u8 gKartYoshi250[]; -// extern u8 gKartYoshi251[]; -// extern u8 gKartYoshi252[]; -// extern u8 gKartYoshi253[]; -// extern u8 gKartYoshi254[]; -// extern u8 gKartYoshi255[]; -// extern u8 gKartYoshi256[]; -// extern u8 gKartYoshi257[]; -// extern u8 gKartYoshi258[]; -// extern u8 gKartYoshi259[]; -// extern u8 gKartYoshi260[]; -// extern u8 gKartYoshi261[]; -// extern u8 gKartYoshi262[]; -// extern u8 gKartYoshi263[]; -// extern u8 gKartYoshi264[]; -// extern u8 gKartYoshi265[]; -// extern u8 gKartYoshi266[]; -// extern u8 gKartYoshi267[]; -// extern u8 gKartYoshi268[]; -// extern u8 gKartYoshi269[]; -// extern u8 gKartYoshi270[]; -// extern u8 gKartYoshi271[]; -// extern u8 gKartYoshi272[]; -// extern u8 gKartYoshi273[]; -// extern u8 gKartYoshi274[]; -// extern u8 gKartYoshi275[]; -// extern u8 gKartYoshi276[]; -// extern u8 gKartYoshi277[]; -// extern u8 gKartYoshi278[]; -// extern u8 gKartYoshi279[]; -// extern u8 gKartYoshi280[]; -// extern u8 gKartYoshi281[]; -// extern u8 gKartYoshi282[]; -// extern u8 gKartYoshi283[]; -// extern u8 gKartYoshi284[]; -// extern u8 gKartYoshi285[]; -// extern u8 gKartYoshi286[]; -// extern u8 gKartYoshi287[]; -// extern u8 gKartYoshi288[]; -// extern u8 gKartYoshi289[]; -// extern u8 gKartYoshi290[]; -// extern u8 gKartYoshi291[]; -// extern u8 gKartYoshi292[]; -// extern u8 gKartYoshi293[]; -// extern u8 gKartYoshi294[]; -// extern u8 gKartYoshi295[]; -// extern u8 gKartYoshi296[]; -// extern u8 gKartYoshi297[]; -// extern u8 gKartYoshi298[]; -// extern u8 gKartYoshi299[]; -// extern u8 gKartYoshi300[]; -// extern u8 gKartYoshi301[]; -// extern u8 gKartYoshi302[]; -// extern u8 gKartYoshi303[]; -// extern u8 gKartYoshi304[]; -// extern u8 gKartYoshi305[]; -// extern u8 gKartYoshi306[]; -// extern u8 gKartYoshi307[]; -// extern u8 gKartYoshi308[]; -// extern u8 gKartYoshi309[]; -// extern u8 gKartYoshi310[]; -// extern u8 gKartYoshi311[]; -// extern u8 gKartYoshi312[]; -// extern u8 gKartYoshi313[]; -// extern u8 gKartYoshi314[]; -// extern u8 gKartYoshi315[]; -// extern u8 gKartYoshi316[]; -// extern u8 gKartYoshi317[]; -// extern u8 gKartYoshi318[]; -// extern u8 gKartYoshi319[]; -// extern u8 gKartYoshi320[]; - -// extern u8 gKartBowser000[]; -// extern u8 gKartBowser001[]; -// extern u8 gKartBowser002[]; -// extern u8 gKartBowser003[]; -// extern u8 gKartBowser004[]; -// extern u8 gKartBowser005[]; -// extern u8 gKartBowser006[]; -// extern u8 gKartBowser007[]; -// extern u8 gKartBowser008[]; -// extern u8 gKartBowser009[]; -// extern u8 gKartBowser010[]; -// extern u8 gKartBowser011[]; -// extern u8 gKartBowser012[]; -// extern u8 gKartBowser013[]; -// extern u8 gKartBowser014[]; -// extern u8 gKartBowser015[]; -// extern u8 gKartBowser016[]; -// extern u8 gKartBowser017[]; -// extern u8 gKartBowser018[]; -// extern u8 gKartBowser019[]; -// extern u8 gKartBowser020[]; -// extern u8 gKartBowser021[]; -// extern u8 gKartBowser022[]; -// extern u8 gKartBowser023[]; -// extern u8 gKartBowser024[]; -// extern u8 gKartBowser025[]; -// extern u8 gKartBowser026[]; -// extern u8 gKartBowser027[]; -// extern u8 gKartBowser028[]; -// extern u8 gKartBowser029[]; -// extern u8 gKartBowser030[]; -// extern u8 gKartBowser031[]; -// extern u8 gKartBowser032[]; -// extern u8 gKartBowser033[]; -// extern u8 gKartBowser034[]; -// extern u8 gKartBowser035[]; -// extern u8 gKartBowser036[]; -// extern u8 gKartBowser037[]; -// extern u8 gKartBowser038[]; -// extern u8 gKartBowser039[]; -// extern u8 gKartBowser040[]; -// extern u8 gKartBowser041[]; -// extern u8 gKartBowser042[]; -// extern u8 gKartBowser043[]; -// extern u8 gKartBowser044[]; -// extern u8 gKartBowser045[]; -// extern u8 gKartBowser046[]; -// extern u8 gKartBowser047[]; -// extern u8 gKartBowser048[]; -// extern u8 gKartBowser049[]; -// extern u8 gKartBowser050[]; -// extern u8 gKartBowser051[]; -// extern u8 gKartBowser052[]; -// extern u8 gKartBowser053[]; -// extern u8 gKartBowser054[]; -// extern u8 gKartBowser055[]; -// extern u8 gKartBowser056[]; -// extern u8 gKartBowser057[]; -// extern u8 gKartBowser058[]; -// extern u8 gKartBowser059[]; -// extern u8 gKartBowser060[]; -// extern u8 gKartBowser061[]; -// extern u8 gKartBowser062[]; -// extern u8 gKartBowser063[]; -// extern u8 gKartBowser064[]; -// extern u8 gKartBowser065[]; -// extern u8 gKartBowser066[]; -// extern u8 gKartBowser067[]; -// extern u8 gKartBowser068[]; -// extern u8 gKartBowser069[]; -// extern u8 gKartBowser070[]; -// extern u8 gKartBowser071[]; -// extern u8 gKartBowser072[]; -// extern u8 gKartBowser073[]; -// extern u8 gKartBowser074[]; -// extern u8 gKartBowser075[]; -// extern u8 gKartBowser076[]; -// extern u8 gKartBowser077[]; -// extern u8 gKartBowser078[]; -// extern u8 gKartBowser079[]; -// extern u8 gKartBowser080[]; -// extern u8 gKartBowser081[]; -// extern u8 gKartBowser082[]; -// extern u8 gKartBowser083[]; -// extern u8 gKartBowser084[]; -// extern u8 gKartBowser085[]; -// extern u8 gKartBowser086[]; -// extern u8 gKartBowser087[]; -// extern u8 gKartBowser088[]; -// extern u8 gKartBowser089[]; -// extern u8 gKartBowser090[]; -// extern u8 gKartBowser091[]; -// extern u8 gKartBowser092[]; -// extern u8 gKartBowser093[]; -// extern u8 gKartBowser094[]; -// extern u8 gKartBowser095[]; -// extern u8 gKartBowser096[]; -// extern u8 gKartBowser097[]; -// extern u8 gKartBowser098[]; -// extern u8 gKartBowser099[]; -// extern u8 gKartBowser100[]; -// extern u8 gKartBowser101[]; -// extern u8 gKartBowser102[]; -// extern u8 gKartBowser103[]; -// extern u8 gKartBowser104[]; -// extern u8 gKartBowser105[]; -// extern u8 gKartBowser106[]; -// extern u8 gKartBowser107[]; -// extern u8 gKartBowser108[]; -// extern u8 gKartBowser109[]; -// extern u8 gKartBowser110[]; -// extern u8 gKartBowser111[]; -// extern u8 gKartBowser112[]; -// extern u8 gKartBowser113[]; -// extern u8 gKartBowser114[]; -// extern u8 gKartBowser115[]; -// extern u8 gKartBowser116[]; -// extern u8 gKartBowser117[]; -// extern u8 gKartBowser118[]; -// extern u8 gKartBowser119[]; -// extern u8 gKartBowser120[]; -// extern u8 gKartBowser121[]; -// extern u8 gKartBowser122[]; -// extern u8 gKartBowser123[]; -// extern u8 gKartBowser124[]; -// extern u8 gKartBowser125[]; -// extern u8 gKartBowser126[]; -// extern u8 gKartBowser127[]; -// extern u8 gKartBowser128[]; -// extern u8 gKartBowser129[]; -// extern u8 gKartBowser130[]; -// extern u8 gKartBowser131[]; -// extern u8 gKartBowser132[]; -// extern u8 gKartBowser133[]; -// extern u8 gKartBowser134[]; -// extern u8 gKartBowser135[]; -// extern u8 gKartBowser136[]; -// extern u8 gKartBowser137[]; -// extern u8 gKartBowser138[]; -// extern u8 gKartBowser139[]; -// extern u8 gKartBowser140[]; -// extern u8 gKartBowser141[]; -// extern u8 gKartBowser142[]; -// extern u8 gKartBowser143[]; -// extern u8 gKartBowser144[]; -// extern u8 gKartBowser145[]; -// extern u8 gKartBowser146[]; -// extern u8 gKartBowser147[]; -// extern u8 gKartBowser148[]; -// extern u8 gKartBowser149[]; -// extern u8 gKartBowser150[]; -// extern u8 gKartBowser151[]; -// extern u8 gKartBowser152[]; -// extern u8 gKartBowser153[]; -// extern u8 gKartBowser154[]; -// extern u8 gKartBowser155[]; -// extern u8 gKartBowser156[]; -// extern u8 gKartBowser157[]; -// extern u8 gKartBowser158[]; -// extern u8 gKartBowser159[]; -// extern u8 gKartBowser160[]; -// extern u8 gKartBowser161[]; -// extern u8 gKartBowser162[]; -// extern u8 gKartBowser163[]; -// extern u8 gKartBowser164[]; -// extern u8 gKartBowser165[]; -// extern u8 gKartBowser166[]; -// extern u8 gKartBowser167[]; -// extern u8 gKartBowser168[]; -// extern u8 gKartBowser169[]; -// extern u8 gKartBowser170[]; -// extern u8 gKartBowser171[]; -// extern u8 gKartBowser172[]; -// extern u8 gKartBowser173[]; -// extern u8 gKartBowser174[]; -// extern u8 gKartBowser175[]; -// extern u8 gKartBowser176[]; -// extern u8 gKartBowser177[]; -// extern u8 gKartBowser178[]; -// extern u8 gKartBowser179[]; -// extern u8 gKartBowser180[]; -// extern u8 gKartBowser181[]; -// extern u8 gKartBowser182[]; -// extern u8 gKartBowser183[]; -// extern u8 gKartBowser184[]; -// extern u8 gKartBowser185[]; -// extern u8 gKartBowser186[]; -// extern u8 gKartBowser187[]; -// extern u8 gKartBowser188[]; -// extern u8 gKartBowser189[]; -// extern u8 gKartBowser190[]; -// extern u8 gKartBowser191[]; -// extern u8 gKartBowser192[]; -// extern u8 gKartBowser193[]; -// extern u8 gKartBowser194[]; -// extern u8 gKartBowser195[]; -// extern u8 gKartBowser196[]; -// extern u8 gKartBowser197[]; -// extern u8 gKartBowser198[]; -// extern u8 gKartBowser199[]; -// extern u8 gKartBowser200[]; -// extern u8 gKartBowser201[]; -// extern u8 gKartBowser202[]; -// extern u8 gKartBowser203[]; -// extern u8 gKartBowser204[]; -// extern u8 gKartBowser205[]; -// extern u8 gKartBowser206[]; -// extern u8 gKartBowser207[]; -// extern u8 gKartBowser208[]; -// extern u8 gKartBowser209[]; -// extern u8 gKartBowser210[]; -// extern u8 gKartBowser211[]; -// extern u8 gKartBowser212[]; -// extern u8 gKartBowser213[]; -// extern u8 gKartBowser214[]; -// extern u8 gKartBowser215[]; -// extern u8 gKartBowser216[]; -// extern u8 gKartBowser217[]; -// extern u8 gKartBowser218[]; -// extern u8 gKartBowser219[]; -// extern u8 gKartBowser220[]; -// extern u8 gKartBowser221[]; -// extern u8 gKartBowser222[]; -// extern u8 gKartBowser223[]; -// extern u8 gKartBowser224[]; -// extern u8 gKartBowser225[]; -// extern u8 gKartBowser226[]; -// extern u8 gKartBowser227[]; -// extern u8 gKartBowser228[]; -// extern u8 gKartBowser229[]; -// extern u8 gKartBowser230[]; -// extern u8 gKartBowser231[]; -// extern u8 gKartBowser232[]; -// extern u8 gKartBowser233[]; -// extern u8 gKartBowser234[]; -// extern u8 gKartBowser235[]; -// extern u8 gKartBowser236[]; -// extern u8 gKartBowser237[]; -// extern u8 gKartBowser238[]; -// extern u8 gKartBowser239[]; -// extern u8 gKartBowser240[]; -// extern u8 gKartBowser241[]; -// extern u8 gKartBowser242[]; -// extern u8 gKartBowser243[]; -// extern u8 gKartBowser244[]; -// extern u8 gKartBowser245[]; -// extern u8 gKartBowser246[]; -// extern u8 gKartBowser247[]; -// extern u8 gKartBowser248[]; -// extern u8 gKartBowser249[]; -// extern u8 gKartBowser250[]; -// extern u8 gKartBowser251[]; -// extern u8 gKartBowser252[]; -// extern u8 gKartBowser253[]; -// extern u8 gKartBowser254[]; -// extern u8 gKartBowser255[]; -// extern u8 gKartBowser256[]; -// extern u8 gKartBowser257[]; -// extern u8 gKartBowser258[]; -// extern u8 gKartBowser259[]; -// extern u8 gKartBowser260[]; -// extern u8 gKartBowser261[]; -// extern u8 gKartBowser262[]; -// extern u8 gKartBowser263[]; -// extern u8 gKartBowser264[]; -// extern u8 gKartBowser265[]; -// extern u8 gKartBowser266[]; -// extern u8 gKartBowser267[]; -// extern u8 gKartBowser268[]; -// extern u8 gKartBowser269[]; -// extern u8 gKartBowser270[]; -// extern u8 gKartBowser271[]; -// extern u8 gKartBowser272[]; -// extern u8 gKartBowser273[]; -// extern u8 gKartBowser274[]; -// extern u8 gKartBowser275[]; -// extern u8 gKartBowser276[]; -// extern u8 gKartBowser277[]; -// extern u8 gKartBowser278[]; -// extern u8 gKartBowser279[]; -// extern u8 gKartBowser280[]; -// extern u8 gKartBowser281[]; -// extern u8 gKartBowser282[]; -// extern u8 gKartBowser283[]; -// extern u8 gKartBowser284[]; -// extern u8 gKartBowser285[]; -// extern u8 gKartBowser286[]; -// extern u8 gKartBowser287[]; -// extern u8 gKartBowser288[]; -// extern u8 gKartBowser289[]; -// extern u8 gKartBowser290[]; -// extern u8 gKartBowser291[]; -// extern u8 gKartBowser292[]; -// extern u8 gKartBowser293[]; -// extern u8 gKartBowser294[]; -// extern u8 gKartBowser295[]; -// extern u8 gKartBowser296[]; -// extern u8 gKartBowser297[]; -// extern u8 gKartBowser298[]; -// extern u8 gKartBowser299[]; -// extern u8 gKartBowser300[]; -// extern u8 gKartBowser301[]; -// extern u8 gKartBowser302[]; -// extern u8 gKartBowser303[]; -// extern u8 gKartBowser304[]; -// extern u8 gKartBowser305[]; -// extern u8 gKartBowser306[]; -// extern u8 gKartBowser307[]; -// extern u8 gKartBowser308[]; -// extern u8 gKartBowser309[]; -// extern u8 gKartBowser310[]; -// extern u8 gKartBowser311[]; -// extern u8 gKartBowser312[]; -// extern u8 gKartBowser313[]; -// extern u8 gKartBowser314[]; -// extern u8 gKartBowser315[]; -// extern u8 gKartBowser316[]; -// extern u8 gKartBowser317[]; -// extern u8 gKartBowser318[]; -// extern u8 gKartBowser319[]; -// extern u8 gKartBowser320[]; - -// extern u8 gKartWario000[]; -// extern u8 gKartWario001[]; -// extern u8 gKartWario002[]; -// extern u8 gKartWario003[]; -// extern u8 gKartWario004[]; -// extern u8 gKartWario005[]; -// extern u8 gKartWario006[]; -// extern u8 gKartWario007[]; -// extern u8 gKartWario008[]; -// extern u8 gKartWario009[]; -// extern u8 gKartWario010[]; -// extern u8 gKartWario011[]; -// extern u8 gKartWario012[]; -// extern u8 gKartWario013[]; -// extern u8 gKartWario014[]; -// extern u8 gKartWario015[]; -// extern u8 gKartWario016[]; -// extern u8 gKartWario017[]; -// extern u8 gKartWario018[]; -// extern u8 gKartWario019[]; -// extern u8 gKartWario020[]; -// extern u8 gKartWario021[]; -// extern u8 gKartWario022[]; -// extern u8 gKartWario023[]; -// extern u8 gKartWario024[]; -// extern u8 gKartWario025[]; -// extern u8 gKartWario026[]; -// extern u8 gKartWario027[]; -// extern u8 gKartWario028[]; -// extern u8 gKartWario029[]; -// extern u8 gKartWario030[]; -// extern u8 gKartWario031[]; -// extern u8 gKartWario032[]; -// extern u8 gKartWario033[]; -// extern u8 gKartWario034[]; -// extern u8 gKartWario035[]; -// extern u8 gKartWario036[]; -// extern u8 gKartWario037[]; -// extern u8 gKartWario038[]; -// extern u8 gKartWario039[]; -// extern u8 gKartWario040[]; -// extern u8 gKartWario041[]; -// extern u8 gKartWario042[]; -// extern u8 gKartWario043[]; -// extern u8 gKartWario044[]; -// extern u8 gKartWario045[]; -// extern u8 gKartWario046[]; -// extern u8 gKartWario047[]; -// extern u8 gKartWario048[]; -// extern u8 gKartWario049[]; -// extern u8 gKartWario050[]; -// extern u8 gKartWario051[]; -// extern u8 gKartWario052[]; -// extern u8 gKartWario053[]; -// extern u8 gKartWario054[]; -// extern u8 gKartWario055[]; -// extern u8 gKartWario056[]; -// extern u8 gKartWario057[]; -// extern u8 gKartWario058[]; -// extern u8 gKartWario059[]; -// extern u8 gKartWario060[]; -// extern u8 gKartWario061[]; -// extern u8 gKartWario062[]; -// extern u8 gKartWario063[]; -// extern u8 gKartWario064[]; -// extern u8 gKartWario065[]; -// extern u8 gKartWario066[]; -// extern u8 gKartWario067[]; -// extern u8 gKartWario068[]; -// extern u8 gKartWario069[]; -// extern u8 gKartWario070[]; -// extern u8 gKartWario071[]; -// extern u8 gKartWario072[]; -// extern u8 gKartWario073[]; -// extern u8 gKartWario074[]; -// extern u8 gKartWario075[]; -// extern u8 gKartWario076[]; -// extern u8 gKartWario077[]; -// extern u8 gKartWario078[]; -// extern u8 gKartWario079[]; -// extern u8 gKartWario080[]; -// extern u8 gKartWario081[]; -// extern u8 gKartWario082[]; -// extern u8 gKartWario083[]; -// extern u8 gKartWario084[]; -// extern u8 gKartWario085[]; -// extern u8 gKartWario086[]; -// extern u8 gKartWario087[]; -// extern u8 gKartWario088[]; -// extern u8 gKartWario089[]; -// extern u8 gKartWario090[]; -// extern u8 gKartWario091[]; -// extern u8 gKartWario092[]; -// extern u8 gKartWario093[]; -// extern u8 gKartWario094[]; -// extern u8 gKartWario095[]; -// extern u8 gKartWario096[]; -// extern u8 gKartWario097[]; -// extern u8 gKartWario098[]; -// extern u8 gKartWario099[]; -// extern u8 gKartWario100[]; -// extern u8 gKartWario101[]; -// extern u8 gKartWario102[]; -// extern u8 gKartWario103[]; -// extern u8 gKartWario104[]; -// extern u8 gKartWario105[]; -// extern u8 gKartWario106[]; -// extern u8 gKartWario107[]; -// extern u8 gKartWario108[]; -// extern u8 gKartWario109[]; -// extern u8 gKartWario110[]; -// extern u8 gKartWario111[]; -// extern u8 gKartWario112[]; -// extern u8 gKartWario113[]; -// extern u8 gKartWario114[]; -// extern u8 gKartWario115[]; -// extern u8 gKartWario116[]; -// extern u8 gKartWario117[]; -// extern u8 gKartWario118[]; -// extern u8 gKartWario119[]; -// extern u8 gKartWario120[]; -// extern u8 gKartWario121[]; -// extern u8 gKartWario122[]; -// extern u8 gKartWario123[]; -// extern u8 gKartWario124[]; -// extern u8 gKartWario125[]; -// extern u8 gKartWario126[]; -// extern u8 gKartWario127[]; -// extern u8 gKartWario128[]; -// extern u8 gKartWario129[]; -// extern u8 gKartWario130[]; -// extern u8 gKartWario131[]; -// extern u8 gKartWario132[]; -// extern u8 gKartWario133[]; -// extern u8 gKartWario134[]; -// extern u8 gKartWario135[]; -// extern u8 gKartWario136[]; -// extern u8 gKartWario137[]; -// extern u8 gKartWario138[]; -// extern u8 gKartWario139[]; -// extern u8 gKartWario140[]; -// extern u8 gKartWario141[]; -// extern u8 gKartWario142[]; -// extern u8 gKartWario143[]; -// extern u8 gKartWario144[]; -// extern u8 gKartWario145[]; -// extern u8 gKartWario146[]; -// extern u8 gKartWario147[]; -// extern u8 gKartWario148[]; -// extern u8 gKartWario149[]; -// extern u8 gKartWario150[]; -// extern u8 gKartWario151[]; -// extern u8 gKartWario152[]; -// extern u8 gKartWario153[]; -// extern u8 gKartWario154[]; -// extern u8 gKartWario155[]; -// extern u8 gKartWario156[]; -// extern u8 gKartWario157[]; -// extern u8 gKartWario158[]; -// extern u8 gKartWario159[]; -// extern u8 gKartWario160[]; -// extern u8 gKartWario161[]; -// extern u8 gKartWario162[]; -// extern u8 gKartWario163[]; -// extern u8 gKartWario164[]; -// extern u8 gKartWario165[]; -// extern u8 gKartWario166[]; -// extern u8 gKartWario167[]; -// extern u8 gKartWario168[]; -// extern u8 gKartWario169[]; -// extern u8 gKartWario170[]; -// extern u8 gKartWario171[]; -// extern u8 gKartWario172[]; -// extern u8 gKartWario173[]; -// extern u8 gKartWario174[]; -// extern u8 gKartWario175[]; -// extern u8 gKartWario176[]; -// extern u8 gKartWario177[]; -// extern u8 gKartWario178[]; -// extern u8 gKartWario179[]; -// extern u8 gKartWario180[]; -// extern u8 gKartWario181[]; -// extern u8 gKartWario182[]; -// extern u8 gKartWario183[]; -// extern u8 gKartWario184[]; -// extern u8 gKartWario185[]; -// extern u8 gKartWario186[]; -// extern u8 gKartWario187[]; -// extern u8 gKartWario188[]; -// extern u8 gKartWario189[]; -// extern u8 gKartWario190[]; -// extern u8 gKartWario191[]; -// extern u8 gKartWario192[]; -// extern u8 gKartWario193[]; -// extern u8 gKartWario194[]; -// extern u8 gKartWario195[]; -// extern u8 gKartWario196[]; -// extern u8 gKartWario197[]; -// extern u8 gKartWario198[]; -// extern u8 gKartWario199[]; -// extern u8 gKartWario200[]; -// extern u8 gKartWario201[]; -// extern u8 gKartWario202[]; -// extern u8 gKartWario203[]; -// extern u8 gKartWario204[]; -// extern u8 gKartWario205[]; -// extern u8 gKartWario206[]; -// extern u8 gKartWario207[]; -// extern u8 gKartWario208[]; -// extern u8 gKartWario209[]; -// extern u8 gKartWario210[]; -// extern u8 gKartWario211[]; -// extern u8 gKartWario212[]; -// extern u8 gKartWario213[]; -// extern u8 gKartWario214[]; -// extern u8 gKartWario215[]; -// extern u8 gKartWario216[]; -// extern u8 gKartWario217[]; -// extern u8 gKartWario218[]; -// extern u8 gKartWario219[]; -// extern u8 gKartWario220[]; -// extern u8 gKartWario221[]; -// extern u8 gKartWario222[]; -// extern u8 gKartWario223[]; -// extern u8 gKartWario224[]; -// extern u8 gKartWario225[]; -// extern u8 gKartWario226[]; -// extern u8 gKartWario227[]; -// extern u8 gKartWario228[]; -// extern u8 gKartWario229[]; -// extern u8 gKartWario230[]; -// extern u8 gKartWario231[]; -// extern u8 gKartWario232[]; -// extern u8 gKartWario233[]; -// extern u8 gKartWario234[]; -// extern u8 gKartWario235[]; -// extern u8 gKartWario236[]; -// extern u8 gKartWario237[]; -// extern u8 gKartWario238[]; -// extern u8 gKartWario239[]; -// extern u8 gKartWario240[]; -// extern u8 gKartWario241[]; -// extern u8 gKartWario242[]; -// extern u8 gKartWario243[]; -// extern u8 gKartWario244[]; -// extern u8 gKartWario245[]; -// extern u8 gKartWario246[]; -// extern u8 gKartWario247[]; -// extern u8 gKartWario248[]; -// extern u8 gKartWario249[]; -// extern u8 gKartWario250[]; -// extern u8 gKartWario251[]; -// extern u8 gKartWario252[]; -// extern u8 gKartWario253[]; -// extern u8 gKartWario254[]; -// extern u8 gKartWario255[]; -// extern u8 gKartWario256[]; -// extern u8 gKartWario257[]; -// extern u8 gKartWario258[]; -// extern u8 gKartWario259[]; -// extern u8 gKartWario260[]; -// extern u8 gKartWario261[]; -// extern u8 gKartWario262[]; -// extern u8 gKartWario263[]; -// extern u8 gKartWario264[]; -// extern u8 gKartWario265[]; -// extern u8 gKartWario266[]; -// extern u8 gKartWario267[]; -// extern u8 gKartWario268[]; -// extern u8 gKartWario269[]; -// extern u8 gKartWario270[]; -// extern u8 gKartWario271[]; -// extern u8 gKartWario272[]; -// extern u8 gKartWario273[]; -// extern u8 gKartWario274[]; -// extern u8 gKartWario275[]; -// extern u8 gKartWario276[]; -// extern u8 gKartWario277[]; -// extern u8 gKartWario278[]; -// extern u8 gKartWario279[]; -// extern u8 gKartWario280[]; -// extern u8 gKartWario281[]; -// extern u8 gKartWario282[]; -// extern u8 gKartWario283[]; -// extern u8 gKartWario284[]; -// extern u8 gKartWario285[]; -// extern u8 gKartWario286[]; -// extern u8 gKartWario287[]; -// extern u8 gKartWario288[]; -// extern u8 gKartWario289[]; -// extern u8 gKartWario290[]; -// extern u8 gKartWario291[]; -// extern u8 gKartWario292[]; -// extern u8 gKartWario293[]; -// extern u8 gKartWario294[]; -// extern u8 gKartWario295[]; -// extern u8 gKartWario296[]; -// extern u8 gKartWario297[]; -// extern u8 gKartWario298[]; -// extern u8 gKartWario299[]; -// extern u8 gKartWario300[]; -// extern u8 gKartWario301[]; -// extern u8 gKartWario302[]; -// extern u8 gKartWario303[]; -// extern u8 gKartWario304[]; -// extern u8 gKartWario305[]; -// extern u8 gKartWario306[]; -// extern u8 gKartWario307[]; -// extern u8 gKartWario308[]; -// extern u8 gKartWario309[]; -// extern u8 gKartWario310[]; -// extern u8 gKartWario311[]; -// extern u8 gKartWario312[]; -// extern u8 gKartWario313[]; -// extern u8 gKartWario314[]; -// extern u8 gKartWario315[]; -// extern u8 gKartWario316[]; -// extern u8 gKartWario317[]; -// extern u8 gKartWario318[]; -// extern u8 gKartWario319[]; -// extern u8 gKartWario320[]; - -// extern u8 gKartDK000[]; -// extern u8 gKartDK001[]; -// extern u8 gKartDK002[]; -// extern u8 gKartDK003[]; -// extern u8 gKartDK004[]; -// extern u8 gKartDK005[]; -// extern u8 gKartDK006[]; -// extern u8 gKartDK007[]; -// extern u8 gKartDK008[]; -// extern u8 gKartDK009[]; -// extern u8 gKartDK010[]; -// extern u8 gKartDK011[]; -// extern u8 gKartDK012[]; -// extern u8 gKartDK013[]; -// extern u8 gKartDK014[]; -// extern u8 gKartDK015[]; -// extern u8 gKartDK016[]; -// extern u8 gKartDK017[]; -// extern u8 gKartDK018[]; -// extern u8 gKartDK019[]; -// extern u8 gKartDK020[]; -// extern u8 gKartDK021[]; -// extern u8 gKartDK022[]; -// extern u8 gKartDK023[]; -// extern u8 gKartDK024[]; -// extern u8 gKartDK025[]; -// extern u8 gKartDK026[]; -// extern u8 gKartDK027[]; -// extern u8 gKartDK028[]; -// extern u8 gKartDK029[]; -// extern u8 gKartDK030[]; -// extern u8 gKartDK031[]; -// extern u8 gKartDK032[]; -// extern u8 gKartDK033[]; -// extern u8 gKartDK034[]; -// extern u8 gKartDK035[]; -// extern u8 gKartDK036[]; -// extern u8 gKartDK037[]; -// extern u8 gKartDK038[]; -// extern u8 gKartDK039[]; -// extern u8 gKartDK040[]; -// extern u8 gKartDK041[]; -// extern u8 gKartDK042[]; -// extern u8 gKartDK043[]; -// extern u8 gKartDK044[]; -// extern u8 gKartDK045[]; -// extern u8 gKartDK046[]; -// extern u8 gKartDK047[]; -// extern u8 gKartDK048[]; -// extern u8 gKartDK049[]; -// extern u8 gKartDK050[]; -// extern u8 gKartDK051[]; -// extern u8 gKartDK052[]; -// extern u8 gKartDK053[]; -// extern u8 gKartDK054[]; -// extern u8 gKartDK055[]; -// extern u8 gKartDK056[]; -// extern u8 gKartDK057[]; -// extern u8 gKartDK058[]; -// extern u8 gKartDK059[]; -// extern u8 gKartDK060[]; -// extern u8 gKartDK061[]; -// extern u8 gKartDK062[]; -// extern u8 gKartDK063[]; -// extern u8 gKartDK064[]; -// extern u8 gKartDK065[]; -// extern u8 gKartDK066[]; -// extern u8 gKartDK067[]; -// extern u8 gKartDK068[]; -// extern u8 gKartDK069[]; -// extern u8 gKartDK070[]; -// extern u8 gKartDK071[]; -// extern u8 gKartDK072[]; -// extern u8 gKartDK073[]; -// extern u8 gKartDK074[]; -// extern u8 gKartDK075[]; -// extern u8 gKartDK076[]; -// extern u8 gKartDK077[]; -// extern u8 gKartDK078[]; -// extern u8 gKartDK079[]; -// extern u8 gKartDK080[]; -// extern u8 gKartDK081[]; -// extern u8 gKartDK082[]; -// extern u8 gKartDK083[]; -// extern u8 gKartDK084[]; -// extern u8 gKartDK085[]; -// extern u8 gKartDK086[]; -// extern u8 gKartDK087[]; -// extern u8 gKartDK088[]; -// extern u8 gKartDK089[]; -// extern u8 gKartDK090[]; -// extern u8 gKartDK091[]; -// extern u8 gKartDK092[]; -// extern u8 gKartDK093[]; -// extern u8 gKartDK094[]; -// extern u8 gKartDK095[]; -// extern u8 gKartDK096[]; -// extern u8 gKartDK097[]; -// extern u8 gKartDK098[]; -// extern u8 gKartDK099[]; -// extern u8 gKartDK100[]; -// extern u8 gKartDK101[]; -// extern u8 gKartDK102[]; -// extern u8 gKartDK103[]; -// extern u8 gKartDK104[]; -// extern u8 gKartDK105[]; -// extern u8 gKartDK106[]; -// extern u8 gKartDK107[]; -// extern u8 gKartDK108[]; -// extern u8 gKartDK109[]; -// extern u8 gKartDK110[]; -// extern u8 gKartDK111[]; -// extern u8 gKartDK112[]; -// extern u8 gKartDK113[]; -// extern u8 gKartDK114[]; -// extern u8 gKartDK115[]; -// extern u8 gKartDK116[]; -// extern u8 gKartDK117[]; -// extern u8 gKartDK118[]; -// extern u8 gKartDK119[]; -// extern u8 gKartDK120[]; -// extern u8 gKartDK121[]; -// extern u8 gKartDK122[]; -// extern u8 gKartDK123[]; -// extern u8 gKartDK124[]; -// extern u8 gKartDK125[]; -// extern u8 gKartDK126[]; -// extern u8 gKartDK127[]; -// extern u8 gKartDK128[]; -// extern u8 gKartDK129[]; -// extern u8 gKartDK130[]; -// extern u8 gKartDK131[]; -// extern u8 gKartDK132[]; -// extern u8 gKartDK133[]; -// extern u8 gKartDK134[]; -// extern u8 gKartDK135[]; -// extern u8 gKartDK136[]; -// extern u8 gKartDK137[]; -// extern u8 gKartDK138[]; -// extern u8 gKartDK139[]; -// extern u8 gKartDK140[]; -// extern u8 gKartDK141[]; -// extern u8 gKartDK142[]; -// extern u8 gKartDK143[]; -// extern u8 gKartDK144[]; -// extern u8 gKartDK145[]; -// extern u8 gKartDK146[]; -// extern u8 gKartDK147[]; -// extern u8 gKartDK148[]; -// extern u8 gKartDK149[]; -// extern u8 gKartDK150[]; -// extern u8 gKartDK151[]; -// extern u8 gKartDK152[]; -// extern u8 gKartDK153[]; -// extern u8 gKartDK154[]; -// extern u8 gKartDK155[]; -// extern u8 gKartDK156[]; -// extern u8 gKartDK157[]; -// extern u8 gKartDK158[]; -// extern u8 gKartDK159[]; -// extern u8 gKartDK160[]; -// extern u8 gKartDK161[]; -// extern u8 gKartDK162[]; -// extern u8 gKartDK163[]; -// extern u8 gKartDK164[]; -// extern u8 gKartDK165[]; -// extern u8 gKartDK166[]; -// extern u8 gKartDK167[]; -// extern u8 gKartDK168[]; -// extern u8 gKartDK169[]; -// extern u8 gKartDK170[]; -// extern u8 gKartDK171[]; -// extern u8 gKartDK172[]; -// extern u8 gKartDK173[]; -// extern u8 gKartDK174[]; -// extern u8 gKartDK175[]; -// extern u8 gKartDK176[]; -// extern u8 gKartDK177[]; -// extern u8 gKartDK178[]; -// extern u8 gKartDK179[]; -// extern u8 gKartDK180[]; -// extern u8 gKartDK181[]; -// extern u8 gKartDK182[]; -// extern u8 gKartDK183[]; -// extern u8 gKartDK184[]; -// extern u8 gKartDK185[]; -// extern u8 gKartDK186[]; -// extern u8 gKartDK187[]; -// extern u8 gKartDK188[]; -// extern u8 gKartDK189[]; -// extern u8 gKartDK190[]; -// extern u8 gKartDK191[]; -// extern u8 gKartDK192[]; -// extern u8 gKartDK193[]; -// extern u8 gKartDK194[]; -// extern u8 gKartDK195[]; -// extern u8 gKartDK196[]; -// extern u8 gKartDK197[]; -// extern u8 gKartDK198[]; -// extern u8 gKartDK199[]; -// extern u8 gKartDK200[]; -// extern u8 gKartDK201[]; -// extern u8 gKartDK202[]; -// extern u8 gKartDK203[]; -// extern u8 gKartDK204[]; -// extern u8 gKartDK205[]; -// extern u8 gKartDK206[]; -// extern u8 gKartDK207[]; -// extern u8 gKartDK208[]; -// extern u8 gKartDK209[]; -// extern u8 gKartDK210[]; -// extern u8 gKartDK211[]; -// extern u8 gKartDK212[]; -// extern u8 gKartDK213[]; -// extern u8 gKartDK214[]; -// extern u8 gKartDK215[]; -// extern u8 gKartDK216[]; -// extern u8 gKartDK217[]; -// extern u8 gKartDK218[]; -// extern u8 gKartDK219[]; -// extern u8 gKartDK220[]; -// extern u8 gKartDK221[]; -// extern u8 gKartDK222[]; -// extern u8 gKartDK223[]; -// extern u8 gKartDK224[]; -// extern u8 gKartDK225[]; -// extern u8 gKartDK226[]; -// extern u8 gKartDK227[]; -// extern u8 gKartDK228[]; -// extern u8 gKartDK229[]; -// extern u8 gKartDK230[]; -// extern u8 gKartDK231[]; -// extern u8 gKartDK232[]; -// extern u8 gKartDK233[]; -// extern u8 gKartDK234[]; -// extern u8 gKartDK235[]; -// extern u8 gKartDK236[]; -// extern u8 gKartDK237[]; -// extern u8 gKartDK238[]; -// extern u8 gKartDK239[]; -// extern u8 gKartDK240[]; -// extern u8 gKartDK241[]; -// extern u8 gKartDK242[]; -// extern u8 gKartDK243[]; -// extern u8 gKartDK244[]; -// extern u8 gKartDK245[]; -// extern u8 gKartDK246[]; -// extern u8 gKartDK247[]; -// extern u8 gKartDK248[]; -// extern u8 gKartDK249[]; -// extern u8 gKartDK250[]; -// extern u8 gKartDK251[]; -// extern u8 gKartDK252[]; -// extern u8 gKartDK253[]; -// extern u8 gKartDK254[]; -// extern u8 gKartDK255[]; -// extern u8 gKartDK256[]; -// extern u8 gKartDK257[]; -// extern u8 gKartDK258[]; -// extern u8 gKartDK259[]; -// extern u8 gKartDK260[]; -// extern u8 gKartDK261[]; -// extern u8 gKartDK262[]; -// extern u8 gKartDK263[]; -// extern u8 gKartDK264[]; -// extern u8 gKartDK265[]; -// extern u8 gKartDK266[]; -// extern u8 gKartDK267[]; -// extern u8 gKartDK268[]; -// extern u8 gKartDK269[]; -// extern u8 gKartDK270[]; -// extern u8 gKartDK271[]; -// extern u8 gKartDK272[]; -// extern u8 gKartDK273[]; -// extern u8 gKartDK274[]; -// extern u8 gKartDK275[]; -// extern u8 gKartDK276[]; -// extern u8 gKartDK277[]; -// extern u8 gKartDK278[]; -// extern u8 gKartDK279[]; -// extern u8 gKartDK280[]; -// extern u8 gKartDK281[]; -// extern u8 gKartDK282[]; -// extern u8 gKartDK283[]; -// extern u8 gKartDK284[]; -// extern u8 gKartDK285[]; -// extern u8 gKartDK286[]; -// extern u8 gKartDK287[]; -// extern u8 gKartDK288[]; -// extern u8 gKartDK289[]; -// extern u8 gKartDK290[]; -// extern u8 gKartDK291[]; -// extern u8 gKartDK292[]; -// extern u8 gKartDK293[]; -// extern u8 gKartDK294[]; -// extern u8 gKartDK295[]; -// extern u8 gKartDK296[]; -// extern u8 gKartDK297[]; -// extern u8 gKartDK298[]; -// extern u8 gKartDK299[]; -// extern u8 gKartDK300[]; -// extern u8 gKartDK301[]; -// extern u8 gKartDK302[]; -// extern u8 gKartDK303[]; -// extern u8 gKartDK304[]; -// extern u8 gKartDK305[]; -// extern u8 gKartDK306[]; -// extern u8 gKartDK307[]; -// extern u8 gKartDK308[]; -// extern u8 gKartDK309[]; -// extern u8 gKartDK310[]; -// extern u8 gKartDK311[]; -// extern u8 gKartDK312[]; -// extern u8 gKartDK313[]; -// extern u8 gKartDK314[]; -// extern u8 gKartDK315[]; -// extern u8 gKartDK316[]; -// extern u8 gKartDK317[]; -// extern u8 gKartDK318[]; -// extern u8 gKartDK319[]; -// extern u8 gKartDK320[]; - // extern u8 _kart_texturesSegmentRomStart[]; #endif diff --git a/src/main.c b/src/main.c index 076539b10..22c2e364f 100644 --- a/src/main.c +++ b/src/main.c @@ -132,7 +132,6 @@ f32 D_80150150; UNUSED f32 D_80150154; struct D_80150158 gD_80150158[16]; -uintptr_t gSegmentTable[16]; Gfx* gDisplayListHead; struct SPTask* gGfxSPTask; @@ -451,7 +450,6 @@ void exec_display_list(struct SPTask* spTask) { * Set default RCP (Reality Co-Processor) settings. */ void init_rcp(void) { - move_segment_table_to_dmem(); init_rdp(); set_viewport(); select_framebuffer(); @@ -485,7 +483,6 @@ void* clear_framebuffer(s32 color) { void rendering_init(void) { gGfxPool = &gGfxPools[0]; - set_segment_base_addr_x64(1, gGfxPool); gGfxSPTask = &gGfxPool->spTask; gDisplayListHead = gGfxPool->gfxPool; init_rcp(); @@ -498,7 +495,6 @@ void rendering_init(void) { void config_gfx_pool(void) { gGfxPool = &gGfxPools[gGlobalTimer & 1]; - set_segment_base_addr_x64(1, gGfxPool); gDisplayListHead = gGfxPool->gfxPool; gGfxSPTask = &gGfxPool->spTask; } @@ -776,7 +772,6 @@ void race_logic_loop(void) { profiler_log_thread5_time(LEVEL_SCRIPT_EXECUTE); sNumVBlanks = 0; gNumScreens = 0; - move_segment_table_to_dmem(); init_rdp(); if (D_800DC5B0 != 0) { select_framebuffer(); diff --git a/src/main.h b/src/main.h index bb5f30b45..408161b70 100644 --- a/src/main.h +++ b/src/main.h @@ -174,7 +174,6 @@ extern f32 D_8015014C; extern f32 D_80150150; extern struct D_80150158 gD_80150158[]; -extern uintptr_t gSegmentTable[]; extern Gfx* gDisplayListHead; extern struct SPTask* gGfxSPTask; extern s32 D_801502A0; diff --git a/src/menu_items.c b/src/menu_items.c index 893ea83ed..73379255e 100644 --- a/src/menu_items.c +++ b/src/menu_items.c @@ -7,7 +7,7 @@ #include #include #include -#include +#include #include "code_800029B0.h" #include "menu_items.h" #include "code_80005FD0.h" @@ -16,20 +16,20 @@ #include "save.h" #include "code_80057C60.h" #include "credits.h" -#include "data_segment2.h" +#include "assets/models/data_segment2.h" #include "code_800AF9B0.h" #include "code_80281780.h" #include "memory.h" #include "audio/external.h" #include "render_objects.h" #include "replays.h" -#include +#include #include "textures.h" #include "math_util.h" #include "save_data.h" #include "podium_ceremony_actors.h" #include "skybox_and_splitscreen.h" -#include +#include #include "buffers.h" #include "racing/race_logic.h" #include "ending/code_80281C40.h" @@ -49,6 +49,7 @@ #include "src/engine/HM_Intro.h" #include "src/port/interpolation/FrameInterpolation.h" #include "heap.h" +#include const char* GetCupName(void); @@ -1401,9 +1402,6 @@ void func_80091B78(void) { } if (gMenuSelection == LOGO_INTRO_MENU) { gNextFreeMemoryAddress = gFreeMemoryResetAnchor; -#ifdef TARGET_N64 - set_segment_base_addr(6, decompress_segments((u8*) STARTUP_LOGO_ROM_START, (u8*) STARTUP_LOGO_ROM_END)); -#endif } gNextFreeMemoryAddress = gFreeMemoryResetAnchor; // Hypothetically, this should be a ptr... But only hypothetically. @@ -2060,10 +2058,10 @@ void print_text0(s32 column, s32 row, char* text, s32 tracking, f32 scaleX, f32 do { glyphIndex = char_to_glyph_index(text); if (glyphIndex >= 0) { - load_menu_img((MenuTexture*) segmented_to_virtual_dupe((const void*) gGlyphTextureLUT[glyphIndex])); + load_menu_img((MenuTexture*) gGlyphTextureLUT[glyphIndex]); gDisplayListHead = print_letter(gDisplayListHead, - (MenuTexture*) segmented_to_virtual_dupe((const void*) gGlyphTextureLUT[glyphIndex]), + (MenuTexture*) gGlyphTextureLUT[glyphIndex], column + (stringWidth * scaleX), row, mode, scaleX, scaleY); stringWidth += gGlyphDisplayWidth[glyphIndex] + tracking; } else if ((glyphIndex != -2) && (glyphIndex == -1)) { @@ -2103,10 +2101,10 @@ void print_text0_wide_right(s32 column, s32 row, char* text, s32 tracking, f32 s do { glyphIndex = char_to_glyph_index(text); if (glyphIndex >= 0) { - load_menu_img((MenuTexture*) segmented_to_virtual_dupe((const void*) gGlyphTextureLUT[glyphIndex])); + load_menu_img((MenuTexture*) gGlyphTextureLUT[glyphIndex]); gDisplayListHead = print_letter_wide_right( gDisplayListHead, - (MenuTexture*) segmented_to_virtual_dupe((const void*) gGlyphTextureLUT[glyphIndex]), + (MenuTexture*) gGlyphTextureLUT[glyphIndex], column + (stringWidth * scaleX), row, mode, scaleX, scaleY); stringWidth += gGlyphDisplayWidth[glyphIndex] + tracking; } else if ((glyphIndex != -2) && (glyphIndex == -1)) { @@ -2201,8 +2199,8 @@ void print_text1(s32 column, s32 row, char* text, s32 tracking, f32 scaleX, f32 while (*text != 0) { glyphIndex = char_to_glyph_index(text); if (glyphIndex >= 0) { - load_menu_img(segmented_to_virtual_dupe(gGlyphTextureLUT[glyphIndex])); - gDisplayListHead = print_letter(gDisplayListHead, segmented_to_virtual_dupe(gGlyphTextureLUT[glyphIndex]), + load_menu_img((MenuTexture*) gGlyphTextureLUT[glyphIndex]); + gDisplayListHead = print_letter(gDisplayListHead, (MenuTexture*) gGlyphTextureLUT[glyphIndex], column, row, sp60, scaleX, scaleY); column = column + (s32) ((gGlyphDisplayWidth[glyphIndex] + tracking) * scaleX); } else if ((glyphIndex != -2) && (glyphIndex == -1)) { @@ -2257,7 +2255,7 @@ void print_text2(s32 column, s32 row, char* text, s32 tracking, f32 scaleX, f32 do { glyphIndex = char_to_glyph_index(text); if (glyphIndex >= 0) { - glyphTexture = (MenuTexture*) segmented_to_virtual_dupe((const void*) gGlyphTextureLUT[glyphIndex]); + glyphTexture = (MenuTexture*) gGlyphTextureLUT[glyphIndex]; load_menu_img(glyphTexture); gDisplayListHead = print_letter(gDisplayListHead, glyphTexture, column - (gGlyphDisplayWidth[glyphIndex] / 2), row, @@ -2306,7 +2304,7 @@ void print_text2_wide(s32 column, s32 row, char* text, s32 tracking, f32 scaleX, do { glyphIndex = char_to_glyph_index(text); if (glyphIndex >= 0) { - glyphTexture = (MenuTexture*) segmented_to_virtual_dupe((const void*) gGlyphTextureLUT[glyphIndex]); + glyphTexture = (MenuTexture*) gGlyphTextureLUT[glyphIndex]; load_menu_img(glyphTexture); gDisplayListHead = print_letter_wide_right(gDisplayListHead, glyphTexture, @@ -2562,7 +2560,6 @@ void func_800942D0(void) { void func_80094660(struct GfxPool* arg0, UNUSED s32 arg1) { u16 perspNorm; - move_segment_table_to_dmem(); gDPSetTexturePersp(gDisplayListHead++, G_TP_PERSP); guPerspective(GetPerspMatrix(0), &perspNorm, 45.0f, 1.3333334f, 100.0f, 12800.0f, 1.0f); gSPPerspNormalize(gDisplayListHead++, perspNorm); @@ -2576,7 +2573,6 @@ void func_80094660(struct GfxPool* arg0, UNUSED s32 arg1) { void render_checkered_flag(struct GfxPool* arg0, UNUSED s32 arg1) { u16 perspNorm; - move_segment_table_to_dmem(); guPerspective(GetPerspMatrix(0), &perspNorm, 45.0f, 1.3333334f, 100.0f, 12800.0f, 1.0f); gSPPerspNormalize(gDisplayListHead++, perspNorm); guLookAt(GetLookAtMatrix(1), 0.0f, 0.0f, (f32) gIntroModelZEye, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f); @@ -3738,35 +3734,7 @@ void clear_menu_textures(void) { sMenuTextureEntries = 0; } -/** - * Differs from memory.c with `+ 0x8` instead of `| 0x8` - * - * @param addr - * @return void* - */ -void* segmented_to_virtual_dupe(const void* addr) { -#ifdef TARGET_N64 - size_t segment = (uintptr_t) addr >> 24; - size_t offset = (uintptr_t) addr & 0x00FFFFFF; - - return (void*) ((gSegmentTable[segment] + offset) + 0x80000000); -#else - return addr; -#endif -} - -void* segmented_to_virtual_dupe_2(const void* addr) { -#ifdef TARGET_N64 - size_t segment = (uintptr_t) addr >> 24; - size_t offset = (uintptr_t) addr & 0x00FFFFFF; - - return (void*) ((gSegmentTable[segment] + offset) + 0x80000000); -#else - return addr; -#endif -} - -#include +#include void load_menu_img(MenuTexture* addr) { u16 size; @@ -3775,7 +3743,7 @@ void load_menu_img(MenuTexture* addr) { MenuTexture* texAddr; TextureMap* texMap = &sMenuTextureMap[0]; - texAddr = segmented_to_virtual_dupe(addr); + texAddr = addr; while (texAddr->textureData != NULL) { imgLoaded = false; for (i = 0; i < sMenuTextureEntries; i++) { @@ -3798,7 +3766,7 @@ void func_80099394(MenuTexture* addr) { MenuTexture* texAddr; TextureMap* texMap = &sMenuTextureMap[0]; - texAddr = segmented_to_virtual_dupe(addr); + texAddr = addr; while (texAddr->textureData != NULL) { imgLoaded = false; for (i = 0; i < sMenuTextureEntries; i++) { @@ -3823,7 +3791,7 @@ void func_8009952C(MenuTexture* addr) { MenuTexture* texAddr; TextureMap* texMap = &sMenuTextureMap[0]; - texAddr = segmented_to_virtual_dupe(addr); + texAddr = addr; while (texAddr->textureData != NULL) { imgLoaded = false; for (i = 0; i < sMenuTextureEntries; i++) { @@ -3875,7 +3843,7 @@ void func_80099958(MenuTexture* addr, s32 arg1, s32 arg2) { u16 size; MenuTexture* texAddr; - texAddr = segmented_to_virtual_dupe(addr); + texAddr = addr; while (texAddr->textureData != NULL) { if (texAddr->size != 0) { size = texAddr->size; @@ -4016,7 +3984,7 @@ void func_80099E60(MenuTexture* arg0, s32 arg1, s32 arg2) { while (var_v1->mk64Texture != NULL) { var_v1++; } - var_v1->mk64Texture = segmented_to_virtual_dupe(arg0); + var_v1->mk64Texture = arg0; var_v1->unk4 = arg1; var_v1->unk6 = arg2; } @@ -4133,7 +4101,7 @@ void func_8009A2F0(struct_8018E0E8_entry* arg0) { MenuTexture* var_a0; struct_8018E0E8_entry* temp_v0; - temp_v0 = segmented_to_virtual_dupe_2(arg0); + temp_v0 = arg0; var_a0 = temp_v0->mk64Texture; while (var_a0 != NULL) { if (var_a0 == NULL) { @@ -4192,7 +4160,6 @@ s32 func_8009A478(MkAnimation* anim, s32 arg1) { s32 i; struct_8018DEE0_entry* entry; - anim = segmented_to_virtual_dupe_2(anim); i = 0; while (D_8018DEE0[i].visible) { i++; @@ -4242,11 +4209,11 @@ void func_8009A640(s32 arg0, s32 arg1, s32 arg2, MkAnimation* arg3) { MkAnimation* temp_v0; MenuTexture* temp_a0; - temp_v0 = segmented_to_virtual_dupe_2(arg3); + temp_v0 = arg3; D_8018DEE0[arg0].textureSequence = temp_v0; D_8018DEE0[arg0].sequenceIndex = arg1; D_8018DEE0[arg0].frameCountDown = (temp_v0 + arg1)->frame_length; - temp_a0 = segmented_to_virtual_dupe(temp_v0[arg1].mk64Texture); + temp_a0 = temp_v0[arg1].mk64Texture; D_8018DEE0[arg0].unk14 ^= 1; func_80099E60(temp_a0, arg2, D_8018DEE0[arg0].unk14); } @@ -4307,7 +4274,7 @@ MenuTexture* func_8009A878(struct_8018DEE0_entry* arg0) { } var_v0 = (test + arg0->sequenceIndex); arg0->frameCountDown = var_v0->frame_length; - temp_a0 = segmented_to_virtual_dupe(var_v0->mk64Texture); + temp_a0 = var_v0->mk64Texture; if (arg0->unk14 != 0) { func_80099A94(temp_a0, arg0->menuTextureIndex); arg0->unk14 = 0; @@ -4339,7 +4306,7 @@ MenuTexture* func_8009A944(struct_8018DEE0_entry* arg0, s32 arg1) { } var_v0 = (test + arg0->sequenceIndex); arg0->frameCountDown = var_v0->frame_length; - temp_a0 = segmented_to_virtual_dupe(var_v0->mk64Texture); + temp_a0 = var_v0->mk64Texture; arg0->unk14 ^= 1; func_80099E60(temp_a0, arg1, arg0->unk14); } @@ -4547,7 +4514,7 @@ void func_8009B938(void) { } void func_8009B954(MenuTexture* arg0) { - D_8018E768[gNumD_8018E768Entries].textures = segmented_to_virtual_dupe(arg0); + D_8018E768[gNumD_8018E768Entries].textures = arg0; D_8018E768[gNumD_8018E768Entries].displayList = sGfxPtr; } @@ -4569,7 +4536,7 @@ Gfx* func_8009B9D0(Gfx* displayListHead, MenuTexture* textures) { found = false; for (index = 0; index < D_8018E768_SIZE; index++) { - if (D_8018E768[index].textures == segmented_to_virtual_dupe(textures)) { + if (D_8018E768[index].textures == textures) { displayList = D_8018E768[index].displayList; found = true; break; @@ -4663,7 +4630,7 @@ Gfx* render_menu_textures_alt(Gfx* arg0, MenuTexture* arg1, s32 column, s32 row) } Gfx* func_8009BC9C(Gfx* arg0, MenuTexture* texProps, s32 arg2, s32 arg3, s32 arg4, s32 width) { - MenuTexture* textureProps = segmented_to_virtual_dupe(texProps); + MenuTexture* textureProps = texProps; u8* texture; while (textureProps->textureData != NULL) { @@ -4716,7 +4683,7 @@ Gfx* print_letter(Gfx* arg0, MenuTexture* glyphTexture, f32 arg2, f32 arg3, s32 f32 thing1; MenuTexture* var_s0; - var_s0 = segmented_to_virtual_dupe(glyphTexture); + var_s0 = glyphTexture; while (var_s0->textureData != NULL) { var_v0 = 0; @@ -4768,7 +4735,7 @@ Gfx* print_letter_wide_right(Gfx* arg0, MenuTexture* glyphTexture, f32 arg2, f32 f32 thing1; MenuTexture* var_s0; - var_s0 = segmented_to_virtual_dupe(glyphTexture); + var_s0 = glyphTexture; while (var_s0->textureData != NULL) { var_v0 = 0; @@ -4818,7 +4785,7 @@ Gfx* func_8009C204(Gfx* arg0, MenuTexture* arg1, s32 arg2, s32 arg3, s32 arg4) { u8* temp_t0; MenuTexture* var_s1; - var_s1 = segmented_to_virtual_dupe(arg1); + var_s1 = arg1; while (var_s1->textureData != NULL) { var_s2 = 0; switch (var_s1->type) { @@ -4951,7 +4918,7 @@ Gfx* func_8009C708(Gfx* arg0, struct_8018DEE0_entry* arg1, s32 arg2, s32 arg3, s Gfx* temp; MenuTexture* var_s1; - var_s1 = segmented_to_virtual_dupe(arg1->textureSequence[arg1->sequenceIndex].mk64Texture); + var_s1 = arg1->textureSequence[arg1->sequenceIndex].mk64Texture; temp = D_02007728; while (var_s1->textureData != NULL) { var_t0 = 0; @@ -5477,9 +5444,9 @@ void func_8009CE64(s32 arg0) { break; default: if (gCCSelection == 3) { - gIsMirrorMode = 1; + set_mirror_mode(1); } else { - gIsMirrorMode = 0; + set_mirror_mode(0); } break; } @@ -6017,7 +5984,7 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { load_menu_img(D_02001874); var_ra->row = 0x00000069; for (var_v0 = 0; var_v0 < 133; var_v0++) { - load_menu_img(segmented_to_virtual_dupe(D_800E7AF8[var_v0])); + load_menu_img(D_800E7AF8[var_v0]); } break; case MENU_ITEM_TYPE_0D5: @@ -6043,11 +6010,11 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { func_8009B998(); break; case MENU_ITEM_TYPE_0D6: - var_ra->D_8018DEE0_index = animate_character_select_menu(segmented_to_virtual_dupe_2(D_800E7D34[0])); + var_ra->D_8018DEE0_index = animate_character_select_menu(D_800E7D34[0]); break; case MENU_ITEM_TYPE_0D7: for (var_v0 = 0; var_v0 < 10; var_v0++) { - load_menu_img(segmented_to_virtual_dupe(D_800E7D0C[var_v0])); + load_menu_img(D_800E7D0C[var_v0]); } break; case MENU_ITEM_TYPE_0D8: @@ -6095,9 +6062,9 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { case MENU_ITEM_UI_2P_GAME: case MENU_ITEM_UI_3P_GAME: case MENU_ITEM_UI_4P_GAME: - load_menu_img_comp_type(segmented_to_virtual_dupe(D_800E8234[((type - MENU_ITEM_UI_1P_GAME) * 2) + 0]), + load_menu_img_comp_type(D_800E8234[((type - MENU_ITEM_UI_1P_GAME) * 2) + 0], LOAD_MENU_IMG_TKMK00_ONCE); - load_menu_img(segmented_to_virtual_dupe(D_800E8234[((type - MENU_ITEM_UI_1P_GAME) * 2) + 1])); + load_menu_img(D_800E8234[((type - MENU_ITEM_UI_1P_GAME) * 2) + 1]); break; case CHARACTER_SELECT_MENU_PLAYER_SELECT_BANNER: load_menu_img_comp_type(D_02004B4C, LOAD_MENU_IMG_TKMK00_ONCE); @@ -6110,7 +6077,7 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { case CHARACTER_SELECT_MENU_2P_CURSOR: case CHARACTER_SELECT_MENU_3P_CURSOR: case CHARACTER_SELECT_MENU_4P_CURSOR: - load_menu_img(segmented_to_virtual_dupe(gMenuTexturesBorderPlayer[type - CHARACTER_SELECT_MENU_1P_CURSOR])); + load_menu_img(gMenuTexturesBorderPlayer[type - CHARACTER_SELECT_MENU_1P_CURSOR]); break; case CHARACTER_SELECT_MENU_MARIO: case CHARACTER_SELECT_MENU_LUIGI: @@ -6121,14 +6088,14 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { case CHARACTER_SELECT_MENU_WARIO: case CHARACTER_SELECT_MENU_BOWSER: var_ra->D_8018DEE0_index = animate_character_select_menu( - segmented_to_virtual_dupe_2(D_800E8320[type - CHARACTER_SELECT_MENU_MARIO])); - load_menu_img_comp_type(segmented_to_virtual_dupe(D_800E7D54[type - CHARACTER_SELECT_MENU_MARIO]), + D_800E8320[type - CHARACTER_SELECT_MENU_MARIO]); + load_menu_img_comp_type(D_800E7D54[type - CHARACTER_SELECT_MENU_MARIO], LOAD_MENU_IMG_TKMK00_ONCE); break; case MENU_ITEM_TYPE_0A0: case MENU_ITEM_TYPE_0A1: var_ra->D_8018DEE0_index = - animate_character_select_menu(segmented_to_virtual_dupe_2(D_800E8320[type - MENU_ITEM_TYPE_0A0])); + animate_character_select_menu(D_800E8320[type - MENU_ITEM_TYPE_0A0]); break; case COURSE_SELECT_OK: var_ra->param1 = 0x00000020; @@ -6151,7 +6118,7 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { case MENU_ITEM_TYPE_061: case MENU_ITEM_TYPE_062: var_ra->D_8018DEE0_index = animate_character_select_menu( - segmented_to_virtual_dupe_2(D_800E7E34[gCupCourseOrder[0][var_ra->type - 0x5F]])); + D_800E7E34[gCupCourseOrder[0][var_ra->type - 0x5F]]); break; case MENU_ITEM_TYPE_05E: var_ra->param2 = random_int(4U) + 2; @@ -6165,17 +6132,17 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { var_ra->param1 = (s32) GetCupIndex(); var_ra->param2 = func_800B54C0(GetCupIndex(), gCCSelection); var_ra->D_8018DEE0_index = animate_character_select_menu( - segmented_to_virtual_dupe_2(D_800E7E14[((gCCSelection / 2) * 4) - var_ra->param2 + 3])); + D_800E7E14[((gCCSelection / 2) * 4) - var_ra->param2 + 3]); var_ra->column = D_800E7268[0].column; var_ra->row = D_800E7268[0].row; break; case MENU_ITEM_TYPE_068: - load_menu_img_comp_type(segmented_to_virtual_dupe(D_800E8294[gCCSelection]), LOAD_MENU_IMG_TKMK00_ONCE); + load_menu_img_comp_type(D_800E8294[gCCSelection], LOAD_MENU_IMG_TKMK00_ONCE); var_ra->column = 0x00000037; var_ra->row = 0x000000C3; break; case MENU_ITEM_TYPE_069: - load_menu_img_comp_type(segmented_to_virtual_dupe(D_02004A0C), LOAD_MENU_IMG_TKMK00_ONCE); + load_menu_img_comp_type(D_02004A0C, LOAD_MENU_IMG_TKMK00_ONCE); if (controller_pak_1_status() == 0) { func_800B6708(); } else { @@ -6187,11 +6154,11 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { case MENU_ITEM_TYPE_079: case MENU_ITEM_TYPE_07A: case MENU_ITEM_TYPE_07B: - load_menu_img_comp_type(segmented_to_virtual_dupe(D_800E82F4[type - MENU_ITEM_TYPE_078]), + load_menu_img_comp_type(D_800E82F4[type - MENU_ITEM_TYPE_078], LOAD_MENU_IMG_TKMK00_ONCE); break; case MENU_ITEM_TYPE_08C: - load_menu_img_comp_type(segmented_to_virtual_dupe(seg2_data_texture), LOAD_MENU_IMG_TKMK00_ONCE); + load_menu_img_comp_type(seg2_data_texture, LOAD_MENU_IMG_TKMK00_ONCE); if (controller_pak_1_status() == 0) { func_800B6708(); } else { @@ -6200,7 +6167,7 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { } break; case MENU_ITEM_TYPE_08D: - load_menu_img(segmented_to_virtual_dupe(D_02001FA4)); + load_menu_img(D_02001FA4); break; case MENU_ITEM_TYPE_07C: case MENU_ITEM_TYPE_07D: @@ -6220,13 +6187,13 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { case MENU_ITEM_TYPE_08B: temp_v0_6 = var_ra->type - MENU_ITEM_TYPE_07C; load_menu_img_comp_type( - segmented_to_virtual_dupe(D_800E7D74[gCupCourseOrder[temp_v0_6 / 4][temp_v0_6 % 4]]), + D_800E7D74[gCupCourseOrder[temp_v0_6 / 4][temp_v0_6 % 4]], LOAD_MENU_IMG_MIO0_ONCE); temp_v0_6 = var_ra->type - MENU_ITEM_TYPE_07C; load_menu_img_comp_type( - segmented_to_virtual_dupe(D_800E7DC4[gCupCourseOrder[temp_v0_6 / 4][temp_v0_6 % 4]]), + D_800E7DC4[gCupCourseOrder[temp_v0_6 / 4][temp_v0_6 % 4]], LOAD_MENU_IMG_TKMK00_ONCE); - load_menu_img_comp_type(segmented_to_virtual_dupe(D_02004A0C), LOAD_MENU_IMG_TKMK00_ONCE); + load_menu_img_comp_type(D_02004A0C, LOAD_MENU_IMG_TKMK00_ONCE); break; case MENU_ITEM_TYPE_0B1: case MENU_ITEM_TYPE_0B2: @@ -6254,9 +6221,9 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { } else { var_a0 = D_800E8320[temp_a1]; } - var_ra->D_8018DEE0_index = func_8009A478(segmented_to_virtual_dupe_2(var_a0), stackPadding0); - load_menu_img_comp_type(segmented_to_virtual_dupe(D_800E7D54[temp_a1]), LOAD_MENU_IMG_TKMK00_ONCE); - load_menu_img(segmented_to_virtual_dupe(gMenuTexturesBorderPlayer[type - MENU_ITEM_TYPE_0B1])); + var_ra->D_8018DEE0_index = func_8009A478(var_a0, stackPadding0); + load_menu_img_comp_type(D_800E7D54[temp_a1], LOAD_MENU_IMG_TKMK00_ONCE); + load_menu_img(gMenuTexturesBorderPlayer[type - MENU_ITEM_TYPE_0B1]); break; case MENU_ITEM_TYPE_0BB: var_ra->param1 = func_800B5020(playerHUD[0].someTimer, gCharacterSelections[0]); @@ -6271,10 +6238,10 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { } break; case MENU_ITEM_DATA_COURSE_IMAGE: - var_ra->D_8018DEE0_index = animate_character_select_menu(segmented_to_virtual_dupe_2( - D_800E7E34[gCupCourseOrder[gTimeTrialDataCourseIndex / 4][gTimeTrialDataCourseIndex % 4]])); + var_ra->D_8018DEE0_index = animate_character_select_menu( + D_800E7E34[gCupCourseOrder[gTimeTrialDataCourseIndex / 4][gTimeTrialDataCourseIndex % 4]]); var_ra->param1 = gTimeTrialDataCourseIndex; - load_menu_img_comp_type(segmented_to_virtual_dupe(D_02004A0C), LOAD_MENU_IMG_TKMK00_ONCE); + load_menu_img_comp_type(D_02004A0C, LOAD_MENU_IMG_TKMK00_ONCE); func_8006EF60(); if (controller_pak_1_status() == 0) { func_800B6708(); @@ -6287,7 +6254,7 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { var_ra->state = (s32) gSoundMode; break; case MENU_ITEM_TYPE_0F1: - load_menu_img_comp_type(segmented_to_virtual_dupe(D_02004638), LOAD_MENU_IMG_TKMK00_ONCE); + load_menu_img_comp_type(D_02004638, LOAD_MENU_IMG_TKMK00_ONCE); break; case MENU_ITEM_TYPE_0BE: D_8018ED90 = 0; @@ -6304,8 +6271,8 @@ void add_menu_item(s32 type, s32 column, s32 row, s8 priority) { } else { var_a0 = D_800E8320[temp_a1]; } - var_ra->D_8018DEE0_index = func_8009A478(segmented_to_virtual_dupe_2(var_a0), 0); - load_menu_img_comp_type(segmented_to_virtual_dupe(D_800E7D54[temp_a1]), LOAD_MENU_IMG_TKMK00_ONCE); + var_ra->D_8018DEE0_index = func_8009A478(var_a0, 0); + load_menu_img_comp_type(D_800E7D54[temp_a1], LOAD_MENU_IMG_TKMK00_ONCE); break; case MENU_ITEM_TYPE_190: case MENU_ITEM_TYPE_191: @@ -6601,7 +6568,7 @@ void render_menus(MenuItem* arg0) { break; } var_a1 = MAIN_MENU_50CC; - sp9C = segmented_to_virtual_dupe(D_800E8294[arg0->type - MAIN_MENU_50CC]); + sp9C = D_800E8294[arg0->type - MAIN_MENU_50CC]; break; case MENU_ITEM_TYPE_016: case MENU_ITEM_TYPE_017: @@ -6609,7 +6576,7 @@ void render_menus(MenuItem* arg0) { var_v1 = -1; } else { var_a1 = MENU_ITEM_TYPE_016; - sp9C = segmented_to_virtual_dupe(D_800E82A4[arg0->type - MENU_ITEM_TYPE_016]); + sp9C = D_800E82A4[arg0->type - MENU_ITEM_TYPE_016]; } break; case MAIN_MENU_TIME_TRIALS_BEGIN: @@ -6618,7 +6585,7 @@ void render_menus(MenuItem* arg0) { var_v1 = -1; } else { var_a1 = MAIN_MENU_TIME_TRIALS_BEGIN; - sp9C = segmented_to_virtual_dupe(D_800E82AC[arg0->type - MAIN_MENU_TIME_TRIALS_BEGIN]); + sp9C = D_800E82AC[arg0->type - MAIN_MENU_TIME_TRIALS_BEGIN]; } break; } // End of switch @@ -6679,7 +6646,7 @@ void render_menus(MenuItem* arg0) { case CHARACTER_SELECT_MENU_DK: case CHARACTER_SELECT_MENU_WARIO: case CHARACTER_SELECT_MENU_BOWSER: - func_800A12BC(arg0, segmented_to_virtual_dupe(D_800E7D54[arg0->type - CHARACTER_SELECT_MENU_MARIO])); + func_800A12BC(arg0, D_800E7D54[arg0->type - CHARACTER_SELECT_MENU_MARIO]); /* fallthrough */ case MENU_ITEM_TYPE_0A0: case MENU_ITEM_TYPE_0A1: @@ -6693,14 +6660,14 @@ void render_menus(MenuItem* arg0) { func_800A8A98(arg0); gDisplayListHead = render_menu_textures( gDisplayListHead, - segmented_to_virtual_dupe(gMenuTexturesTrackSelection[arg0->type - COURSE_SELECT_MAP_SELECT]), + gMenuTexturesTrackSelection[arg0->type - COURSE_SELECT_MAP_SELECT], arg0->column, arg0->row); func_800A8CA4(arg0); break; case COURSE_SELECT_MAP_SELECT: gDisplayListHead = render_menu_textures( gDisplayListHead, - segmented_to_virtual_dupe(gMenuTexturesTrackSelection[arg0->type - COURSE_SELECT_MAP_SELECT]), + gMenuTexturesTrackSelection[arg0->type - COURSE_SELECT_MAP_SELECT], arg0->column, arg0->row); break; case MENU_ITEM_TYPE_05F: @@ -6750,7 +6717,7 @@ void render_menus(MenuItem* arg0) { gDisplayListHead = draw_box_fill(gDisplayListHead, arg0->column, arg0->row, arg0->column + 0x3F, arg0->row + 0x11, 1, 1, 1, 0x000000FF); gDisplayListHead = render_menu_textures( - gDisplayListHead, segmented_to_virtual_dupe(D_800E8294[gCCSelection]), arg0->column, arg0->row); + gDisplayListHead, D_800E8294[gCCSelection], arg0->column, arg0->row); break; case MENU_ITEM_TYPE_069: func_800A8F48(arg0); @@ -6839,7 +6806,7 @@ void render_menus(MenuItem* arg0) { var_v1 = arg0->type - MENU_ITEM_TYPE_0B1; gDisplayListHead = render_menu_textures( gDisplayListHead, - segmented_to_virtual_dupe(D_800E7D54[D_800EFD64[gCharacterSelections[var_v1]]]), arg0->column, + D_800E7D54[D_800EFD64[gCharacterSelections[var_v1]]], arg0->column, arg0->row); func_8009A7EC(arg0->D_8018DEE0_index, arg0->column, arg0->row, var_v1, arg0->param1); render_cursor_player(arg0, var_v1, 0x000000FF); @@ -6902,7 +6869,7 @@ void render_menus(MenuItem* arg0) { case MENU_ITEM_TYPE_130: if (arg0->state != 0) { gDisplayListHead = render_menu_textures( - gDisplayListHead, segmented_to_virtual_dupe(D_800E7D54[D_800EFD64[D_802874D8.unk1E]]), + gDisplayListHead, D_800E7D54[D_800EFD64[D_802874D8.unk1E]], arg0->column, arg0->row); func_8009A7EC(arg0->D_8018DEE0_index, arg0->column, arg0->row, 0, arg0->param1); } @@ -6987,7 +6954,7 @@ void func_800A08D8(u8 arg0, s32 column, s32 row) { arg0 = 0x2B; } gDisplayListHead = - render_menu_textures(gDisplayListHead, segmented_to_virtual_dupe(D_800E7AF8[arg0]), column, row); + render_menu_textures(gDisplayListHead, D_800E7AF8[arg0], column, row); } } } @@ -7089,7 +7056,7 @@ void func_800A0DFC(void) { temp_t6 = var_s0 % 10; var_s0 /= 10; gDisplayListHead = - render_menu_textures(gDisplayListHead, segmented_to_virtual_dupe(D_800E7D0C[temp_t6]), var_s1, 0x000000B8); + render_menu_textures(gDisplayListHead, D_800E7D0C[temp_t6], var_s1, 0x000000B8); var_s1 -= 9; } while (var_s0 != 0); } @@ -7126,15 +7093,15 @@ void func_800A0FA4(MenuItem* arg0, s32 arg1) { case 2: case 3: gDisplayListHead = render_menu_textures( - gDisplayListHead, segmented_to_virtual_dupe(D_800E8234[(arg1 * 2) + 0]), arg0->column, arg0->row); + gDisplayListHead, D_800E8234[(arg1 * 2) + 0], arg0->column, arg0->row); gDisplayListHead = render_menu_textures( - gDisplayListHead, segmented_to_virtual_dupe(D_800E8234[(arg1 * 2) + 1]), arg0->column, arg0->row); + gDisplayListHead, D_800E8234[(arg1 * 2) + 1], arg0->column, arg0->row); break; case 1: case 4: - gDisplayListHead = func_8009BC9C(gDisplayListHead, segmented_to_virtual_dupe(D_800E8234[(arg1 * 2) + 0]), + gDisplayListHead = func_8009BC9C(gDisplayListHead, D_800E8234[(arg1 * 2) + 0], arg0->column, arg0->row, 2, arg0->param1); - gDisplayListHead = func_8009BC9C(gDisplayListHead, segmented_to_virtual_dupe(D_800E8234[(arg1 * 2) + 1]), + gDisplayListHead = func_8009BC9C(gDisplayListHead, D_800E8234[(arg1 * 2) + 1], arg0->column, arg0->row, 2, arg0->param1); break; } @@ -7170,7 +7137,7 @@ void render_cursor_player(MenuItem* arg0, s32 arg1, s32 arg2) { gDPSetPrimColor(gDisplayListHead++, 0, 0, temp_v1->red, temp_v1->green, temp_v1->blue, temp_v1->alpha); gDPSetEnvColor(gDisplayListHead++, arg2, arg2, arg2, 0x00); gDisplayListHead = render_menu_textures( - gDisplayListHead, segmented_to_virtual_dupe(gMenuTexturesBorderPlayer[arg1]), arg0->column, arg0->row); + gDisplayListHead, gMenuTexturesBorderPlayer[arg1], arg0->column, arg0->row); } void func_800A12BC(MenuItem* arg0, MenuTexture* arg1) { @@ -7257,17 +7224,17 @@ void func_800A1500(MenuItem* arg0) { void func_800A15EC(MenuItem* arg0) { s16 courseId = gCupCourseOrder[(arg0->type - 0x7C) / 4][(arg0->type - 0x7C) % 4]; gDisplayListHead = - func_8009C204(gDisplayListHead, segmented_to_virtual_dupe(D_800E7D74[courseId]), arg0->column, arg0->row, 2); + func_8009C204(gDisplayListHead, D_800E7D74[courseId], arg0->column, arg0->row, 2); gDisplayListHead = draw_box(gDisplayListHead, arg0->column, arg0->row + 0x27, arg0->column + 0x40, arg0->row + 0x30, 0, 0, 0, 0xFF); - gDisplayListHead = func_8009C204(gDisplayListHead, segmented_to_virtual_dupe(D_800E7DC4[courseId]), arg0->column, + gDisplayListHead = func_8009C204(gDisplayListHead, D_800E7DC4[courseId], arg0->column, arg0->row + 0x27, 3); if (func_800B639C(arg0->type - 0x7C) >= 0) { // The "^ 0" is required to force the use of v1 instead of a 4th s* register gDisplayListHead = draw_flash_select_case_slow(gDisplayListHead, arg0->column + 0x20, arg0->row ^ 0, arg0->column + 0x3F, arg0->row + 9); gDisplayListHead = - func_8009C204(gDisplayListHead, segmented_to_virtual_dupe(&D_02004A0C), arg0->column + 0x20, arg0->row, 2); + func_8009C204(gDisplayListHead, &D_02004A0C, arg0->column + 0x20, arg0->row, 2); } } @@ -7289,7 +7256,7 @@ void func_800A1780(MenuItem* arg0) { alpha = ((temp_v1->alpha * temp_a2) + (temp_a1->alpha * arg0->param1)) / 256; gDPSetPrimColor(gDisplayListHead++, 0, 0, red, green, blue, alpha); gDisplayListHead = - render_menu_textures(gDisplayListHead, segmented_to_virtual_dupe(D_02001FA4), arg0->column, arg0->row); + render_menu_textures(gDisplayListHead, D_02001FA4, arg0->column, arg0->row); } // render course preview @@ -9675,7 +9642,6 @@ void func_800A8564(MenuItem* item) { if (item->param1 < 0x20) { sp34 = (item->param1 << 5) / 64; - var_a0 = segmented_to_virtual_dupe(var_a0); temp_t0 = item->column + var_a0->dX; temp_a2 = item->row + var_a0->dY; if (var_a1 != 0) { @@ -9835,7 +9801,7 @@ void func_800A8F48(UNUSED MenuItem* arg0) { temp_s2 = temp_v1 + 0x20; gDisplayListHead = func_80098FC8(gDisplayListHead, temp_s2, (s32) temp_s0, temp_v1 + 0x3F, temp_s0 + 9); - gDisplayListHead = func_8009C204(gDisplayListHead, segmented_to_virtual_dupe(D_02004A0C), temp_s2, + gDisplayListHead = func_8009C204(gDisplayListHead, &D_02004A0C, temp_s2, (s32) temp_s0, 2); } } @@ -10062,7 +10028,7 @@ void func_800A9710(MenuItem* arg0) { } if (phi_v0 != arg0->state) { arg0->state = phi_v0; - func_8009A594(arg0->D_8018DEE0_index, 0, segmented_to_virtual_dupe_2(D_800E7D34[phi_v0])); + func_8009A594(arg0->D_8018DEE0_index, 0, D_800E7D34[phi_v0]); } } @@ -10524,13 +10490,13 @@ void func_800AA5C8(MenuItem* arg0, s8 arg1) { case 0: if (func_800AAFCC((s32) arg1) >= 0) { arg0->subState = 2; - func_8009A594(arg0->D_8018DEE0_index, 0, segmented_to_virtual_dupe_2(D_800E8340[temp_v1])); + func_8009A594(arg0->D_8018DEE0_index, 0, D_800E8340[temp_v1]); } break; case 2: if (func_800AAFCC((s32) arg1) < 0) { arg0->subState = 0; - func_8009A594(arg0->D_8018DEE0_index, 0, segmented_to_virtual_dupe_2(D_800E8320[temp_v1])); + func_8009A594(arg0->D_8018DEE0_index, 0, D_800E8320[temp_v1]); } break; } @@ -10555,24 +10521,24 @@ void func_800AA69C(MenuItem* arg0) { if ((var_a0 != 0) && (gCharacterGridIsSelected[temp_v0] != 0)) { arg0->subState = 1; func_8009A594(arg0->D_8018DEE0_index, 0, - segmented_to_virtual_dupe_2(gCharacterCelebrateAnimation[temp_a0])); + gCharacterCelebrateAnimation[temp_a0]); } else { temp_v0 = random_int(0x00C8U); if (temp_v0 >= 0xC6) { arg0->subState = 4; func_8009A594(arg0->D_8018DEE0_index, 0, - segmented_to_virtual_dupe_2(gCharacterSingleBlinkAnimation[temp_a0])); + gCharacterSingleBlinkAnimation[temp_a0]); } else if (temp_v0 >= 0xC5) { arg0->subState = 5; func_8009A594(arg0->D_8018DEE0_index, 0, - segmented_to_virtual_dupe_2(gCharacterDoubleBlinkAnimation[temp_a0])); + gCharacterDoubleBlinkAnimation[temp_a0]); } } break; case 1: if (D_8018DEE0[arg0->D_8018DEE0_index].sequenceIndex >= D_800E8440[temp_a0]) { arg0->subState = 2; - func_8009A594(arg0->D_8018DEE0_index, 0, segmented_to_virtual_dupe_2(D_800E83A0[temp_a0])); + func_8009A594(arg0->D_8018DEE0_index, 0, D_800E83A0[temp_a0]); } else if ((gCharacterGridIsSelected[temp_v0] == 0) && (var_a0 != 0)) { arg0->subState = 3; func_8009A594(arg0->D_8018DEE0_index, @@ -10589,12 +10555,12 @@ void func_800AA69C(MenuItem* arg0) { case 3: if (D_8018DEE0[arg0->D_8018DEE0_index].sequenceIndex >= D_800E8460[temp_a0]) { arg0->subState = 0; - func_8009A594(arg0->D_8018DEE0_index, 0, segmented_to_virtual_dupe_2(D_800E8360[temp_a0])); + func_8009A594(arg0->D_8018DEE0_index, 0, D_800E8360[temp_a0]); } else if ((gCharacterGridIsSelected[temp_v0] != 0) && (var_a0 != 0)) { arg0->subState = 1; func_8009A594(arg0->D_8018DEE0_index, D_800E8460[temp_a0] - D_8018DEE0[arg0->D_8018DEE0_index].sequenceIndex, - segmented_to_virtual_dupe_2(gCharacterCelebrateAnimation[temp_a0])); + gCharacterCelebrateAnimation[temp_a0]); } break; case 4: @@ -10602,7 +10568,7 @@ void func_800AA69C(MenuItem* arg0) { if ((gCharacterGridIsSelected[temp_v0] != 0) && (var_a0 != 0)) { arg0->subState = 1; func_8009A594(arg0->D_8018DEE0_index, 0, - segmented_to_virtual_dupe_2(gCharacterCelebrateAnimation[temp_a0])); + gCharacterCelebrateAnimation[temp_a0]); } else { if (arg0->subState == 4) { var_v0 = D_800E8480[temp_a0]; @@ -10611,7 +10577,7 @@ void func_800AA69C(MenuItem* arg0) { } if (D_8018DEE0[arg0->D_8018DEE0_index].sequenceIndex >= var_v0) { arg0->subState = 0; - func_8009A594(arg0->D_8018DEE0_index, 0, segmented_to_virtual_dupe_2(D_800E8360[temp_a0])); + func_8009A594(arg0->D_8018DEE0_index, 0, D_800E8360[temp_a0]); } } break; @@ -10704,7 +10670,7 @@ void func_800AAC18(MenuItem* arg0) { arg0->row = (s32) var_t0->row; arg0->state = 2; arg0->subState = 2; - func_8009A594(arg0->D_8018DEE0_index, 0, segmented_to_virtual_dupe_2(D_800E8340[temp_a1])); + func_8009A594(arg0->D_8018DEE0_index, 0, D_800E8340[temp_a1]); } break; } @@ -11011,7 +10977,7 @@ void func_800AB290(MenuItem* arg0) { if (arg0->param1 != GetCupIndex()) { arg0->param1 = GetCupIndex(); func_8009A594(arg0->D_8018DEE0_index, 0, - segmented_to_virtual_dupe_2(D_800E7E34[gCupCourseOrder[GetCupIndex()][arg0->type - 0x5F]])); + D_800E7E34[gCupCourseOrder[GetCupIndex()][arg0->type - 0x5F]]); } } @@ -11176,7 +11142,7 @@ void func_800AB9B0(MenuItem* arg0) { arg0->param1 = GetCupIndex(); arg0->param2 = func_800B54C0((s32) GetCupIndex(), gCCSelection); func_8009A594(arg0->D_8018DEE0_index, 0, - segmented_to_virtual_dupe_2(D_800E7E14[((gCCSelection / 2) * 4) - arg0->param2 + 3])); + D_800E7E14[((gCCSelection / 2) * 4) - arg0->param2 + 3]); arg0->column = (s32) D_800E7268->column; arg0->row = D_800E7268->row; } @@ -11774,7 +11740,7 @@ void func_800ACF40(MenuItem* arg0) { if (arg0->param2 >= 0x1F) { if (find_menu_items_dupe(0x000000B0)->state >= 2) { func_8009A640(arg0->D_8018DEE0_index, 0, temp_a2, - segmented_to_virtual_dupe_2(gCharacterCelebrateAnimation[temp_a1])); + gCharacterCelebrateAnimation[temp_a1]); arg0->state = 3; func_800CA24C(temp_a2); func_800C90F4(temp_a2, (gCharacterSelections[temp_a2] * 0x10) + 0x29008007); @@ -11784,7 +11750,7 @@ void func_800ACF40(MenuItem* arg0) { break; case 3: if (D_8018DEE0[arg0->D_8018DEE0_index].sequenceIndex >= D_800E8440[temp_a1]) { - func_8009A640(arg0->D_8018DEE0_index, 0, temp_a2, segmented_to_virtual_dupe_2(D_800E83A0[temp_a1])); + func_8009A640(arg0->D_8018DEE0_index, 0, temp_a2, D_800E83A0[temp_a1]); arg0->state = 4; } break; @@ -12583,8 +12549,7 @@ void func_800AEDBC(MenuItem* arg0) { if (arg0->param1 != gTimeTrialDataCourseIndex) { arg0->param1 = (s32) gTimeTrialDataCourseIndex; func_8009A594(arg0->D_8018DEE0_index, 0, - segmented_to_virtual_dupe_2( - D_800E7E34[gCupCourseOrder[gTimeTrialDataCourseIndex / 4][gTimeTrialDataCourseIndex % 4]])); + D_800E7E34[gCupCourseOrder[gTimeTrialDataCourseIndex / 4][gTimeTrialDataCourseIndex % 4]]); if (controller_pak_1_status() == PFS_NO_ERROR) { func_800B6708(); } else { @@ -12756,7 +12721,7 @@ void func_800AF270(MenuItem* arg0) { } else { arg0->state = 3; func_8009A640(arg0->D_8018DEE0_index, 0, sp30, - segmented_to_virtual_dupe_2(gCharacterCelebrateAnimation[temp_v0])); + gCharacterCelebrateAnimation[temp_v0]); func_800CA0B8(); func_800C90F4(0U, (sp30 * 0x10) + SOUND_ARG_LOAD(0x29, 0x00, 0x80, 0x07)); func_800CA0A0(); @@ -12765,7 +12730,7 @@ void func_800AF270(MenuItem* arg0) { break; case 3: if (D_8018DEE0[arg0->D_8018DEE0_index].sequenceIndex >= D_800E8440[temp_v0]) { - func_8009A640(arg0->D_8018DEE0_index, 0, sp30, segmented_to_virtual_dupe_2(D_800E83A0[temp_v0])); + func_8009A640(arg0->D_8018DEE0_index, 0, sp30, D_800E83A0[temp_v0]); arg0->state = 4; } break; diff --git a/src/menu_items.h b/src/menu_items.h index ae65961e4..d6f7b7e60 100644 --- a/src/menu_items.h +++ b/src/menu_items.h @@ -421,8 +421,6 @@ Gfx* draw_box_wide(Gfx*, s32, s32, s32, s32, u32, u32, u32, u32); Gfx* func_80098FC8(Gfx*, s32, s32, s32, s32); void clear_menu_textures(void); void load_menu_img(MenuTexture*); -void* segmented_to_virtual_dupe(const void*); -void* segmented_to_virtual_dupe_2(const void*); void load_menu_img_mio0_forced(MenuTexture*); void load_menu_img_comp_type(MenuTexture*, s32); void func_80099958(MenuTexture*, s32, s32); diff --git a/src/menus.c b/src/menus.c index cfc6394be..68e3b8c33 100644 --- a/src/menus.c +++ b/src/menus.c @@ -1255,20 +1255,20 @@ void setup_game_mode_selected(void) { case GRAND_PRIX: gCCSelection = subMenuMode; gPlaceItemBoxes = 1; - gIsMirrorMode = (subMenuMode == CC_EXTRA) ? 1 : 0; + set_mirror_mode((subMenuMode == CC_EXTRA) ? 1 : 0); break; case VERSUS: gCCSelection = subMenuMode; gPlaceItemBoxes = 1; - gIsMirrorMode = (subMenuMode == CC_EXTRA) ? 1 : 0; + set_mirror_mode((subMenuMode == CC_EXTRA) ? 1 : 0); break; case BATTLE: gPlaceItemBoxes = 1; - gIsMirrorMode = 0; + set_mirror_mode(0); break; case TIME_TRIALS: gCCSelection = CC_100; - gIsMirrorMode = 0; + set_mirror_mode(0); gPlaceItemBoxes = 0; if ((subMenuMode && subMenuMode) && subMenuMode) {} @@ -1895,7 +1895,7 @@ void load_menu_states(s32 menuSelection) { } case 0: case START_MENU: { - gIsMirrorMode = 0; + set_mirror_mode(0); gEnableDebugMode = CVarGetInteger("gEnableDebugMode", 0); CM_SetCup(GetMushroomCup()); gCupSelection = MUSHROOM_CUP; @@ -1916,7 +1916,7 @@ void load_menu_states(s32 menuSelection) { case 1: case MAIN_MENU: { gEnableDebugMode = CVarGetInteger("gEnableDebugMode", 0); - gIsMirrorMode = 0; + set_mirror_mode(0); gCourseMapInit = 0; func_800B5F30(); func_8000F0E0(); diff --git a/src/port/Engine.cpp b/src/port/Engine.cpp index 2bebc766d..9f0d6d3f9 100644 --- a/src/port/Engine.cpp +++ b/src/port/Engine.cpp @@ -2,6 +2,7 @@ #include "StringHelper.h" #include "GameExtractor.h" +#include "mods/ModManager.h" #include "ui/ImguiUI.h" #include "libultraship/src/Context.h" #include "libultraship/src/controller/controldevice/controller/mapping/ControllerDefaultMappings.h" @@ -79,11 +80,6 @@ GameEngine::GameEngine() { // Initialize context properties early to recognize paths properly for non-portable builds this->context = Ship::Context::CreateUninitializedInstance("Spaghetti Kart", "spaghettify", "spaghettify.cfg.json"); - const std::string main_path = Ship::Context::GetPathRelativeToAppDirectory("mk64.o2r"); - const std::string assets_path = Ship::Context::LocateFileAcrossAppDirs("spaghetti.o2r"); - - std::vector archiveFiles; - #ifdef __SWITCH__ Ship::Switch::Init(Ship::PreInitPhase); Ship::Switch::Init(Ship::PostInitPhase); @@ -93,36 +89,6 @@ GameEngine::GameEngine() { AllocConsole(); #endif - if (std::filesystem::exists(main_path)) { - archiveFiles.push_back(main_path); - } else { - if (ShowYesNoBox("No O2R Files", "No O2R files found. Generate one now?") == IDYES) { - if (!GenAssetFile()) { - ShowMessage("Error", "An error occured, no O2R file was generated.\n\nExiting..."); - exit(1); - } else { - archiveFiles.push_back(main_path); - } - } else { - exit(1); - } - } - - if (std::filesystem::exists(assets_path)) { - archiveFiles.push_back(assets_path); - } - if (const std::string patches_path = Ship::Context::GetPathRelativeToAppDirectory("mods"); - !patches_path.empty() && std::filesystem::exists(patches_path)) { - if (std::filesystem::is_directory(patches_path)) { - for (const auto& p : std::filesystem::recursive_directory_iterator(patches_path)) { - auto ext = p.path().extension().string(); - if (StringHelper::IEquals(ext, ".zip") || StringHelper::IEquals(ext, ".o2r")) { - archiveFiles.push_back(p.path().generic_string()); - } - } - } - } - this->context->InitConfiguration(); // without this line InitConsoleVariables fails at Config::Reload() this->context->InitConsoleVariables(); // without this line the controldeck constructor failes in // ShipDeviceIndexMappingManager::UpdateControllerNamesFromConfig() @@ -182,7 +148,7 @@ GameEngine::GameEngine() { ); auto controlDeck = std::make_shared(std::vector(), defaultMappings); - this->context->InitResourceManager(archiveFiles, {}, 3); // without this line InitWindow fails in Gui::Init() + this->context->InitResourceManager({}, {}, 3); // without this line InitWindow fails in Gui::Init() this->context->InitConsole(); // without this line the GuiWindow constructor fails in ConsoleWindow::InitElement() auto gui = std::make_shared(std::vector>({})); @@ -191,7 +157,7 @@ GameEngine::GameEngine() { // auto wnd = std::make_shared(std::vector>({})); // auto wnd = std::dynamic_pointer_cast(Ship::Context::GetInstance()->GetWindow()); - this->context->Init(archiveFiles, {}, 3, { 26800, 512, 1100 }, wnd, controlDeck); + this->context->Init({}, {}, 3, { 26800, 512, 1100 }, wnd, controlDeck); #ifndef __SWITCH__ Ship::Context::GetInstance()->GetLogger()->set_level( @@ -360,6 +326,7 @@ int GameEngine::ShowYesNoBox(const char* title, const char* box) { void GameEngine::Create() { const auto instance = Instance = new GameEngine(); + InitModsSystem(); instance->gHMAS = new HMAS(); instance->AudioInit(); GameUI::SetupGuiElements(); @@ -373,6 +340,7 @@ void GameEngine::Destroy() { #ifdef __SWITCH__ Ship::Switch::Exit(); #endif + UnloadMods(); GameUI::Destroy(); delete GameEngine::Instance; GameEngine::Instance = nullptr; @@ -712,7 +680,7 @@ extern "C" uint32_t GameEngine_GetGameVersion() { return 0x00000001; } -static const char* sOtrSignature = "__OTR__"; +static const char* const sOtrSignature = "__OTR__"; extern "C" bool GameEngine_OTRSigCheck(const char* data) { return strncmp(data, sOtrSignature, strlen(sOtrSignature)) == 0; @@ -725,7 +693,7 @@ extern "C" int32_t GameEngine_ResourceGetTexTypeByName(const char* name) { return (int16_t) res->Type; } - SPDLOG_ERROR("Given texture path is a non-existent resource"); + SPDLOG_ERROR("Given texture path {} is a non-existent resource", name); return -1; } diff --git a/src/port/Game.cpp b/src/port/Game.cpp index d3fb061e0..7775d8aa3 100644 --- a/src/port/Game.cpp +++ b/src/port/Game.cpp @@ -26,15 +26,10 @@ #include "engine/courses/DoubleDeck.h" #include "engine/courses/DKJungle.h" #include "engine/courses/BigDonut.h" -#include "engine/courses/Harbour.h" #include "engine/courses/TestCourse.h" -#include "engine/actors/Finishline.h" #include "engine/courses/PodiumCeremony.h" -#include "engine/ModelLoader.h" -#include "engine/actors/BowserStatue.h" - #include "engine/GarbageCollector.h" #include "engine/TrainCrossing.h" @@ -46,10 +41,7 @@ #include "engine/HM_Intro.h" #include "engine/editor/Editor.h" -#include "engine/editor/EditorMath.h" #include "engine/editor/SceneManager.h" -#include "engine/Rulesets.h" -#include "engine/Registry.h" #include "RegisteredActors.h" #ifdef _WIN32 @@ -60,10 +52,8 @@ extern "C" { #include "main.h" #include "audio/load.h" #include "audio/external.h" -#include "networking/networking.h" #include "render_courses.h" #include "menus.h" -#include "update_objects.h" // #include "engine/wasm.h" } @@ -87,8 +77,6 @@ Cup* gStarCup; Cup* gSpecialCup; Cup* gBattleCup; -ModelLoader gModelLoader; - HarbourMastersIntro gMenuIntro; Editor::Editor gEditor; @@ -153,21 +141,6 @@ void CustomEngineInit() { //SelectMarioRaceway(); // This results in a nullptr SetMarioRaceway(); - // ModelLoader::LoadModelList bowserStatueList = { - // .course = gBowsersCastle, - // .gfxBuffer = &gBowserStatueGfx[0], - // .gfxBufferSize = 162, - // .gfxStart = (0x2BB8 / 8), // 0x2BB8 / sizeof(OldGfx) - // .vtxBuffer = &gBowserStatueVtx[0], - // .vtxBufferSize = 717, - // .vtxStart = 1942, - // }; - - // Model loader systems allows cutting pieces out of courses and making them actors. - // Commented out due to alleged stability issues. - // gModelLoader.Add(bowserStatueList); - - // gModelLoader.Load(); RegisterGameActors(); } @@ -196,8 +169,8 @@ void HM_DrawIntro() { // Set default course; mario raceway void SetMarioRaceway(void) { SetCourseById(0); - gWorldInstance.CurrentCup = gMushroomCup; - gWorldInstance.CurrentCup->CursorPosition = 3; + gWorldInstance.SetCurrentCup(gMushroomCup); + gWorldInstance.GetCurrentCup()->CursorPosition = 3; gWorldInstance.CupIndex = 0; } @@ -210,11 +183,11 @@ u32 WorldPreviousCup(void) { } void CM_SetCup(void* cup) { - gWorldInstance.SetCup((Cup*) cup); + gWorldInstance.SetCurrentCup((Cup*) cup); } void* GetCup() { - return gWorldInstance.CurrentCup; + return gWorldInstance.GetCurrentCup(); } u32 GetCupIndex(void) { @@ -226,13 +199,18 @@ void CM_SetCupIndex(size_t index) { } const char* GetCupName(void) { - return gWorldInstance.CurrentCup->Name; + return gWorldInstance.GetCurrentCup()->Name; } void LoadCourse() { gWorldInstance.GetRaceManager().Load(); } +// Unload can be call to frequently so even when if the course wasn't loaded before +void UnLoadCourse() { + gWorldInstance.GetRaceManager().UnLoad(); +} + size_t GetCourseIndex() { return gWorldInstance.CourseIndex; } @@ -254,7 +232,7 @@ void SetCourseById(s32 course) { return; } gWorldInstance.CourseIndex = course; - gWorldInstance.CurrentCourse = gWorldInstance.Courses[gWorldInstance.CourseIndex]; + gWorldInstance.SetCurrentCourse(gWorldInstance.Courses[gWorldInstance.CourseIndex]); } void CM_VehicleCollision(s32 playerId, Player* player) { @@ -323,36 +301,30 @@ s32 CM_GetCrossingOnTriggered(uintptr_t* crossing) { } } -void CM_LoadTextures() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->LoadTextures(); - } -} - void CM_RenderCourse(struct UnkStruct_800DC5EC* arg0) { - if (gWorldInstance.CurrentCourse->IsMod() == false) { + if (gWorldInstance.GetCurrentCourse()->IsMod() == false) { if ((CVarGetInteger("gFreecam", 0) == true)) { // Render credits courses //gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); //gSPSetGeometryMode(gDisplayListHead++, G_SHADE | G_CULL_BACK | G_SHADING_SMOOTH); - render_credits(); - return; + // render_credits(); + // return; } } - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->Render(arg0); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->Render(arg0); } } void CM_RenderCredits() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->RenderCredits(); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->RenderCredits(); } } void CM_TickActors() { - if (gWorldInstance.CurrentCourse) { + if (gWorldInstance.GetCurrentCourse()) { gWorldInstance.TickActors(); } } @@ -371,11 +343,11 @@ void CM_DrawStaticMeshActors() { } void CM_BeginPlay() { - if (gWorldInstance.CurrentCourse) { + if (gWorldInstance.GetCurrentCourse()) { // This line should likely be moved. // It's here so PreInit is after the scene file has been loaded // It used to be at the start of BeginPlay - Editor::LoadLevel(gWorldInstance.CurrentCourse.get(), gWorldInstance.CurrentCourse->SceneFilePtr); + Editor::LoadLevel(gWorldInstance.GetCurrentCourse().get(), gWorldInstance.GetCurrentCourse()->SceneFilePtr); } gWorldInstance.GetRaceManager().PreInit(); gWorldInstance.GetRaceManager().BeginPlay(); @@ -383,7 +355,7 @@ void CM_BeginPlay() { } void CM_TickObjects() { - if (gWorldInstance.CurrentCourse) { + if (gWorldInstance.GetCurrentCourse()) { gWorldInstance.TickObjects(); } } @@ -391,13 +363,13 @@ void CM_TickObjects() { // A couple objects such as lakitu are ticked inside of process_game_tick which support 60fps. // This is a fallback to support that. void CM_TickObjects60fps() { - if (gWorldInstance.CurrentCourse) { + if (gWorldInstance.GetCurrentCourse()) { gWorldInstance.TickObjects60fps(); } } void CM_DrawObjects(s32 cameraId) { - if (gWorldInstance.CurrentCourse) { + if (gWorldInstance.GetCurrentCourse()) { gWorldInstance.DrawObjects(cameraId); } } @@ -415,96 +387,96 @@ void CM_Editor_SetLevelDimensions(s16 minX, s16 maxX, s16 minZ, s16 maxZ, s16 mi } void CM_TickParticles() { - if (gWorldInstance.CurrentCourse) { + if (gWorldInstance.GetCurrentCourse()) { gWorldInstance.TickParticles(); } } void CM_DrawParticles(s32 cameraId) { - if (gWorldInstance.CurrentCourse) { + if (gWorldInstance.GetCurrentCourse()) { gWorldInstance.DrawParticles(cameraId); } } void CM_InitClouds() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->InitClouds(); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->InitClouds(); } } void CM_UpdateClouds(s32 arg0, Camera* camera) { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->UpdateClouds(arg0, camera); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->UpdateClouds(arg0, camera); } } void CM_Waypoints(Player* player, int8_t playerId) { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->Waypoints(player, playerId); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->Waypoints(player, playerId); } } void CM_SomeCollisionThing(Player* player, Vec3f arg1, Vec3f arg2, Vec3f arg3, f32* arg4, f32* arg5, f32* arg6, f32* arg7) { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->SomeCollisionThing(player, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->SomeCollisionThing(player, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } } void CM_InitCourseObjects() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->InitCourseObjects(); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->InitCourseObjects(); } } void CM_UpdateCourseObjects() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->UpdateCourseObjects(); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->UpdateCourseObjects(); } TrainSmokeTick(); } void CM_RenderCourseObjects(s32 cameraId) { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->RenderCourseObjects(cameraId); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->RenderCourseObjects(cameraId); } TrainSmokeDraw(cameraId); } void CM_SomeSounds() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->SomeSounds(); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->SomeSounds(); } } void CM_CreditsSpawnActors() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->CreditsSpawnActors(); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->CreditsSpawnActors(); } } void CM_WhatDoesThisDo(Player* player, int8_t playerId) { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->WhatDoesThisDo(player, playerId); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->WhatDoesThisDo(player, playerId); } } void CM_WhatDoesThisDoAI(Player* player, int8_t playerId) { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->WhatDoesThisDoAI(player, playerId); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->WhatDoesThisDoAI(player, playerId); } } void CM_SetStaffGhost() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->SetStaffGhost(); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->SetStaffGhost(); } } Properties* CM_GetProps() { - if (gWorldInstance.CurrentCourse) { - return &gWorldInstance.CurrentCourse->Props; + if (gWorldInstance.GetCurrentCourse()) { + return &gWorldInstance.GetCurrentCourse()->Props; } return NULL; } @@ -514,15 +486,15 @@ Properties* CM_GetPropsCourseId(s32 courseId) { } void CM_ScrollingTextures() { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->ScrollingTextures(); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->ScrollingTextures(); } } void CM_DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter, uint16_t cameraRot, uint16_t playerDirection) { - if (gWorldInstance.CurrentCourse) { - gWorldInstance.CurrentCourse->DrawWater(screen, pathCounter, cameraRot, playerDirection); + if (gWorldInstance.GetCurrentCourse()) { + gWorldInstance.GetCurrentCourse()->DrawWater(screen, pathCounter, cameraRot, playerDirection); } } @@ -571,24 +543,24 @@ void CM_ActivateReverseLakitu(s32 playerId) { } size_t GetCupCursorPosition() { - return gWorldInstance.CurrentCup->CursorPosition; + return gWorldInstance.GetCurrentCup()->CursorPosition; } void SetCupCursorPosition(size_t position) { - gWorldInstance.CurrentCup->SetCourse(position); + gWorldInstance.GetCurrentCup()->SetCourse(position); // gWorldInstance.CurrentCup->CursorPosition = position; } size_t GetCupSize() { - return gWorldInstance.CurrentCup->GetSize(); + return gWorldInstance.GetCurrentCup()->GetSize(); } void SetCourseFromCup() { - gWorldInstance.CurrentCourse = gWorldInstance.CurrentCup->GetCourse(); + gWorldInstance.SetCurrentCourse(gWorldInstance.GetCurrentCup()->GetCourse()); } void* GetCourse(void) { - return gWorldInstance.CurrentCourse.get(); + return gWorldInstance.GetCurrentCourse().get(); } struct Actor* CM_GetActor(size_t index) { @@ -678,31 +650,31 @@ void CM_ActorCollision(Player* player, Actor* actor) { f32 CM_GetWaterLevel(Vec3f pos, Collision* collision) { FVector fPos = {pos[0], pos[1], pos[2]}; - return gWorldInstance.CurrentCourse->GetWaterLevel(fPos, collision); + return gWorldInstance.GetCurrentCourse()->GetWaterLevel(fPos, collision); } // clang-format off -bool IsMarioRaceway() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsLuigiRaceway() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsChocoMountain() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsBowsersCastle() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsBansheeBoardwalk() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsYoshiValley() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsFrappeSnowland() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsKoopaTroopaBeach() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsRoyalRaceway() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsMooMooFarm() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsToadsTurnpike() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsKalimariDesert() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsSherbetLand() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsRainbowRoad() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsWarioStadium() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsBlockFort() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsSkyscraper() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsDoubleDeck() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsDkJungle() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsBigDonut() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } -bool IsPodiumCeremony() { return dynamic_cast(gWorldInstance.CurrentCourse.get()) != nullptr; } +bool IsMarioRaceway() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsLuigiRaceway() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsChocoMountain() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsBowsersCastle() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsBansheeBoardwalk() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsYoshiValley() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsFrappeSnowland() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsKoopaTroopaBeach() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsRoyalRaceway() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsMooMooFarm() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsToadsTurnpike() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsKalimariDesert() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsSherbetLand() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsRainbowRoad() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsWarioStadium() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsBlockFort() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsSkyscraper() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsDoubleDeck() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsDkJungle() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsBigDonut() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } +bool IsPodiumCeremony() { return dynamic_cast(gWorldInstance.GetCurrentCourse().get()) != nullptr; } void SelectMarioRaceway() { gWorldInstance.SetCourseByType(); } void SelectLuigiRaceway() { gWorldInstance.SetCourseByType(); } @@ -724,7 +696,7 @@ void SelectSkyscraper() { gWorldInstance.SetCourseByType(); void SelectDoubleDeck() { gWorldInstance.SetCourseByType(); } void SelectDkJungle() { gWorldInstance.SetCourseByType(); } void SelectBigDonut() { gWorldInstance.SetCourseByType(); } -void SelectPodiumCeremony() { gWorldInstance.CurrentCourse = gPodiumCeremony; } +void SelectPodiumCeremony() { gWorldInstance.SetCurrentCourse(gPodiumCeremony); } // clang-format on void* GetMushroomCup(void) { diff --git a/src/port/Game.h b/src/port/Game.h index 0982d649b..733f6cdb6 100644 --- a/src/port/Game.h +++ b/src/port/Game.h @@ -42,6 +42,7 @@ u32 GetCupIndex(void); const char* GetCupName(void); void LoadCourse(); +void UnLoadCourse(); size_t GetCourseIndex(); @@ -54,8 +55,6 @@ void CM_SetCup(void*); void CM_SetCupIndex(size_t index); -void CM_LoadTextures(); - void CM_RenderCourse(struct UnkStruct_800DC5EC* arg0); void CM_RenderCredits(); diff --git a/src/port/GameExtractor.cpp b/src/port/GameExtractor.cpp index f330c53cf..c40a443cf 100644 --- a/src/port/GameExtractor.cpp +++ b/src/port/GameExtractor.cpp @@ -5,11 +5,13 @@ #pragma comment(lib, "Shlwapi.lib") #endif #include "GameExtractor.h" +#include #include #include #include +#include "Companion.h" #include "Context.h" #include "spdlog/spdlog.h" #include @@ -189,6 +191,7 @@ bool GameExtractor::GenerateOTR() const { const std::string game_path = Ship::Context::GetAppDirectoryPath(); Companion::Instance = new Companion(this->mGameData, ArchiveType::O2R, false, assets_path, game_path); + Companion::Instance->SetAdditionalFiles({ "meta/mods.toml" }); try { Companion::Instance->Init(ExportType::Binary); diff --git a/src/port/resource/importers/TrackSectionsFactory.cpp b/src/port/resource/importers/TrackSectionsFactory.cpp index 64a3b0a2f..70d964e40 100644 --- a/src/port/resource/importers/TrackSectionsFactory.cpp +++ b/src/port/resource/importers/TrackSectionsFactory.cpp @@ -2,13 +2,9 @@ #include "../type/TrackSections.h" #include "spdlog/spdlog.h" #include "libultraship/libultra/gbi.h" +#include "StrHash64.h" #include "tinyxml2.h" -extern "C" { -//#include "memory.h" // Removed to prevent C linkage errors likely related with #include common_structs.h -void* segmented_uintptr_t_to_virtual(uintptr_t); -} - namespace MK64 { std::shared_ptr ResourceFactoryBinaryTrackSectionsV0::ReadResource(std::shared_ptr file, @@ -24,9 +20,9 @@ ResourceFactoryBinaryTrackSectionsV0::ReadResource(std::shared_ptr f section->TrackSectionsList.reserve(count); for (uint32_t i = 0; i < count; i++) { - TrackSectionsI data; + TrackSections data; // Convert n64 addr to native addr - data.addr = (uintptr_t) segmented_uintptr_t_to_virtual(reader->ReadUInt32()); + data.crc = reader->ReadUInt64(); data.surfaceType = reader->ReadUByte(); data.sectionId = reader->ReadUByte(); data.flags = reader->ReadUInt16(); @@ -53,9 +49,9 @@ ResourceFactoryXMLTrackSectionsV0::ReadResource(std::shared_ptr file std::string childName = std::string(child->Name()); if (childName == "Section") { - TrackSectionsO2R data; + TrackSections data; // Convert n64 addr to native addr - data.addr = std::string(child->Attribute("gfx_path")); + data.crc = CRC64(child->Attribute("gfx_path")); data.surfaceType = child->IntAttribute("surface"); data.sectionId = child->IntAttribute("section"); data.flags = child->IntAttribute("flags"); diff --git a/src/port/resource/type/TrackSections.cpp b/src/port/resource/type/TrackSections.cpp index 9d0ac27f8..4a63145e8 100644 --- a/src/port/resource/type/TrackSections.cpp +++ b/src/port/resource/type/TrackSections.cpp @@ -5,22 +5,22 @@ namespace MK64 { TrackSectionsClass::TrackSectionsClass() : Resource(std::shared_ptr()) { } -TrackSectionsI* TrackSectionsClass::GetPointer() { +TrackSections* TrackSectionsClass::GetPointer() { return TrackSectionsList.data(); } size_t TrackSectionsClass::GetPointerSize() { - return TrackSectionsList.size() * sizeof(TrackSectionsI); + return TrackSectionsList.size() * sizeof(TrackSections); } TrackSectionsO2RClass::TrackSectionsO2RClass() : Resource(std::shared_ptr()) { } -TrackSectionsO2R* TrackSectionsO2RClass::GetPointer() { +TrackSections* TrackSectionsO2RClass::GetPointer() { return TrackSectionsList.data(); } size_t TrackSectionsO2RClass::GetPointerSize() { - return TrackSectionsList.size() * sizeof(TrackSectionsO2R); + return TrackSectionsList.size() * sizeof(TrackSections); } } // namespace MK64 diff --git a/src/port/resource/type/TrackSections.h b/src/port/resource/type/TrackSections.h index 32182022f..f91a117d3 100644 --- a/src/port/resource/type/TrackSections.h +++ b/src/port/resource/type/TrackSections.h @@ -1,46 +1,33 @@ #pragma once +#include "include/course.h" #include "resource/Resource.h" #include #include -typedef struct { - uintptr_t addr; - uint8_t surfaceType; - uint8_t sectionId; - uint16_t flags; -} TrackSectionsI; - -typedef struct { - std::string addr; - uint8_t surfaceType; - uint8_t sectionId; - uint16_t flags; -} TrackSectionsO2R; - namespace MK64 { -class TrackSectionsClass : public Ship::Resource { +class TrackSectionsClass : public Ship::Resource { public: using Resource::Resource; TrackSectionsClass(); - TrackSectionsI* GetPointer() override; + TrackSections* GetPointer() override; size_t GetPointerSize() override; - std::vector TrackSectionsList; + std::vector TrackSectionsList; }; -class TrackSectionsO2RClass : public Ship::Resource { +class TrackSectionsO2RClass : public Ship::Resource { public: using Resource::Resource; TrackSectionsO2RClass(); - TrackSectionsO2R* GetPointer() override; + TrackSections* GetPointer() override; size_t GetPointerSize() override; - std::vector TrackSectionsList; + std::vector TrackSectionsList; }; } // namespace MK64 diff --git a/src/port/ui/ContentBrowser.cpp b/src/port/ui/ContentBrowser.cpp index e85f06d41..3daeea5f1 100644 --- a/src/port/ui/ContentBrowser.cpp +++ b/src/port/ui/ContentBrowser.cpp @@ -274,7 +274,7 @@ namespace Editor { if (!track.SceneFile.empty()) { // has scene file std::string label = fmt::format("{}##{}", track.Name, i_track); if (ImGui::Button(label.c_str())) { - gWorldInstance.CurrentCourse = track.course; + gWorldInstance.SetCurrentCourse(track.course); gGamestateNext = RACING; SetSceneFile(track.Archive, track.SceneFile); break; @@ -283,7 +283,7 @@ namespace Editor { std::string label = fmt::format("{} {}", ICON_FA_EXCLAMATION_TRIANGLE, track.Name); if (ImGui::Button(label.c_str())) { track.SceneFile = track.Dir + "/scene.json"; - gWorldInstance.CurrentCourse = track.invalidTrack; + gWorldInstance.SetCurrentCourse(track.invalidTrack); SetSceneFile(track.Archive, track.SceneFile); SaveLevel(); Refresh = true; diff --git a/src/port/ui/TrackProperties.cpp b/src/port/ui/TrackProperties.cpp index 2f3207647..f47f766fb 100644 --- a/src/port/ui/TrackProperties.cpp +++ b/src/port/ui/TrackProperties.cpp @@ -34,14 +34,14 @@ namespace Editor { static char lengthBuffer[256] = "567m"; ImGui::InputText("ID", idBuffer, IM_ARRAYSIZE(idBuffer)); - ImGui::InputText("Name", gWorldInstance.CurrentCourse->Props.Name, IM_ARRAYSIZE(nameBuffer)); - ImGui::InputText("Debug Name", gWorldInstance.CurrentCourse->Props.DebugName, IM_ARRAYSIZE(debugNameBuffer)); - ImGui::InputText("Course Length", gWorldInstance.CurrentCourse->Props.CourseLength, IM_ARRAYSIZE(lengthBuffer)); - ImGui::InputFloat("Water Level", &gWorldInstance.CurrentCourse->Props.WaterLevel); + ImGui::InputText("Name", gWorldInstance.GetCurrentCourse()->Props.Name, IM_ARRAYSIZE(nameBuffer)); + ImGui::InputText("Debug Name", gWorldInstance.GetCurrentCourse()->Props.DebugName, IM_ARRAYSIZE(debugNameBuffer)); + ImGui::InputText("Course Length", gWorldInstance.GetCurrentCourse()->Props.CourseLength, IM_ARRAYSIZE(lengthBuffer)); + ImGui::InputFloat("Water Level", &gWorldInstance.GetCurrentCourse()->Props.WaterLevel); if (ImGui::CollapsingHeader("Camera")) { - ImGui::InputFloat("Near Perspective", &gWorldInstance.CurrentCourse->Props.NearPersp); - ImGui::InputFloat("Far Perspective", &gWorldInstance.CurrentCourse->Props.FarPersp); + ImGui::InputFloat("Near Perspective", &gWorldInstance.GetCurrentCourse()->Props.NearPersp); + ImGui::InputFloat("Far Perspective", &gWorldInstance.GetCurrentCourse()->Props.FarPersp); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::Text("Controls the far clipping distance for perspective rendering."); @@ -56,92 +56,92 @@ namespace Editor { if (ImGui::CollapsingHeader("AI")) { - ImGui::InputFloat("AI Max Separation", &gWorldInstance.CurrentCourse->Props.AIMaximumSeparation); - ImGui::InputFloat("AI Min Separation", &gWorldInstance.CurrentCourse->Props.AIMinimumSeparation); - ImGui::InputInt("AI Steering Sensitivity", (int*)&gWorldInstance.CurrentCourse->Props.AISteeringSensitivity); + ImGui::InputFloat("AI Max Separation", &gWorldInstance.GetCurrentCourse()->Props.AIMaximumSeparation); + ImGui::InputFloat("AI Min Separation", &gWorldInstance.GetCurrentCourse()->Props.AIMinimumSeparation); + ImGui::InputInt("AI Steering Sensitivity", (int*)&gWorldInstance.GetCurrentCourse()->Props.AISteeringSensitivity); ImGui::Separator(); for (size_t i = 0; i < 32; i++) { - ImGui::InputScalar(("Element " + std::to_string(i)).c_str(), ImGuiDataType_S16, &gWorldInstance.CurrentCourse->Props.AIDistance[i]); + ImGui::InputScalar(("Element " + std::to_string(i)).c_str(), ImGuiDataType_S16, &gWorldInstance.GetCurrentCourse()->Props.AIDistance[i]); } } if (ImGui::CollapsingHeader("Random Junk")) { for (size_t i = 0; i < 4; i++) { - ImGui::InputFloat(fmt::format("CurveTargetSpeed[{}]", i).c_str(), &gWorldInstance.CurrentCourse->Props.CurveTargetSpeed[i]); + ImGui::InputFloat(fmt::format("CurveTargetSpeed[{}]", i).c_str(), &gWorldInstance.GetCurrentCourse()->Props.CurveTargetSpeed[i]); } ImGui::Separator(); for (size_t i = 0; i < 4; i++) { - ImGui::InputFloat(fmt::format("NormalTargetSpeed[{}]", i).c_str(), &gWorldInstance.CurrentCourse->Props.NormalTargetSpeed[i]); + ImGui::InputFloat(fmt::format("NormalTargetSpeed[{}]", i).c_str(), &gWorldInstance.GetCurrentCourse()->Props.NormalTargetSpeed[i]); } ImGui::Separator(); for (size_t i = 0; i < 4; i++) { - ImGui::InputFloat(fmt::format("D_0D0096B8[{}]", i).c_str(), &gWorldInstance.CurrentCourse->Props.D_0D0096B8[i]); + ImGui::InputFloat(fmt::format("D_0D0096B8[{}]", i).c_str(), &gWorldInstance.GetCurrentCourse()->Props.D_0D0096B8[i]); } ImGui::Separator(); for (size_t i = 0; i < 4; i++) { - ImGui::InputFloat(fmt::format("OffTrackTargetSpeed[{}]", i).c_str(), &gWorldInstance.CurrentCourse->Props.OffTrackTargetSpeed[i]); + ImGui::InputFloat(fmt::format("OffTrackTargetSpeed[{}]", i).c_str(), &gWorldInstance.GetCurrentCourse()->Props.OffTrackTargetSpeed[i]); } } float minimapColour[3]; - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Minimap.Colour, minimapColour); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Minimap.Colour, minimapColour); if (ImGui::CollapsingHeader("Minimap")) { ImGui::Text("Position"); ImGui::SameLine(); - if (ImGui::DragInt2("##MinimapPosition", &gWorldInstance.CurrentCourse->Props.Minimap.Pos[0].X, 1.0f)) { + if (ImGui::DragInt2("##MinimapPosition", &gWorldInstance.GetCurrentCourse()->Props.Minimap.Pos[0].X, 1.0f)) { } ImGui::Text("P2 Position"); ImGui::SameLine(); - if (ImGui::DragInt2("##MinimapPosition2p", &gWorldInstance.CurrentCourse->Props.Minimap.Pos[1].X, 1.0f)) { + if (ImGui::DragInt2("##MinimapPosition2p", &gWorldInstance.GetCurrentCourse()->Props.Minimap.Pos[1].X, 1.0f)) { } ImGui::Text("Player Markers"); ImGui::SameLine(); - if (ImGui::DragInt2("##MinimapPlayers", &gWorldInstance.CurrentCourse->Props.Minimap.PlayerX, 1.0f)) { + if (ImGui::DragInt2("##MinimapPlayers", &gWorldInstance.GetCurrentCourse()->Props.Minimap.PlayerX, 1.0f)) { } ImGui::Text("Player Scale Factor"); ImGui::SameLine(); - if (ImGui::DragFloat("##MinimapScaleFactor", &gWorldInstance.CurrentCourse->Props.Minimap.PlayerScaleFactor, 0.0001f)) { + if (ImGui::DragFloat("##MinimapScaleFactor", &gWorldInstance.GetCurrentCourse()->Props.Minimap.PlayerScaleFactor, 0.0001f)) { } ImGui::Text("Finishline"); ImGui::SameLine(); - ImGui::DragFloat2("##MinimapFinishlineX", &gWorldInstance.CurrentCourse->Props.Minimap.FinishlineX, 1.0f); + ImGui::DragFloat2("##MinimapFinishlineX", &gWorldInstance.GetCurrentCourse()->Props.Minimap.FinishlineX, 1.0f); ImGui::Text("Colour"); ImGui::SameLine(); ImGui::ColorEdit3("##MinimapColour", minimapColour, 1.0f); } - FloatToRGB8(minimapColour, (u8*)&gWorldInstance.CurrentCourse->Props.Minimap.Colour); + FloatToRGB8(minimapColour, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Minimap.Colour); // Convert and pass to ImGui ColorEdit3 float topRight[3], bottomRight[3], bottomLeft[3], topLeft[3]; float floorTopRight[3], floorBottomRight[3], floorBottomLeft[3], floorTopLeft[3]; // Convert RGB8 (0-255) to float (0.0f to 1.0f) - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Skybox.TopRight, topRight); - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Skybox.BottomRight, bottomRight); - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Skybox.BottomLeft, bottomLeft); - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Skybox.TopLeft, topLeft); - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Skybox.FloorTopRight, floorTopRight); - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Skybox.FloorBottomRight, floorBottomRight); - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Skybox.FloorBottomLeft, floorBottomLeft); - RGB8ToFloat((u8*)&gWorldInstance.CurrentCourse->Props.Skybox.FloorTopLeft, floorTopLeft); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.TopRight, topRight); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.BottomRight, bottomRight); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.BottomLeft, bottomLeft); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.TopLeft, topLeft); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.FloorTopRight, floorTopRight); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.FloorBottomRight, floorBottomRight); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.FloorBottomLeft, floorBottomLeft); + RGB8ToFloat((u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.FloorTopLeft, floorTopLeft); if (ImGui::CollapsingHeader("Skybox")) { ImGui::ColorEdit3("Skybox Top Right", topRight); @@ -155,14 +155,14 @@ namespace Editor { } // Convert the modified float values back to RGB8 (0-255) - FloatToRGB8(topRight, (u8*)&gWorldInstance.CurrentCourse->Props.Skybox.TopRight); - FloatToRGB8(bottomRight, (u8*)&gWorldInstance.CurrentCourse->Props.Skybox.BottomRight); - FloatToRGB8(bottomLeft, (u8*)&gWorldInstance.CurrentCourse->Props.Skybox.BottomLeft); - FloatToRGB8(topLeft, (u8*)&gWorldInstance.CurrentCourse->Props.Skybox.TopLeft); - FloatToRGB8(floorTopRight, (u8*)&gWorldInstance.CurrentCourse->Props.Skybox.FloorTopRight); - FloatToRGB8(floorBottomRight, (u8*)&gWorldInstance.CurrentCourse->Props.Skybox.FloorBottomRight); - FloatToRGB8(floorBottomLeft, (u8*)&gWorldInstance.CurrentCourse->Props.Skybox.FloorBottomLeft); - FloatToRGB8(floorTopLeft, (u8*)&gWorldInstance.CurrentCourse->Props.Skybox.FloorTopLeft); + FloatToRGB8(topRight, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.TopRight); + FloatToRGB8(bottomRight, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.BottomRight); + FloatToRGB8(bottomLeft, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.BottomLeft); + FloatToRGB8(topLeft, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.TopLeft); + FloatToRGB8(floorTopRight, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.FloorTopRight); + FloatToRGB8(floorBottomRight, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.FloorBottomRight); + FloatToRGB8(floorBottomLeft, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.FloorBottomLeft); + FloatToRGB8(floorTopLeft, (u8*)&gWorldInstance.GetCurrentCourse()->Props.Skybox.FloorTopLeft); TrackPropertiesWindow::DrawMusic(); } @@ -178,15 +178,15 @@ namespace Editor { "Royal Raceway", "Yoshi Valley", "Block Fort", "Double Deck" }; - const char* currentItem = MusicSeqToString(gWorldInstance.CurrentCourse->Props.Sequence); // Get the current selected value's string + const char* currentItem = MusicSeqToString(gWorldInstance.GetCurrentCourse()->Props.Sequence); // Get the current selected value's string if (ImGui::BeginCombo("Music Sequence", currentItem)) { for (size_t i = 0; i < IM_ARRAYSIZE(items); ++i) { bool isSelected = (currentItem == items[i]); if (ImGui::Selectable(items[i], isSelected)) { // Update the sequence when an option is selected - gWorldInstance.CurrentCourse->Props.Sequence = static_cast(i); - play_sequence(gWorldInstance.CurrentCourse->Props.Sequence); // Call play_sequence with the updated sequence + gWorldInstance.GetCurrentCourse()->Props.Sequence = static_cast(i); + play_sequence(gWorldInstance.GetCurrentCourse()->Props.Sequence); // Call play_sequence with the updated sequence // Update currentItem after selection is made currentItem = items[i]; diff --git a/src/racing/actors.c b/src/racing/actors.c index d9a59400a..8282387df 100644 --- a/src/racing/actors.c +++ b/src/racing/actors.c @@ -24,18 +24,21 @@ #include "effects.h" #include "collision.h" #include "audio/external.h" -#include +#include #include "courses/all_course_data.h" #include "main.h" -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include #include "port/Game.h" #include "port/interpolation/FrameInterpolation.h" +#include + // Appears to be textures // or tluts char* texture_green_shell[] = { @@ -1299,21 +1302,6 @@ void spawn_course_actors(void) { * */ void init_actors_and_load_textures(void) { - set_segment_base_addr_x64(3, (void*) gNextFreeMemoryAddress); - allocate_memory(0x400 * 16); - dma_textures(gTextureFinishLineBanner1, 0x0000028EU, 0x00000800U); // 0x03004000 - dma_textures(gTextureFinishLineBanner2, 0x000002FBU, 0x00000800U); // 0x03004800 - dma_textures(gTextureFinishLineBanner3, 0x00000302U, 0x00000800U); // 0x03005000 - dma_textures(gTextureFinishLineBanner4, 0x000003B4U, 0x00000800U); // 0x03005800 - dma_textures(gTextureFinishLineBanner5, 0x0000031EU, 0x00000800U); // 0x03006000 - dma_textures(gTextureFinishLineBanner6, 0x0000036EU, 0x00000800U); // 0x03006800 - dma_textures(gTextureFinishLineBanner7, 0x0000029CU, 0x00000800U); // 0x03007000 - dma_textures(gTextureFinishLineBanner8, 0x0000025BU, 0x00000800U); // 0x03007800 - dma_textures(gTexture671A88, 0x00000400U, 0x00000800U); // 0x03008000 - dma_textures(gTexture6774D8, 0x00000400U, 0x00000800U); // 0x03008800 - - CM_LoadTextures(); - init_red_shell_texture(); destroy_all_actors(); CM_CleanWorld(); diff --git a/src/racing/collision.c b/src/racing/collision.c index 72421964c..e8948b25b 100644 --- a/src/racing/collision.c +++ b/src/racing/collision.c @@ -1,3 +1,4 @@ +#include #include #include #include @@ -10,8 +11,11 @@ #include "math_util.h" #include "code_800029B0.h" #include +#include "port/Engine.h" #include "port/Game.h" +#include "resourcebridge.h" #include +#include "RaceManager.h" #pragma intrinsic(sqrtf) @@ -1535,6 +1539,8 @@ void add_collision_triangle(Vtx* vtx1, Vtx* vtx2, Vtx* vtx3, s8 surfaceType, u16 s16 maxY; s16 minZ; + add_triangle_to_collision_mesh(vtx1, vtx2, vtx3, &vtx1, &vtx2, &vtx3); + triangle->vtx1 = vtx1; triangle->vtx2 = vtx2; triangle->vtx3 = vtx3; @@ -1961,6 +1967,9 @@ u32 numTimes = 0; */ bool is_cull_box(const char* filePath); void generate_collision_mesh(Gfx* addr, s8 surfaceType, u16 sectionId) { + if (GameEngine_OTRSigCheck((char*)addr)) { + addr = LOAD_ASSET(addr); + } int8_t opcode; uintptr_t lo; uintptr_t hi; @@ -1975,8 +1984,6 @@ void generate_collision_mesh(Gfx* addr, s8 surfaceType, u16 sectionId) { D_8015F6FA = 0; D_8015F6FC = 0; - // u8 *orig = segmented_gfx_to_virtual(0x07000000); - // printf("\n\nORIG:\n"); // for (size_t i = 0; i < 100; i++) { // printf(" 0x%X ", orig[i]); @@ -1997,12 +2004,21 @@ void generate_collision_mesh(Gfx* addr, s8 surfaceType, u16 sectionId) { // G_DL's hi contains an addr to another DL. generate_collision_mesh((Gfx*) hi, surfaceType, sectionId); break; + case G_DL_OTR_HASH: + gfx++; + uint64_t hash = gfx->words.w0 << 32 | gfx->words.w1; + // printf("name of dl hash: 0x%llX\n", hash); + // printf("name of dl: %s\n", ResourceGetNameByCrc(hash)); + generate_collision_mesh(ResourceGetDataByCrc(hash), surfaceType, sectionId); + break; case G_DL_OTR_FILEPATH: generate_collision_mesh(ResourceGetDataByName((const char*)hi), surfaceType, sectionId); break; - case G_VTX: - set_vtx_buffer((hi), (lo >> 10) & 0x3F, ((lo >> 16) & 0xFF) >> 1); + case G_VTX:{ + uintptr_t ptr = hi; + set_vtx_buffer((uintptr_t) ptr, (lo >> 10) & 0x3F, ((lo >> 16) & 0xFF) >> 1); break; + } case G_VTX_OTR_FILEPATH: { const char* filePath = (const char*)hi; // Fast64 outputs garbage data. Lets skip that... @@ -2019,6 +2035,18 @@ void generate_collision_mesh(Gfx* addr, s8 surfaceType, u16 sectionId) { set_vtx_buffer(vtx, count, index); break; } + case G_VTX_OTR_HASH: + gfx++; + hash = gfx->words.w0 << 32 | gfx->words.w1; + // printf("name of vtx hash: 0x%lX\n", hash); + // printf("name of vtx: %s\n", ResourceGetNameByCrc(hash)); + int numVerts = (lo >> 12) & ((1<<8)-1); + int bufferIndex = ((lo >> 1) & ((1<<7)-1)); + bufferIndex = numVerts - bufferIndex; + // printf("numVerts: %d\n", numVerts); + // printf("bufferIndex: %d\n", bufferIndex); + set_vtx_buffer((uintptr_t) ResourceGetDataByCrc(hash), numVerts, bufferIndex); + break; case G_TRI1: D_8015F58C += 1; set_vtx_from_triangle(hi, surfaceType, sectionId); @@ -2045,6 +2073,12 @@ void generate_collision_mesh(Gfx* addr, s8 surfaceType, u16 sectionId) { break; case G_ENDDL: return; // end of loop + case G_MARKER: + case G_MTX_OTR: + case G_SETTIMG_OTR_HASH: + gfx++; + i++; + break; } @@ -2093,6 +2127,9 @@ bool is_cull_box(const char* filePath) { */ void find_and_set_tile_size(uintptr_t addr, s32 uls, s32 ult) { Gfx* gfx = (Gfx*) addr; + if (GameEngine_OTRSigCheck(gfx)) { + gfx = (Gfx*) ResourceGetDataByName(gfx); + } u32 opcode; uls = (uls << 12) & 0xFFF000; @@ -2132,7 +2169,10 @@ void set_vertex_colours(uintptr_t addr, u32 vertexCount, UNUSED s32 vert3, s8 al * Recursive search for vertices and set their colour values. */ void find_vtx_and_set_colours(Gfx* displayList, s8 alpha, u8 red, u8 green, u8 blue) { - Gfx* gfx = (Gfx*) displayList; + if (GameEngine_OTRSigCheck(displayList)) { + displayList = (Gfx*) ResourceGetDataByName(displayList); + } + Gfx* gfx = displayList; uintptr_t lo; uintptr_t hi; s32 opcode; @@ -2145,9 +2185,39 @@ void find_vtx_and_set_colours(Gfx* displayList, s8 alpha, u8 red, u8 green, u8 b break; } else if (opcode == (G_DL << 24)) { find_vtx_and_set_colours((Gfx*) hi, alpha, red, green, blue); + } else if (opcode == (G_DL_OTR_HASH << 24)) { + gfx++; + uint64_t hash = gfx->words.w0 << 32 | gfx->words.w1; + find_vtx_and_set_colours(ResourceGetDataByCrc(hash), alpha, red, green, blue); + } else if (opcode == (G_DL_OTR_FILEPATH << 24)) { + find_vtx_and_set_colours(ResourceGetDataByName((const char*)hi), alpha, red, green, blue); } else if (opcode == (G_VTX << 24)) { // G_VTX contains an addr hi set_vertex_colours(hi, (lo >> 10) & 0x3F, ((lo >> 16) & 0xFF) >> 1, alpha, red, green, blue); + } else if (opcode == (G_VTX_OTR_FILEPATH << 24)) { + const char* filePath = (const char*)hi; + // Fast64 outputs garbage data. Lets skip that... + if (is_cull_box(filePath)) { + gfx++; + continue; + } + gfx++; + size_t count = gfx->words.w0; + size_t index = (gfx->words.w1 >> 16); + size_t vtxDataOff = gfx->words.w1 & 0xFFFF; + Vtx* vtx = ( (Vtx*)ResourceGetDataByName(filePath) ) + vtxDataOff; + + set_vertex_colours((uintptr_t)vtx, count, index, alpha, red, green, blue); + } else if (opcode == (G_VTX_OTR_HASH << 24)) { + gfx++; + uint64_t hash = gfx->words.w0 << 32 | gfx->words.w1; + int numVerts = (lo >> 12) & ((1<<8)-1); + int bufferIndex = ((lo >> 1) & ((1<<7)-1)); + bufferIndex = numVerts - bufferIndex; + set_vertex_colours((uintptr_t) ResourceGetDataByCrc(hash), numVerts, bufferIndex, alpha, red, green, blue); + } + if (opcode == G_MARKER || opcode == G_MTX_OTR || opcode == G_SETTIMG_OTR_HASH) { + gfx++; } gfx++; } diff --git a/src/racing/framebuffer_effects.c b/src/racing/framebuffer_effects.c index 8c27cade6..c3c435ec7 100644 --- a/src/racing/framebuffer_effects.c +++ b/src/racing/framebuffer_effects.c @@ -1,7 +1,7 @@ #include #include "framebuffer_effects.h" #include "mk64.h" -#include +#include #include "port/Engine.h" #include "port/interpolation/matrix.h" #include "math_util.h" diff --git a/src/racing/memory.c b/src/racing/memory.c index 088f7e3f7..ba441c68d 100644 --- a/src/racing/memory.c +++ b/src/racing/memory.c @@ -11,12 +11,6 @@ #include "memory.h" #include "main.h" #include "code_800029B0.h" -#include "math_util.h" -#include "courses/courseTable.h" -#include "courses/all_course_data.h" -#include "courses/all_course_packed.h" -#include "courses/all_course_model.h" -#include "courses/all_course_offsets.h" #include "defines.h" #include "course_offsets.h" @@ -43,10 +37,11 @@ struct UnkStruct_802B8CD4 D_802B8CD4[] = { 0 }; s32 D_802B8CE4 = 0; // pad s32 memoryPadding[2]; -#define PRINT_MEMPOOL \ - printf("\nPool Start: 0x%llX, Pool End: 0x%llX, size: 0x%llX\ngNextFreeMemoryAddress: 0x%llX\n\n", sMemoryPool, \ - sMemoryPool + sizeof(sMemoryPool), (sMemoryPool + sizeof(sMemoryPool)) - sMemoryPool, \ - gNextFreeMemoryAddress) +#define PRINT_MEMPOOL \ + printf("\nPool Start: %p, Pool End: %p, size: 0x%lX\ngNextFreeMemoryAddress: 0x%lX\n\n", (void*) sMemoryPool, \ + (void*) (sMemoryPool + sizeof(sMemoryPool)), \ + (unsigned long) (((sMemoryPool + sizeof(sMemoryPool)) - sMemoryPool)), \ + (unsigned long) gNextFreeMemoryAddress) /** * @brief Returns the address of the next available memory location and updates the memory pointer @@ -67,93 +62,6 @@ void* get_next_available_memory_addr(uintptr_t size) { return (void*) freeSpace; } -/** - * @brief Stores the physical memory addr for segmented memory in `gSegmentTable` using the segment number as an index. - * - * This function takes a segment number and a pointer to a memory address, and stores the address in the `gSegmentTable` - * array at the specified segment index. The stored address is truncated to a 29-bit value to ensure that it fits within - * the memory address. This allows converting between segmented memory and physical memory. - * - * @param segment A segment number from 0x0 to 0xF to set the base address. - * @param addr A pointer containing the physical memory address of the data. - * @return The stored base address, truncated to a 29-bit value. - */ -uintptr_t set_segment_base_addr(s32 segment, void* addr) { - gSegmentTable[segment] = (uintptr_t) addr & 0x1FFFFFFF; - return gSegmentTable[segment]; -} - -uintptr_t set_segment_base_addr_x64(s32 segment, void* addr) { - gSegmentTable[segment] = (uintptr_t) addr; - return gSegmentTable[segment]; -} - -/** - * @brief Returns the physical memory location of a segment. - * @param permits segment numbers from 0x0 to 0xF. - */ -void* get_segment_base_addr(s32 segment) { - return (void*) (gSegmentTable[segment] | 0x80000000); -} - -/** - * @brief converts an RSP segment + offset address to a normal memory address - */ -void* segmented_to_virtual(const void* addr) { - return addr; - size_t segment = (uintptr_t) addr >> 24; - size_t offset = (uintptr_t) addr & 0x00FFFFFF; - - return (void*) ((gSegmentTable[segment] + offset)); -} - -void* segment_offset_to_virtual(uint32_t segment, uint32_t offset) { - return (void*) (gSegmentTable[segment] + ((offset / 8) * sizeof(Gfx))); -} - -void* segment_vtx_to_virtual(size_t offset) { - // printf("seg_vtx_to_virt: 0x%llX to 0x%llX\n", offset, (gSegmentTable[0x04] + offset)); - - return (void*) (gSegmentTable[0x04] + (offset)); -} - -void* segment5_to_virtual(size_t offset) { - // printf("seg_texture_to_virt: 0x%llX to 0x%llX\n", offset, (gSegmentTable[0x05] + offset)); - return (void*) (gSegmentTable[0x05] + (offset)); -} - -void* segmented_texture_to_virtual(uintptr_t addr) { - uint32_t segment = SEGMENT_NUMBER(addr); - size_t offset = SEGMENT_OFFSET(addr); - // printf("seg_texture_to_virt: 0x%llX to 0x%llX\n", offset, (gSegmentTable[segment] + offset)); - return (void*) (gSegmentTable[segment] + (offset)); -} - -void* segmented_uintptr_t_to_virtual(uintptr_t addr) { - uint32_t newAddr = (uint32_t) addr; - size_t segment = (uintptr_t) newAddr >> 24; - size_t offset = (uintptr_t) newAddr & 0x00FFFFFF; - - uint32_t numCommands = offset / 8; - offset = numCommands * sizeof(Gfx); - - // printf("seg_uintptr_t_to_virt: 0x%llX to 0x%llX\n", newAddr, (gSegmentTable[segment] + offset)); - - return (void*) ((gSegmentTable[segment] + offset)); -} - -Gfx* segmented_gfx_to_virtual(const void* addr) { - size_t segment = (uintptr_t) addr >> 24; - size_t offset = (uintptr_t) addr & 0x00FFFFFF; - - uint32_t numCommands = offset / 8; - offset = numCommands * sizeof(Gfx); - - // printf("seg_gfx_to_virt: 0x%llX to 0x%llX\n", addr, (gSegmentTable[segment] + offset)); - - return (Gfx*) ((gSegmentTable[segment] + offset)); -} - static uintptr_t get_texture2(size_t offset, const course_texture* textures) { if (!((offset >= 0x5000000) && (offset < 0x6000000))) { return NULL; @@ -169,66 +77,10 @@ static uintptr_t get_texture2(size_t offset, const course_texture* textures) { } printf("memory.c: get_texture()\n TEXTURE NOT FOUND DURING DISPLAYLIST EXTRACT\n"); - printf(" offset: 0x%X\n", offset); + printf(" offset: 0x%zX\n", offset); return NULL; } -// Finds texture calls and replaces hard-coded addresses with direct pointers to the o2r texture. -void replace_segmented_textures_with_o2r_textures(Gfx* gfx, const course_texture* textures) { - char* name = NULL; - if (GameEngine_OTRSigCheck((char*) gfx)) { - name = (char*) gfx; - gfx = (Gfx*) LOAD_ASSET_RAW(gfx); - } - Gfx* iterator = gfx; - int i = 0; - u8 opcode; - while ((opcode = (iterator->words.w0 >> 24)) != (u8) G_ENDDL) { - if (opcode == G_DL) { - uintptr_t addr = iterator->words.w1; - if (!(addr & 0x400000000)) { // avoid segment address - replace_segmented_textures_with_o2r_textures((Gfx*) addr, textures); - } - } else if (opcode == G_DL_OTR_FILEPATH) { - char* fileName = (char*) iterator->words.w1; - Gfx* gfx2 = (Gfx*) ResourceGetDataByName((const char*) fileName); - if (((iterator->words.w0 >> (16)) & ((1U << 1) - 1)) == 0 && gfx2 != NULL) { - replace_segmented_textures_with_o2r_textures(gfx2, textures); - } - } else if (opcode == G_DL_OTR_HASH) { - if (((iterator->words.w0 >> (16)) & ((1U << 1) - 1)) == 0) { - iterator++; - Gfx* gfx2 = (Gfx*) ResourceGetDataByCrc(((uint64_t) iterator->words.w0 << 32) + iterator->words.w1); - if (gfx2 != NULL) { - replace_segmented_textures_with_o2r_textures(gfx2, textures); - } - } - } else if (opcode == G_SETTIMG) { - // If this is a texture command, we need to fix the texture segment pointer - uintptr_t tex = iterator->words.w1 & (~1); - uintptr_t addr = get_texture2(tex, textures); - if (addr != NULL) { - iterator->words.w1 = addr; - } - } - - if (opcode == G_MARKER || opcode == G_MTX_OTR || opcode == G_VTX_OTR_FILEPATH || opcode == G_VTX_OTR_HASH) { - iterator++; - } - // Move to the next command in the display list - iterator++; - i++; - } -} - -void move_segment_table_to_dmem(void) { - s32 i; - - for (i = 0; i < 16; i++) { - __gSPSegment(gDisplayListHead++, i, gSegmentTable[i]); - } -} - /** * @brief Sets the starting location for allocating memory and calculates pool size. * @@ -258,13 +110,12 @@ void* allocate_memory(size_t size) { uintptr_t freeSpace; size = ALIGN16(size); - gFreeMemorySize -= size; - - if (gFreeMemorySize < 0) { + if (gFreeMemorySize < size) { printf("[memory.c] allocate_memory(): gFreeMemorySize below zero!\n"); - printf("gFreeMemorySize: 0x%X", gFreeMemorySize); + printf("gFreeMemorySize before alloc: 0x%zX (requested: 0x%zX)\n", gFreeMemorySize, size); PRINT_MEMPOOL; } + gFreeMemorySize -= size; freeSpace = (uintptr_t) gNextFreeMemoryAddress; gNextFreeMemoryAddress += size; @@ -421,161 +272,6 @@ UNUSED void* func_802A80B0(u8* dest, u8* srcStart, u8* srcEnd) { return addr; } -// replaces call to dynamic_dma_read with dma_read. -UNUSED void* load_segment(s32 segment, u8* srcStart, u8* srcEnd, u8* side) { - void* addr = func_802A80B0(srcStart, srcEnd, side); - - if (addr != NULL) { - set_segment_base_addr(segment, addr); - } - return addr; -} - -// Similar to sm64 load_to_fixed_pool_addr? -UNUSED void* func_802A8190(s32 arg0, u8* arg1) { - // uintptr_t srcSize = ALIGN16(srcEnd - srcStart); - // uintptr_t destSize = ALIGN16((u8 *) sPoolListHeadR - destAddr); - void* addr; - uintptr_t temp_v0 = D_802B8CD4[arg0].unk4; - uintptr_t temp_v1 = D_802B8CD4[arg0].unk8; - uintptr_t temp_v2 = D_802B8CD4[arg0].unk2; - addr = func_802A80B0((u8*) temp_v0, (u8*) temp_v1, arg1); - - // dest = main_pool_alloc(destSize, MEMORY_POOL_RIGHT); - if (addr != 0) { - set_segment_base_addr(temp_v2, addr); - } - return (void*) addr; -} - -UNUSED void func_802A81EC(void) { - s32 temp_s0; - s16* phi_s1; - s32 phi_s0; - - phi_s1 = (s16*) &D_802B8CD4; - phi_s0 = 0; - do { - if ((*phi_s1 & 1) != 0) { - func_802A8190(phi_s0, 0); - } - temp_s0 = phi_s0 + 1; - phi_s1 += 8; - phi_s0 = temp_s0; - } while (phi_s0 != 3); -} - -UNUSED struct AllocOnlyPool* alloc_only_pool_init(uintptr_t size, uintptr_t side) { - void* addr; - struct AllocOnlyPool* subPool = NULL; - - size = ALIGN4(size); - addr = main_pool_alloc(size + sizeof(struct AllocOnlyPool), side); - if (addr != NULL) { - subPool = (struct AllocOnlyPool*) addr; - subPool->totalSpace = size; - subPool->usedSpace = (s32) addr + sizeof(struct AllocOnlyPool); - subPool->startPtr = 0; - subPool->freePtr = (u8*) addr + sizeof(struct AllocOnlyPool); - } - return subPool; -} - -UNUSED uintptr_t func_802A82AC(s32 arg0) { - uintptr_t temp_v0; - uintptr_t phi_v1; - - temp_v0 = D_801502A0 - arg0; - phi_v1 = 0; - if (temp_v0 >= (uintptr_t) gDisplayListHead) { - D_801502A0 = temp_v0; - phi_v1 = temp_v0; - } - return phi_v1; -} - -/** - * @brief Returns pointer to mio0 compressed Vtx. - */ -u8* dma_compressed_vtx(u8* start, u8* end) { - u8* freeSpace; - uintptr_t size; - - size = ALIGN16(end - start); - freeSpace = (u8*) gNextFreeMemoryAddress; - dma_copy(freeSpace, start, size); - gNextFreeMemoryAddress += size; - return freeSpace; -} - -// unused mio0 decode func. -UNUSED uintptr_t func_802A8348(s32 arg0, s32 arg1, s32 arg2) { - uintptr_t offset; - UNUSED void* pad; - uintptr_t oldAddr; - void* newAddr; - - offset = ALIGN16(arg1 * arg2); - oldAddr = gNextFreeMemoryAddress; - newAddr = (void*) (oldAddr + offset); - pad = &newAddr; -#ifdef TARGET_N64 - osInvalDCache(newAddr, offset); - osPiStartDma(&gDmaIoMesg, 0, 0, (uintptr_t) &_other_texturesSegmentRomStart[SEGMENT_OFFSET(arg0)], newAddr, offset, - &gDmaMesgQueue); - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, 1); -#endif - - func_80040030((u8*) newAddr, (u8*) oldAddr); - gNextFreeMemoryAddress += offset; - return oldAddr; -} - -UNUSED u8* func_802A841C(u8* arg0, s32 arg1, s32 arg2) { - u8* temp_v0; - void* temp_a0; - temp_v0 = (u8*) gNextFreeMemoryAddress; - temp_a0 = temp_v0 + arg2; - arg1 = ALIGN16(arg1); - arg2 = ALIGN16(arg2); - - osInvalDCache(temp_a0, arg1); -#ifdef TARGET_N64 - osPiStartDma(&gDmaIoMesg, 0, 0, (uintptr_t) &_other_texturesSegmentRomStart[SEGMENT_OFFSET(arg0)], temp_a0, arg1, - &gDmaMesgQueue); -#endif - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, 1); - func_80040030((u8*) temp_a0, temp_v0); - gNextFreeMemoryAddress += arg2; - return temp_v0; -} - -u8* dma_textures(const char* texture, size_t arg1, size_t arg2) { - u8* temp_v0; - void* temp_a0; -#ifdef TARGET_N64 - temp_v0 = (u8*) gNextFreeMemoryAddress; -#else - - temp_v0 = (u8*) allocate_memory(arg2); -#endif - temp_a0 = temp_v0 + arg2; - arg1 = ALIGN16(arg1); - arg2 = ALIGN16(arg2); -#ifdef TARGET_N64 - osInvalDCache((void*) temp_a0, arg1); - osPiStartDma(&gDmaIoMesg, 0, 0, (uintptr_t) &_other_texturesSegmentRomStart[SEGMENT_OFFSET(texture)], - (void*) temp_a0, arg1, &gDmaMesgQueue); - osRecvMesg(&gDmaMesgQueue, &gMainReceivedMesg, (int) 1); - mio0decode((u8*) temp_a0, temp_v0); - gNextFreeMemoryAddress += arg2; -#else - strncpy(temp_v0, texture, arg2); - // strcpy(temp_v0, texture); -#endif - return temp_v0; -} - uintptr_t MIO0_0F(u8* arg0, uintptr_t arg1, uintptr_t arg2) { uintptr_t oldHeapEndPtr; void* temp_v0; @@ -596,951 +292,6 @@ uintptr_t MIO0_0F(u8* arg0, uintptr_t arg1, uintptr_t arg2) { return oldHeapEndPtr; } -void func_802A86A8(CourseVtx* data, Vtx* vtx, size_t arg1) { - CourseVtx* courseVtx = data; - s32 tmp = ALIGN16(arg1 * 0x10); - size_t i; - s8 temp_a0; - s8 temp_a3; - s8 flags; - -#ifdef TARGET_N64 - gHeapEndPtr -= tmp; - vtx = (Vtx*) gHeapEndPtr; -#endif - - // s32 to uintptr_t comparison required for matching. - for (i = 0; i < arg1; i++) { - if (gIsMirrorMode) { - vtx->v.ob[0] = -(courseVtx->ob[0] * gVtxStretch[0]); - } else { - vtx->v.ob[0] = courseVtx->ob[0] * gVtxStretch[0]; - } - - vtx->v.ob[1] = (courseVtx->ob[1] * gVtxStretch[1]); - temp_a0 = courseVtx->ca[0]; - temp_a3 = courseVtx->ca[1]; - - flags = temp_a0 & 3; - flags |= (temp_a3 << 2) & 0xC; - - vtx->v.ob[2] = courseVtx->ob[2] * gVtxStretch[2]; - vtx->v.tc[0] = courseVtx->tc[0]; - vtx->v.tc[1] = courseVtx->tc[1]; - vtx->v.cn[0] = (temp_a0 & 0xFC); - vtx->v.cn[1] = (temp_a3 & 0xFC); - vtx->v.cn[2] = courseVtx->ca[2]; - vtx->v.flag = flags; - vtx->v.cn[3] = 0xFF; - vtx++; - courseVtx++; - } -} - -void decompress_vtx(CourseVtx* arg0, u32 vertexCount) { - s32 size = ALIGN16(vertexCount * 0x18); -#ifdef TARGET_N64 - u32 segment = SEGMENT_NUMBER2(arg0); - u32 offset = SEGMENT_OFFSET(arg0); - void* freeSpace; - u8* vtxCompressed = VIRTUAL_TO_PHYSICAL2(gSegmentTable[segment] + offset); -#else - void* freeSpace; - u8* vtxCompressed = arg0; -#endif - UNUSED s32 pad; - - freeSpace = (void*) gNextFreeMemoryAddress; - gNextFreeMemoryAddress += size; - - mio0decode(vtxCompressed, (u8*) freeSpace); -#ifdef TARGET_N64 - func_802A86A8((CourseVtx*) freeSpace, vertexCount); -#endif - set_segment_base_addr(4, (void*) gHeapEndPtr); -} - -UNUSED void func_802A8844(void) { -} - -void unpack_lights(Gfx* arg0, UNUSED u8* arg1, s8 arg2) { - UNUSED s32 pad; - s32 a = (arg2 * 0x18) + 0x9000008; - s32 b = (arg2 * 0x18) + 0x9000000; - Gfx macro[] = { gsSPNumLights(NUMLIGHTS_1) }; - - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - - sGfxSeekPosition++; - arg0[sGfxSeekPosition].words.w0 = 0x3860010; - - arg0[sGfxSeekPosition].words.w1 = a; - - sGfxSeekPosition++; - arg0[sGfxSeekPosition].words.w0 = 0x3880010; - arg0[sGfxSeekPosition].words.w1 = b; - sGfxSeekPosition++; -} - -void unpack_displaylist(Gfx* arg0, u8* args, UNUSED s8 opcode) { - uintptr_t temp_v0 = args[sPackedSeekPosition++]; - uintptr_t temp_t7 = ((args[sPackedSeekPosition++]) << 8 | temp_v0) * 8; - arg0[sGfxSeekPosition].words.w0 = 0x06000000; - // Segment seven addr - arg0[sGfxSeekPosition].words.w1 = segment_offset_to_virtual( - 0x07, temp_t7); // (0x07000000 + temp_t7); // (gSegmentTable[segment] + ( (offset / 8) * sizeof(Gfx) ) ); - sGfxSeekPosition++; -} - -// end displaylist -void unpack_end_displaylist(Gfx* arg0, UNUSED u8* arg1, UNUSED s8 arg2) { - arg0[sGfxSeekPosition].words.w0 = (uintptr_t) (uint8_t) G_ENDDL << 24; - arg0[sGfxSeekPosition].words.w1 = 0; - sGfxSeekPosition++; -} - -void unpack_set_geometry_mode(Gfx* arg0, UNUSED u8* arg1, UNUSED s8 arg2) { - Gfx macro[] = { gsSPSetGeometryMode(G_CULL_BACK) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_clear_geometry_mode(Gfx* arg0, UNUSED u8* arg1, UNUSED s8 arg2) { - Gfx macro[] = { gsSPClearGeometryMode(G_CULL_BACK) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_cull_displaylist(Gfx* arg0, UNUSED u8* arg1, UNUSED s8 arg2) { - Gfx macro[] = { gsSPCullDisplayList(0, 7) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_combine_mode1(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetCombineMode(G_CC_MODULATERGBA, G_CC_MODULATERGBA) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_combine_mode2(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetCombineMode(G_CC_MODULATERGBDECALA, G_CC_MODULATERGBDECALA) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_combine_mode_shade(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetCombineMode(G_CC_SHADE, G_CC_SHADE) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_combine_mode4(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetCombineMode(G_CC_MODULATERGBDECALA, G_CC_MODULATERGBDECALA) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_combine_mode5(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetCombineMode(G_CC_DECALRGBA, G_CC_DECALRGBA) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_render_mode_opaque(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetRenderMode(G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_render_mode_tex_edge(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetRenderMode(G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_render_mode_translucent(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetRenderMode(G_RM_AA_ZB_XLU_SURF, G_RM_AA_ZB_XLU_SURF2) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_render_mode_opaque_decal(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetRenderMode(G_RM_AA_ZB_OPA_DECAL, G_RM_AA_ZB_OPA_DECAL) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_render_mode_translucent_decal(Gfx* arg0, UNUSED u8* arg1, UNUSED uintptr_t arg2) { - Gfx macro[] = { gsDPSetRenderMode(G_RM_AA_ZB_XLU_DECAL, G_RM_AA_ZB_XLU_DECAL) }; - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_tile_sync(Gfx* gfx, u8* args, s8 opcode) { - Gfx tileSync[] = { gsDPTileSync() }; - uintptr_t temp_a0; - uintptr_t lo; - uintptr_t hi; - - s32 width; - s32 height; - s32 fmt; - s32 siz; - s32 line; - s32 tmem; - s32 cms; - s32 masks; - s32 cmt; - s32 maskt; - s32 lrs; - s32 lrt; - UNUSED s32 pad[4]; - - tmem = 0; - switch (opcode) { - case 26: - width = 32; - height = 32; - fmt = 0; - break; - case 44: - width = 32; - height = 32; - fmt = 0; - tmem = 256; - break; - case 27: - width = 64; - height = 32; - fmt = 0; - break; - case 28: - width = 32; - height = 64; - fmt = 0; - break; - case 29: - width = 32; - height = 32; - fmt = 3; - break; - case 30: - width = 64; - height = 32; - fmt = 3; - break; - case 31: - width = 32; - height = 64; - fmt = 3; - break; - } - - // Set arguments - - siz = G_IM_SIZ_16b_BYTES; - line = ((((width * 2) + 7) >> 3)); - - temp_a0 = args[sPackedSeekPosition++]; - cms = temp_a0 & 0xF; - masks = (temp_a0 & 0xF0) >> 4; - - temp_a0 = args[sPackedSeekPosition++]; - cmt = temp_a0 & 0xF; - maskt = (temp_a0 & 0xF0) >> 4; - - // Generate gfx - - gfx[sGfxSeekPosition].words.w0 = tileSync->words.w0; - gfx[sGfxSeekPosition].words.w1 = tileSync->words.w1; - sGfxSeekPosition++; - - lo = ((uintptr_t) (uint8_t) G_SETTILE << 24) | (fmt << 21) | (siz << 19) | (line << 9) | tmem; - hi = ((cmt) << 18) | ((maskt) << 14) | ((cms) << 8) | ((masks) << 4); - - gfx[sGfxSeekPosition].words.w0 = lo; - gfx[sGfxSeekPosition].words.w1 = hi; - sGfxSeekPosition++; - - lrs = (width - 1) << 2; - lrt = (height - 1) << 2; - - lo = ((uintptr_t) (uint8_t) G_SETTILESIZE << 24); - hi = (lrs << 12) | lrt; - - gfx[sGfxSeekPosition].words.w0 = lo; - gfx[sGfxSeekPosition].words.w1 = hi; - sGfxSeekPosition++; -} - -uintptr_t get_texture(size_t offset) { - course_texture* textures = CM_GetProps()->textures; - size_t totalOffset = 0; - - while (textures->addr) { - if (totalOffset == offset) { - return (textures->addr); - } - totalOffset += textures->data_size; - textures++; - } - - printf("memory.c: get_texture()\nTEXTURE NOT FOUND DURING DISPLAYLIST EXTRACT\n"); - printf("offset: 0x%X\n", offset); - return NULL; -} - -void unpack_tile_load_sync(Gfx* gfx, u8* args, s8 opcode) { - UNUSED uintptr_t var; - Gfx tileSync[] = { gsDPTileSync() }; - Gfx loadSync[] = { gsDPLoadSync() }; - - uintptr_t arg; - uintptr_t lo; - uintptr_t hi; - uintptr_t addr; - uintptr_t width; - uintptr_t height; - uintptr_t fmt; - uintptr_t siz; - uintptr_t tmem; - uintptr_t tile; - size_t offset; - - switch (opcode) { - case 32: - width = 32; - height = 32; - fmt = 0; - break; - case 33: - width = 64; - height = 32; - fmt = 0; - break; - case 34: - width = 32; - height = 64; - fmt = 0; - break; - case 35: - width = 32; - height = 32; - fmt = 3; - break; - case 36: - width = 64; - height = 32; - fmt = 3; - break; - case 37: - width = 32; - height = 64; - fmt = 3; - break; - } - - // Set arguments - - // Waa? - var = args[sPackedSeekPosition]; - // Generates a texture address. - offset = args[sPackedSeekPosition++] << 11; - - sPackedSeekPosition++; - arg = args[sPackedSeekPosition++]; - siz = G_IM_SIZ_16b; - tmem = (arg & 0xF); - tile = (arg & 0xF0) >> 4; - - // Generate gfx - lo = ((uintptr_t) (uint8_t) G_SETTIMG_OTR_FILEPATH << 24) | (fmt << 21) | (siz << 19); - gfx[sGfxSeekPosition].words.w0 = lo; - gfx[sGfxSeekPosition].words.w1 = get_texture(offset); - sGfxSeekPosition++; - - gfx[sGfxSeekPosition].words.w0 = tileSync->words.w0; - gfx[sGfxSeekPosition].words.w1 = tileSync->words.w1; - sGfxSeekPosition++; - - lo = ((uintptr_t) (uint8_t) G_SETTILE << 24) | (fmt << 21) | (siz << 19) | tmem; - hi = tile << 24; - - gfx[sGfxSeekPosition].words.w0 = lo; - gfx[sGfxSeekPosition].words.w1 = hi; - sGfxSeekPosition++; - - gfx[sGfxSeekPosition].words.w0 = loadSync->words.w0; - gfx[sGfxSeekPosition].words.w1 = loadSync->words.w1; - sGfxSeekPosition++; - - lo = (uintptr_t) (uint8_t) G_LOADBLOCK << 24; - hi = (tile << 24) | (MIN((width * height) - 1, 0x7FF) << 12) | CALC_DXT(width, G_IM_SIZ_16b_BYTES); - - gfx[sGfxSeekPosition].words.w0 = lo; - gfx[sGfxSeekPosition].words.w1 = hi; - sGfxSeekPosition++; -} - -void unpack_texture_on(Gfx* arg0, UNUSED u8* args, UNUSED s8 arg2) { - Gfx macro[] = { gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON) }; - - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_texture_off(Gfx* arg0, UNUSED u8* args, UNUSED s8 arg2) { - Gfx macro[] = { gsSPTexture(0x1, 0x1, 0, G_TX_RENDERTILE, G_OFF) }; - - arg0[sGfxSeekPosition].words.w0 = macro->words.w0; - arg0[sGfxSeekPosition].words.w1 = macro->words.w1; - sGfxSeekPosition++; -} - -void unpack_vtx1(Gfx* gfx, u8* args, UNUSED s8 arg2) { - uintptr_t temp_t7; - uintptr_t temp_t7_2; - - uintptr_t temp = args[sPackedSeekPosition++]; - uintptr_t temp2 = ((args[sPackedSeekPosition++] << 8) | temp) * 0x10; - - temp = args[sPackedSeekPosition++]; - temp_t7 = temp & 0x3F; - temp = args[sPackedSeekPosition++]; - temp_t7_2 = temp & 0x3F; - - gfx[sGfxSeekPosition].words.w0 = - ((uintptr_t) (uint8_t) G_VTX << 24) | (temp_t7_2 * 2 << 16) | (((temp_t7 << 10) + ((0x10 * temp_t7) - 1))); - gfx[sGfxSeekPosition].words.w1 = (uintptr_t) segment_vtx_to_virtual(temp2); - sGfxSeekPosition++; -} - -void unpack_vtx2(Gfx* gfx, u8* args, s8 arg2) { - uintptr_t temp_t9; - uintptr_t temp_v1; - uintptr_t temp_v2; - - temp_v1 = args[sPackedSeekPosition++]; - temp_v2 = ((args[sPackedSeekPosition++] << 8) | temp_v1) * 0x10; - - temp_t9 = arg2 - 50; - - gfx[sGfxSeekPosition].words.w0 = ((uintptr_t) (uint8_t) G_VTX << 24) | ((temp_t9 << 10) + (((temp_t9) * 0x10) - 1)); - gfx[sGfxSeekPosition].words.w1 = (uintptr_t) segment_vtx_to_virtual(temp_v2); - sGfxSeekPosition++; -} - -void unpack_triangle(Gfx* gfx, u8* args, UNUSED s8 arg2) { - uintptr_t temp_v0; - uintptr_t phi_a0; - uintptr_t phi_a2; - uintptr_t phi_a3; - - temp_v0 = args[sPackedSeekPosition++]; - - if (gIsMirrorMode) { - phi_a3 = temp_v0 & 0x1F; - phi_a2 = (temp_v0 >> 5) & 7; - temp_v0 = args[sPackedSeekPosition++]; - phi_a2 |= (temp_v0 & 3) * 8; - phi_a0 = (temp_v0 >> 2) & 0x1F; - } else { - phi_a0 = temp_v0 & 0x1F; - phi_a2 = (temp_v0 >> 5) & 7; - temp_v0 = args[sPackedSeekPosition++]; - phi_a2 |= (temp_v0 & 3) * 8; - phi_a3 = (temp_v0 >> 2) & 0x1F; - } - gfx[sGfxSeekPosition].words.w0 = ((uintptr_t) (uint8_t) G_TRI1 << 24); - gfx[sGfxSeekPosition].words.w1 = ((phi_a0 * 2) << 16) | ((phi_a2 * 2) << 8) | (phi_a3 * 2); - sGfxSeekPosition++; -} - -void unpack_quadrangle(Gfx* gfx, u8* args, UNUSED s8 arg2) { - uintptr_t temp_v0; - uintptr_t phi_t0; - uintptr_t phi_a3; - uintptr_t phi_a0; - uintptr_t phi_t2; - uintptr_t phi_t1; - uintptr_t phi_a2; - - temp_v0 = args[sPackedSeekPosition++]; - - if (gIsMirrorMode) { - phi_t0 = temp_v0 & 0x1F; - phi_a3 = (temp_v0 >> 5) & 7; - temp_v0 = args[sPackedSeekPosition++]; - phi_a3 |= (temp_v0 & 3) * 8; - phi_a0 = (temp_v0 >> 2) & 0x1F; - } else { - phi_a0 = temp_v0 & 0x1F; - phi_a3 = (temp_v0 >> 5) & 7; - temp_v0 = args[sPackedSeekPosition++]; - phi_a3 |= (temp_v0 & 3) * 8; - phi_t0 = (temp_v0 >> 2) & 0x1F; - } - - temp_v0 = args[sPackedSeekPosition++]; - - if (gIsMirrorMode) { - phi_a2 = temp_v0 & 0x1F; - phi_t1 = (temp_v0 >> 5) & 7; - temp_v0 = args[sPackedSeekPosition++]; - phi_t1 |= (temp_v0 & 3) * 8; - phi_t2 = (temp_v0 >> 2) & 0x1F; - } else { - phi_t2 = temp_v0 & 0x1F; - phi_t1 = (temp_v0 >> 5) & 7; - temp_v0 = args[sPackedSeekPosition++]; - phi_t1 |= (temp_v0 & 3) * 8; - phi_a2 = (temp_v0 >> 2) & 0x1F; - } - gfx[sGfxSeekPosition].words.w0 = - ((uintptr_t) (uint8_t) G_TRI2 << 24) | ((phi_a0 * 2) << 16) | ((phi_a3 * 2) << 8) | (phi_t0 * 2); - gfx[sGfxSeekPosition].words.w1 = ((phi_t2 * 2) << 16) | ((phi_t1 * 2) << 8) | (phi_a2 * 2); - sGfxSeekPosition++; -} - -void unpack_spline_3D(Gfx* gfx, u8* arg1, UNUSED s8 arg2) { - uintptr_t temp_v0; - uintptr_t phi_a0; - uintptr_t phi_t0; - uintptr_t phi_a3; - uintptr_t phi_a2; - - temp_v0 = arg1[sPackedSeekPosition++]; - - if (gIsMirrorMode != 0) { - phi_a0 = temp_v0 & 0x1F; - phi_a2 = ((temp_v0 >> 5) & 7); - temp_v0 = arg1[sPackedSeekPosition++]; - phi_a2 |= ((temp_v0 & 3) * 8); - phi_a3 = (temp_v0 >> 2) & 0x1F; - phi_t0 = ((temp_v0 >> 7) & 1); - temp_v0 = arg1[sPackedSeekPosition++]; - phi_t0 |= (temp_v0 & 0xF) * 2; - } else { - phi_t0 = temp_v0 & 0x1F; - phi_a3 = ((temp_v0 >> 5) & 7); - temp_v0 = arg1[sPackedSeekPosition++]; - phi_a3 |= ((temp_v0 & 3) * 8); - phi_a2 = (temp_v0 >> 2) & 0x1F; - phi_a0 = ((temp_v0 >> 7) & 1); - temp_v0 = arg1[sPackedSeekPosition++]; - phi_a0 |= (temp_v0 & 0xF) * 2; - } - gfx[sGfxSeekPosition].words.w0 = ((uintptr_t) (uint8_t) G_QUAD << 24); - gfx[sGfxSeekPosition].words.w1 = ((phi_a0 * 2) << 24) | ((phi_t0 * 2) << 16) | ((phi_a3 * 2) << 8) | (phi_a2 * 2); - sGfxSeekPosition++; -} - -UNUSED void func_802A9AEC(void) { -} - -/** - * Unpacks course packed displaylists by iterating through each byte of the packed file. - * Each packed displaylist entry has an opcode and any number of arguments. - * The opcodes range from 0 to 87 which are used to run the relevant unpack function. - * The file pointer increments when arguments are used. This way, - * displaylist_unpack will always read an opcode and not an argument by accident. - * - * @warning opcodes that do not contain a definition in the switch are ignored. If an undefined opcode - * contained arguments the unpacker might try to unpack those arguments. - * This issue is prevented so long as the packed file adheres to correct opcodes and unpack code - * increments the file pointer the correct number of times. - */ -void displaylist_unpack(uintptr_t* data, uintptr_t finalDisplaylistOffset, u32 arg2) { -#ifdef TARGET_N64 - uintptr_t segment = SEGMENT_NUMBER2(data); - uintptr_t offset = SEGMENT_OFFSET(data); - u8* packed_dl = VIRTUAL_TO_PHYSICAL2(gSegmentTable[segment] + offset); -#else - u8* packed_dl = finalDisplaylistOffset; - Gfx* gfx = data; -#endif - -#ifdef TARGET_N64 - Gfx* gfx; - u32 addr; -#endif - - u8 opcode; -#ifdef TARGET_N64 - finalDisplaylistOffset = ALIGN16(finalDisplaylistOffset) + 8; - gHeapEndPtr -= finalDisplaylistOffset; - addr = gHeapEndPtr; - gfx = (Gfx*) gHeapEndPtr; -#endif - sGfxSeekPosition = 0; - sPackedSeekPosition = 0; - - while (true) { - - // Seek to the next byte - opcode = packed_dl[sPackedSeekPosition++]; - - // Break when the eof has been reached denoted by opcode 0xFF - if (opcode == 0xFF) { - break; - } - - switch (opcode) { - case 0x0: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x1: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x2: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x3: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x4: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x5: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x6: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x7: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x8: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x9: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0xA: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0xB: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0xC: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0xD: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0xE: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0xF: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x10: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x11: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x12: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x13: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x14: - unpack_lights(gfx, packed_dl, opcode); - break; - case 0x15: - unpack_combine_mode1(gfx, packed_dl, arg2); - break; - case 0x16: - unpack_combine_mode2(gfx, packed_dl, arg2); - break; - case 0x17: - unpack_combine_mode_shade(gfx, packed_dl, arg2); - break; - case 0x2E: - unpack_combine_mode4(gfx, packed_dl, arg2); - break; - case 0x53: - unpack_combine_mode5(gfx, packed_dl, arg2); - break; - case 0x18: - unpack_render_mode_opaque(gfx, packed_dl, arg2); - break; - case 0x19: - unpack_render_mode_tex_edge(gfx, packed_dl, arg2); - break; - case 0x2F: - unpack_render_mode_translucent(gfx, packed_dl, arg2); - break; - case 0x54: - unpack_render_mode_opaque_decal(gfx, packed_dl, arg2); - break; - case 0x55: - unpack_render_mode_translucent_decal(gfx, packed_dl, arg2); - break; - case 0x1A: - unpack_tile_sync(gfx, packed_dl, opcode); - break; - case 0x2C: - unpack_tile_sync(gfx, packed_dl, opcode); - break; - case 0x1B: - unpack_tile_sync(gfx, packed_dl, opcode); - break; - case 0x1C: - unpack_tile_sync(gfx, packed_dl, opcode); - break; - case 0x1D: - unpack_tile_sync(gfx, packed_dl, opcode); - break; - case 0x1E: - unpack_tile_sync(gfx, packed_dl, opcode); - break; - case 0x1F: - unpack_tile_sync(gfx, packed_dl, opcode); - break; - case 0x20: - unpack_tile_load_sync(gfx, packed_dl, opcode); - break; - case 0x21: - unpack_tile_load_sync(gfx, packed_dl, opcode); - break; - case 0x22: - unpack_tile_load_sync(gfx, packed_dl, opcode); - break; - case 0x23: - unpack_tile_load_sync(gfx, packed_dl, opcode); - break; - case 0x24: - unpack_tile_load_sync(gfx, packed_dl, opcode); - break; - case 0x25: - unpack_tile_load_sync(gfx, packed_dl, opcode); - break; - case 0x26: - unpack_texture_on(gfx, packed_dl, opcode); - break; - case 0x27: - unpack_texture_off(gfx, packed_dl, opcode); - break; - case 0x28: - unpack_vtx1(gfx, packed_dl, opcode); - break; - case 0x33: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x34: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x35: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x36: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x37: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x38: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x39: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x3A: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x3B: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x3C: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x3D: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x3E: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x3F: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x40: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x41: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x42: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x43: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x44: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x45: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x46: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x47: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x48: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x49: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x4A: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x4B: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x4C: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x4D: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x4E: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x4F: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x50: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x51: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x52: - unpack_vtx2(gfx, packed_dl, opcode); - break; - case 0x29: - unpack_triangle(gfx, packed_dl, opcode); - break; - case 0x58: - unpack_quadrangle(gfx, packed_dl, opcode); - break; - case 0x30: - unpack_spline_3D(gfx, packed_dl, opcode); - break; - case 0x2D: - unpack_cull_displaylist(gfx, packed_dl, opcode); - break; - case 0x2A: - unpack_end_displaylist(gfx, packed_dl, opcode); - break; - case 0x56: - unpack_set_geometry_mode(gfx, packed_dl, opcode); - break; - case 0x57: - unpack_clear_geometry_mode(gfx, packed_dl, opcode); - break; - case 0x2B: - unpack_displaylist(gfx, packed_dl, opcode); - break; - default: - // Skip unknown values - break; - } - } -#ifdef TARGET_N64 - set_segment_base_addr(0x7, (void*) addr); -#endif -} - -struct UnkStr_802AA7C8 { - u8* unk0; - uintptr_t unk4; - uintptr_t unk8; - uintptr_t unkC; -}; - -void decompress_textures(u32* arg0) { -#ifdef TARGET_N64 - u32 segment = SEGMENT_NUMBER2(arg0); - u32 offset = SEGMENT_OFFSET(arg0); - struct UnkStr_802AA7C8* phi_s0 = (struct UnkStr_802AA7C8*) VIRTUAL_TO_PHYSICAL2(gSegmentTable[segment] + offset); -#else - struct UnkStr_802AA7C8* phi_s0 = (struct UnkStr_802AA7C8*) arg0; -#endif - struct UnkStr_802AA7C8* temp_s0; - uintptr_t temp_t2; - u8* temp_a0; - uintptr_t phi_v0; - uintptr_t sp20; - - phi_v0 = 0; - temp_s0 = phi_s0; - while (true) { - temp_a0 = phi_s0->unk0; - if ((temp_a0) == 0) { - break; - } - phi_v0 += phi_s0->unk8; - phi_s0++; - } - phi_s0 = temp_s0; - gHeapEndPtr -= phi_v0; - sp20 = gHeapEndPtr; - - while (true) { - temp_a0 = phi_s0->unk0; - if ((temp_a0) == 0) { - break; - } - MIO0_0F(temp_a0, phi_s0->unk4, phi_s0->unk8); - phi_s0++; - } - gHeapEndPtr = sp20; - temp_t2 = gHeapEndPtr; - set_segment_base_addr(0x5, (void*) temp_t2); -} - -void* decompress_segments(u8* start, u8* end) { - return NULL; - UNUSED u32 pad; - u32 sp28; - u32 size = ALIGN16(end - start); - u8* heapEnd; - u32* freeSpace; - - heapEnd = (u8*) gHeapEndPtr - size; - // sp20 = temp_a0; - dma_copy(heapEnd, start, size); - sp28 = *(u32*) (heapEnd + 4); - sp28 = ALIGN16(sp28); - freeSpace = (u32*) gNextFreeMemoryAddress; - mio0decode(heapEnd, (u8*) freeSpace); - gNextFreeMemoryAddress += sp28; - return (void*) freeSpace; -} - -extern const course_texture mario_raceway_textures[30]; /* To help verify if ptrs are pointing within segments see gfx_pc.cpp gfx_step() */ uintptr_t vtxSegEnd; diff --git a/src/racing/memory.h b/src/racing/memory.h index 72ecd0eb5..c84224e96 100644 --- a/src/racing/memory.h +++ b/src/racing/memory.h @@ -43,24 +43,12 @@ struct AllocOnlyPool { u8* load_lakitu_tlut_x64(const char** textureList, size_t length); void* get_next_available_memory_addr(uintptr_t); -uintptr_t set_segment_base_addr(s32, void*); -void* get_segment_base_addr(s32); -void* segmented_to_virtual(const void*); -void* segment_offset_to_virtual(uint32_t, uint32_t); -void* segment_vtx_to_virtual(size_t offset); -void* segmented_texture_to_virtual(uintptr_t addr); -void* segmented_uintptr_t_to_virtual(uintptr_t); -Gfx* segmented_gfx_to_virtual(const void*); -void replace_segmented_textures_with_o2r_textures(Gfx* gfx, const course_texture* textures); -void move_segment_table_to_dmem(void); void initialize_memory_pool(void); -void* decompress_segments(u8*, u8*); void* allocate_memory(size_t); void* load_data(uintptr_t, uintptr_t); void func_802A7D54(s32, s32); void func_802A86A8(CourseVtx* data, Vtx* vtx, size_t arg1); -void displaylist_unpack(uintptr_t* data, uintptr_t finalDisplaylistOffset, u32 arg2); void main_pool_init(uintptr_t, uintptr_t); void* main_pool_alloc(uintptr_t, uintptr_t); @@ -70,35 +58,8 @@ uintptr_t main_pool_available(void); uintptr_t main_pool_push_state(void); uintptr_t main_pool_pop_state(void); void* func_802A80B0(u8*, u8*, u8*); -void func_802A81EC(void); -struct AllocOnlyPool* alloc_only_pool_init(uintptr_t, uintptr_t); -uintptr_t func_802A82AC(s32); -uintptr_t func_802A8348(s32, s32, s32); -u8* dma_textures(const char* texture, size_t arg1, size_t arg2); uintptr_t MIO0_0F(u8*, uintptr_t, uintptr_t); -void func_802A8844(void); -void unpack_lights(Gfx*, u8*, s8); -void unpack_displaylist(Gfx*, u8*, s8); -void unpack_end_displaylist(Gfx*, u8*, s8); -void unpack_set_geometry_mode(Gfx*, u8*, s8); -void unpack_clear_geometry_mode(Gfx*, u8*, s8); -void unpack_cull_displaylist(Gfx*, u8*, s8); -void unpack_combine_mode1(Gfx*, u8*, uintptr_t); -void unpack_combine_mode2(Gfx*, u8*, uintptr_t); -void unpack_combine_mode_shade(Gfx*, u8*, uintptr_t); -void unpack_combine_mode4(Gfx*, u8*, uintptr_t); -void unpack_combine_mode5(Gfx*, u8*, uintptr_t); -void unpack_render_mode_opaque(Gfx*, u8*, uintptr_t); -void unpack_render_mode_tex_edge(Gfx*, u8*, uintptr_t); -void unpack_render_mode_translucent(Gfx*, u8*, uintptr_t); -void unpack_render_mode_opaque_decal(Gfx*, u8*, uintptr_t); -void unpack_render_mode_translucent_decal(Gfx*, u8*, uintptr_t); -void unpack_tile_sync(Gfx*, u8*, s8); -void unpack_tile_load_sync(Gfx*, u8*, s8); -void unpack_texture_on(Gfx*, u8*, s8); -void unpack_texture_off(Gfx*, u8*, s8); void load_course(s32); -uintptr_t set_segment_base_addr_x64(s32, void*); extern u8 _other_texturesSegmentRomStart[]; diff --git a/src/racing/render_courses.c b/src/racing/render_courses.c index a37e98d82..13464b18e 100644 --- a/src/racing/render_courses.c +++ b/src/racing/render_courses.c @@ -1,10 +1,11 @@ - #include +#include #include #include #include #include #include #include +#include #include "../camera.h" #include "framebuffer_effects.h" #include "port/interpolation/FrameInterpolation.h" @@ -17,6 +18,7 @@ #include "memory.h" #include "code_80281780.h" #include "collision.h" +#include "resourcebridge.h" #include "skybox_and_splitscreen.h" #include "courses/all_course_data.h" #include "courses/all_course_packed.h" @@ -55,7 +57,7 @@ s32 func_80290C20(Camera* camera) { void parse_course_displaylists(TrackSections* asset) { TrackSections* section = (TrackSections*) asset; - while (section->addr != 0) { + while (section->crc != 0) { if (section->flags & 0x8000) { D_8015F59C = 1; } else { @@ -71,7 +73,16 @@ void parse_course_displaylists(TrackSections* asset) { } else { D_8015F5A4 = 0; } - generate_collision_mesh(section->addr, section->surfaceType, section->sectionId); + // char* name = ResourceGetNameByCrc(section->crc); + // printf("Generating collision mesh for section %d: %s\n", section->sectionId, name != NULL ? name : + // "Unknown"); + void* addr = ResourceGetDataByCrc(section->crc); + if (addr == NULL) { + printf("Warning: Could not find resource for section %d with crc 0x%llX\n", section->sectionId, + section->crc); + addr = (void*) section->crc; + } + generate_collision_mesh(addr, section->surfaceType, section->sectionId); section++; } } @@ -186,21 +197,7 @@ void render_course_segments(const char* addr[], struct UnkStruct_800DC5EC* arg1) void func_80291198(void) { // d_course_mario_raceway_packed_dl_1140 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07001140))); // -} - -void render_mario_raceway_pipe(void) { - if (gScreenModeSelection == SCREEN_MODE_1P) { - // d_course_mario_raceway_packed_dl_8E8 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070008E8))); - } else { - if (CVarGetInteger("gDisableLod", 1) == true) { - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070008E8))); - return; - } - // d_course_mario_raceway_packed_dl_2D68 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07002D68))); - } + gSPDisplayList(gDisplayListHead++, (Gfx*) d_course_mario_raceway_packed_dl_1140); // } void func_8029122C(struct UnkStruct_800DC5EC* arg0, s32 playerId) { @@ -219,1189 +216,47 @@ void func_8029122C(struct UnkStruct_800DC5EC* arg0, s32 playerId) { // This pushes the camera matrices to the top of the stack. // It does not appear to really do anything. - // Perhaps they thought it was necessary to set the camera back to projection mode since rainbow road uses model mode. - // But that issue should be cleared up in render_screens() already. + // Perhaps they thought it was necessary to set the camera back to projection mode since rainbow road uses model + // mode. But that issue should be cleared up in render_screens() already. switch (playerId) { case PLAYER_ONE: - size_t playerIdx = PLAYER_ONE; + size_t playerIdx = PLAYER_ONE; if (CVarGetInteger("gFreecam", 0) == true) { playerIdx = CAMERA_FREECAM; } - gSPMatrix(gDisplayListHead++, GetPerspMatrix(playerIdx), - G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); - gSPMatrix(gDisplayListHead++, GetLookAtMatrix(playerIdx), - G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); + gSPMatrix(gDisplayListHead++, GetPerspMatrix(playerIdx), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); + gSPMatrix(gDisplayListHead++, GetLookAtMatrix(playerIdx), G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); break; case PLAYER_TWO: - gSPMatrix(gDisplayListHead++, GetPerspMatrix(PLAYER_TWO), - G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); - gSPMatrix(gDisplayListHead++, GetLookAtMatrix(PLAYER_TWO), - G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); + gSPMatrix(gDisplayListHead++, GetPerspMatrix(PLAYER_TWO), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); + gSPMatrix(gDisplayListHead++, GetLookAtMatrix(PLAYER_TWO), G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); break; case PLAYER_THREE: - gSPMatrix(gDisplayListHead++, GetPerspMatrix(PLAYER_THREE), - G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); - gSPMatrix(gDisplayListHead++, GetLookAtMatrix(PLAYER_THREE), - G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); + gSPMatrix(gDisplayListHead++, GetPerspMatrix(PLAYER_THREE), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); + gSPMatrix(gDisplayListHead++, GetLookAtMatrix(PLAYER_THREE), G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); break; case PLAYER_FOUR: - gSPMatrix(gDisplayListHead++, GetPerspMatrix(PLAYER_FOUR), - G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); - gSPMatrix(gDisplayListHead++, GetLookAtMatrix(PLAYER_FOUR), - G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); + gSPMatrix(gDisplayListHead++, GetPerspMatrix(PLAYER_FOUR), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); + gSPMatrix(gDisplayListHead++, GetLookAtMatrix(PLAYER_FOUR), G_MTX_NOPUSH | G_MTX_MUL | G_MTX_PROJECTION); break; } FrameInterpolation_RecordOpenChild("track_water", playerId); mtxf_identity(matrix); + if (gIsMirrorMode != 0) { + matrix[0][0] = -1.0f; + // matrix[1][1] = -1.0f; + // matrix[2][2] = -1.0f; + } render_set_position(matrix, 0); CM_DrawWater(arg0, pathCounter, cameraRot, playerDirection); FrameInterpolation_RecordCloseChild(); - // switch (gCurrentCourseId) { - // case COURSE_BOWSER_CASTLE: - // if (gActiveScreenMode != SCREEN_MODE_1P) { - // return; - // } - // if (pathCounter < 6) { - // return; - // } - // if (pathCounter > 9) { - // return; - // } - // if (pathCounter == 9) { - // if (cameraRot < 0xA000) { - // return; - // } - // if (cameraRot > 0xE000) { - // return; - // } - // } - // gSPDisplayList(gDisplayListHead++, d_course_bowsers_castle_dl_9228); - // break; - // case COURSE_BANSHEE_BOARDWALK: - // gDPPipeSync(gDisplayListHead++); - // gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - // gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - // gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2); - // gDPSetBlendMask(gDisplayListHead++, 0xFF); - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // // d_course_banshee_boardwalk_packed_dl_878 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000878)); - // gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); - // gDPPipeSync(gDisplayListHead++); - // break; - // case COURSE_KOOPA_BEACH: - - // gDPPipeSync(gDisplayListHead++); - // gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - // gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - // gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2); - // gDPSetBlendMask(gDisplayListHead++, 0xFF); - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - - // switch (pathCounter) { - // case 22: - // case 23: - // case 29: - // case 30: - // case 31: - // case 37: - // gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // // d_course_koopa_troopa_beach_packed_dl_9E70 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07009E70)); - // gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - // break; - // } - // vector[0] = 0.0f; - // vector[1] = gWaterLevel; - // vector[2] = 0.0f; - // mtxf_translate(matrix, vector); - // render_set_position(matrix, 0); - - // gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2); - // gDPSetBlendMask(gDisplayListHead++, 0xFF); - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // render_course_segments(koopa_troopa_beach_dls2, arg0); - // gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 1, 1, G_OFF); - // gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - // gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); - // gDPPipeSync(gDisplayListHead++); - // break; - // case COURSE_SHERBET_LAND: - // gDPPipeSync(gDisplayListHead++); - // gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - // gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - // gDPSetBlendMask(gDisplayListHead++, 0xFF); - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // gDPSetTextureFilter(gDisplayListHead++, G_TF_BILERP); - // gDPSetTexturePersp(gDisplayListHead++, G_TP_PERSP); - - // mtxf_identity(matrix); - // render_set_position(matrix, 0); - // render_course_segments(sherbet_land_dls_2, arg0); - - // gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); - // if ((func_80290C20(arg0->camera) == 1) && (get_water_level(player) < player->pos[1])) { - // gSPSetGeometryMode(gDisplayListHead++, G_ZBUFFER); - // gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - // gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // // d_course_sherbet_land_packed_dl_2B48 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07002B48)); - // } - // gDPPipeSync(gDisplayListHead++); - // break; - // case COURSE_RAINBOW_ROAD: - // gDPPipeSync(gDisplayListHead++); - // mtxf_identity(matrix); - // render_set_position(matrix, 0); - // gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // render_course_segments(rainbow_road_dls, arg0); - // gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - // gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); - // gDPPipeSync(gDisplayListHead++); - // break; - // case COURSE_WARIO_STADIUM: - // gDPPipeSync(gDisplayListHead++); - // gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - // gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - // gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2); - // gDPSetBlendMask(gDisplayListHead++, 0xFF); - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // gDPSetTextureFilter(gDisplayListHead++, G_TF_BILERP); - // gDPSetTexturePersp(gDisplayListHead++, G_TP_PERSP); - - // mtxf_identity(matrix); - // render_set_position(matrix, 0); - - // gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - // gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_SURF, G_RM_AA_ZB_XLU_SURF2); - // gDPSetPrimColor(gDisplayListHead++, 0, 0, 0xFF, 0xFF, 0x00, 0xFF); - // // d_course_wario_stadium_packed_dl_EC0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000EC0)); - // gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 1, 1, G_OFF); - // gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - // gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); - // gDPPipeSync(gDisplayListHead++); - // break; - // case COURSE_DK_JUNGLE: - // gDPPipeSync(gDisplayListHead++); - // gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - // gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - // gDPSetBlendMask(gDisplayListHead++, 0xFF); - // gDPSetTextureFilter(gDisplayListHead++, G_TF_BILERP); - // gDPSetTexturePersp(gDisplayListHead++, G_TP_PERSP); - - // mtxf_identity(matrix); - // render_set_position(matrix, 0); - - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2); - - // if (pathCounter < 17) { - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // // d_course_dks_jungle_parkway_packed_dl_3E40 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E40)); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // if ((pathCounter >= 6) && (pathCounter < 13)) { - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // // d_course_dks_jungle_parkway_packed_dl_3DD0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003DD0)); - // } - // } else if ((pathCounter == 21) || (pathCounter == 22)) { - // if (playerDirection == 3) { - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - // // d_course_dks_jungle_parkway_packed_dl_36A8 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070036A8)); - // } - // if ((playerDirection == 1) || (playerDirection == 0)) { - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - // // d_course_dks_jungle_parkway_packed_dl_36A8 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070036A8)); - // } else { - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // // d_course_dks_jungle_parkway_packed_dl_3F30 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003F30)); - // // d_course_dks_jungle_parkway_packed_dl_36A8 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070036A8)); - // } - // } else if (pathCounter == 24) { - // if ((playerDirection == 0) || (playerDirection == 3)) { - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - // // d_course_dks_jungle_parkway_packed_dl_36A8 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070036A8)); - // } - // } else if (pathCounter == 23) { - // if (playerDirection == 3) { - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - // // d_course_dks_jungle_parkway_packed_dl_36A8 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070036A8)); - // } else if (playerDirection == 0) { - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - // // d_course_dks_jungle_parkway_packed_dl_36A8 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070036A8)); - // } - // } - // gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - // switch (pathCounter) { - // case 5: - // if (playerDirection != 3) { - // // d_course_dks_jungle_parkway_packed_dl_3DD0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003DD0)); - // } - // break; - // case 17: - // switch (playerDirection) { - // case 0: - // // d_course_dks_jungle_parkway_packed_dl_3E40 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E40)); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // break; - // case 1: - // // d_course_dks_jungle_parkway_packed_dl_3DD0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003DD0)); - // // d_course_dks_jungle_parkway_packed_dl_3E40 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E40)); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // break; - // case 2: - // // d_course_dks_jungle_parkway_packed_dl_ - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E40)); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // // d_course_dks_jungle_parkway_packed_dl_3F30 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003F30)); - // break; - // case 3: - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // // d_course_dks_jungle_parkway_packed_dl_3F30 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003F30)); - // break; - // } - // break; - // case 18: - // switch (playerDirection) { - // case 0: - // // d_course_dks_jungle_parkway_packed_dl_3E40 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E40)); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // break; - // case 1: - // // d_course_dks_jungle_parkway_packed_dl_3DD0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003DD0)); - // // d_course_dks_jungle_parkway_packed_dl_3E40 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E40)); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // break; - // case 2: - // // d_course_dks_jungle_parkway_packed_dl_3E40 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E40)); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // break; - // } - // break; - // case 21: - // if ((playerDirection == 0) || (playerDirection == 1)) { - // // d_course_dks_jungle_parkway_packed_dl_3E40 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003E40)); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // // d_course_dks_jungle_parkway_packed_dl_3F30 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003F30)); - // } else { - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003EB0)); - // } - // break; - // case 22: - // if (playerDirection == 0) { - // // d_course_dks_jungle_parkway_packed_dl_3F30 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003F30)); - // } - // break; - // case 23: - // if (playerDirection != 1) { - // // d_course_dks_jungle_parkway_packed_dl_3F30 - // gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07003F30)); - // } - // break; - // } - // gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 1, 1, G_OFF); - // gDPSetAlphaCompare(gDisplayListHead++, G_AC_NONE); - // gDPPipeSync(gDisplayListHead++); - // break; - // } -} - -void render_mario_raceway(struct UnkStruct_800DC5EC* arg0) { - UNUSED s32 pad; - u16 sp22 = arg0->pathCounter; - u16 playerDirection = arg0->playerDirection; - - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - - if (func_80290C20(arg0->camera) == 1) { - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_mario_raceway_packed_dl_3050 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07003050))); - } - - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - gDPPipeSync(gDisplayListHead++); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - - switch (sp22) { - case 1: - case 2: - case 17: - if ((playerDirection == 2) || (playerDirection == 1)) { - render_mario_raceway_pipe(); - } - break; - case 3: - if (playerDirection != 0) { - render_mario_raceway_pipe(); - } - break; - case 4: - if (playerDirection == 0) { - func_80291198(); - } else { - if (playerDirection == 1) { - func_80291198(); - } - render_mario_raceway_pipe(); - } - break; - case 5: - case 6: - if ((playerDirection == 2) || (playerDirection == 3)) { - render_mario_raceway_pipe(); - } else { - func_80291198(); - } - break; - case 7: - func_80291198(); - if ((playerDirection == 2) || (playerDirection == 3)) { - render_mario_raceway_pipe(); - } - break; - case 8: - case 9: - if (playerDirection != 1) { - render_mario_raceway_pipe(); - } - /* fallthrough */ - case 10: - if (playerDirection != 2) { - func_80291198(); - } - break; - case 11: - if (playerDirection == 0) { - render_mario_raceway_pipe(); - func_80291198(); - } else if (playerDirection == 3) { - render_mario_raceway_pipe(); - } - break; - case 12: - if ((playerDirection == 0) || (playerDirection == 3)) { - render_mario_raceway_pipe(); - } - break; - case 13: - case 14: - if (playerDirection != 1) { - case 15: - case 16: - render_mario_raceway_pipe(); - } - break; - } - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_mario_raceway_packed_dl_3508 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07003508))); - // d_course_mario_raceway_packed_dl_3240 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07003240))); - // d_course_mario_raceway_packed_dl_14A0 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070014A0))); - render_course_segments(mario_raceway_dls, arg0); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // d_course_mario_raceway_packed_dl_450 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000450))); - // d_course_mario_raceway_packed_dl_240 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000240))); - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - // d_course_mario_raceway_packed_dl_E0 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070000E0))); - // d_course_mario_raceway_packed_dl_160 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000160))); -} - -void render_choco_mountain(struct UnkStruct_800DC5EC* arg0) { - UNUSED s32 pad[13]; - - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - - if (func_80290C20(arg0->camera) == 1) { - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_choco_mountain_packed_dl_4608 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07004608)); - } - gDPSetCycleType(gDisplayListHead++, G_CYC_2CYCLE); - gDPSetFogColor(gDisplayListHead++, D_801625EC, D_801625F4, D_801625F0, 0xFF); - gSPFogPosition(gDisplayListHead++, D_802B87B0, D_802B87B4); - - gDPPipeSync(gDisplayListHead++); - gSPSetGeometryMode(gDisplayListHead++, G_FOG); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATERGB, G_CC_PASS2); - - gDPSetRenderMode(gDisplayListHead++, G_RM_FOG_SHADE_A, G_RM_AA_ZB_OPA_SURF2); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - // d_course_choco_mountain_packed_dl_5A70 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005A70)); - // d_course_choco_mountain_packed_dl_828 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000828)); - // d_course_choco_mountain_packed_dl_8E0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070008E0)); - // d_course_choco_mountain_packed_dl_5868 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005868)); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - - render_course_segments(choco_mountain_dls, arg0); - - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - gDPSetRenderMode(gDisplayListHead++, G_RM_FOG_SHADE_A, G_RM_AA_ZB_TEX_EDGE2); - gDPSetCombineMode(gDisplayListHead++, G_CC_DECALRGBA, G_CC_PASS2); - // d_course_choco_mountain_packed_dl_448 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000448)); - // d_course_choco_mountain_packed_dl_5D8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070005D8)); - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - // d_course_choco_mountain_packed_dl_718 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000718)); - gSPClearGeometryMode(gDisplayListHead++, G_FOG); - gDPSetCycleType(gDisplayListHead++, G_CYC_1CYCLE); - gDPPipeSync(gDisplayListHead++); -} - -void render_bowsers_castle(struct UnkStruct_800DC5EC* arg0) { - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - - if (func_80290C20(arg0->camera) == 1) { - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_bowsers_castle_packed_dl_6A80 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07006A80)); - } - - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - - D_802B87BC++; - if (D_802B87BC > 255) { - D_802B87BC = 0; - } - render_course_segments((uintptr_t) bowsers_castle_dls, arg0); - - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - // d_course_bowsers_castle_packed_dl_248 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000248)); -} - -void render_banshee_boardwalk(struct UnkStruct_800DC5EC* arg0) { - Camera* camera = arg0->camera; - Mat4 spCC; - UNUSED s32 pad[6]; - Vec3f spA8; - UNUSED s32 pad2[6]; - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gDPSetCombineMode(gDisplayListHead++, G_CC_DECALRGBA, G_CC_DECALRGBA); - // d_course_banshee_boardwalk_packed_dl_7228 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07007228)); - - gSPFogPosition(gDisplayListHead++, D_802B87B0, D_802B87B4); - - gDPPipeSync(gDisplayListHead++); - - gSPClearGeometryMode(gDisplayListHead++, - G_SHADE | G_CULL_BOTH | G_FOG | G_LIGHTING | G_TEXTURE_GEN | G_TEXTURE_GEN_LINEAR | G_LOD); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gSPSetGeometryMode(gDisplayListHead++, G_SHADE | G_CULL_BACK | G_SHADING_SMOOTH); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - // d_course_banshee_boardwalk_packed_dl_5CD0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005CD0)); - // d_course_banshee_boardwalk_packed_dl_4E60 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07004E60)); - // d_course_banshee_boardwalk_packed_dl_69B0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070069B0)); - - render_course_segments(banshee_boardwalk_dls, arg0); - - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gSPSetGeometryMode(gDisplayListHead++, G_SHADE | G_SHADING_SMOOTH); - // d_course_banshee_boardwalk_packed_dl_580 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000580)); - // d_course_banshee_boardwalk_packed_dl_60 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000060)); - // d_course_banshee_boardwalk_packed_dl_540 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000540)); - - if (camera->pos[1] < -20.0f) { - // d_course_banshee_boardwalk_packed_dl_6310 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07006310)); - } - spA8[0] = camera->pos[0]; - spA8[1] = -82.0f; - spA8[2] = camera->pos[2]; - mtxf_translate(spCC, spA8); - render_set_position(spCC, 0); - - gSPDisplayList(gDisplayListHead++, d_course_banshee_boardwalk_dl_B278); - gDPPipeSync(gDisplayListHead++); -} - -void render_yoshi_valley(struct UnkStruct_800DC5EC* arg0) { - - gDPPipeSync(gDisplayListHead++); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEI, G_CC_MODULATEI); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - render_course_segments((uintptr_t) d_course_yoshi_valley_dl_list, arg0); - gDPPipeSync(gDisplayListHead++); -} - -void render_frappe_snowland(struct UnkStruct_800DC5EC* arg0) { - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - - if (func_80290C20(arg0->camera) == 1) { - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_frappe_snowland_packed_dl_65E0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070065E0)); - } - - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - render_course_segments((uintptr_t) d_course_frappe_snowland_dl_list, arg0); -} - -void render_koopa_troopa_beach(struct UnkStruct_800DC5EC* arg0) { - - gDPPipeSync(gDisplayListHead++); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - - if (func_80290C20(arg0->camera) == 1) { - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_koopa_troopa_beach_packed_dl_9CC0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07009CC0)); - } - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_koopa_troopa_beach_packed_dl_9688 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07009688)); - render_course_segments(d_course_koopa_troopa_beach_dl_list1, arg0); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - // d_course_koopa_troopa_beach_packed_dl_2C0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070002C0)); - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - gDPPipeSync(gDisplayListHead++); -} - -void render_royal_raceway(struct UnkStruct_800DC5EC* arg0) { - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - - if (func_80290C20(arg0->camera) == 1) { - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_royal_raceway_packed_dl_B030 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x0700B030))); - } - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_royal_raceway_packed_dl_A648 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x0700A648))); - - render_course_segments(royal_raceway_dls, arg0); - - // d_course_royal_raceway_packed_dl_11A8 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070011A8))); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // d_course_royal_raceway_packed_dl_8A0 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070008A0))); - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); -} - -void render_luigi_raceway(struct UnkStruct_800DC5EC* arg0) { - - UNUSED s32 pad; - u16 sp22 = (u16) arg0->pathCounter; - s16 prevFrame; - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - - // Invalidate Jumbotron textures so they update each frame - // This could be more efficient if we exposed the non-opcode based invalidation to be called - // inside copy_framebuffers_port - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xF800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x10800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x11800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x12800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x13800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x14800); - - if (func_80290C20(arg0->camera) == 1) { - 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 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07009EC0))); - } - - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - - render_course_segments(luigi_raceway_dls, arg0); - - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - // d_course_luigi_raceway_packed_dl_E0 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070000E0))); - // d_course_luigi_raceway_packed_dl_68 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000068))); - - D_800DC5DC = 88; - D_800DC5E0 = 72; - - // Render only the first player camera onto the television billboard. Screen agnostic screens of other players). - if ((gActiveScreenMode == SCREEN_MODE_1P) && (sp22 >= 10) && (sp22 < 17)) { - - prevFrame = (s16) sRenderedFramebuffer - 1; - - if (prevFrame < 0) { - prevFrame = 2; - } else if (prevFrame >= 3) { - prevFrame = 0; - } - currentScreenSection++; - if (currentScreenSection >= 6) { - currentScreenSection = 0; - } - - /** - * The jumbo television screen is split into six sections each section is copied one at a time. - * This is done to fit within the n64's texture size requirements; 64x32 - */ - switch (currentScreenSection) { - case 0: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC, D_800DC5E0, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xF800)); -#endif - break; - case 1: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC + 64, D_800DC5E0, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x10800)); -#endif - break; - case 2: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC, D_800DC5E0 + 32, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x11800)); -#endif - break; - case 3: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 32, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x12800)); -#endif - break; - case 4: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC, D_800DC5E0 + 64, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x13800)); -#endif - break; - case 5: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 64, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x14800)); -#endif - break; - } - - copy_jumbotron_fb_port(D_800DC5DC, D_800DC5E0, currentScreenSection, - (u16*) PHYSICAL_TO_VIRTUAL(gPortFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xF800)); - } -} - -// Missing {} around if statements necessary for matching. -void render_moo_moo_farm(struct UnkStruct_800DC5EC* arg0) { - UNUSED s32 pad[13]; - s16 temp_s0 = arg0->pathCounter; - s16 playerDirection = arg0->playerDirection; - - set_track_light_direction(D_800DC610, D_802B87D4, 0, 1); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEI, G_CC_MODULATEI); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_moo_moo_farm_packed_dl_4DF8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07004DF8)); - // d_course_moo_moo_farm_packed_dl_5640 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005640)); - gSPFogPosition(gDisplayListHead++, D_802B87B0, D_802B87B4); - - render_course_segments(moo_moo_farm_dls, arg0); - - if ((temp_s0 < 14) && (temp_s0 > 10)) { - if ((playerDirection == 2) || (playerDirection == 3) || (playerDirection == 1)) { - gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_13FF8); - } - - } else if (temp_s0 < 16) { - gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_13FF8); - } else if (temp_s0 < 19) { - if (playerDirection != 2) - gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_13FF8); - - } else if (temp_s0 < 20) { - if (playerDirection == 0) - gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_13FF8); - } - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEI, G_CC_MODULATEI); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - - if ((temp_s0 >= 16) && (temp_s0 < 24)) { - if ((playerDirection == 2) || (playerDirection == 3)) { - // d_course_moo_moo_farm_packed_dl_5410 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005410)); - } - - } else if (temp_s0 < 9) { - if (playerDirection == 2) { - // d_course_moo_moo_farm_packed_dl_5410 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07005410)); - } - } - if (temp_s0 < 4) { - if (playerDirection != 0) { - gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_14060); - } - - } else if (temp_s0 < 8) { - if (playerDirection == 2) { - gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_14060); - } - - } else if (temp_s0 >= 22) { - gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_14060); - } else if (temp_s0 >= 18) { - if ((playerDirection == 0) || (playerDirection == 3)) - gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_14060); - } - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - // d_course_moo_moo_farm_packed_dl_10C0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070010C0)); -} - -void render_toads_turnpike(struct UnkStruct_800DC5EC* arg0) { - UNUSED s32 pad[13]; - - set_track_light_direction(D_800DC610, D_802B87D4, 0, 1); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gDPSetFogColor(gDisplayListHead++, D_801625EC, D_801625F4, D_801625F0, 0xFF); - gDPSetCycleType(gDisplayListHead++, G_CYC_2CYCLE); - gSPFogPosition(gDisplayListHead++, D_802B87B0, D_802B87B4); - gSPSetGeometryMode(gDisplayListHead++, G_FOG); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEI, G_CC_PASS2); - gDPSetRenderMode(gDisplayListHead++, G_RM_FOG_SHADE_A, G_RM_AA_ZB_OPA_SURF2); - - render_course_segments((uintptr_t) d_course_toads_turnpike_dl_list, arg0); - - gDPSetRenderMode(gDisplayListHead++, G_RM_FOG_SHADE_A, G_RM_AA_ZB_TEX_EDGE2); - gDPSetCombineMode(gDisplayListHead++, G_CC_DECALRGBA, G_CC_PASS2); - // d_course_toads_turnpike_packed_dl_0 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000000)); - // d_course_toads_turnpike_packed_dl_68 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000068)); - // d_course_toads_turnpike_packed_dl_D8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x070000D8)); - gSPClearGeometryMode(gDisplayListHead++, G_FOG); - gDPSetCycleType(gDisplayListHead++, G_CYC_1CYCLE); -} - -void render_kalimari_desert(struct UnkStruct_800DC5EC* arg0) { - - set_track_light_direction(D_800DC610, D_802B87D4, 0, 1); - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - - if (func_80290C20(arg0->camera) == 1) { - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_kalimari_desert_packed_dl_71C8 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070071C8))); - } - - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEI, G_CC_MODULATEI); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - render_course_segments(kalimari_desert_dls, arg0); - // d_course_kalimari_desert_packed_dl_1ED8 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07001ED8))); - // d_course_kalimari_desert_packed_dl_1B18 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07001B18))); - // d_course_kalimari_desert_packed_dl_8330 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07008330))); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - // d_course_kalimari_desert_packed_dl_998 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000998))); - // d_course_kalimari_desert_packed_dl_270 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000270))); - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); -} - -void render_sherbet_land(struct UnkStruct_800DC5EC* arg0) { - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEI, G_CC_MODULATEI); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - render_course_segments((uintptr_t) sherbet_land_dls, arg0); -} - -void render_rainbow_road(UNUSED struct UnkStruct_800DC5EC* arg0) { - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); -} - -void render_wario_stadium(struct UnkStruct_800DC5EC* arg0) { - s16 prevFrame; - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - - // Invalidate Jumbotron textures so they update each frame - // This could be more efficient if we exposed the non-opcode based invalidation to be called - // inside copy_framebuffers_port - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x8800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0x9800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xA800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xB800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xC800); - gSPInvalidateTexCache(gDisplayListHead++, gSegmentTable[5] + 0xD800); - - if (func_80290C20(arg0->camera) == 1) { - - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_wario_stadium_packed_dl_A0C8 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x0700A0C8)); - } - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATERGBA, G_CC_MODULATERGBA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - - render_course_segments(wario_stadium_dls, arg0); - - // d_course_wario_stadium_packed_dl_A228 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x0700A228)); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // d_course_wario_stadium_packed_dl_A88 - gSPDisplayList(gDisplayListHead++, segmented_gfx_to_virtual(0x07000A88)); - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - - D_800DC5DC = 88; - D_800DC5E0 = 72; - if (gActiveScreenMode == SCREEN_MODE_1P) { - prevFrame = (s16) sRenderedFramebuffer - 1; - if (prevFrame < 0) { - prevFrame = 2; - } else if (prevFrame >= 3) { - prevFrame = 0; - } - currentScreenSection++; - if (currentScreenSection > 5) { - currentScreenSection = 0; - } - switch (currentScreenSection) { - case 0: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC, D_800DC5E0, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x8800)); -#endif - break; - case 1: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC + 64, D_800DC5E0, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x9800)); -#endif - break; - case 2: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC, D_800DC5E0 + 32, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xA800)); -#endif - break; - case 3: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 32, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xB800)); -#endif - break; - case 4: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC, D_800DC5E0 + 64, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xC800)); -#endif - break; - case 5: -#ifdef TARGET_N64 - copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 64, 64, 32, - (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xD800)); -#endif - break; - } - - copy_jumbotron_fb_port(D_800DC5DC, D_800DC5E0, currentScreenSection, - (u16*) PHYSICAL_TO_VIRTUAL(gPortFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x8800)); - } -} - -void render_block_fort(UNUSED struct UnkStruct_800DC5EC* arg0) { - - set_track_light_direction(D_800DC610, D_802B87D4, 0, 1); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - // d_course_block_fort_packed_dl_15C0 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070015C0))); -} - -void render_skyscraper(UNUSED struct UnkStruct_800DC5EC* arg0) { - set_track_light_direction(D_800DC610, D_802B87D4, 0, 1); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - // d_course_skyscraper_packed_dl_FE8 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000FE8))); - // d_course_skyscraper_packed_dl_C60 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000C60))); - // d_course_skyscraper_packed_dl_B70 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000B70))); - // d_course_skyscraper_packed_dl_6B8 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070006B8))); - // d_course_skyscraper_packed_dl_570 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000570))); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // d_course_skyscraper_packed_dl_10C8 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x070010C8))); - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); - // d_course_skyscraper_packed_dl_258 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000258))); -} - -void render_double_deck(UNUSED struct UnkStruct_800DC5EC* arg0) { - - set_track_light_direction(D_800DC610, D_802B87D4, 0, 1); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK); - // d_course_double_deck_packed_dl_738 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(0x07000738))); - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); -} - -void render_dks_jungle_parkway(struct UnkStruct_800DC5EC* arg0) { - - set_track_light_direction(D_800DC610, D_802B87D4, 0, 1); - set_track_light_direction(&D_800DC610[1], D_802B87D4, D_802B87D0, 1); - - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_CULL_BACK | G_LIGHTING); - - if (func_80290C20(arg0->camera) == 1) { - gSPTexture(gDisplayListHead++, 1, 1, 0, G_TX_RENDERTILE, G_OFF); - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_dks_jungle_parkway_packed_dl_92D8 - gSPDisplayList(gDisplayListHead++, (segmented_gfx_to_virtual(0x070092D8))); - } - - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIDECALA, G_CC_MODULATEIDECALA); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_TEX_EDGE, G_RM_AA_ZB_TEX_EDGE2); - render_course_segments((uintptr_t) d_course_dks_jungle_parkway_unknown_dl_list, arg0); - - gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); -} - -void render_big_donut(struct UnkStruct_800DC5EC* arg0) { - - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - gSPClearGeometryMode(gDisplayListHead++, G_LIGHTING); - set_track_light_direction(D_800DC610, D_802B87D4, 0, 1); - gSPTexture(gDisplayListHead++, 0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON); - gSPSetGeometryMode(gDisplayListHead++, G_SHADING_SMOOTH); - - if (func_80290C20(arg0->camera) == 1) { - gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); - gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); - // d_course_big_donut_packed_dl_DE8 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000DE8))); - } - // d_course_big_donut_packed_dl_450 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000450))); - // d_course_big_donut_packed_dl_AC0 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000AC0))); - // d_course_big_donut_packed_dl_D20 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000D20))); - // d_course_big_donut_packed_dl_230 - gSPDisplayList(gDisplayListHead++, ((uintptr_t) segmented_gfx_to_virtual(0x07000230))); } void render_credits(void) { - CM_RenderCredits(); - - // switch (gCurrentCourseId) { - // case COURSE_MARIO_RACEWAY: - // //gSPDisplayList(gDisplayListHead++, d_course_mario_raceway_dl_9348); - // break; - // case COURSE_CHOCO_MOUNTAIN: - // gSPDisplayList(gDisplayListHead++, d_course_choco_mountain_dl_71B8); - // break; - // case COURSE_BOWSER_CASTLE: - // gSPDisplayList(gDisplayListHead++, d_course_bowsers_castle_dl_9148); - // break; - // case COURSE_BANSHEE_BOARDWALK: - // gSPDisplayList(gDisplayListHead++, d_course_banshee_boardwalk_dl_B308); - // break; - // case COURSE_YOSHI_VALLEY: - // gSPDisplayList(gDisplayListHead++, d_course_yoshi_valley_dl_18020); - // break; - // case COURSE_FRAPPE_SNOWLAND: - // gSPDisplayList(gDisplayListHead++, d_course_frappe_snowland_dl_76A0); - // break; - // case COURSE_KOOPA_BEACH: - // gSPDisplayList(gDisplayListHead++, d_course_koopa_troopa_beach_dl_18D68); - // break; - // case COURSE_ROYAL_RACEWAY: - // gSPDisplayList(gDisplayListHead++, d_course_royal_raceway_dl_D8E8); - // break; - // case COURSE_LUIGI_RACEWAY: - // gSPDisplayList(gDisplayListHead++, d_course_luigi_raceway_dl_FD40); - // break; - // case COURSE_MOO_MOO_FARM: - // gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_dl_14088); - // break; - // case COURSE_TOADS_TURNPIKE: - // gSPDisplayList(gDisplayListHead++, d_course_toads_turnpike_dl_23930); - // break; - // case COURSE_KALIMARI_DESERT: - // gSPDisplayList(gDisplayListHead++, d_course_kalimari_desert_dl_22E00); - // break; - // case COURSE_SHERBET_LAND: - // gSPDisplayList(gDisplayListHead++, d_course_sherbet_land_dl_9AE8); - // break; - // case COURSE_RAINBOW_ROAD: - // gSPDisplayList(gDisplayListHead++, d_course_rainbow_road_dl_16220); - // break; - // case COURSE_WARIO_STADIUM: - // gSPDisplayList(gDisplayListHead++, d_course_wario_stadium_dl_CA78); - // break; - // case COURSE_BLOCK_FORT: - // gSPDisplayList(gDisplayListHead++, d_course_sherbet_land_dl_0); - // break; - // case COURSE_SKYSCRAPER: - // gSPDisplayList(gDisplayListHead++, d_course_sherbet_land_dl_0); - // break; - // case COURSE_DOUBLE_DECK: - // gSPDisplayList(gDisplayListHead++, d_course_sherbet_land_dl_0); - // break; - // case COURSE_DK_JUNGLE: - // gSPDisplayList(gDisplayListHead++, d_course_dks_jungle_parkway_dl_13C30); - // break; - // case COURSE_BIG_DONUT: - // gSPDisplayList(gDisplayListHead++, d_course_sherbet_land_dl_0); - // break; - // } } void render_course(struct UnkStruct_800DC5EC* arg0) { @@ -1419,69 +274,6 @@ void render_course(struct UnkStruct_800DC5EC* arg0) { } CM_RenderCourse(arg0); - - // switch (gCurrentCourseId) { - // case COURSE_MARIO_RACEWAY: - // //render_mario_raceway(arg0); - // break; - // case COURSE_CHOCO_MOUNTAIN: - // //render_choco_mountain(arg0); - // break; - // case COURSE_BOWSER_CASTLE: - // //render_bowsers_castle(arg0); - // break; - // case COURSE_BANSHEE_BOARDWALK: - // //render_banshee_boardwalk(arg0); - // break; - // case COURSE_YOSHI_VALLEY: - // render_yoshi_valley(arg0); - // break; - // case COURSE_FRAPPE_SNOWLAND: - // render_frappe_snowland(arg0); - // break; - // case COURSE_KOOPA_BEACH: - // render_koopa_troopa_beach(arg0); - // break; - // case COURSE_ROYAL_RACEWAY: - // render_royal_raceway(arg0); - // break; - // case COURSE_LUIGI_RACEWAY: - // render_luigi_raceway(arg0); - // break; - // case COURSE_MOO_MOO_FARM: - // render_moo_moo_farm(arg0); - // break; - // case COURSE_TOADS_TURNPIKE: - // render_toads_turnpike(arg0); - // break; - // case COURSE_KALIMARI_DESERT: - // render_kalimari_desert(arg0); - // break; - // case COURSE_SHERBET_LAND: - // render_sherbet_land(arg0); - // break; - // case COURSE_RAINBOW_ROAD: - // render_rainbow_road(arg0); - // break; - // case COURSE_WARIO_STADIUM: - // render_wario_stadium(arg0); - // break; - // case COURSE_BLOCK_FORT: - // render_block_fort(arg0); - // break; - // case COURSE_SKYSCRAPER: - // render_skyscraper(arg0); - // break; - // case COURSE_DOUBLE_DECK: - // render_double_deck(arg0); - // break; - // case COURSE_DK_JUNGLE: - // render_dks_jungle_parkway(arg0); - // break; - // case COURSE_BIG_DONUT: - // render_big_donut(arg0); - // break; - // } } void func_80295BF8(s32 playerIndex) { @@ -1522,290 +314,8 @@ void func_80295D6C(void) { } void course_init(void) { - - // switch (gCurrentCourseId) { - // case COURSE_MARIO_RACEWAY: - // // // d_course_mario_raceway_packed_dl_1140 - // // generate_collision_mesh_with_defaults((Gfx*) segmented_gfx_to_virtual(0x07001140)); - // // if (gScreenModeSelection == SCREEN_MODE_1P) { - // // // d_course_mario_raceway_packed_dl_8E8 - // // generate_collision_mesh_with_defaults((Gfx*) segmented_gfx_to_virtual(0x070008E8)); - // // } else { - // // // d_course_mario_raceway_packed_dl_2D68 - // // generate_collision_mesh_with_defaults((Gfx*) segmented_gfx_to_virtual(0x07002D68)); - // // } - - // // parse_course_displaylists(d_course_mario_raceway_addr); - // // func_80295C6C(); - // // gWaterLevel = gCourseMinY - 10.0f; - // break; - // case COURSE_CHOCO_MOUNTAIN: - // D_800DC5BC = 1; - // D_801625EC = 255; - // D_801625F4 = 255; - // D_801625F0 = 255; - // D_802B87B0 = 0x3E3; - // D_802B87B4 = 0x3E8; - // D_802B87D4 = 0x71C; - // D_802B87D0 = 0xE38; - - // // Spawn guardrail only for CC_50 and time trials. - // if ((gCCSelection != CC_50) && (gModeSelection != TIME_TRIALS)) { - // // d_course_choco_mountain_packed_dl_0 - // nullify_displaylist(segmented_gfx_to_virtual(0x07000000)); - // // d_course_choco_mountain_packed_dl_98 - // nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(0x07000098)); - // // d_course_choco_mountain_packed_dl_178 - // nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(0x07000178)); - // // d_course_choco_mountain_packed_dl_280 - // nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(0x07000280)); - // // d_course_choco_mountain_packed_dl_340 - // nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(0x07000340)); - // // d_course_choco_mountain_packed_dl_3C8 - // nullify_displaylist((uintptr_t) segmented_gfx_to_virtual(0x070003C8)); - // } - - // parse_course_displaylists(d_course_choco_mountain_addr); - // func_802B5CAC(0x238E, 0x31C7, D_8015F590); - // func_80295C6C(); - // gWaterLevel = -80.0f; - // break; - // case COURSE_BOWSER_CASTLE: - // parse_course_displaylists(d_course_bowsers_castle_addr); - // func_80295C6C(); - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07001350), 0x32, 0, 0, 0); - // gWaterLevel = -50.0f; - // break; - // case COURSE_BANSHEE_BOARDWALK: - // // D_800DC5BC = 1; - // // D_801625EC = 0; - // // D_801625F4 = 0; - // // D_801625F0 = 0; - // // parse_course_displaylists(d_course_banshee_boardwalk_track_sections); - // // func_80295C6C(); - // // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000878), 128, 0, 0, 0); - // // gWaterLevel = -80.0f; - // break; - // case COURSE_YOSHI_VALLEY: { - // Lights1 lights4 = gdSPDefLights1(100, 100, 100, 255, 254, 254, 0, 0, 120); - // set_track_light_direction(&lights4, -0x38F0, 0x1C70, 1); - // parse_course_displaylists(d_course_yoshi_valley_addr); - // func_80295C6C(); - // gWaterLevel = gCourseMinY - 10.0f; - // break; - // } - // case COURSE_FRAPPE_SNOWLAND: - // parse_course_displaylists(d_course_frappe_snowland_addr); - // func_80295C6C(); - // gWaterLevel = -50.0f; - // break; - // case COURSE_KOOPA_BEACH: - // parse_course_displaylists(d_course_koopa_troopa_beach_addr); - // func_80295C6C(); - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x0700ADE0), -0x6A, 255, 255, 255); - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x0700A540), -0x6A, 255, 255, 255); - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07009E70), -0x6A, 255, 255, 255); - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000358), -0x6A, 255, 255, 255); - // break; - // case COURSE_ROYAL_RACEWAY: - // parse_course_displaylists(d_course_royal_raceway_addr); - // func_80295C6C(); - // gWaterLevel = -60.0f; - // break; - // case COURSE_LUIGI_RACEWAY: - // parse_course_displaylists(d_course_luigi_raceway_addr); - // func_80295C6C(); - // gWaterLevel = gCourseMinY - 10.0f; - // break; - // case COURSE_MOO_MOO_FARM: - // parse_course_displaylists(d_course_moo_moo_farm_addr); - // func_80295C6C(); - // gWaterLevel = gCourseMinY - 10.0f; - // break; - // case COURSE_TOADS_TURNPIKE: - // D_801625EC = 43; - // D_801625F4 = 13; - // D_801625F0 = 4; - // D_802B87B0 = 993; - // D_802B87B4 = 1000; - // parse_course_displaylists(d_course_toads_turnpike_addr); - // func_80295C6C(); - // gWaterLevel = gCourseMinY - 10.0f; - // break; - // case COURSE_KALIMARI_DESERT: - // parse_course_displaylists(d_course_kalimari_desert_addr); - // func_80295C6C(); - // gWaterLevel = gCourseMinY - 10.0f; - // break; - // case COURSE_SHERBET_LAND: - // parse_course_displaylists(d_course_sherbet_land_addr); - // func_80295C6C(); - // gWaterLevel = -18.0f; - // // d_course_sherbet_land_packed_dl_1EB8 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07001EB8), -0x4C, 255, 255, 255); - // // d_course_sherbet_land_packed_dl_2308 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07002308), -0x6A, 255, 255, 255); - // break; - // case COURSE_RAINBOW_ROAD: - // D_800DC5C8 = 1; - // parse_course_displaylists(d_course_rainbow_road_addr); - // func_80295C6C(); - // gWaterLevel = 0.0f; - // // d_course_rainbow_road_packed_dl_2068 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07002068), -0x6A, 255, 255, 255); - // // d_course_rainbow_road_packed_dl_1E18 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07001E18), -0x6A, 255, 255, 255); - // // d_course_rainbow_road_packed_dl_1318 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07001318), 255, 255, 255, 0); - // if (gGamestate != CREDITS_SEQUENCE) { - // // d_course_rainbow_road_packed_dl_1FB8 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07001FB8), -0x6A, 255, 255, 255); - // } - // break; - // case COURSE_WARIO_STADIUM: - // parse_course_displaylists(d_course_wario_stadium_addr); - // func_80295C6C(); - // gWaterLevel = gCourseMinY - 10.0f; - // // d_course_wario_stadium_packed_dl_C50 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000C50), 100, 255, 255, 255); - // // d_course_wario_stadium_packed_dl_BD8 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000BD8), 100, 255, 255, 255); - // // d_course_wario_stadium_packed_dl_B60 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000B60), 100, 255, 255, 255); - // // d_course_wario_stadium_packed_dl_AE8 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000AE8), 100, 255, 255, 255); - // // d_course_wario_stadium_packed_dl_CC8 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000CC8), 100, 255, 255, 255); - // // d_course_wario_stadium_packed_dl_D50 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000D50), 100, 255, 255, 255); - // // d_course_wario_stadium_packed_dl_DD0 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000DD0), 100, 255, 255, 255); - // // d_course_wario_stadium_packed_dl_E48 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07000E48), 100, 255, 255, 255); - // break; - // case COURSE_BLOCK_FORT: - // // d_course_block_fort_packed_dl_15C0 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x070015C0), 1); - // func_80295C6C(); - // gWaterLevel = gCourseMinY - 10.0f; - // break; - // case COURSE_SKYSCRAPER: - // // d_course_skyscraper_packed_dl_1110 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x07001110), 1); - // // d_course_skyscraper_packed_dl_258 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x07000258), 1); - // func_80295C6C(); - - // gWaterLevel = -480.0f; - // break; - // case COURSE_DOUBLE_DECK: - // // d_course_double_deck_packed_dl_738 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x07000738), 1); - // func_80295C6C(); - // gWaterLevel = gCourseMinY - 10.0f; - // break; - // case COURSE_DK_JUNGLE: - // parse_course_displaylists(d_course_dks_jungle_parkway_addr); - // func_80295C6C(); - // gWaterLevel = -475.0f; - // // d_course_dks_jungle_parkway_packed_dl_3FA8 - // find_vtx_and_set_colours(segmented_gfx_to_virtual(0x07003FA8), 120, 255, 255, 255); - // break; - // case COURSE_BIG_DONUT: - // // d_course_big_donut_packed_dl_1018 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x07001018), 6); - // // d_course_big_donut_packed_dl_450 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x07000450), 6); - // // d_course_big_donut_packed_dl_AC0 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x07000AC0), 6); - // // d_course_big_donut_packed_dl_B58 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x07000B58), 6); - // // d_course_big_donut_packed_dl_230 - // generate_collision_mesh_with_default_section_id((Gfx*) segmented_gfx_to_virtual(0x07000230), 6); - // func_80295C6C(); - // gWaterLevel = 100.0f; - // break; - // } } void func_802966A0(void) { - CM_ScrollingTextures(); - - // switch (gCurrentCourseId) { - // case COURSE_KOOPA_BEACH: - // // clang-format off - // if (gWaterVelocity < 0.0f) { - // if (gWaterLevel < -20.0f) { gWaterVelocity *= -1.0f; } - // } else { - // if (gWaterLevel > 0.0f) { gWaterVelocity *= -1.0f; } - // } - // // clang-format on - // gWaterLevel += gWaterVelocity; - - // D_802B87BC += 9; - // if (D_802B87BC > 255) { - // D_802B87BC = 0; - // } - // D_802B87C4 += 3; - // if (D_802B87C4 > 255) { - // D_802B87C4 = 0; - // } - // // waterfall animation - // // d_course_koopa_troopa_beach_packed_dl_9D58 - // find_and_set_tile_size(segmented_gfx_to_virtual(0x07009D58), 0, D_802B87BC); - // // d_course_koopa_troopa_beach_packed_dl_9CD0 - // find_and_set_tile_size(segmented_gfx_to_virtual(0x07009CD0), 0, D_802B87C4); - // D_802B87CC = random_int(300) / 40; - // if (D_802B87C8 < 0) { - // D_802B87C8 = random_int(300) / 40; - // } else { - // D_802B87C8 = -(random_int(300) / 40); - // } - // // Waterfall bubbling effect? (unused) - // // d_course_koopa_troopa_beach_packed_dl_2E8 - // find_and_set_tile_size(segmented_gfx_to_virtual(0x070002E8), D_802B87C8, D_802B87CC); - // break; - // case COURSE_BANSHEE_BOARDWALK: - // // D_802B87BC++; - - // // if (D_802B87BC >= 0x100) { - // // D_802B87BC = 0; - // // } - // // find_and_set_tile_size((uintptr_t) LOAD_ASSET(d_course_banshee_boardwalk_dl_B278), 0, D_802B87BC); - // break; - // case COURSE_ROYAL_RACEWAY: - // D_802B87BC -= 20; - // if (D_802B87BC < 0) { - // D_802B87BC = 0xFF; - // } - // // d_course_royal_raceway_packed_dl_A6A8 - // find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual(0x0700A6A8), 0, D_802B87BC); - // // d_course_royal_raceway_packed_dl_A648 - // find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual(0x0700A648), 0, D_802B87BC); - // break; - // case COURSE_DK_JUNGLE: - // D_802B87BC += 2; - // if (D_802B87BC > 255) { - // D_802B87BC = 0; - // } - // // d_course_dks_jungle_parkway_packed_dl_3DD0 - // find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual(0x07003DD0), 0, D_802B87BC); - // // d_course_dks_jungle_parkway_packed_dl_3E40 - // find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual(0x07003E40), 0, D_802B87BC); - // // d_course_dks_jungle_parkway_packed_dl_3EB0 - // find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual(0x07003EB0), 0, D_802B87BC); - // // d_course_dks_jungle_parkway_packed_dl_3F30 - // find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual(0x07003F30), 0, D_802B87BC); - // // d_course_dks_jungle_parkway_packed_dl_36A8 - // find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual(0x070036A8), 0, D_802B87BC); - // D_802B87C4 -= 20; - // if (D_802B87C4 < 0) { - // D_802B87C4 = 0xFF; - // } - // // d_course_dks_jungle_parkway_packed_dl_9880 - // find_and_set_tile_size((uintptr_t) segmented_gfx_to_virtual(0x07009880), 0, D_802B87C4); - // evaluate_collision_players_palm_trees(); - // break; - // } } diff --git a/src/racing/render_courses.h b/src/racing/render_courses.h index cb11ad4c7..b9621cacb 100644 --- a/src/racing/render_courses.h +++ b/src/racing/render_courses.h @@ -10,25 +10,6 @@ s32 func_80290C20(Camera*); void parse_course_displaylists(TrackSections* asset); void render_course_segments(const char*[], struct UnkStruct_800DC5EC*); void func_80291198(void); -void render_mario_raceway_pipe(void); -void render_choco_mountain(struct UnkStruct_800DC5EC*); -void render_bowsers_castle(struct UnkStruct_800DC5EC*); -void render_banshee_boardwalk(struct UnkStruct_800DC5EC*); -void render_yoshi_valley(struct UnkStruct_800DC5EC*); -void render_frappe_snowland(struct UnkStruct_800DC5EC*); -void render_koopa_troopa_beach(struct UnkStruct_800DC5EC*); -void render_royal_raceway(struct UnkStruct_800DC5EC*); -void render_luigi_raceway(struct UnkStruct_800DC5EC*); -void render_toads_turnpike(struct UnkStruct_800DC5EC*); -void render_kalimari_desert(struct UnkStruct_800DC5EC*); -void render_sherbet_land(struct UnkStruct_800DC5EC*); -void render_rainbow_road(struct UnkStruct_800DC5EC*); -void render_wario_stadium(struct UnkStruct_800DC5EC*); -void render_block_fort(struct UnkStruct_800DC5EC*); -void render_skyscraper(struct UnkStruct_800DC5EC*); -void render_double_deck(struct UnkStruct_800DC5EC*); -void render_dks_jungle_parkway(struct UnkStruct_800DC5EC*); -void render_big_donut(struct UnkStruct_800DC5EC*); void render_credits(void); void course_init(void); void render_course(struct UnkStruct_800DC5EC*); diff --git a/src/racing/skybox_and_splitscreen.c b/src/racing/skybox_and_splitscreen.c index 185ac0068..abc34b901 100644 --- a/src/racing/skybox_and_splitscreen.c +++ b/src/racing/skybox_and_splitscreen.c @@ -9,7 +9,7 @@ #include #include "memory.h" #include "../camera.h" -#include +#include #include "render_player.h" #include "code_80057C60.h" #include "menu_items.h" @@ -650,8 +650,6 @@ void func_802A52BC(void) { } void func_802A53A4(void) { - - move_segment_table_to_dmem(); init_rdp(); func_802A3730(D_800DC5EC); @@ -876,6 +874,11 @@ void render_screens(s32 mode, s32 cameraId, s32 playerId) { FrameInterpolation_RecordOpenChild("track", TAG_TRACK((cameraId | playerId))); Mat4 trackMatrix; mtxf_identity(trackMatrix); + if (gIsMirrorMode != 0) { + trackMatrix[0][0] = -1.0f; + // trackMatrix[1][1] = -1.0f; + // trackMatrix[2][2] = -1.0f; + } render_set_position(trackMatrix, 0); // Draw track geography @@ -1041,46 +1044,6 @@ void copy_framebuffer(s32 arg0, s32 arg1, s32 width, s32 height, u16* source, u1 } } -// Handles copying framebuffer to course texture data region for the Jumbotron in the port -// This only supports framebuffers and copy regions being within 320x240 -// Any attempt to support larger sizes would require reworking course data -void copy_jumbotron_fb_port(s32 ulx, s32 uly, s16 portionToDraw, u16* source, u16* target) { - // Add CVar if we want to expose a user toggle for only updating 1/6 of the jumbotron per frame - u8 updateWholeJumbo = true; - - if (portionToDraw == -1 || updateWholeJumbo) { - copy_framebuffer(ulx, uly, 64, 32, source, target); - copy_framebuffer(ulx + 64, uly, 64, 32, source, target + (64 * 32 * 1)); - copy_framebuffer(ulx, uly + 32, 64, 32, source, target + (64 * 32 * 2)); - copy_framebuffer(ulx + 64, uly + 32, 64, 32, source, target + (64 * 32 * 3)); - copy_framebuffer(ulx, uly + 64, 64, 32, source, target + (64 * 32 * 4)); - copy_framebuffer(ulx + 64, uly + 64, 64, 32, source, target + (64 * 32 * 5)); - } else { - switch (portionToDraw) { - case 0: - copy_framebuffer(ulx, uly, 64, 32, source, target); - break; - case 1: - copy_framebuffer(ulx + 64, uly, 64, 32, source, target + (64 * 32 * 1)); - break; - case 2: - copy_framebuffer(ulx, uly + 32, 64, 32, source, target + (64 * 32 * 2)); - break; - case 3: - copy_framebuffer(ulx + 64, uly + 32, 64, 32, source, target + (64 * 32 * 3)); - break; - case 4: - copy_framebuffer(ulx, uly + 64, 64, 32, source, target + (64 * 32 * 4)); - break; - case 5: - copy_framebuffer(ulx + 64, uly + 64, 64, 32, source, target + (64 * 32 * 5)); - break; - default: - break; - } - } -} - void func_802A7728(void) { s16 temp_v0; @@ -1096,25 +1059,21 @@ void func_802A7728(void) { } else if (temp_v0 > 2) { temp_v0 = 0; } -#if TARGET_N64 + copy_framebuffer(D_800DC5DC, D_800DC5E0, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x8800)); + (u16*) LOAD_ASSET_RAW(gTexture68272C)); copy_framebuffer(D_800DC5DC + 64, D_800DC5E0, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x9800)); + (u16*) LOAD_ASSET_RAW(gTexture682928)); copy_framebuffer(D_800DC5DC, D_800DC5E0 + 32, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xA800)); + (u16*) LOAD_ASSET_RAW(gTexture682B24)); copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 32, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xB800)); + (u16*) LOAD_ASSET_RAW(gTexture682D20)); copy_framebuffer(D_800DC5DC, D_800DC5E0 + 64, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xC800)); + (u16*) LOAD_ASSET_RAW(gTexture682F1C)); copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 64, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xD800)); -#else - copy_jumbotron_fb_port(D_800DC5DC, D_800DC5E0, -1, PHYSICAL_TO_VIRTUAL(gPortFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x8800)); -#endif + (u16*) LOAD_ASSET_RAW(gTexture683118)); } void func_802A7940(void) { @@ -1132,26 +1091,26 @@ void func_802A7940(void) { } else if (temp_v0 > 2) { temp_v0 = 0; } -#if TARGET_N64 - copy_framebuffer(D_800DC5DC, D_800DC5E0, 0x40, 0x20, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xF800)); - copy_framebuffer(D_800DC5DC + 0x40, D_800DC5E0, 0x40, 0x20, + + if (gPhysicalFramebuffers[temp_v0] == NULL) { + return; + } + + copy_framebuffer(D_800DC5DC, D_800DC5E0, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), + (u16*) LOAD_ASSET_RAW(gTexture68272C)); + copy_framebuffer(D_800DC5DC + 64, D_800DC5E0, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x10800)); - copy_framebuffer(D_800DC5DC, D_800DC5E0 + 0x20, 0x40, 0x20, + (u16*) LOAD_ASSET_RAW(gTexture682928)); + copy_framebuffer(D_800DC5DC, D_800DC5E0 + 32, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x11800)); - copy_framebuffer(D_800DC5DC + 0x40, D_800DC5E0 + 0x20, 0x40, 0x20, + (u16*) LOAD_ASSET_RAW(gTexture682B24)); + copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 32, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x12800)); - copy_framebuffer(D_800DC5DC, D_800DC5E0 + 0x40, 0x40, 0x20, + (u16*) LOAD_ASSET_RAW(gTexture682D20)); + copy_framebuffer(D_800DC5DC, D_800DC5E0 + 64, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x13800)); - copy_framebuffer(D_800DC5DC + 0x40, D_800DC5E0 + 0x40, 0x40, 0x20, + (u16*) LOAD_ASSET_RAW(gTexture682F1C)); + copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 64, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x14800)); -#else - copy_jumbotron_fb_port(D_800DC5DC, D_800DC5E0, -1, (u16*) PHYSICAL_TO_VIRTUAL(gPortFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xF800)); -#endif + (u16*) LOAD_ASSET_RAW(gTexture683118)); } diff --git a/src/racing/skybox_and_splitscreen.h b/src/racing/skybox_and_splitscreen.h index 4771ec001..dea2435a2 100644 --- a/src/racing/skybox_and_splitscreen.h +++ b/src/racing/skybox_and_splitscreen.h @@ -55,7 +55,6 @@ void render_player_four_3p_4p_screen(void); void render_screens(s32 mode, s32 cameraId, s32 playerId); void func_802A74BC(void); void copy_framebuffer(s32, s32, s32, s32, u16*, u16*); -void copy_jumbotron_fb_port(s32 ulx, s32 uly, s16 portionToDraw, u16* source, u16* target); void func_802A7728(void); void func_802A7940(void); diff --git a/src/render_objects.c b/src/render_objects.c index f2ea3fa4a..d2ac0a255 100644 --- a/src/render_objects.c +++ b/src/render_objects.c @@ -19,7 +19,7 @@ #include "objects.h" #include "waypoints.h" #include "bomb_kart.h" -#include +#include #include "render_player.h" #include "animation.h" #include "code_80005FD0.h" @@ -36,11 +36,11 @@ #include "courses/all_course_data.h" #include #include "data/some_data.h" -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include "port/Game.h" #include "port/Engine.h" @@ -48,6 +48,7 @@ #include "engine/Matrix.h" #include "port/interpolation/FrameInterpolation.h" +#include "assets/textures/tracks/sherbet_land/sherbet_land_data.h" Lights1 D_800E45C0[] = { gdSPDefLights1(100, 0, 0, 100, 0, 0, 0, -120, 0), diff --git a/src/render_player.c b/src/render_player.c index 76a8b52af..1b132dc8a 100644 --- a/src/render_player.c +++ b/src/render_player.c @@ -19,17 +19,17 @@ #include "waypoints.h" #include "player_controller.h" #include "render_objects.h" -#include +#include #include "skybox_and_splitscreen.h" #include "spawn_players.h" -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include #include "port/Game.h" #include "engine/Matrix.h" #include "port/interpolation/FrameInterpolation.h" @@ -713,10 +713,10 @@ u32 gKartWarioWheels1[] = { 1076, 1076, 996, 916, 916, 916, 836, 756, 756 }; // gKartWario189Wheel0 // }; -u32* D_800DDE34[] = { gKartMarioWheels0, gKartLuigiWheels0, gKartYoshiWheels0, gKartToadWheels0, +u32* gPaletteWheel0Offset[] = { gKartMarioWheels0, gKartLuigiWheels0, gKartYoshiWheels0, gKartToadWheels0, gKartDKWheels0, gKartWarioWheels0, gKartPeachWheels0, gKartBowserWheels0 }; -u32* D_800DDE54[] = { gKartMarioWheels1, gKartLuigiWheels1, gKartYoshiWheels1, gKartToadWheels1, +u32* gPaletteWheel1Offset[] = { gKartMarioWheels1, gKartLuigiWheels1, gKartYoshiWheels1, gKartToadWheels1, gKartDKWheels1, gKartWarioWheels1, gKartPeachWheels1, gKartBowserWheels1 }; const char** wheelPtr[] = { @@ -1592,6 +1592,12 @@ void render_player_shadow_credits(Player* player, s8 playerId, s8 screenId) { gSPTexture(gDisplayListHead++, 1, 1, 0, G_TX_RENDERTILE, G_OFF); } +typedef u8** kart_texture_t; + +extern kart_texture_t** gKartTextureTable0[]; +extern kart_texture_t** gKartTextureTable1[]; +extern u8** gKartTextureTumbles[]; + void render_kart(Player* player, s8 playerId, s8 screenId, s8 flipOffset) { UNUSED s32 pad; Mat4 mtx; @@ -1644,8 +1650,12 @@ void render_kart(Player* player, s8 playerId, s8 screenId, s8 flipOffset) { (struct_D_802F1F80*) &gPlayerPalettesList[D_801651D0[screenId][playerId]][screenId][playerId * 0x100]; #endif if ((screenId == 0) || (screenId == 1)) { - load_kart_texture(player, playerId, screenId, screenId, 0); sKartTexture = gEncodedKartTexture[D_801651D0[screenId][playerId]][screenId][playerId].unk_00; + // gross hack to match original behavior + if (sKartTexture == NULL) { + load_kart_texture(player, playerId, screenId, screenId, 1); + sKartTexture = gEncodedKartTexture[D_801651D0[screenId][playerId]][screenId][playerId].unk_00; + } } else { sKartTexture = gEncodedKartTexture[D_801651D0[screenId][playerId]][screenId - 1][playerId - 4].unk_00; } @@ -1951,20 +1961,22 @@ void func_80026A48(Player* player, s8 arg1) { // Properly define struct pointers, see buffers.h comment for more information. #ifdef AVOID_UB -#define D_802F1F80_WHEEL(a, screenId, playerId) &gPlayerPalettesList[a][screenId][playerId].wheel_palette +#define PLAYER_WHEEL_MACRO(a, screenId, playerId) &gPlayerPalettesList[a][screenId][playerId].wheel_palette #else -#define D_802F1F80_WHEEL(a, screenId, playerId) &gPlayerPalettesList[a][screenId][(PlayerId * 0x100) + 0xC0] +#define PLAYER_WHEEL_MACRO(a, screenId, playerId) &gPlayerPalettesList[a][screenId][(PlayerId * 0x100) + 0xC0] #endif +// 80 bytes between each wheel palette +u32 wheel_offset[] = { 1076, 1076, 996, 916, 916, 916, 836, 756, 756 }; + void update_wheel_palette(Player* player, s8 playerId, s8 screenId, s8 arg3) { s16 frameId = gLastAnimFrameSelector[screenId][playerId]; s16 groupId = gLastAnimGroupSelector[screenId][playerId]; s16 tyreSpeed = player->tyreSpeed; - s16 temp_num = 0x40; // setting this as a variable gets rid of regalloc u8 character = player->characterId; - u32 wheel0 = (D_800DDE34[player->characterId][groupId]); - u32 wheel1 = (D_800DDE54[player->characterId][groupId]); + u32 wheel0 = 84*(8-groupId); + u32 wheel1 = wheel_offset[groupId]; if (((player->effects & 0x4000) == 0x4000) && ((player->type & PLAYER_START_SEQUENCE) == 0)) { if (((player->effects & 0x80) != 0x80) && ((player->effects & 0x40) != 0x40) && @@ -1972,23 +1984,23 @@ void update_wheel_palette(Player* player, s8 playerId, s8 screenId, s8 arg3) { ((player->effects & 0x800000) != 0x800000) && ((player->unk_044 & 0x800) == 0)) { if (frameId <= 20) { - int32_t offset = (((frameId * temp_num * 4) + ((tyreSpeed >> 8) * 0x40)) * 2) / 0x80; + int32_t offset = (frameId << 2) + (tyreSpeed >> 8); load_wheel_palette_non_blocking(player, wheelPtr[character][wheel0 + offset], - D_802F1F80_WHEEL(arg3, screenId, playerId), 0x80); + PLAYER_WHEEL_MACRO(arg3, screenId, playerId), 0x80); } else { - int32_t offset = (((((frameId - 21) * (temp_num * 4) + ((tyreSpeed >> 8) * 0x40)) + 0x600)) * 2) / 0x80; + int32_t offset = ((frameId - 21) << 2) + (tyreSpeed >> 8) + 0x18; load_wheel_palette_non_blocking(player, wheelPtr[character][wheel1 + offset], - D_802F1F80_WHEEL(arg3, screenId, playerId), 0x80); + PLAYER_WHEEL_MACRO(arg3, screenId, playerId), 0x80); } } else { if (frameId == 0) { - int32_t offset = (((frameId * temp_num * 4) + ((tyreSpeed >> 8) * 0x40)) * 2) / 0x80; + int32_t offset = (frameId << 2) + (tyreSpeed >> 8); load_wheel_palette_non_blocking(player, wheelPtr[character][wheel0 + offset], - D_802F1F80_WHEEL(arg3, screenId, playerId), 0x80); + PLAYER_WHEEL_MACRO(arg3, screenId, playerId), 0x80); } else { - int32_t offset = (((frameId * temp_num * 4) + ((tyreSpeed >> 8) * 0x40)) * 2) / 0x80; + int32_t offset = (frameId << 2) + (tyreSpeed >> 8); load_wheel_palette_non_blocking(player, wheelPtr[character][wheel1 + offset], - D_802F1F80_WHEEL(arg3, screenId, playerId), 0x80); + PLAYER_WHEEL_MACRO(arg3, screenId, playerId), 0x80); } } } else { @@ -1997,30 +2009,30 @@ void update_wheel_palette(Player* player, s8 playerId, s8 screenId, s8 arg3) { ((player->effects & 0x20000) != 0x20000) && ((player->unk_044 & 0x800) == 0)) { if (frameId <= 20) { - int32_t offset = (((frameId * temp_num * 4) + ((tyreSpeed >> 8) * 0x40)) * 2) / 0x80; + int32_t offset = (frameId << 2) + (tyreSpeed >> 8); load_wheel_palette_non_blocking(player, wheelPtr[character][wheel0 + offset], - D_802F1F80_WHEEL(arg3, screenId, playerId), 0x80); + PLAYER_WHEEL_MACRO(arg3, screenId, playerId), 0x80); } else { - int32_t offset = (((((frameId - 21) * (temp_num * 4) + ((tyreSpeed >> 8) * 0x40)) + 0x600)) * 2) / 0x80; + int32_t offset = ((frameId - 21) << 2) + (tyreSpeed >> 8) + 0x18; load_wheel_palette_non_blocking(player, wheelPtr[character][wheel1 + offset], - D_802F1F80_WHEEL(arg3, screenId, playerId), 0x80); + PLAYER_WHEEL_MACRO(arg3, screenId, playerId), 0x80); } } else { if (frameId == 0) { - int32_t offset = (((frameId * temp_num * 4) + ((tyreSpeed >> 8) * 0x40)) * 2) / 0x80; + int32_t offset = (frameId << 2) + (tyreSpeed >> 8); load_wheel_palette_non_blocking(player, wheelPtr[character][wheel0 + offset], - D_802F1F80_WHEEL(arg3, screenId, playerId), 0x80); + PLAYER_WHEEL_MACRO(arg3, screenId, playerId), 0x80); } else { - int32_t offset = (((frameId * temp_num * 4) + ((tyreSpeed >> 8) * 0x40)) * 2) / 0x80; + int32_t offset = (frameId << 2) + (tyreSpeed >> 8); load_wheel_palette_non_blocking(player, wheelPtr[character][wheel1 + offset], - D_802F1F80_WHEEL(arg3, screenId, playerId), 0x80); + PLAYER_WHEEL_MACRO(arg3, screenId, playerId), 0x80); } } } } -#undef D_802F1F80_WHEEL +#undef PLAYER_WHEEL_MACRO UNUSED void func_8002701C(void) { } diff --git a/src/textures.h b/src/textures.h index cba41f6d0..f23f212c8 100644 --- a/src/textures.h +++ b/src/textures.h @@ -3,7 +3,7 @@ #ifndef TARGET_N64 #include -#include +#include #else #include #endif diff --git a/src/update_objects.c b/src/update_objects.c index 4b25d2970..b688c3d43 100644 --- a/src/update_objects.c +++ b/src/update_objects.c @@ -19,7 +19,7 @@ #include "code_80057C60.h" #include "code_8006E9C0.h" #include "code_80086E70.h" -#include +#include #include "audio/external.h" #include "sounds.h" #include @@ -30,16 +30,19 @@ #include "menu_items.h" #include "podium_ceremony_actors.h" #include "courses/all_course_data.h" -#include +#include #include "src/ending/ceremony_and_credits.h" #include "menus.h" -#include +#include #include "data/some_data.h" #include "memory.h" #include "courses/all_course_offsets.h" #include "courses/all_course_data.h" -#include +#include #include "port/Game.h" +#include +#include +#include float OTRGetAspectRatio(void); @@ -1720,11 +1723,9 @@ void func_800762DC(Vec3f arg0, f32 arg1) { void func_8007634C(s32 objectIndex) { Object* object; - u8* asset = LOAD_ASSET(common_texture_particle_smoke); - object = &gObjectList[objectIndex]; - object->activeTexture = asset[0]; - object->textureList = asset[0]; + object->activeTexture = common_texture_particle_smoke; + object->textureList = common_texture_particle_smoke; object->primAlpha = 0x00FF; set_obj_orientation(objectIndex, 0U, 0U, 0U); set_obj_origin_offset(objectIndex, 0.0f, 0.0f, 0.0f); @@ -1888,11 +1889,10 @@ void func_80076884(s32 arg0) { void func_80076958(s32 objectIndex) { Object* object; - u8* tex = (u8*) LOAD_ASSET(common_texture_particle_smoke); object = &gObjectList[objectIndex]; - object->activeTexture = tex[0]; - object->textureList = tex[0]; + object->activeTexture = common_texture_particle_smoke; + object->textureList = common_texture_particle_smoke; object->primAlpha = 0x00FF; set_obj_orientation(objectIndex, 0U, 0U, 0U); set_obj_origin_offset(objectIndex, 0.0f, 0.0f, 0.0f); @@ -2228,13 +2228,12 @@ void func_80077D5C(s32 arg0) { } void func_80077E20(s32 objectIndex) { - u8* tex = (u8*) LOAD_ASSET(D_0D0293D8); Vtx* vtx = (Vtx*) LOAD_ASSET(common_vtx_rectangle); Object* object; object = &gObjectList[objectIndex]; - object->activeTexture = tex; - object->textureList = tex; + object->activeTexture = D_0D0293D8; + object->textureList = D_0D0293D8; //! @bug frappe snowland There's something up with the handling of common_vtx_rectangle and the loading of 0x10 //! right here // root function: func_80078C70 diff --git a/tools/displaylist_packer.c b/tools/displaylist_packer.c index 4ed20083c..104f72f79 100644 --- a/tools/displaylist_packer.c +++ b/tools/displaylist_packer.c @@ -3,9 +3,60 @@ #include #include +#include "../include/PR/gbi.h" + +/* Fallbacks for symbols that may be hidden behind ucode/asm guards in gbi.h */ + #define MAX_STRING_LENGTH 256 #define MAX_STRING_OUTPUT 10000 +/* Named constants to replace magic comparisons */ +/* gSPSetOtherModeL presets (low 16 bits), rewritten using gbi.h flags */ +/* 0x2078 = AA_EN | Z_CMP | Z_UPD | IM_RD | ALPHA_CVG_SEL */ +/* Explicit name for readability: Anti-Aliasing + Z Compare/Update + Image Read + Alpha Coverage Select */ +#define OML_AA_ZCMP_ZUPD_IMRD_ALPHA_CVG_SEL (AA_EN | Z_CMP | Z_UPD | IM_RD | ALPHA_CVG_SEL) +/* 0x3078 = AA_EN | Z_CMP | Z_UPD | IM_RD | CVG_X_ALPHA | ALPHA_CVG_SEL */ +/* Explicit name: same as above, with Coverage x Alpha enabled */ +#define OML_AA_ZCMP_ZUPD_IMRD_CVG_X_ALPHA_ALPHA_CVG_SEL (AA_EN | Z_CMP | Z_UPD | IM_RD | CVG_X_ALPHA | ALPHA_CVG_SEL) + +/* gSPTexture parameters (low 16 bits) */ +#define TEX_PARAM_ON 0x0001 +#define TEX_PARAM_OFF 0xFFFF + +/* gDPSetCombine presets (low 16 bits). + * Nommage en fonction des macros GBI G_CC_* utilisées côté runtime (memory.c): + * - 0xFFFF → G_CC_MODULATERGBA + * - 0xF3F9 → G_CC_MODULATERGBDECALA + * - 0x793C → G_CC_SHADE + * - 0xFFFD → G_CC_DECALRGBA + */ +#define COMB_CC_MODULATERGBA 0xFFFF +#define COMB_CC_MODULATERGBDECALA 0xF3F9 +#define COMB_CC_SHADE 0x793C +#define COMB_CC_DECALRGBA 0xFFFD +/* Variante « ALT » vue dans certains exports (reste une heuristique) */ +#define COMB_PRESET_ALT1 0xF9FC +/* (aliases retirés pour éviter la confusion et favoriser les noms G_CC_ explicites) */ + +/* gDPSetTextureImage quirks (kept for context; not used after gbi refactor) */ +/* #define SETTIMG_P4_EXPECT 0x70 */ +/* #define LOADBLOCK_CMD_OR 0x300000000ULL */ + +/* Segmented base addresses (common segment bases used in MK64) */ +#define SEG_BASE_4 0x04000000ULL +#define SEG_BASE_5 0x05000000ULL + +/* G_LOADBLOCK variants are detected by decoding tile/lrs/dxt */ + +/* Tile/size configurations are detected by decoding SETTILE/SETTILESIZE */ + +/* + * Non standard/special input opcode observed (0xD0): + * Note: There is no official PR/gbi.h opcode for 0xD0. Keep this as a + * project-specific remap for rare/unknown commands encountered in inputs. + */ +#define G_OP_D0 0xD0 + // Compile using gcc -o tools/displaylist_packer tools/displaylist_packer.c // Run using ./displaylist_packer input.bin output.bin @@ -55,6 +106,80 @@ uint32_t compressB1(uint8_t a, uint8_t b, uint8_t c) { #define ARG2WORD(val) ((val) >> 32) #define OPCODE(val) (uint8_t)((val) >> 56) +enum packed_op { + /* Set combine presets (renommés en fonction des macros G_CC_*) */ + PG_SETCOMBINE_CC_MODULATERGBA = 0x15, /* ex-PG_SETCOMBINE_PRESET_FFFF */ + PG_SETCOMBINE_CC_MODULATERGBDECALA = 0x16, /* ex-PG_SETCOMBINE_PRESET_F3F9 */ + PG_SETCOMBINE_CC_SHADE = 0x17, /* ex-PG_SETCOMBINE_PRESET_793C */ + + /* Render modes via gSPSetOtherModeL shortcuts (parité memory.c) */ + PG_RMODE_OPA = 0x18, /* ex-PG_SETOTHERMODE_L_2078 */ + PG_RMODE_TEXEDGE = 0x19, /* ex-PG_SETOTHERMODE_L_3078 */ + + /* Tile/tile size configurations following RDPTILESYNC+SETTILE+SETTILESIZE */ + PG_TILECFG_A = 0x1A, /* 0xF51010000007C07C */ + PG_TILECFG_B = 0x1B, /* 0xF5102000000FC07C */ + PG_TILECFG_C = 0x1C, /* 0xF51010000007C0FC */ + PG_TILECFG_D = 0x1D, /* 0xF57010000007C07C */ + PG_TILECFG_E = 0x1E, /* 0xF5702000000FC07C */ + PG_TILECFG_F = 0x1F, /* 0xF57010000007C0FC */ + + /* Texture loadblock variants after gDPSetTextureImage */ + PG_TIMG_LOADBLOCK_0 = 0x20, /* 0xF3000000073FF100 */ + PG_TIMG_LOADBLOCK_1 = 0x21, /* 0xF3000000077FF080 */ + PG_TIMG_LOADBLOCK_2 = 0x22, /* 0xF3000000077FF100 */ + PG_TIMG_LOADBLOCK_3 = 0x23, /* 0xF3000003073FF100 */ + PG_TIMG_LOADBLOCK_4 = 0x24, /* 0xF3000003077FF080 */ + PG_TIMG_LOADBLOCK_5 = 0x25, /* 0xF3000003077FF100 */ + + /* gSPTexture on/off */ + PG_TEXTURE_OFF = 0x26, + PG_TEXTURE_ON = 0x27, + + /* VTX compact op (bank/count encoded) */ + PG_VTX1 = 0x28, + + /* Display list ops */ + PG_TRI1 = 0x29, + PG_ENDDL = 0x2A, + PG_DL = 0x2B, + PG_TILECFG_G = 0x2C, /* 0xF51011000007C07C */ + PG_CULLDL = 0x2D, + + /* Alternate combine preset used in memory.c */ + PG_SETCOMBINE_ALT = 0x2E, + + /* XLU render mode (not currently emitted) */ + PG_RMODE_XLU = 0x2F, + + /* Project-specific primitive (spline), not currently emitted here */ + PG_SPLINE3D = 0x30, + + /* Vertex packet base (computed as base + bank index) */ + PG_VTX_BASE = 0x32, + + /* Extra combine preset used by memory.c */ + PG_SETCOMBINE_CC_DECALRGBA = 0x53, /* ex-PG_SETCOMBINE_DECALRGBA */ + + /* Render mode decal variants (not currently emitted) */ + PG_RMODE_OPA_DECAL = 0x54, + PG_RMODE_XLU_DECAL = 0x55, + + /* Geometry mode */ + PG_SETGEOMETRYMODE = 0x56, + PG_CLEARGEOMETRYMODE = 0x57, + + /* Triangle pair */ + PG_TRI2 = 0x58, + + /* Special remap */ + PG_D0_REMAP = 0xDD, + + /* Fallback/terminators */ + PG_UNKNOWN = 0xEE, + PG_EOF = 0xFF, +}; + void pack(FILE *input_file, FILE *output_file) { // Initialize the string to an empty string @@ -62,11 +187,8 @@ void pack(FILE *input_file, FILE *output_file) { uint8_t p1; uint8_t p2; uint8_t p3; - uint8_t p4; - uint32_t p5; - uint32_t p6; + /* temporary vars */ uint16_t p7; - uint64_t compare; // Read every u32 in the input file and concatenate a string based on the value @@ -77,21 +199,39 @@ void pack(FILE *input_file, FILE *output_file) { // Warning: Static variable size may result in overflow if input file is too large. // Solution: Increase array size. uint8_t data[50000]; + int debug = getenv("DLPACKER_DEBUG") != NULL; + int lb_bias = 0; /* 0 for RGBA (A/B/C/G), 3 for IA (D/E/F) */ while (fread(&cmd, sizeof(uint64_t), 1, input_file) == 1) { cmd = swap_endian(cmd); opCode = OPCODE(cmd); //printf("%X \n", opCode); switch (opCode) { - case 0xB9: + case (uint8_t)G_SETOTHERMODE_L: p7 = (uint16_t) cmd; - if (p7 == 0x2078) { - data[count++] = 0x18; - } else if (p7 == 0x3078) { - data[count++] = 0x19; + if (p7 == OML_AA_ZCMP_ZUPD_IMRD_ALPHA_CVG_SEL) { + data[count++] = PG_RMODE_OPA; + if (debug) fprintf(stderr, "@%u PG_RMODE_OPA\n", count-1); + } else if (p7 == OML_AA_ZCMP_ZUPD_IMRD_CVG_X_ALPHA_ALPHA_CVG_SEL) { + data[count++] = PG_RMODE_TEXEDGE; + if (debug) fprintf(stderr, "@%u PG_RMODE_TEXEDGE\n", count-1); + } else if ((p7 & ZMODE_XLU) == ZMODE_XLU) { + /* Any render mode with ZMODE_XLU set maps to translucent; refine as DECAL if ALPHA_CVG_SEL is set */ + if ((p7 & ALPHA_CVG_SEL) == ALPHA_CVG_SEL) { + data[count++] = PG_RMODE_XLU_DECAL; + if (debug) fprintf(stderr, "@%u PG_RMODE_XLU_DECAL (ZMODE_XLU|ALPHA_CVG_SEL)\n", count-1); + } else { + data[count++] = PG_RMODE_XLU; + if (debug) fprintf(stderr, "@%u PG_RMODE_XLU (ZMODE_XLU)\n", count-1); + } + } else if ((p7 & ALPHA_CVG_SEL) == ALPHA_CVG_SEL) { + /* Opaque decal variant (no ZMODE_XLU, but with ALPHA_CVG_SEL) */ + data[count++] = PG_RMODE_OPA_DECAL; + if (debug) fprintf(stderr, "@%u PG_RMODE_OPA_DECAL (ALPHA_CVG_SEL)\n", count-1); } break; - case 0xBF: - data[count++] = 0x29; + case (uint8_t)G_TRI1: + data[count++] = PG_TRI1; + if (debug) fprintf(stderr, "@%u PG_TRI1\n", count-1); p1 = (uint8_t) (cmd >> 16) / 2; p2 = (uint8_t) (cmd >> 8) / 2; p3 = (uint8_t) (cmd) / 2; @@ -99,140 +239,291 @@ void pack(FILE *input_file, FILE *output_file) { *(uint16_t*) (data + count) = (uint16_t) (p1 | (p2 << 5) | (p3 << 10)); count++; count++; break; - case 0x06: - data[count++] = 0x2B; + case G_DL: + data[count++] = PG_DL; + if (debug) fprintf(stderr, "@%u PG_DL\n", count-1); *(uint16_t*) (data + count) = (uint16_t)(((uint32_t)cmd) / 8); count++; count++; break; - case 0xB1: - data[count++] = 0x58; + case (uint8_t)G_QUAD: { + /* Pack MK64 quad into compact SPLINE3D triplet, mirroring unpack_spline_3D expectations */ + data[count++] = PG_SPLINE3D; + if (debug) fprintf(stderr, "@%u PG_SPLINE3D\n", count-1); + uint32_t w1 = (uint32_t)cmd; + uint8_t a0 = (uint8_t)(w1 >> 24) / 2; + uint8_t t0 = (uint8_t)(w1 >> 16) / 2; + uint8_t a3 = (uint8_t)(w1 >> 8) / 2; + uint8_t a2 = (uint8_t)(w1) / 2; + /* Build three packed bytes (non-mirror path in memory.c): + * P0: [a3 bits2:0]<<5 | (t0 & 0x1F) + * P1: [a0 bit0]<<7 | (a2 & 0x1F)<<2 | [a3 bits4:3] + * P2: (a0 >> 1) & 0x0F + */ + uint8_t P0 = ((a3 & 0x7) << 5) | (t0 & 0x1F); + uint8_t P1 = ((a0 & 0x1) << 7) | ((a2 & 0x1F) << 2) | ((a3 >> 3) & 0x3); + uint8_t P2 = (a0 >> 1) & 0x0F; + data[count++] = P0; + data[count++] = P1; + data[count++] = P2; + if (debug) fprintf(stderr, " quad a0=%u t0=%u a3=%u a2=%u -> P0=%02X P1=%02X P2=%02X\n", a0, t0, a3, a2, P0, P1, P2); + break; + } + case (uint8_t)G_TRI2: + data[count++] = PG_TRI2; + if (debug) fprintf(stderr, "@%u PG_TRI2\n", count-1); *(uint16_t*) (data + count) = compressB1(ARG1(cmd), ARG2(cmd), cmd >> 32); count++; count++; *(uint16_t*) (data + count) = compressB1(cmd >> 16, cmd >> 8, cmd); count++; count++; break; - case 0x04: + case G_VTX: // Skip the opcode and read bytes 2/3 from the u64 (Byte 1 is the opcode 0x04). - data[count++] = (uint8_t)(((((uint16_t)ARG1WORD(cmd)) + 1) / 0x410) + 0x32); + data[count++] = (uint8_t)(((((uint16_t)ARG1WORD(cmd)) + 1) / 0x410) + PG_VTX_BASE); + if (debug) fprintf(stderr, "@%u PG_VTX_%u\n", count-1, data[count-1]-PG_VTX_BASE); // Read the right side of the u64 (as a u32). - *(uint16_t*) (data + count) = (uint16_t)(((uint32_t)cmd - 0x04000000) / 16); + *(uint16_t*) (data + count) = (uint16_t)(((uint32_t)cmd - (uint32_t)SEG_BASE_4) / 16); count++; count++; break; - case 0xFD: - p1 = (uint32_t)(cmd - 0x05000000) >> 11; - p2 = 0x00; - p3 = 0x70; + case G_SETTIMG: { + /* Texture image parameters (usually segment 0x05) */ + p1 = (uint32_t)(cmd - SEG_BASE_5) >> 11; /* address >> 11, compacted */ + p2 = 0x00; /* reserved in the existing packed format */ + p3 = 0x70; /* expected format/siz on the packed side */ - p4 = (uint8_t)ARG1(cmd); - - - fseek(input_file, 24, SEEK_CUR); - fread(&cmd, sizeof(uint64_t), 1, input_file); - cmd = swap_endian(cmd); - - if (p4 == 0x70) { - cmd |= 0x300000000; - + /* Look ahead for the corresponding G_LOADBLOCK, consuming SETTILE/LOADSYNC */ + { + uint64_t next; + int found = 0; + for (int i = 0; i < 12; i++) { + if (fread(&next, sizeof(uint64_t), 1, input_file) != 1) { + printf("Error: Unexpected EOF scanning after G_SETTIMG\n"); + break; + } + next = swap_endian(next); + uint8_t nop = OPCODE(next); + if (nop == (uint8_t)G_LOADBLOCK) { + cmd = next; + found = 1; + break; + } + if (nop == (uint8_t)G_SETTILE || nop == (uint8_t)G_RDPLOADSYNC || nop == (uint8_t)G_RDPPIPESYNC) { + continue; /* consumed, keep scanning */ + } + /* Unexpected: keep scanning a few opcodes anyway */ + } + if (!found) { + printf("Error: Did not find G_LOADBLOCK after G_SETTIMG\n"); + /* Emit a default value and exit this case */ + data[count++] = PG_TIMG_LOADBLOCK_0; + data[count++] = p1; + data[count++] = p2; + data[count++] = p3; + break; + } } - if (cmd == 0xF3000000073FF100) { - data[count++] = 0x20; - } else if (cmd == 0xF3000000077FF080) { - data[count++] = 0x21; - } else if (cmd == 0xF3000000077FF100) { - data[count++] = 0x22; - } else if (cmd == 0xF3000003073FF100) { - data[count++] = 0x23; - } else if (cmd == 0xF3000003077FF080) { - data[count++] = 0x24; - } else if (cmd == 0xF3000003077FF100) { - data[count++] = 0x25; - } else { - printf("Error: %s\n", "Unknown FD"); + /* Classify by (lrs,dxt) then apply a bias from the last TILECFG (RGBA=+0, IA=+3) */ + { + uint32_t lb_w0 = (uint32_t)(cmd >> 32); + uint32_t lb_w1 = (uint32_t)(cmd); + uint16_t uls = (lb_w0 >> 12) & 0xFFF; + uint16_t ult = (lb_w0 >> 0) & 0xFFF; + uint8_t tile = (lb_w1 >> 24) & 0x7; + uint16_t lrs = (lb_w1 >> 12) & 0xFFF; + uint16_t dxt = (lb_w1 >> 0) & 0xFFF; + int base = -1; + if (tile == G_TX_LOADTILE && uls == 0 && (ult == 0 || ult == 3)) { + if (lrs == 0x3FF && dxt == 0x0100) base = 0; + else if (lrs == 0x7FF && dxt == 0x0080) base = 1; + else if (lrs == 0x7FF && dxt == 0x0100) base = 2; + } + if (base < 0) { + printf("Error: Unrecognized/Unexpected G_LOADBLOCK (tile=%u uls=%u ult=%u lrs=%03X dxt=%03X)\n", tile, uls, ult, lrs, dxt); + base = 0; + } + uint8_t variant = (uint8_t)(PG_TIMG_LOADBLOCK_0 + base + lb_bias); + data[count++] = variant; + if (debug) fprintf(stderr, "@%u PG_TIMG_LOADBLOCK_%d (base=%d,bias=%d) cmd=%016llX\n", count-1, (int)(variant-PG_TIMG_LOADBLOCK_0), base, lb_bias, (unsigned long long)cmd); } + data[count++] = p1; data[count++] = p2; data[count++] = p3; break; - case 0xE8: - - // Read 0xF5 - fread(&cmd, sizeof(uint64_t), 1, input_file); + } + case G_RDPTILESYNC: { + /* Read G_SETTILE (0xF5) */ + if (fread(&cmd, sizeof(uint64_t), 1, input_file) != 1) { + printf("Error: Unexpected EOF after G_RDPTILESYNC (SETTILE)\n"); + break; + } cmd = swap_endian(cmd); - p5 = ARG1WORD(cmd); - - p1 = (((cmd >> 14) & 0xF) << 4) | ((cmd >> 18) & 0xF); - p2 = (((cmd >> 4) & 0xF) << 4) | ((cmd >> 8) & 0xF); - - // Read 0xF2 - fread(&cmd, sizeof(uint64_t), 1, input_file); - cmd = swap_endian(cmd); - p6 = (uint32_t)cmd; - - compare = ((uint64_t) p5 << 32 ) | p6; - - switch (compare) { - case 0xF51011000007C07C: - data[count++] = 0x2C; - break; - case 0xF51010000007C07C: - data[count++] = 0x1A; - break; - case 0xF5102000000FC07C: - data[count++] = 0x1B; - break; - case 0xF51010000007C0FC: - data[count++] = 0x1C; - break; - case 0xF57010000007C07C: - data[count++] = 0x1D; - break; - case 0xF5702000000FC07C: - data[count++] = 0x1E; - break; - case 0xF57010000007C0FC: - data[count++] = 0x1F; - break; + if ((uint8_t)OPCODE(cmd) != (uint8_t)G_SETTILE) { + printf("Error: Expected G_SETTILE after G_RDPTILESYNC, got 0x%02X\n", OPCODE(cmd)); + break; } - data[count++] = p2; + uint32_t st_w0 = (uint32_t)(cmd >> 32); + uint32_t st_w1 = (uint32_t)cmd; + uint8_t fmt = (st_w0 >> 21) & 0x7; + uint8_t siz = (st_w0 >> 19) & 0x3; + uint16_t line = (st_w0 >> 9) & 0x1FF; + uint16_t tmem = (st_w0 >> 0) & 0x1FF; + uint8_t tile = (st_w1 >> 24) & 0x7; + uint8_t pal = (st_w1 >> 20) & 0xF; + uint8_t cmt = (st_w1 >> 18) & 0x3; + uint8_t maskt = (st_w1 >> 14) & 0xF; + uint8_t shiftt= (st_w1 >> 10) & 0xF; + uint8_t cms = (st_w1 >> 8) & 0x3; + uint8_t masks = (st_w1 >> 4) & 0xF; + uint8_t shifts= (st_w1 >> 0) & 0xF; + /* p1/p2 stay as before (re-encodes 2 nibbles of clamp/mirror flags) */ + p1 = (((cmd >> 14) & 0xF) << 4) | ((cmd >> 18) & 0xF); /* shiftt|cmt */ + p2 = (((cmd >> 4) & 0xF) << 4) | ((cmd >> 8) & 0xF); /* masks|cms */ + + /* Read G_SETTILESIZE (0xF2), skipping syncs if present */ + { + int found = 0; + for (int i = 0; i < 6; i++) { + if (fread(&cmd, sizeof(uint64_t), 1, input_file) != 1) { + printf("Error: Unexpected EOF after G_SETTILE (SETTILESIZE)\n"); + break; + } + cmd = swap_endian(cmd); + uint8_t op2 = OPCODE(cmd); + if (op2 == (uint8_t)G_SETTILESIZE) { found = 1; break; } + if (op2 == (uint8_t)G_RDPLOADSYNC || op2 == (uint8_t)G_RDPPIPESYNC) { + continue; + } + /* something else: stop */ + break; + } + if (!found) { + printf("Error: Expected G_SETTILESIZE after G_SETTILE, got 0x%02X\n", OPCODE(cmd)); + break; + } + } + + uint32_t ss_w0 = (uint32_t)(cmd >> 32); + uint32_t ss_w1 = (uint32_t)cmd; + uint16_t uls = (ss_w0 >> 12) & 0xFFF; + uint16_t ult = (ss_w0 >> 0) & 0xFFF; + /* ss_tile not used in the current packed format */ + uint16_t lrs = (ss_w1 >> 12) & 0xFFF; + uint16_t lrt = (ss_w1 >> 0) & 0xFFF; + + /* Classification A..G based on (fmt,siz) and (lrs,lrt), without constraining cmt/cms/masks/line/etc. */ + if (fmt == G_IM_FMT_RGBA && lrs == 0x07C && lrt == 0x07C) { + /* G-variant: legacy hint only (w0 byte[1] == 0x11). Do not rely on p1/p2 mask/shift patterns. */ + uint8_t w0_b1 = (uint8_t)((st_w0 >> 8) & 0xFF); + if (debug) fprintf(stderr, "#TILE RGBA7C7C st_w0=%08X ss_w1=%08X p2=%02X p1=%02X w0_b1=%02X\n", st_w0, ss_w1, p2, p1, w0_b1); + if (w0_b1 == 0x11) { + data[count++] = PG_TILECFG_G; /* legacy G variant */ + if (debug) fprintf(stderr, "@%u PG_TILECFG_G p2=%02X p1=%02X\n", count-1, p2, p1); + } else { + data[count++] = PG_TILECFG_A; /* default RGBA16 tile */ + if (debug) fprintf(stderr, "@%u PG_TILECFG_A p2=%02X p1=%02X\n", count-1, p2, p1); + } + lb_bias = 0; + } else if (fmt == G_IM_FMT_RGBA && lrs == 0x0FC && lrt == 0x07C) { + data[count++] = PG_TILECFG_B; /* F5102000000FC07C */ + if (debug) fprintf(stderr, "@%u PG_TILECFG_B p2=%02X p1=%02X\n", count-1, p2, p1); + lb_bias = 0; + } else if (fmt == G_IM_FMT_RGBA && lrs == 0x07C && lrt == 0x0FC) { + data[count++] = PG_TILECFG_C; /* F51010000007C0FC */ + if (debug) fprintf(stderr, "@%u PG_TILECFG_C p2=%02X p1=%02X\n", count-1, p2, p1); + lb_bias = 0; + } else if (fmt == G_IM_FMT_IA && lrs == 0x07C && lrt == 0x07C) { + data[count++] = PG_TILECFG_D; /* F57010000007C07C */ + if (debug) fprintf(stderr, "@%u PG_TILECFG_D p2=%02X p1=%02X\n", count-1, p2, p1); + lb_bias = 3; + } else if (fmt == G_IM_FMT_IA && lrs == 0x0FC && lrt == 0x07C) { + data[count++] = PG_TILECFG_E; /* F5702000000FC07C */ + if (debug) fprintf(stderr, "@%u PG_TILECFG_E p2=%02X p1=%02X\n", count-1, p2, p1); + lb_bias = 3; + } else if (fmt == G_IM_FMT_IA && lrs == 0x07C && lrt == 0x0FC) { + data[count++] = PG_TILECFG_F; /* F57010000007C0FC */ + if (debug) fprintf(stderr, "@%u PG_TILECFG_F p2=%02X p1=%02X\n", count-1, p2, p1); + lb_bias = 3; + } else { + /* Unrecognized: choose A by default (rare) and trace in debug */ + if (debug) fprintf(stderr, "@%u PG_TILECFG_A (default) fmt=%u siz=%u line=%u tmem=%u tile=%u pal=%u cmt=%u cms=%u uls=%03X ult=%03X lrs=%03X lrt=%03X maskt=%u masks=%u shiftt=%u shifts=%u\n", + count, fmt, siz, line, tmem, tile, pal, cmt, cms, uls, ult, lrs, lrt, maskt, masks, shiftt, shifts); + data[count++] = PG_TILECFG_A; lb_bias = 0; + } + + /* Keep p2/p1 as historically encoded */ + data[count++] = p2; data[count++] = p1; break; - case 0xBB: - if ((uint16_t)cmd == 0x0001) { - data[count++] = 0x27; - } else if ((uint16_t)cmd == 0xFFFF) { - data[count++] = 0x26; - } else { - printf("Error: %s\n", "Unknown BB"); + } + case (uint8_t)G_TEXTURE: { + /* Parity with the legacy packer: primary test on t (low16 of w1) */ + uint16_t t = (uint16_t)cmd; + if (t == 0x0001) { + data[count++] = PG_TEXTURE_ON; + if (debug) fprintf(stderr, "@%u PG_TEXTURE_ON (t==0001)\n", count-1); + break; } + if (t == 0xFFFF) { + data[count++] = PG_TEXTURE_OFF; + if (debug) fprintf(stderr, "@%u PG_TEXTURE_OFF (t==FFFF)\n", count-1); + break; + } + /* Fallback: decode the 'on' flag via gbi.h for robustness */ + uint32_t w0 = (uint32_t)(cmd >> 32); + uint8_t on8 = (uint8_t)(w0 & 0xFF); + uint8_t on7 = (uint8_t)((w0 >> 1) & 0x7F); + data[count++] = ((on8 != 0) || (on7 != 0)) ? PG_TEXTURE_ON : PG_TEXTURE_OFF; + if (debug) fprintf(stderr, "@%u PG_TEXTURE_%s (decoded) on8=%u on7=%u\n", count-1, (((on8!=0)||(on7!=0))?"ON":"OFF"), on8, on7); break; - case 0xB8: - data[count++] = 0x2A; + } + case (uint8_t)G_ENDDL: + data[count++] = PG_ENDDL; + if (debug) fprintf(stderr, "@%u PG_ENDDL\n", count-1); break; - case 0xBE: - data[count++] = 0x2D; + case (uint8_t)G_RDPLOADSYNC: /* 0xE6 */ + case (uint8_t)G_RDPPIPESYNC: /* 0xE7 */ + /* ignored in the packed stream */ break; - case 0xD0: - data[count++] = 0xDD; + case (uint8_t)G_LOADBLOCK: /* Fallback: if encountered outside SETTIMG flow, ignore */ break; - case 0xFC: + case (uint8_t)G_CULLDL: + data[count++] = PG_CULLDL; + if (debug) fprintf(stderr, "@%u PG_CULLDL\n", count-1); + break; + case G_OP_D0: + data[count++] = PG_D0_REMAP; + if (debug) fprintf(stderr, "@%u PG_D0_REMAP\n", count-1); + break; + case G_SETCOMBINE: p7 = (uint16_t)cmd; - if (p7 == 0xF3F9) { - data[count++] = 0x16; - } else if (p7 == 0xFFFF) { - data[count++] = 0x15; - } else if (p7 == 0x793C) { - data[count++] = 0x17; + if (p7 == COMB_CC_MODULATERGBDECALA) { + data[count++] = PG_SETCOMBINE_CC_MODULATERGBDECALA; /* was: PRESET_F3F9 */ + if (debug) fprintf(stderr, "@%u PG_SETCOMBINE_PRESET_F3F9\n", count-1); + } else if (p7 == COMB_CC_MODULATERGBA) { + data[count++] = PG_SETCOMBINE_CC_MODULATERGBA; /* was: PRESET_FFFF */ + if (debug) fprintf(stderr, "@%u PG_SETCOMBINE_PRESET_FFFF\n", count-1); + } else if (p7 == COMB_CC_SHADE) { + data[count++] = PG_SETCOMBINE_CC_SHADE; /* was: PRESET_793C */ + if (debug) fprintf(stderr, "@%u PG_SETCOMBINE_PRESET_793C\n", count-1); + } else if (p7 == COMB_CC_DECALRGBA) { + data[count++] = PG_SETCOMBINE_CC_DECALRGBA; + if (debug) fprintf(stderr, "@%u PG_SETCOMBINE_DECALRGBA\n", count-1); + } else if (p7 == COMB_PRESET_ALT1) { + data[count++] = PG_SETCOMBINE_ALT; + if (debug) fprintf(stderr, "@%u PG_SETCOMBINE_ALT\n", count-1); } //data[count++] = 0x53; break; - case 0xB7: - data[count++] = 0x56; + case (uint8_t)G_SETGEOMETRYMODE: + data[count++] = PG_SETGEOMETRYMODE; + if (debug) fprintf(stderr, "@%u PG_SETGEOMETRYMODE\n", count-1); break; - case 0xB6: - data[count++] = 0x57; + case (uint8_t)G_CLEARGEOMETRYMODE: + data[count++] = PG_CLEARGEOMETRYMODE; + if (debug) fprintf(stderr, "@%u PG_CLEARGEOMETRYMODE\n", count-1); break; //case 0xFF: // data[count++] = 0xFF; @@ -241,14 +532,14 @@ void pack(FILE *input_file, FILE *output_file) { default: printf("Error: Unknown Opcode: 0x%X\n", opCode); printf("Opcode written to file as 0xEE\n"); - data[count++] = 0xEE; + data[count++] = PG_UNKNOWN; break; } offset += 4; } //eos: ; - data[count++] = 0xFF; + data[count++] = PG_EOF; size_t num_elements_written = fwrite(data, sizeof(uint8_t), count, output_file); if (num_elements_written != count) { printf("Failed to write data to file.\n"); diff --git a/torch b/torch index cd92cc0f1..c3fdb5d5e 160000 --- a/torch +++ b/torch @@ -1 +1 @@ -Subproject commit cd92cc0f161c5e79e36f5dda0d0029edd3fc8d50 +Subproject commit c3fdb5d5e3f172bdce468a6ff63fa9e496e0ce66 diff --git a/yamls/us/banshee_boardwalk_data.yml b/yamls/us/banshee_boardwalk_data.yml deleted file mode 100644 index d7c15de03..000000000 --- a/yamls/us/banshee_boardwalk_data.yml +++ /dev/null @@ -1,639 +0,0 @@ -:config: - segments: - - [0x06, 0x831DC0] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true - tables: - d_course_banshee_boardwalk_bat: - range: [0x7DB8, 0x95B8] - mode: APPEND -d_course_banshee_boardwalk_dl_0: - symbol: d_course_banshee_boardwalk_dl_0 - type: gfx - offset: 0x0 -d_course_banshee_boardwalk_dl_8: - symbol: d_course_banshee_boardwalk_dl_8 - type: gfx - offset: 0x8 -d_course_banshee_boardwalk_dl_38: - symbol: d_course_banshee_boardwalk_dl_38 - type: gfx - offset: 0x38 -d_course_banshee_boardwalk_dl_40: - symbol: d_course_banshee_boardwalk_dl_40 - type: gfx - offset: 0x40 -d_course_banshee_boardwalk_dl_68: - symbol: d_course_banshee_boardwalk_dl_68 - type: gfx - offset: 0x68 -d_course_banshee_boardwalk_dl_A0: - symbol: d_course_banshee_boardwalk_dl_A0 - type: gfx - offset: 0xA0 -d_course_banshee_boardwalk_dl_160: - symbol: d_course_banshee_boardwalk_dl_160 - type: gfx - offset: 0x160 -d_course_banshee_boardwalk_dl_210: - symbol: d_course_banshee_boardwalk_dl_210 - type: gfx - offset: 0x210 -d_course_banshee_boardwalk_dl_270: - symbol: d_course_banshee_boardwalk_dl_270 - type: gfx - offset: 0x270 -d_course_banshee_boardwalk_dl_358: - symbol: d_course_banshee_boardwalk_dl_358 - type: gfx - offset: 0x358 -d_course_banshee_boardwalk_dl_408: - symbol: d_course_banshee_boardwalk_dl_408 - type: gfx - offset: 0x408 -d_course_banshee_boardwalk_dl_4F0: - symbol: d_course_banshee_boardwalk_dl_4F0 - type: gfx - offset: 0x4F0 -d_course_banshee_boardwalk_dl_540: - symbol: d_course_banshee_boardwalk_dl_540 - type: gfx - offset: 0x540 -d_course_banshee_boardwalk_dl_620: - symbol: d_course_banshee_boardwalk_dl_620 - type: gfx - offset: 0x620 -d_course_banshee_boardwalk_dl_6D0: - symbol: d_course_banshee_boardwalk_dl_6D0 - type: gfx - offset: 0x6D0 -d_course_banshee_boardwalk_dl_7C0: - symbol: d_course_banshee_boardwalk_dl_7C0 - type: gfx - offset: 0x7C0 -d_course_banshee_boardwalk_dl_870: - symbol: d_course_banshee_boardwalk_dl_870 - type: gfx - offset: 0x870 -d_course_banshee_boardwalk_dl_940: - symbol: d_course_banshee_boardwalk_dl_940 - type: gfx - offset: 0x940 -d_course_banshee_boardwalk_dl_9E0: - symbol: d_course_banshee_boardwalk_dl_9E0 - type: gfx - offset: 0x9E0 -d_course_banshee_boardwalk_dl_AD0: - symbol: d_course_banshee_boardwalk_dl_AD0 - type: gfx - offset: 0xAD0 -d_course_banshee_boardwalk_dl_B80: - symbol: d_course_banshee_boardwalk_dl_B80 - type: gfx - offset: 0xB80 -d_course_banshee_boardwalk_dl_C30: - symbol: d_course_banshee_boardwalk_dl_C30 - type: gfx - offset: 0xC30 -d_course_banshee_boardwalk_dl_CD0: - symbol: d_course_banshee_boardwalk_dl_CD0 - type: gfx - offset: 0xCD0 -d_course_banshee_boardwalk_dl_D80: - symbol: d_course_banshee_boardwalk_dl_D80 - type: gfx - offset: 0xD80 -d_course_banshee_boardwalk_dl_E10: - symbol: d_course_banshee_boardwalk_dl_E10 - type: gfx - offset: 0xE10 -d_course_banshee_boardwalk_dl_EE0: - symbol: d_course_banshee_boardwalk_dl_EE0 - type: gfx - offset: 0xEE0 -d_course_banshee_boardwalk_dl_F50: - symbol: d_course_banshee_boardwalk_dl_F50 - type: gfx - offset: 0xF50 -d_course_banshee_boardwalk_dl_1000: - symbol: d_course_banshee_boardwalk_dl_1000 - type: gfx - offset: 0x1000 -d_course_banshee_boardwalk_dl_1070: - symbol: d_course_banshee_boardwalk_dl_1070 - type: gfx - offset: 0x1070 -d_course_banshee_boardwalk_dl_1160: - symbol: d_course_banshee_boardwalk_dl_1160 - type: gfx - offset: 0x1160 -d_course_banshee_boardwalk_dl_11C8: - symbol: d_course_banshee_boardwalk_dl_11C8 - type: gfx - offset: 0x11C8 -d_course_banshee_boardwalk_dl_12A8: - symbol: d_course_banshee_boardwalk_dl_12A8 - type: gfx - offset: 0x12A8 -d_course_banshee_boardwalk_dl_12E8: - symbol: d_course_banshee_boardwalk_dl_12E8 - type: gfx - offset: 0x12E8 -d_course_banshee_boardwalk_dl_13F0: - symbol: d_course_banshee_boardwalk_dl_13F0 - type: gfx - offset: 0x13F0 -d_course_banshee_boardwalk_dl_1448: - symbol: d_course_banshee_boardwalk_dl_1448 - type: gfx - offset: 0x1448 -d_course_banshee_boardwalk_dl_1520: - symbol: d_course_banshee_boardwalk_dl_1520 - type: gfx - offset: 0x1520 -d_course_banshee_boardwalk_dl_1580: - symbol: d_course_banshee_boardwalk_dl_1580 - type: gfx - offset: 0x1580 -d_course_banshee_boardwalk_dl_1678: - symbol: d_course_banshee_boardwalk_dl_1678 - type: gfx - offset: 0x1678 -d_course_banshee_boardwalk_dl_16B8: - symbol: d_course_banshee_boardwalk_dl_16B8 - type: gfx - offset: 0x16B8 -d_course_banshee_boardwalk_dl_17A0: - symbol: d_course_banshee_boardwalk_dl_17A0 - type: gfx - offset: 0x17A0 -d_course_banshee_boardwalk_dl_1820: - symbol: d_course_banshee_boardwalk_dl_1820 - type: gfx - offset: 0x1820 -d_course_banshee_boardwalk_dl_18D8: - symbol: d_course_banshee_boardwalk_dl_18D8 - type: gfx - offset: 0x18D8 -d_course_banshee_boardwalk_dl_1940: - symbol: d_course_banshee_boardwalk_dl_1940 - type: gfx - offset: 0x1940 -d_course_banshee_boardwalk_dl_1A30: - symbol: d_course_banshee_boardwalk_dl_1A30 - type: gfx - offset: 0x1A30 -d_course_banshee_boardwalk_dl_1B00: - symbol: d_course_banshee_boardwalk_dl_1B00 - type: gfx - offset: 0x1B00 -d_course_banshee_boardwalk_dl_1BA0: - symbol: d_course_banshee_boardwalk_dl_1BA0 - type: gfx - offset: 0x1BA0 -d_course_banshee_boardwalk_dl_1C20: - symbol: d_course_banshee_boardwalk_dl_1C20 - type: gfx - offset: 0x1C20 -d_course_banshee_boardwalk_dl_1CC8: - symbol: d_course_banshee_boardwalk_dl_1CC8 - type: gfx - offset: 0x1CC8 -d_course_banshee_boardwalk_dl_1D90: - symbol: d_course_banshee_boardwalk_dl_1D90 - type: gfx - offset: 0x1D90 -d_course_banshee_boardwalk_dl_1E28: - symbol: d_course_banshee_boardwalk_dl_1E28 - type: gfx - offset: 0x1E28 -d_course_banshee_boardwalk_dl_1EA0: - symbol: d_course_banshee_boardwalk_dl_1EA0 - type: gfx - offset: 0x1EA0 -d_course_banshee_boardwalk_dl_1F40: - symbol: d_course_banshee_boardwalk_dl_1F40 - type: gfx - offset: 0x1F40 -d_course_banshee_boardwalk_dl_2028: - symbol: d_course_banshee_boardwalk_dl_2028 - type: gfx - offset: 0x2028 -d_course_banshee_boardwalk_dl_20A0: - symbol: d_course_banshee_boardwalk_dl_20A0 - type: gfx - offset: 0x20A0 -d_course_banshee_boardwalk_dl_2138: - symbol: d_course_banshee_boardwalk_dl_2138 - type: gfx - offset: 0x2138 -d_course_banshee_boardwalk_dl_21C8: - symbol: d_course_banshee_boardwalk_dl_21C8 - type: gfx - offset: 0x21C8 -d_course_banshee_boardwalk_dl_22D8: - symbol: d_course_banshee_boardwalk_dl_22D8 - type: gfx - offset: 0x22D8 -d_course_banshee_boardwalk_dl_2340: - symbol: d_course_banshee_boardwalk_dl_2340 - type: gfx - offset: 0x2340 -d_course_banshee_boardwalk_dl_2448: - symbol: d_course_banshee_boardwalk_dl_2448 - type: gfx - offset: 0x2448 -d_course_banshee_boardwalk_dl_24E8: - symbol: d_course_banshee_boardwalk_dl_24E8 - type: gfx - offset: 0x24E8 -d_course_banshee_boardwalk_dl_2610: - symbol: d_course_banshee_boardwalk_dl_2610 - type: gfx - offset: 0x2610 -d_course_banshee_boardwalk_dl_2650: - symbol: d_course_banshee_boardwalk_dl_2650 - type: gfx - offset: 0x2650 -d_course_banshee_boardwalk_dl_2718: - symbol: d_course_banshee_boardwalk_dl_2718 - type: gfx - offset: 0x2718 -d_course_banshee_boardwalk_dl_2790: - symbol: d_course_banshee_boardwalk_dl_2790 - type: gfx - offset: 0x2790 -d_course_banshee_boardwalk_dl_2868: - symbol: d_course_banshee_boardwalk_dl_2868 - type: gfx - offset: 0x2868 -d_course_banshee_boardwalk_dl_28A8: - symbol: d_course_banshee_boardwalk_dl_28A8 - type: gfx - offset: 0x28A8 -d_course_banshee_boardwalk_dl_2980: - symbol: d_course_banshee_boardwalk_dl_2980 - type: gfx - offset: 0x2980 -d_course_banshee_boardwalk_dl_2A18: - symbol: d_course_banshee_boardwalk_dl_2A18 - type: gfx - offset: 0x2A18 -d_course_banshee_boardwalk_dl_2AE0: - symbol: d_course_banshee_boardwalk_dl_2AE0 - type: gfx - offset: 0x2AE0 -d_course_banshee_boardwalk_dl_2B88: - symbol: d_course_banshee_boardwalk_dl_2B88 - type: gfx - offset: 0x2B88 -d_course_banshee_boardwalk_dl_2C30: - symbol: d_course_banshee_boardwalk_dl_2C30 - type: gfx - offset: 0x2C30 -d_course_banshee_boardwalk_dl_2CE0: - symbol: d_course_banshee_boardwalk_dl_2CE0 - type: gfx - offset: 0x2CE0 -d_course_banshee_boardwalk_dl_2DB0: - symbol: d_course_banshee_boardwalk_dl_2DB0 - type: gfx - offset: 0x2DB0 -d_course_banshee_boardwalk_dl_2E20: - symbol: d_course_banshee_boardwalk_dl_2E20 - type: gfx - offset: 0x2E20 -d_course_banshee_boardwalk_dl_2EE0: - symbol: d_course_banshee_boardwalk_dl_2EE0 - type: gfx - offset: 0x2EE0 -d_course_banshee_boardwalk_dl_2FA0: - symbol: d_course_banshee_boardwalk_dl_2FA0 - type: gfx - offset: 0x2FA0 -d_course_banshee_boardwalk_dl_3050: - symbol: d_course_banshee_boardwalk_dl_3050 - type: gfx - offset: 0x3050 -d_course_banshee_boardwalk_dl_3100: - symbol: d_course_banshee_boardwalk_dl_3100 - type: gfx - offset: 0x3100 -d_course_banshee_boardwalk_dl_3200: - symbol: d_course_banshee_boardwalk_dl_3200 - type: gfx - offset: 0x3200 -d_course_banshee_boardwalk_dl_32B0: - symbol: d_course_banshee_boardwalk_dl_32B0 - type: gfx - offset: 0x32B0 -d_course_banshee_boardwalk_dl_3390: - symbol: d_course_banshee_boardwalk_dl_3390 - type: gfx - offset: 0x3390 -d_course_banshee_boardwalk_dl_3468: - symbol: d_course_banshee_boardwalk_dl_3468 - type: gfx - offset: 0x3468 -d_course_banshee_boardwalk_dl_35A0: - symbol: d_course_banshee_boardwalk_dl_35A0 - type: gfx - offset: 0x35A0 -d_course_banshee_boardwalk_dl_3660: - symbol: d_course_banshee_boardwalk_dl_3660 - type: gfx - offset: 0x3660 -d_course_banshee_boardwalk_dl_3710: - symbol: d_course_banshee_boardwalk_dl_3710 - type: gfx - offset: 0x3710 -d_course_banshee_boardwalk_dl_37F0: - symbol: d_course_banshee_boardwalk_dl_37F0 - type: gfx - offset: 0x37F0 -d_course_banshee_boardwalk_dl_3920: - symbol: d_course_banshee_boardwalk_dl_3920 - type: gfx - offset: 0x3920 -d_course_banshee_boardwalk_dl_3980: - symbol: d_course_banshee_boardwalk_dl_3980 - type: gfx - offset: 0x3980 -d_course_banshee_boardwalk_dl_3A20: - symbol: d_course_banshee_boardwalk_dl_3A20 - type: gfx - offset: 0x3A20 -d_course_banshee_boardwalk_dl_3AF8: - symbol: d_course_banshee_boardwalk_dl_3AF8 - type: gfx - offset: 0x3AF8 -d_course_banshee_boardwalk_dl_3C00: - symbol: d_course_banshee_boardwalk_dl_3C00 - type: gfx - offset: 0x3C00 -d_course_banshee_boardwalk_dl_3C40: - symbol: d_course_banshee_boardwalk_dl_3C40 - type: gfx - offset: 0x3C40 -d_course_banshee_boardwalk_dl_3CD0: - symbol: d_course_banshee_boardwalk_dl_3CD0 - type: gfx - offset: 0x3CD0 -d_course_banshee_boardwalk_dl_3D98: - symbol: d_course_banshee_boardwalk_dl_3D98 - type: gfx - offset: 0x3D98 -d_course_banshee_boardwalk_dl_3EB0: - symbol: d_course_banshee_boardwalk_dl_3EB0 - type: gfx - offset: 0x3EB0 -d_course_banshee_boardwalk_dl_3EF0: - symbol: d_course_banshee_boardwalk_dl_3EF0 - type: gfx - offset: 0x3EF0 -d_course_banshee_boardwalk_dl_3F60: - symbol: d_course_banshee_boardwalk_dl_3F60 - type: gfx - offset: 0x3F60 -d_course_banshee_boardwalk_dl_4038: - symbol: d_course_banshee_boardwalk_dl_4038 - type: gfx - offset: 0x4038 -d_course_banshee_boardwalk_dl_4118: - symbol: d_course_banshee_boardwalk_dl_4118 - type: gfx - offset: 0x4118 -d_course_banshee_boardwalk_dl_4188: - symbol: d_course_banshee_boardwalk_dl_4188 - type: gfx - offset: 0x4188 -d_course_banshee_boardwalk_dl_41F0: - symbol: d_course_banshee_boardwalk_dl_41F0 - type: gfx - offset: 0x41F0 -d_course_banshee_boardwalk_dl_42D0: - symbol: d_course_banshee_boardwalk_dl_42D0 - type: gfx - offset: 0x42D0 -d_course_banshee_boardwalk_dl_43A8: - symbol: d_course_banshee_boardwalk_dl_43A8 - type: gfx - offset: 0x43A8 -d_course_banshee_boardwalk_dl_4428: - symbol: d_course_banshee_boardwalk_dl_4428 - type: gfx - offset: 0x4428 -d_course_banshee_boardwalk_dl_4480: - symbol: d_course_banshee_boardwalk_dl_4480 - type: gfx - offset: 0x4480 -d_course_banshee_boardwalk_unknown_waypoints: - symbol: d_course_banshee_boardwalk_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x4578 - count: 79 -d_course_banshee_boardwalk_track_waypoints: - symbol: d_course_banshee_boardwalk_track_waypoints - type: mk64:TRACK_PATH - offset: 0x47F0 - count: 658 -d_course_banshee_boardwalk_boo_tlut: - symbol: d_course_banshee_boardwalk_boo_tlut - type: texture - offset: 0x5C80 - width: 16 - height: 16 - format: rgba16 - ctype: u8 -d_course_banshee_boardwalk_cheep_cheep1: - symbol: d_course_banshee_boardwalk_cheep_cheep1 - type: vtx - offset: 0x5E80 - count: 32 -d_course_banshee_boardwalk_cheep_cheep2: - symbol: d_course_banshee_boardwalk_cheep_cheep2 - type: vtx - offset: 0x6080 - count: 32 -d_course_banshee_boardwalk_cheep_cheep3: - symbol: d_course_banshee_boardwalk_cheep_cheep3 - type: vtx - offset: 0x6280 - count: 32 -d_course_banshee_boardwalk_cheep_cheep4: - symbol: d_course_banshee_boardwalk_cheep_cheep4 - type: vtx - offset: 0x6480 - count: 32 -d_course_banshee_boardwalk_cheep_cheep5: - symbol: d_course_banshee_boardwalk_cheep_cheep5 - type: vtx - offset: 0x6680 - count: 30 -d_course_banshee_boardwalk_cheep_cheep6: - symbol: d_course_banshee_boardwalk_cheep_cheep6 - type: vtx - offset: 0x6860 - count: 16 -d_course_banshee_boardwalk_cheep_cheep7: - symbol: d_course_banshee_boardwalk_cheep_cheep7 - type: vtx - offset: 0x6960 - count: 32 -d_course_banshee_boardwalk_cheep_cheep8: - symbol: d_course_banshee_boardwalk_cheep_cheep8 - type: vtx - offset: 0x6B60 - count: 31 -d_course_banshee_boardwalk_cheep_cheep9: - symbol: d_course_banshee_boardwalk_cheep_cheep9 - type: vtx - offset: 0x6D50 - count: 10 -d_course_banshee_boardwalk_cheep_cheep10: - symbol: d_course_banshee_boardwalk_cheep_cheep10 - type: vtx - offset: 0x6DF0 - count: 6 -d_course_banshee_boardwalk_fish_eyes: - symbol: d_course_banshee_boardwalk_fish_eyes - type: texture - offset: 0x6E50 - width: 32 - height: 32 - format: rgba16 - ctype: u8 -d_course_banshee_boardwalk_dl_7650: - symbol: d_course_banshee_boardwalk_dl_7650 - type: gfx - offset: 0x7650 -d_course_banshee_boardwalk_dl_78C0: - symbol: d_course_banshee_boardwalk_dl_78C0 - type: gfx - offset: 0x78C0 -d_course_banshee_boardwalk_dl_7978: - symbol: d_course_banshee_boardwalk_dl_7978 - type: gfx - offset: 0x7978 -d_course_banshee_boardwalk_dl_7B38: - symbol: d_course_banshee_boardwalk_dl_7B38 - type: gfx - offset: 0x7B38 -d_course_banshee_boardwalk_dl_7B78: - symbol: d_course_banshee_boardwalk_dl_7B78 - type: gfx - offset: 0x7B78 -d_course_banshee_boardwalk_dl_cheep_cheep: - symbol: d_course_banshee_boardwalk_dl_cheep_cheep - type: gfx - offset: 0x7BA8 -d_course_banshee_boardwalk_bat_tlut: - symbol: d_course_banshee_boardwalk_bat_tlut - type: texture - offset: 0x7BB8 - width: 16 - height: 16 - format: rgba16 - ctype: u8 -gTextureBat1: - symbol: gTextureBat1 - type: texture - offset: 0x7DB8 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_banshee_boardwalk_bat_tlut -gTextureBat2: - symbol: gTextureBat2 - type: texture - offset: 0x85B8 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_banshee_boardwalk_bat_tlut -gTextureBat3: - symbol: gTextureBat3 - type: texture - offset: 0x8DB8 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_banshee_boardwalk_bat_tlut -gTextureBat4: - symbol: gTextureBat4 - type: texture - offset: 0x95B8 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_banshee_boardwalk_bat_tlut -d_course_banshee_boardwalk_texture: - symbol: d_course_banshee_boardwalk_texture - type: texture - offset: 0xA050 - width: 32 - height: 32 - format: rgba16 - ctype: u8 -d_course_banshee_boardwalk_dl_A850: - symbol: d_course_banshee_boardwalk_dl_A850 - type: gfx - offset: 0xA850 -d_course_banshee_boardwalk_dl_A900: - symbol: d_course_banshee_boardwalk_dl_A900 - type: gfx - offset: 0xA900 -d_course_banshee_boardwalk_dl_A9B0: - symbol: d_course_banshee_boardwalk_dl_A9B0 - type: gfx - offset: 0xA9B0 -d_course_banshee_boardwalk_dl_A9C8: - symbol: d_course_banshee_boardwalk_dl_A9C8 - type: gfx - offset: 0xA9C8 -d_course_banshee_boardwalk_dl_trash_bin: - symbol: d_course_banshee_boardwalk_dl_trash_bin - type: gfx - offset: 0xA9D8 -d_course_banshee_boardwalk_model_unk: - symbol: d_course_banshee_boardwalk_model_unk - type: vtx - offset: 0xA9E8 - count: 9 -d_course_banshee_boardwalk_texture2: - symbol: d_course_banshee_boardwalk_texture2 - type: texture - offset: 0xAA78 - width: 32 - height: 32 - format: rgba16 - ctype: u8 -d_course_banshee_boardwalk_dl_B278: - symbol: d_course_banshee_boardwalk_dl_B278 - type: gfx - offset: 0xB278 -d_course_banshee_boardwalk_dl_B308: - symbol: d_course_banshee_boardwalk_dl_B308 - type: gfx - offset: 0xB308 -d_course_banshee_boardwalk_item_box_spawns: - symbol: d_course_banshee_boardwalk_item_box_spawns - type: mk64:spawn_data - offset: 0xB3D0 - count: 17 -d_course_banshee_boardwalk_track_sections: - symbol: d_course_banshee_boardwalk_track_sections - type: mk64:track_sections - offset: 0xB458 - count: 49 diff --git a/yamls/us/banshee_boardwalk_displaylists.yml b/yamls/us/banshee_boardwalk_displaylists.yml deleted file mode 100644 index 2452c2d69..000000000 --- a/yamls/us/banshee_boardwalk_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x8BFF18 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_banshee_boardwalk_packed_dls: - symbol: d_course_banshee_boardwalk_packed_dls - type: blob - offset: 0x8BFF18 - size: 0x25F7 diff --git a/yamls/us/banshee_boardwalk_vertices.yml b/yamls/us/banshee_boardwalk_vertices.yml deleted file mode 100644 index 56accf1a3..000000000 --- a/yamls/us/banshee_boardwalk_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x8B9630] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_banshee_boardwalk_vertex: - symbol: d_course_banshee_boardwalk_vertex - type: mk64:course_vtx - count: 4945 - offset: 0x0 diff --git a/yamls/us/big_donut_displaylists.yml b/yamls/us/big_donut_displaylists.yml deleted file mode 100644 index eb57177ca..000000000 --- a/yamls/us/big_donut_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x965A74 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_big_donut_packed_dls: - symbol: d_course_big_donut_packed_dls - type: blob - offset: 0x965A74 - size: 0x7EC diff --git a/yamls/us/big_donut_vertices.yml b/yamls/us/big_donut_vertices.yml deleted file mode 100644 index 78649de8f..000000000 --- a/yamls/us/big_donut_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x963EF0] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_big_donut_vertex: - symbol: d_course_big_donut_vertex - type: mk64:course_vtx - count: 1165 - offset: 0x0 diff --git a/yamls/us/block_fort_displaylists.yml b/yamls/us/block_fort_displaylists.yml deleted file mode 100644 index 6f57ba9a7..000000000 --- a/yamls/us/block_fort_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x953058 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_block_fort_packed_dls: - symbol: d_course_block_fort_packed_dls - type: blob - offset: 0x953058 - size: 0x829 diff --git a/yamls/us/block_fort_vertices.yml b/yamls/us/block_fort_vertices.yml deleted file mode 100644 index b9e4a694c..000000000 --- a/yamls/us/block_fort_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x951780] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_block_fort_vertex: - symbol: d_course_block_fort_vertex - type: mk64:course_vtx - count: 1088 - offset: 0x0 diff --git a/yamls/us/bowser_kart.yml b/yamls/us/bowser_kart.yml deleted file mode 100644 index 996f28f63..000000000 --- a/yamls/us/bowser_kart.yml +++ /dev/null @@ -1,12803 +0,0 @@ -:config: - segments: - - [0x0F, 0x57DE70] - no_compression: true - header: - code: - - '#include ' - - '#include ' - - '#include ' - header: - - '#include ' - - '#include ' - tables: - bowser_kart_wheels: - range: [0x9C088, 0xC0208] - mode: APPEND -bowser_kart_frame000: - symbol: gKartBowser000 - type: texture - offset: 0x0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame001: - symbol: gKartBowser001 - type: texture - offset: 0x658 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_001_wheel_0 -bowser_kart_frame002: - symbol: gKartBowser002 - type: texture - offset: 0xCDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_002_wheel_0 -bowser_kart_frame003: - symbol: gKartBowser003 - type: texture - offset: 0x135C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_003_wheel_0 -bowser_kart_frame004: - symbol: gKartBowser004 - type: texture - offset: 0x19C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_004_wheel_0 -bowser_kart_frame005: - symbol: gKartBowser005 - type: texture - offset: 0x2060 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_005_wheel_0 -bowser_kart_frame006: - symbol: gKartBowser006 - type: texture - offset: 0x2710 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_006_wheel_0 -bowser_kart_frame007: - symbol: gKartBowser007 - type: texture - offset: 0x2DF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_007_wheel_0 -bowser_kart_frame008: - symbol: gKartBowser008 - type: texture - offset: 0x3510 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_008_wheel_0 -bowser_kart_frame009: - symbol: gKartBowser009 - type: texture - offset: 0x3C3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_009_wheel_0 -bowser_kart_frame010: - symbol: gKartBowser010 - type: texture - offset: 0x4388 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_010_wheel_0 -bowser_kart_frame011: - symbol: gKartBowser011 - type: texture - offset: 0x4AF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_011_wheel_0 -bowser_kart_frame012: - symbol: gKartBowser012 - type: texture - offset: 0x526C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_012_wheel_0 -bowser_kart_frame013: - symbol: gKartBowser013 - type: texture - offset: 0x59E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_013_wheel_0 -bowser_kart_frame014: - symbol: gKartBowser014 - type: texture - offset: 0x6188 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_014_wheel_0 -bowser_kart_frame015: - symbol: gKartBowser015 - type: texture - offset: 0x693C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_015_wheel_0 -bowser_kart_frame016: - symbol: gKartBowser016 - type: texture - offset: 0x70F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_016_wheel_0 -bowser_kart_frame017: - symbol: gKartBowser017 - type: texture - offset: 0x78C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_017_wheel_0 -bowser_kart_frame018: - symbol: gKartBowser018 - type: texture - offset: 0x8084 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_018_wheel_0 -bowser_kart_frame019: - symbol: gKartBowser019 - type: texture - offset: 0x8838 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_019_wheel_0 -bowser_kart_frame020: - symbol: gKartBowser020 - type: texture - offset: 0x9014 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_020_wheel_0 -bowser_kart_frame021: - symbol: gKartBowser021 - type: texture - offset: 0x97E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_021_wheel_0 -bowser_kart_frame022: - symbol: gKartBowser022 - type: texture - offset: 0x9E5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_022_wheel_0 -bowser_kart_frame023: - symbol: gKartBowser023 - type: texture - offset: 0xA4FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_023_wheel_0 -bowser_kart_frame024: - symbol: gKartBowser024 - type: texture - offset: 0xAB84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_024_wheel_0 -bowser_kart_frame025: - symbol: gKartBowser025 - type: texture - offset: 0xB208 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_025_wheel_0 -bowser_kart_frame026: - symbol: gKartBowser026 - type: texture - offset: 0xB898 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_026_wheel_0 -bowser_kart_frame027: - symbol: gKartBowser027 - type: texture - offset: 0xBF58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_027_wheel_0 -bowser_kart_frame028: - symbol: gKartBowser028 - type: texture - offset: 0xC670 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_028_wheel_0 -bowser_kart_frame029: - symbol: gKartBowser029 - type: texture - offset: 0xCDA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_029_wheel_0 -bowser_kart_frame030: - symbol: gKartBowser030 - type: texture - offset: 0xD4EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_030_wheel_0 -bowser_kart_frame031: - symbol: gKartBowser031 - type: texture - offset: 0xDC50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_031_wheel_0 -bowser_kart_frame032: - symbol: gKartBowser032 - type: texture - offset: 0xE3DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_032_wheel_0 -bowser_kart_frame033: - symbol: gKartBowser033 - type: texture - offset: 0xEB6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_033_wheel_0 -bowser_kart_frame034: - symbol: gKartBowser034 - type: texture - offset: 0xF328 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_034_wheel_0 -bowser_kart_frame035: - symbol: gKartBowser035 - type: texture - offset: 0xFAEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_035_wheel_0 -bowser_kart_frame036: - symbol: gKartBowser036 - type: texture - offset: 0x102BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_036_wheel_0 -bowser_kart_frame037: - symbol: gKartBowser037 - type: texture - offset: 0x10A80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_037_wheel_0 -bowser_kart_frame038: - symbol: gKartBowser038 - type: texture - offset: 0x11254 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_038_wheel_0 -bowser_kart_frame039: - symbol: gKartBowser039 - type: texture - offset: 0x11A20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_039_wheel_0 -bowser_kart_frame040: - symbol: gKartBowser040 - type: texture - offset: 0x12208 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_040_wheel_0 -bowser_kart_frame041: - symbol: gKartBowser041 - type: texture - offset: 0x129E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_041_wheel_0 -bowser_kart_frame042: - symbol: gKartBowser042 - type: texture - offset: 0x131EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_042_wheel_0 -bowser_kart_frame043: - symbol: gKartBowser043 - type: texture - offset: 0x1388C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_043_wheel_0 -bowser_kart_frame044: - symbol: gKartBowser044 - type: texture - offset: 0x13F48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_044_wheel_0 -bowser_kart_frame045: - symbol: gKartBowser045 - type: texture - offset: 0x145F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_045_wheel_0 -bowser_kart_frame046: - symbol: gKartBowser046 - type: texture - offset: 0x14CB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_046_wheel_0 -bowser_kart_frame047: - symbol: gKartBowser047 - type: texture - offset: 0x15394 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_047_wheel_0 -bowser_kart_frame048: - symbol: gKartBowser048 - type: texture - offset: 0x15A7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_048_wheel_0 -bowser_kart_frame049: - symbol: gKartBowser049 - type: texture - offset: 0x161A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_049_wheel_0 -bowser_kart_frame050: - symbol: gKartBowser050 - type: texture - offset: 0x16904 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_050_wheel_0 -bowser_kart_frame051: - symbol: gKartBowser051 - type: texture - offset: 0x17078 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_051_wheel_0 -bowser_kart_frame052: - symbol: gKartBowser052 - type: texture - offset: 0x17828 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_052_wheel_0 -bowser_kart_frame053: - symbol: gKartBowser053 - type: texture - offset: 0x17FCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_053_wheel_0 -bowser_kart_frame054: - symbol: gKartBowser054 - type: texture - offset: 0x18794 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_054_wheel_0 -bowser_kart_frame055: - symbol: gKartBowser055 - type: texture - offset: 0x18F60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_055_wheel_0 -bowser_kart_frame056: - symbol: gKartBowser056 - type: texture - offset: 0x19720 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_056_wheel_0 -bowser_kart_frame057: - symbol: gKartBowser057 - type: texture - offset: 0x19F10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_057_wheel_0 -bowser_kart_frame058: - symbol: gKartBowser058 - type: texture - offset: 0x1A6EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_058_wheel_0 -bowser_kart_frame059: - symbol: gKartBowser059 - type: texture - offset: 0x1AED0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_059_wheel_0 -bowser_kart_frame060: - symbol: gKartBowser060 - type: texture - offset: 0x1B6B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_060_wheel_0 -bowser_kart_frame061: - symbol: gKartBowser061 - type: texture - offset: 0x1BEB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_061_wheel_0 -bowser_kart_frame062: - symbol: gKartBowser062 - type: texture - offset: 0x1C6CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_062_wheel_0 -bowser_kart_frame063: - symbol: gKartBowser063 - type: texture - offset: 0x1CEF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_063_wheel_0 -bowser_kart_frame064: - symbol: gKartBowser064 - type: texture - offset: 0x1D5BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_064_wheel_0 -bowser_kart_frame065: - symbol: gKartBowser065 - type: texture - offset: 0x1DC98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_065_wheel_0 -bowser_kart_frame066: - symbol: gKartBowser066 - type: texture - offset: 0x1E398 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_066_wheel_0 -bowser_kart_frame067: - symbol: gKartBowser067 - type: texture - offset: 0x1EA78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_067_wheel_0 -bowser_kart_frame068: - symbol: gKartBowser068 - type: texture - offset: 0x1F14C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_068_wheel_0 -bowser_kart_frame069: - symbol: gKartBowser069 - type: texture - offset: 0x1F86C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_069_wheel_0 -bowser_kart_frame070: - symbol: gKartBowser070 - type: texture - offset: 0x1FFBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_070_wheel_0 -bowser_kart_frame071: - symbol: gKartBowser071 - type: texture - offset: 0x20724 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_071_wheel_0 -bowser_kart_frame072: - symbol: gKartBowser072 - type: texture - offset: 0x20EA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_072_wheel_0 -bowser_kart_frame073: - symbol: gKartBowser073 - type: texture - offset: 0x21668 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_073_wheel_0 -bowser_kart_frame074: - symbol: gKartBowser074 - type: texture - offset: 0x21E28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_074_wheel_0 -bowser_kart_frame075: - symbol: gKartBowser075 - type: texture - offset: 0x225FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_075_wheel_0 -bowser_kart_frame076: - symbol: gKartBowser076 - type: texture - offset: 0x22DD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_076_wheel_0 -bowser_kart_frame077: - symbol: gKartBowser077 - type: texture - offset: 0x235BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_077_wheel_0 -bowser_kart_frame078: - symbol: gKartBowser078 - type: texture - offset: 0x23DBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_078_wheel_0 -bowser_kart_frame079: - symbol: gKartBowser079 - type: texture - offset: 0x245D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_079_wheel_0 -bowser_kart_frame080: - symbol: gKartBowser080 - type: texture - offset: 0x24DD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_080_wheel_0 -bowser_kart_frame081: - symbol: gKartBowser081 - type: texture - offset: 0x255F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_081_wheel_0 -bowser_kart_frame082: - symbol: gKartBowser082 - type: texture - offset: 0x25E04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_082_wheel_0 -bowser_kart_frame083: - symbol: gKartBowser083 - type: texture - offset: 0x26624 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_083_wheel_0 -bowser_kart_frame084: - symbol: gKartBowser084 - type: texture - offset: 0x26E48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_084_wheel_0 -bowser_kart_frame085: - symbol: gKartBowser085 - type: texture - offset: 0x27524 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_085_wheel_0 -bowser_kart_frame086: - symbol: gKartBowser086 - type: texture - offset: 0x27C08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_086_wheel_0 -bowser_kart_frame087: - symbol: gKartBowser087 - type: texture - offset: 0x28308 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_087_wheel_0 -bowser_kart_frame088: - symbol: gKartBowser088 - type: texture - offset: 0x289F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_088_wheel_0 -bowser_kart_frame089: - symbol: gKartBowser089 - type: texture - offset: 0x29108 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_089_wheel_0 -bowser_kart_frame090: - symbol: gKartBowser090 - type: texture - offset: 0x29840 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_090_wheel_0 -bowser_kart_frame091: - symbol: gKartBowser091 - type: texture - offset: 0x29FA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_091_wheel_0 -bowser_kart_frame092: - symbol: gKartBowser092 - type: texture - offset: 0x2A734 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_092_wheel_0 -bowser_kart_frame093: - symbol: gKartBowser093 - type: texture - offset: 0x2AEDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_093_wheel_0 -bowser_kart_frame094: - symbol: gKartBowser094 - type: texture - offset: 0x2B6B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_094_wheel_0 -bowser_kart_frame095: - symbol: gKartBowser095 - type: texture - offset: 0x2BE9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_095_wheel_0 -bowser_kart_frame096: - symbol: gKartBowser096 - type: texture - offset: 0x2C690 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_096_wheel_0 -bowser_kart_frame097: - symbol: gKartBowser097 - type: texture - offset: 0x2CE94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_097_wheel_0 -bowser_kart_frame098: - symbol: gKartBowser098 - type: texture - offset: 0x2D6A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_098_wheel_0 -bowser_kart_frame099: - symbol: gKartBowser099 - type: texture - offset: 0x2DEBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_099_wheel_0 -bowser_kart_frame100: - symbol: gKartBowser100 - type: texture - offset: 0x2E6D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_100_wheel_0 -bowser_kart_frame101: - symbol: gKartBowser101 - type: texture - offset: 0x2EEEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_101_wheel_0 -bowser_kart_frame102: - symbol: gKartBowser102 - type: texture - offset: 0x2F720 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_102_wheel_0 -bowser_kart_frame103: - symbol: gKartBowser103 - type: texture - offset: 0x2FF54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_103_wheel_0 -bowser_kart_frame104: - symbol: gKartBowser104 - type: texture - offset: 0x30788 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_104_wheel_0 -bowser_kart_frame105: - symbol: gKartBowser105 - type: texture - offset: 0x30FD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_105_wheel_0 -bowser_kart_frame106: - symbol: gKartBowser106 - type: texture - offset: 0x316B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_106_wheel_0 -bowser_kart_frame107: - symbol: gKartBowser107 - type: texture - offset: 0x31DC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_107_wheel_0 -bowser_kart_frame108: - symbol: gKartBowser108 - type: texture - offset: 0x324D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_108_wheel_0 -bowser_kart_frame109: - symbol: gKartBowser109 - type: texture - offset: 0x32BFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_109_wheel_0 -bowser_kart_frame110: - symbol: gKartBowser110 - type: texture - offset: 0x33320 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_110_wheel_0 -bowser_kart_frame111: - symbol: gKartBowser111 - type: texture - offset: 0x33A94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_111_wheel_0 -bowser_kart_frame112: - symbol: gKartBowser112 - type: texture - offset: 0x34224 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_112_wheel_0 -bowser_kart_frame113: - symbol: gKartBowser113 - type: texture - offset: 0x349D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_113_wheel_0 -bowser_kart_frame114: - symbol: gKartBowser114 - type: texture - offset: 0x35198 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_114_wheel_0 -bowser_kart_frame115: - symbol: gKartBowser115 - type: texture - offset: 0x35970 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_115_wheel_0 -bowser_kart_frame116: - symbol: gKartBowser116 - type: texture - offset: 0x36150 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_116_wheel_0 -bowser_kart_frame117: - symbol: gKartBowser117 - type: texture - offset: 0x36970 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_117_wheel_0 -bowser_kart_frame118: - symbol: gKartBowser118 - type: texture - offset: 0x37174 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_118_wheel_0 -bowser_kart_frame119: - symbol: gKartBowser119 - type: texture - offset: 0x37998 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_119_wheel_0 -bowser_kart_frame120: - symbol: gKartBowser120 - type: texture - offset: 0x381D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_120_wheel_0 -bowser_kart_frame121: - symbol: gKartBowser121 - type: texture - offset: 0x389F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_121_wheel_0 -bowser_kart_frame122: - symbol: gKartBowser122 - type: texture - offset: 0x39234 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_122_wheel_0 -bowser_kart_frame123: - symbol: gKartBowser123 - type: texture - offset: 0x39A58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_123_wheel_0 -bowser_kart_frame124: - symbol: gKartBowser124 - type: texture - offset: 0x3A2A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_124_wheel_0 -bowser_kart_frame125: - symbol: gKartBowser125 - type: texture - offset: 0x3AAC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_125_wheel_0 -bowser_kart_frame126: - symbol: gKartBowser126 - type: texture - offset: 0x3B338 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_126_wheel_0 -bowser_kart_frame127: - symbol: gKartBowser127 - type: texture - offset: 0x3BA44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_127_wheel_0 -bowser_kart_frame128: - symbol: gKartBowser128 - type: texture - offset: 0x3C17C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_128_wheel_0 -bowser_kart_frame129: - symbol: gKartBowser129 - type: texture - offset: 0x3C8A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_129_wheel_0 -bowser_kart_frame130: - symbol: gKartBowser130 - type: texture - offset: 0x3CFE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_130_wheel_0 -bowser_kart_frame131: - symbol: gKartBowser131 - type: texture - offset: 0x3D740 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_131_wheel_0 -bowser_kart_frame132: - symbol: gKartBowser132 - type: texture - offset: 0x3DEB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_132_wheel_0 -bowser_kart_frame133: - symbol: gKartBowser133 - type: texture - offset: 0x3E65C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_133_wheel_0 -bowser_kart_frame134: - symbol: gKartBowser134 - type: texture - offset: 0x3EE24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_134_wheel_0 -bowser_kart_frame135: - symbol: gKartBowser135 - type: texture - offset: 0x3F5F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_135_wheel_0 -bowser_kart_frame136: - symbol: gKartBowser136 - type: texture - offset: 0x3FDEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_136_wheel_0 -bowser_kart_frame137: - symbol: gKartBowser137 - type: texture - offset: 0x405E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_137_wheel_0 -bowser_kart_frame138: - symbol: gKartBowser138 - type: texture - offset: 0x40E04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_138_wheel_0 -bowser_kart_frame139: - symbol: gKartBowser139 - type: texture - offset: 0x4163C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_139_wheel_0 -bowser_kart_frame140: - symbol: gKartBowser140 - type: texture - offset: 0x41E78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_140_wheel_0 -bowser_kart_frame141: - symbol: gKartBowser141 - type: texture - offset: 0x426C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_141_wheel_0 -bowser_kart_frame142: - symbol: gKartBowser142 - type: texture - offset: 0x42F04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_142_wheel_0 -bowser_kart_frame143: - symbol: gKartBowser143 - type: texture - offset: 0x43744 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_143_wheel_0 -bowser_kart_frame144: - symbol: gKartBowser144 - type: texture - offset: 0x43F98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_144_wheel_0 -bowser_kart_frame145: - symbol: gKartBowser145 - type: texture - offset: 0x44800 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_145_wheel_0 -bowser_kart_frame146: - symbol: gKartBowser146 - type: texture - offset: 0x45050 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_146_wheel_0 -bowser_kart_frame147: - symbol: gKartBowser147 - type: texture - offset: 0x458CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_147_wheel_0 -bowser_kart_frame148: - symbol: gKartBowser148 - type: texture - offset: 0x4600C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_148_wheel_0 -bowser_kart_frame149: - symbol: gKartBowser149 - type: texture - offset: 0x46754 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_149_wheel_0 -bowser_kart_frame150: - symbol: gKartBowser150 - type: texture - offset: 0x46EB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_150_wheel_0 -bowser_kart_frame151: - symbol: gKartBowser151 - type: texture - offset: 0x47614 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_151_wheel_0 -bowser_kart_frame152: - symbol: gKartBowser152 - type: texture - offset: 0x47D94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_152_wheel_0 -bowser_kart_frame153: - symbol: gKartBowser153 - type: texture - offset: 0x4854C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_153_wheel_0 -bowser_kart_frame154: - symbol: gKartBowser154 - type: texture - offset: 0x48D28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_154_wheel_0 -bowser_kart_frame155: - symbol: gKartBowser155 - type: texture - offset: 0x4951C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_155_wheel_0 -bowser_kart_frame156: - symbol: gKartBowser156 - type: texture - offset: 0x49D20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_156_wheel_0 -bowser_kart_frame157: - symbol: gKartBowser157 - type: texture - offset: 0x4A50C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_157_wheel_0 -bowser_kart_frame158: - symbol: gKartBowser158 - type: texture - offset: 0x4AD0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_158_wheel_0 -bowser_kart_frame159: - symbol: gKartBowser159 - type: texture - offset: 0x4B544 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_159_wheel_0 -bowser_kart_frame160: - symbol: gKartBowser160 - type: texture - offset: 0x4BD80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_160_wheel_0 -bowser_kart_frame161: - symbol: gKartBowser161 - type: texture - offset: 0x4C5F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_161_wheel_0 -bowser_kart_frame162: - symbol: gKartBowser162 - type: texture - offset: 0x4CE5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_162_wheel_0 -bowser_kart_frame163: - symbol: gKartBowser163 - type: texture - offset: 0x4D6A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_163_wheel_0 -bowser_kart_frame164: - symbol: gKartBowser164 - type: texture - offset: 0x4DF14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_164_wheel_0 -bowser_kart_frame165: - symbol: gKartBowser165 - type: texture - offset: 0x4E788 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_165_wheel_0 -bowser_kart_frame166: - symbol: gKartBowser166 - type: texture - offset: 0x4F028 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_166_wheel_0 -bowser_kart_frame167: - symbol: gKartBowser167 - type: texture - offset: 0x4F8B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_167_wheel_0 -bowser_kart_frame168: - symbol: gKartBowser168 - type: texture - offset: 0x50148 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_168_wheel_0 -bowser_kart_frame169: - symbol: gKartBowser169 - type: texture - offset: 0x5089C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_169_wheel_0 -bowser_kart_frame170: - symbol: gKartBowser170 - type: texture - offset: 0x51014 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_170_wheel_0 -bowser_kart_frame171: - symbol: gKartBowser171 - type: texture - offset: 0x51790 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_171_wheel_0 -bowser_kart_frame172: - symbol: gKartBowser172 - type: texture - offset: 0x51F20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_172_wheel_0 -bowser_kart_frame173: - symbol: gKartBowser173 - type: texture - offset: 0x526F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_173_wheel_0 -bowser_kart_frame174: - symbol: gKartBowser174 - type: texture - offset: 0x52EBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_174_wheel_0 -bowser_kart_frame175: - symbol: gKartBowser175 - type: texture - offset: 0x536AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_175_wheel_0 -bowser_kart_frame176: - symbol: gKartBowser176 - type: texture - offset: 0x53EB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_176_wheel_0 -bowser_kart_frame177: - symbol: gKartBowser177 - type: texture - offset: 0x546BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_177_wheel_0 -bowser_kart_frame178: - symbol: gKartBowser178 - type: texture - offset: 0x54EE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_178_wheel_0 -bowser_kart_frame179: - symbol: gKartBowser179 - type: texture - offset: 0x55718 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_179_wheel_0 -bowser_kart_frame180: - symbol: gKartBowser180 - type: texture - offset: 0x55F60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_180_wheel_0 -bowser_kart_frame181: - symbol: gKartBowser181 - type: texture - offset: 0x567C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_181_wheel_0 -bowser_kart_frame182: - symbol: gKartBowser182 - type: texture - offset: 0x57038 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_182_wheel_0 -bowser_kart_frame183: - symbol: gKartBowser183 - type: texture - offset: 0x578CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_183_wheel_0 -bowser_kart_frame184: - symbol: gKartBowser184 - type: texture - offset: 0x58158 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_184_wheel_0 -bowser_kart_frame185: - symbol: gKartBowser185 - type: texture - offset: 0x58A04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_185_wheel_0 -bowser_kart_frame186: - symbol: gKartBowser186 - type: texture - offset: 0x59288 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_186_wheel_0 -bowser_kart_frame187: - symbol: gKartBowser187 - type: texture - offset: 0x59B2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_187_wheel_0 -bowser_kart_frame188: - symbol: gKartBowser188 - type: texture - offset: 0x5A3C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_188_wheel_0 -bowser_kart_frame189: - symbol: gKartBowser189 - type: texture - offset: 0x5AC78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_189_wheel_0 -bowser_kart_frame190: - symbol: gKartBowser190 - type: texture - offset: 0x5B2F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_190_wheel_0 -bowser_kart_frame191: - symbol: gKartBowser191 - type: texture - offset: 0x5B9AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_191_wheel_0 -bowser_kart_frame192: - symbol: gKartBowser192 - type: texture - offset: 0x5C0D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_192_wheel_0 -bowser_kart_frame193: - symbol: gKartBowser193 - type: texture - offset: 0x5C824 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_193_wheel_0 -bowser_kart_frame194: - symbol: gKartBowser194 - type: texture - offset: 0x5CFB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_194_wheel_0 -bowser_kart_frame195: - symbol: gKartBowser195 - type: texture - offset: 0x5D758 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_195_wheel_0 -bowser_kart_frame196: - symbol: gKartBowser196 - type: texture - offset: 0x5DF3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_196_wheel_0 -bowser_kart_frame197: - symbol: gKartBowser197 - type: texture - offset: 0x5E750 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_197_wheel_0 -bowser_kart_frame198: - symbol: gKartBowser198 - type: texture - offset: 0x5EF7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_198_wheel_0 -bowser_kart_frame199: - symbol: gKartBowser199 - type: texture - offset: 0x5F810 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_199_wheel_0 -bowser_kart_frame200: - symbol: gKartBowser200 - type: texture - offset: 0x600B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_200_wheel_0 -bowser_kart_frame201: - symbol: gKartBowser201 - type: texture - offset: 0x6098C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_201_wheel_0 -bowser_kart_frame202: - symbol: gKartBowser202 - type: texture - offset: 0x6125C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_202_wheel_0 -bowser_kart_frame203: - symbol: gKartBowser203 - type: texture - offset: 0x61B44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_203_wheel_0 -bowser_kart_frame204: - symbol: gKartBowser204 - type: texture - offset: 0x62418 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_204_wheel_0 -bowser_kart_frame205: - symbol: gKartBowser205 - type: texture - offset: 0x62CD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_205_wheel_0 -bowser_kart_frame206: - symbol: gKartBowser206 - type: texture - offset: 0x63538 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_206_wheel_0 -bowser_kart_frame207: - symbol: gKartBowser207 - type: texture - offset: 0x63D78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_207_wheel_0 -bowser_kart_frame208: - symbol: gKartBowser208 - type: texture - offset: 0x645C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_208_wheel_0 -bowser_kart_frame209: - symbol: gKartBowser209 - type: texture - offset: 0x64DF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_209_wheel_0 -bowser_kart_frame210: - symbol: gKartBowser210 - type: texture - offset: 0x654B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_210_wheel_0 -bowser_kart_frame211: - symbol: gKartBowser211 - type: texture - offset: 0x65BC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_211_wheel_0 -bowser_kart_frame212: - symbol: gKartBowser212 - type: texture - offset: 0x66344 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_212_wheel_0 -bowser_kart_frame213: - symbol: gKartBowser213 - type: texture - offset: 0x66AF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_213_wheel_0 -bowser_kart_frame214: - symbol: gKartBowser214 - type: texture - offset: 0x67298 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_214_wheel_0 -bowser_kart_frame215: - symbol: gKartBowser215 - type: texture - offset: 0x67A70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_215_wheel_0 -bowser_kart_frame216: - symbol: gKartBowser216 - type: texture - offset: 0x682A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_216_wheel_0 -bowser_kart_frame217: - symbol: gKartBowser217 - type: texture - offset: 0x68AE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_217_wheel_0 -bowser_kart_frame218: - symbol: gKartBowser218 - type: texture - offset: 0x69354 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_218_wheel_0 -bowser_kart_frame219: - symbol: gKartBowser219 - type: texture - offset: 0x69BCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_219_wheel_0 -bowser_kart_frame220: - symbol: gKartBowser220 - type: texture - offset: 0x6A444 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_220_wheel_0 -bowser_kart_frame221: - symbol: gKartBowser221 - type: texture - offset: 0x6AD00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_221_wheel_0 -bowser_kart_frame222: - symbol: gKartBowser222 - type: texture - offset: 0x6B5BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_222_wheel_0 -bowser_kart_frame223: - symbol: gKartBowser223 - type: texture - offset: 0x6BE60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_223_wheel_0 -bowser_kart_frame224: - symbol: gKartBowser224 - type: texture - offset: 0x6C700 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_224_wheel_0 -bowser_kart_frame225: - symbol: gKartBowser225 - type: texture - offset: 0x6CF80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_225_wheel_0 -bowser_kart_frame226: - symbol: gKartBowser226 - type: texture - offset: 0x6D7B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_226_wheel_0 -bowser_kart_frame227: - symbol: gKartBowser227 - type: texture - offset: 0x6DFCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_227_wheel_0 -bowser_kart_frame228: - symbol: gKartBowser228 - type: texture - offset: 0x6E7E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_228_wheel_0 -bowser_kart_frame229: - symbol: gKartBowser229 - type: texture - offset: 0x6EFC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_229_wheel_0 -bowser_kart_frame230: - symbol: gKartBowser230 - type: texture - offset: 0x6F6B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_230_wheel_0 -bowser_kart_frame231: - symbol: gKartBowser231 - type: texture - offset: 0x6FE18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_231_wheel_0 -bowser_kart_frame232: - symbol: gKartBowser232 - type: texture - offset: 0x705C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_232_wheel_0 -bowser_kart_frame233: - symbol: gKartBowser233 - type: texture - offset: 0x70D94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_233_wheel_0 -bowser_kart_frame234: - symbol: gKartBowser234 - type: texture - offset: 0x71598 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_234_wheel_0 -bowser_kart_frame235: - symbol: gKartBowser235 - type: texture - offset: 0x71DC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_235_wheel_0 -bowser_kart_frame236: - symbol: gKartBowser236 - type: texture - offset: 0x72608 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_236_wheel_0 -bowser_kart_frame237: - symbol: gKartBowser237 - type: texture - offset: 0x72E64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_237_wheel_0 -bowser_kart_frame238: - symbol: gKartBowser238 - type: texture - offset: 0x736CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_238_wheel_0 -bowser_kart_frame239: - symbol: gKartBowser239 - type: texture - offset: 0x73F4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_239_wheel_0 -bowser_kart_frame240: - symbol: gKartBowser240 - type: texture - offset: 0x747E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_240_wheel_0 -bowser_kart_frame241: - symbol: gKartBowser241 - type: texture - offset: 0x75094 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_241_wheel_0 -bowser_kart_frame242: - symbol: gKartBowser242 - type: texture - offset: 0x758E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_242_wheel_0 -bowser_kart_frame243: - symbol: gKartBowser243 - type: texture - offset: 0x76174 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_243_wheel_0 -bowser_kart_frame244: - symbol: gKartBowser244 - type: texture - offset: 0x769EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_244_wheel_0 -bowser_kart_frame245: - symbol: gKartBowser245 - type: texture - offset: 0x77228 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_245_wheel_0 -bowser_kart_frame246: - symbol: gKartBowser246 - type: texture - offset: 0x77A28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_246_wheel_0 -bowser_kart_frame247: - symbol: gKartBowser247 - type: texture - offset: 0x78200 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_247_wheel_0 -bowser_kart_frame248: - symbol: gKartBowser248 - type: texture - offset: 0x789E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_248_wheel_0 -bowser_kart_frame249: - symbol: gKartBowser249 - type: texture - offset: 0x7919C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_249_wheel_0 -bowser_kart_frame250: - symbol: gKartBowser250 - type: texture - offset: 0x798DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_250_wheel_0 -bowser_kart_frame251: - symbol: gKartBowser251 - type: texture - offset: 0x7A06C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_251_wheel_0 -bowser_kart_frame252: - symbol: gKartBowser252 - type: texture - offset: 0x7A830 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_252_wheel_0 -bowser_kart_frame253: - symbol: gKartBowser253 - type: texture - offset: 0x7B028 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_253_wheel_0 -bowser_kart_frame254: - symbol: gKartBowser254 - type: texture - offset: 0x7B83C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_254_wheel_0 -bowser_kart_frame255: - symbol: gKartBowser255 - type: texture - offset: 0x7C07C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_255_wheel_0 -bowser_kart_frame256: - symbol: gKartBowser256 - type: texture - offset: 0x7C8F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_256_wheel_0 -bowser_kart_frame257: - symbol: gKartBowser257 - type: texture - offset: 0x7D178 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_257_wheel_0 -bowser_kart_frame258: - symbol: gKartBowser258 - type: texture - offset: 0x7D9E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_258_wheel_0 -bowser_kart_frame259: - symbol: gKartBowser259 - type: texture - offset: 0x7E27C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_259_wheel_0 -bowser_kart_frame260: - symbol: gKartBowser260 - type: texture - offset: 0x7EB18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_260_wheel_0 -bowser_kart_frame261: - symbol: gKartBowser261 - type: texture - offset: 0x7F3B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_261_wheel_0 -bowser_kart_frame262: - symbol: gKartBowser262 - type: texture - offset: 0x7FC20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_262_wheel_0 -bowser_kart_frame263: - symbol: gKartBowser263 - type: texture - offset: 0x80460 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_263_wheel_0 -bowser_kart_frame264: - symbol: gKartBowser264 - type: texture - offset: 0x80C8C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_264_wheel_0 -bowser_kart_frame265: - symbol: gKartBowser265 - type: texture - offset: 0x81494 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_265_wheel_0 -bowser_kart_frame266: - symbol: gKartBowser266 - type: texture - offset: 0x81C68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_266_wheel_0 -bowser_kart_frame267: - symbol: gKartBowser267 - type: texture - offset: 0x8240C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_267_wheel_0 -bowser_kart_frame268: - symbol: gKartBowser268 - type: texture - offset: 0x82BA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_268_wheel_0 -bowser_kart_frame269: - symbol: gKartBowser269 - type: texture - offset: 0x83314 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_269_wheel_0 -bowser_kart_frame270: - symbol: gKartBowser270 - type: texture - offset: 0x83AC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_270_wheel_0 -bowser_kart_frame271: - symbol: gKartBowser271 - type: texture - offset: 0x84288 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_271_wheel_0 -bowser_kart_frame272: - symbol: gKartBowser272 - type: texture - offset: 0x84A68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_272_wheel_0 -bowser_kart_frame273: - symbol: gKartBowser273 - type: texture - offset: 0x85288 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_273_wheel_0 -bowser_kart_frame274: - symbol: gKartBowser274 - type: texture - offset: 0x85AD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_274_wheel_0 -bowser_kart_frame275: - symbol: gKartBowser275 - type: texture - offset: 0x86360 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_275_wheel_0 -bowser_kart_frame276: - symbol: gKartBowser276 - type: texture - offset: 0x86BFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_276_wheel_0 -bowser_kart_frame277: - symbol: gKartBowser277 - type: texture - offset: 0x874A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_277_wheel_0 -bowser_kart_frame278: - symbol: gKartBowser278 - type: texture - offset: 0x87D20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_278_wheel_0 -bowser_kart_frame279: - symbol: gKartBowser279 - type: texture - offset: 0x885B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_279_wheel_0 -bowser_kart_frame280: - symbol: gKartBowser280 - type: texture - offset: 0x88E20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_280_wheel_0 -bowser_kart_frame281: - symbol: gKartBowser281 - type: texture - offset: 0x89684 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_281_wheel_0 -bowser_kart_frame282: - symbol: gKartBowser282 - type: texture - offset: 0x89EE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_282_wheel_0 -bowser_kart_frame283: - symbol: gKartBowser283 - type: texture - offset: 0x8A6F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_283_wheel_0 -bowser_kart_frame284: - symbol: gKartBowser284 - type: texture - offset: 0x8AEC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_284_wheel_0 -bowser_kart_frame285: - symbol: gKartBowser285 - type: texture - offset: 0x8B66C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_285_wheel_0 -bowser_kart_frame286: - symbol: gKartBowser286 - type: texture - offset: 0x8BDD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_286_wheel_0 -bowser_kart_frame287: - symbol: gKartBowser287 - type: texture - offset: 0x8C510 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_287_wheel_0 -bowser_kart_frame288: - symbol: gKartBowser288 - type: texture - offset: 0x8CC3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_288_wheel_0 -bowser_kart_frame289: - symbol: gKartBowser289 - type: texture - offset: 0x8D338 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame290: - symbol: gKartBowser290 - type: texture - offset: 0x8D99C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame291: - symbol: gKartBowser291 - type: texture - offset: 0x8E028 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame292: - symbol: gKartBowser292 - type: texture - offset: 0x8E740 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame293: - symbol: gKartBowser293 - type: texture - offset: 0x8EF00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame294: - symbol: gKartBowser294 - type: texture - offset: 0x8F600 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame295: - symbol: gKartBowser295 - type: texture - offset: 0x8FDAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame296: - symbol: gKartBowser296 - type: texture - offset: 0x9058C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame297: - symbol: gKartBowser297 - type: texture - offset: 0x90D50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame298: - symbol: gKartBowser298 - type: texture - offset: 0x91460 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame299: - symbol: gKartBowser299 - type: texture - offset: 0x91B94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame300: - symbol: gKartBowser300 - type: texture - offset: 0x922F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame301: - symbol: gKartBowser301 - type: texture - offset: 0x92A78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame302: - symbol: gKartBowser302 - type: texture - offset: 0x9322C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame303: - symbol: gKartBowser303 - type: texture - offset: 0x93A64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame304: - symbol: gKartBowser304 - type: texture - offset: 0x9423C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame305: - symbol: gKartBowser305 - type: texture - offset: 0x94988 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame306: - symbol: gKartBowser306 - type: texture - offset: 0x94F58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame307: - symbol: gKartBowser307 - type: texture - offset: 0x95660 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame308: - symbol: gKartBowser308 - type: texture - offset: 0x95DF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame309: - symbol: gKartBowser309 - type: texture - offset: 0x965D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame310: - symbol: gKartBowser310 - type: texture - offset: 0x96D0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame311: - symbol: gKartBowser311 - type: texture - offset: 0x974C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame312: - symbol: gKartBowser312 - type: texture - offset: 0x97CBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame313: - symbol: gKartBowser313 - type: texture - offset: 0x98454 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame314: - symbol: gKartBowser314 - type: texture - offset: 0x98B6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame315: - symbol: gKartBowser315 - type: texture - offset: 0x9929C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame316: - symbol: gKartBowser316 - type: texture - offset: 0x999E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame317: - symbol: gKartBowser317 - type: texture - offset: 0x9A16C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame318: - symbol: gKartBowser318 - type: texture - offset: 0x9A8CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame319: - symbol: gKartBowser319 - type: texture - offset: 0x9B0D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -bowser_kart_frame320: - symbol: gKartBowser320 - type: texture - offset: 0x9B8C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: bowser_kart_palette - tlut_wheel: kart_000_wheel_0 -kart_000_wheel_0: - symbol: gKartBowser000Wheel0 - type: texture - offset: 0x9C088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_1: - symbol: gKartBowser000Wheel1 - type: texture - offset: 0x9C108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_2: - symbol: gKartBowser000Wheel2 - type: texture - offset: 0x9C188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_3: - symbol: gKartBowser000Wheel3 - type: texture - offset: 0x9C208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_0: - symbol: gKartBowser001Wheel0 - type: texture - offset: 0x9C288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_1: - symbol: gKartBowser001Wheel1 - type: texture - offset: 0x9C308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_2: - symbol: gKartBowser001Wheel2 - type: texture - offset: 0x9C388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_3: - symbol: gKartBowser001Wheel3 - type: texture - offset: 0x9C408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_0: - symbol: gKartBowser002Wheel0 - type: texture - offset: 0x9C488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_1: - symbol: gKartBowser002Wheel1 - type: texture - offset: 0x9C508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_2: - symbol: gKartBowser002Wheel2 - type: texture - offset: 0x9C588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_3: - symbol: gKartBowser002Wheel3 - type: texture - offset: 0x9C608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_0: - symbol: gKartBowser003Wheel0 - type: texture - offset: 0x9C688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_1: - symbol: gKartBowser003Wheel1 - type: texture - offset: 0x9C708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_2: - symbol: gKartBowser003Wheel2 - type: texture - offset: 0x9C788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_3: - symbol: gKartBowser003Wheel3 - type: texture - offset: 0x9C808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_0: - symbol: gKartBowser004Wheel0 - type: texture - offset: 0x9C888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_1: - symbol: gKartBowser004Wheel1 - type: texture - offset: 0x9C908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_2: - symbol: gKartBowser004Wheel2 - type: texture - offset: 0x9C988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_3: - symbol: gKartBowser004Wheel3 - type: texture - offset: 0x9CA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_0: - symbol: gKartBowser005Wheel0 - type: texture - offset: 0x9CA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_1: - symbol: gKartBowser005Wheel1 - type: texture - offset: 0x9CB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_2: - symbol: gKartBowser005Wheel2 - type: texture - offset: 0x9CB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_3: - symbol: gKartBowser005Wheel3 - type: texture - offset: 0x9CC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_0: - symbol: gKartBowser006Wheel0 - type: texture - offset: 0x9CC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_1: - symbol: gKartBowser006Wheel1 - type: texture - offset: 0x9CD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_2: - symbol: gKartBowser006Wheel2 - type: texture - offset: 0x9CD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_3: - symbol: gKartBowser006Wheel3 - type: texture - offset: 0x9CE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_0: - symbol: gKartBowser007Wheel0 - type: texture - offset: 0x9CE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_1: - symbol: gKartBowser007Wheel1 - type: texture - offset: 0x9CF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_2: - symbol: gKartBowser007Wheel2 - type: texture - offset: 0x9CF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_3: - symbol: gKartBowser007Wheel3 - type: texture - offset: 0x9D008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_0: - symbol: gKartBowser008Wheel0 - type: texture - offset: 0x9D088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_1: - symbol: gKartBowser008Wheel1 - type: texture - offset: 0x9D108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_2: - symbol: gKartBowser008Wheel2 - type: texture - offset: 0x9D188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_3: - symbol: gKartBowser008Wheel3 - type: texture - offset: 0x9D208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_0: - symbol: gKartBowser009Wheel0 - type: texture - offset: 0x9D288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_1: - symbol: gKartBowser009Wheel1 - type: texture - offset: 0x9D308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_2: - symbol: gKartBowser009Wheel2 - type: texture - offset: 0x9D388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_3: - symbol: gKartBowser009Wheel3 - type: texture - offset: 0x9D408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_0: - symbol: gKartBowser010Wheel0 - type: texture - offset: 0x9D488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_1: - symbol: gKartBowser010Wheel1 - type: texture - offset: 0x9D508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_2: - symbol: gKartBowser010Wheel2 - type: texture - offset: 0x9D588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_3: - symbol: gKartBowser010Wheel3 - type: texture - offset: 0x9D608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_0: - symbol: gKartBowser011Wheel0 - type: texture - offset: 0x9D688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_1: - symbol: gKartBowser011Wheel1 - type: texture - offset: 0x9D708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_2: - symbol: gKartBowser011Wheel2 - type: texture - offset: 0x9D788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_3: - symbol: gKartBowser011Wheel3 - type: texture - offset: 0x9D808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_0: - symbol: gKartBowser012Wheel0 - type: texture - offset: 0x9D888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_1: - symbol: gKartBowser012Wheel1 - type: texture - offset: 0x9D908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_2: - symbol: gKartBowser012Wheel2 - type: texture - offset: 0x9D988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_3: - symbol: gKartBowser012Wheel3 - type: texture - offset: 0x9DA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_0: - symbol: gKartBowser013Wheel0 - type: texture - offset: 0x9DA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_1: - symbol: gKartBowser013Wheel1 - type: texture - offset: 0x9DB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_2: - symbol: gKartBowser013Wheel2 - type: texture - offset: 0x9DB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_3: - symbol: gKartBowser013Wheel3 - type: texture - offset: 0x9DC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_0: - symbol: gKartBowser014Wheel0 - type: texture - offset: 0x9DC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_1: - symbol: gKartBowser014Wheel1 - type: texture - offset: 0x9DD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_2: - symbol: gKartBowser014Wheel2 - type: texture - offset: 0x9DD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_3: - symbol: gKartBowser014Wheel3 - type: texture - offset: 0x9DE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_0: - symbol: gKartBowser015Wheel0 - type: texture - offset: 0x9DE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_1: - symbol: gKartBowser015Wheel1 - type: texture - offset: 0x9DF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_2: - symbol: gKartBowser015Wheel2 - type: texture - offset: 0x9DF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_3: - symbol: gKartBowser015Wheel3 - type: texture - offset: 0x9E008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_0: - symbol: gKartBowser016Wheel0 - type: texture - offset: 0x9E088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_1: - symbol: gKartBowser016Wheel1 - type: texture - offset: 0x9E108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_2: - symbol: gKartBowser016Wheel2 - type: texture - offset: 0x9E188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_3: - symbol: gKartBowser016Wheel3 - type: texture - offset: 0x9E208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_0: - symbol: gKartBowser017Wheel0 - type: texture - offset: 0x9E288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_1: - symbol: gKartBowser017Wheel1 - type: texture - offset: 0x9E308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_2: - symbol: gKartBowser017Wheel2 - type: texture - offset: 0x9E388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_3: - symbol: gKartBowser017Wheel3 - type: texture - offset: 0x9E408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_0: - symbol: gKartBowser018Wheel0 - type: texture - offset: 0x9E488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_1: - symbol: gKartBowser018Wheel1 - type: texture - offset: 0x9E508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_2: - symbol: gKartBowser018Wheel2 - type: texture - offset: 0x9E588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_3: - symbol: gKartBowser018Wheel3 - type: texture - offset: 0x9E608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_0: - symbol: gKartBowser019Wheel0 - type: texture - offset: 0x9E688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_1: - symbol: gKartBowser019Wheel1 - type: texture - offset: 0x9E708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_2: - symbol: gKartBowser019Wheel2 - type: texture - offset: 0x9E788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_3: - symbol: gKartBowser019Wheel3 - type: texture - offset: 0x9E808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_0: - symbol: gKartBowser020Wheel0 - type: texture - offset: 0x9E888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_1: - symbol: gKartBowser020Wheel1 - type: texture - offset: 0x9E908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_2: - symbol: gKartBowser020Wheel2 - type: texture - offset: 0x9E988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_3: - symbol: gKartBowser020Wheel3 - type: texture - offset: 0x9EA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_0: - symbol: gKartBowser021Wheel0 - type: texture - offset: 0x9EA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_1: - symbol: gKartBowser021Wheel1 - type: texture - offset: 0x9EB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_2: - symbol: gKartBowser021Wheel2 - type: texture - offset: 0x9EB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_3: - symbol: gKartBowser021Wheel3 - type: texture - offset: 0x9EC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_0: - symbol: gKartBowser022Wheel0 - type: texture - offset: 0x9EC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_1: - symbol: gKartBowser022Wheel1 - type: texture - offset: 0x9ED08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_2: - symbol: gKartBowser022Wheel2 - type: texture - offset: 0x9ED88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_3: - symbol: gKartBowser022Wheel3 - type: texture - offset: 0x9EE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_0: - symbol: gKartBowser023Wheel0 - type: texture - offset: 0x9EE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_1: - symbol: gKartBowser023Wheel1 - type: texture - offset: 0x9EF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_2: - symbol: gKartBowser023Wheel2 - type: texture - offset: 0x9EF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_3: - symbol: gKartBowser023Wheel3 - type: texture - offset: 0x9F008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_0: - symbol: gKartBowser024Wheel0 - type: texture - offset: 0x9F088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_1: - symbol: gKartBowser024Wheel1 - type: texture - offset: 0x9F108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_2: - symbol: gKartBowser024Wheel2 - type: texture - offset: 0x9F188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_3: - symbol: gKartBowser024Wheel3 - type: texture - offset: 0x9F208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_0: - symbol: gKartBowser025Wheel0 - type: texture - offset: 0x9F288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_1: - symbol: gKartBowser025Wheel1 - type: texture - offset: 0x9F308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_2: - symbol: gKartBowser025Wheel2 - type: texture - offset: 0x9F388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_3: - symbol: gKartBowser025Wheel3 - type: texture - offset: 0x9F408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_0: - symbol: gKartBowser026Wheel0 - type: texture - offset: 0x9F488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_1: - symbol: gKartBowser026Wheel1 - type: texture - offset: 0x9F508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_2: - symbol: gKartBowser026Wheel2 - type: texture - offset: 0x9F588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_3: - symbol: gKartBowser026Wheel3 - type: texture - offset: 0x9F608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_0: - symbol: gKartBowser027Wheel0 - type: texture - offset: 0x9F688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_1: - symbol: gKartBowser027Wheel1 - type: texture - offset: 0x9F708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_2: - symbol: gKartBowser027Wheel2 - type: texture - offset: 0x9F788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_3: - symbol: gKartBowser027Wheel3 - type: texture - offset: 0x9F808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_0: - symbol: gKartBowser028Wheel0 - type: texture - offset: 0x9F888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_1: - symbol: gKartBowser028Wheel1 - type: texture - offset: 0x9F908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_2: - symbol: gKartBowser028Wheel2 - type: texture - offset: 0x9F988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_3: - symbol: gKartBowser028Wheel3 - type: texture - offset: 0x9FA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_0: - symbol: gKartBowser029Wheel0 - type: texture - offset: 0x9FA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_1: - symbol: gKartBowser029Wheel1 - type: texture - offset: 0x9FB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_2: - symbol: gKartBowser029Wheel2 - type: texture - offset: 0x9FB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_3: - symbol: gKartBowser029Wheel3 - type: texture - offset: 0x9FC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_0: - symbol: gKartBowser030Wheel0 - type: texture - offset: 0x9FC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_1: - symbol: gKartBowser030Wheel1 - type: texture - offset: 0x9FD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_2: - symbol: gKartBowser030Wheel2 - type: texture - offset: 0x9FD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_3: - symbol: gKartBowser030Wheel3 - type: texture - offset: 0x9FE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_0: - symbol: gKartBowser031Wheel0 - type: texture - offset: 0x9FE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_1: - symbol: gKartBowser031Wheel1 - type: texture - offset: 0x9FF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_2: - symbol: gKartBowser031Wheel2 - type: texture - offset: 0x9FF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_3: - symbol: gKartBowser031Wheel3 - type: texture - offset: 0xA0008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_0: - symbol: gKartBowser032Wheel0 - type: texture - offset: 0xA0088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_1: - symbol: gKartBowser032Wheel1 - type: texture - offset: 0xA0108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_2: - symbol: gKartBowser032Wheel2 - type: texture - offset: 0xA0188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_3: - symbol: gKartBowser032Wheel3 - type: texture - offset: 0xA0208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_0: - symbol: gKartBowser033Wheel0 - type: texture - offset: 0xA0288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_1: - symbol: gKartBowser033Wheel1 - type: texture - offset: 0xA0308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_2: - symbol: gKartBowser033Wheel2 - type: texture - offset: 0xA0388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_3: - symbol: gKartBowser033Wheel3 - type: texture - offset: 0xA0408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_0: - symbol: gKartBowser034Wheel0 - type: texture - offset: 0xA0488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_1: - symbol: gKartBowser034Wheel1 - type: texture - offset: 0xA0508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_2: - symbol: gKartBowser034Wheel2 - type: texture - offset: 0xA0588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_3: - symbol: gKartBowser034Wheel3 - type: texture - offset: 0xA0608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_0: - symbol: gKartBowser035Wheel0 - type: texture - offset: 0xA0688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_1: - symbol: gKartBowser035Wheel1 - type: texture - offset: 0xA0708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_2: - symbol: gKartBowser035Wheel2 - type: texture - offset: 0xA0788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_3: - symbol: gKartBowser035Wheel3 - type: texture - offset: 0xA0808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_0: - symbol: gKartBowser036Wheel0 - type: texture - offset: 0xA0888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_1: - symbol: gKartBowser036Wheel1 - type: texture - offset: 0xA0908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_2: - symbol: gKartBowser036Wheel2 - type: texture - offset: 0xA0988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_3: - symbol: gKartBowser036Wheel3 - type: texture - offset: 0xA0A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_0: - symbol: gKartBowser037Wheel0 - type: texture - offset: 0xA0A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_1: - symbol: gKartBowser037Wheel1 - type: texture - offset: 0xA0B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_2: - symbol: gKartBowser037Wheel2 - type: texture - offset: 0xA0B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_3: - symbol: gKartBowser037Wheel3 - type: texture - offset: 0xA0C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_0: - symbol: gKartBowser038Wheel0 - type: texture - offset: 0xA0C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_1: - symbol: gKartBowser038Wheel1 - type: texture - offset: 0xA0D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_2: - symbol: gKartBowser038Wheel2 - type: texture - offset: 0xA0D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_3: - symbol: gKartBowser038Wheel3 - type: texture - offset: 0xA0E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_0: - symbol: gKartBowser039Wheel0 - type: texture - offset: 0xA0E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_1: - symbol: gKartBowser039Wheel1 - type: texture - offset: 0xA0F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_2: - symbol: gKartBowser039Wheel2 - type: texture - offset: 0xA0F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_3: - symbol: gKartBowser039Wheel3 - type: texture - offset: 0xA1008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_0: - symbol: gKartBowser040Wheel0 - type: texture - offset: 0xA1088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_1: - symbol: gKartBowser040Wheel1 - type: texture - offset: 0xA1108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_2: - symbol: gKartBowser040Wheel2 - type: texture - offset: 0xA1188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_3: - symbol: gKartBowser040Wheel3 - type: texture - offset: 0xA1208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_0: - symbol: gKartBowser041Wheel0 - type: texture - offset: 0xA1288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_1: - symbol: gKartBowser041Wheel1 - type: texture - offset: 0xA1308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_2: - symbol: gKartBowser041Wheel2 - type: texture - offset: 0xA1388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_3: - symbol: gKartBowser041Wheel3 - type: texture - offset: 0xA1408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_0: - symbol: gKartBowser042Wheel0 - type: texture - offset: 0xA1488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_1: - symbol: gKartBowser042Wheel1 - type: texture - offset: 0xA1508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_2: - symbol: gKartBowser042Wheel2 - type: texture - offset: 0xA1588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_3: - symbol: gKartBowser042Wheel3 - type: texture - offset: 0xA1608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_0: - symbol: gKartBowser043Wheel0 - type: texture - offset: 0xA1688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_1: - symbol: gKartBowser043Wheel1 - type: texture - offset: 0xA1708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_2: - symbol: gKartBowser043Wheel2 - type: texture - offset: 0xA1788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_3: - symbol: gKartBowser043Wheel3 - type: texture - offset: 0xA1808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_0: - symbol: gKartBowser044Wheel0 - type: texture - offset: 0xA1888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_1: - symbol: gKartBowser044Wheel1 - type: texture - offset: 0xA1908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_2: - symbol: gKartBowser044Wheel2 - type: texture - offset: 0xA1988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_3: - symbol: gKartBowser044Wheel3 - type: texture - offset: 0xA1A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_0: - symbol: gKartBowser045Wheel0 - type: texture - offset: 0xA1A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_1: - symbol: gKartBowser045Wheel1 - type: texture - offset: 0xA1B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_2: - symbol: gKartBowser045Wheel2 - type: texture - offset: 0xA1B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_3: - symbol: gKartBowser045Wheel3 - type: texture - offset: 0xA1C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_0: - symbol: gKartBowser046Wheel0 - type: texture - offset: 0xA1C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_1: - symbol: gKartBowser046Wheel1 - type: texture - offset: 0xA1D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_2: - symbol: gKartBowser046Wheel2 - type: texture - offset: 0xA1D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_3: - symbol: gKartBowser046Wheel3 - type: texture - offset: 0xA1E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_0: - symbol: gKartBowser047Wheel0 - type: texture - offset: 0xA1E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_1: - symbol: gKartBowser047Wheel1 - type: texture - offset: 0xA1F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_2: - symbol: gKartBowser047Wheel2 - type: texture - offset: 0xA1F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_3: - symbol: gKartBowser047Wheel3 - type: texture - offset: 0xA2008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_0: - symbol: gKartBowser048Wheel0 - type: texture - offset: 0xA2088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_1: - symbol: gKartBowser048Wheel1 - type: texture - offset: 0xA2108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_2: - symbol: gKartBowser048Wheel2 - type: texture - offset: 0xA2188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_3: - symbol: gKartBowser048Wheel3 - type: texture - offset: 0xA2208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_0: - symbol: gKartBowser049Wheel0 - type: texture - offset: 0xA2288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_1: - symbol: gKartBowser049Wheel1 - type: texture - offset: 0xA2308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_2: - symbol: gKartBowser049Wheel2 - type: texture - offset: 0xA2388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_3: - symbol: gKartBowser049Wheel3 - type: texture - offset: 0xA2408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_0: - symbol: gKartBowser050Wheel0 - type: texture - offset: 0xA2488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_1: - symbol: gKartBowser050Wheel1 - type: texture - offset: 0xA2508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_2: - symbol: gKartBowser050Wheel2 - type: texture - offset: 0xA2588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_3: - symbol: gKartBowser050Wheel3 - type: texture - offset: 0xA2608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_0: - symbol: gKartBowser051Wheel0 - type: texture - offset: 0xA2688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_1: - symbol: gKartBowser051Wheel1 - type: texture - offset: 0xA2708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_2: - symbol: gKartBowser051Wheel2 - type: texture - offset: 0xA2788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_3: - symbol: gKartBowser051Wheel3 - type: texture - offset: 0xA2808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_0: - symbol: gKartBowser052Wheel0 - type: texture - offset: 0xA2888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_1: - symbol: gKartBowser052Wheel1 - type: texture - offset: 0xA2908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_2: - symbol: gKartBowser052Wheel2 - type: texture - offset: 0xA2988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_3: - symbol: gKartBowser052Wheel3 - type: texture - offset: 0xA2A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_0: - symbol: gKartBowser053Wheel0 - type: texture - offset: 0xA2A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_1: - symbol: gKartBowser053Wheel1 - type: texture - offset: 0xA2B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_2: - symbol: gKartBowser053Wheel2 - type: texture - offset: 0xA2B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_3: - symbol: gKartBowser053Wheel3 - type: texture - offset: 0xA2C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_0: - symbol: gKartBowser054Wheel0 - type: texture - offset: 0xA2C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_1: - symbol: gKartBowser054Wheel1 - type: texture - offset: 0xA2D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_2: - symbol: gKartBowser054Wheel2 - type: texture - offset: 0xA2D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_3: - symbol: gKartBowser054Wheel3 - type: texture - offset: 0xA2E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_0: - symbol: gKartBowser055Wheel0 - type: texture - offset: 0xA2E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_1: - symbol: gKartBowser055Wheel1 - type: texture - offset: 0xA2F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_2: - symbol: gKartBowser055Wheel2 - type: texture - offset: 0xA2F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_3: - symbol: gKartBowser055Wheel3 - type: texture - offset: 0xA3008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_0: - symbol: gKartBowser056Wheel0 - type: texture - offset: 0xA3088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_1: - symbol: gKartBowser056Wheel1 - type: texture - offset: 0xA3108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_2: - symbol: gKartBowser056Wheel2 - type: texture - offset: 0xA3188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_3: - symbol: gKartBowser056Wheel3 - type: texture - offset: 0xA3208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_0: - symbol: gKartBowser057Wheel0 - type: texture - offset: 0xA3288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_1: - symbol: gKartBowser057Wheel1 - type: texture - offset: 0xA3308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_2: - symbol: gKartBowser057Wheel2 - type: texture - offset: 0xA3388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_3: - symbol: gKartBowser057Wheel3 - type: texture - offset: 0xA3408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_0: - symbol: gKartBowser058Wheel0 - type: texture - offset: 0xA3488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_1: - symbol: gKartBowser058Wheel1 - type: texture - offset: 0xA3508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_2: - symbol: gKartBowser058Wheel2 - type: texture - offset: 0xA3588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_3: - symbol: gKartBowser058Wheel3 - type: texture - offset: 0xA3608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_0: - symbol: gKartBowser059Wheel0 - type: texture - offset: 0xA3688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_1: - symbol: gKartBowser059Wheel1 - type: texture - offset: 0xA3708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_2: - symbol: gKartBowser059Wheel2 - type: texture - offset: 0xA3788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_3: - symbol: gKartBowser059Wheel3 - type: texture - offset: 0xA3808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_0: - symbol: gKartBowser060Wheel0 - type: texture - offset: 0xA3888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_1: - symbol: gKartBowser060Wheel1 - type: texture - offset: 0xA3908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_2: - symbol: gKartBowser060Wheel2 - type: texture - offset: 0xA3988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_3: - symbol: gKartBowser060Wheel3 - type: texture - offset: 0xA3A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_0: - symbol: gKartBowser061Wheel0 - type: texture - offset: 0xA3A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_1: - symbol: gKartBowser061Wheel1 - type: texture - offset: 0xA3B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_2: - symbol: gKartBowser061Wheel2 - type: texture - offset: 0xA3B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_3: - symbol: gKartBowser061Wheel3 - type: texture - offset: 0xA3C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_0: - symbol: gKartBowser062Wheel0 - type: texture - offset: 0xA3C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_1: - symbol: gKartBowser062Wheel1 - type: texture - offset: 0xA3D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_2: - symbol: gKartBowser062Wheel2 - type: texture - offset: 0xA3D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_3: - symbol: gKartBowser062Wheel3 - type: texture - offset: 0xA3E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_0: - symbol: gKartBowser063Wheel0 - type: texture - offset: 0xA3E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_1: - symbol: gKartBowser063Wheel1 - type: texture - offset: 0xA3F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_2: - symbol: gKartBowser063Wheel2 - type: texture - offset: 0xA3F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_3: - symbol: gKartBowser063Wheel3 - type: texture - offset: 0xA4008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_0: - symbol: gKartBowser064Wheel0 - type: texture - offset: 0xA4088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_1: - symbol: gKartBowser064Wheel1 - type: texture - offset: 0xA4108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_2: - symbol: gKartBowser064Wheel2 - type: texture - offset: 0xA4188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_3: - symbol: gKartBowser064Wheel3 - type: texture - offset: 0xA4208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_0: - symbol: gKartBowser065Wheel0 - type: texture - offset: 0xA4288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_1: - symbol: gKartBowser065Wheel1 - type: texture - offset: 0xA4308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_2: - symbol: gKartBowser065Wheel2 - type: texture - offset: 0xA4388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_3: - symbol: gKartBowser065Wheel3 - type: texture - offset: 0xA4408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_0: - symbol: gKartBowser066Wheel0 - type: texture - offset: 0xA4488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_1: - symbol: gKartBowser066Wheel1 - type: texture - offset: 0xA4508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_2: - symbol: gKartBowser066Wheel2 - type: texture - offset: 0xA4588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_3: - symbol: gKartBowser066Wheel3 - type: texture - offset: 0xA4608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_0: - symbol: gKartBowser067Wheel0 - type: texture - offset: 0xA4688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_1: - symbol: gKartBowser067Wheel1 - type: texture - offset: 0xA4708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_2: - symbol: gKartBowser067Wheel2 - type: texture - offset: 0xA4788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_3: - symbol: gKartBowser067Wheel3 - type: texture - offset: 0xA4808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_0: - symbol: gKartBowser068Wheel0 - type: texture - offset: 0xA4888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_1: - symbol: gKartBowser068Wheel1 - type: texture - offset: 0xA4908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_2: - symbol: gKartBowser068Wheel2 - type: texture - offset: 0xA4988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_3: - symbol: gKartBowser068Wheel3 - type: texture - offset: 0xA4A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_0: - symbol: gKartBowser069Wheel0 - type: texture - offset: 0xA4A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_1: - symbol: gKartBowser069Wheel1 - type: texture - offset: 0xA4B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_2: - symbol: gKartBowser069Wheel2 - type: texture - offset: 0xA4B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_3: - symbol: gKartBowser069Wheel3 - type: texture - offset: 0xA4C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_0: - symbol: gKartBowser070Wheel0 - type: texture - offset: 0xA4C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_1: - symbol: gKartBowser070Wheel1 - type: texture - offset: 0xA4D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_2: - symbol: gKartBowser070Wheel2 - type: texture - offset: 0xA4D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_3: - symbol: gKartBowser070Wheel3 - type: texture - offset: 0xA4E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_0: - symbol: gKartBowser071Wheel0 - type: texture - offset: 0xA4E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_1: - symbol: gKartBowser071Wheel1 - type: texture - offset: 0xA4F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_2: - symbol: gKartBowser071Wheel2 - type: texture - offset: 0xA4F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_3: - symbol: gKartBowser071Wheel3 - type: texture - offset: 0xA5008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_0: - symbol: gKartBowser072Wheel0 - type: texture - offset: 0xA5088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_1: - symbol: gKartBowser072Wheel1 - type: texture - offset: 0xA5108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_2: - symbol: gKartBowser072Wheel2 - type: texture - offset: 0xA5188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_3: - symbol: gKartBowser072Wheel3 - type: texture - offset: 0xA5208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_0: - symbol: gKartBowser073Wheel0 - type: texture - offset: 0xA5288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_1: - symbol: gKartBowser073Wheel1 - type: texture - offset: 0xA5308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_2: - symbol: gKartBowser073Wheel2 - type: texture - offset: 0xA5388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_3: - symbol: gKartBowser073Wheel3 - type: texture - offset: 0xA5408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_0: - symbol: gKartBowser074Wheel0 - type: texture - offset: 0xA5488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_1: - symbol: gKartBowser074Wheel1 - type: texture - offset: 0xA5508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_2: - symbol: gKartBowser074Wheel2 - type: texture - offset: 0xA5588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_3: - symbol: gKartBowser074Wheel3 - type: texture - offset: 0xA5608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_0: - symbol: gKartBowser075Wheel0 - type: texture - offset: 0xA5688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_1: - symbol: gKartBowser075Wheel1 - type: texture - offset: 0xA5708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_2: - symbol: gKartBowser075Wheel2 - type: texture - offset: 0xA5788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_3: - symbol: gKartBowser075Wheel3 - type: texture - offset: 0xA5808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_0: - symbol: gKartBowser076Wheel0 - type: texture - offset: 0xA5888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_1: - symbol: gKartBowser076Wheel1 - type: texture - offset: 0xA5908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_2: - symbol: gKartBowser076Wheel2 - type: texture - offset: 0xA5988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_3: - symbol: gKartBowser076Wheel3 - type: texture - offset: 0xA5A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_0: - symbol: gKartBowser077Wheel0 - type: texture - offset: 0xA5A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_1: - symbol: gKartBowser077Wheel1 - type: texture - offset: 0xA5B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_2: - symbol: gKartBowser077Wheel2 - type: texture - offset: 0xA5B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_3: - symbol: gKartBowser077Wheel3 - type: texture - offset: 0xA5C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_0: - symbol: gKartBowser078Wheel0 - type: texture - offset: 0xA5C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_1: - symbol: gKartBowser078Wheel1 - type: texture - offset: 0xA5D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_2: - symbol: gKartBowser078Wheel2 - type: texture - offset: 0xA5D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_3: - symbol: gKartBowser078Wheel3 - type: texture - offset: 0xA5E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_0: - symbol: gKartBowser079Wheel0 - type: texture - offset: 0xA5E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_1: - symbol: gKartBowser079Wheel1 - type: texture - offset: 0xA5F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_2: - symbol: gKartBowser079Wheel2 - type: texture - offset: 0xA5F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_3: - symbol: gKartBowser079Wheel3 - type: texture - offset: 0xA6008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_0: - symbol: gKartBowser080Wheel0 - type: texture - offset: 0xA6088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_1: - symbol: gKartBowser080Wheel1 - type: texture - offset: 0xA6108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_2: - symbol: gKartBowser080Wheel2 - type: texture - offset: 0xA6188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_3: - symbol: gKartBowser080Wheel3 - type: texture - offset: 0xA6208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_0: - symbol: gKartBowser081Wheel0 - type: texture - offset: 0xA6288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_1: - symbol: gKartBowser081Wheel1 - type: texture - offset: 0xA6308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_2: - symbol: gKartBowser081Wheel2 - type: texture - offset: 0xA6388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_3: - symbol: gKartBowser081Wheel3 - type: texture - offset: 0xA6408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_0: - symbol: gKartBowser082Wheel0 - type: texture - offset: 0xA6488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_1: - symbol: gKartBowser082Wheel1 - type: texture - offset: 0xA6508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_2: - symbol: gKartBowser082Wheel2 - type: texture - offset: 0xA6588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_3: - symbol: gKartBowser082Wheel3 - type: texture - offset: 0xA6608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_0: - symbol: gKartBowser083Wheel0 - type: texture - offset: 0xA6688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_1: - symbol: gKartBowser083Wheel1 - type: texture - offset: 0xA6708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_2: - symbol: gKartBowser083Wheel2 - type: texture - offset: 0xA6788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_3: - symbol: gKartBowser083Wheel3 - type: texture - offset: 0xA6808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_0: - symbol: gKartBowser084Wheel0 - type: texture - offset: 0xA6888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_1: - symbol: gKartBowser084Wheel1 - type: texture - offset: 0xA6908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_2: - symbol: gKartBowser084Wheel2 - type: texture - offset: 0xA6988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_3: - symbol: gKartBowser084Wheel3 - type: texture - offset: 0xA6A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_0: - symbol: gKartBowser085Wheel0 - type: texture - offset: 0xA6A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_1: - symbol: gKartBowser085Wheel1 - type: texture - offset: 0xA6B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_2: - symbol: gKartBowser085Wheel2 - type: texture - offset: 0xA6B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_3: - symbol: gKartBowser085Wheel3 - type: texture - offset: 0xA6C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_0: - symbol: gKartBowser086Wheel0 - type: texture - offset: 0xA6C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_1: - symbol: gKartBowser086Wheel1 - type: texture - offset: 0xA6D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_2: - symbol: gKartBowser086Wheel2 - type: texture - offset: 0xA6D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_3: - symbol: gKartBowser086Wheel3 - type: texture - offset: 0xA6E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_0: - symbol: gKartBowser087Wheel0 - type: texture - offset: 0xA6E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_1: - symbol: gKartBowser087Wheel1 - type: texture - offset: 0xA6F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_2: - symbol: gKartBowser087Wheel2 - type: texture - offset: 0xA6F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_3: - symbol: gKartBowser087Wheel3 - type: texture - offset: 0xA7008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_0: - symbol: gKartBowser088Wheel0 - type: texture - offset: 0xA7088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_1: - symbol: gKartBowser088Wheel1 - type: texture - offset: 0xA7108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_2: - symbol: gKartBowser088Wheel2 - type: texture - offset: 0xA7188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_3: - symbol: gKartBowser088Wheel3 - type: texture - offset: 0xA7208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_0: - symbol: gKartBowser089Wheel0 - type: texture - offset: 0xA7288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_1: - symbol: gKartBowser089Wheel1 - type: texture - offset: 0xA7308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_2: - symbol: gKartBowser089Wheel2 - type: texture - offset: 0xA7388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_3: - symbol: gKartBowser089Wheel3 - type: texture - offset: 0xA7408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_0: - symbol: gKartBowser090Wheel0 - type: texture - offset: 0xA7488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_1: - symbol: gKartBowser090Wheel1 - type: texture - offset: 0xA7508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_2: - symbol: gKartBowser090Wheel2 - type: texture - offset: 0xA7588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_3: - symbol: gKartBowser090Wheel3 - type: texture - offset: 0xA7608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_0: - symbol: gKartBowser091Wheel0 - type: texture - offset: 0xA7688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_1: - symbol: gKartBowser091Wheel1 - type: texture - offset: 0xA7708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_2: - symbol: gKartBowser091Wheel2 - type: texture - offset: 0xA7788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_3: - symbol: gKartBowser091Wheel3 - type: texture - offset: 0xA7808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_0: - symbol: gKartBowser092Wheel0 - type: texture - offset: 0xA7888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_1: - symbol: gKartBowser092Wheel1 - type: texture - offset: 0xA7908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_2: - symbol: gKartBowser092Wheel2 - type: texture - offset: 0xA7988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_3: - symbol: gKartBowser092Wheel3 - type: texture - offset: 0xA7A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_0: - symbol: gKartBowser093Wheel0 - type: texture - offset: 0xA7A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_1: - symbol: gKartBowser093Wheel1 - type: texture - offset: 0xA7B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_2: - symbol: gKartBowser093Wheel2 - type: texture - offset: 0xA7B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_3: - symbol: gKartBowser093Wheel3 - type: texture - offset: 0xA7C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_0: - symbol: gKartBowser094Wheel0 - type: texture - offset: 0xA7C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_1: - symbol: gKartBowser094Wheel1 - type: texture - offset: 0xA7D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_2: - symbol: gKartBowser094Wheel2 - type: texture - offset: 0xA7D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_3: - symbol: gKartBowser094Wheel3 - type: texture - offset: 0xA7E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_0: - symbol: gKartBowser095Wheel0 - type: texture - offset: 0xA7E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_1: - symbol: gKartBowser095Wheel1 - type: texture - offset: 0xA7F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_2: - symbol: gKartBowser095Wheel2 - type: texture - offset: 0xA7F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_3: - symbol: gKartBowser095Wheel3 - type: texture - offset: 0xA8008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_0: - symbol: gKartBowser096Wheel0 - type: texture - offset: 0xA8088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_1: - symbol: gKartBowser096Wheel1 - type: texture - offset: 0xA8108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_2: - symbol: gKartBowser096Wheel2 - type: texture - offset: 0xA8188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_3: - symbol: gKartBowser096Wheel3 - type: texture - offset: 0xA8208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_0: - symbol: gKartBowser097Wheel0 - type: texture - offset: 0xA8288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_1: - symbol: gKartBowser097Wheel1 - type: texture - offset: 0xA8308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_2: - symbol: gKartBowser097Wheel2 - type: texture - offset: 0xA8388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_3: - symbol: gKartBowser097Wheel3 - type: texture - offset: 0xA8408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_0: - symbol: gKartBowser098Wheel0 - type: texture - offset: 0xA8488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_1: - symbol: gKartBowser098Wheel1 - type: texture - offset: 0xA8508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_2: - symbol: gKartBowser098Wheel2 - type: texture - offset: 0xA8588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_3: - symbol: gKartBowser098Wheel3 - type: texture - offset: 0xA8608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_0: - symbol: gKartBowser099Wheel0 - type: texture - offset: 0xA8688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_1: - symbol: gKartBowser099Wheel1 - type: texture - offset: 0xA8708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_2: - symbol: gKartBowser099Wheel2 - type: texture - offset: 0xA8788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_3: - symbol: gKartBowser099Wheel3 - type: texture - offset: 0xA8808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_0: - symbol: gKartBowser100Wheel0 - type: texture - offset: 0xA8888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_1: - symbol: gKartBowser100Wheel1 - type: texture - offset: 0xA8908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_2: - symbol: gKartBowser100Wheel2 - type: texture - offset: 0xA8988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_3: - symbol: gKartBowser100Wheel3 - type: texture - offset: 0xA8A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_0: - symbol: gKartBowser101Wheel0 - type: texture - offset: 0xA8A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_1: - symbol: gKartBowser101Wheel1 - type: texture - offset: 0xA8B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_2: - symbol: gKartBowser101Wheel2 - type: texture - offset: 0xA8B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_3: - symbol: gKartBowser101Wheel3 - type: texture - offset: 0xA8C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_0: - symbol: gKartBowser102Wheel0 - type: texture - offset: 0xA8C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_1: - symbol: gKartBowser102Wheel1 - type: texture - offset: 0xA8D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_2: - symbol: gKartBowser102Wheel2 - type: texture - offset: 0xA8D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_3: - symbol: gKartBowser102Wheel3 - type: texture - offset: 0xA8E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_0: - symbol: gKartBowser103Wheel0 - type: texture - offset: 0xA8E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_1: - symbol: gKartBowser103Wheel1 - type: texture - offset: 0xA8F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_2: - symbol: gKartBowser103Wheel2 - type: texture - offset: 0xA8F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_3: - symbol: gKartBowser103Wheel3 - type: texture - offset: 0xA9008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_0: - symbol: gKartBowser104Wheel0 - type: texture - offset: 0xA9088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_1: - symbol: gKartBowser104Wheel1 - type: texture - offset: 0xA9108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_2: - symbol: gKartBowser104Wheel2 - type: texture - offset: 0xA9188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_3: - symbol: gKartBowser104Wheel3 - type: texture - offset: 0xA9208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_0: - symbol: gKartBowser105Wheel0 - type: texture - offset: 0xA9288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_1: - symbol: gKartBowser105Wheel1 - type: texture - offset: 0xA9308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_2: - symbol: gKartBowser105Wheel2 - type: texture - offset: 0xA9388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_3: - symbol: gKartBowser105Wheel3 - type: texture - offset: 0xA9408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_0: - symbol: gKartBowser106Wheel0 - type: texture - offset: 0xA9488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_1: - symbol: gKartBowser106Wheel1 - type: texture - offset: 0xA9508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_2: - symbol: gKartBowser106Wheel2 - type: texture - offset: 0xA9588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_3: - symbol: gKartBowser106Wheel3 - type: texture - offset: 0xA9608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_0: - symbol: gKartBowser107Wheel0 - type: texture - offset: 0xA9688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_1: - symbol: gKartBowser107Wheel1 - type: texture - offset: 0xA9708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_2: - symbol: gKartBowser107Wheel2 - type: texture - offset: 0xA9788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_3: - symbol: gKartBowser107Wheel3 - type: texture - offset: 0xA9808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_0: - symbol: gKartBowser108Wheel0 - type: texture - offset: 0xA9888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_1: - symbol: gKartBowser108Wheel1 - type: texture - offset: 0xA9908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_2: - symbol: gKartBowser108Wheel2 - type: texture - offset: 0xA9988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_3: - symbol: gKartBowser108Wheel3 - type: texture - offset: 0xA9A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_0: - symbol: gKartBowser109Wheel0 - type: texture - offset: 0xA9A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_1: - symbol: gKartBowser109Wheel1 - type: texture - offset: 0xA9B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_2: - symbol: gKartBowser109Wheel2 - type: texture - offset: 0xA9B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_3: - symbol: gKartBowser109Wheel3 - type: texture - offset: 0xA9C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_0: - symbol: gKartBowser110Wheel0 - type: texture - offset: 0xA9C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_1: - symbol: gKartBowser110Wheel1 - type: texture - offset: 0xA9D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_2: - symbol: gKartBowser110Wheel2 - type: texture - offset: 0xA9D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_3: - symbol: gKartBowser110Wheel3 - type: texture - offset: 0xA9E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_0: - symbol: gKartBowser111Wheel0 - type: texture - offset: 0xA9E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_1: - symbol: gKartBowser111Wheel1 - type: texture - offset: 0xA9F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_2: - symbol: gKartBowser111Wheel2 - type: texture - offset: 0xA9F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_3: - symbol: gKartBowser111Wheel3 - type: texture - offset: 0xAA008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_0: - symbol: gKartBowser112Wheel0 - type: texture - offset: 0xAA088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_1: - symbol: gKartBowser112Wheel1 - type: texture - offset: 0xAA108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_2: - symbol: gKartBowser112Wheel2 - type: texture - offset: 0xAA188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_3: - symbol: gKartBowser112Wheel3 - type: texture - offset: 0xAA208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_0: - symbol: gKartBowser113Wheel0 - type: texture - offset: 0xAA288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_1: - symbol: gKartBowser113Wheel1 - type: texture - offset: 0xAA308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_2: - symbol: gKartBowser113Wheel2 - type: texture - offset: 0xAA388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_3: - symbol: gKartBowser113Wheel3 - type: texture - offset: 0xAA408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_0: - symbol: gKartBowser114Wheel0 - type: texture - offset: 0xAA488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_1: - symbol: gKartBowser114Wheel1 - type: texture - offset: 0xAA508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_2: - symbol: gKartBowser114Wheel2 - type: texture - offset: 0xAA588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_3: - symbol: gKartBowser114Wheel3 - type: texture - offset: 0xAA608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_0: - symbol: gKartBowser115Wheel0 - type: texture - offset: 0xAA688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_1: - symbol: gKartBowser115Wheel1 - type: texture - offset: 0xAA708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_2: - symbol: gKartBowser115Wheel2 - type: texture - offset: 0xAA788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_3: - symbol: gKartBowser115Wheel3 - type: texture - offset: 0xAA808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_0: - symbol: gKartBowser116Wheel0 - type: texture - offset: 0xAA888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_1: - symbol: gKartBowser116Wheel1 - type: texture - offset: 0xAA908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_2: - symbol: gKartBowser116Wheel2 - type: texture - offset: 0xAA988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_3: - symbol: gKartBowser116Wheel3 - type: texture - offset: 0xAAA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_0: - symbol: gKartBowser117Wheel0 - type: texture - offset: 0xAAA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_1: - symbol: gKartBowser117Wheel1 - type: texture - offset: 0xAAB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_2: - symbol: gKartBowser117Wheel2 - type: texture - offset: 0xAAB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_3: - symbol: gKartBowser117Wheel3 - type: texture - offset: 0xAAC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_0: - symbol: gKartBowser118Wheel0 - type: texture - offset: 0xAAC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_1: - symbol: gKartBowser118Wheel1 - type: texture - offset: 0xAAD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_2: - symbol: gKartBowser118Wheel2 - type: texture - offset: 0xAAD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_3: - symbol: gKartBowser118Wheel3 - type: texture - offset: 0xAAE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_0: - symbol: gKartBowser119Wheel0 - type: texture - offset: 0xAAE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_1: - symbol: gKartBowser119Wheel1 - type: texture - offset: 0xAAF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_2: - symbol: gKartBowser119Wheel2 - type: texture - offset: 0xAAF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_3: - symbol: gKartBowser119Wheel3 - type: texture - offset: 0xAB008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_0: - symbol: gKartBowser120Wheel0 - type: texture - offset: 0xAB088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_1: - symbol: gKartBowser120Wheel1 - type: texture - offset: 0xAB108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_2: - symbol: gKartBowser120Wheel2 - type: texture - offset: 0xAB188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_3: - symbol: gKartBowser120Wheel3 - type: texture - offset: 0xAB208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_0: - symbol: gKartBowser121Wheel0 - type: texture - offset: 0xAB288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_1: - symbol: gKartBowser121Wheel1 - type: texture - offset: 0xAB308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_2: - symbol: gKartBowser121Wheel2 - type: texture - offset: 0xAB388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_3: - symbol: gKartBowser121Wheel3 - type: texture - offset: 0xAB408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_0: - symbol: gKartBowser122Wheel0 - type: texture - offset: 0xAB488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_1: - symbol: gKartBowser122Wheel1 - type: texture - offset: 0xAB508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_2: - symbol: gKartBowser122Wheel2 - type: texture - offset: 0xAB588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_3: - symbol: gKartBowser122Wheel3 - type: texture - offset: 0xAB608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_0: - symbol: gKartBowser123Wheel0 - type: texture - offset: 0xAB688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_1: - symbol: gKartBowser123Wheel1 - type: texture - offset: 0xAB708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_2: - symbol: gKartBowser123Wheel2 - type: texture - offset: 0xAB788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_3: - symbol: gKartBowser123Wheel3 - type: texture - offset: 0xAB808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_0: - symbol: gKartBowser124Wheel0 - type: texture - offset: 0xAB888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_1: - symbol: gKartBowser124Wheel1 - type: texture - offset: 0xAB908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_2: - symbol: gKartBowser124Wheel2 - type: texture - offset: 0xAB988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_3: - symbol: gKartBowser124Wheel3 - type: texture - offset: 0xABA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_0: - symbol: gKartBowser125Wheel0 - type: texture - offset: 0xABA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_1: - symbol: gKartBowser125Wheel1 - type: texture - offset: 0xABB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_2: - symbol: gKartBowser125Wheel2 - type: texture - offset: 0xABB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_3: - symbol: gKartBowser125Wheel3 - type: texture - offset: 0xABC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_0: - symbol: gKartBowser126Wheel0 - type: texture - offset: 0xABC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_1: - symbol: gKartBowser126Wheel1 - type: texture - offset: 0xABD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_2: - symbol: gKartBowser126Wheel2 - type: texture - offset: 0xABD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_3: - symbol: gKartBowser126Wheel3 - type: texture - offset: 0xABE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_0: - symbol: gKartBowser127Wheel0 - type: texture - offset: 0xABE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_1: - symbol: gKartBowser127Wheel1 - type: texture - offset: 0xABF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_2: - symbol: gKartBowser127Wheel2 - type: texture - offset: 0xABF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_3: - symbol: gKartBowser127Wheel3 - type: texture - offset: 0xAC008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_0: - symbol: gKartBowser128Wheel0 - type: texture - offset: 0xAC088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_1: - symbol: gKartBowser128Wheel1 - type: texture - offset: 0xAC108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_2: - symbol: gKartBowser128Wheel2 - type: texture - offset: 0xAC188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_3: - symbol: gKartBowser128Wheel3 - type: texture - offset: 0xAC208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_0: - symbol: gKartBowser129Wheel0 - type: texture - offset: 0xAC288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_1: - symbol: gKartBowser129Wheel1 - type: texture - offset: 0xAC308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_2: - symbol: gKartBowser129Wheel2 - type: texture - offset: 0xAC388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_3: - symbol: gKartBowser129Wheel3 - type: texture - offset: 0xAC408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_0: - symbol: gKartBowser130Wheel0 - type: texture - offset: 0xAC488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_1: - symbol: gKartBowser130Wheel1 - type: texture - offset: 0xAC508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_2: - symbol: gKartBowser130Wheel2 - type: texture - offset: 0xAC588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_3: - symbol: gKartBowser130Wheel3 - type: texture - offset: 0xAC608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_0: - symbol: gKartBowser131Wheel0 - type: texture - offset: 0xAC688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_1: - symbol: gKartBowser131Wheel1 - type: texture - offset: 0xAC708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_2: - symbol: gKartBowser131Wheel2 - type: texture - offset: 0xAC788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_3: - symbol: gKartBowser131Wheel3 - type: texture - offset: 0xAC808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_0: - symbol: gKartBowser132Wheel0 - type: texture - offset: 0xAC888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_1: - symbol: gKartBowser132Wheel1 - type: texture - offset: 0xAC908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_2: - symbol: gKartBowser132Wheel2 - type: texture - offset: 0xAC988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_3: - symbol: gKartBowser132Wheel3 - type: texture - offset: 0xACA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_0: - symbol: gKartBowser133Wheel0 - type: texture - offset: 0xACA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_1: - symbol: gKartBowser133Wheel1 - type: texture - offset: 0xACB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_2: - symbol: gKartBowser133Wheel2 - type: texture - offset: 0xACB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_3: - symbol: gKartBowser133Wheel3 - type: texture - offset: 0xACC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_0: - symbol: gKartBowser134Wheel0 - type: texture - offset: 0xACC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_1: - symbol: gKartBowser134Wheel1 - type: texture - offset: 0xACD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_2: - symbol: gKartBowser134Wheel2 - type: texture - offset: 0xACD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_3: - symbol: gKartBowser134Wheel3 - type: texture - offset: 0xACE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_0: - symbol: gKartBowser135Wheel0 - type: texture - offset: 0xACE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_1: - symbol: gKartBowser135Wheel1 - type: texture - offset: 0xACF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_2: - symbol: gKartBowser135Wheel2 - type: texture - offset: 0xACF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_3: - symbol: gKartBowser135Wheel3 - type: texture - offset: 0xAD008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_0: - symbol: gKartBowser136Wheel0 - type: texture - offset: 0xAD088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_1: - symbol: gKartBowser136Wheel1 - type: texture - offset: 0xAD108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_2: - symbol: gKartBowser136Wheel2 - type: texture - offset: 0xAD188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_3: - symbol: gKartBowser136Wheel3 - type: texture - offset: 0xAD208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_0: - symbol: gKartBowser137Wheel0 - type: texture - offset: 0xAD288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_1: - symbol: gKartBowser137Wheel1 - type: texture - offset: 0xAD308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_2: - symbol: gKartBowser137Wheel2 - type: texture - offset: 0xAD388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_3: - symbol: gKartBowser137Wheel3 - type: texture - offset: 0xAD408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_0: - symbol: gKartBowser138Wheel0 - type: texture - offset: 0xAD488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_1: - symbol: gKartBowser138Wheel1 - type: texture - offset: 0xAD508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_2: - symbol: gKartBowser138Wheel2 - type: texture - offset: 0xAD588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_3: - symbol: gKartBowser138Wheel3 - type: texture - offset: 0xAD608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_0: - symbol: gKartBowser139Wheel0 - type: texture - offset: 0xAD688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_1: - symbol: gKartBowser139Wheel1 - type: texture - offset: 0xAD708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_2: - symbol: gKartBowser139Wheel2 - type: texture - offset: 0xAD788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_3: - symbol: gKartBowser139Wheel3 - type: texture - offset: 0xAD808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_0: - symbol: gKartBowser140Wheel0 - type: texture - offset: 0xAD888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_1: - symbol: gKartBowser140Wheel1 - type: texture - offset: 0xAD908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_2: - symbol: gKartBowser140Wheel2 - type: texture - offset: 0xAD988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_3: - symbol: gKartBowser140Wheel3 - type: texture - offset: 0xADA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_0: - symbol: gKartBowser141Wheel0 - type: texture - offset: 0xADA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_1: - symbol: gKartBowser141Wheel1 - type: texture - offset: 0xADB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_2: - symbol: gKartBowser141Wheel2 - type: texture - offset: 0xADB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_3: - symbol: gKartBowser141Wheel3 - type: texture - offset: 0xADC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_0: - symbol: gKartBowser142Wheel0 - type: texture - offset: 0xADC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_1: - symbol: gKartBowser142Wheel1 - type: texture - offset: 0xADD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_2: - symbol: gKartBowser142Wheel2 - type: texture - offset: 0xADD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_3: - symbol: gKartBowser142Wheel3 - type: texture - offset: 0xADE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_0: - symbol: gKartBowser143Wheel0 - type: texture - offset: 0xADE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_1: - symbol: gKartBowser143Wheel1 - type: texture - offset: 0xADF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_2: - symbol: gKartBowser143Wheel2 - type: texture - offset: 0xADF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_3: - symbol: gKartBowser143Wheel3 - type: texture - offset: 0xAE008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_0: - symbol: gKartBowser144Wheel0 - type: texture - offset: 0xAE088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_1: - symbol: gKartBowser144Wheel1 - type: texture - offset: 0xAE108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_2: - symbol: gKartBowser144Wheel2 - type: texture - offset: 0xAE188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_3: - symbol: gKartBowser144Wheel3 - type: texture - offset: 0xAE208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_0: - symbol: gKartBowser145Wheel0 - type: texture - offset: 0xAE288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_1: - symbol: gKartBowser145Wheel1 - type: texture - offset: 0xAE308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_2: - symbol: gKartBowser145Wheel2 - type: texture - offset: 0xAE388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_3: - symbol: gKartBowser145Wheel3 - type: texture - offset: 0xAE408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_0: - symbol: gKartBowser146Wheel0 - type: texture - offset: 0xAE488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_1: - symbol: gKartBowser146Wheel1 - type: texture - offset: 0xAE508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_2: - symbol: gKartBowser146Wheel2 - type: texture - offset: 0xAE588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_3: - symbol: gKartBowser146Wheel3 - type: texture - offset: 0xAE608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_0: - symbol: gKartBowser147Wheel0 - type: texture - offset: 0xAE688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_1: - symbol: gKartBowser147Wheel1 - type: texture - offset: 0xAE708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_2: - symbol: gKartBowser147Wheel2 - type: texture - offset: 0xAE788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_3: - symbol: gKartBowser147Wheel3 - type: texture - offset: 0xAE808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_0: - symbol: gKartBowser148Wheel0 - type: texture - offset: 0xAE888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_1: - symbol: gKartBowser148Wheel1 - type: texture - offset: 0xAE908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_2: - symbol: gKartBowser148Wheel2 - type: texture - offset: 0xAE988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_3: - symbol: gKartBowser148Wheel3 - type: texture - offset: 0xAEA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_0: - symbol: gKartBowser149Wheel0 - type: texture - offset: 0xAEA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_1: - symbol: gKartBowser149Wheel1 - type: texture - offset: 0xAEB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_2: - symbol: gKartBowser149Wheel2 - type: texture - offset: 0xAEB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_3: - symbol: gKartBowser149Wheel3 - type: texture - offset: 0xAEC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_0: - symbol: gKartBowser150Wheel0 - type: texture - offset: 0xAEC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_1: - symbol: gKartBowser150Wheel1 - type: texture - offset: 0xAED08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_2: - symbol: gKartBowser150Wheel2 - type: texture - offset: 0xAED88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_3: - symbol: gKartBowser150Wheel3 - type: texture - offset: 0xAEE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_0: - symbol: gKartBowser151Wheel0 - type: texture - offset: 0xAEE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_1: - symbol: gKartBowser151Wheel1 - type: texture - offset: 0xAEF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_2: - symbol: gKartBowser151Wheel2 - type: texture - offset: 0xAEF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_3: - symbol: gKartBowser151Wheel3 - type: texture - offset: 0xAF008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_0: - symbol: gKartBowser152Wheel0 - type: texture - offset: 0xAF088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_1: - symbol: gKartBowser152Wheel1 - type: texture - offset: 0xAF108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_2: - symbol: gKartBowser152Wheel2 - type: texture - offset: 0xAF188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_3: - symbol: gKartBowser152Wheel3 - type: texture - offset: 0xAF208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_0: - symbol: gKartBowser153Wheel0 - type: texture - offset: 0xAF288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_1: - symbol: gKartBowser153Wheel1 - type: texture - offset: 0xAF308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_2: - symbol: gKartBowser153Wheel2 - type: texture - offset: 0xAF388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_3: - symbol: gKartBowser153Wheel3 - type: texture - offset: 0xAF408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_0: - symbol: gKartBowser154Wheel0 - type: texture - offset: 0xAF488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_1: - symbol: gKartBowser154Wheel1 - type: texture - offset: 0xAF508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_2: - symbol: gKartBowser154Wheel2 - type: texture - offset: 0xAF588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_3: - symbol: gKartBowser154Wheel3 - type: texture - offset: 0xAF608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_0: - symbol: gKartBowser155Wheel0 - type: texture - offset: 0xAF688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_1: - symbol: gKartBowser155Wheel1 - type: texture - offset: 0xAF708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_2: - symbol: gKartBowser155Wheel2 - type: texture - offset: 0xAF788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_3: - symbol: gKartBowser155Wheel3 - type: texture - offset: 0xAF808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_0: - symbol: gKartBowser156Wheel0 - type: texture - offset: 0xAF888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_1: - symbol: gKartBowser156Wheel1 - type: texture - offset: 0xAF908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_2: - symbol: gKartBowser156Wheel2 - type: texture - offset: 0xAF988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_3: - symbol: gKartBowser156Wheel3 - type: texture - offset: 0xAFA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_0: - symbol: gKartBowser157Wheel0 - type: texture - offset: 0xAFA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_1: - symbol: gKartBowser157Wheel1 - type: texture - offset: 0xAFB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_2: - symbol: gKartBowser157Wheel2 - type: texture - offset: 0xAFB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_3: - symbol: gKartBowser157Wheel3 - type: texture - offset: 0xAFC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_0: - symbol: gKartBowser158Wheel0 - type: texture - offset: 0xAFC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_1: - symbol: gKartBowser158Wheel1 - type: texture - offset: 0xAFD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_2: - symbol: gKartBowser158Wheel2 - type: texture - offset: 0xAFD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_3: - symbol: gKartBowser158Wheel3 - type: texture - offset: 0xAFE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_0: - symbol: gKartBowser159Wheel0 - type: texture - offset: 0xAFE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_1: - symbol: gKartBowser159Wheel1 - type: texture - offset: 0xAFF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_2: - symbol: gKartBowser159Wheel2 - type: texture - offset: 0xAFF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_3: - symbol: gKartBowser159Wheel3 - type: texture - offset: 0xB0008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_0: - symbol: gKartBowser160Wheel0 - type: texture - offset: 0xB0088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_1: - symbol: gKartBowser160Wheel1 - type: texture - offset: 0xB0108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_2: - symbol: gKartBowser160Wheel2 - type: texture - offset: 0xB0188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_3: - symbol: gKartBowser160Wheel3 - type: texture - offset: 0xB0208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_0: - symbol: gKartBowser161Wheel0 - type: texture - offset: 0xB0288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_1: - symbol: gKartBowser161Wheel1 - type: texture - offset: 0xB0308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_2: - symbol: gKartBowser161Wheel2 - type: texture - offset: 0xB0388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_3: - symbol: gKartBowser161Wheel3 - type: texture - offset: 0xB0408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_0: - symbol: gKartBowser162Wheel0 - type: texture - offset: 0xB0488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_1: - symbol: gKartBowser162Wheel1 - type: texture - offset: 0xB0508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_2: - symbol: gKartBowser162Wheel2 - type: texture - offset: 0xB0588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_3: - symbol: gKartBowser162Wheel3 - type: texture - offset: 0xB0608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_0: - symbol: gKartBowser163Wheel0 - type: texture - offset: 0xB0688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_1: - symbol: gKartBowser163Wheel1 - type: texture - offset: 0xB0708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_2: - symbol: gKartBowser163Wheel2 - type: texture - offset: 0xB0788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_3: - symbol: gKartBowser163Wheel3 - type: texture - offset: 0xB0808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_0: - symbol: gKartBowser164Wheel0 - type: texture - offset: 0xB0888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_1: - symbol: gKartBowser164Wheel1 - type: texture - offset: 0xB0908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_2: - symbol: gKartBowser164Wheel2 - type: texture - offset: 0xB0988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_3: - symbol: gKartBowser164Wheel3 - type: texture - offset: 0xB0A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_0: - symbol: gKartBowser165Wheel0 - type: texture - offset: 0xB0A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_1: - symbol: gKartBowser165Wheel1 - type: texture - offset: 0xB0B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_2: - symbol: gKartBowser165Wheel2 - type: texture - offset: 0xB0B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_3: - symbol: gKartBowser165Wheel3 - type: texture - offset: 0xB0C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_0: - symbol: gKartBowser166Wheel0 - type: texture - offset: 0xB0C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_1: - symbol: gKartBowser166Wheel1 - type: texture - offset: 0xB0D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_2: - symbol: gKartBowser166Wheel2 - type: texture - offset: 0xB0D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_3: - symbol: gKartBowser166Wheel3 - type: texture - offset: 0xB0E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_0: - symbol: gKartBowser167Wheel0 - type: texture - offset: 0xB0E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_1: - symbol: gKartBowser167Wheel1 - type: texture - offset: 0xB0F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_2: - symbol: gKartBowser167Wheel2 - type: texture - offset: 0xB0F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_3: - symbol: gKartBowser167Wheel3 - type: texture - offset: 0xB1008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_0: - symbol: gKartBowser168Wheel0 - type: texture - offset: 0xB1088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_1: - symbol: gKartBowser168Wheel1 - type: texture - offset: 0xB1108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_2: - symbol: gKartBowser168Wheel2 - type: texture - offset: 0xB1188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_3: - symbol: gKartBowser168Wheel3 - type: texture - offset: 0xB1208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_0: - symbol: gKartBowser169Wheel0 - type: texture - offset: 0xB1288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_1: - symbol: gKartBowser169Wheel1 - type: texture - offset: 0xB1308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_2: - symbol: gKartBowser169Wheel2 - type: texture - offset: 0xB1388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_3: - symbol: gKartBowser169Wheel3 - type: texture - offset: 0xB1408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_0: - symbol: gKartBowser170Wheel0 - type: texture - offset: 0xB1488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_1: - symbol: gKartBowser170Wheel1 - type: texture - offset: 0xB1508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_2: - symbol: gKartBowser170Wheel2 - type: texture - offset: 0xB1588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_3: - symbol: gKartBowser170Wheel3 - type: texture - offset: 0xB1608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_0: - symbol: gKartBowser171Wheel0 - type: texture - offset: 0xB1688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_1: - symbol: gKartBowser171Wheel1 - type: texture - offset: 0xB1708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_2: - symbol: gKartBowser171Wheel2 - type: texture - offset: 0xB1788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_3: - symbol: gKartBowser171Wheel3 - type: texture - offset: 0xB1808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_0: - symbol: gKartBowser172Wheel0 - type: texture - offset: 0xB1888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_1: - symbol: gKartBowser172Wheel1 - type: texture - offset: 0xB1908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_2: - symbol: gKartBowser172Wheel2 - type: texture - offset: 0xB1988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_3: - symbol: gKartBowser172Wheel3 - type: texture - offset: 0xB1A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_0: - symbol: gKartBowser173Wheel0 - type: texture - offset: 0xB1A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_1: - symbol: gKartBowser173Wheel1 - type: texture - offset: 0xB1B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_2: - symbol: gKartBowser173Wheel2 - type: texture - offset: 0xB1B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_3: - symbol: gKartBowser173Wheel3 - type: texture - offset: 0xB1C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_0: - symbol: gKartBowser174Wheel0 - type: texture - offset: 0xB1C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_1: - symbol: gKartBowser174Wheel1 - type: texture - offset: 0xB1D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_2: - symbol: gKartBowser174Wheel2 - type: texture - offset: 0xB1D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_3: - symbol: gKartBowser174Wheel3 - type: texture - offset: 0xB1E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_0: - symbol: gKartBowser175Wheel0 - type: texture - offset: 0xB1E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_1: - symbol: gKartBowser175Wheel1 - type: texture - offset: 0xB1F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_2: - symbol: gKartBowser175Wheel2 - type: texture - offset: 0xB1F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_3: - symbol: gKartBowser175Wheel3 - type: texture - offset: 0xB2008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_0: - symbol: gKartBowser176Wheel0 - type: texture - offset: 0xB2088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_1: - symbol: gKartBowser176Wheel1 - type: texture - offset: 0xB2108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_2: - symbol: gKartBowser176Wheel2 - type: texture - offset: 0xB2188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_3: - symbol: gKartBowser176Wheel3 - type: texture - offset: 0xB2208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_0: - symbol: gKartBowser177Wheel0 - type: texture - offset: 0xB2288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_1: - symbol: gKartBowser177Wheel1 - type: texture - offset: 0xB2308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_2: - symbol: gKartBowser177Wheel2 - type: texture - offset: 0xB2388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_3: - symbol: gKartBowser177Wheel3 - type: texture - offset: 0xB2408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_0: - symbol: gKartBowser178Wheel0 - type: texture - offset: 0xB2488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_1: - symbol: gKartBowser178Wheel1 - type: texture - offset: 0xB2508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_2: - symbol: gKartBowser178Wheel2 - type: texture - offset: 0xB2588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_3: - symbol: gKartBowser178Wheel3 - type: texture - offset: 0xB2608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_0: - symbol: gKartBowser179Wheel0 - type: texture - offset: 0xB2688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_1: - symbol: gKartBowser179Wheel1 - type: texture - offset: 0xB2708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_2: - symbol: gKartBowser179Wheel2 - type: texture - offset: 0xB2788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_3: - symbol: gKartBowser179Wheel3 - type: texture - offset: 0xB2808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_0: - symbol: gKartBowser180Wheel0 - type: texture - offset: 0xB2888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_1: - symbol: gKartBowser180Wheel1 - type: texture - offset: 0xB2908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_2: - symbol: gKartBowser180Wheel2 - type: texture - offset: 0xB2988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_3: - symbol: gKartBowser180Wheel3 - type: texture - offset: 0xB2A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_0: - symbol: gKartBowser181Wheel0 - type: texture - offset: 0xB2A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_1: - symbol: gKartBowser181Wheel1 - type: texture - offset: 0xB2B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_2: - symbol: gKartBowser181Wheel2 - type: texture - offset: 0xB2B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_3: - symbol: gKartBowser181Wheel3 - type: texture - offset: 0xB2C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_0: - symbol: gKartBowser182Wheel0 - type: texture - offset: 0xB2C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_1: - symbol: gKartBowser182Wheel1 - type: texture - offset: 0xB2D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_2: - symbol: gKartBowser182Wheel2 - type: texture - offset: 0xB2D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_3: - symbol: gKartBowser182Wheel3 - type: texture - offset: 0xB2E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_0: - symbol: gKartBowser183Wheel0 - type: texture - offset: 0xB2E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_1: - symbol: gKartBowser183Wheel1 - type: texture - offset: 0xB2F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_2: - symbol: gKartBowser183Wheel2 - type: texture - offset: 0xB2F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_3: - symbol: gKartBowser183Wheel3 - type: texture - offset: 0xB3008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_0: - symbol: gKartBowser184Wheel0 - type: texture - offset: 0xB3088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_1: - symbol: gKartBowser184Wheel1 - type: texture - offset: 0xB3108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_2: - symbol: gKartBowser184Wheel2 - type: texture - offset: 0xB3188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_3: - symbol: gKartBowser184Wheel3 - type: texture - offset: 0xB3208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_0: - symbol: gKartBowser185Wheel0 - type: texture - offset: 0xB3288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_1: - symbol: gKartBowser185Wheel1 - type: texture - offset: 0xB3308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_2: - symbol: gKartBowser185Wheel2 - type: texture - offset: 0xB3388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_3: - symbol: gKartBowser185Wheel3 - type: texture - offset: 0xB3408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_0: - symbol: gKartBowser186Wheel0 - type: texture - offset: 0xB3488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_1: - symbol: gKartBowser186Wheel1 - type: texture - offset: 0xB3508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_2: - symbol: gKartBowser186Wheel2 - type: texture - offset: 0xB3588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_3: - symbol: gKartBowser186Wheel3 - type: texture - offset: 0xB3608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_0: - symbol: gKartBowser187Wheel0 - type: texture - offset: 0xB3688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_1: - symbol: gKartBowser187Wheel1 - type: texture - offset: 0xB3708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_2: - symbol: gKartBowser187Wheel2 - type: texture - offset: 0xB3788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_3: - symbol: gKartBowser187Wheel3 - type: texture - offset: 0xB3808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_0: - symbol: gKartBowser188Wheel0 - type: texture - offset: 0xB3888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_1: - symbol: gKartBowser188Wheel1 - type: texture - offset: 0xB3908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_2: - symbol: gKartBowser188Wheel2 - type: texture - offset: 0xB3988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_3: - symbol: gKartBowser188Wheel3 - type: texture - offset: 0xB3A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_0: - symbol: gKartBowser189Wheel0 - type: texture - offset: 0xB3A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_1: - symbol: gKartBowser189Wheel1 - type: texture - offset: 0xB3B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_2: - symbol: gKartBowser189Wheel2 - type: texture - offset: 0xB3B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_3: - symbol: gKartBowser189Wheel3 - type: texture - offset: 0xB3C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_0: - symbol: gKartBowser190Wheel0 - type: texture - offset: 0xB3C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_1: - symbol: gKartBowser190Wheel1 - type: texture - offset: 0xB3D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_2: - symbol: gKartBowser190Wheel2 - type: texture - offset: 0xB3D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_3: - symbol: gKartBowser190Wheel3 - type: texture - offset: 0xB3E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_0: - symbol: gKartBowser191Wheel0 - type: texture - offset: 0xB3E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_1: - symbol: gKartBowser191Wheel1 - type: texture - offset: 0xB3F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_2: - symbol: gKartBowser191Wheel2 - type: texture - offset: 0xB3F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_3: - symbol: gKartBowser191Wheel3 - type: texture - offset: 0xB4008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_0: - symbol: gKartBowser192Wheel0 - type: texture - offset: 0xB4088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_1: - symbol: gKartBowser192Wheel1 - type: texture - offset: 0xB4108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_2: - symbol: gKartBowser192Wheel2 - type: texture - offset: 0xB4188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_3: - symbol: gKartBowser192Wheel3 - type: texture - offset: 0xB4208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_0: - symbol: gKartBowser193Wheel0 - type: texture - offset: 0xB4288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_1: - symbol: gKartBowser193Wheel1 - type: texture - offset: 0xB4308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_2: - symbol: gKartBowser193Wheel2 - type: texture - offset: 0xB4388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_3: - symbol: gKartBowser193Wheel3 - type: texture - offset: 0xB4408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_0: - symbol: gKartBowser194Wheel0 - type: texture - offset: 0xB4488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_1: - symbol: gKartBowser194Wheel1 - type: texture - offset: 0xB4508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_2: - symbol: gKartBowser194Wheel2 - type: texture - offset: 0xB4588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_3: - symbol: gKartBowser194Wheel3 - type: texture - offset: 0xB4608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_0: - symbol: gKartBowser195Wheel0 - type: texture - offset: 0xB4688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_1: - symbol: gKartBowser195Wheel1 - type: texture - offset: 0xB4708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_2: - symbol: gKartBowser195Wheel2 - type: texture - offset: 0xB4788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_3: - symbol: gKartBowser195Wheel3 - type: texture - offset: 0xB4808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_0: - symbol: gKartBowser196Wheel0 - type: texture - offset: 0xB4888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_1: - symbol: gKartBowser196Wheel1 - type: texture - offset: 0xB4908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_2: - symbol: gKartBowser196Wheel2 - type: texture - offset: 0xB4988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_3: - symbol: gKartBowser196Wheel3 - type: texture - offset: 0xB4A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_0: - symbol: gKartBowser197Wheel0 - type: texture - offset: 0xB4A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_1: - symbol: gKartBowser197Wheel1 - type: texture - offset: 0xB4B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_2: - symbol: gKartBowser197Wheel2 - type: texture - offset: 0xB4B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_3: - symbol: gKartBowser197Wheel3 - type: texture - offset: 0xB4C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_0: - symbol: gKartBowser198Wheel0 - type: texture - offset: 0xB4C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_1: - symbol: gKartBowser198Wheel1 - type: texture - offset: 0xB4D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_2: - symbol: gKartBowser198Wheel2 - type: texture - offset: 0xB4D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_3: - symbol: gKartBowser198Wheel3 - type: texture - offset: 0xB4E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_0: - symbol: gKartBowser199Wheel0 - type: texture - offset: 0xB4E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_1: - symbol: gKartBowser199Wheel1 - type: texture - offset: 0xB4F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_2: - symbol: gKartBowser199Wheel2 - type: texture - offset: 0xB4F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_3: - symbol: gKartBowser199Wheel3 - type: texture - offset: 0xB5008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_0: - symbol: gKartBowser200Wheel0 - type: texture - offset: 0xB5088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_1: - symbol: gKartBowser200Wheel1 - type: texture - offset: 0xB5108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_2: - symbol: gKartBowser200Wheel2 - type: texture - offset: 0xB5188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_3: - symbol: gKartBowser200Wheel3 - type: texture - offset: 0xB5208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_0: - symbol: gKartBowser201Wheel0 - type: texture - offset: 0xB5288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_1: - symbol: gKartBowser201Wheel1 - type: texture - offset: 0xB5308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_2: - symbol: gKartBowser201Wheel2 - type: texture - offset: 0xB5388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_3: - symbol: gKartBowser201Wheel3 - type: texture - offset: 0xB5408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_0: - symbol: gKartBowser202Wheel0 - type: texture - offset: 0xB5488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_1: - symbol: gKartBowser202Wheel1 - type: texture - offset: 0xB5508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_2: - symbol: gKartBowser202Wheel2 - type: texture - offset: 0xB5588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_3: - symbol: gKartBowser202Wheel3 - type: texture - offset: 0xB5608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_0: - symbol: gKartBowser203Wheel0 - type: texture - offset: 0xB5688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_1: - symbol: gKartBowser203Wheel1 - type: texture - offset: 0xB5708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_2: - symbol: gKartBowser203Wheel2 - type: texture - offset: 0xB5788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_3: - symbol: gKartBowser203Wheel3 - type: texture - offset: 0xB5808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_0: - symbol: gKartBowser204Wheel0 - type: texture - offset: 0xB5888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_1: - symbol: gKartBowser204Wheel1 - type: texture - offset: 0xB5908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_2: - symbol: gKartBowser204Wheel2 - type: texture - offset: 0xB5988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_3: - symbol: gKartBowser204Wheel3 - type: texture - offset: 0xB5A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_0: - symbol: gKartBowser205Wheel0 - type: texture - offset: 0xB5A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_1: - symbol: gKartBowser205Wheel1 - type: texture - offset: 0xB5B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_2: - symbol: gKartBowser205Wheel2 - type: texture - offset: 0xB5B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_3: - symbol: gKartBowser205Wheel3 - type: texture - offset: 0xB5C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_0: - symbol: gKartBowser206Wheel0 - type: texture - offset: 0xB5C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_1: - symbol: gKartBowser206Wheel1 - type: texture - offset: 0xB5D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_2: - symbol: gKartBowser206Wheel2 - type: texture - offset: 0xB5D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_3: - symbol: gKartBowser206Wheel3 - type: texture - offset: 0xB5E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_0: - symbol: gKartBowser207Wheel0 - type: texture - offset: 0xB5E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_1: - symbol: gKartBowser207Wheel1 - type: texture - offset: 0xB5F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_2: - symbol: gKartBowser207Wheel2 - type: texture - offset: 0xB5F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_3: - symbol: gKartBowser207Wheel3 - type: texture - offset: 0xB6008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_0: - symbol: gKartBowser208Wheel0 - type: texture - offset: 0xB6088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_1: - symbol: gKartBowser208Wheel1 - type: texture - offset: 0xB6108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_2: - symbol: gKartBowser208Wheel2 - type: texture - offset: 0xB6188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_3: - symbol: gKartBowser208Wheel3 - type: texture - offset: 0xB6208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_0: - symbol: gKartBowser209Wheel0 - type: texture - offset: 0xB6288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_1: - symbol: gKartBowser209Wheel1 - type: texture - offset: 0xB6308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_2: - symbol: gKartBowser209Wheel2 - type: texture - offset: 0xB6388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_3: - symbol: gKartBowser209Wheel3 - type: texture - offset: 0xB6408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_0: - symbol: gKartBowser210Wheel0 - type: texture - offset: 0xB6488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_1: - symbol: gKartBowser210Wheel1 - type: texture - offset: 0xB6508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_2: - symbol: gKartBowser210Wheel2 - type: texture - offset: 0xB6588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_3: - symbol: gKartBowser210Wheel3 - type: texture - offset: 0xB6608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_0: - symbol: gKartBowser211Wheel0 - type: texture - offset: 0xB6688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_1: - symbol: gKartBowser211Wheel1 - type: texture - offset: 0xB6708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_2: - symbol: gKartBowser211Wheel2 - type: texture - offset: 0xB6788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_3: - symbol: gKartBowser211Wheel3 - type: texture - offset: 0xB6808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_0: - symbol: gKartBowser212Wheel0 - type: texture - offset: 0xB6888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_1: - symbol: gKartBowser212Wheel1 - type: texture - offset: 0xB6908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_2: - symbol: gKartBowser212Wheel2 - type: texture - offset: 0xB6988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_3: - symbol: gKartBowser212Wheel3 - type: texture - offset: 0xB6A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_0: - symbol: gKartBowser213Wheel0 - type: texture - offset: 0xB6A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_1: - symbol: gKartBowser213Wheel1 - type: texture - offset: 0xB6B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_2: - symbol: gKartBowser213Wheel2 - type: texture - offset: 0xB6B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_3: - symbol: gKartBowser213Wheel3 - type: texture - offset: 0xB6C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_0: - symbol: gKartBowser214Wheel0 - type: texture - offset: 0xB6C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_1: - symbol: gKartBowser214Wheel1 - type: texture - offset: 0xB6D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_2: - symbol: gKartBowser214Wheel2 - type: texture - offset: 0xB6D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_3: - symbol: gKartBowser214Wheel3 - type: texture - offset: 0xB6E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_0: - symbol: gKartBowser215Wheel0 - type: texture - offset: 0xB6E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_1: - symbol: gKartBowser215Wheel1 - type: texture - offset: 0xB6F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_2: - symbol: gKartBowser215Wheel2 - type: texture - offset: 0xB6F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_3: - symbol: gKartBowser215Wheel3 - type: texture - offset: 0xB7008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_0: - symbol: gKartBowser216Wheel0 - type: texture - offset: 0xB7088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_1: - symbol: gKartBowser216Wheel1 - type: texture - offset: 0xB7108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_2: - symbol: gKartBowser216Wheel2 - type: texture - offset: 0xB7188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_3: - symbol: gKartBowser216Wheel3 - type: texture - offset: 0xB7208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_0: - symbol: gKartBowser217Wheel0 - type: texture - offset: 0xB7288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_1: - symbol: gKartBowser217Wheel1 - type: texture - offset: 0xB7308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_2: - symbol: gKartBowser217Wheel2 - type: texture - offset: 0xB7388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_3: - symbol: gKartBowser217Wheel3 - type: texture - offset: 0xB7408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_0: - symbol: gKartBowser218Wheel0 - type: texture - offset: 0xB7488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_1: - symbol: gKartBowser218Wheel1 - type: texture - offset: 0xB7508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_2: - symbol: gKartBowser218Wheel2 - type: texture - offset: 0xB7588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_3: - symbol: gKartBowser218Wheel3 - type: texture - offset: 0xB7608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_0: - symbol: gKartBowser219Wheel0 - type: texture - offset: 0xB7688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_1: - symbol: gKartBowser219Wheel1 - type: texture - offset: 0xB7708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_2: - symbol: gKartBowser219Wheel2 - type: texture - offset: 0xB7788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_3: - symbol: gKartBowser219Wheel3 - type: texture - offset: 0xB7808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_0: - symbol: gKartBowser220Wheel0 - type: texture - offset: 0xB7888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_1: - symbol: gKartBowser220Wheel1 - type: texture - offset: 0xB7908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_2: - symbol: gKartBowser220Wheel2 - type: texture - offset: 0xB7988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_3: - symbol: gKartBowser220Wheel3 - type: texture - offset: 0xB7A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_0: - symbol: gKartBowser221Wheel0 - type: texture - offset: 0xB7A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_1: - symbol: gKartBowser221Wheel1 - type: texture - offset: 0xB7B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_2: - symbol: gKartBowser221Wheel2 - type: texture - offset: 0xB7B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_3: - symbol: gKartBowser221Wheel3 - type: texture - offset: 0xB7C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_0: - symbol: gKartBowser222Wheel0 - type: texture - offset: 0xB7C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_1: - symbol: gKartBowser222Wheel1 - type: texture - offset: 0xB7D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_2: - symbol: gKartBowser222Wheel2 - type: texture - offset: 0xB7D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_3: - symbol: gKartBowser222Wheel3 - type: texture - offset: 0xB7E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_0: - symbol: gKartBowser223Wheel0 - type: texture - offset: 0xB7E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_1: - symbol: gKartBowser223Wheel1 - type: texture - offset: 0xB7F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_2: - symbol: gKartBowser223Wheel2 - type: texture - offset: 0xB7F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_3: - symbol: gKartBowser223Wheel3 - type: texture - offset: 0xB8008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_0: - symbol: gKartBowser224Wheel0 - type: texture - offset: 0xB8088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_1: - symbol: gKartBowser224Wheel1 - type: texture - offset: 0xB8108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_2: - symbol: gKartBowser224Wheel2 - type: texture - offset: 0xB8188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_3: - symbol: gKartBowser224Wheel3 - type: texture - offset: 0xB8208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_0: - symbol: gKartBowser225Wheel0 - type: texture - offset: 0xB8288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_1: - symbol: gKartBowser225Wheel1 - type: texture - offset: 0xB8308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_2: - symbol: gKartBowser225Wheel2 - type: texture - offset: 0xB8388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_3: - symbol: gKartBowser225Wheel3 - type: texture - offset: 0xB8408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_0: - symbol: gKartBowser226Wheel0 - type: texture - offset: 0xB8488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_1: - symbol: gKartBowser226Wheel1 - type: texture - offset: 0xB8508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_2: - symbol: gKartBowser226Wheel2 - type: texture - offset: 0xB8588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_3: - symbol: gKartBowser226Wheel3 - type: texture - offset: 0xB8608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_0: - symbol: gKartBowser227Wheel0 - type: texture - offset: 0xB8688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_1: - symbol: gKartBowser227Wheel1 - type: texture - offset: 0xB8708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_2: - symbol: gKartBowser227Wheel2 - type: texture - offset: 0xB8788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_3: - symbol: gKartBowser227Wheel3 - type: texture - offset: 0xB8808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_0: - symbol: gKartBowser228Wheel0 - type: texture - offset: 0xB8888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_1: - symbol: gKartBowser228Wheel1 - type: texture - offset: 0xB8908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_2: - symbol: gKartBowser228Wheel2 - type: texture - offset: 0xB8988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_3: - symbol: gKartBowser228Wheel3 - type: texture - offset: 0xB8A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_0: - symbol: gKartBowser229Wheel0 - type: texture - offset: 0xB8A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_1: - symbol: gKartBowser229Wheel1 - type: texture - offset: 0xB8B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_2: - symbol: gKartBowser229Wheel2 - type: texture - offset: 0xB8B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_3: - symbol: gKartBowser229Wheel3 - type: texture - offset: 0xB8C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_0: - symbol: gKartBowser230Wheel0 - type: texture - offset: 0xB8C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_1: - symbol: gKartBowser230Wheel1 - type: texture - offset: 0xB8D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_2: - symbol: gKartBowser230Wheel2 - type: texture - offset: 0xB8D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_3: - symbol: gKartBowser230Wheel3 - type: texture - offset: 0xB8E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_0: - symbol: gKartBowser231Wheel0 - type: texture - offset: 0xB8E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_1: - symbol: gKartBowser231Wheel1 - type: texture - offset: 0xB8F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_2: - symbol: gKartBowser231Wheel2 - type: texture - offset: 0xB8F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_3: - symbol: gKartBowser231Wheel3 - type: texture - offset: 0xB9008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_0: - symbol: gKartBowser232Wheel0 - type: texture - offset: 0xB9088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_1: - symbol: gKartBowser232Wheel1 - type: texture - offset: 0xB9108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_2: - symbol: gKartBowser232Wheel2 - type: texture - offset: 0xB9188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_3: - symbol: gKartBowser232Wheel3 - type: texture - offset: 0xB9208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_0: - symbol: gKartBowser233Wheel0 - type: texture - offset: 0xB9288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_1: - symbol: gKartBowser233Wheel1 - type: texture - offset: 0xB9308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_2: - symbol: gKartBowser233Wheel2 - type: texture - offset: 0xB9388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_3: - symbol: gKartBowser233Wheel3 - type: texture - offset: 0xB9408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_0: - symbol: gKartBowser234Wheel0 - type: texture - offset: 0xB9488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_1: - symbol: gKartBowser234Wheel1 - type: texture - offset: 0xB9508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_2: - symbol: gKartBowser234Wheel2 - type: texture - offset: 0xB9588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_3: - symbol: gKartBowser234Wheel3 - type: texture - offset: 0xB9608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_0: - symbol: gKartBowser235Wheel0 - type: texture - offset: 0xB9688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_1: - symbol: gKartBowser235Wheel1 - type: texture - offset: 0xB9708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_2: - symbol: gKartBowser235Wheel2 - type: texture - offset: 0xB9788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_3: - symbol: gKartBowser235Wheel3 - type: texture - offset: 0xB9808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_0: - symbol: gKartBowser236Wheel0 - type: texture - offset: 0xB9888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_1: - symbol: gKartBowser236Wheel1 - type: texture - offset: 0xB9908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_2: - symbol: gKartBowser236Wheel2 - type: texture - offset: 0xB9988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_3: - symbol: gKartBowser236Wheel3 - type: texture - offset: 0xB9A08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_0: - symbol: gKartBowser237Wheel0 - type: texture - offset: 0xB9A88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_1: - symbol: gKartBowser237Wheel1 - type: texture - offset: 0xB9B08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_2: - symbol: gKartBowser237Wheel2 - type: texture - offset: 0xB9B88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_3: - symbol: gKartBowser237Wheel3 - type: texture - offset: 0xB9C08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_0: - symbol: gKartBowser238Wheel0 - type: texture - offset: 0xB9C88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_1: - symbol: gKartBowser238Wheel1 - type: texture - offset: 0xB9D08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_2: - symbol: gKartBowser238Wheel2 - type: texture - offset: 0xB9D88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_3: - symbol: gKartBowser238Wheel3 - type: texture - offset: 0xB9E08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_0: - symbol: gKartBowser239Wheel0 - type: texture - offset: 0xB9E88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_1: - symbol: gKartBowser239Wheel1 - type: texture - offset: 0xB9F08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_2: - symbol: gKartBowser239Wheel2 - type: texture - offset: 0xB9F88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_3: - symbol: gKartBowser239Wheel3 - type: texture - offset: 0xBA008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_0: - symbol: gKartBowser240Wheel0 - type: texture - offset: 0xBA088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_1: - symbol: gKartBowser240Wheel1 - type: texture - offset: 0xBA108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_2: - symbol: gKartBowser240Wheel2 - type: texture - offset: 0xBA188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_3: - symbol: gKartBowser240Wheel3 - type: texture - offset: 0xBA208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_0: - symbol: gKartBowser241Wheel0 - type: texture - offset: 0xBA288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_1: - symbol: gKartBowser241Wheel1 - type: texture - offset: 0xBA308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_2: - symbol: gKartBowser241Wheel2 - type: texture - offset: 0xBA388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_3: - symbol: gKartBowser241Wheel3 - type: texture - offset: 0xBA408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_0: - symbol: gKartBowser242Wheel0 - type: texture - offset: 0xBA488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_1: - symbol: gKartBowser242Wheel1 - type: texture - offset: 0xBA508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_2: - symbol: gKartBowser242Wheel2 - type: texture - offset: 0xBA588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_3: - symbol: gKartBowser242Wheel3 - type: texture - offset: 0xBA608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_0: - symbol: gKartBowser243Wheel0 - type: texture - offset: 0xBA688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_1: - symbol: gKartBowser243Wheel1 - type: texture - offset: 0xBA708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_2: - symbol: gKartBowser243Wheel2 - type: texture - offset: 0xBA788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_3: - symbol: gKartBowser243Wheel3 - type: texture - offset: 0xBA808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_0: - symbol: gKartBowser244Wheel0 - type: texture - offset: 0xBA888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_1: - symbol: gKartBowser244Wheel1 - type: texture - offset: 0xBA908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_2: - symbol: gKartBowser244Wheel2 - type: texture - offset: 0xBA988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_3: - symbol: gKartBowser244Wheel3 - type: texture - offset: 0xBAA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_0: - symbol: gKartBowser245Wheel0 - type: texture - offset: 0xBAA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_1: - symbol: gKartBowser245Wheel1 - type: texture - offset: 0xBAB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_2: - symbol: gKartBowser245Wheel2 - type: texture - offset: 0xBAB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_3: - symbol: gKartBowser245Wheel3 - type: texture - offset: 0xBAC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_0: - symbol: gKartBowser246Wheel0 - type: texture - offset: 0xBAC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_1: - symbol: gKartBowser246Wheel1 - type: texture - offset: 0xBAD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_2: - symbol: gKartBowser246Wheel2 - type: texture - offset: 0xBAD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_3: - symbol: gKartBowser246Wheel3 - type: texture - offset: 0xBAE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_0: - symbol: gKartBowser247Wheel0 - type: texture - offset: 0xBAE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_1: - symbol: gKartBowser247Wheel1 - type: texture - offset: 0xBAF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_2: - symbol: gKartBowser247Wheel2 - type: texture - offset: 0xBAF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_3: - symbol: gKartBowser247Wheel3 - type: texture - offset: 0xBB008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_0: - symbol: gKartBowser248Wheel0 - type: texture - offset: 0xBB088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_1: - symbol: gKartBowser248Wheel1 - type: texture - offset: 0xBB108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_2: - symbol: gKartBowser248Wheel2 - type: texture - offset: 0xBB188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_3: - symbol: gKartBowser248Wheel3 - type: texture - offset: 0xBB208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_0: - symbol: gKartBowser249Wheel0 - type: texture - offset: 0xBB288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_1: - symbol: gKartBowser249Wheel1 - type: texture - offset: 0xBB308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_2: - symbol: gKartBowser249Wheel2 - type: texture - offset: 0xBB388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_3: - symbol: gKartBowser249Wheel3 - type: texture - offset: 0xBB408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_0: - symbol: gKartBowser250Wheel0 - type: texture - offset: 0xBB488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_1: - symbol: gKartBowser250Wheel1 - type: texture - offset: 0xBB508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_2: - symbol: gKartBowser250Wheel2 - type: texture - offset: 0xBB588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_3: - symbol: gKartBowser250Wheel3 - type: texture - offset: 0xBB608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_0: - symbol: gKartBowser251Wheel0 - type: texture - offset: 0xBB688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_1: - symbol: gKartBowser251Wheel1 - type: texture - offset: 0xBB708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_2: - symbol: gKartBowser251Wheel2 - type: texture - offset: 0xBB788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_3: - symbol: gKartBowser251Wheel3 - type: texture - offset: 0xBB808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_0: - symbol: gKartBowser252Wheel0 - type: texture - offset: 0xBB888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_1: - symbol: gKartBowser252Wheel1 - type: texture - offset: 0xBB908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_2: - symbol: gKartBowser252Wheel2 - type: texture - offset: 0xBB988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_3: - symbol: gKartBowser252Wheel3 - type: texture - offset: 0xBBA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_0: - symbol: gKartBowser253Wheel0 - type: texture - offset: 0xBBA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_1: - symbol: gKartBowser253Wheel1 - type: texture - offset: 0xBBB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_2: - symbol: gKartBowser253Wheel2 - type: texture - offset: 0xBBB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_3: - symbol: gKartBowser253Wheel3 - type: texture - offset: 0xBBC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_0: - symbol: gKartBowser254Wheel0 - type: texture - offset: 0xBBC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_1: - symbol: gKartBowser254Wheel1 - type: texture - offset: 0xBBD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_2: - symbol: gKartBowser254Wheel2 - type: texture - offset: 0xBBD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_3: - symbol: gKartBowser254Wheel3 - type: texture - offset: 0xBBE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_0: - symbol: gKartBowser255Wheel0 - type: texture - offset: 0xBBE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_1: - symbol: gKartBowser255Wheel1 - type: texture - offset: 0xBBF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_2: - symbol: gKartBowser255Wheel2 - type: texture - offset: 0xBBF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_3: - symbol: gKartBowser255Wheel3 - type: texture - offset: 0xBC008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_0: - symbol: gKartBowser256Wheel0 - type: texture - offset: 0xBC088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_1: - symbol: gKartBowser256Wheel1 - type: texture - offset: 0xBC108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_2: - symbol: gKartBowser256Wheel2 - type: texture - offset: 0xBC188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_3: - symbol: gKartBowser256Wheel3 - type: texture - offset: 0xBC208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_0: - symbol: gKartBowser257Wheel0 - type: texture - offset: 0xBC288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_1: - symbol: gKartBowser257Wheel1 - type: texture - offset: 0xBC308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_2: - symbol: gKartBowser257Wheel2 - type: texture - offset: 0xBC388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_3: - symbol: gKartBowser257Wheel3 - type: texture - offset: 0xBC408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_0: - symbol: gKartBowser258Wheel0 - type: texture - offset: 0xBC488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_1: - symbol: gKartBowser258Wheel1 - type: texture - offset: 0xBC508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_2: - symbol: gKartBowser258Wheel2 - type: texture - offset: 0xBC588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_3: - symbol: gKartBowser258Wheel3 - type: texture - offset: 0xBC608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_0: - symbol: gKartBowser259Wheel0 - type: texture - offset: 0xBC688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_1: - symbol: gKartBowser259Wheel1 - type: texture - offset: 0xBC708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_2: - symbol: gKartBowser259Wheel2 - type: texture - offset: 0xBC788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_3: - symbol: gKartBowser259Wheel3 - type: texture - offset: 0xBC808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_0: - symbol: gKartBowser260Wheel0 - type: texture - offset: 0xBC888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_1: - symbol: gKartBowser260Wheel1 - type: texture - offset: 0xBC908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_2: - symbol: gKartBowser260Wheel2 - type: texture - offset: 0xBC988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_3: - symbol: gKartBowser260Wheel3 - type: texture - offset: 0xBCA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_0: - symbol: gKartBowser261Wheel0 - type: texture - offset: 0xBCA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_1: - symbol: gKartBowser261Wheel1 - type: texture - offset: 0xBCB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_2: - symbol: gKartBowser261Wheel2 - type: texture - offset: 0xBCB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_3: - symbol: gKartBowser261Wheel3 - type: texture - offset: 0xBCC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_0: - symbol: gKartBowser262Wheel0 - type: texture - offset: 0xBCC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_1: - symbol: gKartBowser262Wheel1 - type: texture - offset: 0xBCD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_2: - symbol: gKartBowser262Wheel2 - type: texture - offset: 0xBCD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_3: - symbol: gKartBowser262Wheel3 - type: texture - offset: 0xBCE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_0: - symbol: gKartBowser263Wheel0 - type: texture - offset: 0xBCE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_1: - symbol: gKartBowser263Wheel1 - type: texture - offset: 0xBCF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_2: - symbol: gKartBowser263Wheel2 - type: texture - offset: 0xBCF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_3: - symbol: gKartBowser263Wheel3 - type: texture - offset: 0xBD008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_0: - symbol: gKartBowser264Wheel0 - type: texture - offset: 0xBD088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_1: - symbol: gKartBowser264Wheel1 - type: texture - offset: 0xBD108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_2: - symbol: gKartBowser264Wheel2 - type: texture - offset: 0xBD188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_3: - symbol: gKartBowser264Wheel3 - type: texture - offset: 0xBD208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_0: - symbol: gKartBowser265Wheel0 - type: texture - offset: 0xBD288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_1: - symbol: gKartBowser265Wheel1 - type: texture - offset: 0xBD308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_2: - symbol: gKartBowser265Wheel2 - type: texture - offset: 0xBD388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_3: - symbol: gKartBowser265Wheel3 - type: texture - offset: 0xBD408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_0: - symbol: gKartBowser266Wheel0 - type: texture - offset: 0xBD488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_1: - symbol: gKartBowser266Wheel1 - type: texture - offset: 0xBD508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_2: - symbol: gKartBowser266Wheel2 - type: texture - offset: 0xBD588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_3: - symbol: gKartBowser266Wheel3 - type: texture - offset: 0xBD608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_0: - symbol: gKartBowser267Wheel0 - type: texture - offset: 0xBD688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_1: - symbol: gKartBowser267Wheel1 - type: texture - offset: 0xBD708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_2: - symbol: gKartBowser267Wheel2 - type: texture - offset: 0xBD788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_3: - symbol: gKartBowser267Wheel3 - type: texture - offset: 0xBD808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_0: - symbol: gKartBowser268Wheel0 - type: texture - offset: 0xBD888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_1: - symbol: gKartBowser268Wheel1 - type: texture - offset: 0xBD908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_2: - symbol: gKartBowser268Wheel2 - type: texture - offset: 0xBD988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_3: - symbol: gKartBowser268Wheel3 - type: texture - offset: 0xBDA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_0: - symbol: gKartBowser269Wheel0 - type: texture - offset: 0xBDA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_1: - symbol: gKartBowser269Wheel1 - type: texture - offset: 0xBDB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_2: - symbol: gKartBowser269Wheel2 - type: texture - offset: 0xBDB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_3: - symbol: gKartBowser269Wheel3 - type: texture - offset: 0xBDC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_0: - symbol: gKartBowser270Wheel0 - type: texture - offset: 0xBDC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_1: - symbol: gKartBowser270Wheel1 - type: texture - offset: 0xBDD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_2: - symbol: gKartBowser270Wheel2 - type: texture - offset: 0xBDD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_3: - symbol: gKartBowser270Wheel3 - type: texture - offset: 0xBDE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_0: - symbol: gKartBowser271Wheel0 - type: texture - offset: 0xBDE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_1: - symbol: gKartBowser271Wheel1 - type: texture - offset: 0xBDF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_2: - symbol: gKartBowser271Wheel2 - type: texture - offset: 0xBDF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_3: - symbol: gKartBowser271Wheel3 - type: texture - offset: 0xBE008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_0: - symbol: gKartBowser272Wheel0 - type: texture - offset: 0xBE088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_1: - symbol: gKartBowser272Wheel1 - type: texture - offset: 0xBE108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_2: - symbol: gKartBowser272Wheel2 - type: texture - offset: 0xBE188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_3: - symbol: gKartBowser272Wheel3 - type: texture - offset: 0xBE208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_0: - symbol: gKartBowser273Wheel0 - type: texture - offset: 0xBE288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_1: - symbol: gKartBowser273Wheel1 - type: texture - offset: 0xBE308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_2: - symbol: gKartBowser273Wheel2 - type: texture - offset: 0xBE388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_3: - symbol: gKartBowser273Wheel3 - type: texture - offset: 0xBE408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_0: - symbol: gKartBowser274Wheel0 - type: texture - offset: 0xBE488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_1: - symbol: gKartBowser274Wheel1 - type: texture - offset: 0xBE508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_2: - symbol: gKartBowser274Wheel2 - type: texture - offset: 0xBE588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_3: - symbol: gKartBowser274Wheel3 - type: texture - offset: 0xBE608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_0: - symbol: gKartBowser275Wheel0 - type: texture - offset: 0xBE688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_1: - symbol: gKartBowser275Wheel1 - type: texture - offset: 0xBE708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_2: - symbol: gKartBowser275Wheel2 - type: texture - offset: 0xBE788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_3: - symbol: gKartBowser275Wheel3 - type: texture - offset: 0xBE808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_0: - symbol: gKartBowser276Wheel0 - type: texture - offset: 0xBE888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_1: - symbol: gKartBowser276Wheel1 - type: texture - offset: 0xBE908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_2: - symbol: gKartBowser276Wheel2 - type: texture - offset: 0xBE988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_3: - symbol: gKartBowser276Wheel3 - type: texture - offset: 0xBEA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_0: - symbol: gKartBowser277Wheel0 - type: texture - offset: 0xBEA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_1: - symbol: gKartBowser277Wheel1 - type: texture - offset: 0xBEB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_2: - symbol: gKartBowser277Wheel2 - type: texture - offset: 0xBEB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_3: - symbol: gKartBowser277Wheel3 - type: texture - offset: 0xBEC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_0: - symbol: gKartBowser278Wheel0 - type: texture - offset: 0xBEC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_1: - symbol: gKartBowser278Wheel1 - type: texture - offset: 0xBED08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_2: - symbol: gKartBowser278Wheel2 - type: texture - offset: 0xBED88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_3: - symbol: gKartBowser278Wheel3 - type: texture - offset: 0xBEE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_0: - symbol: gKartBowser279Wheel0 - type: texture - offset: 0xBEE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_1: - symbol: gKartBowser279Wheel1 - type: texture - offset: 0xBEF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_2: - symbol: gKartBowser279Wheel2 - type: texture - offset: 0xBEF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_3: - symbol: gKartBowser279Wheel3 - type: texture - offset: 0xBF008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_0: - symbol: gKartBowser280Wheel0 - type: texture - offset: 0xBF088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_1: - symbol: gKartBowser280Wheel1 - type: texture - offset: 0xBF108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_2: - symbol: gKartBowser280Wheel2 - type: texture - offset: 0xBF188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_3: - symbol: gKartBowser280Wheel3 - type: texture - offset: 0xBF208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_0: - symbol: gKartBowser281Wheel0 - type: texture - offset: 0xBF288 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_1: - symbol: gKartBowser281Wheel1 - type: texture - offset: 0xBF308 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_2: - symbol: gKartBowser281Wheel2 - type: texture - offset: 0xBF388 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_3: - symbol: gKartBowser281Wheel3 - type: texture - offset: 0xBF408 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_0: - symbol: gKartBowser282Wheel0 - type: texture - offset: 0xBF488 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_1: - symbol: gKartBowser282Wheel1 - type: texture - offset: 0xBF508 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_2: - symbol: gKartBowser282Wheel2 - type: texture - offset: 0xBF588 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_3: - symbol: gKartBowser282Wheel3 - type: texture - offset: 0xBF608 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_0: - symbol: gKartBowser283Wheel0 - type: texture - offset: 0xBF688 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_1: - symbol: gKartBowser283Wheel1 - type: texture - offset: 0xBF708 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_2: - symbol: gKartBowser283Wheel2 - type: texture - offset: 0xBF788 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_3: - symbol: gKartBowser283Wheel3 - type: texture - offset: 0xBF808 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_0: - symbol: gKartBowser284Wheel0 - type: texture - offset: 0xBF888 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_1: - symbol: gKartBowser284Wheel1 - type: texture - offset: 0xBF908 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_2: - symbol: gKartBowser284Wheel2 - type: texture - offset: 0xBF988 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_3: - symbol: gKartBowser284Wheel3 - type: texture - offset: 0xBFA08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_0: - symbol: gKartBowser285Wheel0 - type: texture - offset: 0xBFA88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_1: - symbol: gKartBowser285Wheel1 - type: texture - offset: 0xBFB08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_2: - symbol: gKartBowser285Wheel2 - type: texture - offset: 0xBFB88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_3: - symbol: gKartBowser285Wheel3 - type: texture - offset: 0xBFC08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_0: - symbol: gKartBowser286Wheel0 - type: texture - offset: 0xBFC88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_1: - symbol: gKartBowser286Wheel1 - type: texture - offset: 0xBFD08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_2: - symbol: gKartBowser286Wheel2 - type: texture - offset: 0xBFD88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_3: - symbol: gKartBowser286Wheel3 - type: texture - offset: 0xBFE08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_0: - symbol: gKartBowser287Wheel0 - type: texture - offset: 0xBFE88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_1: - symbol: gKartBowser287Wheel1 - type: texture - offset: 0xBFF08 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_2: - symbol: gKartBowser287Wheel2 - type: texture - offset: 0xBFF88 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_3: - symbol: gKartBowser287Wheel3 - type: texture - offset: 0xC0008 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_0: - symbol: gKartBowser288Wheel0 - type: texture - offset: 0xC0088 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_1: - symbol: gKartBowser288Wheel1 - type: texture - offset: 0xC0108 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_2: - symbol: gKartBowser288Wheel2 - type: texture - offset: 0xC0188 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_3: - symbol: gKartBowser288Wheel3 - type: texture - offset: 0xC0208 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -bowser_kart_palette: - symbol: gKartBowserPalette - type: texture - offset: 0xC0288 - ctype: u16 - width: 16 - height: 12 - format: RGBA16 diff --git a/yamls/us/bowsers_castle_data.yml b/yamls/us/bowsers_castle_data.yml deleted file mode 100644 index 8559d5cb5..000000000 --- a/yamls/us/bowsers_castle_data.yml +++ /dev/null @@ -1,592 +0,0 @@ -:config: - segments: - - [0x06, 0x82DF40] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true - tables: - d_course_bowsers_castle_thwomp_faces: - range: [0x7138, 0x8538] - mode: APPEND -d_course_bowsers_castle_dl_0: - symbol: d_course_bowsers_castle_dl_0 - type: gfx - offset: 0x0 -d_course_bowsers_castle_dl_110: - symbol: d_course_bowsers_castle_dl_110 - type: gfx - offset: 0x110 -d_course_bowsers_castle_dl_230: - symbol: d_course_bowsers_castle_dl_230 - type: gfx - offset: 0x230 -d_course_bowsers_castle_dl_398: - symbol: d_course_bowsers_castle_dl_398 - type: gfx - offset: 0x398 -d_course_bowsers_castle_dl_428: - symbol: d_course_bowsers_castle_dl_428 - type: gfx - offset: 0x428 -d_course_bowsers_castle_dl_4F0: - symbol: d_course_bowsers_castle_dl_4F0 - type: gfx - offset: 0x4F0 -d_course_bowsers_castle_dl_640: - symbol: d_course_bowsers_castle_dl_640 - type: gfx - offset: 0x640 -d_course_bowsers_castle_dl_7A0: - symbol: d_course_bowsers_castle_dl_7A0 - type: gfx - offset: 0x7A0 -d_course_bowsers_castle_dl_860: - symbol: d_course_bowsers_castle_dl_860 - type: gfx - offset: 0x860 -d_course_bowsers_castle_dl_8E8: - symbol: d_course_bowsers_castle_dl_8E8 - type: gfx - offset: 0x8E8 -d_course_bowsers_castle_dl_9F8: - symbol: d_course_bowsers_castle_dl_9F8 - type: gfx - offset: 0x9F8 -d_course_bowsers_castle_dl_AE0: - symbol: d_course_bowsers_castle_dl_AE0 - type: gfx - offset: 0xAE0 -d_course_bowsers_castle_dl_B88: - symbol: d_course_bowsers_castle_dl_B88 - type: gfx - offset: 0xB88 -d_course_bowsers_castle_dl_C08: - symbol: d_course_bowsers_castle_dl_C08 - type: gfx - offset: 0xC08 -d_course_bowsers_castle_dl_D20: - symbol: d_course_bowsers_castle_dl_D20 - type: gfx - offset: 0xD20 -d_course_bowsers_castle_dl_E00: - symbol: d_course_bowsers_castle_dl_E00 - type: gfx - offset: 0xE00 -d_course_bowsers_castle_dl_EA8: - symbol: d_course_bowsers_castle_dl_EA8 - type: gfx - offset: 0xEA8 -d_course_bowsers_castle_dl_F08: - symbol: d_course_bowsers_castle_dl_F08 - type: gfx - offset: 0xF08 -d_course_bowsers_castle_dl_1040: - symbol: d_course_bowsers_castle_dl_1040 - type: gfx - offset: 0x1040 -d_course_bowsers_castle_dl_1138: - symbol: d_course_bowsers_castle_dl_1138 - type: gfx - offset: 0x1138 -d_course_bowsers_castle_dl_11F0: - symbol: d_course_bowsers_castle_dl_11F0 - type: gfx - offset: 0x11F0 -d_course_bowsers_castle_dl_1248: - symbol: d_course_bowsers_castle_dl_1248 - type: gfx - offset: 0x1248 -d_course_bowsers_castle_dl_1290: - symbol: d_course_bowsers_castle_dl_1290 - type: gfx - offset: 0x1290 -d_course_bowsers_castle_dl_12D0: - symbol: d_course_bowsers_castle_dl_12D0 - type: gfx - offset: 0x12D0 -d_course_bowsers_castle_dl_1330: - symbol: d_course_bowsers_castle_dl_1330 - type: gfx - offset: 0x1330 -d_course_bowsers_castle_dl_1350: - symbol: d_course_bowsers_castle_dl_1350 - type: gfx - offset: 0x1350 -d_course_bowsers_castle_dl_1370: - symbol: d_course_bowsers_castle_dl_1370 - type: gfx - offset: 0x1370 -d_course_bowsers_castle_dl_13A0: - symbol: d_course_bowsers_castle_dl_13A0 - type: gfx - offset: 0x13A0 -d_course_bowsers_castle_dl_13C0: - symbol: d_course_bowsers_castle_dl_13C0 - type: gfx - offset: 0x13C0 -d_course_bowsers_castle_dl_13E0: - symbol: d_course_bowsers_castle_dl_13E0 - type: gfx - offset: 0x13E0 -d_course_bowsers_castle_dl_1448: - symbol: d_course_bowsers_castle_dl_1448 - type: gfx - offset: 0x1448 -d_course_bowsers_castle_dl_1488: - symbol: d_course_bowsers_castle_dl_1488 - type: gfx - offset: 0x1488 -d_course_bowsers_castle_dl_14B0: - symbol: d_course_bowsers_castle_dl_14B0 - type: gfx - offset: 0x14B0 -d_course_bowsers_castle_dl_1520: - symbol: d_course_bowsers_castle_dl_1520 - type: gfx - offset: 0x1520 -d_course_bowsers_castle_dl_1590: - symbol: d_course_bowsers_castle_dl_1590 - type: gfx - offset: 0x1590 -d_course_bowsers_castle_dl_1608: - symbol: d_course_bowsers_castle_dl_1608 - type: gfx - offset: 0x1608 -d_course_bowsers_castle_dl_1690: - symbol: d_course_bowsers_castle_dl_1690 - type: gfx - offset: 0x1690 -d_course_bowsers_castle_dl_1710: - symbol: d_course_bowsers_castle_dl_1710 - type: gfx - offset: 0x1710 -d_course_bowsers_castle_dl_1788: - symbol: d_course_bowsers_castle_dl_1788 - type: gfx - offset: 0x1788 -d_course_bowsers_castle_dl_17D0: - symbol: d_course_bowsers_castle_dl_17D0 - type: gfx - offset: 0x17D0 -d_course_bowsers_castle_dl_1818: - symbol: d_course_bowsers_castle_dl_1818 - type: gfx - offset: 0x1818 -d_course_bowsers_castle_dl_1860: - symbol: d_course_bowsers_castle_dl_1860 - type: gfx - offset: 0x1860 -d_course_bowsers_castle_dl_18C0: - symbol: d_course_bowsers_castle_dl_18C0 - type: gfx - offset: 0x18C0 -d_course_bowsers_castle_dl_1928: - symbol: d_course_bowsers_castle_dl_1928 - type: gfx - offset: 0x1928 -d_course_bowsers_castle_dl_1960: - symbol: d_course_bowsers_castle_dl_1960 - type: gfx - offset: 0x1960 -d_course_bowsers_castle_dl_19A8: - symbol: d_course_bowsers_castle_dl_19A8 - type: gfx - offset: 0x19A8 -d_course_bowsers_castle_dl_19F8: - symbol: d_course_bowsers_castle_dl_19F8 - type: gfx - offset: 0x19F8 -d_course_bowsers_castle_dl_1A40: - symbol: d_course_bowsers_castle_dl_1A40 - type: gfx - offset: 0x1A40 -d_course_bowsers_castle_dl_1A90: - symbol: d_course_bowsers_castle_dl_1A90 - type: gfx - offset: 0x1A90 -d_course_bowsers_castle_dl_1AD8: - symbol: d_course_bowsers_castle_dl_1AD8 - type: gfx - offset: 0x1AD8 -d_course_bowsers_castle_dl_1B10: - symbol: d_course_bowsers_castle_dl_1B10 - type: gfx - offset: 0x1B10 -d_course_bowsers_castle_dl_1B58: - symbol: d_course_bowsers_castle_dl_1B58 - type: gfx - offset: 0x1B58 -d_course_bowsers_castle_dl_1BB0: - symbol: d_course_bowsers_castle_dl_1BB0 - type: gfx - offset: 0x1BB0 -d_course_bowsers_castle_dl_1C10: - symbol: d_course_bowsers_castle_dl_1C10 - type: gfx - offset: 0x1C10 -d_course_bowsers_castle_dl_1C38: - symbol: d_course_bowsers_castle_dl_1C38 - type: gfx - offset: 0x1C38 -d_course_bowsers_castle_dl_1C60: - symbol: d_course_bowsers_castle_dl_1C60 - type: gfx - offset: 0x1C60 -d_course_bowsers_castle_dl_1C98: - symbol: d_course_bowsers_castle_dl_1C98 - type: gfx - offset: 0x1C98 -d_course_bowsers_castle_dl_1CD0: - symbol: d_course_bowsers_castle_dl_1CD0 - type: gfx - offset: 0x1CD0 -d_course_bowsers_castle_dl_1DF8: - symbol: d_course_bowsers_castle_dl_1DF8 - type: gfx - offset: 0x1DF8 -d_course_bowsers_castle_dl_1EB0: - symbol: d_course_bowsers_castle_dl_1EB0 - type: gfx - offset: 0x1EB0 -d_course_bowsers_castle_dl_1FA0: - symbol: d_course_bowsers_castle_dl_1FA0 - type: gfx - offset: 0x1FA0 -d_course_bowsers_castle_dl_2008: - symbol: d_course_bowsers_castle_dl_2008 - type: gfx - offset: 0x2008 -d_course_bowsers_castle_dl_2130: - symbol: d_course_bowsers_castle_dl_2130 - type: gfx - offset: 0x2130 -d_course_bowsers_castle_dl_21F0: - symbol: d_course_bowsers_castle_dl_21F0 - type: gfx - offset: 0x21F0 -d_course_bowsers_castle_dl_22E8: - symbol: d_course_bowsers_castle_dl_22E8 - type: gfx - offset: 0x22E8 -d_course_bowsers_castle_dl_2398: - symbol: d_course_bowsers_castle_dl_2398 - type: gfx - offset: 0x2398 -d_course_bowsers_castle_dl_24B8: - symbol: d_course_bowsers_castle_dl_24B8 - type: gfx - offset: 0x24B8 -d_course_bowsers_castle_dl_2578: - symbol: d_course_bowsers_castle_dl_2578 - type: gfx - offset: 0x2578 -d_course_bowsers_castle_dl_2688: - symbol: d_course_bowsers_castle_dl_2688 - type: gfx - offset: 0x2688 -d_course_bowsers_castle_dl_2760: - symbol: d_course_bowsers_castle_dl_2760 - type: gfx - offset: 0x2760 -d_course_bowsers_castle_dl_2880: - symbol: d_course_bowsers_castle_dl_2880 - type: gfx - offset: 0x2880 -d_course_bowsers_castle_dl_2958: - symbol: d_course_bowsers_castle_dl_2958 - type: gfx - offset: 0x2958 -d_course_bowsers_castle_dl_2A60: - symbol: d_course_bowsers_castle_dl_2A60 - type: gfx - offset: 0x2A60 -d_course_bowsers_castle_dl_2B80: - symbol: d_course_bowsers_castle_dl_2B80 - type: gfx - offset: 0x2B80 -d_course_bowsers_castle_dl_2C48: - symbol: d_course_bowsers_castle_dl_2C48 - type: gfx - offset: 0x2C48 -d_course_bowsers_castle_dl_2D08: - symbol: d_course_bowsers_castle_dl_2D08 - type: gfx - offset: 0x2D08 -d_course_bowsers_castle_dl_2DF8: - symbol: d_course_bowsers_castle_dl_2DF8 - type: gfx - offset: 0x2DF8 -d_course_bowsers_castle_dl_2F30: - symbol: d_course_bowsers_castle_dl_2F30 - type: gfx - offset: 0x2F30 -d_course_bowsers_castle_dl_2FB0: - symbol: d_course_bowsers_castle_dl_2FB0 - type: gfx - offset: 0x2FB0 -d_course_bowsers_castle_dl_3050: - symbol: d_course_bowsers_castle_dl_3050 - type: gfx - offset: 0x3050 -d_course_bowsers_castle_dl_3158: - symbol: d_course_bowsers_castle_dl_3158 - type: gfx - offset: 0x3158 -d_course_bowsers_castle_dl_3230: - symbol: d_course_bowsers_castle_dl_3230 - type: gfx - offset: 0x3230 -d_course_bowsers_castle_dl_32C0: - symbol: d_course_bowsers_castle_dl_32C0 - type: gfx - offset: 0x32C0 -d_course_bowsers_castle_dl_3338: - symbol: d_course_bowsers_castle_dl_3338 - type: gfx - offset: 0x3338 -d_course_bowsers_castle_dl_3480: - symbol: d_course_bowsers_castle_dl_3480 - type: gfx - offset: 0x3480 -d_course_bowsers_castle_dl_3508: - symbol: d_course_bowsers_castle_dl_3508 - type: gfx - offset: 0x3508 -d_course_bowsers_castle_dl_35D0: - symbol: d_course_bowsers_castle_dl_35D0 - type: gfx - offset: 0x35D0 -d_course_bowsers_castle_dl_3678: - symbol: d_course_bowsers_castle_dl_3678 - type: gfx - offset: 0x3678 -d_course_bowsers_castle_dl_37D8: - symbol: d_course_bowsers_castle_dl_37D8 - type: gfx - offset: 0x37D8 -d_course_bowsers_castle_dl_38F8: - symbol: d_course_bowsers_castle_dl_38F8 - type: gfx - offset: 0x38F8 -d_course_bowsers_castle_dl_39E0: - symbol: d_course_bowsers_castle_dl_39E0 - type: gfx - offset: 0x39E0 -d_course_bowsers_castle_dl_3B00: - symbol: d_course_bowsers_castle_dl_3B00 - type: gfx - offset: 0x3B00 -d_course_bowsers_castle_dl_3C08: - symbol: d_course_bowsers_castle_dl_3C08 - type: gfx - offset: 0x3C08 -d_course_bowsers_castle_dl_3D78: - symbol: d_course_bowsers_castle_dl_3D78 - type: gfx - offset: 0x3D78 -d_course_bowsers_castle_dl_3EA8: - symbol: d_course_bowsers_castle_dl_3EA8 - type: gfx - offset: 0x3EA8 -d_course_bowsers_castle_dl_3FF0: - symbol: d_course_bowsers_castle_dl_3FF0 - type: gfx - offset: 0x3FF0 -d_course_bowsers_castle_dl_40F0: - symbol: d_course_bowsers_castle_dl_40F0 - type: gfx - offset: 0x40F0 -d_course_bowsers_castle_dl_4278: - symbol: d_course_bowsers_castle_dl_4278 - type: gfx - offset: 0x4278 -d_course_bowsers_castle_dl_4358: - symbol: d_course_bowsers_castle_dl_4358 - type: gfx - offset: 0x4358 -d_course_bowsers_castle_dl_4488: - symbol: d_course_bowsers_castle_dl_4488 - type: gfx - offset: 0x4488 -d_course_bowsers_castle_dl_45D8: - symbol: d_course_bowsers_castle_dl_45D8 - type: gfx - offset: 0x45D8 -d_course_bowsers_castle_dl_4748: - symbol: d_course_bowsers_castle_dl_4748 - type: gfx - offset: 0x4748 -d_course_bowsers_castle_dl_4820: - symbol: d_course_bowsers_castle_dl_4820 - type: gfx - offset: 0x4820 -d_course_bowsers_castle_dl_4998: - symbol: d_course_bowsers_castle_dl_4998 - type: gfx - offset: 0x4998 -d_course_bowsers_castle_dl_4A98: - symbol: d_course_bowsers_castle_dl_4A98 - type: gfx - offset: 0x4A98 -d_course_bowsers_castle_dl_4C00: - symbol: d_course_bowsers_castle_dl_4C00 - type: gfx - offset: 0x4C00 -d_course_bowsers_castle_dl_4CE8: - symbol: d_course_bowsers_castle_dl_4CE8 - type: gfx - offset: 0x4CE8 -d_course_bowsers_castle_dl_4EA8: - symbol: d_course_bowsers_castle_dl_4EA8 - type: gfx - offset: 0x4EA8 -d_course_bowsers_castle_unknown_waypoints: - symbol: d_course_bowsers_castle_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x4F90 - count: 72 -d_course_bowsers_castle_track_waypoints: - symbol: d_course_bowsers_castle_track_waypoints - type: mk64:TRACK_PATH - offset: 0x51D0 - count: 685 -d_course_bowsers_castle_thwomp_side: - symbol: d_course_bowsers_castle_thwomp_side - type: texture - offset: 0x6738 - width: 32 - height: 32 - format: rgba16 - ctype: u8 -d_course_bowsers_castle_thwomp_tlut: - symbol: d_course_bowsers_castle_thwomp_tlut - type: texture - offset: 0x6F38 - width: 16 - height: 16 - format: rgba16 - ctype: u8 -gTextureThwompFace1: - symbol: gTextureThwompFace1 - type: texture - offset: 0x7138 - width: 16 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_bowsers_castle_thwomp_tlut -gTextureThwompFace2: - symbol: gTextureThwompFace2 - type: texture - offset: 0x7538 - width: 16 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_bowsers_castle_thwomp_tlut -gTextureThwompFace3: - symbol: gTextureThwompFace3 - type: texture - offset: 0x7938 - width: 16 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_bowsers_castle_thwomp_tlut -gTextureThwompFace4: - symbol: gTextureThwompFace4 - type: texture - offset: 0x7D38 - width: 16 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_bowsers_castle_thwomp_tlut -gTextureThwompFace5: - symbol: gTextureThwompFace5 - type: texture - offset: 0x8138 - width: 16 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_bowsers_castle_thwomp_tlut -gTextureThwompFace6: - symbol: gTextureThwompFace6 - type: texture - offset: 0x8538 - width: 16 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_bowsers_castle_thwomp_tlut -d_course_bowsers_castle_thwomp_model1: - symbol: d_course_bowsers_castle_thwomp_model1 - type: vtx - offset: 0x8938 - count: 4 -d_course_bowsers_castle_thwomp_model2: - symbol: d_course_bowsers_castle_thwomp_model2 - type: vtx - offset: 0x8978 - count: 32 -d_course_bowsers_castle_thwomp_model3: - symbol: d_course_bowsers_castle_thwomp_model3 - type: vtx - offset: 0x8B78 - count: 32 -d_course_bowsers_castle_thwomp_model4: - symbol: d_course_bowsers_castle_thwomp_model4 - type: vtx - offset: 0x8D78 - count: 28 -d_course_bowsers_castle_dl_8F38: - symbol: d_course_bowsers_castle_dl_8F38 - type: gfx - offset: 0x8F38 -d_course_bowsers_castle_dl_9078: - symbol: d_course_bowsers_castle_dl_9078 - type: gfx - offset: 0x9078 -d_course_bowsers_castle_dl_thwomp: - symbol: d_course_bowsers_castle_dl_thwomp - type: gfx - offset: 0x9088 -d_course_bowsers_castle_unknown_model: - symbol: d_course_bowsers_castle_unknown_model - type: vtx - offset: 0x9098 - count: 3 -d_course_bowsers_castle_dl_bush: - symbol: d_course_bowsers_castle_dl_bush - type: gfx - offset: 0x90C8 -d_course_bowsers_castle_dl_9148: - symbol: d_course_bowsers_castle_dl_9148 - type: gfx - offset: 0x9148 -d_course_bowsers_castle_dl_9228: - symbol: d_course_bowsers_castle_dl_9228 - type: gfx - offset: 0x9228 -d_course_bowsers_castle_tree_spawn: - symbol: d_course_bowsers_castle_tree_spawn - type: mk64:spawn_data - offset: 0x9290 - count: 28 -d_course_bowsers_castle_item_box_spawns: - symbol: d_course_bowsers_castle_item_box_spawns - type: mk64:spawn_data - offset: 0x9370 - count: 13 -d_course_bowsers_castle_addr: - symbol: d_course_bowsers_castle_addr - type: mk64:track_sections - offset: 0x93D8 - count: 37 diff --git a/yamls/us/bowsers_castle_displaylists.yml b/yamls/us/bowsers_castle_displaylists.yml deleted file mode 100644 index 7c7672e58..000000000 --- a/yamls/us/bowsers_castle_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x8B59A8 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_bowsers_castle_packed_dls: - symbol: d_course_bowsers_castle_packed_dls - type: blob - offset: 0x8B59A8 - size: 0x3C7A diff --git a/yamls/us/bowsers_castle_vertices.yml b/yamls/us/bowsers_castle_vertices.yml deleted file mode 100644 index 967f76c0a..000000000 --- a/yamls/us/bowsers_castle_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x8A7640] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_bowsers_castle_vertex: - symbol: d_course_bowsers_castle_vertex - type: mk64:course_vtx - count: 9527 - offset: 0x0 diff --git a/yamls/us/choco_mountain_data.yml b/yamls/us/choco_mountain_data.yml deleted file mode 100644 index 6903991f6..000000000 --- a/yamls/us/choco_mountain_data.yml +++ /dev/null @@ -1,507 +0,0 @@ -:config: - segments: - - [0x06, 0x82B620] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_choco_mountain_dl_0: - symbol: d_course_choco_mountain_dl_0 - type: gfx - offset: 0x0 -d_course_choco_mountain_dl_B0: - symbol: d_course_choco_mountain_dl_B0 - type: gfx - offset: 0xb0 -d_course_choco_mountain_dl_150: - symbol: d_course_choco_mountain_dl_150 - type: gfx - offset: 0x150 -d_course_choco_mountain_dl_208: - symbol: d_course_choco_mountain_dl_208 - type: gfx - offset: 0x208 -d_course_choco_mountain_dl_2A8: - symbol: d_course_choco_mountain_dl_2A8 - type: gfx - offset: 0x2a8 -d_course_choco_mountain_dl_330: - symbol: d_course_choco_mountain_dl_330 - type: gfx - offset: 0x330 -d_course_choco_mountain_dl_410: - symbol: d_course_choco_mountain_dl_410 - type: gfx - offset: 0x410 -d_course_choco_mountain_dl_4D8: - symbol: d_course_choco_mountain_dl_4D8 - type: gfx - offset: 0x4d8 -d_course_choco_mountain_dl_588: - symbol: d_course_choco_mountain_dl_588 - type: gfx - offset: 0x588 -d_course_choco_mountain_dl_618: - symbol: d_course_choco_mountain_dl_618 - type: gfx - offset: 0x618 -d_course_choco_mountain_dl_6C0: - symbol: d_course_choco_mountain_dl_6C0 - type: gfx - offset: 0x6c0 -d_course_choco_mountain_dl_750: - symbol: d_course_choco_mountain_dl_750 - type: gfx - offset: 0x750 -d_course_choco_mountain_dl_7E8: - symbol: d_course_choco_mountain_dl_7E8 - type: gfx - offset: 0x7e8 -d_course_choco_mountain_dl_878: - symbol: d_course_choco_mountain_dl_878 - type: gfx - offset: 0x878 -d_course_choco_mountain_dl_908: - symbol: d_course_choco_mountain_dl_908 - type: gfx - offset: 0x908 -d_course_choco_mountain_dl_990: - symbol: d_course_choco_mountain_dl_990 - type: gfx - offset: 0x990 -d_course_choco_mountain_dl_A28: - symbol: d_course_choco_mountain_dl_A28 - type: gfx - offset: 0xa28 -d_course_choco_mountain_dl_B10: - symbol: d_course_choco_mountain_dl_B10 - type: gfx - offset: 0xb10 -d_course_choco_mountain_dl_BB8: - symbol: d_course_choco_mountain_dl_BB8 - type: gfx - offset: 0xbb8 -d_course_choco_mountain_dl_C40: - symbol: d_course_choco_mountain_dl_C40 - type: gfx - offset: 0xc40 -d_course_choco_mountain_dl_D30: - symbol: d_course_choco_mountain_dl_D30 - type: gfx - offset: 0xd30 -d_course_choco_mountain_dl_DF8: - symbol: d_course_choco_mountain_dl_DF8 - type: gfx - offset: 0xdf8 -d_course_choco_mountain_dl_EA0: - symbol: d_course_choco_mountain_dl_EA0 - type: gfx - offset: 0xea0 -d_course_choco_mountain_dl_F38: - symbol: d_course_choco_mountain_dl_F38 - type: gfx - offset: 0xf38 -d_course_choco_mountain_dl_1000: - symbol: d_course_choco_mountain_dl_1000 - type: gfx - offset: 0x1000 -d_course_choco_mountain_dl_10A8: - symbol: d_course_choco_mountain_dl_10A8 - type: gfx - offset: 0x10a8 -d_course_choco_mountain_dl_1150: - symbol: d_course_choco_mountain_dl_1150 - type: gfx - offset: 0x1150 -d_course_choco_mountain_dl_11D8: - symbol: d_course_choco_mountain_dl_11D8 - type: gfx - offset: 0x11d8 -d_course_choco_mountain_dl_1280: - symbol: d_course_choco_mountain_dl_1280 - type: gfx - offset: 0x1280 -d_course_choco_mountain_dl_1330: - symbol: d_course_choco_mountain_dl_1330 - type: gfx - offset: 0x1330 -d_course_choco_mountain_dl_13E0: - symbol: d_course_choco_mountain_dl_13E0 - type: gfx - offset: 0x13e0 -d_course_choco_mountain_dl_1488: - symbol: d_course_choco_mountain_dl_1488 - type: gfx - offset: 0x1488 -d_course_choco_mountain_dl_1528: - symbol: d_course_choco_mountain_dl_1528 - type: gfx - offset: 0x1528 -d_course_choco_mountain_dl_15E8: - symbol: d_course_choco_mountain_dl_15E8 - type: gfx - offset: 0x15e8 -d_course_choco_mountain_dl_16B8: - symbol: d_course_choco_mountain_dl_16B8 - type: gfx - offset: 0x16b8 -d_course_choco_mountain_dl_1788: - symbol: d_course_choco_mountain_dl_1788 - type: gfx - offset: 0x1788 -d_course_choco_mountain_dl_1810: - symbol: d_course_choco_mountain_dl_1810 - type: gfx - offset: 0x1810 -d_course_choco_mountain_dl_18B8: - symbol: d_course_choco_mountain_dl_18B8 - type: gfx - offset: 0x18b8 -d_course_choco_mountain_dl_1970: - symbol: d_course_choco_mountain_dl_1970 - type: gfx - offset: 0x1970 -d_course_choco_mountain_dl_1A40: - symbol: d_course_choco_mountain_dl_1A40 - type: gfx - offset: 0x1a40 -d_course_choco_mountain_dl_1AC8: - symbol: d_course_choco_mountain_dl_1AC8 - type: gfx - offset: 0x1ac8 -d_course_choco_mountain_dl_1B70: - symbol: d_course_choco_mountain_dl_1B70 - type: gfx - offset: 0x1b70 -d_course_choco_mountain_dl_1C18: - symbol: d_course_choco_mountain_dl_1C18 - type: gfx - offset: 0x1c18 -d_course_choco_mountain_dl_1CC8: - symbol: d_course_choco_mountain_dl_1CC8 - type: gfx - offset: 0x1cc8 -d_course_choco_mountain_dl_1D50: - symbol: d_course_choco_mountain_dl_1D50 - type: gfx - offset: 0x1d50 -d_course_choco_mountain_dl_1E08: - symbol: d_course_choco_mountain_dl_1E08 - type: gfx - offset: 0x1e08 -d_course_choco_mountain_dl_1E98: - symbol: d_course_choco_mountain_dl_1E98 - type: gfx - offset: 0x1e98 -d_course_choco_mountain_dl_1F40: - symbol: d_course_choco_mountain_dl_1F40 - type: gfx - offset: 0x1f40 -d_course_choco_mountain_dl_1FE0: - symbol: d_course_choco_mountain_dl_1FE0 - type: gfx - offset: 0x1fe0 -d_course_choco_mountain_dl_20C8: - symbol: d_course_choco_mountain_dl_20C8 - type: gfx - offset: 0x20c8 -d_course_choco_mountain_dl_2168: - symbol: d_course_choco_mountain_dl_2168 - type: gfx - offset: 0x2168 -d_course_choco_mountain_dl_2228: - symbol: d_course_choco_mountain_dl_2228 - type: gfx - offset: 0x2228 -d_course_choco_mountain_dl_22D8: - symbol: d_course_choco_mountain_dl_22D8 - type: gfx - offset: 0x22d8 -d_course_choco_mountain_dl_23C8: - symbol: d_course_choco_mountain_dl_23C8 - type: gfx - offset: 0x23c8 -d_course_choco_mountain_dl_2468: - symbol: d_course_choco_mountain_dl_2468 - type: gfx - offset: 0x2468 -d_course_choco_mountain_dl_2538: - symbol: d_course_choco_mountain_dl_2538 - type: gfx - offset: 0x2538 -d_course_choco_mountain_dl_2600: - symbol: d_course_choco_mountain_dl_2600 - type: gfx - offset: 0x2600 -d_course_choco_mountain_dl_26D8: - symbol: d_course_choco_mountain_dl_26D8 - type: gfx - offset: 0x26d8 -d_course_choco_mountain_dl_2780: - symbol: d_course_choco_mountain_dl_2780 - type: gfx - offset: 0x2780 -d_course_choco_mountain_dl_2840: - symbol: d_course_choco_mountain_dl_2840 - type: gfx - offset: 0x2840 -d_course_choco_mountain_dl_2908: - symbol: d_course_choco_mountain_dl_2908 - type: gfx - offset: 0x2908 -d_course_choco_mountain_dl_29B8: - symbol: d_course_choco_mountain_dl_29B8 - type: gfx - offset: 0x29b8 -d_course_choco_mountain_dl_2A88: - symbol: d_course_choco_mountain_dl_2A88 - type: gfx - offset: 0x2a88 -d_course_choco_mountain_dl_2B38: - symbol: d_course_choco_mountain_dl_2B38 - type: gfx - offset: 0x2b38 -d_course_choco_mountain_dl_2C08: - symbol: d_course_choco_mountain_dl_2C08 - type: gfx - offset: 0x2c08 -d_course_choco_mountain_dl_2C98: - symbol: d_course_choco_mountain_dl_2C98 - type: gfx - offset: 0x2c98 -d_course_choco_mountain_dl_2D50: - symbol: d_course_choco_mountain_dl_2D50 - type: gfx - offset: 0x2d50 -d_course_choco_mountain_dl_2DE8: - symbol: d_course_choco_mountain_dl_2DE8 - type: gfx - offset: 0x2de8 -d_course_choco_mountain_dl_2EA0: - symbol: d_course_choco_mountain_dl_2EA0 - type: gfx - offset: 0x2ea0 -d_course_choco_mountain_dl_2F28: - symbol: d_course_choco_mountain_dl_2F28 - type: gfx - offset: 0x2f28 -d_course_choco_mountain_dl_2FD0: - symbol: d_course_choco_mountain_dl_2FD0 - type: gfx - offset: 0x2fd0 -d_course_choco_mountain_dl_3070: - symbol: d_course_choco_mountain_dl_3070 - type: gfx - offset: 0x3070 -d_course_choco_mountain_dl_3120: - symbol: d_course_choco_mountain_dl_3120 - type: gfx - offset: 0x3120 -d_course_choco_mountain_dl_31D8: - symbol: d_course_choco_mountain_dl_31D8 - type: gfx - offset: 0x31d8 -d_course_choco_mountain_dl_32B0: - symbol: d_course_choco_mountain_dl_32B0 - type: gfx - offset: 0x32b0 -d_course_choco_mountain_dl_3368: - symbol: d_course_choco_mountain_dl_3368 - type: gfx - offset: 0x3368 -d_course_choco_mountain_dl_3438: - symbol: d_course_choco_mountain_dl_3438 - type: gfx - offset: 0x3438 -d_course_choco_mountain_dl_3550: - symbol: d_course_choco_mountain_dl_3550 - type: gfx - offset: 0x3550 -d_course_choco_mountain_dl_3618: - symbol: d_course_choco_mountain_dl_3618 - type: gfx - offset: 0x3618 -d_course_choco_mountain_dl_36F0: - symbol: d_course_choco_mountain_dl_36F0 - type: gfx - offset: 0x36f0 -d_course_choco_mountain_dl_37D0: - symbol: d_course_choco_mountain_dl_37D0 - type: gfx - offset: 0x37d0 -d_course_choco_mountain_dl_38E8: - symbol: d_course_choco_mountain_dl_38E8 - type: gfx - offset: 0x38e8 -d_course_choco_mountain_dl_39A8: - symbol: d_course_choco_mountain_dl_39A8 - type: gfx - offset: 0x39a8 -d_course_choco_mountain_dl_3A80: - symbol: d_course_choco_mountain_dl_3A80 - type: gfx - offset: 0x3a80 -d_course_choco_mountain_dl_3B60: - symbol: d_course_choco_mountain_dl_3B60 - type: gfx - offset: 0x3b60 -d_course_choco_mountain_dl_3C18: - symbol: d_course_choco_mountain_dl_3C18 - type: gfx - offset: 0x3c18 -d_course_choco_mountain_dl_3CB8: - symbol: d_course_choco_mountain_dl_3CB8 - type: gfx - offset: 0x3cb8 -d_course_choco_mountain_dl_3D70: - symbol: d_course_choco_mountain_dl_3D70 - type: gfx - offset: 0x3d70 -d_course_choco_mountain_dl_3E18: - symbol: d_course_choco_mountain_dl_3E18 - type: gfx - offset: 0x3e18 -d_course_choco_mountain_dl_3EE0: - symbol: d_course_choco_mountain_dl_3EE0 - type: gfx - offset: 0x3ee0 -d_course_choco_mountain_dl_3FA8: - symbol: d_course_choco_mountain_dl_3FA8 - type: gfx - offset: 0x3fa8 -d_course_choco_mountain_dl_4090: - symbol: d_course_choco_mountain_dl_4090 - type: gfx - offset: 0x4090 -d_course_choco_mountain_dl_4138: - symbol: d_course_choco_mountain_dl_4138 - type: gfx - offset: 0x4138 -d_course_choco_mountain_dl_41F8: - symbol: d_course_choco_mountain_dl_41F8 - type: gfx - offset: 0x41f8 -d_course_choco_mountain_dl_42C8: - symbol: d_course_choco_mountain_dl_42C8 - type: gfx - offset: 0x42c8 -d_course_choco_mountain_dl_43C8: - symbol: d_course_choco_mountain_dl_43C8 - type: gfx - offset: 0x43c8 -d_course_choco_mountain_unknown_waypoints: - symbol: d_course_choco_mountain_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x4480 - count: 110 -d_course_choco_mountain_track_waypoints: - symbol: d_course_choco_mountain_track_waypoints - type: mk64:TRACK_PATH - offset: 0x47f0 - count: 606 -d_course_choco_mountain_light: - symbol: d_course_choco_mountain_light - type: lights - offset: 0x5ae0 -d_course_choco_mountain_6005AF8: - symbol: d_course_choco_mountain_6005AF8 - type: vtx - offset: 0x5af8 - count: 4 -d_course_choco_mountain_wall_texture: - symbol: d_course_choco_mountain_wall_texture - type: texture - offset: 0x5b38 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_choco_mountain_rock_texture: - symbol: d_course_choco_mountain_rock_texture - type: texture - offset: 0x6338 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_choco_mountain_falling_rock_model: - symbol: d_course_choco_mountain_falling_rock_model - type: vtx - offset: 0x6B38 - count: 65 -d_course_choco_mountain_6006C28: - symbol: d_course_choco_mountain_6006C28 - type: vtx - offset: 0x6C28 - count: 5 -d_course_choco_mountain_6006D08: - symbol: d_course_choco_mountain_6006D08 - type: vtx - offset: 0x6D08 - count: 15 -d_course_choco_mountain_6006C78: - symbol: d_course_choco_mountain_6006C78 - type: vtx - offset: 0x6C78 - count: 5 -d_course_choco_mountain_6006DA8: - symbol: d_course_choco_mountain_6006DA8 - type: vtx - offset: 0x6DA8 - count: 15 -d_course_choco_mountain_6006CC8: - symbol: d_course_choco_mountain_6006CC8 - type: vtx - offset: 0x6CC8 - count: 4 -d_course_choco_mountain_6006E48: - symbol: d_course_choco_mountain_6006E48 - type: vtx - offset: 0x6E48 - count: 12 -d_course_choco_mountain_6006EC8: - symbol: d_course_choco_mountain_6006EC8 - type: vtx - offset: 0x6EC8 - count: 3 - -d_course_choco_mountain_dl_6EF8: - symbol: d_course_choco_mountain_dl_6EF8 - type: gfx - offset: 0x6ef8 -d_course_choco_mountain_dl_6F48: - symbol: d_course_choco_mountain_dl_6F48 - type: gfx - offset: 0x6f48 -d_course_choco_mountain_dl_6F88: - symbol: d_course_choco_mountain_dl_6F88 - type: gfx - offset: 0x6f88 -d_course_choco_mountain_dl_falling_rock: - symbol: d_course_choco_mountain_dl_falling_rock - type: gfx - offset: 0x6fe0 -d_course_choco_mountain_dl_71B8: - symbol: d_course_choco_mountain_dl_71B8 - type: gfx - offset: 0x71b0 -d_course_choco_mountain_falling_rock_spawns: - symbol: d_course_choco_mountain_falling_rock_spawns - type: mk64:spawn_data - offset: 0x7230 - count: 4 -d_course_choco_mountain_item_box_spawns: - symbol: d_course_choco_mountain_item_box_spawns - type: mk64:spawn_data - offset: 0x7250 - count: 16 -d_course_choco_mountain_addr: - symbol: d_course_choco_mountain_addr - type: mk64:track_sections - offset: 0x72d0 - count: 71 diff --git a/yamls/us/choco_mountain_displaylists.yml b/yamls/us/choco_mountain_displaylists.yml deleted file mode 100644 index ee24791b3..000000000 --- a/yamls/us/choco_mountain_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x8A55C4 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_choco_mountain_packed_dls: - symbol: d_course_choco_mountain_packed_dls - type: blob - offset: 0x8A55C4 - size: 0x2078 diff --git a/yamls/us/choco_mountain_vertices.yml b/yamls/us/choco_mountain_vertices.yml deleted file mode 100644 index 5007c2de5..000000000 --- a/yamls/us/choco_mountain_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x89B510] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_choco_mountain_vertex: - symbol: d_course_choco_mountain_vertex - type: mk64:course_vtx - count: 5560 - offset: 0x0 diff --git a/yamls/us/dks_jungle_parkway_data.yml b/yamls/us/dks_jungle_parkway_data.yml deleted file mode 100644 index 89d431ea3..000000000 --- a/yamls/us/dks_jungle_parkway_data.yml +++ /dev/null @@ -1,837 +0,0 @@ -:config: - segments: - - [0x06, 0x885A10] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_dks_jungle_parkway_dl_0: - symbol: d_course_dks_jungle_parkway_dl_0 - type: gfx - offset: 0x0 -d_course_dks_jungle_parkway_dl_20: - symbol: d_course_dks_jungle_parkway_dl_20 - type: gfx - offset: 0x20 -d_course_dks_jungle_parkway_dl_180: - symbol: d_course_dks_jungle_parkway_dl_180 - type: gfx - offset: 0x180 -d_course_dks_jungle_parkway_dl_210: - symbol: d_course_dks_jungle_parkway_dl_210 - type: gfx - offset: 0x210 -d_course_dks_jungle_parkway_dl_310: - symbol: d_course_dks_jungle_parkway_dl_310 - type: gfx - offset: 0x310 -d_course_dks_jungle_parkway_dl_400: - symbol: d_course_dks_jungle_parkway_dl_400 - type: gfx - offset: 0x400 -d_course_dks_jungle_parkway_dl_560: - symbol: d_course_dks_jungle_parkway_dl_560 - type: gfx - offset: 0x560 -d_course_dks_jungle_parkway_dl_628: - symbol: d_course_dks_jungle_parkway_dl_628 - type: gfx - offset: 0x628 -d_course_dks_jungle_parkway_dl_750: - symbol: d_course_dks_jungle_parkway_dl_750 - type: gfx - offset: 0x750 -d_course_dks_jungle_parkway_dl_888: - symbol: d_course_dks_jungle_parkway_dl_888 - type: gfx - offset: 0x888 -d_course_dks_jungle_parkway_dl_A10: - symbol: d_course_dks_jungle_parkway_dl_A10 - type: gfx - offset: 0xA10 -d_course_dks_jungle_parkway_dl_B00: - symbol: d_course_dks_jungle_parkway_dl_B00 - type: gfx - offset: 0xB00 -d_course_dks_jungle_parkway_dl_C30: - symbol: d_course_dks_jungle_parkway_dl_C30 - type: gfx - offset: 0xC30 -d_course_dks_jungle_parkway_dl_D98: - symbol: d_course_dks_jungle_parkway_dl_D98 - type: gfx - offset: 0xD98 -d_course_dks_jungle_parkway_dl_EF0: - symbol: d_course_dks_jungle_parkway_dl_EF0 - type: gfx - offset: 0xEF0 -d_course_dks_jungle_parkway_dl_1028: - symbol: d_course_dks_jungle_parkway_dl_1028 - type: gfx - offset: 0x1028 -d_course_dks_jungle_parkway_dl_1160: - symbol: d_course_dks_jungle_parkway_dl_1160 - type: gfx - offset: 0x1160 -d_course_dks_jungle_parkway_dl_12E8: - symbol: d_course_dks_jungle_parkway_dl_12E8 - type: gfx - offset: 0x12E8 -d_course_dks_jungle_parkway_dl_1478: - symbol: d_course_dks_jungle_parkway_dl_1478 - type: gfx - offset: 0x1478 -d_course_dks_jungle_parkway_dl_15E0: - symbol: d_course_dks_jungle_parkway_dl_15E0 - type: gfx - offset: 0x15E0 -d_course_dks_jungle_parkway_dl_1718: - symbol: d_course_dks_jungle_parkway_dl_1718 - type: gfx - offset: 0x1718 -d_course_dks_jungle_parkway_dl_1890: - symbol: d_course_dks_jungle_parkway_dl_1890 - type: gfx - offset: 0x1890 -d_course_dks_jungle_parkway_dl_1A00: - symbol: d_course_dks_jungle_parkway_dl_1A00 - type: gfx - offset: 0x1A00 -d_course_dks_jungle_parkway_dl_1B20: - symbol: d_course_dks_jungle_parkway_dl_1B20 - type: gfx - offset: 0x1B20 -d_course_dks_jungle_parkway_dl_1C20: - symbol: d_course_dks_jungle_parkway_dl_1C20 - type: gfx - offset: 0x1C20 -d_course_dks_jungle_parkway_dl_1DB8: - symbol: d_course_dks_jungle_parkway_dl_1DB8 - type: gfx - offset: 0x1DB8 -d_course_dks_jungle_parkway_dl_1F20: - symbol: d_course_dks_jungle_parkway_dl_1F20 - type: gfx - offset: 0x1F20 -d_course_dks_jungle_parkway_dl_1FD8: - symbol: d_course_dks_jungle_parkway_dl_1FD8 - type: gfx - offset: 0x1FD8 -d_course_dks_jungle_parkway_dl_20A0: - symbol: d_course_dks_jungle_parkway_dl_20A0 - type: gfx - offset: 0x20A0 -d_course_dks_jungle_parkway_dl_2200: - symbol: d_course_dks_jungle_parkway_dl_2200 - type: gfx - offset: 0x2200 -d_course_dks_jungle_parkway_dl_2328: - symbol: d_course_dks_jungle_parkway_dl_2328 - type: gfx - offset: 0x2328 -d_course_dks_jungle_parkway_dl_2398: - symbol: d_course_dks_jungle_parkway_dl_2398 - type: gfx - offset: 0x2398 -d_course_dks_jungle_parkway_dl_2480: - symbol: d_course_dks_jungle_parkway_dl_2480 - type: gfx - offset: 0x2480 -d_course_dks_jungle_parkway_dl_2558: - symbol: d_course_dks_jungle_parkway_dl_2558 - type: gfx - offset: 0x2558 -d_course_dks_jungle_parkway_dl_2728: - symbol: d_course_dks_jungle_parkway_dl_2728 - type: gfx - offset: 0x2728 -d_course_dks_jungle_parkway_dl_2810: - symbol: d_course_dks_jungle_parkway_dl_2810 - type: gfx - offset: 0x2810 -d_course_dks_jungle_parkway_dl_2928: - symbol: d_course_dks_jungle_parkway_dl_2928 - type: gfx - offset: 0x2928 -d_course_dks_jungle_parkway_dl_2AC0: - symbol: d_course_dks_jungle_parkway_dl_2AC0 - type: gfx - offset: 0x2AC0 -d_course_dks_jungle_parkway_dl_2B88: - symbol: d_course_dks_jungle_parkway_dl_2B88 - type: gfx - offset: 0x2B88 -d_course_dks_jungle_parkway_dl_2D70: - symbol: d_course_dks_jungle_parkway_dl_2D70 - type: gfx - offset: 0x2D70 -d_course_dks_jungle_parkway_dl_2E30: - symbol: d_course_dks_jungle_parkway_dl_2E30 - type: gfx - offset: 0x2E30 -d_course_dks_jungle_parkway_dl_3010: - symbol: d_course_dks_jungle_parkway_dl_3010 - type: gfx - offset: 0x3010 -d_course_dks_jungle_parkway_dl_3100: - symbol: d_course_dks_jungle_parkway_dl_3100 - type: gfx - offset: 0x3100 -d_course_dks_jungle_parkway_dl_3338: - symbol: d_course_dks_jungle_parkway_dl_3338 - type: gfx - offset: 0x3338 -d_course_dks_jungle_parkway_dl_3498: - symbol: d_course_dks_jungle_parkway_dl_3498 - type: gfx - offset: 0x3498 -d_course_dks_jungle_parkway_dl_36A0: - symbol: d_course_dks_jungle_parkway_dl_36A0 - type: gfx - offset: 0x36A0 -d_course_dks_jungle_parkway_dl_3790: - symbol: d_course_dks_jungle_parkway_dl_3790 - type: gfx - offset: 0x3790 -d_course_dks_jungle_parkway_dl_3988: - symbol: d_course_dks_jungle_parkway_dl_3988 - type: gfx - offset: 0x3988 -d_course_dks_jungle_parkway_dl_3B28: - symbol: d_course_dks_jungle_parkway_dl_3B28 - type: gfx - offset: 0x3B28 -d_course_dks_jungle_parkway_dl_3CC8: - symbol: d_course_dks_jungle_parkway_dl_3CC8 - type: gfx - offset: 0x3CC8 -d_course_dks_jungle_parkway_dl_3D88: - symbol: d_course_dks_jungle_parkway_dl_3D88 - type: gfx - offset: 0x3D88 -d_course_dks_jungle_parkway_dl_3F78: - symbol: d_course_dks_jungle_parkway_dl_3F78 - type: gfx - offset: 0x3F78 -d_course_dks_jungle_parkway_dl_4100: - symbol: d_course_dks_jungle_parkway_dl_4100 - type: gfx - offset: 0x4100 -d_course_dks_jungle_parkway_dl_4250: - symbol: d_course_dks_jungle_parkway_dl_4250 - type: gfx - offset: 0x4250 -d_course_dks_jungle_parkway_dl_42F8: - symbol: d_course_dks_jungle_parkway_dl_42F8 - type: gfx - offset: 0x42F8 -d_course_dks_jungle_parkway_dl_4470: - symbol: d_course_dks_jungle_parkway_dl_4470 - type: gfx - offset: 0x4470 -d_course_dks_jungle_parkway_dl_45C0: - symbol: d_course_dks_jungle_parkway_dl_45C0 - type: gfx - offset: 0x45C0 -d_course_dks_jungle_parkway_dl_4658: - symbol: d_course_dks_jungle_parkway_dl_4658 - type: gfx - offset: 0x4658 -d_course_dks_jungle_parkway_dl_4710: - symbol: d_course_dks_jungle_parkway_dl_4710 - type: gfx - offset: 0x4710 -d_course_dks_jungle_parkway_dl_4848: - symbol: d_course_dks_jungle_parkway_dl_4848 - type: gfx - offset: 0x4848 -d_course_dks_jungle_parkway_dl_4980: - symbol: d_course_dks_jungle_parkway_dl_4980 - type: gfx - offset: 0x4980 -d_course_dks_jungle_parkway_dl_4A38: - symbol: d_course_dks_jungle_parkway_dl_4A38 - type: gfx - offset: 0x4A38 -d_course_dks_jungle_parkway_dl_4AE8: - symbol: d_course_dks_jungle_parkway_dl_4AE8 - type: gfx - offset: 0x4AE8 -d_course_dks_jungle_parkway_dl_4C18: - symbol: d_course_dks_jungle_parkway_dl_4C18 - type: gfx - offset: 0x4C18 -d_course_dks_jungle_parkway_dl_4D10: - symbol: d_course_dks_jungle_parkway_dl_4D10 - type: gfx - offset: 0x4D10 -d_course_dks_jungle_parkway_dl_4E10: - symbol: d_course_dks_jungle_parkway_dl_4E10 - type: gfx - offset: 0x4E10 -d_course_dks_jungle_parkway_dl_4FB0: - symbol: d_course_dks_jungle_parkway_dl_4FB0 - type: gfx - offset: 0x4FB0 -d_course_dks_jungle_parkway_dl_51B0: - symbol: d_course_dks_jungle_parkway_dl_51B0 - type: gfx - offset: 0x51B0 -d_course_dks_jungle_parkway_dl_53F8: - symbol: d_course_dks_jungle_parkway_dl_53F8 - type: gfx - offset: 0x53F8 -d_course_dks_jungle_parkway_dl_5580: - symbol: d_course_dks_jungle_parkway_dl_5580 - type: gfx - offset: 0x5580 -d_course_dks_jungle_parkway_dl_5650: - symbol: d_course_dks_jungle_parkway_dl_5650 - type: gfx - offset: 0x5650 -d_course_dks_jungle_parkway_dl_57A0: - symbol: d_course_dks_jungle_parkway_dl_57A0 - type: gfx - offset: 0x57A0 -d_course_dks_jungle_parkway_dl_5920: - symbol: d_course_dks_jungle_parkway_dl_5920 - type: gfx - offset: 0x5920 -d_course_dks_jungle_parkway_dl_59B8: - symbol: d_course_dks_jungle_parkway_dl_59B8 - type: gfx - offset: 0x59B8 -d_course_dks_jungle_parkway_dl_5A50: - symbol: d_course_dks_jungle_parkway_dl_5A50 - type: gfx - offset: 0x5A50 -d_course_dks_jungle_parkway_dl_5B90: - symbol: d_course_dks_jungle_parkway_dl_5B90 - type: gfx - offset: 0x5B90 -d_course_dks_jungle_parkway_dl_5CB0: - symbol: d_course_dks_jungle_parkway_dl_5CB0 - type: gfx - offset: 0x5CB0 -d_course_dks_jungle_parkway_dl_5D70: - symbol: d_course_dks_jungle_parkway_dl_5D70 - type: gfx - offset: 0x5D70 -d_course_dks_jungle_parkway_dl_5DF8: - symbol: d_course_dks_jungle_parkway_dl_5DF8 - type: gfx - offset: 0x5DF8 -d_course_dks_jungle_parkway_dl_5EC8: - symbol: d_course_dks_jungle_parkway_dl_5EC8 - type: gfx - offset: 0x5EC8 -d_course_dks_jungle_parkway_dl_5FA8: - symbol: d_course_dks_jungle_parkway_dl_5FA8 - type: gfx - offset: 0x5FA8 -d_course_dks_jungle_parkway_dl_6048: - symbol: d_course_dks_jungle_parkway_dl_6048 - type: gfx - offset: 0x6048 -d_course_dks_jungle_parkway_dl_6178: - symbol: d_course_dks_jungle_parkway_dl_6178 - type: gfx - offset: 0x6178 -d_course_dks_jungle_parkway_dl_62D0: - symbol: d_course_dks_jungle_parkway_dl_62D0 - type: gfx - offset: 0x62D0 -d_course_dks_jungle_parkway_dl_6468: - symbol: d_course_dks_jungle_parkway_dl_6468 - type: gfx - offset: 0x6468 -d_course_dks_jungle_parkway_dl_6588: - symbol: d_course_dks_jungle_parkway_dl_6588 - type: gfx - offset: 0x6588 -d_course_dks_jungle_parkway_dl_6680: - symbol: d_course_dks_jungle_parkway_dl_6680 - type: gfx - offset: 0x6680 -d_course_dks_jungle_parkway_dl_6740: - symbol: d_course_dks_jungle_parkway_dl_6740 - type: gfx - offset: 0x6740 -d_course_dks_jungle_parkway_dl_67C0: - symbol: d_course_dks_jungle_parkway_dl_67C0 - type: gfx - offset: 0x67C0 -d_course_dks_jungle_parkway_dl_68D0: - symbol: d_course_dks_jungle_parkway_dl_68D0 - type: gfx - offset: 0x68D0 -d_course_dks_jungle_parkway_dl_69C8: - symbol: d_course_dks_jungle_parkway_dl_69C8 - type: gfx - offset: 0x69C8 -d_course_dks_jungle_parkway_dl_6A70: - symbol: d_course_dks_jungle_parkway_dl_6A70 - type: gfx - offset: 0x6A70 -d_course_dks_jungle_parkway_dl_6AD8: - symbol: d_course_dks_jungle_parkway_dl_6AD8 - type: gfx - offset: 0x6AD8 -d_course_dks_jungle_parkway_dl_6BE8: - symbol: d_course_dks_jungle_parkway_dl_6BE8 - type: gfx - offset: 0x6BE8 -d_course_dks_jungle_parkway_dl_6C70: - symbol: d_course_dks_jungle_parkway_dl_6C70 - type: gfx - offset: 0x6C70 -d_course_dks_jungle_parkway_dl_6CB8: - symbol: d_course_dks_jungle_parkway_dl_6CB8 - type: gfx - offset: 0x6CB8 -d_course_dks_jungle_parkway_dl_6D10: - symbol: d_course_dks_jungle_parkway_dl_6D10 - type: gfx - offset: 0x6D10 -d_course_dks_jungle_parkway_dl_6D88: - symbol: d_course_dks_jungle_parkway_dl_6D88 - type: gfx - offset: 0x6D88 -d_course_dks_jungle_parkway_dl_6E00: - symbol: d_course_dks_jungle_parkway_dl_6E00 - type: gfx - offset: 0x6E00 -d_course_dks_jungle_parkway_dl_6E48: - symbol: d_course_dks_jungle_parkway_dl_6E48 - type: gfx - offset: 0x6E48 -d_course_dks_jungle_parkway_dl_6EB0: - symbol: d_course_dks_jungle_parkway_dl_6EB0 - type: gfx - offset: 0x6EB0 -d_course_dks_jungle_parkway_dl_6F10: - symbol: d_course_dks_jungle_parkway_dl_6F10 - type: gfx - offset: 0x6F10 -d_course_dks_jungle_parkway_dl_7008: - symbol: d_course_dks_jungle_parkway_dl_7008 - type: gfx - offset: 0x7008 -d_course_dks_jungle_parkway_dl_7080: - symbol: d_course_dks_jungle_parkway_dl_7080 - type: gfx - offset: 0x7080 -d_course_dks_jungle_parkway_dl_7108: - symbol: d_course_dks_jungle_parkway_dl_7108 - type: gfx - offset: 0x7108 -d_course_dks_jungle_parkway_unknown_waypoints: - symbol: d_course_dks_jungle_parkway_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x71F0 - count: 102 -d_course_dks_jungle_parkway_unknown_waypoints2: - symbol: d_course_dks_jungle_parkway_unknown_waypoints2 - type: mk64:TRACK_PATH - offset: 0x7520 - count: 32 -d_course_dks_jungle_parkway_track_waypoints: - symbol: d_course_dks_jungle_parkway_track_waypoints - type: mk64:TRACK_PATH - offset: 0x7620 - count: 787 -d_course_dks_jungle_parkway_paddle_boat_model1: - symbol: d_course_dks_jungle_parkway_paddle_boat_model1 - type: vtx - offset: 0x8EB8 - count: 32 -d_course_dks_jungle_parkway_paddle_boat_model2: - symbol: d_course_dks_jungle_parkway_paddle_boat_model2 - type: vtx - offset: 0x90B8 - count: 4 -d_course_dks_jungle_parkway_paddle_boat_model3: - symbol: d_course_dks_jungle_parkway_paddle_boat_model3 - type: vtx - offset: 0x90F8 - count: 32 -d_course_dks_jungle_parkway_paddle_boat_model4: - symbol: d_course_dks_jungle_parkway_paddle_boat_model4 - type: vtx - offset: 0x92F8 - count: 10 -d_course_dks_jungle_parkway_paddle_boat_model5: - symbol: d_course_dks_jungle_parkway_paddle_boat_model5 - type: vtx - offset: 0x9398 - count: 18 -d_course_dks_jungle_parkway_paddle_boat_model6: - symbol: d_course_dks_jungle_parkway_paddle_boat_model6 - type: vtx - offset: 0x94B8 - count: 21 -d_course_dks_jungle_parkway_paddle_boat_model7: - symbol: d_course_dks_jungle_parkway_paddle_boat_model7 - type: vtx - offset: 0x9608 - count: 20 -d_course_dks_jungle_parkway_paddle_boat_model8: - symbol: d_course_dks_jungle_parkway_paddle_boat_model8 - type: vtx - offset: 0x9748 - count: 12 -d_course_dks_jungle_parkway_paddle_boat_model9: - symbol: d_course_dks_jungle_parkway_paddle_boat_model9 - type: vtx - offset: 0x9808 - count: 16 -d_course_dks_jungle_parkway_paddle_boat_model10: - symbol: d_course_dks_jungle_parkway_paddle_boat_model10 - type: vtx - offset: 0x9908 - count: 32 -d_course_dks_jungle_parkway_paddle_boat_model11: - symbol: d_course_dks_jungle_parkway_paddle_boat_model11 - type: vtx - offset: 0x9B08 - count: 8 -d_course_dks_jungle_parkway_paddle_boat_model12: - symbol: d_course_dks_jungle_parkway_paddle_boat_model12 - type: vtx - offset: 0x9B88 - count: 8 -d_course_dks_jungle_parkway_paddle_boat_model13: - symbol: d_course_dks_jungle_parkway_paddle_boat_model13 - type: vtx - offset: 0x9C08 - count: 16 -d_course_dks_jungle_parkway_paddle_boat_model14: - symbol: d_course_dks_jungle_parkway_paddle_boat_model14 - type: vtx - offset: 0x9D08 - count: 7 -d_course_dks_jungle_parkway_paddle_boat_model15: - symbol: d_course_dks_jungle_parkway_paddle_boat_model15 - type: vtx - offset: 0x9D78 - count: 7 -d_course_dks_jungle_parkway_unknown_light1: - symbol: d_course_dks_jungle_parkway_unknown_light1 - type: lights - offset: 0x9DE8 -d_course_dks_jungle_parkway_unknown_light2: - symbol: d_course_dks_jungle_parkway_unknown_light2 - type: lights - offset: 0x9E00 -d_course_dks_jungle_parkway_unknown_light3: - symbol: d_course_dks_jungle_parkway_unknown_light3 - type: lights - offset: 0x9E18 -d_course_dks_jungle_parkway_unknown_light4: - symbol: d_course_dks_jungle_parkway_unknown_light4 - type: lights - offset: 0x9E30 -d_course_dks_jungle_parkway_mario_sign: - symbol: d_course_dks_jungle_parkway_mario_sign - type: texture - offset: 0x9E48 - width: 64 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_tree: - symbol: d_course_dks_jungle_parkway_tree - type: texture - offset: 0xAE48 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_boat_window_upper: - symbol: d_course_dks_jungle_parkway_boat_window_upper - type: texture - offset: 0xB648 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_boat_window_lower: - symbol: d_course_dks_jungle_parkway_boat_window_lower - type: texture - offset: 0xC648 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_boat_railing: - symbol: d_course_dks_jungle_parkway_boat_railing - type: texture - offset: 0xD648 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_dl_DE48: - symbol: d_course_dks_jungle_parkway_dl_DE48 - type: gfx - offset: 0xDE48 -d_course_dks_jungle_parkway_dl_DF30: - symbol: d_course_dks_jungle_parkway_dl_DF30 - type: gfx - offset: 0xDF30 -d_course_dks_jungle_parkway_dl_E030: - symbol: d_course_dks_jungle_parkway_dl_E030 - type: gfx - offset: 0xE030 -d_course_dks_jungle_parkway_dl_E048: - symbol: d_course_dks_jungle_parkway_dl_E048 - type: gfx - offset: 0xE048 -d_course_dks_jungle_parkway_railings_dl: - symbol: d_course_dks_jungle_parkway_railings_dl - type: gfx - offset: 0xE058 -d_course_dks_jungle_parkway_dl_E068: - symbol: d_course_dks_jungle_parkway_dl_E068 - type: gfx - offset: 0xE068 -d_course_dks_jungle_parkway_dl_E150: - symbol: d_course_dks_jungle_parkway_dl_E150 - type: gfx - offset: 0xE150 -d_course_dks_jungle_parkway_dl_E238: - symbol: d_course_dks_jungle_parkway_dl_E238 - type: gfx - offset: 0xE238 -d_course_dks_jungle_parkway_dl_E250: - symbol: d_course_dks_jungle_parkway_dl_E250 - type: gfx - offset: 0xE250 -d_course_dks_jungle_parkway_dl_E310: - symbol: d_course_dks_jungle_parkway_dl_E310 - type: gfx - offset: 0xE310 -d_course_dks_jungle_parkway_dl_E320: - symbol: d_course_dks_jungle_parkway_dl_E320 - type: gfx - offset: 0xE320 -d_course_dks_jungle_parkway_dl_E578: - symbol: d_course_dks_jungle_parkway_dl_E578 - type: gfx - offset: 0xE578 -d_course_dks_jungle_parkway_dl_E588: - symbol: d_course_dks_jungle_parkway_dl_E588 - type: gfx - offset: 0xE588 -d_course_dks_jungle_parkway_dl_E618: - symbol: d_course_dks_jungle_parkway_dl_E618 - type: gfx - offset: 0xE618 -d_course_dks_jungle_parkway_dl_E628: - symbol: d_course_dks_jungle_parkway_dl_E628 - type: gfx - offset: 0xE628 -d_course_dks_jungle_parkway_dl_E688: - symbol: d_course_dks_jungle_parkway_dl_E688 - type: gfx - offset: 0xE688 -d_course_dks_jungle_parkway_dl_E6E8: - symbol: d_course_dks_jungle_parkway_dl_E6E8 - type: gfx - offset: 0xE6E8 -d_course_dks_jungle_parkway_dl_E700: - symbol: d_course_dks_jungle_parkway_dl_E700 - type: gfx - offset: 0xE700 -d_course_dks_jungle_parkway_boat_dl: - symbol: d_course_dks_jungle_parkway_boat_dl - type: gfx - offset: 0xE730 -d_course_dks_jungle_parkway_paddle_boat_paddle_model1: - symbol: d_course_dks_jungle_parkway_paddle_boat_paddle_model1 - type: vtx - offset: 0xE740 - count: 21 -d_course_dks_jungle_parkway_paddle_boat_paddle_model2: - symbol: d_course_dks_jungle_parkway_paddle_boat_paddle_model2 - type: vtx - offset: 0xE890 - count: 32 -d_course_dks_jungle_parkway_paddle_boat_paddle_model3: - symbol: d_course_dks_jungle_parkway_paddle_boat_paddle_model3 - type: vtx - offset: 0xEA90 - count: 5 -d_course_dks_jungle_parkway_boat_paddle: - symbol: d_course_dks_jungle_parkway_boat_paddle - type: texture - offset: 0xEAE0 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_boat_paddle2: - symbol: d_course_dks_jungle_parkway_boat_paddle2 - type: texture - offset: 0xF2E0 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_dl_FAE0: - symbol: d_course_dks_jungle_parkway_dl_FAE0 - type: gfx - offset: 0xFAE0 -d_course_dks_jungle_parkway_dl_FC08: - symbol: d_course_dks_jungle_parkway_dl_FC08 - type: gfx - offset: 0xFC08 -d_course_dks_jungle_parkway_dl_FC18: - symbol: d_course_dks_jungle_parkway_dl_FC18 - type: gfx - offset: 0xFC18 -d_course_dks_jungle_parkway_paddle_wheel_dl: - symbol: d_course_dks_jungle_parkway_paddle_wheel_dl - type: gfx - offset: 0xFC28 -d_course_dks_jungle_parkway_dl_FC38: - symbol: d_course_dks_jungle_parkway_dl_FC38 - type: gfx - offset: 0xFC38 -d_course_dks_jungle_parkway_tree_model: - symbol: d_course_dks_jungle_parkway_tree_model - type: vtx - offset: 0xFC40 - count: 8 -d_course_dks_jungle_parkway_tree2_top: - symbol: d_course_dks_jungle_parkway_tree2_top - type: texture - offset: 0xFCC0 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_tree2_trunk: - symbol: d_course_dks_jungle_parkway_tree2_trunk - type: texture - offset: 0x104C0 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_dl_tree1: - symbol: d_course_dks_jungle_parkway_dl_tree1 - type: gfx - offset: 0x10CC0 -d_course_dks_jungle_parkway_tree2_model: - symbol: d_course_dks_jungle_parkway_tree2_model - type: vtx - offset: 0x10D48 - count: 8 -d_course_dks_jungle_parkway_tree3: - symbol: d_course_dks_jungle_parkway_tree3 - type: texture - offset: 0x10DC8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_tree4: - symbol: d_course_dks_jungle_parkway_tree4 - type: texture - offset: 0x115C8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_dl_tree2: - symbol: d_course_dks_jungle_parkway_dl_tree2 - type: gfx - offset: 0x11DC8 -d_course_dks_jungle_parkway_model4: - symbol: d_course_dks_jungle_parkway_model4 - type: vtx - offset: 0x11E70 - count: 8 -d_course_dks_jungle_parkway_tree_trunk: - symbol: d_course_dks_jungle_parkway_tree_trunk - type: texture - offset: 0x11EF0 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_tree5: - symbol: d_course_dks_jungle_parkway_tree5 - type: texture - offset: 0x126F0 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_dl_tree3: - symbol: d_course_dks_jungle_parkway_dl_tree3 - type: gfx - offset: 0x12EF0 -d_course_dks_jungle_parkway_palm_tree_model: - symbol: d_course_dks_jungle_parkway_palm_tree_model - type: vtx - offset: 0x12F78 - count: 16 -d_course_dks_jungle_parkway_palm_tree: - symbol: d_course_dks_jungle_parkway_palm_tree - type: texture - offset: 0x13078 - ctype: u16 - width: 32 - height: 32 - format: rgba16 -d_course_dks_jungle_parkway_dl_13878: - symbol: d_course_dks_jungle_parkway_dl_13878 - type: gfx - offset: 0x13878 -d_course_dks_jungle_parkway_dl_palm_tree: - symbol: d_course_dks_jungle_parkway_dl_palm_tree - type: gfx - offset: 0x138D0 -d_course_dks_jungle_parkway_kiwano_tlut: - symbol: d_course_dks_jungle_parkway_kiwano_tlut - type: texture - offset: 0x13978 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_course_dks_jungle_parkway_kiwano_model: - symbol: d_course_dks_jungle_parkway_kiwano_model - type: vtx - offset: 0x13B78 - count: 4 -d_course_dks_jungle_parkway_dl_kiwano_fruit: - symbol: d_course_dks_jungle_parkway_dl_kiwano_fruit - type: gfx - offset: 0x13BB8 -d_course_dks_jungle_parkway_dl_13C30: - symbol: d_course_dks_jungle_parkway_dl_13C30 - type: gfx - offset: 0x13C30 -d_course_dks_jungle_parkway_item_box_spawns: - symbol: d_course_dks_jungle_parkway_item_box_spawns - type: mk64:spawn_data - offset: 0x13EC0 - count: 23 -d_course_dks_jungle_parkway_tree_spawn: - symbol: d_course_dks_jungle_parkway_tree_spawn - type: mk64:unk_spawn_data - offset: 0x13F78 - count: 96 -d_course_dks_jungle_parkway_addr: - symbol: d_course_dks_jungle_parkway_addr - type: mk64:track_sections - offset: 0x14338 - count: 115 diff --git a/yamls/us/dks_jungle_parkway_displaylists.yml b/yamls/us/dks_jungle_parkway_displaylists.yml deleted file mode 100644 index a48426a94..000000000 --- a/yamls/us/dks_jungle_parkway_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x960ACC - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_dks_jungle_parkway_packed_dls: - symbol: d_course_dks_jungle_parkway_packed_dls - type: blob - offset: 0x960ACC - size: 0x341E diff --git a/yamls/us/dks_jungle_parkway_vertices.yml b/yamls/us/dks_jungle_parkway_vertices.yml deleted file mode 100644 index 9a2be288f..000000000 --- a/yamls/us/dks_jungle_parkway_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x956670] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_dks_jungle_parkway_vertex: - symbol: d_course_dks_jungle_parkway_vertex - type: mk64:course_vtx - count: 5679 - offset: 0x0 diff --git a/yamls/us/donkeykong_kart.yml b/yamls/us/donkeykong_kart.yml deleted file mode 100644 index f38a5b4b7..000000000 --- a/yamls/us/donkeykong_kart.yml +++ /dev/null @@ -1,12803 +0,0 @@ -:config: - segments: - - [0x0F, 0x4CBE50] - no_compression: true - header: - code: - - '#include ' - - '#include ' - - '#include ' - header: - - '#include ' - - '#include ' - tables: - donkeykong_kart_wheels: - range: [0x8DC94, 0xB1E14] - mode: APPEND -donkeykong_kart_frame000: - symbol: gKartDK000 - type: texture - offset: 0x0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame001: - symbol: gKartDK001 - type: texture - offset: 0x6C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_001_wheel_0 -donkeykong_kart_frame002: - symbol: gKartDK002 - type: texture - offset: 0xD7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_002_wheel_0 -donkeykong_kart_frame003: - symbol: gKartDK003 - type: texture - offset: 0x1420 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_003_wheel_0 -donkeykong_kart_frame004: - symbol: gKartDK004 - type: texture - offset: 0x1AC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_004_wheel_0 -donkeykong_kart_frame005: - symbol: gKartDK005 - type: texture - offset: 0x2140 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_005_wheel_0 -donkeykong_kart_frame006: - symbol: gKartDK006 - type: texture - offset: 0x27E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_006_wheel_0 -donkeykong_kart_frame007: - symbol: gKartDK007 - type: texture - offset: 0x2E74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_007_wheel_0 -donkeykong_kart_frame008: - symbol: gKartDK008 - type: texture - offset: 0x34F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_008_wheel_0 -donkeykong_kart_frame009: - symbol: gKartDK009 - type: texture - offset: 0x3B8C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_009_wheel_0 -donkeykong_kart_frame010: - symbol: gKartDK010 - type: texture - offset: 0x424C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_010_wheel_0 -donkeykong_kart_frame011: - symbol: gKartDK011 - type: texture - offset: 0x4914 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_011_wheel_0 -donkeykong_kart_frame012: - symbol: gKartDK012 - type: texture - offset: 0x4FD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_012_wheel_0 -donkeykong_kart_frame013: - symbol: gKartDK013 - type: texture - offset: 0x568C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_013_wheel_0 -donkeykong_kart_frame014: - symbol: gKartDK014 - type: texture - offset: 0x5D58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_014_wheel_0 -donkeykong_kart_frame015: - symbol: gKartDK015 - type: texture - offset: 0x641C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_015_wheel_0 -donkeykong_kart_frame016: - symbol: gKartDK016 - type: texture - offset: 0x6B04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_016_wheel_0 -donkeykong_kart_frame017: - symbol: gKartDK017 - type: texture - offset: 0x720C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_017_wheel_0 -donkeykong_kart_frame018: - symbol: gKartDK018 - type: texture - offset: 0x790C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_018_wheel_0 -donkeykong_kart_frame019: - symbol: gKartDK019 - type: texture - offset: 0x801C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_019_wheel_0 -donkeykong_kart_frame020: - symbol: gKartDK020 - type: texture - offset: 0x872C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_020_wheel_0 -donkeykong_kart_frame021: - symbol: gKartDK021 - type: texture - offset: 0x8E58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_021_wheel_0 -donkeykong_kart_frame022: - symbol: gKartDK022 - type: texture - offset: 0x9548 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_022_wheel_0 -donkeykong_kart_frame023: - symbol: gKartDK023 - type: texture - offset: 0x9C18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_023_wheel_0 -donkeykong_kart_frame024: - symbol: gKartDK024 - type: texture - offset: 0xA2B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_024_wheel_0 -donkeykong_kart_frame025: - symbol: gKartDK025 - type: texture - offset: 0xA968 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_025_wheel_0 -donkeykong_kart_frame026: - symbol: gKartDK026 - type: texture - offset: 0xB010 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_026_wheel_0 -donkeykong_kart_frame027: - symbol: gKartDK027 - type: texture - offset: 0xB6BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_027_wheel_0 -donkeykong_kart_frame028: - symbol: gKartDK028 - type: texture - offset: 0xBD70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_028_wheel_0 -donkeykong_kart_frame029: - symbol: gKartDK029 - type: texture - offset: 0xC430 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_029_wheel_0 -donkeykong_kart_frame030: - symbol: gKartDK030 - type: texture - offset: 0xCB08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_030_wheel_0 -donkeykong_kart_frame031: - symbol: gKartDK031 - type: texture - offset: 0xD1BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_031_wheel_0 -donkeykong_kart_frame032: - symbol: gKartDK032 - type: texture - offset: 0xD87C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_032_wheel_0 -donkeykong_kart_frame033: - symbol: gKartDK033 - type: texture - offset: 0xDF40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_033_wheel_0 -donkeykong_kart_frame034: - symbol: gKartDK034 - type: texture - offset: 0xE60C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_034_wheel_0 -donkeykong_kart_frame035: - symbol: gKartDK035 - type: texture - offset: 0xECF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_035_wheel_0 -donkeykong_kart_frame036: - symbol: gKartDK036 - type: texture - offset: 0xF3D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_036_wheel_0 -donkeykong_kart_frame037: - symbol: gKartDK037 - type: texture - offset: 0xFAB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_037_wheel_0 -donkeykong_kart_frame038: - symbol: gKartDK038 - type: texture - offset: 0x101BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_038_wheel_0 -donkeykong_kart_frame039: - symbol: gKartDK039 - type: texture - offset: 0x108D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_039_wheel_0 -donkeykong_kart_frame040: - symbol: gKartDK040 - type: texture - offset: 0x10FF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_040_wheel_0 -donkeykong_kart_frame041: - symbol: gKartDK041 - type: texture - offset: 0x1171C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_041_wheel_0 -donkeykong_kart_frame042: - symbol: gKartDK042 - type: texture - offset: 0x11E50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_042_wheel_0 -donkeykong_kart_frame043: - symbol: gKartDK043 - type: texture - offset: 0x12538 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_043_wheel_0 -donkeykong_kart_frame044: - symbol: gKartDK044 - type: texture - offset: 0x12C24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_044_wheel_0 -donkeykong_kart_frame045: - symbol: gKartDK045 - type: texture - offset: 0x132F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_045_wheel_0 -donkeykong_kart_frame046: - symbol: gKartDK046 - type: texture - offset: 0x139CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_046_wheel_0 -donkeykong_kart_frame047: - symbol: gKartDK047 - type: texture - offset: 0x140AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_047_wheel_0 -donkeykong_kart_frame048: - symbol: gKartDK048 - type: texture - offset: 0x14780 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_048_wheel_0 -donkeykong_kart_frame049: - symbol: gKartDK049 - type: texture - offset: 0x14E48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_049_wheel_0 -donkeykong_kart_frame050: - symbol: gKartDK050 - type: texture - offset: 0x15510 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_050_wheel_0 -donkeykong_kart_frame051: - symbol: gKartDK051 - type: texture - offset: 0x15BC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_051_wheel_0 -donkeykong_kart_frame052: - symbol: gKartDK052 - type: texture - offset: 0x1629C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_052_wheel_0 -donkeykong_kart_frame053: - symbol: gKartDK053 - type: texture - offset: 0x16978 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_053_wheel_0 -donkeykong_kart_frame054: - symbol: gKartDK054 - type: texture - offset: 0x17040 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_054_wheel_0 -donkeykong_kart_frame055: - symbol: gKartDK055 - type: texture - offset: 0x1770C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_055_wheel_0 -donkeykong_kart_frame056: - symbol: gKartDK056 - type: texture - offset: 0x17DE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_056_wheel_0 -donkeykong_kart_frame057: - symbol: gKartDK057 - type: texture - offset: 0x184D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_057_wheel_0 -donkeykong_kart_frame058: - symbol: gKartDK058 - type: texture - offset: 0x18BC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_058_wheel_0 -donkeykong_kart_frame059: - symbol: gKartDK059 - type: texture - offset: 0x192CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_059_wheel_0 -donkeykong_kart_frame060: - symbol: gKartDK060 - type: texture - offset: 0x199D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_060_wheel_0 -donkeykong_kart_frame061: - symbol: gKartDK061 - type: texture - offset: 0x1A104 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_061_wheel_0 -donkeykong_kart_frame062: - symbol: gKartDK062 - type: texture - offset: 0x1A820 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_062_wheel_0 -donkeykong_kart_frame063: - symbol: gKartDK063 - type: texture - offset: 0x1AF58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_063_wheel_0 -donkeykong_kart_frame064: - symbol: gKartDK064 - type: texture - offset: 0x1B660 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_064_wheel_0 -donkeykong_kart_frame065: - symbol: gKartDK065 - type: texture - offset: 0x1BD70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_065_wheel_0 -donkeykong_kart_frame066: - symbol: gKartDK066 - type: texture - offset: 0x1C460 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_066_wheel_0 -donkeykong_kart_frame067: - symbol: gKartDK067 - type: texture - offset: 0x1CB5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_067_wheel_0 -donkeykong_kart_frame068: - symbol: gKartDK068 - type: texture - offset: 0x1D25C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_068_wheel_0 -donkeykong_kart_frame069: - symbol: gKartDK069 - type: texture - offset: 0x1D938 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_069_wheel_0 -donkeykong_kart_frame070: - symbol: gKartDK070 - type: texture - offset: 0x1E004 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_070_wheel_0 -donkeykong_kart_frame071: - symbol: gKartDK071 - type: texture - offset: 0x1E6E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_071_wheel_0 -donkeykong_kart_frame072: - symbol: gKartDK072 - type: texture - offset: 0x1EDB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_072_wheel_0 -donkeykong_kart_frame073: - symbol: gKartDK073 - type: texture - offset: 0x1F484 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_073_wheel_0 -donkeykong_kart_frame074: - symbol: gKartDK074 - type: texture - offset: 0x1FB58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_074_wheel_0 -donkeykong_kart_frame075: - symbol: gKartDK075 - type: texture - offset: 0x20230 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_075_wheel_0 -donkeykong_kart_frame076: - symbol: gKartDK076 - type: texture - offset: 0x20908 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_076_wheel_0 -donkeykong_kart_frame077: - symbol: gKartDK077 - type: texture - offset: 0x20FE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_077_wheel_0 -donkeykong_kart_frame078: - symbol: gKartDK078 - type: texture - offset: 0x216D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_078_wheel_0 -donkeykong_kart_frame079: - symbol: gKartDK079 - type: texture - offset: 0x21DD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_079_wheel_0 -donkeykong_kart_frame080: - symbol: gKartDK080 - type: texture - offset: 0x224FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_080_wheel_0 -donkeykong_kart_frame081: - symbol: gKartDK081 - type: texture - offset: 0x22C2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_081_wheel_0 -donkeykong_kart_frame082: - symbol: gKartDK082 - type: texture - offset: 0x23360 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_082_wheel_0 -donkeykong_kart_frame083: - symbol: gKartDK083 - type: texture - offset: 0x23A9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_083_wheel_0 -donkeykong_kart_frame084: - symbol: gKartDK084 - type: texture - offset: 0x241DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_084_wheel_0 -donkeykong_kart_frame085: - symbol: gKartDK085 - type: texture - offset: 0x248D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_085_wheel_0 -donkeykong_kart_frame086: - symbol: gKartDK086 - type: texture - offset: 0x24FDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_086_wheel_0 -donkeykong_kart_frame087: - symbol: gKartDK087 - type: texture - offset: 0x256C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_087_wheel_0 -donkeykong_kart_frame088: - symbol: gKartDK088 - type: texture - offset: 0x25DD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_088_wheel_0 -donkeykong_kart_frame089: - symbol: gKartDK089 - type: texture - offset: 0x264C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_089_wheel_0 -donkeykong_kart_frame090: - symbol: gKartDK090 - type: texture - offset: 0x26BB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_090_wheel_0 -donkeykong_kart_frame091: - symbol: gKartDK091 - type: texture - offset: 0x272AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_091_wheel_0 -donkeykong_kart_frame092: - symbol: gKartDK092 - type: texture - offset: 0x27998 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_092_wheel_0 -donkeykong_kart_frame093: - symbol: gKartDK093 - type: texture - offset: 0x28074 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_093_wheel_0 -donkeykong_kart_frame094: - symbol: gKartDK094 - type: texture - offset: 0x28758 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_094_wheel_0 -donkeykong_kart_frame095: - symbol: gKartDK095 - type: texture - offset: 0x28E30 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_095_wheel_0 -donkeykong_kart_frame096: - symbol: gKartDK096 - type: texture - offset: 0x29514 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_096_wheel_0 -donkeykong_kart_frame097: - symbol: gKartDK097 - type: texture - offset: 0x29BF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_097_wheel_0 -donkeykong_kart_frame098: - symbol: gKartDK098 - type: texture - offset: 0x2A2EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_098_wheel_0 -donkeykong_kart_frame099: - symbol: gKartDK099 - type: texture - offset: 0x2A9F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_099_wheel_0 -donkeykong_kart_frame100: - symbol: gKartDK100 - type: texture - offset: 0x2B0FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_100_wheel_0 -donkeykong_kart_frame101: - symbol: gKartDK101 - type: texture - offset: 0x2B82C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_101_wheel_0 -donkeykong_kart_frame102: - symbol: gKartDK102 - type: texture - offset: 0x2BF7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_102_wheel_0 -donkeykong_kart_frame103: - symbol: gKartDK103 - type: texture - offset: 0x2C6AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_103_wheel_0 -donkeykong_kart_frame104: - symbol: gKartDK104 - type: texture - offset: 0x2CDE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_104_wheel_0 -donkeykong_kart_frame105: - symbol: gKartDK105 - type: texture - offset: 0x2D534 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_105_wheel_0 -donkeykong_kart_frame106: - symbol: gKartDK106 - type: texture - offset: 0x2DC40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_106_wheel_0 -donkeykong_kart_frame107: - symbol: gKartDK107 - type: texture - offset: 0x2E35C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_107_wheel_0 -donkeykong_kart_frame108: - symbol: gKartDK108 - type: texture - offset: 0x2EA7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_108_wheel_0 -donkeykong_kart_frame109: - symbol: gKartDK109 - type: texture - offset: 0x2F1A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_109_wheel_0 -donkeykong_kart_frame110: - symbol: gKartDK110 - type: texture - offset: 0x2F8BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_110_wheel_0 -donkeykong_kart_frame111: - symbol: gKartDK111 - type: texture - offset: 0x2FFD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_111_wheel_0 -donkeykong_kart_frame112: - symbol: gKartDK112 - type: texture - offset: 0x306D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_112_wheel_0 -donkeykong_kart_frame113: - symbol: gKartDK113 - type: texture - offset: 0x30DC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_113_wheel_0 -donkeykong_kart_frame114: - symbol: gKartDK114 - type: texture - offset: 0x314C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_114_wheel_0 -donkeykong_kart_frame115: - symbol: gKartDK115 - type: texture - offset: 0x31BA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_115_wheel_0 -donkeykong_kart_frame116: - symbol: gKartDK116 - type: texture - offset: 0x3228C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_116_wheel_0 -donkeykong_kart_frame117: - symbol: gKartDK117 - type: texture - offset: 0x3296C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_117_wheel_0 -donkeykong_kart_frame118: - symbol: gKartDK118 - type: texture - offset: 0x3306C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_118_wheel_0 -donkeykong_kart_frame119: - symbol: gKartDK119 - type: texture - offset: 0x33764 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_119_wheel_0 -donkeykong_kart_frame120: - symbol: gKartDK120 - type: texture - offset: 0x33E70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_120_wheel_0 -donkeykong_kart_frame121: - symbol: gKartDK121 - type: texture - offset: 0x34584 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_121_wheel_0 -donkeykong_kart_frame122: - symbol: gKartDK122 - type: texture - offset: 0x34CAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_122_wheel_0 -donkeykong_kart_frame123: - symbol: gKartDK123 - type: texture - offset: 0x353D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_123_wheel_0 -donkeykong_kart_frame124: - symbol: gKartDK124 - type: texture - offset: 0x35B08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_124_wheel_0 -donkeykong_kart_frame125: - symbol: gKartDK125 - type: texture - offset: 0x36240 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_125_wheel_0 -donkeykong_kart_frame126: - symbol: gKartDK126 - type: texture - offset: 0x36998 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_126_wheel_0 -donkeykong_kart_frame127: - symbol: gKartDK127 - type: texture - offset: 0x370CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_127_wheel_0 -donkeykong_kart_frame128: - symbol: gKartDK128 - type: texture - offset: 0x377F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_128_wheel_0 -donkeykong_kart_frame129: - symbol: gKartDK129 - type: texture - offset: 0x37F38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_129_wheel_0 -donkeykong_kart_frame130: - symbol: gKartDK130 - type: texture - offset: 0x38658 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_130_wheel_0 -donkeykong_kart_frame131: - symbol: gKartDK131 - type: texture - offset: 0x38D68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_131_wheel_0 -donkeykong_kart_frame132: - symbol: gKartDK132 - type: texture - offset: 0x3946C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_132_wheel_0 -donkeykong_kart_frame133: - symbol: gKartDK133 - type: texture - offset: 0x39B7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_133_wheel_0 -donkeykong_kart_frame134: - symbol: gKartDK134 - type: texture - offset: 0x3A27C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_134_wheel_0 -donkeykong_kart_frame135: - symbol: gKartDK135 - type: texture - offset: 0x3A97C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_135_wheel_0 -donkeykong_kart_frame136: - symbol: gKartDK136 - type: texture - offset: 0x3B074 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_136_wheel_0 -donkeykong_kart_frame137: - symbol: gKartDK137 - type: texture - offset: 0x3B758 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_137_wheel_0 -donkeykong_kart_frame138: - symbol: gKartDK138 - type: texture - offset: 0x3BE38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_138_wheel_0 -donkeykong_kart_frame139: - symbol: gKartDK139 - type: texture - offset: 0x3C524 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_139_wheel_0 -donkeykong_kart_frame140: - symbol: gKartDK140 - type: texture - offset: 0x3CC14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_140_wheel_0 -donkeykong_kart_frame141: - symbol: gKartDK141 - type: texture - offset: 0x3D318 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_141_wheel_0 -donkeykong_kart_frame142: - symbol: gKartDK142 - type: texture - offset: 0x3DA3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_142_wheel_0 -donkeykong_kart_frame143: - symbol: gKartDK143 - type: texture - offset: 0x3E174 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_143_wheel_0 -donkeykong_kart_frame144: - symbol: gKartDK144 - type: texture - offset: 0x3E8A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_144_wheel_0 -donkeykong_kart_frame145: - symbol: gKartDK145 - type: texture - offset: 0x3EFE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_145_wheel_0 -donkeykong_kart_frame146: - symbol: gKartDK146 - type: texture - offset: 0x3F728 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_146_wheel_0 -donkeykong_kart_frame147: - symbol: gKartDK147 - type: texture - offset: 0x3FE80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_147_wheel_0 -donkeykong_kart_frame148: - symbol: gKartDK148 - type: texture - offset: 0x405CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_148_wheel_0 -donkeykong_kart_frame149: - symbol: gKartDK149 - type: texture - offset: 0x40D0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_149_wheel_0 -donkeykong_kart_frame150: - symbol: gKartDK150 - type: texture - offset: 0x41440 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_150_wheel_0 -donkeykong_kart_frame151: - symbol: gKartDK151 - type: texture - offset: 0x41B5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_151_wheel_0 -donkeykong_kart_frame152: - symbol: gKartDK152 - type: texture - offset: 0x4227C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_152_wheel_0 -donkeykong_kart_frame153: - symbol: gKartDK153 - type: texture - offset: 0x429A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_153_wheel_0 -donkeykong_kart_frame154: - symbol: gKartDK154 - type: texture - offset: 0x430D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_154_wheel_0 -donkeykong_kart_frame155: - symbol: gKartDK155 - type: texture - offset: 0x437F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_155_wheel_0 -donkeykong_kart_frame156: - symbol: gKartDK156 - type: texture - offset: 0x43EF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_156_wheel_0 -donkeykong_kart_frame157: - symbol: gKartDK157 - type: texture - offset: 0x445E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_157_wheel_0 -donkeykong_kart_frame158: - symbol: gKartDK158 - type: texture - offset: 0x44CD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_158_wheel_0 -donkeykong_kart_frame159: - symbol: gKartDK159 - type: texture - offset: 0x453D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_159_wheel_0 -donkeykong_kart_frame160: - symbol: gKartDK160 - type: texture - offset: 0x45AD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_160_wheel_0 -donkeykong_kart_frame161: - symbol: gKartDK161 - type: texture - offset: 0x461D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_161_wheel_0 -donkeykong_kart_frame162: - symbol: gKartDK162 - type: texture - offset: 0x468F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_162_wheel_0 -donkeykong_kart_frame163: - symbol: gKartDK163 - type: texture - offset: 0x47024 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_163_wheel_0 -donkeykong_kart_frame164: - symbol: gKartDK164 - type: texture - offset: 0x47754 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_164_wheel_0 -donkeykong_kart_frame165: - symbol: gKartDK165 - type: texture - offset: 0x47E9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_165_wheel_0 -donkeykong_kart_frame166: - symbol: gKartDK166 - type: texture - offset: 0x48600 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_166_wheel_0 -donkeykong_kart_frame167: - symbol: gKartDK167 - type: texture - offset: 0x48D58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_167_wheel_0 -donkeykong_kart_frame168: - symbol: gKartDK168 - type: texture - offset: 0x494B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_168_wheel_0 -donkeykong_kart_frame169: - symbol: gKartDK169 - type: texture - offset: 0x49BF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_169_wheel_0 -donkeykong_kart_frame170: - symbol: gKartDK170 - type: texture - offset: 0x4A344 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_170_wheel_0 -donkeykong_kart_frame171: - symbol: gKartDK171 - type: texture - offset: 0x4AA84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_171_wheel_0 -donkeykong_kart_frame172: - symbol: gKartDK172 - type: texture - offset: 0x4B1BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_172_wheel_0 -donkeykong_kart_frame173: - symbol: gKartDK173 - type: texture - offset: 0x4B8D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_173_wheel_0 -donkeykong_kart_frame174: - symbol: gKartDK174 - type: texture - offset: 0x4BFE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_174_wheel_0 -donkeykong_kart_frame175: - symbol: gKartDK175 - type: texture - offset: 0x4C718 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_175_wheel_0 -donkeykong_kart_frame176: - symbol: gKartDK176 - type: texture - offset: 0x4CE20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_176_wheel_0 -donkeykong_kart_frame177: - symbol: gKartDK177 - type: texture - offset: 0x4D510 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_177_wheel_0 -donkeykong_kart_frame178: - symbol: gKartDK178 - type: texture - offset: 0x4DC08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_178_wheel_0 -donkeykong_kart_frame179: - symbol: gKartDK179 - type: texture - offset: 0x4E304 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_179_wheel_0 -donkeykong_kart_frame180: - symbol: gKartDK180 - type: texture - offset: 0x4E9F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_180_wheel_0 -donkeykong_kart_frame181: - symbol: gKartDK181 - type: texture - offset: 0x4F0F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_181_wheel_0 -donkeykong_kart_frame182: - symbol: gKartDK182 - type: texture - offset: 0x4F7F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_182_wheel_0 -donkeykong_kart_frame183: - symbol: gKartDK183 - type: texture - offset: 0x4FF08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_183_wheel_0 -donkeykong_kart_frame184: - symbol: gKartDK184 - type: texture - offset: 0x50634 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_184_wheel_0 -donkeykong_kart_frame185: - symbol: gKartDK185 - type: texture - offset: 0x50D8C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_185_wheel_0 -donkeykong_kart_frame186: - symbol: gKartDK186 - type: texture - offset: 0x514E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_186_wheel_0 -donkeykong_kart_frame187: - symbol: gKartDK187 - type: texture - offset: 0x51C50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_187_wheel_0 -donkeykong_kart_frame188: - symbol: gKartDK188 - type: texture - offset: 0x523D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_188_wheel_0 -donkeykong_kart_frame189: - symbol: gKartDK189 - type: texture - offset: 0x52B54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_189_wheel_0 -donkeykong_kart_frame190: - symbol: gKartDK190 - type: texture - offset: 0x53218 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_190_wheel_0 -donkeykong_kart_frame191: - symbol: gKartDK191 - type: texture - offset: 0x53908 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_191_wheel_0 -donkeykong_kart_frame192: - symbol: gKartDK192 - type: texture - offset: 0x54008 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_192_wheel_0 -donkeykong_kart_frame193: - symbol: gKartDK193 - type: texture - offset: 0x54730 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_193_wheel_0 -donkeykong_kart_frame194: - symbol: gKartDK194 - type: texture - offset: 0x54E4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_194_wheel_0 -donkeykong_kart_frame195: - symbol: gKartDK195 - type: texture - offset: 0x55568 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_195_wheel_0 -donkeykong_kart_frame196: - symbol: gKartDK196 - type: texture - offset: 0x55C88 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_196_wheel_0 -donkeykong_kart_frame197: - symbol: gKartDK197 - type: texture - offset: 0x563C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_197_wheel_0 -donkeykong_kart_frame198: - symbol: gKartDK198 - type: texture - offset: 0x56AE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_198_wheel_0 -donkeykong_kart_frame199: - symbol: gKartDK199 - type: texture - offset: 0x57220 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_199_wheel_0 -donkeykong_kart_frame200: - symbol: gKartDK200 - type: texture - offset: 0x57984 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_200_wheel_0 -donkeykong_kart_frame201: - symbol: gKartDK201 - type: texture - offset: 0x58120 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_201_wheel_0 -donkeykong_kart_frame202: - symbol: gKartDK202 - type: texture - offset: 0x588D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_202_wheel_0 -donkeykong_kart_frame203: - symbol: gKartDK203 - type: texture - offset: 0x590A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_203_wheel_0 -donkeykong_kart_frame204: - symbol: gKartDK204 - type: texture - offset: 0x5986C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_204_wheel_0 -donkeykong_kart_frame205: - symbol: gKartDK205 - type: texture - offset: 0x5A01C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_205_wheel_0 -donkeykong_kart_frame206: - symbol: gKartDK206 - type: texture - offset: 0x5A800 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_206_wheel_0 -donkeykong_kart_frame207: - symbol: gKartDK207 - type: texture - offset: 0x5AFDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_207_wheel_0 -donkeykong_kart_frame208: - symbol: gKartDK208 - type: texture - offset: 0x5B790 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_208_wheel_0 -donkeykong_kart_frame209: - symbol: gKartDK209 - type: texture - offset: 0x5BF48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_209_wheel_0 -donkeykong_kart_frame210: - symbol: gKartDK210 - type: texture - offset: 0x5C640 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_210_wheel_0 -donkeykong_kart_frame211: - symbol: gKartDK211 - type: texture - offset: 0x5CD54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_211_wheel_0 -donkeykong_kart_frame212: - symbol: gKartDK212 - type: texture - offset: 0x5D49C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_212_wheel_0 -donkeykong_kart_frame213: - symbol: gKartDK213 - type: texture - offset: 0x5DBEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_213_wheel_0 -donkeykong_kart_frame214: - symbol: gKartDK214 - type: texture - offset: 0x5E300 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_214_wheel_0 -donkeykong_kart_frame215: - symbol: gKartDK215 - type: texture - offset: 0x5EA30 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_215_wheel_0 -donkeykong_kart_frame216: - symbol: gKartDK216 - type: texture - offset: 0x5F17C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_216_wheel_0 -donkeykong_kart_frame217: - symbol: gKartDK217 - type: texture - offset: 0x5F8B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_217_wheel_0 -donkeykong_kart_frame218: - symbol: gKartDK218 - type: texture - offset: 0x5FFD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_218_wheel_0 -donkeykong_kart_frame219: - symbol: gKartDK219 - type: texture - offset: 0x60700 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_219_wheel_0 -donkeykong_kart_frame220: - symbol: gKartDK220 - type: texture - offset: 0x60E44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_220_wheel_0 -donkeykong_kart_frame221: - symbol: gKartDK221 - type: texture - offset: 0x61598 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_221_wheel_0 -donkeykong_kart_frame222: - symbol: gKartDK222 - type: texture - offset: 0x61CFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_222_wheel_0 -donkeykong_kart_frame223: - symbol: gKartDK223 - type: texture - offset: 0x62480 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_223_wheel_0 -donkeykong_kart_frame224: - symbol: gKartDK224 - type: texture - offset: 0x62BFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_224_wheel_0 -donkeykong_kart_frame225: - symbol: gKartDK225 - type: texture - offset: 0x6337C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_225_wheel_0 -donkeykong_kart_frame226: - symbol: gKartDK226 - type: texture - offset: 0x63B0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_226_wheel_0 -donkeykong_kart_frame227: - symbol: gKartDK227 - type: texture - offset: 0x6427C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_227_wheel_0 -donkeykong_kart_frame228: - symbol: gKartDK228 - type: texture - offset: 0x649F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_228_wheel_0 -donkeykong_kart_frame229: - symbol: gKartDK229 - type: texture - offset: 0x6514C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_229_wheel_0 -donkeykong_kart_frame230: - symbol: gKartDK230 - type: texture - offset: 0x65868 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_230_wheel_0 -donkeykong_kart_frame231: - symbol: gKartDK231 - type: texture - offset: 0x65FCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_231_wheel_0 -donkeykong_kart_frame232: - symbol: gKartDK232 - type: texture - offset: 0x66728 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_232_wheel_0 -donkeykong_kart_frame233: - symbol: gKartDK233 - type: texture - offset: 0x66E88 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_233_wheel_0 -donkeykong_kart_frame234: - symbol: gKartDK234 - type: texture - offset: 0x675D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_234_wheel_0 -donkeykong_kart_frame235: - symbol: gKartDK235 - type: texture - offset: 0x67D20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_235_wheel_0 -donkeykong_kart_frame236: - symbol: gKartDK236 - type: texture - offset: 0x68478 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_236_wheel_0 -donkeykong_kart_frame237: - symbol: gKartDK237 - type: texture - offset: 0x68BBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_237_wheel_0 -donkeykong_kart_frame238: - symbol: gKartDK238 - type: texture - offset: 0x692F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_238_wheel_0 -donkeykong_kart_frame239: - symbol: gKartDK239 - type: texture - offset: 0x69A1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_239_wheel_0 -donkeykong_kart_frame240: - symbol: gKartDK240 - type: texture - offset: 0x6A148 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_240_wheel_0 -donkeykong_kart_frame241: - symbol: gKartDK241 - type: texture - offset: 0x6A8A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_241_wheel_0 -donkeykong_kart_frame242: - symbol: gKartDK242 - type: texture - offset: 0x6B00C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_242_wheel_0 -donkeykong_kart_frame243: - symbol: gKartDK243 - type: texture - offset: 0x6B76C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_243_wheel_0 -donkeykong_kart_frame244: - symbol: gKartDK244 - type: texture - offset: 0x6BED4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_244_wheel_0 -donkeykong_kart_frame245: - symbol: gKartDK245 - type: texture - offset: 0x6C61C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_245_wheel_0 -donkeykong_kart_frame246: - symbol: gKartDK246 - type: texture - offset: 0x6CD78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_246_wheel_0 -donkeykong_kart_frame247: - symbol: gKartDK247 - type: texture - offset: 0x6D4B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_247_wheel_0 -donkeykong_kart_frame248: - symbol: gKartDK248 - type: texture - offset: 0x6DBD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_248_wheel_0 -donkeykong_kart_frame249: - symbol: gKartDK249 - type: texture - offset: 0x6E2E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_249_wheel_0 -donkeykong_kart_frame250: - symbol: gKartDK250 - type: texture - offset: 0x6E9FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_250_wheel_0 -donkeykong_kart_frame251: - symbol: gKartDK251 - type: texture - offset: 0x6F154 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_251_wheel_0 -donkeykong_kart_frame252: - symbol: gKartDK252 - type: texture - offset: 0x6F8AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_252_wheel_0 -donkeykong_kart_frame253: - symbol: gKartDK253 - type: texture - offset: 0x6FFFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_253_wheel_0 -donkeykong_kart_frame254: - symbol: gKartDK254 - type: texture - offset: 0x70740 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_254_wheel_0 -donkeykong_kart_frame255: - symbol: gKartDK255 - type: texture - offset: 0x70E98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_255_wheel_0 -donkeykong_kart_frame256: - symbol: gKartDK256 - type: texture - offset: 0x715E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_256_wheel_0 -donkeykong_kart_frame257: - symbol: gKartDK257 - type: texture - offset: 0x71D3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_257_wheel_0 -donkeykong_kart_frame258: - symbol: gKartDK258 - type: texture - offset: 0x72464 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_258_wheel_0 -donkeykong_kart_frame259: - symbol: gKartDK259 - type: texture - offset: 0x72B9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_259_wheel_0 -donkeykong_kart_frame260: - symbol: gKartDK260 - type: texture - offset: 0x732E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_260_wheel_0 -donkeykong_kart_frame261: - symbol: gKartDK261 - type: texture - offset: 0x73A20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_261_wheel_0 -donkeykong_kart_frame262: - symbol: gKartDK262 - type: texture - offset: 0x74160 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_262_wheel_0 -donkeykong_kart_frame263: - symbol: gKartDK263 - type: texture - offset: 0x7487C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_263_wheel_0 -donkeykong_kart_frame264: - symbol: gKartDK264 - type: texture - offset: 0x74F88 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_264_wheel_0 -donkeykong_kart_frame265: - symbol: gKartDK265 - type: texture - offset: 0x756B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_265_wheel_0 -donkeykong_kart_frame266: - symbol: gKartDK266 - type: texture - offset: 0x75DD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_266_wheel_0 -donkeykong_kart_frame267: - symbol: gKartDK267 - type: texture - offset: 0x764C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_267_wheel_0 -donkeykong_kart_frame268: - symbol: gKartDK268 - type: texture - offset: 0x76BB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_268_wheel_0 -donkeykong_kart_frame269: - symbol: gKartDK269 - type: texture - offset: 0x7726C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_269_wheel_0 -donkeykong_kart_frame270: - symbol: gKartDK270 - type: texture - offset: 0x779A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_270_wheel_0 -donkeykong_kart_frame271: - symbol: gKartDK271 - type: texture - offset: 0x7811C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_271_wheel_0 -donkeykong_kart_frame272: - symbol: gKartDK272 - type: texture - offset: 0x78884 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_272_wheel_0 -donkeykong_kart_frame273: - symbol: gKartDK273 - type: texture - offset: 0x79010 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_273_wheel_0 -donkeykong_kart_frame274: - symbol: gKartDK274 - type: texture - offset: 0x79774 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_274_wheel_0 -donkeykong_kart_frame275: - symbol: gKartDK275 - type: texture - offset: 0x79EF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_275_wheel_0 -donkeykong_kart_frame276: - symbol: gKartDK276 - type: texture - offset: 0x7A64C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_276_wheel_0 -donkeykong_kart_frame277: - symbol: gKartDK277 - type: texture - offset: 0x7ADAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_277_wheel_0 -donkeykong_kart_frame278: - symbol: gKartDK278 - type: texture - offset: 0x7B4F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_278_wheel_0 -donkeykong_kart_frame279: - symbol: gKartDK279 - type: texture - offset: 0x7BC24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_279_wheel_0 -donkeykong_kart_frame280: - symbol: gKartDK280 - type: texture - offset: 0x7C364 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_280_wheel_0 -donkeykong_kart_frame281: - symbol: gKartDK281 - type: texture - offset: 0x7CA94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_281_wheel_0 -donkeykong_kart_frame282: - symbol: gKartDK282 - type: texture - offset: 0x7D1B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_282_wheel_0 -donkeykong_kart_frame283: - symbol: gKartDK283 - type: texture - offset: 0x7D8B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_283_wheel_0 -donkeykong_kart_frame284: - symbol: gKartDK284 - type: texture - offset: 0x7DFA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_284_wheel_0 -donkeykong_kart_frame285: - symbol: gKartDK285 - type: texture - offset: 0x7E684 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_285_wheel_0 -donkeykong_kart_frame286: - symbol: gKartDK286 - type: texture - offset: 0x7ED34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_286_wheel_0 -donkeykong_kart_frame287: - symbol: gKartDK287 - type: texture - offset: 0x7F3B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_287_wheel_0 -donkeykong_kart_frame288: - symbol: gKartDK288 - type: texture - offset: 0x7FA0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_288_wheel_0 -donkeykong_kart_frame289: - symbol: gKartDK289 - type: texture - offset: 0x80058 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame290: - symbol: gKartDK290 - type: texture - offset: 0x80708 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame291: - symbol: gKartDK291 - type: texture - offset: 0x80DC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame292: - symbol: gKartDK292 - type: texture - offset: 0x8146C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame293: - symbol: gKartDK293 - type: texture - offset: 0x81B3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame294: - symbol: gKartDK294 - type: texture - offset: 0x82190 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame295: - symbol: gKartDK295 - type: texture - offset: 0x82818 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame296: - symbol: gKartDK296 - type: texture - offset: 0x82F00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame297: - symbol: gKartDK297 - type: texture - offset: 0x83644 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame298: - symbol: gKartDK298 - type: texture - offset: 0x83D1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame299: - symbol: gKartDK299 - type: texture - offset: 0x84468 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame300: - symbol: gKartDK300 - type: texture - offset: 0x84B4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame301: - symbol: gKartDK301 - type: texture - offset: 0x851E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame302: - symbol: gKartDK302 - type: texture - offset: 0x858B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame303: - symbol: gKartDK303 - type: texture - offset: 0x85FD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame304: - symbol: gKartDK304 - type: texture - offset: 0x8673C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame305: - symbol: gKartDK305 - type: texture - offset: 0x86EB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame306: - symbol: gKartDK306 - type: texture - offset: 0x874B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame307: - symbol: gKartDK307 - type: texture - offset: 0x87BA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame308: - symbol: gKartDK308 - type: texture - offset: 0x88264 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame309: - symbol: gKartDK309 - type: texture - offset: 0x88908 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame310: - symbol: gKartDK310 - type: texture - offset: 0x88F94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame311: - symbol: gKartDK311 - type: texture - offset: 0x89600 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame312: - symbol: gKartDK312 - type: texture - offset: 0x89D18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame313: - symbol: gKartDK313 - type: texture - offset: 0x8A434 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame314: - symbol: gKartDK314 - type: texture - offset: 0x8AB10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame315: - symbol: gKartDK315 - type: texture - offset: 0x8B284 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame316: - symbol: gKartDK316 - type: texture - offset: 0x8B9AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame317: - symbol: gKartDK317 - type: texture - offset: 0x8C03C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame318: - symbol: gKartDK318 - type: texture - offset: 0x8C704 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame319: - symbol: gKartDK319 - type: texture - offset: 0x8CDCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -donkeykong_kart_frame320: - symbol: gKartDK320 - type: texture - offset: 0x8D524 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: donkeykong_kart_palette - tlut_wheel: kart_000_wheel_0 -kart_000_wheel_0: - symbol: gKartDK000Wheel0 - type: texture - offset: 0x8DC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_1: - symbol: gKartDK000Wheel1 - type: texture - offset: 0x8DD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_2: - symbol: gKartDK000Wheel2 - type: texture - offset: 0x8DD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_3: - symbol: gKartDK000Wheel3 - type: texture - offset: 0x8DE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_0: - symbol: gKartDK001Wheel0 - type: texture - offset: 0x8DE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_1: - symbol: gKartDK001Wheel1 - type: texture - offset: 0x8DF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_2: - symbol: gKartDK001Wheel2 - type: texture - offset: 0x8DF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_3: - symbol: gKartDK001Wheel3 - type: texture - offset: 0x8E014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_0: - symbol: gKartDK002Wheel0 - type: texture - offset: 0x8E094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_1: - symbol: gKartDK002Wheel1 - type: texture - offset: 0x8E114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_2: - symbol: gKartDK002Wheel2 - type: texture - offset: 0x8E194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_3: - symbol: gKartDK002Wheel3 - type: texture - offset: 0x8E214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_0: - symbol: gKartDK003Wheel0 - type: texture - offset: 0x8E294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_1: - symbol: gKartDK003Wheel1 - type: texture - offset: 0x8E314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_2: - symbol: gKartDK003Wheel2 - type: texture - offset: 0x8E394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_3: - symbol: gKartDK003Wheel3 - type: texture - offset: 0x8E414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_0: - symbol: gKartDK004Wheel0 - type: texture - offset: 0x8E494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_1: - symbol: gKartDK004Wheel1 - type: texture - offset: 0x8E514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_2: - symbol: gKartDK004Wheel2 - type: texture - offset: 0x8E594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_3: - symbol: gKartDK004Wheel3 - type: texture - offset: 0x8E614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_0: - symbol: gKartDK005Wheel0 - type: texture - offset: 0x8E694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_1: - symbol: gKartDK005Wheel1 - type: texture - offset: 0x8E714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_2: - symbol: gKartDK005Wheel2 - type: texture - offset: 0x8E794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_3: - symbol: gKartDK005Wheel3 - type: texture - offset: 0x8E814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_0: - symbol: gKartDK006Wheel0 - type: texture - offset: 0x8E894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_1: - symbol: gKartDK006Wheel1 - type: texture - offset: 0x8E914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_2: - symbol: gKartDK006Wheel2 - type: texture - offset: 0x8E994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_3: - symbol: gKartDK006Wheel3 - type: texture - offset: 0x8EA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_0: - symbol: gKartDK007Wheel0 - type: texture - offset: 0x8EA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_1: - symbol: gKartDK007Wheel1 - type: texture - offset: 0x8EB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_2: - symbol: gKartDK007Wheel2 - type: texture - offset: 0x8EB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_3: - symbol: gKartDK007Wheel3 - type: texture - offset: 0x8EC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_0: - symbol: gKartDK008Wheel0 - type: texture - offset: 0x8EC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_1: - symbol: gKartDK008Wheel1 - type: texture - offset: 0x8ED14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_2: - symbol: gKartDK008Wheel2 - type: texture - offset: 0x8ED94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_3: - symbol: gKartDK008Wheel3 - type: texture - offset: 0x8EE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_0: - symbol: gKartDK009Wheel0 - type: texture - offset: 0x8EE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_1: - symbol: gKartDK009Wheel1 - type: texture - offset: 0x8EF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_2: - symbol: gKartDK009Wheel2 - type: texture - offset: 0x8EF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_3: - symbol: gKartDK009Wheel3 - type: texture - offset: 0x8F014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_0: - symbol: gKartDK010Wheel0 - type: texture - offset: 0x8F094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_1: - symbol: gKartDK010Wheel1 - type: texture - offset: 0x8F114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_2: - symbol: gKartDK010Wheel2 - type: texture - offset: 0x8F194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_3: - symbol: gKartDK010Wheel3 - type: texture - offset: 0x8F214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_0: - symbol: gKartDK011Wheel0 - type: texture - offset: 0x8F294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_1: - symbol: gKartDK011Wheel1 - type: texture - offset: 0x8F314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_2: - symbol: gKartDK011Wheel2 - type: texture - offset: 0x8F394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_3: - symbol: gKartDK011Wheel3 - type: texture - offset: 0x8F414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_0: - symbol: gKartDK012Wheel0 - type: texture - offset: 0x8F494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_1: - symbol: gKartDK012Wheel1 - type: texture - offset: 0x8F514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_2: - symbol: gKartDK012Wheel2 - type: texture - offset: 0x8F594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_3: - symbol: gKartDK012Wheel3 - type: texture - offset: 0x8F614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_0: - symbol: gKartDK013Wheel0 - type: texture - offset: 0x8F694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_1: - symbol: gKartDK013Wheel1 - type: texture - offset: 0x8F714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_2: - symbol: gKartDK013Wheel2 - type: texture - offset: 0x8F794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_3: - symbol: gKartDK013Wheel3 - type: texture - offset: 0x8F814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_0: - symbol: gKartDK014Wheel0 - type: texture - offset: 0x8F894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_1: - symbol: gKartDK014Wheel1 - type: texture - offset: 0x8F914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_2: - symbol: gKartDK014Wheel2 - type: texture - offset: 0x8F994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_3: - symbol: gKartDK014Wheel3 - type: texture - offset: 0x8FA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_0: - symbol: gKartDK015Wheel0 - type: texture - offset: 0x8FA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_1: - symbol: gKartDK015Wheel1 - type: texture - offset: 0x8FB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_2: - symbol: gKartDK015Wheel2 - type: texture - offset: 0x8FB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_3: - symbol: gKartDK015Wheel3 - type: texture - offset: 0x8FC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_0: - symbol: gKartDK016Wheel0 - type: texture - offset: 0x8FC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_1: - symbol: gKartDK016Wheel1 - type: texture - offset: 0x8FD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_2: - symbol: gKartDK016Wheel2 - type: texture - offset: 0x8FD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_3: - symbol: gKartDK016Wheel3 - type: texture - offset: 0x8FE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_0: - symbol: gKartDK017Wheel0 - type: texture - offset: 0x8FE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_1: - symbol: gKartDK017Wheel1 - type: texture - offset: 0x8FF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_2: - symbol: gKartDK017Wheel2 - type: texture - offset: 0x8FF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_3: - symbol: gKartDK017Wheel3 - type: texture - offset: 0x90014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_0: - symbol: gKartDK018Wheel0 - type: texture - offset: 0x90094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_1: - symbol: gKartDK018Wheel1 - type: texture - offset: 0x90114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_2: - symbol: gKartDK018Wheel2 - type: texture - offset: 0x90194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_3: - symbol: gKartDK018Wheel3 - type: texture - offset: 0x90214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_0: - symbol: gKartDK019Wheel0 - type: texture - offset: 0x90294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_1: - symbol: gKartDK019Wheel1 - type: texture - offset: 0x90314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_2: - symbol: gKartDK019Wheel2 - type: texture - offset: 0x90394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_3: - symbol: gKartDK019Wheel3 - type: texture - offset: 0x90414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_0: - symbol: gKartDK020Wheel0 - type: texture - offset: 0x90494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_1: - symbol: gKartDK020Wheel1 - type: texture - offset: 0x90514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_2: - symbol: gKartDK020Wheel2 - type: texture - offset: 0x90594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_3: - symbol: gKartDK020Wheel3 - type: texture - offset: 0x90614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_0: - symbol: gKartDK021Wheel0 - type: texture - offset: 0x90694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_1: - symbol: gKartDK021Wheel1 - type: texture - offset: 0x90714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_2: - symbol: gKartDK021Wheel2 - type: texture - offset: 0x90794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_3: - symbol: gKartDK021Wheel3 - type: texture - offset: 0x90814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_0: - symbol: gKartDK022Wheel0 - type: texture - offset: 0x90894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_1: - symbol: gKartDK022Wheel1 - type: texture - offset: 0x90914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_2: - symbol: gKartDK022Wheel2 - type: texture - offset: 0x90994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_3: - symbol: gKartDK022Wheel3 - type: texture - offset: 0x90A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_0: - symbol: gKartDK023Wheel0 - type: texture - offset: 0x90A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_1: - symbol: gKartDK023Wheel1 - type: texture - offset: 0x90B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_2: - symbol: gKartDK023Wheel2 - type: texture - offset: 0x90B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_3: - symbol: gKartDK023Wheel3 - type: texture - offset: 0x90C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_0: - symbol: gKartDK024Wheel0 - type: texture - offset: 0x90C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_1: - symbol: gKartDK024Wheel1 - type: texture - offset: 0x90D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_2: - symbol: gKartDK024Wheel2 - type: texture - offset: 0x90D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_3: - symbol: gKartDK024Wheel3 - type: texture - offset: 0x90E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_0: - symbol: gKartDK025Wheel0 - type: texture - offset: 0x90E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_1: - symbol: gKartDK025Wheel1 - type: texture - offset: 0x90F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_2: - symbol: gKartDK025Wheel2 - type: texture - offset: 0x90F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_3: - symbol: gKartDK025Wheel3 - type: texture - offset: 0x91014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_0: - symbol: gKartDK026Wheel0 - type: texture - offset: 0x91094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_1: - symbol: gKartDK026Wheel1 - type: texture - offset: 0x91114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_2: - symbol: gKartDK026Wheel2 - type: texture - offset: 0x91194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_3: - symbol: gKartDK026Wheel3 - type: texture - offset: 0x91214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_0: - symbol: gKartDK027Wheel0 - type: texture - offset: 0x91294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_1: - symbol: gKartDK027Wheel1 - type: texture - offset: 0x91314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_2: - symbol: gKartDK027Wheel2 - type: texture - offset: 0x91394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_3: - symbol: gKartDK027Wheel3 - type: texture - offset: 0x91414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_0: - symbol: gKartDK028Wheel0 - type: texture - offset: 0x91494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_1: - symbol: gKartDK028Wheel1 - type: texture - offset: 0x91514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_2: - symbol: gKartDK028Wheel2 - type: texture - offset: 0x91594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_3: - symbol: gKartDK028Wheel3 - type: texture - offset: 0x91614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_0: - symbol: gKartDK029Wheel0 - type: texture - offset: 0x91694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_1: - symbol: gKartDK029Wheel1 - type: texture - offset: 0x91714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_2: - symbol: gKartDK029Wheel2 - type: texture - offset: 0x91794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_3: - symbol: gKartDK029Wheel3 - type: texture - offset: 0x91814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_0: - symbol: gKartDK030Wheel0 - type: texture - offset: 0x91894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_1: - symbol: gKartDK030Wheel1 - type: texture - offset: 0x91914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_2: - symbol: gKartDK030Wheel2 - type: texture - offset: 0x91994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_3: - symbol: gKartDK030Wheel3 - type: texture - offset: 0x91A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_0: - symbol: gKartDK031Wheel0 - type: texture - offset: 0x91A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_1: - symbol: gKartDK031Wheel1 - type: texture - offset: 0x91B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_2: - symbol: gKartDK031Wheel2 - type: texture - offset: 0x91B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_3: - symbol: gKartDK031Wheel3 - type: texture - offset: 0x91C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_0: - symbol: gKartDK032Wheel0 - type: texture - offset: 0x91C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_1: - symbol: gKartDK032Wheel1 - type: texture - offset: 0x91D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_2: - symbol: gKartDK032Wheel2 - type: texture - offset: 0x91D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_3: - symbol: gKartDK032Wheel3 - type: texture - offset: 0x91E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_0: - symbol: gKartDK033Wheel0 - type: texture - offset: 0x91E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_1: - symbol: gKartDK033Wheel1 - type: texture - offset: 0x91F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_2: - symbol: gKartDK033Wheel2 - type: texture - offset: 0x91F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_3: - symbol: gKartDK033Wheel3 - type: texture - offset: 0x92014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_0: - symbol: gKartDK034Wheel0 - type: texture - offset: 0x92094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_1: - symbol: gKartDK034Wheel1 - type: texture - offset: 0x92114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_2: - symbol: gKartDK034Wheel2 - type: texture - offset: 0x92194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_3: - symbol: gKartDK034Wheel3 - type: texture - offset: 0x92214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_0: - symbol: gKartDK035Wheel0 - type: texture - offset: 0x92294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_1: - symbol: gKartDK035Wheel1 - type: texture - offset: 0x92314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_2: - symbol: gKartDK035Wheel2 - type: texture - offset: 0x92394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_3: - symbol: gKartDK035Wheel3 - type: texture - offset: 0x92414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_0: - symbol: gKartDK036Wheel0 - type: texture - offset: 0x92494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_1: - symbol: gKartDK036Wheel1 - type: texture - offset: 0x92514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_2: - symbol: gKartDK036Wheel2 - type: texture - offset: 0x92594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_3: - symbol: gKartDK036Wheel3 - type: texture - offset: 0x92614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_0: - symbol: gKartDK037Wheel0 - type: texture - offset: 0x92694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_1: - symbol: gKartDK037Wheel1 - type: texture - offset: 0x92714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_2: - symbol: gKartDK037Wheel2 - type: texture - offset: 0x92794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_3: - symbol: gKartDK037Wheel3 - type: texture - offset: 0x92814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_0: - symbol: gKartDK038Wheel0 - type: texture - offset: 0x92894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_1: - symbol: gKartDK038Wheel1 - type: texture - offset: 0x92914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_2: - symbol: gKartDK038Wheel2 - type: texture - offset: 0x92994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_3: - symbol: gKartDK038Wheel3 - type: texture - offset: 0x92A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_0: - symbol: gKartDK039Wheel0 - type: texture - offset: 0x92A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_1: - symbol: gKartDK039Wheel1 - type: texture - offset: 0x92B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_2: - symbol: gKartDK039Wheel2 - type: texture - offset: 0x92B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_3: - symbol: gKartDK039Wheel3 - type: texture - offset: 0x92C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_0: - symbol: gKartDK040Wheel0 - type: texture - offset: 0x92C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_1: - symbol: gKartDK040Wheel1 - type: texture - offset: 0x92D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_2: - symbol: gKartDK040Wheel2 - type: texture - offset: 0x92D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_3: - symbol: gKartDK040Wheel3 - type: texture - offset: 0x92E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_0: - symbol: gKartDK041Wheel0 - type: texture - offset: 0x92E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_1: - symbol: gKartDK041Wheel1 - type: texture - offset: 0x92F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_2: - symbol: gKartDK041Wheel2 - type: texture - offset: 0x92F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_3: - symbol: gKartDK041Wheel3 - type: texture - offset: 0x93014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_0: - symbol: gKartDK042Wheel0 - type: texture - offset: 0x93094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_1: - symbol: gKartDK042Wheel1 - type: texture - offset: 0x93114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_2: - symbol: gKartDK042Wheel2 - type: texture - offset: 0x93194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_3: - symbol: gKartDK042Wheel3 - type: texture - offset: 0x93214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_0: - symbol: gKartDK043Wheel0 - type: texture - offset: 0x93294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_1: - symbol: gKartDK043Wheel1 - type: texture - offset: 0x93314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_2: - symbol: gKartDK043Wheel2 - type: texture - offset: 0x93394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_3: - symbol: gKartDK043Wheel3 - type: texture - offset: 0x93414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_0: - symbol: gKartDK044Wheel0 - type: texture - offset: 0x93494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_1: - symbol: gKartDK044Wheel1 - type: texture - offset: 0x93514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_2: - symbol: gKartDK044Wheel2 - type: texture - offset: 0x93594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_3: - symbol: gKartDK044Wheel3 - type: texture - offset: 0x93614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_0: - symbol: gKartDK045Wheel0 - type: texture - offset: 0x93694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_1: - symbol: gKartDK045Wheel1 - type: texture - offset: 0x93714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_2: - symbol: gKartDK045Wheel2 - type: texture - offset: 0x93794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_3: - symbol: gKartDK045Wheel3 - type: texture - offset: 0x93814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_0: - symbol: gKartDK046Wheel0 - type: texture - offset: 0x93894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_1: - symbol: gKartDK046Wheel1 - type: texture - offset: 0x93914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_2: - symbol: gKartDK046Wheel2 - type: texture - offset: 0x93994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_3: - symbol: gKartDK046Wheel3 - type: texture - offset: 0x93A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_0: - symbol: gKartDK047Wheel0 - type: texture - offset: 0x93A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_1: - symbol: gKartDK047Wheel1 - type: texture - offset: 0x93B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_2: - symbol: gKartDK047Wheel2 - type: texture - offset: 0x93B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_3: - symbol: gKartDK047Wheel3 - type: texture - offset: 0x93C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_0: - symbol: gKartDK048Wheel0 - type: texture - offset: 0x93C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_1: - symbol: gKartDK048Wheel1 - type: texture - offset: 0x93D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_2: - symbol: gKartDK048Wheel2 - type: texture - offset: 0x93D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_3: - symbol: gKartDK048Wheel3 - type: texture - offset: 0x93E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_0: - symbol: gKartDK049Wheel0 - type: texture - offset: 0x93E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_1: - symbol: gKartDK049Wheel1 - type: texture - offset: 0x93F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_2: - symbol: gKartDK049Wheel2 - type: texture - offset: 0x93F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_3: - symbol: gKartDK049Wheel3 - type: texture - offset: 0x94014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_0: - symbol: gKartDK050Wheel0 - type: texture - offset: 0x94094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_1: - symbol: gKartDK050Wheel1 - type: texture - offset: 0x94114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_2: - symbol: gKartDK050Wheel2 - type: texture - offset: 0x94194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_3: - symbol: gKartDK050Wheel3 - type: texture - offset: 0x94214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_0: - symbol: gKartDK051Wheel0 - type: texture - offset: 0x94294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_1: - symbol: gKartDK051Wheel1 - type: texture - offset: 0x94314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_2: - symbol: gKartDK051Wheel2 - type: texture - offset: 0x94394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_3: - symbol: gKartDK051Wheel3 - type: texture - offset: 0x94414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_0: - symbol: gKartDK052Wheel0 - type: texture - offset: 0x94494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_1: - symbol: gKartDK052Wheel1 - type: texture - offset: 0x94514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_2: - symbol: gKartDK052Wheel2 - type: texture - offset: 0x94594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_3: - symbol: gKartDK052Wheel3 - type: texture - offset: 0x94614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_0: - symbol: gKartDK053Wheel0 - type: texture - offset: 0x94694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_1: - symbol: gKartDK053Wheel1 - type: texture - offset: 0x94714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_2: - symbol: gKartDK053Wheel2 - type: texture - offset: 0x94794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_3: - symbol: gKartDK053Wheel3 - type: texture - offset: 0x94814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_0: - symbol: gKartDK054Wheel0 - type: texture - offset: 0x94894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_1: - symbol: gKartDK054Wheel1 - type: texture - offset: 0x94914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_2: - symbol: gKartDK054Wheel2 - type: texture - offset: 0x94994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_3: - symbol: gKartDK054Wheel3 - type: texture - offset: 0x94A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_0: - symbol: gKartDK055Wheel0 - type: texture - offset: 0x94A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_1: - symbol: gKartDK055Wheel1 - type: texture - offset: 0x94B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_2: - symbol: gKartDK055Wheel2 - type: texture - offset: 0x94B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_3: - symbol: gKartDK055Wheel3 - type: texture - offset: 0x94C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_0: - symbol: gKartDK056Wheel0 - type: texture - offset: 0x94C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_1: - symbol: gKartDK056Wheel1 - type: texture - offset: 0x94D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_2: - symbol: gKartDK056Wheel2 - type: texture - offset: 0x94D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_3: - symbol: gKartDK056Wheel3 - type: texture - offset: 0x94E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_0: - symbol: gKartDK057Wheel0 - type: texture - offset: 0x94E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_1: - symbol: gKartDK057Wheel1 - type: texture - offset: 0x94F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_2: - symbol: gKartDK057Wheel2 - type: texture - offset: 0x94F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_3: - symbol: gKartDK057Wheel3 - type: texture - offset: 0x95014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_0: - symbol: gKartDK058Wheel0 - type: texture - offset: 0x95094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_1: - symbol: gKartDK058Wheel1 - type: texture - offset: 0x95114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_2: - symbol: gKartDK058Wheel2 - type: texture - offset: 0x95194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_3: - symbol: gKartDK058Wheel3 - type: texture - offset: 0x95214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_0: - symbol: gKartDK059Wheel0 - type: texture - offset: 0x95294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_1: - symbol: gKartDK059Wheel1 - type: texture - offset: 0x95314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_2: - symbol: gKartDK059Wheel2 - type: texture - offset: 0x95394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_3: - symbol: gKartDK059Wheel3 - type: texture - offset: 0x95414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_0: - symbol: gKartDK060Wheel0 - type: texture - offset: 0x95494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_1: - symbol: gKartDK060Wheel1 - type: texture - offset: 0x95514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_2: - symbol: gKartDK060Wheel2 - type: texture - offset: 0x95594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_3: - symbol: gKartDK060Wheel3 - type: texture - offset: 0x95614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_0: - symbol: gKartDK061Wheel0 - type: texture - offset: 0x95694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_1: - symbol: gKartDK061Wheel1 - type: texture - offset: 0x95714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_2: - symbol: gKartDK061Wheel2 - type: texture - offset: 0x95794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_3: - symbol: gKartDK061Wheel3 - type: texture - offset: 0x95814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_0: - symbol: gKartDK062Wheel0 - type: texture - offset: 0x95894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_1: - symbol: gKartDK062Wheel1 - type: texture - offset: 0x95914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_2: - symbol: gKartDK062Wheel2 - type: texture - offset: 0x95994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_3: - symbol: gKartDK062Wheel3 - type: texture - offset: 0x95A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_0: - symbol: gKartDK063Wheel0 - type: texture - offset: 0x95A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_1: - symbol: gKartDK063Wheel1 - type: texture - offset: 0x95B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_2: - symbol: gKartDK063Wheel2 - type: texture - offset: 0x95B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_3: - symbol: gKartDK063Wheel3 - type: texture - offset: 0x95C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_0: - symbol: gKartDK064Wheel0 - type: texture - offset: 0x95C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_1: - symbol: gKartDK064Wheel1 - type: texture - offset: 0x95D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_2: - symbol: gKartDK064Wheel2 - type: texture - offset: 0x95D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_3: - symbol: gKartDK064Wheel3 - type: texture - offset: 0x95E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_0: - symbol: gKartDK065Wheel0 - type: texture - offset: 0x95E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_1: - symbol: gKartDK065Wheel1 - type: texture - offset: 0x95F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_2: - symbol: gKartDK065Wheel2 - type: texture - offset: 0x95F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_3: - symbol: gKartDK065Wheel3 - type: texture - offset: 0x96014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_0: - symbol: gKartDK066Wheel0 - type: texture - offset: 0x96094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_1: - symbol: gKartDK066Wheel1 - type: texture - offset: 0x96114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_2: - symbol: gKartDK066Wheel2 - type: texture - offset: 0x96194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_3: - symbol: gKartDK066Wheel3 - type: texture - offset: 0x96214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_0: - symbol: gKartDK067Wheel0 - type: texture - offset: 0x96294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_1: - symbol: gKartDK067Wheel1 - type: texture - offset: 0x96314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_2: - symbol: gKartDK067Wheel2 - type: texture - offset: 0x96394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_3: - symbol: gKartDK067Wheel3 - type: texture - offset: 0x96414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_0: - symbol: gKartDK068Wheel0 - type: texture - offset: 0x96494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_1: - symbol: gKartDK068Wheel1 - type: texture - offset: 0x96514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_2: - symbol: gKartDK068Wheel2 - type: texture - offset: 0x96594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_3: - symbol: gKartDK068Wheel3 - type: texture - offset: 0x96614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_0: - symbol: gKartDK069Wheel0 - type: texture - offset: 0x96694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_1: - symbol: gKartDK069Wheel1 - type: texture - offset: 0x96714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_2: - symbol: gKartDK069Wheel2 - type: texture - offset: 0x96794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_3: - symbol: gKartDK069Wheel3 - type: texture - offset: 0x96814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_0: - symbol: gKartDK070Wheel0 - type: texture - offset: 0x96894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_1: - symbol: gKartDK070Wheel1 - type: texture - offset: 0x96914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_2: - symbol: gKartDK070Wheel2 - type: texture - offset: 0x96994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_3: - symbol: gKartDK070Wheel3 - type: texture - offset: 0x96A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_0: - symbol: gKartDK071Wheel0 - type: texture - offset: 0x96A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_1: - symbol: gKartDK071Wheel1 - type: texture - offset: 0x96B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_2: - symbol: gKartDK071Wheel2 - type: texture - offset: 0x96B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_3: - symbol: gKartDK071Wheel3 - type: texture - offset: 0x96C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_0: - symbol: gKartDK072Wheel0 - type: texture - offset: 0x96C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_1: - symbol: gKartDK072Wheel1 - type: texture - offset: 0x96D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_2: - symbol: gKartDK072Wheel2 - type: texture - offset: 0x96D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_3: - symbol: gKartDK072Wheel3 - type: texture - offset: 0x96E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_0: - symbol: gKartDK073Wheel0 - type: texture - offset: 0x96E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_1: - symbol: gKartDK073Wheel1 - type: texture - offset: 0x96F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_2: - symbol: gKartDK073Wheel2 - type: texture - offset: 0x96F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_3: - symbol: gKartDK073Wheel3 - type: texture - offset: 0x97014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_0: - symbol: gKartDK074Wheel0 - type: texture - offset: 0x97094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_1: - symbol: gKartDK074Wheel1 - type: texture - offset: 0x97114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_2: - symbol: gKartDK074Wheel2 - type: texture - offset: 0x97194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_3: - symbol: gKartDK074Wheel3 - type: texture - offset: 0x97214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_0: - symbol: gKartDK075Wheel0 - type: texture - offset: 0x97294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_1: - symbol: gKartDK075Wheel1 - type: texture - offset: 0x97314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_2: - symbol: gKartDK075Wheel2 - type: texture - offset: 0x97394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_3: - symbol: gKartDK075Wheel3 - type: texture - offset: 0x97414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_0: - symbol: gKartDK076Wheel0 - type: texture - offset: 0x97494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_1: - symbol: gKartDK076Wheel1 - type: texture - offset: 0x97514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_2: - symbol: gKartDK076Wheel2 - type: texture - offset: 0x97594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_3: - symbol: gKartDK076Wheel3 - type: texture - offset: 0x97614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_0: - symbol: gKartDK077Wheel0 - type: texture - offset: 0x97694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_1: - symbol: gKartDK077Wheel1 - type: texture - offset: 0x97714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_2: - symbol: gKartDK077Wheel2 - type: texture - offset: 0x97794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_3: - symbol: gKartDK077Wheel3 - type: texture - offset: 0x97814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_0: - symbol: gKartDK078Wheel0 - type: texture - offset: 0x97894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_1: - symbol: gKartDK078Wheel1 - type: texture - offset: 0x97914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_2: - symbol: gKartDK078Wheel2 - type: texture - offset: 0x97994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_3: - symbol: gKartDK078Wheel3 - type: texture - offset: 0x97A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_0: - symbol: gKartDK079Wheel0 - type: texture - offset: 0x97A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_1: - symbol: gKartDK079Wheel1 - type: texture - offset: 0x97B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_2: - symbol: gKartDK079Wheel2 - type: texture - offset: 0x97B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_3: - symbol: gKartDK079Wheel3 - type: texture - offset: 0x97C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_0: - symbol: gKartDK080Wheel0 - type: texture - offset: 0x97C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_1: - symbol: gKartDK080Wheel1 - type: texture - offset: 0x97D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_2: - symbol: gKartDK080Wheel2 - type: texture - offset: 0x97D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_3: - symbol: gKartDK080Wheel3 - type: texture - offset: 0x97E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_0: - symbol: gKartDK081Wheel0 - type: texture - offset: 0x97E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_1: - symbol: gKartDK081Wheel1 - type: texture - offset: 0x97F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_2: - symbol: gKartDK081Wheel2 - type: texture - offset: 0x97F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_3: - symbol: gKartDK081Wheel3 - type: texture - offset: 0x98014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_0: - symbol: gKartDK082Wheel0 - type: texture - offset: 0x98094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_1: - symbol: gKartDK082Wheel1 - type: texture - offset: 0x98114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_2: - symbol: gKartDK082Wheel2 - type: texture - offset: 0x98194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_3: - symbol: gKartDK082Wheel3 - type: texture - offset: 0x98214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_0: - symbol: gKartDK083Wheel0 - type: texture - offset: 0x98294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_1: - symbol: gKartDK083Wheel1 - type: texture - offset: 0x98314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_2: - symbol: gKartDK083Wheel2 - type: texture - offset: 0x98394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_3: - symbol: gKartDK083Wheel3 - type: texture - offset: 0x98414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_0: - symbol: gKartDK084Wheel0 - type: texture - offset: 0x98494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_1: - symbol: gKartDK084Wheel1 - type: texture - offset: 0x98514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_2: - symbol: gKartDK084Wheel2 - type: texture - offset: 0x98594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_3: - symbol: gKartDK084Wheel3 - type: texture - offset: 0x98614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_0: - symbol: gKartDK085Wheel0 - type: texture - offset: 0x98694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_1: - symbol: gKartDK085Wheel1 - type: texture - offset: 0x98714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_2: - symbol: gKartDK085Wheel2 - type: texture - offset: 0x98794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_3: - symbol: gKartDK085Wheel3 - type: texture - offset: 0x98814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_0: - symbol: gKartDK086Wheel0 - type: texture - offset: 0x98894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_1: - symbol: gKartDK086Wheel1 - type: texture - offset: 0x98914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_2: - symbol: gKartDK086Wheel2 - type: texture - offset: 0x98994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_3: - symbol: gKartDK086Wheel3 - type: texture - offset: 0x98A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_0: - symbol: gKartDK087Wheel0 - type: texture - offset: 0x98A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_1: - symbol: gKartDK087Wheel1 - type: texture - offset: 0x98B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_2: - symbol: gKartDK087Wheel2 - type: texture - offset: 0x98B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_3: - symbol: gKartDK087Wheel3 - type: texture - offset: 0x98C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_0: - symbol: gKartDK088Wheel0 - type: texture - offset: 0x98C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_1: - symbol: gKartDK088Wheel1 - type: texture - offset: 0x98D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_2: - symbol: gKartDK088Wheel2 - type: texture - offset: 0x98D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_3: - symbol: gKartDK088Wheel3 - type: texture - offset: 0x98E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_0: - symbol: gKartDK089Wheel0 - type: texture - offset: 0x98E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_1: - symbol: gKartDK089Wheel1 - type: texture - offset: 0x98F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_2: - symbol: gKartDK089Wheel2 - type: texture - offset: 0x98F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_3: - symbol: gKartDK089Wheel3 - type: texture - offset: 0x99014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_0: - symbol: gKartDK090Wheel0 - type: texture - offset: 0x99094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_1: - symbol: gKartDK090Wheel1 - type: texture - offset: 0x99114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_2: - symbol: gKartDK090Wheel2 - type: texture - offset: 0x99194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_3: - symbol: gKartDK090Wheel3 - type: texture - offset: 0x99214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_0: - symbol: gKartDK091Wheel0 - type: texture - offset: 0x99294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_1: - symbol: gKartDK091Wheel1 - type: texture - offset: 0x99314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_2: - symbol: gKartDK091Wheel2 - type: texture - offset: 0x99394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_3: - symbol: gKartDK091Wheel3 - type: texture - offset: 0x99414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_0: - symbol: gKartDK092Wheel0 - type: texture - offset: 0x99494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_1: - symbol: gKartDK092Wheel1 - type: texture - offset: 0x99514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_2: - symbol: gKartDK092Wheel2 - type: texture - offset: 0x99594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_3: - symbol: gKartDK092Wheel3 - type: texture - offset: 0x99614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_0: - symbol: gKartDK093Wheel0 - type: texture - offset: 0x99694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_1: - symbol: gKartDK093Wheel1 - type: texture - offset: 0x99714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_2: - symbol: gKartDK093Wheel2 - type: texture - offset: 0x99794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_3: - symbol: gKartDK093Wheel3 - type: texture - offset: 0x99814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_0: - symbol: gKartDK094Wheel0 - type: texture - offset: 0x99894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_1: - symbol: gKartDK094Wheel1 - type: texture - offset: 0x99914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_2: - symbol: gKartDK094Wheel2 - type: texture - offset: 0x99994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_3: - symbol: gKartDK094Wheel3 - type: texture - offset: 0x99A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_0: - symbol: gKartDK095Wheel0 - type: texture - offset: 0x99A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_1: - symbol: gKartDK095Wheel1 - type: texture - offset: 0x99B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_2: - symbol: gKartDK095Wheel2 - type: texture - offset: 0x99B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_3: - symbol: gKartDK095Wheel3 - type: texture - offset: 0x99C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_0: - symbol: gKartDK096Wheel0 - type: texture - offset: 0x99C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_1: - symbol: gKartDK096Wheel1 - type: texture - offset: 0x99D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_2: - symbol: gKartDK096Wheel2 - type: texture - offset: 0x99D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_3: - symbol: gKartDK096Wheel3 - type: texture - offset: 0x99E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_0: - symbol: gKartDK097Wheel0 - type: texture - offset: 0x99E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_1: - symbol: gKartDK097Wheel1 - type: texture - offset: 0x99F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_2: - symbol: gKartDK097Wheel2 - type: texture - offset: 0x99F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_3: - symbol: gKartDK097Wheel3 - type: texture - offset: 0x9A014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_0: - symbol: gKartDK098Wheel0 - type: texture - offset: 0x9A094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_1: - symbol: gKartDK098Wheel1 - type: texture - offset: 0x9A114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_2: - symbol: gKartDK098Wheel2 - type: texture - offset: 0x9A194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_3: - symbol: gKartDK098Wheel3 - type: texture - offset: 0x9A214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_0: - symbol: gKartDK099Wheel0 - type: texture - offset: 0x9A294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_1: - symbol: gKartDK099Wheel1 - type: texture - offset: 0x9A314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_2: - symbol: gKartDK099Wheel2 - type: texture - offset: 0x9A394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_3: - symbol: gKartDK099Wheel3 - type: texture - offset: 0x9A414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_0: - symbol: gKartDK100Wheel0 - type: texture - offset: 0x9A494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_1: - symbol: gKartDK100Wheel1 - type: texture - offset: 0x9A514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_2: - symbol: gKartDK100Wheel2 - type: texture - offset: 0x9A594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_3: - symbol: gKartDK100Wheel3 - type: texture - offset: 0x9A614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_0: - symbol: gKartDK101Wheel0 - type: texture - offset: 0x9A694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_1: - symbol: gKartDK101Wheel1 - type: texture - offset: 0x9A714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_2: - symbol: gKartDK101Wheel2 - type: texture - offset: 0x9A794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_3: - symbol: gKartDK101Wheel3 - type: texture - offset: 0x9A814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_0: - symbol: gKartDK102Wheel0 - type: texture - offset: 0x9A894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_1: - symbol: gKartDK102Wheel1 - type: texture - offset: 0x9A914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_2: - symbol: gKartDK102Wheel2 - type: texture - offset: 0x9A994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_3: - symbol: gKartDK102Wheel3 - type: texture - offset: 0x9AA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_0: - symbol: gKartDK103Wheel0 - type: texture - offset: 0x9AA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_1: - symbol: gKartDK103Wheel1 - type: texture - offset: 0x9AB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_2: - symbol: gKartDK103Wheel2 - type: texture - offset: 0x9AB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_3: - symbol: gKartDK103Wheel3 - type: texture - offset: 0x9AC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_0: - symbol: gKartDK104Wheel0 - type: texture - offset: 0x9AC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_1: - symbol: gKartDK104Wheel1 - type: texture - offset: 0x9AD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_2: - symbol: gKartDK104Wheel2 - type: texture - offset: 0x9AD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_3: - symbol: gKartDK104Wheel3 - type: texture - offset: 0x9AE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_0: - symbol: gKartDK105Wheel0 - type: texture - offset: 0x9AE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_1: - symbol: gKartDK105Wheel1 - type: texture - offset: 0x9AF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_2: - symbol: gKartDK105Wheel2 - type: texture - offset: 0x9AF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_3: - symbol: gKartDK105Wheel3 - type: texture - offset: 0x9B014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_0: - symbol: gKartDK106Wheel0 - type: texture - offset: 0x9B094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_1: - symbol: gKartDK106Wheel1 - type: texture - offset: 0x9B114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_2: - symbol: gKartDK106Wheel2 - type: texture - offset: 0x9B194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_3: - symbol: gKartDK106Wheel3 - type: texture - offset: 0x9B214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_0: - symbol: gKartDK107Wheel0 - type: texture - offset: 0x9B294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_1: - symbol: gKartDK107Wheel1 - type: texture - offset: 0x9B314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_2: - symbol: gKartDK107Wheel2 - type: texture - offset: 0x9B394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_3: - symbol: gKartDK107Wheel3 - type: texture - offset: 0x9B414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_0: - symbol: gKartDK108Wheel0 - type: texture - offset: 0x9B494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_1: - symbol: gKartDK108Wheel1 - type: texture - offset: 0x9B514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_2: - symbol: gKartDK108Wheel2 - type: texture - offset: 0x9B594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_3: - symbol: gKartDK108Wheel3 - type: texture - offset: 0x9B614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_0: - symbol: gKartDK109Wheel0 - type: texture - offset: 0x9B694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_1: - symbol: gKartDK109Wheel1 - type: texture - offset: 0x9B714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_2: - symbol: gKartDK109Wheel2 - type: texture - offset: 0x9B794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_3: - symbol: gKartDK109Wheel3 - type: texture - offset: 0x9B814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_0: - symbol: gKartDK110Wheel0 - type: texture - offset: 0x9B894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_1: - symbol: gKartDK110Wheel1 - type: texture - offset: 0x9B914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_2: - symbol: gKartDK110Wheel2 - type: texture - offset: 0x9B994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_3: - symbol: gKartDK110Wheel3 - type: texture - offset: 0x9BA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_0: - symbol: gKartDK111Wheel0 - type: texture - offset: 0x9BA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_1: - symbol: gKartDK111Wheel1 - type: texture - offset: 0x9BB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_2: - symbol: gKartDK111Wheel2 - type: texture - offset: 0x9BB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_3: - symbol: gKartDK111Wheel3 - type: texture - offset: 0x9BC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_0: - symbol: gKartDK112Wheel0 - type: texture - offset: 0x9BC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_1: - symbol: gKartDK112Wheel1 - type: texture - offset: 0x9BD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_2: - symbol: gKartDK112Wheel2 - type: texture - offset: 0x9BD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_3: - symbol: gKartDK112Wheel3 - type: texture - offset: 0x9BE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_0: - symbol: gKartDK113Wheel0 - type: texture - offset: 0x9BE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_1: - symbol: gKartDK113Wheel1 - type: texture - offset: 0x9BF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_2: - symbol: gKartDK113Wheel2 - type: texture - offset: 0x9BF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_3: - symbol: gKartDK113Wheel3 - type: texture - offset: 0x9C014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_0: - symbol: gKartDK114Wheel0 - type: texture - offset: 0x9C094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_1: - symbol: gKartDK114Wheel1 - type: texture - offset: 0x9C114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_2: - symbol: gKartDK114Wheel2 - type: texture - offset: 0x9C194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_3: - symbol: gKartDK114Wheel3 - type: texture - offset: 0x9C214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_0: - symbol: gKartDK115Wheel0 - type: texture - offset: 0x9C294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_1: - symbol: gKartDK115Wheel1 - type: texture - offset: 0x9C314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_2: - symbol: gKartDK115Wheel2 - type: texture - offset: 0x9C394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_3: - symbol: gKartDK115Wheel3 - type: texture - offset: 0x9C414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_0: - symbol: gKartDK116Wheel0 - type: texture - offset: 0x9C494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_1: - symbol: gKartDK116Wheel1 - type: texture - offset: 0x9C514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_2: - symbol: gKartDK116Wheel2 - type: texture - offset: 0x9C594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_3: - symbol: gKartDK116Wheel3 - type: texture - offset: 0x9C614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_0: - symbol: gKartDK117Wheel0 - type: texture - offset: 0x9C694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_1: - symbol: gKartDK117Wheel1 - type: texture - offset: 0x9C714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_2: - symbol: gKartDK117Wheel2 - type: texture - offset: 0x9C794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_3: - symbol: gKartDK117Wheel3 - type: texture - offset: 0x9C814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_0: - symbol: gKartDK118Wheel0 - type: texture - offset: 0x9C894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_1: - symbol: gKartDK118Wheel1 - type: texture - offset: 0x9C914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_2: - symbol: gKartDK118Wheel2 - type: texture - offset: 0x9C994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_3: - symbol: gKartDK118Wheel3 - type: texture - offset: 0x9CA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_0: - symbol: gKartDK119Wheel0 - type: texture - offset: 0x9CA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_1: - symbol: gKartDK119Wheel1 - type: texture - offset: 0x9CB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_2: - symbol: gKartDK119Wheel2 - type: texture - offset: 0x9CB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_3: - symbol: gKartDK119Wheel3 - type: texture - offset: 0x9CC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_0: - symbol: gKartDK120Wheel0 - type: texture - offset: 0x9CC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_1: - symbol: gKartDK120Wheel1 - type: texture - offset: 0x9CD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_2: - symbol: gKartDK120Wheel2 - type: texture - offset: 0x9CD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_3: - symbol: gKartDK120Wheel3 - type: texture - offset: 0x9CE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_0: - symbol: gKartDK121Wheel0 - type: texture - offset: 0x9CE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_1: - symbol: gKartDK121Wheel1 - type: texture - offset: 0x9CF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_2: - symbol: gKartDK121Wheel2 - type: texture - offset: 0x9CF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_3: - symbol: gKartDK121Wheel3 - type: texture - offset: 0x9D014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_0: - symbol: gKartDK122Wheel0 - type: texture - offset: 0x9D094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_1: - symbol: gKartDK122Wheel1 - type: texture - offset: 0x9D114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_2: - symbol: gKartDK122Wheel2 - type: texture - offset: 0x9D194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_3: - symbol: gKartDK122Wheel3 - type: texture - offset: 0x9D214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_0: - symbol: gKartDK123Wheel0 - type: texture - offset: 0x9D294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_1: - symbol: gKartDK123Wheel1 - type: texture - offset: 0x9D314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_2: - symbol: gKartDK123Wheel2 - type: texture - offset: 0x9D394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_3: - symbol: gKartDK123Wheel3 - type: texture - offset: 0x9D414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_0: - symbol: gKartDK124Wheel0 - type: texture - offset: 0x9D494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_1: - symbol: gKartDK124Wheel1 - type: texture - offset: 0x9D514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_2: - symbol: gKartDK124Wheel2 - type: texture - offset: 0x9D594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_3: - symbol: gKartDK124Wheel3 - type: texture - offset: 0x9D614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_0: - symbol: gKartDK125Wheel0 - type: texture - offset: 0x9D694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_1: - symbol: gKartDK125Wheel1 - type: texture - offset: 0x9D714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_2: - symbol: gKartDK125Wheel2 - type: texture - offset: 0x9D794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_3: - symbol: gKartDK125Wheel3 - type: texture - offset: 0x9D814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_0: - symbol: gKartDK126Wheel0 - type: texture - offset: 0x9D894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_1: - symbol: gKartDK126Wheel1 - type: texture - offset: 0x9D914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_2: - symbol: gKartDK126Wheel2 - type: texture - offset: 0x9D994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_3: - symbol: gKartDK126Wheel3 - type: texture - offset: 0x9DA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_0: - symbol: gKartDK127Wheel0 - type: texture - offset: 0x9DA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_1: - symbol: gKartDK127Wheel1 - type: texture - offset: 0x9DB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_2: - symbol: gKartDK127Wheel2 - type: texture - offset: 0x9DB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_3: - symbol: gKartDK127Wheel3 - type: texture - offset: 0x9DC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_0: - symbol: gKartDK128Wheel0 - type: texture - offset: 0x9DC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_1: - symbol: gKartDK128Wheel1 - type: texture - offset: 0x9DD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_2: - symbol: gKartDK128Wheel2 - type: texture - offset: 0x9DD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_3: - symbol: gKartDK128Wheel3 - type: texture - offset: 0x9DE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_0: - symbol: gKartDK129Wheel0 - type: texture - offset: 0x9DE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_1: - symbol: gKartDK129Wheel1 - type: texture - offset: 0x9DF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_2: - symbol: gKartDK129Wheel2 - type: texture - offset: 0x9DF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_3: - symbol: gKartDK129Wheel3 - type: texture - offset: 0x9E014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_0: - symbol: gKartDK130Wheel0 - type: texture - offset: 0x9E094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_1: - symbol: gKartDK130Wheel1 - type: texture - offset: 0x9E114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_2: - symbol: gKartDK130Wheel2 - type: texture - offset: 0x9E194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_3: - symbol: gKartDK130Wheel3 - type: texture - offset: 0x9E214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_0: - symbol: gKartDK131Wheel0 - type: texture - offset: 0x9E294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_1: - symbol: gKartDK131Wheel1 - type: texture - offset: 0x9E314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_2: - symbol: gKartDK131Wheel2 - type: texture - offset: 0x9E394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_3: - symbol: gKartDK131Wheel3 - type: texture - offset: 0x9E414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_0: - symbol: gKartDK132Wheel0 - type: texture - offset: 0x9E494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_1: - symbol: gKartDK132Wheel1 - type: texture - offset: 0x9E514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_2: - symbol: gKartDK132Wheel2 - type: texture - offset: 0x9E594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_3: - symbol: gKartDK132Wheel3 - type: texture - offset: 0x9E614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_0: - symbol: gKartDK133Wheel0 - type: texture - offset: 0x9E694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_1: - symbol: gKartDK133Wheel1 - type: texture - offset: 0x9E714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_2: - symbol: gKartDK133Wheel2 - type: texture - offset: 0x9E794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_3: - symbol: gKartDK133Wheel3 - type: texture - offset: 0x9E814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_0: - symbol: gKartDK134Wheel0 - type: texture - offset: 0x9E894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_1: - symbol: gKartDK134Wheel1 - type: texture - offset: 0x9E914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_2: - symbol: gKartDK134Wheel2 - type: texture - offset: 0x9E994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_3: - symbol: gKartDK134Wheel3 - type: texture - offset: 0x9EA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_0: - symbol: gKartDK135Wheel0 - type: texture - offset: 0x9EA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_1: - symbol: gKartDK135Wheel1 - type: texture - offset: 0x9EB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_2: - symbol: gKartDK135Wheel2 - type: texture - offset: 0x9EB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_3: - symbol: gKartDK135Wheel3 - type: texture - offset: 0x9EC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_0: - symbol: gKartDK136Wheel0 - type: texture - offset: 0x9EC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_1: - symbol: gKartDK136Wheel1 - type: texture - offset: 0x9ED14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_2: - symbol: gKartDK136Wheel2 - type: texture - offset: 0x9ED94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_3: - symbol: gKartDK136Wheel3 - type: texture - offset: 0x9EE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_0: - symbol: gKartDK137Wheel0 - type: texture - offset: 0x9EE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_1: - symbol: gKartDK137Wheel1 - type: texture - offset: 0x9EF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_2: - symbol: gKartDK137Wheel2 - type: texture - offset: 0x9EF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_3: - symbol: gKartDK137Wheel3 - type: texture - offset: 0x9F014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_0: - symbol: gKartDK138Wheel0 - type: texture - offset: 0x9F094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_1: - symbol: gKartDK138Wheel1 - type: texture - offset: 0x9F114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_2: - symbol: gKartDK138Wheel2 - type: texture - offset: 0x9F194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_3: - symbol: gKartDK138Wheel3 - type: texture - offset: 0x9F214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_0: - symbol: gKartDK139Wheel0 - type: texture - offset: 0x9F294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_1: - symbol: gKartDK139Wheel1 - type: texture - offset: 0x9F314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_2: - symbol: gKartDK139Wheel2 - type: texture - offset: 0x9F394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_3: - symbol: gKartDK139Wheel3 - type: texture - offset: 0x9F414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_0: - symbol: gKartDK140Wheel0 - type: texture - offset: 0x9F494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_1: - symbol: gKartDK140Wheel1 - type: texture - offset: 0x9F514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_2: - symbol: gKartDK140Wheel2 - type: texture - offset: 0x9F594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_3: - symbol: gKartDK140Wheel3 - type: texture - offset: 0x9F614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_0: - symbol: gKartDK141Wheel0 - type: texture - offset: 0x9F694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_1: - symbol: gKartDK141Wheel1 - type: texture - offset: 0x9F714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_2: - symbol: gKartDK141Wheel2 - type: texture - offset: 0x9F794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_3: - symbol: gKartDK141Wheel3 - type: texture - offset: 0x9F814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_0: - symbol: gKartDK142Wheel0 - type: texture - offset: 0x9F894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_1: - symbol: gKartDK142Wheel1 - type: texture - offset: 0x9F914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_2: - symbol: gKartDK142Wheel2 - type: texture - offset: 0x9F994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_3: - symbol: gKartDK142Wheel3 - type: texture - offset: 0x9FA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_0: - symbol: gKartDK143Wheel0 - type: texture - offset: 0x9FA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_1: - symbol: gKartDK143Wheel1 - type: texture - offset: 0x9FB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_2: - symbol: gKartDK143Wheel2 - type: texture - offset: 0x9FB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_3: - symbol: gKartDK143Wheel3 - type: texture - offset: 0x9FC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_0: - symbol: gKartDK144Wheel0 - type: texture - offset: 0x9FC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_1: - symbol: gKartDK144Wheel1 - type: texture - offset: 0x9FD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_2: - symbol: gKartDK144Wheel2 - type: texture - offset: 0x9FD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_3: - symbol: gKartDK144Wheel3 - type: texture - offset: 0x9FE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_0: - symbol: gKartDK145Wheel0 - type: texture - offset: 0x9FE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_1: - symbol: gKartDK145Wheel1 - type: texture - offset: 0x9FF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_2: - symbol: gKartDK145Wheel2 - type: texture - offset: 0x9FF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_3: - symbol: gKartDK145Wheel3 - type: texture - offset: 0xA0014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_0: - symbol: gKartDK146Wheel0 - type: texture - offset: 0xA0094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_1: - symbol: gKartDK146Wheel1 - type: texture - offset: 0xA0114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_2: - symbol: gKartDK146Wheel2 - type: texture - offset: 0xA0194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_3: - symbol: gKartDK146Wheel3 - type: texture - offset: 0xA0214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_0: - symbol: gKartDK147Wheel0 - type: texture - offset: 0xA0294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_1: - symbol: gKartDK147Wheel1 - type: texture - offset: 0xA0314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_2: - symbol: gKartDK147Wheel2 - type: texture - offset: 0xA0394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_3: - symbol: gKartDK147Wheel3 - type: texture - offset: 0xA0414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_0: - symbol: gKartDK148Wheel0 - type: texture - offset: 0xA0494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_1: - symbol: gKartDK148Wheel1 - type: texture - offset: 0xA0514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_2: - symbol: gKartDK148Wheel2 - type: texture - offset: 0xA0594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_3: - symbol: gKartDK148Wheel3 - type: texture - offset: 0xA0614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_0: - symbol: gKartDK149Wheel0 - type: texture - offset: 0xA0694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_1: - symbol: gKartDK149Wheel1 - type: texture - offset: 0xA0714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_2: - symbol: gKartDK149Wheel2 - type: texture - offset: 0xA0794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_3: - symbol: gKartDK149Wheel3 - type: texture - offset: 0xA0814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_0: - symbol: gKartDK150Wheel0 - type: texture - offset: 0xA0894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_1: - symbol: gKartDK150Wheel1 - type: texture - offset: 0xA0914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_2: - symbol: gKartDK150Wheel2 - type: texture - offset: 0xA0994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_3: - symbol: gKartDK150Wheel3 - type: texture - offset: 0xA0A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_0: - symbol: gKartDK151Wheel0 - type: texture - offset: 0xA0A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_1: - symbol: gKartDK151Wheel1 - type: texture - offset: 0xA0B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_2: - symbol: gKartDK151Wheel2 - type: texture - offset: 0xA0B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_3: - symbol: gKartDK151Wheel3 - type: texture - offset: 0xA0C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_0: - symbol: gKartDK152Wheel0 - type: texture - offset: 0xA0C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_1: - symbol: gKartDK152Wheel1 - type: texture - offset: 0xA0D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_2: - symbol: gKartDK152Wheel2 - type: texture - offset: 0xA0D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_3: - symbol: gKartDK152Wheel3 - type: texture - offset: 0xA0E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_0: - symbol: gKartDK153Wheel0 - type: texture - offset: 0xA0E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_1: - symbol: gKartDK153Wheel1 - type: texture - offset: 0xA0F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_2: - symbol: gKartDK153Wheel2 - type: texture - offset: 0xA0F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_3: - symbol: gKartDK153Wheel3 - type: texture - offset: 0xA1014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_0: - symbol: gKartDK154Wheel0 - type: texture - offset: 0xA1094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_1: - symbol: gKartDK154Wheel1 - type: texture - offset: 0xA1114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_2: - symbol: gKartDK154Wheel2 - type: texture - offset: 0xA1194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_3: - symbol: gKartDK154Wheel3 - type: texture - offset: 0xA1214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_0: - symbol: gKartDK155Wheel0 - type: texture - offset: 0xA1294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_1: - symbol: gKartDK155Wheel1 - type: texture - offset: 0xA1314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_2: - symbol: gKartDK155Wheel2 - type: texture - offset: 0xA1394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_3: - symbol: gKartDK155Wheel3 - type: texture - offset: 0xA1414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_0: - symbol: gKartDK156Wheel0 - type: texture - offset: 0xA1494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_1: - symbol: gKartDK156Wheel1 - type: texture - offset: 0xA1514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_2: - symbol: gKartDK156Wheel2 - type: texture - offset: 0xA1594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_3: - symbol: gKartDK156Wheel3 - type: texture - offset: 0xA1614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_0: - symbol: gKartDK157Wheel0 - type: texture - offset: 0xA1694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_1: - symbol: gKartDK157Wheel1 - type: texture - offset: 0xA1714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_2: - symbol: gKartDK157Wheel2 - type: texture - offset: 0xA1794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_3: - symbol: gKartDK157Wheel3 - type: texture - offset: 0xA1814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_0: - symbol: gKartDK158Wheel0 - type: texture - offset: 0xA1894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_1: - symbol: gKartDK158Wheel1 - type: texture - offset: 0xA1914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_2: - symbol: gKartDK158Wheel2 - type: texture - offset: 0xA1994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_3: - symbol: gKartDK158Wheel3 - type: texture - offset: 0xA1A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_0: - symbol: gKartDK159Wheel0 - type: texture - offset: 0xA1A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_1: - symbol: gKartDK159Wheel1 - type: texture - offset: 0xA1B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_2: - symbol: gKartDK159Wheel2 - type: texture - offset: 0xA1B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_3: - symbol: gKartDK159Wheel3 - type: texture - offset: 0xA1C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_0: - symbol: gKartDK160Wheel0 - type: texture - offset: 0xA1C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_1: - symbol: gKartDK160Wheel1 - type: texture - offset: 0xA1D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_2: - symbol: gKartDK160Wheel2 - type: texture - offset: 0xA1D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_3: - symbol: gKartDK160Wheel3 - type: texture - offset: 0xA1E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_0: - symbol: gKartDK161Wheel0 - type: texture - offset: 0xA1E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_1: - symbol: gKartDK161Wheel1 - type: texture - offset: 0xA1F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_2: - symbol: gKartDK161Wheel2 - type: texture - offset: 0xA1F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_3: - symbol: gKartDK161Wheel3 - type: texture - offset: 0xA2014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_0: - symbol: gKartDK162Wheel0 - type: texture - offset: 0xA2094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_1: - symbol: gKartDK162Wheel1 - type: texture - offset: 0xA2114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_2: - symbol: gKartDK162Wheel2 - type: texture - offset: 0xA2194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_3: - symbol: gKartDK162Wheel3 - type: texture - offset: 0xA2214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_0: - symbol: gKartDK163Wheel0 - type: texture - offset: 0xA2294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_1: - symbol: gKartDK163Wheel1 - type: texture - offset: 0xA2314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_2: - symbol: gKartDK163Wheel2 - type: texture - offset: 0xA2394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_3: - symbol: gKartDK163Wheel3 - type: texture - offset: 0xA2414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_0: - symbol: gKartDK164Wheel0 - type: texture - offset: 0xA2494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_1: - symbol: gKartDK164Wheel1 - type: texture - offset: 0xA2514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_2: - symbol: gKartDK164Wheel2 - type: texture - offset: 0xA2594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_3: - symbol: gKartDK164Wheel3 - type: texture - offset: 0xA2614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_0: - symbol: gKartDK165Wheel0 - type: texture - offset: 0xA2694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_1: - symbol: gKartDK165Wheel1 - type: texture - offset: 0xA2714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_2: - symbol: gKartDK165Wheel2 - type: texture - offset: 0xA2794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_3: - symbol: gKartDK165Wheel3 - type: texture - offset: 0xA2814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_0: - symbol: gKartDK166Wheel0 - type: texture - offset: 0xA2894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_1: - symbol: gKartDK166Wheel1 - type: texture - offset: 0xA2914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_2: - symbol: gKartDK166Wheel2 - type: texture - offset: 0xA2994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_3: - symbol: gKartDK166Wheel3 - type: texture - offset: 0xA2A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_0: - symbol: gKartDK167Wheel0 - type: texture - offset: 0xA2A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_1: - symbol: gKartDK167Wheel1 - type: texture - offset: 0xA2B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_2: - symbol: gKartDK167Wheel2 - type: texture - offset: 0xA2B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_3: - symbol: gKartDK167Wheel3 - type: texture - offset: 0xA2C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_0: - symbol: gKartDK168Wheel0 - type: texture - offset: 0xA2C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_1: - symbol: gKartDK168Wheel1 - type: texture - offset: 0xA2D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_2: - symbol: gKartDK168Wheel2 - type: texture - offset: 0xA2D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_3: - symbol: gKartDK168Wheel3 - type: texture - offset: 0xA2E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_0: - symbol: gKartDK169Wheel0 - type: texture - offset: 0xA2E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_1: - symbol: gKartDK169Wheel1 - type: texture - offset: 0xA2F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_2: - symbol: gKartDK169Wheel2 - type: texture - offset: 0xA2F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_3: - symbol: gKartDK169Wheel3 - type: texture - offset: 0xA3014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_0: - symbol: gKartDK170Wheel0 - type: texture - offset: 0xA3094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_1: - symbol: gKartDK170Wheel1 - type: texture - offset: 0xA3114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_2: - symbol: gKartDK170Wheel2 - type: texture - offset: 0xA3194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_3: - symbol: gKartDK170Wheel3 - type: texture - offset: 0xA3214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_0: - symbol: gKartDK171Wheel0 - type: texture - offset: 0xA3294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_1: - symbol: gKartDK171Wheel1 - type: texture - offset: 0xA3314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_2: - symbol: gKartDK171Wheel2 - type: texture - offset: 0xA3394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_3: - symbol: gKartDK171Wheel3 - type: texture - offset: 0xA3414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_0: - symbol: gKartDK172Wheel0 - type: texture - offset: 0xA3494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_1: - symbol: gKartDK172Wheel1 - type: texture - offset: 0xA3514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_2: - symbol: gKartDK172Wheel2 - type: texture - offset: 0xA3594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_3: - symbol: gKartDK172Wheel3 - type: texture - offset: 0xA3614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_0: - symbol: gKartDK173Wheel0 - type: texture - offset: 0xA3694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_1: - symbol: gKartDK173Wheel1 - type: texture - offset: 0xA3714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_2: - symbol: gKartDK173Wheel2 - type: texture - offset: 0xA3794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_3: - symbol: gKartDK173Wheel3 - type: texture - offset: 0xA3814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_0: - symbol: gKartDK174Wheel0 - type: texture - offset: 0xA3894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_1: - symbol: gKartDK174Wheel1 - type: texture - offset: 0xA3914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_2: - symbol: gKartDK174Wheel2 - type: texture - offset: 0xA3994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_3: - symbol: gKartDK174Wheel3 - type: texture - offset: 0xA3A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_0: - symbol: gKartDK175Wheel0 - type: texture - offset: 0xA3A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_1: - symbol: gKartDK175Wheel1 - type: texture - offset: 0xA3B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_2: - symbol: gKartDK175Wheel2 - type: texture - offset: 0xA3B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_3: - symbol: gKartDK175Wheel3 - type: texture - offset: 0xA3C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_0: - symbol: gKartDK176Wheel0 - type: texture - offset: 0xA3C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_1: - symbol: gKartDK176Wheel1 - type: texture - offset: 0xA3D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_2: - symbol: gKartDK176Wheel2 - type: texture - offset: 0xA3D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_3: - symbol: gKartDK176Wheel3 - type: texture - offset: 0xA3E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_0: - symbol: gKartDK177Wheel0 - type: texture - offset: 0xA3E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_1: - symbol: gKartDK177Wheel1 - type: texture - offset: 0xA3F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_2: - symbol: gKartDK177Wheel2 - type: texture - offset: 0xA3F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_3: - symbol: gKartDK177Wheel3 - type: texture - offset: 0xA4014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_0: - symbol: gKartDK178Wheel0 - type: texture - offset: 0xA4094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_1: - symbol: gKartDK178Wheel1 - type: texture - offset: 0xA4114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_2: - symbol: gKartDK178Wheel2 - type: texture - offset: 0xA4194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_3: - symbol: gKartDK178Wheel3 - type: texture - offset: 0xA4214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_0: - symbol: gKartDK179Wheel0 - type: texture - offset: 0xA4294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_1: - symbol: gKartDK179Wheel1 - type: texture - offset: 0xA4314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_2: - symbol: gKartDK179Wheel2 - type: texture - offset: 0xA4394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_3: - symbol: gKartDK179Wheel3 - type: texture - offset: 0xA4414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_0: - symbol: gKartDK180Wheel0 - type: texture - offset: 0xA4494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_1: - symbol: gKartDK180Wheel1 - type: texture - offset: 0xA4514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_2: - symbol: gKartDK180Wheel2 - type: texture - offset: 0xA4594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_3: - symbol: gKartDK180Wheel3 - type: texture - offset: 0xA4614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_0: - symbol: gKartDK181Wheel0 - type: texture - offset: 0xA4694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_1: - symbol: gKartDK181Wheel1 - type: texture - offset: 0xA4714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_2: - symbol: gKartDK181Wheel2 - type: texture - offset: 0xA4794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_3: - symbol: gKartDK181Wheel3 - type: texture - offset: 0xA4814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_0: - symbol: gKartDK182Wheel0 - type: texture - offset: 0xA4894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_1: - symbol: gKartDK182Wheel1 - type: texture - offset: 0xA4914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_2: - symbol: gKartDK182Wheel2 - type: texture - offset: 0xA4994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_3: - symbol: gKartDK182Wheel3 - type: texture - offset: 0xA4A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_0: - symbol: gKartDK183Wheel0 - type: texture - offset: 0xA4A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_1: - symbol: gKartDK183Wheel1 - type: texture - offset: 0xA4B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_2: - symbol: gKartDK183Wheel2 - type: texture - offset: 0xA4B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_3: - symbol: gKartDK183Wheel3 - type: texture - offset: 0xA4C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_0: - symbol: gKartDK184Wheel0 - type: texture - offset: 0xA4C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_1: - symbol: gKartDK184Wheel1 - type: texture - offset: 0xA4D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_2: - symbol: gKartDK184Wheel2 - type: texture - offset: 0xA4D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_3: - symbol: gKartDK184Wheel3 - type: texture - offset: 0xA4E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_0: - symbol: gKartDK185Wheel0 - type: texture - offset: 0xA4E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_1: - symbol: gKartDK185Wheel1 - type: texture - offset: 0xA4F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_2: - symbol: gKartDK185Wheel2 - type: texture - offset: 0xA4F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_3: - symbol: gKartDK185Wheel3 - type: texture - offset: 0xA5014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_0: - symbol: gKartDK186Wheel0 - type: texture - offset: 0xA5094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_1: - symbol: gKartDK186Wheel1 - type: texture - offset: 0xA5114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_2: - symbol: gKartDK186Wheel2 - type: texture - offset: 0xA5194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_3: - symbol: gKartDK186Wheel3 - type: texture - offset: 0xA5214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_0: - symbol: gKartDK187Wheel0 - type: texture - offset: 0xA5294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_1: - symbol: gKartDK187Wheel1 - type: texture - offset: 0xA5314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_2: - symbol: gKartDK187Wheel2 - type: texture - offset: 0xA5394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_3: - symbol: gKartDK187Wheel3 - type: texture - offset: 0xA5414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_0: - symbol: gKartDK188Wheel0 - type: texture - offset: 0xA5494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_1: - symbol: gKartDK188Wheel1 - type: texture - offset: 0xA5514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_2: - symbol: gKartDK188Wheel2 - type: texture - offset: 0xA5594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_3: - symbol: gKartDK188Wheel3 - type: texture - offset: 0xA5614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_0: - symbol: gKartDK189Wheel0 - type: texture - offset: 0xA5694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_1: - symbol: gKartDK189Wheel1 - type: texture - offset: 0xA5714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_2: - symbol: gKartDK189Wheel2 - type: texture - offset: 0xA5794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_3: - symbol: gKartDK189Wheel3 - type: texture - offset: 0xA5814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_0: - symbol: gKartDK190Wheel0 - type: texture - offset: 0xA5894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_1: - symbol: gKartDK190Wheel1 - type: texture - offset: 0xA5914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_2: - symbol: gKartDK190Wheel2 - type: texture - offset: 0xA5994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_3: - symbol: gKartDK190Wheel3 - type: texture - offset: 0xA5A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_0: - symbol: gKartDK191Wheel0 - type: texture - offset: 0xA5A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_1: - symbol: gKartDK191Wheel1 - type: texture - offset: 0xA5B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_2: - symbol: gKartDK191Wheel2 - type: texture - offset: 0xA5B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_3: - symbol: gKartDK191Wheel3 - type: texture - offset: 0xA5C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_0: - symbol: gKartDK192Wheel0 - type: texture - offset: 0xA5C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_1: - symbol: gKartDK192Wheel1 - type: texture - offset: 0xA5D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_2: - symbol: gKartDK192Wheel2 - type: texture - offset: 0xA5D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_3: - symbol: gKartDK192Wheel3 - type: texture - offset: 0xA5E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_0: - symbol: gKartDK193Wheel0 - type: texture - offset: 0xA5E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_1: - symbol: gKartDK193Wheel1 - type: texture - offset: 0xA5F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_2: - symbol: gKartDK193Wheel2 - type: texture - offset: 0xA5F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_3: - symbol: gKartDK193Wheel3 - type: texture - offset: 0xA6014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_0: - symbol: gKartDK194Wheel0 - type: texture - offset: 0xA6094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_1: - symbol: gKartDK194Wheel1 - type: texture - offset: 0xA6114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_2: - symbol: gKartDK194Wheel2 - type: texture - offset: 0xA6194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_3: - symbol: gKartDK194Wheel3 - type: texture - offset: 0xA6214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_0: - symbol: gKartDK195Wheel0 - type: texture - offset: 0xA6294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_1: - symbol: gKartDK195Wheel1 - type: texture - offset: 0xA6314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_2: - symbol: gKartDK195Wheel2 - type: texture - offset: 0xA6394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_3: - symbol: gKartDK195Wheel3 - type: texture - offset: 0xA6414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_0: - symbol: gKartDK196Wheel0 - type: texture - offset: 0xA6494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_1: - symbol: gKartDK196Wheel1 - type: texture - offset: 0xA6514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_2: - symbol: gKartDK196Wheel2 - type: texture - offset: 0xA6594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_3: - symbol: gKartDK196Wheel3 - type: texture - offset: 0xA6614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_0: - symbol: gKartDK197Wheel0 - type: texture - offset: 0xA6694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_1: - symbol: gKartDK197Wheel1 - type: texture - offset: 0xA6714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_2: - symbol: gKartDK197Wheel2 - type: texture - offset: 0xA6794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_3: - symbol: gKartDK197Wheel3 - type: texture - offset: 0xA6814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_0: - symbol: gKartDK198Wheel0 - type: texture - offset: 0xA6894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_1: - symbol: gKartDK198Wheel1 - type: texture - offset: 0xA6914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_2: - symbol: gKartDK198Wheel2 - type: texture - offset: 0xA6994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_3: - symbol: gKartDK198Wheel3 - type: texture - offset: 0xA6A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_0: - symbol: gKartDK199Wheel0 - type: texture - offset: 0xA6A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_1: - symbol: gKartDK199Wheel1 - type: texture - offset: 0xA6B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_2: - symbol: gKartDK199Wheel2 - type: texture - offset: 0xA6B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_3: - symbol: gKartDK199Wheel3 - type: texture - offset: 0xA6C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_0: - symbol: gKartDK200Wheel0 - type: texture - offset: 0xA6C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_1: - symbol: gKartDK200Wheel1 - type: texture - offset: 0xA6D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_2: - symbol: gKartDK200Wheel2 - type: texture - offset: 0xA6D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_3: - symbol: gKartDK200Wheel3 - type: texture - offset: 0xA6E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_0: - symbol: gKartDK201Wheel0 - type: texture - offset: 0xA6E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_1: - symbol: gKartDK201Wheel1 - type: texture - offset: 0xA6F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_2: - symbol: gKartDK201Wheel2 - type: texture - offset: 0xA6F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_3: - symbol: gKartDK201Wheel3 - type: texture - offset: 0xA7014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_0: - symbol: gKartDK202Wheel0 - type: texture - offset: 0xA7094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_1: - symbol: gKartDK202Wheel1 - type: texture - offset: 0xA7114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_2: - symbol: gKartDK202Wheel2 - type: texture - offset: 0xA7194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_3: - symbol: gKartDK202Wheel3 - type: texture - offset: 0xA7214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_0: - symbol: gKartDK203Wheel0 - type: texture - offset: 0xA7294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_1: - symbol: gKartDK203Wheel1 - type: texture - offset: 0xA7314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_2: - symbol: gKartDK203Wheel2 - type: texture - offset: 0xA7394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_3: - symbol: gKartDK203Wheel3 - type: texture - offset: 0xA7414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_0: - symbol: gKartDK204Wheel0 - type: texture - offset: 0xA7494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_1: - symbol: gKartDK204Wheel1 - type: texture - offset: 0xA7514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_2: - symbol: gKartDK204Wheel2 - type: texture - offset: 0xA7594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_3: - symbol: gKartDK204Wheel3 - type: texture - offset: 0xA7614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_0: - symbol: gKartDK205Wheel0 - type: texture - offset: 0xA7694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_1: - symbol: gKartDK205Wheel1 - type: texture - offset: 0xA7714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_2: - symbol: gKartDK205Wheel2 - type: texture - offset: 0xA7794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_3: - symbol: gKartDK205Wheel3 - type: texture - offset: 0xA7814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_0: - symbol: gKartDK206Wheel0 - type: texture - offset: 0xA7894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_1: - symbol: gKartDK206Wheel1 - type: texture - offset: 0xA7914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_2: - symbol: gKartDK206Wheel2 - type: texture - offset: 0xA7994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_3: - symbol: gKartDK206Wheel3 - type: texture - offset: 0xA7A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_0: - symbol: gKartDK207Wheel0 - type: texture - offset: 0xA7A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_1: - symbol: gKartDK207Wheel1 - type: texture - offset: 0xA7B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_2: - symbol: gKartDK207Wheel2 - type: texture - offset: 0xA7B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_3: - symbol: gKartDK207Wheel3 - type: texture - offset: 0xA7C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_0: - symbol: gKartDK208Wheel0 - type: texture - offset: 0xA7C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_1: - symbol: gKartDK208Wheel1 - type: texture - offset: 0xA7D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_2: - symbol: gKartDK208Wheel2 - type: texture - offset: 0xA7D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_3: - symbol: gKartDK208Wheel3 - type: texture - offset: 0xA7E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_0: - symbol: gKartDK209Wheel0 - type: texture - offset: 0xA7E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_1: - symbol: gKartDK209Wheel1 - type: texture - offset: 0xA7F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_2: - symbol: gKartDK209Wheel2 - type: texture - offset: 0xA7F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_3: - symbol: gKartDK209Wheel3 - type: texture - offset: 0xA8014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_0: - symbol: gKartDK210Wheel0 - type: texture - offset: 0xA8094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_1: - symbol: gKartDK210Wheel1 - type: texture - offset: 0xA8114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_2: - symbol: gKartDK210Wheel2 - type: texture - offset: 0xA8194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_3: - symbol: gKartDK210Wheel3 - type: texture - offset: 0xA8214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_0: - symbol: gKartDK211Wheel0 - type: texture - offset: 0xA8294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_1: - symbol: gKartDK211Wheel1 - type: texture - offset: 0xA8314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_2: - symbol: gKartDK211Wheel2 - type: texture - offset: 0xA8394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_3: - symbol: gKartDK211Wheel3 - type: texture - offset: 0xA8414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_0: - symbol: gKartDK212Wheel0 - type: texture - offset: 0xA8494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_1: - symbol: gKartDK212Wheel1 - type: texture - offset: 0xA8514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_2: - symbol: gKartDK212Wheel2 - type: texture - offset: 0xA8594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_3: - symbol: gKartDK212Wheel3 - type: texture - offset: 0xA8614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_0: - symbol: gKartDK213Wheel0 - type: texture - offset: 0xA8694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_1: - symbol: gKartDK213Wheel1 - type: texture - offset: 0xA8714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_2: - symbol: gKartDK213Wheel2 - type: texture - offset: 0xA8794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_3: - symbol: gKartDK213Wheel3 - type: texture - offset: 0xA8814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_0: - symbol: gKartDK214Wheel0 - type: texture - offset: 0xA8894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_1: - symbol: gKartDK214Wheel1 - type: texture - offset: 0xA8914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_2: - symbol: gKartDK214Wheel2 - type: texture - offset: 0xA8994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_3: - symbol: gKartDK214Wheel3 - type: texture - offset: 0xA8A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_0: - symbol: gKartDK215Wheel0 - type: texture - offset: 0xA8A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_1: - symbol: gKartDK215Wheel1 - type: texture - offset: 0xA8B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_2: - symbol: gKartDK215Wheel2 - type: texture - offset: 0xA8B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_3: - symbol: gKartDK215Wheel3 - type: texture - offset: 0xA8C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_0: - symbol: gKartDK216Wheel0 - type: texture - offset: 0xA8C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_1: - symbol: gKartDK216Wheel1 - type: texture - offset: 0xA8D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_2: - symbol: gKartDK216Wheel2 - type: texture - offset: 0xA8D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_3: - symbol: gKartDK216Wheel3 - type: texture - offset: 0xA8E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_0: - symbol: gKartDK217Wheel0 - type: texture - offset: 0xA8E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_1: - symbol: gKartDK217Wheel1 - type: texture - offset: 0xA8F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_2: - symbol: gKartDK217Wheel2 - type: texture - offset: 0xA8F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_3: - symbol: gKartDK217Wheel3 - type: texture - offset: 0xA9014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_0: - symbol: gKartDK218Wheel0 - type: texture - offset: 0xA9094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_1: - symbol: gKartDK218Wheel1 - type: texture - offset: 0xA9114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_2: - symbol: gKartDK218Wheel2 - type: texture - offset: 0xA9194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_3: - symbol: gKartDK218Wheel3 - type: texture - offset: 0xA9214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_0: - symbol: gKartDK219Wheel0 - type: texture - offset: 0xA9294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_1: - symbol: gKartDK219Wheel1 - type: texture - offset: 0xA9314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_2: - symbol: gKartDK219Wheel2 - type: texture - offset: 0xA9394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_3: - symbol: gKartDK219Wheel3 - type: texture - offset: 0xA9414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_0: - symbol: gKartDK220Wheel0 - type: texture - offset: 0xA9494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_1: - symbol: gKartDK220Wheel1 - type: texture - offset: 0xA9514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_2: - symbol: gKartDK220Wheel2 - type: texture - offset: 0xA9594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_3: - symbol: gKartDK220Wheel3 - type: texture - offset: 0xA9614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_0: - symbol: gKartDK221Wheel0 - type: texture - offset: 0xA9694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_1: - symbol: gKartDK221Wheel1 - type: texture - offset: 0xA9714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_2: - symbol: gKartDK221Wheel2 - type: texture - offset: 0xA9794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_3: - symbol: gKartDK221Wheel3 - type: texture - offset: 0xA9814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_0: - symbol: gKartDK222Wheel0 - type: texture - offset: 0xA9894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_1: - symbol: gKartDK222Wheel1 - type: texture - offset: 0xA9914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_2: - symbol: gKartDK222Wheel2 - type: texture - offset: 0xA9994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_3: - symbol: gKartDK222Wheel3 - type: texture - offset: 0xA9A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_0: - symbol: gKartDK223Wheel0 - type: texture - offset: 0xA9A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_1: - symbol: gKartDK223Wheel1 - type: texture - offset: 0xA9B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_2: - symbol: gKartDK223Wheel2 - type: texture - offset: 0xA9B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_3: - symbol: gKartDK223Wheel3 - type: texture - offset: 0xA9C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_0: - symbol: gKartDK224Wheel0 - type: texture - offset: 0xA9C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_1: - symbol: gKartDK224Wheel1 - type: texture - offset: 0xA9D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_2: - symbol: gKartDK224Wheel2 - type: texture - offset: 0xA9D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_3: - symbol: gKartDK224Wheel3 - type: texture - offset: 0xA9E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_0: - symbol: gKartDK225Wheel0 - type: texture - offset: 0xA9E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_1: - symbol: gKartDK225Wheel1 - type: texture - offset: 0xA9F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_2: - symbol: gKartDK225Wheel2 - type: texture - offset: 0xA9F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_3: - symbol: gKartDK225Wheel3 - type: texture - offset: 0xAA014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_0: - symbol: gKartDK226Wheel0 - type: texture - offset: 0xAA094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_1: - symbol: gKartDK226Wheel1 - type: texture - offset: 0xAA114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_2: - symbol: gKartDK226Wheel2 - type: texture - offset: 0xAA194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_3: - symbol: gKartDK226Wheel3 - type: texture - offset: 0xAA214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_0: - symbol: gKartDK227Wheel0 - type: texture - offset: 0xAA294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_1: - symbol: gKartDK227Wheel1 - type: texture - offset: 0xAA314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_2: - symbol: gKartDK227Wheel2 - type: texture - offset: 0xAA394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_3: - symbol: gKartDK227Wheel3 - type: texture - offset: 0xAA414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_0: - symbol: gKartDK228Wheel0 - type: texture - offset: 0xAA494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_1: - symbol: gKartDK228Wheel1 - type: texture - offset: 0xAA514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_2: - symbol: gKartDK228Wheel2 - type: texture - offset: 0xAA594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_3: - symbol: gKartDK228Wheel3 - type: texture - offset: 0xAA614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_0: - symbol: gKartDK229Wheel0 - type: texture - offset: 0xAA694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_1: - symbol: gKartDK229Wheel1 - type: texture - offset: 0xAA714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_2: - symbol: gKartDK229Wheel2 - type: texture - offset: 0xAA794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_3: - symbol: gKartDK229Wheel3 - type: texture - offset: 0xAA814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_0: - symbol: gKartDK230Wheel0 - type: texture - offset: 0xAA894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_1: - symbol: gKartDK230Wheel1 - type: texture - offset: 0xAA914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_2: - symbol: gKartDK230Wheel2 - type: texture - offset: 0xAA994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_3: - symbol: gKartDK230Wheel3 - type: texture - offset: 0xAAA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_0: - symbol: gKartDK231Wheel0 - type: texture - offset: 0xAAA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_1: - symbol: gKartDK231Wheel1 - type: texture - offset: 0xAAB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_2: - symbol: gKartDK231Wheel2 - type: texture - offset: 0xAAB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_3: - symbol: gKartDK231Wheel3 - type: texture - offset: 0xAAC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_0: - symbol: gKartDK232Wheel0 - type: texture - offset: 0xAAC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_1: - symbol: gKartDK232Wheel1 - type: texture - offset: 0xAAD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_2: - symbol: gKartDK232Wheel2 - type: texture - offset: 0xAAD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_3: - symbol: gKartDK232Wheel3 - type: texture - offset: 0xAAE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_0: - symbol: gKartDK233Wheel0 - type: texture - offset: 0xAAE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_1: - symbol: gKartDK233Wheel1 - type: texture - offset: 0xAAF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_2: - symbol: gKartDK233Wheel2 - type: texture - offset: 0xAAF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_3: - symbol: gKartDK233Wheel3 - type: texture - offset: 0xAB014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_0: - symbol: gKartDK234Wheel0 - type: texture - offset: 0xAB094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_1: - symbol: gKartDK234Wheel1 - type: texture - offset: 0xAB114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_2: - symbol: gKartDK234Wheel2 - type: texture - offset: 0xAB194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_3: - symbol: gKartDK234Wheel3 - type: texture - offset: 0xAB214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_0: - symbol: gKartDK235Wheel0 - type: texture - offset: 0xAB294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_1: - symbol: gKartDK235Wheel1 - type: texture - offset: 0xAB314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_2: - symbol: gKartDK235Wheel2 - type: texture - offset: 0xAB394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_3: - symbol: gKartDK235Wheel3 - type: texture - offset: 0xAB414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_0: - symbol: gKartDK236Wheel0 - type: texture - offset: 0xAB494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_1: - symbol: gKartDK236Wheel1 - type: texture - offset: 0xAB514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_2: - symbol: gKartDK236Wheel2 - type: texture - offset: 0xAB594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_3: - symbol: gKartDK236Wheel3 - type: texture - offset: 0xAB614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_0: - symbol: gKartDK237Wheel0 - type: texture - offset: 0xAB694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_1: - symbol: gKartDK237Wheel1 - type: texture - offset: 0xAB714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_2: - symbol: gKartDK237Wheel2 - type: texture - offset: 0xAB794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_3: - symbol: gKartDK237Wheel3 - type: texture - offset: 0xAB814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_0: - symbol: gKartDK238Wheel0 - type: texture - offset: 0xAB894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_1: - symbol: gKartDK238Wheel1 - type: texture - offset: 0xAB914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_2: - symbol: gKartDK238Wheel2 - type: texture - offset: 0xAB994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_3: - symbol: gKartDK238Wheel3 - type: texture - offset: 0xABA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_0: - symbol: gKartDK239Wheel0 - type: texture - offset: 0xABA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_1: - symbol: gKartDK239Wheel1 - type: texture - offset: 0xABB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_2: - symbol: gKartDK239Wheel2 - type: texture - offset: 0xABB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_3: - symbol: gKartDK239Wheel3 - type: texture - offset: 0xABC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_0: - symbol: gKartDK240Wheel0 - type: texture - offset: 0xABC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_1: - symbol: gKartDK240Wheel1 - type: texture - offset: 0xABD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_2: - symbol: gKartDK240Wheel2 - type: texture - offset: 0xABD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_3: - symbol: gKartDK240Wheel3 - type: texture - offset: 0xABE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_0: - symbol: gKartDK241Wheel0 - type: texture - offset: 0xABE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_1: - symbol: gKartDK241Wheel1 - type: texture - offset: 0xABF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_2: - symbol: gKartDK241Wheel2 - type: texture - offset: 0xABF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_3: - symbol: gKartDK241Wheel3 - type: texture - offset: 0xAC014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_0: - symbol: gKartDK242Wheel0 - type: texture - offset: 0xAC094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_1: - symbol: gKartDK242Wheel1 - type: texture - offset: 0xAC114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_2: - symbol: gKartDK242Wheel2 - type: texture - offset: 0xAC194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_3: - symbol: gKartDK242Wheel3 - type: texture - offset: 0xAC214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_0: - symbol: gKartDK243Wheel0 - type: texture - offset: 0xAC294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_1: - symbol: gKartDK243Wheel1 - type: texture - offset: 0xAC314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_2: - symbol: gKartDK243Wheel2 - type: texture - offset: 0xAC394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_3: - symbol: gKartDK243Wheel3 - type: texture - offset: 0xAC414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_0: - symbol: gKartDK244Wheel0 - type: texture - offset: 0xAC494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_1: - symbol: gKartDK244Wheel1 - type: texture - offset: 0xAC514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_2: - symbol: gKartDK244Wheel2 - type: texture - offset: 0xAC594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_3: - symbol: gKartDK244Wheel3 - type: texture - offset: 0xAC614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_0: - symbol: gKartDK245Wheel0 - type: texture - offset: 0xAC694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_1: - symbol: gKartDK245Wheel1 - type: texture - offset: 0xAC714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_2: - symbol: gKartDK245Wheel2 - type: texture - offset: 0xAC794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_3: - symbol: gKartDK245Wheel3 - type: texture - offset: 0xAC814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_0: - symbol: gKartDK246Wheel0 - type: texture - offset: 0xAC894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_1: - symbol: gKartDK246Wheel1 - type: texture - offset: 0xAC914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_2: - symbol: gKartDK246Wheel2 - type: texture - offset: 0xAC994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_3: - symbol: gKartDK246Wheel3 - type: texture - offset: 0xACA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_0: - symbol: gKartDK247Wheel0 - type: texture - offset: 0xACA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_1: - symbol: gKartDK247Wheel1 - type: texture - offset: 0xACB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_2: - symbol: gKartDK247Wheel2 - type: texture - offset: 0xACB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_3: - symbol: gKartDK247Wheel3 - type: texture - offset: 0xACC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_0: - symbol: gKartDK248Wheel0 - type: texture - offset: 0xACC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_1: - symbol: gKartDK248Wheel1 - type: texture - offset: 0xACD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_2: - symbol: gKartDK248Wheel2 - type: texture - offset: 0xACD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_3: - symbol: gKartDK248Wheel3 - type: texture - offset: 0xACE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_0: - symbol: gKartDK249Wheel0 - type: texture - offset: 0xACE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_1: - symbol: gKartDK249Wheel1 - type: texture - offset: 0xACF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_2: - symbol: gKartDK249Wheel2 - type: texture - offset: 0xACF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_3: - symbol: gKartDK249Wheel3 - type: texture - offset: 0xAD014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_0: - symbol: gKartDK250Wheel0 - type: texture - offset: 0xAD094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_1: - symbol: gKartDK250Wheel1 - type: texture - offset: 0xAD114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_2: - symbol: gKartDK250Wheel2 - type: texture - offset: 0xAD194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_3: - symbol: gKartDK250Wheel3 - type: texture - offset: 0xAD214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_0: - symbol: gKartDK251Wheel0 - type: texture - offset: 0xAD294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_1: - symbol: gKartDK251Wheel1 - type: texture - offset: 0xAD314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_2: - symbol: gKartDK251Wheel2 - type: texture - offset: 0xAD394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_3: - symbol: gKartDK251Wheel3 - type: texture - offset: 0xAD414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_0: - symbol: gKartDK252Wheel0 - type: texture - offset: 0xAD494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_1: - symbol: gKartDK252Wheel1 - type: texture - offset: 0xAD514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_2: - symbol: gKartDK252Wheel2 - type: texture - offset: 0xAD594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_3: - symbol: gKartDK252Wheel3 - type: texture - offset: 0xAD614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_0: - symbol: gKartDK253Wheel0 - type: texture - offset: 0xAD694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_1: - symbol: gKartDK253Wheel1 - type: texture - offset: 0xAD714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_2: - symbol: gKartDK253Wheel2 - type: texture - offset: 0xAD794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_3: - symbol: gKartDK253Wheel3 - type: texture - offset: 0xAD814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_0: - symbol: gKartDK254Wheel0 - type: texture - offset: 0xAD894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_1: - symbol: gKartDK254Wheel1 - type: texture - offset: 0xAD914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_2: - symbol: gKartDK254Wheel2 - type: texture - offset: 0xAD994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_3: - symbol: gKartDK254Wheel3 - type: texture - offset: 0xADA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_0: - symbol: gKartDK255Wheel0 - type: texture - offset: 0xADA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_1: - symbol: gKartDK255Wheel1 - type: texture - offset: 0xADB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_2: - symbol: gKartDK255Wheel2 - type: texture - offset: 0xADB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_3: - symbol: gKartDK255Wheel3 - type: texture - offset: 0xADC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_0: - symbol: gKartDK256Wheel0 - type: texture - offset: 0xADC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_1: - symbol: gKartDK256Wheel1 - type: texture - offset: 0xADD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_2: - symbol: gKartDK256Wheel2 - type: texture - offset: 0xADD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_3: - symbol: gKartDK256Wheel3 - type: texture - offset: 0xADE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_0: - symbol: gKartDK257Wheel0 - type: texture - offset: 0xADE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_1: - symbol: gKartDK257Wheel1 - type: texture - offset: 0xADF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_2: - symbol: gKartDK257Wheel2 - type: texture - offset: 0xADF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_3: - symbol: gKartDK257Wheel3 - type: texture - offset: 0xAE014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_0: - symbol: gKartDK258Wheel0 - type: texture - offset: 0xAE094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_1: - symbol: gKartDK258Wheel1 - type: texture - offset: 0xAE114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_2: - symbol: gKartDK258Wheel2 - type: texture - offset: 0xAE194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_3: - symbol: gKartDK258Wheel3 - type: texture - offset: 0xAE214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_0: - symbol: gKartDK259Wheel0 - type: texture - offset: 0xAE294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_1: - symbol: gKartDK259Wheel1 - type: texture - offset: 0xAE314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_2: - symbol: gKartDK259Wheel2 - type: texture - offset: 0xAE394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_3: - symbol: gKartDK259Wheel3 - type: texture - offset: 0xAE414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_0: - symbol: gKartDK260Wheel0 - type: texture - offset: 0xAE494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_1: - symbol: gKartDK260Wheel1 - type: texture - offset: 0xAE514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_2: - symbol: gKartDK260Wheel2 - type: texture - offset: 0xAE594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_3: - symbol: gKartDK260Wheel3 - type: texture - offset: 0xAE614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_0: - symbol: gKartDK261Wheel0 - type: texture - offset: 0xAE694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_1: - symbol: gKartDK261Wheel1 - type: texture - offset: 0xAE714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_2: - symbol: gKartDK261Wheel2 - type: texture - offset: 0xAE794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_3: - symbol: gKartDK261Wheel3 - type: texture - offset: 0xAE814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_0: - symbol: gKartDK262Wheel0 - type: texture - offset: 0xAE894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_1: - symbol: gKartDK262Wheel1 - type: texture - offset: 0xAE914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_2: - symbol: gKartDK262Wheel2 - type: texture - offset: 0xAE994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_3: - symbol: gKartDK262Wheel3 - type: texture - offset: 0xAEA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_0: - symbol: gKartDK263Wheel0 - type: texture - offset: 0xAEA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_1: - symbol: gKartDK263Wheel1 - type: texture - offset: 0xAEB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_2: - symbol: gKartDK263Wheel2 - type: texture - offset: 0xAEB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_3: - symbol: gKartDK263Wheel3 - type: texture - offset: 0xAEC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_0: - symbol: gKartDK264Wheel0 - type: texture - offset: 0xAEC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_1: - symbol: gKartDK264Wheel1 - type: texture - offset: 0xAED14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_2: - symbol: gKartDK264Wheel2 - type: texture - offset: 0xAED94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_3: - symbol: gKartDK264Wheel3 - type: texture - offset: 0xAEE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_0: - symbol: gKartDK265Wheel0 - type: texture - offset: 0xAEE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_1: - symbol: gKartDK265Wheel1 - type: texture - offset: 0xAEF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_2: - symbol: gKartDK265Wheel2 - type: texture - offset: 0xAEF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_3: - symbol: gKartDK265Wheel3 - type: texture - offset: 0xAF014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_0: - symbol: gKartDK266Wheel0 - type: texture - offset: 0xAF094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_1: - symbol: gKartDK266Wheel1 - type: texture - offset: 0xAF114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_2: - symbol: gKartDK266Wheel2 - type: texture - offset: 0xAF194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_3: - symbol: gKartDK266Wheel3 - type: texture - offset: 0xAF214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_0: - symbol: gKartDK267Wheel0 - type: texture - offset: 0xAF294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_1: - symbol: gKartDK267Wheel1 - type: texture - offset: 0xAF314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_2: - symbol: gKartDK267Wheel2 - type: texture - offset: 0xAF394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_3: - symbol: gKartDK267Wheel3 - type: texture - offset: 0xAF414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_0: - symbol: gKartDK268Wheel0 - type: texture - offset: 0xAF494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_1: - symbol: gKartDK268Wheel1 - type: texture - offset: 0xAF514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_2: - symbol: gKartDK268Wheel2 - type: texture - offset: 0xAF594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_3: - symbol: gKartDK268Wheel3 - type: texture - offset: 0xAF614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_0: - symbol: gKartDK269Wheel0 - type: texture - offset: 0xAF694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_1: - symbol: gKartDK269Wheel1 - type: texture - offset: 0xAF714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_2: - symbol: gKartDK269Wheel2 - type: texture - offset: 0xAF794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_3: - symbol: gKartDK269Wheel3 - type: texture - offset: 0xAF814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_0: - symbol: gKartDK270Wheel0 - type: texture - offset: 0xAF894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_1: - symbol: gKartDK270Wheel1 - type: texture - offset: 0xAF914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_2: - symbol: gKartDK270Wheel2 - type: texture - offset: 0xAF994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_3: - symbol: gKartDK270Wheel3 - type: texture - offset: 0xAFA14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_0: - symbol: gKartDK271Wheel0 - type: texture - offset: 0xAFA94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_1: - symbol: gKartDK271Wheel1 - type: texture - offset: 0xAFB14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_2: - symbol: gKartDK271Wheel2 - type: texture - offset: 0xAFB94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_3: - symbol: gKartDK271Wheel3 - type: texture - offset: 0xAFC14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_0: - symbol: gKartDK272Wheel0 - type: texture - offset: 0xAFC94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_1: - symbol: gKartDK272Wheel1 - type: texture - offset: 0xAFD14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_2: - symbol: gKartDK272Wheel2 - type: texture - offset: 0xAFD94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_3: - symbol: gKartDK272Wheel3 - type: texture - offset: 0xAFE14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_0: - symbol: gKartDK273Wheel0 - type: texture - offset: 0xAFE94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_1: - symbol: gKartDK273Wheel1 - type: texture - offset: 0xAFF14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_2: - symbol: gKartDK273Wheel2 - type: texture - offset: 0xAFF94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_3: - symbol: gKartDK273Wheel3 - type: texture - offset: 0xB0014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_0: - symbol: gKartDK274Wheel0 - type: texture - offset: 0xB0094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_1: - symbol: gKartDK274Wheel1 - type: texture - offset: 0xB0114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_2: - symbol: gKartDK274Wheel2 - type: texture - offset: 0xB0194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_3: - symbol: gKartDK274Wheel3 - type: texture - offset: 0xB0214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_0: - symbol: gKartDK275Wheel0 - type: texture - offset: 0xB0294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_1: - symbol: gKartDK275Wheel1 - type: texture - offset: 0xB0314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_2: - symbol: gKartDK275Wheel2 - type: texture - offset: 0xB0394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_3: - symbol: gKartDK275Wheel3 - type: texture - offset: 0xB0414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_0: - symbol: gKartDK276Wheel0 - type: texture - offset: 0xB0494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_1: - symbol: gKartDK276Wheel1 - type: texture - offset: 0xB0514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_2: - symbol: gKartDK276Wheel2 - type: texture - offset: 0xB0594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_3: - symbol: gKartDK276Wheel3 - type: texture - offset: 0xB0614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_0: - symbol: gKartDK277Wheel0 - type: texture - offset: 0xB0694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_1: - symbol: gKartDK277Wheel1 - type: texture - offset: 0xB0714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_2: - symbol: gKartDK277Wheel2 - type: texture - offset: 0xB0794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_3: - symbol: gKartDK277Wheel3 - type: texture - offset: 0xB0814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_0: - symbol: gKartDK278Wheel0 - type: texture - offset: 0xB0894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_1: - symbol: gKartDK278Wheel1 - type: texture - offset: 0xB0914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_2: - symbol: gKartDK278Wheel2 - type: texture - offset: 0xB0994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_3: - symbol: gKartDK278Wheel3 - type: texture - offset: 0xB0A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_0: - symbol: gKartDK279Wheel0 - type: texture - offset: 0xB0A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_1: - symbol: gKartDK279Wheel1 - type: texture - offset: 0xB0B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_2: - symbol: gKartDK279Wheel2 - type: texture - offset: 0xB0B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_3: - symbol: gKartDK279Wheel3 - type: texture - offset: 0xB0C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_0: - symbol: gKartDK280Wheel0 - type: texture - offset: 0xB0C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_1: - symbol: gKartDK280Wheel1 - type: texture - offset: 0xB0D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_2: - symbol: gKartDK280Wheel2 - type: texture - offset: 0xB0D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_3: - symbol: gKartDK280Wheel3 - type: texture - offset: 0xB0E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_0: - symbol: gKartDK281Wheel0 - type: texture - offset: 0xB0E94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_1: - symbol: gKartDK281Wheel1 - type: texture - offset: 0xB0F14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_2: - symbol: gKartDK281Wheel2 - type: texture - offset: 0xB0F94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_3: - symbol: gKartDK281Wheel3 - type: texture - offset: 0xB1014 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_0: - symbol: gKartDK282Wheel0 - type: texture - offset: 0xB1094 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_1: - symbol: gKartDK282Wheel1 - type: texture - offset: 0xB1114 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_2: - symbol: gKartDK282Wheel2 - type: texture - offset: 0xB1194 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_3: - symbol: gKartDK282Wheel3 - type: texture - offset: 0xB1214 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_0: - symbol: gKartDK283Wheel0 - type: texture - offset: 0xB1294 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_1: - symbol: gKartDK283Wheel1 - type: texture - offset: 0xB1314 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_2: - symbol: gKartDK283Wheel2 - type: texture - offset: 0xB1394 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_3: - symbol: gKartDK283Wheel3 - type: texture - offset: 0xB1414 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_0: - symbol: gKartDK284Wheel0 - type: texture - offset: 0xB1494 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_1: - symbol: gKartDK284Wheel1 - type: texture - offset: 0xB1514 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_2: - symbol: gKartDK284Wheel2 - type: texture - offset: 0xB1594 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_3: - symbol: gKartDK284Wheel3 - type: texture - offset: 0xB1614 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_0: - symbol: gKartDK285Wheel0 - type: texture - offset: 0xB1694 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_1: - symbol: gKartDK285Wheel1 - type: texture - offset: 0xB1714 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_2: - symbol: gKartDK285Wheel2 - type: texture - offset: 0xB1794 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_3: - symbol: gKartDK285Wheel3 - type: texture - offset: 0xB1814 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_0: - symbol: gKartDK286Wheel0 - type: texture - offset: 0xB1894 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_1: - symbol: gKartDK286Wheel1 - type: texture - offset: 0xB1914 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_2: - symbol: gKartDK286Wheel2 - type: texture - offset: 0xB1994 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_3: - symbol: gKartDK286Wheel3 - type: texture - offset: 0xB1A14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_0: - symbol: gKartDK287Wheel0 - type: texture - offset: 0xB1A94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_1: - symbol: gKartDK287Wheel1 - type: texture - offset: 0xB1B14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_2: - symbol: gKartDK287Wheel2 - type: texture - offset: 0xB1B94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_3: - symbol: gKartDK287Wheel3 - type: texture - offset: 0xB1C14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_0: - symbol: gKartDK288Wheel0 - type: texture - offset: 0xB1C94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_1: - symbol: gKartDK288Wheel1 - type: texture - offset: 0xB1D14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_2: - symbol: gKartDK288Wheel2 - type: texture - offset: 0xB1D94 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_3: - symbol: gKartDK288Wheel3 - type: texture - offset: 0xB1E14 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -donkeykong_kart_palette: - symbol: gKartDKPalette - type: texture - offset: 0xB1E94 - ctype: u16 - width: 16 - height: 12 - format: RGBA16 diff --git a/yamls/us/double_deck_displaylists.yml b/yamls/us/double_deck_displaylists.yml deleted file mode 100644 index 27328ee47..000000000 --- a/yamls/us/double_deck_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x9562F4 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_double_deck_packed_dls: - symbol: d_course_double_deck_packed_dls - type: blob - offset: 0x9562F4 - size: 0x373 diff --git a/yamls/us/double_deck_vertices.yml b/yamls/us/double_deck_vertices.yml deleted file mode 100644 index 9f62e7610..000000000 --- a/yamls/us/double_deck_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x955620] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_double_deck_vertex: - symbol: d_course_double_deck_vertex - type: mk64:course_vtx - count: 555 - offset: 0x0 diff --git a/yamls/us/frappe_snowland_data.yml b/yamls/us/frappe_snowland_data.yml deleted file mode 100644 index aee8f92b1..000000000 --- a/yamls/us/frappe_snowland_data.yml +++ /dev/null @@ -1,373 +0,0 @@ -:config: - segments: - - [0x06, 0x83F740] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_frappe_snowland_dl_0: - symbol: d_course_frappe_snowland_dl_0 - type: gfx - offset: 0x0 -d_course_frappe_snowland_dl_C8: - symbol: d_course_frappe_snowland_dl_C8 - type: gfx - offset: 0xC8 -d_course_frappe_snowland_dl_1B8: - symbol: d_course_frappe_snowland_dl_1B8 - type: gfx - offset: 0x1B8 -d_course_frappe_snowland_dl_298: - symbol: d_course_frappe_snowland_dl_298 - type: gfx - offset: 0x298 -d_course_frappe_snowland_dl_398: - symbol: d_course_frappe_snowland_dl_398 - type: gfx - offset: 0x398 -d_course_frappe_snowland_dl_458: - symbol: d_course_frappe_snowland_dl_458 - type: gfx - offset: 0x458 -d_course_frappe_snowland_dl_540: - symbol: d_course_frappe_snowland_dl_540 - type: gfx - offset: 0x540 -d_course_frappe_snowland_dl_610: - symbol: d_course_frappe_snowland_dl_610 - type: gfx - offset: 0x610 -d_course_frappe_snowland_dl_728: - symbol: d_course_frappe_snowland_dl_728 - type: gfx - offset: 0x728 -d_course_frappe_snowland_dl_7C8: - symbol: d_course_frappe_snowland_dl_7C8 - type: gfx - offset: 0x7C8 -d_course_frappe_snowland_dl_8C0: - symbol: d_course_frappe_snowland_dl_8C0 - type: gfx - offset: 0x8C0 -d_course_frappe_snowland_dl_940: - symbol: d_course_frappe_snowland_dl_940 - type: gfx - offset: 0x940 -d_course_frappe_snowland_dl_A38: - symbol: d_course_frappe_snowland_dl_A38 - type: gfx - offset: 0xA38 -d_course_frappe_snowland_dl_AA8: - symbol: d_course_frappe_snowland_dl_AA8 - type: gfx - offset: 0xAA8 -d_course_frappe_snowland_dl_BA8: - symbol: d_course_frappe_snowland_dl_BA8 - type: gfx - offset: 0xBA8 -d_course_frappe_snowland_dl_C38: - symbol: d_course_frappe_snowland_dl_C38 - type: gfx - offset: 0xC38 -d_course_frappe_snowland_dl_D28: - symbol: d_course_frappe_snowland_dl_D28 - type: gfx - offset: 0xD28 -d_course_frappe_snowland_dl_DA8: - symbol: d_course_frappe_snowland_dl_DA8 - type: gfx - offset: 0xDA8 -d_course_frappe_snowland_dl_EC8: - symbol: d_course_frappe_snowland_dl_EC8 - type: gfx - offset: 0xEC8 -d_course_frappe_snowland_dl_F90: - symbol: d_course_frappe_snowland_dl_F90 - type: gfx - offset: 0xF90 -d_course_frappe_snowland_dl_1068: - symbol: d_course_frappe_snowland_dl_1068 - type: gfx - offset: 0x1068 -d_course_frappe_snowland_dl_1118: - symbol: d_course_frappe_snowland_dl_1118 - type: gfx - offset: 0x1118 -d_course_frappe_snowland_dl_1240: - symbol: d_course_frappe_snowland_dl_1240 - type: gfx - offset: 0x1240 -d_course_frappe_snowland_dl_1360: - symbol: d_course_frappe_snowland_dl_1360 - type: gfx - offset: 0x1360 -d_course_frappe_snowland_dl_1430: - symbol: d_course_frappe_snowland_dl_1430 - type: gfx - offset: 0x1430 -d_course_frappe_snowland_dl_14E0: - symbol: d_course_frappe_snowland_dl_14E0 - type: gfx - offset: 0x14E0 -d_course_frappe_snowland_dl_1610: - symbol: d_course_frappe_snowland_dl_1610 - type: gfx - offset: 0x1610 -d_course_frappe_snowland_dl_1768: - symbol: d_course_frappe_snowland_dl_1768 - type: gfx - offset: 0x1768 -d_course_frappe_snowland_dl_1818: - symbol: d_course_frappe_snowland_dl_1818 - type: gfx - offset: 0x1818 -d_course_frappe_snowland_dl_1930: - symbol: d_course_frappe_snowland_dl_1930 - type: gfx - offset: 0x1930 -d_course_frappe_snowland_dl_1A50: - symbol: d_course_frappe_snowland_dl_1A50 - type: gfx - offset: 0x1A50 -d_course_frappe_snowland_dl_1BC8: - symbol: d_course_frappe_snowland_dl_1BC8 - type: gfx - offset: 0x1BC8 -d_course_frappe_snowland_dl_1C80: - symbol: d_course_frappe_snowland_dl_1C80 - type: gfx - offset: 0x1C80 -d_course_frappe_snowland_dl_1DE8: - symbol: d_course_frappe_snowland_dl_1DE8 - type: gfx - offset: 0x1DE8 -d_course_frappe_snowland_dl_1E98: - symbol: d_course_frappe_snowland_dl_1E98 - type: gfx - offset: 0x1E98 -d_course_frappe_snowland_dl_2000: - symbol: d_course_frappe_snowland_dl_2000 - type: gfx - offset: 0x2000 -d_course_frappe_snowland_dl_20B0: - symbol: d_course_frappe_snowland_dl_20B0 - type: gfx - offset: 0x20B0 -d_course_frappe_snowland_dl_2240: - symbol: d_course_frappe_snowland_dl_2240 - type: gfx - offset: 0x2240 -d_course_frappe_snowland_dl_2308: - symbol: d_course_frappe_snowland_dl_2308 - type: gfx - offset: 0x2308 -d_course_frappe_snowland_dl_2448: - symbol: d_course_frappe_snowland_dl_2448 - type: gfx - offset: 0x2448 -d_course_frappe_snowland_dl_2588: - symbol: d_course_frappe_snowland_dl_2588 - type: gfx - offset: 0x2588 -d_course_frappe_snowland_dl_2618: - symbol: d_course_frappe_snowland_dl_2618 - type: gfx - offset: 0x2618 -d_course_frappe_snowland_dl_2698: - symbol: d_course_frappe_snowland_dl_2698 - type: gfx - offset: 0x2698 -d_course_frappe_snowland_dl_2700: - symbol: d_course_frappe_snowland_dl_2700 - type: gfx - offset: 0x2700 -d_course_frappe_snowland_dl_2780: - symbol: d_course_frappe_snowland_dl_2780 - type: gfx - offset: 0x2780 -d_course_frappe_snowland_dl_27F8: - symbol: d_course_frappe_snowland_dl_27F8 - type: gfx - offset: 0x27F8 -d_course_frappe_snowland_dl_2860: - symbol: d_course_frappe_snowland_dl_2860 - type: gfx - offset: 0x2860 -d_course_frappe_snowland_dl_28A8: - symbol: d_course_frappe_snowland_dl_28A8 - type: gfx - offset: 0x28A8 -d_course_frappe_snowland_dl_2930: - symbol: d_course_frappe_snowland_dl_2930 - type: gfx - offset: 0x2930 -d_course_frappe_snowland_dl_29B0: - symbol: d_course_frappe_snowland_dl_29B0 - type: gfx - offset: 0x29B0 -d_course_frappe_snowland_dl_2A40: - symbol: d_course_frappe_snowland_dl_2A40 - type: gfx - offset: 0x2A40 -d_course_frappe_snowland_dl_2AB0: - symbol: d_course_frappe_snowland_dl_2AB0 - type: gfx - offset: 0x2AB0 -d_course_frappe_snowland_dl_2B48: - symbol: d_course_frappe_snowland_dl_2B48 - type: gfx - offset: 0x2B48 -d_course_frappe_snowland_dl_2BA0: - symbol: d_course_frappe_snowland_dl_2BA0 - type: gfx - offset: 0x2BA0 -d_course_frappe_snowland_dl_2C00: - symbol: d_course_frappe_snowland_dl_2C00 - type: gfx - offset: 0x2C00 -d_course_frappe_snowland_dl_2C50: - symbol: d_course_frappe_snowland_dl_2C50 - type: gfx - offset: 0x2C50 -d_course_frappe_snowland_dl_2CB8: - symbol: d_course_frappe_snowland_dl_2CB8 - type: gfx - offset: 0x2CB8 -d_course_frappe_snowland_dl_2D20: - symbol: d_course_frappe_snowland_dl_2D20 - type: gfx - offset: 0x2D20 -d_course_frappe_snowland_dl_2D78: - symbol: d_course_frappe_snowland_dl_2D78 - type: gfx - offset: 0x2D78 -d_course_frappe_snowland_dl_2DD0: - symbol: d_course_frappe_snowland_dl_2DD0 - type: gfx - offset: 0x2DD0 -d_course_frappe_snowland_dl_2E40: - symbol: d_course_frappe_snowland_dl_2E40 - type: gfx - offset: 0x2E40 -d_course_frappe_snowland_dl_2F40: - symbol: d_course_frappe_snowland_dl_2F40 - type: gfx - offset: 0x2F40 -d_course_frappe_snowland_dl_3000: - symbol: d_course_frappe_snowland_dl_3000 - type: gfx - offset: 0x3000 -d_course_frappe_snowland_dl_30D0: - symbol: d_course_frappe_snowland_dl_30D0 - type: gfx - offset: 0x30D0 -d_course_frappe_snowland_dl_3198: - symbol: d_course_frappe_snowland_dl_3198 - type: gfx - offset: 0x3198 -d_course_frappe_snowland_dl_3270: - symbol: d_course_frappe_snowland_dl_3270 - type: gfx - offset: 0x3270 -d_course_frappe_snowland_dl_3328: - symbol: d_course_frappe_snowland_dl_3328 - type: gfx - offset: 0x3328 -d_course_frappe_snowland_dl_33E0: - symbol: d_course_frappe_snowland_dl_33E0 - type: gfx - offset: 0x33E0 -d_course_frappe_snowland_unknown_waypoints: - symbol: d_course_frappe_snowland_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x34A0 - count: 73 -d_course_frappe_snowland_track_waypoints: - symbol: d_course_frappe_snowland_track_waypoints - type: mk64:TRACK_PATH - offset: 0x36E8 - count: 647 -d_course_frappe_snowland_snowman_tlut: - symbol: d_course_frappe_snowland_snowman_tlut - type: texture - offset: 0x4B20 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_course_frappe_snowland_snowman_head: - symbol: d_course_frappe_snowland_snowman_head - type: texture - offset: 0x4D20 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_frappe_snowland_snowman_tlut -d_course_frappe_snowland_snowman_body: - symbol: d_course_frappe_snowland_snowman_body - type: texture - offset: 0x5D20 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_frappe_snowland_snowman_tlut -d_course_frappe_snowland_snow_tlut: - symbol: d_course_frappe_snowland_snow_tlut - type: texture - offset: 0x6D20 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_course_frappe_snowland_snow: - symbol: d_course_frappe_snowland_snow - type: texture - offset: 0x6F20 - width: 32 - height: 32 - format: ci8 - ctype: u8 - tlut_symbol: d_course_frappe_snowland_snow_tlut -d_course_frappe_snowland_tree_tlut: - symbol: d_course_frappe_snowland_tree_tlut - type: texture - offset: 0x7320 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_frappe_snowland_tree: - symbol: d_frappe_snowland_tree - type: vtx - offset: 0x7520 - count: 8 -d_course_frappe_snowland_dl_tree: - symbol: d_course_frappe_snowland_dl_tree - type: gfx - offset: 0x75A0 -d_course_frappe_snowland_dl_76A0: - symbol: d_course_frappe_snowland_dl_76A0 - type: gfx - offset: 0x76A0 -d_course_frappe_snowland_tree_spawns: - symbol: d_course_frappe_snowland_tree_spawns - type: mk64:spawn_data - offset: 0x7718 - count: 31 -d_course_frappe_snowland_item_box_spawns: - symbol: d_course_frappe_snowland_item_box_spawns - type: mk64:spawn_data - offset: 0x7810 - count: 16 -d_course_frappe_snowland_addr: - symbol: d_course_frappe_snowland_addr - type: mk64:track_sections - offset: 0x79A0 - count: 48 diff --git a/yamls/us/frappe_snowland_displaylists.yml b/yamls/us/frappe_snowland_displaylists.yml deleted file mode 100644 index 0697a4697..000000000 --- a/yamls/us/frappe_snowland_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x8D6624 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_frappe_snowland_packed_dls: - symbol: d_course_frappe_snowland_packed_dls - type: blob - offset: 0x8D6624 - size: 0x2821 diff --git a/yamls/us/frappe_snowland_vertices.yml b/yamls/us/frappe_snowland_vertices.yml deleted file mode 100644 index fe413d1cf..000000000 --- a/yamls/us/frappe_snowland_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x8CC900] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_frappe_snowland_vertex: - symbol: d_course_frappe_snowland_vertex - type: mk64:course_vtx - count: 5529 - offset: 0x0 diff --git a/yamls/us/kalimari_desert_data.yml b/yamls/us/kalimari_desert_data.yml deleted file mode 100644 index 020298f1b..000000000 --- a/yamls/us/kalimari_desert_data.yml +++ /dev/null @@ -1,1543 +0,0 @@ -:config: - segments: - - [0x06, 0x8666a0] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_kalimari_desert_dl_0: - symbol: d_course_kalimari_desert_dl_0 - type: gfx - offset: 0x0 - otr_mode: index -d_course_kalimari_desert_dl_100: - symbol: d_course_kalimari_desert_dl_100 - type: gfx - offset: 0x100 - otr_mode: index -d_course_kalimari_desert_dl_258: - symbol: d_course_kalimari_desert_dl_258 - type: gfx - offset: 0x258 - otr_mode: index -d_course_kalimari_desert_dl_310: - symbol: d_course_kalimari_desert_dl_310 - type: gfx - offset: 0x310 - otr_mode: index -d_course_kalimari_desert_dl_4A0: - symbol: d_course_kalimari_desert_dl_4A0 - type: gfx - offset: 0x4a0 - otr_mode: index -d_course_kalimari_desert_dl_5C0: - symbol: d_course_kalimari_desert_dl_5C0 - type: gfx - offset: 0x5c0 - otr_mode: index -d_course_kalimari_desert_dl_778: - symbol: d_course_kalimari_desert_dl_778 - type: gfx - offset: 0x778 - otr_mode: index -d_course_kalimari_desert_dl_858: - symbol: d_course_kalimari_desert_dl_858 - type: gfx - offset: 0x858 - otr_mode: index -d_course_kalimari_desert_dl_A58: - symbol: d_course_kalimari_desert_dl_A58 - type: gfx - offset: 0xa58 - otr_mode: index -d_course_kalimari_desert_dl_B38: - symbol: d_course_kalimari_desert_dl_B38 - type: gfx - offset: 0xb38 - otr_mode: index -d_course_kalimari_desert_dl_CD0: - symbol: d_course_kalimari_desert_dl_CD0 - type: gfx - offset: 0xcd0 - otr_mode: index -d_course_kalimari_desert_dl_DD0: - symbol: d_course_kalimari_desert_dl_DD0 - type: gfx - offset: 0xdd0 - otr_mode: index -d_course_kalimari_desert_dl_F68: - symbol: d_course_kalimari_desert_dl_F68 - type: gfx - offset: 0xf68 - otr_mode: index -d_course_kalimari_desert_dl_1030: - symbol: d_course_kalimari_desert_dl_1030 - type: gfx - offset: 0x1030 - otr_mode: index -d_course_kalimari_desert_dl_1258: - symbol: d_course_kalimari_desert_dl_1258 - type: gfx - offset: 0x1258 - otr_mode: index -d_course_kalimari_desert_dl_1350: - symbol: d_course_kalimari_desert_dl_1350 - type: gfx - offset: 0x1350 - otr_mode: index -d_course_kalimari_desert_dl_14C0: - symbol: d_course_kalimari_desert_dl_14C0 - type: gfx - offset: 0x14c0 - otr_mode: index -d_course_kalimari_desert_dl_1588: - symbol: d_course_kalimari_desert_dl_1588 - type: gfx - offset: 0x1588 - otr_mode: index -d_course_kalimari_desert_dl_17C8: - symbol: d_course_kalimari_desert_dl_17C8 - type: gfx - offset: 0x17c8 - otr_mode: index -d_course_kalimari_desert_dl_18C8: - symbol: d_course_kalimari_desert_dl_18C8 - type: gfx - offset: 0x18c8 - otr_mode: index -d_course_kalimari_desert_dl_1A58: - symbol: d_course_kalimari_desert_dl_1A58 - type: gfx - offset: 0x1a58 - otr_mode: index -d_course_kalimari_desert_dl_1B38: - symbol: d_course_kalimari_desert_dl_1B38 - type: gfx - offset: 0x1b38 - otr_mode: index -d_course_kalimari_desert_dl_1D48: - symbol: d_course_kalimari_desert_dl_1D48 - type: gfx - offset: 0x1d48 - otr_mode: index -d_course_kalimari_desert_dl_1E80: - symbol: d_course_kalimari_desert_dl_1E80 - type: gfx - offset: 0x1e80 - otr_mode: index -d_course_kalimari_desert_dl_2000: - symbol: d_course_kalimari_desert_dl_2000 - type: gfx - offset: 0x2000 - otr_mode: index -d_course_kalimari_desert_dl_20E0: - symbol: d_course_kalimari_desert_dl_20E0 - type: gfx - offset: 0x20e0 - otr_mode: index -d_course_kalimari_desert_dl_22D8: - symbol: d_course_kalimari_desert_dl_22D8 - type: gfx - offset: 0x22d8 - otr_mode: index -d_course_kalimari_desert_dl_2458: - symbol: d_course_kalimari_desert_dl_2458 - type: gfx - offset: 0x2458 - otr_mode: index -d_course_kalimari_desert_dl_25D0: - symbol: d_course_kalimari_desert_dl_25D0 - type: gfx - offset: 0x25d0 - otr_mode: index -d_course_kalimari_desert_dl_26E8: - symbol: d_course_kalimari_desert_dl_26E8 - type: gfx - offset: 0x26e8 - otr_mode: index -d_course_kalimari_desert_dl_2868: - symbol: d_course_kalimari_desert_dl_2868 - type: gfx - offset: 0x2868 - otr_mode: index -d_course_kalimari_desert_dl_29C0: - symbol: d_course_kalimari_desert_dl_29C0 - type: gfx - offset: 0x29c0 - otr_mode: index -d_course_kalimari_desert_dl_2B40: - symbol: d_course_kalimari_desert_dl_2B40 - type: gfx - offset: 0x2b40 - otr_mode: index -d_course_kalimari_desert_dl_2C88: - symbol: d_course_kalimari_desert_dl_2C88 - type: gfx - offset: 0x2c88 - otr_mode: index -d_course_kalimari_desert_dl_2DE8: - symbol: d_course_kalimari_desert_dl_2DE8 - type: gfx - offset: 0x2de8 - otr_mode: index -d_course_kalimari_desert_dl_2F30: - symbol: d_course_kalimari_desert_dl_2F30 - type: gfx - offset: 0x2f30 - otr_mode: index -d_course_kalimari_desert_dl_3068: - symbol: d_course_kalimari_desert_dl_3068 - type: gfx - offset: 0x3068 - otr_mode: index -d_course_kalimari_desert_dl_31C0: - symbol: d_course_kalimari_desert_dl_31C0 - type: gfx - offset: 0x31c0 - otr_mode: index -d_course_kalimari_desert_dl_32F8: - symbol: d_course_kalimari_desert_dl_32F8 - type: gfx - offset: 0x32f8 - otr_mode: index -d_course_kalimari_desert_dl_3460: - symbol: d_course_kalimari_desert_dl_3460 - type: gfx - offset: 0x3460 - otr_mode: index -d_course_kalimari_desert_dl_3590: - symbol: d_course_kalimari_desert_dl_3590 - type: gfx - offset: 0x3590 - otr_mode: index -d_course_kalimari_desert_dl_3718: - symbol: d_course_kalimari_desert_dl_3718 - type: gfx - offset: 0x3718 - otr_mode: index -d_course_kalimari_desert_dl_3818: - symbol: d_course_kalimari_desert_dl_3818 - type: gfx - offset: 0x3818 - otr_mode: index -d_course_kalimari_desert_dl_3998: - symbol: d_course_kalimari_desert_dl_3998 - type: gfx - offset: 0x3998 - otr_mode: index -d_course_kalimari_desert_dl_3AC0: - symbol: d_course_kalimari_desert_dl_3AC0 - type: gfx - offset: 0x3ac0 - otr_mode: index -d_course_kalimari_desert_dl_3CA0: - symbol: d_course_kalimari_desert_dl_3CA0 - type: gfx - offset: 0x3ca0 - otr_mode: index -d_course_kalimari_desert_dl_3DB8: - symbol: d_course_kalimari_desert_dl_3DB8 - type: gfx - offset: 0x3db8 - otr_mode: index -d_course_kalimari_desert_dl_3FB0: - symbol: d_course_kalimari_desert_dl_3FB0 - type: gfx - offset: 0x3fb0 - otr_mode: index -d_course_kalimari_desert_dl_40A8: - symbol: d_course_kalimari_desert_dl_40A8 - type: gfx - offset: 0x40a8 - otr_mode: index -d_course_kalimari_desert_dl_4280: - symbol: d_course_kalimari_desert_dl_4280 - type: gfx - offset: 0x4280 - otr_mode: index -d_course_kalimari_desert_dl_4358: - symbol: d_course_kalimari_desert_dl_4358 - type: gfx - offset: 0x4358 - otr_mode: index -d_course_kalimari_desert_dl_4538: - symbol: d_course_kalimari_desert_dl_4538 - type: gfx - offset: 0x4538 - otr_mode: index -d_course_kalimari_desert_dl_4630: - symbol: d_course_kalimari_desert_dl_4630 - type: gfx - offset: 0x4630 - otr_mode: index -d_course_kalimari_desert_dl_4908: - symbol: d_course_kalimari_desert_dl_4908 - type: gfx - offset: 0x4908 - otr_mode: index -d_course_kalimari_desert_dl_49E0: - symbol: d_course_kalimari_desert_dl_49E0 - type: gfx - offset: 0x49e0 - otr_mode: index -d_course_kalimari_desert_dl_4BA0: - symbol: d_course_kalimari_desert_dl_4BA0 - type: gfx - offset: 0x4ba0 - otr_mode: index -d_course_kalimari_desert_dl_4CF0: - symbol: d_course_kalimari_desert_dl_4CF0 - type: gfx - offset: 0x4cf0 - otr_mode: index -d_course_kalimari_desert_dl_4EF8: - symbol: d_course_kalimari_desert_dl_4EF8 - type: gfx - offset: 0x4ef8 - otr_mode: index -d_course_kalimari_desert_dl_4FB0: - symbol: d_course_kalimari_desert_dl_4FB0 - type: gfx - offset: 0x4fb0 - otr_mode: index -d_course_kalimari_desert_dl_5100: - symbol: d_course_kalimari_desert_dl_5100 - type: gfx - offset: 0x5100 - otr_mode: index -d_course_kalimari_desert_dl_5208: - symbol: d_course_kalimari_desert_dl_5208 - type: gfx - offset: 0x5208 - otr_mode: index -d_course_kalimari_desert_dl_53A0: - symbol: d_course_kalimari_desert_dl_53A0 - type: gfx - offset: 0x53a0 - otr_mode: index -d_course_kalimari_desert_dl_5470: - symbol: d_course_kalimari_desert_dl_5470 - type: gfx - offset: 0x5470 - otr_mode: index -d_course_kalimari_desert_dl_55C8: - symbol: d_course_kalimari_desert_dl_55C8 - type: gfx - offset: 0x55c8 - otr_mode: index -d_course_kalimari_desert_dl_5730: - symbol: d_course_kalimari_desert_dl_5730 - type: gfx - offset: 0x5730 - otr_mode: index -d_course_kalimari_desert_dl_5898: - symbol: d_course_kalimari_desert_dl_5898 - type: gfx - offset: 0x5898 - otr_mode: index -d_course_kalimari_desert_dl_5978: - symbol: d_course_kalimari_desert_dl_5978 - type: gfx - offset: 0x5978 - otr_mode: index -d_course_kalimari_desert_dl_5AD0: - symbol: d_course_kalimari_desert_dl_5AD0 - type: gfx - offset: 0x5ad0 - otr_mode: index -d_course_kalimari_desert_dl_5BE8: - symbol: d_course_kalimari_desert_dl_5BE8 - type: gfx - offset: 0x5be8 - otr_mode: index -d_course_kalimari_desert_dl_5D20: - symbol: d_course_kalimari_desert_dl_5D20 - type: gfx - offset: 0x5d20 - otr_mode: index -d_course_kalimari_desert_dl_5DF8: - symbol: d_course_kalimari_desert_dl_5DF8 - type: gfx - offset: 0x5df8 - otr_mode: index -d_course_kalimari_desert_dl_5F20: - symbol: d_course_kalimari_desert_dl_5F20 - type: gfx - offset: 0x5f20 - otr_mode: index -d_course_kalimari_desert_dl_6028: - symbol: d_course_kalimari_desert_dl_6028 - type: gfx - offset: 0x6028 - otr_mode: index -d_course_kalimari_desert_dl_61B0: - symbol: d_course_kalimari_desert_dl_61B0 - type: gfx - offset: 0x61b0 - otr_mode: index -d_course_kalimari_desert_dl_62F8: - symbol: d_course_kalimari_desert_dl_62F8 - type: gfx - offset: 0x62f8 - otr_mode: index -d_course_kalimari_desert_dl_63E0: - symbol: d_course_kalimari_desert_dl_63E0 - type: gfx - offset: 0x63e0 - otr_mode: index -d_course_kalimari_desert_dl_65B0: - symbol: d_course_kalimari_desert_dl_65B0 - type: gfx - offset: 0x65b0 - otr_mode: index -d_course_kalimari_desert_dl_66F0: - symbol: d_course_kalimari_desert_dl_66F0 - type: gfx - offset: 0x66f0 - otr_mode: index -d_course_kalimari_desert_dl_6838: - symbol: d_course_kalimari_desert_dl_6838 - type: gfx - offset: 0x6838 - otr_mode: index -d_course_kalimari_desert_dl_6940: - symbol: d_course_kalimari_desert_dl_6940 - type: gfx - offset: 0x6940 - otr_mode: index -d_course_kalimari_desert_unknown_waypoints: - symbol: d_course_kalimari_desert_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x6ac8 - count: 51 -d_course_kalimari_desert_track_unknown_waypoints: - symbol: d_course_kalimari_desert_track_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x6c60 - count: 76 -d_course_kalimari_desert_track_waypoints: - symbol: d_course_kalimari_desert_track_waypoints - type: mk64:TRACK_PATH - offset: 0x6ec0 - count: 664 -d_course_kalimari_desert_tree_tlut: - symbol: d_course_kalimari_desert_tree_tlut - type: texture - offset: 0x8380 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_cactus_model1: - symbol: d_course_kalimari_desert_cactus_model1 - type: vtx - offset: 0x8468 - count: 8 -d_course_kalimari_desert_cactus_model2: - symbol: d_course_kalimari_desert_cactus_model2 - type: vtx - offset: 0x84e8 - count: 8 -d_course_kalimari_desert_dl_cactus1: - symbol: d_course_kalimari_desert_dl_cactus1 - type: gfx - offset: 0x8528 -d_course_kalimari_desert_dl_cactus2: - symbol: d_course_kalimari_desert_dl_cactus2 - type: gfx - offset: 0x8628 -d_course_kalimari_desert_dl_cactus3: - symbol: d_course_kalimari_desert_dl_cactus3 - type: gfx - offset: 0x8728 -d_course_kalimari_desert_crossing_sign_inactive_top_left: - symbol: d_course_kalimari_desert_crossing_sign_inactive_top_left - type: texture - offset: 0x87e8 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_crossing_sign_inactive_top_right: - symbol: d_course_kalimari_desert_crossing_sign_inactive_top_right - type: texture - offset: 0x97e8 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_crossing_sign_inactive_bottom_left: - symbol: d_course_kalimari_desert_crossing_sign_inactive_bottom_left - type: texture - offset: 0xa7e8 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_crossing_sign_inactive_bottom_right: - symbol: d_course_kalimari_desert_crossing_sign_inactive_bottom_right - type: texture - offset: 0xb7e8 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_crossing_sign_active_top_left: - symbol: d_course_kalimari_desert_crossing_sign_active_top_left - type: texture - offset: 0xc7e8 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_crossing_sign_active_top_right: - symbol: d_course_kalimari_desert_crossing_sign_active_top_right - type: texture - offset: 0xd7e8 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_crossing_sign_active_bottom_left: - symbol: d_course_kalimari_desert_crossing_sign_active_bottom_left - type: texture - offset: 0xe7e8 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_crossing_sign_active_bottom_right: - symbol: d_course_kalimari_desert_crossing_sign_active_bottom_right - type: texture - offset: 0xf7e8 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_crossing_signal_active_model: - symbol: d_course_kalimari_desert_crossing_signal_active_model - type: vtx - offset: 0x107e8 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model1: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model1 - type: vtx - offset: 0x10828 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model2: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model2 - type: vtx - offset: 0x10868 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model3: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model3 - type: vtx - offset: 0x108a8 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model4: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model4 - type: vtx - offset: 0x108e8 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model5: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model5 - type: vtx - offset: 0x10928 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model6: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model6 - type: vtx - offset: 0x10968 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model7: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model7 - type: vtx - offset: 0x109a8 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model8: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model8 - type: vtx - offset: 0x109e8 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model9: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model9 - type: vtx - offset: 0x10a28 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model10: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model10 - type: vtx - offset: 0x10a68 - count: 4 -d_course_kalimari_desert_crossing_signal_unknown_model11: - symbol: d_course_kalimari_desert_crossing_signal_unknown_model11 - type: vtx - offset: 0x10aa8 - count: 4 -d_course_kalimari_desert_dl_crossing_right_active: - symbol: d_course_kalimari_desert_dl_crossing_right_active - type: gfx - offset: 0x10ae8 -d_course_kalimari_desert_dl_crossing_left_active: - symbol: d_course_kalimari_desert_dl_crossing_left_active - type: gfx - offset: 0x10c10 -d_course_kalimari_desert_dl_crossing_both_inactive: - symbol: d_course_kalimari_desert_dl_crossing_both_inactive - type: gfx - offset: 0x10d38 -d_course_kalimari_desert_locomotive_64: - symbol: d_course_kalimari_desert_locomotive_64 - type: texture - offset: 0x10e60 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_locomotive_cab_window: - symbol: d_course_kalimari_desert_locomotive_cab_window - type: texture - offset: 0x11660 - width: 64 - height: 32 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_locomotive_cab_window_front: - symbol: d_course_kalimari_desert_locomotive_cab_window_front - type: texture - offset: 0x12660 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_locomotive_chassis: - symbol: d_course_kalimari_desert_locomotive_chassis - type: texture - offset: 0x13660 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_locomotive_lamp: - symbol: d_course_kalimari_desert_locomotive_lamp - type: texture - offset: 0x13e60 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_locomotive_boiler: - symbol: d_course_kalimari_desert_locomotive_boiler - type: texture - offset: 0x14660 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_carriage_railing: - symbol: d_course_kalimari_desert_carriage_railing - type: texture - offset: 0x14e60 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_locomotive_tender: - symbol: d_course_kalimari_desert_locomotive_tender - type: texture - offset: 0x15e60 - width: 64 - height: 32 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_railway_ballast: - symbol: d_course_kalimari_desert_railway_ballast - type: texture - offset: 0x16e60 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_carriage_lower: - symbol: d_course_kalimari_desert_carriage_lower - type: texture - offset: 0x17660 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_carriage_door: - symbol: d_course_kalimari_desert_carriage_door - type: texture - offset: 0x17e60 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_carriage_window: - symbol: d_course_kalimari_desert_carriage_window - type: texture - offset: 0x18e60 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_locomotive_model_lod2: - symbol: d_course_kalimari_desert_locomotive_model_lod2 - type: vtx - offset: 0x19e60 - count: 10 -d_course_kalimari_desert_unknown_lod2_locomotive_model1: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model1 - type: vtx - offset: 0x19f00 - count: 8 -d_course_kalimari_desert_unknown_lod2_locomotive_model2: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model2 - type: vtx - offset: 0x19f80 - count: 8 -d_course_kalimari_desert_unknown_lod2_locomotive_model3: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model3 - type: vtx - offset: 0x1a000 - count: 30 -d_course_kalimari_desert_unknown_lod2_locomotive_model4: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model4 - type: vtx - offset: 0x1a1e0 - count: 32 -d_course_kalimari_desert_unknown_lod2_locomotive_model5: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model5 - type: vtx - offset: 0x1a3e0 - count: 30 -d_course_kalimari_desert_unknown_lod2_locomotive_model6: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model6 - type: vtx - offset: 0x1a5c0 - count: 4 -d_course_kalimari_desert_unknown_lod2_locomotive_model7: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model7 - type: vtx - offset: 0x1a600 - count: 32 -d_course_kalimari_desert_unknown_lod2_locomotive_model8: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model8 - type: vtx - offset: 0x1a800 - count: 6 -d_course_kalimari_desert_unknown_lod2_locomotive_model9: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model9 - type: vtx - offset: 0x1a860 - count: 6 -d_course_kalimari_desert_unknown_lod2_locomotive_model10: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model10 - type: vtx - offset: 0x1a8c0 - count: 4 -d_course_kalimari_desert_unknown_lod2_locomotive_model11: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model11 - type: vtx - offset: 0x1a900 - count: 28 -d_course_kalimari_desert_unknown_lod2_locomotive_model12: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model12 - type: vtx - offset: 0x1aac0 - count: 6 -d_course_kalimari_desert_unknown_lod2_locomotive_model13: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model13 - type: vtx - offset: 0x1ab20 - count: 12 -d_course_kalimari_desert_unknown_lod2_locomotive_model14: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model14 - type: vtx - offset: 0x1abe0 - count: 31 -d_course_kalimari_desert_unknown_lod2_locomotive_model15: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model15 - type: vtx - offset: 0x1add0 - count: 32 -d_course_kalimari_desert_unknown_lod2_locomotive_model16: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model16 - type: vtx - offset: 0x1afd0 - count: 16 -d_course_kalimari_desert_unknown_lod2_locomotive_model17: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model17 - type: vtx - offset: 0x1b0d0 - count: 32 -d_course_kalimari_desert_unknown_lod2_locomotive_model18: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model18 - type: vtx - offset: 0x1b2d0 - count: 12 -d_course_kalimari_desert_unknown_lod2_locomotive_model19: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model19 - type: vtx - offset: 0x1b390 - count: 31 -d_course_kalimari_desert_unknown_lod2_locomotive_model20: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model20 - type: vtx - offset: 0x1b580 - count: 32 -d_course_kalimari_desert_unknown_lod2_locomotive_model21: - symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model21 - type: vtx - offset: 0x1b780 - count: 4 -d_course_kalimari_desert_dl_1B7C0: - symbol: d_course_kalimari_desert_dl_1B7C0 - type: gfx - offset: 0x1b7c0 -d_course_kalimari_desert_dl_1B850: - symbol: d_course_kalimari_desert_dl_1B850 - type: gfx - offset: 0x1b850 -d_course_kalimari_desert_dl_1B950: - symbol: d_course_kalimari_desert_dl_1B950 - type: gfx - offset: 0x1b950 -d_course_kalimari_desert_dl_1B968: - symbol: d_course_kalimari_desert_dl_1B968 - type: gfx - offset: 0x1b968 -d_course_kalimari_desert_dl_1B978: - symbol: d_course_kalimari_desert_dl_1B978 - type: gfx - offset: 0x1b978 -d_course_kalimari_desert_dl_1B990: - symbol: d_course_kalimari_desert_dl_1B990 - type: gfx - offset: 0x1b990 -d_course_kalimari_desert_dl_1BD18: - symbol: d_course_kalimari_desert_dl_1BD18 - type: gfx - offset: 0x1bd18 -d_course_kalimari_desert_dl_1BD58: - symbol: d_course_kalimari_desert_dl_1BD58 - type: gfx - offset: 0x1bd58 -d_course_kalimari_desert_dl_1BEF8: - symbol: d_course_kalimari_desert_dl_1BEF8 - type: gfx - offset: 0x1bef8 -d_course_kalimari_desert_dl_1BF90: - symbol: d_course_kalimari_desert_dl_1BF90 - type: gfx - offset: 0x1bf90 -d_course_kalimari_desert_dl_1C0B0: - symbol: d_course_kalimari_desert_dl_1C0B0 - type: gfx - offset: 0x1c0b0 -d_course_kalimari_desert_dl_1C0E0: - symbol: d_course_kalimari_desert_dl_1C0E0 - type: gfx - offset: 0x1c0e0 -d_course_kalimari_desert_dl_1C0F0: - symbol: d_course_kalimari_desert_dl_1C0F0 - type: gfx - offset: 0x1c0f0 -d_course_kalimari_desert_locomotive_model_lod1: - symbol: d_course_kalimari_desert_locomotive_model_lod1 - type: vtx - offset: 0x1c108 - count: 10 -d_course_kalimari_desert_unknown_lod1_locomotive_model1: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model1 - type: vtx - offset: 0x1c1a8 - count: 8 -d_course_kalimari_desert_unknown_lod1_locomotive_model2: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model2 - type: vtx - offset: 0x1c228 - count: 8 -d_course_kalimari_desert_unknown_lod1_locomotive_model3: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model3 - type: vtx - offset: 0x1c2a8 - count: 32 -d_course_kalimari_desert_unknown_lod1_locomotive_model4: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model4 - type: vtx - offset: 0x1c4a8 - count: 30 -d_course_kalimari_desert_unknown_lod1_locomotive_model5: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model5 - type: vtx - offset: 0x1c688 - count: 20 -d_course_kalimari_desert_unknown_lod1_locomotive_model6: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model6 - type: vtx - offset: 0x1c7c8 - count: 6 -d_course_kalimari_desert_unknown_lod1_locomotive_model7: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model7 - type: vtx - offset: 0x1c828 - count: 4 -d_course_kalimari_desert_unknown_lod1_locomotive_model8: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model8 - type: vtx - offset: 0x1c868 - count: 20 -d_course_kalimari_desert_unknown_lod1_locomotive_model9: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model9 - type: vtx - offset: 0x1c9a8 - count: 4 -d_course_kalimari_desert_unknown_lod1_locomotive_model10: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model10 - type: vtx - offset: 0x1c9e8 - count: 8 -d_course_kalimari_desert_unknown_lod1_locomotive_model11: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model11 - type: vtx - offset: 0x1ca68 - count: 30 -d_course_kalimari_desert_unknown_lod1_locomotive_model12: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model12 - type: vtx - offset: 0x1cc48 - count: 20 -d_course_kalimari_desert_unknown_lod1_locomotive_model13: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model13 - type: vtx - offset: 0x1cd88 - count: 31 -d_course_kalimari_desert_unknown_lod1_locomotive_model14: - symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model14 - type: vtx - offset: 0x1cf78 - count: 3 -d_course_kalimari_desert_dl_1CFA8: - symbol: d_course_kalimari_desert_dl_1CFA8 - type: gfx - offset: 0x1cfa8 -d_course_kalimari_desert_dl_1D038: - symbol: d_course_kalimari_desert_dl_1D038 - type: gfx - offset: 0x1d038 -d_course_kalimari_desert_dl_1D138: - symbol: d_course_kalimari_desert_dl_1D138 - type: gfx - offset: 0x1d138 -d_course_kalimari_desert_dl_1D150: - symbol: d_course_kalimari_desert_dl_1D150 - type: gfx - offset: 0x1d150 -d_course_kalimari_desert_dl_1D160: - symbol: d_course_kalimari_desert_dl_1D160 - type: gfx - offset: 0x1d160 -d_course_kalimari_desert_dl_1D178: - symbol: d_course_kalimari_desert_dl_1D178 - type: gfx - offset: 0x1d178 -d_course_kalimari_desert_dl_1D418: - symbol: d_course_kalimari_desert_dl_1D418 - type: gfx - offset: 0x1d418 -d_course_kalimari_desert_dl_1D450: - symbol: d_course_kalimari_desert_dl_1D450 - type: gfx - offset: 0x1d450 -d_course_kalimari_desert_dl_1D540: - symbol: d_course_kalimari_desert_dl_1D540 - type: gfx - offset: 0x1d540 -d_course_kalimari_desert_dl_1D598: - symbol: d_course_kalimari_desert_dl_1D598 - type: gfx - offset: 0x1d598 -d_course_kalimari_desert_dl_1D630: - symbol: d_course_kalimari_desert_dl_1D630 - type: gfx - offset: 0x1d630 -d_course_kalimari_desert_dl_1D660: - symbol: d_course_kalimari_desert_dl_1D660 - type: gfx - offset: 0x1d660 -d_course_kalimari_desert_dl_1D670: - symbol: d_course_kalimari_desert_dl_1D670 - type: gfx - offset: 0x1d670 -d_course_kalimari_desert_locomotive_model_lod0: - symbol: d_course_kalimari_desert_locomotive_model_lod0 - type: vtx - offset: 0x1d688 - count: 10 -d_course_kalimari_desert_unknown_lod0_locomotive_model1: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model1 - type: vtx - offset: 0x1d728 - count: 8 -d_course_kalimari_desert_unknown_lod0_locomotive_model2: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model2 - type: vtx - offset: 0x1d7a8 - count: 8 -d_course_kalimari_desert_unknown_lod0_locomotive_model3: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model3 - type: vtx - offset: 0x1d828 - count: 32 -d_course_kalimari_desert_unknown_lod0_locomotive_model4: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model4 - type: vtx - offset: 0x1da28 - count: 14 -d_course_kalimari_desert_unknown_lod0_locomotive_model5: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model5 - type: vtx - offset: 0x1db08 - count: 12 -d_course_kalimari_desert_unknown_lod0_locomotive_model6: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model6 - type: vtx - offset: 0x1dbc8 - count: 4 -d_course_kalimari_desert_unknown_lod0_locomotive_model7: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model7 - type: vtx - offset: 0x1dc08 - count: 4 -d_course_kalimari_desert_unknown_lod0_locomotive_model8: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model8 - type: vtx - offset: 0x1dc48 - count: 16 -d_course_kalimari_desert_unknown_lod0_locomotive_model9: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model9 - type: vtx - offset: 0x1dd48 - count: 4 -d_course_kalimari_desert_unknown_lod0_locomotive_model10: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model10 - type: vtx - offset: 0x1dd88 - count: 8 -d_course_kalimari_desert_unknown_lod0_locomotive_model11: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model11 - type: vtx - offset: 0x1de08 - count: 30 -d_course_kalimari_desert_unknown_lod0_locomotive_model12: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model12 - type: vtx - offset: 0x1dfe8 - count: 19 -d_course_kalimari_desert_unknown_lod0_locomotive_model13: - symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model13 - type: vtx - offset: 0x1e118 - count: 27 -d_course_kalimari_desert_dl_1E2C8: - symbol: d_course_kalimari_desert_dl_1E2C8 - type: gfx - offset: 0x1e2c8 -d_course_kalimari_desert_dl_1E358: - symbol: d_course_kalimari_desert_dl_1E358 - type: gfx - offset: 0x1e358 -d_course_kalimari_desert_dl_1E458: - symbol: d_course_kalimari_desert_dl_1E458 - type: gfx - offset: 0x1e458 -d_course_kalimari_desert_dl_1E470: - symbol: d_course_kalimari_desert_dl_1E470 - type: gfx - offset: 0x1e470 -d_course_kalimari_desert_dl_1E480: - symbol: d_course_kalimari_desert_dl_1E480 - type: gfx - offset: 0x1e480 -d_course_kalimari_desert_dl_1E498: - symbol: d_course_kalimari_desert_dl_1E498 - type: gfx - offset: 0x1e498 -d_course_kalimari_desert_dl_1E6D8: - symbol: d_course_kalimari_desert_dl_1E6D8 - type: gfx - offset: 0x1e6d8 -d_course_kalimari_desert_dl_1E710: - symbol: d_course_kalimari_desert_dl_1E710 - type: gfx - offset: 0x1e710 -d_course_kalimari_desert_dl_1E800: - symbol: d_course_kalimari_desert_dl_1E800 - type: gfx - offset: 0x1e800 -d_course_kalimari_desert_dl_1E858: - symbol: d_course_kalimari_desert_dl_1E858 - type: gfx - offset: 0x1e858 -d_course_kalimari_desert_dl_1E8D0: - symbol: d_course_kalimari_desert_dl_1E8D0 - type: gfx - offset: 0x1e8d0 -d_course_kalimari_desert_dl_1E900: - symbol: d_course_kalimari_desert_dl_1E900 - type: gfx - offset: 0x1e900 -d_course_kalimari_desert_dl_1E910: - symbol: d_course_kalimari_desert_dl_1E910 - type: gfx - offset: 0x1e910 -d_course_kalimari_desert_tender_model_lod2: - symbol: d_course_kalimari_desert_tender_model_lod2 - type: vtx - offset: 0x1e928 - count: 28 -d_course_kalimari_desert_unknown_lod2_tender_model1: - symbol: d_course_kalimari_desert_unknown_lod2_tender_model1 - type: vtx - offset: 0x1eae8 - count: 32 -d_course_kalimari_desert_unknown_lod2_tender_model2: - symbol: d_course_kalimari_desert_unknown_lod2_tender_model2 - type: vtx - offset: 0x1ece8 - count: 4 -d_course_kalimari_desert_unknown_lod2_tender_model3: - symbol: d_course_kalimari_desert_unknown_lod2_tender_model3 - type: vtx - offset: 0x1ed28 - count: 27 -d_course_kalimari_desert_unknown_lod2_tender_model4: - symbol: d_course_kalimari_desert_unknown_lod2_tender_model4 - type: vtx - offset: 0x1eed8 - count: 16 -d_course_kalimari_desert_dl_1EFD8: - symbol: d_course_kalimari_desert_dl_1EFD8 - type: gfx - offset: 0x1efd8 -d_course_kalimari_desert_dl_1F050: - symbol: d_course_kalimari_desert_dl_1F050 - type: gfx - offset: 0x1f050 -d_course_kalimari_desert_dl_1F0D8: - symbol: d_course_kalimari_desert_dl_1F0D8 - type: gfx - offset: 0x1f0d8 -d_course_kalimari_desert_dl_1F1F8: - symbol: d_course_kalimari_desert_dl_1F1F8 - type: gfx - offset: 0x1f1f8 -d_course_kalimari_desert_dl_1F218: - symbol: d_course_kalimari_desert_dl_1F218 - type: gfx - offset: 0x1f218 -d_course_kalimari_desert_dl_1F228: - symbol: d_course_kalimari_desert_dl_1F228 - type: gfx - offset: 0x1f228 -d_course_kalimari_desert_tender_model_lod1: - symbol: d_course_kalimari_desert_tender_model_lod1 - type: vtx - offset: 0x1f240 - count: 23 -d_course_kalimari_desert_unknown_lod1_tender_model1: - symbol: d_course_kalimari_desert_unknown_lod1_tender_model1 - type: vtx - offset: 0x1f3b0 - count: 12 -d_course_kalimari_desert_unknown_lod1_tender_model2: - symbol: d_course_kalimari_desert_unknown_lod1_tender_model2 - type: vtx - offset: 0x1f470 - count: 16 -d_course_kalimari_desert_dl_1F570: - symbol: d_course_kalimari_desert_dl_1F570 - type: gfx - offset: 0x1f570 -d_course_kalimari_desert_dl_1F5E0: - symbol: d_course_kalimari_desert_dl_1F5E0 - type: gfx - offset: 0x1f5e0 -d_course_kalimari_desert_dl_1F6E0: - symbol: d_course_kalimari_desert_dl_1F6E0 - type: gfx - offset: 0x1f6e0 -d_course_kalimari_desert_dl_1F6F8: - symbol: d_course_kalimari_desert_dl_1F6F8 - type: gfx - offset: 0x1f6f8 -d_course_kalimari_desert_dl_1F708: - symbol: d_course_kalimari_desert_dl_1F708 - type: gfx - offset: 0x1f708 -d_course_kalimari_desert_dl_1F720: - symbol: d_course_kalimari_desert_dl_1F720 - type: gfx - offset: 0x1f720 -d_course_kalimari_desert_tender_model_lod0: - symbol: d_course_kalimari_desert_tender_model_lod0 - type: vtx - offset: 0x1f728 - count: 16 -d_course_kalimari_desert_unknown_lod0_tender_model1: - symbol: d_course_kalimari_desert_unknown_lod0_tender_model1 - type: vtx - offset: 0x1f828 - count: 6 -d_course_kalimari_desert_unknown_lod0_tender_model2: - symbol: d_course_kalimari_desert_unknown_lod0_tender_model2 - type: vtx - offset: 0x1f888 - count: 16 -d_course_kalimari_desert_dl_1F988: - symbol: d_course_kalimari_desert_dl_1F988 - type: gfx - offset: 0x1f988 -d_course_kalimari_desert_dl_1F9D8: - symbol: d_course_kalimari_desert_dl_1F9D8 - type: gfx - offset: 0x1f9d8 -d_course_kalimari_desert_dl_1FAD0: - symbol: d_course_kalimari_desert_dl_1FAD0 - type: gfx - offset: 0x1fad0 -d_course_kalimari_desert_dl_1FAE8: - symbol: d_course_kalimari_desert_dl_1FAE8 - type: gfx - offset: 0x1fae8 -d_course_kalimari_desert_dl_1FAF8: - symbol: d_course_kalimari_desert_dl_1FAF8 - type: gfx - offset: 0x1faf8 -d_course_kalimari_desert_dl_1FB10: - symbol: d_course_kalimari_desert_dl_1FB10 - type: gfx - offset: 0x1fb10 -d_course_kalimari_desert_carriage_chassis_model_lod2: - symbol: d_course_kalimari_desert_carriage_chassis_model_lod2 - type: vtx - offset: 0x1fb18 - count: 12 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model1: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model1 - type: vtx - offset: 0x1fbd8 - count: 20 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model2: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model2 - type: vtx - offset: 0x1fd18 - count: 32 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model3: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model3 - type: vtx - offset: 0x1ff18 - count: 15 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model4: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model4 - type: vtx - offset: 0x20008 - count: 8 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model5: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model5 - type: vtx - offset: 0x20088 - count: 4 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model6: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model6 - type: vtx - offset: 0x200c8 - count: 12 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model7: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model7 - type: vtx - offset: 0x20188 - count: 32 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model8: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model8 - type: vtx - offset: 0x20388 - count: 4 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model9: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model9 - type: vtx - offset: 0x203c8 - count: 20 -d_course_kalimari_desert_unknown_lod2_carriage_chassis_model10: - symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model10 - type: vtx - offset: 0x20508 - count: 7 -d_course_kalimari_desert_dl_20578: - symbol: d_course_kalimari_desert_dl_20578 - type: gfx - offset: 0x20578 -d_course_kalimari_desert_dl_20610: - symbol: d_course_kalimari_desert_dl_20610 - type: gfx - offset: 0x20610 -d_course_kalimari_desert_dl_20620: - symbol: d_course_kalimari_desert_dl_20620 - type: gfx - offset: 0x20620 -d_course_kalimari_desert_dl_20630: - symbol: d_course_kalimari_desert_dl_20630 - type: gfx - offset: 0x20630 -d_course_kalimari_desert_dl_20688: - symbol: d_course_kalimari_desert_dl_20688 - type: gfx - offset: 0x20688 -d_course_kalimari_desert_dl_208A0: - symbol: d_course_kalimari_desert_dl_208A0 - type: gfx - offset: 0x208a0 -d_course_kalimari_desert_dl_20928: - symbol: d_course_kalimari_desert_dl_20928 - type: gfx - offset: 0x20928 -d_course_kalimari_desert_dl_20980: - symbol: d_course_kalimari_desert_dl_20980 - type: gfx - offset: 0x20980 -d_course_kalimari_desert_dl_209C8: - symbol: d_course_kalimari_desert_dl_209C8 - type: gfx - offset: 0x209c8 -d_course_kalimari_desert_dl_209F8: - symbol: d_course_kalimari_desert_dl_209F8 - type: gfx - offset: 0x209f8 -d_course_kalimari_desert_dl_20A08: - symbol: d_course_kalimari_desert_dl_20A08 - type: gfx - offset: 0x20a08 -d_course_kalimari_desert_dl_20A20: - symbol: d_course_kalimari_desert_dl_20A20 - type: gfx - offset: 0x20a20 -d_course_kalimari_desert_carriage_chassis_model_lod1: - symbol: d_course_kalimari_desert_carriage_chassis_model_lod1 - type: vtx - offset: 0x20a38 - count: 4 -d_course_kalimari_desert_unknown_lod1_carriage_chassis_model1: - symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model1 - type: vtx - offset: 0x20a78 - count: 16 -d_course_kalimari_desert_unknown_lod1_carriage_chassis_model2: - symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model2 - type: vtx - offset: 0x20b78 - count: 32 -d_course_kalimari_desert_unknown_lod1_carriage_chassis_model3: - symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model3 - type: vtx - offset: 0x20d78 - count: 17 -d_course_kalimari_desert_unknown_lod1_carriage_chassis_model4: - symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model4 - type: vtx - offset: 0x20e88 - count: 8 -d_course_kalimari_desert_unknown_lod1_carriage_chassis_model5: - symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model5 - type: vtx - offset: 0x20f08 - count: 4 -d_course_kalimari_desert_unknown_lod1_carriage_chassis_model6: - symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model6 - type: vtx - offset: 0x20f48 - count: 12 -d_course_kalimari_desert_unknown_lod1_carriage_chassis_model7: - symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model7 - type: vtx - offset: 0x21008 - count: 16 -d_course_kalimari_desert_unknown_lod1_carriage_chassis_model8: - symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model8 - type: vtx - offset: 0x21108 - count: 7 -d_course_kalimari_desert_dl_21178: - symbol: d_course_kalimari_desert_dl_21178 - type: gfx - offset: 0x21178 -d_course_kalimari_desert_dl_21200: - symbol: d_course_kalimari_desert_dl_21200 - type: gfx - offset: 0x21200 -d_course_kalimari_desert_dl_21210: - symbol: d_course_kalimari_desert_dl_21210 - type: gfx - offset: 0x21210 -d_course_kalimari_desert_dl_21220: - symbol: d_course_kalimari_desert_dl_21220 - type: gfx - offset: 0x21220 -d_course_kalimari_desert_dl_21238: - symbol: d_course_kalimari_desert_dl_21238 - type: gfx - offset: 0x21238 -d_course_kalimari_desert_dl_21288: - symbol: d_course_kalimari_desert_dl_21288 - type: gfx - offset: 0x21288 -d_course_kalimari_desert_dl_21480: - symbol: d_course_kalimari_desert_dl_21480 - type: gfx - offset: 0x21480 -d_course_kalimari_desert_dl_214D0: - symbol: d_course_kalimari_desert_dl_214D0 - type: gfx - offset: 0x214d0 -d_course_kalimari_desert_dl_21518: - symbol: d_course_kalimari_desert_dl_21518 - type: gfx - offset: 0x21518 -d_course_kalimari_desert_dl_21540: - symbol: d_course_kalimari_desert_dl_21540 - type: gfx - offset: 0x21540 -d_course_kalimari_desert_dl_21550: - symbol: d_course_kalimari_desert_dl_21550 - type: gfx - offset: 0x21550 -d_course_kalimari_desert_carriage_model_lod0: - symbol: d_course_kalimari_desert_carriage_model_lod0 - type: vtx - offset: 0x21568 - count: 4 -d_course_kalimari_desert_unknown_lod0_carriage_model1: - symbol: d_course_kalimari_desert_unknown_lod0_carriage_model1 - type: vtx - offset: 0x215a8 - count: 16 -d_course_kalimari_desert_unknown_lod0_carriage_model2: - symbol: d_course_kalimari_desert_unknown_lod0_carriage_model2 - type: vtx - offset: 0x216a8 - count: 16 -d_course_kalimari_desert_unknown_lod0_carriage_model3: - symbol: d_course_kalimari_desert_unknown_lod0_carriage_model3 - type: vtx - offset: 0x217a8 - count: 12 -d_course_kalimari_desert_unknown_lod0_carriage_model4: - symbol: d_course_kalimari_desert_unknown_lod0_carriage_model4 - type: vtx - offset: 0x21868 - count: 16 -d_course_kalimari_desert_unknown_lod0_carriage_model5: - symbol: d_course_kalimari_desert_unknown_lod0_carriage_model5 - type: vtx - offset: 0x21968 - count: 7 -d_course_kalimari_desert_dl_219D8: - symbol: d_course_kalimari_desert_dl_219D8 - type: gfx - offset: 0x219d8 -d_course_kalimari_desert_dl_21A60: - symbol: d_course_kalimari_desert_dl_21A60 - type: gfx - offset: 0x21a60 -d_course_kalimari_desert_dl_21A70: - symbol: d_course_kalimari_desert_dl_21A70 - type: gfx - offset: 0x21a70 -d_course_kalimari_desert_dl_21A80: - symbol: d_course_kalimari_desert_dl_21A80 - type: gfx - offset: 0x21a80 -d_course_kalimari_desert_dl_21A98: - symbol: d_course_kalimari_desert_dl_21A98 - type: gfx - offset: 0x21a98 -d_course_kalimari_desert_dl_21AE8: - symbol: d_course_kalimari_desert_dl_21AE8 - type: gfx - offset: 0x21ae8 -d_course_kalimari_desert_dl_21BC0: - symbol: d_course_kalimari_desert_dl_21BC0 - type: gfx - offset: 0x21bc0 -d_course_kalimari_desert_dl_21C10: - symbol: d_course_kalimari_desert_dl_21C10 - type: gfx - offset: 0x21c10 -d_course_kalimari_desert_dl_21C58: - symbol: d_course_kalimari_desert_dl_21C58 - type: gfx - offset: 0x21c58 -d_course_kalimari_desert_dl_21C80: - symbol: d_course_kalimari_desert_dl_21C80 - type: gfx - offset: 0x21c80 -d_course_kalimari_desert_dl_21C90: - symbol: d_course_kalimari_desert_dl_21C90 - type: gfx - offset: 0x21c90 -d_course_kalimari_desert_unknown_model1: - symbol: d_course_kalimari_desert_unknown_model1 - type: vtx - offset: 0x21ca8 - count: 4 -d_course_kalimari_desert_unknown_model2: - symbol: d_course_kalimari_desert_unknown_model2 - type: vtx - offset: 0x21ce8 - count: 4 -d_course_kalimari_desert_train_bogie: - symbol: d_course_kalimari_desert_train_bogie - type: texture - offset: 0x21d28 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_kalimari_desert_dl_22D28: - symbol: d_course_kalimari_desert_dl_22D28 - type: gfx - offset: 0x22d28 -d_course_kalimari_desert_dl_22D70: - symbol: d_course_kalimari_desert_dl_22D70 - type: gfx - offset: 0x22d70 -d_course_kalimari_desert_dl_22DB8: - symbol: d_course_kalimari_desert_dl_22DB8 - type: gfx - offset: 0x22db8 -d_course_kalimari_desert_dl_22E00: - symbol: d_course_kalimari_desert_dl_22E00 - type: gfx - offset: 0x22e00 - otr_mode: index -d_course_kalimari_desert_item_box_spawns: - symbol: d_course_kalimari_desert_item_box_spawns - type: mk64:spawn_data - offset: 0x22e88 - count: 16 -d_course_kalimari_desert_cactus_spawn: - symbol: d_course_kalimari_desert_cactus_spawn - type: mk64:spawn_data - offset: 0x22f08 - count: 45 -d_course_kalimari_desert_addr: - symbol: d_course_kalimari_desert_addr - type: mk64:track_sections - offset: 0x23070 - count: 102 \ No newline at end of file diff --git a/yamls/us/kalimari_desert_displaylists.yml b/yamls/us/kalimari_desert_displaylists.yml deleted file mode 100644 index 1598abc3a..000000000 --- a/yamls/us/kalimari_desert_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x934004 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_kalimari_desert_packed_dls: - symbol: d_course_kalimari_desert_packed_dls - type: blob - offset: 0x934004 - size: 0x2FC6 diff --git a/yamls/us/kalimari_desert_vertices.yml b/yamls/us/kalimari_desert_vertices.yml deleted file mode 100644 index 81d54c6fa..000000000 --- a/yamls/us/kalimari_desert_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x928c70] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_kalimari_desert_vertex: - symbol: d_course_kalimari_desert_vertex - type: mk64:course_vtx - count: 6393 - offset: 0x0 diff --git a/yamls/us/koopa_troopa_beach_data.yml b/yamls/us/koopa_troopa_beach_data.yml deleted file mode 100644 index ecdef9a46..000000000 --- a/yamls/us/koopa_troopa_beach_data.yml +++ /dev/null @@ -1,1527 +0,0 @@ -:config: - segments: - - [0x06, 0x842E40] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true - tables: - d_course_koopa_troopa_beach_crab_frames: - range: [0xD828, 0x13828] - mode: APPEND -d_course_koopa_troopa_beach_dl_0: - symbol: d_course_koopa_troopa_beach_dl_0 - type: gfx - offset: 0x0 -d_course_koopa_troopa_beach_dl_48: - symbol: d_course_koopa_troopa_beach_dl_48 - type: gfx - offset: 0x48 -d_course_koopa_troopa_beach_dl_90: - symbol: d_course_koopa_troopa_beach_dl_90 - type: gfx - offset: 0x90 -d_course_koopa_troopa_beach_dl_118: - symbol: d_course_koopa_troopa_beach_dl_118 - type: gfx - offset: 0x118 -d_course_koopa_troopa_beach_dl_188: - symbol: d_course_koopa_troopa_beach_dl_188 - type: gfx - offset: 0x188 -d_course_koopa_troopa_beach_dl_218: - symbol: d_course_koopa_troopa_beach_dl_218 - type: gfx - offset: 0x218 -d_course_koopa_troopa_beach_dl_278: - symbol: d_course_koopa_troopa_beach_dl_278 - type: gfx - offset: 0x278 -d_course_koopa_troopa_beach_dl_328: - symbol: d_course_koopa_troopa_beach_dl_328 - type: gfx - offset: 0x328 -d_course_koopa_troopa_beach_dl_3C0: - symbol: d_course_koopa_troopa_beach_dl_3C0 - type: gfx - offset: 0x3C0 -d_course_koopa_troopa_beach_dl_458: - symbol: d_course_koopa_troopa_beach_dl_458 - type: gfx - offset: 0x458 -d_course_koopa_troopa_beach_dl_4B0: - symbol: d_course_koopa_troopa_beach_dl_4B0 - type: gfx - offset: 0x4B0 -d_course_koopa_troopa_beach_dl_530: - symbol: d_course_koopa_troopa_beach_dl_530 - type: gfx - offset: 0x530 -d_course_koopa_troopa_beach_dl_5A0: - symbol: d_course_koopa_troopa_beach_dl_5A0 - type: gfx - offset: 0x5A0 -d_course_koopa_troopa_beach_dl_658: - symbol: d_course_koopa_troopa_beach_dl_658 - type: gfx - offset: 0x658 -d_course_koopa_troopa_beach_dl_6E0: - symbol: d_course_koopa_troopa_beach_dl_6E0 - type: gfx - offset: 0x6E0 -d_course_koopa_troopa_beach_dl_790: - symbol: d_course_koopa_troopa_beach_dl_790 - type: gfx - offset: 0x790 -d_course_koopa_troopa_beach_dl_828: - symbol: d_course_koopa_troopa_beach_dl_828 - type: gfx - offset: 0x828 -d_course_koopa_troopa_beach_dl_8F0: - symbol: d_course_koopa_troopa_beach_dl_8F0 - type: gfx - offset: 0x8F0 -d_course_koopa_troopa_beach_dl_960: - symbol: d_course_koopa_troopa_beach_dl_960 - type: gfx - offset: 0x960 -d_course_koopa_troopa_beach_dl_9E0: - symbol: d_course_koopa_troopa_beach_dl_9E0 - type: gfx - offset: 0x9E0 -d_course_koopa_troopa_beach_dl_A58: - symbol: d_course_koopa_troopa_beach_dl_A58 - type: gfx - offset: 0xA58 -d_course_koopa_troopa_beach_dl_B10: - symbol: d_course_koopa_troopa_beach_dl_B10 - type: gfx - offset: 0xB10 -d_course_koopa_troopa_beach_dl_B98: - symbol: d_course_koopa_troopa_beach_dl_B98 - type: gfx - offset: 0xB98 -d_course_koopa_troopa_beach_dl_C50: - symbol: d_course_koopa_troopa_beach_dl_C50 - type: gfx - offset: 0xC50 -d_course_koopa_troopa_beach_dl_CF0: - symbol: d_course_koopa_troopa_beach_dl_CF0 - type: gfx - offset: 0xCF0 -d_course_koopa_troopa_beach_dl_DB8: - symbol: d_course_koopa_troopa_beach_dl_DB8 - type: gfx - offset: 0xDB8 -d_course_koopa_troopa_beach_dl_E48: - symbol: d_course_koopa_troopa_beach_dl_E48 - type: gfx - offset: 0xE48 -d_course_koopa_troopa_beach_dl_EE0: - symbol: d_course_koopa_troopa_beach_dl_EE0 - type: gfx - offset: 0xEE0 -d_course_koopa_troopa_beach_dl_F60: - symbol: d_course_koopa_troopa_beach_dl_F60 - type: gfx - offset: 0xF60 -d_course_koopa_troopa_beach_dl_1040: - symbol: d_course_koopa_troopa_beach_dl_1040 - type: gfx - offset: 0x1040 -d_course_koopa_troopa_beach_dl_10D0: - symbol: d_course_koopa_troopa_beach_dl_10D0 - type: gfx - offset: 0x10D0 -d_course_koopa_troopa_beach_dl_1178: - symbol: d_course_koopa_troopa_beach_dl_1178 - type: gfx - offset: 0x1178 -d_course_koopa_troopa_beach_dl_1218: - symbol: d_course_koopa_troopa_beach_dl_1218 - type: gfx - offset: 0x1218 -d_course_koopa_troopa_beach_dl_1310: - symbol: d_course_koopa_troopa_beach_dl_1310 - type: gfx - offset: 0x1310 -d_course_koopa_troopa_beach_dl_13B8: - symbol: d_course_koopa_troopa_beach_dl_13B8 - type: gfx - offset: 0x13B8 -d_course_koopa_troopa_beach_dl_1430: - symbol: d_course_koopa_troopa_beach_dl_1430 - type: gfx - offset: 0x1430 -d_course_koopa_troopa_beach_dl_1498: - symbol: d_course_koopa_troopa_beach_dl_1498 - type: gfx - offset: 0x1498 -d_course_koopa_troopa_beach_dl_1558: - symbol: d_course_koopa_troopa_beach_dl_1558 - type: gfx - offset: 0x1558 -d_course_koopa_troopa_beach_dl_15E0: - symbol: d_course_koopa_troopa_beach_dl_15E0 - type: gfx - offset: 0x15E0 -d_course_koopa_troopa_beach_dl_1680: - symbol: d_course_koopa_troopa_beach_dl_1680 - type: gfx - offset: 0x1680 -d_course_koopa_troopa_beach_dl_1708: - symbol: d_course_koopa_troopa_beach_dl_1708 - type: gfx - offset: 0x1708 -d_course_koopa_troopa_beach_dl_17B0: - symbol: d_course_koopa_troopa_beach_dl_17B0 - type: gfx - offset: 0x17B0 -d_course_koopa_troopa_beach_dl_1818: - symbol: d_course_koopa_troopa_beach_dl_1818 - type: gfx - offset: 0x1818 -d_course_koopa_troopa_beach_dl_1878: - symbol: d_course_koopa_troopa_beach_dl_1878 - type: gfx - offset: 0x1878 -d_course_koopa_troopa_beach_dl_18E0: - symbol: d_course_koopa_troopa_beach_dl_18E0 - type: gfx - offset: 0x18E0 -d_course_koopa_troopa_beach_dl_1940: - symbol: d_course_koopa_troopa_beach_dl_1940 - type: gfx - offset: 0x1940 -d_course_koopa_troopa_beach_dl_1988: - symbol: d_course_koopa_troopa_beach_dl_1988 - type: gfx - offset: 0x1988 -d_course_koopa_troopa_beach_dl_19E8: - symbol: d_course_koopa_troopa_beach_dl_19E8 - type: gfx - offset: 0x19E8 -d_course_koopa_troopa_beach_dl_1A50: - symbol: d_course_koopa_troopa_beach_dl_1A50 - type: gfx - offset: 0x1A50 -d_course_koopa_troopa_beach_dl_1AA8: - symbol: d_course_koopa_troopa_beach_dl_1AA8 - type: gfx - offset: 0x1AA8 -d_course_koopa_troopa_beach_dl_1AD8: - symbol: d_course_koopa_troopa_beach_dl_1AD8 - type: gfx - offset: 0x1AD8 -d_course_koopa_troopa_beach_dl_1B50: - symbol: d_course_koopa_troopa_beach_dl_1B50 - type: gfx - offset: 0x1B50 -d_course_koopa_troopa_beach_dl_1BB8: - symbol: d_course_koopa_troopa_beach_dl_1BB8 - type: gfx - offset: 0x1BB8 -d_course_koopa_troopa_beach_dl_1C00: - symbol: d_course_koopa_troopa_beach_dl_1C00 - type: gfx - offset: 0x1C00 -d_course_koopa_troopa_beach_dl_1C48: - symbol: d_course_koopa_troopa_beach_dl_1C48 - type: gfx - offset: 0x1C48 -d_course_koopa_troopa_beach_dl_1CB0: - symbol: d_course_koopa_troopa_beach_dl_1CB0 - type: gfx - offset: 0x1CB0 -d_course_koopa_troopa_beach_dl_1D20: - symbol: d_course_koopa_troopa_beach_dl_1D20 - type: gfx - offset: 0x1D20 -d_course_koopa_troopa_beach_dl_1D88: - symbol: d_course_koopa_troopa_beach_dl_1D88 - type: gfx - offset: 0x1D88 -d_course_koopa_troopa_beach_dl_1DE0: - symbol: d_course_koopa_troopa_beach_dl_1DE0 - type: gfx - offset: 0x1DE0 -d_course_koopa_troopa_beach_dl_1E40: - symbol: d_course_koopa_troopa_beach_dl_1E40 - type: gfx - offset: 0x1E40 -d_course_koopa_troopa_beach_dl_1EB0: - symbol: d_course_koopa_troopa_beach_dl_1EB0 - type: gfx - offset: 0x1EB0 -d_course_koopa_troopa_beach_dl_1F68: - symbol: d_course_koopa_troopa_beach_dl_1F68 - type: gfx - offset: 0x1F68 -d_course_koopa_troopa_beach_dl_1FE8: - symbol: d_course_koopa_troopa_beach_dl_1FE8 - type: gfx - offset: 0x1FE8 -d_course_koopa_troopa_beach_dl_2058: - symbol: d_course_koopa_troopa_beach_dl_2058 - type: gfx - offset: 0x2058 -d_course_koopa_troopa_beach_dl_20C8: - symbol: d_course_koopa_troopa_beach_dl_20C8 - type: gfx - offset: 0x20C8 -d_course_koopa_troopa_beach_dl_2178: - symbol: d_course_koopa_troopa_beach_dl_2178 - type: gfx - offset: 0x2178 -d_course_koopa_troopa_beach_dl_2200: - symbol: d_course_koopa_troopa_beach_dl_2200 - type: gfx - offset: 0x2200 -d_course_koopa_troopa_beach_dl_2258: - symbol: d_course_koopa_troopa_beach_dl_2258 - type: gfx - offset: 0x2258 -d_course_koopa_troopa_beach_dl_22C8: - symbol: d_course_koopa_troopa_beach_dl_22C8 - type: gfx - offset: 0x22C8 -d_course_koopa_troopa_beach_dl_2390: - symbol: d_course_koopa_troopa_beach_dl_2390 - type: gfx - offset: 0x2390 -d_course_koopa_troopa_beach_dl_2440: - symbol: d_course_koopa_troopa_beach_dl_2440 - type: gfx - offset: 0x2440 -d_course_koopa_troopa_beach_dl_24C0: - symbol: d_course_koopa_troopa_beach_dl_24C0 - type: gfx - offset: 0x24C0 -d_course_koopa_troopa_beach_dl_2540: - symbol: d_course_koopa_troopa_beach_dl_2540 - type: gfx - offset: 0x2540 -d_course_koopa_troopa_beach_dl_25D8: - symbol: d_course_koopa_troopa_beach_dl_25D8 - type: gfx - offset: 0x25D8 -d_course_koopa_troopa_beach_dl_2660: - symbol: d_course_koopa_troopa_beach_dl_2660 - type: gfx - offset: 0x2660 -d_course_koopa_troopa_beach_dl_26E0: - symbol: d_course_koopa_troopa_beach_dl_26E0 - type: gfx - offset: 0x26E0 -d_course_koopa_troopa_beach_dl_2760: - symbol: d_course_koopa_troopa_beach_dl_2760 - type: gfx - offset: 0x2760 -d_course_koopa_troopa_beach_dl_2800: - symbol: d_course_koopa_troopa_beach_dl_2800 - type: gfx - offset: 0x2800 -d_course_koopa_troopa_beach_dl_2898: - symbol: d_course_koopa_troopa_beach_dl_2898 - type: gfx - offset: 0x2898 -d_course_koopa_troopa_beach_dl_2910: - symbol: d_course_koopa_troopa_beach_dl_2910 - type: gfx - offset: 0x2910 -d_course_koopa_troopa_beach_dl_2988: - symbol: d_course_koopa_troopa_beach_dl_2988 - type: gfx - offset: 0x2988 -d_course_koopa_troopa_beach_dl_2A18: - symbol: d_course_koopa_troopa_beach_dl_2A18 - type: gfx - offset: 0x2A18 -d_course_koopa_troopa_beach_dl_2AA0: - symbol: d_course_koopa_troopa_beach_dl_2AA0 - type: gfx - offset: 0x2AA0 -d_course_koopa_troopa_beach_dl_2B08: - symbol: d_course_koopa_troopa_beach_dl_2B08 - type: gfx - offset: 0x2B08 -d_course_koopa_troopa_beach_dl_2B78: - symbol: d_course_koopa_troopa_beach_dl_2B78 - type: gfx - offset: 0x2B78 -d_course_koopa_troopa_beach_dl_2C28: - symbol: d_course_koopa_troopa_beach_dl_2C28 - type: gfx - offset: 0x2C28 -d_course_koopa_troopa_beach_dl_2CC0: - symbol: d_course_koopa_troopa_beach_dl_2CC0 - type: gfx - offset: 0x2CC0 -d_course_koopa_troopa_beach_dl_2D50: - symbol: d_course_koopa_troopa_beach_dl_2D50 - type: gfx - offset: 0x2D50 -d_course_koopa_troopa_beach_dl_2DC0: - symbol: d_course_koopa_troopa_beach_dl_2DC0 - type: gfx - offset: 0x2DC0 -d_course_koopa_troopa_beach_dl_2E38: - symbol: d_course_koopa_troopa_beach_dl_2E38 - type: gfx - offset: 0x2E38 -d_course_koopa_troopa_beach_dl_2EC0: - symbol: d_course_koopa_troopa_beach_dl_2EC0 - type: gfx - offset: 0x2EC0 -d_course_koopa_troopa_beach_dl_2F30: - symbol: d_course_koopa_troopa_beach_dl_2F30 - type: gfx - offset: 0x2F30 -d_course_koopa_troopa_beach_dl_2FB0: - symbol: d_course_koopa_troopa_beach_dl_2FB0 - type: gfx - offset: 0x2FB0 -d_course_koopa_troopa_beach_dl_3050: - symbol: d_course_koopa_troopa_beach_dl_3050 - type: gfx - offset: 0x3050 -d_course_koopa_troopa_beach_dl_30E0: - symbol: d_course_koopa_troopa_beach_dl_30E0 - type: gfx - offset: 0x30E0 -d_course_koopa_troopa_beach_dl_3198: - symbol: d_course_koopa_troopa_beach_dl_3198 - type: gfx - offset: 0x3198 -d_course_koopa_troopa_beach_dl_3218: - symbol: d_course_koopa_troopa_beach_dl_3218 - type: gfx - offset: 0x3218 -d_course_koopa_troopa_beach_dl_3278: - symbol: d_course_koopa_troopa_beach_dl_3278 - type: gfx - offset: 0x3278 -d_course_koopa_troopa_beach_dl_3308: - symbol: d_course_koopa_troopa_beach_dl_3308 - type: gfx - offset: 0x3308 -d_course_koopa_troopa_beach_dl_3370: - symbol: d_course_koopa_troopa_beach_dl_3370 - type: gfx - offset: 0x3370 -d_course_koopa_troopa_beach_dl_33F8: - symbol: d_course_koopa_troopa_beach_dl_33F8 - type: gfx - offset: 0x33F8 -d_course_koopa_troopa_beach_dl_34B8: - symbol: d_course_koopa_troopa_beach_dl_34B8 - type: gfx - offset: 0x34B8 -d_course_koopa_troopa_beach_dl_3550: - symbol: d_course_koopa_troopa_beach_dl_3550 - type: gfx - offset: 0x3550 -d_course_koopa_troopa_beach_dl_3628: - symbol: d_course_koopa_troopa_beach_dl_3628 - type: gfx - offset: 0x3628 -d_course_koopa_troopa_beach_dl_36D8: - symbol: d_course_koopa_troopa_beach_dl_36D8 - type: gfx - offset: 0x36D8 -d_course_koopa_troopa_beach_dl_3730: - symbol: d_course_koopa_troopa_beach_dl_3730 - type: gfx - offset: 0x3730 -d_course_koopa_troopa_beach_dl_37B8: - symbol: d_course_koopa_troopa_beach_dl_37B8 - type: gfx - offset: 0x37B8 -d_course_koopa_troopa_beach_dl_3830: - symbol: d_course_koopa_troopa_beach_dl_3830 - type: gfx - offset: 0x3830 -d_course_koopa_troopa_beach_dl_38A8: - symbol: d_course_koopa_troopa_beach_dl_38A8 - type: gfx - offset: 0x38A8 -d_course_koopa_troopa_beach_dl_3980: - symbol: d_course_koopa_troopa_beach_dl_3980 - type: gfx - offset: 0x3980 -d_course_koopa_troopa_beach_dl_3A10: - symbol: d_course_koopa_troopa_beach_dl_3A10 - type: gfx - offset: 0x3A10 -d_course_koopa_troopa_beach_dl_3B10: - symbol: d_course_koopa_troopa_beach_dl_3B10 - type: gfx - offset: 0x3B10 -d_course_koopa_troopa_beach_dl_3BB8: - symbol: d_course_koopa_troopa_beach_dl_3BB8 - type: gfx - offset: 0x3BB8 -d_course_koopa_troopa_beach_dl_3C28: - symbol: d_course_koopa_troopa_beach_dl_3C28 - type: gfx - offset: 0x3C28 -d_course_koopa_troopa_beach_dl_3CC0: - symbol: d_course_koopa_troopa_beach_dl_3CC0 - type: gfx - offset: 0x3CC0 -d_course_koopa_troopa_beach_dl_3D40: - symbol: d_course_koopa_troopa_beach_dl_3D40 - type: gfx - offset: 0x3D40 -d_course_koopa_troopa_beach_dl_3DC0: - symbol: d_course_koopa_troopa_beach_dl_3DC0 - type: gfx - offset: 0x3DC0 -d_course_koopa_troopa_beach_dl_3EA8: - symbol: d_course_koopa_troopa_beach_dl_3EA8 - type: gfx - offset: 0x3EA8 -d_course_koopa_troopa_beach_dl_3F20: - symbol: d_course_koopa_troopa_beach_dl_3F20 - type: gfx - offset: 0x3F20 -d_course_koopa_troopa_beach_dl_4028: - symbol: d_course_koopa_troopa_beach_dl_4028 - type: gfx - offset: 0x4028 -d_course_koopa_troopa_beach_dl_40C0: - symbol: d_course_koopa_troopa_beach_dl_40C0 - type: gfx - offset: 0x40C0 -d_course_koopa_troopa_beach_dl_4138: - symbol: d_course_koopa_troopa_beach_dl_4138 - type: gfx - offset: 0x4138 -d_course_koopa_troopa_beach_dl_41D0: - symbol: d_course_koopa_troopa_beach_dl_41D0 - type: gfx - offset: 0x41D0 -d_course_koopa_troopa_beach_dl_4260: - symbol: d_course_koopa_troopa_beach_dl_4260 - type: gfx - offset: 0x4260 -d_course_koopa_troopa_beach_dl_42D8: - symbol: d_course_koopa_troopa_beach_dl_42D8 - type: gfx - offset: 0x42D8 -d_course_koopa_troopa_beach_dl_43C0: - symbol: d_course_koopa_troopa_beach_dl_43C0 - type: gfx - offset: 0x43C0 -d_course_koopa_troopa_beach_dl_4450: - symbol: d_course_koopa_troopa_beach_dl_4450 - type: gfx - offset: 0x4450 -d_course_koopa_troopa_beach_dl_4548: - symbol: d_course_koopa_troopa_beach_dl_4548 - type: gfx - offset: 0x4548 -d_course_koopa_troopa_beach_dl_45D0: - symbol: d_course_koopa_troopa_beach_dl_45D0 - type: gfx - offset: 0x45D0 -d_course_koopa_troopa_beach_dl_4670: - symbol: d_course_koopa_troopa_beach_dl_4670 - type: gfx - offset: 0x4670 -d_course_koopa_troopa_beach_dl_4700: - symbol: d_course_koopa_troopa_beach_dl_4700 - type: gfx - offset: 0x4700 -d_course_koopa_troopa_beach_dl_47C0: - symbol: d_course_koopa_troopa_beach_dl_47C0 - type: gfx - offset: 0x47C0 -d_course_koopa_troopa_beach_dl_4840: - symbol: d_course_koopa_troopa_beach_dl_4840 - type: gfx - offset: 0x4840 -d_course_koopa_troopa_beach_dl_4948: - symbol: d_course_koopa_troopa_beach_dl_4948 - type: gfx - offset: 0x4948 -d_course_koopa_troopa_beach_dl_49F0: - symbol: d_course_koopa_troopa_beach_dl_49F0 - type: gfx - offset: 0x49F0 -d_course_koopa_troopa_beach_dl_4B28: - symbol: d_course_koopa_troopa_beach_dl_4B28 - type: gfx - offset: 0x4B28 -d_course_koopa_troopa_beach_dl_4BC8: - symbol: d_course_koopa_troopa_beach_dl_4BC8 - type: gfx - offset: 0x4BC8 -d_course_koopa_troopa_beach_dl_4C70: - symbol: d_course_koopa_troopa_beach_dl_4C70 - type: gfx - offset: 0x4C70 -d_course_koopa_troopa_beach_dl_4D08: - symbol: d_course_koopa_troopa_beach_dl_4D08 - type: gfx - offset: 0x4D08 -d_course_koopa_troopa_beach_dl_4DC0: - symbol: d_course_koopa_troopa_beach_dl_4DC0 - type: gfx - offset: 0x4DC0 -d_course_koopa_troopa_beach_dl_4E70: - symbol: d_course_koopa_troopa_beach_dl_4E70 - type: gfx - offset: 0x4E70 -d_course_koopa_troopa_beach_dl_4F58: - symbol: d_course_koopa_troopa_beach_dl_4F58 - type: gfx - offset: 0x4F58 -d_course_koopa_troopa_beach_dl_4FF8: - symbol: d_course_koopa_troopa_beach_dl_4FF8 - type: gfx - offset: 0x4FF8 -d_course_koopa_troopa_beach_dl_5120: - symbol: d_course_koopa_troopa_beach_dl_5120 - type: gfx - offset: 0x5120 -d_course_koopa_troopa_beach_dl_51C8: - symbol: d_course_koopa_troopa_beach_dl_51C8 - type: gfx - offset: 0x51C8 -d_course_koopa_troopa_beach_dl_5248: - symbol: d_course_koopa_troopa_beach_dl_5248 - type: gfx - offset: 0x5248 -d_course_koopa_troopa_beach_dl_52D8: - symbol: d_course_koopa_troopa_beach_dl_52D8 - type: gfx - offset: 0x52D8 -d_course_koopa_troopa_beach_dl_5358: - symbol: d_course_koopa_troopa_beach_dl_5358 - type: gfx - offset: 0x5358 -d_course_koopa_troopa_beach_dl_53B8: - symbol: d_course_koopa_troopa_beach_dl_53B8 - type: gfx - offset: 0x53B8 -d_course_koopa_troopa_beach_dl_5480: - symbol: d_course_koopa_troopa_beach_dl_5480 - type: gfx - offset: 0x5480 -d_course_koopa_troopa_beach_dl_5500: - symbol: d_course_koopa_troopa_beach_dl_5500 - type: gfx - offset: 0x5500 -d_course_koopa_troopa_beach_dl_55D0: - symbol: d_course_koopa_troopa_beach_dl_55D0 - type: gfx - offset: 0x55D0 -d_course_koopa_troopa_beach_dl_5628: - symbol: d_course_koopa_troopa_beach_dl_5628 - type: gfx - offset: 0x5628 -d_course_koopa_troopa_beach_dl_56D0: - symbol: d_course_koopa_troopa_beach_dl_56D0 - type: gfx - offset: 0x56D0 -d_course_koopa_troopa_beach_dl_5778: - symbol: d_course_koopa_troopa_beach_dl_5778 - type: gfx - offset: 0x5778 -d_course_koopa_troopa_beach_dl_5840: - symbol: d_course_koopa_troopa_beach_dl_5840 - type: gfx - offset: 0x5840 -d_course_koopa_troopa_beach_dl_58E0: - symbol: d_course_koopa_troopa_beach_dl_58E0 - type: gfx - offset: 0x58E0 -d_course_koopa_troopa_beach_dl_59C8: - symbol: d_course_koopa_troopa_beach_dl_59C8 - type: gfx - offset: 0x59C8 -d_course_koopa_troopa_beach_dl_5A50: - symbol: d_course_koopa_troopa_beach_dl_5A50 - type: gfx - offset: 0x5A50 -d_course_koopa_troopa_beach_dl_5B48: - symbol: d_course_koopa_troopa_beach_dl_5B48 - type: gfx - offset: 0x5B48 -d_course_koopa_troopa_beach_dl_5BB8: - symbol: d_course_koopa_troopa_beach_dl_5BB8 - type: gfx - offset: 0x5BB8 -d_course_koopa_troopa_beach_dl_5C88: - symbol: d_course_koopa_troopa_beach_dl_5C88 - type: gfx - offset: 0x5C88 -d_course_koopa_troopa_beach_dl_5D28: - symbol: d_course_koopa_troopa_beach_dl_5D28 - type: gfx - offset: 0x5D28 -d_course_koopa_troopa_beach_dl_5DB8: - symbol: d_course_koopa_troopa_beach_dl_5DB8 - type: gfx - offset: 0x5DB8 -d_course_koopa_troopa_beach_dl_5E28: - symbol: d_course_koopa_troopa_beach_dl_5E28 - type: gfx - offset: 0x5E28 -d_course_koopa_troopa_beach_dl_5EE0: - symbol: d_course_koopa_troopa_beach_dl_5EE0 - type: gfx - offset: 0x5EE0 -d_course_koopa_troopa_beach_dl_5F58: - symbol: d_course_koopa_troopa_beach_dl_5F58 - type: gfx - offset: 0x5F58 -d_course_koopa_troopa_beach_dl_6000: - symbol: d_course_koopa_troopa_beach_dl_6000 - type: gfx - offset: 0x6000 -d_course_koopa_troopa_beach_dl_6050: - symbol: d_course_koopa_troopa_beach_dl_6050 - type: gfx - offset: 0x6050 -d_course_koopa_troopa_beach_dl_6128: - symbol: d_course_koopa_troopa_beach_dl_6128 - type: gfx - offset: 0x6128 -d_course_koopa_troopa_beach_dl_61D0: - symbol: d_course_koopa_troopa_beach_dl_61D0 - type: gfx - offset: 0x61D0 -d_course_koopa_troopa_beach_dl_6268: - symbol: d_course_koopa_troopa_beach_dl_6268 - type: gfx - offset: 0x6268 -d_course_koopa_troopa_beach_dl_62F8: - symbol: d_course_koopa_troopa_beach_dl_62F8 - type: gfx - offset: 0x62F8 -d_course_koopa_troopa_beach_dl_6398: - symbol: d_course_koopa_troopa_beach_dl_6398 - type: gfx - offset: 0x6398 -d_course_koopa_troopa_beach_dl_6410: - symbol: d_course_koopa_troopa_beach_dl_6410 - type: gfx - offset: 0x6410 -d_course_koopa_troopa_beach_dl_6498: - symbol: d_course_koopa_troopa_beach_dl_6498 - type: gfx - offset: 0x6498 -d_course_koopa_troopa_beach_dl_64F0: - symbol: d_course_koopa_troopa_beach_dl_64F0 - type: gfx - offset: 0x64F0 -d_course_koopa_troopa_beach_dl_65B8: - symbol: d_course_koopa_troopa_beach_dl_65B8 - type: gfx - offset: 0x65B8 -d_course_koopa_troopa_beach_dl_6660: - symbol: d_course_koopa_troopa_beach_dl_6660 - type: gfx - offset: 0x6660 -d_course_koopa_troopa_beach_dl_6718: - symbol: d_course_koopa_troopa_beach_dl_6718 - type: gfx - offset: 0x6718 -d_course_koopa_troopa_beach_dl_67A0: - symbol: d_course_koopa_troopa_beach_dl_67A0 - type: gfx - offset: 0x67A0 -d_course_koopa_troopa_beach_dl_6830: - symbol: d_course_koopa_troopa_beach_dl_6830 - type: gfx - offset: 0x6830 -d_course_koopa_troopa_beach_dl_6898: - symbol: d_course_koopa_troopa_beach_dl_6898 - type: gfx - offset: 0x6898 -d_course_koopa_troopa_beach_dl_6918: - symbol: d_course_koopa_troopa_beach_dl_6918 - type: gfx - offset: 0x6918 -d_course_koopa_troopa_beach_dl_6968: - symbol: d_course_koopa_troopa_beach_dl_6968 - type: gfx - offset: 0x6968 -d_course_koopa_troopa_beach_dl_6A28: - symbol: d_course_koopa_troopa_beach_dl_6A28 - type: gfx - offset: 0x6A28 -d_course_koopa_troopa_beach_dl_6AC0: - symbol: d_course_koopa_troopa_beach_dl_6AC0 - type: gfx - offset: 0x6AC0 -d_course_koopa_troopa_beach_dl_6B88: - symbol: d_course_koopa_troopa_beach_dl_6B88 - type: gfx - offset: 0x6B88 -d_course_koopa_troopa_beach_dl_6C18: - symbol: d_course_koopa_troopa_beach_dl_6C18 - type: gfx - offset: 0x6C18 -d_course_koopa_troopa_beach_dl_6CA0: - symbol: d_course_koopa_troopa_beach_dl_6CA0 - type: gfx - offset: 0x6CA0 -d_course_koopa_troopa_beach_dl_6D10: - symbol: d_course_koopa_troopa_beach_dl_6D10 - type: gfx - offset: 0x6D10 -d_course_koopa_troopa_beach_dl_6DB8: - symbol: d_course_koopa_troopa_beach_dl_6DB8 - type: gfx - offset: 0x6DB8 -d_course_koopa_troopa_beach_dl_6E18: - symbol: d_course_koopa_troopa_beach_dl_6E18 - type: gfx - offset: 0x6E18 -d_course_koopa_troopa_beach_dl_6ED0: - symbol: d_course_koopa_troopa_beach_dl_6ED0 - type: gfx - offset: 0x6ED0 -d_course_koopa_troopa_beach_dl_6F70: - symbol: d_course_koopa_troopa_beach_dl_6F70 - type: gfx - offset: 0x6F70 -d_course_koopa_troopa_beach_dl_7060: - symbol: d_course_koopa_troopa_beach_dl_7060 - type: gfx - offset: 0x7060 -d_course_koopa_troopa_beach_dl_7100: - symbol: d_course_koopa_troopa_beach_dl_7100 - type: gfx - offset: 0x7100 -d_course_koopa_troopa_beach_dl_7168: - symbol: d_course_koopa_troopa_beach_dl_7168 - type: gfx - offset: 0x7168 -d_course_koopa_troopa_beach_dl_71C8: - symbol: d_course_koopa_troopa_beach_dl_71C8 - type: gfx - offset: 0x71C8 -d_course_koopa_troopa_beach_dl_72B0: - symbol: d_course_koopa_troopa_beach_dl_72B0 - type: gfx - offset: 0x72B0 -d_course_koopa_troopa_beach_dl_7338: - symbol: d_course_koopa_troopa_beach_dl_7338 - type: gfx - offset: 0x7338 -d_course_koopa_troopa_beach_dl_73F8: - symbol: d_course_koopa_troopa_beach_dl_73F8 - type: gfx - offset: 0x73F8 -d_course_koopa_troopa_beach_dl_7478: - symbol: d_course_koopa_troopa_beach_dl_7478 - type: gfx - offset: 0x7478 -d_course_koopa_troopa_beach_dl_75A0: - symbol: d_course_koopa_troopa_beach_dl_75A0 - type: gfx - offset: 0x75A0 -d_course_koopa_troopa_beach_dl_7640: - symbol: d_course_koopa_troopa_beach_dl_7640 - type: gfx - offset: 0x7640 -d_course_koopa_troopa_beach_dl_76A8: - symbol: d_course_koopa_troopa_beach_dl_76A8 - type: gfx - offset: 0x76A8 -d_course_koopa_troopa_beach_dl_7718: - symbol: d_course_koopa_troopa_beach_dl_7718 - type: gfx - offset: 0x7718 -d_course_koopa_troopa_beach_dl_7840: - symbol: d_course_koopa_troopa_beach_dl_7840 - type: gfx - offset: 0x7840 -d_course_koopa_troopa_beach_dl_78E8: - symbol: d_course_koopa_troopa_beach_dl_78E8 - type: gfx - offset: 0x78E8 -d_course_koopa_troopa_beach_dl_7978: - symbol: d_course_koopa_troopa_beach_dl_7978 - type: gfx - offset: 0x7978 -d_course_koopa_troopa_beach_dl_79E8: - symbol: d_course_koopa_troopa_beach_dl_79E8 - type: gfx - offset: 0x79E8 -d_course_koopa_troopa_beach_dl_7AE0: - symbol: d_course_koopa_troopa_beach_dl_7AE0 - type: gfx - offset: 0x7AE0 -d_course_koopa_troopa_beach_dl_7B50: - symbol: d_course_koopa_troopa_beach_dl_7B50 - type: gfx - offset: 0x7B50 -d_course_koopa_troopa_beach_dl_7BA0: - symbol: d_course_koopa_troopa_beach_dl_7BA0 - type: gfx - offset: 0x7BA0 -d_course_koopa_troopa_beach_dl_7C08: - symbol: d_course_koopa_troopa_beach_dl_7C08 - type: gfx - offset: 0x7C08 -d_course_koopa_troopa_beach_dl_7CE0: - symbol: d_course_koopa_troopa_beach_dl_7CE0 - type: gfx - offset: 0x7CE0 -d_course_koopa_troopa_beach_dl_7D58: - symbol: d_course_koopa_troopa_beach_dl_7D58 - type: gfx - offset: 0x7D58 -d_course_koopa_troopa_beach_dl_7DD0: - symbol: d_course_koopa_troopa_beach_dl_7DD0 - type: gfx - offset: 0x7DD0 -d_course_koopa_troopa_beach_dl_7E38: - symbol: d_course_koopa_troopa_beach_dl_7E38 - type: gfx - offset: 0x7E38 -d_course_koopa_troopa_beach_dl_7EE0: - symbol: d_course_koopa_troopa_beach_dl_7EE0 - type: gfx - offset: 0x7EE0 -d_course_koopa_troopa_beach_dl_7F68: - symbol: d_course_koopa_troopa_beach_dl_7F68 - type: gfx - offset: 0x7F68 -d_course_koopa_troopa_beach_dl_7FC8: - symbol: d_course_koopa_troopa_beach_dl_7FC8 - type: gfx - offset: 0x7FC8 -d_course_koopa_troopa_beach_dl_8048: - symbol: d_course_koopa_troopa_beach_dl_8048 - type: gfx - offset: 0x8048 -d_course_koopa_troopa_beach_dl_80E0: - symbol: d_course_koopa_troopa_beach_dl_80E0 - type: gfx - offset: 0x80E0 -d_course_koopa_troopa_beach_dl_8150: - symbol: d_course_koopa_troopa_beach_dl_8150 - type: gfx - offset: 0x8150 -d_course_koopa_troopa_beach_dl_81B8: - symbol: d_course_koopa_troopa_beach_dl_81B8 - type: gfx - offset: 0x81B8 -d_course_koopa_troopa_beach_dl_8228: - symbol: d_course_koopa_troopa_beach_dl_8228 - type: gfx - offset: 0x8228 -d_course_koopa_troopa_beach_dl_82D8: - symbol: d_course_koopa_troopa_beach_dl_82D8 - type: gfx - offset: 0x82D8 -d_course_koopa_troopa_beach_dl_8368: - symbol: d_course_koopa_troopa_beach_dl_8368 - type: gfx - offset: 0x8368 -d_course_koopa_troopa_beach_dl_83D0: - symbol: d_course_koopa_troopa_beach_dl_83D0 - type: gfx - offset: 0x83D0 -d_course_koopa_troopa_beach_dl_8448: - symbol: d_course_koopa_troopa_beach_dl_8448 - type: gfx - offset: 0x8448 -d_course_koopa_troopa_beach_dl_84D0: - symbol: d_course_koopa_troopa_beach_dl_84D0 - type: gfx - offset: 0x84D0 -d_course_koopa_troopa_beach_dl_8550: - symbol: d_course_koopa_troopa_beach_dl_8550 - type: gfx - offset: 0x8550 -d_course_koopa_troopa_beach_dl_85E8: - symbol: d_course_koopa_troopa_beach_dl_85E8 - type: gfx - offset: 0x85E8 -d_course_koopa_troopa_beach_dl_8650: - symbol: d_course_koopa_troopa_beach_dl_8650 - type: gfx - offset: 0x8650 -d_course_koopa_troopa_beach_dl_8710: - symbol: d_course_koopa_troopa_beach_dl_8710 - type: gfx - offset: 0x8710 -d_course_koopa_troopa_beach_dl_8790: - symbol: d_course_koopa_troopa_beach_dl_8790 - type: gfx - offset: 0x8790 -d_course_koopa_troopa_beach_dl_8800: - symbol: d_course_koopa_troopa_beach_dl_8800 - type: gfx - offset: 0x8800 -d_course_koopa_troopa_beach_dl_8878: - symbol: d_course_koopa_troopa_beach_dl_8878 - type: gfx - offset: 0x8878 -d_course_koopa_troopa_beach_dl_88F0: - symbol: d_course_koopa_troopa_beach_dl_88F0 - type: gfx - offset: 0x88F0 -d_course_koopa_troopa_beach_dl_8958: - symbol: d_course_koopa_troopa_beach_dl_8958 - type: gfx - offset: 0x8958 -d_course_koopa_troopa_beach_dl_8A20: - symbol: d_course_koopa_troopa_beach_dl_8A20 - type: gfx - offset: 0x8A20 -d_course_koopa_troopa_beach_dl_8A98: - symbol: d_course_koopa_troopa_beach_dl_8A98 - type: gfx - offset: 0x8A98 -d_course_koopa_troopa_beach_dl_8BB0: - symbol: d_course_koopa_troopa_beach_dl_8BB0 - type: gfx - offset: 0x8BB0 -d_course_koopa_troopa_beach_dl_8C48: - symbol: d_course_koopa_troopa_beach_dl_8C48 - type: gfx - offset: 0x8C48 -d_course_koopa_troopa_beach_dl_8CC8: - symbol: d_course_koopa_troopa_beach_dl_8CC8 - type: gfx - offset: 0x8CC8 -d_course_koopa_troopa_beach_dl_8D48: - symbol: d_course_koopa_troopa_beach_dl_8D48 - type: gfx - offset: 0x8D48 -d_course_koopa_troopa_beach_dl_8DC0: - symbol: d_course_koopa_troopa_beach_dl_8DC0 - type: gfx - offset: 0x8DC0 -d_course_koopa_troopa_beach_dl_8E30: - symbol: d_course_koopa_troopa_beach_dl_8E30 - type: gfx - offset: 0x8E30 -d_course_koopa_troopa_beach_dl_8F50: - symbol: d_course_koopa_troopa_beach_dl_8F50 - type: gfx - offset: 0x8F50 -d_course_koopa_troopa_beach_dl_9008: - symbol: d_course_koopa_troopa_beach_dl_9008 - type: gfx - offset: 0x9008 -d_course_koopa_troopa_beach_dl_90F0: - symbol: d_course_koopa_troopa_beach_dl_90F0 - type: gfx - offset: 0x90F0 -d_course_koopa_troopa_beach_dl_9188: - symbol: d_course_koopa_troopa_beach_dl_9188 - type: gfx - offset: 0x9188 -d_course_koopa_troopa_beach_dl_9210: - symbol: d_course_koopa_troopa_beach_dl_9210 - type: gfx - offset: 0x9210 -d_course_koopa_troopa_beach_dl_9288: - symbol: d_course_koopa_troopa_beach_dl_9288 - type: gfx - offset: 0x9288 -d_course_koopa_troopa_beach_dl_92E8: - symbol: d_course_koopa_troopa_beach_dl_92E8 - type: gfx - offset: 0x92E8 -d_course_koopa_troopa_beach_dl_9378: - symbol: d_course_koopa_troopa_beach_dl_9378 - type: gfx - offset: 0x9378 -d_course_koopa_troopa_beach_dl_9498: - symbol: d_course_koopa_troopa_beach_dl_9498 - type: gfx - offset: 0x9498 -d_course_koopa_troopa_beach_dl_9548: - symbol: d_course_koopa_troopa_beach_dl_9548 - type: gfx - offset: 0x9548 -d_course_koopa_troopa_beach_dl_9618: - symbol: d_course_koopa_troopa_beach_dl_9618 - type: gfx - offset: 0x9618 -d_course_koopa_troopa_beach_dl_96A0: - symbol: d_course_koopa_troopa_beach_dl_96A0 - type: gfx - offset: 0x96A0 -d_course_koopa_troopa_beach_dl_9720: - symbol: d_course_koopa_troopa_beach_dl_9720 - type: gfx - offset: 0x9720 -d_course_koopa_troopa_beach_dl_9798: - symbol: d_course_koopa_troopa_beach_dl_9798 - type: gfx - offset: 0x9798 -d_course_koopa_troopa_beach_dl_9818: - symbol: d_course_koopa_troopa_beach_dl_9818 - type: gfx - offset: 0x9818 -d_course_koopa_troopa_beach_dl_98A0: - symbol: d_course_koopa_troopa_beach_dl_98A0 - type: gfx - offset: 0x98A0 -d_course_koopa_troopa_beach_dl_99A0: - symbol: d_course_koopa_troopa_beach_dl_99A0 - type: gfx - offset: 0x99A0 -d_course_koopa_troopa_beach_dl_9A30: - symbol: d_course_koopa_troopa_beach_dl_9A30 - type: gfx - offset: 0x9A30 -d_course_koopa_troopa_beach_dl_9AE0: - symbol: d_course_koopa_troopa_beach_dl_9AE0 - type: gfx - offset: 0x9AE0 -d_course_koopa_troopa_beach_dl_9B58: - symbol: d_course_koopa_troopa_beach_dl_9B58 - type: gfx - offset: 0x9B58 -d_course_koopa_troopa_beach_dl_9BC8: - symbol: d_course_koopa_troopa_beach_dl_9BC8 - type: gfx - offset: 0x9BC8 -d_course_koopa_troopa_beach_dl_9C38: - symbol: d_course_koopa_troopa_beach_dl_9C38 - type: gfx - offset: 0x9C38 -d_course_koopa_troopa_beach_dl_9D00: - symbol: d_course_koopa_troopa_beach_dl_9D00 - type: gfx - offset: 0x9D00 -d_course_koopa_troopa_beach_dl_9D98: - symbol: d_course_koopa_troopa_beach_dl_9D98 - type: gfx - offset: 0x9D98 -d_course_koopa_troopa_beach_dl_9E60: - symbol: d_course_koopa_troopa_beach_dl_9E60 - type: gfx - offset: 0x9E60 -d_course_koopa_troopa_beach_dl_9ED8: - symbol: d_course_koopa_troopa_beach_dl_9ED8 - type: gfx - offset: 0x9ED8 -d_course_koopa_troopa_beach_dl_9F78: - symbol: d_course_koopa_troopa_beach_dl_9F78 - type: gfx - offset: 0x9F78 -d_course_koopa_troopa_beach_dl_9FE8: - symbol: d_course_koopa_troopa_beach_dl_9FE8 - type: gfx - offset: 0x9FE8 -d_course_koopa_troopa_beach_dl_A070: - symbol: d_course_koopa_troopa_beach_dl_A070 - type: gfx - offset: 0xA070 -d_course_koopa_troopa_beach_dl_A0D0: - symbol: d_course_koopa_troopa_beach_dl_A0D0 - type: gfx - offset: 0xA0D0 -d_course_koopa_troopa_beach_dl_A190: - symbol: d_course_koopa_troopa_beach_dl_A190 - type: gfx - offset: 0xA190 -d_course_koopa_troopa_beach_dl_A220: - symbol: d_course_koopa_troopa_beach_dl_A220 - type: gfx - offset: 0xA220 -d_course_koopa_troopa_beach_dl_A2E8: - symbol: d_course_koopa_troopa_beach_dl_A2E8 - type: gfx - offset: 0xA2E8 -d_course_koopa_troopa_beach_dl_A340: - symbol: d_course_koopa_troopa_beach_dl_A340 - type: gfx - offset: 0xA340 -d_course_koopa_troopa_beach_dl_A428: - symbol: d_course_koopa_troopa_beach_dl_A428 - type: gfx - offset: 0xA428 -d_course_koopa_troopa_beach_dl_A4D8: - symbol: d_course_koopa_troopa_beach_dl_A4D8 - type: gfx - offset: 0xA4D8 -d_course_koopa_troopa_beach_dl_A578: - symbol: d_course_koopa_troopa_beach_dl_A578 - type: gfx - offset: 0xA578 -d_course_koopa_troopa_beach_dl_A608: - symbol: d_course_koopa_troopa_beach_dl_A608 - type: gfx - offset: 0xA608 -d_course_koopa_troopa_beach_dl_A6F0: - symbol: d_course_koopa_troopa_beach_dl_A6F0 - type: gfx - offset: 0xA6F0 -d_course_koopa_troopa_beach_dl_A780: - symbol: d_course_koopa_troopa_beach_dl_A780 - type: gfx - offset: 0xA780 -d_course_koopa_troopa_beach_dl_A828: - symbol: d_course_koopa_troopa_beach_dl_A828 - type: gfx - offset: 0xA828 -d_course_koopa_troopa_beach_dl_A8D0: - symbol: d_course_koopa_troopa_beach_dl_A8D0 - type: gfx - offset: 0xA8D0 -d_course_koopa_troopa_beach_dl_A9A0: - symbol: d_course_koopa_troopa_beach_dl_A9A0 - type: gfx - offset: 0xA9A0 -d_course_koopa_troopa_beach_dl_AA38: - symbol: d_course_koopa_troopa_beach_dl_AA38 - type: gfx - offset: 0xAA38 -d_course_koopa_troopa_beach_dl_AAE8: - symbol: d_course_koopa_troopa_beach_dl_AAE8 - type: gfx - offset: 0xAAE8 -d_course_koopa_troopa_beach_dl_AB88: - symbol: d_course_koopa_troopa_beach_dl_AB88 - type: gfx - offset: 0xAB88 -d_course_koopa_troopa_beach_dl_AC10: - symbol: d_course_koopa_troopa_beach_dl_AC10 - type: gfx - offset: 0xAC10 -d_course_koopa_troopa_beach_dl_AC68: - symbol: d_course_koopa_troopa_beach_dl_AC68 - type: gfx - offset: 0xAC68 -d_course_koopa_troopa_beach_dl_AD40: - symbol: d_course_koopa_troopa_beach_dl_AD40 - type: gfx - offset: 0xAD40 -d_course_koopa_troopa_beach_unknown_waypoints: - symbol: d_course_koopa_troopa_beach_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0xADE0 - count: 62 -d_course_koopa_troopa_beach_unknown_waypoints1: - symbol: d_course_koopa_troopa_beach_unknown_waypoints1 - type: mk64:TRACK_PATH - offset: 0xAFD0 - count: 59 -d_course_koopa_troopa_beach_track_waypoints: - symbol: d_course_koopa_troopa_beach_track_waypoints - type: mk64:TRACK_PATH - offset: 0xB1A8 - count: 609 -d_course_koopa_troopa_beach_track_waypoints_2: - symbol: d_course_koopa_troopa_beach_track_waypoints_2 - type: mk64:TRACK_PATH - offset: 0xC4B0 - count: 559 -d_course_koopa_troopa_beach_crab_tlut: - symbol: d_course_koopa_troopa_beach_crab_tlut - type: texture - offset: 0xD628 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -gTextureCrab1: - symbol: gTextureCrab1 - type: texture - offset: 0xD828 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_koopa_troopa_beach_crab_tlut -gTextureCrab2: - symbol: gTextureCrab2 - type: texture - offset: 0x0E828 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_koopa_troopa_beach_crab_tlut -gTextureCrab3: - symbol: gTextureCrab3 - type: texture - offset: 0x0F828 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_koopa_troopa_beach_crab_tlut -gTextureCrab4: - symbol: gTextureCrab4 - type: texture - offset: 0x10828 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_koopa_troopa_beach_crab_tlut -gTextureCrab5: - symbol: gTextureCrab5 - type: texture - offset: 0x11828 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_koopa_troopa_beach_crab_tlut -gTextureCrab6: - symbol: gTextureCrab6 - type: texture - offset: 0x12828 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_koopa_troopa_beach_crab_tlut -gTextureCrab7: - symbol: gTextureCrab7 - type: texture - offset: 0x13828 - width: 64 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_koopa_troopa_beach_crab_tlut -d_course_koopa_troopa_beach_light1: - symbol: d_course_koopa_troopa_beach_light1 - type: lights - offset: 0x14BE8 -d_course_koopa_troopa_beach_bird_wing: - symbol: d_course_koopa_troopa_beach_bird_wing - type: texture - offset: 0x14C00 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_koopa_troopa_beach_bird_eye: - symbol: d_course_koopa_troopa_beach_bird_eye - type: texture - offset: 0x15400 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_koopa_troopa_beach_bird_beak: - symbol: d_course_koopa_troopa_beach_bird_beak - type: texture - offset: 0x15C00 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_koopa_troopa_beach_bird_model: - symbol: d_course_koopa_troopa_beach_bird_model - type: vtx - offset: 0x16400 - count: 3 -d_course_koopa_troopa_beach_unknown_model1: - symbol: d_course_koopa_troopa_beach_unknown_model1 - type: vtx - offset: 0x16430 - count: 10 -d_course_koopa_troopa_beach_unknown_model2: - symbol: d_course_koopa_troopa_beach_unknown_model2 - type: vtx - offset: 0x164D0 - count: 14 -d_course_koopa_troopa_beach_unknown_model3: - symbol: d_course_koopa_troopa_beach_unknown_model3 - type: vtx - offset: 0x165B0 - count: 8 -d_course_koopa_troopa_beach_dl_16630: - symbol: d_course_koopa_troopa_beach_dl_16630 - type: gfx - offset: 0x16630 -d_course_koopa_troopa_beach_bird_wing_model: - symbol: d_course_koopa_troopa_beach_bird_wing_model - type: vtx - offset: 0x167D0 - count: 8 -d_course_koopa_troopa_beach_dl_16850: - symbol: d_course_koopa_troopa_beach_dl_16850 - type: gfx - offset: 0x16850 -d_course_koopa_troopa_beach_bird_wing_2_model: - symbol: d_course_koopa_troopa_beach_bird_wing_2_model - type: vtx - offset: 0x16870 - count: 8 -d_course_koopa_troopa_beach_dl_168F0: - symbol: d_course_koopa_troopa_beach_dl_168F0 - type: gfx - offset: 0x168F0 -d_course_koopa_troopa_beach_bird_wing_3_model: - symbol: d_course_koopa_troopa_beach_bird_wing_3_model - type: vtx - offset: 0x16910 - count: 8 -d_course_koopa_troopa_beach_dl_16990: - symbol: d_course_koopa_troopa_beach_dl_16990 - type: gfx - offset: 0x16990 -d_course_koopa_troopa_beach_light2: - symbol: d_course_koopa_troopa_beach_light2 - type: lights - offset: 0x16B78 -d_course_koopa_troopa_beach_tree_model: - symbol: d_course_koopa_troopa_beach_tree_model - type: vtx - offset: 0x16B90 - count: 9 -d_course_koopa_troopa_beach_unknown_model4: - symbol: d_course_koopa_troopa_beach_unknown_model4 - type: vtx - offset: 0x16C20 - count: 16 -d_course_koopa_troopa_beach_palm_frond: - symbol: d_course_koopa_troopa_beach_palm_frond - type: texture - offset: 0x16D20 - width: 64 - height: 32 - format: rgba16 - ctype: u16 -d_course_koopa_troopa_beach_palm_trunk: - symbol: d_course_koopa_troopa_beach_palm_trunk - type: texture - offset: 0x17D20 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_koopa_troopa_beach_dl_18520: - symbol: d_course_koopa_troopa_beach_dl_18520 - type: gfx - offset: 0x18520 -d_course_koopa_troopa_beach_dl_185E8: - symbol: d_course_koopa_troopa_beach_dl_185E8 - type: gfx - offset: 0x185E8 -d_course_koopa_troopa_beach_dl_tree_top1: - symbol: d_course_koopa_troopa_beach_dl_tree_top1 - type: gfx - offset: 0x185F8 -d_course_koopa_troopa_beach_dl_18608: - symbol: d_course_koopa_troopa_beach_dl_18608 - type: gfx - offset: 0x18608 -d_course_koopa_troopa_beach_dl_186A8: - symbol: d_course_koopa_troopa_beach_dl_186A8 - type: gfx - offset: 0x186A8 -d_course_koopa_troopa_beach_dl_tree_trunk1: - symbol: d_course_koopa_troopa_beach_dl_tree_trunk1 - type: gfx - offset: 0x186B8 -d_course_koopa_troopa_beach_tree_2_model: - symbol: d_course_koopa_troopa_beach_tree_2_model - type: vtx - offset: 0x186C8 - count: 9 -d_course_koopa_troopa_beach_unknown_model5: - symbol: d_course_koopa_troopa_beach_unknown_model5 - type: vtx - offset: 0x18758 - count: 16 -d_course_koopa_troopa_beach_light3: - symbol: d_course_koopa_troopa_beach_light3 - type: lights - offset: 0x18858 -d_course_koopa_troopa_beach_dl_18870: - symbol: d_course_koopa_troopa_beach_dl_18870 - type: gfx - offset: 0x18870 -d_course_koopa_troopa_beach_dl_18938: - symbol: d_course_koopa_troopa_beach_dl_18938 - type: gfx - offset: 0x18938 -d_course_koopa_troopa_beach_dl_tree_top2: - symbol: d_course_koopa_troopa_beach_dl_tree_top2 - type: gfx - offset: 0x18948 -d_course_koopa_troopa_beach_dl_18958: - symbol: d_course_koopa_troopa_beach_dl_18958 - type: gfx - offset: 0x18958 -d_course_koopa_troopa_beach_dl_189F8: - symbol: d_course_koopa_troopa_beach_dl_189F8 - type: gfx - offset: 0x189F8 -d_course_koopa_troopa_beach_dl_tree_trunk2: - symbol: d_course_koopa_troopa_beach_dl_tree_trunk2 - type: gfx - offset: 0x18A08 -d_course_koopa_troopa_beach_tree_3_model: - symbol: d_course_koopa_troopa_beach_tree_3_model - type: vtx - offset: 0x18A18 - count: 9 -d_course_koopa_troopa_beach_unknown_model6: - symbol: d_course_koopa_troopa_beach_unknown_model6 - type: vtx - offset: 0x18AA8 - count: 16 -d_course_koopa_troopa_beach_light4: - symbol: d_course_koopa_troopa_beach_light4 - type: lights - offset: 0x18BA8 -d_course_koopa_troopa_beach_dl_18BC0: - symbol: d_course_koopa_troopa_beach_dl_18BC0 - type: gfx - offset: 0x18BC0 -d_course_koopa_troopa_beach_dl_18C88: - symbol: d_course_koopa_troopa_beach_dl_18C88 - type: gfx - offset: 0x18C88 -d_course_koopa_troopa_beach_dl_tree_top3: - symbol: d_course_koopa_troopa_beach_dl_tree_top3 - type: gfx - offset: 0x18C98 -d_course_koopa_troopa_beach_dl_18CA8: - symbol: d_course_koopa_troopa_beach_dl_18CA8 - type: gfx - offset: 0x18CA8 -d_course_koopa_troopa_beach_dl_18D48: - symbol: d_course_koopa_troopa_beach_dl_18D48 - type: gfx - offset: 0x18D48 -d_course_koopa_troopa_beach_dl_tree_trunk3: - symbol: d_course_koopa_troopa_beach_dl_tree_trunk3 - type: gfx - offset: 0x18D58 -d_course_koopa_troopa_beach_dl_18D68: - symbol: d_course_koopa_troopa_beach_dl_18D68 - type: gfx - offset: 0x18D68 -d_course_koopa_troopa_beach_item_box_spawns: - symbol: d_course_koopa_troopa_beach_item_box_spawns - type: mk64:spawn_data - offset: 0x18E78 - count: 31 -d_course_koopa_troopa_beach_tree_spawn: - symbol: d_course_koopa_troopa_beach_tree_spawn - type: mk64:spawn_data - offset: 0x18F70 - count: 13 -d_course_koopa_troopa_beach_addr: - symbol: d_course_koopa_troopa_beach_addr - type: mk64:track_sections - offset: 0x18FD8 - count: 106 diff --git a/yamls/us/koopa_troopa_beach_displaylists.yml b/yamls/us/koopa_troopa_beach_displaylists.yml deleted file mode 100644 index e8c75bb9e..000000000 --- a/yamls/us/koopa_troopa_beach_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x8E8BC8 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_koopa_troopa_beach_packed_dls: - symbol: d_course_koopa_troopa_beach_packed_dls - type: blob - offset: 0x8E8BC8 - size: 0x37BA diff --git a/yamls/us/koopa_troopa_beach_vertices.yml b/yamls/us/koopa_troopa_beach_vertices.yml deleted file mode 100644 index 09daccb1f..000000000 --- a/yamls/us/koopa_troopa_beach_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x8D8E50] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_koopa_troopa_beach_vertex: - symbol: d_course_koopa_troopa_beach_vertex - type: mk64:course_vtx - count: 9376 - offset: 0x0 diff --git a/yamls/us/luigi_kart.yml b/yamls/us/luigi_kart.yml deleted file mode 100644 index 53bd2d4db..000000000 --- a/yamls/us/luigi_kart.yml +++ /dev/null @@ -1,12803 +0,0 @@ -:config: - segments: - - [0x0F, 0x145470] - no_compression: true - header: - code: - - '#include ' - - '#include ' - - '#include ' - header: - - '#include ' - - '#include ' - tables: - luigi_kart_wheels: - range: [0x769FC, 0x9AB7C] - mode: APPEND -luigi_kart_frame000: - symbol: gKartLuigi000 - type: texture - offset: 0x0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame001: - symbol: gKartLuigi001 - type: texture - offset: 0x4F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_001_wheel_0 -luigi_kart_frame002: - symbol: gKartLuigi002 - type: texture - offset: 0x9F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_002_wheel_0 -luigi_kart_frame003: - symbol: gKartLuigi003 - type: texture - offset: 0xEF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_003_wheel_0 -luigi_kart_frame004: - symbol: gKartLuigi004 - type: texture - offset: 0x1418 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_004_wheel_0 -luigi_kart_frame005: - symbol: gKartLuigi005 - type: texture - offset: 0x1940 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_005_wheel_0 -luigi_kart_frame006: - symbol: gKartLuigi006 - type: texture - offset: 0x1E7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_006_wheel_0 -luigi_kart_frame007: - symbol: gKartLuigi007 - type: texture - offset: 0x23D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_007_wheel_0 -luigi_kart_frame008: - symbol: gKartLuigi008 - type: texture - offset: 0x2938 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_008_wheel_0 -luigi_kart_frame009: - symbol: gKartLuigi009 - type: texture - offset: 0x2EB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_009_wheel_0 -luigi_kart_frame010: - symbol: gKartLuigi010 - type: texture - offset: 0x3448 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_010_wheel_0 -luigi_kart_frame011: - symbol: gKartLuigi011 - type: texture - offset: 0x39E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_011_wheel_0 -luigi_kart_frame012: - symbol: gKartLuigi012 - type: texture - offset: 0x3FB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_012_wheel_0 -luigi_kart_frame013: - symbol: gKartLuigi013 - type: texture - offset: 0x4580 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_013_wheel_0 -luigi_kart_frame014: - symbol: gKartLuigi014 - type: texture - offset: 0x4B54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_014_wheel_0 -luigi_kart_frame015: - symbol: gKartLuigi015 - type: texture - offset: 0x5138 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_015_wheel_0 -luigi_kart_frame016: - symbol: gKartLuigi016 - type: texture - offset: 0x5730 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_016_wheel_0 -luigi_kart_frame017: - symbol: gKartLuigi017 - type: texture - offset: 0x5D3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_017_wheel_0 -luigi_kart_frame018: - symbol: gKartLuigi018 - type: texture - offset: 0x6350 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_018_wheel_0 -luigi_kart_frame019: - symbol: gKartLuigi019 - type: texture - offset: 0x6968 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_019_wheel_0 -luigi_kart_frame020: - symbol: gKartLuigi020 - type: texture - offset: 0x6F70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_020_wheel_0 -luigi_kart_frame021: - symbol: gKartLuigi021 - type: texture - offset: 0x7570 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_021_wheel_0 -luigi_kart_frame022: - symbol: gKartLuigi022 - type: texture - offset: 0x7A64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_022_wheel_0 -luigi_kart_frame023: - symbol: gKartLuigi023 - type: texture - offset: 0x7F60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_023_wheel_0 -luigi_kart_frame024: - symbol: gKartLuigi024 - type: texture - offset: 0x8460 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_024_wheel_0 -luigi_kart_frame025: - symbol: gKartLuigi025 - type: texture - offset: 0x8988 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_025_wheel_0 -luigi_kart_frame026: - symbol: gKartLuigi026 - type: texture - offset: 0x8EC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_026_wheel_0 -luigi_kart_frame027: - symbol: gKartLuigi027 - type: texture - offset: 0x9408 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_027_wheel_0 -luigi_kart_frame028: - symbol: gKartLuigi028 - type: texture - offset: 0x9978 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_028_wheel_0 -luigi_kart_frame029: - symbol: gKartLuigi029 - type: texture - offset: 0x9EF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_029_wheel_0 -luigi_kart_frame030: - symbol: gKartLuigi030 - type: texture - offset: 0xA490 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_030_wheel_0 -luigi_kart_frame031: - symbol: gKartLuigi031 - type: texture - offset: 0xAA38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_031_wheel_0 -luigi_kart_frame032: - symbol: gKartLuigi032 - type: texture - offset: 0xB000 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_032_wheel_0 -luigi_kart_frame033: - symbol: gKartLuigi033 - type: texture - offset: 0xB5D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_033_wheel_0 -luigi_kart_frame034: - symbol: gKartLuigi034 - type: texture - offset: 0xBBB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_034_wheel_0 -luigi_kart_frame035: - symbol: gKartLuigi035 - type: texture - offset: 0xC1A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_035_wheel_0 -luigi_kart_frame036: - symbol: gKartLuigi036 - type: texture - offset: 0xC7AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_036_wheel_0 -luigi_kart_frame037: - symbol: gKartLuigi037 - type: texture - offset: 0xCDC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_037_wheel_0 -luigi_kart_frame038: - symbol: gKartLuigi038 - type: texture - offset: 0xD3D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_038_wheel_0 -luigi_kart_frame039: - symbol: gKartLuigi039 - type: texture - offset: 0xD9E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_039_wheel_0 -luigi_kart_frame040: - symbol: gKartLuigi040 - type: texture - offset: 0xE008 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_040_wheel_0 -luigi_kart_frame041: - symbol: gKartLuigi041 - type: texture - offset: 0xE60C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_041_wheel_0 -luigi_kart_frame042: - symbol: gKartLuigi042 - type: texture - offset: 0xEC40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_042_wheel_0 -luigi_kart_frame043: - symbol: gKartLuigi043 - type: texture - offset: 0xF128 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_043_wheel_0 -luigi_kart_frame044: - symbol: gKartLuigi044 - type: texture - offset: 0xF62C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_044_wheel_0 -luigi_kart_frame045: - symbol: gKartLuigi045 - type: texture - offset: 0xFB5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_045_wheel_0 -luigi_kart_frame046: - symbol: gKartLuigi046 - type: texture - offset: 0x10098 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_046_wheel_0 -luigi_kart_frame047: - symbol: gKartLuigi047 - type: texture - offset: 0x10618 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_047_wheel_0 -luigi_kart_frame048: - symbol: gKartLuigi048 - type: texture - offset: 0x10B80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_048_wheel_0 -luigi_kart_frame049: - symbol: gKartLuigi049 - type: texture - offset: 0x11100 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_049_wheel_0 -luigi_kart_frame050: - symbol: gKartLuigi050 - type: texture - offset: 0x1169C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_050_wheel_0 -luigi_kart_frame051: - symbol: gKartLuigi051 - type: texture - offset: 0x11C44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_051_wheel_0 -luigi_kart_frame052: - symbol: gKartLuigi052 - type: texture - offset: 0x12200 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_052_wheel_0 -luigi_kart_frame053: - symbol: gKartLuigi053 - type: texture - offset: 0x127E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_053_wheel_0 -luigi_kart_frame054: - symbol: gKartLuigi054 - type: texture - offset: 0x12DD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_054_wheel_0 -luigi_kart_frame055: - symbol: gKartLuigi055 - type: texture - offset: 0x133B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_055_wheel_0 -luigi_kart_frame056: - symbol: gKartLuigi056 - type: texture - offset: 0x139C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_056_wheel_0 -luigi_kart_frame057: - symbol: gKartLuigi057 - type: texture - offset: 0x13FB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_057_wheel_0 -luigi_kart_frame058: - symbol: gKartLuigi058 - type: texture - offset: 0x145C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_058_wheel_0 -luigi_kart_frame059: - symbol: gKartLuigi059 - type: texture - offset: 0x14BE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_059_wheel_0 -luigi_kart_frame060: - symbol: gKartLuigi060 - type: texture - offset: 0x15220 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_060_wheel_0 -luigi_kart_frame061: - symbol: gKartLuigi061 - type: texture - offset: 0x15850 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_061_wheel_0 -luigi_kart_frame062: - symbol: gKartLuigi062 - type: texture - offset: 0x15E98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_062_wheel_0 -luigi_kart_frame063: - symbol: gKartLuigi063 - type: texture - offset: 0x164D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_063_wheel_0 -luigi_kart_frame064: - symbol: gKartLuigi064 - type: texture - offset: 0x169E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_064_wheel_0 -luigi_kart_frame065: - symbol: gKartLuigi065 - type: texture - offset: 0x16EF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_065_wheel_0 -luigi_kart_frame066: - symbol: gKartLuigi066 - type: texture - offset: 0x17418 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_066_wheel_0 -luigi_kart_frame067: - symbol: gKartLuigi067 - type: texture - offset: 0x17978 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_067_wheel_0 -luigi_kart_frame068: - symbol: gKartLuigi068 - type: texture - offset: 0x17EE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_068_wheel_0 -luigi_kart_frame069: - symbol: gKartLuigi069 - type: texture - offset: 0x1847C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_069_wheel_0 -luigi_kart_frame070: - symbol: gKartLuigi070 - type: texture - offset: 0x18A14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_070_wheel_0 -luigi_kart_frame071: - symbol: gKartLuigi071 - type: texture - offset: 0x18FB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_071_wheel_0 -luigi_kart_frame072: - symbol: gKartLuigi072 - type: texture - offset: 0x1957C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_072_wheel_0 -luigi_kart_frame073: - symbol: gKartLuigi073 - type: texture - offset: 0x19B50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_073_wheel_0 -luigi_kart_frame074: - symbol: gKartLuigi074 - type: texture - offset: 0x1A140 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_074_wheel_0 -luigi_kart_frame075: - symbol: gKartLuigi075 - type: texture - offset: 0x1A734 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_075_wheel_0 -luigi_kart_frame076: - symbol: gKartLuigi076 - type: texture - offset: 0x1AD2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_076_wheel_0 -luigi_kart_frame077: - symbol: gKartLuigi077 - type: texture - offset: 0x1B33C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_077_wheel_0 -luigi_kart_frame078: - symbol: gKartLuigi078 - type: texture - offset: 0x1B95C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_078_wheel_0 -luigi_kart_frame079: - symbol: gKartLuigi079 - type: texture - offset: 0x1BF84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_079_wheel_0 -luigi_kart_frame080: - symbol: gKartLuigi080 - type: texture - offset: 0x1C5A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_080_wheel_0 -luigi_kart_frame081: - symbol: gKartLuigi081 - type: texture - offset: 0x1CBE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_081_wheel_0 -luigi_kart_frame082: - symbol: gKartLuigi082 - type: texture - offset: 0x1D224 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_082_wheel_0 -luigi_kart_frame083: - symbol: gKartLuigi083 - type: texture - offset: 0x1D85C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_083_wheel_0 -luigi_kart_frame084: - symbol: gKartLuigi084 - type: texture - offset: 0x1DE90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_084_wheel_0 -luigi_kart_frame085: - symbol: gKartLuigi085 - type: texture - offset: 0x1E39C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_085_wheel_0 -luigi_kart_frame086: - symbol: gKartLuigi086 - type: texture - offset: 0x1E8BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_086_wheel_0 -luigi_kart_frame087: - symbol: gKartLuigi087 - type: texture - offset: 0x1EE08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_087_wheel_0 -luigi_kart_frame088: - symbol: gKartLuigi088 - type: texture - offset: 0x1F35C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_088_wheel_0 -luigi_kart_frame089: - symbol: gKartLuigi089 - type: texture - offset: 0x1F8E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_089_wheel_0 -luigi_kart_frame090: - symbol: gKartLuigi090 - type: texture - offset: 0x1FE6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_090_wheel_0 -luigi_kart_frame091: - symbol: gKartLuigi091 - type: texture - offset: 0x20408 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_091_wheel_0 -luigi_kart_frame092: - symbol: gKartLuigi092 - type: texture - offset: 0x209B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_092_wheel_0 -luigi_kart_frame093: - symbol: gKartLuigi093 - type: texture - offset: 0x20F80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_093_wheel_0 -luigi_kart_frame094: - symbol: gKartLuigi094 - type: texture - offset: 0x2155C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_094_wheel_0 -luigi_kart_frame095: - symbol: gKartLuigi095 - type: texture - offset: 0x21B48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_095_wheel_0 -luigi_kart_frame096: - symbol: gKartLuigi096 - type: texture - offset: 0x22140 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_096_wheel_0 -luigi_kart_frame097: - symbol: gKartLuigi097 - type: texture - offset: 0x22750 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_097_wheel_0 -luigi_kart_frame098: - symbol: gKartLuigi098 - type: texture - offset: 0x22D58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_098_wheel_0 -luigi_kart_frame099: - symbol: gKartLuigi099 - type: texture - offset: 0x23384 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_099_wheel_0 -luigi_kart_frame100: - symbol: gKartLuigi100 - type: texture - offset: 0x239C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_100_wheel_0 -luigi_kart_frame101: - symbol: gKartLuigi101 - type: texture - offset: 0x2401C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_101_wheel_0 -luigi_kart_frame102: - symbol: gKartLuigi102 - type: texture - offset: 0x24664 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_102_wheel_0 -luigi_kart_frame103: - symbol: gKartLuigi103 - type: texture - offset: 0x24CB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_103_wheel_0 -luigi_kart_frame104: - symbol: gKartLuigi104 - type: texture - offset: 0x252F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_104_wheel_0 -luigi_kart_frame105: - symbol: gKartLuigi105 - type: texture - offset: 0x25930 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_105_wheel_0 -luigi_kart_frame106: - symbol: gKartLuigi106 - type: texture - offset: 0x25E50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_106_wheel_0 -luigi_kart_frame107: - symbol: gKartLuigi107 - type: texture - offset: 0x26384 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_107_wheel_0 -luigi_kart_frame108: - symbol: gKartLuigi108 - type: texture - offset: 0x268EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_108_wheel_0 -luigi_kart_frame109: - symbol: gKartLuigi109 - type: texture - offset: 0x26E78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_109_wheel_0 -luigi_kart_frame110: - symbol: gKartLuigi110 - type: texture - offset: 0x273EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_110_wheel_0 -luigi_kart_frame111: - symbol: gKartLuigi111 - type: texture - offset: 0x27980 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_111_wheel_0 -luigi_kart_frame112: - symbol: gKartLuigi112 - type: texture - offset: 0x27F18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_112_wheel_0 -luigi_kart_frame113: - symbol: gKartLuigi113 - type: texture - offset: 0x284DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_113_wheel_0 -luigi_kart_frame114: - symbol: gKartLuigi114 - type: texture - offset: 0x28AB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_114_wheel_0 -luigi_kart_frame115: - symbol: gKartLuigi115 - type: texture - offset: 0x290AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_115_wheel_0 -luigi_kart_frame116: - symbol: gKartLuigi116 - type: texture - offset: 0x29694 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_116_wheel_0 -luigi_kart_frame117: - symbol: gKartLuigi117 - type: texture - offset: 0x29CAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_117_wheel_0 -luigi_kart_frame118: - symbol: gKartLuigi118 - type: texture - offset: 0x2A2B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_118_wheel_0 -luigi_kart_frame119: - symbol: gKartLuigi119 - type: texture - offset: 0x2A8CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_119_wheel_0 -luigi_kart_frame120: - symbol: gKartLuigi120 - type: texture - offset: 0x2AEF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_120_wheel_0 -luigi_kart_frame121: - symbol: gKartLuigi121 - type: texture - offset: 0x2B534 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_121_wheel_0 -luigi_kart_frame122: - symbol: gKartLuigi122 - type: texture - offset: 0x2BB8C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_122_wheel_0 -luigi_kart_frame123: - symbol: gKartLuigi123 - type: texture - offset: 0x2C1D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_123_wheel_0 -luigi_kart_frame124: - symbol: gKartLuigi124 - type: texture - offset: 0x2C82C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_124_wheel_0 -luigi_kart_frame125: - symbol: gKartLuigi125 - type: texture - offset: 0x2CE84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_125_wheel_0 -luigi_kart_frame126: - symbol: gKartLuigi126 - type: texture - offset: 0x2D4CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_126_wheel_0 -luigi_kart_frame127: - symbol: gKartLuigi127 - type: texture - offset: 0x2DA14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_127_wheel_0 -luigi_kart_frame128: - symbol: gKartLuigi128 - type: texture - offset: 0x2DF58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_128_wheel_0 -luigi_kart_frame129: - symbol: gKartLuigi129 - type: texture - offset: 0x2E4E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_129_wheel_0 -luigi_kart_frame130: - symbol: gKartLuigi130 - type: texture - offset: 0x2EA40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_130_wheel_0 -luigi_kart_frame131: - symbol: gKartLuigi131 - type: texture - offset: 0x2EFE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_131_wheel_0 -luigi_kart_frame132: - symbol: gKartLuigi132 - type: texture - offset: 0x2F594 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_132_wheel_0 -luigi_kart_frame133: - symbol: gKartLuigi133 - type: texture - offset: 0x2FB58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_133_wheel_0 -luigi_kart_frame134: - symbol: gKartLuigi134 - type: texture - offset: 0x3010C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_134_wheel_0 -luigi_kart_frame135: - symbol: gKartLuigi135 - type: texture - offset: 0x306D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_135_wheel_0 -luigi_kart_frame136: - symbol: gKartLuigi136 - type: texture - offset: 0x30CB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_136_wheel_0 -luigi_kart_frame137: - symbol: gKartLuigi137 - type: texture - offset: 0x312AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_137_wheel_0 -luigi_kart_frame138: - symbol: gKartLuigi138 - type: texture - offset: 0x318B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_138_wheel_0 -luigi_kart_frame139: - symbol: gKartLuigi139 - type: texture - offset: 0x31ECC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_139_wheel_0 -luigi_kart_frame140: - symbol: gKartLuigi140 - type: texture - offset: 0x324F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_140_wheel_0 -luigi_kart_frame141: - symbol: gKartLuigi141 - type: texture - offset: 0x32B38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_141_wheel_0 -luigi_kart_frame142: - symbol: gKartLuigi142 - type: texture - offset: 0x33188 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_142_wheel_0 -luigi_kart_frame143: - symbol: gKartLuigi143 - type: texture - offset: 0x337E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_143_wheel_0 -luigi_kart_frame144: - symbol: gKartLuigi144 - type: texture - offset: 0x33E44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_144_wheel_0 -luigi_kart_frame145: - symbol: gKartLuigi145 - type: texture - offset: 0x344B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_145_wheel_0 -luigi_kart_frame146: - symbol: gKartLuigi146 - type: texture - offset: 0x34B10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_146_wheel_0 -luigi_kart_frame147: - symbol: gKartLuigi147 - type: texture - offset: 0x35184 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_147_wheel_0 -luigi_kart_frame148: - symbol: gKartLuigi148 - type: texture - offset: 0x356D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_148_wheel_0 -luigi_kart_frame149: - symbol: gKartLuigi149 - type: texture - offset: 0x35C3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_149_wheel_0 -luigi_kart_frame150: - symbol: gKartLuigi150 - type: texture - offset: 0x361B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_150_wheel_0 -luigi_kart_frame151: - symbol: gKartLuigi151 - type: texture - offset: 0x36748 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_151_wheel_0 -luigi_kart_frame152: - symbol: gKartLuigi152 - type: texture - offset: 0x36D04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_152_wheel_0 -luigi_kart_frame153: - symbol: gKartLuigi153 - type: texture - offset: 0x372D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_153_wheel_0 -luigi_kart_frame154: - symbol: gKartLuigi154 - type: texture - offset: 0x378A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_154_wheel_0 -luigi_kart_frame155: - symbol: gKartLuigi155 - type: texture - offset: 0x37E68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_155_wheel_0 -luigi_kart_frame156: - symbol: gKartLuigi156 - type: texture - offset: 0x38460 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_156_wheel_0 -luigi_kart_frame157: - symbol: gKartLuigi157 - type: texture - offset: 0x38A5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_157_wheel_0 -luigi_kart_frame158: - symbol: gKartLuigi158 - type: texture - offset: 0x39068 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_158_wheel_0 -luigi_kart_frame159: - symbol: gKartLuigi159 - type: texture - offset: 0x3966C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_159_wheel_0 -luigi_kart_frame160: - symbol: gKartLuigi160 - type: texture - offset: 0x39C8C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_160_wheel_0 -luigi_kart_frame161: - symbol: gKartLuigi161 - type: texture - offset: 0x3A2DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_161_wheel_0 -luigi_kart_frame162: - symbol: gKartLuigi162 - type: texture - offset: 0x3A930 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_162_wheel_0 -luigi_kart_frame163: - symbol: gKartLuigi163 - type: texture - offset: 0x3AF90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_163_wheel_0 -luigi_kart_frame164: - symbol: gKartLuigi164 - type: texture - offset: 0x3B600 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_164_wheel_0 -luigi_kart_frame165: - symbol: gKartLuigi165 - type: texture - offset: 0x3BC7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_165_wheel_0 -luigi_kart_frame166: - symbol: gKartLuigi166 - type: texture - offset: 0x3C2E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_166_wheel_0 -luigi_kart_frame167: - symbol: gKartLuigi167 - type: texture - offset: 0x3C96C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_167_wheel_0 -luigi_kart_frame168: - symbol: gKartLuigi168 - type: texture - offset: 0x3CFE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_168_wheel_0 -luigi_kart_frame169: - symbol: gKartLuigi169 - type: texture - offset: 0x3D560 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_169_wheel_0 -luigi_kart_frame170: - symbol: gKartLuigi170 - type: texture - offset: 0x3DB04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_170_wheel_0 -luigi_kart_frame171: - symbol: gKartLuigi171 - type: texture - offset: 0x3E0C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_171_wheel_0 -luigi_kart_frame172: - symbol: gKartLuigi172 - type: texture - offset: 0x3E67C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_172_wheel_0 -luigi_kart_frame173: - symbol: gKartLuigi173 - type: texture - offset: 0x3EC1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_173_wheel_0 -luigi_kart_frame174: - symbol: gKartLuigi174 - type: texture - offset: 0x3F200 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_174_wheel_0 -luigi_kart_frame175: - symbol: gKartLuigi175 - type: texture - offset: 0x3F7D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_175_wheel_0 -luigi_kart_frame176: - symbol: gKartLuigi176 - type: texture - offset: 0x3FDA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_176_wheel_0 -luigi_kart_frame177: - symbol: gKartLuigi177 - type: texture - offset: 0x40398 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_177_wheel_0 -luigi_kart_frame178: - symbol: gKartLuigi178 - type: texture - offset: 0x409B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_178_wheel_0 -luigi_kart_frame179: - symbol: gKartLuigi179 - type: texture - offset: 0x40FC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_179_wheel_0 -luigi_kart_frame180: - symbol: gKartLuigi180 - type: texture - offset: 0x415E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_180_wheel_0 -luigi_kart_frame181: - symbol: gKartLuigi181 - type: texture - offset: 0x41C10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_181_wheel_0 -luigi_kart_frame182: - symbol: gKartLuigi182 - type: texture - offset: 0x42240 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_182_wheel_0 -luigi_kart_frame183: - symbol: gKartLuigi183 - type: texture - offset: 0x42884 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_183_wheel_0 -luigi_kart_frame184: - symbol: gKartLuigi184 - type: texture - offset: 0x42ED0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_184_wheel_0 -luigi_kart_frame185: - symbol: gKartLuigi185 - type: texture - offset: 0x43534 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_185_wheel_0 -luigi_kart_frame186: - symbol: gKartLuigi186 - type: texture - offset: 0x43BC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_186_wheel_0 -luigi_kart_frame187: - symbol: gKartLuigi187 - type: texture - offset: 0x44250 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_187_wheel_0 -luigi_kart_frame188: - symbol: gKartLuigi188 - type: texture - offset: 0x448B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_188_wheel_0 -luigi_kart_frame189: - symbol: gKartLuigi189 - type: texture - offset: 0x44F38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_189_wheel_0 -luigi_kart_frame190: - symbol: gKartLuigi190 - type: texture - offset: 0x4544C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_190_wheel_0 -luigi_kart_frame191: - symbol: gKartLuigi191 - type: texture - offset: 0x459A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_191_wheel_0 -luigi_kart_frame192: - symbol: gKartLuigi192 - type: texture - offset: 0x45F28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_192_wheel_0 -luigi_kart_frame193: - symbol: gKartLuigi193 - type: texture - offset: 0x464E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_193_wheel_0 -luigi_kart_frame194: - symbol: gKartLuigi194 - type: texture - offset: 0x46AC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_194_wheel_0 -luigi_kart_frame195: - symbol: gKartLuigi195 - type: texture - offset: 0x470C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_195_wheel_0 -luigi_kart_frame196: - symbol: gKartLuigi196 - type: texture - offset: 0x476E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_196_wheel_0 -luigi_kart_frame197: - symbol: gKartLuigi197 - type: texture - offset: 0x47D14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_197_wheel_0 -luigi_kart_frame198: - symbol: gKartLuigi198 - type: texture - offset: 0x48370 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_198_wheel_0 -luigi_kart_frame199: - symbol: gKartLuigi199 - type: texture - offset: 0x489DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_199_wheel_0 -luigi_kart_frame200: - symbol: gKartLuigi200 - type: texture - offset: 0x49064 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_200_wheel_0 -luigi_kart_frame201: - symbol: gKartLuigi201 - type: texture - offset: 0x4970C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_201_wheel_0 -luigi_kart_frame202: - symbol: gKartLuigi202 - type: texture - offset: 0x49DC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_202_wheel_0 -luigi_kart_frame203: - symbol: gKartLuigi203 - type: texture - offset: 0x4A478 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_203_wheel_0 -luigi_kart_frame204: - symbol: gKartLuigi204 - type: texture - offset: 0x4AB10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_204_wheel_0 -luigi_kart_frame205: - symbol: gKartLuigi205 - type: texture - offset: 0x4B1C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_205_wheel_0 -luigi_kart_frame206: - symbol: gKartLuigi206 - type: texture - offset: 0x4B848 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_206_wheel_0 -luigi_kart_frame207: - symbol: gKartLuigi207 - type: texture - offset: 0x4BEB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_207_wheel_0 -luigi_kart_frame208: - symbol: gKartLuigi208 - type: texture - offset: 0x4C508 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_208_wheel_0 -luigi_kart_frame209: - symbol: gKartLuigi209 - type: texture - offset: 0x4CB24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_209_wheel_0 -luigi_kart_frame210: - symbol: gKartLuigi210 - type: texture - offset: 0x4D06C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_210_wheel_0 -luigi_kart_frame211: - symbol: gKartLuigi211 - type: texture - offset: 0x4D5E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_211_wheel_0 -luigi_kart_frame212: - symbol: gKartLuigi212 - type: texture - offset: 0x4DBA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_212_wheel_0 -luigi_kart_frame213: - symbol: gKartLuigi213 - type: texture - offset: 0x4E178 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_213_wheel_0 -luigi_kart_frame214: - symbol: gKartLuigi214 - type: texture - offset: 0x4E778 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_214_wheel_0 -luigi_kart_frame215: - symbol: gKartLuigi215 - type: texture - offset: 0x4ED90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_215_wheel_0 -luigi_kart_frame216: - symbol: gKartLuigi216 - type: texture - offset: 0x4F3D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_216_wheel_0 -luigi_kart_frame217: - symbol: gKartLuigi217 - type: texture - offset: 0x4FA2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_217_wheel_0 -luigi_kart_frame218: - symbol: gKartLuigi218 - type: texture - offset: 0x50080 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_218_wheel_0 -luigi_kart_frame219: - symbol: gKartLuigi219 - type: texture - offset: 0x506DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_219_wheel_0 -luigi_kart_frame220: - symbol: gKartLuigi220 - type: texture - offset: 0x50D4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_220_wheel_0 -luigi_kart_frame221: - symbol: gKartLuigi221 - type: texture - offset: 0x513D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_221_wheel_0 -luigi_kart_frame222: - symbol: gKartLuigi222 - type: texture - offset: 0x51A5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_222_wheel_0 -luigi_kart_frame223: - symbol: gKartLuigi223 - type: texture - offset: 0x520F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_223_wheel_0 -luigi_kart_frame224: - symbol: gKartLuigi224 - type: texture - offset: 0x52764 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_224_wheel_0 -luigi_kart_frame225: - symbol: gKartLuigi225 - type: texture - offset: 0x52DD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_225_wheel_0 -luigi_kart_frame226: - symbol: gKartLuigi226 - type: texture - offset: 0x53440 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_226_wheel_0 -luigi_kart_frame227: - symbol: gKartLuigi227 - type: texture - offset: 0x53A68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_227_wheel_0 -luigi_kart_frame228: - symbol: gKartLuigi228 - type: texture - offset: 0x54058 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_228_wheel_0 -luigi_kart_frame229: - symbol: gKartLuigi229 - type: texture - offset: 0x54604 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_229_wheel_0 -luigi_kart_frame230: - symbol: gKartLuigi230 - type: texture - offset: 0x54B58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_230_wheel_0 -luigi_kart_frame231: - symbol: gKartLuigi231 - type: texture - offset: 0x550F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_231_wheel_0 -luigi_kart_frame232: - symbol: gKartLuigi232 - type: texture - offset: 0x556DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_232_wheel_0 -luigi_kart_frame233: - symbol: gKartLuigi233 - type: texture - offset: 0x55CE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_233_wheel_0 -luigi_kart_frame234: - symbol: gKartLuigi234 - type: texture - offset: 0x56310 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_234_wheel_0 -luigi_kart_frame235: - symbol: gKartLuigi235 - type: texture - offset: 0x56950 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_235_wheel_0 -luigi_kart_frame236: - symbol: gKartLuigi236 - type: texture - offset: 0x56FA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_236_wheel_0 -luigi_kart_frame237: - symbol: gKartLuigi237 - type: texture - offset: 0x57604 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_237_wheel_0 -luigi_kart_frame238: - symbol: gKartLuigi238 - type: texture - offset: 0x57C6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_238_wheel_0 -luigi_kart_frame239: - symbol: gKartLuigi239 - type: texture - offset: 0x582C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_239_wheel_0 -luigi_kart_frame240: - symbol: gKartLuigi240 - type: texture - offset: 0x5893C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_240_wheel_0 -luigi_kart_frame241: - symbol: gKartLuigi241 - type: texture - offset: 0x58FA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_241_wheel_0 -luigi_kart_frame242: - symbol: gKartLuigi242 - type: texture - offset: 0x59608 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_242_wheel_0 -luigi_kart_frame243: - symbol: gKartLuigi243 - type: texture - offset: 0x59C78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_243_wheel_0 -luigi_kart_frame244: - symbol: gKartLuigi244 - type: texture - offset: 0x5A2A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_244_wheel_0 -luigi_kart_frame245: - symbol: gKartLuigi245 - type: texture - offset: 0x5A8BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_245_wheel_0 -luigi_kart_frame246: - symbol: gKartLuigi246 - type: texture - offset: 0x5AEC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_246_wheel_0 -luigi_kart_frame247: - symbol: gKartLuigi247 - type: texture - offset: 0x5B4AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_247_wheel_0 -luigi_kart_frame248: - symbol: gKartLuigi248 - type: texture - offset: 0x5BA74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_248_wheel_0 -luigi_kart_frame249: - symbol: gKartLuigi249 - type: texture - offset: 0x5BFF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_249_wheel_0 -luigi_kart_frame250: - symbol: gKartLuigi250 - type: texture - offset: 0x5C570 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_250_wheel_0 -luigi_kart_frame251: - symbol: gKartLuigi251 - type: texture - offset: 0x5CB3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_251_wheel_0 -luigi_kart_frame252: - symbol: gKartLuigi252 - type: texture - offset: 0x5D12C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_252_wheel_0 -luigi_kart_frame253: - symbol: gKartLuigi253 - type: texture - offset: 0x5D750 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_253_wheel_0 -luigi_kart_frame254: - symbol: gKartLuigi254 - type: texture - offset: 0x5DD9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_254_wheel_0 -luigi_kart_frame255: - symbol: gKartLuigi255 - type: texture - offset: 0x5E3EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_255_wheel_0 -luigi_kart_frame256: - symbol: gKartLuigi256 - type: texture - offset: 0x5EA68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_256_wheel_0 -luigi_kart_frame257: - symbol: gKartLuigi257 - type: texture - offset: 0x5F0D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_257_wheel_0 -luigi_kart_frame258: - symbol: gKartLuigi258 - type: texture - offset: 0x5F73C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_258_wheel_0 -luigi_kart_frame259: - symbol: gKartLuigi259 - type: texture - offset: 0x5FDA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_259_wheel_0 -luigi_kart_frame260: - symbol: gKartLuigi260 - type: texture - offset: 0x603FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_260_wheel_0 -luigi_kart_frame261: - symbol: gKartLuigi261 - type: texture - offset: 0x60A4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_261_wheel_0 -luigi_kart_frame262: - symbol: gKartLuigi262 - type: texture - offset: 0x61084 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_262_wheel_0 -luigi_kart_frame263: - symbol: gKartLuigi263 - type: texture - offset: 0x616A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_263_wheel_0 -luigi_kart_frame264: - symbol: gKartLuigi264 - type: texture - offset: 0x61CA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_264_wheel_0 -luigi_kart_frame265: - symbol: gKartLuigi265 - type: texture - offset: 0x622A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_265_wheel_0 -luigi_kart_frame266: - symbol: gKartLuigi266 - type: texture - offset: 0x62864 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_266_wheel_0 -luigi_kart_frame267: - symbol: gKartLuigi267 - type: texture - offset: 0x62E10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_267_wheel_0 -luigi_kart_frame268: - symbol: gKartLuigi268 - type: texture - offset: 0x63380 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_268_wheel_0 -luigi_kart_frame269: - symbol: gKartLuigi269 - type: texture - offset: 0x638B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_269_wheel_0 -luigi_kart_frame270: - symbol: gKartLuigi270 - type: texture - offset: 0x63E50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_270_wheel_0 -luigi_kart_frame271: - symbol: gKartLuigi271 - type: texture - offset: 0x64430 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_271_wheel_0 -luigi_kart_frame272: - symbol: gKartLuigi272 - type: texture - offset: 0x64A44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_272_wheel_0 -luigi_kart_frame273: - symbol: gKartLuigi273 - type: texture - offset: 0x65084 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_273_wheel_0 -luigi_kart_frame274: - symbol: gKartLuigi274 - type: texture - offset: 0x656D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_274_wheel_0 -luigi_kart_frame275: - symbol: gKartLuigi275 - type: texture - offset: 0x65D3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_275_wheel_0 -luigi_kart_frame276: - symbol: gKartLuigi276 - type: texture - offset: 0x663C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_276_wheel_0 -luigi_kart_frame277: - symbol: gKartLuigi277 - type: texture - offset: 0x66A48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_277_wheel_0 -luigi_kart_frame278: - symbol: gKartLuigi278 - type: texture - offset: 0x670A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_278_wheel_0 -luigi_kart_frame279: - symbol: gKartLuigi279 - type: texture - offset: 0x67714 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_279_wheel_0 -luigi_kart_frame280: - symbol: gKartLuigi280 - type: texture - offset: 0x67D6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_280_wheel_0 -luigi_kart_frame281: - symbol: gKartLuigi281 - type: texture - offset: 0x683B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_281_wheel_0 -luigi_kart_frame282: - symbol: gKartLuigi282 - type: texture - offset: 0x689C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_282_wheel_0 -luigi_kart_frame283: - symbol: gKartLuigi283 - type: texture - offset: 0x68FC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_283_wheel_0 -luigi_kart_frame284: - symbol: gKartLuigi284 - type: texture - offset: 0x69590 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_284_wheel_0 -luigi_kart_frame285: - symbol: gKartLuigi285 - type: texture - offset: 0x69B44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_285_wheel_0 -luigi_kart_frame286: - symbol: gKartLuigi286 - type: texture - offset: 0x6A0B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_286_wheel_0 -luigi_kart_frame287: - symbol: gKartLuigi287 - type: texture - offset: 0x6A604 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_287_wheel_0 -luigi_kart_frame288: - symbol: gKartLuigi288 - type: texture - offset: 0x6AB10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_288_wheel_0 -luigi_kart_frame289: - symbol: gKartLuigi289 - type: texture - offset: 0x6AFC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame290: - symbol: gKartLuigi290 - type: texture - offset: 0x6B4C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame291: - symbol: gKartLuigi291 - type: texture - offset: 0x6BA50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame292: - symbol: gKartLuigi292 - type: texture - offset: 0x6C030 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame293: - symbol: gKartLuigi293 - type: texture - offset: 0x6C6DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame294: - symbol: gKartLuigi294 - type: texture - offset: 0x6CD38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame295: - symbol: gKartLuigi295 - type: texture - offset: 0x6D390 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame296: - symbol: gKartLuigi296 - type: texture - offset: 0x6D9B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame297: - symbol: gKartLuigi297 - type: texture - offset: 0x6DF5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame298: - symbol: gKartLuigi298 - type: texture - offset: 0x6E48C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame299: - symbol: gKartLuigi299 - type: texture - offset: 0x6EA48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame300: - symbol: gKartLuigi300 - type: texture - offset: 0x6F028 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame301: - symbol: gKartLuigi301 - type: texture - offset: 0x6F5F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame302: - symbol: gKartLuigi302 - type: texture - offset: 0x6FBB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame303: - symbol: gKartLuigi303 - type: texture - offset: 0x70188 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame304: - symbol: gKartLuigi304 - type: texture - offset: 0x70750 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame305: - symbol: gKartLuigi305 - type: texture - offset: 0x70CB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame306: - symbol: gKartLuigi306 - type: texture - offset: 0x71154 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame307: - symbol: gKartLuigi307 - type: texture - offset: 0x71740 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame308: - symbol: gKartLuigi308 - type: texture - offset: 0x71DCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame309: - symbol: gKartLuigi309 - type: texture - offset: 0x7247C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame310: - symbol: gKartLuigi310 - type: texture - offset: 0x72AC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame311: - symbol: gKartLuigi311 - type: texture - offset: 0x73118 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame312: - symbol: gKartLuigi312 - type: texture - offset: 0x73730 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame313: - symbol: gKartLuigi313 - type: texture - offset: 0x73C90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame314: - symbol: gKartLuigi314 - type: texture - offset: 0x741A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame315: - symbol: gKartLuigi315 - type: texture - offset: 0x74764 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame316: - symbol: gKartLuigi316 - type: texture - offset: 0x74D3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame317: - symbol: gKartLuigi317 - type: texture - offset: 0x752F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame318: - symbol: gKartLuigi318 - type: texture - offset: 0x758A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame319: - symbol: gKartLuigi319 - type: texture - offset: 0x75E70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -luigi_kart_frame320: - symbol: gKartLuigi320 - type: texture - offset: 0x76448 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: luigi_kart_palette - tlut_wheel: kart_000_wheel_0 -kart_000_wheel_0: - symbol: gKartLuigi000Wheel0 - type: texture - offset: 0x769FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_1: - symbol: gKartLuigi000Wheel1 - type: texture - offset: 0x76A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_2: - symbol: gKartLuigi000Wheel2 - type: texture - offset: 0x76AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_3: - symbol: gKartLuigi000Wheel3 - type: texture - offset: 0x76B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_0: - symbol: gKartLuigi001Wheel0 - type: texture - offset: 0x76BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_1: - symbol: gKartLuigi001Wheel1 - type: texture - offset: 0x76C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_2: - symbol: gKartLuigi001Wheel2 - type: texture - offset: 0x76CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_3: - symbol: gKartLuigi001Wheel3 - type: texture - offset: 0x76D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_0: - symbol: gKartLuigi002Wheel0 - type: texture - offset: 0x76DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_1: - symbol: gKartLuigi002Wheel1 - type: texture - offset: 0x76E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_2: - symbol: gKartLuigi002Wheel2 - type: texture - offset: 0x76EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_3: - symbol: gKartLuigi002Wheel3 - type: texture - offset: 0x76F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_0: - symbol: gKartLuigi003Wheel0 - type: texture - offset: 0x76FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_1: - symbol: gKartLuigi003Wheel1 - type: texture - offset: 0x7707C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_2: - symbol: gKartLuigi003Wheel2 - type: texture - offset: 0x770FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_3: - symbol: gKartLuigi003Wheel3 - type: texture - offset: 0x7717C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_0: - symbol: gKartLuigi004Wheel0 - type: texture - offset: 0x771FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_1: - symbol: gKartLuigi004Wheel1 - type: texture - offset: 0x7727C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_2: - symbol: gKartLuigi004Wheel2 - type: texture - offset: 0x772FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_3: - symbol: gKartLuigi004Wheel3 - type: texture - offset: 0x7737C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_0: - symbol: gKartLuigi005Wheel0 - type: texture - offset: 0x773FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_1: - symbol: gKartLuigi005Wheel1 - type: texture - offset: 0x7747C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_2: - symbol: gKartLuigi005Wheel2 - type: texture - offset: 0x774FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_3: - symbol: gKartLuigi005Wheel3 - type: texture - offset: 0x7757C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_0: - symbol: gKartLuigi006Wheel0 - type: texture - offset: 0x775FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_1: - symbol: gKartLuigi006Wheel1 - type: texture - offset: 0x7767C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_2: - symbol: gKartLuigi006Wheel2 - type: texture - offset: 0x776FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_3: - symbol: gKartLuigi006Wheel3 - type: texture - offset: 0x7777C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_0: - symbol: gKartLuigi007Wheel0 - type: texture - offset: 0x777FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_1: - symbol: gKartLuigi007Wheel1 - type: texture - offset: 0x7787C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_2: - symbol: gKartLuigi007Wheel2 - type: texture - offset: 0x778FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_3: - symbol: gKartLuigi007Wheel3 - type: texture - offset: 0x7797C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_0: - symbol: gKartLuigi008Wheel0 - type: texture - offset: 0x779FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_1: - symbol: gKartLuigi008Wheel1 - type: texture - offset: 0x77A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_2: - symbol: gKartLuigi008Wheel2 - type: texture - offset: 0x77AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_3: - symbol: gKartLuigi008Wheel3 - type: texture - offset: 0x77B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_0: - symbol: gKartLuigi009Wheel0 - type: texture - offset: 0x77BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_1: - symbol: gKartLuigi009Wheel1 - type: texture - offset: 0x77C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_2: - symbol: gKartLuigi009Wheel2 - type: texture - offset: 0x77CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_3: - symbol: gKartLuigi009Wheel3 - type: texture - offset: 0x77D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_0: - symbol: gKartLuigi010Wheel0 - type: texture - offset: 0x77DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_1: - symbol: gKartLuigi010Wheel1 - type: texture - offset: 0x77E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_2: - symbol: gKartLuigi010Wheel2 - type: texture - offset: 0x77EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_3: - symbol: gKartLuigi010Wheel3 - type: texture - offset: 0x77F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_0: - symbol: gKartLuigi011Wheel0 - type: texture - offset: 0x77FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_1: - symbol: gKartLuigi011Wheel1 - type: texture - offset: 0x7807C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_2: - symbol: gKartLuigi011Wheel2 - type: texture - offset: 0x780FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_3: - symbol: gKartLuigi011Wheel3 - type: texture - offset: 0x7817C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_0: - symbol: gKartLuigi012Wheel0 - type: texture - offset: 0x781FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_1: - symbol: gKartLuigi012Wheel1 - type: texture - offset: 0x7827C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_2: - symbol: gKartLuigi012Wheel2 - type: texture - offset: 0x782FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_3: - symbol: gKartLuigi012Wheel3 - type: texture - offset: 0x7837C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_0: - symbol: gKartLuigi013Wheel0 - type: texture - offset: 0x783FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_1: - symbol: gKartLuigi013Wheel1 - type: texture - offset: 0x7847C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_2: - symbol: gKartLuigi013Wheel2 - type: texture - offset: 0x784FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_3: - symbol: gKartLuigi013Wheel3 - type: texture - offset: 0x7857C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_0: - symbol: gKartLuigi014Wheel0 - type: texture - offset: 0x785FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_1: - symbol: gKartLuigi014Wheel1 - type: texture - offset: 0x7867C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_2: - symbol: gKartLuigi014Wheel2 - type: texture - offset: 0x786FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_3: - symbol: gKartLuigi014Wheel3 - type: texture - offset: 0x7877C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_0: - symbol: gKartLuigi015Wheel0 - type: texture - offset: 0x787FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_1: - symbol: gKartLuigi015Wheel1 - type: texture - offset: 0x7887C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_2: - symbol: gKartLuigi015Wheel2 - type: texture - offset: 0x788FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_3: - symbol: gKartLuigi015Wheel3 - type: texture - offset: 0x7897C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_0: - symbol: gKartLuigi016Wheel0 - type: texture - offset: 0x789FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_1: - symbol: gKartLuigi016Wheel1 - type: texture - offset: 0x78A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_2: - symbol: gKartLuigi016Wheel2 - type: texture - offset: 0x78AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_3: - symbol: gKartLuigi016Wheel3 - type: texture - offset: 0x78B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_0: - symbol: gKartLuigi017Wheel0 - type: texture - offset: 0x78BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_1: - symbol: gKartLuigi017Wheel1 - type: texture - offset: 0x78C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_2: - symbol: gKartLuigi017Wheel2 - type: texture - offset: 0x78CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_3: - symbol: gKartLuigi017Wheel3 - type: texture - offset: 0x78D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_0: - symbol: gKartLuigi018Wheel0 - type: texture - offset: 0x78DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_1: - symbol: gKartLuigi018Wheel1 - type: texture - offset: 0x78E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_2: - symbol: gKartLuigi018Wheel2 - type: texture - offset: 0x78EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_3: - symbol: gKartLuigi018Wheel3 - type: texture - offset: 0x78F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_0: - symbol: gKartLuigi019Wheel0 - type: texture - offset: 0x78FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_1: - symbol: gKartLuigi019Wheel1 - type: texture - offset: 0x7907C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_2: - symbol: gKartLuigi019Wheel2 - type: texture - offset: 0x790FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_3: - symbol: gKartLuigi019Wheel3 - type: texture - offset: 0x7917C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_0: - symbol: gKartLuigi020Wheel0 - type: texture - offset: 0x791FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_1: - symbol: gKartLuigi020Wheel1 - type: texture - offset: 0x7927C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_2: - symbol: gKartLuigi020Wheel2 - type: texture - offset: 0x792FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_3: - symbol: gKartLuigi020Wheel3 - type: texture - offset: 0x7937C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_0: - symbol: gKartLuigi021Wheel0 - type: texture - offset: 0x793FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_1: - symbol: gKartLuigi021Wheel1 - type: texture - offset: 0x7947C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_2: - symbol: gKartLuigi021Wheel2 - type: texture - offset: 0x794FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_3: - symbol: gKartLuigi021Wheel3 - type: texture - offset: 0x7957C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_0: - symbol: gKartLuigi022Wheel0 - type: texture - offset: 0x795FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_1: - symbol: gKartLuigi022Wheel1 - type: texture - offset: 0x7967C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_2: - symbol: gKartLuigi022Wheel2 - type: texture - offset: 0x796FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_3: - symbol: gKartLuigi022Wheel3 - type: texture - offset: 0x7977C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_0: - symbol: gKartLuigi023Wheel0 - type: texture - offset: 0x797FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_1: - symbol: gKartLuigi023Wheel1 - type: texture - offset: 0x7987C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_2: - symbol: gKartLuigi023Wheel2 - type: texture - offset: 0x798FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_3: - symbol: gKartLuigi023Wheel3 - type: texture - offset: 0x7997C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_0: - symbol: gKartLuigi024Wheel0 - type: texture - offset: 0x799FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_1: - symbol: gKartLuigi024Wheel1 - type: texture - offset: 0x79A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_2: - symbol: gKartLuigi024Wheel2 - type: texture - offset: 0x79AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_3: - symbol: gKartLuigi024Wheel3 - type: texture - offset: 0x79B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_0: - symbol: gKartLuigi025Wheel0 - type: texture - offset: 0x79BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_1: - symbol: gKartLuigi025Wheel1 - type: texture - offset: 0x79C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_2: - symbol: gKartLuigi025Wheel2 - type: texture - offset: 0x79CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_3: - symbol: gKartLuigi025Wheel3 - type: texture - offset: 0x79D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_0: - symbol: gKartLuigi026Wheel0 - type: texture - offset: 0x79DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_1: - symbol: gKartLuigi026Wheel1 - type: texture - offset: 0x79E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_2: - symbol: gKartLuigi026Wheel2 - type: texture - offset: 0x79EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_3: - symbol: gKartLuigi026Wheel3 - type: texture - offset: 0x79F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_0: - symbol: gKartLuigi027Wheel0 - type: texture - offset: 0x79FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_1: - symbol: gKartLuigi027Wheel1 - type: texture - offset: 0x7A07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_2: - symbol: gKartLuigi027Wheel2 - type: texture - offset: 0x7A0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_3: - symbol: gKartLuigi027Wheel3 - type: texture - offset: 0x7A17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_0: - symbol: gKartLuigi028Wheel0 - type: texture - offset: 0x7A1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_1: - symbol: gKartLuigi028Wheel1 - type: texture - offset: 0x7A27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_2: - symbol: gKartLuigi028Wheel2 - type: texture - offset: 0x7A2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_3: - symbol: gKartLuigi028Wheel3 - type: texture - offset: 0x7A37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_0: - symbol: gKartLuigi029Wheel0 - type: texture - offset: 0x7A3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_1: - symbol: gKartLuigi029Wheel1 - type: texture - offset: 0x7A47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_2: - symbol: gKartLuigi029Wheel2 - type: texture - offset: 0x7A4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_3: - symbol: gKartLuigi029Wheel3 - type: texture - offset: 0x7A57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_0: - symbol: gKartLuigi030Wheel0 - type: texture - offset: 0x7A5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_1: - symbol: gKartLuigi030Wheel1 - type: texture - offset: 0x7A67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_2: - symbol: gKartLuigi030Wheel2 - type: texture - offset: 0x7A6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_3: - symbol: gKartLuigi030Wheel3 - type: texture - offset: 0x7A77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_0: - symbol: gKartLuigi031Wheel0 - type: texture - offset: 0x7A7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_1: - symbol: gKartLuigi031Wheel1 - type: texture - offset: 0x7A87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_2: - symbol: gKartLuigi031Wheel2 - type: texture - offset: 0x7A8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_3: - symbol: gKartLuigi031Wheel3 - type: texture - offset: 0x7A97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_0: - symbol: gKartLuigi032Wheel0 - type: texture - offset: 0x7A9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_1: - symbol: gKartLuigi032Wheel1 - type: texture - offset: 0x7AA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_2: - symbol: gKartLuigi032Wheel2 - type: texture - offset: 0x7AAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_3: - symbol: gKartLuigi032Wheel3 - type: texture - offset: 0x7AB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_0: - symbol: gKartLuigi033Wheel0 - type: texture - offset: 0x7ABFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_1: - symbol: gKartLuigi033Wheel1 - type: texture - offset: 0x7AC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_2: - symbol: gKartLuigi033Wheel2 - type: texture - offset: 0x7ACFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_3: - symbol: gKartLuigi033Wheel3 - type: texture - offset: 0x7AD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_0: - symbol: gKartLuigi034Wheel0 - type: texture - offset: 0x7ADFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_1: - symbol: gKartLuigi034Wheel1 - type: texture - offset: 0x7AE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_2: - symbol: gKartLuigi034Wheel2 - type: texture - offset: 0x7AEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_3: - symbol: gKartLuigi034Wheel3 - type: texture - offset: 0x7AF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_0: - symbol: gKartLuigi035Wheel0 - type: texture - offset: 0x7AFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_1: - symbol: gKartLuigi035Wheel1 - type: texture - offset: 0x7B07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_2: - symbol: gKartLuigi035Wheel2 - type: texture - offset: 0x7B0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_3: - symbol: gKartLuigi035Wheel3 - type: texture - offset: 0x7B17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_0: - symbol: gKartLuigi036Wheel0 - type: texture - offset: 0x7B1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_1: - symbol: gKartLuigi036Wheel1 - type: texture - offset: 0x7B27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_2: - symbol: gKartLuigi036Wheel2 - type: texture - offset: 0x7B2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_3: - symbol: gKartLuigi036Wheel3 - type: texture - offset: 0x7B37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_0: - symbol: gKartLuigi037Wheel0 - type: texture - offset: 0x7B3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_1: - symbol: gKartLuigi037Wheel1 - type: texture - offset: 0x7B47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_2: - symbol: gKartLuigi037Wheel2 - type: texture - offset: 0x7B4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_3: - symbol: gKartLuigi037Wheel3 - type: texture - offset: 0x7B57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_0: - symbol: gKartLuigi038Wheel0 - type: texture - offset: 0x7B5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_1: - symbol: gKartLuigi038Wheel1 - type: texture - offset: 0x7B67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_2: - symbol: gKartLuigi038Wheel2 - type: texture - offset: 0x7B6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_3: - symbol: gKartLuigi038Wheel3 - type: texture - offset: 0x7B77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_0: - symbol: gKartLuigi039Wheel0 - type: texture - offset: 0x7B7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_1: - symbol: gKartLuigi039Wheel1 - type: texture - offset: 0x7B87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_2: - symbol: gKartLuigi039Wheel2 - type: texture - offset: 0x7B8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_3: - symbol: gKartLuigi039Wheel3 - type: texture - offset: 0x7B97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_0: - symbol: gKartLuigi040Wheel0 - type: texture - offset: 0x7B9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_1: - symbol: gKartLuigi040Wheel1 - type: texture - offset: 0x7BA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_2: - symbol: gKartLuigi040Wheel2 - type: texture - offset: 0x7BAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_3: - symbol: gKartLuigi040Wheel3 - type: texture - offset: 0x7BB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_0: - symbol: gKartLuigi041Wheel0 - type: texture - offset: 0x7BBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_1: - symbol: gKartLuigi041Wheel1 - type: texture - offset: 0x7BC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_2: - symbol: gKartLuigi041Wheel2 - type: texture - offset: 0x7BCFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_3: - symbol: gKartLuigi041Wheel3 - type: texture - offset: 0x7BD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_0: - symbol: gKartLuigi042Wheel0 - type: texture - offset: 0x7BDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_1: - symbol: gKartLuigi042Wheel1 - type: texture - offset: 0x7BE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_2: - symbol: gKartLuigi042Wheel2 - type: texture - offset: 0x7BEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_3: - symbol: gKartLuigi042Wheel3 - type: texture - offset: 0x7BF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_0: - symbol: gKartLuigi043Wheel0 - type: texture - offset: 0x7BFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_1: - symbol: gKartLuigi043Wheel1 - type: texture - offset: 0x7C07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_2: - symbol: gKartLuigi043Wheel2 - type: texture - offset: 0x7C0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_3: - symbol: gKartLuigi043Wheel3 - type: texture - offset: 0x7C17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_0: - symbol: gKartLuigi044Wheel0 - type: texture - offset: 0x7C1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_1: - symbol: gKartLuigi044Wheel1 - type: texture - offset: 0x7C27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_2: - symbol: gKartLuigi044Wheel2 - type: texture - offset: 0x7C2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_3: - symbol: gKartLuigi044Wheel3 - type: texture - offset: 0x7C37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_0: - symbol: gKartLuigi045Wheel0 - type: texture - offset: 0x7C3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_1: - symbol: gKartLuigi045Wheel1 - type: texture - offset: 0x7C47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_2: - symbol: gKartLuigi045Wheel2 - type: texture - offset: 0x7C4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_3: - symbol: gKartLuigi045Wheel3 - type: texture - offset: 0x7C57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_0: - symbol: gKartLuigi046Wheel0 - type: texture - offset: 0x7C5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_1: - symbol: gKartLuigi046Wheel1 - type: texture - offset: 0x7C67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_2: - symbol: gKartLuigi046Wheel2 - type: texture - offset: 0x7C6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_3: - symbol: gKartLuigi046Wheel3 - type: texture - offset: 0x7C77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_0: - symbol: gKartLuigi047Wheel0 - type: texture - offset: 0x7C7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_1: - symbol: gKartLuigi047Wheel1 - type: texture - offset: 0x7C87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_2: - symbol: gKartLuigi047Wheel2 - type: texture - offset: 0x7C8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_3: - symbol: gKartLuigi047Wheel3 - type: texture - offset: 0x7C97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_0: - symbol: gKartLuigi048Wheel0 - type: texture - offset: 0x7C9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_1: - symbol: gKartLuigi048Wheel1 - type: texture - offset: 0x7CA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_2: - symbol: gKartLuigi048Wheel2 - type: texture - offset: 0x7CAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_3: - symbol: gKartLuigi048Wheel3 - type: texture - offset: 0x7CB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_0: - symbol: gKartLuigi049Wheel0 - type: texture - offset: 0x7CBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_1: - symbol: gKartLuigi049Wheel1 - type: texture - offset: 0x7CC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_2: - symbol: gKartLuigi049Wheel2 - type: texture - offset: 0x7CCFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_3: - symbol: gKartLuigi049Wheel3 - type: texture - offset: 0x7CD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_0: - symbol: gKartLuigi050Wheel0 - type: texture - offset: 0x7CDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_1: - symbol: gKartLuigi050Wheel1 - type: texture - offset: 0x7CE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_2: - symbol: gKartLuigi050Wheel2 - type: texture - offset: 0x7CEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_3: - symbol: gKartLuigi050Wheel3 - type: texture - offset: 0x7CF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_0: - symbol: gKartLuigi051Wheel0 - type: texture - offset: 0x7CFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_1: - symbol: gKartLuigi051Wheel1 - type: texture - offset: 0x7D07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_2: - symbol: gKartLuigi051Wheel2 - type: texture - offset: 0x7D0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_3: - symbol: gKartLuigi051Wheel3 - type: texture - offset: 0x7D17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_0: - symbol: gKartLuigi052Wheel0 - type: texture - offset: 0x7D1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_1: - symbol: gKartLuigi052Wheel1 - type: texture - offset: 0x7D27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_2: - symbol: gKartLuigi052Wheel2 - type: texture - offset: 0x7D2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_3: - symbol: gKartLuigi052Wheel3 - type: texture - offset: 0x7D37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_0: - symbol: gKartLuigi053Wheel0 - type: texture - offset: 0x7D3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_1: - symbol: gKartLuigi053Wheel1 - type: texture - offset: 0x7D47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_2: - symbol: gKartLuigi053Wheel2 - type: texture - offset: 0x7D4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_3: - symbol: gKartLuigi053Wheel3 - type: texture - offset: 0x7D57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_0: - symbol: gKartLuigi054Wheel0 - type: texture - offset: 0x7D5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_1: - symbol: gKartLuigi054Wheel1 - type: texture - offset: 0x7D67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_2: - symbol: gKartLuigi054Wheel2 - type: texture - offset: 0x7D6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_3: - symbol: gKartLuigi054Wheel3 - type: texture - offset: 0x7D77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_0: - symbol: gKartLuigi055Wheel0 - type: texture - offset: 0x7D7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_1: - symbol: gKartLuigi055Wheel1 - type: texture - offset: 0x7D87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_2: - symbol: gKartLuigi055Wheel2 - type: texture - offset: 0x7D8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_3: - symbol: gKartLuigi055Wheel3 - type: texture - offset: 0x7D97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_0: - symbol: gKartLuigi056Wheel0 - type: texture - offset: 0x7D9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_1: - symbol: gKartLuigi056Wheel1 - type: texture - offset: 0x7DA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_2: - symbol: gKartLuigi056Wheel2 - type: texture - offset: 0x7DAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_3: - symbol: gKartLuigi056Wheel3 - type: texture - offset: 0x7DB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_0: - symbol: gKartLuigi057Wheel0 - type: texture - offset: 0x7DBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_1: - symbol: gKartLuigi057Wheel1 - type: texture - offset: 0x7DC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_2: - symbol: gKartLuigi057Wheel2 - type: texture - offset: 0x7DCFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_3: - symbol: gKartLuigi057Wheel3 - type: texture - offset: 0x7DD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_0: - symbol: gKartLuigi058Wheel0 - type: texture - offset: 0x7DDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_1: - symbol: gKartLuigi058Wheel1 - type: texture - offset: 0x7DE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_2: - symbol: gKartLuigi058Wheel2 - type: texture - offset: 0x7DEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_3: - symbol: gKartLuigi058Wheel3 - type: texture - offset: 0x7DF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_0: - symbol: gKartLuigi059Wheel0 - type: texture - offset: 0x7DFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_1: - symbol: gKartLuigi059Wheel1 - type: texture - offset: 0x7E07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_2: - symbol: gKartLuigi059Wheel2 - type: texture - offset: 0x7E0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_3: - symbol: gKartLuigi059Wheel3 - type: texture - offset: 0x7E17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_0: - symbol: gKartLuigi060Wheel0 - type: texture - offset: 0x7E1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_1: - symbol: gKartLuigi060Wheel1 - type: texture - offset: 0x7E27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_2: - symbol: gKartLuigi060Wheel2 - type: texture - offset: 0x7E2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_3: - symbol: gKartLuigi060Wheel3 - type: texture - offset: 0x7E37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_0: - symbol: gKartLuigi061Wheel0 - type: texture - offset: 0x7E3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_1: - symbol: gKartLuigi061Wheel1 - type: texture - offset: 0x7E47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_2: - symbol: gKartLuigi061Wheel2 - type: texture - offset: 0x7E4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_3: - symbol: gKartLuigi061Wheel3 - type: texture - offset: 0x7E57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_0: - symbol: gKartLuigi062Wheel0 - type: texture - offset: 0x7E5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_1: - symbol: gKartLuigi062Wheel1 - type: texture - offset: 0x7E67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_2: - symbol: gKartLuigi062Wheel2 - type: texture - offset: 0x7E6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_3: - symbol: gKartLuigi062Wheel3 - type: texture - offset: 0x7E77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_0: - symbol: gKartLuigi063Wheel0 - type: texture - offset: 0x7E7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_1: - symbol: gKartLuigi063Wheel1 - type: texture - offset: 0x7E87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_2: - symbol: gKartLuigi063Wheel2 - type: texture - offset: 0x7E8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_3: - symbol: gKartLuigi063Wheel3 - type: texture - offset: 0x7E97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_0: - symbol: gKartLuigi064Wheel0 - type: texture - offset: 0x7E9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_1: - symbol: gKartLuigi064Wheel1 - type: texture - offset: 0x7EA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_2: - symbol: gKartLuigi064Wheel2 - type: texture - offset: 0x7EAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_3: - symbol: gKartLuigi064Wheel3 - type: texture - offset: 0x7EB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_0: - symbol: gKartLuigi065Wheel0 - type: texture - offset: 0x7EBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_1: - symbol: gKartLuigi065Wheel1 - type: texture - offset: 0x7EC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_2: - symbol: gKartLuigi065Wheel2 - type: texture - offset: 0x7ECFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_3: - symbol: gKartLuigi065Wheel3 - type: texture - offset: 0x7ED7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_0: - symbol: gKartLuigi066Wheel0 - type: texture - offset: 0x7EDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_1: - symbol: gKartLuigi066Wheel1 - type: texture - offset: 0x7EE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_2: - symbol: gKartLuigi066Wheel2 - type: texture - offset: 0x7EEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_3: - symbol: gKartLuigi066Wheel3 - type: texture - offset: 0x7EF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_0: - symbol: gKartLuigi067Wheel0 - type: texture - offset: 0x7EFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_1: - symbol: gKartLuigi067Wheel1 - type: texture - offset: 0x7F07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_2: - symbol: gKartLuigi067Wheel2 - type: texture - offset: 0x7F0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_3: - symbol: gKartLuigi067Wheel3 - type: texture - offset: 0x7F17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_0: - symbol: gKartLuigi068Wheel0 - type: texture - offset: 0x7F1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_1: - symbol: gKartLuigi068Wheel1 - type: texture - offset: 0x7F27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_2: - symbol: gKartLuigi068Wheel2 - type: texture - offset: 0x7F2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_3: - symbol: gKartLuigi068Wheel3 - type: texture - offset: 0x7F37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_0: - symbol: gKartLuigi069Wheel0 - type: texture - offset: 0x7F3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_1: - symbol: gKartLuigi069Wheel1 - type: texture - offset: 0x7F47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_2: - symbol: gKartLuigi069Wheel2 - type: texture - offset: 0x7F4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_3: - symbol: gKartLuigi069Wheel3 - type: texture - offset: 0x7F57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_0: - symbol: gKartLuigi070Wheel0 - type: texture - offset: 0x7F5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_1: - symbol: gKartLuigi070Wheel1 - type: texture - offset: 0x7F67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_2: - symbol: gKartLuigi070Wheel2 - type: texture - offset: 0x7F6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_3: - symbol: gKartLuigi070Wheel3 - type: texture - offset: 0x7F77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_0: - symbol: gKartLuigi071Wheel0 - type: texture - offset: 0x7F7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_1: - symbol: gKartLuigi071Wheel1 - type: texture - offset: 0x7F87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_2: - symbol: gKartLuigi071Wheel2 - type: texture - offset: 0x7F8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_3: - symbol: gKartLuigi071Wheel3 - type: texture - offset: 0x7F97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_0: - symbol: gKartLuigi072Wheel0 - type: texture - offset: 0x7F9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_1: - symbol: gKartLuigi072Wheel1 - type: texture - offset: 0x7FA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_2: - symbol: gKartLuigi072Wheel2 - type: texture - offset: 0x7FAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_3: - symbol: gKartLuigi072Wheel3 - type: texture - offset: 0x7FB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_0: - symbol: gKartLuigi073Wheel0 - type: texture - offset: 0x7FBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_1: - symbol: gKartLuigi073Wheel1 - type: texture - offset: 0x7FC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_2: - symbol: gKartLuigi073Wheel2 - type: texture - offset: 0x7FCFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_3: - symbol: gKartLuigi073Wheel3 - type: texture - offset: 0x7FD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_0: - symbol: gKartLuigi074Wheel0 - type: texture - offset: 0x7FDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_1: - symbol: gKartLuigi074Wheel1 - type: texture - offset: 0x7FE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_2: - symbol: gKartLuigi074Wheel2 - type: texture - offset: 0x7FEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_3: - symbol: gKartLuigi074Wheel3 - type: texture - offset: 0x7FF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_0: - symbol: gKartLuigi075Wheel0 - type: texture - offset: 0x7FFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_1: - symbol: gKartLuigi075Wheel1 - type: texture - offset: 0x8007C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_2: - symbol: gKartLuigi075Wheel2 - type: texture - offset: 0x800FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_3: - symbol: gKartLuigi075Wheel3 - type: texture - offset: 0x8017C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_0: - symbol: gKartLuigi076Wheel0 - type: texture - offset: 0x801FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_1: - symbol: gKartLuigi076Wheel1 - type: texture - offset: 0x8027C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_2: - symbol: gKartLuigi076Wheel2 - type: texture - offset: 0x802FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_3: - symbol: gKartLuigi076Wheel3 - type: texture - offset: 0x8037C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_0: - symbol: gKartLuigi077Wheel0 - type: texture - offset: 0x803FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_1: - symbol: gKartLuigi077Wheel1 - type: texture - offset: 0x8047C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_2: - symbol: gKartLuigi077Wheel2 - type: texture - offset: 0x804FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_3: - symbol: gKartLuigi077Wheel3 - type: texture - offset: 0x8057C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_0: - symbol: gKartLuigi078Wheel0 - type: texture - offset: 0x805FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_1: - symbol: gKartLuigi078Wheel1 - type: texture - offset: 0x8067C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_2: - symbol: gKartLuigi078Wheel2 - type: texture - offset: 0x806FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_3: - symbol: gKartLuigi078Wheel3 - type: texture - offset: 0x8077C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_0: - symbol: gKartLuigi079Wheel0 - type: texture - offset: 0x807FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_1: - symbol: gKartLuigi079Wheel1 - type: texture - offset: 0x8087C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_2: - symbol: gKartLuigi079Wheel2 - type: texture - offset: 0x808FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_3: - symbol: gKartLuigi079Wheel3 - type: texture - offset: 0x8097C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_0: - symbol: gKartLuigi080Wheel0 - type: texture - offset: 0x809FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_1: - symbol: gKartLuigi080Wheel1 - type: texture - offset: 0x80A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_2: - symbol: gKartLuigi080Wheel2 - type: texture - offset: 0x80AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_3: - symbol: gKartLuigi080Wheel3 - type: texture - offset: 0x80B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_0: - symbol: gKartLuigi081Wheel0 - type: texture - offset: 0x80BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_1: - symbol: gKartLuigi081Wheel1 - type: texture - offset: 0x80C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_2: - symbol: gKartLuigi081Wheel2 - type: texture - offset: 0x80CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_3: - symbol: gKartLuigi081Wheel3 - type: texture - offset: 0x80D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_0: - symbol: gKartLuigi082Wheel0 - type: texture - offset: 0x80DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_1: - symbol: gKartLuigi082Wheel1 - type: texture - offset: 0x80E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_2: - symbol: gKartLuigi082Wheel2 - type: texture - offset: 0x80EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_3: - symbol: gKartLuigi082Wheel3 - type: texture - offset: 0x80F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_0: - symbol: gKartLuigi083Wheel0 - type: texture - offset: 0x80FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_1: - symbol: gKartLuigi083Wheel1 - type: texture - offset: 0x8107C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_2: - symbol: gKartLuigi083Wheel2 - type: texture - offset: 0x810FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_3: - symbol: gKartLuigi083Wheel3 - type: texture - offset: 0x8117C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_0: - symbol: gKartLuigi084Wheel0 - type: texture - offset: 0x811FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_1: - symbol: gKartLuigi084Wheel1 - type: texture - offset: 0x8127C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_2: - symbol: gKartLuigi084Wheel2 - type: texture - offset: 0x812FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_3: - symbol: gKartLuigi084Wheel3 - type: texture - offset: 0x8137C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_0: - symbol: gKartLuigi085Wheel0 - type: texture - offset: 0x813FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_1: - symbol: gKartLuigi085Wheel1 - type: texture - offset: 0x8147C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_2: - symbol: gKartLuigi085Wheel2 - type: texture - offset: 0x814FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_3: - symbol: gKartLuigi085Wheel3 - type: texture - offset: 0x8157C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_0: - symbol: gKartLuigi086Wheel0 - type: texture - offset: 0x815FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_1: - symbol: gKartLuigi086Wheel1 - type: texture - offset: 0x8167C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_2: - symbol: gKartLuigi086Wheel2 - type: texture - offset: 0x816FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_3: - symbol: gKartLuigi086Wheel3 - type: texture - offset: 0x8177C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_0: - symbol: gKartLuigi087Wheel0 - type: texture - offset: 0x817FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_1: - symbol: gKartLuigi087Wheel1 - type: texture - offset: 0x8187C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_2: - symbol: gKartLuigi087Wheel2 - type: texture - offset: 0x818FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_3: - symbol: gKartLuigi087Wheel3 - type: texture - offset: 0x8197C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_0: - symbol: gKartLuigi088Wheel0 - type: texture - offset: 0x819FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_1: - symbol: gKartLuigi088Wheel1 - type: texture - offset: 0x81A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_2: - symbol: gKartLuigi088Wheel2 - type: texture - offset: 0x81AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_3: - symbol: gKartLuigi088Wheel3 - type: texture - offset: 0x81B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_0: - symbol: gKartLuigi089Wheel0 - type: texture - offset: 0x81BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_1: - symbol: gKartLuigi089Wheel1 - type: texture - offset: 0x81C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_2: - symbol: gKartLuigi089Wheel2 - type: texture - offset: 0x81CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_3: - symbol: gKartLuigi089Wheel3 - type: texture - offset: 0x81D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_0: - symbol: gKartLuigi090Wheel0 - type: texture - offset: 0x81DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_1: - symbol: gKartLuigi090Wheel1 - type: texture - offset: 0x81E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_2: - symbol: gKartLuigi090Wheel2 - type: texture - offset: 0x81EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_3: - symbol: gKartLuigi090Wheel3 - type: texture - offset: 0x81F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_0: - symbol: gKartLuigi091Wheel0 - type: texture - offset: 0x81FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_1: - symbol: gKartLuigi091Wheel1 - type: texture - offset: 0x8207C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_2: - symbol: gKartLuigi091Wheel2 - type: texture - offset: 0x820FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_3: - symbol: gKartLuigi091Wheel3 - type: texture - offset: 0x8217C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_0: - symbol: gKartLuigi092Wheel0 - type: texture - offset: 0x821FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_1: - symbol: gKartLuigi092Wheel1 - type: texture - offset: 0x8227C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_2: - symbol: gKartLuigi092Wheel2 - type: texture - offset: 0x822FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_3: - symbol: gKartLuigi092Wheel3 - type: texture - offset: 0x8237C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_0: - symbol: gKartLuigi093Wheel0 - type: texture - offset: 0x823FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_1: - symbol: gKartLuigi093Wheel1 - type: texture - offset: 0x8247C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_2: - symbol: gKartLuigi093Wheel2 - type: texture - offset: 0x824FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_3: - symbol: gKartLuigi093Wheel3 - type: texture - offset: 0x8257C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_0: - symbol: gKartLuigi094Wheel0 - type: texture - offset: 0x825FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_1: - symbol: gKartLuigi094Wheel1 - type: texture - offset: 0x8267C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_2: - symbol: gKartLuigi094Wheel2 - type: texture - offset: 0x826FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_3: - symbol: gKartLuigi094Wheel3 - type: texture - offset: 0x8277C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_0: - symbol: gKartLuigi095Wheel0 - type: texture - offset: 0x827FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_1: - symbol: gKartLuigi095Wheel1 - type: texture - offset: 0x8287C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_2: - symbol: gKartLuigi095Wheel2 - type: texture - offset: 0x828FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_3: - symbol: gKartLuigi095Wheel3 - type: texture - offset: 0x8297C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_0: - symbol: gKartLuigi096Wheel0 - type: texture - offset: 0x829FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_1: - symbol: gKartLuigi096Wheel1 - type: texture - offset: 0x82A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_2: - symbol: gKartLuigi096Wheel2 - type: texture - offset: 0x82AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_3: - symbol: gKartLuigi096Wheel3 - type: texture - offset: 0x82B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_0: - symbol: gKartLuigi097Wheel0 - type: texture - offset: 0x82BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_1: - symbol: gKartLuigi097Wheel1 - type: texture - offset: 0x82C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_2: - symbol: gKartLuigi097Wheel2 - type: texture - offset: 0x82CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_3: - symbol: gKartLuigi097Wheel3 - type: texture - offset: 0x82D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_0: - symbol: gKartLuigi098Wheel0 - type: texture - offset: 0x82DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_1: - symbol: gKartLuigi098Wheel1 - type: texture - offset: 0x82E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_2: - symbol: gKartLuigi098Wheel2 - type: texture - offset: 0x82EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_3: - symbol: gKartLuigi098Wheel3 - type: texture - offset: 0x82F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_0: - symbol: gKartLuigi099Wheel0 - type: texture - offset: 0x82FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_1: - symbol: gKartLuigi099Wheel1 - type: texture - offset: 0x8307C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_2: - symbol: gKartLuigi099Wheel2 - type: texture - offset: 0x830FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_3: - symbol: gKartLuigi099Wheel3 - type: texture - offset: 0x8317C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_0: - symbol: gKartLuigi100Wheel0 - type: texture - offset: 0x831FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_1: - symbol: gKartLuigi100Wheel1 - type: texture - offset: 0x8327C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_2: - symbol: gKartLuigi100Wheel2 - type: texture - offset: 0x832FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_3: - symbol: gKartLuigi100Wheel3 - type: texture - offset: 0x8337C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_0: - symbol: gKartLuigi101Wheel0 - type: texture - offset: 0x833FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_1: - symbol: gKartLuigi101Wheel1 - type: texture - offset: 0x8347C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_2: - symbol: gKartLuigi101Wheel2 - type: texture - offset: 0x834FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_3: - symbol: gKartLuigi101Wheel3 - type: texture - offset: 0x8357C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_0: - symbol: gKartLuigi102Wheel0 - type: texture - offset: 0x835FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_1: - symbol: gKartLuigi102Wheel1 - type: texture - offset: 0x8367C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_2: - symbol: gKartLuigi102Wheel2 - type: texture - offset: 0x836FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_3: - symbol: gKartLuigi102Wheel3 - type: texture - offset: 0x8377C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_0: - symbol: gKartLuigi103Wheel0 - type: texture - offset: 0x837FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_1: - symbol: gKartLuigi103Wheel1 - type: texture - offset: 0x8387C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_2: - symbol: gKartLuigi103Wheel2 - type: texture - offset: 0x838FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_3: - symbol: gKartLuigi103Wheel3 - type: texture - offset: 0x8397C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_0: - symbol: gKartLuigi104Wheel0 - type: texture - offset: 0x839FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_1: - symbol: gKartLuigi104Wheel1 - type: texture - offset: 0x83A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_2: - symbol: gKartLuigi104Wheel2 - type: texture - offset: 0x83AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_3: - symbol: gKartLuigi104Wheel3 - type: texture - offset: 0x83B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_0: - symbol: gKartLuigi105Wheel0 - type: texture - offset: 0x83BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_1: - symbol: gKartLuigi105Wheel1 - type: texture - offset: 0x83C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_2: - symbol: gKartLuigi105Wheel2 - type: texture - offset: 0x83CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_3: - symbol: gKartLuigi105Wheel3 - type: texture - offset: 0x83D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_0: - symbol: gKartLuigi106Wheel0 - type: texture - offset: 0x83DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_1: - symbol: gKartLuigi106Wheel1 - type: texture - offset: 0x83E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_2: - symbol: gKartLuigi106Wheel2 - type: texture - offset: 0x83EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_3: - symbol: gKartLuigi106Wheel3 - type: texture - offset: 0x83F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_0: - symbol: gKartLuigi107Wheel0 - type: texture - offset: 0x83FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_1: - symbol: gKartLuigi107Wheel1 - type: texture - offset: 0x8407C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_2: - symbol: gKartLuigi107Wheel2 - type: texture - offset: 0x840FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_3: - symbol: gKartLuigi107Wheel3 - type: texture - offset: 0x8417C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_0: - symbol: gKartLuigi108Wheel0 - type: texture - offset: 0x841FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_1: - symbol: gKartLuigi108Wheel1 - type: texture - offset: 0x8427C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_2: - symbol: gKartLuigi108Wheel2 - type: texture - offset: 0x842FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_3: - symbol: gKartLuigi108Wheel3 - type: texture - offset: 0x8437C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_0: - symbol: gKartLuigi109Wheel0 - type: texture - offset: 0x843FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_1: - symbol: gKartLuigi109Wheel1 - type: texture - offset: 0x8447C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_2: - symbol: gKartLuigi109Wheel2 - type: texture - offset: 0x844FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_3: - symbol: gKartLuigi109Wheel3 - type: texture - offset: 0x8457C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_0: - symbol: gKartLuigi110Wheel0 - type: texture - offset: 0x845FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_1: - symbol: gKartLuigi110Wheel1 - type: texture - offset: 0x8467C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_2: - symbol: gKartLuigi110Wheel2 - type: texture - offset: 0x846FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_3: - symbol: gKartLuigi110Wheel3 - type: texture - offset: 0x8477C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_0: - symbol: gKartLuigi111Wheel0 - type: texture - offset: 0x847FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_1: - symbol: gKartLuigi111Wheel1 - type: texture - offset: 0x8487C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_2: - symbol: gKartLuigi111Wheel2 - type: texture - offset: 0x848FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_3: - symbol: gKartLuigi111Wheel3 - type: texture - offset: 0x8497C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_0: - symbol: gKartLuigi112Wheel0 - type: texture - offset: 0x849FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_1: - symbol: gKartLuigi112Wheel1 - type: texture - offset: 0x84A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_2: - symbol: gKartLuigi112Wheel2 - type: texture - offset: 0x84AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_3: - symbol: gKartLuigi112Wheel3 - type: texture - offset: 0x84B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_0: - symbol: gKartLuigi113Wheel0 - type: texture - offset: 0x84BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_1: - symbol: gKartLuigi113Wheel1 - type: texture - offset: 0x84C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_2: - symbol: gKartLuigi113Wheel2 - type: texture - offset: 0x84CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_3: - symbol: gKartLuigi113Wheel3 - type: texture - offset: 0x84D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_0: - symbol: gKartLuigi114Wheel0 - type: texture - offset: 0x84DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_1: - symbol: gKartLuigi114Wheel1 - type: texture - offset: 0x84E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_2: - symbol: gKartLuigi114Wheel2 - type: texture - offset: 0x84EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_3: - symbol: gKartLuigi114Wheel3 - type: texture - offset: 0x84F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_0: - symbol: gKartLuigi115Wheel0 - type: texture - offset: 0x84FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_1: - symbol: gKartLuigi115Wheel1 - type: texture - offset: 0x8507C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_2: - symbol: gKartLuigi115Wheel2 - type: texture - offset: 0x850FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_3: - symbol: gKartLuigi115Wheel3 - type: texture - offset: 0x8517C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_0: - symbol: gKartLuigi116Wheel0 - type: texture - offset: 0x851FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_1: - symbol: gKartLuigi116Wheel1 - type: texture - offset: 0x8527C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_2: - symbol: gKartLuigi116Wheel2 - type: texture - offset: 0x852FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_3: - symbol: gKartLuigi116Wheel3 - type: texture - offset: 0x8537C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_0: - symbol: gKartLuigi117Wheel0 - type: texture - offset: 0x853FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_1: - symbol: gKartLuigi117Wheel1 - type: texture - offset: 0x8547C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_2: - symbol: gKartLuigi117Wheel2 - type: texture - offset: 0x854FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_3: - symbol: gKartLuigi117Wheel3 - type: texture - offset: 0x8557C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_0: - symbol: gKartLuigi118Wheel0 - type: texture - offset: 0x855FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_1: - symbol: gKartLuigi118Wheel1 - type: texture - offset: 0x8567C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_2: - symbol: gKartLuigi118Wheel2 - type: texture - offset: 0x856FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_3: - symbol: gKartLuigi118Wheel3 - type: texture - offset: 0x8577C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_0: - symbol: gKartLuigi119Wheel0 - type: texture - offset: 0x857FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_1: - symbol: gKartLuigi119Wheel1 - type: texture - offset: 0x8587C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_2: - symbol: gKartLuigi119Wheel2 - type: texture - offset: 0x858FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_3: - symbol: gKartLuigi119Wheel3 - type: texture - offset: 0x8597C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_0: - symbol: gKartLuigi120Wheel0 - type: texture - offset: 0x859FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_1: - symbol: gKartLuigi120Wheel1 - type: texture - offset: 0x85A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_2: - symbol: gKartLuigi120Wheel2 - type: texture - offset: 0x85AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_3: - symbol: gKartLuigi120Wheel3 - type: texture - offset: 0x85B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_0: - symbol: gKartLuigi121Wheel0 - type: texture - offset: 0x85BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_1: - symbol: gKartLuigi121Wheel1 - type: texture - offset: 0x85C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_2: - symbol: gKartLuigi121Wheel2 - type: texture - offset: 0x85CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_3: - symbol: gKartLuigi121Wheel3 - type: texture - offset: 0x85D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_0: - symbol: gKartLuigi122Wheel0 - type: texture - offset: 0x85DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_1: - symbol: gKartLuigi122Wheel1 - type: texture - offset: 0x85E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_2: - symbol: gKartLuigi122Wheel2 - type: texture - offset: 0x85EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_3: - symbol: gKartLuigi122Wheel3 - type: texture - offset: 0x85F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_0: - symbol: gKartLuigi123Wheel0 - type: texture - offset: 0x85FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_1: - symbol: gKartLuigi123Wheel1 - type: texture - offset: 0x8607C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_2: - symbol: gKartLuigi123Wheel2 - type: texture - offset: 0x860FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_3: - symbol: gKartLuigi123Wheel3 - type: texture - offset: 0x8617C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_0: - symbol: gKartLuigi124Wheel0 - type: texture - offset: 0x861FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_1: - symbol: gKartLuigi124Wheel1 - type: texture - offset: 0x8627C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_2: - symbol: gKartLuigi124Wheel2 - type: texture - offset: 0x862FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_3: - symbol: gKartLuigi124Wheel3 - type: texture - offset: 0x8637C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_0: - symbol: gKartLuigi125Wheel0 - type: texture - offset: 0x863FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_1: - symbol: gKartLuigi125Wheel1 - type: texture - offset: 0x8647C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_2: - symbol: gKartLuigi125Wheel2 - type: texture - offset: 0x864FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_3: - symbol: gKartLuigi125Wheel3 - type: texture - offset: 0x8657C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_0: - symbol: gKartLuigi126Wheel0 - type: texture - offset: 0x865FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_1: - symbol: gKartLuigi126Wheel1 - type: texture - offset: 0x8667C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_2: - symbol: gKartLuigi126Wheel2 - type: texture - offset: 0x866FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_3: - symbol: gKartLuigi126Wheel3 - type: texture - offset: 0x8677C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_0: - symbol: gKartLuigi127Wheel0 - type: texture - offset: 0x867FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_1: - symbol: gKartLuigi127Wheel1 - type: texture - offset: 0x8687C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_2: - symbol: gKartLuigi127Wheel2 - type: texture - offset: 0x868FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_3: - symbol: gKartLuigi127Wheel3 - type: texture - offset: 0x8697C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_0: - symbol: gKartLuigi128Wheel0 - type: texture - offset: 0x869FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_1: - symbol: gKartLuigi128Wheel1 - type: texture - offset: 0x86A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_2: - symbol: gKartLuigi128Wheel2 - type: texture - offset: 0x86AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_3: - symbol: gKartLuigi128Wheel3 - type: texture - offset: 0x86B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_0: - symbol: gKartLuigi129Wheel0 - type: texture - offset: 0x86BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_1: - symbol: gKartLuigi129Wheel1 - type: texture - offset: 0x86C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_2: - symbol: gKartLuigi129Wheel2 - type: texture - offset: 0x86CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_3: - symbol: gKartLuigi129Wheel3 - type: texture - offset: 0x86D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_0: - symbol: gKartLuigi130Wheel0 - type: texture - offset: 0x86DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_1: - symbol: gKartLuigi130Wheel1 - type: texture - offset: 0x86E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_2: - symbol: gKartLuigi130Wheel2 - type: texture - offset: 0x86EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_3: - symbol: gKartLuigi130Wheel3 - type: texture - offset: 0x86F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_0: - symbol: gKartLuigi131Wheel0 - type: texture - offset: 0x86FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_1: - symbol: gKartLuigi131Wheel1 - type: texture - offset: 0x8707C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_2: - symbol: gKartLuigi131Wheel2 - type: texture - offset: 0x870FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_3: - symbol: gKartLuigi131Wheel3 - type: texture - offset: 0x8717C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_0: - symbol: gKartLuigi132Wheel0 - type: texture - offset: 0x871FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_1: - symbol: gKartLuigi132Wheel1 - type: texture - offset: 0x8727C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_2: - symbol: gKartLuigi132Wheel2 - type: texture - offset: 0x872FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_3: - symbol: gKartLuigi132Wheel3 - type: texture - offset: 0x8737C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_0: - symbol: gKartLuigi133Wheel0 - type: texture - offset: 0x873FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_1: - symbol: gKartLuigi133Wheel1 - type: texture - offset: 0x8747C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_2: - symbol: gKartLuigi133Wheel2 - type: texture - offset: 0x874FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_3: - symbol: gKartLuigi133Wheel3 - type: texture - offset: 0x8757C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_0: - symbol: gKartLuigi134Wheel0 - type: texture - offset: 0x875FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_1: - symbol: gKartLuigi134Wheel1 - type: texture - offset: 0x8767C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_2: - symbol: gKartLuigi134Wheel2 - type: texture - offset: 0x876FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_3: - symbol: gKartLuigi134Wheel3 - type: texture - offset: 0x8777C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_0: - symbol: gKartLuigi135Wheel0 - type: texture - offset: 0x877FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_1: - symbol: gKartLuigi135Wheel1 - type: texture - offset: 0x8787C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_2: - symbol: gKartLuigi135Wheel2 - type: texture - offset: 0x878FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_3: - symbol: gKartLuigi135Wheel3 - type: texture - offset: 0x8797C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_0: - symbol: gKartLuigi136Wheel0 - type: texture - offset: 0x879FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_1: - symbol: gKartLuigi136Wheel1 - type: texture - offset: 0x87A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_2: - symbol: gKartLuigi136Wheel2 - type: texture - offset: 0x87AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_3: - symbol: gKartLuigi136Wheel3 - type: texture - offset: 0x87B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_0: - symbol: gKartLuigi137Wheel0 - type: texture - offset: 0x87BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_1: - symbol: gKartLuigi137Wheel1 - type: texture - offset: 0x87C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_2: - symbol: gKartLuigi137Wheel2 - type: texture - offset: 0x87CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_3: - symbol: gKartLuigi137Wheel3 - type: texture - offset: 0x87D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_0: - symbol: gKartLuigi138Wheel0 - type: texture - offset: 0x87DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_1: - symbol: gKartLuigi138Wheel1 - type: texture - offset: 0x87E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_2: - symbol: gKartLuigi138Wheel2 - type: texture - offset: 0x87EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_3: - symbol: gKartLuigi138Wheel3 - type: texture - offset: 0x87F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_0: - symbol: gKartLuigi139Wheel0 - type: texture - offset: 0x87FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_1: - symbol: gKartLuigi139Wheel1 - type: texture - offset: 0x8807C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_2: - symbol: gKartLuigi139Wheel2 - type: texture - offset: 0x880FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_3: - symbol: gKartLuigi139Wheel3 - type: texture - offset: 0x8817C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_0: - symbol: gKartLuigi140Wheel0 - type: texture - offset: 0x881FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_1: - symbol: gKartLuigi140Wheel1 - type: texture - offset: 0x8827C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_2: - symbol: gKartLuigi140Wheel2 - type: texture - offset: 0x882FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_3: - symbol: gKartLuigi140Wheel3 - type: texture - offset: 0x8837C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_0: - symbol: gKartLuigi141Wheel0 - type: texture - offset: 0x883FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_1: - symbol: gKartLuigi141Wheel1 - type: texture - offset: 0x8847C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_2: - symbol: gKartLuigi141Wheel2 - type: texture - offset: 0x884FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_3: - symbol: gKartLuigi141Wheel3 - type: texture - offset: 0x8857C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_0: - symbol: gKartLuigi142Wheel0 - type: texture - offset: 0x885FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_1: - symbol: gKartLuigi142Wheel1 - type: texture - offset: 0x8867C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_2: - symbol: gKartLuigi142Wheel2 - type: texture - offset: 0x886FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_3: - symbol: gKartLuigi142Wheel3 - type: texture - offset: 0x8877C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_0: - symbol: gKartLuigi143Wheel0 - type: texture - offset: 0x887FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_1: - symbol: gKartLuigi143Wheel1 - type: texture - offset: 0x8887C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_2: - symbol: gKartLuigi143Wheel2 - type: texture - offset: 0x888FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_3: - symbol: gKartLuigi143Wheel3 - type: texture - offset: 0x8897C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_0: - symbol: gKartLuigi144Wheel0 - type: texture - offset: 0x889FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_1: - symbol: gKartLuigi144Wheel1 - type: texture - offset: 0x88A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_2: - symbol: gKartLuigi144Wheel2 - type: texture - offset: 0x88AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_3: - symbol: gKartLuigi144Wheel3 - type: texture - offset: 0x88B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_0: - symbol: gKartLuigi145Wheel0 - type: texture - offset: 0x88BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_1: - symbol: gKartLuigi145Wheel1 - type: texture - offset: 0x88C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_2: - symbol: gKartLuigi145Wheel2 - type: texture - offset: 0x88CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_3: - symbol: gKartLuigi145Wheel3 - type: texture - offset: 0x88D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_0: - symbol: gKartLuigi146Wheel0 - type: texture - offset: 0x88DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_1: - symbol: gKartLuigi146Wheel1 - type: texture - offset: 0x88E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_2: - symbol: gKartLuigi146Wheel2 - type: texture - offset: 0x88EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_3: - symbol: gKartLuigi146Wheel3 - type: texture - offset: 0x88F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_0: - symbol: gKartLuigi147Wheel0 - type: texture - offset: 0x88FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_1: - symbol: gKartLuigi147Wheel1 - type: texture - offset: 0x8907C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_2: - symbol: gKartLuigi147Wheel2 - type: texture - offset: 0x890FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_3: - symbol: gKartLuigi147Wheel3 - type: texture - offset: 0x8917C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_0: - symbol: gKartLuigi148Wheel0 - type: texture - offset: 0x891FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_1: - symbol: gKartLuigi148Wheel1 - type: texture - offset: 0x8927C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_2: - symbol: gKartLuigi148Wheel2 - type: texture - offset: 0x892FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_3: - symbol: gKartLuigi148Wheel3 - type: texture - offset: 0x8937C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_0: - symbol: gKartLuigi149Wheel0 - type: texture - offset: 0x893FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_1: - symbol: gKartLuigi149Wheel1 - type: texture - offset: 0x8947C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_2: - symbol: gKartLuigi149Wheel2 - type: texture - offset: 0x894FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_3: - symbol: gKartLuigi149Wheel3 - type: texture - offset: 0x8957C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_0: - symbol: gKartLuigi150Wheel0 - type: texture - offset: 0x895FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_1: - symbol: gKartLuigi150Wheel1 - type: texture - offset: 0x8967C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_2: - symbol: gKartLuigi150Wheel2 - type: texture - offset: 0x896FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_3: - symbol: gKartLuigi150Wheel3 - type: texture - offset: 0x8977C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_0: - symbol: gKartLuigi151Wheel0 - type: texture - offset: 0x897FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_1: - symbol: gKartLuigi151Wheel1 - type: texture - offset: 0x8987C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_2: - symbol: gKartLuigi151Wheel2 - type: texture - offset: 0x898FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_3: - symbol: gKartLuigi151Wheel3 - type: texture - offset: 0x8997C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_0: - symbol: gKartLuigi152Wheel0 - type: texture - offset: 0x899FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_1: - symbol: gKartLuigi152Wheel1 - type: texture - offset: 0x89A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_2: - symbol: gKartLuigi152Wheel2 - type: texture - offset: 0x89AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_3: - symbol: gKartLuigi152Wheel3 - type: texture - offset: 0x89B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_0: - symbol: gKartLuigi153Wheel0 - type: texture - offset: 0x89BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_1: - symbol: gKartLuigi153Wheel1 - type: texture - offset: 0x89C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_2: - symbol: gKartLuigi153Wheel2 - type: texture - offset: 0x89CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_3: - symbol: gKartLuigi153Wheel3 - type: texture - offset: 0x89D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_0: - symbol: gKartLuigi154Wheel0 - type: texture - offset: 0x89DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_1: - symbol: gKartLuigi154Wheel1 - type: texture - offset: 0x89E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_2: - symbol: gKartLuigi154Wheel2 - type: texture - offset: 0x89EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_3: - symbol: gKartLuigi154Wheel3 - type: texture - offset: 0x89F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_0: - symbol: gKartLuigi155Wheel0 - type: texture - offset: 0x89FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_1: - symbol: gKartLuigi155Wheel1 - type: texture - offset: 0x8A07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_2: - symbol: gKartLuigi155Wheel2 - type: texture - offset: 0x8A0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_3: - symbol: gKartLuigi155Wheel3 - type: texture - offset: 0x8A17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_0: - symbol: gKartLuigi156Wheel0 - type: texture - offset: 0x8A1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_1: - symbol: gKartLuigi156Wheel1 - type: texture - offset: 0x8A27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_2: - symbol: gKartLuigi156Wheel2 - type: texture - offset: 0x8A2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_3: - symbol: gKartLuigi156Wheel3 - type: texture - offset: 0x8A37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_0: - symbol: gKartLuigi157Wheel0 - type: texture - offset: 0x8A3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_1: - symbol: gKartLuigi157Wheel1 - type: texture - offset: 0x8A47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_2: - symbol: gKartLuigi157Wheel2 - type: texture - offset: 0x8A4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_3: - symbol: gKartLuigi157Wheel3 - type: texture - offset: 0x8A57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_0: - symbol: gKartLuigi158Wheel0 - type: texture - offset: 0x8A5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_1: - symbol: gKartLuigi158Wheel1 - type: texture - offset: 0x8A67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_2: - symbol: gKartLuigi158Wheel2 - type: texture - offset: 0x8A6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_3: - symbol: gKartLuigi158Wheel3 - type: texture - offset: 0x8A77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_0: - symbol: gKartLuigi159Wheel0 - type: texture - offset: 0x8A7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_1: - symbol: gKartLuigi159Wheel1 - type: texture - offset: 0x8A87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_2: - symbol: gKartLuigi159Wheel2 - type: texture - offset: 0x8A8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_3: - symbol: gKartLuigi159Wheel3 - type: texture - offset: 0x8A97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_0: - symbol: gKartLuigi160Wheel0 - type: texture - offset: 0x8A9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_1: - symbol: gKartLuigi160Wheel1 - type: texture - offset: 0x8AA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_2: - symbol: gKartLuigi160Wheel2 - type: texture - offset: 0x8AAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_3: - symbol: gKartLuigi160Wheel3 - type: texture - offset: 0x8AB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_0: - symbol: gKartLuigi161Wheel0 - type: texture - offset: 0x8ABFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_1: - symbol: gKartLuigi161Wheel1 - type: texture - offset: 0x8AC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_2: - symbol: gKartLuigi161Wheel2 - type: texture - offset: 0x8ACFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_3: - symbol: gKartLuigi161Wheel3 - type: texture - offset: 0x8AD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_0: - symbol: gKartLuigi162Wheel0 - type: texture - offset: 0x8ADFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_1: - symbol: gKartLuigi162Wheel1 - type: texture - offset: 0x8AE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_2: - symbol: gKartLuigi162Wheel2 - type: texture - offset: 0x8AEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_3: - symbol: gKartLuigi162Wheel3 - type: texture - offset: 0x8AF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_0: - symbol: gKartLuigi163Wheel0 - type: texture - offset: 0x8AFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_1: - symbol: gKartLuigi163Wheel1 - type: texture - offset: 0x8B07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_2: - symbol: gKartLuigi163Wheel2 - type: texture - offset: 0x8B0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_3: - symbol: gKartLuigi163Wheel3 - type: texture - offset: 0x8B17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_0: - symbol: gKartLuigi164Wheel0 - type: texture - offset: 0x8B1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_1: - symbol: gKartLuigi164Wheel1 - type: texture - offset: 0x8B27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_2: - symbol: gKartLuigi164Wheel2 - type: texture - offset: 0x8B2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_3: - symbol: gKartLuigi164Wheel3 - type: texture - offset: 0x8B37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_0: - symbol: gKartLuigi165Wheel0 - type: texture - offset: 0x8B3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_1: - symbol: gKartLuigi165Wheel1 - type: texture - offset: 0x8B47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_2: - symbol: gKartLuigi165Wheel2 - type: texture - offset: 0x8B4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_3: - symbol: gKartLuigi165Wheel3 - type: texture - offset: 0x8B57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_0: - symbol: gKartLuigi166Wheel0 - type: texture - offset: 0x8B5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_1: - symbol: gKartLuigi166Wheel1 - type: texture - offset: 0x8B67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_2: - symbol: gKartLuigi166Wheel2 - type: texture - offset: 0x8B6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_3: - symbol: gKartLuigi166Wheel3 - type: texture - offset: 0x8B77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_0: - symbol: gKartLuigi167Wheel0 - type: texture - offset: 0x8B7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_1: - symbol: gKartLuigi167Wheel1 - type: texture - offset: 0x8B87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_2: - symbol: gKartLuigi167Wheel2 - type: texture - offset: 0x8B8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_3: - symbol: gKartLuigi167Wheel3 - type: texture - offset: 0x8B97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_0: - symbol: gKartLuigi168Wheel0 - type: texture - offset: 0x8B9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_1: - symbol: gKartLuigi168Wheel1 - type: texture - offset: 0x8BA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_2: - symbol: gKartLuigi168Wheel2 - type: texture - offset: 0x8BAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_3: - symbol: gKartLuigi168Wheel3 - type: texture - offset: 0x8BB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_0: - symbol: gKartLuigi169Wheel0 - type: texture - offset: 0x8BBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_1: - symbol: gKartLuigi169Wheel1 - type: texture - offset: 0x8BC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_2: - symbol: gKartLuigi169Wheel2 - type: texture - offset: 0x8BCFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_3: - symbol: gKartLuigi169Wheel3 - type: texture - offset: 0x8BD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_0: - symbol: gKartLuigi170Wheel0 - type: texture - offset: 0x8BDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_1: - symbol: gKartLuigi170Wheel1 - type: texture - offset: 0x8BE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_2: - symbol: gKartLuigi170Wheel2 - type: texture - offset: 0x8BEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_3: - symbol: gKartLuigi170Wheel3 - type: texture - offset: 0x8BF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_0: - symbol: gKartLuigi171Wheel0 - type: texture - offset: 0x8BFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_1: - symbol: gKartLuigi171Wheel1 - type: texture - offset: 0x8C07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_2: - symbol: gKartLuigi171Wheel2 - type: texture - offset: 0x8C0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_3: - symbol: gKartLuigi171Wheel3 - type: texture - offset: 0x8C17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_0: - symbol: gKartLuigi172Wheel0 - type: texture - offset: 0x8C1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_1: - symbol: gKartLuigi172Wheel1 - type: texture - offset: 0x8C27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_2: - symbol: gKartLuigi172Wheel2 - type: texture - offset: 0x8C2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_3: - symbol: gKartLuigi172Wheel3 - type: texture - offset: 0x8C37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_0: - symbol: gKartLuigi173Wheel0 - type: texture - offset: 0x8C3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_1: - symbol: gKartLuigi173Wheel1 - type: texture - offset: 0x8C47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_2: - symbol: gKartLuigi173Wheel2 - type: texture - offset: 0x8C4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_3: - symbol: gKartLuigi173Wheel3 - type: texture - offset: 0x8C57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_0: - symbol: gKartLuigi174Wheel0 - type: texture - offset: 0x8C5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_1: - symbol: gKartLuigi174Wheel1 - type: texture - offset: 0x8C67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_2: - symbol: gKartLuigi174Wheel2 - type: texture - offset: 0x8C6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_3: - symbol: gKartLuigi174Wheel3 - type: texture - offset: 0x8C77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_0: - symbol: gKartLuigi175Wheel0 - type: texture - offset: 0x8C7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_1: - symbol: gKartLuigi175Wheel1 - type: texture - offset: 0x8C87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_2: - symbol: gKartLuigi175Wheel2 - type: texture - offset: 0x8C8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_3: - symbol: gKartLuigi175Wheel3 - type: texture - offset: 0x8C97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_0: - symbol: gKartLuigi176Wheel0 - type: texture - offset: 0x8C9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_1: - symbol: gKartLuigi176Wheel1 - type: texture - offset: 0x8CA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_2: - symbol: gKartLuigi176Wheel2 - type: texture - offset: 0x8CAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_3: - symbol: gKartLuigi176Wheel3 - type: texture - offset: 0x8CB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_0: - symbol: gKartLuigi177Wheel0 - type: texture - offset: 0x8CBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_1: - symbol: gKartLuigi177Wheel1 - type: texture - offset: 0x8CC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_2: - symbol: gKartLuigi177Wheel2 - type: texture - offset: 0x8CCFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_3: - symbol: gKartLuigi177Wheel3 - type: texture - offset: 0x8CD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_0: - symbol: gKartLuigi178Wheel0 - type: texture - offset: 0x8CDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_1: - symbol: gKartLuigi178Wheel1 - type: texture - offset: 0x8CE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_2: - symbol: gKartLuigi178Wheel2 - type: texture - offset: 0x8CEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_3: - symbol: gKartLuigi178Wheel3 - type: texture - offset: 0x8CF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_0: - symbol: gKartLuigi179Wheel0 - type: texture - offset: 0x8CFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_1: - symbol: gKartLuigi179Wheel1 - type: texture - offset: 0x8D07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_2: - symbol: gKartLuigi179Wheel2 - type: texture - offset: 0x8D0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_3: - symbol: gKartLuigi179Wheel3 - type: texture - offset: 0x8D17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_0: - symbol: gKartLuigi180Wheel0 - type: texture - offset: 0x8D1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_1: - symbol: gKartLuigi180Wheel1 - type: texture - offset: 0x8D27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_2: - symbol: gKartLuigi180Wheel2 - type: texture - offset: 0x8D2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_3: - symbol: gKartLuigi180Wheel3 - type: texture - offset: 0x8D37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_0: - symbol: gKartLuigi181Wheel0 - type: texture - offset: 0x8D3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_1: - symbol: gKartLuigi181Wheel1 - type: texture - offset: 0x8D47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_2: - symbol: gKartLuigi181Wheel2 - type: texture - offset: 0x8D4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_3: - symbol: gKartLuigi181Wheel3 - type: texture - offset: 0x8D57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_0: - symbol: gKartLuigi182Wheel0 - type: texture - offset: 0x8D5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_1: - symbol: gKartLuigi182Wheel1 - type: texture - offset: 0x8D67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_2: - symbol: gKartLuigi182Wheel2 - type: texture - offset: 0x8D6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_3: - symbol: gKartLuigi182Wheel3 - type: texture - offset: 0x8D77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_0: - symbol: gKartLuigi183Wheel0 - type: texture - offset: 0x8D7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_1: - symbol: gKartLuigi183Wheel1 - type: texture - offset: 0x8D87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_2: - symbol: gKartLuigi183Wheel2 - type: texture - offset: 0x8D8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_3: - symbol: gKartLuigi183Wheel3 - type: texture - offset: 0x8D97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_0: - symbol: gKartLuigi184Wheel0 - type: texture - offset: 0x8D9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_1: - symbol: gKartLuigi184Wheel1 - type: texture - offset: 0x8DA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_2: - symbol: gKartLuigi184Wheel2 - type: texture - offset: 0x8DAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_3: - symbol: gKartLuigi184Wheel3 - type: texture - offset: 0x8DB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_0: - symbol: gKartLuigi185Wheel0 - type: texture - offset: 0x8DBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_1: - symbol: gKartLuigi185Wheel1 - type: texture - offset: 0x8DC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_2: - symbol: gKartLuigi185Wheel2 - type: texture - offset: 0x8DCFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_3: - symbol: gKartLuigi185Wheel3 - type: texture - offset: 0x8DD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_0: - symbol: gKartLuigi186Wheel0 - type: texture - offset: 0x8DDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_1: - symbol: gKartLuigi186Wheel1 - type: texture - offset: 0x8DE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_2: - symbol: gKartLuigi186Wheel2 - type: texture - offset: 0x8DEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_3: - symbol: gKartLuigi186Wheel3 - type: texture - offset: 0x8DF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_0: - symbol: gKartLuigi187Wheel0 - type: texture - offset: 0x8DFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_1: - symbol: gKartLuigi187Wheel1 - type: texture - offset: 0x8E07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_2: - symbol: gKartLuigi187Wheel2 - type: texture - offset: 0x8E0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_3: - symbol: gKartLuigi187Wheel3 - type: texture - offset: 0x8E17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_0: - symbol: gKartLuigi188Wheel0 - type: texture - offset: 0x8E1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_1: - symbol: gKartLuigi188Wheel1 - type: texture - offset: 0x8E27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_2: - symbol: gKartLuigi188Wheel2 - type: texture - offset: 0x8E2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_3: - symbol: gKartLuigi188Wheel3 - type: texture - offset: 0x8E37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_0: - symbol: gKartLuigi189Wheel0 - type: texture - offset: 0x8E3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_1: - symbol: gKartLuigi189Wheel1 - type: texture - offset: 0x8E47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_2: - symbol: gKartLuigi189Wheel2 - type: texture - offset: 0x8E4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_3: - symbol: gKartLuigi189Wheel3 - type: texture - offset: 0x8E57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_0: - symbol: gKartLuigi190Wheel0 - type: texture - offset: 0x8E5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_1: - symbol: gKartLuigi190Wheel1 - type: texture - offset: 0x8E67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_2: - symbol: gKartLuigi190Wheel2 - type: texture - offset: 0x8E6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_3: - symbol: gKartLuigi190Wheel3 - type: texture - offset: 0x8E77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_0: - symbol: gKartLuigi191Wheel0 - type: texture - offset: 0x8E7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_1: - symbol: gKartLuigi191Wheel1 - type: texture - offset: 0x8E87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_2: - symbol: gKartLuigi191Wheel2 - type: texture - offset: 0x8E8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_3: - symbol: gKartLuigi191Wheel3 - type: texture - offset: 0x8E97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_0: - symbol: gKartLuigi192Wheel0 - type: texture - offset: 0x8E9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_1: - symbol: gKartLuigi192Wheel1 - type: texture - offset: 0x8EA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_2: - symbol: gKartLuigi192Wheel2 - type: texture - offset: 0x8EAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_3: - symbol: gKartLuigi192Wheel3 - type: texture - offset: 0x8EB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_0: - symbol: gKartLuigi193Wheel0 - type: texture - offset: 0x8EBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_1: - symbol: gKartLuigi193Wheel1 - type: texture - offset: 0x8EC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_2: - symbol: gKartLuigi193Wheel2 - type: texture - offset: 0x8ECFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_3: - symbol: gKartLuigi193Wheel3 - type: texture - offset: 0x8ED7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_0: - symbol: gKartLuigi194Wheel0 - type: texture - offset: 0x8EDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_1: - symbol: gKartLuigi194Wheel1 - type: texture - offset: 0x8EE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_2: - symbol: gKartLuigi194Wheel2 - type: texture - offset: 0x8EEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_3: - symbol: gKartLuigi194Wheel3 - type: texture - offset: 0x8EF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_0: - symbol: gKartLuigi195Wheel0 - type: texture - offset: 0x8EFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_1: - symbol: gKartLuigi195Wheel1 - type: texture - offset: 0x8F07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_2: - symbol: gKartLuigi195Wheel2 - type: texture - offset: 0x8F0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_3: - symbol: gKartLuigi195Wheel3 - type: texture - offset: 0x8F17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_0: - symbol: gKartLuigi196Wheel0 - type: texture - offset: 0x8F1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_1: - symbol: gKartLuigi196Wheel1 - type: texture - offset: 0x8F27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_2: - symbol: gKartLuigi196Wheel2 - type: texture - offset: 0x8F2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_3: - symbol: gKartLuigi196Wheel3 - type: texture - offset: 0x8F37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_0: - symbol: gKartLuigi197Wheel0 - type: texture - offset: 0x8F3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_1: - symbol: gKartLuigi197Wheel1 - type: texture - offset: 0x8F47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_2: - symbol: gKartLuigi197Wheel2 - type: texture - offset: 0x8F4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_3: - symbol: gKartLuigi197Wheel3 - type: texture - offset: 0x8F57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_0: - symbol: gKartLuigi198Wheel0 - type: texture - offset: 0x8F5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_1: - symbol: gKartLuigi198Wheel1 - type: texture - offset: 0x8F67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_2: - symbol: gKartLuigi198Wheel2 - type: texture - offset: 0x8F6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_3: - symbol: gKartLuigi198Wheel3 - type: texture - offset: 0x8F77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_0: - symbol: gKartLuigi199Wheel0 - type: texture - offset: 0x8F7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_1: - symbol: gKartLuigi199Wheel1 - type: texture - offset: 0x8F87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_2: - symbol: gKartLuigi199Wheel2 - type: texture - offset: 0x8F8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_3: - symbol: gKartLuigi199Wheel3 - type: texture - offset: 0x8F97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_0: - symbol: gKartLuigi200Wheel0 - type: texture - offset: 0x8F9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_1: - symbol: gKartLuigi200Wheel1 - type: texture - offset: 0x8FA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_2: - symbol: gKartLuigi200Wheel2 - type: texture - offset: 0x8FAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_3: - symbol: gKartLuigi200Wheel3 - type: texture - offset: 0x8FB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_0: - symbol: gKartLuigi201Wheel0 - type: texture - offset: 0x8FBFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_1: - symbol: gKartLuigi201Wheel1 - type: texture - offset: 0x8FC7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_2: - symbol: gKartLuigi201Wheel2 - type: texture - offset: 0x8FCFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_3: - symbol: gKartLuigi201Wheel3 - type: texture - offset: 0x8FD7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_0: - symbol: gKartLuigi202Wheel0 - type: texture - offset: 0x8FDFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_1: - symbol: gKartLuigi202Wheel1 - type: texture - offset: 0x8FE7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_2: - symbol: gKartLuigi202Wheel2 - type: texture - offset: 0x8FEFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_3: - symbol: gKartLuigi202Wheel3 - type: texture - offset: 0x8FF7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_0: - symbol: gKartLuigi203Wheel0 - type: texture - offset: 0x8FFFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_1: - symbol: gKartLuigi203Wheel1 - type: texture - offset: 0x9007C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_2: - symbol: gKartLuigi203Wheel2 - type: texture - offset: 0x900FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_3: - symbol: gKartLuigi203Wheel3 - type: texture - offset: 0x9017C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_0: - symbol: gKartLuigi204Wheel0 - type: texture - offset: 0x901FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_1: - symbol: gKartLuigi204Wheel1 - type: texture - offset: 0x9027C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_2: - symbol: gKartLuigi204Wheel2 - type: texture - offset: 0x902FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_3: - symbol: gKartLuigi204Wheel3 - type: texture - offset: 0x9037C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_0: - symbol: gKartLuigi205Wheel0 - type: texture - offset: 0x903FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_1: - symbol: gKartLuigi205Wheel1 - type: texture - offset: 0x9047C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_2: - symbol: gKartLuigi205Wheel2 - type: texture - offset: 0x904FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_3: - symbol: gKartLuigi205Wheel3 - type: texture - offset: 0x9057C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_0: - symbol: gKartLuigi206Wheel0 - type: texture - offset: 0x905FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_1: - symbol: gKartLuigi206Wheel1 - type: texture - offset: 0x9067C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_2: - symbol: gKartLuigi206Wheel2 - type: texture - offset: 0x906FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_3: - symbol: gKartLuigi206Wheel3 - type: texture - offset: 0x9077C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_0: - symbol: gKartLuigi207Wheel0 - type: texture - offset: 0x907FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_1: - symbol: gKartLuigi207Wheel1 - type: texture - offset: 0x9087C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_2: - symbol: gKartLuigi207Wheel2 - type: texture - offset: 0x908FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_3: - symbol: gKartLuigi207Wheel3 - type: texture - offset: 0x9097C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_0: - symbol: gKartLuigi208Wheel0 - type: texture - offset: 0x909FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_1: - symbol: gKartLuigi208Wheel1 - type: texture - offset: 0x90A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_2: - symbol: gKartLuigi208Wheel2 - type: texture - offset: 0x90AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_3: - symbol: gKartLuigi208Wheel3 - type: texture - offset: 0x90B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_0: - symbol: gKartLuigi209Wheel0 - type: texture - offset: 0x90BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_1: - symbol: gKartLuigi209Wheel1 - type: texture - offset: 0x90C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_2: - symbol: gKartLuigi209Wheel2 - type: texture - offset: 0x90CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_3: - symbol: gKartLuigi209Wheel3 - type: texture - offset: 0x90D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_0: - symbol: gKartLuigi210Wheel0 - type: texture - offset: 0x90DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_1: - symbol: gKartLuigi210Wheel1 - type: texture - offset: 0x90E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_2: - symbol: gKartLuigi210Wheel2 - type: texture - offset: 0x90EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_3: - symbol: gKartLuigi210Wheel3 - type: texture - offset: 0x90F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_0: - symbol: gKartLuigi211Wheel0 - type: texture - offset: 0x90FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_1: - symbol: gKartLuigi211Wheel1 - type: texture - offset: 0x9107C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_2: - symbol: gKartLuigi211Wheel2 - type: texture - offset: 0x910FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_3: - symbol: gKartLuigi211Wheel3 - type: texture - offset: 0x9117C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_0: - symbol: gKartLuigi212Wheel0 - type: texture - offset: 0x911FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_1: - symbol: gKartLuigi212Wheel1 - type: texture - offset: 0x9127C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_2: - symbol: gKartLuigi212Wheel2 - type: texture - offset: 0x912FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_3: - symbol: gKartLuigi212Wheel3 - type: texture - offset: 0x9137C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_0: - symbol: gKartLuigi213Wheel0 - type: texture - offset: 0x913FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_1: - symbol: gKartLuigi213Wheel1 - type: texture - offset: 0x9147C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_2: - symbol: gKartLuigi213Wheel2 - type: texture - offset: 0x914FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_3: - symbol: gKartLuigi213Wheel3 - type: texture - offset: 0x9157C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_0: - symbol: gKartLuigi214Wheel0 - type: texture - offset: 0x915FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_1: - symbol: gKartLuigi214Wheel1 - type: texture - offset: 0x9167C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_2: - symbol: gKartLuigi214Wheel2 - type: texture - offset: 0x916FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_3: - symbol: gKartLuigi214Wheel3 - type: texture - offset: 0x9177C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_0: - symbol: gKartLuigi215Wheel0 - type: texture - offset: 0x917FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_1: - symbol: gKartLuigi215Wheel1 - type: texture - offset: 0x9187C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_2: - symbol: gKartLuigi215Wheel2 - type: texture - offset: 0x918FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_3: - symbol: gKartLuigi215Wheel3 - type: texture - offset: 0x9197C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_0: - symbol: gKartLuigi216Wheel0 - type: texture - offset: 0x919FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_1: - symbol: gKartLuigi216Wheel1 - type: texture - offset: 0x91A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_2: - symbol: gKartLuigi216Wheel2 - type: texture - offset: 0x91AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_3: - symbol: gKartLuigi216Wheel3 - type: texture - offset: 0x91B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_0: - symbol: gKartLuigi217Wheel0 - type: texture - offset: 0x91BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_1: - symbol: gKartLuigi217Wheel1 - type: texture - offset: 0x91C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_2: - symbol: gKartLuigi217Wheel2 - type: texture - offset: 0x91CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_3: - symbol: gKartLuigi217Wheel3 - type: texture - offset: 0x91D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_0: - symbol: gKartLuigi218Wheel0 - type: texture - offset: 0x91DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_1: - symbol: gKartLuigi218Wheel1 - type: texture - offset: 0x91E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_2: - symbol: gKartLuigi218Wheel2 - type: texture - offset: 0x91EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_3: - symbol: gKartLuigi218Wheel3 - type: texture - offset: 0x91F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_0: - symbol: gKartLuigi219Wheel0 - type: texture - offset: 0x91FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_1: - symbol: gKartLuigi219Wheel1 - type: texture - offset: 0x9207C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_2: - symbol: gKartLuigi219Wheel2 - type: texture - offset: 0x920FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_3: - symbol: gKartLuigi219Wheel3 - type: texture - offset: 0x9217C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_0: - symbol: gKartLuigi220Wheel0 - type: texture - offset: 0x921FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_1: - symbol: gKartLuigi220Wheel1 - type: texture - offset: 0x9227C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_2: - symbol: gKartLuigi220Wheel2 - type: texture - offset: 0x922FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_3: - symbol: gKartLuigi220Wheel3 - type: texture - offset: 0x9237C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_0: - symbol: gKartLuigi221Wheel0 - type: texture - offset: 0x923FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_1: - symbol: gKartLuigi221Wheel1 - type: texture - offset: 0x9247C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_2: - symbol: gKartLuigi221Wheel2 - type: texture - offset: 0x924FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_3: - symbol: gKartLuigi221Wheel3 - type: texture - offset: 0x9257C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_0: - symbol: gKartLuigi222Wheel0 - type: texture - offset: 0x925FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_1: - symbol: gKartLuigi222Wheel1 - type: texture - offset: 0x9267C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_2: - symbol: gKartLuigi222Wheel2 - type: texture - offset: 0x926FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_3: - symbol: gKartLuigi222Wheel3 - type: texture - offset: 0x9277C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_0: - symbol: gKartLuigi223Wheel0 - type: texture - offset: 0x927FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_1: - symbol: gKartLuigi223Wheel1 - type: texture - offset: 0x9287C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_2: - symbol: gKartLuigi223Wheel2 - type: texture - offset: 0x928FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_3: - symbol: gKartLuigi223Wheel3 - type: texture - offset: 0x9297C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_0: - symbol: gKartLuigi224Wheel0 - type: texture - offset: 0x929FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_1: - symbol: gKartLuigi224Wheel1 - type: texture - offset: 0x92A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_2: - symbol: gKartLuigi224Wheel2 - type: texture - offset: 0x92AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_3: - symbol: gKartLuigi224Wheel3 - type: texture - offset: 0x92B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_0: - symbol: gKartLuigi225Wheel0 - type: texture - offset: 0x92BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_1: - symbol: gKartLuigi225Wheel1 - type: texture - offset: 0x92C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_2: - symbol: gKartLuigi225Wheel2 - type: texture - offset: 0x92CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_3: - symbol: gKartLuigi225Wheel3 - type: texture - offset: 0x92D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_0: - symbol: gKartLuigi226Wheel0 - type: texture - offset: 0x92DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_1: - symbol: gKartLuigi226Wheel1 - type: texture - offset: 0x92E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_2: - symbol: gKartLuigi226Wheel2 - type: texture - offset: 0x92EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_3: - symbol: gKartLuigi226Wheel3 - type: texture - offset: 0x92F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_0: - symbol: gKartLuigi227Wheel0 - type: texture - offset: 0x92FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_1: - symbol: gKartLuigi227Wheel1 - type: texture - offset: 0x9307C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_2: - symbol: gKartLuigi227Wheel2 - type: texture - offset: 0x930FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_3: - symbol: gKartLuigi227Wheel3 - type: texture - offset: 0x9317C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_0: - symbol: gKartLuigi228Wheel0 - type: texture - offset: 0x931FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_1: - symbol: gKartLuigi228Wheel1 - type: texture - offset: 0x9327C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_2: - symbol: gKartLuigi228Wheel2 - type: texture - offset: 0x932FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_3: - symbol: gKartLuigi228Wheel3 - type: texture - offset: 0x9337C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_0: - symbol: gKartLuigi229Wheel0 - type: texture - offset: 0x933FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_1: - symbol: gKartLuigi229Wheel1 - type: texture - offset: 0x9347C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_2: - symbol: gKartLuigi229Wheel2 - type: texture - offset: 0x934FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_3: - symbol: gKartLuigi229Wheel3 - type: texture - offset: 0x9357C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_0: - symbol: gKartLuigi230Wheel0 - type: texture - offset: 0x935FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_1: - symbol: gKartLuigi230Wheel1 - type: texture - offset: 0x9367C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_2: - symbol: gKartLuigi230Wheel2 - type: texture - offset: 0x936FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_3: - symbol: gKartLuigi230Wheel3 - type: texture - offset: 0x9377C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_0: - symbol: gKartLuigi231Wheel0 - type: texture - offset: 0x937FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_1: - symbol: gKartLuigi231Wheel1 - type: texture - offset: 0x9387C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_2: - symbol: gKartLuigi231Wheel2 - type: texture - offset: 0x938FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_3: - symbol: gKartLuigi231Wheel3 - type: texture - offset: 0x9397C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_0: - symbol: gKartLuigi232Wheel0 - type: texture - offset: 0x939FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_1: - symbol: gKartLuigi232Wheel1 - type: texture - offset: 0x93A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_2: - symbol: gKartLuigi232Wheel2 - type: texture - offset: 0x93AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_3: - symbol: gKartLuigi232Wheel3 - type: texture - offset: 0x93B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_0: - symbol: gKartLuigi233Wheel0 - type: texture - offset: 0x93BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_1: - symbol: gKartLuigi233Wheel1 - type: texture - offset: 0x93C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_2: - symbol: gKartLuigi233Wheel2 - type: texture - offset: 0x93CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_3: - symbol: gKartLuigi233Wheel3 - type: texture - offset: 0x93D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_0: - symbol: gKartLuigi234Wheel0 - type: texture - offset: 0x93DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_1: - symbol: gKartLuigi234Wheel1 - type: texture - offset: 0x93E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_2: - symbol: gKartLuigi234Wheel2 - type: texture - offset: 0x93EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_3: - symbol: gKartLuigi234Wheel3 - type: texture - offset: 0x93F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_0: - symbol: gKartLuigi235Wheel0 - type: texture - offset: 0x93FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_1: - symbol: gKartLuigi235Wheel1 - type: texture - offset: 0x9407C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_2: - symbol: gKartLuigi235Wheel2 - type: texture - offset: 0x940FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_3: - symbol: gKartLuigi235Wheel3 - type: texture - offset: 0x9417C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_0: - symbol: gKartLuigi236Wheel0 - type: texture - offset: 0x941FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_1: - symbol: gKartLuigi236Wheel1 - type: texture - offset: 0x9427C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_2: - symbol: gKartLuigi236Wheel2 - type: texture - offset: 0x942FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_3: - symbol: gKartLuigi236Wheel3 - type: texture - offset: 0x9437C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_0: - symbol: gKartLuigi237Wheel0 - type: texture - offset: 0x943FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_1: - symbol: gKartLuigi237Wheel1 - type: texture - offset: 0x9447C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_2: - symbol: gKartLuigi237Wheel2 - type: texture - offset: 0x944FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_3: - symbol: gKartLuigi237Wheel3 - type: texture - offset: 0x9457C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_0: - symbol: gKartLuigi238Wheel0 - type: texture - offset: 0x945FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_1: - symbol: gKartLuigi238Wheel1 - type: texture - offset: 0x9467C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_2: - symbol: gKartLuigi238Wheel2 - type: texture - offset: 0x946FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_3: - symbol: gKartLuigi238Wheel3 - type: texture - offset: 0x9477C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_0: - symbol: gKartLuigi239Wheel0 - type: texture - offset: 0x947FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_1: - symbol: gKartLuigi239Wheel1 - type: texture - offset: 0x9487C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_2: - symbol: gKartLuigi239Wheel2 - type: texture - offset: 0x948FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_3: - symbol: gKartLuigi239Wheel3 - type: texture - offset: 0x9497C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_0: - symbol: gKartLuigi240Wheel0 - type: texture - offset: 0x949FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_1: - symbol: gKartLuigi240Wheel1 - type: texture - offset: 0x94A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_2: - symbol: gKartLuigi240Wheel2 - type: texture - offset: 0x94AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_3: - symbol: gKartLuigi240Wheel3 - type: texture - offset: 0x94B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_0: - symbol: gKartLuigi241Wheel0 - type: texture - offset: 0x94BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_1: - symbol: gKartLuigi241Wheel1 - type: texture - offset: 0x94C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_2: - symbol: gKartLuigi241Wheel2 - type: texture - offset: 0x94CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_3: - symbol: gKartLuigi241Wheel3 - type: texture - offset: 0x94D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_0: - symbol: gKartLuigi242Wheel0 - type: texture - offset: 0x94DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_1: - symbol: gKartLuigi242Wheel1 - type: texture - offset: 0x94E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_2: - symbol: gKartLuigi242Wheel2 - type: texture - offset: 0x94EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_3: - symbol: gKartLuigi242Wheel3 - type: texture - offset: 0x94F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_0: - symbol: gKartLuigi243Wheel0 - type: texture - offset: 0x94FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_1: - symbol: gKartLuigi243Wheel1 - type: texture - offset: 0x9507C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_2: - symbol: gKartLuigi243Wheel2 - type: texture - offset: 0x950FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_3: - symbol: gKartLuigi243Wheel3 - type: texture - offset: 0x9517C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_0: - symbol: gKartLuigi244Wheel0 - type: texture - offset: 0x951FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_1: - symbol: gKartLuigi244Wheel1 - type: texture - offset: 0x9527C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_2: - symbol: gKartLuigi244Wheel2 - type: texture - offset: 0x952FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_3: - symbol: gKartLuigi244Wheel3 - type: texture - offset: 0x9537C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_0: - symbol: gKartLuigi245Wheel0 - type: texture - offset: 0x953FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_1: - symbol: gKartLuigi245Wheel1 - type: texture - offset: 0x9547C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_2: - symbol: gKartLuigi245Wheel2 - type: texture - offset: 0x954FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_3: - symbol: gKartLuigi245Wheel3 - type: texture - offset: 0x9557C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_0: - symbol: gKartLuigi246Wheel0 - type: texture - offset: 0x955FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_1: - symbol: gKartLuigi246Wheel1 - type: texture - offset: 0x9567C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_2: - symbol: gKartLuigi246Wheel2 - type: texture - offset: 0x956FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_3: - symbol: gKartLuigi246Wheel3 - type: texture - offset: 0x9577C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_0: - symbol: gKartLuigi247Wheel0 - type: texture - offset: 0x957FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_1: - symbol: gKartLuigi247Wheel1 - type: texture - offset: 0x9587C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_2: - symbol: gKartLuigi247Wheel2 - type: texture - offset: 0x958FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_3: - symbol: gKartLuigi247Wheel3 - type: texture - offset: 0x9597C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_0: - symbol: gKartLuigi248Wheel0 - type: texture - offset: 0x959FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_1: - symbol: gKartLuigi248Wheel1 - type: texture - offset: 0x95A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_2: - symbol: gKartLuigi248Wheel2 - type: texture - offset: 0x95AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_3: - symbol: gKartLuigi248Wheel3 - type: texture - offset: 0x95B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_0: - symbol: gKartLuigi249Wheel0 - type: texture - offset: 0x95BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_1: - symbol: gKartLuigi249Wheel1 - type: texture - offset: 0x95C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_2: - symbol: gKartLuigi249Wheel2 - type: texture - offset: 0x95CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_3: - symbol: gKartLuigi249Wheel3 - type: texture - offset: 0x95D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_0: - symbol: gKartLuigi250Wheel0 - type: texture - offset: 0x95DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_1: - symbol: gKartLuigi250Wheel1 - type: texture - offset: 0x95E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_2: - symbol: gKartLuigi250Wheel2 - type: texture - offset: 0x95EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_3: - symbol: gKartLuigi250Wheel3 - type: texture - offset: 0x95F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_0: - symbol: gKartLuigi251Wheel0 - type: texture - offset: 0x95FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_1: - symbol: gKartLuigi251Wheel1 - type: texture - offset: 0x9607C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_2: - symbol: gKartLuigi251Wheel2 - type: texture - offset: 0x960FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_3: - symbol: gKartLuigi251Wheel3 - type: texture - offset: 0x9617C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_0: - symbol: gKartLuigi252Wheel0 - type: texture - offset: 0x961FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_1: - symbol: gKartLuigi252Wheel1 - type: texture - offset: 0x9627C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_2: - symbol: gKartLuigi252Wheel2 - type: texture - offset: 0x962FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_3: - symbol: gKartLuigi252Wheel3 - type: texture - offset: 0x9637C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_0: - symbol: gKartLuigi253Wheel0 - type: texture - offset: 0x963FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_1: - symbol: gKartLuigi253Wheel1 - type: texture - offset: 0x9647C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_2: - symbol: gKartLuigi253Wheel2 - type: texture - offset: 0x964FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_3: - symbol: gKartLuigi253Wheel3 - type: texture - offset: 0x9657C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_0: - symbol: gKartLuigi254Wheel0 - type: texture - offset: 0x965FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_1: - symbol: gKartLuigi254Wheel1 - type: texture - offset: 0x9667C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_2: - symbol: gKartLuigi254Wheel2 - type: texture - offset: 0x966FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_3: - symbol: gKartLuigi254Wheel3 - type: texture - offset: 0x9677C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_0: - symbol: gKartLuigi255Wheel0 - type: texture - offset: 0x967FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_1: - symbol: gKartLuigi255Wheel1 - type: texture - offset: 0x9687C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_2: - symbol: gKartLuigi255Wheel2 - type: texture - offset: 0x968FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_3: - symbol: gKartLuigi255Wheel3 - type: texture - offset: 0x9697C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_0: - symbol: gKartLuigi256Wheel0 - type: texture - offset: 0x969FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_1: - symbol: gKartLuigi256Wheel1 - type: texture - offset: 0x96A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_2: - symbol: gKartLuigi256Wheel2 - type: texture - offset: 0x96AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_3: - symbol: gKartLuigi256Wheel3 - type: texture - offset: 0x96B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_0: - symbol: gKartLuigi257Wheel0 - type: texture - offset: 0x96BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_1: - symbol: gKartLuigi257Wheel1 - type: texture - offset: 0x96C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_2: - symbol: gKartLuigi257Wheel2 - type: texture - offset: 0x96CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_3: - symbol: gKartLuigi257Wheel3 - type: texture - offset: 0x96D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_0: - symbol: gKartLuigi258Wheel0 - type: texture - offset: 0x96DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_1: - symbol: gKartLuigi258Wheel1 - type: texture - offset: 0x96E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_2: - symbol: gKartLuigi258Wheel2 - type: texture - offset: 0x96EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_3: - symbol: gKartLuigi258Wheel3 - type: texture - offset: 0x96F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_0: - symbol: gKartLuigi259Wheel0 - type: texture - offset: 0x96FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_1: - symbol: gKartLuigi259Wheel1 - type: texture - offset: 0x9707C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_2: - symbol: gKartLuigi259Wheel2 - type: texture - offset: 0x970FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_3: - symbol: gKartLuigi259Wheel3 - type: texture - offset: 0x9717C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_0: - symbol: gKartLuigi260Wheel0 - type: texture - offset: 0x971FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_1: - symbol: gKartLuigi260Wheel1 - type: texture - offset: 0x9727C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_2: - symbol: gKartLuigi260Wheel2 - type: texture - offset: 0x972FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_3: - symbol: gKartLuigi260Wheel3 - type: texture - offset: 0x9737C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_0: - symbol: gKartLuigi261Wheel0 - type: texture - offset: 0x973FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_1: - symbol: gKartLuigi261Wheel1 - type: texture - offset: 0x9747C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_2: - symbol: gKartLuigi261Wheel2 - type: texture - offset: 0x974FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_3: - symbol: gKartLuigi261Wheel3 - type: texture - offset: 0x9757C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_0: - symbol: gKartLuigi262Wheel0 - type: texture - offset: 0x975FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_1: - symbol: gKartLuigi262Wheel1 - type: texture - offset: 0x9767C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_2: - symbol: gKartLuigi262Wheel2 - type: texture - offset: 0x976FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_3: - symbol: gKartLuigi262Wheel3 - type: texture - offset: 0x9777C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_0: - symbol: gKartLuigi263Wheel0 - type: texture - offset: 0x977FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_1: - symbol: gKartLuigi263Wheel1 - type: texture - offset: 0x9787C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_2: - symbol: gKartLuigi263Wheel2 - type: texture - offset: 0x978FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_3: - symbol: gKartLuigi263Wheel3 - type: texture - offset: 0x9797C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_0: - symbol: gKartLuigi264Wheel0 - type: texture - offset: 0x979FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_1: - symbol: gKartLuigi264Wheel1 - type: texture - offset: 0x97A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_2: - symbol: gKartLuigi264Wheel2 - type: texture - offset: 0x97AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_3: - symbol: gKartLuigi264Wheel3 - type: texture - offset: 0x97B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_0: - symbol: gKartLuigi265Wheel0 - type: texture - offset: 0x97BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_1: - symbol: gKartLuigi265Wheel1 - type: texture - offset: 0x97C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_2: - symbol: gKartLuigi265Wheel2 - type: texture - offset: 0x97CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_3: - symbol: gKartLuigi265Wheel3 - type: texture - offset: 0x97D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_0: - symbol: gKartLuigi266Wheel0 - type: texture - offset: 0x97DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_1: - symbol: gKartLuigi266Wheel1 - type: texture - offset: 0x97E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_2: - symbol: gKartLuigi266Wheel2 - type: texture - offset: 0x97EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_3: - symbol: gKartLuigi266Wheel3 - type: texture - offset: 0x97F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_0: - symbol: gKartLuigi267Wheel0 - type: texture - offset: 0x97FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_1: - symbol: gKartLuigi267Wheel1 - type: texture - offset: 0x9807C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_2: - symbol: gKartLuigi267Wheel2 - type: texture - offset: 0x980FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_3: - symbol: gKartLuigi267Wheel3 - type: texture - offset: 0x9817C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_0: - symbol: gKartLuigi268Wheel0 - type: texture - offset: 0x981FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_1: - symbol: gKartLuigi268Wheel1 - type: texture - offset: 0x9827C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_2: - symbol: gKartLuigi268Wheel2 - type: texture - offset: 0x982FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_3: - symbol: gKartLuigi268Wheel3 - type: texture - offset: 0x9837C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_0: - symbol: gKartLuigi269Wheel0 - type: texture - offset: 0x983FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_1: - symbol: gKartLuigi269Wheel1 - type: texture - offset: 0x9847C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_2: - symbol: gKartLuigi269Wheel2 - type: texture - offset: 0x984FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_3: - symbol: gKartLuigi269Wheel3 - type: texture - offset: 0x9857C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_0: - symbol: gKartLuigi270Wheel0 - type: texture - offset: 0x985FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_1: - symbol: gKartLuigi270Wheel1 - type: texture - offset: 0x9867C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_2: - symbol: gKartLuigi270Wheel2 - type: texture - offset: 0x986FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_3: - symbol: gKartLuigi270Wheel3 - type: texture - offset: 0x9877C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_0: - symbol: gKartLuigi271Wheel0 - type: texture - offset: 0x987FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_1: - symbol: gKartLuigi271Wheel1 - type: texture - offset: 0x9887C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_2: - symbol: gKartLuigi271Wheel2 - type: texture - offset: 0x988FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_3: - symbol: gKartLuigi271Wheel3 - type: texture - offset: 0x9897C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_0: - symbol: gKartLuigi272Wheel0 - type: texture - offset: 0x989FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_1: - symbol: gKartLuigi272Wheel1 - type: texture - offset: 0x98A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_2: - symbol: gKartLuigi272Wheel2 - type: texture - offset: 0x98AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_3: - symbol: gKartLuigi272Wheel3 - type: texture - offset: 0x98B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_0: - symbol: gKartLuigi273Wheel0 - type: texture - offset: 0x98BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_1: - symbol: gKartLuigi273Wheel1 - type: texture - offset: 0x98C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_2: - symbol: gKartLuigi273Wheel2 - type: texture - offset: 0x98CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_3: - symbol: gKartLuigi273Wheel3 - type: texture - offset: 0x98D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_0: - symbol: gKartLuigi274Wheel0 - type: texture - offset: 0x98DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_1: - symbol: gKartLuigi274Wheel1 - type: texture - offset: 0x98E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_2: - symbol: gKartLuigi274Wheel2 - type: texture - offset: 0x98EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_3: - symbol: gKartLuigi274Wheel3 - type: texture - offset: 0x98F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_0: - symbol: gKartLuigi275Wheel0 - type: texture - offset: 0x98FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_1: - symbol: gKartLuigi275Wheel1 - type: texture - offset: 0x9907C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_2: - symbol: gKartLuigi275Wheel2 - type: texture - offset: 0x990FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_3: - symbol: gKartLuigi275Wheel3 - type: texture - offset: 0x9917C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_0: - symbol: gKartLuigi276Wheel0 - type: texture - offset: 0x991FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_1: - symbol: gKartLuigi276Wheel1 - type: texture - offset: 0x9927C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_2: - symbol: gKartLuigi276Wheel2 - type: texture - offset: 0x992FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_3: - symbol: gKartLuigi276Wheel3 - type: texture - offset: 0x9937C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_0: - symbol: gKartLuigi277Wheel0 - type: texture - offset: 0x993FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_1: - symbol: gKartLuigi277Wheel1 - type: texture - offset: 0x9947C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_2: - symbol: gKartLuigi277Wheel2 - type: texture - offset: 0x994FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_3: - symbol: gKartLuigi277Wheel3 - type: texture - offset: 0x9957C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_0: - symbol: gKartLuigi278Wheel0 - type: texture - offset: 0x995FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_1: - symbol: gKartLuigi278Wheel1 - type: texture - offset: 0x9967C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_2: - symbol: gKartLuigi278Wheel2 - type: texture - offset: 0x996FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_3: - symbol: gKartLuigi278Wheel3 - type: texture - offset: 0x9977C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_0: - symbol: gKartLuigi279Wheel0 - type: texture - offset: 0x997FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_1: - symbol: gKartLuigi279Wheel1 - type: texture - offset: 0x9987C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_2: - symbol: gKartLuigi279Wheel2 - type: texture - offset: 0x998FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_3: - symbol: gKartLuigi279Wheel3 - type: texture - offset: 0x9997C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_0: - symbol: gKartLuigi280Wheel0 - type: texture - offset: 0x999FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_1: - symbol: gKartLuigi280Wheel1 - type: texture - offset: 0x99A7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_2: - symbol: gKartLuigi280Wheel2 - type: texture - offset: 0x99AFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_3: - symbol: gKartLuigi280Wheel3 - type: texture - offset: 0x99B7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_0: - symbol: gKartLuigi281Wheel0 - type: texture - offset: 0x99BFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_1: - symbol: gKartLuigi281Wheel1 - type: texture - offset: 0x99C7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_2: - symbol: gKartLuigi281Wheel2 - type: texture - offset: 0x99CFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_3: - symbol: gKartLuigi281Wheel3 - type: texture - offset: 0x99D7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_0: - symbol: gKartLuigi282Wheel0 - type: texture - offset: 0x99DFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_1: - symbol: gKartLuigi282Wheel1 - type: texture - offset: 0x99E7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_2: - symbol: gKartLuigi282Wheel2 - type: texture - offset: 0x99EFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_3: - symbol: gKartLuigi282Wheel3 - type: texture - offset: 0x99F7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_0: - symbol: gKartLuigi283Wheel0 - type: texture - offset: 0x99FFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_1: - symbol: gKartLuigi283Wheel1 - type: texture - offset: 0x9A07C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_2: - symbol: gKartLuigi283Wheel2 - type: texture - offset: 0x9A0FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_3: - symbol: gKartLuigi283Wheel3 - type: texture - offset: 0x9A17C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_0: - symbol: gKartLuigi284Wheel0 - type: texture - offset: 0x9A1FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_1: - symbol: gKartLuigi284Wheel1 - type: texture - offset: 0x9A27C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_2: - symbol: gKartLuigi284Wheel2 - type: texture - offset: 0x9A2FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_3: - symbol: gKartLuigi284Wheel3 - type: texture - offset: 0x9A37C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_0: - symbol: gKartLuigi285Wheel0 - type: texture - offset: 0x9A3FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_1: - symbol: gKartLuigi285Wheel1 - type: texture - offset: 0x9A47C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_2: - symbol: gKartLuigi285Wheel2 - type: texture - offset: 0x9A4FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_3: - symbol: gKartLuigi285Wheel3 - type: texture - offset: 0x9A57C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_0: - symbol: gKartLuigi286Wheel0 - type: texture - offset: 0x9A5FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_1: - symbol: gKartLuigi286Wheel1 - type: texture - offset: 0x9A67C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_2: - symbol: gKartLuigi286Wheel2 - type: texture - offset: 0x9A6FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_3: - symbol: gKartLuigi286Wheel3 - type: texture - offset: 0x9A77C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_0: - symbol: gKartLuigi287Wheel0 - type: texture - offset: 0x9A7FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_1: - symbol: gKartLuigi287Wheel1 - type: texture - offset: 0x9A87C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_2: - symbol: gKartLuigi287Wheel2 - type: texture - offset: 0x9A8FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_3: - symbol: gKartLuigi287Wheel3 - type: texture - offset: 0x9A97C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_0: - symbol: gKartLuigi288Wheel0 - type: texture - offset: 0x9A9FC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_1: - symbol: gKartLuigi288Wheel1 - type: texture - offset: 0x9AA7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_2: - symbol: gKartLuigi288Wheel2 - type: texture - offset: 0x9AAFC - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_3: - symbol: gKartLuigi288Wheel3 - type: texture - offset: 0x9AB7C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -luigi_kart_palette: - symbol: gKartLuigiPalette - type: texture - offset: 0x9ABFC - ctype: u16 - width: 16 - height: 12 - format: RGBA16 diff --git a/yamls/us/luigi_raceway_data.yml b/yamls/us/luigi_raceway_data.yml deleted file mode 100644 index db678bba4..000000000 --- a/yamls/us/luigi_raceway_data.yml +++ /dev/null @@ -1,816 +0,0 @@ -:config: - segments: - - [0x06, 0x84E8E0] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_luigi_raceway_dl_0: - symbol: d_course_luigi_raceway_dl_0 - type: gfx - offset: 0x0 - otr_mode: index -d_course_luigi_raceway_dl_1A8: - symbol: d_course_luigi_raceway_dl_1A8 - type: gfx - offset: 0x1A8 - otr_mode: index -d_course_luigi_raceway_dl_328: - symbol: d_course_luigi_raceway_dl_328 - type: gfx - offset: 0x328 - otr_mode: index -d_course_luigi_raceway_dl_480: - symbol: d_course_luigi_raceway_dl_480 - type: gfx - offset: 0x480 - otr_mode: index -d_course_luigi_raceway_dl_6E0: - symbol: d_course_luigi_raceway_dl_6E0 - type: gfx - offset: 0x6E0 - otr_mode: index -d_course_luigi_raceway_dl_868: - symbol: d_course_luigi_raceway_dl_868 - type: gfx - offset: 0x868 - otr_mode: index -d_course_luigi_raceway_dl_9F8: - symbol: d_course_luigi_raceway_dl_9F8 - type: gfx - offset: 0x9F8 - otr_mode: index -d_course_luigi_raceway_dl_B48: - symbol: d_course_luigi_raceway_dl_B48 - type: gfx - offset: 0xB48 - otr_mode: index -d_course_luigi_raceway_dl_D80: - symbol: d_course_luigi_raceway_dl_D80 - type: gfx - offset: 0xD80 - otr_mode: index -d_course_luigi_raceway_dl_EE8: - symbol: d_course_luigi_raceway_dl_EE8 - type: gfx - offset: 0xEE8 - otr_mode: index -d_course_luigi_raceway_dl_1058: - symbol: d_course_luigi_raceway_dl_1058 - type: gfx - offset: 0x1058 - otr_mode: index -d_course_luigi_raceway_dl_1198: - symbol: d_course_luigi_raceway_dl_1198 - type: gfx - offset: 0x1198 - otr_mode: index -d_course_luigi_raceway_dl_1398: - symbol: d_course_luigi_raceway_dl_1398 - type: gfx - offset: 0x1398 - otr_mode: index -d_course_luigi_raceway_dl_1538: - symbol: d_course_luigi_raceway_dl_1538 - type: gfx - offset: 0x1538 - otr_mode: index -d_course_luigi_raceway_dl_16D8: - symbol: d_course_luigi_raceway_dl_16D8 - type: gfx - offset: 0x16D8 - otr_mode: index -d_course_luigi_raceway_dl_1888: - symbol: d_course_luigi_raceway_dl_1888 - type: gfx - offset: 0x1888 - otr_mode: index -d_course_luigi_raceway_dl_1B00: - symbol: d_course_luigi_raceway_dl_1B00 - type: gfx - offset: 0x1B00 - otr_mode: index -d_course_luigi_raceway_dl_1C78: - symbol: d_course_luigi_raceway_dl_1C78 - type: gfx - offset: 0x1C78 - otr_mode: index -d_course_luigi_raceway_dl_1E30: - symbol: d_course_luigi_raceway_dl_1E30 - type: gfx - offset: 0x1E30 - otr_mode: index -d_course_luigi_raceway_dl_1FD0: - symbol: d_course_luigi_raceway_dl_1FD0 - type: gfx - offset: 0x1FD0 - otr_mode: index -d_course_luigi_raceway_dl_2240: - symbol: d_course_luigi_raceway_dl_2240 - type: gfx - offset: 0x2240 - otr_mode: index -d_course_luigi_raceway_dl_2348: - symbol: d_course_luigi_raceway_dl_2348 - type: gfx - offset: 0x2348 - otr_mode: index -d_course_luigi_raceway_dl_2518: - symbol: d_course_luigi_raceway_dl_2518 - type: gfx - offset: 0x2518 - otr_mode: index -d_course_luigi_raceway_dl_2658: - symbol: d_course_luigi_raceway_dl_2658 - type: gfx - offset: 0x2658 - otr_mode: index -d_course_luigi_raceway_dl_2860: - symbol: d_course_luigi_raceway_dl_2860 - type: gfx - offset: 0x2860 - otr_mode: index -d_course_luigi_raceway_dl_2978: - symbol: d_course_luigi_raceway_dl_2978 - type: gfx - offset: 0x2978 - otr_mode: index -d_course_luigi_raceway_dl_2BC0: - symbol: d_course_luigi_raceway_dl_2BC0 - type: gfx - offset: 0x2BC0 - otr_mode: index -d_course_luigi_raceway_dl_2D00: - symbol: d_course_luigi_raceway_dl_2D00 - type: gfx - offset: 0x2D00 - otr_mode: index -d_course_luigi_raceway_dl_2F08: - symbol: d_course_luigi_raceway_dl_2F08 - type: gfx - offset: 0x2F08 - otr_mode: index -d_course_luigi_raceway_dl_2FF8: - symbol: d_course_luigi_raceway_dl_2FF8 - type: gfx - offset: 0x2FF8 - otr_mode: index -d_course_luigi_raceway_dl_32C0: - symbol: d_course_luigi_raceway_dl_32C0 - type: gfx - offset: 0x32C0 - otr_mode: index -d_course_luigi_raceway_dl_3408: - symbol: d_course_luigi_raceway_dl_3408 - type: gfx - offset: 0x3408 - otr_mode: index -d_course_luigi_raceway_dl_3610: - symbol: d_course_luigi_raceway_dl_3610 - type: gfx - offset: 0x3610 - otr_mode: index -d_course_luigi_raceway_dl_36A8: - symbol: d_course_luigi_raceway_dl_36A8 - type: gfx - offset: 0x36A8 - otr_mode: index -d_course_luigi_raceway_dl_3928: - symbol: d_course_luigi_raceway_dl_3928 - type: gfx - offset: 0x3928 - otr_mode: index -d_course_luigi_raceway_dl_3AB0: - symbol: d_course_luigi_raceway_dl_3AB0 - type: gfx - offset: 0x3AB0 - otr_mode: index -d_course_luigi_raceway_dl_3C18: - symbol: d_course_luigi_raceway_dl_3C18 - type: gfx - offset: 0x3C18 - otr_mode: index -d_course_luigi_raceway_dl_3CA0: - symbol: d_course_luigi_raceway_dl_3CA0 - type: gfx - offset: 0x3CA0 - otr_mode: index -d_course_luigi_raceway_dl_3EB0: - symbol: d_course_luigi_raceway_dl_3EB0 - type: gfx - offset: 0x3EB0 - otr_mode: index -d_course_luigi_raceway_dl_4058: - symbol: d_course_luigi_raceway_dl_4058 - type: gfx - offset: 0x4058 - otr_mode: index -d_course_luigi_raceway_dl_4198: - symbol: d_course_luigi_raceway_dl_4198 - type: gfx - offset: 0x4198 - otr_mode: index -d_course_luigi_raceway_dl_4240: - symbol: d_course_luigi_raceway_dl_4240 - type: gfx - offset: 0x4240 - otr_mode: index -d_course_luigi_raceway_dl_4440: - symbol: d_course_luigi_raceway_dl_4440 - type: gfx - offset: 0x4440 - otr_mode: index -d_course_luigi_raceway_dl_4638: - symbol: d_course_luigi_raceway_dl_4638 - type: gfx - offset: 0x4638 - otr_mode: index -d_course_luigi_raceway_dl_4720: - symbol: d_course_luigi_raceway_dl_4720 - type: gfx - offset: 0x4720 - otr_mode: index -d_course_luigi_raceway_dl_4828: - symbol: d_course_luigi_raceway_dl_4828 - type: gfx - offset: 0x4828 - otr_mode: index -d_course_luigi_raceway_dl_4A18: - symbol: d_course_luigi_raceway_dl_4A18 - type: gfx - offset: 0x4A18 - otr_mode: index -d_course_luigi_raceway_dl_4C60: - symbol: d_course_luigi_raceway_dl_4C60 - type: gfx - offset: 0x4C60 - otr_mode: index -d_course_luigi_raceway_dl_4CF8: - symbol: d_course_luigi_raceway_dl_4CF8 - type: gfx - offset: 0x4CF8 - otr_mode: index -d_course_luigi_raceway_dl_4E38: - symbol: d_course_luigi_raceway_dl_4E38 - type: gfx - offset: 0x4E38 - otr_mode: index -d_course_luigi_raceway_dl_4FD8: - symbol: d_course_luigi_raceway_dl_4FD8 - type: gfx - offset: 0x4FD8 - otr_mode: index -d_course_luigi_raceway_dl_5220: - symbol: d_course_luigi_raceway_dl_5220 - type: gfx - offset: 0x5220 - otr_mode: index -d_course_luigi_raceway_dl_52D0: - symbol: d_course_luigi_raceway_dl_52D0 - type: gfx - offset: 0x52D0 - otr_mode: index -d_course_luigi_raceway_dl_5420: - symbol: d_course_luigi_raceway_dl_5420 - type: gfx - offset: 0x5420 - otr_mode: index -d_course_luigi_raceway_dl_5558: - symbol: d_course_luigi_raceway_dl_5558 - type: gfx - offset: 0x5558 - otr_mode: index -d_course_luigi_raceway_dl_5728: - symbol: d_course_luigi_raceway_dl_5728 - type: gfx - offset: 0x5728 - otr_mode: index -d_course_luigi_raceway_dl_57F8: - symbol: d_course_luigi_raceway_dl_57F8 - type: gfx - offset: 0x57F8 - otr_mode: index -d_course_luigi_raceway_dl_5940: - symbol: d_course_luigi_raceway_dl_5940 - type: gfx - offset: 0x5940 - otr_mode: index -d_course_luigi_raceway_dl_5A60: - symbol: d_course_luigi_raceway_dl_5A60 - type: gfx - offset: 0x5A60 - otr_mode: index -d_course_luigi_raceway_dl_5BA0: - symbol: d_course_luigi_raceway_dl_5BA0 - type: gfx - offset: 0x5BA0 - otr_mode: index -d_course_luigi_raceway_dl_5CB8: - symbol: d_course_luigi_raceway_dl_5CB8 - type: gfx - offset: 0x5CB8 - otr_mode: index -d_course_luigi_raceway_dl_5E10: - symbol: d_course_luigi_raceway_dl_5E10 - type: gfx - offset: 0x5E10 - otr_mode: index -d_course_luigi_raceway_dl_5F08: - symbol: d_course_luigi_raceway_dl_5F08 - type: gfx - offset: 0x5F08 - otr_mode: index -d_course_luigi_raceway_dl_6018: - symbol: d_course_luigi_raceway_dl_6018 - type: gfx - offset: 0x6018 - otr_mode: index -d_course_luigi_raceway_dl_6150: - symbol: d_course_luigi_raceway_dl_6150 - type: gfx - offset: 0x6150 - otr_mode: index -d_course_luigi_raceway_dl_6288: - symbol: d_course_luigi_raceway_dl_6288 - type: gfx - offset: 0x6288 - otr_mode: index -d_course_luigi_raceway_dl_6350: - symbol: d_course_luigi_raceway_dl_6350 - type: gfx - offset: 0x6350 - otr_mode: index -d_course_luigi_raceway_dl_6400: - symbol: d_course_luigi_raceway_dl_6400 - type: gfx - offset: 0x6400 - otr_mode: index -d_course_luigi_raceway_dl_6558: - symbol: d_course_luigi_raceway_dl_6558 - type: gfx - offset: 0x6558 - otr_mode: index -d_course_luigi_raceway_dl_65B0: - symbol: d_course_luigi_raceway_dl_65B0 - type: gfx - offset: 0x65B0 - otr_mode: index -d_course_luigi_raceway_dl_6608: - symbol: d_course_luigi_raceway_dl_6608 - type: gfx - offset: 0x6608 - otr_mode: index -d_course_luigi_raceway_dl_6658: - symbol: d_course_luigi_raceway_dl_6658 - type: gfx - offset: 0x6658 - otr_mode: index -d_course_luigi_raceway_dl_66B8: - symbol: d_course_luigi_raceway_dl_66B8 - type: gfx - offset: 0x66B8 - otr_mode: index -d_course_luigi_raceway_dl_6708: - symbol: d_course_luigi_raceway_dl_6708 - type: gfx - offset: 0x6708 - otr_mode: index -d_course_luigi_raceway_dl_67A0: - symbol: d_course_luigi_raceway_dl_67A0 - type: gfx - offset: 0x67A0 - otr_mode: index -d_course_luigi_raceway_dl_6810: - symbol: d_course_luigi_raceway_dl_6810 - type: gfx - offset: 0x6810 - otr_mode: index -d_course_luigi_raceway_dl_68C0: - symbol: d_course_luigi_raceway_dl_68C0 - type: gfx - offset: 0x68C0 - otr_mode: index -d_course_luigi_raceway_dl_6930: - symbol: d_course_luigi_raceway_dl_6930 - type: gfx - offset: 0x6930 - otr_mode: index -d_course_luigi_raceway_dl_6A00: - symbol: d_course_luigi_raceway_dl_6A00 - type: gfx - offset: 0x6A00 - otr_mode: index -d_course_luigi_raceway_dl_6A90: - symbol: d_course_luigi_raceway_dl_6A90 - type: gfx - offset: 0x6A90 - otr_mode: index -d_course_luigi_raceway_dl_6B58: - symbol: d_course_luigi_raceway_dl_6B58 - type: gfx - offset: 0x6B58 - otr_mode: index -d_course_luigi_raceway_dl_6C40: - symbol: d_course_luigi_raceway_dl_6C40 - type: gfx - offset: 0x6C40 - otr_mode: index -d_course_luigi_raceway_dl_6DA0: - symbol: d_course_luigi_raceway_dl_6DA0 - type: gfx - offset: 0x6DA0 - otr_mode: index -d_course_luigi_raceway_dl_6EB0: - symbol: d_course_luigi_raceway_dl_6EB0 - type: gfx - offset: 0x6EB0 - otr_mode: index -d_course_luigi_raceway_dl_6FF0: - symbol: d_course_luigi_raceway_dl_6FF0 - type: gfx - offset: 0x6FF0 - otr_mode: index -d_course_luigi_raceway_dl_7110: - symbol: d_course_luigi_raceway_dl_7110 - type: gfx - offset: 0x7110 - otr_mode: index -d_course_luigi_raceway_dl_7248: - symbol: d_course_luigi_raceway_dl_7248 - type: gfx - offset: 0x7248 - otr_mode: index -d_course_luigi_raceway_dl_7388: - symbol: d_course_luigi_raceway_dl_7388 - type: gfx - offset: 0x7388 - otr_mode: index -d_course_luigi_raceway_dl_74B0: - symbol: d_course_luigi_raceway_dl_74B0 - type: gfx - offset: 0x74B0 - otr_mode: index -d_course_luigi_raceway_dl_75F0: - symbol: d_course_luigi_raceway_dl_75F0 - type: gfx - offset: 0x75F0 - otr_mode: index -d_course_luigi_raceway_dl_7750: - symbol: d_course_luigi_raceway_dl_7750 - type: gfx - offset: 0x7750 - otr_mode: index -d_course_luigi_raceway_dl_7928: - symbol: d_course_luigi_raceway_dl_7928 - type: gfx - offset: 0x7928 - otr_mode: index -d_course_luigi_raceway_dl_7A18: - symbol: d_course_luigi_raceway_dl_7A18 - type: gfx - offset: 0x7A18 - otr_mode: index -d_course_luigi_raceway_dl_7BB0: - symbol: d_course_luigi_raceway_dl_7BB0 - type: gfx - offset: 0x7BB0 - otr_mode: index -d_course_luigi_raceway_dl_7CD0: - symbol: d_course_luigi_raceway_dl_7CD0 - type: gfx - offset: 0x7CD0 - otr_mode: index -d_course_luigi_raceway_dl_7EE8: - symbol: d_course_luigi_raceway_dl_7EE8 - type: gfx - offset: 0x7EE8 - otr_mode: index -d_course_luigi_raceway_dl_7FA0: - symbol: d_course_luigi_raceway_dl_7FA0 - type: gfx - offset: 0x7FA0 - otr_mode: index -d_course_luigi_raceway_dl_8158: - symbol: d_course_luigi_raceway_dl_8158 - type: gfx - offset: 0x8158 - otr_mode: index -d_course_luigi_raceway_dl_8260: - symbol: d_course_luigi_raceway_dl_8260 - type: gfx - offset: 0x8260 - otr_mode: index -d_course_luigi_raceway_dl_8450: - symbol: d_course_luigi_raceway_dl_8450 - type: gfx - offset: 0x8450 - otr_mode: index -d_course_luigi_raceway_dl_8508: - symbol: d_course_luigi_raceway_dl_8508 - type: gfx - offset: 0x8508 - otr_mode: index -d_course_luigi_raceway_dl_86F8: - symbol: d_course_luigi_raceway_dl_86F8 - type: gfx - offset: 0x86F8 - otr_mode: index -d_course_luigi_raceway_dl_8790: - symbol: d_course_luigi_raceway_dl_8790 - type: gfx - offset: 0x8790 - otr_mode: index -d_course_luigi_raceway_dl_8958: - symbol: d_course_luigi_raceway_dl_8958 - type: gfx - offset: 0x8958 - otr_mode: index -d_course_luigi_raceway_dl_8A70: - symbol: d_course_luigi_raceway_dl_8A70 - type: gfx - offset: 0x8A70 - otr_mode: index -d_course_luigi_raceway_dl_8CC8: - symbol: d_course_luigi_raceway_dl_8CC8 - type: gfx - offset: 0x8CC8 - otr_mode: index -d_course_luigi_raceway_dl_8D68: - symbol: d_course_luigi_raceway_dl_8D68 - type: gfx - offset: 0x8D68 - otr_mode: index -d_course_luigi_raceway_dl_8F00: - symbol: d_course_luigi_raceway_dl_8F00 - type: gfx - offset: 0x8F00 - otr_mode: index -d_course_luigi_raceway_dl_9058: - symbol: d_course_luigi_raceway_dl_9058 - type: gfx - offset: 0x9058 - otr_mode: index -d_course_luigi_raceway_dl_9310: - symbol: d_course_luigi_raceway_dl_9310 - type: gfx - offset: 0x9310 - otr_mode: index -d_course_luigi_raceway_dl_9408: - symbol: d_course_luigi_raceway_dl_9408 - type: gfx - offset: 0x9408 - otr_mode: index -d_course_luigi_raceway_dl_95A0: - symbol: d_course_luigi_raceway_dl_95A0 - type: gfx - offset: 0x95A0 - otr_mode: index -d_course_luigi_raceway_dl_97B0: - symbol: d_course_luigi_raceway_dl_97B0 - type: gfx - offset: 0x97B0 - otr_mode: index -d_course_luigi_raceway_dl_99C0: - symbol: d_course_luigi_raceway_dl_99C0 - type: gfx - offset: 0x99C0 - otr_mode: index -d_course_luigi_raceway_dl_9AD0: - symbol: d_course_luigi_raceway_dl_9AD0 - type: gfx - offset: 0x9AD0 - otr_mode: index -d_course_luigi_raceway_dl_9C50: - symbol: d_course_luigi_raceway_dl_9C50 - type: gfx - offset: 0x9C50 - otr_mode: index -d_course_luigi_raceway_dl_9E58: - symbol: d_course_luigi_raceway_dl_9E58 - type: gfx - offset: 0x9E58 - otr_mode: index -d_course_luigi_raceway_dl_A028: - symbol: d_course_luigi_raceway_dl_A028 - type: gfx - offset: 0xA028 - otr_mode: index -d_course_luigi_raceway_dl_A178: - symbol: d_course_luigi_raceway_dl_A178 - type: gfx - offset: 0xA178 - otr_mode: index -d_course_luigi_raceway_dl_A320: - symbol: d_course_luigi_raceway_dl_A320 - type: gfx - offset: 0xA320 - otr_mode: index -d_course_luigi_raceway_unknown_waypoints: - symbol: d_course_luigi_raceway_unknown_waypoints - offset: 0xA540 - count: 50 - type: mk64:TRACK_PATH -d_course_luigi_raceway_track_waypoints: - symbol: d_course_luigi_raceway_track_waypoints - offset: 0xA6D0 - count: 632 - type: mk64:TRACK_PATH -d_course_luigi_raceway_basket_model_lod2: - symbol: d_course_luigi_raceway_basket_model_lod2 - type: vtx - offset: 0xBA90 - count: 16 -d_course_luigi_raceway_unknown_model1: - symbol: d_course_luigi_raceway_unknown_model1 - type: vtx - offset: 0xBB90 - count: 20 -d_course_luigi_raceway_unknown_model2: - symbol: d_course_luigi_raceway_unknown_model2 - type: vtx - offset: 0xBCD0 - count: 32 -d_course_luigi_raceway_unknown_model3: - symbol: d_course_luigi_raceway_unknown_model3 - type: vtx - offset: 0xBED0 - count: 32 -d_course_luigi_raceway_unknown_model4: - symbol: d_course_luigi_raceway_unknown_model4 - type: vtx - offset: 0xC0D0 - count: 18 -d_course_luigi_raceway_unknown_model5: - symbol: d_course_luigi_raceway_unknown_model5 - type: vtx - offset: 0xC1F0 - count: 27 -d_course_luigi_raceway_light1: - symbol: d_course_luigi_raceway_light1 - type: lights - offset: 0xC3A0 -d_course_luigi_raceway_basket_model_lod1: - symbol: d_course_luigi_raceway_basket_model_lod1 - type: vtx - offset: 0xC3B8 - count: 4 -d_course_luigi_raceway_unknown_model6: - symbol: d_course_luigi_raceway_unknown_model6 - type: vtx - offset: 0xC3F8 - count: 12 -d_course_luigi_raceway_unknown_model7: - symbol: d_course_luigi_raceway_unknown_model7 - type: vtx - offset: 0xC4B8 - count: 6 -d_course_luigi_raceway_unknown_model8: - symbol: d_course_luigi_raceway_unknown_model8 - type: vtx - offset: 0xC518 - count: 7 -d_course_luigi_raceway_sign_left: - symbol: d_course_luigi_raceway_sign_left - type: texture - offset: 0xC588 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_luigi_raceway_sign_right: - symbol: d_course_luigi_raceway_sign_right - type: texture - offset: 0xD588 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_luigi_raceway_balloon_basket: - symbol: d_course_luigi_raceway_balloon_basket - type: texture - offset: 0xE588 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_luigi_raceway_balloon_rope: - symbol: d_course_luigi_raceway_balloon_rope - type: texture - offset: 0xED88 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_luigi_raceway_dl_F588: - symbol: d_course_luigi_raceway_dl_F588 - type: gfx - offset: 0xF588 -d_course_luigi_raceway_dl_F630: - symbol: d_course_luigi_raceway_dl_F630 - type: gfx - offset: 0xF630 -d_course_luigi_raceway_dl_F640: - symbol: d_course_luigi_raceway_dl_F640 - type: gfx - offset: 0xF640 -d_course_luigi_raceway_dl_F650: - symbol: d_course_luigi_raceway_dl_F650 - type: gfx - offset: 0xF650 -d_course_luigi_raceway_dl_F660: - symbol: d_course_luigi_raceway_dl_F660 - type: gfx - offset: 0xF660 -d_course_luigi_raceway_dl_F718: - symbol: d_course_luigi_raceway_dl_F718 - type: gfx - offset: 0xF718 -d_course_luigi_raceway_dl_F728: - symbol: d_course_luigi_raceway_dl_F728 - type: gfx - offset: 0xF728 -d_course_luigi_raceway_dl_F938: - symbol: d_course_luigi_raceway_dl_F938 - type: gfx - offset: 0xF938 -d_course_luigi_raceway_dl_F948: - symbol: d_course_luigi_raceway_dl_F948 - type: gfx - offset: 0xF948 -d_course_luigi_raceway_dl_F960: - symbol: d_course_luigi_raceway_dl_F960 - type: gfx - offset: 0xF960 -d_course_luigi_raceway_dl_F970: - symbol: d_course_luigi_raceway_dl_F970 - type: gfx - offset: 0xF970 -d_course_luigi_raceway_dl_FA00: - symbol: d_course_luigi_raceway_dl_FA00 - type: gfx - offset: 0xFA00 -d_course_luigi_raceway_dl_FA10: - symbol: d_course_luigi_raceway_dl_FA10 - type: gfx - offset: 0xFA10 -d_course_luigi_raceway_dl_FA20: - symbol: d_course_luigi_raceway_dl_FA20 - type: gfx - offset: 0xFA20 -d_course_luigi_raceway_dl_FA30: - symbol: d_course_luigi_raceway_dl_FA30 - type: gfx - offset: 0xFA30 -d_course_luigi_raceway_dl_FB10: - symbol: d_course_luigi_raceway_dl_FB10 - type: gfx - offset: 0xFB10 -d_course_luigi_raceway_dl_FB20: - symbol: d_course_luigi_raceway_dl_FB20 - type: gfx - offset: 0xFB20 -d_course_luigi_raceway_dl_FBB8: - symbol: d_course_luigi_raceway_dl_FBB8 - type: gfx - offset: 0xFBB8 -d_course_luigi_raceway_dl_FBC8: - symbol: d_course_luigi_raceway_dl_FBC8 - type: gfx - offset: 0xFBC8 -d_course_luigi_raceway_dl_FBE0: - symbol: d_course_luigi_raceway_dl_FBE0 - type: gfx - offset: 0xFBE0 -d_course_luigi_raceway_tree_model: - symbol: d_course_luigi_raceway_tree_model - type: vtx - offset: 0xFBF0 - count: 8 -d_course_luigi_raceway_dl_FC70: - symbol: d_course_luigi_raceway_dl_FC70 - type: gfx - offset: 0xFC70 -d_course_luigi_raceway_dl_FD40: - symbol: d_course_luigi_raceway_dl_FD40 - type: gfx - offset: 0xFD40 -d_course_luigi_raceway_item_box_spawns: - symbol: d_course_luigi_raceway_item_box_spawns - type: mk64:spawn_data - count: 19 - offset: 0xFDE8 -d_course_luigi_raceway_tree_spawn: - symbol: d_course_luigi_raceway_tree_spawn - type: mk64:spawn_data - count: 21 - offset: 0xFE80 -d_course_luigi_raceway_addr: - symbol: d_course_luigi_raceway_addr - type: mk64:track_sections - offset: 0xFF28 - count: 113 \ No newline at end of file diff --git a/yamls/us/luigi_raceway_displaylists.yml b/yamls/us/luigi_raceway_displaylists.yml deleted file mode 100644 index 70e941826..000000000 --- a/yamls/us/luigi_raceway_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x907E40 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_mario_raceway_packed_dls: - symbol: d_course_luigi_raceway_packed_dls - type: blob - offset: 0x907E40 - size: 0x35A0 diff --git a/yamls/us/luigi_raceway_vertices.yml b/yamls/us/luigi_raceway_vertices.yml deleted file mode 100644 index 378ef9be7..000000000 --- a/yamls/us/luigi_raceway_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x8FE640] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_luigi_raceway_vertex: - symbol: d_course_luigi_raceway_vertex - type: mk64:course_vtx - count: 5936 - offset: 0x0 diff --git a/yamls/us/mario_kart.yml b/yamls/us/mario_kart.yml deleted file mode 100644 index 5ccb01a1f..000000000 --- a/yamls/us/mario_kart.yml +++ /dev/null @@ -1,12803 +0,0 @@ -:config: - segments: - - [0x0F, 0x1E01F0] - no_compression: true - header: - code: - - '#include ' - - '#include ' - - '#include ' - header: - - '#include ' - - '#include ' - tables: - mario_kart_wheels: - range: [0x6E4B0, 0x92630] - mode: APPEND -mario_kart_frame000: - symbol: gKartMario000 - type: texture - offset: 0x0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame001: - symbol: gKartMario001 - type: texture - offset: 0x490 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_001_wheel_0 -mario_kart_frame002: - symbol: gKartMario002 - type: texture - offset: 0x928 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_002_wheel_0 -mario_kart_frame003: - symbol: gKartMario003 - type: texture - offset: 0xDC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_003_wheel_0 -mario_kart_frame004: - symbol: gKartMario004 - type: texture - offset: 0x1270 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_004_wheel_0 -mario_kart_frame005: - symbol: gKartMario005 - type: texture - offset: 0x1728 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_005_wheel_0 -mario_kart_frame006: - symbol: gKartMario006 - type: texture - offset: 0x1BE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_006_wheel_0 -mario_kart_frame007: - symbol: gKartMario007 - type: texture - offset: 0x20C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_007_wheel_0 -mario_kart_frame008: - symbol: gKartMario008 - type: texture - offset: 0x25B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_008_wheel_0 -mario_kart_frame009: - symbol: gKartMario009 - type: texture - offset: 0x2AD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_009_wheel_0 -mario_kart_frame010: - symbol: gKartMario010 - type: texture - offset: 0x300C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_010_wheel_0 -mario_kart_frame011: - symbol: gKartMario011 - type: texture - offset: 0x353C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_011_wheel_0 -mario_kart_frame012: - symbol: gKartMario012 - type: texture - offset: 0x3A84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_012_wheel_0 -mario_kart_frame013: - symbol: gKartMario013 - type: texture - offset: 0x3FD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_013_wheel_0 -mario_kart_frame014: - symbol: gKartMario014 - type: texture - offset: 0x453C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_014_wheel_0 -mario_kart_frame015: - symbol: gKartMario015 - type: texture - offset: 0x4AB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_015_wheel_0 -mario_kart_frame016: - symbol: gKartMario016 - type: texture - offset: 0x5038 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_016_wheel_0 -mario_kart_frame017: - symbol: gKartMario017 - type: texture - offset: 0x55B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_017_wheel_0 -mario_kart_frame018: - symbol: gKartMario018 - type: texture - offset: 0x5B38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_018_wheel_0 -mario_kart_frame019: - symbol: gKartMario019 - type: texture - offset: 0x60C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_019_wheel_0 -mario_kart_frame020: - symbol: gKartMario020 - type: texture - offset: 0x6668 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_020_wheel_0 -mario_kart_frame021: - symbol: gKartMario021 - type: texture - offset: 0x6C08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_021_wheel_0 -mario_kart_frame022: - symbol: gKartMario022 - type: texture - offset: 0x7098 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_022_wheel_0 -mario_kart_frame023: - symbol: gKartMario023 - type: texture - offset: 0x7550 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_023_wheel_0 -mario_kart_frame024: - symbol: gKartMario024 - type: texture - offset: 0x79E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_024_wheel_0 -mario_kart_frame025: - symbol: gKartMario025 - type: texture - offset: 0x7EB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_025_wheel_0 -mario_kart_frame026: - symbol: gKartMario026 - type: texture - offset: 0x838C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_026_wheel_0 -mario_kart_frame027: - symbol: gKartMario027 - type: texture - offset: 0x8860 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_027_wheel_0 -mario_kart_frame028: - symbol: gKartMario028 - type: texture - offset: 0x8D60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_028_wheel_0 -mario_kart_frame029: - symbol: gKartMario029 - type: texture - offset: 0x9268 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_029_wheel_0 -mario_kart_frame030: - symbol: gKartMario030 - type: texture - offset: 0x9798 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_030_wheel_0 -mario_kart_frame031: - symbol: gKartMario031 - type: texture - offset: 0x9CD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_031_wheel_0 -mario_kart_frame032: - symbol: gKartMario032 - type: texture - offset: 0xA230 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_032_wheel_0 -mario_kart_frame033: - symbol: gKartMario033 - type: texture - offset: 0xA794 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_033_wheel_0 -mario_kart_frame034: - symbol: gKartMario034 - type: texture - offset: 0xACE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_034_wheel_0 -mario_kart_frame035: - symbol: gKartMario035 - type: texture - offset: 0xB268 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_035_wheel_0 -mario_kart_frame036: - symbol: gKartMario036 - type: texture - offset: 0xB7D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_036_wheel_0 -mario_kart_frame037: - symbol: gKartMario037 - type: texture - offset: 0xBD68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_037_wheel_0 -mario_kart_frame038: - symbol: gKartMario038 - type: texture - offset: 0xC2F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_038_wheel_0 -mario_kart_frame039: - symbol: gKartMario039 - type: texture - offset: 0xC87C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_039_wheel_0 -mario_kart_frame040: - symbol: gKartMario040 - type: texture - offset: 0xCDFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_040_wheel_0 -mario_kart_frame041: - symbol: gKartMario041 - type: texture - offset: 0xD384 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_041_wheel_0 -mario_kart_frame042: - symbol: gKartMario042 - type: texture - offset: 0xD920 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_042_wheel_0 -mario_kart_frame043: - symbol: gKartMario043 - type: texture - offset: 0xDDE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_043_wheel_0 -mario_kart_frame044: - symbol: gKartMario044 - type: texture - offset: 0xE2A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_044_wheel_0 -mario_kart_frame045: - symbol: gKartMario045 - type: texture - offset: 0xE778 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_045_wheel_0 -mario_kart_frame046: - symbol: gKartMario046 - type: texture - offset: 0xEC50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_046_wheel_0 -mario_kart_frame047: - symbol: gKartMario047 - type: texture - offset: 0xF14C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_047_wheel_0 -mario_kart_frame048: - symbol: gKartMario048 - type: texture - offset: 0xF66C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_048_wheel_0 -mario_kart_frame049: - symbol: gKartMario049 - type: texture - offset: 0xFB90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_049_wheel_0 -mario_kart_frame050: - symbol: gKartMario050 - type: texture - offset: 0x100B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_050_wheel_0 -mario_kart_frame051: - symbol: gKartMario051 - type: texture - offset: 0x105FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_051_wheel_0 -mario_kart_frame052: - symbol: gKartMario052 - type: texture - offset: 0x10B4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_052_wheel_0 -mario_kart_frame053: - symbol: gKartMario053 - type: texture - offset: 0x110BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_053_wheel_0 -mario_kart_frame054: - symbol: gKartMario054 - type: texture - offset: 0x11624 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_054_wheel_0 -mario_kart_frame055: - symbol: gKartMario055 - type: texture - offset: 0x11BA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_055_wheel_0 -mario_kart_frame056: - symbol: gKartMario056 - type: texture - offset: 0x1212C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_056_wheel_0 -mario_kart_frame057: - symbol: gKartMario057 - type: texture - offset: 0x126AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_057_wheel_0 -mario_kart_frame058: - symbol: gKartMario058 - type: texture - offset: 0x12C28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_058_wheel_0 -mario_kart_frame059: - symbol: gKartMario059 - type: texture - offset: 0x131B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_059_wheel_0 -mario_kart_frame060: - symbol: gKartMario060 - type: texture - offset: 0x1375C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_060_wheel_0 -mario_kart_frame061: - symbol: gKartMario061 - type: texture - offset: 0x13D10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_061_wheel_0 -mario_kart_frame062: - symbol: gKartMario062 - type: texture - offset: 0x142BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_062_wheel_0 -mario_kart_frame063: - symbol: gKartMario063 - type: texture - offset: 0x1486C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_063_wheel_0 -mario_kart_frame064: - symbol: gKartMario064 - type: texture - offset: 0x14D2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_064_wheel_0 -mario_kart_frame065: - symbol: gKartMario065 - type: texture - offset: 0x15204 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_065_wheel_0 -mario_kart_frame066: - symbol: gKartMario066 - type: texture - offset: 0x156E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_066_wheel_0 -mario_kart_frame067: - symbol: gKartMario067 - type: texture - offset: 0x15BBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_067_wheel_0 -mario_kart_frame068: - symbol: gKartMario068 - type: texture - offset: 0x160B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_068_wheel_0 -mario_kart_frame069: - symbol: gKartMario069 - type: texture - offset: 0x165CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_069_wheel_0 -mario_kart_frame070: - symbol: gKartMario070 - type: texture - offset: 0x16AF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_070_wheel_0 -mario_kart_frame071: - symbol: gKartMario071 - type: texture - offset: 0x17038 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_071_wheel_0 -mario_kart_frame072: - symbol: gKartMario072 - type: texture - offset: 0x17578 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_072_wheel_0 -mario_kart_frame073: - symbol: gKartMario073 - type: texture - offset: 0x17AD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_073_wheel_0 -mario_kart_frame074: - symbol: gKartMario074 - type: texture - offset: 0x18048 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_074_wheel_0 -mario_kart_frame075: - symbol: gKartMario075 - type: texture - offset: 0x185A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_075_wheel_0 -mario_kart_frame076: - symbol: gKartMario076 - type: texture - offset: 0x18B20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_076_wheel_0 -mario_kart_frame077: - symbol: gKartMario077 - type: texture - offset: 0x19094 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_077_wheel_0 -mario_kart_frame078: - symbol: gKartMario078 - type: texture - offset: 0x19620 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_078_wheel_0 -mario_kart_frame079: - symbol: gKartMario079 - type: texture - offset: 0x19BC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_079_wheel_0 -mario_kart_frame080: - symbol: gKartMario080 - type: texture - offset: 0x1A170 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_080_wheel_0 -mario_kart_frame081: - symbol: gKartMario081 - type: texture - offset: 0x1A724 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_081_wheel_0 -mario_kart_frame082: - symbol: gKartMario082 - type: texture - offset: 0x1ACE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_082_wheel_0 -mario_kart_frame083: - symbol: gKartMario083 - type: texture - offset: 0x1B29C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_083_wheel_0 -mario_kart_frame084: - symbol: gKartMario084 - type: texture - offset: 0x1B850 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_084_wheel_0 -mario_kart_frame085: - symbol: gKartMario085 - type: texture - offset: 0x1BD00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_085_wheel_0 -mario_kart_frame086: - symbol: gKartMario086 - type: texture - offset: 0x1C1E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_086_wheel_0 -mario_kart_frame087: - symbol: gKartMario087 - type: texture - offset: 0x1C6D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_087_wheel_0 -mario_kart_frame088: - symbol: gKartMario088 - type: texture - offset: 0x1CBCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_088_wheel_0 -mario_kart_frame089: - symbol: gKartMario089 - type: texture - offset: 0x1D0D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_089_wheel_0 -mario_kart_frame090: - symbol: gKartMario090 - type: texture - offset: 0x1D5FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_090_wheel_0 -mario_kart_frame091: - symbol: gKartMario091 - type: texture - offset: 0x1DB40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_091_wheel_0 -mario_kart_frame092: - symbol: gKartMario092 - type: texture - offset: 0x1E0A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_092_wheel_0 -mario_kart_frame093: - symbol: gKartMario093 - type: texture - offset: 0x1E60C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_093_wheel_0 -mario_kart_frame094: - symbol: gKartMario094 - type: texture - offset: 0x1EB80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_094_wheel_0 -mario_kart_frame095: - symbol: gKartMario095 - type: texture - offset: 0x1F0FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_095_wheel_0 -mario_kart_frame096: - symbol: gKartMario096 - type: texture - offset: 0x1F67C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_096_wheel_0 -mario_kart_frame097: - symbol: gKartMario097 - type: texture - offset: 0x1FC00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_097_wheel_0 -mario_kart_frame098: - symbol: gKartMario098 - type: texture - offset: 0x20188 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_098_wheel_0 -mario_kart_frame099: - symbol: gKartMario099 - type: texture - offset: 0x2072C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_099_wheel_0 -mario_kart_frame100: - symbol: gKartMario100 - type: texture - offset: 0x20CD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_100_wheel_0 -mario_kart_frame101: - symbol: gKartMario101 - type: texture - offset: 0x2127C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_101_wheel_0 -mario_kart_frame102: - symbol: gKartMario102 - type: texture - offset: 0x21824 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_102_wheel_0 -mario_kart_frame103: - symbol: gKartMario103 - type: texture - offset: 0x21DE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_103_wheel_0 -mario_kart_frame104: - symbol: gKartMario104 - type: texture - offset: 0x223A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_104_wheel_0 -mario_kart_frame105: - symbol: gKartMario105 - type: texture - offset: 0x22960 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_105_wheel_0 -mario_kart_frame106: - symbol: gKartMario106 - type: texture - offset: 0x22E40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_106_wheel_0 -mario_kart_frame107: - symbol: gKartMario107 - type: texture - offset: 0x23328 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_107_wheel_0 -mario_kart_frame108: - symbol: gKartMario108 - type: texture - offset: 0x2381C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_108_wheel_0 -mario_kart_frame109: - symbol: gKartMario109 - type: texture - offset: 0x23D2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_109_wheel_0 -mario_kart_frame110: - symbol: gKartMario110 - type: texture - offset: 0x24234 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_110_wheel_0 -mario_kart_frame111: - symbol: gKartMario111 - type: texture - offset: 0x24780 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_111_wheel_0 -mario_kart_frame112: - symbol: gKartMario112 - type: texture - offset: 0x24CD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_112_wheel_0 -mario_kart_frame113: - symbol: gKartMario113 - type: texture - offset: 0x25230 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_113_wheel_0 -mario_kart_frame114: - symbol: gKartMario114 - type: texture - offset: 0x257A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_114_wheel_0 -mario_kart_frame115: - symbol: gKartMario115 - type: texture - offset: 0x25D10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_115_wheel_0 -mario_kart_frame116: - symbol: gKartMario116 - type: texture - offset: 0x26290 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_116_wheel_0 -mario_kart_frame117: - symbol: gKartMario117 - type: texture - offset: 0x2681C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_117_wheel_0 -mario_kart_frame118: - symbol: gKartMario118 - type: texture - offset: 0x26DB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_118_wheel_0 -mario_kart_frame119: - symbol: gKartMario119 - type: texture - offset: 0x27348 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_119_wheel_0 -mario_kart_frame120: - symbol: gKartMario120 - type: texture - offset: 0x2790C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_120_wheel_0 -mario_kart_frame121: - symbol: gKartMario121 - type: texture - offset: 0x27EC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_121_wheel_0 -mario_kart_frame122: - symbol: gKartMario122 - type: texture - offset: 0x28488 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_122_wheel_0 -mario_kart_frame123: - symbol: gKartMario123 - type: texture - offset: 0x28A3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_123_wheel_0 -mario_kart_frame124: - symbol: gKartMario124 - type: texture - offset: 0x2901C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_124_wheel_0 -mario_kart_frame125: - symbol: gKartMario125 - type: texture - offset: 0x295E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_125_wheel_0 -mario_kart_frame126: - symbol: gKartMario126 - type: texture - offset: 0x29BB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_126_wheel_0 -mario_kart_frame127: - symbol: gKartMario127 - type: texture - offset: 0x2A0A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_127_wheel_0 -mario_kart_frame128: - symbol: gKartMario128 - type: texture - offset: 0x2A5A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_128_wheel_0 -mario_kart_frame129: - symbol: gKartMario129 - type: texture - offset: 0x2AABC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_129_wheel_0 -mario_kart_frame130: - symbol: gKartMario130 - type: texture - offset: 0x2AFCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_130_wheel_0 -mario_kart_frame131: - symbol: gKartMario131 - type: texture - offset: 0x2B4FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_131_wheel_0 -mario_kart_frame132: - symbol: gKartMario132 - type: texture - offset: 0x2BA38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_132_wheel_0 -mario_kart_frame133: - symbol: gKartMario133 - type: texture - offset: 0x2BF84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_133_wheel_0 -mario_kart_frame134: - symbol: gKartMario134 - type: texture - offset: 0x2C4D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_134_wheel_0 -mario_kart_frame135: - symbol: gKartMario135 - type: texture - offset: 0x2CA3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_135_wheel_0 -mario_kart_frame136: - symbol: gKartMario136 - type: texture - offset: 0x2CFA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_136_wheel_0 -mario_kart_frame137: - symbol: gKartMario137 - type: texture - offset: 0x2D530 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_137_wheel_0 -mario_kart_frame138: - symbol: gKartMario138 - type: texture - offset: 0x2DAC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_138_wheel_0 -mario_kart_frame139: - symbol: gKartMario139 - type: texture - offset: 0x2E05C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_139_wheel_0 -mario_kart_frame140: - symbol: gKartMario140 - type: texture - offset: 0x2E5F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_140_wheel_0 -mario_kart_frame141: - symbol: gKartMario141 - type: texture - offset: 0x2EBA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_141_wheel_0 -mario_kart_frame142: - symbol: gKartMario142 - type: texture - offset: 0x2F170 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_142_wheel_0 -mario_kart_frame143: - symbol: gKartMario143 - type: texture - offset: 0x2F738 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_143_wheel_0 -mario_kart_frame144: - symbol: gKartMario144 - type: texture - offset: 0x2FCF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_144_wheel_0 -mario_kart_frame145: - symbol: gKartMario145 - type: texture - offset: 0x302BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_145_wheel_0 -mario_kart_frame146: - symbol: gKartMario146 - type: texture - offset: 0x30884 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_146_wheel_0 -mario_kart_frame147: - symbol: gKartMario147 - type: texture - offset: 0x30E64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_147_wheel_0 -mario_kart_frame148: - symbol: gKartMario148 - type: texture - offset: 0x31380 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_148_wheel_0 -mario_kart_frame149: - symbol: gKartMario149 - type: texture - offset: 0x3189C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_149_wheel_0 -mario_kart_frame150: - symbol: gKartMario150 - type: texture - offset: 0x31DC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_150_wheel_0 -mario_kart_frame151: - symbol: gKartMario151 - type: texture - offset: 0x322FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_151_wheel_0 -mario_kart_frame152: - symbol: gKartMario152 - type: texture - offset: 0x32848 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_152_wheel_0 -mario_kart_frame153: - symbol: gKartMario153 - type: texture - offset: 0x32D80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_153_wheel_0 -mario_kart_frame154: - symbol: gKartMario154 - type: texture - offset: 0x332E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_154_wheel_0 -mario_kart_frame155: - symbol: gKartMario155 - type: texture - offset: 0x33838 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_155_wheel_0 -mario_kart_frame156: - symbol: gKartMario156 - type: texture - offset: 0x33DC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_156_wheel_0 -mario_kart_frame157: - symbol: gKartMario157 - type: texture - offset: 0x34350 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_157_wheel_0 -mario_kart_frame158: - symbol: gKartMario158 - type: texture - offset: 0x348FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_158_wheel_0 -mario_kart_frame159: - symbol: gKartMario159 - type: texture - offset: 0x34EAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_159_wheel_0 -mario_kart_frame160: - symbol: gKartMario160 - type: texture - offset: 0x35460 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_160_wheel_0 -mario_kart_frame161: - symbol: gKartMario161 - type: texture - offset: 0x35A04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_161_wheel_0 -mario_kart_frame162: - symbol: gKartMario162 - type: texture - offset: 0x35FB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_162_wheel_0 -mario_kart_frame163: - symbol: gKartMario163 - type: texture - offset: 0x36584 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_163_wheel_0 -mario_kart_frame164: - symbol: gKartMario164 - type: texture - offset: 0x36B48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_164_wheel_0 -mario_kart_frame165: - symbol: gKartMario165 - type: texture - offset: 0x37114 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_165_wheel_0 -mario_kart_frame166: - symbol: gKartMario166 - type: texture - offset: 0x37704 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_166_wheel_0 -mario_kart_frame167: - symbol: gKartMario167 - type: texture - offset: 0x37CDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_167_wheel_0 -mario_kart_frame168: - symbol: gKartMario168 - type: texture - offset: 0x382C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_168_wheel_0 -mario_kart_frame169: - symbol: gKartMario169 - type: texture - offset: 0x387E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_169_wheel_0 -mario_kart_frame170: - symbol: gKartMario170 - type: texture - offset: 0x38D0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_170_wheel_0 -mario_kart_frame171: - symbol: gKartMario171 - type: texture - offset: 0x39260 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_171_wheel_0 -mario_kart_frame172: - symbol: gKartMario172 - type: texture - offset: 0x39790 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_172_wheel_0 -mario_kart_frame173: - symbol: gKartMario173 - type: texture - offset: 0x39CD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_173_wheel_0 -mario_kart_frame174: - symbol: gKartMario174 - type: texture - offset: 0x3A230 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_174_wheel_0 -mario_kart_frame175: - symbol: gKartMario175 - type: texture - offset: 0x3A7AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_175_wheel_0 -mario_kart_frame176: - symbol: gKartMario176 - type: texture - offset: 0x3AD20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_176_wheel_0 -mario_kart_frame177: - symbol: gKartMario177 - type: texture - offset: 0x3B2A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_177_wheel_0 -mario_kart_frame178: - symbol: gKartMario178 - type: texture - offset: 0x3B834 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_178_wheel_0 -mario_kart_frame179: - symbol: gKartMario179 - type: texture - offset: 0x3BDDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_179_wheel_0 -mario_kart_frame180: - symbol: gKartMario180 - type: texture - offset: 0x3C388 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_180_wheel_0 -mario_kart_frame181: - symbol: gKartMario181 - type: texture - offset: 0x3C940 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_181_wheel_0 -mario_kart_frame182: - symbol: gKartMario182 - type: texture - offset: 0x3CEF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_182_wheel_0 -mario_kart_frame183: - symbol: gKartMario183 - type: texture - offset: 0x3D4C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_183_wheel_0 -mario_kart_frame184: - symbol: gKartMario184 - type: texture - offset: 0x3DA9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_184_wheel_0 -mario_kart_frame185: - symbol: gKartMario185 - type: texture - offset: 0x3E080 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_185_wheel_0 -mario_kart_frame186: - symbol: gKartMario186 - type: texture - offset: 0x3E660 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_186_wheel_0 -mario_kart_frame187: - symbol: gKartMario187 - type: texture - offset: 0x3EC50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_187_wheel_0 -mario_kart_frame188: - symbol: gKartMario188 - type: texture - offset: 0x3F22C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_188_wheel_0 -mario_kart_frame189: - symbol: gKartMario189 - type: texture - offset: 0x3F824 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_189_wheel_0 -mario_kart_frame190: - symbol: gKartMario190 - type: texture - offset: 0x3FCC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_190_wheel_0 -mario_kart_frame191: - symbol: gKartMario191 - type: texture - offset: 0x40198 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_191_wheel_0 -mario_kart_frame192: - symbol: gKartMario192 - type: texture - offset: 0x406A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_192_wheel_0 -mario_kart_frame193: - symbol: gKartMario193 - type: texture - offset: 0x40BD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_193_wheel_0 -mario_kart_frame194: - symbol: gKartMario194 - type: texture - offset: 0x41138 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_194_wheel_0 -mario_kart_frame195: - symbol: gKartMario195 - type: texture - offset: 0x416B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_195_wheel_0 -mario_kart_frame196: - symbol: gKartMario196 - type: texture - offset: 0x41C30 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_196_wheel_0 -mario_kart_frame197: - symbol: gKartMario197 - type: texture - offset: 0x421E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_197_wheel_0 -mario_kart_frame198: - symbol: gKartMario198 - type: texture - offset: 0x42794 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_198_wheel_0 -mario_kart_frame199: - symbol: gKartMario199 - type: texture - offset: 0x42D80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_199_wheel_0 -mario_kart_frame200: - symbol: gKartMario200 - type: texture - offset: 0x4337C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_200_wheel_0 -mario_kart_frame201: - symbol: gKartMario201 - type: texture - offset: 0x43998 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_201_wheel_0 -mario_kart_frame202: - symbol: gKartMario202 - type: texture - offset: 0x43FDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_202_wheel_0 -mario_kart_frame203: - symbol: gKartMario203 - type: texture - offset: 0x44628 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_203_wheel_0 -mario_kart_frame204: - symbol: gKartMario204 - type: texture - offset: 0x44C84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_204_wheel_0 -mario_kart_frame205: - symbol: gKartMario205 - type: texture - offset: 0x452D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_205_wheel_0 -mario_kart_frame206: - symbol: gKartMario206 - type: texture - offset: 0x45900 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_206_wheel_0 -mario_kart_frame207: - symbol: gKartMario207 - type: texture - offset: 0x45F34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_207_wheel_0 -mario_kart_frame208: - symbol: gKartMario208 - type: texture - offset: 0x46550 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_208_wheel_0 -mario_kart_frame209: - symbol: gKartMario209 - type: texture - offset: 0x46B3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_209_wheel_0 -mario_kart_frame210: - symbol: gKartMario210 - type: texture - offset: 0x4701C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_210_wheel_0 -mario_kart_frame211: - symbol: gKartMario211 - type: texture - offset: 0x47544 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_211_wheel_0 -mario_kart_frame212: - symbol: gKartMario212 - type: texture - offset: 0x47A84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_212_wheel_0 -mario_kart_frame213: - symbol: gKartMario213 - type: texture - offset: 0x47FEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_213_wheel_0 -mario_kart_frame214: - symbol: gKartMario214 - type: texture - offset: 0x48558 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_214_wheel_0 -mario_kart_frame215: - symbol: gKartMario215 - type: texture - offset: 0x48AF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_215_wheel_0 -mario_kart_frame216: - symbol: gKartMario216 - type: texture - offset: 0x490A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_216_wheel_0 -mario_kart_frame217: - symbol: gKartMario217 - type: texture - offset: 0x49670 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_217_wheel_0 -mario_kart_frame218: - symbol: gKartMario218 - type: texture - offset: 0x49C38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_218_wheel_0 -mario_kart_frame219: - symbol: gKartMario219 - type: texture - offset: 0x4A220 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_219_wheel_0 -mario_kart_frame220: - symbol: gKartMario220 - type: texture - offset: 0x4A7F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_220_wheel_0 -mario_kart_frame221: - symbol: gKartMario221 - type: texture - offset: 0x4ADD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_221_wheel_0 -mario_kart_frame222: - symbol: gKartMario222 - type: texture - offset: 0x4B3F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_222_wheel_0 -mario_kart_frame223: - symbol: gKartMario223 - type: texture - offset: 0x4BA08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_223_wheel_0 -mario_kart_frame224: - symbol: gKartMario224 - type: texture - offset: 0x4C020 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_224_wheel_0 -mario_kart_frame225: - symbol: gKartMario225 - type: texture - offset: 0x4C628 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_225_wheel_0 -mario_kart_frame226: - symbol: gKartMario226 - type: texture - offset: 0x4CC3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_226_wheel_0 -mario_kart_frame227: - symbol: gKartMario227 - type: texture - offset: 0x4D220 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_227_wheel_0 -mario_kart_frame228: - symbol: gKartMario228 - type: texture - offset: 0x4D7F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_228_wheel_0 -mario_kart_frame229: - symbol: gKartMario229 - type: texture - offset: 0x4DD94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_229_wheel_0 -mario_kart_frame230: - symbol: gKartMario230 - type: texture - offset: 0x4E270 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_230_wheel_0 -mario_kart_frame231: - symbol: gKartMario231 - type: texture - offset: 0x4E7A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_231_wheel_0 -mario_kart_frame232: - symbol: gKartMario232 - type: texture - offset: 0x4ED00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_232_wheel_0 -mario_kart_frame233: - symbol: gKartMario233 - type: texture - offset: 0x4F27C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_233_wheel_0 -mario_kart_frame234: - symbol: gKartMario234 - type: texture - offset: 0x4F804 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_234_wheel_0 -mario_kart_frame235: - symbol: gKartMario235 - type: texture - offset: 0x4FDA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_235_wheel_0 -mario_kart_frame236: - symbol: gKartMario236 - type: texture - offset: 0x50368 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_236_wheel_0 -mario_kart_frame237: - symbol: gKartMario237 - type: texture - offset: 0x50948 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_237_wheel_0 -mario_kart_frame238: - symbol: gKartMario238 - type: texture - offset: 0x50F1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_238_wheel_0 -mario_kart_frame239: - symbol: gKartMario239 - type: texture - offset: 0x51500 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_239_wheel_0 -mario_kart_frame240: - symbol: gKartMario240 - type: texture - offset: 0x51AC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_240_wheel_0 -mario_kart_frame241: - symbol: gKartMario241 - type: texture - offset: 0x520A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_241_wheel_0 -mario_kart_frame242: - symbol: gKartMario242 - type: texture - offset: 0x52684 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_242_wheel_0 -mario_kart_frame243: - symbol: gKartMario243 - type: texture - offset: 0x52C80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_243_wheel_0 -mario_kart_frame244: - symbol: gKartMario244 - type: texture - offset: 0x53270 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_244_wheel_0 -mario_kart_frame245: - symbol: gKartMario245 - type: texture - offset: 0x53840 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_245_wheel_0 -mario_kart_frame246: - symbol: gKartMario246 - type: texture - offset: 0x53E24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_246_wheel_0 -mario_kart_frame247: - symbol: gKartMario247 - type: texture - offset: 0x543D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_247_wheel_0 -mario_kart_frame248: - symbol: gKartMario248 - type: texture - offset: 0x54968 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_248_wheel_0 -mario_kart_frame249: - symbol: gKartMario249 - type: texture - offset: 0x54EB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_249_wheel_0 -mario_kart_frame250: - symbol: gKartMario250 - type: texture - offset: 0x553B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_250_wheel_0 -mario_kart_frame251: - symbol: gKartMario251 - type: texture - offset: 0x558EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_251_wheel_0 -mario_kart_frame252: - symbol: gKartMario252 - type: texture - offset: 0x55E48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_252_wheel_0 -mario_kart_frame253: - symbol: gKartMario253 - type: texture - offset: 0x563DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_253_wheel_0 -mario_kart_frame254: - symbol: gKartMario254 - type: texture - offset: 0x5696C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_254_wheel_0 -mario_kart_frame255: - symbol: gKartMario255 - type: texture - offset: 0x56F28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_255_wheel_0 -mario_kart_frame256: - symbol: gKartMario256 - type: texture - offset: 0x5750C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_256_wheel_0 -mario_kart_frame257: - symbol: gKartMario257 - type: texture - offset: 0x57AF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_257_wheel_0 -mario_kart_frame258: - symbol: gKartMario258 - type: texture - offset: 0x580E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_258_wheel_0 -mario_kart_frame259: - symbol: gKartMario259 - type: texture - offset: 0x586B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_259_wheel_0 -mario_kart_frame260: - symbol: gKartMario260 - type: texture - offset: 0x58C78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_260_wheel_0 -mario_kart_frame261: - symbol: gKartMario261 - type: texture - offset: 0x59250 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_261_wheel_0 -mario_kart_frame262: - symbol: gKartMario262 - type: texture - offset: 0x59830 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_262_wheel_0 -mario_kart_frame263: - symbol: gKartMario263 - type: texture - offset: 0x59E08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_263_wheel_0 -mario_kart_frame264: - symbol: gKartMario264 - type: texture - offset: 0x5A3AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_264_wheel_0 -mario_kart_frame265: - symbol: gKartMario265 - type: texture - offset: 0x5A948 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_265_wheel_0 -mario_kart_frame266: - symbol: gKartMario266 - type: texture - offset: 0x5AEDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_266_wheel_0 -mario_kart_frame267: - symbol: gKartMario267 - type: texture - offset: 0x5B454 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_267_wheel_0 -mario_kart_frame268: - symbol: gKartMario268 - type: texture - offset: 0x5B9AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_268_wheel_0 -mario_kart_frame269: - symbol: gKartMario269 - type: texture - offset: 0x5BEBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_269_wheel_0 -mario_kart_frame270: - symbol: gKartMario270 - type: texture - offset: 0x5C40C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_270_wheel_0 -mario_kart_frame271: - symbol: gKartMario271 - type: texture - offset: 0x5C960 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_271_wheel_0 -mario_kart_frame272: - symbol: gKartMario272 - type: texture - offset: 0x5CEDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_272_wheel_0 -mario_kart_frame273: - symbol: gKartMario273 - type: texture - offset: 0x5D468 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_273_wheel_0 -mario_kart_frame274: - symbol: gKartMario274 - type: texture - offset: 0x5DA1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_274_wheel_0 -mario_kart_frame275: - symbol: gKartMario275 - type: texture - offset: 0x5DFE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_275_wheel_0 -mario_kart_frame276: - symbol: gKartMario276 - type: texture - offset: 0x5E5D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_276_wheel_0 -mario_kart_frame277: - symbol: gKartMario277 - type: texture - offset: 0x5EBC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_277_wheel_0 -mario_kart_frame278: - symbol: gKartMario278 - type: texture - offset: 0x5F18C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_278_wheel_0 -mario_kart_frame279: - symbol: gKartMario279 - type: texture - offset: 0x5F770 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_279_wheel_0 -mario_kart_frame280: - symbol: gKartMario280 - type: texture - offset: 0x5FD24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_280_wheel_0 -mario_kart_frame281: - symbol: gKartMario281 - type: texture - offset: 0x602F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_281_wheel_0 -mario_kart_frame282: - symbol: gKartMario282 - type: texture - offset: 0x60898 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_282_wheel_0 -mario_kart_frame283: - symbol: gKartMario283 - type: texture - offset: 0x60E38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_283_wheel_0 -mario_kart_frame284: - symbol: gKartMario284 - type: texture - offset: 0x613C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_284_wheel_0 -mario_kart_frame285: - symbol: gKartMario285 - type: texture - offset: 0x61940 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_285_wheel_0 -mario_kart_frame286: - symbol: gKartMario286 - type: texture - offset: 0x61E8C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_286_wheel_0 -mario_kart_frame287: - symbol: gKartMario287 - type: texture - offset: 0x623B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_287_wheel_0 -mario_kart_frame288: - symbol: gKartMario288 - type: texture - offset: 0x628C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_288_wheel_0 -mario_kart_frame289: - symbol: gKartMario289 - type: texture - offset: 0x62D74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame290: - symbol: gKartMario290 - type: texture - offset: 0x63244 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame291: - symbol: gKartMario291 - type: texture - offset: 0x637B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame292: - symbol: gKartMario292 - type: texture - offset: 0x63D84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame293: - symbol: gKartMario293 - type: texture - offset: 0x64430 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame294: - symbol: gKartMario294 - type: texture - offset: 0x64A68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame295: - symbol: gKartMario295 - type: texture - offset: 0x650A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame296: - symbol: gKartMario296 - type: texture - offset: 0x65674 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame297: - symbol: gKartMario297 - type: texture - offset: 0x65BFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame298: - symbol: gKartMario298 - type: texture - offset: 0x66114 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame299: - symbol: gKartMario299 - type: texture - offset: 0x666D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame300: - symbol: gKartMario300 - type: texture - offset: 0x66C9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame301: - symbol: gKartMario301 - type: texture - offset: 0x67288 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame302: - symbol: gKartMario302 - type: texture - offset: 0x67828 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame303: - symbol: gKartMario303 - type: texture - offset: 0x67DC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame304: - symbol: gKartMario304 - type: texture - offset: 0x68360 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame305: - symbol: gKartMario305 - type: texture - offset: 0x688B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame306: - symbol: gKartMario306 - type: texture - offset: 0x68D7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame307: - symbol: gKartMario307 - type: texture - offset: 0x69368 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame308: - symbol: gKartMario308 - type: texture - offset: 0x69A0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame309: - symbol: gKartMario309 - type: texture - offset: 0x6A0A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame310: - symbol: gKartMario310 - type: texture - offset: 0x6A6D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame311: - symbol: gKartMario311 - type: texture - offset: 0x6ACFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame312: - symbol: gKartMario312 - type: texture - offset: 0x6B2C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame313: - symbol: gKartMario313 - type: texture - offset: 0x6B818 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame314: - symbol: gKartMario314 - type: texture - offset: 0x6BD28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame315: - symbol: gKartMario315 - type: texture - offset: 0x6C2E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame316: - symbol: gKartMario316 - type: texture - offset: 0x6C8C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame317: - symbol: gKartMario317 - type: texture - offset: 0x6CE78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame318: - symbol: gKartMario318 - type: texture - offset: 0x6D41C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame319: - symbol: gKartMario319 - type: texture - offset: 0x6D9CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -mario_kart_frame320: - symbol: gKartMario320 - type: texture - offset: 0x6DF44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: mario_kart_palette - tlut_wheel: kart_000_wheel_0 -kart_000_wheel_0: - symbol: gKartMario000Wheel0 - type: texture - offset: 0x6E4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_1: - symbol: gKartMario000Wheel1 - type: texture - offset: 0x6E530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_2: - symbol: gKartMario000Wheel2 - type: texture - offset: 0x6E5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_3: - symbol: gKartMario000Wheel3 - type: texture - offset: 0x6E630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_0: - symbol: gKartMario001Wheel0 - type: texture - offset: 0x6E6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_1: - symbol: gKartMario001Wheel1 - type: texture - offset: 0x6E730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_2: - symbol: gKartMario001Wheel2 - type: texture - offset: 0x6E7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_3: - symbol: gKartMario001Wheel3 - type: texture - offset: 0x6E830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_0: - symbol: gKartMario002Wheel0 - type: texture - offset: 0x6E8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_1: - symbol: gKartMario002Wheel1 - type: texture - offset: 0x6E930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_2: - symbol: gKartMario002Wheel2 - type: texture - offset: 0x6E9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_3: - symbol: gKartMario002Wheel3 - type: texture - offset: 0x6EA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_0: - symbol: gKartMario003Wheel0 - type: texture - offset: 0x6EAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_1: - symbol: gKartMario003Wheel1 - type: texture - offset: 0x6EB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_2: - symbol: gKartMario003Wheel2 - type: texture - offset: 0x6EBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_3: - symbol: gKartMario003Wheel3 - type: texture - offset: 0x6EC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_0: - symbol: gKartMario004Wheel0 - type: texture - offset: 0x6ECB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_1: - symbol: gKartMario004Wheel1 - type: texture - offset: 0x6ED30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_2: - symbol: gKartMario004Wheel2 - type: texture - offset: 0x6EDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_3: - symbol: gKartMario004Wheel3 - type: texture - offset: 0x6EE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_0: - symbol: gKartMario005Wheel0 - type: texture - offset: 0x6EEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_1: - symbol: gKartMario005Wheel1 - type: texture - offset: 0x6EF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_2: - symbol: gKartMario005Wheel2 - type: texture - offset: 0x6EFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_3: - symbol: gKartMario005Wheel3 - type: texture - offset: 0x6F030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_0: - symbol: gKartMario006Wheel0 - type: texture - offset: 0x6F0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_1: - symbol: gKartMario006Wheel1 - type: texture - offset: 0x6F130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_2: - symbol: gKartMario006Wheel2 - type: texture - offset: 0x6F1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_3: - symbol: gKartMario006Wheel3 - type: texture - offset: 0x6F230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_0: - symbol: gKartMario007Wheel0 - type: texture - offset: 0x6F2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_1: - symbol: gKartMario007Wheel1 - type: texture - offset: 0x6F330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_2: - symbol: gKartMario007Wheel2 - type: texture - offset: 0x6F3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_3: - symbol: gKartMario007Wheel3 - type: texture - offset: 0x6F430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_0: - symbol: gKartMario008Wheel0 - type: texture - offset: 0x6F4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_1: - symbol: gKartMario008Wheel1 - type: texture - offset: 0x6F530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_2: - symbol: gKartMario008Wheel2 - type: texture - offset: 0x6F5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_3: - symbol: gKartMario008Wheel3 - type: texture - offset: 0x6F630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_0: - symbol: gKartMario009Wheel0 - type: texture - offset: 0x6F6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_1: - symbol: gKartMario009Wheel1 - type: texture - offset: 0x6F730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_2: - symbol: gKartMario009Wheel2 - type: texture - offset: 0x6F7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_3: - symbol: gKartMario009Wheel3 - type: texture - offset: 0x6F830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_0: - symbol: gKartMario010Wheel0 - type: texture - offset: 0x6F8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_1: - symbol: gKartMario010Wheel1 - type: texture - offset: 0x6F930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_2: - symbol: gKartMario010Wheel2 - type: texture - offset: 0x6F9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_3: - symbol: gKartMario010Wheel3 - type: texture - offset: 0x6FA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_0: - symbol: gKartMario011Wheel0 - type: texture - offset: 0x6FAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_1: - symbol: gKartMario011Wheel1 - type: texture - offset: 0x6FB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_2: - symbol: gKartMario011Wheel2 - type: texture - offset: 0x6FBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_3: - symbol: gKartMario011Wheel3 - type: texture - offset: 0x6FC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_0: - symbol: gKartMario012Wheel0 - type: texture - offset: 0x6FCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_1: - symbol: gKartMario012Wheel1 - type: texture - offset: 0x6FD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_2: - symbol: gKartMario012Wheel2 - type: texture - offset: 0x6FDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_3: - symbol: gKartMario012Wheel3 - type: texture - offset: 0x6FE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_0: - symbol: gKartMario013Wheel0 - type: texture - offset: 0x6FEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_1: - symbol: gKartMario013Wheel1 - type: texture - offset: 0x6FF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_2: - symbol: gKartMario013Wheel2 - type: texture - offset: 0x6FFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_3: - symbol: gKartMario013Wheel3 - type: texture - offset: 0x70030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_0: - symbol: gKartMario014Wheel0 - type: texture - offset: 0x700B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_1: - symbol: gKartMario014Wheel1 - type: texture - offset: 0x70130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_2: - symbol: gKartMario014Wheel2 - type: texture - offset: 0x701B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_3: - symbol: gKartMario014Wheel3 - type: texture - offset: 0x70230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_0: - symbol: gKartMario015Wheel0 - type: texture - offset: 0x702B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_1: - symbol: gKartMario015Wheel1 - type: texture - offset: 0x70330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_2: - symbol: gKartMario015Wheel2 - type: texture - offset: 0x703B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_3: - symbol: gKartMario015Wheel3 - type: texture - offset: 0x70430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_0: - symbol: gKartMario016Wheel0 - type: texture - offset: 0x704B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_1: - symbol: gKartMario016Wheel1 - type: texture - offset: 0x70530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_2: - symbol: gKartMario016Wheel2 - type: texture - offset: 0x705B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_3: - symbol: gKartMario016Wheel3 - type: texture - offset: 0x70630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_0: - symbol: gKartMario017Wheel0 - type: texture - offset: 0x706B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_1: - symbol: gKartMario017Wheel1 - type: texture - offset: 0x70730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_2: - symbol: gKartMario017Wheel2 - type: texture - offset: 0x707B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_3: - symbol: gKartMario017Wheel3 - type: texture - offset: 0x70830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_0: - symbol: gKartMario018Wheel0 - type: texture - offset: 0x708B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_1: - symbol: gKartMario018Wheel1 - type: texture - offset: 0x70930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_2: - symbol: gKartMario018Wheel2 - type: texture - offset: 0x709B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_3: - symbol: gKartMario018Wheel3 - type: texture - offset: 0x70A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_0: - symbol: gKartMario019Wheel0 - type: texture - offset: 0x70AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_1: - symbol: gKartMario019Wheel1 - type: texture - offset: 0x70B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_2: - symbol: gKartMario019Wheel2 - type: texture - offset: 0x70BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_3: - symbol: gKartMario019Wheel3 - type: texture - offset: 0x70C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_0: - symbol: gKartMario020Wheel0 - type: texture - offset: 0x70CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_1: - symbol: gKartMario020Wheel1 - type: texture - offset: 0x70D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_2: - symbol: gKartMario020Wheel2 - type: texture - offset: 0x70DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_3: - symbol: gKartMario020Wheel3 - type: texture - offset: 0x70E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_0: - symbol: gKartMario021Wheel0 - type: texture - offset: 0x70EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_1: - symbol: gKartMario021Wheel1 - type: texture - offset: 0x70F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_2: - symbol: gKartMario021Wheel2 - type: texture - offset: 0x70FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_3: - symbol: gKartMario021Wheel3 - type: texture - offset: 0x71030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_0: - symbol: gKartMario022Wheel0 - type: texture - offset: 0x710B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_1: - symbol: gKartMario022Wheel1 - type: texture - offset: 0x71130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_2: - symbol: gKartMario022Wheel2 - type: texture - offset: 0x711B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_3: - symbol: gKartMario022Wheel3 - type: texture - offset: 0x71230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_0: - symbol: gKartMario023Wheel0 - type: texture - offset: 0x712B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_1: - symbol: gKartMario023Wheel1 - type: texture - offset: 0x71330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_2: - symbol: gKartMario023Wheel2 - type: texture - offset: 0x713B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_3: - symbol: gKartMario023Wheel3 - type: texture - offset: 0x71430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_0: - symbol: gKartMario024Wheel0 - type: texture - offset: 0x714B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_1: - symbol: gKartMario024Wheel1 - type: texture - offset: 0x71530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_2: - symbol: gKartMario024Wheel2 - type: texture - offset: 0x715B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_3: - symbol: gKartMario024Wheel3 - type: texture - offset: 0x71630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_0: - symbol: gKartMario025Wheel0 - type: texture - offset: 0x716B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_1: - symbol: gKartMario025Wheel1 - type: texture - offset: 0x71730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_2: - symbol: gKartMario025Wheel2 - type: texture - offset: 0x717B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_3: - symbol: gKartMario025Wheel3 - type: texture - offset: 0x71830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_0: - symbol: gKartMario026Wheel0 - type: texture - offset: 0x718B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_1: - symbol: gKartMario026Wheel1 - type: texture - offset: 0x71930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_2: - symbol: gKartMario026Wheel2 - type: texture - offset: 0x719B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_3: - symbol: gKartMario026Wheel3 - type: texture - offset: 0x71A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_0: - symbol: gKartMario027Wheel0 - type: texture - offset: 0x71AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_1: - symbol: gKartMario027Wheel1 - type: texture - offset: 0x71B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_2: - symbol: gKartMario027Wheel2 - type: texture - offset: 0x71BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_3: - symbol: gKartMario027Wheel3 - type: texture - offset: 0x71C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_0: - symbol: gKartMario028Wheel0 - type: texture - offset: 0x71CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_1: - symbol: gKartMario028Wheel1 - type: texture - offset: 0x71D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_2: - symbol: gKartMario028Wheel2 - type: texture - offset: 0x71DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_3: - symbol: gKartMario028Wheel3 - type: texture - offset: 0x71E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_0: - symbol: gKartMario029Wheel0 - type: texture - offset: 0x71EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_1: - symbol: gKartMario029Wheel1 - type: texture - offset: 0x71F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_2: - symbol: gKartMario029Wheel2 - type: texture - offset: 0x71FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_3: - symbol: gKartMario029Wheel3 - type: texture - offset: 0x72030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_0: - symbol: gKartMario030Wheel0 - type: texture - offset: 0x720B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_1: - symbol: gKartMario030Wheel1 - type: texture - offset: 0x72130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_2: - symbol: gKartMario030Wheel2 - type: texture - offset: 0x721B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_3: - symbol: gKartMario030Wheel3 - type: texture - offset: 0x72230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_0: - symbol: gKartMario031Wheel0 - type: texture - offset: 0x722B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_1: - symbol: gKartMario031Wheel1 - type: texture - offset: 0x72330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_2: - symbol: gKartMario031Wheel2 - type: texture - offset: 0x723B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_3: - symbol: gKartMario031Wheel3 - type: texture - offset: 0x72430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_0: - symbol: gKartMario032Wheel0 - type: texture - offset: 0x724B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_1: - symbol: gKartMario032Wheel1 - type: texture - offset: 0x72530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_2: - symbol: gKartMario032Wheel2 - type: texture - offset: 0x725B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_3: - symbol: gKartMario032Wheel3 - type: texture - offset: 0x72630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_0: - symbol: gKartMario033Wheel0 - type: texture - offset: 0x726B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_1: - symbol: gKartMario033Wheel1 - type: texture - offset: 0x72730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_2: - symbol: gKartMario033Wheel2 - type: texture - offset: 0x727B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_3: - symbol: gKartMario033Wheel3 - type: texture - offset: 0x72830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_0: - symbol: gKartMario034Wheel0 - type: texture - offset: 0x728B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_1: - symbol: gKartMario034Wheel1 - type: texture - offset: 0x72930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_2: - symbol: gKartMario034Wheel2 - type: texture - offset: 0x729B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_3: - symbol: gKartMario034Wheel3 - type: texture - offset: 0x72A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_0: - symbol: gKartMario035Wheel0 - type: texture - offset: 0x72AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_1: - symbol: gKartMario035Wheel1 - type: texture - offset: 0x72B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_2: - symbol: gKartMario035Wheel2 - type: texture - offset: 0x72BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_3: - symbol: gKartMario035Wheel3 - type: texture - offset: 0x72C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_0: - symbol: gKartMario036Wheel0 - type: texture - offset: 0x72CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_1: - symbol: gKartMario036Wheel1 - type: texture - offset: 0x72D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_2: - symbol: gKartMario036Wheel2 - type: texture - offset: 0x72DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_3: - symbol: gKartMario036Wheel3 - type: texture - offset: 0x72E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_0: - symbol: gKartMario037Wheel0 - type: texture - offset: 0x72EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_1: - symbol: gKartMario037Wheel1 - type: texture - offset: 0x72F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_2: - symbol: gKartMario037Wheel2 - type: texture - offset: 0x72FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_3: - symbol: gKartMario037Wheel3 - type: texture - offset: 0x73030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_0: - symbol: gKartMario038Wheel0 - type: texture - offset: 0x730B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_1: - symbol: gKartMario038Wheel1 - type: texture - offset: 0x73130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_2: - symbol: gKartMario038Wheel2 - type: texture - offset: 0x731B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_3: - symbol: gKartMario038Wheel3 - type: texture - offset: 0x73230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_0: - symbol: gKartMario039Wheel0 - type: texture - offset: 0x732B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_1: - symbol: gKartMario039Wheel1 - type: texture - offset: 0x73330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_2: - symbol: gKartMario039Wheel2 - type: texture - offset: 0x733B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_3: - symbol: gKartMario039Wheel3 - type: texture - offset: 0x73430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_0: - symbol: gKartMario040Wheel0 - type: texture - offset: 0x734B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_1: - symbol: gKartMario040Wheel1 - type: texture - offset: 0x73530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_2: - symbol: gKartMario040Wheel2 - type: texture - offset: 0x735B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_3: - symbol: gKartMario040Wheel3 - type: texture - offset: 0x73630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_0: - symbol: gKartMario041Wheel0 - type: texture - offset: 0x736B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_1: - symbol: gKartMario041Wheel1 - type: texture - offset: 0x73730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_2: - symbol: gKartMario041Wheel2 - type: texture - offset: 0x737B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_3: - symbol: gKartMario041Wheel3 - type: texture - offset: 0x73830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_0: - symbol: gKartMario042Wheel0 - type: texture - offset: 0x738B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_1: - symbol: gKartMario042Wheel1 - type: texture - offset: 0x73930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_2: - symbol: gKartMario042Wheel2 - type: texture - offset: 0x739B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_3: - symbol: gKartMario042Wheel3 - type: texture - offset: 0x73A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_0: - symbol: gKartMario043Wheel0 - type: texture - offset: 0x73AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_1: - symbol: gKartMario043Wheel1 - type: texture - offset: 0x73B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_2: - symbol: gKartMario043Wheel2 - type: texture - offset: 0x73BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_3: - symbol: gKartMario043Wheel3 - type: texture - offset: 0x73C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_0: - symbol: gKartMario044Wheel0 - type: texture - offset: 0x73CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_1: - symbol: gKartMario044Wheel1 - type: texture - offset: 0x73D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_2: - symbol: gKartMario044Wheel2 - type: texture - offset: 0x73DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_3: - symbol: gKartMario044Wheel3 - type: texture - offset: 0x73E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_0: - symbol: gKartMario045Wheel0 - type: texture - offset: 0x73EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_1: - symbol: gKartMario045Wheel1 - type: texture - offset: 0x73F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_2: - symbol: gKartMario045Wheel2 - type: texture - offset: 0x73FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_3: - symbol: gKartMario045Wheel3 - type: texture - offset: 0x74030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_0: - symbol: gKartMario046Wheel0 - type: texture - offset: 0x740B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_1: - symbol: gKartMario046Wheel1 - type: texture - offset: 0x74130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_2: - symbol: gKartMario046Wheel2 - type: texture - offset: 0x741B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_3: - symbol: gKartMario046Wheel3 - type: texture - offset: 0x74230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_0: - symbol: gKartMario047Wheel0 - type: texture - offset: 0x742B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_1: - symbol: gKartMario047Wheel1 - type: texture - offset: 0x74330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_2: - symbol: gKartMario047Wheel2 - type: texture - offset: 0x743B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_3: - symbol: gKartMario047Wheel3 - type: texture - offset: 0x74430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_0: - symbol: gKartMario048Wheel0 - type: texture - offset: 0x744B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_1: - symbol: gKartMario048Wheel1 - type: texture - offset: 0x74530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_2: - symbol: gKartMario048Wheel2 - type: texture - offset: 0x745B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_3: - symbol: gKartMario048Wheel3 - type: texture - offset: 0x74630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_0: - symbol: gKartMario049Wheel0 - type: texture - offset: 0x746B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_1: - symbol: gKartMario049Wheel1 - type: texture - offset: 0x74730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_2: - symbol: gKartMario049Wheel2 - type: texture - offset: 0x747B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_3: - symbol: gKartMario049Wheel3 - type: texture - offset: 0x74830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_0: - symbol: gKartMario050Wheel0 - type: texture - offset: 0x748B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_1: - symbol: gKartMario050Wheel1 - type: texture - offset: 0x74930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_2: - symbol: gKartMario050Wheel2 - type: texture - offset: 0x749B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_3: - symbol: gKartMario050Wheel3 - type: texture - offset: 0x74A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_0: - symbol: gKartMario051Wheel0 - type: texture - offset: 0x74AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_1: - symbol: gKartMario051Wheel1 - type: texture - offset: 0x74B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_2: - symbol: gKartMario051Wheel2 - type: texture - offset: 0x74BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_3: - symbol: gKartMario051Wheel3 - type: texture - offset: 0x74C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_0: - symbol: gKartMario052Wheel0 - type: texture - offset: 0x74CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_1: - symbol: gKartMario052Wheel1 - type: texture - offset: 0x74D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_2: - symbol: gKartMario052Wheel2 - type: texture - offset: 0x74DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_3: - symbol: gKartMario052Wheel3 - type: texture - offset: 0x74E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_0: - symbol: gKartMario053Wheel0 - type: texture - offset: 0x74EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_1: - symbol: gKartMario053Wheel1 - type: texture - offset: 0x74F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_2: - symbol: gKartMario053Wheel2 - type: texture - offset: 0x74FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_3: - symbol: gKartMario053Wheel3 - type: texture - offset: 0x75030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_0: - symbol: gKartMario054Wheel0 - type: texture - offset: 0x750B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_1: - symbol: gKartMario054Wheel1 - type: texture - offset: 0x75130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_2: - symbol: gKartMario054Wheel2 - type: texture - offset: 0x751B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_3: - symbol: gKartMario054Wheel3 - type: texture - offset: 0x75230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_0: - symbol: gKartMario055Wheel0 - type: texture - offset: 0x752B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_1: - symbol: gKartMario055Wheel1 - type: texture - offset: 0x75330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_2: - symbol: gKartMario055Wheel2 - type: texture - offset: 0x753B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_3: - symbol: gKartMario055Wheel3 - type: texture - offset: 0x75430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_0: - symbol: gKartMario056Wheel0 - type: texture - offset: 0x754B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_1: - symbol: gKartMario056Wheel1 - type: texture - offset: 0x75530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_2: - symbol: gKartMario056Wheel2 - type: texture - offset: 0x755B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_3: - symbol: gKartMario056Wheel3 - type: texture - offset: 0x75630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_0: - symbol: gKartMario057Wheel0 - type: texture - offset: 0x756B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_1: - symbol: gKartMario057Wheel1 - type: texture - offset: 0x75730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_2: - symbol: gKartMario057Wheel2 - type: texture - offset: 0x757B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_3: - symbol: gKartMario057Wheel3 - type: texture - offset: 0x75830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_0: - symbol: gKartMario058Wheel0 - type: texture - offset: 0x758B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_1: - symbol: gKartMario058Wheel1 - type: texture - offset: 0x75930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_2: - symbol: gKartMario058Wheel2 - type: texture - offset: 0x759B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_3: - symbol: gKartMario058Wheel3 - type: texture - offset: 0x75A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_0: - symbol: gKartMario059Wheel0 - type: texture - offset: 0x75AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_1: - symbol: gKartMario059Wheel1 - type: texture - offset: 0x75B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_2: - symbol: gKartMario059Wheel2 - type: texture - offset: 0x75BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_3: - symbol: gKartMario059Wheel3 - type: texture - offset: 0x75C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_0: - symbol: gKartMario060Wheel0 - type: texture - offset: 0x75CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_1: - symbol: gKartMario060Wheel1 - type: texture - offset: 0x75D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_2: - symbol: gKartMario060Wheel2 - type: texture - offset: 0x75DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_3: - symbol: gKartMario060Wheel3 - type: texture - offset: 0x75E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_0: - symbol: gKartMario061Wheel0 - type: texture - offset: 0x75EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_1: - symbol: gKartMario061Wheel1 - type: texture - offset: 0x75F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_2: - symbol: gKartMario061Wheel2 - type: texture - offset: 0x75FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_3: - symbol: gKartMario061Wheel3 - type: texture - offset: 0x76030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_0: - symbol: gKartMario062Wheel0 - type: texture - offset: 0x760B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_1: - symbol: gKartMario062Wheel1 - type: texture - offset: 0x76130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_2: - symbol: gKartMario062Wheel2 - type: texture - offset: 0x761B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_3: - symbol: gKartMario062Wheel3 - type: texture - offset: 0x76230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_0: - symbol: gKartMario063Wheel0 - type: texture - offset: 0x762B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_1: - symbol: gKartMario063Wheel1 - type: texture - offset: 0x76330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_2: - symbol: gKartMario063Wheel2 - type: texture - offset: 0x763B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_3: - symbol: gKartMario063Wheel3 - type: texture - offset: 0x76430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_0: - symbol: gKartMario064Wheel0 - type: texture - offset: 0x764B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_1: - symbol: gKartMario064Wheel1 - type: texture - offset: 0x76530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_2: - symbol: gKartMario064Wheel2 - type: texture - offset: 0x765B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_3: - symbol: gKartMario064Wheel3 - type: texture - offset: 0x76630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_0: - symbol: gKartMario065Wheel0 - type: texture - offset: 0x766B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_1: - symbol: gKartMario065Wheel1 - type: texture - offset: 0x76730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_2: - symbol: gKartMario065Wheel2 - type: texture - offset: 0x767B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_3: - symbol: gKartMario065Wheel3 - type: texture - offset: 0x76830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_0: - symbol: gKartMario066Wheel0 - type: texture - offset: 0x768B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_1: - symbol: gKartMario066Wheel1 - type: texture - offset: 0x76930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_2: - symbol: gKartMario066Wheel2 - type: texture - offset: 0x769B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_3: - symbol: gKartMario066Wheel3 - type: texture - offset: 0x76A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_0: - symbol: gKartMario067Wheel0 - type: texture - offset: 0x76AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_1: - symbol: gKartMario067Wheel1 - type: texture - offset: 0x76B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_2: - symbol: gKartMario067Wheel2 - type: texture - offset: 0x76BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_3: - symbol: gKartMario067Wheel3 - type: texture - offset: 0x76C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_0: - symbol: gKartMario068Wheel0 - type: texture - offset: 0x76CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_1: - symbol: gKartMario068Wheel1 - type: texture - offset: 0x76D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_2: - symbol: gKartMario068Wheel2 - type: texture - offset: 0x76DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_3: - symbol: gKartMario068Wheel3 - type: texture - offset: 0x76E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_0: - symbol: gKartMario069Wheel0 - type: texture - offset: 0x76EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_1: - symbol: gKartMario069Wheel1 - type: texture - offset: 0x76F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_2: - symbol: gKartMario069Wheel2 - type: texture - offset: 0x76FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_3: - symbol: gKartMario069Wheel3 - type: texture - offset: 0x77030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_0: - symbol: gKartMario070Wheel0 - type: texture - offset: 0x770B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_1: - symbol: gKartMario070Wheel1 - type: texture - offset: 0x77130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_2: - symbol: gKartMario070Wheel2 - type: texture - offset: 0x771B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_3: - symbol: gKartMario070Wheel3 - type: texture - offset: 0x77230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_0: - symbol: gKartMario071Wheel0 - type: texture - offset: 0x772B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_1: - symbol: gKartMario071Wheel1 - type: texture - offset: 0x77330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_2: - symbol: gKartMario071Wheel2 - type: texture - offset: 0x773B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_3: - symbol: gKartMario071Wheel3 - type: texture - offset: 0x77430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_0: - symbol: gKartMario072Wheel0 - type: texture - offset: 0x774B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_1: - symbol: gKartMario072Wheel1 - type: texture - offset: 0x77530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_2: - symbol: gKartMario072Wheel2 - type: texture - offset: 0x775B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_3: - symbol: gKartMario072Wheel3 - type: texture - offset: 0x77630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_0: - symbol: gKartMario073Wheel0 - type: texture - offset: 0x776B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_1: - symbol: gKartMario073Wheel1 - type: texture - offset: 0x77730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_2: - symbol: gKartMario073Wheel2 - type: texture - offset: 0x777B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_3: - symbol: gKartMario073Wheel3 - type: texture - offset: 0x77830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_0: - symbol: gKartMario074Wheel0 - type: texture - offset: 0x778B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_1: - symbol: gKartMario074Wheel1 - type: texture - offset: 0x77930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_2: - symbol: gKartMario074Wheel2 - type: texture - offset: 0x779B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_3: - symbol: gKartMario074Wheel3 - type: texture - offset: 0x77A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_0: - symbol: gKartMario075Wheel0 - type: texture - offset: 0x77AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_1: - symbol: gKartMario075Wheel1 - type: texture - offset: 0x77B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_2: - symbol: gKartMario075Wheel2 - type: texture - offset: 0x77BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_3: - symbol: gKartMario075Wheel3 - type: texture - offset: 0x77C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_0: - symbol: gKartMario076Wheel0 - type: texture - offset: 0x77CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_1: - symbol: gKartMario076Wheel1 - type: texture - offset: 0x77D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_2: - symbol: gKartMario076Wheel2 - type: texture - offset: 0x77DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_3: - symbol: gKartMario076Wheel3 - type: texture - offset: 0x77E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_0: - symbol: gKartMario077Wheel0 - type: texture - offset: 0x77EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_1: - symbol: gKartMario077Wheel1 - type: texture - offset: 0x77F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_2: - symbol: gKartMario077Wheel2 - type: texture - offset: 0x77FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_3: - symbol: gKartMario077Wheel3 - type: texture - offset: 0x78030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_0: - symbol: gKartMario078Wheel0 - type: texture - offset: 0x780B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_1: - symbol: gKartMario078Wheel1 - type: texture - offset: 0x78130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_2: - symbol: gKartMario078Wheel2 - type: texture - offset: 0x781B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_3: - symbol: gKartMario078Wheel3 - type: texture - offset: 0x78230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_0: - symbol: gKartMario079Wheel0 - type: texture - offset: 0x782B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_1: - symbol: gKartMario079Wheel1 - type: texture - offset: 0x78330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_2: - symbol: gKartMario079Wheel2 - type: texture - offset: 0x783B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_3: - symbol: gKartMario079Wheel3 - type: texture - offset: 0x78430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_0: - symbol: gKartMario080Wheel0 - type: texture - offset: 0x784B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_1: - symbol: gKartMario080Wheel1 - type: texture - offset: 0x78530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_2: - symbol: gKartMario080Wheel2 - type: texture - offset: 0x785B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_3: - symbol: gKartMario080Wheel3 - type: texture - offset: 0x78630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_0: - symbol: gKartMario081Wheel0 - type: texture - offset: 0x786B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_1: - symbol: gKartMario081Wheel1 - type: texture - offset: 0x78730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_2: - symbol: gKartMario081Wheel2 - type: texture - offset: 0x787B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_3: - symbol: gKartMario081Wheel3 - type: texture - offset: 0x78830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_0: - symbol: gKartMario082Wheel0 - type: texture - offset: 0x788B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_1: - symbol: gKartMario082Wheel1 - type: texture - offset: 0x78930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_2: - symbol: gKartMario082Wheel2 - type: texture - offset: 0x789B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_3: - symbol: gKartMario082Wheel3 - type: texture - offset: 0x78A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_0: - symbol: gKartMario083Wheel0 - type: texture - offset: 0x78AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_1: - symbol: gKartMario083Wheel1 - type: texture - offset: 0x78B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_2: - symbol: gKartMario083Wheel2 - type: texture - offset: 0x78BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_3: - symbol: gKartMario083Wheel3 - type: texture - offset: 0x78C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_0: - symbol: gKartMario084Wheel0 - type: texture - offset: 0x78CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_1: - symbol: gKartMario084Wheel1 - type: texture - offset: 0x78D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_2: - symbol: gKartMario084Wheel2 - type: texture - offset: 0x78DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_3: - symbol: gKartMario084Wheel3 - type: texture - offset: 0x78E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_0: - symbol: gKartMario085Wheel0 - type: texture - offset: 0x78EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_1: - symbol: gKartMario085Wheel1 - type: texture - offset: 0x78F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_2: - symbol: gKartMario085Wheel2 - type: texture - offset: 0x78FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_3: - symbol: gKartMario085Wheel3 - type: texture - offset: 0x79030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_0: - symbol: gKartMario086Wheel0 - type: texture - offset: 0x790B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_1: - symbol: gKartMario086Wheel1 - type: texture - offset: 0x79130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_2: - symbol: gKartMario086Wheel2 - type: texture - offset: 0x791B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_3: - symbol: gKartMario086Wheel3 - type: texture - offset: 0x79230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_0: - symbol: gKartMario087Wheel0 - type: texture - offset: 0x792B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_1: - symbol: gKartMario087Wheel1 - type: texture - offset: 0x79330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_2: - symbol: gKartMario087Wheel2 - type: texture - offset: 0x793B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_3: - symbol: gKartMario087Wheel3 - type: texture - offset: 0x79430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_0: - symbol: gKartMario088Wheel0 - type: texture - offset: 0x794B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_1: - symbol: gKartMario088Wheel1 - type: texture - offset: 0x79530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_2: - symbol: gKartMario088Wheel2 - type: texture - offset: 0x795B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_3: - symbol: gKartMario088Wheel3 - type: texture - offset: 0x79630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_0: - symbol: gKartMario089Wheel0 - type: texture - offset: 0x796B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_1: - symbol: gKartMario089Wheel1 - type: texture - offset: 0x79730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_2: - symbol: gKartMario089Wheel2 - type: texture - offset: 0x797B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_3: - symbol: gKartMario089Wheel3 - type: texture - offset: 0x79830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_0: - symbol: gKartMario090Wheel0 - type: texture - offset: 0x798B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_1: - symbol: gKartMario090Wheel1 - type: texture - offset: 0x79930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_2: - symbol: gKartMario090Wheel2 - type: texture - offset: 0x799B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_3: - symbol: gKartMario090Wheel3 - type: texture - offset: 0x79A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_0: - symbol: gKartMario091Wheel0 - type: texture - offset: 0x79AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_1: - symbol: gKartMario091Wheel1 - type: texture - offset: 0x79B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_2: - symbol: gKartMario091Wheel2 - type: texture - offset: 0x79BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_3: - symbol: gKartMario091Wheel3 - type: texture - offset: 0x79C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_0: - symbol: gKartMario092Wheel0 - type: texture - offset: 0x79CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_1: - symbol: gKartMario092Wheel1 - type: texture - offset: 0x79D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_2: - symbol: gKartMario092Wheel2 - type: texture - offset: 0x79DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_3: - symbol: gKartMario092Wheel3 - type: texture - offset: 0x79E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_0: - symbol: gKartMario093Wheel0 - type: texture - offset: 0x79EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_1: - symbol: gKartMario093Wheel1 - type: texture - offset: 0x79F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_2: - symbol: gKartMario093Wheel2 - type: texture - offset: 0x79FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_3: - symbol: gKartMario093Wheel3 - type: texture - offset: 0x7A030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_0: - symbol: gKartMario094Wheel0 - type: texture - offset: 0x7A0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_1: - symbol: gKartMario094Wheel1 - type: texture - offset: 0x7A130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_2: - symbol: gKartMario094Wheel2 - type: texture - offset: 0x7A1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_3: - symbol: gKartMario094Wheel3 - type: texture - offset: 0x7A230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_0: - symbol: gKartMario095Wheel0 - type: texture - offset: 0x7A2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_1: - symbol: gKartMario095Wheel1 - type: texture - offset: 0x7A330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_2: - symbol: gKartMario095Wheel2 - type: texture - offset: 0x7A3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_3: - symbol: gKartMario095Wheel3 - type: texture - offset: 0x7A430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_0: - symbol: gKartMario096Wheel0 - type: texture - offset: 0x7A4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_1: - symbol: gKartMario096Wheel1 - type: texture - offset: 0x7A530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_2: - symbol: gKartMario096Wheel2 - type: texture - offset: 0x7A5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_3: - symbol: gKartMario096Wheel3 - type: texture - offset: 0x7A630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_0: - symbol: gKartMario097Wheel0 - type: texture - offset: 0x7A6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_1: - symbol: gKartMario097Wheel1 - type: texture - offset: 0x7A730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_2: - symbol: gKartMario097Wheel2 - type: texture - offset: 0x7A7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_3: - symbol: gKartMario097Wheel3 - type: texture - offset: 0x7A830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_0: - symbol: gKartMario098Wheel0 - type: texture - offset: 0x7A8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_1: - symbol: gKartMario098Wheel1 - type: texture - offset: 0x7A930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_2: - symbol: gKartMario098Wheel2 - type: texture - offset: 0x7A9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_3: - symbol: gKartMario098Wheel3 - type: texture - offset: 0x7AA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_0: - symbol: gKartMario099Wheel0 - type: texture - offset: 0x7AAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_1: - symbol: gKartMario099Wheel1 - type: texture - offset: 0x7AB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_2: - symbol: gKartMario099Wheel2 - type: texture - offset: 0x7ABB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_3: - symbol: gKartMario099Wheel3 - type: texture - offset: 0x7AC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_0: - symbol: gKartMario100Wheel0 - type: texture - offset: 0x7ACB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_1: - symbol: gKartMario100Wheel1 - type: texture - offset: 0x7AD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_2: - symbol: gKartMario100Wheel2 - type: texture - offset: 0x7ADB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_3: - symbol: gKartMario100Wheel3 - type: texture - offset: 0x7AE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_0: - symbol: gKartMario101Wheel0 - type: texture - offset: 0x7AEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_1: - symbol: gKartMario101Wheel1 - type: texture - offset: 0x7AF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_2: - symbol: gKartMario101Wheel2 - type: texture - offset: 0x7AFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_3: - symbol: gKartMario101Wheel3 - type: texture - offset: 0x7B030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_0: - symbol: gKartMario102Wheel0 - type: texture - offset: 0x7B0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_1: - symbol: gKartMario102Wheel1 - type: texture - offset: 0x7B130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_2: - symbol: gKartMario102Wheel2 - type: texture - offset: 0x7B1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_3: - symbol: gKartMario102Wheel3 - type: texture - offset: 0x7B230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_0: - symbol: gKartMario103Wheel0 - type: texture - offset: 0x7B2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_1: - symbol: gKartMario103Wheel1 - type: texture - offset: 0x7B330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_2: - symbol: gKartMario103Wheel2 - type: texture - offset: 0x7B3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_3: - symbol: gKartMario103Wheel3 - type: texture - offset: 0x7B430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_0: - symbol: gKartMario104Wheel0 - type: texture - offset: 0x7B4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_1: - symbol: gKartMario104Wheel1 - type: texture - offset: 0x7B530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_2: - symbol: gKartMario104Wheel2 - type: texture - offset: 0x7B5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_3: - symbol: gKartMario104Wheel3 - type: texture - offset: 0x7B630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_0: - symbol: gKartMario105Wheel0 - type: texture - offset: 0x7B6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_1: - symbol: gKartMario105Wheel1 - type: texture - offset: 0x7B730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_2: - symbol: gKartMario105Wheel2 - type: texture - offset: 0x7B7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_3: - symbol: gKartMario105Wheel3 - type: texture - offset: 0x7B830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_0: - symbol: gKartMario106Wheel0 - type: texture - offset: 0x7B8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_1: - symbol: gKartMario106Wheel1 - type: texture - offset: 0x7B930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_2: - symbol: gKartMario106Wheel2 - type: texture - offset: 0x7B9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_3: - symbol: gKartMario106Wheel3 - type: texture - offset: 0x7BA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_0: - symbol: gKartMario107Wheel0 - type: texture - offset: 0x7BAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_1: - symbol: gKartMario107Wheel1 - type: texture - offset: 0x7BB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_2: - symbol: gKartMario107Wheel2 - type: texture - offset: 0x7BBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_3: - symbol: gKartMario107Wheel3 - type: texture - offset: 0x7BC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_0: - symbol: gKartMario108Wheel0 - type: texture - offset: 0x7BCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_1: - symbol: gKartMario108Wheel1 - type: texture - offset: 0x7BD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_2: - symbol: gKartMario108Wheel2 - type: texture - offset: 0x7BDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_3: - symbol: gKartMario108Wheel3 - type: texture - offset: 0x7BE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_0: - symbol: gKartMario109Wheel0 - type: texture - offset: 0x7BEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_1: - symbol: gKartMario109Wheel1 - type: texture - offset: 0x7BF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_2: - symbol: gKartMario109Wheel2 - type: texture - offset: 0x7BFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_3: - symbol: gKartMario109Wheel3 - type: texture - offset: 0x7C030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_0: - symbol: gKartMario110Wheel0 - type: texture - offset: 0x7C0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_1: - symbol: gKartMario110Wheel1 - type: texture - offset: 0x7C130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_2: - symbol: gKartMario110Wheel2 - type: texture - offset: 0x7C1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_3: - symbol: gKartMario110Wheel3 - type: texture - offset: 0x7C230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_0: - symbol: gKartMario111Wheel0 - type: texture - offset: 0x7C2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_1: - symbol: gKartMario111Wheel1 - type: texture - offset: 0x7C330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_2: - symbol: gKartMario111Wheel2 - type: texture - offset: 0x7C3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_3: - symbol: gKartMario111Wheel3 - type: texture - offset: 0x7C430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_0: - symbol: gKartMario112Wheel0 - type: texture - offset: 0x7C4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_1: - symbol: gKartMario112Wheel1 - type: texture - offset: 0x7C530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_2: - symbol: gKartMario112Wheel2 - type: texture - offset: 0x7C5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_3: - symbol: gKartMario112Wheel3 - type: texture - offset: 0x7C630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_0: - symbol: gKartMario113Wheel0 - type: texture - offset: 0x7C6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_1: - symbol: gKartMario113Wheel1 - type: texture - offset: 0x7C730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_2: - symbol: gKartMario113Wheel2 - type: texture - offset: 0x7C7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_3: - symbol: gKartMario113Wheel3 - type: texture - offset: 0x7C830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_0: - symbol: gKartMario114Wheel0 - type: texture - offset: 0x7C8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_1: - symbol: gKartMario114Wheel1 - type: texture - offset: 0x7C930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_2: - symbol: gKartMario114Wheel2 - type: texture - offset: 0x7C9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_3: - symbol: gKartMario114Wheel3 - type: texture - offset: 0x7CA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_0: - symbol: gKartMario115Wheel0 - type: texture - offset: 0x7CAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_1: - symbol: gKartMario115Wheel1 - type: texture - offset: 0x7CB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_2: - symbol: gKartMario115Wheel2 - type: texture - offset: 0x7CBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_3: - symbol: gKartMario115Wheel3 - type: texture - offset: 0x7CC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_0: - symbol: gKartMario116Wheel0 - type: texture - offset: 0x7CCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_1: - symbol: gKartMario116Wheel1 - type: texture - offset: 0x7CD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_2: - symbol: gKartMario116Wheel2 - type: texture - offset: 0x7CDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_3: - symbol: gKartMario116Wheel3 - type: texture - offset: 0x7CE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_0: - symbol: gKartMario117Wheel0 - type: texture - offset: 0x7CEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_1: - symbol: gKartMario117Wheel1 - type: texture - offset: 0x7CF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_2: - symbol: gKartMario117Wheel2 - type: texture - offset: 0x7CFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_3: - symbol: gKartMario117Wheel3 - type: texture - offset: 0x7D030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_0: - symbol: gKartMario118Wheel0 - type: texture - offset: 0x7D0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_1: - symbol: gKartMario118Wheel1 - type: texture - offset: 0x7D130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_2: - symbol: gKartMario118Wheel2 - type: texture - offset: 0x7D1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_3: - symbol: gKartMario118Wheel3 - type: texture - offset: 0x7D230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_0: - symbol: gKartMario119Wheel0 - type: texture - offset: 0x7D2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_1: - symbol: gKartMario119Wheel1 - type: texture - offset: 0x7D330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_2: - symbol: gKartMario119Wheel2 - type: texture - offset: 0x7D3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_3: - symbol: gKartMario119Wheel3 - type: texture - offset: 0x7D430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_0: - symbol: gKartMario120Wheel0 - type: texture - offset: 0x7D4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_1: - symbol: gKartMario120Wheel1 - type: texture - offset: 0x7D530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_2: - symbol: gKartMario120Wheel2 - type: texture - offset: 0x7D5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_3: - symbol: gKartMario120Wheel3 - type: texture - offset: 0x7D630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_0: - symbol: gKartMario121Wheel0 - type: texture - offset: 0x7D6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_1: - symbol: gKartMario121Wheel1 - type: texture - offset: 0x7D730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_2: - symbol: gKartMario121Wheel2 - type: texture - offset: 0x7D7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_3: - symbol: gKartMario121Wheel3 - type: texture - offset: 0x7D830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_0: - symbol: gKartMario122Wheel0 - type: texture - offset: 0x7D8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_1: - symbol: gKartMario122Wheel1 - type: texture - offset: 0x7D930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_2: - symbol: gKartMario122Wheel2 - type: texture - offset: 0x7D9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_3: - symbol: gKartMario122Wheel3 - type: texture - offset: 0x7DA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_0: - symbol: gKartMario123Wheel0 - type: texture - offset: 0x7DAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_1: - symbol: gKartMario123Wheel1 - type: texture - offset: 0x7DB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_2: - symbol: gKartMario123Wheel2 - type: texture - offset: 0x7DBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_3: - symbol: gKartMario123Wheel3 - type: texture - offset: 0x7DC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_0: - symbol: gKartMario124Wheel0 - type: texture - offset: 0x7DCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_1: - symbol: gKartMario124Wheel1 - type: texture - offset: 0x7DD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_2: - symbol: gKartMario124Wheel2 - type: texture - offset: 0x7DDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_3: - symbol: gKartMario124Wheel3 - type: texture - offset: 0x7DE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_0: - symbol: gKartMario125Wheel0 - type: texture - offset: 0x7DEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_1: - symbol: gKartMario125Wheel1 - type: texture - offset: 0x7DF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_2: - symbol: gKartMario125Wheel2 - type: texture - offset: 0x7DFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_3: - symbol: gKartMario125Wheel3 - type: texture - offset: 0x7E030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_0: - symbol: gKartMario126Wheel0 - type: texture - offset: 0x7E0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_1: - symbol: gKartMario126Wheel1 - type: texture - offset: 0x7E130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_2: - symbol: gKartMario126Wheel2 - type: texture - offset: 0x7E1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_3: - symbol: gKartMario126Wheel3 - type: texture - offset: 0x7E230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_0: - symbol: gKartMario127Wheel0 - type: texture - offset: 0x7E2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_1: - symbol: gKartMario127Wheel1 - type: texture - offset: 0x7E330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_2: - symbol: gKartMario127Wheel2 - type: texture - offset: 0x7E3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_3: - symbol: gKartMario127Wheel3 - type: texture - offset: 0x7E430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_0: - symbol: gKartMario128Wheel0 - type: texture - offset: 0x7E4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_1: - symbol: gKartMario128Wheel1 - type: texture - offset: 0x7E530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_2: - symbol: gKartMario128Wheel2 - type: texture - offset: 0x7E5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_3: - symbol: gKartMario128Wheel3 - type: texture - offset: 0x7E630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_0: - symbol: gKartMario129Wheel0 - type: texture - offset: 0x7E6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_1: - symbol: gKartMario129Wheel1 - type: texture - offset: 0x7E730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_2: - symbol: gKartMario129Wheel2 - type: texture - offset: 0x7E7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_3: - symbol: gKartMario129Wheel3 - type: texture - offset: 0x7E830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_0: - symbol: gKartMario130Wheel0 - type: texture - offset: 0x7E8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_1: - symbol: gKartMario130Wheel1 - type: texture - offset: 0x7E930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_2: - symbol: gKartMario130Wheel2 - type: texture - offset: 0x7E9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_3: - symbol: gKartMario130Wheel3 - type: texture - offset: 0x7EA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_0: - symbol: gKartMario131Wheel0 - type: texture - offset: 0x7EAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_1: - symbol: gKartMario131Wheel1 - type: texture - offset: 0x7EB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_2: - symbol: gKartMario131Wheel2 - type: texture - offset: 0x7EBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_3: - symbol: gKartMario131Wheel3 - type: texture - offset: 0x7EC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_0: - symbol: gKartMario132Wheel0 - type: texture - offset: 0x7ECB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_1: - symbol: gKartMario132Wheel1 - type: texture - offset: 0x7ED30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_2: - symbol: gKartMario132Wheel2 - type: texture - offset: 0x7EDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_3: - symbol: gKartMario132Wheel3 - type: texture - offset: 0x7EE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_0: - symbol: gKartMario133Wheel0 - type: texture - offset: 0x7EEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_1: - symbol: gKartMario133Wheel1 - type: texture - offset: 0x7EF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_2: - symbol: gKartMario133Wheel2 - type: texture - offset: 0x7EFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_3: - symbol: gKartMario133Wheel3 - type: texture - offset: 0x7F030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_0: - symbol: gKartMario134Wheel0 - type: texture - offset: 0x7F0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_1: - symbol: gKartMario134Wheel1 - type: texture - offset: 0x7F130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_2: - symbol: gKartMario134Wheel2 - type: texture - offset: 0x7F1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_3: - symbol: gKartMario134Wheel3 - type: texture - offset: 0x7F230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_0: - symbol: gKartMario135Wheel0 - type: texture - offset: 0x7F2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_1: - symbol: gKartMario135Wheel1 - type: texture - offset: 0x7F330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_2: - symbol: gKartMario135Wheel2 - type: texture - offset: 0x7F3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_3: - symbol: gKartMario135Wheel3 - type: texture - offset: 0x7F430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_0: - symbol: gKartMario136Wheel0 - type: texture - offset: 0x7F4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_1: - symbol: gKartMario136Wheel1 - type: texture - offset: 0x7F530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_2: - symbol: gKartMario136Wheel2 - type: texture - offset: 0x7F5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_3: - symbol: gKartMario136Wheel3 - type: texture - offset: 0x7F630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_0: - symbol: gKartMario137Wheel0 - type: texture - offset: 0x7F6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_1: - symbol: gKartMario137Wheel1 - type: texture - offset: 0x7F730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_2: - symbol: gKartMario137Wheel2 - type: texture - offset: 0x7F7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_3: - symbol: gKartMario137Wheel3 - type: texture - offset: 0x7F830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_0: - symbol: gKartMario138Wheel0 - type: texture - offset: 0x7F8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_1: - symbol: gKartMario138Wheel1 - type: texture - offset: 0x7F930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_2: - symbol: gKartMario138Wheel2 - type: texture - offset: 0x7F9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_3: - symbol: gKartMario138Wheel3 - type: texture - offset: 0x7FA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_0: - symbol: gKartMario139Wheel0 - type: texture - offset: 0x7FAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_1: - symbol: gKartMario139Wheel1 - type: texture - offset: 0x7FB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_2: - symbol: gKartMario139Wheel2 - type: texture - offset: 0x7FBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_3: - symbol: gKartMario139Wheel3 - type: texture - offset: 0x7FC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_0: - symbol: gKartMario140Wheel0 - type: texture - offset: 0x7FCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_1: - symbol: gKartMario140Wheel1 - type: texture - offset: 0x7FD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_2: - symbol: gKartMario140Wheel2 - type: texture - offset: 0x7FDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_3: - symbol: gKartMario140Wheel3 - type: texture - offset: 0x7FE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_0: - symbol: gKartMario141Wheel0 - type: texture - offset: 0x7FEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_1: - symbol: gKartMario141Wheel1 - type: texture - offset: 0x7FF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_2: - symbol: gKartMario141Wheel2 - type: texture - offset: 0x7FFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_3: - symbol: gKartMario141Wheel3 - type: texture - offset: 0x80030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_0: - symbol: gKartMario142Wheel0 - type: texture - offset: 0x800B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_1: - symbol: gKartMario142Wheel1 - type: texture - offset: 0x80130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_2: - symbol: gKartMario142Wheel2 - type: texture - offset: 0x801B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_3: - symbol: gKartMario142Wheel3 - type: texture - offset: 0x80230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_0: - symbol: gKartMario143Wheel0 - type: texture - offset: 0x802B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_1: - symbol: gKartMario143Wheel1 - type: texture - offset: 0x80330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_2: - symbol: gKartMario143Wheel2 - type: texture - offset: 0x803B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_3: - symbol: gKartMario143Wheel3 - type: texture - offset: 0x80430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_0: - symbol: gKartMario144Wheel0 - type: texture - offset: 0x804B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_1: - symbol: gKartMario144Wheel1 - type: texture - offset: 0x80530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_2: - symbol: gKartMario144Wheel2 - type: texture - offset: 0x805B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_3: - symbol: gKartMario144Wheel3 - type: texture - offset: 0x80630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_0: - symbol: gKartMario145Wheel0 - type: texture - offset: 0x806B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_1: - symbol: gKartMario145Wheel1 - type: texture - offset: 0x80730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_2: - symbol: gKartMario145Wheel2 - type: texture - offset: 0x807B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_3: - symbol: gKartMario145Wheel3 - type: texture - offset: 0x80830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_0: - symbol: gKartMario146Wheel0 - type: texture - offset: 0x808B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_1: - symbol: gKartMario146Wheel1 - type: texture - offset: 0x80930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_2: - symbol: gKartMario146Wheel2 - type: texture - offset: 0x809B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_3: - symbol: gKartMario146Wheel3 - type: texture - offset: 0x80A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_0: - symbol: gKartMario147Wheel0 - type: texture - offset: 0x80AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_1: - symbol: gKartMario147Wheel1 - type: texture - offset: 0x80B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_2: - symbol: gKartMario147Wheel2 - type: texture - offset: 0x80BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_3: - symbol: gKartMario147Wheel3 - type: texture - offset: 0x80C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_0: - symbol: gKartMario148Wheel0 - type: texture - offset: 0x80CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_1: - symbol: gKartMario148Wheel1 - type: texture - offset: 0x80D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_2: - symbol: gKartMario148Wheel2 - type: texture - offset: 0x80DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_3: - symbol: gKartMario148Wheel3 - type: texture - offset: 0x80E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_0: - symbol: gKartMario149Wheel0 - type: texture - offset: 0x80EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_1: - symbol: gKartMario149Wheel1 - type: texture - offset: 0x80F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_2: - symbol: gKartMario149Wheel2 - type: texture - offset: 0x80FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_3: - symbol: gKartMario149Wheel3 - type: texture - offset: 0x81030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_0: - symbol: gKartMario150Wheel0 - type: texture - offset: 0x810B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_1: - symbol: gKartMario150Wheel1 - type: texture - offset: 0x81130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_2: - symbol: gKartMario150Wheel2 - type: texture - offset: 0x811B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_3: - symbol: gKartMario150Wheel3 - type: texture - offset: 0x81230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_0: - symbol: gKartMario151Wheel0 - type: texture - offset: 0x812B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_1: - symbol: gKartMario151Wheel1 - type: texture - offset: 0x81330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_2: - symbol: gKartMario151Wheel2 - type: texture - offset: 0x813B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_3: - symbol: gKartMario151Wheel3 - type: texture - offset: 0x81430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_0: - symbol: gKartMario152Wheel0 - type: texture - offset: 0x814B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_1: - symbol: gKartMario152Wheel1 - type: texture - offset: 0x81530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_2: - symbol: gKartMario152Wheel2 - type: texture - offset: 0x815B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_3: - symbol: gKartMario152Wheel3 - type: texture - offset: 0x81630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_0: - symbol: gKartMario153Wheel0 - type: texture - offset: 0x816B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_1: - symbol: gKartMario153Wheel1 - type: texture - offset: 0x81730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_2: - symbol: gKartMario153Wheel2 - type: texture - offset: 0x817B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_3: - symbol: gKartMario153Wheel3 - type: texture - offset: 0x81830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_0: - symbol: gKartMario154Wheel0 - type: texture - offset: 0x818B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_1: - symbol: gKartMario154Wheel1 - type: texture - offset: 0x81930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_2: - symbol: gKartMario154Wheel2 - type: texture - offset: 0x819B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_3: - symbol: gKartMario154Wheel3 - type: texture - offset: 0x81A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_0: - symbol: gKartMario155Wheel0 - type: texture - offset: 0x81AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_1: - symbol: gKartMario155Wheel1 - type: texture - offset: 0x81B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_2: - symbol: gKartMario155Wheel2 - type: texture - offset: 0x81BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_3: - symbol: gKartMario155Wheel3 - type: texture - offset: 0x81C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_0: - symbol: gKartMario156Wheel0 - type: texture - offset: 0x81CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_1: - symbol: gKartMario156Wheel1 - type: texture - offset: 0x81D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_2: - symbol: gKartMario156Wheel2 - type: texture - offset: 0x81DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_3: - symbol: gKartMario156Wheel3 - type: texture - offset: 0x81E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_0: - symbol: gKartMario157Wheel0 - type: texture - offset: 0x81EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_1: - symbol: gKartMario157Wheel1 - type: texture - offset: 0x81F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_2: - symbol: gKartMario157Wheel2 - type: texture - offset: 0x81FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_3: - symbol: gKartMario157Wheel3 - type: texture - offset: 0x82030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_0: - symbol: gKartMario158Wheel0 - type: texture - offset: 0x820B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_1: - symbol: gKartMario158Wheel1 - type: texture - offset: 0x82130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_2: - symbol: gKartMario158Wheel2 - type: texture - offset: 0x821B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_3: - symbol: gKartMario158Wheel3 - type: texture - offset: 0x82230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_0: - symbol: gKartMario159Wheel0 - type: texture - offset: 0x822B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_1: - symbol: gKartMario159Wheel1 - type: texture - offset: 0x82330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_2: - symbol: gKartMario159Wheel2 - type: texture - offset: 0x823B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_3: - symbol: gKartMario159Wheel3 - type: texture - offset: 0x82430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_0: - symbol: gKartMario160Wheel0 - type: texture - offset: 0x824B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_1: - symbol: gKartMario160Wheel1 - type: texture - offset: 0x82530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_2: - symbol: gKartMario160Wheel2 - type: texture - offset: 0x825B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_3: - symbol: gKartMario160Wheel3 - type: texture - offset: 0x82630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_0: - symbol: gKartMario161Wheel0 - type: texture - offset: 0x826B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_1: - symbol: gKartMario161Wheel1 - type: texture - offset: 0x82730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_2: - symbol: gKartMario161Wheel2 - type: texture - offset: 0x827B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_3: - symbol: gKartMario161Wheel3 - type: texture - offset: 0x82830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_0: - symbol: gKartMario162Wheel0 - type: texture - offset: 0x828B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_1: - symbol: gKartMario162Wheel1 - type: texture - offset: 0x82930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_2: - symbol: gKartMario162Wheel2 - type: texture - offset: 0x829B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_3: - symbol: gKartMario162Wheel3 - type: texture - offset: 0x82A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_0: - symbol: gKartMario163Wheel0 - type: texture - offset: 0x82AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_1: - symbol: gKartMario163Wheel1 - type: texture - offset: 0x82B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_2: - symbol: gKartMario163Wheel2 - type: texture - offset: 0x82BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_3: - symbol: gKartMario163Wheel3 - type: texture - offset: 0x82C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_0: - symbol: gKartMario164Wheel0 - type: texture - offset: 0x82CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_1: - symbol: gKartMario164Wheel1 - type: texture - offset: 0x82D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_2: - symbol: gKartMario164Wheel2 - type: texture - offset: 0x82DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_3: - symbol: gKartMario164Wheel3 - type: texture - offset: 0x82E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_0: - symbol: gKartMario165Wheel0 - type: texture - offset: 0x82EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_1: - symbol: gKartMario165Wheel1 - type: texture - offset: 0x82F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_2: - symbol: gKartMario165Wheel2 - type: texture - offset: 0x82FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_3: - symbol: gKartMario165Wheel3 - type: texture - offset: 0x83030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_0: - symbol: gKartMario166Wheel0 - type: texture - offset: 0x830B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_1: - symbol: gKartMario166Wheel1 - type: texture - offset: 0x83130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_2: - symbol: gKartMario166Wheel2 - type: texture - offset: 0x831B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_3: - symbol: gKartMario166Wheel3 - type: texture - offset: 0x83230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_0: - symbol: gKartMario167Wheel0 - type: texture - offset: 0x832B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_1: - symbol: gKartMario167Wheel1 - type: texture - offset: 0x83330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_2: - symbol: gKartMario167Wheel2 - type: texture - offset: 0x833B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_3: - symbol: gKartMario167Wheel3 - type: texture - offset: 0x83430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_0: - symbol: gKartMario168Wheel0 - type: texture - offset: 0x834B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_1: - symbol: gKartMario168Wheel1 - type: texture - offset: 0x83530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_2: - symbol: gKartMario168Wheel2 - type: texture - offset: 0x835B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_3: - symbol: gKartMario168Wheel3 - type: texture - offset: 0x83630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_0: - symbol: gKartMario169Wheel0 - type: texture - offset: 0x836B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_1: - symbol: gKartMario169Wheel1 - type: texture - offset: 0x83730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_2: - symbol: gKartMario169Wheel2 - type: texture - offset: 0x837B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_3: - symbol: gKartMario169Wheel3 - type: texture - offset: 0x83830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_0: - symbol: gKartMario170Wheel0 - type: texture - offset: 0x838B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_1: - symbol: gKartMario170Wheel1 - type: texture - offset: 0x83930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_2: - symbol: gKartMario170Wheel2 - type: texture - offset: 0x839B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_3: - symbol: gKartMario170Wheel3 - type: texture - offset: 0x83A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_0: - symbol: gKartMario171Wheel0 - type: texture - offset: 0x83AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_1: - symbol: gKartMario171Wheel1 - type: texture - offset: 0x83B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_2: - symbol: gKartMario171Wheel2 - type: texture - offset: 0x83BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_3: - symbol: gKartMario171Wheel3 - type: texture - offset: 0x83C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_0: - symbol: gKartMario172Wheel0 - type: texture - offset: 0x83CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_1: - symbol: gKartMario172Wheel1 - type: texture - offset: 0x83D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_2: - symbol: gKartMario172Wheel2 - type: texture - offset: 0x83DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_3: - symbol: gKartMario172Wheel3 - type: texture - offset: 0x83E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_0: - symbol: gKartMario173Wheel0 - type: texture - offset: 0x83EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_1: - symbol: gKartMario173Wheel1 - type: texture - offset: 0x83F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_2: - symbol: gKartMario173Wheel2 - type: texture - offset: 0x83FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_3: - symbol: gKartMario173Wheel3 - type: texture - offset: 0x84030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_0: - symbol: gKartMario174Wheel0 - type: texture - offset: 0x840B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_1: - symbol: gKartMario174Wheel1 - type: texture - offset: 0x84130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_2: - symbol: gKartMario174Wheel2 - type: texture - offset: 0x841B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_3: - symbol: gKartMario174Wheel3 - type: texture - offset: 0x84230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_0: - symbol: gKartMario175Wheel0 - type: texture - offset: 0x842B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_1: - symbol: gKartMario175Wheel1 - type: texture - offset: 0x84330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_2: - symbol: gKartMario175Wheel2 - type: texture - offset: 0x843B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_3: - symbol: gKartMario175Wheel3 - type: texture - offset: 0x84430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_0: - symbol: gKartMario176Wheel0 - type: texture - offset: 0x844B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_1: - symbol: gKartMario176Wheel1 - type: texture - offset: 0x84530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_2: - symbol: gKartMario176Wheel2 - type: texture - offset: 0x845B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_3: - symbol: gKartMario176Wheel3 - type: texture - offset: 0x84630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_0: - symbol: gKartMario177Wheel0 - type: texture - offset: 0x846B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_1: - symbol: gKartMario177Wheel1 - type: texture - offset: 0x84730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_2: - symbol: gKartMario177Wheel2 - type: texture - offset: 0x847B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_3: - symbol: gKartMario177Wheel3 - type: texture - offset: 0x84830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_0: - symbol: gKartMario178Wheel0 - type: texture - offset: 0x848B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_1: - symbol: gKartMario178Wheel1 - type: texture - offset: 0x84930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_2: - symbol: gKartMario178Wheel2 - type: texture - offset: 0x849B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_3: - symbol: gKartMario178Wheel3 - type: texture - offset: 0x84A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_0: - symbol: gKartMario179Wheel0 - type: texture - offset: 0x84AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_1: - symbol: gKartMario179Wheel1 - type: texture - offset: 0x84B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_2: - symbol: gKartMario179Wheel2 - type: texture - offset: 0x84BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_3: - symbol: gKartMario179Wheel3 - type: texture - offset: 0x84C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_0: - symbol: gKartMario180Wheel0 - type: texture - offset: 0x84CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_1: - symbol: gKartMario180Wheel1 - type: texture - offset: 0x84D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_2: - symbol: gKartMario180Wheel2 - type: texture - offset: 0x84DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_3: - symbol: gKartMario180Wheel3 - type: texture - offset: 0x84E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_0: - symbol: gKartMario181Wheel0 - type: texture - offset: 0x84EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_1: - symbol: gKartMario181Wheel1 - type: texture - offset: 0x84F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_2: - symbol: gKartMario181Wheel2 - type: texture - offset: 0x84FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_3: - symbol: gKartMario181Wheel3 - type: texture - offset: 0x85030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_0: - symbol: gKartMario182Wheel0 - type: texture - offset: 0x850B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_1: - symbol: gKartMario182Wheel1 - type: texture - offset: 0x85130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_2: - symbol: gKartMario182Wheel2 - type: texture - offset: 0x851B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_3: - symbol: gKartMario182Wheel3 - type: texture - offset: 0x85230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_0: - symbol: gKartMario183Wheel0 - type: texture - offset: 0x852B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_1: - symbol: gKartMario183Wheel1 - type: texture - offset: 0x85330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_2: - symbol: gKartMario183Wheel2 - type: texture - offset: 0x853B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_3: - symbol: gKartMario183Wheel3 - type: texture - offset: 0x85430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_0: - symbol: gKartMario184Wheel0 - type: texture - offset: 0x854B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_1: - symbol: gKartMario184Wheel1 - type: texture - offset: 0x85530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_2: - symbol: gKartMario184Wheel2 - type: texture - offset: 0x855B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_3: - symbol: gKartMario184Wheel3 - type: texture - offset: 0x85630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_0: - symbol: gKartMario185Wheel0 - type: texture - offset: 0x856B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_1: - symbol: gKartMario185Wheel1 - type: texture - offset: 0x85730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_2: - symbol: gKartMario185Wheel2 - type: texture - offset: 0x857B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_3: - symbol: gKartMario185Wheel3 - type: texture - offset: 0x85830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_0: - symbol: gKartMario186Wheel0 - type: texture - offset: 0x858B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_1: - symbol: gKartMario186Wheel1 - type: texture - offset: 0x85930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_2: - symbol: gKartMario186Wheel2 - type: texture - offset: 0x859B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_3: - symbol: gKartMario186Wheel3 - type: texture - offset: 0x85A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_0: - symbol: gKartMario187Wheel0 - type: texture - offset: 0x85AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_1: - symbol: gKartMario187Wheel1 - type: texture - offset: 0x85B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_2: - symbol: gKartMario187Wheel2 - type: texture - offset: 0x85BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_3: - symbol: gKartMario187Wheel3 - type: texture - offset: 0x85C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_0: - symbol: gKartMario188Wheel0 - type: texture - offset: 0x85CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_1: - symbol: gKartMario188Wheel1 - type: texture - offset: 0x85D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_2: - symbol: gKartMario188Wheel2 - type: texture - offset: 0x85DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_3: - symbol: gKartMario188Wheel3 - type: texture - offset: 0x85E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_0: - symbol: gKartMario189Wheel0 - type: texture - offset: 0x85EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_1: - symbol: gKartMario189Wheel1 - type: texture - offset: 0x85F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_2: - symbol: gKartMario189Wheel2 - type: texture - offset: 0x85FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_3: - symbol: gKartMario189Wheel3 - type: texture - offset: 0x86030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_0: - symbol: gKartMario190Wheel0 - type: texture - offset: 0x860B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_1: - symbol: gKartMario190Wheel1 - type: texture - offset: 0x86130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_2: - symbol: gKartMario190Wheel2 - type: texture - offset: 0x861B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_3: - symbol: gKartMario190Wheel3 - type: texture - offset: 0x86230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_0: - symbol: gKartMario191Wheel0 - type: texture - offset: 0x862B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_1: - symbol: gKartMario191Wheel1 - type: texture - offset: 0x86330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_2: - symbol: gKartMario191Wheel2 - type: texture - offset: 0x863B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_3: - symbol: gKartMario191Wheel3 - type: texture - offset: 0x86430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_0: - symbol: gKartMario192Wheel0 - type: texture - offset: 0x864B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_1: - symbol: gKartMario192Wheel1 - type: texture - offset: 0x86530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_2: - symbol: gKartMario192Wheel2 - type: texture - offset: 0x865B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_3: - symbol: gKartMario192Wheel3 - type: texture - offset: 0x86630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_0: - symbol: gKartMario193Wheel0 - type: texture - offset: 0x866B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_1: - symbol: gKartMario193Wheel1 - type: texture - offset: 0x86730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_2: - symbol: gKartMario193Wheel2 - type: texture - offset: 0x867B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_3: - symbol: gKartMario193Wheel3 - type: texture - offset: 0x86830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_0: - symbol: gKartMario194Wheel0 - type: texture - offset: 0x868B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_1: - symbol: gKartMario194Wheel1 - type: texture - offset: 0x86930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_2: - symbol: gKartMario194Wheel2 - type: texture - offset: 0x869B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_3: - symbol: gKartMario194Wheel3 - type: texture - offset: 0x86A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_0: - symbol: gKartMario195Wheel0 - type: texture - offset: 0x86AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_1: - symbol: gKartMario195Wheel1 - type: texture - offset: 0x86B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_2: - symbol: gKartMario195Wheel2 - type: texture - offset: 0x86BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_3: - symbol: gKartMario195Wheel3 - type: texture - offset: 0x86C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_0: - symbol: gKartMario196Wheel0 - type: texture - offset: 0x86CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_1: - symbol: gKartMario196Wheel1 - type: texture - offset: 0x86D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_2: - symbol: gKartMario196Wheel2 - type: texture - offset: 0x86DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_3: - symbol: gKartMario196Wheel3 - type: texture - offset: 0x86E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_0: - symbol: gKartMario197Wheel0 - type: texture - offset: 0x86EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_1: - symbol: gKartMario197Wheel1 - type: texture - offset: 0x86F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_2: - symbol: gKartMario197Wheel2 - type: texture - offset: 0x86FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_3: - symbol: gKartMario197Wheel3 - type: texture - offset: 0x87030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_0: - symbol: gKartMario198Wheel0 - type: texture - offset: 0x870B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_1: - symbol: gKartMario198Wheel1 - type: texture - offset: 0x87130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_2: - symbol: gKartMario198Wheel2 - type: texture - offset: 0x871B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_3: - symbol: gKartMario198Wheel3 - type: texture - offset: 0x87230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_0: - symbol: gKartMario199Wheel0 - type: texture - offset: 0x872B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_1: - symbol: gKartMario199Wheel1 - type: texture - offset: 0x87330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_2: - symbol: gKartMario199Wheel2 - type: texture - offset: 0x873B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_3: - symbol: gKartMario199Wheel3 - type: texture - offset: 0x87430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_0: - symbol: gKartMario200Wheel0 - type: texture - offset: 0x874B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_1: - symbol: gKartMario200Wheel1 - type: texture - offset: 0x87530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_2: - symbol: gKartMario200Wheel2 - type: texture - offset: 0x875B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_3: - symbol: gKartMario200Wheel3 - type: texture - offset: 0x87630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_0: - symbol: gKartMario201Wheel0 - type: texture - offset: 0x876B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_1: - symbol: gKartMario201Wheel1 - type: texture - offset: 0x87730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_2: - symbol: gKartMario201Wheel2 - type: texture - offset: 0x877B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_3: - symbol: gKartMario201Wheel3 - type: texture - offset: 0x87830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_0: - symbol: gKartMario202Wheel0 - type: texture - offset: 0x878B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_1: - symbol: gKartMario202Wheel1 - type: texture - offset: 0x87930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_2: - symbol: gKartMario202Wheel2 - type: texture - offset: 0x879B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_3: - symbol: gKartMario202Wheel3 - type: texture - offset: 0x87A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_0: - symbol: gKartMario203Wheel0 - type: texture - offset: 0x87AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_1: - symbol: gKartMario203Wheel1 - type: texture - offset: 0x87B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_2: - symbol: gKartMario203Wheel2 - type: texture - offset: 0x87BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_3: - symbol: gKartMario203Wheel3 - type: texture - offset: 0x87C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_0: - symbol: gKartMario204Wheel0 - type: texture - offset: 0x87CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_1: - symbol: gKartMario204Wheel1 - type: texture - offset: 0x87D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_2: - symbol: gKartMario204Wheel2 - type: texture - offset: 0x87DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_3: - symbol: gKartMario204Wheel3 - type: texture - offset: 0x87E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_0: - symbol: gKartMario205Wheel0 - type: texture - offset: 0x87EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_1: - symbol: gKartMario205Wheel1 - type: texture - offset: 0x87F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_2: - symbol: gKartMario205Wheel2 - type: texture - offset: 0x87FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_3: - symbol: gKartMario205Wheel3 - type: texture - offset: 0x88030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_0: - symbol: gKartMario206Wheel0 - type: texture - offset: 0x880B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_1: - symbol: gKartMario206Wheel1 - type: texture - offset: 0x88130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_2: - symbol: gKartMario206Wheel2 - type: texture - offset: 0x881B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_3: - symbol: gKartMario206Wheel3 - type: texture - offset: 0x88230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_0: - symbol: gKartMario207Wheel0 - type: texture - offset: 0x882B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_1: - symbol: gKartMario207Wheel1 - type: texture - offset: 0x88330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_2: - symbol: gKartMario207Wheel2 - type: texture - offset: 0x883B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_3: - symbol: gKartMario207Wheel3 - type: texture - offset: 0x88430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_0: - symbol: gKartMario208Wheel0 - type: texture - offset: 0x884B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_1: - symbol: gKartMario208Wheel1 - type: texture - offset: 0x88530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_2: - symbol: gKartMario208Wheel2 - type: texture - offset: 0x885B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_3: - symbol: gKartMario208Wheel3 - type: texture - offset: 0x88630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_0: - symbol: gKartMario209Wheel0 - type: texture - offset: 0x886B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_1: - symbol: gKartMario209Wheel1 - type: texture - offset: 0x88730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_2: - symbol: gKartMario209Wheel2 - type: texture - offset: 0x887B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_3: - symbol: gKartMario209Wheel3 - type: texture - offset: 0x88830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_0: - symbol: gKartMario210Wheel0 - type: texture - offset: 0x888B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_1: - symbol: gKartMario210Wheel1 - type: texture - offset: 0x88930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_2: - symbol: gKartMario210Wheel2 - type: texture - offset: 0x889B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_3: - symbol: gKartMario210Wheel3 - type: texture - offset: 0x88A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_0: - symbol: gKartMario211Wheel0 - type: texture - offset: 0x88AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_1: - symbol: gKartMario211Wheel1 - type: texture - offset: 0x88B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_2: - symbol: gKartMario211Wheel2 - type: texture - offset: 0x88BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_3: - symbol: gKartMario211Wheel3 - type: texture - offset: 0x88C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_0: - symbol: gKartMario212Wheel0 - type: texture - offset: 0x88CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_1: - symbol: gKartMario212Wheel1 - type: texture - offset: 0x88D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_2: - symbol: gKartMario212Wheel2 - type: texture - offset: 0x88DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_3: - symbol: gKartMario212Wheel3 - type: texture - offset: 0x88E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_0: - symbol: gKartMario213Wheel0 - type: texture - offset: 0x88EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_1: - symbol: gKartMario213Wheel1 - type: texture - offset: 0x88F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_2: - symbol: gKartMario213Wheel2 - type: texture - offset: 0x88FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_3: - symbol: gKartMario213Wheel3 - type: texture - offset: 0x89030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_0: - symbol: gKartMario214Wheel0 - type: texture - offset: 0x890B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_1: - symbol: gKartMario214Wheel1 - type: texture - offset: 0x89130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_2: - symbol: gKartMario214Wheel2 - type: texture - offset: 0x891B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_3: - symbol: gKartMario214Wheel3 - type: texture - offset: 0x89230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_0: - symbol: gKartMario215Wheel0 - type: texture - offset: 0x892B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_1: - symbol: gKartMario215Wheel1 - type: texture - offset: 0x89330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_2: - symbol: gKartMario215Wheel2 - type: texture - offset: 0x893B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_3: - symbol: gKartMario215Wheel3 - type: texture - offset: 0x89430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_0: - symbol: gKartMario216Wheel0 - type: texture - offset: 0x894B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_1: - symbol: gKartMario216Wheel1 - type: texture - offset: 0x89530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_2: - symbol: gKartMario216Wheel2 - type: texture - offset: 0x895B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_3: - symbol: gKartMario216Wheel3 - type: texture - offset: 0x89630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_0: - symbol: gKartMario217Wheel0 - type: texture - offset: 0x896B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_1: - symbol: gKartMario217Wheel1 - type: texture - offset: 0x89730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_2: - symbol: gKartMario217Wheel2 - type: texture - offset: 0x897B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_3: - symbol: gKartMario217Wheel3 - type: texture - offset: 0x89830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_0: - symbol: gKartMario218Wheel0 - type: texture - offset: 0x898B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_1: - symbol: gKartMario218Wheel1 - type: texture - offset: 0x89930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_2: - symbol: gKartMario218Wheel2 - type: texture - offset: 0x899B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_3: - symbol: gKartMario218Wheel3 - type: texture - offset: 0x89A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_0: - symbol: gKartMario219Wheel0 - type: texture - offset: 0x89AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_1: - symbol: gKartMario219Wheel1 - type: texture - offset: 0x89B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_2: - symbol: gKartMario219Wheel2 - type: texture - offset: 0x89BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_3: - symbol: gKartMario219Wheel3 - type: texture - offset: 0x89C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_0: - symbol: gKartMario220Wheel0 - type: texture - offset: 0x89CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_1: - symbol: gKartMario220Wheel1 - type: texture - offset: 0x89D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_2: - symbol: gKartMario220Wheel2 - type: texture - offset: 0x89DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_3: - symbol: gKartMario220Wheel3 - type: texture - offset: 0x89E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_0: - symbol: gKartMario221Wheel0 - type: texture - offset: 0x89EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_1: - symbol: gKartMario221Wheel1 - type: texture - offset: 0x89F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_2: - symbol: gKartMario221Wheel2 - type: texture - offset: 0x89FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_3: - symbol: gKartMario221Wheel3 - type: texture - offset: 0x8A030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_0: - symbol: gKartMario222Wheel0 - type: texture - offset: 0x8A0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_1: - symbol: gKartMario222Wheel1 - type: texture - offset: 0x8A130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_2: - symbol: gKartMario222Wheel2 - type: texture - offset: 0x8A1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_3: - symbol: gKartMario222Wheel3 - type: texture - offset: 0x8A230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_0: - symbol: gKartMario223Wheel0 - type: texture - offset: 0x8A2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_1: - symbol: gKartMario223Wheel1 - type: texture - offset: 0x8A330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_2: - symbol: gKartMario223Wheel2 - type: texture - offset: 0x8A3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_3: - symbol: gKartMario223Wheel3 - type: texture - offset: 0x8A430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_0: - symbol: gKartMario224Wheel0 - type: texture - offset: 0x8A4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_1: - symbol: gKartMario224Wheel1 - type: texture - offset: 0x8A530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_2: - symbol: gKartMario224Wheel2 - type: texture - offset: 0x8A5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_3: - symbol: gKartMario224Wheel3 - type: texture - offset: 0x8A630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_0: - symbol: gKartMario225Wheel0 - type: texture - offset: 0x8A6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_1: - symbol: gKartMario225Wheel1 - type: texture - offset: 0x8A730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_2: - symbol: gKartMario225Wheel2 - type: texture - offset: 0x8A7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_3: - symbol: gKartMario225Wheel3 - type: texture - offset: 0x8A830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_0: - symbol: gKartMario226Wheel0 - type: texture - offset: 0x8A8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_1: - symbol: gKartMario226Wheel1 - type: texture - offset: 0x8A930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_2: - symbol: gKartMario226Wheel2 - type: texture - offset: 0x8A9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_3: - symbol: gKartMario226Wheel3 - type: texture - offset: 0x8AA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_0: - symbol: gKartMario227Wheel0 - type: texture - offset: 0x8AAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_1: - symbol: gKartMario227Wheel1 - type: texture - offset: 0x8AB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_2: - symbol: gKartMario227Wheel2 - type: texture - offset: 0x8ABB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_3: - symbol: gKartMario227Wheel3 - type: texture - offset: 0x8AC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_0: - symbol: gKartMario228Wheel0 - type: texture - offset: 0x8ACB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_1: - symbol: gKartMario228Wheel1 - type: texture - offset: 0x8AD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_2: - symbol: gKartMario228Wheel2 - type: texture - offset: 0x8ADB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_3: - symbol: gKartMario228Wheel3 - type: texture - offset: 0x8AE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_0: - symbol: gKartMario229Wheel0 - type: texture - offset: 0x8AEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_1: - symbol: gKartMario229Wheel1 - type: texture - offset: 0x8AF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_2: - symbol: gKartMario229Wheel2 - type: texture - offset: 0x8AFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_3: - symbol: gKartMario229Wheel3 - type: texture - offset: 0x8B030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_0: - symbol: gKartMario230Wheel0 - type: texture - offset: 0x8B0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_1: - symbol: gKartMario230Wheel1 - type: texture - offset: 0x8B130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_2: - symbol: gKartMario230Wheel2 - type: texture - offset: 0x8B1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_3: - symbol: gKartMario230Wheel3 - type: texture - offset: 0x8B230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_0: - symbol: gKartMario231Wheel0 - type: texture - offset: 0x8B2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_1: - symbol: gKartMario231Wheel1 - type: texture - offset: 0x8B330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_2: - symbol: gKartMario231Wheel2 - type: texture - offset: 0x8B3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_3: - symbol: gKartMario231Wheel3 - type: texture - offset: 0x8B430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_0: - symbol: gKartMario232Wheel0 - type: texture - offset: 0x8B4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_1: - symbol: gKartMario232Wheel1 - type: texture - offset: 0x8B530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_2: - symbol: gKartMario232Wheel2 - type: texture - offset: 0x8B5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_3: - symbol: gKartMario232Wheel3 - type: texture - offset: 0x8B630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_0: - symbol: gKartMario233Wheel0 - type: texture - offset: 0x8B6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_1: - symbol: gKartMario233Wheel1 - type: texture - offset: 0x8B730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_2: - symbol: gKartMario233Wheel2 - type: texture - offset: 0x8B7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_3: - symbol: gKartMario233Wheel3 - type: texture - offset: 0x8B830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_0: - symbol: gKartMario234Wheel0 - type: texture - offset: 0x8B8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_1: - symbol: gKartMario234Wheel1 - type: texture - offset: 0x8B930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_2: - symbol: gKartMario234Wheel2 - type: texture - offset: 0x8B9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_3: - symbol: gKartMario234Wheel3 - type: texture - offset: 0x8BA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_0: - symbol: gKartMario235Wheel0 - type: texture - offset: 0x8BAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_1: - symbol: gKartMario235Wheel1 - type: texture - offset: 0x8BB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_2: - symbol: gKartMario235Wheel2 - type: texture - offset: 0x8BBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_3: - symbol: gKartMario235Wheel3 - type: texture - offset: 0x8BC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_0: - symbol: gKartMario236Wheel0 - type: texture - offset: 0x8BCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_1: - symbol: gKartMario236Wheel1 - type: texture - offset: 0x8BD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_2: - symbol: gKartMario236Wheel2 - type: texture - offset: 0x8BDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_3: - symbol: gKartMario236Wheel3 - type: texture - offset: 0x8BE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_0: - symbol: gKartMario237Wheel0 - type: texture - offset: 0x8BEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_1: - symbol: gKartMario237Wheel1 - type: texture - offset: 0x8BF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_2: - symbol: gKartMario237Wheel2 - type: texture - offset: 0x8BFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_3: - symbol: gKartMario237Wheel3 - type: texture - offset: 0x8C030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_0: - symbol: gKartMario238Wheel0 - type: texture - offset: 0x8C0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_1: - symbol: gKartMario238Wheel1 - type: texture - offset: 0x8C130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_2: - symbol: gKartMario238Wheel2 - type: texture - offset: 0x8C1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_3: - symbol: gKartMario238Wheel3 - type: texture - offset: 0x8C230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_0: - symbol: gKartMario239Wheel0 - type: texture - offset: 0x8C2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_1: - symbol: gKartMario239Wheel1 - type: texture - offset: 0x8C330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_2: - symbol: gKartMario239Wheel2 - type: texture - offset: 0x8C3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_3: - symbol: gKartMario239Wheel3 - type: texture - offset: 0x8C430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_0: - symbol: gKartMario240Wheel0 - type: texture - offset: 0x8C4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_1: - symbol: gKartMario240Wheel1 - type: texture - offset: 0x8C530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_2: - symbol: gKartMario240Wheel2 - type: texture - offset: 0x8C5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_3: - symbol: gKartMario240Wheel3 - type: texture - offset: 0x8C630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_0: - symbol: gKartMario241Wheel0 - type: texture - offset: 0x8C6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_1: - symbol: gKartMario241Wheel1 - type: texture - offset: 0x8C730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_2: - symbol: gKartMario241Wheel2 - type: texture - offset: 0x8C7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_3: - symbol: gKartMario241Wheel3 - type: texture - offset: 0x8C830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_0: - symbol: gKartMario242Wheel0 - type: texture - offset: 0x8C8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_1: - symbol: gKartMario242Wheel1 - type: texture - offset: 0x8C930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_2: - symbol: gKartMario242Wheel2 - type: texture - offset: 0x8C9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_3: - symbol: gKartMario242Wheel3 - type: texture - offset: 0x8CA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_0: - symbol: gKartMario243Wheel0 - type: texture - offset: 0x8CAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_1: - symbol: gKartMario243Wheel1 - type: texture - offset: 0x8CB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_2: - symbol: gKartMario243Wheel2 - type: texture - offset: 0x8CBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_3: - symbol: gKartMario243Wheel3 - type: texture - offset: 0x8CC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_0: - symbol: gKartMario244Wheel0 - type: texture - offset: 0x8CCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_1: - symbol: gKartMario244Wheel1 - type: texture - offset: 0x8CD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_2: - symbol: gKartMario244Wheel2 - type: texture - offset: 0x8CDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_3: - symbol: gKartMario244Wheel3 - type: texture - offset: 0x8CE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_0: - symbol: gKartMario245Wheel0 - type: texture - offset: 0x8CEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_1: - symbol: gKartMario245Wheel1 - type: texture - offset: 0x8CF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_2: - symbol: gKartMario245Wheel2 - type: texture - offset: 0x8CFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_3: - symbol: gKartMario245Wheel3 - type: texture - offset: 0x8D030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_0: - symbol: gKartMario246Wheel0 - type: texture - offset: 0x8D0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_1: - symbol: gKartMario246Wheel1 - type: texture - offset: 0x8D130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_2: - symbol: gKartMario246Wheel2 - type: texture - offset: 0x8D1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_3: - symbol: gKartMario246Wheel3 - type: texture - offset: 0x8D230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_0: - symbol: gKartMario247Wheel0 - type: texture - offset: 0x8D2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_1: - symbol: gKartMario247Wheel1 - type: texture - offset: 0x8D330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_2: - symbol: gKartMario247Wheel2 - type: texture - offset: 0x8D3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_3: - symbol: gKartMario247Wheel3 - type: texture - offset: 0x8D430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_0: - symbol: gKartMario248Wheel0 - type: texture - offset: 0x8D4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_1: - symbol: gKartMario248Wheel1 - type: texture - offset: 0x8D530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_2: - symbol: gKartMario248Wheel2 - type: texture - offset: 0x8D5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_3: - symbol: gKartMario248Wheel3 - type: texture - offset: 0x8D630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_0: - symbol: gKartMario249Wheel0 - type: texture - offset: 0x8D6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_1: - symbol: gKartMario249Wheel1 - type: texture - offset: 0x8D730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_2: - symbol: gKartMario249Wheel2 - type: texture - offset: 0x8D7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_3: - symbol: gKartMario249Wheel3 - type: texture - offset: 0x8D830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_0: - symbol: gKartMario250Wheel0 - type: texture - offset: 0x8D8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_1: - symbol: gKartMario250Wheel1 - type: texture - offset: 0x8D930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_2: - symbol: gKartMario250Wheel2 - type: texture - offset: 0x8D9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_3: - symbol: gKartMario250Wheel3 - type: texture - offset: 0x8DA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_0: - symbol: gKartMario251Wheel0 - type: texture - offset: 0x8DAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_1: - symbol: gKartMario251Wheel1 - type: texture - offset: 0x8DB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_2: - symbol: gKartMario251Wheel2 - type: texture - offset: 0x8DBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_3: - symbol: gKartMario251Wheel3 - type: texture - offset: 0x8DC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_0: - symbol: gKartMario252Wheel0 - type: texture - offset: 0x8DCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_1: - symbol: gKartMario252Wheel1 - type: texture - offset: 0x8DD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_2: - symbol: gKartMario252Wheel2 - type: texture - offset: 0x8DDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_3: - symbol: gKartMario252Wheel3 - type: texture - offset: 0x8DE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_0: - symbol: gKartMario253Wheel0 - type: texture - offset: 0x8DEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_1: - symbol: gKartMario253Wheel1 - type: texture - offset: 0x8DF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_2: - symbol: gKartMario253Wheel2 - type: texture - offset: 0x8DFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_3: - symbol: gKartMario253Wheel3 - type: texture - offset: 0x8E030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_0: - symbol: gKartMario254Wheel0 - type: texture - offset: 0x8E0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_1: - symbol: gKartMario254Wheel1 - type: texture - offset: 0x8E130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_2: - symbol: gKartMario254Wheel2 - type: texture - offset: 0x8E1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_3: - symbol: gKartMario254Wheel3 - type: texture - offset: 0x8E230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_0: - symbol: gKartMario255Wheel0 - type: texture - offset: 0x8E2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_1: - symbol: gKartMario255Wheel1 - type: texture - offset: 0x8E330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_2: - symbol: gKartMario255Wheel2 - type: texture - offset: 0x8E3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_3: - symbol: gKartMario255Wheel3 - type: texture - offset: 0x8E430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_0: - symbol: gKartMario256Wheel0 - type: texture - offset: 0x8E4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_1: - symbol: gKartMario256Wheel1 - type: texture - offset: 0x8E530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_2: - symbol: gKartMario256Wheel2 - type: texture - offset: 0x8E5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_3: - symbol: gKartMario256Wheel3 - type: texture - offset: 0x8E630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_0: - symbol: gKartMario257Wheel0 - type: texture - offset: 0x8E6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_1: - symbol: gKartMario257Wheel1 - type: texture - offset: 0x8E730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_2: - symbol: gKartMario257Wheel2 - type: texture - offset: 0x8E7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_3: - symbol: gKartMario257Wheel3 - type: texture - offset: 0x8E830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_0: - symbol: gKartMario258Wheel0 - type: texture - offset: 0x8E8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_1: - symbol: gKartMario258Wheel1 - type: texture - offset: 0x8E930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_2: - symbol: gKartMario258Wheel2 - type: texture - offset: 0x8E9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_3: - symbol: gKartMario258Wheel3 - type: texture - offset: 0x8EA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_0: - symbol: gKartMario259Wheel0 - type: texture - offset: 0x8EAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_1: - symbol: gKartMario259Wheel1 - type: texture - offset: 0x8EB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_2: - symbol: gKartMario259Wheel2 - type: texture - offset: 0x8EBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_3: - symbol: gKartMario259Wheel3 - type: texture - offset: 0x8EC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_0: - symbol: gKartMario260Wheel0 - type: texture - offset: 0x8ECB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_1: - symbol: gKartMario260Wheel1 - type: texture - offset: 0x8ED30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_2: - symbol: gKartMario260Wheel2 - type: texture - offset: 0x8EDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_3: - symbol: gKartMario260Wheel3 - type: texture - offset: 0x8EE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_0: - symbol: gKartMario261Wheel0 - type: texture - offset: 0x8EEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_1: - symbol: gKartMario261Wheel1 - type: texture - offset: 0x8EF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_2: - symbol: gKartMario261Wheel2 - type: texture - offset: 0x8EFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_3: - symbol: gKartMario261Wheel3 - type: texture - offset: 0x8F030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_0: - symbol: gKartMario262Wheel0 - type: texture - offset: 0x8F0B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_1: - symbol: gKartMario262Wheel1 - type: texture - offset: 0x8F130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_2: - symbol: gKartMario262Wheel2 - type: texture - offset: 0x8F1B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_3: - symbol: gKartMario262Wheel3 - type: texture - offset: 0x8F230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_0: - symbol: gKartMario263Wheel0 - type: texture - offset: 0x8F2B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_1: - symbol: gKartMario263Wheel1 - type: texture - offset: 0x8F330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_2: - symbol: gKartMario263Wheel2 - type: texture - offset: 0x8F3B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_3: - symbol: gKartMario263Wheel3 - type: texture - offset: 0x8F430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_0: - symbol: gKartMario264Wheel0 - type: texture - offset: 0x8F4B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_1: - symbol: gKartMario264Wheel1 - type: texture - offset: 0x8F530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_2: - symbol: gKartMario264Wheel2 - type: texture - offset: 0x8F5B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_3: - symbol: gKartMario264Wheel3 - type: texture - offset: 0x8F630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_0: - symbol: gKartMario265Wheel0 - type: texture - offset: 0x8F6B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_1: - symbol: gKartMario265Wheel1 - type: texture - offset: 0x8F730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_2: - symbol: gKartMario265Wheel2 - type: texture - offset: 0x8F7B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_3: - symbol: gKartMario265Wheel3 - type: texture - offset: 0x8F830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_0: - symbol: gKartMario266Wheel0 - type: texture - offset: 0x8F8B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_1: - symbol: gKartMario266Wheel1 - type: texture - offset: 0x8F930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_2: - symbol: gKartMario266Wheel2 - type: texture - offset: 0x8F9B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_3: - symbol: gKartMario266Wheel3 - type: texture - offset: 0x8FA30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_0: - symbol: gKartMario267Wheel0 - type: texture - offset: 0x8FAB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_1: - symbol: gKartMario267Wheel1 - type: texture - offset: 0x8FB30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_2: - symbol: gKartMario267Wheel2 - type: texture - offset: 0x8FBB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_3: - symbol: gKartMario267Wheel3 - type: texture - offset: 0x8FC30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_0: - symbol: gKartMario268Wheel0 - type: texture - offset: 0x8FCB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_1: - symbol: gKartMario268Wheel1 - type: texture - offset: 0x8FD30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_2: - symbol: gKartMario268Wheel2 - type: texture - offset: 0x8FDB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_3: - symbol: gKartMario268Wheel3 - type: texture - offset: 0x8FE30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_0: - symbol: gKartMario269Wheel0 - type: texture - offset: 0x8FEB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_1: - symbol: gKartMario269Wheel1 - type: texture - offset: 0x8FF30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_2: - symbol: gKartMario269Wheel2 - type: texture - offset: 0x8FFB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_3: - symbol: gKartMario269Wheel3 - type: texture - offset: 0x90030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_0: - symbol: gKartMario270Wheel0 - type: texture - offset: 0x900B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_1: - symbol: gKartMario270Wheel1 - type: texture - offset: 0x90130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_2: - symbol: gKartMario270Wheel2 - type: texture - offset: 0x901B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_3: - symbol: gKartMario270Wheel3 - type: texture - offset: 0x90230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_0: - symbol: gKartMario271Wheel0 - type: texture - offset: 0x902B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_1: - symbol: gKartMario271Wheel1 - type: texture - offset: 0x90330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_2: - symbol: gKartMario271Wheel2 - type: texture - offset: 0x903B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_3: - symbol: gKartMario271Wheel3 - type: texture - offset: 0x90430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_0: - symbol: gKartMario272Wheel0 - type: texture - offset: 0x904B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_1: - symbol: gKartMario272Wheel1 - type: texture - offset: 0x90530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_2: - symbol: gKartMario272Wheel2 - type: texture - offset: 0x905B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_3: - symbol: gKartMario272Wheel3 - type: texture - offset: 0x90630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_0: - symbol: gKartMario273Wheel0 - type: texture - offset: 0x906B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_1: - symbol: gKartMario273Wheel1 - type: texture - offset: 0x90730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_2: - symbol: gKartMario273Wheel2 - type: texture - offset: 0x907B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_3: - symbol: gKartMario273Wheel3 - type: texture - offset: 0x90830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_0: - symbol: gKartMario274Wheel0 - type: texture - offset: 0x908B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_1: - symbol: gKartMario274Wheel1 - type: texture - offset: 0x90930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_2: - symbol: gKartMario274Wheel2 - type: texture - offset: 0x909B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_3: - symbol: gKartMario274Wheel3 - type: texture - offset: 0x90A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_0: - symbol: gKartMario275Wheel0 - type: texture - offset: 0x90AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_1: - symbol: gKartMario275Wheel1 - type: texture - offset: 0x90B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_2: - symbol: gKartMario275Wheel2 - type: texture - offset: 0x90BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_3: - symbol: gKartMario275Wheel3 - type: texture - offset: 0x90C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_0: - symbol: gKartMario276Wheel0 - type: texture - offset: 0x90CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_1: - symbol: gKartMario276Wheel1 - type: texture - offset: 0x90D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_2: - symbol: gKartMario276Wheel2 - type: texture - offset: 0x90DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_3: - symbol: gKartMario276Wheel3 - type: texture - offset: 0x90E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_0: - symbol: gKartMario277Wheel0 - type: texture - offset: 0x90EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_1: - symbol: gKartMario277Wheel1 - type: texture - offset: 0x90F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_2: - symbol: gKartMario277Wheel2 - type: texture - offset: 0x90FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_3: - symbol: gKartMario277Wheel3 - type: texture - offset: 0x91030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_0: - symbol: gKartMario278Wheel0 - type: texture - offset: 0x910B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_1: - symbol: gKartMario278Wheel1 - type: texture - offset: 0x91130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_2: - symbol: gKartMario278Wheel2 - type: texture - offset: 0x911B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_3: - symbol: gKartMario278Wheel3 - type: texture - offset: 0x91230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_0: - symbol: gKartMario279Wheel0 - type: texture - offset: 0x912B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_1: - symbol: gKartMario279Wheel1 - type: texture - offset: 0x91330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_2: - symbol: gKartMario279Wheel2 - type: texture - offset: 0x913B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_3: - symbol: gKartMario279Wheel3 - type: texture - offset: 0x91430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_0: - symbol: gKartMario280Wheel0 - type: texture - offset: 0x914B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_1: - symbol: gKartMario280Wheel1 - type: texture - offset: 0x91530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_2: - symbol: gKartMario280Wheel2 - type: texture - offset: 0x915B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_3: - symbol: gKartMario280Wheel3 - type: texture - offset: 0x91630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_0: - symbol: gKartMario281Wheel0 - type: texture - offset: 0x916B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_1: - symbol: gKartMario281Wheel1 - type: texture - offset: 0x91730 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_2: - symbol: gKartMario281Wheel2 - type: texture - offset: 0x917B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_3: - symbol: gKartMario281Wheel3 - type: texture - offset: 0x91830 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_0: - symbol: gKartMario282Wheel0 - type: texture - offset: 0x918B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_1: - symbol: gKartMario282Wheel1 - type: texture - offset: 0x91930 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_2: - symbol: gKartMario282Wheel2 - type: texture - offset: 0x919B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_3: - symbol: gKartMario282Wheel3 - type: texture - offset: 0x91A30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_0: - symbol: gKartMario283Wheel0 - type: texture - offset: 0x91AB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_1: - symbol: gKartMario283Wheel1 - type: texture - offset: 0x91B30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_2: - symbol: gKartMario283Wheel2 - type: texture - offset: 0x91BB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_3: - symbol: gKartMario283Wheel3 - type: texture - offset: 0x91C30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_0: - symbol: gKartMario284Wheel0 - type: texture - offset: 0x91CB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_1: - symbol: gKartMario284Wheel1 - type: texture - offset: 0x91D30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_2: - symbol: gKartMario284Wheel2 - type: texture - offset: 0x91DB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_3: - symbol: gKartMario284Wheel3 - type: texture - offset: 0x91E30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_0: - symbol: gKartMario285Wheel0 - type: texture - offset: 0x91EB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_1: - symbol: gKartMario285Wheel1 - type: texture - offset: 0x91F30 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_2: - symbol: gKartMario285Wheel2 - type: texture - offset: 0x91FB0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_3: - symbol: gKartMario285Wheel3 - type: texture - offset: 0x92030 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_0: - symbol: gKartMario286Wheel0 - type: texture - offset: 0x920B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_1: - symbol: gKartMario286Wheel1 - type: texture - offset: 0x92130 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_2: - symbol: gKartMario286Wheel2 - type: texture - offset: 0x921B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_3: - symbol: gKartMario286Wheel3 - type: texture - offset: 0x92230 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_0: - symbol: gKartMario287Wheel0 - type: texture - offset: 0x922B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_1: - symbol: gKartMario287Wheel1 - type: texture - offset: 0x92330 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_2: - symbol: gKartMario287Wheel2 - type: texture - offset: 0x923B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_3: - symbol: gKartMario287Wheel3 - type: texture - offset: 0x92430 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_0: - symbol: gKartMario288Wheel0 - type: texture - offset: 0x924B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_1: - symbol: gKartMario288Wheel1 - type: texture - offset: 0x92530 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_2: - symbol: gKartMario288Wheel2 - type: texture - offset: 0x925B0 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_3: - symbol: gKartMario288Wheel3 - type: texture - offset: 0x92630 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -mario_kart_palette: - symbol: gKartMarioPalette - type: texture - offset: 0x926B0 - ctype: u16 - width: 16 - height: 12 - format: RGBA16 diff --git a/yamls/us/mario_raceway_data.yml b/yamls/us/mario_raceway_data.yml deleted file mode 100644 index 18b6ebaf9..000000000 --- a/yamls/us/mario_raceway_data.yml +++ /dev/null @@ -1,503 +0,0 @@ -:config: - segments: - - [0x06, 0x8284D0] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_mario_raceway_dl_0: - symbol: d_course_mario_raceway_dl_0 - type: gfx - offset: 0x0 - otr_mode: index -d_course_mario_raceway_dl_E8: - symbol: d_course_mario_raceway_dl_E8 - type: gfx - offset: 0xE8 - otr_mode: index -d_course_mario_raceway_dl_1D0: - symbol: d_course_mario_raceway_dl_1D0 - type: gfx - offset: 0x1D0 - otr_mode: index -d_course_mario_raceway_dl_2C8: - symbol: d_course_mario_raceway_dl_2C8 - type: gfx - offset: 0x2C8 - otr_mode: index -d_course_mario_raceway_dl_3A8: - symbol: d_course_mario_raceway_dl_3A8 - type: gfx - offset: 0x3A8 - otr_mode: index -d_course_mario_raceway_dl_478: - symbol: d_course_mario_raceway_dl_478 - type: gfx - offset: 0x478 - otr_mode: index -d_course_mario_raceway_dl_568: - symbol: d_course_mario_raceway_dl_568 - type: gfx - offset: 0x568 - otr_mode: index -d_course_mario_raceway_dl_668: - symbol: d_course_mario_raceway_dl_668 - type: gfx - offset: 0x668 - otr_mode: index -d_course_mario_raceway_dl_750: - symbol: d_course_mario_raceway_dl_750 - type: gfx - offset: 0x750 - otr_mode: index -d_course_mario_raceway_dl_828: - symbol: d_course_mario_raceway_dl_828 - type: gfx - offset: 0x828 - otr_mode: index -d_course_mario_raceway_dl_928: - symbol: d_course_mario_raceway_dl_928 - type: gfx - offset: 0x928 - otr_mode: index -d_course_mario_raceway_dl_A00: - symbol: d_course_mario_raceway_dl_A00 - type: gfx - offset: 0xA00 - otr_mode: index -d_course_mario_raceway_dl_B08: - symbol: d_course_mario_raceway_dl_B08 - type: gfx - offset: 0xB08 - otr_mode: index -d_course_mario_raceway_dl_C20: - symbol: d_course_mario_raceway_dl_C20 - type: gfx - offset: 0xC20 - otr_mode: index -d_course_mario_raceway_dl_DC8: - symbol: d_course_mario_raceway_dl_DC8 - type: gfx - offset: 0xDC8 - otr_mode: index -d_course_mario_raceway_dl_F60: - symbol: d_course_mario_raceway_dl_F60 - type: gfx - offset: 0xF60 - otr_mode: index -d_course_mario_raceway_dl_10A8: - symbol: d_course_mario_raceway_dl_10A8 - type: gfx - offset: 0x10A8 - otr_mode: index -d_course_mario_raceway_dl_1210: - symbol: d_course_mario_raceway_dl_1210 - type: gfx - offset: 0x1210 - otr_mode: index -d_course_mario_raceway_dl_1408: - symbol: d_course_mario_raceway_dl_1408 - type: gfx - offset: 0x1408 - otr_mode: index -d_course_mario_raceway_dl_15C8: - symbol: d_course_mario_raceway_dl_15C8 - type: gfx - offset: 0x15C8 - otr_mode: index -d_course_mario_raceway_dl_1740: - symbol: d_course_mario_raceway_dl_1740 - type: gfx - offset: 0x1740 - otr_mode: index -d_course_mario_raceway_dl_1850: - symbol: d_course_mario_raceway_dl_1850 - type: gfx - offset: 0x1850 - otr_mode: index -d_course_mario_raceway_dl_1A30: - symbol: d_course_mario_raceway_dl_1A30 - type: gfx - offset: 0x1A30 - otr_mode: index -d_course_mario_raceway_dl_1B70: - symbol: d_course_mario_raceway_dl_1B70 - type: gfx - offset: 0x1B70 - otr_mode: index -d_course_mario_raceway_dl_1CF8: - symbol: d_course_mario_raceway_dl_1CF8 - type: gfx - offset: 0x1CF8 - otr_mode: index -d_course_mario_raceway_dl_1DE0: - symbol: d_course_mario_raceway_dl_1DE0 - type: gfx - offset: 0x1DE0 - otr_mode: index -d_course_mario_raceway_dl_1F68: - symbol: d_course_mario_raceway_dl_1F68 - type: gfx - offset: 0x1F68 - otr_mode: index -d_course_mario_raceway_dl_20A0: - symbol: d_course_mario_raceway_dl_20A0 - type: gfx - offset: 0x20A0 - otr_mode: index -d_course_mario_raceway_dl_21E8: - symbol: d_course_mario_raceway_dl_21E8 - type: gfx - offset: 0x21E8 - otr_mode: index -d_course_mario_raceway_dl_22E0: - symbol: d_course_mario_raceway_dl_22E0 - type: gfx - offset: 0x22E0 - otr_mode: index -d_course_mario_raceway_dl_2418: - symbol: d_course_mario_raceway_dl_2418 - type: gfx - offset: 0x2418 - otr_mode: index -d_course_mario_raceway_dl_2558: - symbol: d_course_mario_raceway_dl_2558 - type: gfx - offset: 0x2558 - otr_mode: index -d_course_mario_raceway_dl_2680: - symbol: d_course_mario_raceway_dl_2680 - type: gfx - offset: 0x2680 - otr_mode: index -d_course_mario_raceway_dl_2790: - symbol: d_course_mario_raceway_dl_2790 - type: gfx - offset: 0x2790 - otr_mode: index -d_course_mario_raceway_dl_28B0: - symbol: d_course_mario_raceway_dl_28B0 - type: gfx - offset: 0x28B0 - otr_mode: index -d_course_mario_raceway_dl_2A10: - symbol: d_course_mario_raceway_dl_2A10 - type: gfx - offset: 0x2A10 - otr_mode: index -d_course_mario_raceway_dl_2B40: - symbol: d_course_mario_raceway_dl_2B40 - type: gfx - offset: 0x2B40 - otr_mode: index -d_course_mario_raceway_dl_2C98: - symbol: d_course_mario_raceway_dl_2C98 - type: gfx - offset: 0x2C98 - otr_mode: index -d_course_mario_raceway_dl_2DC0: - symbol: d_course_mario_raceway_dl_2DC0 - type: gfx - offset: 0x2DC0 - otr_mode: index -d_course_mario_raceway_dl_2EF8: - symbol: d_course_mario_raceway_dl_2EF8 - type: gfx - offset: 0x2EF8 - otr_mode: index -d_course_mario_raceway_dl_3038: - symbol: d_course_mario_raceway_dl_3038 - type: gfx - offset: 0x3038 - otr_mode: index -d_course_mario_raceway_dl_31F0: - symbol: d_course_mario_raceway_dl_31F0 - type: gfx - offset: 0x31F0 - otr_mode: index -d_course_mario_raceway_dl_32D8: - symbol: d_course_mario_raceway_dl_32D8 - type: gfx - offset: 0x32D8 - otr_mode: index -d_course_mario_raceway_dl_3458: - symbol: d_course_mario_raceway_dl_3458 - type: gfx - offset: 0x3458 - otr_mode: index -d_course_mario_raceway_dl_35D0: - symbol: d_course_mario_raceway_dl_35D0 - type: gfx - offset: 0x35D0 - otr_mode: index -d_course_mario_raceway_dl_3748: - symbol: d_course_mario_raceway_dl_3748 - type: gfx - offset: 0x3748 - otr_mode: index -d_course_mario_raceway_dl_3830: - symbol: d_course_mario_raceway_dl_3830 - type: gfx - offset: 0x3830 - otr_mode: index -d_course_mario_raceway_dl_3960: - symbol: d_course_mario_raceway_dl_3960 - type: gfx - offset: 0x3960 - otr_mode: index -d_course_mario_raceway_dl_3AA0: - symbol: d_course_mario_raceway_dl_3AA0 - type: gfx - offset: 0x3AA0 - otr_mode: index -d_course_mario_raceway_dl_3C08: - symbol: d_course_mario_raceway_dl_3C08 - type: gfx - offset: 0x3C08 - otr_mode: index -d_course_mario_raceway_dl_3D68: - symbol: d_course_mario_raceway_dl_3D68 - type: gfx - offset: 0x3D68 - otr_mode: index -d_course_mario_raceway_dl_3EB8: - symbol: d_course_mario_raceway_dl_3EB8 - type: gfx - offset: 0x3EB8 - otr_mode: index -d_course_mario_raceway_dl_4038: - symbol: d_course_mario_raceway_dl_4038 - type: gfx - offset: 0x4038 - otr_mode: index -d_course_mario_raceway_dl_4150: - symbol: d_course_mario_raceway_dl_4150 - type: gfx - offset: 0x4150 - otr_mode: index -d_course_mario_raceway_dl_42A0: - symbol: d_course_mario_raceway_dl_42A0 - type: gfx - offset: 0x42A0 - otr_mode: index -d_course_mario_raceway_dl_43D8: - symbol: d_course_mario_raceway_dl_43D8 - type: gfx - offset: 0x43D8 - otr_mode: index -d_course_mario_raceway_dl_44F8: - symbol: d_course_mario_raceway_dl_44F8 - type: gfx - offset: 0x44F8 - otr_mode: index -d_course_mario_raceway_dl_4610: - symbol: d_course_mario_raceway_dl_4610 - type: gfx - offset: 0x4610 - otr_mode: index -d_course_mario_raceway_dl_4738: - symbol: d_course_mario_raceway_dl_4738 - type: gfx - offset: 0x4738 - otr_mode: index -d_course_mario_raceway_dl_4840: - symbol: d_course_mario_raceway_dl_4840 - type: gfx - offset: 0x4840 - otr_mode: index -d_course_mario_raceway_dl_4910: - symbol: d_course_mario_raceway_dl_4910 - type: gfx - offset: 0x4910 - otr_mode: index -d_course_mario_raceway_dl_4A60: - symbol: d_course_mario_raceway_dl_4A60 - type: gfx - offset: 0x4A60 - otr_mode: index -d_course_mario_raceway_dl_4B78: - symbol: d_course_mario_raceway_dl_4B78 - type: gfx - offset: 0x4B78 - otr_mode: index -d_course_mario_raceway_dl_4CD8: - symbol: d_course_mario_raceway_dl_4CD8 - type: gfx - offset: 0x4CD8 - otr_mode: index -d_course_mario_raceway_dl_4DC8: - symbol: d_course_mario_raceway_dl_4DC8 - type: gfx - offset: 0x4DC8 - otr_mode: index -d_course_mario_raceway_dl_4ED0: - symbol: d_course_mario_raceway_dl_4ED0 - type: gfx - offset: 0x4ED0 - otr_mode: index -d_course_mario_raceway_dl_4FF0: - symbol: d_course_mario_raceway_dl_4FF0 - type: gfx - offset: 0x4FF0 - otr_mode: index -d_course_mario_raceway_dl_5150: - symbol: d_course_mario_raceway_dl_5150 - type: gfx - offset: 0x5150 - otr_mode: index -d_course_mario_raceway_dl_5228: - symbol: d_course_mario_raceway_dl_5228 - type: gfx - offset: 0x5228 - otr_mode: index -d_course_mario_raceway_unknown_waypoints: - symbol: d_course_mario_raceway_unknown_waypoints - offset: 0x5568 - count: 73 - type: mk64:TRACK_PATH -d_course_mario_raceway_track_waypoints: - symbol: d_course_mario_raceway_track_waypoints - offset: 0x57B0 - count: 500 - type: mk64:TRACK_PATH -d_course_mario_raceway_piranha_plant_tlut: - symbol: d_course_mario_raceway_piranha_plant_tlut - type: texture - offset: 0x6750 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_course_mario_raceway_piranha_plant_model: - symbol: d_course_mario_raceway_piranha_plant_model - type: vtx - offset: 0x6950 - count: 4 -d_course_mario_raceway_dl_piranha_plant: - symbol: d_course_mario_raceway_dl_piranha_plant - type: gfx - offset: 0x6990 - otr_mode: index -d_course_mario_raceway_tree_model: - symbol: d_course_mario_raceway_tree_model - type: vtx - offset: 0x6A28 - count: 4 -d_course_mario_raceway_dl_tree: - symbol: d_course_mario_raceway_dl_tree - type: gfx - offset: 0x6A68 - otr_mode: index -d_course_mario_sign_model: - symbol: d_course_mario_sign_model - type: vtx - offset: 0x6B08 - count: 8 -d_course_mario_raceway_06006B88: - symbol: d_course_mario_raceway_06006B88 - type: vtx - offset: 0x6B88 - count: 30 -d_course_mario_raceway_06006D68: - symbol: d_course_mario_raceway_06006D68 - type: vtx - offset: 0x6D68 - count: 24 -d_course_mario_raceway_06006EE8: - symbol: d_course_mario_raceway_06006EE8 - type: vtx - offset: 0x6EE8 - count: 6 -d_course_mario_raceway_06006F48: - symbol: d_course_mario_raceway_06006F48 - type: vtx - offset: 0x6F48 - count: 6 -d_course_mario_raceway_06006FA8: - symbol: d_course_mario_raceway_06006FA8 - type: vtx - offset: 0x6FA8 - count: 6 -d_course_mario_raceway_06007008: - symbol: d_course_mario_raceway_06007008 - type: vtx - offset: 0x7008 - count: 6 -d_course_mario_sign_left: - symbol: d_course_mario_sign_left - type: texture - offset: 0x7068 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_mario_sign_right: - symbol: d_course_mario_sign_right - type: texture - offset: 0x8068 - width: 32 - height: 64 - format: rgba16 - ctype: u16 -d_course_mario_raceway_dl_9068: - symbol: d_course_mario_raceway_dl_9068 - type: gfx - offset: 0x9068 - otr_mode: index -d_course_mario_raceway_dl_90B0: - symbol: d_course_mario_raceway_dl_90B0 - type: gfx - offset: 0x90B0 -d_course_mario_raceway_dl_90C0: - symbol: d_course_mario_raceway_dl_90C0 - type: gfx - offset: 0x90C0 - otr_mode: index -d_course_mario_raceway_dl_9190: - symbol: d_course_mario_raceway_dl_9190 - type: gfx - offset: 0x9190 - otr_mode: index -d_course_mario_raceway_dl_9250: - symbol: d_course_mario_raceway_dl_9250 - type: gfx - offset: 0x9250 - otr_mode: index -d_course_mario_raceway_dl_9310: - symbol: d_course_mario_raceway_dl_9310 - type: gfx - offset: 0x9310 -d_course_mario_raceway_dl_sign: - symbol: d_course_mario_raceway_dl_sign - type: gfx - offset: 0x9330 -d_course_mario_raceway_dl_9348: - symbol: d_course_mario_raceway_dl_9348 - type: gfx - offset: 0x9348 - otr_mode: index -d_course_mario_raceway_item_box_spawns: - symbol: d_course_mario_raceway_item_box_spawns - type: mk64:spawn_data - count: 16 - offset: 0x9498 -d_course_mario_raceway_piranha_plant_spawns: - symbol: d_course_mario_raceway_piranha_plant_spawns - type: mk64:spawn_data - count: 11 - offset: 0x9518 -d_course_mario_raceway_tree_spawns: - symbol: d_course_mario_raceway_tree_spawns - type: mk64:spawn_data - count: 28 - offset: 0x9570 -d_course_mario_raceway_addr: - symbol: d_course_mario_raceway_addr - type: mk64:track_sections - offset: 0x9650 - count: 53 \ No newline at end of file diff --git a/yamls/us/mario_raceway_displaylists.yml b/yamls/us/mario_raceway_displaylists.yml deleted file mode 100644 index 87a2542fc..000000000 --- a/yamls/us/mario_raceway_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x899104 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_mario_raceway_packed_dls: - symbol: d_course_mario_raceway_packed_dls - type: blob - offset: 0x899104 - size: 0x23FD diff --git a/yamls/us/mario_raceway_vertices.yml b/yamls/us/mario_raceway_vertices.yml deleted file mode 100644 index b716b96aa..000000000 --- a/yamls/us/mario_raceway_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x88FA10] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_mario_raceway_vertex: - symbol: d_course_mario_raceway_vertex - type: mk64:course_vtx - count: 5757 - offset: 0x0 diff --git a/yamls/us/ceremony_data.yml b/yamls/us/models/ceremony_data.yml similarity index 64% rename from yamls/us/ceremony_data.yml rename to yamls/us/models/ceremony_data.yml index b4864479e..8d30a7853 100644 --- a/yamls/us/ceremony_data.yml +++ b/yamls/us/models/ceremony_data.yml @@ -1,6 +1,8 @@ :config: segments: - [0x0B, 0x821D10] + external_files: + - "yamls/us/textures/ceremony_data.yml" header: code: - '#include ' @@ -43,33 +45,6 @@ some_vtx2: 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: ceremony_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 @@ -130,19 +105,6 @@ 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 @@ -159,19 +121,6 @@ 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 @@ -188,19 +137,6 @@ 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 @@ -217,23 +153,3 @@ 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/us/models/common_data.yml b/yamls/us/models/common_data.yml new file mode 100644 index 000000000..7837e7f51 --- /dev/null +++ b/yamls/us/models/common_data.yml @@ -0,0 +1,816 @@ +:config: + segments: + - [0x0D, 0x132B50] + external_files: + - "yamls/us/textures/common_data.yml" + manual_segments: + - [0x03004000, "textures/other_textures/gTextureFinishLineBanner1"] + - [0x03004800, "textures/other_textures/gTextureFinishLineBanner2"] + - [0x03005000, "textures/other_textures/gTextureFinishLineBanner3"] + - [0x03005800, "textures/other_textures/gTextureFinishLineBanner4"] + - [0x03006000, "textures/other_textures/gTextureFinishLineBanner5"] + - [0x03006800, "textures/other_textures/gTextureFinishLineBanner6"] + - [0x03007000, "textures/other_textures/gTextureFinishLineBanner7"] + - [0x03007800, "textures/other_textures/gTextureFinishLineBanner8"] + - [0x03008000, "textures/other_textures/texture_671A88"] + - [0x03008800, "textures/other_textures/texture_6774D8"] + header: + code: + - "#include " + - "#include " + - "#include " + header: + - "#include " + - "#include " + - "#include " + - "#include " + tables: + 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_texture_minimap_kart_character: + range: [0x2CCD8, 0x2D058] + mode: APPEND +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 +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_model_banana: + symbol: common_model_banana + type: gfx + offset: 0x4B48 +common_model_flat_banana: + symbol: common_model_flat_banana + type: gfx + offset: 0x4BD8 +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 +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 +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 diff --git a/yamls/us/data_800E8700.yml b/yamls/us/models/data_800E8700.yml similarity index 100% rename from yamls/us/data_800E8700.yml rename to yamls/us/models/data_800E8700.yml diff --git a/yamls/us/data_segment2.yml b/yamls/us/models/data_segment2.yml similarity index 95% rename from yamls/us/data_segment2.yml rename to yamls/us/models/data_segment2.yml index f061a97e3..f59783ebd 100644 --- a/yamls/us/data_segment2.yml +++ b/yamls/us/models/data_segment2.yml @@ -1,7 +1,9 @@ :config: external_files: - - "yamls/us/startup_logo.yml" - - "yamls/us/common_data.yml" + - "yamls/us/models/startup_logo.yml" + - "yamls/us/textures/startup_logo.yml" + - "yamls/us/models/common_data.yml" + - "yamls/us/textures/common_data.yml" segments: - [0x02, 0x12AAE0] - [0x0D, 0x132B50] diff --git a/yamls/us/startup_logo.yml b/yamls/us/models/startup_logo.yml similarity index 89% rename from yamls/us/startup_logo.yml rename to yamls/us/models/startup_logo.yml index d95cdf25d..6196557fa 100644 --- a/yamls/us/startup_logo.yml +++ b/yamls/us/models/startup_logo.yml @@ -1,6 +1,8 @@ :config: segments: - [0x06, 0x825800] + external_files: + - "yamls/us/textures/startup_logo.yml" header: code: - '#include ' @@ -88,23 +90,10 @@ dl20: symbol: startup_logo_dl20 type: gfx offset: 0x87A0 -reflection_map_gold: - symbol: startup_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 diff --git a/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_data.yml b/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_data.yml new file mode 100644 index 000000000..0f406a66e --- /dev/null +++ b/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_data.yml @@ -0,0 +1,763 @@ +:config: + segments: + - [0x06, 0x831DC0] + - [0x07, 0x800000] + manual_segments: + # segment 5 + - [0x05000000, "textures/other_textures/texture_6447C4"] + - [0x05000800, "textures/other_textures/texture_676FB0"] + - [0x05001000, "textures/other_textures/texture_643B3C"] + - [0x05001800, "textures/other_textures/texture_64BB60"] + - [0x05002000, "textures/other_textures/texture_64BCCC"] + - [0x05002800, "textures/other_textures/texture_64FBF4"] + - [0x05003000, "textures/other_textures/texture_651B20"] + - [0x05003800, "textures/other_textures/texture_66262C"] + - [0x05004000, "textures/other_textures/texture_668728"] + - [0x05004800, "textures/other_textures/texture_66A3DC"] + - [0x05005000, "textures/other_textures/texture_66CA98"] + - [0x05005800, "textures/other_textures/texture_66CD64"] + - [0x05006000, "textures/other_textures/texture_66D698"] + - [0x05006800, "textures/other_textures/texture_66E608"] + - [0x05007000, "textures/other_textures/texture_67B388"] + - [0x05007800, "textures/other_textures/sign_welcome_0"] + - [0x05008800, "textures/other_textures/sign_welcome_1"] + - [0x05009800, "textures/other_textures/sign_wooden_back_0"] + - [0x0500A800, "textures/other_textures/sign_wooden_back_1"] + - [0x0500B800, "textures/other_textures/sign_wood_red_arrow"] + - [0x0500C800, "textures/other_textures/texture_68D940"] + - [0x0500D000, "textures/other_textures/texture_685AC0"] + # segment 7 + - [0x7000000, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_0"] + - [0x7000060, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_60"] + - [0x7000070, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_70"] + - [0x7000120, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_120"] + - [0x70001D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1D0"] + - [0x7000280, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_280"] + - [0x7000330, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_330"] + - [0x70003E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E0"] + - [0x7000490, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_490"] + - [0x7000540, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_540"] + - [0x7000580, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_580"] + - [0x7000688, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_688"] + - [0x7000698, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_698"] + - [0x70006F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6F8"] + - [0x7000758, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_758"] + - [0x70007B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7B8"] + - [0x7000818, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_818"] + - [0x7000878, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_878"] + - [0x70008A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_8A8"] + - [0x7000930, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_930"] + - [0x70009B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_9B8"] + - [0x7000A50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_A50"] + - [0x7000AE8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_AE8"] + - [0x7000BC8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_BC8"] + - [0x7000C98, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_C98"] + - [0x7000D30, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_D30"] + - [0x7000DF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_DF0"] + - [0x7000EA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_EA0"] + - [0x7000F80, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_F80"] + - [0x7001008, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1008"] + - [0x7001108, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1108"] + - [0x70011D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_11D8"] + - [0x7001260, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1260"] + - [0x7001320, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1320"] + - [0x70013E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_13E0"] + - [0x7001478, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1478"] + - [0x7001560, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1560"] + - [0x7001610, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1610"] + - [0x7001748, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1748"] + - [0x70017F0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_17F0"] + - [0x7001820, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1820"] + - [0x7001830, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1830"] + - [0x70018E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_18E0"] + - [0x7001968, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1968"] + - [0x7001A00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1A00"] + - [0x7001A98, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1A98"] + - [0x7001AC0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1AC0"] + - [0x7001B58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1B58"] + - [0x7001BE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1BE0"] + - [0x7001BF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1BF8"] + - [0x7001C78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1C78"] + - [0x7001CF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1CF8"] + - [0x7001D10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1D10"] + - [0x7001DA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1DA0"] + - [0x7001DB0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1DB0"] + - [0x7001E50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1E50"] + - [0x7001EF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1EF0"] + - [0x7001FA8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1FA8"] + - [0x7002058, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2058"] + - [0x7002100, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2100"] + - [0x70021D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_21D8"] + - [0x7002288, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2288"] + - [0x70022C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_22C8"] + - [0x7002398, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2398"] + - [0x7002440, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2440"] + - [0x7002520, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2520"] + - [0x7002608, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2608"] + - [0x70026E8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_26E8"] + - [0x70027D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_27D0"] + - [0x70028D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_28D0"] + - [0x70029A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_29A0"] + - [0x7002A70, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2A70"] + - [0x7002B78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2B78"] + - [0x7002C20, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2C20"] + - [0x7002D40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2D40"] + - [0x7002E40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2E40"] + - [0x7002F38, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2F38"] + - [0x7003020, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3020"] + - [0x70030F0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_30F0"] + - [0x7003240, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3240"] + - [0x7003310, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3310"] + - [0x70033C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_33C8"] + - [0x70034A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_34A0"] + - [0x7003588, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3588"] + - [0x7003638, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3638"] + - [0x70036C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_36C8"] + - [0x7003740, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3740"] + - [0x70037C0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_37C0"] + - [0x7003830, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3830"] + - [0x7003930, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3930"] + - [0x7003AA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3AA0"] + - [0x7003BA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3BA0"] + - [0x7003C40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3C40"] + - [0x7003D08, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3D08"] + - [0x7003D90, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3D90"] + - [0x7003E10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E10"] + - [0x7003E88, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E88"] + - [0x7003F00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3F00"] + - [0x7003F78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3F78"] + - [0x7004008, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4008"] + - [0x7004070, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4070"] + - [0x70040D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_40D0"] + - [0x7004160, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4160"] + - [0x70041F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_41F8"] + - [0x70042A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_42A8"] + - [0x7004358, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4358"] + - [0x7004408, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4408"] + - [0x70044B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_44B8"] + - [0x7004568, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4568"] + - [0x7004618, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4618"] + - [0x70046C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_46C8"] + - [0x7004798, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4798"] + - [0x7004848, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4848"] + - [0x70048F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_48F8"] + - [0x70049A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_49A8"] + - [0x7004A58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4A58"] + - [0x7004B08, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4B08"] + - [0x7004BA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4BA0"] + - [0x7004C50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4C50"] + - [0x7004D00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4D00"] + - [0x7004DB0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4DB0"] + - [0x7004E60, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4E60"] + - [0x7004EF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4EF8"] + - [0x7004FD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4FD0"] + - [0x7005078, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5078"] + - [0x7005120, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5120"] + - [0x70051E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_51E0"] + - [0x7005278, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5278"] + - [0x70052F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_52F8"] + - [0x7005378, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5378"] + - [0x70053B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_53B8"] + - [0x7005498, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5498"] + - [0x70054A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_54A8"] + - [0x7005520, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5520"] + - [0x7005598, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5598"] + - [0x7005610, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5610"] + - [0x7005688, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5688"] + - [0x7005700, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5700"] + - [0x7005778, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5778"] + - [0x7005820, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5820"] + - [0x7005898, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5898"] + - [0x7005910, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5910"] + - [0x7005988, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5988"] + - [0x7005A00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5A00"] + - [0x7005A78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5A78"] + - [0x7005AF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5AF0"] + - [0x7005B68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5B68"] + - [0x7005BE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5BE0"] + - [0x7005C58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5C58"] + - [0x7005CD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5CD0"] + - [0x7005D60, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5D60"] + - [0x7005DC8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5DC8"] + - [0x7005E30, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5E30"] + - [0x7005EA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5EA0"] + - [0x7005F10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5F10"] + - [0x7005F78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5F78"] + - [0x7005FE8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5FE8"] + - [0x7006058, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6058"] + - [0x7006098, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6098"] + - [0x7006310, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6310"] + - [0x7006320, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6320"] + - [0x70063B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_63B8"] + - [0x7006450, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6450"] + - [0x70064E8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_64E8"] + - [0x7006580, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6580"] + - [0x7006640, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6640"] + - [0x70066D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_66D8"] + - [0x7006770, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6770"] + - [0x7006808, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6808"] + - [0x70068A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_68A0"] + - [0x7006918, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6918"] + - [0x70069B0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_69B0"] + - [0x7006A10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6A10"] + - [0x7006A88, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6A88"] + - [0x7006B00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6B00"] + - [0x7006B78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6B78"] + - [0x7006BF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6BF0"] + - [0x7006C68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6C68"] + - [0x7006D00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6D00"] + - [0x7006D78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6D78"] + - [0x7006DF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6DF0"] + - [0x7006E68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6E68"] + - [0x7006EE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6EE0"] + - [0x7006F58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6F58"] + - [0x7006FD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6FD0"] + - [0x7007048, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7048"] + - [0x70070C0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_70C0"] + - [0x7007138, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7138"] + - [0x70071B0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_71B0"] + - [0x7007228, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7228"] + - [0x70072B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_72B8"] + - [0x7007338, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7338"] + - [0x7007348, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7348"] + external_files: + - "yamls/us/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.yml" + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_banshee_boardwalk_bat: + range: [0x7DB8, 0x95B8] + mode: APPEND +d_course_banshee_boardwalk_dl_0: + symbol: d_course_banshee_boardwalk_dl_0 + type: gfx + offset: 0x0 +d_course_banshee_boardwalk_dl_8: + symbol: d_course_banshee_boardwalk_dl_8 + type: gfx + offset: 0x8 +d_course_banshee_boardwalk_dl_38: + symbol: d_course_banshee_boardwalk_dl_38 + type: gfx + offset: 0x38 +d_course_banshee_boardwalk_dl_40: + symbol: d_course_banshee_boardwalk_dl_40 + type: gfx + offset: 0x40 +d_course_banshee_boardwalk_dl_68: + symbol: d_course_banshee_boardwalk_dl_68 + type: gfx + offset: 0x68 +d_course_banshee_boardwalk_dl_A0: + symbol: d_course_banshee_boardwalk_dl_A0 + type: gfx + offset: 0xA0 +d_course_banshee_boardwalk_dl_160: + symbol: d_course_banshee_boardwalk_dl_160 + type: gfx + offset: 0x160 +d_course_banshee_boardwalk_dl_210: + symbol: d_course_banshee_boardwalk_dl_210 + type: gfx + offset: 0x210 +d_course_banshee_boardwalk_dl_270: + symbol: d_course_banshee_boardwalk_dl_270 + type: gfx + offset: 0x270 +d_course_banshee_boardwalk_dl_358: + symbol: d_course_banshee_boardwalk_dl_358 + type: gfx + offset: 0x358 +d_course_banshee_boardwalk_dl_408: + symbol: d_course_banshee_boardwalk_dl_408 + type: gfx + offset: 0x408 +d_course_banshee_boardwalk_dl_4F0: + symbol: d_course_banshee_boardwalk_dl_4F0 + type: gfx + offset: 0x4F0 +d_course_banshee_boardwalk_dl_540: + symbol: d_course_banshee_boardwalk_dl_540 + type: gfx + offset: 0x540 +d_course_banshee_boardwalk_dl_620: + symbol: d_course_banshee_boardwalk_dl_620 + type: gfx + offset: 0x620 +d_course_banshee_boardwalk_dl_6D0: + symbol: d_course_banshee_boardwalk_dl_6D0 + type: gfx + offset: 0x6D0 +d_course_banshee_boardwalk_dl_7C0: + symbol: d_course_banshee_boardwalk_dl_7C0 + type: gfx + offset: 0x7C0 +d_course_banshee_boardwalk_dl_870: + symbol: d_course_banshee_boardwalk_dl_870 + type: gfx + offset: 0x870 +d_course_banshee_boardwalk_dl_940: + symbol: d_course_banshee_boardwalk_dl_940 + type: gfx + offset: 0x940 +d_course_banshee_boardwalk_dl_9E0: + symbol: d_course_banshee_boardwalk_dl_9E0 + type: gfx + offset: 0x9E0 +d_course_banshee_boardwalk_dl_AD0: + symbol: d_course_banshee_boardwalk_dl_AD0 + type: gfx + offset: 0xAD0 +d_course_banshee_boardwalk_dl_B80: + symbol: d_course_banshee_boardwalk_dl_B80 + type: gfx + offset: 0xB80 +d_course_banshee_boardwalk_dl_C30: + symbol: d_course_banshee_boardwalk_dl_C30 + type: gfx + offset: 0xC30 +d_course_banshee_boardwalk_dl_CD0: + symbol: d_course_banshee_boardwalk_dl_CD0 + type: gfx + offset: 0xCD0 +d_course_banshee_boardwalk_dl_D80: + symbol: d_course_banshee_boardwalk_dl_D80 + type: gfx + offset: 0xD80 +d_course_banshee_boardwalk_dl_E10: + symbol: d_course_banshee_boardwalk_dl_E10 + type: gfx + offset: 0xE10 +d_course_banshee_boardwalk_dl_EE0: + symbol: d_course_banshee_boardwalk_dl_EE0 + type: gfx + offset: 0xEE0 +d_course_banshee_boardwalk_dl_F50: + symbol: d_course_banshee_boardwalk_dl_F50 + type: gfx + offset: 0xF50 +d_course_banshee_boardwalk_dl_1000: + symbol: d_course_banshee_boardwalk_dl_1000 + type: gfx + offset: 0x1000 +d_course_banshee_boardwalk_dl_1070: + symbol: d_course_banshee_boardwalk_dl_1070 + type: gfx + offset: 0x1070 +d_course_banshee_boardwalk_dl_1160: + symbol: d_course_banshee_boardwalk_dl_1160 + type: gfx + offset: 0x1160 +d_course_banshee_boardwalk_dl_11C8: + symbol: d_course_banshee_boardwalk_dl_11C8 + type: gfx + offset: 0x11C8 +d_course_banshee_boardwalk_dl_12A8: + symbol: d_course_banshee_boardwalk_dl_12A8 + type: gfx + offset: 0x12A8 +d_course_banshee_boardwalk_dl_12E8: + symbol: d_course_banshee_boardwalk_dl_12E8 + type: gfx + offset: 0x12E8 +d_course_banshee_boardwalk_dl_13F0: + symbol: d_course_banshee_boardwalk_dl_13F0 + type: gfx + offset: 0x13F0 +d_course_banshee_boardwalk_dl_1448: + symbol: d_course_banshee_boardwalk_dl_1448 + type: gfx + offset: 0x1448 +d_course_banshee_boardwalk_dl_1520: + symbol: d_course_banshee_boardwalk_dl_1520 + type: gfx + offset: 0x1520 +d_course_banshee_boardwalk_dl_1580: + symbol: d_course_banshee_boardwalk_dl_1580 + type: gfx + offset: 0x1580 +d_course_banshee_boardwalk_dl_1678: + symbol: d_course_banshee_boardwalk_dl_1678 + type: gfx + offset: 0x1678 +d_course_banshee_boardwalk_dl_16B8: + symbol: d_course_banshee_boardwalk_dl_16B8 + type: gfx + offset: 0x16B8 +d_course_banshee_boardwalk_dl_17A0: + symbol: d_course_banshee_boardwalk_dl_17A0 + type: gfx + offset: 0x17A0 +d_course_banshee_boardwalk_dl_1820: + symbol: d_course_banshee_boardwalk_dl_1820 + type: gfx + offset: 0x1820 +d_course_banshee_boardwalk_dl_18D8: + symbol: d_course_banshee_boardwalk_dl_18D8 + type: gfx + offset: 0x18D8 +d_course_banshee_boardwalk_dl_1940: + symbol: d_course_banshee_boardwalk_dl_1940 + type: gfx + offset: 0x1940 +d_course_banshee_boardwalk_dl_1A30: + symbol: d_course_banshee_boardwalk_dl_1A30 + type: gfx + offset: 0x1A30 +d_course_banshee_boardwalk_dl_1B00: + symbol: d_course_banshee_boardwalk_dl_1B00 + type: gfx + offset: 0x1B00 +d_course_banshee_boardwalk_dl_1BA0: + symbol: d_course_banshee_boardwalk_dl_1BA0 + type: gfx + offset: 0x1BA0 +d_course_banshee_boardwalk_dl_1C20: + symbol: d_course_banshee_boardwalk_dl_1C20 + type: gfx + offset: 0x1C20 +d_course_banshee_boardwalk_dl_1CC8: + symbol: d_course_banshee_boardwalk_dl_1CC8 + type: gfx + offset: 0x1CC8 +d_course_banshee_boardwalk_dl_1D90: + symbol: d_course_banshee_boardwalk_dl_1D90 + type: gfx + offset: 0x1D90 +d_course_banshee_boardwalk_dl_1E28: + symbol: d_course_banshee_boardwalk_dl_1E28 + type: gfx + offset: 0x1E28 +d_course_banshee_boardwalk_dl_1EA0: + symbol: d_course_banshee_boardwalk_dl_1EA0 + type: gfx + offset: 0x1EA0 +d_course_banshee_boardwalk_dl_1F40: + symbol: d_course_banshee_boardwalk_dl_1F40 + type: gfx + offset: 0x1F40 +d_course_banshee_boardwalk_dl_2028: + symbol: d_course_banshee_boardwalk_dl_2028 + type: gfx + offset: 0x2028 +d_course_banshee_boardwalk_dl_20A0: + symbol: d_course_banshee_boardwalk_dl_20A0 + type: gfx + offset: 0x20A0 +d_course_banshee_boardwalk_dl_2138: + symbol: d_course_banshee_boardwalk_dl_2138 + type: gfx + offset: 0x2138 +d_course_banshee_boardwalk_dl_21C8: + symbol: d_course_banshee_boardwalk_dl_21C8 + type: gfx + offset: 0x21C8 +d_course_banshee_boardwalk_dl_22D8: + symbol: d_course_banshee_boardwalk_dl_22D8 + type: gfx + offset: 0x22D8 +d_course_banshee_boardwalk_dl_2340: + symbol: d_course_banshee_boardwalk_dl_2340 + type: gfx + offset: 0x2340 +d_course_banshee_boardwalk_dl_2448: + symbol: d_course_banshee_boardwalk_dl_2448 + type: gfx + offset: 0x2448 +d_course_banshee_boardwalk_dl_24E8: + symbol: d_course_banshee_boardwalk_dl_24E8 + type: gfx + offset: 0x24E8 +d_course_banshee_boardwalk_dl_2610: + symbol: d_course_banshee_boardwalk_dl_2610 + type: gfx + offset: 0x2610 +d_course_banshee_boardwalk_dl_2650: + symbol: d_course_banshee_boardwalk_dl_2650 + type: gfx + offset: 0x2650 +d_course_banshee_boardwalk_dl_2718: + symbol: d_course_banshee_boardwalk_dl_2718 + type: gfx + offset: 0x2718 +d_course_banshee_boardwalk_dl_2790: + symbol: d_course_banshee_boardwalk_dl_2790 + type: gfx + offset: 0x2790 +d_course_banshee_boardwalk_dl_2868: + symbol: d_course_banshee_boardwalk_dl_2868 + type: gfx + offset: 0x2868 +d_course_banshee_boardwalk_dl_28A8: + symbol: d_course_banshee_boardwalk_dl_28A8 + type: gfx + offset: 0x28A8 +d_course_banshee_boardwalk_dl_2980: + symbol: d_course_banshee_boardwalk_dl_2980 + type: gfx + offset: 0x2980 +d_course_banshee_boardwalk_dl_2A18: + symbol: d_course_banshee_boardwalk_dl_2A18 + type: gfx + offset: 0x2A18 +d_course_banshee_boardwalk_dl_2AE0: + symbol: d_course_banshee_boardwalk_dl_2AE0 + type: gfx + offset: 0x2AE0 +d_course_banshee_boardwalk_dl_2B88: + symbol: d_course_banshee_boardwalk_dl_2B88 + type: gfx + offset: 0x2B88 +d_course_banshee_boardwalk_dl_2C30: + symbol: d_course_banshee_boardwalk_dl_2C30 + type: gfx + offset: 0x2C30 +d_course_banshee_boardwalk_dl_2CE0: + symbol: d_course_banshee_boardwalk_dl_2CE0 + type: gfx + offset: 0x2CE0 +d_course_banshee_boardwalk_dl_2DB0: + symbol: d_course_banshee_boardwalk_dl_2DB0 + type: gfx + offset: 0x2DB0 +d_course_banshee_boardwalk_dl_2E20: + symbol: d_course_banshee_boardwalk_dl_2E20 + type: gfx + offset: 0x2E20 +d_course_banshee_boardwalk_dl_2EE0: + symbol: d_course_banshee_boardwalk_dl_2EE0 + type: gfx + offset: 0x2EE0 +d_course_banshee_boardwalk_dl_2FA0: + symbol: d_course_banshee_boardwalk_dl_2FA0 + type: gfx + offset: 0x2FA0 +d_course_banshee_boardwalk_dl_3050: + symbol: d_course_banshee_boardwalk_dl_3050 + type: gfx + offset: 0x3050 +d_course_banshee_boardwalk_dl_3100: + symbol: d_course_banshee_boardwalk_dl_3100 + type: gfx + offset: 0x3100 +d_course_banshee_boardwalk_dl_3200: + symbol: d_course_banshee_boardwalk_dl_3200 + type: gfx + offset: 0x3200 +d_course_banshee_boardwalk_dl_32B0: + symbol: d_course_banshee_boardwalk_dl_32B0 + type: gfx + offset: 0x32B0 +d_course_banshee_boardwalk_dl_3390: + symbol: d_course_banshee_boardwalk_dl_3390 + type: gfx + offset: 0x3390 +d_course_banshee_boardwalk_dl_3468: + symbol: d_course_banshee_boardwalk_dl_3468 + type: gfx + offset: 0x3468 +d_course_banshee_boardwalk_dl_35A0: + symbol: d_course_banshee_boardwalk_dl_35A0 + type: gfx + offset: 0x35A0 +d_course_banshee_boardwalk_dl_3660: + symbol: d_course_banshee_boardwalk_dl_3660 + type: gfx + offset: 0x3660 +d_course_banshee_boardwalk_dl_3710: + symbol: d_course_banshee_boardwalk_dl_3710 + type: gfx + offset: 0x3710 +d_course_banshee_boardwalk_dl_37F0: + symbol: d_course_banshee_boardwalk_dl_37F0 + type: gfx + offset: 0x37F0 +d_course_banshee_boardwalk_dl_3920: + symbol: d_course_banshee_boardwalk_dl_3920 + type: gfx + offset: 0x3920 +d_course_banshee_boardwalk_dl_3980: + symbol: d_course_banshee_boardwalk_dl_3980 + type: gfx + offset: 0x3980 +d_course_banshee_boardwalk_dl_3A20: + symbol: d_course_banshee_boardwalk_dl_3A20 + type: gfx + offset: 0x3A20 +d_course_banshee_boardwalk_dl_3AF8: + symbol: d_course_banshee_boardwalk_dl_3AF8 + type: gfx + offset: 0x3AF8 +d_course_banshee_boardwalk_dl_3C00: + symbol: d_course_banshee_boardwalk_dl_3C00 + type: gfx + offset: 0x3C00 +d_course_banshee_boardwalk_dl_3C40: + symbol: d_course_banshee_boardwalk_dl_3C40 + type: gfx + offset: 0x3C40 +d_course_banshee_boardwalk_dl_3CD0: + symbol: d_course_banshee_boardwalk_dl_3CD0 + type: gfx + offset: 0x3CD0 +d_course_banshee_boardwalk_dl_3D98: + symbol: d_course_banshee_boardwalk_dl_3D98 + type: gfx + offset: 0x3D98 +d_course_banshee_boardwalk_dl_3EB0: + symbol: d_course_banshee_boardwalk_dl_3EB0 + type: gfx + offset: 0x3EB0 +d_course_banshee_boardwalk_dl_3EF0: + symbol: d_course_banshee_boardwalk_dl_3EF0 + type: gfx + offset: 0x3EF0 +d_course_banshee_boardwalk_dl_3F60: + symbol: d_course_banshee_boardwalk_dl_3F60 + type: gfx + offset: 0x3F60 +d_course_banshee_boardwalk_dl_4038: + symbol: d_course_banshee_boardwalk_dl_4038 + type: gfx + offset: 0x4038 +d_course_banshee_boardwalk_dl_4118: + symbol: d_course_banshee_boardwalk_dl_4118 + type: gfx + offset: 0x4118 +d_course_banshee_boardwalk_dl_4188: + symbol: d_course_banshee_boardwalk_dl_4188 + type: gfx + offset: 0x4188 +d_course_banshee_boardwalk_dl_41F0: + symbol: d_course_banshee_boardwalk_dl_41F0 + type: gfx + offset: 0x41F0 +d_course_banshee_boardwalk_dl_42D0: + symbol: d_course_banshee_boardwalk_dl_42D0 + type: gfx + offset: 0x42D0 +d_course_banshee_boardwalk_dl_43A8: + symbol: d_course_banshee_boardwalk_dl_43A8 + type: gfx + offset: 0x43A8 +d_course_banshee_boardwalk_dl_4428: + symbol: d_course_banshee_boardwalk_dl_4428 + type: gfx + offset: 0x4428 +d_course_banshee_boardwalk_dl_4480: + symbol: d_course_banshee_boardwalk_dl_4480 + type: gfx + offset: 0x4480 +d_course_banshee_boardwalk_cheep_cheep1: + symbol: d_course_banshee_boardwalk_cheep_cheep1 + type: vtx + offset: 0x5E80 + count: 32 +d_course_banshee_boardwalk_cheep_cheep2: + symbol: d_course_banshee_boardwalk_cheep_cheep2 + type: vtx + offset: 0x6080 + count: 32 +d_course_banshee_boardwalk_cheep_cheep3: + symbol: d_course_banshee_boardwalk_cheep_cheep3 + type: vtx + offset: 0x6280 + count: 32 +d_course_banshee_boardwalk_cheep_cheep4: + symbol: d_course_banshee_boardwalk_cheep_cheep4 + type: vtx + offset: 0x6480 + count: 32 +d_course_banshee_boardwalk_cheep_cheep5: + symbol: d_course_banshee_boardwalk_cheep_cheep5 + type: vtx + offset: 0x6680 + count: 30 +d_course_banshee_boardwalk_cheep_cheep6: + symbol: d_course_banshee_boardwalk_cheep_cheep6 + type: vtx + offset: 0x6860 + count: 16 +d_course_banshee_boardwalk_cheep_cheep7: + symbol: d_course_banshee_boardwalk_cheep_cheep7 + type: vtx + offset: 0x6960 + count: 32 +d_course_banshee_boardwalk_cheep_cheep8: + symbol: d_course_banshee_boardwalk_cheep_cheep8 + type: vtx + offset: 0x6B60 + count: 31 +d_course_banshee_boardwalk_cheep_cheep9: + symbol: d_course_banshee_boardwalk_cheep_cheep9 + type: vtx + offset: 0x6D50 + count: 10 +d_course_banshee_boardwalk_cheep_cheep10: + symbol: d_course_banshee_boardwalk_cheep_cheep10 + type: vtx + offset: 0x6DF0 + count: 6 +d_course_banshee_boardwalk_dl_7650: + symbol: d_course_banshee_boardwalk_dl_7650 + type: gfx + offset: 0x7650 +d_course_banshee_boardwalk_dl_78C0: + symbol: d_course_banshee_boardwalk_dl_78C0 + type: gfx + offset: 0x78C0 +d_course_banshee_boardwalk_dl_7978: + symbol: d_course_banshee_boardwalk_dl_7978 + type: gfx + offset: 0x7978 +d_course_banshee_boardwalk_dl_7B38: + symbol: d_course_banshee_boardwalk_dl_7B38 + type: gfx + offset: 0x7B38 +d_course_banshee_boardwalk_dl_7B78: + symbol: d_course_banshee_boardwalk_dl_7B78 + type: gfx + offset: 0x7B78 +d_course_banshee_boardwalk_dl_cheep_cheep: + symbol: d_course_banshee_boardwalk_dl_cheep_cheep + type: gfx + offset: 0x7BA8 +d_course_banshee_boardwalk_dl_A850: + symbol: d_course_banshee_boardwalk_dl_A850 + type: gfx + offset: 0xA850 +d_course_banshee_boardwalk_dl_A900: + symbol: d_course_banshee_boardwalk_dl_A900 + type: gfx + offset: 0xA900 +d_course_banshee_boardwalk_dl_A9B0: + symbol: d_course_banshee_boardwalk_dl_A9B0 + type: gfx + offset: 0xA9B0 +d_course_banshee_boardwalk_dl_A9C8: + symbol: d_course_banshee_boardwalk_dl_A9C8 + type: gfx + offset: 0xA9C8 +d_course_banshee_boardwalk_dl_trash_bin: + symbol: d_course_banshee_boardwalk_dl_trash_bin + type: gfx + offset: 0xA9D8 +d_course_banshee_boardwalk_model_unk: + symbol: d_course_banshee_boardwalk_model_unk + type: vtx + offset: 0xA9E8 + count: 9 +d_course_banshee_boardwalk_dl_B278: + symbol: d_course_banshee_boardwalk_dl_B278 + type: gfx + offset: 0xB278 +d_course_banshee_boardwalk_dl_B308: + symbol: d_course_banshee_boardwalk_dl_B308 + type: gfx + offset: 0xB308 diff --git a/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists.yml b/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists.yml new file mode 100644 index 000000000..e254d3670 --- /dev/null +++ b/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists.yml @@ -0,0 +1,1262 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x8BFF18 + no_compression: true + segments: + - [0x0E, 0x8BFF18] + manual_segments: + # segment 5 + - [0x05000000, "textures/other_textures/texture_6447C4"] + - [0x05000800, "textures/other_textures/texture_676FB0"] + - [0x05001000, "textures/other_textures/texture_643B3C"] + - [0x05001800, "textures/other_textures/texture_64BB60"] + - [0x05002000, "textures/other_textures/texture_64BCCC"] + - [0x05002800, "textures/other_textures/texture_64FBF4"] + - [0x05003000, "textures/other_textures/texture_651B20"] + - [0x05003800, "textures/other_textures/texture_66262C"] + - [0x05004000, "textures/other_textures/texture_668728"] + - [0x05004800, "textures/other_textures/texture_66A3DC"] + - [0x05005000, "textures/other_textures/texture_66CA98"] + - [0x05005800, "textures/other_textures/texture_66CD64"] + - [0x05006000, "textures/other_textures/texture_66D698"] + - [0x05006800, "textures/other_textures/texture_66E608"] + - [0x05007000, "textures/other_textures/texture_67B388"] + - [0x05007800, "textures/other_textures/sign_welcome_0"] + - [0x05008800, "textures/other_textures/sign_welcome_1"] + - [0x05009800, "textures/other_textures/sign_wooden_back_0"] + - [0x0500A800, "textures/other_textures/sign_wooden_back_1"] + - [0x0500B800, "textures/other_textures/sign_wood_red_arrow"] + - [0x0500C800, "textures/other_textures/texture_68D940"] + - [0x0500D000, "textures/other_textures/texture_685AC0"] + # segment 7 + - [0x7000000, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_0"] + - [0x7000060, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_60"] + - [0x7000070, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_70"] + - [0x7000120, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_120"] + - [0x70001D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1D0"] + - [0x7000280, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_280"] + - [0x7000330, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_330"] + - [0x70003E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E0"] + - [0x7000490, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_490"] + - [0x7000540, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_540"] + - [0x7000580, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_580"] + - [0x7000688, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_688"] + - [0x7000698, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_698"] + - [0x70006F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6F8"] + - [0x7000758, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_758"] + - [0x70007B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7B8"] + - [0x7000818, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_818"] + - [0x7000878, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_878"] + - [0x70008A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_8A8"] + - [0x7000930, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_930"] + - [0x70009B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_9B8"] + - [0x7000A50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_A50"] + - [0x7000AE8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_AE8"] + - [0x7000BC8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_BC8"] + - [0x7000C98, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_C98"] + - [0x7000D30, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_D30"] + - [0x7000DF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_DF0"] + - [0x7000EA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_EA0"] + - [0x7000F80, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_F80"] + - [0x7001008, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1008"] + - [0x7001108, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1108"] + - [0x70011D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_11D8"] + - [0x7001260, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1260"] + - [0x7001320, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1320"] + - [0x70013E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_13E0"] + - [0x7001478, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1478"] + - [0x7001560, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1560"] + - [0x7001610, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1610"] + - [0x7001748, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1748"] + - [0x70017F0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_17F0"] + - [0x7001820, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1820"] + - [0x7001830, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1830"] + - [0x70018E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_18E0"] + - [0x7001968, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1968"] + - [0x7001A00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1A00"] + - [0x7001A98, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1A98"] + - [0x7001AC0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1AC0"] + - [0x7001B58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1B58"] + - [0x7001BE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1BE0"] + - [0x7001BF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1BF8"] + - [0x7001C78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1C78"] + - [0x7001CF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1CF8"] + - [0x7001D10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1D10"] + - [0x7001DA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1DA0"] + - [0x7001DB0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1DB0"] + - [0x7001E50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1E50"] + - [0x7001EF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1EF0"] + - [0x7001FA8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1FA8"] + - [0x7002058, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2058"] + - [0x7002100, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2100"] + - [0x70021D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_21D8"] + - [0x7002288, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2288"] + - [0x70022C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_22C8"] + - [0x7002398, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2398"] + - [0x7002440, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2440"] + - [0x7002520, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2520"] + - [0x7002608, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2608"] + - [0x70026E8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_26E8"] + - [0x70027D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_27D0"] + - [0x70028D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_28D0"] + - [0x70029A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_29A0"] + - [0x7002A70, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2A70"] + - [0x7002B78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2B78"] + - [0x7002C20, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2C20"] + - [0x7002D40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2D40"] + - [0x7002E40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2E40"] + - [0x7002F38, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2F38"] + - [0x7003020, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3020"] + - [0x70030F0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_30F0"] + - [0x7003240, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3240"] + - [0x7003310, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3310"] + - [0x70033C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_33C8"] + - [0x70034A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_34A0"] + - [0x7003588, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3588"] + - [0x7003638, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3638"] + - [0x70036C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_36C8"] + - [0x7003740, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3740"] + - [0x70037C0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_37C0"] + - [0x7003830, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3830"] + - [0x7003930, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3930"] + - [0x7003AA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3AA0"] + - [0x7003BA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3BA0"] + - [0x7003C40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3C40"] + - [0x7003D08, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3D08"] + - [0x7003D90, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3D90"] + - [0x7003E10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E10"] + - [0x7003E88, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E88"] + - [0x7003F00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3F00"] + - [0x7003F78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3F78"] + - [0x7004008, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4008"] + - [0x7004070, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4070"] + - [0x70040D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_40D0"] + - [0x7004160, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4160"] + - [0x70041F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_41F8"] + - [0x70042A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_42A8"] + - [0x7004358, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4358"] + - [0x7004408, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4408"] + - [0x70044B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_44B8"] + - [0x7004568, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4568"] + - [0x7004618, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4618"] + - [0x70046C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_46C8"] + - [0x7004798, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4798"] + - [0x7004848, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4848"] + - [0x70048F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_48F8"] + - [0x70049A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_49A8"] + - [0x7004A58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4A58"] + - [0x7004B08, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4B08"] + - [0x7004BA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4BA0"] + - [0x7004C50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4C50"] + - [0x7004D00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4D00"] + - [0x7004DB0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4DB0"] + - [0x7004E60, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4E60"] + - [0x7004EF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4EF8"] + - [0x7004FD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4FD0"] + - [0x7005078, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5078"] + - [0x7005120, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5120"] + - [0x70051E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_51E0"] + - [0x7005278, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5278"] + - [0x70052F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_52F8"] + - [0x7005378, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5378"] + - [0x70053B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_53B8"] + - [0x7005498, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5498"] + - [0x70054A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_54A8"] + - [0x7005520, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5520"] + - [0x7005598, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5598"] + - [0x7005610, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5610"] + - [0x7005688, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5688"] + - [0x7005700, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5700"] + - [0x7005778, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5778"] + - [0x7005820, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5820"] + - [0x7005898, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5898"] + - [0x7005910, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5910"] + - [0x7005988, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5988"] + - [0x7005A00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5A00"] + - [0x7005A78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5A78"] + - [0x7005AF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5AF0"] + - [0x7005B68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5B68"] + - [0x7005BE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5BE0"] + - [0x7005C58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5C58"] + - [0x7005CD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5CD0"] + - [0x7005D60, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5D60"] + - [0x7005DC8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5DC8"] + - [0x7005E30, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5E30"] + - [0x7005EA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5EA0"] + - [0x7005F10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5F10"] + - [0x7005F78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5F78"] + - [0x7005FE8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5FE8"] + - [0x7006058, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6058"] + - [0x7006098, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6098"] + - [0x7006310, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6310"] + - [0x7006320, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6320"] + - [0x70063B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_63B8"] + - [0x7006450, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6450"] + - [0x70064E8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_64E8"] + - [0x7006580, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6580"] + - [0x7006640, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6640"] + - [0x70066D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_66D8"] + - [0x7006770, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6770"] + - [0x7006808, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6808"] + - [0x70068A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_68A0"] + - [0x7006918, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6918"] + - [0x70069B0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_69B0"] + - [0x7006A10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6A10"] + - [0x7006A88, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6A88"] + - [0x7006B00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6B00"] + - [0x7006B78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6B78"] + - [0x7006BF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6BF0"] + - [0x7006C68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6C68"] + - [0x7006D00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6D00"] + - [0x7006D78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6D78"] + - [0x7006DF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6DF0"] + - [0x7006E68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6E68"] + - [0x7006EE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6EE0"] + - [0x7006F58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6F58"] + - [0x7006FD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6FD0"] + - [0x7007048, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7048"] + - [0x70070C0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_70C0"] + - [0x7007138, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7138"] + - [0x70071B0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_71B0"] + - [0x7007228, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7228"] + - [0x70072B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_72B8"] + - [0x7007338, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7338"] + - [0x7007348, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7348"] + # segment 4 + - [0x4000000, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000000"] + - [0x4000040, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000040"] + - [0x4000080, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000080"] + - [0x40000c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040000C0"] + - [0x4000100, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000100"] + - [0x4000140, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000140"] + - [0x4000180, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000180"] + - [0x40001c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040001C0"] + - [0x4000200, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000200"] + - [0x4000240, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000240"] + - [0x4000280, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000280"] + - [0x40002c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040002C0"] + - [0x4000300, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000300"] + - [0x4000340, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000340"] + - [0x4000380, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000380"] + - [0x40003c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040003C0"] + - [0x4000400, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000400"] + - [0x4000440, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000440"] + - [0x4000480, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000480"] + - [0x40004c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040004C0"] + - [0x4000500, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000500"] + - [0x4000540, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000540"] + - [0x4000580, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000580"] + - [0x40005c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040005C0"] + - [0x4000600, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000600"] + - [0x4000740, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000740"] + - [0x40008c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040008C0"] + - [0x4000a80, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000A80"] + - [0x4000c80, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000C80"] + - [0x4000e80, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04000E80"] + - [0x4001000, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001000"] + - [0x4001200, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001200"] + - [0x40012c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040012C0"] + - [0x40014c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040014C0"] + - [0x40016b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040016B0"] + - [0x4001710, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001710"] + - [0x4001910, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001910"] + - [0x4001950, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001950"] + - [0x4001b50, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001B50"] + - [0x4001cd0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001CD0"] + - [0x4001e10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001E10"] + - [0x4001ff0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04001FF0"] + - [0x40021d0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040021D0"] + - [0x40023b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040023B0"] + - [0x4002510, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002510"] + - [0x4002690, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002690"] + - [0x4002890, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002890"] + - [0x4002930, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002930"] + - [0x4002b10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002B10"] + - [0x4002bb0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002BB0"] + - [0x4002d30, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002D30"] + - [0x4002f30, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04002F30"] + - [0x4003030, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003030"] + - [0x4003230, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003230"] + - [0x4003270, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003270"] + - [0x4003470, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003470"] + - [0x4003670, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003670"] + - [0x40037d0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040037D0"] + - [0x40039d0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040039D0"] + - [0x4003b20, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003B20"] + - [0x4003ca0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003CA0"] + - [0x4003e40, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003E40"] + - [0x4003f40, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04003F40"] + - [0x4004010, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004010"] + - [0x4004150, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004150"] + - [0x4004290, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004290"] + - [0x4004430, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004430"] + - [0x4004610, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004610"] + - [0x40046a0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040046A0"] + - [0x40048a0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040048A0"] + - [0x4004960, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004960"] + - [0x4004b50, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004B50"] + - [0x4004d00, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004D00"] + - [0x4004ef0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04004EF0"] + - [0x4005040, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005040"] + - [0x4005220, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005220"] + - [0x4005310, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005310"] + - [0x40054f0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040054F0"] + - [0x40056f0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040056F0"] + - [0x4005770, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005770"] + - [0x4005950, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005950"] + - [0x4005af0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005AF0"] + - [0x4005bb0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005BB0"] + - [0x4005cf0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005CF0"] + - [0x4005d70, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005D70"] + - [0x4005df0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005DF0"] + - [0x4005ef0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04005EF0"] + - [0x4006070, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006070"] + - [0x4006170, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006170"] + - [0x4006330, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006330"] + - [0x4006430, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006430"] + - [0x40065b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040065B0"] + - [0x40066b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040066B0"] + - [0x4006830, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006830"] + - [0x40068b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040068B0"] + - [0x4006a30, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006A30"] + - [0x4006a70, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006A70"] + - [0x4006b30, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006B30"] + - [0x4006c70, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006C70"] + - [0x4006d30, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006D30"] + - [0x4006eb0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006EB0"] + - [0x4006ff0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04006FF0"] + - [0x40071f0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040071F0"] + - [0x4007230, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007230"] + - [0x40072b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040072B0"] + - [0x4007330, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007330"] + - [0x40074b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040074B0"] + - [0x4007690, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007690"] + - [0x40076f0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040076F0"] + - [0x4007850, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007850"] + - [0x4007a50, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007A50"] + - [0x4007b90, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007B90"] + - [0x4007d90, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007D90"] + - [0x4007e90, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04007E90"] + - [0x4008050, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008050"] + - [0x4008110, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008110"] + - [0x4008250, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008250"] + - [0x4008440, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008440"] + - [0x4008620, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008620"] + - [0x4008780, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008780"] + - [0x4008840, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008840"] + - [0x4008980, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008980"] + - [0x4008a00, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008A00"] + - [0x4008b00, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008B00"] + - [0x4008c00, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008C00"] + - [0x4008d60, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008D60"] + - [0x4008e40, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04008E40"] + - [0x4009040, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009040"] + - [0x4009190, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009190"] + - [0x4009270, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009270"] + - [0x4009360, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009360"] + - [0x40093d0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040093D0"] + - [0x40095d0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x040095D0"] + - [0x4009760, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009760"] + - [0x4009960, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009960"] + - [0x4009b60, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009B60"] + - [0x4009d60, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009D60"] + - [0x4009da0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009DA0"] + - [0x4009f90, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04009F90"] + - [0x400a180, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A180"] + - [0x400a330, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A330"] + - [0x400a510, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A510"] + - [0x400a590, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A590"] + - [0x400a6c0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A6C0"] + - [0x400a7a0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A7A0"] + - [0x400a8a0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A8A0"] + - [0x400a9a0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400A9A0"] + - [0x400aaa0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400AAA0"] + - [0x400ac40, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400AC40"] + - [0x400acc0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400ACC0"] + - [0x400ad00, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400AD00"] + - [0x400ae50, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400AE50"] + - [0x400b050, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B050"] + - [0x400b090, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B090"] + - [0x400b290, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B290"] + - [0x400b2d0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B2D0"] + - [0x400b4d0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B4D0"] + - [0x400b510, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B510"] + - [0x400b710, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B710"] + - [0x400b750, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B750"] + - [0x400b950, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B950"] + - [0x400b990, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400B990"] + - [0x400bb70, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400BB70"] + - [0x400bbd0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400BBD0"] + - [0x400bdd0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400BDD0"] + - [0x400be10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400BE10"] + - [0x400c010, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C010"] + - [0x400c130, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C130"] + - [0x400c330, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C330"] + - [0x400c370, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C370"] + - [0x400c570, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C570"] + - [0x400c5b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C5B0"] + - [0x400c7b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C7B0"] + - [0x400c7f0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C7F0"] + - [0x400c9f0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400C9F0"] + - [0x400ca30, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400CA30"] + - [0x400cc30, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400CC30"] + - [0x400cc70, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400CC70"] + - [0x400ce70, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400CE70"] + - [0x400d070, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D070"] + - [0x400d0b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D0B0"] + - [0x400d2b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D2B0"] + - [0x400d2f0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D2F0"] + - [0x400d4f0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D4F0"] + - [0x400d530, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D530"] + - [0x400d730, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D730"] + - [0x400d770, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D770"] + - [0x400d960, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D960"] + - [0x400d9b0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400D9B0"] + - [0x400db60, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400DB60"] + - [0x400dcf0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400DCF0"] + - [0x400def0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400DEF0"] + - [0x400e030, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E030"] + - [0x400e110, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E110"] + - [0x400e200, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E200"] + - [0x400e400, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E400"] + - [0x400e5e0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E5E0"] + - [0x400e720, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E720"] + - [0x400e860, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E860"] + - [0x400e9a0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400E9A0"] + - [0x400eae0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400EAE0"] + - [0x400ec20, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400EC20"] + - [0x400ed60, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400ED60"] + - [0x400ef50, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400EF50"] + - [0x400efe0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400EFE0"] + - [0x400f120, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F120"] + - [0x400f260, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F260"] + - [0x400f3a0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F3A0"] + - [0x400f4e0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F4E0"] + - [0x400f620, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F620"] + - [0x400f760, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F760"] + - [0x400f8a0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F8A0"] + - [0x400f9e0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400F9E0"] + - [0x400fb20, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FB20"] + - [0x400fc60, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FC60"] + - [0x400fcf0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FCF0"] + - [0x400fd70, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FD70"] + - [0x400fe80, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FE80"] + - [0x400ff70, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x0400FF70"] + - [0x4010030, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010030"] + - [0x4010110, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010110"] + - [0x4010200, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010200"] + - [0x4010400, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010400"] + - [0x4010600, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010600"] + - [0x4010800, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010800"] + - [0x4010a00, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010A00"] + - [0x4010bf0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010BF0"] + - [0x4010cd0, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010CD0"] + - [0x4010d10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010D10"] + - [0x4010f10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04010F10"] + - [0x4011110, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011110"] + - [0x4011310, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011310"] + - [0x4011510, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011510"] + - [0x4011710, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011710"] + - [0x4011810, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011810"] + - [0x4011a10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011A10"] + - [0x4011c10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011C10"] + - [0x4011e10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04011E10"] + - [0x4012010, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012010"] + - [0x4012110, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012110"] + - [0x4012310, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012310"] + - [0x4012410, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012410"] + - [0x4012510, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012510"] + - [0x4012610, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012610"] + - [0x4012710, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012710"] + - [0x4012810, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012810"] + - [0x4012a10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012A10"] + - [0x4012b10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012B10"] + - [0x4012c10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012C10"] + - [0x4012d10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012D10"] + - [0x4012e10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012E10"] + - [0x4012f10, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04012F10"] + - [0x4013010, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013010"] + - [0x4013110, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013110"] + - [0x4013210, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013210"] + - [0x4013310, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013310"] + - [0x4013410, "models/tracks/banshee_boardwalk/banshee_boardwalk_vertices/d_course_banshee_boardwalk_vertex_0x04013410"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_banshee_boardwalk_packed_dl_0: + symbol: d_course_banshee_boardwalk_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_banshee_boardwalk_packed_dl_60: + symbol: d_course_banshee_boardwalk_packed_dl_60 + type: MK64:PACKED_GFX + offset: 0x11 +d_course_banshee_boardwalk_packed_dl_70: + symbol: d_course_banshee_boardwalk_packed_dl_70 + type: MK64:PACKED_GFX + offset: 0x15 +d_course_banshee_boardwalk_packed_dl_120: + symbol: d_course_banshee_boardwalk_packed_dl_120 + type: MK64:PACKED_GFX + offset: 0x35 +d_course_banshee_boardwalk_packed_dl_1D0: + symbol: d_course_banshee_boardwalk_packed_dl_1D0 + type: MK64:PACKED_GFX + offset: 0x55 +d_course_banshee_boardwalk_packed_dl_280: + symbol: d_course_banshee_boardwalk_packed_dl_280 + type: MK64:PACKED_GFX + offset: 0x75 +d_course_banshee_boardwalk_packed_dl_330: + symbol: d_course_banshee_boardwalk_packed_dl_330 + type: MK64:PACKED_GFX + offset: 0x95 +d_course_banshee_boardwalk_packed_dl_3E0: + symbol: d_course_banshee_boardwalk_packed_dl_3E0 + type: MK64:PACKED_GFX + offset: 0xB5 +d_course_banshee_boardwalk_packed_dl_490: + symbol: d_course_banshee_boardwalk_packed_dl_490 + type: MK64:PACKED_GFX + offset: 0xD5 +d_course_banshee_boardwalk_packed_dl_540: + symbol: d_course_banshee_boardwalk_packed_dl_540 + type: MK64:PACKED_GFX + offset: 0xF5 +d_course_banshee_boardwalk_packed_dl_580: + symbol: d_course_banshee_boardwalk_packed_dl_580 + type: MK64:PACKED_GFX + offset: 0x10B +d_course_banshee_boardwalk_packed_dl_688: + symbol: d_course_banshee_boardwalk_packed_dl_688 + type: MK64:PACKED_GFX + offset: 0x140 +d_course_banshee_boardwalk_packed_dl_698: + symbol: d_course_banshee_boardwalk_packed_dl_698 + type: MK64:PACKED_GFX + offset: 0x144 +d_course_banshee_boardwalk_packed_dl_6F8: + symbol: d_course_banshee_boardwalk_packed_dl_6F8 + type: MK64:PACKED_GFX + offset: 0x155 +d_course_banshee_boardwalk_packed_dl_758: + symbol: d_course_banshee_boardwalk_packed_dl_758 + type: MK64:PACKED_GFX + offset: 0x166 +d_course_banshee_boardwalk_packed_dl_7B8: + symbol: d_course_banshee_boardwalk_packed_dl_7B8 + type: MK64:PACKED_GFX + offset: 0x177 +d_course_banshee_boardwalk_packed_dl_818: + symbol: d_course_banshee_boardwalk_packed_dl_818 + type: MK64:PACKED_GFX + offset: 0x188 +d_course_banshee_boardwalk_packed_dl_878: + symbol: d_course_banshee_boardwalk_packed_dl_878 + type: MK64:PACKED_GFX + offset: 0x199 +d_course_banshee_boardwalk_packed_dl_8A8: + symbol: d_course_banshee_boardwalk_packed_dl_8A8 + type: MK64:PACKED_GFX + offset: 0x1A9 +d_course_banshee_boardwalk_packed_dl_930: + symbol: d_course_banshee_boardwalk_packed_dl_930 + type: MK64:PACKED_GFX + offset: 0x1D3 +d_course_banshee_boardwalk_packed_dl_9B8: + symbol: d_course_banshee_boardwalk_packed_dl_9B8 + type: MK64:PACKED_GFX + offset: 0x1FD +d_course_banshee_boardwalk_packed_dl_A50: + symbol: d_course_banshee_boardwalk_packed_dl_A50 + type: MK64:PACKED_GFX + offset: 0x231 +d_course_banshee_boardwalk_packed_dl_AE8: + symbol: d_course_banshee_boardwalk_packed_dl_AE8 + type: MK64:PACKED_GFX + offset: 0x265 +d_course_banshee_boardwalk_packed_dl_BC8: + symbol: d_course_banshee_boardwalk_packed_dl_BC8 + type: MK64:PACKED_GFX + offset: 0x2C4 +d_course_banshee_boardwalk_packed_dl_C98: + symbol: d_course_banshee_boardwalk_packed_dl_C98 + type: MK64:PACKED_GFX + offset: 0x319 +d_course_banshee_boardwalk_packed_dl_D30: + symbol: d_course_banshee_boardwalk_packed_dl_D30 + type: MK64:PACKED_GFX + offset: 0x34D +d_course_banshee_boardwalk_packed_dl_DF0: + symbol: d_course_banshee_boardwalk_packed_dl_DF0 + type: MK64:PACKED_GFX + offset: 0x398 +d_course_banshee_boardwalk_packed_dl_EA0: + symbol: d_course_banshee_boardwalk_packed_dl_EA0 + type: MK64:PACKED_GFX + offset: 0x3D9 +d_course_banshee_boardwalk_packed_dl_F80: + symbol: d_course_banshee_boardwalk_packed_dl_F80 + type: MK64:PACKED_GFX + offset: 0x438 +d_course_banshee_boardwalk_packed_dl_1008: + symbol: d_course_banshee_boardwalk_packed_dl_1008 + type: MK64:PACKED_GFX + offset: 0x462 +d_course_banshee_boardwalk_packed_dl_1108: + symbol: d_course_banshee_boardwalk_packed_dl_1108 + type: MK64:PACKED_GFX + offset: 0x4D5 +d_course_banshee_boardwalk_packed_dl_11D8: + symbol: d_course_banshee_boardwalk_packed_dl_11D8 + type: MK64:PACKED_GFX + offset: 0x52A +d_course_banshee_boardwalk_packed_dl_1260: + symbol: d_course_banshee_boardwalk_packed_dl_1260 + type: MK64:PACKED_GFX + offset: 0x554 +d_course_banshee_boardwalk_packed_dl_1320: + symbol: d_course_banshee_boardwalk_packed_dl_1320 + type: MK64:PACKED_GFX + offset: 0x59F +d_course_banshee_boardwalk_packed_dl_13E0: + symbol: d_course_banshee_boardwalk_packed_dl_13E0 + type: MK64:PACKED_GFX + offset: 0x5EA +d_course_banshee_boardwalk_packed_dl_1478: + symbol: d_course_banshee_boardwalk_packed_dl_1478 + type: MK64:PACKED_GFX + offset: 0x61E +d_course_banshee_boardwalk_packed_dl_1560: + symbol: d_course_banshee_boardwalk_packed_dl_1560 + type: MK64:PACKED_GFX + offset: 0x682 +d_course_banshee_boardwalk_packed_dl_1610: + symbol: d_course_banshee_boardwalk_packed_dl_1610 + type: MK64:PACKED_GFX + offset: 0x6C3 +d_course_banshee_boardwalk_packed_dl_1748: + symbol: d_course_banshee_boardwalk_packed_dl_1748 + type: MK64:PACKED_GFX + offset: 0x757 +d_course_banshee_boardwalk_packed_dl_17F0: + symbol: d_course_banshee_boardwalk_packed_dl_17F0 + type: MK64:PACKED_GFX + offset: 0x794 +d_course_banshee_boardwalk_packed_dl_1820: + symbol: d_course_banshee_boardwalk_packed_dl_1820 + type: MK64:PACKED_GFX + offset: 0x7A4 +d_course_banshee_boardwalk_packed_dl_1830: + symbol: d_course_banshee_boardwalk_packed_dl_1830 + type: MK64:PACKED_GFX + offset: 0x7A8 +d_course_banshee_boardwalk_packed_dl_18E0: + symbol: d_course_banshee_boardwalk_packed_dl_18E0 + type: MK64:PACKED_GFX + offset: 0x7EB +d_course_banshee_boardwalk_packed_dl_1968: + symbol: d_course_banshee_boardwalk_packed_dl_1968 + type: MK64:PACKED_GFX + offset: 0x813 +d_course_banshee_boardwalk_packed_dl_1A00: + symbol: d_course_banshee_boardwalk_packed_dl_1A00 + type: MK64:PACKED_GFX + offset: 0x847 +d_course_banshee_boardwalk_packed_dl_1A98: + symbol: d_course_banshee_boardwalk_packed_dl_1A98 + type: MK64:PACKED_GFX + offset: 0x87B +d_course_banshee_boardwalk_packed_dl_1AC0: + symbol: d_course_banshee_boardwalk_packed_dl_1AC0 + type: MK64:PACKED_GFX + offset: 0x888 +d_course_banshee_boardwalk_packed_dl_1B58: + symbol: d_course_banshee_boardwalk_packed_dl_1B58 + type: MK64:PACKED_GFX + offset: 0x8BC +d_course_banshee_boardwalk_packed_dl_1BE0: + symbol: d_course_banshee_boardwalk_packed_dl_1BE0 + type: MK64:PACKED_GFX + offset: 0x8E6 +d_course_banshee_boardwalk_packed_dl_1BF8: + symbol: d_course_banshee_boardwalk_packed_dl_1BF8 + type: MK64:PACKED_GFX + offset: 0x8ED +d_course_banshee_boardwalk_packed_dl_1C78: + symbol: d_course_banshee_boardwalk_packed_dl_1C78 + type: MK64:PACKED_GFX + offset: 0x912 +d_course_banshee_boardwalk_packed_dl_1CF8: + symbol: d_course_banshee_boardwalk_packed_dl_1CF8 + type: MK64:PACKED_GFX + offset: 0x937 +d_course_banshee_boardwalk_packed_dl_1D10: + symbol: d_course_banshee_boardwalk_packed_dl_1D10 + type: MK64:PACKED_GFX + offset: 0x93E +d_course_banshee_boardwalk_packed_dl_1DA0: + symbol: d_course_banshee_boardwalk_packed_dl_1DA0 + type: MK64:PACKED_GFX + offset: 0x96D +d_course_banshee_boardwalk_packed_dl_1DB0: + symbol: d_course_banshee_boardwalk_packed_dl_1DB0 + type: MK64:PACKED_GFX + offset: 0x971 +d_course_banshee_boardwalk_packed_dl_1E50: + symbol: d_course_banshee_boardwalk_packed_dl_1E50 + type: MK64:PACKED_GFX + offset: 0x9A4 +d_course_banshee_boardwalk_packed_dl_1EF0: + symbol: d_course_banshee_boardwalk_packed_dl_1EF0 + type: MK64:PACKED_GFX + offset: 0x9DB +d_course_banshee_boardwalk_packed_dl_1FA8: + symbol: d_course_banshee_boardwalk_packed_dl_1FA8 + type: MK64:PACKED_GFX + offset: 0xA1F +d_course_banshee_boardwalk_packed_dl_2058: + symbol: d_course_banshee_boardwalk_packed_dl_2058 + type: MK64:PACKED_GFX + offset: 0xA5E +d_course_banshee_boardwalk_packed_dl_2100: + symbol: d_course_banshee_boardwalk_packed_dl_2100 + type: MK64:PACKED_GFX + offset: 0xA96 +d_course_banshee_boardwalk_packed_dl_21D8: + symbol: d_course_banshee_boardwalk_packed_dl_21D8 + type: MK64:PACKED_GFX + offset: 0xAE8 +d_course_banshee_boardwalk_packed_dl_2288: + symbol: d_course_banshee_boardwalk_packed_dl_2288 + type: MK64:PACKED_GFX + offset: 0xB27 +d_course_banshee_boardwalk_packed_dl_22C8: + symbol: d_course_banshee_boardwalk_packed_dl_22C8 + type: MK64:PACKED_GFX + offset: 0xB3D +d_course_banshee_boardwalk_packed_dl_2398: + symbol: d_course_banshee_boardwalk_packed_dl_2398 + type: MK64:PACKED_GFX + offset: 0xB7D +d_course_banshee_boardwalk_packed_dl_2440: + symbol: d_course_banshee_boardwalk_packed_dl_2440 + type: MK64:PACKED_GFX + offset: 0xBA4 +d_course_banshee_boardwalk_packed_dl_2520: + symbol: d_course_banshee_boardwalk_packed_dl_2520 + type: MK64:PACKED_GFX + offset: 0xBEE +d_course_banshee_boardwalk_packed_dl_2608: + symbol: d_course_banshee_boardwalk_packed_dl_2608 + type: MK64:PACKED_GFX + offset: 0xC3D +d_course_banshee_boardwalk_packed_dl_26E8: + symbol: d_course_banshee_boardwalk_packed_dl_26E8 + type: MK64:PACKED_GFX + offset: 0xC87 +d_course_banshee_boardwalk_packed_dl_27D0: + symbol: d_course_banshee_boardwalk_packed_dl_27D0 + type: MK64:PACKED_GFX + offset: 0xCD6 +d_course_banshee_boardwalk_packed_dl_28D0: + symbol: d_course_banshee_boardwalk_packed_dl_28D0 + type: MK64:PACKED_GFX + offset: 0xD1D +d_course_banshee_boardwalk_packed_dl_29A0: + symbol: d_course_banshee_boardwalk_packed_dl_29A0 + type: MK64:PACKED_GFX + offset: 0xD5D +d_course_banshee_boardwalk_packed_dl_2A70: + symbol: d_course_banshee_boardwalk_packed_dl_2A70 + type: MK64:PACKED_GFX + offset: 0xD9D +d_course_banshee_boardwalk_packed_dl_2B78: + symbol: d_course_banshee_boardwalk_packed_dl_2B78 + type: MK64:PACKED_GFX + offset: 0xDFE +d_course_banshee_boardwalk_packed_dl_2C20: + symbol: d_course_banshee_boardwalk_packed_dl_2C20 + type: MK64:PACKED_GFX + offset: 0xE25 +d_course_banshee_boardwalk_packed_dl_2D40: + symbol: d_course_banshee_boardwalk_packed_dl_2D40 + type: MK64:PACKED_GFX + offset: 0xE95 +d_course_banshee_boardwalk_packed_dl_2E40: + symbol: d_course_banshee_boardwalk_packed_dl_2E40 + type: MK64:PACKED_GFX + offset: 0xEF3 +d_course_banshee_boardwalk_packed_dl_2F38: + symbol: d_course_banshee_boardwalk_packed_dl_2F38 + type: MK64:PACKED_GFX + offset: 0xF4C +d_course_banshee_boardwalk_packed_dl_3020: + symbol: d_course_banshee_boardwalk_packed_dl_3020 + type: MK64:PACKED_GFX + offset: 0xF9B +d_course_banshee_boardwalk_packed_dl_30F0: + symbol: d_course_banshee_boardwalk_packed_dl_30F0 + type: MK64:PACKED_GFX + offset: 0xFDB +d_course_banshee_boardwalk_packed_dl_3240: + symbol: d_course_banshee_boardwalk_packed_dl_3240 + type: MK64:PACKED_GFX + offset: 0x1067 +d_course_banshee_boardwalk_packed_dl_3310: + symbol: d_course_banshee_boardwalk_packed_dl_3310 + type: MK64:PACKED_GFX + offset: 0x10A7 +d_course_banshee_boardwalk_packed_dl_33C8: + symbol: d_course_banshee_boardwalk_packed_dl_33C8 + type: MK64:PACKED_GFX + offset: 0x10D8 +d_course_banshee_boardwalk_packed_dl_34A0: + symbol: d_course_banshee_boardwalk_packed_dl_34A0 + type: MK64:PACKED_GFX + offset: 0x111D +d_course_banshee_boardwalk_packed_dl_3588: + symbol: d_course_banshee_boardwalk_packed_dl_3588 + type: MK64:PACKED_GFX + offset: 0x116C +d_course_banshee_boardwalk_packed_dl_3638: + symbol: d_course_banshee_boardwalk_packed_dl_3638 + type: MK64:PACKED_GFX + offset: 0x11AC +d_course_banshee_boardwalk_packed_dl_36C8: + symbol: d_course_banshee_boardwalk_packed_dl_36C8 + type: MK64:PACKED_GFX + offset: 0x11D9 +d_course_banshee_boardwalk_packed_dl_3740: + symbol: d_course_banshee_boardwalk_packed_dl_3740 + type: MK64:PACKED_GFX + offset: 0x11F9 +d_course_banshee_boardwalk_packed_dl_37C0: + symbol: d_course_banshee_boardwalk_packed_dl_37C0 + type: MK64:PACKED_GFX + offset: 0x121C +d_course_banshee_boardwalk_packed_dl_3830: + symbol: d_course_banshee_boardwalk_packed_dl_3830 + type: MK64:PACKED_GFX + offset: 0x1235 +d_course_banshee_boardwalk_packed_dl_3930: + symbol: d_course_banshee_boardwalk_packed_dl_3930 + type: MK64:PACKED_GFX + offset: 0x12A6 +d_course_banshee_boardwalk_packed_dl_3AA0: + symbol: d_course_banshee_boardwalk_packed_dl_3AA0 + type: MK64:PACKED_GFX + offset: 0x1357 +d_course_banshee_boardwalk_packed_dl_3BA0: + symbol: d_course_banshee_boardwalk_packed_dl_3BA0 + type: MK64:PACKED_GFX + offset: 0x13C8 +d_course_banshee_boardwalk_packed_dl_3C40: + symbol: d_course_banshee_boardwalk_packed_dl_3C40 + type: MK64:PACKED_GFX + offset: 0x13FF +d_course_banshee_boardwalk_packed_dl_3D08: + symbol: d_course_banshee_boardwalk_packed_dl_3D08 + type: MK64:PACKED_GFX + offset: 0x144F +d_course_banshee_boardwalk_packed_dl_3D90: + symbol: d_course_banshee_boardwalk_packed_dl_3D90 + type: MK64:PACKED_GFX + offset: 0x1477 +d_course_banshee_boardwalk_packed_dl_3E10: + symbol: d_course_banshee_boardwalk_packed_dl_3E10 + type: MK64:PACKED_GFX + offset: 0x149A +d_course_banshee_boardwalk_packed_dl_3E88: + symbol: d_course_banshee_boardwalk_packed_dl_3E88 + type: MK64:PACKED_GFX + offset: 0x14BA +d_course_banshee_boardwalk_packed_dl_3F00: + symbol: d_course_banshee_boardwalk_packed_dl_3F00 + type: MK64:PACKED_GFX + offset: 0x14DA +d_course_banshee_boardwalk_packed_dl_3F78: + symbol: d_course_banshee_boardwalk_packed_dl_3F78 + type: MK64:PACKED_GFX + offset: 0x14FA +d_course_banshee_boardwalk_packed_dl_4008: + symbol: d_course_banshee_boardwalk_packed_dl_4008 + type: MK64:PACKED_GFX + offset: 0x1529 +d_course_banshee_boardwalk_packed_dl_4070: + symbol: d_course_banshee_boardwalk_packed_dl_4070 + type: MK64:PACKED_GFX + offset: 0x153F +d_course_banshee_boardwalk_packed_dl_40D0: + symbol: d_course_banshee_boardwalk_packed_dl_40D0 + type: MK64:PACKED_GFX + offset: 0x1550 +d_course_banshee_boardwalk_packed_dl_4160: + symbol: d_course_banshee_boardwalk_packed_dl_4160 + type: MK64:PACKED_GFX + offset: 0x157D +d_course_banshee_boardwalk_packed_dl_41F8: + symbol: d_course_banshee_boardwalk_packed_dl_41F8 + type: MK64:PACKED_GFX + offset: 0x15B4 +d_course_banshee_boardwalk_packed_dl_42A8: + symbol: d_course_banshee_boardwalk_packed_dl_42A8 + type: MK64:PACKED_GFX + offset: 0x15F5 +d_course_banshee_boardwalk_packed_dl_4358: + symbol: d_course_banshee_boardwalk_packed_dl_4358 + type: MK64:PACKED_GFX + offset: 0x1636 +d_course_banshee_boardwalk_packed_dl_4408: + symbol: d_course_banshee_boardwalk_packed_dl_4408 + type: MK64:PACKED_GFX + offset: 0x1677 +d_course_banshee_boardwalk_packed_dl_44B8: + symbol: d_course_banshee_boardwalk_packed_dl_44B8 + type: MK64:PACKED_GFX + offset: 0x16B8 +d_course_banshee_boardwalk_packed_dl_4568: + symbol: d_course_banshee_boardwalk_packed_dl_4568 + type: MK64:PACKED_GFX + offset: 0x16F9 +d_course_banshee_boardwalk_packed_dl_4618: + symbol: d_course_banshee_boardwalk_packed_dl_4618 + type: MK64:PACKED_GFX + offset: 0x173A +d_course_banshee_boardwalk_packed_dl_46C8: + symbol: d_course_banshee_boardwalk_packed_dl_46C8 + type: MK64:PACKED_GFX + offset: 0x177B +d_course_banshee_boardwalk_packed_dl_4798: + symbol: d_course_banshee_boardwalk_packed_dl_4798 + type: MK64:PACKED_GFX + offset: 0x17D0 +d_course_banshee_boardwalk_packed_dl_4848: + symbol: d_course_banshee_boardwalk_packed_dl_4848 + type: MK64:PACKED_GFX + offset: 0x1811 +d_course_banshee_boardwalk_packed_dl_48F8: + symbol: d_course_banshee_boardwalk_packed_dl_48F8 + type: MK64:PACKED_GFX + offset: 0x1852 +d_course_banshee_boardwalk_packed_dl_49A8: + symbol: d_course_banshee_boardwalk_packed_dl_49A8 + type: MK64:PACKED_GFX + offset: 0x1893 +d_course_banshee_boardwalk_packed_dl_4A58: + symbol: d_course_banshee_boardwalk_packed_dl_4A58 + type: MK64:PACKED_GFX + offset: 0x18D4 +d_course_banshee_boardwalk_packed_dl_4B08: + symbol: d_course_banshee_boardwalk_packed_dl_4B08 + type: MK64:PACKED_GFX + offset: 0x1915 +d_course_banshee_boardwalk_packed_dl_4BA0: + symbol: d_course_banshee_boardwalk_packed_dl_4BA0 + type: MK64:PACKED_GFX + offset: 0x1949 +d_course_banshee_boardwalk_packed_dl_4C50: + symbol: d_course_banshee_boardwalk_packed_dl_4C50 + type: MK64:PACKED_GFX + offset: 0x198A +d_course_banshee_boardwalk_packed_dl_4D00: + symbol: d_course_banshee_boardwalk_packed_dl_4D00 + type: MK64:PACKED_GFX + offset: 0x19CB +d_course_banshee_boardwalk_packed_dl_4DB0: + symbol: d_course_banshee_boardwalk_packed_dl_4DB0 + type: MK64:PACKED_GFX + offset: 0x1A0C +d_course_banshee_boardwalk_packed_dl_4E60: + symbol: d_course_banshee_boardwalk_packed_dl_4E60 + type: MK64:PACKED_GFX + offset: 0x1A4D +d_course_banshee_boardwalk_packed_dl_4EF8: + symbol: d_course_banshee_boardwalk_packed_dl_4EF8 + type: MK64:PACKED_GFX + offset: 0x1A84 +d_course_banshee_boardwalk_packed_dl_4FD0: + symbol: d_course_banshee_boardwalk_packed_dl_4FD0 + type: MK64:PACKED_GFX + offset: 0x1ADA +d_course_banshee_boardwalk_packed_dl_5078: + symbol: d_course_banshee_boardwalk_packed_dl_5078 + type: MK64:PACKED_GFX + offset: 0x1B16 +d_course_banshee_boardwalk_packed_dl_5120: + symbol: d_course_banshee_boardwalk_packed_dl_5120 + type: MK64:PACKED_GFX + offset: 0x1B52 +d_course_banshee_boardwalk_packed_dl_51E0: + symbol: d_course_banshee_boardwalk_packed_dl_51E0 + type: MK64:PACKED_GFX + offset: 0x1B9F +d_course_banshee_boardwalk_packed_dl_5278: + symbol: d_course_banshee_boardwalk_packed_dl_5278 + type: MK64:PACKED_GFX + offset: 0x1BD3 +d_course_banshee_boardwalk_packed_dl_52F8: + symbol: d_course_banshee_boardwalk_packed_dl_52F8 + type: MK64:PACKED_GFX + offset: 0x1BF8 +d_course_banshee_boardwalk_packed_dl_5378: + symbol: d_course_banshee_boardwalk_packed_dl_5378 + type: MK64:PACKED_GFX + offset: 0x1C1B +d_course_banshee_boardwalk_packed_dl_53B8: + symbol: d_course_banshee_boardwalk_packed_dl_53B8 + type: MK64:PACKED_GFX + offset: 0x1C31 +d_course_banshee_boardwalk_packed_dl_5498: + symbol: d_course_banshee_boardwalk_packed_dl_5498 + type: MK64:PACKED_GFX + offset: 0x1C90 +d_course_banshee_boardwalk_packed_dl_54A8: + symbol: d_course_banshee_boardwalk_packed_dl_54A8 + type: MK64:PACKED_GFX + offset: 0x1C94 +d_course_banshee_boardwalk_packed_dl_5520: + symbol: d_course_banshee_boardwalk_packed_dl_5520 + type: MK64:PACKED_GFX + offset: 0x1CB4 +d_course_banshee_boardwalk_packed_dl_5598: + symbol: d_course_banshee_boardwalk_packed_dl_5598 + type: MK64:PACKED_GFX + offset: 0x1CD4 +d_course_banshee_boardwalk_packed_dl_5610: + symbol: d_course_banshee_boardwalk_packed_dl_5610 + type: MK64:PACKED_GFX + offset: 0x1CF4 +d_course_banshee_boardwalk_packed_dl_5688: + symbol: d_course_banshee_boardwalk_packed_dl_5688 + type: MK64:PACKED_GFX + offset: 0x1D14 +d_course_banshee_boardwalk_packed_dl_5700: + symbol: d_course_banshee_boardwalk_packed_dl_5700 + type: MK64:PACKED_GFX + offset: 0x1D34 +d_course_banshee_boardwalk_packed_dl_5778: + symbol: d_course_banshee_boardwalk_packed_dl_5778 + type: MK64:PACKED_GFX + offset: 0x1D54 +d_course_banshee_boardwalk_packed_dl_5820: + symbol: d_course_banshee_boardwalk_packed_dl_5820 + type: MK64:PACKED_GFX + offset: 0x1D8C +d_course_banshee_boardwalk_packed_dl_5898: + symbol: d_course_banshee_boardwalk_packed_dl_5898 + type: MK64:PACKED_GFX + offset: 0x1DAC +d_course_banshee_boardwalk_packed_dl_5910: + symbol: d_course_banshee_boardwalk_packed_dl_5910 + type: MK64:PACKED_GFX + offset: 0x1DCC +d_course_banshee_boardwalk_packed_dl_5988: + symbol: d_course_banshee_boardwalk_packed_dl_5988 + type: MK64:PACKED_GFX + offset: 0x1DEC +d_course_banshee_boardwalk_packed_dl_5A00: + symbol: d_course_banshee_boardwalk_packed_dl_5A00 + type: MK64:PACKED_GFX + offset: 0x1E0C +d_course_banshee_boardwalk_packed_dl_5A78: + symbol: d_course_banshee_boardwalk_packed_dl_5A78 + type: MK64:PACKED_GFX + offset: 0x1E2C +d_course_banshee_boardwalk_packed_dl_5AF0: + symbol: d_course_banshee_boardwalk_packed_dl_5AF0 + type: MK64:PACKED_GFX + offset: 0x1E4C +d_course_banshee_boardwalk_packed_dl_5B68: + symbol: d_course_banshee_boardwalk_packed_dl_5B68 + type: MK64:PACKED_GFX + offset: 0x1E6C +d_course_banshee_boardwalk_packed_dl_5BE0: + symbol: d_course_banshee_boardwalk_packed_dl_5BE0 + type: MK64:PACKED_GFX + offset: 0x1E8C +d_course_banshee_boardwalk_packed_dl_5C58: + symbol: d_course_banshee_boardwalk_packed_dl_5C58 + type: MK64:PACKED_GFX + offset: 0x1EAC +d_course_banshee_boardwalk_packed_dl_5CD0: + symbol: d_course_banshee_boardwalk_packed_dl_5CD0 + type: MK64:PACKED_GFX + offset: 0x1ECC +d_course_banshee_boardwalk_packed_dl_5D60: + symbol: d_course_banshee_boardwalk_packed_dl_5D60 + type: MK64:PACKED_GFX + offset: 0x1F00 +d_course_banshee_boardwalk_packed_dl_5DC8: + symbol: d_course_banshee_boardwalk_packed_dl_5DC8 + type: MK64:PACKED_GFX + offset: 0x1F14 +d_course_banshee_boardwalk_packed_dl_5E30: + symbol: d_course_banshee_boardwalk_packed_dl_5E30 + type: MK64:PACKED_GFX + offset: 0x1F28 +d_course_banshee_boardwalk_packed_dl_5EA0: + symbol: d_course_banshee_boardwalk_packed_dl_5EA0 + type: MK64:PACKED_GFX + offset: 0x1F43 +d_course_banshee_boardwalk_packed_dl_5F10: + symbol: d_course_banshee_boardwalk_packed_dl_5F10 + type: MK64:PACKED_GFX + offset: 0x1F5E +d_course_banshee_boardwalk_packed_dl_5F78: + symbol: d_course_banshee_boardwalk_packed_dl_5F78 + type: MK64:PACKED_GFX + offset: 0x1F74 +d_course_banshee_boardwalk_packed_dl_5FE8: + symbol: d_course_banshee_boardwalk_packed_dl_5FE8 + type: MK64:PACKED_GFX + offset: 0x1F8D +d_course_banshee_boardwalk_packed_dl_6058: + symbol: d_course_banshee_boardwalk_packed_dl_6058 + type: MK64:PACKED_GFX + offset: 0x1FA6 +d_course_banshee_boardwalk_packed_dl_6098: + symbol: d_course_banshee_boardwalk_packed_dl_6098 + type: MK64:PACKED_GFX + offset: 0x1FBC +d_course_banshee_boardwalk_packed_dl_6310: + symbol: d_course_banshee_boardwalk_packed_dl_6310 + type: MK64:PACKED_GFX + offset: 0x20F7 +d_course_banshee_boardwalk_packed_dl_6320: + symbol: d_course_banshee_boardwalk_packed_dl_6320 + type: MK64:PACKED_GFX + offset: 0x20FB +d_course_banshee_boardwalk_packed_dl_63B8: + symbol: d_course_banshee_boardwalk_packed_dl_63B8 + type: MK64:PACKED_GFX + offset: 0x212F +d_course_banshee_boardwalk_packed_dl_6450: + symbol: d_course_banshee_boardwalk_packed_dl_6450 + type: MK64:PACKED_GFX + offset: 0x2163 +d_course_banshee_boardwalk_packed_dl_64E8: + symbol: d_course_banshee_boardwalk_packed_dl_64E8 + type: MK64:PACKED_GFX + offset: 0x2197 +d_course_banshee_boardwalk_packed_dl_6580: + symbol: d_course_banshee_boardwalk_packed_dl_6580 + type: MK64:PACKED_GFX + offset: 0x21CB +d_course_banshee_boardwalk_packed_dl_6640: + symbol: d_course_banshee_boardwalk_packed_dl_6640 + type: MK64:PACKED_GFX + offset: 0x2216 +d_course_banshee_boardwalk_packed_dl_66D8: + symbol: d_course_banshee_boardwalk_packed_dl_66D8 + type: MK64:PACKED_GFX + offset: 0x224A +d_course_banshee_boardwalk_packed_dl_6770: + symbol: d_course_banshee_boardwalk_packed_dl_6770 + type: MK64:PACKED_GFX + offset: 0x227E +d_course_banshee_boardwalk_packed_dl_6808: + symbol: d_course_banshee_boardwalk_packed_dl_6808 + type: MK64:PACKED_GFX + offset: 0x22B2 +d_course_banshee_boardwalk_packed_dl_68A0: + symbol: d_course_banshee_boardwalk_packed_dl_68A0 + type: MK64:PACKED_GFX + offset: 0x22E6 +d_course_banshee_boardwalk_packed_dl_6918: + symbol: d_course_banshee_boardwalk_packed_dl_6918 + type: MK64:PACKED_GFX + offset: 0x2306 +d_course_banshee_boardwalk_packed_dl_69B0: + symbol: d_course_banshee_boardwalk_packed_dl_69B0 + type: MK64:PACKED_GFX + offset: 0x233A +d_course_banshee_boardwalk_packed_dl_6A10: + symbol: d_course_banshee_boardwalk_packed_dl_6A10 + type: MK64:PACKED_GFX + offset: 0x235C +d_course_banshee_boardwalk_packed_dl_6A88: + symbol: d_course_banshee_boardwalk_packed_dl_6A88 + type: MK64:PACKED_GFX + offset: 0x237C +d_course_banshee_boardwalk_packed_dl_6B00: + symbol: d_course_banshee_boardwalk_packed_dl_6B00 + type: MK64:PACKED_GFX + offset: 0x239C +d_course_banshee_boardwalk_packed_dl_6B78: + symbol: d_course_banshee_boardwalk_packed_dl_6B78 + type: MK64:PACKED_GFX + offset: 0x23BC +d_course_banshee_boardwalk_packed_dl_6BF0: + symbol: d_course_banshee_boardwalk_packed_dl_6BF0 + type: MK64:PACKED_GFX + offset: 0x23DC +d_course_banshee_boardwalk_packed_dl_6C68: + symbol: d_course_banshee_boardwalk_packed_dl_6C68 + type: MK64:PACKED_GFX + offset: 0x23FC +d_course_banshee_boardwalk_packed_dl_6D00: + symbol: d_course_banshee_boardwalk_packed_dl_6D00 + type: MK64:PACKED_GFX + offset: 0x2430 +d_course_banshee_boardwalk_packed_dl_6D78: + symbol: d_course_banshee_boardwalk_packed_dl_6D78 + type: MK64:PACKED_GFX + offset: 0x2450 +d_course_banshee_boardwalk_packed_dl_6DF0: + symbol: d_course_banshee_boardwalk_packed_dl_6DF0 + type: MK64:PACKED_GFX + offset: 0x2470 +d_course_banshee_boardwalk_packed_dl_6E68: + symbol: d_course_banshee_boardwalk_packed_dl_6E68 + type: MK64:PACKED_GFX + offset: 0x2490 +d_course_banshee_boardwalk_packed_dl_6EE0: + symbol: d_course_banshee_boardwalk_packed_dl_6EE0 + type: MK64:PACKED_GFX + offset: 0x24B0 +d_course_banshee_boardwalk_packed_dl_6F58: + symbol: d_course_banshee_boardwalk_packed_dl_6F58 + type: MK64:PACKED_GFX + offset: 0x24D0 +d_course_banshee_boardwalk_packed_dl_6FD0: + symbol: d_course_banshee_boardwalk_packed_dl_6FD0 + type: MK64:PACKED_GFX + offset: 0x24F0 +d_course_banshee_boardwalk_packed_dl_7048: + symbol: d_course_banshee_boardwalk_packed_dl_7048 + type: MK64:PACKED_GFX + offset: 0x2510 +d_course_banshee_boardwalk_packed_dl_70C0: + symbol: d_course_banshee_boardwalk_packed_dl_70C0 + type: MK64:PACKED_GFX + offset: 0x2530 +d_course_banshee_boardwalk_packed_dl_7138: + symbol: d_course_banshee_boardwalk_packed_dl_7138 + type: MK64:PACKED_GFX + offset: 0x2550 +d_course_banshee_boardwalk_packed_dl_71B0: + symbol: d_course_banshee_boardwalk_packed_dl_71B0 + type: MK64:PACKED_GFX + offset: 0x2570 +d_course_banshee_boardwalk_packed_dl_7228: + symbol: d_course_banshee_boardwalk_packed_dl_7228 + type: MK64:PACKED_GFX + offset: 0x2590 +d_course_banshee_boardwalk_packed_dl_72B8: + symbol: d_course_banshee_boardwalk_packed_dl_72B8 + type: MK64:PACKED_GFX + offset: 0x25C4 +d_course_banshee_boardwalk_packed_dl_7338: + symbol: d_course_banshee_boardwalk_packed_dl_7338 + type: MK64:PACKED_GFX + offset: 0x25F2 +d_course_banshee_boardwalk_packed_dl_7348: + symbol: d_course_banshee_boardwalk_packed_dl_7348 + type: MK64:PACKED_GFX + offset: 0x25F6 diff --git a/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_vertices.yml b/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_vertices.yml new file mode 100644 index 000000000..65cc1da5a --- /dev/null +++ b/yamls/us/models/tracks/banshee_boardwalk/banshee_boardwalk_vertices.yml @@ -0,0 +1,1551 @@ +:config: + segments: + - [0x0F, 0x8B9630] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_banshee_boardwalk_vertex_0x04000000: + symbol: d_course_banshee_boardwalk_vertex_0x04000000 + type: mk64:course_vtx + count: 4 + offset: 0x0 + +d_course_banshee_boardwalk_vertex_0x04000040: + symbol: d_course_banshee_boardwalk_vertex_0x04000040 + type: mk64:course_vtx + count: 4 + offset: 0x38 + +d_course_banshee_boardwalk_vertex_0x04000080: + symbol: d_course_banshee_boardwalk_vertex_0x04000080 + type: mk64:course_vtx + count: 4 + offset: 0x70 + +d_course_banshee_boardwalk_vertex_0x040000C0: + symbol: d_course_banshee_boardwalk_vertex_0x040000C0 + type: mk64:course_vtx + count: 4 + offset: 0xa8 + +d_course_banshee_boardwalk_vertex_0x04000100: + symbol: d_course_banshee_boardwalk_vertex_0x04000100 + type: mk64:course_vtx + count: 4 + offset: 0xe0 + +d_course_banshee_boardwalk_vertex_0x04000140: + symbol: d_course_banshee_boardwalk_vertex_0x04000140 + type: mk64:course_vtx + count: 4 + offset: 0x118 + +d_course_banshee_boardwalk_vertex_0x04000180: + symbol: d_course_banshee_boardwalk_vertex_0x04000180 + type: mk64:course_vtx + count: 4 + offset: 0x150 + +d_course_banshee_boardwalk_vertex_0x040001C0: + symbol: d_course_banshee_boardwalk_vertex_0x040001C0 + type: mk64:course_vtx + count: 4 + offset: 0x188 + +d_course_banshee_boardwalk_vertex_0x04000200: + symbol: d_course_banshee_boardwalk_vertex_0x04000200 + type: mk64:course_vtx + count: 4 + offset: 0x1c0 + +d_course_banshee_boardwalk_vertex_0x04000240: + symbol: d_course_banshee_boardwalk_vertex_0x04000240 + type: mk64:course_vtx + count: 4 + offset: 0x1f8 + +d_course_banshee_boardwalk_vertex_0x04000280: + symbol: d_course_banshee_boardwalk_vertex_0x04000280 + type: mk64:course_vtx + count: 4 + offset: 0x230 + +d_course_banshee_boardwalk_vertex_0x040002C0: + symbol: d_course_banshee_boardwalk_vertex_0x040002C0 + type: mk64:course_vtx + count: 4 + offset: 0x268 + +d_course_banshee_boardwalk_vertex_0x04000300: + symbol: d_course_banshee_boardwalk_vertex_0x04000300 + type: mk64:course_vtx + count: 4 + offset: 0x2a0 + +d_course_banshee_boardwalk_vertex_0x04000340: + symbol: d_course_banshee_boardwalk_vertex_0x04000340 + type: mk64:course_vtx + count: 4 + offset: 0x2d8 + +d_course_banshee_boardwalk_vertex_0x04000380: + symbol: d_course_banshee_boardwalk_vertex_0x04000380 + type: mk64:course_vtx + count: 4 + offset: 0x310 + +d_course_banshee_boardwalk_vertex_0x040003C0: + symbol: d_course_banshee_boardwalk_vertex_0x040003C0 + type: mk64:course_vtx + count: 4 + offset: 0x348 + +d_course_banshee_boardwalk_vertex_0x04000400: + symbol: d_course_banshee_boardwalk_vertex_0x04000400 + type: mk64:course_vtx + count: 4 + offset: 0x380 + +d_course_banshee_boardwalk_vertex_0x04000440: + symbol: d_course_banshee_boardwalk_vertex_0x04000440 + type: mk64:course_vtx + count: 4 + offset: 0x3b8 + +d_course_banshee_boardwalk_vertex_0x04000480: + symbol: d_course_banshee_boardwalk_vertex_0x04000480 + type: mk64:course_vtx + count: 4 + offset: 0x3f0 + +d_course_banshee_boardwalk_vertex_0x040004C0: + symbol: d_course_banshee_boardwalk_vertex_0x040004C0 + type: mk64:course_vtx + count: 4 + offset: 0x428 + +d_course_banshee_boardwalk_vertex_0x04000500: + symbol: d_course_banshee_boardwalk_vertex_0x04000500 + type: mk64:course_vtx + count: 4 + offset: 0x460 + +d_course_banshee_boardwalk_vertex_0x04000540: + symbol: d_course_banshee_boardwalk_vertex_0x04000540 + type: mk64:course_vtx + count: 4 + offset: 0x498 + +d_course_banshee_boardwalk_vertex_0x04000580: + symbol: d_course_banshee_boardwalk_vertex_0x04000580 + type: mk64:course_vtx + count: 4 + offset: 0x4d0 + +d_course_banshee_boardwalk_vertex_0x040005C0: + symbol: d_course_banshee_boardwalk_vertex_0x040005C0 + type: mk64:course_vtx + count: 4 + offset: 0x508 + +d_course_banshee_boardwalk_vertex_0x04000600: + symbol: d_course_banshee_boardwalk_vertex_0x04000600 + type: mk64:course_vtx + count: 32 + offset: 0x540 + +d_course_banshee_boardwalk_vertex_0x04000740: + symbol: d_course_banshee_boardwalk_vertex_0x04000740 + type: mk64:course_vtx + count: 36 + offset: 0x658 + +d_course_banshee_boardwalk_vertex_0x040008C0: + symbol: d_course_banshee_boardwalk_vertex_0x040008C0 + type: mk64:course_vtx + count: 40 + offset: 0x7a8 + +d_course_banshee_boardwalk_vertex_0x04000A80: + symbol: d_course_banshee_boardwalk_vertex_0x04000A80 + type: mk64:course_vtx + count: 50 + offset: 0x930 + +d_course_banshee_boardwalk_vertex_0x04000C80: + symbol: d_course_banshee_boardwalk_vertex_0x04000C80 + type: mk64:course_vtx + count: 50 + offset: 0xaf0 + +d_course_banshee_boardwalk_vertex_0x04000E80: + symbol: d_course_banshee_boardwalk_vertex_0x04000E80 + type: mk64:course_vtx + count: 36 + offset: 0xcb0 + +d_course_banshee_boardwalk_vertex_0x04001000: + symbol: d_course_banshee_boardwalk_vertex_0x04001000 + type: mk64:course_vtx + count: 50 + offset: 0xe00 + +d_course_banshee_boardwalk_vertex_0x04001200: + symbol: d_course_banshee_boardwalk_vertex_0x04001200 + type: mk64:course_vtx + count: 18 + offset: 0xfc0 + +d_course_banshee_boardwalk_vertex_0x040012C0: + symbol: d_course_banshee_boardwalk_vertex_0x040012C0 + type: mk64:course_vtx + count: 50 + offset: 0x1068 + +d_course_banshee_boardwalk_vertex_0x040014C0: + symbol: d_course_banshee_boardwalk_vertex_0x040014C0 + type: mk64:course_vtx + count: 49 + offset: 0x1228 + +d_course_banshee_boardwalk_vertex_0x040016B0: + symbol: d_course_banshee_boardwalk_vertex_0x040016B0 + type: mk64:course_vtx + count: 6 + offset: 0x13da + +d_course_banshee_boardwalk_vertex_0x04001710: + symbol: d_course_banshee_boardwalk_vertex_0x04001710 + type: mk64:course_vtx + count: 50 + offset: 0x142e + +d_course_banshee_boardwalk_vertex_0x04001910: + symbol: d_course_banshee_boardwalk_vertex_0x04001910 + type: mk64:course_vtx + count: 4 + offset: 0x15ee + +d_course_banshee_boardwalk_vertex_0x04001950: + symbol: d_course_banshee_boardwalk_vertex_0x04001950 + type: mk64:course_vtx + count: 50 + offset: 0x1626 + +d_course_banshee_boardwalk_vertex_0x04001B50: + symbol: d_course_banshee_boardwalk_vertex_0x04001B50 + type: mk64:course_vtx + count: 36 + offset: 0x17e6 + +d_course_banshee_boardwalk_vertex_0x04001CD0: + symbol: d_course_banshee_boardwalk_vertex_0x04001CD0 + type: mk64:course_vtx + count: 32 + offset: 0x1936 + +d_course_banshee_boardwalk_vertex_0x04001E10: + symbol: d_course_banshee_boardwalk_vertex_0x04001E10 + type: mk64:course_vtx + count: 48 + offset: 0x1a4e + +d_course_banshee_boardwalk_vertex_0x04001FF0: + symbol: d_course_banshee_boardwalk_vertex_0x04001FF0 + type: mk64:course_vtx + count: 48 + offset: 0x1bf2 + +d_course_banshee_boardwalk_vertex_0x040021D0: + symbol: d_course_banshee_boardwalk_vertex_0x040021D0 + type: mk64:course_vtx + count: 48 + offset: 0x1d96 + +d_course_banshee_boardwalk_vertex_0x040023B0: + symbol: d_course_banshee_boardwalk_vertex_0x040023B0 + type: mk64:course_vtx + count: 34 + offset: 0x1f3a + +d_course_banshee_boardwalk_vertex_0x04002510: + symbol: d_course_banshee_boardwalk_vertex_0x04002510 + type: mk64:course_vtx + count: 36 + offset: 0x206e + +d_course_banshee_boardwalk_vertex_0x04002690: + symbol: d_course_banshee_boardwalk_vertex_0x04002690 + type: mk64:course_vtx + count: 50 + offset: 0x21be + +d_course_banshee_boardwalk_vertex_0x04002890: + symbol: d_course_banshee_boardwalk_vertex_0x04002890 + type: mk64:course_vtx + count: 16 + offset: 0x237e + +d_course_banshee_boardwalk_vertex_0x04002930: + symbol: d_course_banshee_boardwalk_vertex_0x04002930 + type: mk64:course_vtx + count: 48 + offset: 0x240a + +d_course_banshee_boardwalk_vertex_0x04002B10: + symbol: d_course_banshee_boardwalk_vertex_0x04002B10 + type: mk64:course_vtx + count: 16 + offset: 0x25ae + +d_course_banshee_boardwalk_vertex_0x04002BB0: + symbol: d_course_banshee_boardwalk_vertex_0x04002BB0 + type: mk64:course_vtx + count: 36 + offset: 0x263a + +d_course_banshee_boardwalk_vertex_0x04002D30: + symbol: d_course_banshee_boardwalk_vertex_0x04002D30 + type: mk64:course_vtx + count: 50 + offset: 0x278a + +d_course_banshee_boardwalk_vertex_0x04002F30: + symbol: d_course_banshee_boardwalk_vertex_0x04002F30 + type: mk64:course_vtx + count: 22 + offset: 0x294a + +d_course_banshee_boardwalk_vertex_0x04003030: + symbol: d_course_banshee_boardwalk_vertex_0x04003030 + type: mk64:course_vtx + count: 50 + offset: 0x2a2a + +d_course_banshee_boardwalk_vertex_0x04003230: + symbol: d_course_banshee_boardwalk_vertex_0x04003230 + type: mk64:course_vtx + count: 4 + offset: 0x2bea + +d_course_banshee_boardwalk_vertex_0x04003270: + symbol: d_course_banshee_boardwalk_vertex_0x04003270 + type: mk64:course_vtx + count: 50 + offset: 0x2c22 + +d_course_banshee_boardwalk_vertex_0x04003470: + symbol: d_course_banshee_boardwalk_vertex_0x04003470 + type: mk64:course_vtx + count: 50 + offset: 0x2de2 + +d_course_banshee_boardwalk_vertex_0x04003670: + symbol: d_course_banshee_boardwalk_vertex_0x04003670 + type: mk64:course_vtx + count: 34 + offset: 0x2fa2 + +d_course_banshee_boardwalk_vertex_0x040037D0: + symbol: d_course_banshee_boardwalk_vertex_0x040037D0 + type: mk64:course_vtx + count: 50 + offset: 0x30d6 + +d_course_banshee_boardwalk_vertex_0x040039D0: + symbol: d_course_banshee_boardwalk_vertex_0x040039D0 + type: mk64:course_vtx + count: 33 + offset: 0x3296 + +d_course_banshee_boardwalk_vertex_0x04003B20: + symbol: d_course_banshee_boardwalk_vertex_0x04003B20 + type: mk64:course_vtx + count: 36 + offset: 0x33bc + +d_course_banshee_boardwalk_vertex_0x04003CA0: + symbol: d_course_banshee_boardwalk_vertex_0x04003CA0 + type: mk64:course_vtx + count: 38 + offset: 0x350c + +d_course_banshee_boardwalk_vertex_0x04003E40: + symbol: d_course_banshee_boardwalk_vertex_0x04003E40 + type: mk64:course_vtx + count: 22 + offset: 0x3678 + +d_course_banshee_boardwalk_vertex_0x04003F40: + symbol: d_course_banshee_boardwalk_vertex_0x04003F40 + type: mk64:course_vtx + count: 19 + offset: 0x3758 + +d_course_banshee_boardwalk_vertex_0x04004010: + symbol: d_course_banshee_boardwalk_vertex_0x04004010 + type: mk64:course_vtx + count: 32 + offset: 0x380e + +d_course_banshee_boardwalk_vertex_0x04004150: + symbol: d_course_banshee_boardwalk_vertex_0x04004150 + type: mk64:course_vtx + count: 32 + offset: 0x3926 + +d_course_banshee_boardwalk_vertex_0x04004290: + symbol: d_course_banshee_boardwalk_vertex_0x04004290 + type: mk64:course_vtx + count: 38 + offset: 0x3a3e + +d_course_banshee_boardwalk_vertex_0x04004430: + symbol: d_course_banshee_boardwalk_vertex_0x04004430 + type: mk64:course_vtx + count: 48 + offset: 0x3baa + +d_course_banshee_boardwalk_vertex_0x04004610: + symbol: d_course_banshee_boardwalk_vertex_0x04004610 + type: mk64:course_vtx + count: 9 + offset: 0x3d4e + +d_course_banshee_boardwalk_vertex_0x040046A0: + symbol: d_course_banshee_boardwalk_vertex_0x040046A0 + type: mk64:course_vtx + count: 50 + offset: 0x3dcc + +d_course_banshee_boardwalk_vertex_0x040048A0: + symbol: d_course_banshee_boardwalk_vertex_0x040048A0 + type: mk64:course_vtx + count: 18 + offset: 0x3f8c + +d_course_banshee_boardwalk_vertex_0x04004960: + symbol: d_course_banshee_boardwalk_vertex_0x04004960 + type: mk64:course_vtx + count: 49 + offset: 0x4034 + +d_course_banshee_boardwalk_vertex_0x04004B50: + symbol: d_course_banshee_boardwalk_vertex_0x04004B50 + type: mk64:course_vtx + count: 39 + offset: 0x41e6 + +d_course_banshee_boardwalk_vertex_0x04004D00: + symbol: d_course_banshee_boardwalk_vertex_0x04004D00 + type: mk64:course_vtx + count: 49 + offset: 0x4360 + +d_course_banshee_boardwalk_vertex_0x04004EF0: + symbol: d_course_banshee_boardwalk_vertex_0x04004EF0 + type: mk64:course_vtx + count: 33 + offset: 0x4512 + +d_course_banshee_boardwalk_vertex_0x04005040: + symbol: d_course_banshee_boardwalk_vertex_0x04005040 + type: mk64:course_vtx + count: 48 + offset: 0x4638 + +d_course_banshee_boardwalk_vertex_0x04005220: + symbol: d_course_banshee_boardwalk_vertex_0x04005220 + type: mk64:course_vtx + count: 21 + offset: 0x47dc + +d_course_banshee_boardwalk_vertex_0x04005310: + symbol: d_course_banshee_boardwalk_vertex_0x04005310 + type: mk64:course_vtx + count: 48 + offset: 0x48ae + +d_course_banshee_boardwalk_vertex_0x040054F0: + symbol: d_course_banshee_boardwalk_vertex_0x040054F0 + type: mk64:course_vtx + count: 50 + offset: 0x4a52 + +d_course_banshee_boardwalk_vertex_0x040056F0: + symbol: d_course_banshee_boardwalk_vertex_0x040056F0 + type: mk64:course_vtx + count: 8 + offset: 0x4c12 + +d_course_banshee_boardwalk_vertex_0x04005770: + symbol: d_course_banshee_boardwalk_vertex_0x04005770 + type: mk64:course_vtx + count: 48 + offset: 0x4c82 + +d_course_banshee_boardwalk_vertex_0x04005950: + symbol: d_course_banshee_boardwalk_vertex_0x04005950 + type: mk64:course_vtx + count: 38 + offset: 0x4e26 + +d_course_banshee_boardwalk_vertex_0x04005AF0: + symbol: d_course_banshee_boardwalk_vertex_0x04005AF0 + type: mk64:course_vtx + count: 18 + offset: 0x4f92 + +d_course_banshee_boardwalk_vertex_0x04005BB0: + symbol: d_course_banshee_boardwalk_vertex_0x04005BB0 + type: mk64:course_vtx + count: 32 + offset: 0x503a + +d_course_banshee_boardwalk_vertex_0x04005CF0: + symbol: d_course_banshee_boardwalk_vertex_0x04005CF0 + type: mk64:course_vtx + count: 8 + offset: 0x5152 + +d_course_banshee_boardwalk_vertex_0x04005D70: + symbol: d_course_banshee_boardwalk_vertex_0x04005D70 + type: mk64:course_vtx + count: 8 + offset: 0x51c2 + +d_course_banshee_boardwalk_vertex_0x04005DF0: + symbol: d_course_banshee_boardwalk_vertex_0x04005DF0 + type: mk64:course_vtx + count: 22 + offset: 0x5232 + +d_course_banshee_boardwalk_vertex_0x04005EF0: + symbol: d_course_banshee_boardwalk_vertex_0x04005EF0 + type: mk64:course_vtx + count: 36 + offset: 0x5312 + +d_course_banshee_boardwalk_vertex_0x04006070: + symbol: d_course_banshee_boardwalk_vertex_0x04006070 + type: mk64:course_vtx + count: 22 + offset: 0x5462 + +d_course_banshee_boardwalk_vertex_0x04006170: + symbol: d_course_banshee_boardwalk_vertex_0x04006170 + type: mk64:course_vtx + count: 40 + offset: 0x5542 + +d_course_banshee_boardwalk_vertex_0x04006330: + symbol: d_course_banshee_boardwalk_vertex_0x04006330 + type: mk64:course_vtx + count: 22 + offset: 0x56ca + +d_course_banshee_boardwalk_vertex_0x04006430: + symbol: d_course_banshee_boardwalk_vertex_0x04006430 + type: mk64:course_vtx + count: 36 + offset: 0x57aa + +d_course_banshee_boardwalk_vertex_0x040065B0: + symbol: d_course_banshee_boardwalk_vertex_0x040065B0 + type: mk64:course_vtx + count: 22 + offset: 0x58fa + +d_course_banshee_boardwalk_vertex_0x040066B0: + symbol: d_course_banshee_boardwalk_vertex_0x040066B0 + type: mk64:course_vtx + count: 36 + offset: 0x59da + +d_course_banshee_boardwalk_vertex_0x04006830: + symbol: d_course_banshee_boardwalk_vertex_0x04006830 + type: mk64:course_vtx + count: 8 + offset: 0x5b2a + +d_course_banshee_boardwalk_vertex_0x040068B0: + symbol: d_course_banshee_boardwalk_vertex_0x040068B0 + type: mk64:course_vtx + count: 36 + offset: 0x5b9a + +d_course_banshee_boardwalk_vertex_0x04006A30: + symbol: d_course_banshee_boardwalk_vertex_0x04006A30 + type: mk64:course_vtx + count: 4 + offset: 0x5cea + +d_course_banshee_boardwalk_vertex_0x04006A70: + symbol: d_course_banshee_boardwalk_vertex_0x04006A70 + type: mk64:course_vtx + count: 18 + offset: 0x5d22 + +d_course_banshee_boardwalk_vertex_0x04006B30: + symbol: d_course_banshee_boardwalk_vertex_0x04006B30 + type: mk64:course_vtx + count: 32 + offset: 0x5dca + +d_course_banshee_boardwalk_vertex_0x04006C70: + symbol: d_course_banshee_boardwalk_vertex_0x04006C70 + type: mk64:course_vtx + count: 18 + offset: 0x5ee2 + +d_course_banshee_boardwalk_vertex_0x04006D30: + symbol: d_course_banshee_boardwalk_vertex_0x04006D30 + type: mk64:course_vtx + count: 36 + offset: 0x5f8a + +d_course_banshee_boardwalk_vertex_0x04006EB0: + symbol: d_course_banshee_boardwalk_vertex_0x04006EB0 + type: mk64:course_vtx + count: 32 + offset: 0x60da + +d_course_banshee_boardwalk_vertex_0x04006FF0: + symbol: d_course_banshee_boardwalk_vertex_0x04006FF0 + type: mk64:course_vtx + count: 50 + offset: 0x61f2 + +d_course_banshee_boardwalk_vertex_0x040071F0: + symbol: d_course_banshee_boardwalk_vertex_0x040071F0 + type: mk64:course_vtx + count: 4 + offset: 0x63b2 + +d_course_banshee_boardwalk_vertex_0x04007230: + symbol: d_course_banshee_boardwalk_vertex_0x04007230 + type: mk64:course_vtx + count: 8 + offset: 0x63ea + +d_course_banshee_boardwalk_vertex_0x040072B0: + symbol: d_course_banshee_boardwalk_vertex_0x040072B0 + type: mk64:course_vtx + count: 8 + offset: 0x645a + +d_course_banshee_boardwalk_vertex_0x04007330: + symbol: d_course_banshee_boardwalk_vertex_0x04007330 + type: mk64:course_vtx + count: 36 + offset: 0x64ca + +d_course_banshee_boardwalk_vertex_0x040074B0: + symbol: d_course_banshee_boardwalk_vertex_0x040074B0 + type: mk64:course_vtx + count: 48 + offset: 0x661a + +d_course_banshee_boardwalk_vertex_0x04007690: + symbol: d_course_banshee_boardwalk_vertex_0x04007690 + type: mk64:course_vtx + count: 6 + offset: 0x67be + +d_course_banshee_boardwalk_vertex_0x040076F0: + symbol: d_course_banshee_boardwalk_vertex_0x040076F0 + type: mk64:course_vtx + count: 34 + offset: 0x6812 + +d_course_banshee_boardwalk_vertex_0x04007850: + symbol: d_course_banshee_boardwalk_vertex_0x04007850 + type: mk64:course_vtx + count: 50 + offset: 0x6946 + +d_course_banshee_boardwalk_vertex_0x04007A50: + symbol: d_course_banshee_boardwalk_vertex_0x04007A50 + type: mk64:course_vtx + count: 32 + offset: 0x6b06 + +d_course_banshee_boardwalk_vertex_0x04007B90: + symbol: d_course_banshee_boardwalk_vertex_0x04007B90 + type: mk64:course_vtx + count: 50 + offset: 0x6c1e + +d_course_banshee_boardwalk_vertex_0x04007D90: + symbol: d_course_banshee_boardwalk_vertex_0x04007D90 + type: mk64:course_vtx + count: 22 + offset: 0x6dde + +d_course_banshee_boardwalk_vertex_0x04007E90: + symbol: d_course_banshee_boardwalk_vertex_0x04007E90 + type: mk64:course_vtx + count: 40 + offset: 0x6ebe + +d_course_banshee_boardwalk_vertex_0x04008050: + symbol: d_course_banshee_boardwalk_vertex_0x04008050 + type: mk64:course_vtx + count: 18 + offset: 0x7046 + +d_course_banshee_boardwalk_vertex_0x04008110: + symbol: d_course_banshee_boardwalk_vertex_0x04008110 + type: mk64:course_vtx + count: 32 + offset: 0x70ee + +d_course_banshee_boardwalk_vertex_0x04008250: + symbol: d_course_banshee_boardwalk_vertex_0x04008250 + type: mk64:course_vtx + count: 49 + offset: 0x7206 + +d_course_banshee_boardwalk_vertex_0x04008440: + symbol: d_course_banshee_boardwalk_vertex_0x04008440 + type: mk64:course_vtx + count: 48 + offset: 0x73b8 + +d_course_banshee_boardwalk_vertex_0x04008620: + symbol: d_course_banshee_boardwalk_vertex_0x04008620 + type: mk64:course_vtx + count: 34 + offset: 0x755c + +d_course_banshee_boardwalk_vertex_0x04008780: + symbol: d_course_banshee_boardwalk_vertex_0x04008780 + type: mk64:course_vtx + count: 18 + offset: 0x7690 + +d_course_banshee_boardwalk_vertex_0x04008840: + symbol: d_course_banshee_boardwalk_vertex_0x04008840 + type: mk64:course_vtx + count: 32 + offset: 0x7738 + +d_course_banshee_boardwalk_vertex_0x04008980: + symbol: d_course_banshee_boardwalk_vertex_0x04008980 + type: mk64:course_vtx + count: 8 + offset: 0x7850 + +d_course_banshee_boardwalk_vertex_0x04008A00: + symbol: d_course_banshee_boardwalk_vertex_0x04008A00 + type: mk64:course_vtx + count: 22 + offset: 0x78c0 + +d_course_banshee_boardwalk_vertex_0x04008B00: + symbol: d_course_banshee_boardwalk_vertex_0x04008B00 + type: mk64:course_vtx + count: 22 + offset: 0x79a0 + +d_course_banshee_boardwalk_vertex_0x04008C00: + symbol: d_course_banshee_boardwalk_vertex_0x04008C00 + type: mk64:course_vtx + count: 34 + offset: 0x7a80 + +d_course_banshee_boardwalk_vertex_0x04008D60: + symbol: d_course_banshee_boardwalk_vertex_0x04008D60 + type: mk64:course_vtx + count: 20 + offset: 0x7bb4 + +d_course_banshee_boardwalk_vertex_0x04008E40: + symbol: d_course_banshee_boardwalk_vertex_0x04008E40 + type: mk64:course_vtx + count: 50 + offset: 0x7c78 + +d_course_banshee_boardwalk_vertex_0x04009040: + symbol: d_course_banshee_boardwalk_vertex_0x04009040 + type: mk64:course_vtx + count: 33 + offset: 0x7e38 + +d_course_banshee_boardwalk_vertex_0x04009190: + symbol: d_course_banshee_boardwalk_vertex_0x04009190 + type: mk64:course_vtx + count: 20 + offset: 0x7f5e + +d_course_banshee_boardwalk_vertex_0x04009270: + symbol: d_course_banshee_boardwalk_vertex_0x04009270 + type: mk64:course_vtx + count: 21 + offset: 0x8022 + +d_course_banshee_boardwalk_vertex_0x04009360: + symbol: d_course_banshee_boardwalk_vertex_0x04009360 + type: mk64:course_vtx + count: 7 + offset: 0x80f4 + +d_course_banshee_boardwalk_vertex_0x040093D0: + symbol: d_course_banshee_boardwalk_vertex_0x040093D0 + type: mk64:course_vtx + count: 50 + offset: 0x8156 + +d_course_banshee_boardwalk_vertex_0x040095D0: + symbol: d_course_banshee_boardwalk_vertex_0x040095D0 + type: mk64:course_vtx + count: 37 + offset: 0x8316 + +d_course_banshee_boardwalk_vertex_0x04009760: + symbol: d_course_banshee_boardwalk_vertex_0x04009760 + type: mk64:course_vtx + count: 50 + offset: 0x8474 + +d_course_banshee_boardwalk_vertex_0x04009960: + symbol: d_course_banshee_boardwalk_vertex_0x04009960 + type: mk64:course_vtx + count: 50 + offset: 0x8634 + +d_course_banshee_boardwalk_vertex_0x04009B60: + symbol: d_course_banshee_boardwalk_vertex_0x04009B60 + type: mk64:course_vtx + count: 50 + offset: 0x87f4 + +d_course_banshee_boardwalk_vertex_0x04009D60: + symbol: d_course_banshee_boardwalk_vertex_0x04009D60 + type: mk64:course_vtx + count: 4 + offset: 0x89b4 + +d_course_banshee_boardwalk_vertex_0x04009DA0: + symbol: d_course_banshee_boardwalk_vertex_0x04009DA0 + type: mk64:course_vtx + count: 49 + offset: 0x89ec + +d_course_banshee_boardwalk_vertex_0x04009F90: + symbol: d_course_banshee_boardwalk_vertex_0x04009F90 + type: mk64:course_vtx + count: 49 + offset: 0x8b9e + +d_course_banshee_boardwalk_vertex_0x0400A180: + symbol: d_course_banshee_boardwalk_vertex_0x0400A180 + type: mk64:course_vtx + count: 39 + offset: 0x8d50 + +d_course_banshee_boardwalk_vertex_0x0400A330: + symbol: d_course_banshee_boardwalk_vertex_0x0400A330 + type: mk64:course_vtx + count: 48 + offset: 0x8eca + +d_course_banshee_boardwalk_vertex_0x0400A510: + symbol: d_course_banshee_boardwalk_vertex_0x0400A510 + type: mk64:course_vtx + count: 8 + offset: 0x906e + +d_course_banshee_boardwalk_vertex_0x0400A590: + symbol: d_course_banshee_boardwalk_vertex_0x0400A590 + type: mk64:course_vtx + count: 25 + offset: 0x90de + +d_course_banshee_boardwalk_vertex_0x0400A6C0: + symbol: d_course_banshee_boardwalk_vertex_0x0400A6C0 + type: mk64:course_vtx + count: 20 + offset: 0x91e8 + +d_course_banshee_boardwalk_vertex_0x0400A7A0: + symbol: d_course_banshee_boardwalk_vertex_0x0400A7A0 + type: mk64:course_vtx + count: 22 + offset: 0x92ac + +d_course_banshee_boardwalk_vertex_0x0400A8A0: + symbol: d_course_banshee_boardwalk_vertex_0x0400A8A0 + type: mk64:course_vtx + count: 22 + offset: 0x938c + +d_course_banshee_boardwalk_vertex_0x0400A9A0: + symbol: d_course_banshee_boardwalk_vertex_0x0400A9A0 + type: mk64:course_vtx + count: 22 + offset: 0x946c + +d_course_banshee_boardwalk_vertex_0x0400AAA0: + symbol: d_course_banshee_boardwalk_vertex_0x0400AAA0 + type: mk64:course_vtx + count: 38 + offset: 0x954c + +d_course_banshee_boardwalk_vertex_0x0400AC40: + symbol: d_course_banshee_boardwalk_vertex_0x0400AC40 + type: mk64:course_vtx + count: 8 + offset: 0x96b8 + +d_course_banshee_boardwalk_vertex_0x0400ACC0: + symbol: d_course_banshee_boardwalk_vertex_0x0400ACC0 + type: mk64:course_vtx + count: 4 + offset: 0x9728 + +d_course_banshee_boardwalk_vertex_0x0400AD00: + symbol: d_course_banshee_boardwalk_vertex_0x0400AD00 + type: mk64:course_vtx + count: 33 + offset: 0x9760 + +d_course_banshee_boardwalk_vertex_0x0400AE50: + symbol: d_course_banshee_boardwalk_vertex_0x0400AE50 + type: mk64:course_vtx + count: 50 + offset: 0x9886 + +d_course_banshee_boardwalk_vertex_0x0400B050: + symbol: d_course_banshee_boardwalk_vertex_0x0400B050 + type: mk64:course_vtx + count: 4 + offset: 0x9a46 + +d_course_banshee_boardwalk_vertex_0x0400B090: + symbol: d_course_banshee_boardwalk_vertex_0x0400B090 + type: mk64:course_vtx + count: 50 + offset: 0x9a7e + +d_course_banshee_boardwalk_vertex_0x0400B290: + symbol: d_course_banshee_boardwalk_vertex_0x0400B290 + type: mk64:course_vtx + count: 4 + offset: 0x9c3e + +d_course_banshee_boardwalk_vertex_0x0400B2D0: + symbol: d_course_banshee_boardwalk_vertex_0x0400B2D0 + type: mk64:course_vtx + count: 50 + offset: 0x9c76 + +d_course_banshee_boardwalk_vertex_0x0400B4D0: + symbol: d_course_banshee_boardwalk_vertex_0x0400B4D0 + type: mk64:course_vtx + count: 4 + offset: 0x9e36 + +d_course_banshee_boardwalk_vertex_0x0400B510: + symbol: d_course_banshee_boardwalk_vertex_0x0400B510 + type: mk64:course_vtx + count: 50 + offset: 0x9e6e + +d_course_banshee_boardwalk_vertex_0x0400B710: + symbol: d_course_banshee_boardwalk_vertex_0x0400B710 + type: mk64:course_vtx + count: 4 + offset: 0xa02e + +d_course_banshee_boardwalk_vertex_0x0400B750: + symbol: d_course_banshee_boardwalk_vertex_0x0400B750 + type: mk64:course_vtx + count: 50 + offset: 0xa066 + +d_course_banshee_boardwalk_vertex_0x0400B950: + symbol: d_course_banshee_boardwalk_vertex_0x0400B950 + type: mk64:course_vtx + count: 4 + offset: 0xa226 + +d_course_banshee_boardwalk_vertex_0x0400B990: + symbol: d_course_banshee_boardwalk_vertex_0x0400B990 + type: mk64:course_vtx + count: 48 + offset: 0xa25e + +d_course_banshee_boardwalk_vertex_0x0400BB70: + symbol: d_course_banshee_boardwalk_vertex_0x0400BB70 + type: mk64:course_vtx + count: 6 + offset: 0xa402 + +d_course_banshee_boardwalk_vertex_0x0400BBD0: + symbol: d_course_banshee_boardwalk_vertex_0x0400BBD0 + type: mk64:course_vtx + count: 50 + offset: 0xa456 + +d_course_banshee_boardwalk_vertex_0x0400BDD0: + symbol: d_course_banshee_boardwalk_vertex_0x0400BDD0 + type: mk64:course_vtx + count: 4 + offset: 0xa616 + +d_course_banshee_boardwalk_vertex_0x0400BE10: + symbol: d_course_banshee_boardwalk_vertex_0x0400BE10 + type: mk64:course_vtx + count: 50 + offset: 0xa64e + +d_course_banshee_boardwalk_vertex_0x0400C010: + symbol: d_course_banshee_boardwalk_vertex_0x0400C010 + type: mk64:course_vtx + count: 24 + offset: 0xa80e + +d_course_banshee_boardwalk_vertex_0x0400C130: + symbol: d_course_banshee_boardwalk_vertex_0x0400C130 + type: mk64:course_vtx + count: 50 + offset: 0xa90a + +d_course_banshee_boardwalk_vertex_0x0400C330: + symbol: d_course_banshee_boardwalk_vertex_0x0400C330 + type: mk64:course_vtx + count: 4 + offset: 0xaaca + +d_course_banshee_boardwalk_vertex_0x0400C370: + symbol: d_course_banshee_boardwalk_vertex_0x0400C370 + type: mk64:course_vtx + count: 50 + offset: 0xab02 + +d_course_banshee_boardwalk_vertex_0x0400C570: + symbol: d_course_banshee_boardwalk_vertex_0x0400C570 + type: mk64:course_vtx + count: 4 + offset: 0xacc2 + +d_course_banshee_boardwalk_vertex_0x0400C5B0: + symbol: d_course_banshee_boardwalk_vertex_0x0400C5B0 + type: mk64:course_vtx + count: 50 + offset: 0xacfa + +d_course_banshee_boardwalk_vertex_0x0400C7B0: + symbol: d_course_banshee_boardwalk_vertex_0x0400C7B0 + type: mk64:course_vtx + count: 4 + offset: 0xaeba + +d_course_banshee_boardwalk_vertex_0x0400C7F0: + symbol: d_course_banshee_boardwalk_vertex_0x0400C7F0 + type: mk64:course_vtx + count: 50 + offset: 0xaef2 + +d_course_banshee_boardwalk_vertex_0x0400C9F0: + symbol: d_course_banshee_boardwalk_vertex_0x0400C9F0 + type: mk64:course_vtx + count: 4 + offset: 0xb0b2 + +d_course_banshee_boardwalk_vertex_0x0400CA30: + symbol: d_course_banshee_boardwalk_vertex_0x0400CA30 + type: mk64:course_vtx + count: 50 + offset: 0xb0ea + +d_course_banshee_boardwalk_vertex_0x0400CC30: + symbol: d_course_banshee_boardwalk_vertex_0x0400CC30 + type: mk64:course_vtx + count: 4 + offset: 0xb2aa + +d_course_banshee_boardwalk_vertex_0x0400CC70: + symbol: d_course_banshee_boardwalk_vertex_0x0400CC70 + type: mk64:course_vtx + count: 50 + offset: 0xb2e2 + +d_course_banshee_boardwalk_vertex_0x0400CE70: + symbol: d_course_banshee_boardwalk_vertex_0x0400CE70 + type: mk64:course_vtx + count: 50 + offset: 0xb4a2 + +d_course_banshee_boardwalk_vertex_0x0400D070: + symbol: d_course_banshee_boardwalk_vertex_0x0400D070 + type: mk64:course_vtx + count: 4 + offset: 0xb662 + +d_course_banshee_boardwalk_vertex_0x0400D0B0: + symbol: d_course_banshee_boardwalk_vertex_0x0400D0B0 + type: mk64:course_vtx + count: 50 + offset: 0xb69a + +d_course_banshee_boardwalk_vertex_0x0400D2B0: + symbol: d_course_banshee_boardwalk_vertex_0x0400D2B0 + type: mk64:course_vtx + count: 4 + offset: 0xb85a + +d_course_banshee_boardwalk_vertex_0x0400D2F0: + symbol: d_course_banshee_boardwalk_vertex_0x0400D2F0 + type: mk64:course_vtx + count: 50 + offset: 0xb892 + +d_course_banshee_boardwalk_vertex_0x0400D4F0: + symbol: d_course_banshee_boardwalk_vertex_0x0400D4F0 + type: mk64:course_vtx + count: 4 + offset: 0xba52 + +d_course_banshee_boardwalk_vertex_0x0400D530: + symbol: d_course_banshee_boardwalk_vertex_0x0400D530 + type: mk64:course_vtx + count: 50 + offset: 0xba8a + +d_course_banshee_boardwalk_vertex_0x0400D730: + symbol: d_course_banshee_boardwalk_vertex_0x0400D730 + type: mk64:course_vtx + count: 4 + offset: 0xbc4a + +d_course_banshee_boardwalk_vertex_0x0400D770: + symbol: d_course_banshee_boardwalk_vertex_0x0400D770 + type: mk64:course_vtx + count: 49 + offset: 0xbc82 + +d_course_banshee_boardwalk_vertex_0x0400D960: + symbol: d_course_banshee_boardwalk_vertex_0x0400D960 + type: mk64:course_vtx + count: 5 + offset: 0xbe34 + +d_course_banshee_boardwalk_vertex_0x0400D9B0: + symbol: d_course_banshee_boardwalk_vertex_0x0400D9B0 + type: mk64:course_vtx + count: 39 + offset: 0xbe7a + +d_course_banshee_boardwalk_vertex_0x0400DB60: + symbol: d_course_banshee_boardwalk_vertex_0x0400DB60 + type: mk64:course_vtx + count: 37 + offset: 0xbff4 + +d_course_banshee_boardwalk_vertex_0x0400DCF0: + symbol: d_course_banshee_boardwalk_vertex_0x0400DCF0 + type: mk64:course_vtx + count: 50 + offset: 0xc152 + +d_course_banshee_boardwalk_vertex_0x0400DEF0: + symbol: d_course_banshee_boardwalk_vertex_0x0400DEF0 + type: mk64:course_vtx + count: 32 + offset: 0xc312 + +d_course_banshee_boardwalk_vertex_0x0400E030: + symbol: d_course_banshee_boardwalk_vertex_0x0400E030 + type: mk64:course_vtx + count: 20 + offset: 0xc42a + +d_course_banshee_boardwalk_vertex_0x0400E110: + symbol: d_course_banshee_boardwalk_vertex_0x0400E110 + type: mk64:course_vtx + count: 21 + offset: 0xc4ee + +d_course_banshee_boardwalk_vertex_0x0400E200: + symbol: d_course_banshee_boardwalk_vertex_0x0400E200 + type: mk64:course_vtx + count: 50 + offset: 0xc5c0 + +d_course_banshee_boardwalk_vertex_0x0400E400: + symbol: d_course_banshee_boardwalk_vertex_0x0400E400 + type: mk64:course_vtx + count: 48 + offset: 0xc780 + +d_course_banshee_boardwalk_vertex_0x0400E5E0: + symbol: d_course_banshee_boardwalk_vertex_0x0400E5E0 + type: mk64:course_vtx + count: 32 + offset: 0xc924 + +d_course_banshee_boardwalk_vertex_0x0400E720: + symbol: d_course_banshee_boardwalk_vertex_0x0400E720 + type: mk64:course_vtx + count: 32 + offset: 0xca3c + +d_course_banshee_boardwalk_vertex_0x0400E860: + symbol: d_course_banshee_boardwalk_vertex_0x0400E860 + type: mk64:course_vtx + count: 32 + offset: 0xcb54 + +d_course_banshee_boardwalk_vertex_0x0400E9A0: + symbol: d_course_banshee_boardwalk_vertex_0x0400E9A0 + type: mk64:course_vtx + count: 32 + offset: 0xcc6c + +d_course_banshee_boardwalk_vertex_0x0400EAE0: + symbol: d_course_banshee_boardwalk_vertex_0x0400EAE0 + type: mk64:course_vtx + count: 32 + offset: 0xcd84 + +d_course_banshee_boardwalk_vertex_0x0400EC20: + symbol: d_course_banshee_boardwalk_vertex_0x0400EC20 + type: mk64:course_vtx + count: 32 + offset: 0xce9c + +d_course_banshee_boardwalk_vertex_0x0400ED60: + symbol: d_course_banshee_boardwalk_vertex_0x0400ED60 + type: mk64:course_vtx + count: 49 + offset: 0xcfb4 + +d_course_banshee_boardwalk_vertex_0x0400EF50: + symbol: d_course_banshee_boardwalk_vertex_0x0400EF50 + type: mk64:course_vtx + count: 9 + offset: 0xd166 + +d_course_banshee_boardwalk_vertex_0x0400EFE0: + symbol: d_course_banshee_boardwalk_vertex_0x0400EFE0 + type: mk64:course_vtx + count: 32 + offset: 0xd1e4 + +d_course_banshee_boardwalk_vertex_0x0400F120: + symbol: d_course_banshee_boardwalk_vertex_0x0400F120 + type: mk64:course_vtx + count: 32 + offset: 0xd2fc + +d_course_banshee_boardwalk_vertex_0x0400F260: + symbol: d_course_banshee_boardwalk_vertex_0x0400F260 + type: mk64:course_vtx + count: 32 + offset: 0xd414 + +d_course_banshee_boardwalk_vertex_0x0400F3A0: + symbol: d_course_banshee_boardwalk_vertex_0x0400F3A0 + type: mk64:course_vtx + count: 32 + offset: 0xd52c + +d_course_banshee_boardwalk_vertex_0x0400F4E0: + symbol: d_course_banshee_boardwalk_vertex_0x0400F4E0 + type: mk64:course_vtx + count: 32 + offset: 0xd644 + +d_course_banshee_boardwalk_vertex_0x0400F620: + symbol: d_course_banshee_boardwalk_vertex_0x0400F620 + type: mk64:course_vtx + count: 32 + offset: 0xd75c + +d_course_banshee_boardwalk_vertex_0x0400F760: + symbol: d_course_banshee_boardwalk_vertex_0x0400F760 + type: mk64:course_vtx + count: 32 + offset: 0xd874 + +d_course_banshee_boardwalk_vertex_0x0400F8A0: + symbol: d_course_banshee_boardwalk_vertex_0x0400F8A0 + type: mk64:course_vtx + count: 32 + offset: 0xd98c + +d_course_banshee_boardwalk_vertex_0x0400F9E0: + symbol: d_course_banshee_boardwalk_vertex_0x0400F9E0 + type: mk64:course_vtx + count: 32 + offset: 0xdaa4 + +d_course_banshee_boardwalk_vertex_0x0400FB20: + symbol: d_course_banshee_boardwalk_vertex_0x0400FB20 + type: mk64:course_vtx + count: 32 + offset: 0xdbbc + +d_course_banshee_boardwalk_vertex_0x0400FC60: + symbol: d_course_banshee_boardwalk_vertex_0x0400FC60 + type: mk64:course_vtx + count: 9 + offset: 0xdcd4 + +d_course_banshee_boardwalk_vertex_0x0400FCF0: + symbol: d_course_banshee_boardwalk_vertex_0x0400FCF0 + type: mk64:course_vtx + count: 8 + offset: 0xdd52 + +d_course_banshee_boardwalk_vertex_0x0400FD70: + symbol: d_course_banshee_boardwalk_vertex_0x0400FD70 + type: mk64:course_vtx + count: 23 + offset: 0xddc2 + +d_course_banshee_boardwalk_vertex_0x0400FE80: + symbol: d_course_banshee_boardwalk_vertex_0x0400FE80 + type: mk64:course_vtx + count: 21 + offset: 0xdeb0 + +d_course_banshee_boardwalk_vertex_0x0400FF70: + symbol: d_course_banshee_boardwalk_vertex_0x0400FF70 + type: mk64:course_vtx + count: 18 + offset: 0xdf82 + +d_course_banshee_boardwalk_vertex_0x04010030: + symbol: d_course_banshee_boardwalk_vertex_0x04010030 + type: mk64:course_vtx + count: 20 + offset: 0xe02a + +d_course_banshee_boardwalk_vertex_0x04010110: + symbol: d_course_banshee_boardwalk_vertex_0x04010110 + type: mk64:course_vtx + count: 21 + offset: 0xe0ee + +d_course_banshee_boardwalk_vertex_0x04010200: + symbol: d_course_banshee_boardwalk_vertex_0x04010200 + type: mk64:course_vtx + count: 50 + offset: 0xe1c0 + +d_course_banshee_boardwalk_vertex_0x04010400: + symbol: d_course_banshee_boardwalk_vertex_0x04010400 + type: mk64:course_vtx + count: 50 + offset: 0xe380 + +d_course_banshee_boardwalk_vertex_0x04010600: + symbol: d_course_banshee_boardwalk_vertex_0x04010600 + type: mk64:course_vtx + count: 50 + offset: 0xe540 + +d_course_banshee_boardwalk_vertex_0x04010800: + symbol: d_course_banshee_boardwalk_vertex_0x04010800 + type: mk64:course_vtx + count: 50 + offset: 0xe700 + +d_course_banshee_boardwalk_vertex_0x04010A00: + symbol: d_course_banshee_boardwalk_vertex_0x04010A00 + type: mk64:course_vtx + count: 49 + offset: 0xe8c0 + +d_course_banshee_boardwalk_vertex_0x04010BF0: + symbol: d_course_banshee_boardwalk_vertex_0x04010BF0 + type: mk64:course_vtx + count: 20 + offset: 0xea72 + +d_course_banshee_boardwalk_vertex_0x04010CD0: + symbol: d_course_banshee_boardwalk_vertex_0x04010CD0 + type: mk64:course_vtx + count: 4 + offset: 0xeb36 + +d_course_banshee_boardwalk_vertex_0x04010D10: + symbol: d_course_banshee_boardwalk_vertex_0x04010D10 + type: mk64:course_vtx + count: 50 + offset: 0xeb6e + +d_course_banshee_boardwalk_vertex_0x04010F10: + symbol: d_course_banshee_boardwalk_vertex_0x04010F10 + type: mk64:course_vtx + count: 50 + offset: 0xed2e + +d_course_banshee_boardwalk_vertex_0x04011110: + symbol: d_course_banshee_boardwalk_vertex_0x04011110 + type: mk64:course_vtx + count: 50 + offset: 0xeeee + +d_course_banshee_boardwalk_vertex_0x04011310: + symbol: d_course_banshee_boardwalk_vertex_0x04011310 + type: mk64:course_vtx + count: 50 + offset: 0xf0ae + +d_course_banshee_boardwalk_vertex_0x04011510: + symbol: d_course_banshee_boardwalk_vertex_0x04011510 + type: mk64:course_vtx + count: 50 + offset: 0xf26e + +d_course_banshee_boardwalk_vertex_0x04011710: + symbol: d_course_banshee_boardwalk_vertex_0x04011710 + type: mk64:course_vtx + count: 22 + offset: 0xf42e + +d_course_banshee_boardwalk_vertex_0x04011810: + symbol: d_course_banshee_boardwalk_vertex_0x04011810 + type: mk64:course_vtx + count: 50 + offset: 0xf50e + +d_course_banshee_boardwalk_vertex_0x04011A10: + symbol: d_course_banshee_boardwalk_vertex_0x04011A10 + type: mk64:course_vtx + count: 50 + offset: 0xf6ce + +d_course_banshee_boardwalk_vertex_0x04011C10: + symbol: d_course_banshee_boardwalk_vertex_0x04011C10 + type: mk64:course_vtx + count: 50 + offset: 0xf88e + +d_course_banshee_boardwalk_vertex_0x04011E10: + symbol: d_course_banshee_boardwalk_vertex_0x04011E10 + type: mk64:course_vtx + count: 50 + offset: 0xfa4e + +d_course_banshee_boardwalk_vertex_0x04012010: + symbol: d_course_banshee_boardwalk_vertex_0x04012010 + type: mk64:course_vtx + count: 22 + offset: 0xfc0e + +d_course_banshee_boardwalk_vertex_0x04012110: + symbol: d_course_banshee_boardwalk_vertex_0x04012110 + type: mk64:course_vtx + count: 50 + offset: 0xfcee + +d_course_banshee_boardwalk_vertex_0x04012310: + symbol: d_course_banshee_boardwalk_vertex_0x04012310 + type: mk64:course_vtx + count: 22 + offset: 0xfeae + +d_course_banshee_boardwalk_vertex_0x04012410: + symbol: d_course_banshee_boardwalk_vertex_0x04012410 + type: mk64:course_vtx + count: 22 + offset: 0xff8e + +d_course_banshee_boardwalk_vertex_0x04012510: + symbol: d_course_banshee_boardwalk_vertex_0x04012510 + type: mk64:course_vtx + count: 22 + offset: 0x1006e + +d_course_banshee_boardwalk_vertex_0x04012610: + symbol: d_course_banshee_boardwalk_vertex_0x04012610 + type: mk64:course_vtx + count: 22 + offset: 0x1014e + +d_course_banshee_boardwalk_vertex_0x04012710: + symbol: d_course_banshee_boardwalk_vertex_0x04012710 + type: mk64:course_vtx + count: 22 + offset: 0x1022e + +d_course_banshee_boardwalk_vertex_0x04012810: + symbol: d_course_banshee_boardwalk_vertex_0x04012810 + type: mk64:course_vtx + count: 50 + offset: 0x1030e + +d_course_banshee_boardwalk_vertex_0x04012A10: + symbol: d_course_banshee_boardwalk_vertex_0x04012A10 + type: mk64:course_vtx + count: 22 + offset: 0x104ce + +d_course_banshee_boardwalk_vertex_0x04012B10: + symbol: d_course_banshee_boardwalk_vertex_0x04012B10 + type: mk64:course_vtx + count: 22 + offset: 0x105ae + +d_course_banshee_boardwalk_vertex_0x04012C10: + symbol: d_course_banshee_boardwalk_vertex_0x04012C10 + type: mk64:course_vtx + count: 22 + offset: 0x1068e + +d_course_banshee_boardwalk_vertex_0x04012D10: + symbol: d_course_banshee_boardwalk_vertex_0x04012D10 + type: mk64:course_vtx + count: 22 + offset: 0x1076e + +d_course_banshee_boardwalk_vertex_0x04012E10: + symbol: d_course_banshee_boardwalk_vertex_0x04012E10 + type: mk64:course_vtx + count: 22 + offset: 0x1084e + +d_course_banshee_boardwalk_vertex_0x04012F10: + symbol: d_course_banshee_boardwalk_vertex_0x04012F10 + type: mk64:course_vtx + count: 22 + offset: 0x1092e + +d_course_banshee_boardwalk_vertex_0x04013010: + symbol: d_course_banshee_boardwalk_vertex_0x04013010 + type: mk64:course_vtx + count: 22 + offset: 0x10a0e + +d_course_banshee_boardwalk_vertex_0x04013110: + symbol: d_course_banshee_boardwalk_vertex_0x04013110 + type: mk64:course_vtx + count: 22 + offset: 0x10aee + +d_course_banshee_boardwalk_vertex_0x04013210: + symbol: d_course_banshee_boardwalk_vertex_0x04013210 + type: mk64:course_vtx + count: 22 + offset: 0x10bce + +d_course_banshee_boardwalk_vertex_0x04013310: + symbol: d_course_banshee_boardwalk_vertex_0x04013310 + type: mk64:course_vtx + count: 22 + offset: 0x10cae + +d_course_banshee_boardwalk_vertex_0x04013410: + symbol: d_course_banshee_boardwalk_vertex_0x04013410 + type: mk64:course_vtx + count: 22 + offset: 0x10d8e \ No newline at end of file diff --git a/yamls/us/models/tracks/big_donut/big_donut_data.yml b/yamls/us/models/tracks/big_donut/big_donut_data.yml new file mode 100644 index 000000000..73670c24b --- /dev/null +++ b/yamls/us/models/tracks/big_donut/big_donut_data.yml @@ -0,0 +1,84 @@ +:config: + segments: + - [0x06, 0x88CC50] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + manual_segments: + # Segment 5 + - [0x5000000, "textures/other_textures/texture_66ABA4"] + - [0x5000800, "textures/other_textures/texture_67490C"] + # Segment 7 + - [0x7000000, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_0"] + - [0x7000210, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_210"] + - [0x7000220, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_220"] + - [0x7000230, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_230"] + - [0x7000240, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_240"] + - [0x7000450, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_450"] + - [0x7000460, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_460"] + - [0x7000AC0, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_AC0"] + - [0x7000AD0, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_AD0"] + - [0x7000B58, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_B58"] + - [0x7000D20, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_D20"] + - [0x7000D38, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_D38"] + - [0x7000DE8, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_DE8"] + - [0x7000DF8, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_DF8"] + - [0x7000E80, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_E80"] + - [0x7000F08, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_F08"] + - [0x7000F90, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_F90"] + - [0x7001018, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1018"] + - [0x7001040, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1040"] + - [0x7001070, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1070"] + - [0x7001080, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1080"] + # Segment 4 + - [0x4000000, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000000"] + - [0x4000200, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000200"] + - [0x4000400, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000400"] + - [0x4000600, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000600"] + - [0x4000800, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000800"] + - [0x4000a00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000A00"] + - [0x4000c00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000C00"] + - [0x4000e00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000E00"] + - [0x4001000, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001000"] + - [0x4001200, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001200"] + - [0x4001400, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001400"] + - [0x4001600, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001600"] + - [0x4001800, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001800"] + - [0x4001a00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001A00"] + - [0x4001c00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001C00"] + - [0x4001e00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001E00"] + - [0x4002000, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002000"] + - [0x4002200, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002200"] + - [0x40023e0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040023E0"] + - [0x40025e0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040025E0"] + - [0x40027e0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040027E0"] + - [0x40029c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040029C0"] + - [0x4002bc0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002BC0"] + - [0x4002dc0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002DC0"] + - [0x4002fc0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002FC0"] + - [0x40031c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040031C0"] + - [0x40033c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040033C0"] + - [0x40035c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040035C0"] + - [0x40037c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040037C0"] + - [0x4003850, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003850"] + - [0x4003a50, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003A50"] + - [0x4003c50, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003C50"] + - [0x4003e50, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003E50"] + - [0x4004050, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004050"] + - [0x4004250, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004250"] + - [0x4004430, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004430"] + - [0x40044d0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040044D0"] + - [0x40045d0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040045D0"] + - [0x40046d0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040046D0"] + - [0x40047d0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040047D0"] +d_course_big_donut_dl: + symbol: d_course_big_donut_dl + type: gfx + offset: 0x0 + otr_mode: index diff --git a/yamls/us/models/tracks/big_donut/big_donut_displaylists.yml b/yamls/us/models/tracks/big_donut/big_donut_displaylists.yml new file mode 100644 index 000000000..1b0e08ed6 --- /dev/null +++ b/yamls/us/models/tracks/big_donut/big_donut_displaylists.yml @@ -0,0 +1,163 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x965A74 + no_compression: true + segments: + - [0x0E, 0x965A74] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + manual_segments: + # Segment 5 + - [0x5000000, "textures/other_textures/texture_66ABA4"] + - [0x5000800, "textures/other_textures/texture_6747C4"] + - [0x5001000, "textures/other_textures/texture_67490C"] + - [0x5001800, "textures/other_textures/texture_64BA50"] + # Segment 7 + - [0x7000000, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_0"] + - [0x7000210, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_210"] + - [0x7000220, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_220"] + - [0x7000230, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_230"] + - [0x7000240, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_240"] + - [0x7000450, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_450"] + - [0x7000460, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_460"] + - [0x7000AC0, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_AC0"] + - [0x7000AD0, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_AD0"] + - [0x7000B58, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_B58"] + - [0x7000D20, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_D20"] + - [0x7000D38, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_D38"] + - [0x7000DE8, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_DE8"] + - [0x7000DF8, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_DF8"] + - [0x7000E80, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_E80"] + - [0x7000F08, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_F08"] + - [0x7000F90, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_F90"] + - [0x7001018, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1018"] + - [0x7001040, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1040"] + - [0x7001070, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1070"] + - [0x7001080, "models/tracks/big_donut/big_donut_displaylists/d_course_big_donut_packed_dl_1080"] + # Segment 4 + - [0x4000000, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000000"] + - [0x4000200, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000200"] + - [0x4000400, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000400"] + - [0x4000600, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000600"] + - [0x4000800, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000800"] + - [0x4000a00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000A00"] + - [0x4000c00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000C00"] + - [0x4000e00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04000E00"] + - [0x4001000, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001000"] + - [0x4001200, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001200"] + - [0x4001400, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001400"] + - [0x4001600, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001600"] + - [0x4001800, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001800"] + - [0x4001a00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001A00"] + - [0x4001c00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001C00"] + - [0x4001e00, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04001E00"] + - [0x4002000, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002000"] + - [0x4002200, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002200"] + - [0x40023e0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040023E0"] + - [0x40025e0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040025E0"] + - [0x40027e0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040027E0"] + - [0x40029c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040029C0"] + - [0x4002bc0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002BC0"] + - [0x4002dc0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002DC0"] + - [0x4002fc0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04002FC0"] + - [0x40031c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040031C0"] + - [0x40033c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040033C0"] + - [0x40035c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040035C0"] + - [0x40037c0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040037C0"] + - [0x4003850, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003850"] + - [0x4003a50, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003A50"] + - [0x4003c50, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003C50"] + - [0x4003e50, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04003E50"] + - [0x4004050, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004050"] + - [0x4004250, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004250"] + - [0x4004430, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x04004430"] + - [0x40044d0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040044D0"] + - [0x40045d0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040045D0"] + - [0x40046d0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040046D0"] + - [0x40047d0, "models/tracks/big_donut/big_donut_vertices/d_course_big_donut_vertex_0x040047D0"] +d_course_big_donut_packed_dl_0: + symbol: d_course_big_donut_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_big_donut_packed_dl_210: + symbol: d_course_big_donut_packed_dl_210 + type: MK64:PACKED_GFX + offset: 0x10D +d_course_big_donut_packed_dl_220: + symbol: d_course_big_donut_packed_dl_220 + type: MK64:PACKED_GFX + offset: 0x111 +d_course_big_donut_packed_dl_230: + symbol: d_course_big_donut_packed_dl_230 + type: MK64:PACKED_GFX + offset: 0x115 +d_course_big_donut_packed_dl_240: + symbol: d_course_big_donut_packed_dl_240 + type: MK64:PACKED_GFX + offset: 0x119 +d_course_big_donut_packed_dl_450: + symbol: d_course_big_donut_packed_dl_450 + type: MK64:PACKED_GFX + offset: 0x226 +d_course_big_donut_packed_dl_460: + symbol: d_course_big_donut_packed_dl_460 + type: MK64:PACKED_GFX + offset: 0x22A +d_course_big_donut_packed_dl_AC0: + symbol: d_course_big_donut_packed_dl_AC0 + type: MK64:PACKED_GFX + offset: 0x5D5 +d_course_big_donut_packed_dl_AD0: + symbol: d_course_big_donut_packed_dl_AD0 + type: MK64:PACKED_GFX + offset: 0x5D9 +d_course_big_donut_packed_dl_B58: + symbol: d_course_big_donut_packed_dl_B58 + type: MK64:PACKED_GFX + offset: 0x5FB +d_course_big_donut_packed_dl_D20: + symbol: d_course_big_donut_packed_dl_D20 + type: MK64:PACKED_GFX + offset: 0x6DD +d_course_big_donut_packed_dl_D38: + symbol: d_course_big_donut_packed_dl_D38 + type: MK64:PACKED_GFX + offset: 0x6E4 +d_course_big_donut_packed_dl_DE8: + symbol: d_course_big_donut_packed_dl_DE8 + type: MK64:PACKED_GFX + offset: 0x73E +d_course_big_donut_packed_dl_DF8: + symbol: d_course_big_donut_packed_dl_DF8 + type: MK64:PACKED_GFX + offset: 0x742 +d_course_big_donut_packed_dl_E80: + symbol: d_course_big_donut_packed_dl_E80 + type: MK64:PACKED_GFX + offset: 0x764 +d_course_big_donut_packed_dl_F08: + symbol: d_course_big_donut_packed_dl_F08 + type: MK64:PACKED_GFX + offset: 0x786 +d_course_big_donut_packed_dl_F90: + symbol: d_course_big_donut_packed_dl_F90 + type: MK64:PACKED_GFX + offset: 0x7A8 +d_course_big_donut_packed_dl_1018: + symbol: d_course_big_donut_packed_dl_1018 + type: MK64:PACKED_GFX + offset: 0x7CA +d_course_big_donut_packed_dl_1040: + symbol: d_course_big_donut_packed_dl_1040 + type: MK64:PACKED_GFX + offset: 0x7D7 +d_course_big_donut_packed_dl_1070: + symbol: d_course_big_donut_packed_dl_1070 + type: MK64:PACKED_GFX + offset: 0x7E7 diff --git a/yamls/us/models/tracks/big_donut/big_donut_vertices.yml b/yamls/us/models/tracks/big_donut/big_donut_vertices.yml new file mode 100644 index 000000000..89fad7d00 --- /dev/null +++ b/yamls/us/models/tracks/big_donut/big_donut_vertices.yml @@ -0,0 +1,249 @@ +:config: + segments: + - [0x0F, 0x963EF0] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_big_donut_vertex_0x04000000: + symbol: d_course_big_donut_vertex_0x04000000 + type: mk64:course_vtx + count: 50 + offset: 0x0 + +d_course_big_donut_vertex_0x04000200: + symbol: d_course_big_donut_vertex_0x04000200 + type: mk64:course_vtx + count: 50 + offset: 0x1c0 + +d_course_big_donut_vertex_0x04000400: + symbol: d_course_big_donut_vertex_0x04000400 + type: mk64:course_vtx + count: 50 + offset: 0x380 + +d_course_big_donut_vertex_0x04000600: + symbol: d_course_big_donut_vertex_0x04000600 + type: mk64:course_vtx + count: 50 + offset: 0x540 + +d_course_big_donut_vertex_0x04000800: + symbol: d_course_big_donut_vertex_0x04000800 + type: mk64:course_vtx + count: 50 + offset: 0x700 + +d_course_big_donut_vertex_0x04000A00: + symbol: d_course_big_donut_vertex_0x04000A00 + type: mk64:course_vtx + count: 50 + offset: 0x8c0 + +d_course_big_donut_vertex_0x04000C00: + symbol: d_course_big_donut_vertex_0x04000C00 + type: mk64:course_vtx + count: 50 + offset: 0xa80 + +d_course_big_donut_vertex_0x04000E00: + symbol: d_course_big_donut_vertex_0x04000E00 + type: mk64:course_vtx + count: 50 + offset: 0xc40 + +d_course_big_donut_vertex_0x04001000: + symbol: d_course_big_donut_vertex_0x04001000 + type: mk64:course_vtx + count: 50 + offset: 0xe00 + +d_course_big_donut_vertex_0x04001200: + symbol: d_course_big_donut_vertex_0x04001200 + type: mk64:course_vtx + count: 50 + offset: 0xfc0 + +d_course_big_donut_vertex_0x04001400: + symbol: d_course_big_donut_vertex_0x04001400 + type: mk64:course_vtx + count: 50 + offset: 0x1180 + +d_course_big_donut_vertex_0x04001600: + symbol: d_course_big_donut_vertex_0x04001600 + type: mk64:course_vtx + count: 50 + offset: 0x1340 + +d_course_big_donut_vertex_0x04001800: + symbol: d_course_big_donut_vertex_0x04001800 + type: mk64:course_vtx + count: 50 + offset: 0x1500 + +d_course_big_donut_vertex_0x04001A00: + symbol: d_course_big_donut_vertex_0x04001A00 + type: mk64:course_vtx + count: 50 + offset: 0x16c0 + +d_course_big_donut_vertex_0x04001C00: + symbol: d_course_big_donut_vertex_0x04001C00 + type: mk64:course_vtx + count: 50 + offset: 0x1880 + +d_course_big_donut_vertex_0x04001E00: + symbol: d_course_big_donut_vertex_0x04001E00 + type: mk64:course_vtx + count: 50 + offset: 0x1a40 + +d_course_big_donut_vertex_0x04002000: + symbol: d_course_big_donut_vertex_0x04002000 + type: mk64:course_vtx + count: 50 + offset: 0x1c00 + +d_course_big_donut_vertex_0x04002200: + symbol: d_course_big_donut_vertex_0x04002200 + type: mk64:course_vtx + count: 48 + offset: 0x1dc0 + +d_course_big_donut_vertex_0x040023E0: + symbol: d_course_big_donut_vertex_0x040023E0 + type: mk64:course_vtx + count: 50 + offset: 0x1f64 + +d_course_big_donut_vertex_0x040025E0: + symbol: d_course_big_donut_vertex_0x040025E0 + type: mk64:course_vtx + count: 50 + offset: 0x2124 + +d_course_big_donut_vertex_0x040027E0: + symbol: d_course_big_donut_vertex_0x040027E0 + type: mk64:course_vtx + count: 48 + offset: 0x22e4 + +d_course_big_donut_vertex_0x040029C0: + symbol: d_course_big_donut_vertex_0x040029C0 + type: mk64:course_vtx + count: 50 + offset: 0x2488 + +d_course_big_donut_vertex_0x04002BC0: + symbol: d_course_big_donut_vertex_0x04002BC0 + type: mk64:course_vtx + count: 50 + offset: 0x2648 + +d_course_big_donut_vertex_0x04002DC0: + symbol: d_course_big_donut_vertex_0x04002DC0 + type: mk64:course_vtx + count: 50 + offset: 0x2808 + +d_course_big_donut_vertex_0x04002FC0: + symbol: d_course_big_donut_vertex_0x04002FC0 + type: mk64:course_vtx + count: 50 + offset: 0x29c8 + +d_course_big_donut_vertex_0x040031C0: + symbol: d_course_big_donut_vertex_0x040031C0 + type: mk64:course_vtx + count: 50 + offset: 0x2b88 + +d_course_big_donut_vertex_0x040033C0: + symbol: d_course_big_donut_vertex_0x040033C0 + type: mk64:course_vtx + count: 50 + offset: 0x2d48 + +d_course_big_donut_vertex_0x040035C0: + symbol: d_course_big_donut_vertex_0x040035C0 + type: mk64:course_vtx + count: 50 + offset: 0x2f08 + +d_course_big_donut_vertex_0x040037C0: + symbol: d_course_big_donut_vertex_0x040037C0 + type: mk64:course_vtx + count: 9 + offset: 0x30c8 + +d_course_big_donut_vertex_0x04003850: + symbol: d_course_big_donut_vertex_0x04003850 + type: mk64:course_vtx + count: 50 + offset: 0x3146 + +d_course_big_donut_vertex_0x04003A50: + symbol: d_course_big_donut_vertex_0x04003A50 + type: mk64:course_vtx + count: 50 + offset: 0x3306 + +d_course_big_donut_vertex_0x04003C50: + symbol: d_course_big_donut_vertex_0x04003C50 + type: mk64:course_vtx + count: 50 + offset: 0x34c6 + +d_course_big_donut_vertex_0x04003E50: + symbol: d_course_big_donut_vertex_0x04003E50 + type: mk64:course_vtx + count: 50 + offset: 0x3686 + +d_course_big_donut_vertex_0x04004050: + symbol: d_course_big_donut_vertex_0x04004050 + type: mk64:course_vtx + count: 50 + offset: 0x3846 + +d_course_big_donut_vertex_0x04004250: + symbol: d_course_big_donut_vertex_0x04004250 + type: mk64:course_vtx + count: 48 + offset: 0x3a06 + +d_course_big_donut_vertex_0x04004430: + symbol: d_course_big_donut_vertex_0x04004430 + type: mk64:course_vtx + count: 16 + offset: 0x3baa + +d_course_big_donut_vertex_0x040044D0: + symbol: d_course_big_donut_vertex_0x040044D0 + type: mk64:course_vtx + count: 22 + offset: 0x3c36 + +d_course_big_donut_vertex_0x040045D0: + symbol: d_course_big_donut_vertex_0x040045D0 + type: mk64:course_vtx + count: 22 + offset: 0x3d16 + +d_course_big_donut_vertex_0x040046D0: + symbol: d_course_big_donut_vertex_0x040046D0 + type: mk64:course_vtx + count: 22 + offset: 0x3df6 + +d_course_big_donut_vertex_0x040047D0: + symbol: d_course_big_donut_vertex_0x040047D0 + type: mk64:course_vtx + count: 22 + offset: 0x3ed6 diff --git a/yamls/us/models/tracks/block_fort/block_fort_data.yml b/yamls/us/models/tracks/block_fort/block_fort_data.yml new file mode 100644 index 000000000..2d67e7034 --- /dev/null +++ b/yamls/us/models/tracks/block_fort/block_fort_data.yml @@ -0,0 +1,107 @@ +:config: + segments: + - [0x06, 0x885630] + - [0x07, 0x800000] + manual_segments: + - [0x7000000, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_0"] + - [0x70000B8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_B8"] + - [0x7000148, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_148"] + - [0x70001D8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1D8"] + - [0x7000268, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_268"] + - [0x7000330, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_330"] + - [0x70003F0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_3F0"] + - [0x7000428, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_428"] + - [0x70004C0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_4C0"] + - [0x7000558, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_558"] + - [0x70005F0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_5F0"] + - [0x7000688, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_688"] + - [0x70006B0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_6B0"] + - [0x70007A0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_7A0"] + - [0x7000828, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_828"] + - [0x70008B0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_8B0"] + - [0x7000938, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_938"] + - [0x70009C0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_9C0"] + - [0x70009F0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_9F0"] + - [0x7000C80, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_C80"] + - [0x7000F10, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_F10"] + - [0x70011A8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_11A8"] + - [0x70014A0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_14A0"] + - [0x70014C8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_14C8"] + - [0x7001580, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1580"] + - [0x7001590, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1590"] + - [0x70015C0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_15C0"] + - [0x70015D0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_15D0"] + - [0x70015D8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_15D8"] + # Segment 4 + - [0x4000000, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000000"] + - [0x4000030, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000030"] + - [0x4000170, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000170"] + - [0x4000270, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000270"] + - [0x4000370, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000370"] + - [0x4000470, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000470"] + - [0x4000670, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000670"] + - [0x40006f0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040006F0"] + - [0x40008f0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040008F0"] + - [0x4000930, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000930"] + - [0x4000ab0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000AB0"] + - [0x4000c30, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000C30"] + - [0x4000d70, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000D70"] + - [0x4000e90, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000E90"] + - [0x4001090, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001090"] + - [0x4001290, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001290"] + - [0x4001390, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001390"] + - [0x4001490, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001490"] + - [0x4001590, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001590"] + - [0x4001690, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001690"] + - [0x4001750, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001750"] + - [0x4001950, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001950"] + - [0x4001b50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001B50"] + - [0x4001d50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001D50"] + - [0x4001f50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001F50"] + - [0x4002020, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002020"] + - [0x40020d0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040020D0"] + - [0x4002190, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002190"] + - [0x4002390, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002390"] + - [0x4002590, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002590"] + - [0x4002790, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002790"] + - [0x4002970, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002970"] + - [0x4002aa0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002AA0"] + - [0x4002b50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002B50"] + - [0x4002c10, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002C10"] + - [0x4002df0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002DF0"] + - [0x4002ff0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002FF0"] + - [0x40031d0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040031D0"] + - [0x4003210, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003210"] + - [0x4003410, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003410"] + - [0x40034e0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040034E0"] + - [0x4003590, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003590"] + - [0x4003650, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003650"] + - [0x4003850, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003850"] + - [0x4003a50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003A50"] + - [0x4003c30, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003C30"] + - [0x4003d30, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003D30"] + - [0x4003f30, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003F30"] + - [0x40040a0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040040A0"] + - [0x40041b0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040041B0"] + - [0x40043a0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040043A0"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_64286C"] + - [0x05000800, "textures/other_textures/gray_checkerboard"] + - [0x05001000, "textures/other_textures/gray_cobblestone"] + - [0x05001800, "textures/other_textures/texture_64275C"] + - [0x05002000, "textures/other_textures/texture_642978"] + - [0x05002800, "textures/other_textures/texture_6747C4"] + - [0x05003000, "textures/other_textures/texture_6442D4"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_block_fort_dl: + symbol: d_course_block_fort_dl + type: gfx + offset: 0x0 + otr_mode: index diff --git a/yamls/us/models/tracks/block_fort/block_fort_displaylists.yml b/yamls/us/models/tracks/block_fort/block_fort_displaylists.yml new file mode 100644 index 000000000..27a30dd8a --- /dev/null +++ b/yamls/us/models/tracks/block_fort/block_fort_displaylists.yml @@ -0,0 +1,220 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x953058 + no_compression: true + segments: + - [0x0E, 0x953058] + manual_segments: + - [0x7000000, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_0"] + - [0x70000B8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_B8"] + - [0x7000148, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_148"] + - [0x70001D8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1D8"] + - [0x7000268, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_268"] + - [0x7000330, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_330"] + - [0x70003F0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_3F0"] + - [0x7000428, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_428"] + - [0x70004C0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_4C0"] + - [0x7000558, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_558"] + - [0x70005F0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_5F0"] + - [0x7000688, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_688"] + - [0x70006B0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_6B0"] + - [0x70007A0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_7A0"] + - [0x7000828, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_828"] + - [0x70008B0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_8B0"] + - [0x7000938, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_938"] + - [0x70009C0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_9C0"] + - [0x70009F0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_9F0"] + - [0x7000C80, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_C80"] + - [0x7000F10, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_F10"] + - [0x70011A8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_11A8"] + - [0x70014A0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_14A0"] + - [0x70014C8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_14C8"] + - [0x7001580, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1580"] + - [0x7001590, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_1590"] + - [0x70015C0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_15C0"] + - [0x70015D0, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_15D0"] + - [0x70015D8, "models/tracks/block_fort/block_fort_displaylists/d_course_block_fort_packed_dl_15D8"] + # Segment 4 + - [0x4000000, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000000"] + - [0x4000030, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000030"] + - [0x4000170, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000170"] + - [0x4000270, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000270"] + - [0x4000370, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000370"] + - [0x4000470, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000470"] + - [0x4000670, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000670"] + - [0x40006f0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040006F0"] + - [0x40008f0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040008F0"] + - [0x4000930, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000930"] + - [0x4000ab0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000AB0"] + - [0x4000c30, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000C30"] + - [0x4000d70, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000D70"] + - [0x4000e90, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04000E90"] + - [0x4001090, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001090"] + - [0x4001290, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001290"] + - [0x4001390, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001390"] + - [0x4001490, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001490"] + - [0x4001590, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001590"] + - [0x4001690, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001690"] + - [0x4001750, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001750"] + - [0x4001950, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001950"] + - [0x4001b50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001B50"] + - [0x4001d50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001D50"] + - [0x4001f50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04001F50"] + - [0x4002020, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002020"] + - [0x40020d0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040020D0"] + - [0x4002190, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002190"] + - [0x4002390, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002390"] + - [0x4002590, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002590"] + - [0x4002790, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002790"] + - [0x4002970, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002970"] + - [0x4002aa0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002AA0"] + - [0x4002b50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002B50"] + - [0x4002c10, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002C10"] + - [0x4002df0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002DF0"] + - [0x4002ff0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04002FF0"] + - [0x40031d0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040031D0"] + - [0x4003210, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003210"] + - [0x4003410, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003410"] + - [0x40034e0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040034E0"] + - [0x4003590, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003590"] + - [0x4003650, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003650"] + - [0x4003850, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003850"] + - [0x4003a50, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003A50"] + - [0x4003c30, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003C30"] + - [0x4003d30, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003D30"] + - [0x4003f30, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x04003F30"] + - [0x40040a0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040040A0"] + - [0x40041b0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040041B0"] + - [0x40043a0, "models/tracks/block_fort/block_fort_vertices/d_course_block_fort_vertex_0x040043A0"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_64286C"] + - [0x05000800, "textures/other_textures/gray_checkerboard"] + - [0x05001000, "textures/other_textures/gray_cobblestone"] + - [0x05001800, "textures/other_textures/texture_64275C"] + - [0x05002000, "textures/other_textures/texture_642978"] + - [0x05002800, "textures/other_textures/texture_6747C4"] + - [0x05003000, "textures/other_textures/texture_6442D4"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_block_fort_packed_dl_0: + symbol: d_course_block_fort_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_block_fort_packed_dl_B8: + symbol: d_course_block_fort_packed_dl_B8 + type: MK64:PACKED_GFX + offset: 0x36 +d_course_block_fort_packed_dl_148: + symbol: d_course_block_fort_packed_dl_148 + type: MK64:PACKED_GFX + offset: 0x5D +d_course_block_fort_packed_dl_1D8: + symbol: d_course_block_fort_packed_dl_1D8 + type: MK64:PACKED_GFX + offset: 0x84 +d_course_block_fort_packed_dl_268: + symbol: d_course_block_fort_packed_dl_268 + type: MK64:PACKED_GFX + offset: 0xAB +d_course_block_fort_packed_dl_330: + symbol: d_course_block_fort_packed_dl_330 + type: MK64:PACKED_GFX + offset: 0xF3 +d_course_block_fort_packed_dl_3F0: + symbol: d_course_block_fort_packed_dl_3F0 + type: MK64:PACKED_GFX + offset: 0x134 +d_course_block_fort_packed_dl_428: + symbol: d_course_block_fort_packed_dl_428 + type: MK64:PACKED_GFX + offset: 0x147 +d_course_block_fort_packed_dl_4C0: + symbol: d_course_block_fort_packed_dl_4C0 + type: MK64:PACKED_GFX + offset: 0x173 +d_course_block_fort_packed_dl_558: + symbol: d_course_block_fort_packed_dl_558 + type: MK64:PACKED_GFX + offset: 0x19F +d_course_block_fort_packed_dl_5F0: + symbol: d_course_block_fort_packed_dl_5F0 + type: MK64:PACKED_GFX + offset: 0x1CB +d_course_block_fort_packed_dl_688: + symbol: d_course_block_fort_packed_dl_688 + type: MK64:PACKED_GFX + offset: 0x1F7 +d_course_block_fort_packed_dl_6B0: + symbol: d_course_block_fort_packed_dl_6B0 + type: MK64:PACKED_GFX + offset: 0x204 +d_course_block_fort_packed_dl_7A0: + symbol: d_course_block_fort_packed_dl_7A0 + type: MK64:PACKED_GFX + offset: 0x265 +d_course_block_fort_packed_dl_828: + symbol: d_course_block_fort_packed_dl_828 + type: MK64:PACKED_GFX + offset: 0x287 +d_course_block_fort_packed_dl_8B0: + symbol: d_course_block_fort_packed_dl_8B0 + type: MK64:PACKED_GFX + offset: 0x2A9 +d_course_block_fort_packed_dl_938: + symbol: d_course_block_fort_packed_dl_938 + type: MK64:PACKED_GFX + offset: 0x2CB +d_course_block_fort_packed_dl_9C0: + symbol: d_course_block_fort_packed_dl_9C0 + type: MK64:PACKED_GFX + offset: 0x2ED +d_course_block_fort_packed_dl_9F0: + symbol: d_course_block_fort_packed_dl_9F0 + type: MK64:PACKED_GFX + offset: 0x2FD +d_course_block_fort_packed_dl_C80: + symbol: d_course_block_fort_packed_dl_C80 + type: MK64:PACKED_GFX + offset: 0x415 +d_course_block_fort_packed_dl_F10: + symbol: d_course_block_fort_packed_dl_F10 + type: MK64:PACKED_GFX + offset: 0x52D +d_course_block_fort_packed_dl_11A8: + symbol: d_course_block_fort_packed_dl_11A8 + type: MK64:PACKED_GFX + offset: 0x648 +d_course_block_fort_packed_dl_14A0: + symbol: d_course_block_fort_packed_dl_14A0 + type: MK64:PACKED_GFX + offset: 0x79F +d_course_block_fort_packed_dl_14C8: + symbol: d_course_block_fort_packed_dl_14C8 + type: MK64:PACKED_GFX + offset: 0x7AC +d_course_block_fort_packed_dl_1580: + symbol: d_course_block_fort_packed_dl_1580 + type: MK64:PACKED_GFX + offset: 0x80F +d_course_block_fort_packed_dl_1590: + symbol: d_course_block_fort_packed_dl_1590 + type: MK64:PACKED_GFX + offset: 0x813 +d_course_block_fort_packed_dl_15C0: + symbol: d_course_block_fort_packed_dl_15C0 + type: MK64:PACKED_GFX + offset: 0x823 +d_course_block_fort_packed_dl_15D0: + symbol: d_course_block_fort_packed_dl_15D0 + type: MK64:PACKED_GFX + offset: 0x827 +d_course_block_fort_packed_dl_15D8: + symbol: d_course_block_fort_packed_dl_15D8 + type: MK64:PACKED_GFX + offset: 0x828 diff --git a/yamls/us/models/tracks/block_fort/block_fort_vertices.yml b/yamls/us/models/tracks/block_fort/block_fort_vertices.yml new file mode 100644 index 000000000..49f77aa2e --- /dev/null +++ b/yamls/us/models/tracks/block_fort/block_fort_vertices.yml @@ -0,0 +1,315 @@ +:config: + segments: + - [0x0F, 0x951780] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_block_fort_vertex_0x04000000: + symbol: d_course_block_fort_vertex_0x04000000 + type: mk64:course_vtx + count: 3 + offset: 0x0 + +d_course_block_fort_vertex_0x04000030: + symbol: d_course_block_fort_vertex_0x04000030 + type: mk64:course_vtx + count: 32 + offset: 0x2a + +d_course_block_fort_vertex_0x04000170: + symbol: d_course_block_fort_vertex_0x04000170 + type: mk64:course_vtx + count: 22 + offset: 0x142 + +d_course_block_fort_vertex_0x04000270: + symbol: d_course_block_fort_vertex_0x04000270 + type: mk64:course_vtx + count: 22 + offset: 0x222 + +d_course_block_fort_vertex_0x04000370: + symbol: d_course_block_fort_vertex_0x04000370 + type: mk64:course_vtx + count: 22 + offset: 0x302 + +d_course_block_fort_vertex_0x04000470: + symbol: d_course_block_fort_vertex_0x04000470 + type: mk64:course_vtx + count: 50 + offset: 0x3e2 + +d_course_block_fort_vertex_0x04000670: + symbol: d_course_block_fort_vertex_0x04000670 + type: mk64:course_vtx + count: 8 + offset: 0x5a2 + +d_course_block_fort_vertex_0x040006F0: + symbol: d_course_block_fort_vertex_0x040006F0 + type: mk64:course_vtx + count: 50 + offset: 0x612 + +d_course_block_fort_vertex_0x040008F0: + symbol: d_course_block_fort_vertex_0x040008F0 + type: mk64:course_vtx + count: 4 + offset: 0x7d2 + +d_course_block_fort_vertex_0x04000930: + symbol: d_course_block_fort_vertex_0x04000930 + type: mk64:course_vtx + count: 36 + offset: 0x80a + +d_course_block_fort_vertex_0x04000AB0: + symbol: d_course_block_fort_vertex_0x04000AB0 + type: mk64:course_vtx + count: 36 + offset: 0x95a + +d_course_block_fort_vertex_0x04000C30: + symbol: d_course_block_fort_vertex_0x04000C30 + type: mk64:course_vtx + count: 32 + offset: 0xaaa + +d_course_block_fort_vertex_0x04000D70: + symbol: d_course_block_fort_vertex_0x04000D70 + type: mk64:course_vtx + count: 24 + offset: 0xbc2 + +d_course_block_fort_vertex_0x04000E90: + symbol: d_course_block_fort_vertex_0x04000E90 + type: mk64:course_vtx + count: 50 + offset: 0xcbe + +d_course_block_fort_vertex_0x04001090: + symbol: d_course_block_fort_vertex_0x04001090 + type: mk64:course_vtx + count: 50 + offset: 0xe7e + +d_course_block_fort_vertex_0x04001290: + symbol: d_course_block_fort_vertex_0x04001290 + type: mk64:course_vtx + count: 22 + offset: 0x103e + +d_course_block_fort_vertex_0x04001390: + symbol: d_course_block_fort_vertex_0x04001390 + type: mk64:course_vtx + count: 22 + offset: 0x111e + +d_course_block_fort_vertex_0x04001490: + symbol: d_course_block_fort_vertex_0x04001490 + type: mk64:course_vtx + count: 22 + offset: 0x11fe + +d_course_block_fort_vertex_0x04001590: + symbol: d_course_block_fort_vertex_0x04001590 + type: mk64:course_vtx + count: 22 + offset: 0x12de + +d_course_block_fort_vertex_0x04001690: + symbol: d_course_block_fort_vertex_0x04001690 + type: mk64:course_vtx + count: 18 + offset: 0x13be + +d_course_block_fort_vertex_0x04001750: + symbol: d_course_block_fort_vertex_0x04001750 + type: mk64:course_vtx + count: 50 + offset: 0x1466 + +d_course_block_fort_vertex_0x04001950: + symbol: d_course_block_fort_vertex_0x04001950 + type: mk64:course_vtx + count: 50 + offset: 0x1626 + +d_course_block_fort_vertex_0x04001B50: + symbol: d_course_block_fort_vertex_0x04001B50 + type: mk64:course_vtx + count: 50 + offset: 0x17e6 + +d_course_block_fort_vertex_0x04001D50: + symbol: d_course_block_fort_vertex_0x04001D50 + type: mk64:course_vtx + count: 50 + offset: 0x19a6 + +d_course_block_fort_vertex_0x04001F50: + symbol: d_course_block_fort_vertex_0x04001F50 + type: mk64:course_vtx + count: 19 + offset: 0x1b66 + +d_course_block_fort_vertex_0x04002020: + symbol: d_course_block_fort_vertex_0x04002020 + type: mk64:course_vtx + count: 17 + offset: 0x1c1c + +d_course_block_fort_vertex_0x040020D0: + symbol: d_course_block_fort_vertex_0x040020D0 + type: mk64:course_vtx + count: 18 + offset: 0x1cb6 + +d_course_block_fort_vertex_0x04002190: + symbol: d_course_block_fort_vertex_0x04002190 + type: mk64:course_vtx + count: 50 + offset: 0x1d5e + +d_course_block_fort_vertex_0x04002390: + symbol: d_course_block_fort_vertex_0x04002390 + type: mk64:course_vtx + count: 50 + offset: 0x1f1e + +d_course_block_fort_vertex_0x04002590: + symbol: d_course_block_fort_vertex_0x04002590 + type: mk64:course_vtx + count: 50 + offset: 0x20de + +d_course_block_fort_vertex_0x04002790: + symbol: d_course_block_fort_vertex_0x04002790 + type: mk64:course_vtx + count: 48 + offset: 0x229e + +d_course_block_fort_vertex_0x04002970: + symbol: d_course_block_fort_vertex_0x04002970 + type: mk64:course_vtx + count: 25 + offset: 0x2442 + +d_course_block_fort_vertex_0x04002AA0: + symbol: d_course_block_fort_vertex_0x04002AA0 + type: mk64:course_vtx + count: 17 + offset: 0x254c + +d_course_block_fort_vertex_0x04002B50: + symbol: d_course_block_fort_vertex_0x04002B50 + type: mk64:course_vtx + count: 18 + offset: 0x25e6 + +d_course_block_fort_vertex_0x04002C10: + symbol: d_course_block_fort_vertex_0x04002C10 + type: mk64:course_vtx + count: 48 + offset: 0x268e + +d_course_block_fort_vertex_0x04002DF0: + symbol: d_course_block_fort_vertex_0x04002DF0 + type: mk64:course_vtx + count: 50 + offset: 0x2832 + +d_course_block_fort_vertex_0x04002FF0: + symbol: d_course_block_fort_vertex_0x04002FF0 + type: mk64:course_vtx + count: 48 + offset: 0x29f2 + +d_course_block_fort_vertex_0x040031D0: + symbol: d_course_block_fort_vertex_0x040031D0 + type: mk64:course_vtx + count: 4 + offset: 0x2b96 + +d_course_block_fort_vertex_0x04003210: + symbol: d_course_block_fort_vertex_0x04003210 + type: mk64:course_vtx + count: 50 + offset: 0x2bce + +d_course_block_fort_vertex_0x04003410: + symbol: d_course_block_fort_vertex_0x04003410 + type: mk64:course_vtx + count: 19 + offset: 0x2d8e + +d_course_block_fort_vertex_0x040034E0: + symbol: d_course_block_fort_vertex_0x040034E0 + type: mk64:course_vtx + count: 17 + offset: 0x2e44 + +d_course_block_fort_vertex_0x04003590: + symbol: d_course_block_fort_vertex_0x04003590 + type: mk64:course_vtx + count: 18 + offset: 0x2ede + +d_course_block_fort_vertex_0x04003650: + symbol: d_course_block_fort_vertex_0x04003650 + type: mk64:course_vtx + count: 50 + offset: 0x2f86 + +d_course_block_fort_vertex_0x04003850: + symbol: d_course_block_fort_vertex_0x04003850 + type: mk64:course_vtx + count: 50 + offset: 0x3146 + +d_course_block_fort_vertex_0x04003A50: + symbol: d_course_block_fort_vertex_0x04003A50 + type: mk64:course_vtx + count: 48 + offset: 0x3306 + +d_course_block_fort_vertex_0x04003C30: + symbol: d_course_block_fort_vertex_0x04003C30 + type: mk64:course_vtx + count: 22 + offset: 0x34aa + +d_course_block_fort_vertex_0x04003D30: + symbol: d_course_block_fort_vertex_0x04003D30 + type: mk64:course_vtx + count: 50 + offset: 0x358a + +d_course_block_fort_vertex_0x04003F30: + symbol: d_course_block_fort_vertex_0x04003F30 + type: mk64:course_vtx + count: 35 + offset: 0x374a + +d_course_block_fort_vertex_0x040040A0: + symbol: d_course_block_fort_vertex_0x040040A0 + type: mk64:course_vtx + count: 23 + offset: 0x388c + +d_course_block_fort_vertex_0x040041B0: + symbol: d_course_block_fort_vertex_0x040041B0 + type: mk64:course_vtx + count: 49 + offset: 0x397a + +d_course_block_fort_vertex_0x040043A0: + symbol: d_course_block_fort_vertex_0x040043A0 + type: mk64:course_vtx + count: 6 + offset: 0x3b2c \ No newline at end of file diff --git a/yamls/us/models/tracks/bowsers_castle/bowsers_castle_data.yml b/yamls/us/models/tracks/bowsers_castle/bowsers_castle_data.yml new file mode 100644 index 000000000..a363cf8e8 --- /dev/null +++ b/yamls/us/models/tracks/bowsers_castle/bowsers_castle_data.yml @@ -0,0 +1,1144 @@ +:config: + segments: + - [0x06, 0x82DF40] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/bowsers_castle/bowsers_castle_data.yml" + manual_segments: + - [0x03009000, "textures/other_textures/shrub"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_64313C"] + - [0x05000800, "textures/other_textures/texture_6528DC"] + - [0x05001000, "textures/other_textures/texture_66ED38"] + - [0x05001800, "textures/other_textures/texture_676C6C"] + - [0x05002000, "textures/other_textures/texture_676EA8"] + - [0x05002800, "textures/other_textures/texture_679D34"] + - [0x05003000, "textures/other_textures/grass_6"] + - [0x05003800, "textures/other_textures/texture_6522E0"] + - [0x05004000, "textures/other_textures/texture_651F40"] + - [0x05004800, "textures/other_textures/roof_tile"] + - [0x05005000, "textures/other_textures/sign_bowser_0"] + - [0x05006000, "textures/other_textures/sign_bowser_1"] + - [0x05007000, "textures/other_textures/texture_66ABA4"] + - [0x05007800, "textures/other_textures/texture_66EBF0"] + - [0x05008000, "textures/other_textures/texture_6733CC"] + - [0x05008800, "textures/other_textures/texture_673118"] + - [0x05009000, "textures/other_textures/texture_673FF8"] + - [0x05009800, "textures/other_textures/texture_674B28"] + - [0x0500A000, "textures/other_textures/sign_green_arrow"] + - [0x0500B000, "textures/other_textures/texture_68D834"] + - [0x0500B800, "textures/other_textures/texture_676D7C"] + - [0x0500C000, "textures/other_textures/texture_67ADF0"] + - [0x0500C800, "textures/other_textures/texture_67EFEC"] + - [0x0500D000, "textures/other_textures/texture_653DB0"] + - [0x0500D800, "textures/other_textures/texture_66CA98"] + - [0x0500E000, "textures/other_textures/texture_673990"] + - [0x0500E800, "textures/other_textures/texture_67A370"] + - [0x0500F000, "textures/other_textures/texture_67A91C"] + # Segment 4 + - [0x4000000, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000000"] + - [0x4000040, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000040"] + - [0x4000080, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000080"] + - [0x40000c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040000C0"] + - [0x4000140, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000140"] + - [0x4000180, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000180"] + - [0x40001c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040001C0"] + - [0x40003c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040003C0"] + - [0x4000420, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000420"] + - [0x4000480, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000480"] + - [0x4000680, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000680"] + - [0x4000860, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000860"] + - [0x4000920, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000920"] + - [0x4000b00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000B00"] + - [0x4000d00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000D00"] + - [0x4000f00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000F00"] + - [0x4001100, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001100"] + - [0x40012e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040012E0"] + - [0x40014c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040014C0"] + - [0x4001630, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001630"] + - [0x4001820, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001820"] + - [0x4001a00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001A00"] + - [0x4001be0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001BE0"] + - [0x4001de0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001DE0"] + - [0x4001ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001EE0"] + - [0x4002050, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002050"] + - [0x4002150, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002150"] + - [0x4002250, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002250"] + - [0x40022f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040022F0"] + - [0x40024f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040024F0"] + - [0x4002670, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002670"] + - [0x4002760, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002760"] + - [0x4002960, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002960"] + - [0x4002b50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002B50"] + - [0x4002ce0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002CE0"] + - [0x4002ec0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002EC0"] + - [0x4003000, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003000"] + - [0x4003200, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003200"] + - [0x40033e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040033E0"] + - [0x40035d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040035D0"] + - [0x40037c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040037C0"] + - [0x40039c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040039C0"] + - [0x4003bc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003BC0"] + - [0x4003dc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003DC0"] + - [0x4003fc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003FC0"] + - [0x40041c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040041C0"] + - [0x40043c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040043C0"] + - [0x4004410, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004410"] + - [0x4004600, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004600"] + - [0x4004800, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004800"] + - [0x40049f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040049F0"] + - [0x4004a30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004A30"] + - [0x4004a80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004A80"] + - [0x4004ac0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004AC0"] + - [0x4004b10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004B10"] + - [0x4004b60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004B60"] + - [0x4004ba0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004BA0"] + - [0x4004bf0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004BF0"] + - [0x4004c40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004C40"] + - [0x4004c80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004C80"] + - [0x4004cd0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004CD0"] + - [0x4004d20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004D20"] + - [0x4004d60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004D60"] + - [0x4004db0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004DB0"] + - [0x4004e00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E00"] + - [0x4004e40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E40"] + - [0x4004e90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E90"] + - [0x4004ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004EE0"] + - [0x4004f20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004F20"] + - [0x4004f70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004F70"] + - [0x4004fc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004FC0"] + - [0x4005000, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005000"] + - [0x4005050, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005050"] + - [0x40050a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040050A0"] + - [0x40050e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040050E0"] + - [0x4005130, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005130"] + - [0x4005180, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005180"] + - [0x40051c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040051C0"] + - [0x4005210, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005210"] + - [0x4005260, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005260"] + - [0x40052a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040052A0"] + - [0x40052f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040052F0"] + - [0x4005340, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005340"] + - [0x4005380, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005380"] + - [0x40053d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040053D0"] + - [0x4005420, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005420"] + - [0x4005460, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005460"] + - [0x40054b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040054B0"] + - [0x40056b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040056B0"] + - [0x40058b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040058B0"] + - [0x4005970, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005970"] + - [0x4005b70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005B70"] + - [0x4005d50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005D50"] + - [0x4005e80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005E80"] + - [0x4005fd0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005FD0"] + - [0x4006010, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006010"] + - [0x4006200, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006200"] + - [0x40062b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040062B0"] + - [0x4006370, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006370"] + - [0x4006520, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006520"] + - [0x40065d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040065D0"] + - [0x4006650, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006650"] + - [0x4006750, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006750"] + - [0x40067b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040067B0"] + - [0x4006920, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006920"] + - [0x4006a10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006A10"] + - [0x4006b70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006B70"] + - [0x4006d40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006D40"] + - [0x4006e60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006E60"] + - [0x4006f20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006F20"] + - [0x4007060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007060"] + - [0x4007180, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007180"] + - [0x40071b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040071B0"] + - [0x4007270, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007270"] + - [0x4007410, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007410"] + - [0x4007490, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007490"] + - [0x4007690, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007690"] + - [0x4007890, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007890"] + - [0x4007960, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007960"] + - [0x4007b40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007B40"] + - [0x4007d20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007D20"] + - [0x4007f00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007F00"] + - [0x40080e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040080E0"] + - [0x40082c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040082C0"] + - [0x40084a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040084A0"] + - [0x40086a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040086A0"] + - [0x4008880, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008880"] + - [0x4008a60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008A60"] + - [0x4008c40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008C40"] + - [0x4008e20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008E20"] + - [0x4009000, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009000"] + - [0x40091e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040091E0"] + - [0x40093c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040093C0"] + - [0x40095a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040095A0"] + - [0x4009780, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009780"] + - [0x4009960, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009960"] + - [0x4009b50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009B50"] + - [0x4009d30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009D30"] + - [0x4009f10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009F10"] + - [0x400a0f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A0F0"] + - [0x400a2d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A2D0"] + - [0x400a300, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A300"] + - [0x400a4e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A4E0"] + - [0x400a630, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A630"] + - [0x400a790, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A790"] + - [0x400a8d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A8D0"] + - [0x400aad0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AAD0"] + - [0x400acd0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400ACD0"] + - [0x400aeb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AEB0"] + - [0x400af30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AF30"] + - [0x400b130, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B130"] + - [0x400b230, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B230"] + - [0x400b370, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B370"] + - [0x400b570, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B570"] + - [0x400b770, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B770"] + - [0x400b970, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B970"] + - [0x400bb10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BB10"] + - [0x400bd10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BD10"] + - [0x400bea0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BEA0"] + - [0x400c0a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C0A0"] + - [0x400c2a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C2A0"] + - [0x400c360, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C360"] + - [0x400c560, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C560"] + - [0x400c750, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C750"] + - [0x400c940, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C940"] + - [0x400cb40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CB40"] + - [0x400cbf0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CBF0"] + - [0x400ccf0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CCF0"] + - [0x400cdb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CDB0"] + - [0x400cfb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CFB0"] + - [0x400d100, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D100"] + - [0x400d300, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D300"] + - [0x400d500, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D500"] + - [0x400d6c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D6C0"] + - [0x400d8a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D8A0"] + - [0x400d900, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D900"] + - [0x400db00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DB00"] + - [0x400dd00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DD00"] + - [0x400df00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DF00"] + - [0x400e0e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E0E0"] + - [0x400e2d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E2D0"] + - [0x400e3a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E3A0"] + - [0x400e590, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E590"] + - [0x400e690, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E690"] + - [0x400e890, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E890"] + - [0x400e8c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E8C0"] + - [0x400eac0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EAC0"] + - [0x400ecc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400ECC0"] + - [0x400eec0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EEC0"] + - [0x400ef00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EF00"] + - [0x400f0e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F0E0"] + - [0x400f260, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F260"] + - [0x400f360, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F360"] + - [0x400f4a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F4A0"] + - [0x400f6a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F6A0"] + - [0x400f760, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F760"] + - [0x400f940, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F940"] + - [0x400fb20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FB20"] + - [0x400fd20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FD20"] + - [0x400ff00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FF00"] + - [0x40100e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040100E0"] + - [0x40102c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040102C0"] + - [0x40104a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040104A0"] + - [0x4010500, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010500"] + - [0x4010700, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010700"] + - [0x40108e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040108E0"] + - [0x4010ac0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010AC0"] + - [0x4010ca0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010CA0"] + - [0x4010ea0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010EA0"] + - [0x4011080, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011080"] + - [0x4011260, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011260"] + - [0x4011460, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011460"] + - [0x4011660, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011660"] + - [0x4011860, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011860"] + - [0x4011a50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011A50"] + - [0x4011c30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011C30"] + - [0x4011e30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011E30"] + - [0x4011e60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011E60"] + - [0x4012060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012060"] + - [0x4012240, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012240"] + - [0x4012420, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012420"] + - [0x4012600, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012600"] + - [0x4012800, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012800"] + - [0x40129e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040129E0"] + - [0x4012bc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012BC0"] + - [0x4012db0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012DB0"] + - [0x4012fb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012FB0"] + - [0x4013190, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013190"] + - [0x4013380, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013380"] + - [0x4013570, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013570"] + - [0x4013770, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013770"] + - [0x40137d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040137D0"] + - [0x40139b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040139B0"] + - [0x4013b90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013B90"] + - [0x4013d90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013D90"] + - [0x4013f70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013F70"] + - [0x4014150, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014150"] + - [0x4014330, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014330"] + - [0x4014510, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014510"] + - [0x4014710, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014710"] + - [0x40148f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040148F0"] + - [0x4014af0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014AF0"] + - [0x4014cd0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014CD0"] + - [0x4014eb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014EB0"] + - [0x40150b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040150B0"] + - [0x4015110, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015110"] + - [0x40152f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040152F0"] + - [0x40154d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040154D0"] + - [0x40156b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040156B0"] + - [0x4015890, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015890"] + - [0x4015a80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015A80"] + - [0x4015c60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015C60"] + - [0x4015e40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015E40"] + - [0x4016040, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016040"] + - [0x4016220, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016220"] + - [0x4016420, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016420"] + - [0x4016610, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016610"] + - [0x4016800, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016800"] + - [0x40169e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040169E0"] + - [0x4016aa0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016AA0"] + - [0x4016c20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016C20"] + - [0x4016de0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016DE0"] + - [0x4016ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016EE0"] + - [0x4016f60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016F60"] + - [0x4016fe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016FE0"] + - [0x4017060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017060"] + - [0x40170a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040170A0"] + - [0x40171c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040171C0"] + - [0x4017310, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017310"] + - [0x4017480, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017480"] + - [0x4017580, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017580"] + - [0x4017710, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017710"] + - [0x40177d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040177D0"] + - [0x4017810, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017810"] + - [0x4017880, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017880"] + - [0x4017a80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017A80"] + - [0x4017ab0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017AB0"] + - [0x4017b70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017B70"] + - [0x4017d50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017D50"] + - [0x4017ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017EE0"] + - [0x4017f20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017F20"] + - [0x4017f60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017F60"] + - [0x4017fe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017FE0"] + - [0x4018120, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018120"] + - [0x4018310, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018310"] + - [0x4018370, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018370"] + - [0x40183f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040183F0"] + - [0x40184f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040184F0"] + - [0x40185b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040185B0"] + - [0x40187b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040187B0"] + - [0x4018870, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018870"] + - [0x4018a60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018A60"] + - [0x4018c60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018C60"] + - [0x4018e60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018E60"] + - [0x4019050, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019050"] + - [0x4019250, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019250"] + - [0x40192c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040192C0"] + - [0x40194a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040194A0"] + - [0x40196a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040196A0"] + - [0x4019820, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019820"] + - [0x4019970, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019970"] + - [0x4019a70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019A70"] + - [0x4019b70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019B70"] + - [0x4019cb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019CB0"] + - [0x4019ea0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019EA0"] + - [0x4019ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019EE0"] + - [0x401a0c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A0C0"] + - [0x401a100, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A100"] + - [0x401a140, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A140"] + - [0x401a190, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A190"] + - [0x401a360, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A360"] + - [0x401a3b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A3B0"] + - [0x401a580, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A580"] + - [0x401a5d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A5D0"] + - [0x401a7a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A7A0"] + - [0x401a850, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A850"] + - [0x401a950, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A950"] + - [0x401ab50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AB50"] + - [0x401ad50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AD50"] + - [0x401af50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AF50"] + - [0x401b150, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B150"] + - [0x401b330, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B330"] + - [0x401b510, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B510"] + - [0x401b710, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B710"] + - [0x401b7d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B7D0"] + - [0x401b860, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B860"] + - [0x401b9a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B9A0"] + - [0x401bb20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BB20"] + - [0x401bbe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BBE0"] + - [0x401bde0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BDE0"] + - [0x401bfe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BFE0"] + - [0x401c0e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C0E0"] + - [0x401c2e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C2E0"] + - [0x401c460, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C460"] + - [0x401c640, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C640"] + - [0x401c720, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C720"] + - [0x401c900, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C900"] + - [0x401ca80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CA80"] + - [0x401cc00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CC00"] + - [0x401ce00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CE00"] + - [0x401ce80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CE80"] + - [0x401d060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D060"] + - [0x401d160, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D160"] + - [0x401d1a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D1A0"] + - [0x401d3a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D3A0"] + - [0x401d580, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D580"] + - [0x401d6a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D6A0"] + - [0x401d8a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D8A0"] + - [0x401da40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DA40"] + - [0x401dc40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DC40"] + - [0x401dd10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DD10"] + - [0x401ddc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DDC0"] + - [0x401de40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DE40"] + - [0x401dec0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DEC0"] + - [0x401dfc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DFC0"] + - [0x401e080, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E080"] + - [0x401e110, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E110"] + - [0x401e290, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E290"] + - [0x401e350, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E350"] + - [0x401e3d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E3D0"] + - [0x401e410, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E410"] + - [0x401e4d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E4D0"] + - [0x401e550, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E550"] + - [0x401e630, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E630"] + - [0x401e770, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E770"] + - [0x401e870, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E870"] + - [0x401e8f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E8F0"] + - [0x401e9b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E9B0"] + - [0x401eab0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EAB0"] + - [0x401ebb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EBB0"] + - [0x401ec70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EC70"] + - [0x401ed20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401ED20"] + - [0x401eda0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EDA0"] + - [0x401ee00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EE00"] + - [0x401ee80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EE80"] + - [0x401eee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EEE0"] + - [0x401ef60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EF60"] + - [0x401efa0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EFA0"] + - [0x401efe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EFE0"] + - [0x401f060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F060"] + - [0x401f0e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F0E0"] + - [0x401f2e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F2E0"] + - [0x401f4c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F4C0"] + - [0x401f6c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F6C0"] + - [0x401f8c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F8C0"] + - [0x401fac0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FAC0"] + - [0x401fca0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FCA0"] + - [0x401fe90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FE90"] + - [0x4020090, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020090"] + - [0x4020290, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020290"] + - [0x4020390, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020390"] + - [0x4020580, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020580"] + - [0x4020770, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020770"] + - [0x4020970, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020970"] + - [0x4020b60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020B60"] + - [0x4020d60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020D60"] + - [0x4020f60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020F60"] + - [0x4021160, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021160"] + - [0x4021350, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021350"] + - [0x4021550, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021550"] + - [0x4021750, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021750"] + - [0x4021950, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021950"] + - [0x4021b50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021B50"] + - [0x4021c10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021C10"] + - [0x4021d70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021D70"] + - [0x4021ed0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021ED0"] + - [0x4022080, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022080"] + - [0x4022220, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022220"] + - [0x4022400, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022400"] + - [0x4022460, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022460"] + - [0x4022660, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022660"] + - [0x4022760, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022760"] + - [0x4022960, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022960"] + - [0x4022b60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022B60"] + - [0x4022d60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022D60"] + - [0x4022f60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022F60"] + - [0x4023160, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023160"] + - [0x4023350, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023350"] + - [0x4023450, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023450"] + - [0x4023610, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023610"] + - [0x4023710, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023710"] + - [0x40238d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040238D0"] + - [0x40239d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040239D0"] + - [0x4023bb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023BB0"] + - [0x4023da0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023DA0"] + - [0x4023f90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023F90"] + - [0x4024180, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024180"] + - [0x4024370, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024370"] + - [0x4024560, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024560"] + - [0x4024750, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024750"] + - [0x4024930, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024930"] + - [0x4024b30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024B30"] + - [0x4024d20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024D20"] + - [0x4024f20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024F20"] + - [0x4025070, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04025070"] + - [0x4025250, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04025250"] + # Segment 7 + - [0x7000000, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_0"] + - [0x7000060, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_60"] + - [0x70000C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_C0"] + - [0x7000120, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_120"] + - [0x7000188, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_188"] + - [0x70001E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1E8"] + - [0x7000248, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_248"] + - [0x7000280, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_280"] + - [0x7000328, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_328"] + - [0x7000338, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_338"] + - [0x70003B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3B0"] + - [0x70003C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C0"] + - [0x7000428, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_428"] + - [0x7000438, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_438"] + - [0x7000460, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_460"] + - [0x7000470, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_470"] + - [0x7000A10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_A10"] + - [0x7000A20, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_A20"] + - [0x7000B80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_B80"] + - [0x7000D38, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_D38"] + - [0x70011F8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_11F8"] + - [0x7001218, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1218"] + - [0x7001350, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1350"] + - [0x7001360, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1360"] + - [0x7001448, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1448"] + - [0x7001530, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1530"] + - [0x7001618, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1618"] + - [0x7001700, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1700"] + - [0x70017E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_17E8"] + - [0x70018D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_18D0"] + - [0x70019B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_19B8"] + - [0x7001AA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1AA0"] + - [0x7001B88, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1B88"] + - [0x7001C70, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1C70"] + - [0x7001D58, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1D58"] + - [0x7001E40, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1E40"] + - [0x7001EA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1EA8"] + - [0x7001FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1FA0"] + - [0x7002098, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2098"] + - [0x70020B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_20B0"] + - [0x7002128, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2128"] + - [0x7002188, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2188"] + - [0x7002228, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2228"] + - [0x7002290, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2290"] + - [0x7002310, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2310"] + - [0x7002378, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2378"] + - [0x70023E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_23E0"] + - [0x7002450, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2450"] + - [0x70024B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_24B0"] + - [0x7002528, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2528"] + - [0x7002598, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2598"] + - [0x7002610, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2610"] + - [0x7002698, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2698"] + - [0x7002708, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2708"] + - [0x7002770, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2770"] + - [0x70027E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_27E8"] + - [0x7002858, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2858"] + - [0x70028B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_28B8"] + - [0x7002920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2920"] + - [0x70029A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_29A0"] + - [0x7002A48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2A48"] + - [0x7002BA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2BA8"] + - [0x7002BB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2BB8"] + - [0x70030C8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_30C8"] + - [0x70032F0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_32F0"] + - [0x7003308, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3308"] + - [0x7003568, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3568"] + - [0x7003578, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3578"] + - [0x7003920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3920"] + - [0x7003930, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3930"] + - [0x7003C70, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C70"] + - [0x7003C80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C80"] + - [0x7004198, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4198"] + - [0x70041A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_41A8"] + - [0x7004598, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4598"] + - [0x70048A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_48A8"] + - [0x7004BB0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4BB0"] + - [0x7004EB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4EB8"] + - [0x70051B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_51B8"] + - [0x70051E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_51E8"] + - [0x7005270, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5270"] + - [0x7005300, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5300"] + - [0x7005378, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5378"] + - [0x70053E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_53E0"] + - [0x7005448, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5448"] + - [0x70054E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_54E8"] + - [0x7005560, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5560"] + - [0x70055E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_55E8"] + - [0x7005678, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5678"] + - [0x70056F0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_56F0"] + - [0x7005778, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5778"] + - [0x70057E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_57E8"] + - [0x7005850, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5850"] + - [0x7005A78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5A78"] + - [0x7005BB0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5BB0"] + - [0x7005BC8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5BC8"] + - [0x7005D88, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5D88"] + - [0x7005D98, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5D98"] + - [0x7006200, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6200"] + - [0x70063B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_63B8"] + - [0x70063D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_63D0"] + - [0x70064A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_64A8"] + - [0x7006580, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6580"] + - [0x7006658, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6658"] + - [0x7006678, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6678"] + - [0x70066E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_66E8"] + - [0x7006760, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6760"] + - [0x7006778, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6778"] + - [0x7006A80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6A80"] + - [0x7006A90, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6A90"] + - [0x7006BC0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6BC0"] + - [0x7006CA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6CA0"] + - [0x7006CB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6CB8"] + - [0x7006D78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6D78"] + - [0x7006E48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6E48"] + - [0x7006F08, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6F08"] + - [0x7006FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6FA0"] + - [0x7007038, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7038"] + - [0x70070D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_70D0"] + - [0x7007180, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7180"] + - [0x7007288, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7288"] + - [0x7007340, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7340"] + - [0x7007418, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7418"] + - [0x7007520, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7520"] + - [0x70075E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_75E8"] + - [0x7007650, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7650"] + - [0x70076C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_76C0"] + - [0x7007730, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7730"] + - [0x70077A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_77A0"] + - [0x7007820, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7820"] + - [0x7007898, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7898"] + - [0x7007908, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7908"] + - [0x7007998, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7998"] + - [0x7007A10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7A10"] + - [0x7007A78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7A78"] + - [0x7007AD8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7AD8"] + - [0x7007B50, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7B50"] + - [0x7007BB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7BB8"] + - [0x7007C30, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7C30"] + - [0x7007CC0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7CC0"] + - [0x7007D48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7D48"] + - [0x7007DB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7DB8"] + - [0x7007E28, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7E28"] + - [0x7007EA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7EA0"] + - [0x7007F20, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7F20"] + - [0x7007F98, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7F98"] + - [0x7008008, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8008"] + - [0x7008078, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8078"] + - [0x70080E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_80E0"] + - [0x7008148, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8148"] + - [0x70081B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_81B0"] + - [0x7008218, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8218"] + - [0x7008278, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8278"] + - [0x70082D8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_82D8"] + - [0x7008348, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8348"] + - [0x70083B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_83B0"] + - [0x70084A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_84A8"] + - [0x70087E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_87E8"] + - [0x7008BE0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8BE0"] + - [0x7008C78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8C78"] + - [0x7008D10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8D10"] + - [0x7008DA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8DA8"] + - [0x7008E40, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8E40"] + - [0x7008E78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8E78"] + - [0x7008FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8FA0"] + - [0x7009278, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9278"] + - [0x7009290, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9290"] + - [0x7009328, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9328"] + - [0x70093A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_93A0"] + - [0x7009438, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9438"] + - [0x70094B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_94B0"] + - [0x70094D8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_94D8"] + - [0x7009820, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9820"] + - [0x7009830, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9830"] + - [0x7009910, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9910"] + - [0x7009920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9920"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_bowsers_castle_thwomp_faces: + range: [0x7138, 0x8538] + mode: APPEND +d_course_bowsers_castle_dl_0: + symbol: d_course_bowsers_castle_dl_0 + type: gfx + offset: 0x0 +d_course_bowsers_castle_dl_110: + symbol: d_course_bowsers_castle_dl_110 + type: gfx + offset: 0x110 +d_course_bowsers_castle_dl_230: + symbol: d_course_bowsers_castle_dl_230 + type: gfx + offset: 0x230 +d_course_bowsers_castle_dl_398: + symbol: d_course_bowsers_castle_dl_398 + type: gfx + offset: 0x398 +d_course_bowsers_castle_dl_428: + symbol: d_course_bowsers_castle_dl_428 + type: gfx + offset: 0x428 +d_course_bowsers_castle_dl_4F0: + symbol: d_course_bowsers_castle_dl_4F0 + type: gfx + offset: 0x4F0 +d_course_bowsers_castle_dl_640: + symbol: d_course_bowsers_castle_dl_640 + type: gfx + offset: 0x640 +d_course_bowsers_castle_dl_7A0: + symbol: d_course_bowsers_castle_dl_7A0 + type: gfx + offset: 0x7A0 +d_course_bowsers_castle_dl_860: + symbol: d_course_bowsers_castle_dl_860 + type: gfx + offset: 0x860 +d_course_bowsers_castle_dl_8E8: + symbol: d_course_bowsers_castle_dl_8E8 + type: gfx + offset: 0x8E8 +d_course_bowsers_castle_dl_9F8: + symbol: d_course_bowsers_castle_dl_9F8 + type: gfx + offset: 0x9F8 +d_course_bowsers_castle_dl_AE0: + symbol: d_course_bowsers_castle_dl_AE0 + type: gfx + offset: 0xAE0 +d_course_bowsers_castle_dl_B88: + symbol: d_course_bowsers_castle_dl_B88 + type: gfx + offset: 0xB88 +d_course_bowsers_castle_dl_C08: + symbol: d_course_bowsers_castle_dl_C08 + type: gfx + offset: 0xC08 +d_course_bowsers_castle_dl_D20: + symbol: d_course_bowsers_castle_dl_D20 + type: gfx + offset: 0xD20 +d_course_bowsers_castle_dl_E00: + symbol: d_course_bowsers_castle_dl_E00 + type: gfx + offset: 0xE00 +d_course_bowsers_castle_dl_EA8: + symbol: d_course_bowsers_castle_dl_EA8 + type: gfx + offset: 0xEA8 +d_course_bowsers_castle_dl_F08: + symbol: d_course_bowsers_castle_dl_F08 + type: gfx + offset: 0xF08 +d_course_bowsers_castle_dl_1040: + symbol: d_course_bowsers_castle_dl_1040 + type: gfx + offset: 0x1040 +d_course_bowsers_castle_dl_1138: + symbol: d_course_bowsers_castle_dl_1138 + type: gfx + offset: 0x1138 +d_course_bowsers_castle_dl_11F0: + symbol: d_course_bowsers_castle_dl_11F0 + type: gfx + offset: 0x11F0 +d_course_bowsers_castle_dl_1248: + symbol: d_course_bowsers_castle_dl_1248 + type: gfx + offset: 0x1248 +d_course_bowsers_castle_dl_1290: + symbol: d_course_bowsers_castle_dl_1290 + type: gfx + offset: 0x1290 +d_course_bowsers_castle_dl_12D0: + symbol: d_course_bowsers_castle_dl_12D0 + type: gfx + offset: 0x12D0 +d_course_bowsers_castle_dl_1330: + symbol: d_course_bowsers_castle_dl_1330 + type: gfx + offset: 0x1330 +d_course_bowsers_castle_dl_1350: + symbol: d_course_bowsers_castle_dl_1350 + type: gfx + offset: 0x1350 +d_course_bowsers_castle_dl_1370: + symbol: d_course_bowsers_castle_dl_1370 + type: gfx + offset: 0x1370 +d_course_bowsers_castle_dl_13A0: + symbol: d_course_bowsers_castle_dl_13A0 + type: gfx + offset: 0x13A0 +d_course_bowsers_castle_dl_13C0: + symbol: d_course_bowsers_castle_dl_13C0 + type: gfx + offset: 0x13C0 +d_course_bowsers_castle_dl_13E0: + symbol: d_course_bowsers_castle_dl_13E0 + type: gfx + offset: 0x13E0 +d_course_bowsers_castle_dl_1448: + symbol: d_course_bowsers_castle_dl_1448 + type: gfx + offset: 0x1448 +d_course_bowsers_castle_dl_1488: + symbol: d_course_bowsers_castle_dl_1488 + type: gfx + offset: 0x1488 +d_course_bowsers_castle_dl_14B0: + symbol: d_course_bowsers_castle_dl_14B0 + type: gfx + offset: 0x14B0 +d_course_bowsers_castle_dl_1520: + symbol: d_course_bowsers_castle_dl_1520 + type: gfx + offset: 0x1520 +d_course_bowsers_castle_dl_1590: + symbol: d_course_bowsers_castle_dl_1590 + type: gfx + offset: 0x1590 +d_course_bowsers_castle_dl_1608: + symbol: d_course_bowsers_castle_dl_1608 + type: gfx + offset: 0x1608 +d_course_bowsers_castle_dl_1690: + symbol: d_course_bowsers_castle_dl_1690 + type: gfx + offset: 0x1690 +d_course_bowsers_castle_dl_1710: + symbol: d_course_bowsers_castle_dl_1710 + type: gfx + offset: 0x1710 +d_course_bowsers_castle_dl_1788: + symbol: d_course_bowsers_castle_dl_1788 + type: gfx + offset: 0x1788 +d_course_bowsers_castle_dl_17D0: + symbol: d_course_bowsers_castle_dl_17D0 + type: gfx + offset: 0x17D0 +d_course_bowsers_castle_dl_1818: + symbol: d_course_bowsers_castle_dl_1818 + type: gfx + offset: 0x1818 +d_course_bowsers_castle_dl_1860: + symbol: d_course_bowsers_castle_dl_1860 + type: gfx + offset: 0x1860 +d_course_bowsers_castle_dl_18C0: + symbol: d_course_bowsers_castle_dl_18C0 + type: gfx + offset: 0x18C0 +d_course_bowsers_castle_dl_1928: + symbol: d_course_bowsers_castle_dl_1928 + type: gfx + offset: 0x1928 +d_course_bowsers_castle_dl_1960: + symbol: d_course_bowsers_castle_dl_1960 + type: gfx + offset: 0x1960 +d_course_bowsers_castle_dl_19A8: + symbol: d_course_bowsers_castle_dl_19A8 + type: gfx + offset: 0x19A8 +d_course_bowsers_castle_dl_19F8: + symbol: d_course_bowsers_castle_dl_19F8 + type: gfx + offset: 0x19F8 +d_course_bowsers_castle_dl_1A40: + symbol: d_course_bowsers_castle_dl_1A40 + type: gfx + offset: 0x1A40 +d_course_bowsers_castle_dl_1A90: + symbol: d_course_bowsers_castle_dl_1A90 + type: gfx + offset: 0x1A90 +d_course_bowsers_castle_dl_1AD8: + symbol: d_course_bowsers_castle_dl_1AD8 + type: gfx + offset: 0x1AD8 +d_course_bowsers_castle_dl_1B10: + symbol: d_course_bowsers_castle_dl_1B10 + type: gfx + offset: 0x1B10 +d_course_bowsers_castle_dl_1B58: + symbol: d_course_bowsers_castle_dl_1B58 + type: gfx + offset: 0x1B58 +d_course_bowsers_castle_dl_1BB0: + symbol: d_course_bowsers_castle_dl_1BB0 + type: gfx + offset: 0x1BB0 +d_course_bowsers_castle_dl_1C10: + symbol: d_course_bowsers_castle_dl_1C10 + type: gfx + offset: 0x1C10 +d_course_bowsers_castle_dl_1C38: + symbol: d_course_bowsers_castle_dl_1C38 + type: gfx + offset: 0x1C38 +d_course_bowsers_castle_dl_1C60: + symbol: d_course_bowsers_castle_dl_1C60 + type: gfx + offset: 0x1C60 +d_course_bowsers_castle_dl_1C98: + symbol: d_course_bowsers_castle_dl_1C98 + type: gfx + offset: 0x1C98 +d_course_bowsers_castle_dl_1CD0: + symbol: d_course_bowsers_castle_dl_1CD0 + type: gfx + offset: 0x1CD0 +d_course_bowsers_castle_dl_1DF8: + symbol: d_course_bowsers_castle_dl_1DF8 + type: gfx + offset: 0x1DF8 +d_course_bowsers_castle_dl_1EB0: + symbol: d_course_bowsers_castle_dl_1EB0 + type: gfx + offset: 0x1EB0 +d_course_bowsers_castle_dl_1FA0: + symbol: d_course_bowsers_castle_dl_1FA0 + type: gfx + offset: 0x1FA0 +d_course_bowsers_castle_dl_2008: + symbol: d_course_bowsers_castle_dl_2008 + type: gfx + offset: 0x2008 +d_course_bowsers_castle_dl_2130: + symbol: d_course_bowsers_castle_dl_2130 + type: gfx + offset: 0x2130 +d_course_bowsers_castle_dl_21F0: + symbol: d_course_bowsers_castle_dl_21F0 + type: gfx + offset: 0x21F0 +d_course_bowsers_castle_dl_22E8: + symbol: d_course_bowsers_castle_dl_22E8 + type: gfx + offset: 0x22E8 +d_course_bowsers_castle_dl_2398: + symbol: d_course_bowsers_castle_dl_2398 + type: gfx + offset: 0x2398 +d_course_bowsers_castle_dl_24B8: + symbol: d_course_bowsers_castle_dl_24B8 + type: gfx + offset: 0x24B8 +d_course_bowsers_castle_dl_2578: + symbol: d_course_bowsers_castle_dl_2578 + type: gfx + offset: 0x2578 +d_course_bowsers_castle_dl_2688: + symbol: d_course_bowsers_castle_dl_2688 + type: gfx + offset: 0x2688 +d_course_bowsers_castle_dl_2760: + symbol: d_course_bowsers_castle_dl_2760 + type: gfx + offset: 0x2760 +d_course_bowsers_castle_dl_2880: + symbol: d_course_bowsers_castle_dl_2880 + type: gfx + offset: 0x2880 +d_course_bowsers_castle_dl_2958: + symbol: d_course_bowsers_castle_dl_2958 + type: gfx + offset: 0x2958 +d_course_bowsers_castle_dl_2A60: + symbol: d_course_bowsers_castle_dl_2A60 + type: gfx + offset: 0x2A60 +d_course_bowsers_castle_dl_2B80: + symbol: d_course_bowsers_castle_dl_2B80 + type: gfx + offset: 0x2B80 +d_course_bowsers_castle_dl_2C48: + symbol: d_course_bowsers_castle_dl_2C48 + type: gfx + offset: 0x2C48 +d_course_bowsers_castle_dl_2D08: + symbol: d_course_bowsers_castle_dl_2D08 + type: gfx + offset: 0x2D08 +d_course_bowsers_castle_dl_2DF8: + symbol: d_course_bowsers_castle_dl_2DF8 + type: gfx + offset: 0x2DF8 +d_course_bowsers_castle_dl_2F30: + symbol: d_course_bowsers_castle_dl_2F30 + type: gfx + offset: 0x2F30 +d_course_bowsers_castle_dl_2FB0: + symbol: d_course_bowsers_castle_dl_2FB0 + type: gfx + offset: 0x2FB0 +d_course_bowsers_castle_dl_3050: + symbol: d_course_bowsers_castle_dl_3050 + type: gfx + offset: 0x3050 +d_course_bowsers_castle_dl_3158: + symbol: d_course_bowsers_castle_dl_3158 + type: gfx + offset: 0x3158 +d_course_bowsers_castle_dl_3230: + symbol: d_course_bowsers_castle_dl_3230 + type: gfx + offset: 0x3230 +d_course_bowsers_castle_dl_32C0: + symbol: d_course_bowsers_castle_dl_32C0 + type: gfx + offset: 0x32C0 +d_course_bowsers_castle_dl_3338: + symbol: d_course_bowsers_castle_dl_3338 + type: gfx + offset: 0x3338 +d_course_bowsers_castle_dl_3480: + symbol: d_course_bowsers_castle_dl_3480 + type: gfx + offset: 0x3480 +d_course_bowsers_castle_dl_3508: + symbol: d_course_bowsers_castle_dl_3508 + type: gfx + offset: 0x3508 +d_course_bowsers_castle_dl_35D0: + symbol: d_course_bowsers_castle_dl_35D0 + type: gfx + offset: 0x35D0 +d_course_bowsers_castle_dl_3678: + symbol: d_course_bowsers_castle_dl_3678 + type: gfx + offset: 0x3678 +d_course_bowsers_castle_dl_37D8: + symbol: d_course_bowsers_castle_dl_37D8 + type: gfx + offset: 0x37D8 +d_course_bowsers_castle_dl_38F8: + symbol: d_course_bowsers_castle_dl_38F8 + type: gfx + offset: 0x38F8 +d_course_bowsers_castle_dl_39E0: + symbol: d_course_bowsers_castle_dl_39E0 + type: gfx + offset: 0x39E0 +d_course_bowsers_castle_dl_3B00: + symbol: d_course_bowsers_castle_dl_3B00 + type: gfx + offset: 0x3B00 +d_course_bowsers_castle_dl_3C08: + symbol: d_course_bowsers_castle_dl_3C08 + type: gfx + offset: 0x3C08 +d_course_bowsers_castle_dl_3D78: + symbol: d_course_bowsers_castle_dl_3D78 + type: gfx + offset: 0x3D78 +d_course_bowsers_castle_dl_3EA8: + symbol: d_course_bowsers_castle_dl_3EA8 + type: gfx + offset: 0x3EA8 +d_course_bowsers_castle_dl_3FF0: + symbol: d_course_bowsers_castle_dl_3FF0 + type: gfx + offset: 0x3FF0 +d_course_bowsers_castle_dl_40F0: + symbol: d_course_bowsers_castle_dl_40F0 + type: gfx + offset: 0x40F0 +d_course_bowsers_castle_dl_4278: + symbol: d_course_bowsers_castle_dl_4278 + type: gfx + offset: 0x4278 +d_course_bowsers_castle_dl_4358: + symbol: d_course_bowsers_castle_dl_4358 + type: gfx + offset: 0x4358 +d_course_bowsers_castle_dl_4488: + symbol: d_course_bowsers_castle_dl_4488 + type: gfx + offset: 0x4488 +d_course_bowsers_castle_dl_45D8: + symbol: d_course_bowsers_castle_dl_45D8 + type: gfx + offset: 0x45D8 +d_course_bowsers_castle_dl_4748: + symbol: d_course_bowsers_castle_dl_4748 + type: gfx + offset: 0x4748 +d_course_bowsers_castle_dl_4820: + symbol: d_course_bowsers_castle_dl_4820 + type: gfx + offset: 0x4820 +d_course_bowsers_castle_dl_4998: + symbol: d_course_bowsers_castle_dl_4998 + type: gfx + offset: 0x4998 +d_course_bowsers_castle_dl_4A98: + symbol: d_course_bowsers_castle_dl_4A98 + type: gfx + offset: 0x4A98 +d_course_bowsers_castle_dl_4C00: + symbol: d_course_bowsers_castle_dl_4C00 + type: gfx + offset: 0x4C00 +d_course_bowsers_castle_dl_4CE8: + symbol: d_course_bowsers_castle_dl_4CE8 + type: gfx + offset: 0x4CE8 +d_course_bowsers_castle_dl_4EA8: + symbol: d_course_bowsers_castle_dl_4EA8 + type: gfx + offset: 0x4EA8 +d_course_bowsers_castle_thwomp_model1: + symbol: d_course_bowsers_castle_thwomp_model1 + type: vtx + offset: 0x8938 + count: 4 +d_course_bowsers_castle_thwomp_model2: + symbol: d_course_bowsers_castle_thwomp_model2 + type: vtx + offset: 0x8978 + count: 32 +d_course_bowsers_castle_thwomp_model3: + symbol: d_course_bowsers_castle_thwomp_model3 + type: vtx + offset: 0x8B78 + count: 32 +d_course_bowsers_castle_thwomp_model4: + symbol: d_course_bowsers_castle_thwomp_model4 + type: vtx + offset: 0x8D78 + count: 28 +d_course_bowsers_castle_dl_8F38: + symbol: d_course_bowsers_castle_dl_8F38 + type: gfx + offset: 0x8F38 +d_course_bowsers_castle_dl_9078: + symbol: d_course_bowsers_castle_dl_9078 + type: gfx + offset: 0x9078 +d_course_bowsers_castle_dl_thwomp: + symbol: d_course_bowsers_castle_dl_thwomp + type: gfx + offset: 0x9088 +d_course_bowsers_castle_unknown_model: + symbol: d_course_bowsers_castle_unknown_model + type: vtx + offset: 0x9098 + count: 3 +d_course_bowsers_castle_dl_bush: + symbol: d_course_bowsers_castle_dl_bush + type: gfx + offset: 0x90C8 +d_course_bowsers_castle_dl_9148: + symbol: d_course_bowsers_castle_dl_9148 + type: gfx + offset: 0x9148 +d_course_bowsers_castle_dl_9228: + symbol: d_course_bowsers_castle_dl_9228 + type: gfx + offset: 0x9228 diff --git a/yamls/us/models/tracks/bowsers_castle/bowsers_castle_displaylists.yml b/yamls/us/models/tracks/bowsers_castle/bowsers_castle_displaylists.yml new file mode 100644 index 000000000..6c63457ce --- /dev/null +++ b/yamls/us/models/tracks/bowsers_castle/bowsers_castle_displaylists.yml @@ -0,0 +1,1359 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x8B59A8 + segments: + - [0x0E, 0x8B59A8] + no_compression: true + manual_segments: + - [0x03009000, "textures/other_textures/shrub"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_64313C"] + - [0x05000800, "textures/other_textures/texture_6528DC"] + - [0x05001000, "textures/other_textures/texture_66ED38"] + - [0x05001800, "textures/other_textures/texture_676C6C"] + - [0x05002000, "textures/other_textures/texture_676EA8"] + - [0x05002800, "textures/other_textures/texture_679D34"] + - [0x05003000, "textures/other_textures/grass_6"] + - [0x05003800, "textures/other_textures/texture_6522E0"] + - [0x05004000, "textures/other_textures/texture_651F40"] + - [0x05004800, "textures/other_textures/roof_tile"] + - [0x05005000, "textures/other_textures/sign_bowser_0"] + - [0x05006000, "textures/other_textures/sign_bowser_1"] + - [0x05007000, "textures/other_textures/texture_66ABA4"] + - [0x05007800, "textures/other_textures/texture_66EBF0"] + - [0x05008000, "textures/other_textures/texture_6733CC"] + - [0x05008800, "textures/other_textures/texture_673118"] + - [0x05009000, "textures/other_textures/texture_673FF8"] + - [0x05009800, "textures/other_textures/texture_674B28"] + - [0x0500A000, "textures/other_textures/sign_green_arrow"] + - [0x0500B000, "textures/other_textures/texture_68D834"] + - [0x0500B800, "textures/other_textures/texture_676D7C"] + - [0x0500C000, "textures/other_textures/texture_67ADF0"] + - [0x0500C800, "textures/other_textures/texture_67EFEC"] + - [0x0500D000, "textures/other_textures/texture_653DB0"] + - [0x0500D800, "textures/other_textures/texture_66CA98"] + - [0x0500E000, "textures/other_textures/texture_673990"] + - [0x0500E800, "textures/other_textures/texture_67A370"] + - [0x0500F000, "textures/other_textures/texture_67A91C"] + # Segment 4 + - [0x4000000, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000000"] + - [0x4000040, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000040"] + - [0x4000080, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000080"] + - [0x40000c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040000C0"] + - [0x4000140, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000140"] + - [0x4000180, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000180"] + - [0x40001c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040001C0"] + - [0x40003c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040003C0"] + - [0x4000420, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000420"] + - [0x4000480, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000480"] + - [0x4000680, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000680"] + - [0x4000860, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000860"] + - [0x4000920, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000920"] + - [0x4000b00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000B00"] + - [0x4000d00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000D00"] + - [0x4000f00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04000F00"] + - [0x4001100, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001100"] + - [0x40012e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040012E0"] + - [0x40014c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040014C0"] + - [0x4001630, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001630"] + - [0x4001820, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001820"] + - [0x4001a00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001A00"] + - [0x4001be0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001BE0"] + - [0x4001de0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001DE0"] + - [0x4001ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04001EE0"] + - [0x4002050, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002050"] + - [0x4002150, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002150"] + - [0x4002250, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002250"] + - [0x40022f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040022F0"] + - [0x40024f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040024F0"] + - [0x4002670, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002670"] + - [0x4002760, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002760"] + - [0x4002960, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002960"] + - [0x4002b50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002B50"] + - [0x4002ce0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002CE0"] + - [0x4002ec0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04002EC0"] + - [0x4003000, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003000"] + - [0x4003200, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003200"] + - [0x40033e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040033E0"] + - [0x40035d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040035D0"] + - [0x40037c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040037C0"] + - [0x40039c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040039C0"] + - [0x4003bc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003BC0"] + - [0x4003dc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003DC0"] + - [0x4003fc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04003FC0"] + - [0x40041c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040041C0"] + - [0x40043c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040043C0"] + - [0x4004410, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004410"] + - [0x4004600, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004600"] + - [0x4004800, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004800"] + - [0x40049f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040049F0"] + - [0x4004a30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004A30"] + - [0x4004a80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004A80"] + - [0x4004ac0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004AC0"] + - [0x4004b10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004B10"] + - [0x4004b60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004B60"] + - [0x4004ba0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004BA0"] + - [0x4004bf0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004BF0"] + - [0x4004c40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004C40"] + - [0x4004c80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004C80"] + - [0x4004cd0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004CD0"] + - [0x4004d20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004D20"] + - [0x4004d60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004D60"] + - [0x4004db0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004DB0"] + - [0x4004e00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E00"] + - [0x4004e40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E40"] + - [0x4004e90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004E90"] + - [0x4004ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004EE0"] + - [0x4004f20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004F20"] + - [0x4004f70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004F70"] + - [0x4004fc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04004FC0"] + - [0x4005000, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005000"] + - [0x4005050, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005050"] + - [0x40050a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040050A0"] + - [0x40050e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040050E0"] + - [0x4005130, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005130"] + - [0x4005180, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005180"] + - [0x40051c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040051C0"] + - [0x4005210, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005210"] + - [0x4005260, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005260"] + - [0x40052a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040052A0"] + - [0x40052f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040052F0"] + - [0x4005340, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005340"] + - [0x4005380, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005380"] + - [0x40053d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040053D0"] + - [0x4005420, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005420"] + - [0x4005460, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005460"] + - [0x40054b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040054B0"] + - [0x40056b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040056B0"] + - [0x40058b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040058B0"] + - [0x4005970, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005970"] + - [0x4005b70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005B70"] + - [0x4005d50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005D50"] + - [0x4005e80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005E80"] + - [0x4005fd0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04005FD0"] + - [0x4006010, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006010"] + - [0x4006200, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006200"] + - [0x40062b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040062B0"] + - [0x4006370, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006370"] + - [0x4006520, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006520"] + - [0x40065d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040065D0"] + - [0x4006650, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006650"] + - [0x4006750, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006750"] + - [0x40067b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040067B0"] + - [0x4006920, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006920"] + - [0x4006a10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006A10"] + - [0x4006b70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006B70"] + - [0x4006d40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006D40"] + - [0x4006e60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006E60"] + - [0x4006f20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04006F20"] + - [0x4007060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007060"] + - [0x4007180, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007180"] + - [0x40071b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040071B0"] + - [0x4007270, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007270"] + - [0x4007410, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007410"] + - [0x4007490, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007490"] + - [0x4007690, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007690"] + - [0x4007890, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007890"] + - [0x4007960, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007960"] + - [0x4007b40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007B40"] + - [0x4007d20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007D20"] + - [0x4007f00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04007F00"] + - [0x40080e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040080E0"] + - [0x40082c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040082C0"] + - [0x40084a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040084A0"] + - [0x40086a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040086A0"] + - [0x4008880, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008880"] + - [0x4008a60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008A60"] + - [0x4008c40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008C40"] + - [0x4008e20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04008E20"] + - [0x4009000, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009000"] + - [0x40091e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040091E0"] + - [0x40093c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040093C0"] + - [0x40095a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040095A0"] + - [0x4009780, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009780"] + - [0x4009960, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009960"] + - [0x4009b50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009B50"] + - [0x4009d30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009D30"] + - [0x4009f10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04009F10"] + - [0x400a0f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A0F0"] + - [0x400a2d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A2D0"] + - [0x400a300, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A300"] + - [0x400a4e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A4E0"] + - [0x400a630, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A630"] + - [0x400a790, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A790"] + - [0x400a8d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400A8D0"] + - [0x400aad0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AAD0"] + - [0x400acd0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400ACD0"] + - [0x400aeb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AEB0"] + - [0x400af30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400AF30"] + - [0x400b130, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B130"] + - [0x400b230, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B230"] + - [0x400b370, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B370"] + - [0x400b570, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B570"] + - [0x400b770, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B770"] + - [0x400b970, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400B970"] + - [0x400bb10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BB10"] + - [0x400bd10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BD10"] + - [0x400bea0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400BEA0"] + - [0x400c0a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C0A0"] + - [0x400c2a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C2A0"] + - [0x400c360, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C360"] + - [0x400c560, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C560"] + - [0x400c750, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C750"] + - [0x400c940, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400C940"] + - [0x400cb40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CB40"] + - [0x400cbf0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CBF0"] + - [0x400ccf0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CCF0"] + - [0x400cdb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CDB0"] + - [0x400cfb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400CFB0"] + - [0x400d100, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D100"] + - [0x400d300, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D300"] + - [0x400d500, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D500"] + - [0x400d6c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D6C0"] + - [0x400d8a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D8A0"] + - [0x400d900, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400D900"] + - [0x400db00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DB00"] + - [0x400dd00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DD00"] + - [0x400df00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400DF00"] + - [0x400e0e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E0E0"] + - [0x400e2d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E2D0"] + - [0x400e3a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E3A0"] + - [0x400e590, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E590"] + - [0x400e690, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E690"] + - [0x400e890, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E890"] + - [0x400e8c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400E8C0"] + - [0x400eac0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EAC0"] + - [0x400ecc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400ECC0"] + - [0x400eec0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EEC0"] + - [0x400ef00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400EF00"] + - [0x400f0e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F0E0"] + - [0x400f260, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F260"] + - [0x400f360, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F360"] + - [0x400f4a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F4A0"] + - [0x400f6a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F6A0"] + - [0x400f760, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F760"] + - [0x400f940, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400F940"] + - [0x400fb20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FB20"] + - [0x400fd20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FD20"] + - [0x400ff00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0400FF00"] + - [0x40100e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040100E0"] + - [0x40102c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040102C0"] + - [0x40104a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040104A0"] + - [0x4010500, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010500"] + - [0x4010700, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010700"] + - [0x40108e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040108E0"] + - [0x4010ac0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010AC0"] + - [0x4010ca0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010CA0"] + - [0x4010ea0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04010EA0"] + - [0x4011080, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011080"] + - [0x4011260, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011260"] + - [0x4011460, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011460"] + - [0x4011660, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011660"] + - [0x4011860, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011860"] + - [0x4011a50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011A50"] + - [0x4011c30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011C30"] + - [0x4011e30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011E30"] + - [0x4011e60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04011E60"] + - [0x4012060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012060"] + - [0x4012240, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012240"] + - [0x4012420, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012420"] + - [0x4012600, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012600"] + - [0x4012800, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012800"] + - [0x40129e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040129E0"] + - [0x4012bc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012BC0"] + - [0x4012db0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012DB0"] + - [0x4012fb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04012FB0"] + - [0x4013190, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013190"] + - [0x4013380, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013380"] + - [0x4013570, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013570"] + - [0x4013770, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013770"] + - [0x40137d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040137D0"] + - [0x40139b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040139B0"] + - [0x4013b90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013B90"] + - [0x4013d90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013D90"] + - [0x4013f70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04013F70"] + - [0x4014150, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014150"] + - [0x4014330, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014330"] + - [0x4014510, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014510"] + - [0x4014710, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014710"] + - [0x40148f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040148F0"] + - [0x4014af0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014AF0"] + - [0x4014cd0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014CD0"] + - [0x4014eb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04014EB0"] + - [0x40150b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040150B0"] + - [0x4015110, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015110"] + - [0x40152f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040152F0"] + - [0x40154d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040154D0"] + - [0x40156b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040156B0"] + - [0x4015890, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015890"] + - [0x4015a80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015A80"] + - [0x4015c60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015C60"] + - [0x4015e40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04015E40"] + - [0x4016040, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016040"] + - [0x4016220, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016220"] + - [0x4016420, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016420"] + - [0x4016610, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016610"] + - [0x4016800, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016800"] + - [0x40169e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040169E0"] + - [0x4016aa0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016AA0"] + - [0x4016c20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016C20"] + - [0x4016de0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016DE0"] + - [0x4016ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016EE0"] + - [0x4016f60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016F60"] + - [0x4016fe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04016FE0"] + - [0x4017060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017060"] + - [0x40170a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040170A0"] + - [0x40171c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040171C0"] + - [0x4017310, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017310"] + - [0x4017480, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017480"] + - [0x4017580, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017580"] + - [0x4017710, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017710"] + - [0x40177d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040177D0"] + - [0x4017810, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017810"] + - [0x4017880, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017880"] + - [0x4017a80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017A80"] + - [0x4017ab0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017AB0"] + - [0x4017b70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017B70"] + - [0x4017d50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017D50"] + - [0x4017ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017EE0"] + - [0x4017f20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017F20"] + - [0x4017f60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017F60"] + - [0x4017fe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04017FE0"] + - [0x4018120, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018120"] + - [0x4018310, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018310"] + - [0x4018370, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018370"] + - [0x40183f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040183F0"] + - [0x40184f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040184F0"] + - [0x40185b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040185B0"] + - [0x40187b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040187B0"] + - [0x4018870, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018870"] + - [0x4018a60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018A60"] + - [0x4018c60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018C60"] + - [0x4018e60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04018E60"] + - [0x4019050, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019050"] + - [0x4019250, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019250"] + - [0x40192c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040192C0"] + - [0x40194a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040194A0"] + - [0x40196a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040196A0"] + - [0x4019820, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019820"] + - [0x4019970, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019970"] + - [0x4019a70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019A70"] + - [0x4019b70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019B70"] + - [0x4019cb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019CB0"] + - [0x4019ea0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019EA0"] + - [0x4019ee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04019EE0"] + - [0x401a0c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A0C0"] + - [0x401a100, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A100"] + - [0x401a140, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A140"] + - [0x401a190, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A190"] + - [0x401a360, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A360"] + - [0x401a3b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A3B0"] + - [0x401a580, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A580"] + - [0x401a5d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A5D0"] + - [0x401a7a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A7A0"] + - [0x401a850, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A850"] + - [0x401a950, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401A950"] + - [0x401ab50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AB50"] + - [0x401ad50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AD50"] + - [0x401af50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401AF50"] + - [0x401b150, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B150"] + - [0x401b330, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B330"] + - [0x401b510, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B510"] + - [0x401b710, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B710"] + - [0x401b7d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B7D0"] + - [0x401b860, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B860"] + - [0x401b9a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401B9A0"] + - [0x401bb20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BB20"] + - [0x401bbe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BBE0"] + - [0x401bde0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BDE0"] + - [0x401bfe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401BFE0"] + - [0x401c0e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C0E0"] + - [0x401c2e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C2E0"] + - [0x401c460, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C460"] + - [0x401c640, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C640"] + - [0x401c720, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C720"] + - [0x401c900, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401C900"] + - [0x401ca80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CA80"] + - [0x401cc00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CC00"] + - [0x401ce00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CE00"] + - [0x401ce80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401CE80"] + - [0x401d060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D060"] + - [0x401d160, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D160"] + - [0x401d1a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D1A0"] + - [0x401d3a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D3A0"] + - [0x401d580, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D580"] + - [0x401d6a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D6A0"] + - [0x401d8a0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401D8A0"] + - [0x401da40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DA40"] + - [0x401dc40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DC40"] + - [0x401dd10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DD10"] + - [0x401ddc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DDC0"] + - [0x401de40, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DE40"] + - [0x401dec0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DEC0"] + - [0x401dfc0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401DFC0"] + - [0x401e080, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E080"] + - [0x401e110, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E110"] + - [0x401e290, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E290"] + - [0x401e350, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E350"] + - [0x401e3d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E3D0"] + - [0x401e410, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E410"] + - [0x401e4d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E4D0"] + - [0x401e550, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E550"] + - [0x401e630, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E630"] + - [0x401e770, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E770"] + - [0x401e870, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E870"] + - [0x401e8f0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E8F0"] + - [0x401e9b0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401E9B0"] + - [0x401eab0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EAB0"] + - [0x401ebb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EBB0"] + - [0x401ec70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EC70"] + - [0x401ed20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401ED20"] + - [0x401eda0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EDA0"] + - [0x401ee00, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EE00"] + - [0x401ee80, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EE80"] + - [0x401eee0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EEE0"] + - [0x401ef60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EF60"] + - [0x401efa0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EFA0"] + - [0x401efe0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401EFE0"] + - [0x401f060, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F060"] + - [0x401f0e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F0E0"] + - [0x401f2e0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F2E0"] + - [0x401f4c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F4C0"] + - [0x401f6c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F6C0"] + - [0x401f8c0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401F8C0"] + - [0x401fac0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FAC0"] + - [0x401fca0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FCA0"] + - [0x401fe90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x0401FE90"] + - [0x4020090, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020090"] + - [0x4020290, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020290"] + - [0x4020390, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020390"] + - [0x4020580, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020580"] + - [0x4020770, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020770"] + - [0x4020970, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020970"] + - [0x4020b60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020B60"] + - [0x4020d60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020D60"] + - [0x4020f60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04020F60"] + - [0x4021160, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021160"] + - [0x4021350, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021350"] + - [0x4021550, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021550"] + - [0x4021750, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021750"] + - [0x4021950, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021950"] + - [0x4021b50, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021B50"] + - [0x4021c10, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021C10"] + - [0x4021d70, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021D70"] + - [0x4021ed0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04021ED0"] + - [0x4022080, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022080"] + - [0x4022220, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022220"] + - [0x4022400, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022400"] + - [0x4022460, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022460"] + - [0x4022660, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022660"] + - [0x4022760, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022760"] + - [0x4022960, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022960"] + - [0x4022b60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022B60"] + - [0x4022d60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022D60"] + - [0x4022f60, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04022F60"] + - [0x4023160, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023160"] + - [0x4023350, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023350"] + - [0x4023450, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023450"] + - [0x4023610, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023610"] + - [0x4023710, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023710"] + - [0x40238d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040238D0"] + - [0x40239d0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x040239D0"] + - [0x4023bb0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023BB0"] + - [0x4023da0, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023DA0"] + - [0x4023f90, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04023F90"] + - [0x4024180, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024180"] + - [0x4024370, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024370"] + - [0x4024560, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024560"] + - [0x4024750, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024750"] + - [0x4024930, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024930"] + - [0x4024b30, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024B30"] + - [0x4024d20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024D20"] + - [0x4024f20, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04024F20"] + - [0x4025070, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04025070"] + - [0x4025250, "models/tracks/bowsers_castle/bowsers_castle_vertices/d_course_bowsers_castle_vertex_0x04025250"] + # Segment 7 + - [0x7000000, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_0"] + - [0x7000060, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_60"] + - [0x70000C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_C0"] + - [0x7000120, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_120"] + - [0x7000188, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_188"] + - [0x70001E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1E8"] + - [0x7000248, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_248"] + - [0x7000280, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_280"] + - [0x7000328, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_328"] + - [0x7000338, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_338"] + - [0x70003B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3B0"] + - [0x70003C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C0"] + - [0x7000428, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_428"] + - [0x7000438, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_438"] + - [0x7000460, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_460"] + - [0x7000470, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_470"] + - [0x7000A10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_A10"] + - [0x7000A20, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_A20"] + - [0x7000B80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_B80"] + - [0x7000D38, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_D38"] + - [0x70011F8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_11F8"] + - [0x7001218, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1218"] + - [0x7001350, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1350"] + - [0x7001360, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1360"] + - [0x7001448, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1448"] + - [0x7001530, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1530"] + - [0x7001618, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1618"] + - [0x7001700, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1700"] + - [0x70017E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_17E8"] + - [0x70018D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_18D0"] + - [0x70019B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_19B8"] + - [0x7001AA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1AA0"] + - [0x7001B88, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1B88"] + - [0x7001C70, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1C70"] + - [0x7001D58, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1D58"] + - [0x7001E40, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1E40"] + - [0x7001EA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1EA8"] + - [0x7001FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1FA0"] + - [0x7002098, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2098"] + - [0x70020B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_20B0"] + - [0x7002128, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2128"] + - [0x7002188, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2188"] + - [0x7002228, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2228"] + - [0x7002290, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2290"] + - [0x7002310, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2310"] + - [0x7002378, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2378"] + - [0x70023E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_23E0"] + - [0x7002450, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2450"] + - [0x70024B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_24B0"] + - [0x7002528, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2528"] + - [0x7002598, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2598"] + - [0x7002610, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2610"] + - [0x7002698, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2698"] + - [0x7002708, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2708"] + - [0x7002770, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2770"] + - [0x70027E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_27E8"] + - [0x7002858, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2858"] + - [0x70028B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_28B8"] + - [0x7002920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2920"] + - [0x70029A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_29A0"] + - [0x7002A48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2A48"] + - [0x7002BA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2BA8"] + - [0x7002BB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2BB8"] + - [0x70030C8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_30C8"] + - [0x70032F0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_32F0"] + - [0x7003308, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3308"] + - [0x7003568, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3568"] + - [0x7003578, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3578"] + - [0x7003920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3920"] + - [0x7003930, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3930"] + - [0x7003C70, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C70"] + - [0x7003C80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C80"] + - [0x7004198, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4198"] + - [0x70041A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_41A8"] + - [0x7004598, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4598"] + - [0x70048A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_48A8"] + - [0x7004BB0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4BB0"] + - [0x7004EB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4EB8"] + - [0x70051B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_51B8"] + - [0x70051E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_51E8"] + - [0x7005270, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5270"] + - [0x7005300, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5300"] + - [0x7005378, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5378"] + - [0x70053E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_53E0"] + - [0x7005448, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5448"] + - [0x70054E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_54E8"] + - [0x7005560, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5560"] + - [0x70055E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_55E8"] + - [0x7005678, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5678"] + - [0x70056F0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_56F0"] + - [0x7005778, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5778"] + - [0x70057E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_57E8"] + - [0x7005850, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5850"] + - [0x7005A78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5A78"] + - [0x7005BB0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5BB0"] + - [0x7005BC8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5BC8"] + - [0x7005D88, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5D88"] + - [0x7005D98, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5D98"] + - [0x7006200, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6200"] + - [0x70063B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_63B8"] + - [0x70063D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_63D0"] + - [0x70064A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_64A8"] + - [0x7006580, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6580"] + - [0x7006658, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6658"] + - [0x7006678, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6678"] + - [0x70066E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_66E8"] + - [0x7006760, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6760"] + - [0x7006778, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6778"] + - [0x7006A80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6A80"] + - [0x7006A90, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6A90"] + - [0x7006BC0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6BC0"] + - [0x7006CA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6CA0"] + - [0x7006CB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6CB8"] + - [0x7006D78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6D78"] + - [0x7006E48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6E48"] + - [0x7006F08, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6F08"] + - [0x7006FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6FA0"] + - [0x7007038, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7038"] + - [0x70070D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_70D0"] + - [0x7007180, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7180"] + - [0x7007288, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7288"] + - [0x7007340, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7340"] + - [0x7007418, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7418"] + - [0x7007520, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7520"] + - [0x70075E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_75E8"] + - [0x7007650, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7650"] + - [0x70076C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_76C0"] + - [0x7007730, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7730"] + - [0x70077A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_77A0"] + - [0x7007820, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7820"] + - [0x7007898, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7898"] + - [0x7007908, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7908"] + - [0x7007998, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7998"] + - [0x7007A10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7A10"] + - [0x7007A78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7A78"] + - [0x7007AD8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7AD8"] + - [0x7007B50, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7B50"] + - [0x7007BB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7BB8"] + - [0x7007C30, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7C30"] + - [0x7007CC0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7CC0"] + - [0x7007D48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7D48"] + - [0x7007DB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7DB8"] + - [0x7007E28, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7E28"] + - [0x7007EA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7EA0"] + - [0x7007F20, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7F20"] + - [0x7007F98, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7F98"] + - [0x7008008, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8008"] + - [0x7008078, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8078"] + - [0x70080E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_80E0"] + - [0x7008148, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8148"] + - [0x70081B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_81B0"] + - [0x7008218, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8218"] + - [0x7008278, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8278"] + - [0x70082D8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_82D8"] + - [0x7008348, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8348"] + - [0x70083B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_83B0"] + - [0x70084A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_84A8"] + - [0x70087E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_87E8"] + - [0x7008BE0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8BE0"] + - [0x7008C78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8C78"] + - [0x7008D10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8D10"] + - [0x7008DA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8DA8"] + - [0x7008E40, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8E40"] + - [0x7008E78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8E78"] + - [0x7008FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8FA0"] + - [0x7009278, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9278"] + - [0x7009290, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9290"] + - [0x7009328, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9328"] + - [0x70093A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_93A0"] + - [0x7009438, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9438"] + - [0x70094B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_94B0"] + - [0x70094D8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_94D8"] + - [0x7009820, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9820"] + - [0x7009830, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9830"] + - [0x7009910, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9910"] + - [0x7009920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9920"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_bowsers_castle_packed_dl_0: + symbol: d_course_bowsers_castle_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_bowsers_castle_packed_dl_60: + symbol: d_course_bowsers_castle_packed_dl_60 + type: MK64:PACKED_GFX + offset: 0x11 +d_course_bowsers_castle_packed_dl_C0: + symbol: d_course_bowsers_castle_packed_dl_C0 + type: MK64:PACKED_GFX + offset: 0x22 +d_course_bowsers_castle_packed_dl_120: + symbol: d_course_bowsers_castle_packed_dl_120 + type: MK64:PACKED_GFX + offset: 0x33 +d_course_bowsers_castle_packed_dl_188: + symbol: d_course_bowsers_castle_packed_dl_188 + type: MK64:PACKED_GFX + offset: 0x49 +d_course_bowsers_castle_packed_dl_1E8: + symbol: d_course_bowsers_castle_packed_dl_1E8 + type: MK64:PACKED_GFX + offset: 0x5A +d_course_bowsers_castle_packed_dl_248: + symbol: d_course_bowsers_castle_packed_dl_248 + type: MK64:PACKED_GFX + offset: 0x6B +d_course_bowsers_castle_packed_dl_280: + symbol: d_course_bowsers_castle_packed_dl_280 + type: MK64:PACKED_GFX + offset: 0x7E +d_course_bowsers_castle_packed_dl_328: + symbol: d_course_bowsers_castle_packed_dl_328 + type: MK64:PACKED_GFX + offset: 0xB4 +d_course_bowsers_castle_packed_dl_338: + symbol: d_course_bowsers_castle_packed_dl_338 + type: MK64:PACKED_GFX + offset: 0xB8 +d_course_bowsers_castle_packed_dl_3B0: + symbol: d_course_bowsers_castle_packed_dl_3B0 + type: MK64:PACKED_GFX + offset: 0xD0 +d_course_bowsers_castle_packed_dl_3C0: + symbol: d_course_bowsers_castle_packed_dl_3C0 + type: MK64:PACKED_GFX + offset: 0xD4 +d_course_bowsers_castle_packed_dl_428: + symbol: d_course_bowsers_castle_packed_dl_428 + type: MK64:PACKED_GFX + offset: 0xEA +d_course_bowsers_castle_packed_dl_438: + symbol: d_course_bowsers_castle_packed_dl_438 + type: MK64:PACKED_GFX + offset: 0xEE +d_course_bowsers_castle_packed_dl_460: + symbol: d_course_bowsers_castle_packed_dl_460 + type: MK64:PACKED_GFX + offset: 0xFB +d_course_bowsers_castle_packed_dl_470: + symbol: d_course_bowsers_castle_packed_dl_470 + type: MK64:PACKED_GFX + offset: 0xFF +d_course_bowsers_castle_packed_dl_A10: + symbol: d_course_bowsers_castle_packed_dl_A10 + type: MK64:PACKED_GFX + offset: 0x3B7 +d_course_bowsers_castle_packed_dl_A20: + symbol: d_course_bowsers_castle_packed_dl_A20 + type: MK64:PACKED_GFX + offset: 0x3BB +d_course_bowsers_castle_packed_dl_B80: + symbol: d_course_bowsers_castle_packed_dl_B80 + type: MK64:PACKED_GFX + offset: 0x453 +d_course_bowsers_castle_packed_dl_D38: + symbol: d_course_bowsers_castle_packed_dl_D38 + type: MK64:PACKED_GFX + offset: 0x51C +d_course_bowsers_castle_packed_dl_11F8: + symbol: d_course_bowsers_castle_packed_dl_11F8 + type: MK64:PACKED_GFX + offset: 0x7B4 +d_course_bowsers_castle_packed_dl_1218: + symbol: d_course_bowsers_castle_packed_dl_1218 + type: MK64:PACKED_GFX + offset: 0x7BE +d_course_bowsers_castle_packed_dl_1350: + symbol: d_course_bowsers_castle_packed_dl_1350 + type: MK64:PACKED_GFX + offset: 0x850 +d_course_bowsers_castle_packed_dl_1360: + symbol: d_course_bowsers_castle_packed_dl_1360 + type: MK64:PACKED_GFX + offset: 0x854 +d_course_bowsers_castle_packed_dl_1448: + symbol: d_course_bowsers_castle_packed_dl_1448 + type: MK64:PACKED_GFX + offset: 0x88C +d_course_bowsers_castle_packed_dl_1530: + symbol: d_course_bowsers_castle_packed_dl_1530 + type: MK64:PACKED_GFX + offset: 0x8C4 +d_course_bowsers_castle_packed_dl_1618: + symbol: d_course_bowsers_castle_packed_dl_1618 + type: MK64:PACKED_GFX + offset: 0x8FC +d_course_bowsers_castle_packed_dl_1700: + symbol: d_course_bowsers_castle_packed_dl_1700 + type: MK64:PACKED_GFX + offset: 0x934 +d_course_bowsers_castle_packed_dl_17E8: + symbol: d_course_bowsers_castle_packed_dl_17E8 + type: MK64:PACKED_GFX + offset: 0x96C +d_course_bowsers_castle_packed_dl_18D0: + symbol: d_course_bowsers_castle_packed_dl_18D0 + type: MK64:PACKED_GFX + offset: 0x9A4 +d_course_bowsers_castle_packed_dl_19B8: + symbol: d_course_bowsers_castle_packed_dl_19B8 + type: MK64:PACKED_GFX + offset: 0x9DC +d_course_bowsers_castle_packed_dl_1AA0: + symbol: d_course_bowsers_castle_packed_dl_1AA0 + type: MK64:PACKED_GFX + offset: 0xA14 +d_course_bowsers_castle_packed_dl_1B88: + symbol: d_course_bowsers_castle_packed_dl_1B88 + type: MK64:PACKED_GFX + offset: 0xA4C +d_course_bowsers_castle_packed_dl_1C70: + symbol: d_course_bowsers_castle_packed_dl_1C70 + type: MK64:PACKED_GFX + offset: 0xA84 +d_course_bowsers_castle_packed_dl_1D58: + symbol: d_course_bowsers_castle_packed_dl_1D58 + type: MK64:PACKED_GFX + offset: 0xABC +d_course_bowsers_castle_packed_dl_1E40: + symbol: d_course_bowsers_castle_packed_dl_1E40 + type: MK64:PACKED_GFX + offset: 0xAF4 +d_course_bowsers_castle_packed_dl_1EA8: + symbol: d_course_bowsers_castle_packed_dl_1EA8 + type: MK64:PACKED_GFX + offset: 0xB19 +d_course_bowsers_castle_packed_dl_1FA0: + symbol: d_course_bowsers_castle_packed_dl_1FA0 + type: MK64:PACKED_GFX + offset: 0xB85 +d_course_bowsers_castle_packed_dl_2098: + symbol: d_course_bowsers_castle_packed_dl_2098 + type: MK64:PACKED_GFX + offset: 0xBEF +d_course_bowsers_castle_packed_dl_20B0: + symbol: d_course_bowsers_castle_packed_dl_20B0 + type: MK64:PACKED_GFX + offset: 0xBF6 +d_course_bowsers_castle_packed_dl_2128: + symbol: d_course_bowsers_castle_packed_dl_2128 + type: MK64:PACKED_GFX + offset: 0xC16 +d_course_bowsers_castle_packed_dl_2188: + symbol: d_course_bowsers_castle_packed_dl_2188 + type: MK64:PACKED_GFX + offset: 0xC27 +d_course_bowsers_castle_packed_dl_2228: + symbol: d_course_bowsers_castle_packed_dl_2228 + type: MK64:PACKED_GFX + offset: 0xC5C +d_course_bowsers_castle_packed_dl_2290: + symbol: d_course_bowsers_castle_packed_dl_2290 + type: MK64:PACKED_GFX + offset: 0xC72 +d_course_bowsers_castle_packed_dl_2310: + symbol: d_course_bowsers_castle_packed_dl_2310 + type: MK64:PACKED_GFX + offset: 0xC97 +d_course_bowsers_castle_packed_dl_2378: + symbol: d_course_bowsers_castle_packed_dl_2378 + type: MK64:PACKED_GFX + offset: 0xCAD +d_course_bowsers_castle_packed_dl_23E0: + symbol: d_course_bowsers_castle_packed_dl_23E0 + type: MK64:PACKED_GFX + offset: 0xCC1 +d_course_bowsers_castle_packed_dl_2450: + symbol: d_course_bowsers_castle_packed_dl_2450 + type: MK64:PACKED_GFX + offset: 0xCDC +d_course_bowsers_castle_packed_dl_24B0: + symbol: d_course_bowsers_castle_packed_dl_24B0 + type: MK64:PACKED_GFX + offset: 0xCED +d_course_bowsers_castle_packed_dl_2528: + symbol: d_course_bowsers_castle_packed_dl_2528 + type: MK64:PACKED_GFX + offset: 0xD0D +d_course_bowsers_castle_packed_dl_2598: + symbol: d_course_bowsers_castle_packed_dl_2598 + type: MK64:PACKED_GFX + offset: 0xD28 +d_course_bowsers_castle_packed_dl_2610: + symbol: d_course_bowsers_castle_packed_dl_2610 + type: MK64:PACKED_GFX + offset: 0xD48 +d_course_bowsers_castle_packed_dl_2698: + symbol: d_course_bowsers_castle_packed_dl_2698 + type: MK64:PACKED_GFX + offset: 0xD70 +d_course_bowsers_castle_packed_dl_2708: + symbol: d_course_bowsers_castle_packed_dl_2708 + type: MK64:PACKED_GFX + offset: 0xD8B +d_course_bowsers_castle_packed_dl_2770: + symbol: d_course_bowsers_castle_packed_dl_2770 + type: MK64:PACKED_GFX + offset: 0xDA1 +d_course_bowsers_castle_packed_dl_27E8: + symbol: d_course_bowsers_castle_packed_dl_27E8 + type: MK64:PACKED_GFX + offset: 0xDBF +d_course_bowsers_castle_packed_dl_2858: + symbol: d_course_bowsers_castle_packed_dl_2858 + type: MK64:PACKED_GFX + offset: 0xDDA +d_course_bowsers_castle_packed_dl_28B8: + symbol: d_course_bowsers_castle_packed_dl_28B8 + type: MK64:PACKED_GFX + offset: 0xDE9 +d_course_bowsers_castle_packed_dl_2920: + symbol: d_course_bowsers_castle_packed_dl_2920 + type: MK64:PACKED_GFX + offset: 0xDFF +d_course_bowsers_castle_packed_dl_29A0: + symbol: d_course_bowsers_castle_packed_dl_29A0 + type: MK64:PACKED_GFX + offset: 0xE24 +d_course_bowsers_castle_packed_dl_2A48: + symbol: d_course_bowsers_castle_packed_dl_2A48 + type: MK64:PACKED_GFX + offset: 0xE61 +d_course_bowsers_castle_packed_dl_2BA8: + symbol: d_course_bowsers_castle_packed_dl_2BA8 + type: MK64:PACKED_GFX + offset: 0xEF7 +d_course_bowsers_castle_packed_dl_2BB8: + symbol: d_course_bowsers_castle_packed_dl_2BB8 + type: MK64:PACKED_GFX + offset: 0xEFB +d_course_bowsers_castle_packed_dl_30C8: + symbol: d_course_bowsers_castle_packed_dl_30C8 + type: MK64:PACKED_GFX + offset: 0x11AD +d_course_bowsers_castle_packed_dl_32F0: + symbol: d_course_bowsers_castle_packed_dl_32F0 + type: MK64:PACKED_GFX + offset: 0x12A7 +d_course_bowsers_castle_packed_dl_3308: + symbol: d_course_bowsers_castle_packed_dl_3308 + type: MK64:PACKED_GFX + offset: 0x12AE +d_course_bowsers_castle_packed_dl_3568: + symbol: d_course_bowsers_castle_packed_dl_3568 + type: MK64:PACKED_GFX + offset: 0x13C9 +d_course_bowsers_castle_packed_dl_3578: + symbol: d_course_bowsers_castle_packed_dl_3578 + type: MK64:PACKED_GFX + offset: 0x13CD +d_course_bowsers_castle_packed_dl_3920: + symbol: d_course_bowsers_castle_packed_dl_3920 + type: MK64:PACKED_GFX + offset: 0x157D +d_course_bowsers_castle_packed_dl_3930: + symbol: d_course_bowsers_castle_packed_dl_3930 + type: MK64:PACKED_GFX + offset: 0x1581 +d_course_bowsers_castle_packed_dl_3C70: + symbol: d_course_bowsers_castle_packed_dl_3C70 + type: MK64:PACKED_GFX + offset: 0x16F6 +d_course_bowsers_castle_packed_dl_3C80: + symbol: d_course_bowsers_castle_packed_dl_3C80 + type: MK64:PACKED_GFX + offset: 0x16FA +d_course_bowsers_castle_packed_dl_4198: + symbol: d_course_bowsers_castle_packed_dl_4198 + type: MK64:PACKED_GFX + offset: 0x1988 +d_course_bowsers_castle_packed_dl_41A8: + symbol: d_course_bowsers_castle_packed_dl_41A8 + type: MK64:PACKED_GFX + offset: 0x198C +d_course_bowsers_castle_packed_dl_4598: + symbol: d_course_bowsers_castle_packed_dl_4598 + type: MK64:PACKED_GFX + offset: 0x1B7E +d_course_bowsers_castle_packed_dl_48A8: + symbol: d_course_bowsers_castle_packed_dl_48A8 + type: MK64:PACKED_GFX + offset: 0x1D11 +d_course_bowsers_castle_packed_dl_4BB0: + symbol: d_course_bowsers_castle_packed_dl_4BB0 + type: MK64:PACKED_GFX + offset: 0x1EA3 +d_course_bowsers_castle_packed_dl_4EB8: + symbol: d_course_bowsers_castle_packed_dl_4EB8 + type: MK64:PACKED_GFX + offset: 0x2035 +d_course_bowsers_castle_packed_dl_51B8: + symbol: d_course_bowsers_castle_packed_dl_51B8 + type: MK64:PACKED_GFX + offset: 0x21C6 +d_course_bowsers_castle_packed_dl_51E8: + symbol: d_course_bowsers_castle_packed_dl_51E8 + type: MK64:PACKED_GFX + offset: 0x21D6 +d_course_bowsers_castle_packed_dl_5270: + symbol: d_course_bowsers_castle_packed_dl_5270 + type: MK64:PACKED_GFX + offset: 0x2200 +d_course_bowsers_castle_packed_dl_5300: + symbol: d_course_bowsers_castle_packed_dl_5300 + type: MK64:PACKED_GFX + offset: 0x222F +d_course_bowsers_castle_packed_dl_5378: + symbol: d_course_bowsers_castle_packed_dl_5378 + type: MK64:PACKED_GFX + offset: 0x224F +d_course_bowsers_castle_packed_dl_53E0: + symbol: d_course_bowsers_castle_packed_dl_53E0 + type: MK64:PACKED_GFX + offset: 0x2265 +d_course_bowsers_castle_packed_dl_5448: + symbol: d_course_bowsers_castle_packed_dl_5448 + type: MK64:PACKED_GFX + offset: 0x227B +d_course_bowsers_castle_packed_dl_54E8: + symbol: d_course_bowsers_castle_packed_dl_54E8 + type: MK64:PACKED_GFX + offset: 0x229D +d_course_bowsers_castle_packed_dl_5560: + symbol: d_course_bowsers_castle_packed_dl_5560 + type: MK64:PACKED_GFX + offset: 0x22BD +d_course_bowsers_castle_packed_dl_55E8: + symbol: d_course_bowsers_castle_packed_dl_55E8 + type: MK64:PACKED_GFX + offset: 0x22E5 +d_course_bowsers_castle_packed_dl_5678: + symbol: d_course_bowsers_castle_packed_dl_5678 + type: MK64:PACKED_GFX + offset: 0x2312 +d_course_bowsers_castle_packed_dl_56F0: + symbol: d_course_bowsers_castle_packed_dl_56F0 + type: MK64:PACKED_GFX + offset: 0x2332 +d_course_bowsers_castle_packed_dl_5778: + symbol: d_course_bowsers_castle_packed_dl_5778 + type: MK64:PACKED_GFX + offset: 0x235A +d_course_bowsers_castle_packed_dl_57E8: + symbol: d_course_bowsers_castle_packed_dl_57E8 + type: MK64:PACKED_GFX + offset: 0x2375 +d_course_bowsers_castle_packed_dl_5850: + symbol: d_course_bowsers_castle_packed_dl_5850 + type: MK64:PACKED_GFX + offset: 0x239A +d_course_bowsers_castle_packed_dl_5A78: + symbol: d_course_bowsers_castle_packed_dl_5A78 + type: MK64:PACKED_GFX + offset: 0x2462 +d_course_bowsers_castle_packed_dl_5BB0: + symbol: d_course_bowsers_castle_packed_dl_5BB0 + type: MK64:PACKED_GFX + offset: 0x24B5 +d_course_bowsers_castle_packed_dl_5BC8: + symbol: d_course_bowsers_castle_packed_dl_5BC8 + type: MK64:PACKED_GFX + offset: 0x24BC +d_course_bowsers_castle_packed_dl_5D88: + symbol: d_course_bowsers_castle_packed_dl_5D88 + type: MK64:PACKED_GFX + offset: 0x254B +d_course_bowsers_castle_packed_dl_5D98: + symbol: d_course_bowsers_castle_packed_dl_5D98 + type: MK64:PACKED_GFX + offset: 0x254F +d_course_bowsers_castle_packed_dl_6200: + symbol: d_course_bowsers_castle_packed_dl_6200 + type: MK64:PACKED_GFX + offset: 0x2750 +d_course_bowsers_castle_packed_dl_63B8: + symbol: d_course_bowsers_castle_packed_dl_63B8 + type: MK64:PACKED_GFX + offset: 0x27ED +d_course_bowsers_castle_packed_dl_63D0: + symbol: d_course_bowsers_castle_packed_dl_63D0 + type: MK64:PACKED_GFX + offset: 0x27F4 +d_course_bowsers_castle_packed_dl_64A8: + symbol: d_course_bowsers_castle_packed_dl_64A8 + type: MK64:PACKED_GFX + offset: 0x2835 +d_course_bowsers_castle_packed_dl_6580: + symbol: d_course_bowsers_castle_packed_dl_6580 + type: MK64:PACKED_GFX + offset: 0x2876 +d_course_bowsers_castle_packed_dl_6658: + symbol: d_course_bowsers_castle_packed_dl_6658 + type: MK64:PACKED_GFX + offset: 0x28B7 +d_course_bowsers_castle_packed_dl_6678: + symbol: d_course_bowsers_castle_packed_dl_6678 + type: MK64:PACKED_GFX + offset: 0x28C1 +d_course_bowsers_castle_packed_dl_66E8: + symbol: d_course_bowsers_castle_packed_dl_66E8 + type: MK64:PACKED_GFX + offset: 0x28DA +d_course_bowsers_castle_packed_dl_6760: + symbol: d_course_bowsers_castle_packed_dl_6760 + type: MK64:PACKED_GFX + offset: 0x28FA +d_course_bowsers_castle_packed_dl_6778: + symbol: d_course_bowsers_castle_packed_dl_6778 + type: MK64:PACKED_GFX + offset: 0x2901 +d_course_bowsers_castle_packed_dl_6A80: + symbol: d_course_bowsers_castle_packed_dl_6A80 + type: MK64:PACKED_GFX + offset: 0x2ACE +d_course_bowsers_castle_packed_dl_6A90: + symbol: d_course_bowsers_castle_packed_dl_6A90 + type: MK64:PACKED_GFX + offset: 0x2AD2 +d_course_bowsers_castle_packed_dl_6BC0: + symbol: d_course_bowsers_castle_packed_dl_6BC0 + type: MK64:PACKED_GFX + offset: 0x2B35 +d_course_bowsers_castle_packed_dl_6CA0: + symbol: d_course_bowsers_castle_packed_dl_6CA0 + type: MK64:PACKED_GFX + offset: 0x2B7F +d_course_bowsers_castle_packed_dl_6CB8: + symbol: d_course_bowsers_castle_packed_dl_6CB8 + type: MK64:PACKED_GFX + offset: 0x2B86 +d_course_bowsers_castle_packed_dl_6D78: + symbol: d_course_bowsers_castle_packed_dl_6D78 + type: MK64:PACKED_GFX + offset: 0x2BD1 +d_course_bowsers_castle_packed_dl_6E48: + symbol: d_course_bowsers_castle_packed_dl_6E48 + type: MK64:PACKED_GFX + offset: 0x2C26 +d_course_bowsers_castle_packed_dl_6F08: + symbol: d_course_bowsers_castle_packed_dl_6F08 + type: MK64:PACKED_GFX + offset: 0x2C71 +d_course_bowsers_castle_packed_dl_6FA0: + symbol: d_course_bowsers_castle_packed_dl_6FA0 + type: MK64:PACKED_GFX + offset: 0x2CA5 +d_course_bowsers_castle_packed_dl_7038: + symbol: d_course_bowsers_castle_packed_dl_7038 + type: MK64:PACKED_GFX + offset: 0x2CD9 +d_course_bowsers_castle_packed_dl_70D0: + symbol: d_course_bowsers_castle_packed_dl_70D0 + type: MK64:PACKED_GFX + offset: 0x2D0D +d_course_bowsers_castle_packed_dl_7180: + symbol: d_course_bowsers_castle_packed_dl_7180 + type: MK64:PACKED_GFX + offset: 0x2D4E +d_course_bowsers_castle_packed_dl_7288: + symbol: d_course_bowsers_castle_packed_dl_7288 + type: MK64:PACKED_GFX + offset: 0x2DAF +d_course_bowsers_castle_packed_dl_7340: + symbol: d_course_bowsers_castle_packed_dl_7340 + type: MK64:PACKED_GFX + offset: 0x2DF7 +d_course_bowsers_castle_packed_dl_7418: + symbol: d_course_bowsers_castle_packed_dl_7418 + type: MK64:PACKED_GFX + offset: 0x2E51 +d_course_bowsers_castle_packed_dl_7520: + symbol: d_course_bowsers_castle_packed_dl_7520 + type: MK64:PACKED_GFX + offset: 0x2EC9 +d_course_bowsers_castle_packed_dl_75E8: + symbol: d_course_bowsers_castle_packed_dl_75E8 + type: MK64:PACKED_GFX + offset: 0x2F15 +d_course_bowsers_castle_packed_dl_7650: + symbol: d_course_bowsers_castle_packed_dl_7650 + type: MK64:PACKED_GFX + offset: 0x2F3A +d_course_bowsers_castle_packed_dl_76C0: + symbol: d_course_bowsers_castle_packed_dl_76C0 + type: MK64:PACKED_GFX + offset: 0x2F55 +d_course_bowsers_castle_packed_dl_7730: + symbol: d_course_bowsers_castle_packed_dl_7730 + type: MK64:PACKED_GFX + offset: 0x2F70 +d_course_bowsers_castle_packed_dl_77A0: + symbol: d_course_bowsers_castle_packed_dl_77A0 + type: MK64:PACKED_GFX + offset: 0x2F8B +d_course_bowsers_castle_packed_dl_7820: + symbol: d_course_bowsers_castle_packed_dl_7820 + type: MK64:PACKED_GFX + offset: 0x2FB0 +d_course_bowsers_castle_packed_dl_7898: + symbol: d_course_bowsers_castle_packed_dl_7898 + type: MK64:PACKED_GFX + offset: 0x2FD0 +d_course_bowsers_castle_packed_dl_7908: + symbol: d_course_bowsers_castle_packed_dl_7908 + type: MK64:PACKED_GFX + offset: 0x2FEB +d_course_bowsers_castle_packed_dl_7998: + symbol: d_course_bowsers_castle_packed_dl_7998 + type: MK64:PACKED_GFX + offset: 0x301A +d_course_bowsers_castle_packed_dl_7A10: + symbol: d_course_bowsers_castle_packed_dl_7A10 + type: MK64:PACKED_GFX + offset: 0x303A +d_course_bowsers_castle_packed_dl_7A78: + symbol: d_course_bowsers_castle_packed_dl_7A78 + type: MK64:PACKED_GFX + offset: 0x3050 +d_course_bowsers_castle_packed_dl_7AD8: + symbol: d_course_bowsers_castle_packed_dl_7AD8 + type: MK64:PACKED_GFX + offset: 0x3061 +d_course_bowsers_castle_packed_dl_7B50: + symbol: d_course_bowsers_castle_packed_dl_7B50 + type: MK64:PACKED_GFX + offset: 0x3081 +d_course_bowsers_castle_packed_dl_7BB8: + symbol: d_course_bowsers_castle_packed_dl_7BB8 + type: MK64:PACKED_GFX + offset: 0x3097 +d_course_bowsers_castle_packed_dl_7C30: + symbol: d_course_bowsers_castle_packed_dl_7C30 + type: MK64:PACKED_GFX + offset: 0x30B7 +d_course_bowsers_castle_packed_dl_7CC0: + symbol: d_course_bowsers_castle_packed_dl_7CC0 + type: MK64:PACKED_GFX + offset: 0x30E6 +d_course_bowsers_castle_packed_dl_7D48: + symbol: d_course_bowsers_castle_packed_dl_7D48 + type: MK64:PACKED_GFX + offset: 0x3110 +d_course_bowsers_castle_packed_dl_7DB8: + symbol: d_course_bowsers_castle_packed_dl_7DB8 + type: MK64:PACKED_GFX + offset: 0x312B +d_course_bowsers_castle_packed_dl_7E28: + symbol: d_course_bowsers_castle_packed_dl_7E28 + type: MK64:PACKED_GFX + offset: 0x3146 +d_course_bowsers_castle_packed_dl_7EA0: + symbol: d_course_bowsers_castle_packed_dl_7EA0 + type: MK64:PACKED_GFX + offset: 0x3166 +d_course_bowsers_castle_packed_dl_7F20: + symbol: d_course_bowsers_castle_packed_dl_7F20 + type: MK64:PACKED_GFX + offset: 0x318B +d_course_bowsers_castle_packed_dl_7F98: + symbol: d_course_bowsers_castle_packed_dl_7F98 + type: MK64:PACKED_GFX + offset: 0x31AB +d_course_bowsers_castle_packed_dl_8008: + symbol: d_course_bowsers_castle_packed_dl_8008 + type: MK64:PACKED_GFX + offset: 0x31C6 +d_course_bowsers_castle_packed_dl_8078: + symbol: d_course_bowsers_castle_packed_dl_8078 + type: MK64:PACKED_GFX + offset: 0x31E1 +d_course_bowsers_castle_packed_dl_80E0: + symbol: d_course_bowsers_castle_packed_dl_80E0 + type: MK64:PACKED_GFX + offset: 0x31F7 +d_course_bowsers_castle_packed_dl_8148: + symbol: d_course_bowsers_castle_packed_dl_8148 + type: MK64:PACKED_GFX + offset: 0x320D +d_course_bowsers_castle_packed_dl_81B0: + symbol: d_course_bowsers_castle_packed_dl_81B0 + type: MK64:PACKED_GFX + offset: 0x3223 +d_course_bowsers_castle_packed_dl_8218: + symbol: d_course_bowsers_castle_packed_dl_8218 + type: MK64:PACKED_GFX + offset: 0x3239 +d_course_bowsers_castle_packed_dl_8278: + symbol: d_course_bowsers_castle_packed_dl_8278 + type: MK64:PACKED_GFX + offset: 0x324A +d_course_bowsers_castle_packed_dl_82D8: + symbol: d_course_bowsers_castle_packed_dl_82D8 + type: MK64:PACKED_GFX + offset: 0x325B +d_course_bowsers_castle_packed_dl_8348: + symbol: d_course_bowsers_castle_packed_dl_8348 + type: MK64:PACKED_GFX + offset: 0x3276 +d_course_bowsers_castle_packed_dl_83B0: + symbol: d_course_bowsers_castle_packed_dl_83B0 + type: MK64:PACKED_GFX + offset: 0x328C +d_course_bowsers_castle_packed_dl_84A8: + symbol: d_course_bowsers_castle_packed_dl_84A8 + type: MK64:PACKED_GFX + offset: 0x32E7 +d_course_bowsers_castle_packed_dl_87E8: + symbol: d_course_bowsers_castle_packed_dl_87E8 + type: MK64:PACKED_GFX + offset: 0x34AE +d_course_bowsers_castle_packed_dl_8BE0: + symbol: d_course_bowsers_castle_packed_dl_8BE0 + type: MK64:PACKED_GFX + offset: 0x36DE +d_course_bowsers_castle_packed_dl_8C78: + symbol: d_course_bowsers_castle_packed_dl_8C78 + type: MK64:PACKED_GFX + offset: 0x3712 +d_course_bowsers_castle_packed_dl_8D10: + symbol: d_course_bowsers_castle_packed_dl_8D10 + type: MK64:PACKED_GFX + offset: 0x3746 +d_course_bowsers_castle_packed_dl_8DA8: + symbol: d_course_bowsers_castle_packed_dl_8DA8 + type: MK64:PACKED_GFX + offset: 0x377A +d_course_bowsers_castle_packed_dl_8E40: + symbol: d_course_bowsers_castle_packed_dl_8E40 + type: MK64:PACKED_GFX + offset: 0x37AE +d_course_bowsers_castle_packed_dl_8E78: + symbol: d_course_bowsers_castle_packed_dl_8E78 + type: MK64:PACKED_GFX + offset: 0x37C1 +d_course_bowsers_castle_packed_dl_8FA0: + symbol: d_course_bowsers_castle_packed_dl_8FA0 + type: MK64:PACKED_GFX + offset: 0x3834 +d_course_bowsers_castle_packed_dl_9278: + symbol: d_course_bowsers_castle_packed_dl_9278 + type: MK64:PACKED_GFX + offset: 0x39C0 +d_course_bowsers_castle_packed_dl_9290: + symbol: d_course_bowsers_castle_packed_dl_9290 + type: MK64:PACKED_GFX + offset: 0x39C7 +d_course_bowsers_castle_packed_dl_9328: + symbol: d_course_bowsers_castle_packed_dl_9328 + type: MK64:PACKED_GFX + offset: 0x39FB +d_course_bowsers_castle_packed_dl_93A0: + symbol: d_course_bowsers_castle_packed_dl_93A0 + type: MK64:PACKED_GFX + offset: 0x3A1B +d_course_bowsers_castle_packed_dl_9438: + symbol: d_course_bowsers_castle_packed_dl_9438 + type: MK64:PACKED_GFX + offset: 0x3A4F +d_course_bowsers_castle_packed_dl_94B0: + symbol: d_course_bowsers_castle_packed_dl_94B0 + type: MK64:PACKED_GFX + offset: 0x3A6F +d_course_bowsers_castle_packed_dl_94D8: + symbol: d_course_bowsers_castle_packed_dl_94D8 + type: MK64:PACKED_GFX + offset: 0x3A7C +d_course_bowsers_castle_packed_dl_9820: + symbol: d_course_bowsers_castle_packed_dl_9820 + type: MK64:PACKED_GFX + offset: 0x3C1F +d_course_bowsers_castle_packed_dl_9830: + symbol: d_course_bowsers_castle_packed_dl_9830 + type: MK64:PACKED_GFX + offset: 0x3C23 +d_course_bowsers_castle_packed_dl_9910: + symbol: d_course_bowsers_castle_packed_dl_9910 + type: MK64:PACKED_GFX + offset: 0x3C75 diff --git a/yamls/us/models/tracks/bowsers_castle/bowsers_castle_vertices.yml b/yamls/us/models/tracks/bowsers_castle/bowsers_castle_vertices.yml new file mode 100644 index 000000000..e8cb6400c --- /dev/null +++ b/yamls/us/models/tracks/bowsers_castle/bowsers_castle_vertices.yml @@ -0,0 +1,2625 @@ +:config: + segments: + - [0x0F, 0x8A7640] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_bowsers_castle_vertex_0x04000000: + symbol: d_course_bowsers_castle_vertex_0x04000000 + type: mk64:course_vtx + count: 4 + offset: 0x0 + +d_course_bowsers_castle_vertex_0x04000040: + symbol: d_course_bowsers_castle_vertex_0x04000040 + type: mk64:course_vtx + count: 4 + offset: 0x38 + +d_course_bowsers_castle_vertex_0x04000080: + symbol: d_course_bowsers_castle_vertex_0x04000080 + type: mk64:course_vtx + count: 4 + offset: 0x70 + +d_course_bowsers_castle_vertex_0x040000C0: + symbol: d_course_bowsers_castle_vertex_0x040000C0 + type: mk64:course_vtx + count: 8 + offset: 0xa8 + +d_course_bowsers_castle_vertex_0x04000140: + symbol: d_course_bowsers_castle_vertex_0x04000140 + type: mk64:course_vtx + count: 4 + offset: 0x118 + +d_course_bowsers_castle_vertex_0x04000180: + symbol: d_course_bowsers_castle_vertex_0x04000180 + type: mk64:course_vtx + count: 4 + offset: 0x150 + +d_course_bowsers_castle_vertex_0x040001C0: + symbol: d_course_bowsers_castle_vertex_0x040001C0 + type: mk64:course_vtx + count: 50 + offset: 0x188 + +d_course_bowsers_castle_vertex_0x040003C0: + symbol: d_course_bowsers_castle_vertex_0x040003C0 + type: mk64:course_vtx + count: 6 + offset: 0x348 + +d_course_bowsers_castle_vertex_0x04000420: + symbol: d_course_bowsers_castle_vertex_0x04000420 + type: mk64:course_vtx + count: 6 + offset: 0x39c + +d_course_bowsers_castle_vertex_0x04000480: + symbol: d_course_bowsers_castle_vertex_0x04000480 + type: mk64:course_vtx + count: 50 + offset: 0x3f0 + +d_course_bowsers_castle_vertex_0x04000680: + symbol: d_course_bowsers_castle_vertex_0x04000680 + type: mk64:course_vtx + count: 48 + offset: 0x5b0 + +d_course_bowsers_castle_vertex_0x04000860: + symbol: d_course_bowsers_castle_vertex_0x04000860 + type: mk64:course_vtx + count: 18 + offset: 0x754 + +d_course_bowsers_castle_vertex_0x04000920: + symbol: d_course_bowsers_castle_vertex_0x04000920 + type: mk64:course_vtx + count: 48 + offset: 0x7fc + +d_course_bowsers_castle_vertex_0x04000B00: + symbol: d_course_bowsers_castle_vertex_0x04000B00 + type: mk64:course_vtx + count: 50 + offset: 0x9a0 + +d_course_bowsers_castle_vertex_0x04000D00: + symbol: d_course_bowsers_castle_vertex_0x04000D00 + type: mk64:course_vtx + count: 50 + offset: 0xb60 + +d_course_bowsers_castle_vertex_0x04000F00: + symbol: d_course_bowsers_castle_vertex_0x04000F00 + type: mk64:course_vtx + count: 50 + offset: 0xd20 + +d_course_bowsers_castle_vertex_0x04001100: + symbol: d_course_bowsers_castle_vertex_0x04001100 + type: mk64:course_vtx + count: 48 + offset: 0xee0 + +d_course_bowsers_castle_vertex_0x040012E0: + symbol: d_course_bowsers_castle_vertex_0x040012E0 + type: mk64:course_vtx + count: 48 + offset: 0x1084 + +d_course_bowsers_castle_vertex_0x040014C0: + symbol: d_course_bowsers_castle_vertex_0x040014C0 + type: mk64:course_vtx + count: 35 + offset: 0x1228 + +d_course_bowsers_castle_vertex_0x04001630: + symbol: d_course_bowsers_castle_vertex_0x04001630 + type: mk64:course_vtx + count: 49 + offset: 0x136a + +d_course_bowsers_castle_vertex_0x04001820: + symbol: d_course_bowsers_castle_vertex_0x04001820 + type: mk64:course_vtx + count: 48 + offset: 0x151c + +d_course_bowsers_castle_vertex_0x04001A00: + symbol: d_course_bowsers_castle_vertex_0x04001A00 + type: mk64:course_vtx + count: 48 + offset: 0x16c0 + +d_course_bowsers_castle_vertex_0x04001BE0: + symbol: d_course_bowsers_castle_vertex_0x04001BE0 + type: mk64:course_vtx + count: 50 + offset: 0x1864 + +d_course_bowsers_castle_vertex_0x04001DE0: + symbol: d_course_bowsers_castle_vertex_0x04001DE0 + type: mk64:course_vtx + count: 22 + offset: 0x1a24 + +d_course_bowsers_castle_vertex_0x04001EE0: + symbol: d_course_bowsers_castle_vertex_0x04001EE0 + type: mk64:course_vtx + count: 35 + offset: 0x1b04 + +d_course_bowsers_castle_vertex_0x04002050: + symbol: d_course_bowsers_castle_vertex_0x04002050 + type: mk64:course_vtx + count: 22 + offset: 0x1c46 + +d_course_bowsers_castle_vertex_0x04002150: + symbol: d_course_bowsers_castle_vertex_0x04002150 + type: mk64:course_vtx + count: 22 + offset: 0x1d26 + +d_course_bowsers_castle_vertex_0x04002250: + symbol: d_course_bowsers_castle_vertex_0x04002250 + type: mk64:course_vtx + count: 16 + offset: 0x1e06 + +d_course_bowsers_castle_vertex_0x040022F0: + symbol: d_course_bowsers_castle_vertex_0x040022F0 + type: mk64:course_vtx + count: 50 + offset: 0x1e92 + +d_course_bowsers_castle_vertex_0x040024F0: + symbol: d_course_bowsers_castle_vertex_0x040024F0 + type: mk64:course_vtx + count: 36 + offset: 0x2052 + +d_course_bowsers_castle_vertex_0x04002670: + symbol: d_course_bowsers_castle_vertex_0x04002670 + type: mk64:course_vtx + count: 21 + offset: 0x21a2 + +d_course_bowsers_castle_vertex_0x04002760: + symbol: d_course_bowsers_castle_vertex_0x04002760 + type: mk64:course_vtx + count: 50 + offset: 0x2274 + +d_course_bowsers_castle_vertex_0x04002960: + symbol: d_course_bowsers_castle_vertex_0x04002960 + type: mk64:course_vtx + count: 49 + offset: 0x2434 + +d_course_bowsers_castle_vertex_0x04002B50: + symbol: d_course_bowsers_castle_vertex_0x04002B50 + type: mk64:course_vtx + count: 37 + offset: 0x25e6 + +d_course_bowsers_castle_vertex_0x04002CE0: + symbol: d_course_bowsers_castle_vertex_0x04002CE0 + type: mk64:course_vtx + count: 48 + offset: 0x2744 + +d_course_bowsers_castle_vertex_0x04002EC0: + symbol: d_course_bowsers_castle_vertex_0x04002EC0 + type: mk64:course_vtx + count: 32 + offset: 0x28e8 + +d_course_bowsers_castle_vertex_0x04003000: + symbol: d_course_bowsers_castle_vertex_0x04003000 + type: mk64:course_vtx + count: 50 + offset: 0x2a00 + +d_course_bowsers_castle_vertex_0x04003200: + symbol: d_course_bowsers_castle_vertex_0x04003200 + type: mk64:course_vtx + count: 48 + offset: 0x2bc0 + +d_course_bowsers_castle_vertex_0x040033E0: + symbol: d_course_bowsers_castle_vertex_0x040033E0 + type: mk64:course_vtx + count: 49 + offset: 0x2d64 + +d_course_bowsers_castle_vertex_0x040035D0: + symbol: d_course_bowsers_castle_vertex_0x040035D0 + type: mk64:course_vtx + count: 49 + offset: 0x2f16 + +d_course_bowsers_castle_vertex_0x040037C0: + symbol: d_course_bowsers_castle_vertex_0x040037C0 + type: mk64:course_vtx + count: 50 + offset: 0x30c8 + +d_course_bowsers_castle_vertex_0x040039C0: + symbol: d_course_bowsers_castle_vertex_0x040039C0 + type: mk64:course_vtx + count: 50 + offset: 0x3288 + +d_course_bowsers_castle_vertex_0x04003BC0: + symbol: d_course_bowsers_castle_vertex_0x04003BC0 + type: mk64:course_vtx + count: 50 + offset: 0x3448 + +d_course_bowsers_castle_vertex_0x04003DC0: + symbol: d_course_bowsers_castle_vertex_0x04003DC0 + type: mk64:course_vtx + count: 50 + offset: 0x3608 + +d_course_bowsers_castle_vertex_0x04003FC0: + symbol: d_course_bowsers_castle_vertex_0x04003FC0 + type: mk64:course_vtx + count: 50 + offset: 0x37c8 + +d_course_bowsers_castle_vertex_0x040041C0: + symbol: d_course_bowsers_castle_vertex_0x040041C0 + type: mk64:course_vtx + count: 50 + offset: 0x3988 + +d_course_bowsers_castle_vertex_0x040043C0: + symbol: d_course_bowsers_castle_vertex_0x040043C0 + type: mk64:course_vtx + count: 5 + offset: 0x3b48 + +d_course_bowsers_castle_vertex_0x04004410: + symbol: d_course_bowsers_castle_vertex_0x04004410 + type: mk64:course_vtx + count: 49 + offset: 0x3b8e + +d_course_bowsers_castle_vertex_0x04004600: + symbol: d_course_bowsers_castle_vertex_0x04004600 + type: mk64:course_vtx + count: 50 + offset: 0x3d40 + +d_course_bowsers_castle_vertex_0x04004800: + symbol: d_course_bowsers_castle_vertex_0x04004800 + type: mk64:course_vtx + count: 49 + offset: 0x3f00 + +d_course_bowsers_castle_vertex_0x040049F0: + symbol: d_course_bowsers_castle_vertex_0x040049F0 + type: mk64:course_vtx + count: 4 + offset: 0x40b2 + +d_course_bowsers_castle_vertex_0x04004A30: + symbol: d_course_bowsers_castle_vertex_0x04004A30 + type: mk64:course_vtx + count: 5 + offset: 0x40ea + +d_course_bowsers_castle_vertex_0x04004A80: + symbol: d_course_bowsers_castle_vertex_0x04004A80 + type: mk64:course_vtx + count: 4 + offset: 0x4130 + +d_course_bowsers_castle_vertex_0x04004AC0: + symbol: d_course_bowsers_castle_vertex_0x04004AC0 + type: mk64:course_vtx + count: 5 + offset: 0x4168 + +d_course_bowsers_castle_vertex_0x04004B10: + symbol: d_course_bowsers_castle_vertex_0x04004B10 + type: mk64:course_vtx + count: 5 + offset: 0x41ae + +d_course_bowsers_castle_vertex_0x04004B60: + symbol: d_course_bowsers_castle_vertex_0x04004B60 + type: mk64:course_vtx + count: 4 + offset: 0x41f4 + +d_course_bowsers_castle_vertex_0x04004BA0: + symbol: d_course_bowsers_castle_vertex_0x04004BA0 + type: mk64:course_vtx + count: 5 + offset: 0x422c + +d_course_bowsers_castle_vertex_0x04004BF0: + symbol: d_course_bowsers_castle_vertex_0x04004BF0 + type: mk64:course_vtx + count: 5 + offset: 0x4272 + +d_course_bowsers_castle_vertex_0x04004C40: + symbol: d_course_bowsers_castle_vertex_0x04004C40 + type: mk64:course_vtx + count: 4 + offset: 0x42b8 + +d_course_bowsers_castle_vertex_0x04004C80: + symbol: d_course_bowsers_castle_vertex_0x04004C80 + type: mk64:course_vtx + count: 5 + offset: 0x42f0 + +d_course_bowsers_castle_vertex_0x04004CD0: + symbol: d_course_bowsers_castle_vertex_0x04004CD0 + type: mk64:course_vtx + count: 5 + offset: 0x4336 + +d_course_bowsers_castle_vertex_0x04004D20: + symbol: d_course_bowsers_castle_vertex_0x04004D20 + type: mk64:course_vtx + count: 4 + offset: 0x437c + +d_course_bowsers_castle_vertex_0x04004D60: + symbol: d_course_bowsers_castle_vertex_0x04004D60 + type: mk64:course_vtx + count: 5 + offset: 0x43b4 + +d_course_bowsers_castle_vertex_0x04004DB0: + symbol: d_course_bowsers_castle_vertex_0x04004DB0 + type: mk64:course_vtx + count: 5 + offset: 0x43fa + +d_course_bowsers_castle_vertex_0x04004E00: + symbol: d_course_bowsers_castle_vertex_0x04004E00 + type: mk64:course_vtx + count: 4 + offset: 0x4440 + +d_course_bowsers_castle_vertex_0x04004E40: + symbol: d_course_bowsers_castle_vertex_0x04004E40 + type: mk64:course_vtx + count: 5 + offset: 0x4478 + +d_course_bowsers_castle_vertex_0x04004E90: + symbol: d_course_bowsers_castle_vertex_0x04004E90 + type: mk64:course_vtx + count: 5 + offset: 0x44be + +d_course_bowsers_castle_vertex_0x04004EE0: + symbol: d_course_bowsers_castle_vertex_0x04004EE0 + type: mk64:course_vtx + count: 4 + offset: 0x4504 + +d_course_bowsers_castle_vertex_0x04004F20: + symbol: d_course_bowsers_castle_vertex_0x04004F20 + type: mk64:course_vtx + count: 5 + offset: 0x453c + +d_course_bowsers_castle_vertex_0x04004F70: + symbol: d_course_bowsers_castle_vertex_0x04004F70 + type: mk64:course_vtx + count: 5 + offset: 0x4582 + +d_course_bowsers_castle_vertex_0x04004FC0: + symbol: d_course_bowsers_castle_vertex_0x04004FC0 + type: mk64:course_vtx + count: 4 + offset: 0x45c8 + +d_course_bowsers_castle_vertex_0x04005000: + symbol: d_course_bowsers_castle_vertex_0x04005000 + type: mk64:course_vtx + count: 5 + offset: 0x4600 + +d_course_bowsers_castle_vertex_0x04005050: + symbol: d_course_bowsers_castle_vertex_0x04005050 + type: mk64:course_vtx + count: 5 + offset: 0x4646 + +d_course_bowsers_castle_vertex_0x040050A0: + symbol: d_course_bowsers_castle_vertex_0x040050A0 + type: mk64:course_vtx + count: 4 + offset: 0x468c + +d_course_bowsers_castle_vertex_0x040050E0: + symbol: d_course_bowsers_castle_vertex_0x040050E0 + type: mk64:course_vtx + count: 5 + offset: 0x46c4 + +d_course_bowsers_castle_vertex_0x04005130: + symbol: d_course_bowsers_castle_vertex_0x04005130 + type: mk64:course_vtx + count: 5 + offset: 0x470a + +d_course_bowsers_castle_vertex_0x04005180: + symbol: d_course_bowsers_castle_vertex_0x04005180 + type: mk64:course_vtx + count: 4 + offset: 0x4750 + +d_course_bowsers_castle_vertex_0x040051C0: + symbol: d_course_bowsers_castle_vertex_0x040051C0 + type: mk64:course_vtx + count: 5 + offset: 0x4788 + +d_course_bowsers_castle_vertex_0x04005210: + symbol: d_course_bowsers_castle_vertex_0x04005210 + type: mk64:course_vtx + count: 5 + offset: 0x47ce + +d_course_bowsers_castle_vertex_0x04005260: + symbol: d_course_bowsers_castle_vertex_0x04005260 + type: mk64:course_vtx + count: 4 + offset: 0x4814 + +d_course_bowsers_castle_vertex_0x040052A0: + symbol: d_course_bowsers_castle_vertex_0x040052A0 + type: mk64:course_vtx + count: 5 + offset: 0x484c + +d_course_bowsers_castle_vertex_0x040052F0: + symbol: d_course_bowsers_castle_vertex_0x040052F0 + type: mk64:course_vtx + count: 5 + offset: 0x4892 + +d_course_bowsers_castle_vertex_0x04005340: + symbol: d_course_bowsers_castle_vertex_0x04005340 + type: mk64:course_vtx + count: 4 + offset: 0x48d8 + +d_course_bowsers_castle_vertex_0x04005380: + symbol: d_course_bowsers_castle_vertex_0x04005380 + type: mk64:course_vtx + count: 5 + offset: 0x4910 + +d_course_bowsers_castle_vertex_0x040053D0: + symbol: d_course_bowsers_castle_vertex_0x040053D0 + type: mk64:course_vtx + count: 5 + offset: 0x4956 + +d_course_bowsers_castle_vertex_0x04005420: + symbol: d_course_bowsers_castle_vertex_0x04005420 + type: mk64:course_vtx + count: 4 + offset: 0x499c + +d_course_bowsers_castle_vertex_0x04005460: + symbol: d_course_bowsers_castle_vertex_0x04005460 + type: mk64:course_vtx + count: 5 + offset: 0x49d4 + +d_course_bowsers_castle_vertex_0x040054B0: + symbol: d_course_bowsers_castle_vertex_0x040054B0 + type: mk64:course_vtx + count: 50 + offset: 0x4a1a + +d_course_bowsers_castle_vertex_0x040056B0: + symbol: d_course_bowsers_castle_vertex_0x040056B0 + type: mk64:course_vtx + count: 50 + offset: 0x4bda + +d_course_bowsers_castle_vertex_0x040058B0: + symbol: d_course_bowsers_castle_vertex_0x040058B0 + type: mk64:course_vtx + count: 18 + offset: 0x4d9a + +d_course_bowsers_castle_vertex_0x04005970: + symbol: d_course_bowsers_castle_vertex_0x04005970 + type: mk64:course_vtx + count: 50 + offset: 0x4e42 + +d_course_bowsers_castle_vertex_0x04005B70: + symbol: d_course_bowsers_castle_vertex_0x04005B70 + type: mk64:course_vtx + count: 48 + offset: 0x5002 + +d_course_bowsers_castle_vertex_0x04005D50: + symbol: d_course_bowsers_castle_vertex_0x04005D50 + type: mk64:course_vtx + count: 25 + offset: 0x51a6 + +d_course_bowsers_castle_vertex_0x04005E80: + symbol: d_course_bowsers_castle_vertex_0x04005E80 + type: mk64:course_vtx + count: 33 + offset: 0x52b0 + +d_course_bowsers_castle_vertex_0x04005FD0: + symbol: d_course_bowsers_castle_vertex_0x04005FD0 + type: mk64:course_vtx + count: 4 + offset: 0x53d6 + +d_course_bowsers_castle_vertex_0x04006010: + symbol: d_course_bowsers_castle_vertex_0x04006010 + type: mk64:course_vtx + count: 49 + offset: 0x540e + +d_course_bowsers_castle_vertex_0x04006200: + symbol: d_course_bowsers_castle_vertex_0x04006200 + type: mk64:course_vtx + count: 17 + offset: 0x55c0 + +d_course_bowsers_castle_vertex_0x040062B0: + symbol: d_course_bowsers_castle_vertex_0x040062B0 + type: mk64:course_vtx + count: 18 + offset: 0x565a + +d_course_bowsers_castle_vertex_0x04006370: + symbol: d_course_bowsers_castle_vertex_0x04006370 + type: mk64:course_vtx + count: 39 + offset: 0x5702 + +d_course_bowsers_castle_vertex_0x04006520: + symbol: d_course_bowsers_castle_vertex_0x04006520 + type: mk64:course_vtx + count: 17 + offset: 0x587c + +d_course_bowsers_castle_vertex_0x040065D0: + symbol: d_course_bowsers_castle_vertex_0x040065D0 + type: mk64:course_vtx + count: 8 + offset: 0x5916 + +d_course_bowsers_castle_vertex_0x04006650: + symbol: d_course_bowsers_castle_vertex_0x04006650 + type: mk64:course_vtx + count: 22 + offset: 0x5986 + +d_course_bowsers_castle_vertex_0x04006750: + symbol: d_course_bowsers_castle_vertex_0x04006750 + type: mk64:course_vtx + count: 6 + offset: 0x5a66 + +d_course_bowsers_castle_vertex_0x040067B0: + symbol: d_course_bowsers_castle_vertex_0x040067B0 + type: mk64:course_vtx + count: 35 + offset: 0x5aba + +d_course_bowsers_castle_vertex_0x04006920: + symbol: d_course_bowsers_castle_vertex_0x04006920 + type: mk64:course_vtx + count: 21 + offset: 0x5bfc + +d_course_bowsers_castle_vertex_0x04006A10: + symbol: d_course_bowsers_castle_vertex_0x04006A10 + type: mk64:course_vtx + count: 34 + offset: 0x5cce + +d_course_bowsers_castle_vertex_0x04006B70: + symbol: d_course_bowsers_castle_vertex_0x04006B70 + type: mk64:course_vtx + count: 41 + offset: 0x5e02 + +d_course_bowsers_castle_vertex_0x04006D40: + symbol: d_course_bowsers_castle_vertex_0x04006D40 + type: mk64:course_vtx + count: 24 + offset: 0x5f98 + +d_course_bowsers_castle_vertex_0x04006E60: + symbol: d_course_bowsers_castle_vertex_0x04006E60 + type: mk64:course_vtx + count: 18 + offset: 0x6094 + +d_course_bowsers_castle_vertex_0x04006F20: + symbol: d_course_bowsers_castle_vertex_0x04006F20 + type: mk64:course_vtx + count: 32 + offset: 0x613c + +d_course_bowsers_castle_vertex_0x04007060: + symbol: d_course_bowsers_castle_vertex_0x04007060 + type: mk64:course_vtx + count: 24 + offset: 0x6254 + +d_course_bowsers_castle_vertex_0x04007180: + symbol: d_course_bowsers_castle_vertex_0x04007180 + type: mk64:course_vtx + count: 3 + offset: 0x6350 + +d_course_bowsers_castle_vertex_0x040071B0: + symbol: d_course_bowsers_castle_vertex_0x040071B0 + type: mk64:course_vtx + count: 18 + offset: 0x637a + +d_course_bowsers_castle_vertex_0x04007270: + symbol: d_course_bowsers_castle_vertex_0x04007270 + type: mk64:course_vtx + count: 38 + offset: 0x6422 + +d_course_bowsers_castle_vertex_0x04007410: + symbol: d_course_bowsers_castle_vertex_0x04007410 + type: mk64:course_vtx + count: 8 + offset: 0x658e + +d_course_bowsers_castle_vertex_0x04007490: + symbol: d_course_bowsers_castle_vertex_0x04007490 + type: mk64:course_vtx + count: 50 + offset: 0x65fe + +d_course_bowsers_castle_vertex_0x04007690: + symbol: d_course_bowsers_castle_vertex_0x04007690 + type: mk64:course_vtx + count: 50 + offset: 0x67be + +d_course_bowsers_castle_vertex_0x04007890: + symbol: d_course_bowsers_castle_vertex_0x04007890 + type: mk64:course_vtx + count: 19 + offset: 0x697e + +d_course_bowsers_castle_vertex_0x04007960: + symbol: d_course_bowsers_castle_vertex_0x04007960 + type: mk64:course_vtx + count: 48 + offset: 0x6a34 + +d_course_bowsers_castle_vertex_0x04007B40: + symbol: d_course_bowsers_castle_vertex_0x04007B40 + type: mk64:course_vtx + count: 48 + offset: 0x6bd8 + +d_course_bowsers_castle_vertex_0x04007D20: + symbol: d_course_bowsers_castle_vertex_0x04007D20 + type: mk64:course_vtx + count: 48 + offset: 0x6d7c + +d_course_bowsers_castle_vertex_0x04007F00: + symbol: d_course_bowsers_castle_vertex_0x04007F00 + type: mk64:course_vtx + count: 48 + offset: 0x6f20 + +d_course_bowsers_castle_vertex_0x040080E0: + symbol: d_course_bowsers_castle_vertex_0x040080E0 + type: mk64:course_vtx + count: 48 + offset: 0x70c4 + +d_course_bowsers_castle_vertex_0x040082C0: + symbol: d_course_bowsers_castle_vertex_0x040082C0 + type: mk64:course_vtx + count: 48 + offset: 0x7268 + +d_course_bowsers_castle_vertex_0x040084A0: + symbol: d_course_bowsers_castle_vertex_0x040084A0 + type: mk64:course_vtx + count: 50 + offset: 0x740c + +d_course_bowsers_castle_vertex_0x040086A0: + symbol: d_course_bowsers_castle_vertex_0x040086A0 + type: mk64:course_vtx + count: 48 + offset: 0x75cc + +d_course_bowsers_castle_vertex_0x04008880: + symbol: d_course_bowsers_castle_vertex_0x04008880 + type: mk64:course_vtx + count: 48 + offset: 0x7770 + +d_course_bowsers_castle_vertex_0x04008A60: + symbol: d_course_bowsers_castle_vertex_0x04008A60 + type: mk64:course_vtx + count: 48 + offset: 0x7914 + +d_course_bowsers_castle_vertex_0x04008C40: + symbol: d_course_bowsers_castle_vertex_0x04008C40 + type: mk64:course_vtx + count: 48 + offset: 0x7ab8 + +d_course_bowsers_castle_vertex_0x04008E20: + symbol: d_course_bowsers_castle_vertex_0x04008E20 + type: mk64:course_vtx + count: 48 + offset: 0x7c5c + +d_course_bowsers_castle_vertex_0x04009000: + symbol: d_course_bowsers_castle_vertex_0x04009000 + type: mk64:course_vtx + count: 48 + offset: 0x7e00 + +d_course_bowsers_castle_vertex_0x040091E0: + symbol: d_course_bowsers_castle_vertex_0x040091E0 + type: mk64:course_vtx + count: 48 + offset: 0x7fa4 + +d_course_bowsers_castle_vertex_0x040093C0: + symbol: d_course_bowsers_castle_vertex_0x040093C0 + type: mk64:course_vtx + count: 48 + offset: 0x8148 + +d_course_bowsers_castle_vertex_0x040095A0: + symbol: d_course_bowsers_castle_vertex_0x040095A0 + type: mk64:course_vtx + count: 48 + offset: 0x82ec + +d_course_bowsers_castle_vertex_0x04009780: + symbol: d_course_bowsers_castle_vertex_0x04009780 + type: mk64:course_vtx + count: 48 + offset: 0x8490 + +d_course_bowsers_castle_vertex_0x04009960: + symbol: d_course_bowsers_castle_vertex_0x04009960 + type: mk64:course_vtx + count: 49 + offset: 0x8634 + +d_course_bowsers_castle_vertex_0x04009B50: + symbol: d_course_bowsers_castle_vertex_0x04009B50 + type: mk64:course_vtx + count: 48 + offset: 0x87e6 + +d_course_bowsers_castle_vertex_0x04009D30: + symbol: d_course_bowsers_castle_vertex_0x04009D30 + type: mk64:course_vtx + count: 48 + offset: 0x898a + +d_course_bowsers_castle_vertex_0x04009F10: + symbol: d_course_bowsers_castle_vertex_0x04009F10 + type: mk64:course_vtx + count: 48 + offset: 0x8b2e + +d_course_bowsers_castle_vertex_0x0400A0F0: + symbol: d_course_bowsers_castle_vertex_0x0400A0F0 + type: mk64:course_vtx + count: 48 + offset: 0x8cd2 + +d_course_bowsers_castle_vertex_0x0400A2D0: + symbol: d_course_bowsers_castle_vertex_0x0400A2D0 + type: mk64:course_vtx + count: 3 + offset: 0x8e76 + +d_course_bowsers_castle_vertex_0x0400A300: + symbol: d_course_bowsers_castle_vertex_0x0400A300 + type: mk64:course_vtx + count: 48 + offset: 0x8ea0 + +d_course_bowsers_castle_vertex_0x0400A4E0: + symbol: d_course_bowsers_castle_vertex_0x0400A4E0 + type: mk64:course_vtx + count: 33 + offset: 0x9044 + +d_course_bowsers_castle_vertex_0x0400A630: + symbol: d_course_bowsers_castle_vertex_0x0400A630 + type: mk64:course_vtx + count: 34 + offset: 0x916a + +d_course_bowsers_castle_vertex_0x0400A790: + symbol: d_course_bowsers_castle_vertex_0x0400A790 + type: mk64:course_vtx + count: 32 + offset: 0x929e + +d_course_bowsers_castle_vertex_0x0400A8D0: + symbol: d_course_bowsers_castle_vertex_0x0400A8D0 + type: mk64:course_vtx + count: 50 + offset: 0x93b6 + +d_course_bowsers_castle_vertex_0x0400AAD0: + symbol: d_course_bowsers_castle_vertex_0x0400AAD0 + type: mk64:course_vtx + count: 50 + offset: 0x9576 + +d_course_bowsers_castle_vertex_0x0400ACD0: + symbol: d_course_bowsers_castle_vertex_0x0400ACD0 + type: mk64:course_vtx + count: 48 + offset: 0x9736 + +d_course_bowsers_castle_vertex_0x0400AEB0: + symbol: d_course_bowsers_castle_vertex_0x0400AEB0 + type: mk64:course_vtx + count: 8 + offset: 0x98da + +d_course_bowsers_castle_vertex_0x0400AF30: + symbol: d_course_bowsers_castle_vertex_0x0400AF30 + type: mk64:course_vtx + count: 50 + offset: 0x994a + +d_course_bowsers_castle_vertex_0x0400B130: + symbol: d_course_bowsers_castle_vertex_0x0400B130 + type: mk64:course_vtx + count: 22 + offset: 0x9b0a + +d_course_bowsers_castle_vertex_0x0400B230: + symbol: d_course_bowsers_castle_vertex_0x0400B230 + type: mk64:course_vtx + count: 32 + offset: 0x9bea + +d_course_bowsers_castle_vertex_0x0400B370: + symbol: d_course_bowsers_castle_vertex_0x0400B370 + type: mk64:course_vtx + count: 50 + offset: 0x9d02 + +d_course_bowsers_castle_vertex_0x0400B570: + symbol: d_course_bowsers_castle_vertex_0x0400B570 + type: mk64:course_vtx + count: 50 + offset: 0x9ec2 + +d_course_bowsers_castle_vertex_0x0400B770: + symbol: d_course_bowsers_castle_vertex_0x0400B770 + type: mk64:course_vtx + count: 50 + offset: 0xa082 + +d_course_bowsers_castle_vertex_0x0400B970: + symbol: d_course_bowsers_castle_vertex_0x0400B970 + type: mk64:course_vtx + count: 38 + offset: 0xa242 + +d_course_bowsers_castle_vertex_0x0400BB10: + symbol: d_course_bowsers_castle_vertex_0x0400BB10 + type: mk64:course_vtx + count: 50 + offset: 0xa3ae + +d_course_bowsers_castle_vertex_0x0400BD10: + symbol: d_course_bowsers_castle_vertex_0x0400BD10 + type: mk64:course_vtx + count: 37 + offset: 0xa56e + +d_course_bowsers_castle_vertex_0x0400BEA0: + symbol: d_course_bowsers_castle_vertex_0x0400BEA0 + type: mk64:course_vtx + count: 50 + offset: 0xa6cc + +d_course_bowsers_castle_vertex_0x0400C0A0: + symbol: d_course_bowsers_castle_vertex_0x0400C0A0 + type: mk64:course_vtx + count: 50 + offset: 0xa88c + +d_course_bowsers_castle_vertex_0x0400C2A0: + symbol: d_course_bowsers_castle_vertex_0x0400C2A0 + type: mk64:course_vtx + count: 18 + offset: 0xaa4c + +d_course_bowsers_castle_vertex_0x0400C360: + symbol: d_course_bowsers_castle_vertex_0x0400C360 + type: mk64:course_vtx + count: 50 + offset: 0xaaf4 + +d_course_bowsers_castle_vertex_0x0400C560: + symbol: d_course_bowsers_castle_vertex_0x0400C560 + type: mk64:course_vtx + count: 49 + offset: 0xacb4 + +d_course_bowsers_castle_vertex_0x0400C750: + symbol: d_course_bowsers_castle_vertex_0x0400C750 + type: mk64:course_vtx + count: 49 + offset: 0xae66 + +d_course_bowsers_castle_vertex_0x0400C940: + symbol: d_course_bowsers_castle_vertex_0x0400C940 + type: mk64:course_vtx + count: 50 + offset: 0xb018 + +d_course_bowsers_castle_vertex_0x0400CB40: + symbol: d_course_bowsers_castle_vertex_0x0400CB40 + type: mk64:course_vtx + count: 17 + offset: 0xb1d8 + +d_course_bowsers_castle_vertex_0x0400CBF0: + symbol: d_course_bowsers_castle_vertex_0x0400CBF0 + type: mk64:course_vtx + count: 22 + offset: 0xb272 + +d_course_bowsers_castle_vertex_0x0400CCF0: + symbol: d_course_bowsers_castle_vertex_0x0400CCF0 + type: mk64:course_vtx + count: 18 + offset: 0xb352 + +d_course_bowsers_castle_vertex_0x0400CDB0: + symbol: d_course_bowsers_castle_vertex_0x0400CDB0 + type: mk64:course_vtx + count: 50 + offset: 0xb3fa + +d_course_bowsers_castle_vertex_0x0400CFB0: + symbol: d_course_bowsers_castle_vertex_0x0400CFB0 + type: mk64:course_vtx + count: 33 + offset: 0xb5ba + +d_course_bowsers_castle_vertex_0x0400D100: + symbol: d_course_bowsers_castle_vertex_0x0400D100 + type: mk64:course_vtx + count: 50 + offset: 0xb6e0 + +d_course_bowsers_castle_vertex_0x0400D300: + symbol: d_course_bowsers_castle_vertex_0x0400D300 + type: mk64:course_vtx + count: 50 + offset: 0xb8a0 + +d_course_bowsers_castle_vertex_0x0400D500: + symbol: d_course_bowsers_castle_vertex_0x0400D500 + type: mk64:course_vtx + count: 40 + offset: 0xba60 + +d_course_bowsers_castle_vertex_0x0400D6C0: + symbol: d_course_bowsers_castle_vertex_0x0400D6C0 + type: mk64:course_vtx + count: 48 + offset: 0xbbe8 + +d_course_bowsers_castle_vertex_0x0400D8A0: + symbol: d_course_bowsers_castle_vertex_0x0400D8A0 + type: mk64:course_vtx + count: 6 + offset: 0xbd8c + +d_course_bowsers_castle_vertex_0x0400D900: + symbol: d_course_bowsers_castle_vertex_0x0400D900 + type: mk64:course_vtx + count: 50 + offset: 0xbde0 + +d_course_bowsers_castle_vertex_0x0400DB00: + symbol: d_course_bowsers_castle_vertex_0x0400DB00 + type: mk64:course_vtx + count: 50 + offset: 0xbfa0 + +d_course_bowsers_castle_vertex_0x0400DD00: + symbol: d_course_bowsers_castle_vertex_0x0400DD00 + type: mk64:course_vtx + count: 50 + offset: 0xc160 + +d_course_bowsers_castle_vertex_0x0400DF00: + symbol: d_course_bowsers_castle_vertex_0x0400DF00 + type: mk64:course_vtx + count: 48 + offset: 0xc320 + +d_course_bowsers_castle_vertex_0x0400E0E0: + symbol: d_course_bowsers_castle_vertex_0x0400E0E0 + type: mk64:course_vtx + count: 49 + offset: 0xc4c4 + +d_course_bowsers_castle_vertex_0x0400E2D0: + symbol: d_course_bowsers_castle_vertex_0x0400E2D0 + type: mk64:course_vtx + count: 19 + offset: 0xc676 + +d_course_bowsers_castle_vertex_0x0400E3A0: + symbol: d_course_bowsers_castle_vertex_0x0400E3A0 + type: mk64:course_vtx + count: 49 + offset: 0xc72c + +d_course_bowsers_castle_vertex_0x0400E590: + symbol: d_course_bowsers_castle_vertex_0x0400E590 + type: mk64:course_vtx + count: 22 + offset: 0xc8de + +d_course_bowsers_castle_vertex_0x0400E690: + symbol: d_course_bowsers_castle_vertex_0x0400E690 + type: mk64:course_vtx + count: 50 + offset: 0xc9be + +d_course_bowsers_castle_vertex_0x0400E890: + symbol: d_course_bowsers_castle_vertex_0x0400E890 + type: mk64:course_vtx + count: 3 + offset: 0xcb7e + +d_course_bowsers_castle_vertex_0x0400E8C0: + symbol: d_course_bowsers_castle_vertex_0x0400E8C0 + type: mk64:course_vtx + count: 50 + offset: 0xcba8 + +d_course_bowsers_castle_vertex_0x0400EAC0: + symbol: d_course_bowsers_castle_vertex_0x0400EAC0 + type: mk64:course_vtx + count: 50 + offset: 0xcd68 + +d_course_bowsers_castle_vertex_0x0400ECC0: + symbol: d_course_bowsers_castle_vertex_0x0400ECC0 + type: mk64:course_vtx + count: 50 + offset: 0xcf28 + +d_course_bowsers_castle_vertex_0x0400EEC0: + symbol: d_course_bowsers_castle_vertex_0x0400EEC0 + type: mk64:course_vtx + count: 4 + offset: 0xd0e8 + +d_course_bowsers_castle_vertex_0x0400EF00: + symbol: d_course_bowsers_castle_vertex_0x0400EF00 + type: mk64:course_vtx + count: 48 + offset: 0xd120 + +d_course_bowsers_castle_vertex_0x0400F0E0: + symbol: d_course_bowsers_castle_vertex_0x0400F0E0 + type: mk64:course_vtx + count: 36 + offset: 0xd2c4 + +d_course_bowsers_castle_vertex_0x0400F260: + symbol: d_course_bowsers_castle_vertex_0x0400F260 + type: mk64:course_vtx + count: 22 + offset: 0xd414 + +d_course_bowsers_castle_vertex_0x0400F360: + symbol: d_course_bowsers_castle_vertex_0x0400F360 + type: mk64:course_vtx + count: 32 + offset: 0xd4f4 + +d_course_bowsers_castle_vertex_0x0400F4A0: + symbol: d_course_bowsers_castle_vertex_0x0400F4A0 + type: mk64:course_vtx + count: 50 + offset: 0xd60c + +d_course_bowsers_castle_vertex_0x0400F6A0: + symbol: d_course_bowsers_castle_vertex_0x0400F6A0 + type: mk64:course_vtx + count: 18 + offset: 0xd7cc + +d_course_bowsers_castle_vertex_0x0400F760: + symbol: d_course_bowsers_castle_vertex_0x0400F760 + type: mk64:course_vtx + count: 48 + offset: 0xd874 + +d_course_bowsers_castle_vertex_0x0400F940: + symbol: d_course_bowsers_castle_vertex_0x0400F940 + type: mk64:course_vtx + count: 48 + offset: 0xda18 + +d_course_bowsers_castle_vertex_0x0400FB20: + symbol: d_course_bowsers_castle_vertex_0x0400FB20 + type: mk64:course_vtx + count: 50 + offset: 0xdbbc + +d_course_bowsers_castle_vertex_0x0400FD20: + symbol: d_course_bowsers_castle_vertex_0x0400FD20 + type: mk64:course_vtx + count: 48 + offset: 0xdd7c + +d_course_bowsers_castle_vertex_0x0400FF00: + symbol: d_course_bowsers_castle_vertex_0x0400FF00 + type: mk64:course_vtx + count: 48 + offset: 0xdf20 + +d_course_bowsers_castle_vertex_0x040100E0: + symbol: d_course_bowsers_castle_vertex_0x040100E0 + type: mk64:course_vtx + count: 48 + offset: 0xe0c4 + +d_course_bowsers_castle_vertex_0x040102C0: + symbol: d_course_bowsers_castle_vertex_0x040102C0 + type: mk64:course_vtx + count: 48 + offset: 0xe268 + +d_course_bowsers_castle_vertex_0x040104A0: + symbol: d_course_bowsers_castle_vertex_0x040104A0 + type: mk64:course_vtx + count: 6 + offset: 0xe40c + +d_course_bowsers_castle_vertex_0x04010500: + symbol: d_course_bowsers_castle_vertex_0x04010500 + type: mk64:course_vtx + count: 50 + offset: 0xe460 + +d_course_bowsers_castle_vertex_0x04010700: + symbol: d_course_bowsers_castle_vertex_0x04010700 + type: mk64:course_vtx + count: 48 + offset: 0xe620 + +d_course_bowsers_castle_vertex_0x040108E0: + symbol: d_course_bowsers_castle_vertex_0x040108E0 + type: mk64:course_vtx + count: 48 + offset: 0xe7c4 + +d_course_bowsers_castle_vertex_0x04010AC0: + symbol: d_course_bowsers_castle_vertex_0x04010AC0 + type: mk64:course_vtx + count: 48 + offset: 0xe968 + +d_course_bowsers_castle_vertex_0x04010CA0: + symbol: d_course_bowsers_castle_vertex_0x04010CA0 + type: mk64:course_vtx + count: 50 + offset: 0xeb0c + +d_course_bowsers_castle_vertex_0x04010EA0: + symbol: d_course_bowsers_castle_vertex_0x04010EA0 + type: mk64:course_vtx + count: 48 + offset: 0xeccc + +d_course_bowsers_castle_vertex_0x04011080: + symbol: d_course_bowsers_castle_vertex_0x04011080 + type: mk64:course_vtx + count: 48 + offset: 0xee70 + +d_course_bowsers_castle_vertex_0x04011260: + symbol: d_course_bowsers_castle_vertex_0x04011260 + type: mk64:course_vtx + count: 50 + offset: 0xf014 + +d_course_bowsers_castle_vertex_0x04011460: + symbol: d_course_bowsers_castle_vertex_0x04011460 + type: mk64:course_vtx + count: 50 + offset: 0xf1d4 + +d_course_bowsers_castle_vertex_0x04011660: + symbol: d_course_bowsers_castle_vertex_0x04011660 + type: mk64:course_vtx + count: 50 + offset: 0xf394 + +d_course_bowsers_castle_vertex_0x04011860: + symbol: d_course_bowsers_castle_vertex_0x04011860 + type: mk64:course_vtx + count: 49 + offset: 0xf554 + +d_course_bowsers_castle_vertex_0x04011A50: + symbol: d_course_bowsers_castle_vertex_0x04011A50 + type: mk64:course_vtx + count: 48 + offset: 0xf706 + +d_course_bowsers_castle_vertex_0x04011C30: + symbol: d_course_bowsers_castle_vertex_0x04011C30 + type: mk64:course_vtx + count: 50 + offset: 0xf8aa + +d_course_bowsers_castle_vertex_0x04011E30: + symbol: d_course_bowsers_castle_vertex_0x04011E30 + type: mk64:course_vtx + count: 3 + offset: 0xfa6a + +d_course_bowsers_castle_vertex_0x04011E60: + symbol: d_course_bowsers_castle_vertex_0x04011E60 + type: mk64:course_vtx + count: 50 + offset: 0xfa94 + +d_course_bowsers_castle_vertex_0x04012060: + symbol: d_course_bowsers_castle_vertex_0x04012060 + type: mk64:course_vtx + count: 48 + offset: 0xfc54 + +d_course_bowsers_castle_vertex_0x04012240: + symbol: d_course_bowsers_castle_vertex_0x04012240 + type: mk64:course_vtx + count: 48 + offset: 0xfdf8 + +d_course_bowsers_castle_vertex_0x04012420: + symbol: d_course_bowsers_castle_vertex_0x04012420 + type: mk64:course_vtx + count: 48 + offset: 0xff9c + +d_course_bowsers_castle_vertex_0x04012600: + symbol: d_course_bowsers_castle_vertex_0x04012600 + type: mk64:course_vtx + count: 50 + offset: 0x10140 + +d_course_bowsers_castle_vertex_0x04012800: + symbol: d_course_bowsers_castle_vertex_0x04012800 + type: mk64:course_vtx + count: 48 + offset: 0x10300 + +d_course_bowsers_castle_vertex_0x040129E0: + symbol: d_course_bowsers_castle_vertex_0x040129E0 + type: mk64:course_vtx + count: 48 + offset: 0x104a4 + +d_course_bowsers_castle_vertex_0x04012BC0: + symbol: d_course_bowsers_castle_vertex_0x04012BC0 + type: mk64:course_vtx + count: 49 + offset: 0x10648 + +d_course_bowsers_castle_vertex_0x04012DB0: + symbol: d_course_bowsers_castle_vertex_0x04012DB0 + type: mk64:course_vtx + count: 50 + offset: 0x107fa + +d_course_bowsers_castle_vertex_0x04012FB0: + symbol: d_course_bowsers_castle_vertex_0x04012FB0 + type: mk64:course_vtx + count: 48 + offset: 0x109ba + +d_course_bowsers_castle_vertex_0x04013190: + symbol: d_course_bowsers_castle_vertex_0x04013190 + type: mk64:course_vtx + count: 49 + offset: 0x10b5e + +d_course_bowsers_castle_vertex_0x04013380: + symbol: d_course_bowsers_castle_vertex_0x04013380 + type: mk64:course_vtx + count: 49 + offset: 0x10d10 + +d_course_bowsers_castle_vertex_0x04013570: + symbol: d_course_bowsers_castle_vertex_0x04013570 + type: mk64:course_vtx + count: 50 + offset: 0x10ec2 + +d_course_bowsers_castle_vertex_0x04013770: + symbol: d_course_bowsers_castle_vertex_0x04013770 + type: mk64:course_vtx + count: 6 + offset: 0x11082 + +d_course_bowsers_castle_vertex_0x040137D0: + symbol: d_course_bowsers_castle_vertex_0x040137D0 + type: mk64:course_vtx + count: 48 + offset: 0x110d6 + +d_course_bowsers_castle_vertex_0x040139B0: + symbol: d_course_bowsers_castle_vertex_0x040139B0 + type: mk64:course_vtx + count: 48 + offset: 0x1127a + +d_course_bowsers_castle_vertex_0x04013B90: + symbol: d_course_bowsers_castle_vertex_0x04013B90 + type: mk64:course_vtx + count: 50 + offset: 0x1141e + +d_course_bowsers_castle_vertex_0x04013D90: + symbol: d_course_bowsers_castle_vertex_0x04013D90 + type: mk64:course_vtx + count: 48 + offset: 0x115de + +d_course_bowsers_castle_vertex_0x04013F70: + symbol: d_course_bowsers_castle_vertex_0x04013F70 + type: mk64:course_vtx + count: 48 + offset: 0x11782 + +d_course_bowsers_castle_vertex_0x04014150: + symbol: d_course_bowsers_castle_vertex_0x04014150 + type: mk64:course_vtx + count: 48 + offset: 0x11926 + +d_course_bowsers_castle_vertex_0x04014330: + symbol: d_course_bowsers_castle_vertex_0x04014330 + type: mk64:course_vtx + count: 48 + offset: 0x11aca + +d_course_bowsers_castle_vertex_0x04014510: + symbol: d_course_bowsers_castle_vertex_0x04014510 + type: mk64:course_vtx + count: 50 + offset: 0x11c6e + +d_course_bowsers_castle_vertex_0x04014710: + symbol: d_course_bowsers_castle_vertex_0x04014710 + type: mk64:course_vtx + count: 48 + offset: 0x11e2e + +d_course_bowsers_castle_vertex_0x040148F0: + symbol: d_course_bowsers_castle_vertex_0x040148F0 + type: mk64:course_vtx + count: 50 + offset: 0x11fd2 + +d_course_bowsers_castle_vertex_0x04014AF0: + symbol: d_course_bowsers_castle_vertex_0x04014AF0 + type: mk64:course_vtx + count: 48 + offset: 0x12192 + +d_course_bowsers_castle_vertex_0x04014CD0: + symbol: d_course_bowsers_castle_vertex_0x04014CD0 + type: mk64:course_vtx + count: 48 + offset: 0x12336 + +d_course_bowsers_castle_vertex_0x04014EB0: + symbol: d_course_bowsers_castle_vertex_0x04014EB0 + type: mk64:course_vtx + count: 50 + offset: 0x124da + +d_course_bowsers_castle_vertex_0x040150B0: + symbol: d_course_bowsers_castle_vertex_0x040150B0 + type: mk64:course_vtx + count: 6 + offset: 0x1269a + +d_course_bowsers_castle_vertex_0x04015110: + symbol: d_course_bowsers_castle_vertex_0x04015110 + type: mk64:course_vtx + count: 48 + offset: 0x126ee + +d_course_bowsers_castle_vertex_0x040152F0: + symbol: d_course_bowsers_castle_vertex_0x040152F0 + type: mk64:course_vtx + count: 48 + offset: 0x12892 + +d_course_bowsers_castle_vertex_0x040154D0: + symbol: d_course_bowsers_castle_vertex_0x040154D0 + type: mk64:course_vtx + count: 48 + offset: 0x12a36 + +d_course_bowsers_castle_vertex_0x040156B0: + symbol: d_course_bowsers_castle_vertex_0x040156B0 + type: mk64:course_vtx + count: 48 + offset: 0x12bda + +d_course_bowsers_castle_vertex_0x04015890: + symbol: d_course_bowsers_castle_vertex_0x04015890 + type: mk64:course_vtx + count: 49 + offset: 0x12d7e + +d_course_bowsers_castle_vertex_0x04015A80: + symbol: d_course_bowsers_castle_vertex_0x04015A80 + type: mk64:course_vtx + count: 48 + offset: 0x12f30 + +d_course_bowsers_castle_vertex_0x04015C60: + symbol: d_course_bowsers_castle_vertex_0x04015C60 + type: mk64:course_vtx + count: 48 + offset: 0x130d4 + +d_course_bowsers_castle_vertex_0x04015E40: + symbol: d_course_bowsers_castle_vertex_0x04015E40 + type: mk64:course_vtx + count: 50 + offset: 0x13278 + +d_course_bowsers_castle_vertex_0x04016040: + symbol: d_course_bowsers_castle_vertex_0x04016040 + type: mk64:course_vtx + count: 48 + offset: 0x13438 + +d_course_bowsers_castle_vertex_0x04016220: + symbol: d_course_bowsers_castle_vertex_0x04016220 + type: mk64:course_vtx + count: 50 + offset: 0x135dc + +d_course_bowsers_castle_vertex_0x04016420: + symbol: d_course_bowsers_castle_vertex_0x04016420 + type: mk64:course_vtx + count: 49 + offset: 0x1379c + +d_course_bowsers_castle_vertex_0x04016610: + symbol: d_course_bowsers_castle_vertex_0x04016610 + type: mk64:course_vtx + count: 49 + offset: 0x1394e + +d_course_bowsers_castle_vertex_0x04016800: + symbol: d_course_bowsers_castle_vertex_0x04016800 + type: mk64:course_vtx + count: 48 + offset: 0x13b00 + +d_course_bowsers_castle_vertex_0x040169E0: + symbol: d_course_bowsers_castle_vertex_0x040169E0 + type: mk64:course_vtx + count: 18 + offset: 0x13ca4 + +d_course_bowsers_castle_vertex_0x04016AA0: + symbol: d_course_bowsers_castle_vertex_0x04016AA0 + type: mk64:course_vtx + count: 36 + offset: 0x13d4c + +d_course_bowsers_castle_vertex_0x04016C20: + symbol: d_course_bowsers_castle_vertex_0x04016C20 + type: mk64:course_vtx + count: 40 + offset: 0x13e9c + +d_course_bowsers_castle_vertex_0x04016DE0: + symbol: d_course_bowsers_castle_vertex_0x04016DE0 + type: mk64:course_vtx + count: 22 + offset: 0x14024 + +d_course_bowsers_castle_vertex_0x04016EE0: + symbol: d_course_bowsers_castle_vertex_0x04016EE0 + type: mk64:course_vtx + count: 8 + offset: 0x14104 + +d_course_bowsers_castle_vertex_0x04016F60: + symbol: d_course_bowsers_castle_vertex_0x04016F60 + type: mk64:course_vtx + count: 8 + offset: 0x14174 + +d_course_bowsers_castle_vertex_0x04016FE0: + symbol: d_course_bowsers_castle_vertex_0x04016FE0 + type: mk64:course_vtx + count: 8 + offset: 0x141e4 + +d_course_bowsers_castle_vertex_0x04017060: + symbol: d_course_bowsers_castle_vertex_0x04017060 + type: mk64:course_vtx + count: 4 + offset: 0x14254 + +d_course_bowsers_castle_vertex_0x040170A0: + symbol: d_course_bowsers_castle_vertex_0x040170A0 + type: mk64:course_vtx + count: 24 + offset: 0x1428c + +d_course_bowsers_castle_vertex_0x040171C0: + symbol: d_course_bowsers_castle_vertex_0x040171C0 + type: mk64:course_vtx + count: 33 + offset: 0x14388 + +d_course_bowsers_castle_vertex_0x04017310: + symbol: d_course_bowsers_castle_vertex_0x04017310 + type: mk64:course_vtx + count: 35 + offset: 0x144ae + +d_course_bowsers_castle_vertex_0x04017480: + symbol: d_course_bowsers_castle_vertex_0x04017480 + type: mk64:course_vtx + count: 22 + offset: 0x145f0 + +d_course_bowsers_castle_vertex_0x04017580: + symbol: d_course_bowsers_castle_vertex_0x04017580 + type: mk64:course_vtx + count: 37 + offset: 0x146d0 + +d_course_bowsers_castle_vertex_0x04017710: + symbol: d_course_bowsers_castle_vertex_0x04017710 + type: mk64:course_vtx + count: 18 + offset: 0x1482e + +d_course_bowsers_castle_vertex_0x040177D0: + symbol: d_course_bowsers_castle_vertex_0x040177D0 + type: mk64:course_vtx + count: 4 + offset: 0x148d6 + +d_course_bowsers_castle_vertex_0x04017810: + symbol: d_course_bowsers_castle_vertex_0x04017810 + type: mk64:course_vtx + count: 7 + offset: 0x1490e + +d_course_bowsers_castle_vertex_0x04017880: + symbol: d_course_bowsers_castle_vertex_0x04017880 + type: mk64:course_vtx + count: 50 + offset: 0x14970 + +d_course_bowsers_castle_vertex_0x04017A80: + symbol: d_course_bowsers_castle_vertex_0x04017A80 + type: mk64:course_vtx + count: 3 + offset: 0x14b30 + +d_course_bowsers_castle_vertex_0x04017AB0: + symbol: d_course_bowsers_castle_vertex_0x04017AB0 + type: mk64:course_vtx + count: 18 + offset: 0x14b5a + +d_course_bowsers_castle_vertex_0x04017B70: + symbol: d_course_bowsers_castle_vertex_0x04017B70 + type: mk64:course_vtx + count: 48 + offset: 0x14c02 + +d_course_bowsers_castle_vertex_0x04017D50: + symbol: d_course_bowsers_castle_vertex_0x04017D50 + type: mk64:course_vtx + count: 37 + offset: 0x14da6 + +d_course_bowsers_castle_vertex_0x04017EE0: + symbol: d_course_bowsers_castle_vertex_0x04017EE0 + type: mk64:course_vtx + count: 4 + offset: 0x14f04 + +d_course_bowsers_castle_vertex_0x04017F20: + symbol: d_course_bowsers_castle_vertex_0x04017F20 + type: mk64:course_vtx + count: 4 + offset: 0x14f3c + +d_course_bowsers_castle_vertex_0x04017F60: + symbol: d_course_bowsers_castle_vertex_0x04017F60 + type: mk64:course_vtx + count: 8 + offset: 0x14f74 + +d_course_bowsers_castle_vertex_0x04017FE0: + symbol: d_course_bowsers_castle_vertex_0x04017FE0 + type: mk64:course_vtx + count: 32 + offset: 0x14fe4 + +d_course_bowsers_castle_vertex_0x04018120: + symbol: d_course_bowsers_castle_vertex_0x04018120 + type: mk64:course_vtx + count: 49 + offset: 0x150fc + +d_course_bowsers_castle_vertex_0x04018310: + symbol: d_course_bowsers_castle_vertex_0x04018310 + type: mk64:course_vtx + count: 6 + offset: 0x152ae + +d_course_bowsers_castle_vertex_0x04018370: + symbol: d_course_bowsers_castle_vertex_0x04018370 + type: mk64:course_vtx + count: 8 + offset: 0x15302 + +d_course_bowsers_castle_vertex_0x040183F0: + symbol: d_course_bowsers_castle_vertex_0x040183F0 + type: mk64:course_vtx + count: 22 + offset: 0x15372 + +d_course_bowsers_castle_vertex_0x040184F0: + symbol: d_course_bowsers_castle_vertex_0x040184F0 + type: mk64:course_vtx + count: 18 + offset: 0x15452 + +d_course_bowsers_castle_vertex_0x040185B0: + symbol: d_course_bowsers_castle_vertex_0x040185B0 + type: mk64:course_vtx + count: 50 + offset: 0x154fa + +d_course_bowsers_castle_vertex_0x040187B0: + symbol: d_course_bowsers_castle_vertex_0x040187B0 + type: mk64:course_vtx + count: 18 + offset: 0x156ba + +d_course_bowsers_castle_vertex_0x04018870: + symbol: d_course_bowsers_castle_vertex_0x04018870 + type: mk64:course_vtx + count: 49 + offset: 0x15762 + +d_course_bowsers_castle_vertex_0x04018A60: + symbol: d_course_bowsers_castle_vertex_0x04018A60 + type: mk64:course_vtx + count: 50 + offset: 0x15914 + +d_course_bowsers_castle_vertex_0x04018C60: + symbol: d_course_bowsers_castle_vertex_0x04018C60 + type: mk64:course_vtx + count: 50 + offset: 0x15ad4 + +d_course_bowsers_castle_vertex_0x04018E60: + symbol: d_course_bowsers_castle_vertex_0x04018E60 + type: mk64:course_vtx + count: 49 + offset: 0x15c94 + +d_course_bowsers_castle_vertex_0x04019050: + symbol: d_course_bowsers_castle_vertex_0x04019050 + type: mk64:course_vtx + count: 50 + offset: 0x15e46 + +d_course_bowsers_castle_vertex_0x04019250: + symbol: d_course_bowsers_castle_vertex_0x04019250 + type: mk64:course_vtx + count: 7 + offset: 0x16006 + +d_course_bowsers_castle_vertex_0x040192C0: + symbol: d_course_bowsers_castle_vertex_0x040192C0 + type: mk64:course_vtx + count: 48 + offset: 0x16068 + +d_course_bowsers_castle_vertex_0x040194A0: + symbol: d_course_bowsers_castle_vertex_0x040194A0 + type: mk64:course_vtx + count: 50 + offset: 0x1620c + +d_course_bowsers_castle_vertex_0x040196A0: + symbol: d_course_bowsers_castle_vertex_0x040196A0 + type: mk64:course_vtx + count: 36 + offset: 0x163cc + +d_course_bowsers_castle_vertex_0x04019820: + symbol: d_course_bowsers_castle_vertex_0x04019820 + type: mk64:course_vtx + count: 33 + offset: 0x1651c + +d_course_bowsers_castle_vertex_0x04019970: + symbol: d_course_bowsers_castle_vertex_0x04019970 + type: mk64:course_vtx + count: 22 + offset: 0x16642 + +d_course_bowsers_castle_vertex_0x04019A70: + symbol: d_course_bowsers_castle_vertex_0x04019A70 + type: mk64:course_vtx + count: 22 + offset: 0x16722 + +d_course_bowsers_castle_vertex_0x04019B70: + symbol: d_course_bowsers_castle_vertex_0x04019B70 + type: mk64:course_vtx + count: 32 + offset: 0x16802 + +d_course_bowsers_castle_vertex_0x04019CB0: + symbol: d_course_bowsers_castle_vertex_0x04019CB0 + type: mk64:course_vtx + count: 49 + offset: 0x1691a + +d_course_bowsers_castle_vertex_0x04019EA0: + symbol: d_course_bowsers_castle_vertex_0x04019EA0 + type: mk64:course_vtx + count: 4 + offset: 0x16acc + +d_course_bowsers_castle_vertex_0x04019EE0: + symbol: d_course_bowsers_castle_vertex_0x04019EE0 + type: mk64:course_vtx + count: 48 + offset: 0x16b04 + +d_course_bowsers_castle_vertex_0x0401A0C0: + symbol: d_course_bowsers_castle_vertex_0x0401A0C0 + type: mk64:course_vtx + count: 4 + offset: 0x16ca8 + +d_course_bowsers_castle_vertex_0x0401A100: + symbol: d_course_bowsers_castle_vertex_0x0401A100 + type: mk64:course_vtx + count: 4 + offset: 0x16ce0 + +d_course_bowsers_castle_vertex_0x0401A140: + symbol: d_course_bowsers_castle_vertex_0x0401A140 + type: mk64:course_vtx + count: 5 + offset: 0x16d18 + +d_course_bowsers_castle_vertex_0x0401A190: + symbol: d_course_bowsers_castle_vertex_0x0401A190 + type: mk64:course_vtx + count: 41 + offset: 0x16d5e + +d_course_bowsers_castle_vertex_0x0401A360: + symbol: d_course_bowsers_castle_vertex_0x0401A360 + type: mk64:course_vtx + count: 5 + offset: 0x16ef4 + +d_course_bowsers_castle_vertex_0x0401A3B0: + symbol: d_course_bowsers_castle_vertex_0x0401A3B0 + type: mk64:course_vtx + count: 41 + offset: 0x16f3a + +d_course_bowsers_castle_vertex_0x0401A580: + symbol: d_course_bowsers_castle_vertex_0x0401A580 + type: mk64:course_vtx + count: 5 + offset: 0x170d0 + +d_course_bowsers_castle_vertex_0x0401A5D0: + symbol: d_course_bowsers_castle_vertex_0x0401A5D0 + type: mk64:course_vtx + count: 41 + offset: 0x17116 + +d_course_bowsers_castle_vertex_0x0401A7A0: + symbol: d_course_bowsers_castle_vertex_0x0401A7A0 + type: mk64:course_vtx + count: 17 + offset: 0x172ac + +d_course_bowsers_castle_vertex_0x0401A850: + symbol: d_course_bowsers_castle_vertex_0x0401A850 + type: mk64:course_vtx + count: 22 + offset: 0x17346 + +d_course_bowsers_castle_vertex_0x0401A950: + symbol: d_course_bowsers_castle_vertex_0x0401A950 + type: mk64:course_vtx + count: 50 + offset: 0x17426 + +d_course_bowsers_castle_vertex_0x0401AB50: + symbol: d_course_bowsers_castle_vertex_0x0401AB50 + type: mk64:course_vtx + count: 50 + offset: 0x175e6 + +d_course_bowsers_castle_vertex_0x0401AD50: + symbol: d_course_bowsers_castle_vertex_0x0401AD50 + type: mk64:course_vtx + count: 50 + offset: 0x177a6 + +d_course_bowsers_castle_vertex_0x0401AF50: + symbol: d_course_bowsers_castle_vertex_0x0401AF50 + type: mk64:course_vtx + count: 50 + offset: 0x17966 + +d_course_bowsers_castle_vertex_0x0401B150: + symbol: d_course_bowsers_castle_vertex_0x0401B150 + type: mk64:course_vtx + count: 48 + offset: 0x17b26 + +d_course_bowsers_castle_vertex_0x0401B330: + symbol: d_course_bowsers_castle_vertex_0x0401B330 + type: mk64:course_vtx + count: 48 + offset: 0x17cca + +d_course_bowsers_castle_vertex_0x0401B510: + symbol: d_course_bowsers_castle_vertex_0x0401B510 + type: mk64:course_vtx + count: 50 + offset: 0x17e6e + +d_course_bowsers_castle_vertex_0x0401B710: + symbol: d_course_bowsers_castle_vertex_0x0401B710 + type: mk64:course_vtx + count: 18 + offset: 0x1802e + +d_course_bowsers_castle_vertex_0x0401B7D0: + symbol: d_course_bowsers_castle_vertex_0x0401B7D0 + type: mk64:course_vtx + count: 9 + offset: 0x180d6 + +d_course_bowsers_castle_vertex_0x0401B860: + symbol: d_course_bowsers_castle_vertex_0x0401B860 + type: mk64:course_vtx + count: 32 + offset: 0x18154 + +d_course_bowsers_castle_vertex_0x0401B9A0: + symbol: d_course_bowsers_castle_vertex_0x0401B9A0 + type: mk64:course_vtx + count: 36 + offset: 0x1826c + +d_course_bowsers_castle_vertex_0x0401BB20: + symbol: d_course_bowsers_castle_vertex_0x0401BB20 + type: mk64:course_vtx + count: 18 + offset: 0x183bc + +d_course_bowsers_castle_vertex_0x0401BBE0: + symbol: d_course_bowsers_castle_vertex_0x0401BBE0 + type: mk64:course_vtx + count: 50 + offset: 0x18464 + +d_course_bowsers_castle_vertex_0x0401BDE0: + symbol: d_course_bowsers_castle_vertex_0x0401BDE0 + type: mk64:course_vtx + count: 50 + offset: 0x18624 + +d_course_bowsers_castle_vertex_0x0401BFE0: + symbol: d_course_bowsers_castle_vertex_0x0401BFE0 + type: mk64:course_vtx + count: 22 + offset: 0x187e4 + +d_course_bowsers_castle_vertex_0x0401C0E0: + symbol: d_course_bowsers_castle_vertex_0x0401C0E0 + type: mk64:course_vtx + count: 50 + offset: 0x188c4 + +d_course_bowsers_castle_vertex_0x0401C2E0: + symbol: d_course_bowsers_castle_vertex_0x0401C2E0 + type: mk64:course_vtx + count: 36 + offset: 0x18a84 + +d_course_bowsers_castle_vertex_0x0401C460: + symbol: d_course_bowsers_castle_vertex_0x0401C460 + type: mk64:course_vtx + count: 48 + offset: 0x18bd4 + +d_course_bowsers_castle_vertex_0x0401C640: + symbol: d_course_bowsers_castle_vertex_0x0401C640 + type: mk64:course_vtx + count: 20 + offset: 0x18d78 + +d_course_bowsers_castle_vertex_0x0401C720: + symbol: d_course_bowsers_castle_vertex_0x0401C720 + type: mk64:course_vtx + count: 48 + offset: 0x18e3c + +d_course_bowsers_castle_vertex_0x0401C900: + symbol: d_course_bowsers_castle_vertex_0x0401C900 + type: mk64:course_vtx + count: 36 + offset: 0x18fe0 + +d_course_bowsers_castle_vertex_0x0401CA80: + symbol: d_course_bowsers_castle_vertex_0x0401CA80 + type: mk64:course_vtx + count: 36 + offset: 0x19130 + +d_course_bowsers_castle_vertex_0x0401CC00: + symbol: d_course_bowsers_castle_vertex_0x0401CC00 + type: mk64:course_vtx + count: 50 + offset: 0x19280 + +d_course_bowsers_castle_vertex_0x0401CE00: + symbol: d_course_bowsers_castle_vertex_0x0401CE00 + type: mk64:course_vtx + count: 8 + offset: 0x19440 + +d_course_bowsers_castle_vertex_0x0401CE80: + symbol: d_course_bowsers_castle_vertex_0x0401CE80 + type: mk64:course_vtx + count: 48 + offset: 0x194b0 + +d_course_bowsers_castle_vertex_0x0401D060: + symbol: d_course_bowsers_castle_vertex_0x0401D060 + type: mk64:course_vtx + count: 22 + offset: 0x19654 + +d_course_bowsers_castle_vertex_0x0401D160: + symbol: d_course_bowsers_castle_vertex_0x0401D160 + type: mk64:course_vtx + count: 4 + offset: 0x19734 + +d_course_bowsers_castle_vertex_0x0401D1A0: + symbol: d_course_bowsers_castle_vertex_0x0401D1A0 + type: mk64:course_vtx + count: 50 + offset: 0x1976c + +d_course_bowsers_castle_vertex_0x0401D3A0: + symbol: d_course_bowsers_castle_vertex_0x0401D3A0 + type: mk64:course_vtx + count: 48 + offset: 0x1992c + +d_course_bowsers_castle_vertex_0x0401D580: + symbol: d_course_bowsers_castle_vertex_0x0401D580 + type: mk64:course_vtx + count: 24 + offset: 0x19ad0 + +d_course_bowsers_castle_vertex_0x0401D6A0: + symbol: d_course_bowsers_castle_vertex_0x0401D6A0 + type: mk64:course_vtx + count: 50 + offset: 0x19bcc + +d_course_bowsers_castle_vertex_0x0401D8A0: + symbol: d_course_bowsers_castle_vertex_0x0401D8A0 + type: mk64:course_vtx + count: 38 + offset: 0x19d8c + +d_course_bowsers_castle_vertex_0x0401DA40: + symbol: d_course_bowsers_castle_vertex_0x0401DA40 + type: mk64:course_vtx + count: 50 + offset: 0x19ef8 + +d_course_bowsers_castle_vertex_0x0401DC40: + symbol: d_course_bowsers_castle_vertex_0x0401DC40 + type: mk64:course_vtx + count: 19 + offset: 0x1a0b8 + +d_course_bowsers_castle_vertex_0x0401DD10: + symbol: d_course_bowsers_castle_vertex_0x0401DD10 + type: mk64:course_vtx + count: 17 + offset: 0x1a16e + +d_course_bowsers_castle_vertex_0x0401DDC0: + symbol: d_course_bowsers_castle_vertex_0x0401DDC0 + type: mk64:course_vtx + count: 8 + offset: 0x1a208 + +d_course_bowsers_castle_vertex_0x0401DE40: + symbol: d_course_bowsers_castle_vertex_0x0401DE40 + type: mk64:course_vtx + count: 8 + offset: 0x1a278 + +d_course_bowsers_castle_vertex_0x0401DEC0: + symbol: d_course_bowsers_castle_vertex_0x0401DEC0 + type: mk64:course_vtx + count: 22 + offset: 0x1a2e8 + +d_course_bowsers_castle_vertex_0x0401DFC0: + symbol: d_course_bowsers_castle_vertex_0x0401DFC0 + type: mk64:course_vtx + count: 18 + offset: 0x1a3c8 + +d_course_bowsers_castle_vertex_0x0401E080: + symbol: d_course_bowsers_castle_vertex_0x0401E080 + type: mk64:course_vtx + count: 9 + offset: 0x1a470 + +d_course_bowsers_castle_vertex_0x0401E110: + symbol: d_course_bowsers_castle_vertex_0x0401E110 + type: mk64:course_vtx + count: 36 + offset: 0x1a4ee + +d_course_bowsers_castle_vertex_0x0401E290: + symbol: d_course_bowsers_castle_vertex_0x0401E290 + type: mk64:course_vtx + count: 18 + offset: 0x1a63e + +d_course_bowsers_castle_vertex_0x0401E350: + symbol: d_course_bowsers_castle_vertex_0x0401E350 + type: mk64:course_vtx + count: 8 + offset: 0x1a6e6 + +d_course_bowsers_castle_vertex_0x0401E3D0: + symbol: d_course_bowsers_castle_vertex_0x0401E3D0 + type: mk64:course_vtx + count: 4 + offset: 0x1a756 + +d_course_bowsers_castle_vertex_0x0401E410: + symbol: d_course_bowsers_castle_vertex_0x0401E410 + type: mk64:course_vtx + count: 18 + offset: 0x1a78e + +d_course_bowsers_castle_vertex_0x0401E4D0: + symbol: d_course_bowsers_castle_vertex_0x0401E4D0 + type: mk64:course_vtx + count: 8 + offset: 0x1a836 + +d_course_bowsers_castle_vertex_0x0401E550: + symbol: d_course_bowsers_castle_vertex_0x0401E550 + type: mk64:course_vtx + count: 20 + offset: 0x1a8a6 + +d_course_bowsers_castle_vertex_0x0401E630: + symbol: d_course_bowsers_castle_vertex_0x0401E630 + type: mk64:course_vtx + count: 32 + offset: 0x1a96a + +d_course_bowsers_castle_vertex_0x0401E770: + symbol: d_course_bowsers_castle_vertex_0x0401E770 + type: mk64:course_vtx + count: 22 + offset: 0x1aa82 + +d_course_bowsers_castle_vertex_0x0401E870: + symbol: d_course_bowsers_castle_vertex_0x0401E870 + type: mk64:course_vtx + count: 8 + offset: 0x1ab62 + +d_course_bowsers_castle_vertex_0x0401E8F0: + symbol: d_course_bowsers_castle_vertex_0x0401E8F0 + type: mk64:course_vtx + count: 18 + offset: 0x1abd2 + +d_course_bowsers_castle_vertex_0x0401E9B0: + symbol: d_course_bowsers_castle_vertex_0x0401E9B0 + type: mk64:course_vtx + count: 22 + offset: 0x1ac7a + +d_course_bowsers_castle_vertex_0x0401EAB0: + symbol: d_course_bowsers_castle_vertex_0x0401EAB0 + type: mk64:course_vtx + count: 22 + offset: 0x1ad5a + +d_course_bowsers_castle_vertex_0x0401EBB0: + symbol: d_course_bowsers_castle_vertex_0x0401EBB0 + type: mk64:course_vtx + count: 18 + offset: 0x1ae3a + +d_course_bowsers_castle_vertex_0x0401EC70: + symbol: d_course_bowsers_castle_vertex_0x0401EC70 + type: mk64:course_vtx + count: 17 + offset: 0x1aee2 + +d_course_bowsers_castle_vertex_0x0401ED20: + symbol: d_course_bowsers_castle_vertex_0x0401ED20 + type: mk64:course_vtx + count: 8 + offset: 0x1af7c + +d_course_bowsers_castle_vertex_0x0401EDA0: + symbol: d_course_bowsers_castle_vertex_0x0401EDA0 + type: mk64:course_vtx + count: 6 + offset: 0x1afec + +d_course_bowsers_castle_vertex_0x0401EE00: + symbol: d_course_bowsers_castle_vertex_0x0401EE00 + type: mk64:course_vtx + count: 8 + offset: 0x1b040 + +d_course_bowsers_castle_vertex_0x0401EE80: + symbol: d_course_bowsers_castle_vertex_0x0401EE80 + type: mk64:course_vtx + count: 6 + offset: 0x1b0b0 + +d_course_bowsers_castle_vertex_0x0401EEE0: + symbol: d_course_bowsers_castle_vertex_0x0401EEE0 + type: mk64:course_vtx + count: 8 + offset: 0x1b104 + +d_course_bowsers_castle_vertex_0x0401EF60: + symbol: d_course_bowsers_castle_vertex_0x0401EF60 + type: mk64:course_vtx + count: 4 + offset: 0x1b174 + +d_course_bowsers_castle_vertex_0x0401EFA0: + symbol: d_course_bowsers_castle_vertex_0x0401EFA0 + type: mk64:course_vtx + count: 4 + offset: 0x1b1ac + +d_course_bowsers_castle_vertex_0x0401EFE0: + symbol: d_course_bowsers_castle_vertex_0x0401EFE0 + type: mk64:course_vtx + count: 8 + offset: 0x1b1e4 + +d_course_bowsers_castle_vertex_0x0401F060: + symbol: d_course_bowsers_castle_vertex_0x0401F060 + type: mk64:course_vtx + count: 8 + offset: 0x1b254 + +d_course_bowsers_castle_vertex_0x0401F0E0: + symbol: d_course_bowsers_castle_vertex_0x0401F0E0 + type: mk64:course_vtx + count: 50 + offset: 0x1b2c4 + +d_course_bowsers_castle_vertex_0x0401F2E0: + symbol: d_course_bowsers_castle_vertex_0x0401F2E0 + type: mk64:course_vtx + count: 48 + offset: 0x1b484 + +d_course_bowsers_castle_vertex_0x0401F4C0: + symbol: d_course_bowsers_castle_vertex_0x0401F4C0 + type: mk64:course_vtx + count: 50 + offset: 0x1b628 + +d_course_bowsers_castle_vertex_0x0401F6C0: + symbol: d_course_bowsers_castle_vertex_0x0401F6C0 + type: mk64:course_vtx + count: 50 + offset: 0x1b7e8 + +d_course_bowsers_castle_vertex_0x0401F8C0: + symbol: d_course_bowsers_castle_vertex_0x0401F8C0 + type: mk64:course_vtx + count: 50 + offset: 0x1b9a8 + +d_course_bowsers_castle_vertex_0x0401FAC0: + symbol: d_course_bowsers_castle_vertex_0x0401FAC0 + type: mk64:course_vtx + count: 48 + offset: 0x1bb68 + +d_course_bowsers_castle_vertex_0x0401FCA0: + symbol: d_course_bowsers_castle_vertex_0x0401FCA0 + type: mk64:course_vtx + count: 49 + offset: 0x1bd0c + +d_course_bowsers_castle_vertex_0x0401FE90: + symbol: d_course_bowsers_castle_vertex_0x0401FE90 + type: mk64:course_vtx + count: 50 + offset: 0x1bebe + +d_course_bowsers_castle_vertex_0x04020090: + symbol: d_course_bowsers_castle_vertex_0x04020090 + type: mk64:course_vtx + count: 50 + offset: 0x1c07e + +d_course_bowsers_castle_vertex_0x04020290: + symbol: d_course_bowsers_castle_vertex_0x04020290 + type: mk64:course_vtx + count: 22 + offset: 0x1c23e + +d_course_bowsers_castle_vertex_0x04020390: + symbol: d_course_bowsers_castle_vertex_0x04020390 + type: mk64:course_vtx + count: 49 + offset: 0x1c31e + +d_course_bowsers_castle_vertex_0x04020580: + symbol: d_course_bowsers_castle_vertex_0x04020580 + type: mk64:course_vtx + count: 49 + offset: 0x1c4d0 + +d_course_bowsers_castle_vertex_0x04020770: + symbol: d_course_bowsers_castle_vertex_0x04020770 + type: mk64:course_vtx + count: 50 + offset: 0x1c682 + +d_course_bowsers_castle_vertex_0x04020970: + symbol: d_course_bowsers_castle_vertex_0x04020970 + type: mk64:course_vtx + count: 49 + offset: 0x1c842 + +d_course_bowsers_castle_vertex_0x04020B60: + symbol: d_course_bowsers_castle_vertex_0x04020B60 + type: mk64:course_vtx + count: 50 + offset: 0x1c9f4 + +d_course_bowsers_castle_vertex_0x04020D60: + symbol: d_course_bowsers_castle_vertex_0x04020D60 + type: mk64:course_vtx + count: 50 + offset: 0x1cbb4 + +d_course_bowsers_castle_vertex_0x04020F60: + symbol: d_course_bowsers_castle_vertex_0x04020F60 + type: mk64:course_vtx + count: 50 + offset: 0x1cd74 + +d_course_bowsers_castle_vertex_0x04021160: + symbol: d_course_bowsers_castle_vertex_0x04021160 + type: mk64:course_vtx + count: 49 + offset: 0x1cf34 + +d_course_bowsers_castle_vertex_0x04021350: + symbol: d_course_bowsers_castle_vertex_0x04021350 + type: mk64:course_vtx + count: 50 + offset: 0x1d0e6 + +d_course_bowsers_castle_vertex_0x04021550: + symbol: d_course_bowsers_castle_vertex_0x04021550 + type: mk64:course_vtx + count: 50 + offset: 0x1d2a6 + +d_course_bowsers_castle_vertex_0x04021750: + symbol: d_course_bowsers_castle_vertex_0x04021750 + type: mk64:course_vtx + count: 50 + offset: 0x1d466 + +d_course_bowsers_castle_vertex_0x04021950: + symbol: d_course_bowsers_castle_vertex_0x04021950 + type: mk64:course_vtx + count: 50 + offset: 0x1d626 + +d_course_bowsers_castle_vertex_0x04021B50: + symbol: d_course_bowsers_castle_vertex_0x04021B50 + type: mk64:course_vtx + count: 18 + offset: 0x1d7e6 + +d_course_bowsers_castle_vertex_0x04021C10: + symbol: d_course_bowsers_castle_vertex_0x04021C10 + type: mk64:course_vtx + count: 34 + offset: 0x1d88e + +d_course_bowsers_castle_vertex_0x04021D70: + symbol: d_course_bowsers_castle_vertex_0x04021D70 + type: mk64:course_vtx + count: 34 + offset: 0x1d9c2 + +d_course_bowsers_castle_vertex_0x04021ED0: + symbol: d_course_bowsers_castle_vertex_0x04021ED0 + type: mk64:course_vtx + count: 39 + offset: 0x1daf6 + +d_course_bowsers_castle_vertex_0x04022080: + symbol: d_course_bowsers_castle_vertex_0x04022080 + type: mk64:course_vtx + count: 38 + offset: 0x1dc70 + +d_course_bowsers_castle_vertex_0x04022220: + symbol: d_course_bowsers_castle_vertex_0x04022220 + type: mk64:course_vtx + count: 48 + offset: 0x1dddc + +d_course_bowsers_castle_vertex_0x04022400: + symbol: d_course_bowsers_castle_vertex_0x04022400 + type: mk64:course_vtx + count: 6 + offset: 0x1df80 + +d_course_bowsers_castle_vertex_0x04022460: + symbol: d_course_bowsers_castle_vertex_0x04022460 + type: mk64:course_vtx + count: 50 + offset: 0x1dfd4 + +d_course_bowsers_castle_vertex_0x04022660: + symbol: d_course_bowsers_castle_vertex_0x04022660 + type: mk64:course_vtx + count: 22 + offset: 0x1e194 + +d_course_bowsers_castle_vertex_0x04022760: + symbol: d_course_bowsers_castle_vertex_0x04022760 + type: mk64:course_vtx + count: 50 + offset: 0x1e274 + +d_course_bowsers_castle_vertex_0x04022960: + symbol: d_course_bowsers_castle_vertex_0x04022960 + type: mk64:course_vtx + count: 50 + offset: 0x1e434 + +d_course_bowsers_castle_vertex_0x04022B60: + symbol: d_course_bowsers_castle_vertex_0x04022B60 + type: mk64:course_vtx + count: 50 + offset: 0x1e5f4 + +d_course_bowsers_castle_vertex_0x04022D60: + symbol: d_course_bowsers_castle_vertex_0x04022D60 + type: mk64:course_vtx + count: 50 + offset: 0x1e7b4 + +d_course_bowsers_castle_vertex_0x04022F60: + symbol: d_course_bowsers_castle_vertex_0x04022F60 + type: mk64:course_vtx + count: 50 + offset: 0x1e974 + +d_course_bowsers_castle_vertex_0x04023160: + symbol: d_course_bowsers_castle_vertex_0x04023160 + type: mk64:course_vtx + count: 49 + offset: 0x1eb34 + +d_course_bowsers_castle_vertex_0x04023350: + symbol: d_course_bowsers_castle_vertex_0x04023350 + type: mk64:course_vtx + count: 22 + offset: 0x1ece6 + +d_course_bowsers_castle_vertex_0x04023450: + symbol: d_course_bowsers_castle_vertex_0x04023450 + type: mk64:course_vtx + count: 40 + offset: 0x1edc6 + +d_course_bowsers_castle_vertex_0x04023610: + symbol: d_course_bowsers_castle_vertex_0x04023610 + type: mk64:course_vtx + count: 22 + offset: 0x1ef4e + +d_course_bowsers_castle_vertex_0x04023710: + symbol: d_course_bowsers_castle_vertex_0x04023710 + type: mk64:course_vtx + count: 40 + offset: 0x1f02e + +d_course_bowsers_castle_vertex_0x040238D0: + symbol: d_course_bowsers_castle_vertex_0x040238D0 + type: mk64:course_vtx + count: 22 + offset: 0x1f1b6 + +d_course_bowsers_castle_vertex_0x040239D0: + symbol: d_course_bowsers_castle_vertex_0x040239D0 + type: mk64:course_vtx + count: 48 + offset: 0x1f296 + +d_course_bowsers_castle_vertex_0x04023BB0: + symbol: d_course_bowsers_castle_vertex_0x04023BB0 + type: mk64:course_vtx + count: 49 + offset: 0x1f43a + +d_course_bowsers_castle_vertex_0x04023DA0: + symbol: d_course_bowsers_castle_vertex_0x04023DA0 + type: mk64:course_vtx + count: 49 + offset: 0x1f5ec + +d_course_bowsers_castle_vertex_0x04023F90: + symbol: d_course_bowsers_castle_vertex_0x04023F90 + type: mk64:course_vtx + count: 49 + offset: 0x1f79e + +d_course_bowsers_castle_vertex_0x04024180: + symbol: d_course_bowsers_castle_vertex_0x04024180 + type: mk64:course_vtx + count: 49 + offset: 0x1f950 + +d_course_bowsers_castle_vertex_0x04024370: + symbol: d_course_bowsers_castle_vertex_0x04024370 + type: mk64:course_vtx + count: 49 + offset: 0x1fb02 + +d_course_bowsers_castle_vertex_0x04024560: + symbol: d_course_bowsers_castle_vertex_0x04024560 + type: mk64:course_vtx + count: 49 + offset: 0x1fcb4 + +d_course_bowsers_castle_vertex_0x04024750: + symbol: d_course_bowsers_castle_vertex_0x04024750 + type: mk64:course_vtx + count: 48 + offset: 0x1fe66 + +d_course_bowsers_castle_vertex_0x04024930: + symbol: d_course_bowsers_castle_vertex_0x04024930 + type: mk64:course_vtx + count: 50 + offset: 0x2000a + +d_course_bowsers_castle_vertex_0x04024B30: + symbol: d_course_bowsers_castle_vertex_0x04024B30 + type: mk64:course_vtx + count: 49 + offset: 0x201ca + +d_course_bowsers_castle_vertex_0x04024D20: + symbol: d_course_bowsers_castle_vertex_0x04024D20 + type: mk64:course_vtx + count: 50 + offset: 0x2037c + +d_course_bowsers_castle_vertex_0x04024F20: + symbol: d_course_bowsers_castle_vertex_0x04024F20 + type: mk64:course_vtx + count: 33 + offset: 0x2053c + +d_course_bowsers_castle_vertex_0x04025070: + symbol: d_course_bowsers_castle_vertex_0x04025070 + type: mk64:course_vtx + count: 48 + offset: 0x20662 + +d_course_bowsers_castle_vertex_0x04025250: + symbol: d_course_bowsers_castle_vertex_0x04025250 + type: mk64:course_vtx + count: 24 + offset: 0x20806 \ No newline at end of file diff --git a/yamls/us/models/tracks/choco_mountain/choco_mountain_data.yml b/yamls/us/models/tracks/choco_mountain/choco_mountain_data.yml new file mode 100644 index 000000000..ebed274b3 --- /dev/null +++ b/yamls/us/models/tracks/choco_mountain/choco_mountain_data.yml @@ -0,0 +1,863 @@ +:config: + segments: + - [0x06, 0x82B620] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/choco_mountain/choco_mountain_data.yml" + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_64619C"] + - [0x05000800, "textures/other_textures/texture_64647C"] + - [0x05001800, "textures/other_textures/texture_647F4C"] + - [0x05002800, "textures/other_textures/texture_64FBF4"] + - [0x05003000, "textures/other_textures/texture_653DB0"] + - [0x05003800, "textures/other_textures/texture_652B54"] + - [0x05004000, "textures/other_textures/texture_65315C"] + - [0x05004800, "textures/other_textures/texture_6684F8"] + - [0x05005000, "textures/other_textures/sign_luigis_0"] + - [0x05006000, "textures/other_textures/sign_luigis_1"] + - [0x05007000, "textures/other_textures/sign_nintendo_red_0"] + - [0x05008000, "textures/other_textures/sign_nintendo_red_1"] + - [0x05009000, "textures/other_textures/texture_6774D8"] + - [0x05009800, "textures/other_textures/sign_falling_rocks"] + - [0x0500A000, "textures/other_textures/sign_backside"] + - [0x0500A800, "textures/other_textures/texture_679C04"] + - [0x0500B000, "textures/other_textures/texture_67B864"] + - [0x0500B800, "textures/other_textures/texture_67DC20"] + - [0x0500C000, "textures/other_textures/sign_yoshi"] + - [0x0500D000, "textures/other_textures/checkerboard_blue_gray"] + # Segment 7 + - [0x7000000, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_0"] + - [0x7000098, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_98"] + - [0x7000178, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_178"] + - [0x7000280, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_280"] + - [0x7000340, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_340"] + - [0x70003C8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3C8"] + - [0x7000448, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_448"] + - [0x7000480, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_480"] + - [0x7000508, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_508"] + - [0x7000570, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_570"] + - [0x70005D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5D8"] + - [0x70005F8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5F8"] + - [0x7000718, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_718"] + - [0x7000728, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_728"] + - [0x7000748, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_748"] + - [0x7000758, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_758"] + - [0x7000828, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_828"] + - [0x7000838, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_838"] + - [0x70008E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_8E0"] + - [0x70008F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_8F0"] + - [0x70009B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_9B0"] + - [0x7000A60, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_A60"] + - [0x7000AF8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_AF8"] + - [0x7000B88, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_B88"] + - [0x7000C18, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_C18"] + - [0x7000CA0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_CA0"] + - [0x7000D38, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_D38"] + - [0x7000DD0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_DD0"] + - [0x7000EB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_EB8"] + - [0x7000F68, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_F68"] + - [0x7001018, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1018"] + - [0x7001100, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1100"] + - [0x7001200, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1200"] + - [0x70012A0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_12A0"] + - [0x7001338, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1338"] + - [0x70013E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_13E8"] + - [0x7001488, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1488"] + - [0x7001538, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1538"] + - [0x70015D0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_15D0"] + - [0x7001670, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1670"] + - [0x7001740, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1740"] + - [0x70017E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_17E0"] + - [0x70018E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_18E8"] + - [0x7001988, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1988"] + - [0x7001A48, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1A48"] + - [0x7001AC8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1AC8"] + - [0x7001BE0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1BE0"] + - [0x7001C98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1C98"] + - [0x7001DB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1DB8"] + - [0x7001E90, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1E90"] + - [0x7001FE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1FE8"] + - [0x70020F8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_20F8"] + - [0x70021D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_21D8"] + - [0x7002278, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2278"] + - [0x7002380, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2380"] + - [0x7002458, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2458"] + - [0x7002530, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2530"] + - [0x7002600, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2600"] + - [0x70026C0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_26C0"] + - [0x7002760, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2760"] + - [0x70027F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_27F0"] + - [0x70028B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_28B0"] + - [0x70029E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_29E8"] + - [0x7002AE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2AE8"] + - [0x7002BD0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2BD0"] + - [0x7002CA8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2CA8"] + - [0x7002D68, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2D68"] + - [0x7002E38, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2E38"] + - [0x7002EE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2EE8"] + - [0x7002FE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2FE8"] + - [0x70030A8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_30A8"] + - [0x7003188, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3188"] + - [0x7003200, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3200"] + - [0x70032F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_32F0"] + - [0x7003390, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3390"] + - [0x7003410, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3410"] + - [0x70034E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_34E0"] + - [0x70035B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_35B0"] + - [0x7003670, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3670"] + - [0x7003708, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3708"] + - [0x70037B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_37B0"] + - [0x70038B8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_38B8"] + - [0x7003998, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3998"] + - [0x7003A80, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3A80"] + - [0x7003B98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3B98"] + - [0x7003CF0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3CF0"] + - [0x7003DD8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3DD8"] + - [0x7003EE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3EE8"] + - [0x7003FB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3FB8"] + - [0x7004148, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4148"] + - [0x7004608, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4608"] + - [0x7004618, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4618"] + - [0x7004690, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4690"] + - [0x70046F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_46F0"] + - [0x7004790, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4790"] + - [0x7004840, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4840"] + - [0x70048E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_48E8"] + - [0x7004970, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4970"] + - [0x70049F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_49F0"] + - [0x7004AB0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4AB0"] + - [0x7004B58, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4B58"] + - [0x7004C08, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4C08"] + - [0x7004CC8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4CC8"] + - [0x7004D90, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4D90"] + - [0x7004E40, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4E40"] + - [0x7004EB0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4EB0"] + - [0x7004F30, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4F30"] + - [0x7004FC0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4FC0"] + - [0x7005070, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5070"] + - [0x7005148, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5148"] + - [0x70051D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_51D8"] + - [0x7005258, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5258"] + - [0x70052C8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_52C8"] + - [0x7005338, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5338"] + - [0x70053D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_53D8"] + - [0x7005490, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5490"] + - [0x7005558, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5558"] + - [0x7005688, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5688"] + - [0x7005778, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5778"] + - [0x7005868, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5868"] + - [0x7005888, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5888"] + - [0x7005910, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5910"] + - [0x70059A0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_59A0"] + - [0x7005A00, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A00"] + - [0x7005A70, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A70"] + - [0x7005A98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A98"] + - [0x7005AE0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5AE0"] + # Segment 4 + - [0x4000000, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000000"] + - [0x4000200, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000200"] + - [0x4000400, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000400"] + - [0x4000600, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000600"] + - [0x4000800, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000800"] + - [0x4000a00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000A00"] + - [0x4000b00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000B00"] + - [0x4000d00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000D00"] + - [0x4000e00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000E00"] + - [0x4000f80, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000F80"] + - [0x40010c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040010C0"] + - [0x4001240, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001240"] + - [0x40012c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040012C0"] + - [0x4001340, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001340"] + - [0x40013c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040013C0"] + - [0x4001480, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001480"] + - [0x4001500, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001500"] + - [0x40016a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040016A0"] + - [0x4001860, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001860"] + - [0x40019a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040019A0"] + - [0x4001a60, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001A60"] + - [0x4001b40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001B40"] + - [0x4001b90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001B90"] + - [0x4001d80, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001D80"] + - [0x4001de0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001DE0"] + - [0x4001fc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001FC0"] + - [0x4002020, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002020"] + - [0x40020f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040020F0"] + - [0x40021b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040021B0"] + - [0x40022d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040022D0"] + - [0x40023b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040023B0"] + - [0x40025a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040025A0"] + - [0x4002630, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002630"] + - [0x40026f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040026F0"] + - [0x40028e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040028E0"] + - [0x4002a30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002A30"] + - [0x4002c30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002C30"] + - [0x4002d70, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002D70"] + - [0x4002f60, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002F60"] + - [0x4003020, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003020"] + - [0x4003110, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003110"] + - [0x40032f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040032F0"] + - [0x4003380, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003380"] + - [0x40034b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040034B0"] + - [0x4003690, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003690"] + - [0x4003780, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003780"] + - [0x4003970, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003970"] + - [0x40039d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040039D0"] + - [0x4003bd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003BD0"] + - [0x4003d20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003D20"] + - [0x4003f20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003F20"] + - [0x4003fb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003FB0"] + - [0x40041a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040041A0"] + - [0x40042e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040042E0"] + - [0x40044e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040044E0"] + - [0x4004540, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004540"] + - [0x4004720, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004720"] + - [0x4004920, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004920"] + - [0x40049e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040049E0"] + - [0x4004bc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004BC0"] + - [0x4004cb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004CB0"] + - [0x4004eb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004EB0"] + - [0x4004f70, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004F70"] + - [0x4005150, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005150"] + - [0x4005240, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005240"] + - [0x4005350, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005350"] + - [0x40053d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040053D0"] + - [0x40055b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040055B0"] + - [0x40057a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040057A0"] + - [0x4005980, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005980"] + - [0x4005b70, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005B70"] + - [0x4005cc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005CC0"] + - [0x4005eb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005EB0"] + - [0x4006070, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006070"] + - [0x4006270, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006270"] + - [0x4006470, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006470"] + - [0x4006660, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006660"] + - [0x40067c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040067C0"] + - [0x40069b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040069B0"] + - [0x4006b90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006B90"] + - [0x4006c30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006C30"] + - [0x4006e30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006E30"] + - [0x4007010, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007010"] + - [0x4007210, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007210"] + - [0x4007410, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007410"] + - [0x4007550, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007550"] + - [0x4007740, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007740"] + - [0x4007930, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007930"] + - [0x4007b30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007B30"] + - [0x4007bf0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007BF0"] + - [0x4007dd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007DD0"] + - [0x4007ef0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007EF0"] + - [0x40080f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040080F0"] + - [0x40081a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040081A0"] + - [0x4008380, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008380"] + - [0x4008560, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008560"] + - [0x4008750, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008750"] + - [0x4008840, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008840"] + - [0x4008a30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008A30"] + - [0x4008af0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008AF0"] + - [0x4008b30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008B30"] + - [0x4008d20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008D20"] + - [0x4008f10, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008F10"] + - [0x4008fd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008FD0"] + - [0x40091a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040091A0"] + - [0x40092d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040092D0"] + - [0x40094b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040094B0"] + - [0x4009690, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009690"] + - [0x40096c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040096C0"] + - [0x40098a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040098A0"] + - [0x40099c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040099C0"] + - [0x4009ba0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009BA0"] + - [0x4009c00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009C00"] + - [0x4009de0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009DE0"] + - [0x4009fc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009FC0"] + - [0x400a020, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A020"] + - [0x400a220, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A220"] + - [0x400a400, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A400"] + - [0x400a540, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A540"] + - [0x400a630, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A630"] + - [0x400a820, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A820"] + - [0x400aa00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AA00"] + - [0x400abe0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400ABE0"] + - [0x400ac60, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AC60"] + - [0x400ae50, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AE50"] + - [0x400b050, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B050"] + - [0x400b1a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B1A0"] + - [0x400b390, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B390"] + - [0x400b590, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B590"] + - [0x400b650, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B650"] + - [0x400b830, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B830"] + - [0x400ba30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BA30"] + - [0x400bc20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BC20"] + - [0x400be00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BE00"] + - [0x400be30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BE30"] + - [0x400c030, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C030"] + - [0x400c1b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C1B0"] + - [0x400c3a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C3A0"] + - [0x400c580, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C580"] + - [0x400c5b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C5B0"] + - [0x400c5e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C5E0"] + - [0x400c7d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C7D0"] + - [0x400c9c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C9C0"] + - [0x400cbb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CBB0"] + - [0x400cda0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CDA0"] + - [0x400ce90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CE90"] + - [0x400cfd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CFD0"] + - [0x400d1d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D1D0"] + - [0x400d3d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D3D0"] + - [0x400d580, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D580"] + - [0x400d780, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D780"] + - [0x400d810, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D810"] + - [0x400d9e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D9E0"] + - [0x400dbd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DBD0"] + - [0x400ddc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DDC0"] + - [0x400de20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DE20"] + - [0x400e010, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E010"] + - [0x400e0d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E0D0"] + - [0x400e2d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E2D0"] + - [0x400e300, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E300"] + - [0x400e4e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E4E0"] + - [0x400e510, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E510"] + - [0x400e6f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E6F0"] + - [0x400e840, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E840"] + - [0x400ea40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EA40"] + - [0x400ec40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EC40"] + - [0x400ee20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EE20"] + - [0x400ee50, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EE50"] + - [0x400f040, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F040"] + - [0x400f220, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F220"] + - [0x400f310, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F310"] + - [0x400f460, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F460"] + - [0x400f650, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F650"] + - [0x400f840, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F840"] + - [0x400f980, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F980"] + - [0x400fb10, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FB10"] + - [0x400fd10, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FD10"] + - [0x400ff00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FF00"] + - [0x400ff90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FF90"] + - [0x4010180, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010180"] + - [0x40101e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040101E0"] + - [0x40103c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040103C0"] + - [0x4010400, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010400"] + - [0x40105e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040105E0"] + - [0x40106d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040106D0"] + - [0x40108b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040108B0"] + - [0x4010910, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010910"] + - [0x4010ad0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010AD0"] + - [0x4010cd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010CD0"] + - [0x4010ed0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010ED0"] + - [0x40110d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040110D0"] + - [0x40112d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040112D0"] + - [0x40114d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040114D0"] + - [0x40116c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040116C0"] + - [0x40118a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040118A0"] + - [0x4011aa0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011AA0"] + - [0x4011ca0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011CA0"] + - [0x4011dd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011DD0"] + - [0x4011f30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011F30"] + - [0x4011f90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011F90"] + - [0x4012140, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012140"] + - [0x4012320, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012320"] + - [0x4012520, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012520"] + - [0x4012660, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012660"] + - [0x4012800, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012800"] + - [0x4012920, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012920"] + - [0x4012960, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012960"] + - [0x4012b40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012B40"] + - [0x4012ca0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012CA0"] + - [0x4012e80, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012E80"] + - [0x4013060, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013060"] + - [0x4013240, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013240"] + - [0x4013420, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013420"] + - [0x4013480, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013480"] + - [0x4013660, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013660"] + - [0x4013860, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013860"] + - [0x4013890, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013890"] + - [0x4013a90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013A90"] + - [0x4013ad0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013AD0"] + - [0x4013bf0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013BF0"] + - [0x4013d40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013D40"] + - [0x4013f00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013F00"] + - [0x4014100, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014100"] + - [0x4014180, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014180"] + - [0x4014380, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014380"] + - [0x4014560, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014560"] + - [0x4014620, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014620"] + - [0x4014800, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014800"] + - [0x4014860, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014860"] + - [0x40149e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040149E0"] + - [0x4014b00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014B00"] + - [0x4014c20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014C20"] + - [0x4014e00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014E00"] + - [0x4014f20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014F20"] + - [0x4015120, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015120"] + - [0x40152d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040152D0"] + - [0x4015450, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015450"] + - [0x4015510, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015510"] + - [0x40155d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040155D0"] + - [0x4015650, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015650"] + - [0x4015690, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015690"] + - [0x40156d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040156D0"] + - [0x4015750, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015750"] + - [0x4015790, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015790"] + - [0x40157d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040157D0"] + - [0x4015910, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015910"] + - [0x4015a80, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015A80"] + - [0x4015ac0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015AC0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_choco_mountain_dl_0: + symbol: d_course_choco_mountain_dl_0 + type: gfx + offset: 0x0 +d_course_choco_mountain_dl_B0: + symbol: d_course_choco_mountain_dl_B0 + type: gfx + offset: 0xb0 +d_course_choco_mountain_dl_150: + symbol: d_course_choco_mountain_dl_150 + type: gfx + offset: 0x150 +d_course_choco_mountain_dl_208: + symbol: d_course_choco_mountain_dl_208 + type: gfx + offset: 0x208 +d_course_choco_mountain_dl_2A8: + symbol: d_course_choco_mountain_dl_2A8 + type: gfx + offset: 0x2a8 +d_course_choco_mountain_dl_330: + symbol: d_course_choco_mountain_dl_330 + type: gfx + offset: 0x330 +d_course_choco_mountain_dl_410: + symbol: d_course_choco_mountain_dl_410 + type: gfx + offset: 0x410 +d_course_choco_mountain_dl_4D8: + symbol: d_course_choco_mountain_dl_4D8 + type: gfx + offset: 0x4d8 +d_course_choco_mountain_dl_588: + symbol: d_course_choco_mountain_dl_588 + type: gfx + offset: 0x588 +d_course_choco_mountain_dl_618: + symbol: d_course_choco_mountain_dl_618 + type: gfx + offset: 0x618 +d_course_choco_mountain_dl_6C0: + symbol: d_course_choco_mountain_dl_6C0 + type: gfx + offset: 0x6c0 +d_course_choco_mountain_dl_750: + symbol: d_course_choco_mountain_dl_750 + type: gfx + offset: 0x750 +d_course_choco_mountain_dl_7E8: + symbol: d_course_choco_mountain_dl_7E8 + type: gfx + offset: 0x7e8 +d_course_choco_mountain_dl_878: + symbol: d_course_choco_mountain_dl_878 + type: gfx + offset: 0x878 +d_course_choco_mountain_dl_908: + symbol: d_course_choco_mountain_dl_908 + type: gfx + offset: 0x908 +d_course_choco_mountain_dl_990: + symbol: d_course_choco_mountain_dl_990 + type: gfx + offset: 0x990 +d_course_choco_mountain_dl_A28: + symbol: d_course_choco_mountain_dl_A28 + type: gfx + offset: 0xa28 +d_course_choco_mountain_dl_B10: + symbol: d_course_choco_mountain_dl_B10 + type: gfx + offset: 0xb10 +d_course_choco_mountain_dl_BB8: + symbol: d_course_choco_mountain_dl_BB8 + type: gfx + offset: 0xbb8 +d_course_choco_mountain_dl_C40: + symbol: d_course_choco_mountain_dl_C40 + type: gfx + offset: 0xc40 +d_course_choco_mountain_dl_D30: + symbol: d_course_choco_mountain_dl_D30 + type: gfx + offset: 0xd30 +d_course_choco_mountain_dl_DF8: + symbol: d_course_choco_mountain_dl_DF8 + type: gfx + offset: 0xdf8 +d_course_choco_mountain_dl_EA0: + symbol: d_course_choco_mountain_dl_EA0 + type: gfx + offset: 0xea0 +d_course_choco_mountain_dl_F38: + symbol: d_course_choco_mountain_dl_F38 + type: gfx + offset: 0xf38 +d_course_choco_mountain_dl_1000: + symbol: d_course_choco_mountain_dl_1000 + type: gfx + offset: 0x1000 +d_course_choco_mountain_dl_10A8: + symbol: d_course_choco_mountain_dl_10A8 + type: gfx + offset: 0x10a8 +d_course_choco_mountain_dl_1150: + symbol: d_course_choco_mountain_dl_1150 + type: gfx + offset: 0x1150 +d_course_choco_mountain_dl_11D8: + symbol: d_course_choco_mountain_dl_11D8 + type: gfx + offset: 0x11d8 +d_course_choco_mountain_dl_1280: + symbol: d_course_choco_mountain_dl_1280 + type: gfx + offset: 0x1280 +d_course_choco_mountain_dl_1330: + symbol: d_course_choco_mountain_dl_1330 + type: gfx + offset: 0x1330 +d_course_choco_mountain_dl_13E0: + symbol: d_course_choco_mountain_dl_13E0 + type: gfx + offset: 0x13e0 +d_course_choco_mountain_dl_1488: + symbol: d_course_choco_mountain_dl_1488 + type: gfx + offset: 0x1488 +d_course_choco_mountain_dl_1528: + symbol: d_course_choco_mountain_dl_1528 + type: gfx + offset: 0x1528 +d_course_choco_mountain_dl_15E8: + symbol: d_course_choco_mountain_dl_15E8 + type: gfx + offset: 0x15e8 +d_course_choco_mountain_dl_16B8: + symbol: d_course_choco_mountain_dl_16B8 + type: gfx + offset: 0x16b8 +d_course_choco_mountain_dl_1788: + symbol: d_course_choco_mountain_dl_1788 + type: gfx + offset: 0x1788 +d_course_choco_mountain_dl_1810: + symbol: d_course_choco_mountain_dl_1810 + type: gfx + offset: 0x1810 +d_course_choco_mountain_dl_18B8: + symbol: d_course_choco_mountain_dl_18B8 + type: gfx + offset: 0x18b8 +d_course_choco_mountain_dl_1970: + symbol: d_course_choco_mountain_dl_1970 + type: gfx + offset: 0x1970 +d_course_choco_mountain_dl_1A40: + symbol: d_course_choco_mountain_dl_1A40 + type: gfx + offset: 0x1a40 +d_course_choco_mountain_dl_1AC8: + symbol: d_course_choco_mountain_dl_1AC8 + type: gfx + offset: 0x1ac8 +d_course_choco_mountain_dl_1B70: + symbol: d_course_choco_mountain_dl_1B70 + type: gfx + offset: 0x1b70 +d_course_choco_mountain_dl_1C18: + symbol: d_course_choco_mountain_dl_1C18 + type: gfx + offset: 0x1c18 +d_course_choco_mountain_dl_1CC8: + symbol: d_course_choco_mountain_dl_1CC8 + type: gfx + offset: 0x1cc8 +d_course_choco_mountain_dl_1D50: + symbol: d_course_choco_mountain_dl_1D50 + type: gfx + offset: 0x1d50 +d_course_choco_mountain_dl_1E08: + symbol: d_course_choco_mountain_dl_1E08 + type: gfx + offset: 0x1e08 +d_course_choco_mountain_dl_1E98: + symbol: d_course_choco_mountain_dl_1E98 + type: gfx + offset: 0x1e98 +d_course_choco_mountain_dl_1F40: + symbol: d_course_choco_mountain_dl_1F40 + type: gfx + offset: 0x1f40 +d_course_choco_mountain_dl_1FE0: + symbol: d_course_choco_mountain_dl_1FE0 + type: gfx + offset: 0x1fe0 +d_course_choco_mountain_dl_20C8: + symbol: d_course_choco_mountain_dl_20C8 + type: gfx + offset: 0x20c8 +d_course_choco_mountain_dl_2168: + symbol: d_course_choco_mountain_dl_2168 + type: gfx + offset: 0x2168 +d_course_choco_mountain_dl_2228: + symbol: d_course_choco_mountain_dl_2228 + type: gfx + offset: 0x2228 +d_course_choco_mountain_dl_22D8: + symbol: d_course_choco_mountain_dl_22D8 + type: gfx + offset: 0x22d8 +d_course_choco_mountain_dl_23C8: + symbol: d_course_choco_mountain_dl_23C8 + type: gfx + offset: 0x23c8 +d_course_choco_mountain_dl_2468: + symbol: d_course_choco_mountain_dl_2468 + type: gfx + offset: 0x2468 +d_course_choco_mountain_dl_2538: + symbol: d_course_choco_mountain_dl_2538 + type: gfx + offset: 0x2538 +d_course_choco_mountain_dl_2600: + symbol: d_course_choco_mountain_dl_2600 + type: gfx + offset: 0x2600 +d_course_choco_mountain_dl_26D8: + symbol: d_course_choco_mountain_dl_26D8 + type: gfx + offset: 0x26d8 +d_course_choco_mountain_dl_2780: + symbol: d_course_choco_mountain_dl_2780 + type: gfx + offset: 0x2780 +d_course_choco_mountain_dl_2840: + symbol: d_course_choco_mountain_dl_2840 + type: gfx + offset: 0x2840 +d_course_choco_mountain_dl_2908: + symbol: d_course_choco_mountain_dl_2908 + type: gfx + offset: 0x2908 +d_course_choco_mountain_dl_29B8: + symbol: d_course_choco_mountain_dl_29B8 + type: gfx + offset: 0x29b8 +d_course_choco_mountain_dl_2A88: + symbol: d_course_choco_mountain_dl_2A88 + type: gfx + offset: 0x2a88 +d_course_choco_mountain_dl_2B38: + symbol: d_course_choco_mountain_dl_2B38 + type: gfx + offset: 0x2b38 +d_course_choco_mountain_dl_2C08: + symbol: d_course_choco_mountain_dl_2C08 + type: gfx + offset: 0x2c08 +d_course_choco_mountain_dl_2C98: + symbol: d_course_choco_mountain_dl_2C98 + type: gfx + offset: 0x2c98 +d_course_choco_mountain_dl_2D50: + symbol: d_course_choco_mountain_dl_2D50 + type: gfx + offset: 0x2d50 +d_course_choco_mountain_dl_2DE8: + symbol: d_course_choco_mountain_dl_2DE8 + type: gfx + offset: 0x2de8 +d_course_choco_mountain_dl_2EA0: + symbol: d_course_choco_mountain_dl_2EA0 + type: gfx + offset: 0x2ea0 +d_course_choco_mountain_dl_2F28: + symbol: d_course_choco_mountain_dl_2F28 + type: gfx + offset: 0x2f28 +d_course_choco_mountain_dl_2FD0: + symbol: d_course_choco_mountain_dl_2FD0 + type: gfx + offset: 0x2fd0 +d_course_choco_mountain_dl_3070: + symbol: d_course_choco_mountain_dl_3070 + type: gfx + offset: 0x3070 +d_course_choco_mountain_dl_3120: + symbol: d_course_choco_mountain_dl_3120 + type: gfx + offset: 0x3120 +d_course_choco_mountain_dl_31D8: + symbol: d_course_choco_mountain_dl_31D8 + type: gfx + offset: 0x31d8 +d_course_choco_mountain_dl_32B0: + symbol: d_course_choco_mountain_dl_32B0 + type: gfx + offset: 0x32b0 +d_course_choco_mountain_dl_3368: + symbol: d_course_choco_mountain_dl_3368 + type: gfx + offset: 0x3368 +d_course_choco_mountain_dl_3438: + symbol: d_course_choco_mountain_dl_3438 + type: gfx + offset: 0x3438 +d_course_choco_mountain_dl_3550: + symbol: d_course_choco_mountain_dl_3550 + type: gfx + offset: 0x3550 +d_course_choco_mountain_dl_3618: + symbol: d_course_choco_mountain_dl_3618 + type: gfx + offset: 0x3618 +d_course_choco_mountain_dl_36F0: + symbol: d_course_choco_mountain_dl_36F0 + type: gfx + offset: 0x36f0 +d_course_choco_mountain_dl_37D0: + symbol: d_course_choco_mountain_dl_37D0 + type: gfx + offset: 0x37d0 +d_course_choco_mountain_dl_38E8: + symbol: d_course_choco_mountain_dl_38E8 + type: gfx + offset: 0x38e8 +d_course_choco_mountain_dl_39A8: + symbol: d_course_choco_mountain_dl_39A8 + type: gfx + offset: 0x39a8 +d_course_choco_mountain_dl_3A80: + symbol: d_course_choco_mountain_dl_3A80 + type: gfx + offset: 0x3a80 +d_course_choco_mountain_dl_3B60: + symbol: d_course_choco_mountain_dl_3B60 + type: gfx + offset: 0x3b60 +d_course_choco_mountain_dl_3C18: + symbol: d_course_choco_mountain_dl_3C18 + type: gfx + offset: 0x3c18 +d_course_choco_mountain_dl_3CB8: + symbol: d_course_choco_mountain_dl_3CB8 + type: gfx + offset: 0x3cb8 +d_course_choco_mountain_dl_3D70: + symbol: d_course_choco_mountain_dl_3D70 + type: gfx + offset: 0x3d70 +d_course_choco_mountain_dl_3E18: + symbol: d_course_choco_mountain_dl_3E18 + type: gfx + offset: 0x3e18 +d_course_choco_mountain_dl_3EE0: + symbol: d_course_choco_mountain_dl_3EE0 + type: gfx + offset: 0x3ee0 +d_course_choco_mountain_dl_3FA8: + symbol: d_course_choco_mountain_dl_3FA8 + type: gfx + offset: 0x3fa8 +d_course_choco_mountain_dl_4090: + symbol: d_course_choco_mountain_dl_4090 + type: gfx + offset: 0x4090 +d_course_choco_mountain_dl_4138: + symbol: d_course_choco_mountain_dl_4138 + type: gfx + offset: 0x4138 +d_course_choco_mountain_dl_41F8: + symbol: d_course_choco_mountain_dl_41F8 + type: gfx + offset: 0x41f8 +d_course_choco_mountain_dl_42C8: + symbol: d_course_choco_mountain_dl_42C8 + type: gfx + offset: 0x42c8 +d_course_choco_mountain_dl_43C8: + symbol: d_course_choco_mountain_dl_43C8 + type: gfx + offset: 0x43c8 +d_course_choco_mountain_6005AF8: + symbol: d_course_choco_mountain_6005AF8 + type: vtx + offset: 0x5af8 + count: 4 +d_course_choco_mountain_falling_rock_model: + symbol: d_course_choco_mountain_falling_rock_model + type: vtx + offset: 0x6B38 + count: 65 +d_course_choco_mountain_6006C28: + symbol: d_course_choco_mountain_6006C28 + type: vtx + offset: 0x6C28 + count: 5 +d_course_choco_mountain_6006D08: + symbol: d_course_choco_mountain_6006D08 + type: vtx + offset: 0x6D08 + count: 15 +d_course_choco_mountain_6006C78: + symbol: d_course_choco_mountain_6006C78 + type: vtx + offset: 0x6C78 + count: 5 +d_course_choco_mountain_6006DA8: + symbol: d_course_choco_mountain_6006DA8 + type: vtx + offset: 0x6DA8 + count: 15 +d_course_choco_mountain_6006CC8: + symbol: d_course_choco_mountain_6006CC8 + type: vtx + offset: 0x6CC8 + count: 4 +d_course_choco_mountain_6006E48: + symbol: d_course_choco_mountain_6006E48 + type: vtx + offset: 0x6E48 + count: 12 +d_course_choco_mountain_6006EC8: + symbol: d_course_choco_mountain_6006EC8 + type: vtx + offset: 0x6EC8 + count: 3 + +d_course_choco_mountain_dl_6EF8: + symbol: d_course_choco_mountain_dl_6EF8 + type: gfx + offset: 0x6ef8 +d_course_choco_mountain_dl_6F48: + symbol: d_course_choco_mountain_dl_6F48 + type: gfx + offset: 0x6f48 +d_course_choco_mountain_dl_6F88: + symbol: d_course_choco_mountain_dl_6F88 + type: gfx + offset: 0x6f88 +d_course_choco_mountain_dl_falling_rock: + symbol: d_course_choco_mountain_dl_falling_rock + type: gfx + offset: 0x6fe0 +d_course_choco_mountain_dl_71B8: + symbol: d_course_choco_mountain_dl_71B8 + type: gfx + offset: 0x71b0 diff --git a/yamls/us/models/tracks/choco_mountain/choco_mountain_displaylists.yml b/yamls/us/models/tracks/choco_mountain/choco_mountain_displaylists.yml new file mode 100644 index 000000000..79ae1ddf3 --- /dev/null +++ b/yamls/us/models/tracks/choco_mountain/choco_mountain_displaylists.yml @@ -0,0 +1,925 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x8A55C4 + no_compression: true + segments: + - [0x0E, 0x8A55C4] + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_64619C"] + - [0x05000800, "textures/other_textures/texture_64647C"] + - [0x05001800, "textures/other_textures/texture_647F4C"] + - [0x05002800, "textures/other_textures/texture_64FBF4"] + - [0x05003000, "textures/other_textures/texture_653DB0"] + - [0x05003800, "textures/other_textures/texture_652B54"] + - [0x05004000, "textures/other_textures/texture_65315C"] + - [0x05004800, "textures/other_textures/texture_6684F8"] + - [0x05005000, "textures/other_textures/sign_luigis_0"] + - [0x05006000, "textures/other_textures/sign_luigis_1"] + - [0x05007000, "textures/other_textures/sign_nintendo_red_0"] + - [0x05008000, "textures/other_textures/sign_nintendo_red_1"] + - [0x05009000, "textures/other_textures/texture_6774D8"] + - [0x05009800, "textures/other_textures/sign_falling_rocks"] + - [0x0500A000, "textures/other_textures/sign_backside"] + - [0x0500A800, "textures/other_textures/texture_679C04"] + - [0x0500B000, "textures/other_textures/texture_67B864"] + - [0x0500B800, "textures/other_textures/texture_67DC20"] + - [0x0500C000, "textures/other_textures/sign_yoshi"] + - [0x0500D000, "textures/other_textures/checkerboard_blue_gray"] + # Segment 7 + - [0x7000000, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_0"] + - [0x7000098, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_98"] + - [0x7000178, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_178"] + - [0x7000280, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_280"] + - [0x7000340, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_340"] + - [0x70003C8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3C8"] + - [0x7000448, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_448"] + - [0x7000480, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_480"] + - [0x7000508, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_508"] + - [0x7000570, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_570"] + - [0x70005D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5D8"] + - [0x70005F8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5F8"] + - [0x7000718, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_718"] + - [0x7000728, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_728"] + - [0x7000748, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_748"] + - [0x7000758, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_758"] + - [0x7000828, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_828"] + - [0x7000838, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_838"] + - [0x70008E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_8E0"] + - [0x70008F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_8F0"] + - [0x70009B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_9B0"] + - [0x7000A60, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_A60"] + - [0x7000AF8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_AF8"] + - [0x7000B88, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_B88"] + - [0x7000C18, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_C18"] + - [0x7000CA0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_CA0"] + - [0x7000D38, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_D38"] + - [0x7000DD0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_DD0"] + - [0x7000EB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_EB8"] + - [0x7000F68, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_F68"] + - [0x7001018, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1018"] + - [0x7001100, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1100"] + - [0x7001200, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1200"] + - [0x70012A0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_12A0"] + - [0x7001338, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1338"] + - [0x70013E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_13E8"] + - [0x7001488, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1488"] + - [0x7001538, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1538"] + - [0x70015D0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_15D0"] + - [0x7001670, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1670"] + - [0x7001740, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1740"] + - [0x70017E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_17E0"] + - [0x70018E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_18E8"] + - [0x7001988, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1988"] + - [0x7001A48, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1A48"] + - [0x7001AC8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1AC8"] + - [0x7001BE0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1BE0"] + - [0x7001C98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1C98"] + - [0x7001DB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1DB8"] + - [0x7001E90, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1E90"] + - [0x7001FE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1FE8"] + - [0x70020F8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_20F8"] + - [0x70021D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_21D8"] + - [0x7002278, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2278"] + - [0x7002380, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2380"] + - [0x7002458, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2458"] + - [0x7002530, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2530"] + - [0x7002600, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2600"] + - [0x70026C0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_26C0"] + - [0x7002760, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2760"] + - [0x70027F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_27F0"] + - [0x70028B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_28B0"] + - [0x70029E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_29E8"] + - [0x7002AE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2AE8"] + - [0x7002BD0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2BD0"] + - [0x7002CA8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2CA8"] + - [0x7002D68, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2D68"] + - [0x7002E38, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2E38"] + - [0x7002EE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2EE8"] + - [0x7002FE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2FE8"] + - [0x70030A8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_30A8"] + - [0x7003188, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3188"] + - [0x7003200, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3200"] + - [0x70032F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_32F0"] + - [0x7003390, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3390"] + - [0x7003410, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3410"] + - [0x70034E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_34E0"] + - [0x70035B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_35B0"] + - [0x7003670, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3670"] + - [0x7003708, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3708"] + - [0x70037B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_37B0"] + - [0x70038B8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_38B8"] + - [0x7003998, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3998"] + - [0x7003A80, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3A80"] + - [0x7003B98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3B98"] + - [0x7003CF0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3CF0"] + - [0x7003DD8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3DD8"] + - [0x7003EE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3EE8"] + - [0x7003FB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3FB8"] + - [0x7004148, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4148"] + - [0x7004608, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4608"] + - [0x7004618, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4618"] + - [0x7004690, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4690"] + - [0x70046F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_46F0"] + - [0x7004790, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4790"] + - [0x7004840, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4840"] + - [0x70048E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_48E8"] + - [0x7004970, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4970"] + - [0x70049F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_49F0"] + - [0x7004AB0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4AB0"] + - [0x7004B58, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4B58"] + - [0x7004C08, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4C08"] + - [0x7004CC8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4CC8"] + - [0x7004D90, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4D90"] + - [0x7004E40, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4E40"] + - [0x7004EB0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4EB0"] + - [0x7004F30, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4F30"] + - [0x7004FC0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4FC0"] + - [0x7005070, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5070"] + - [0x7005148, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5148"] + - [0x70051D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_51D8"] + - [0x7005258, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5258"] + - [0x70052C8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_52C8"] + - [0x7005338, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5338"] + - [0x70053D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_53D8"] + - [0x7005490, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5490"] + - [0x7005558, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5558"] + - [0x7005688, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5688"] + - [0x7005778, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5778"] + - [0x7005868, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5868"] + - [0x7005888, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5888"] + - [0x7005910, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5910"] + - [0x70059A0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_59A0"] + - [0x7005A00, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A00"] + - [0x7005A70, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A70"] + - [0x7005A98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A98"] + - [0x7005AE0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5AE0"] + # Segment 4 + - [0x4000000, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000000"] + - [0x4000200, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000200"] + - [0x4000400, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000400"] + - [0x4000600, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000600"] + - [0x4000800, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000800"] + - [0x4000a00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000A00"] + - [0x4000b00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000B00"] + - [0x4000d00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000D00"] + - [0x4000e00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000E00"] + - [0x4000f80, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04000F80"] + - [0x40010c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040010C0"] + - [0x4001240, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001240"] + - [0x40012c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040012C0"] + - [0x4001340, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001340"] + - [0x40013c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040013C0"] + - [0x4001480, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001480"] + - [0x4001500, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001500"] + - [0x40016a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040016A0"] + - [0x4001860, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001860"] + - [0x40019a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040019A0"] + - [0x4001a60, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001A60"] + - [0x4001b40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001B40"] + - [0x4001b90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001B90"] + - [0x4001d80, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001D80"] + - [0x4001de0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001DE0"] + - [0x4001fc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04001FC0"] + - [0x4002020, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002020"] + - [0x40020f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040020F0"] + - [0x40021b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040021B0"] + - [0x40022d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040022D0"] + - [0x40023b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040023B0"] + - [0x40025a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040025A0"] + - [0x4002630, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002630"] + - [0x40026f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040026F0"] + - [0x40028e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040028E0"] + - [0x4002a30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002A30"] + - [0x4002c30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002C30"] + - [0x4002d70, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002D70"] + - [0x4002f60, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04002F60"] + - [0x4003020, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003020"] + - [0x4003110, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003110"] + - [0x40032f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040032F0"] + - [0x4003380, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003380"] + - [0x40034b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040034B0"] + - [0x4003690, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003690"] + - [0x4003780, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003780"] + - [0x4003970, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003970"] + - [0x40039d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040039D0"] + - [0x4003bd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003BD0"] + - [0x4003d20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003D20"] + - [0x4003f20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003F20"] + - [0x4003fb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04003FB0"] + - [0x40041a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040041A0"] + - [0x40042e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040042E0"] + - [0x40044e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040044E0"] + - [0x4004540, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004540"] + - [0x4004720, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004720"] + - [0x4004920, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004920"] + - [0x40049e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040049E0"] + - [0x4004bc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004BC0"] + - [0x4004cb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004CB0"] + - [0x4004eb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004EB0"] + - [0x4004f70, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04004F70"] + - [0x4005150, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005150"] + - [0x4005240, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005240"] + - [0x4005350, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005350"] + - [0x40053d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040053D0"] + - [0x40055b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040055B0"] + - [0x40057a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040057A0"] + - [0x4005980, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005980"] + - [0x4005b70, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005B70"] + - [0x4005cc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005CC0"] + - [0x4005eb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04005EB0"] + - [0x4006070, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006070"] + - [0x4006270, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006270"] + - [0x4006470, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006470"] + - [0x4006660, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006660"] + - [0x40067c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040067C0"] + - [0x40069b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040069B0"] + - [0x4006b90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006B90"] + - [0x4006c30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006C30"] + - [0x4006e30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04006E30"] + - [0x4007010, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007010"] + - [0x4007210, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007210"] + - [0x4007410, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007410"] + - [0x4007550, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007550"] + - [0x4007740, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007740"] + - [0x4007930, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007930"] + - [0x4007b30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007B30"] + - [0x4007bf0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007BF0"] + - [0x4007dd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007DD0"] + - [0x4007ef0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04007EF0"] + - [0x40080f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040080F0"] + - [0x40081a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040081A0"] + - [0x4008380, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008380"] + - [0x4008560, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008560"] + - [0x4008750, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008750"] + - [0x4008840, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008840"] + - [0x4008a30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008A30"] + - [0x4008af0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008AF0"] + - [0x4008b30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008B30"] + - [0x4008d20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008D20"] + - [0x4008f10, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008F10"] + - [0x4008fd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04008FD0"] + - [0x40091a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040091A0"] + - [0x40092d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040092D0"] + - [0x40094b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040094B0"] + - [0x4009690, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009690"] + - [0x40096c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040096C0"] + - [0x40098a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040098A0"] + - [0x40099c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040099C0"] + - [0x4009ba0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009BA0"] + - [0x4009c00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009C00"] + - [0x4009de0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009DE0"] + - [0x4009fc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04009FC0"] + - [0x400a020, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A020"] + - [0x400a220, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A220"] + - [0x400a400, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A400"] + - [0x400a540, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A540"] + - [0x400a630, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A630"] + - [0x400a820, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400A820"] + - [0x400aa00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AA00"] + - [0x400abe0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400ABE0"] + - [0x400ac60, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AC60"] + - [0x400ae50, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400AE50"] + - [0x400b050, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B050"] + - [0x400b1a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B1A0"] + - [0x400b390, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B390"] + - [0x400b590, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B590"] + - [0x400b650, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B650"] + - [0x400b830, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400B830"] + - [0x400ba30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BA30"] + - [0x400bc20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BC20"] + - [0x400be00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BE00"] + - [0x400be30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400BE30"] + - [0x400c030, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C030"] + - [0x400c1b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C1B0"] + - [0x400c3a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C3A0"] + - [0x400c580, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C580"] + - [0x400c5b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C5B0"] + - [0x400c5e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C5E0"] + - [0x400c7d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C7D0"] + - [0x400c9c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400C9C0"] + - [0x400cbb0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CBB0"] + - [0x400cda0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CDA0"] + - [0x400ce90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CE90"] + - [0x400cfd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400CFD0"] + - [0x400d1d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D1D0"] + - [0x400d3d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D3D0"] + - [0x400d580, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D580"] + - [0x400d780, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D780"] + - [0x400d810, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D810"] + - [0x400d9e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400D9E0"] + - [0x400dbd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DBD0"] + - [0x400ddc0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DDC0"] + - [0x400de20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400DE20"] + - [0x400e010, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E010"] + - [0x400e0d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E0D0"] + - [0x400e2d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E2D0"] + - [0x400e300, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E300"] + - [0x400e4e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E4E0"] + - [0x400e510, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E510"] + - [0x400e6f0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E6F0"] + - [0x400e840, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400E840"] + - [0x400ea40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EA40"] + - [0x400ec40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EC40"] + - [0x400ee20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EE20"] + - [0x400ee50, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400EE50"] + - [0x400f040, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F040"] + - [0x400f220, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F220"] + - [0x400f310, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F310"] + - [0x400f460, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F460"] + - [0x400f650, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F650"] + - [0x400f840, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F840"] + - [0x400f980, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400F980"] + - [0x400fb10, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FB10"] + - [0x400fd10, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FD10"] + - [0x400ff00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FF00"] + - [0x400ff90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x0400FF90"] + - [0x4010180, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010180"] + - [0x40101e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040101E0"] + - [0x40103c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040103C0"] + - [0x4010400, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010400"] + - [0x40105e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040105E0"] + - [0x40106d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040106D0"] + - [0x40108b0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040108B0"] + - [0x4010910, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010910"] + - [0x4010ad0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010AD0"] + - [0x4010cd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010CD0"] + - [0x4010ed0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04010ED0"] + - [0x40110d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040110D0"] + - [0x40112d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040112D0"] + - [0x40114d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040114D0"] + - [0x40116c0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040116C0"] + - [0x40118a0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040118A0"] + - [0x4011aa0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011AA0"] + - [0x4011ca0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011CA0"] + - [0x4011dd0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011DD0"] + - [0x4011f30, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011F30"] + - [0x4011f90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04011F90"] + - [0x4012140, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012140"] + - [0x4012320, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012320"] + - [0x4012520, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012520"] + - [0x4012660, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012660"] + - [0x4012800, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012800"] + - [0x4012920, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012920"] + - [0x4012960, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012960"] + - [0x4012b40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012B40"] + - [0x4012ca0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012CA0"] + - [0x4012e80, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04012E80"] + - [0x4013060, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013060"] + - [0x4013240, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013240"] + - [0x4013420, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013420"] + - [0x4013480, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013480"] + - [0x4013660, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013660"] + - [0x4013860, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013860"] + - [0x4013890, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013890"] + - [0x4013a90, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013A90"] + - [0x4013ad0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013AD0"] + - [0x4013bf0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013BF0"] + - [0x4013d40, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013D40"] + - [0x4013f00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04013F00"] + - [0x4014100, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014100"] + - [0x4014180, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014180"] + - [0x4014380, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014380"] + - [0x4014560, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014560"] + - [0x4014620, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014620"] + - [0x4014800, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014800"] + - [0x4014860, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014860"] + - [0x40149e0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040149E0"] + - [0x4014b00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014B00"] + - [0x4014c20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014C20"] + - [0x4014e00, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014E00"] + - [0x4014f20, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04014F20"] + - [0x4015120, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015120"] + - [0x40152d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040152D0"] + - [0x4015450, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015450"] + - [0x4015510, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015510"] + - [0x40155d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040155D0"] + - [0x4015650, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015650"] + - [0x4015690, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015690"] + - [0x40156d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040156D0"] + - [0x4015750, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015750"] + - [0x4015790, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015790"] + - [0x40157d0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x040157D0"] + - [0x4015910, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015910"] + - [0x4015a80, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015A80"] + - [0x4015ac0, "models/tracks/choco_mountain/choco_mountain_vertices/d_course_choco_mountain_vertex_0x04015AC0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_choco_mountain_packed_dl_0: + symbol: d_course_choco_mountain_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_choco_mountain_packed_dl_98: + symbol: d_course_choco_mountain_packed_dl_98 + type: MK64:PACKED_GFX + offset: 0x34 +d_course_choco_mountain_packed_dl_178: + symbol: d_course_choco_mountain_packed_dl_178 + type: MK64:PACKED_GFX + offset: 0x93 +d_course_choco_mountain_packed_dl_280: + symbol: d_course_choco_mountain_packed_dl_280 + type: MK64:PACKED_GFX + offset: 0x109 +d_course_choco_mountain_packed_dl_340: + symbol: d_course_choco_mountain_packed_dl_340 + type: MK64:PACKED_GFX + offset: 0x154 +d_course_choco_mountain_packed_dl_3C8: + symbol: d_course_choco_mountain_packed_dl_3C8 + type: MK64:PACKED_GFX + offset: 0x17E +d_course_choco_mountain_packed_dl_448: + symbol: d_course_choco_mountain_packed_dl_448 + type: MK64:PACKED_GFX + offset: 0x1A3 +d_course_choco_mountain_packed_dl_480: + symbol: d_course_choco_mountain_packed_dl_480 + type: MK64:PACKED_GFX + offset: 0x1B6 +d_course_choco_mountain_packed_dl_508: + symbol: d_course_choco_mountain_packed_dl_508 + type: MK64:PACKED_GFX + offset: 0x1E0 +d_course_choco_mountain_packed_dl_570: + symbol: d_course_choco_mountain_packed_dl_570 + type: MK64:PACKED_GFX + offset: 0x1F6 +d_course_choco_mountain_packed_dl_5D8: + symbol: d_course_choco_mountain_packed_dl_5D8 + type: MK64:PACKED_GFX + offset: 0x20C +d_course_choco_mountain_packed_dl_5F8: + symbol: d_course_choco_mountain_packed_dl_5F8 + type: MK64:PACKED_GFX + offset: 0x216 +d_course_choco_mountain_packed_dl_718: + symbol: d_course_choco_mountain_packed_dl_718 + type: MK64:PACKED_GFX + offset: 0x265 +d_course_choco_mountain_packed_dl_728: + symbol: d_course_choco_mountain_packed_dl_728 + type: MK64:PACKED_GFX + offset: 0x269 +d_course_choco_mountain_packed_dl_748: + symbol: d_course_choco_mountain_packed_dl_748 + type: MK64:PACKED_GFX + offset: 0x273 +d_course_choco_mountain_packed_dl_758: + symbol: d_course_choco_mountain_packed_dl_758 + type: MK64:PACKED_GFX + offset: 0x277 +d_course_choco_mountain_packed_dl_828: + symbol: d_course_choco_mountain_packed_dl_828 + type: MK64:PACKED_GFX + offset: 0x2CE +d_course_choco_mountain_packed_dl_838: + symbol: d_course_choco_mountain_packed_dl_838 + type: MK64:PACKED_GFX + offset: 0x2D2 +d_course_choco_mountain_packed_dl_8E0: + symbol: d_course_choco_mountain_packed_dl_8E0 + type: MK64:PACKED_GFX + offset: 0x310 +d_course_choco_mountain_packed_dl_8F0: + symbol: d_course_choco_mountain_packed_dl_8F0 + type: MK64:PACKED_GFX + offset: 0x314 +d_course_choco_mountain_packed_dl_9B0: + symbol: d_course_choco_mountain_packed_dl_9B0 + type: MK64:PACKED_GFX + offset: 0x348 +d_course_choco_mountain_packed_dl_A60: + symbol: d_course_choco_mountain_packed_dl_A60 + type: MK64:PACKED_GFX + offset: 0x370 +d_course_choco_mountain_packed_dl_AF8: + symbol: d_course_choco_mountain_packed_dl_AF8 + type: MK64:PACKED_GFX + offset: 0x3A0 +d_course_choco_mountain_packed_dl_B88: + symbol: d_course_choco_mountain_packed_dl_B88 + type: MK64:PACKED_GFX + offset: 0x3CD +d_course_choco_mountain_packed_dl_C18: + symbol: d_course_choco_mountain_packed_dl_C18 + type: MK64:PACKED_GFX + offset: 0x3FA +d_course_choco_mountain_packed_dl_CA0: + symbol: d_course_choco_mountain_packed_dl_CA0 + type: MK64:PACKED_GFX + offset: 0x424 +d_course_choco_mountain_packed_dl_D38: + symbol: d_course_choco_mountain_packed_dl_D38 + type: MK64:PACKED_GFX + offset: 0x458 +d_course_choco_mountain_packed_dl_DD0: + symbol: d_course_choco_mountain_packed_dl_DD0 + type: MK64:PACKED_GFX + offset: 0x48A +d_course_choco_mountain_packed_dl_EB8: + symbol: d_course_choco_mountain_packed_dl_EB8 + type: MK64:PACKED_GFX + offset: 0x4D1 +d_course_choco_mountain_packed_dl_F68: + symbol: d_course_choco_mountain_packed_dl_F68 + type: MK64:PACKED_GFX + offset: 0x50E +d_course_choco_mountain_packed_dl_1018: + symbol: d_course_choco_mountain_packed_dl_1018 + type: MK64:PACKED_GFX + offset: 0x54B +d_course_choco_mountain_packed_dl_1100: + symbol: d_course_choco_mountain_packed_dl_1100 + type: MK64:PACKED_GFX + offset: 0x596 +d_course_choco_mountain_packed_dl_1200: + symbol: d_course_choco_mountain_packed_dl_1200 + type: MK64:PACKED_GFX + offset: 0x5EE +d_course_choco_mountain_packed_dl_12A0: + symbol: d_course_choco_mountain_packed_dl_12A0 + type: MK64:PACKED_GFX + offset: 0x623 +d_course_choco_mountain_packed_dl_1338: + symbol: d_course_choco_mountain_packed_dl_1338 + type: MK64:PACKED_GFX + offset: 0x653 +d_course_choco_mountain_packed_dl_13E8: + symbol: d_course_choco_mountain_packed_dl_13E8 + type: MK64:PACKED_GFX + offset: 0x690 +d_course_choco_mountain_packed_dl_1488: + symbol: d_course_choco_mountain_packed_dl_1488 + type: MK64:PACKED_GFX + offset: 0x6C3 +d_course_choco_mountain_packed_dl_1538: + symbol: d_course_choco_mountain_packed_dl_1538 + type: MK64:PACKED_GFX + offset: 0x700 +d_course_choco_mountain_packed_dl_15D0: + symbol: d_course_choco_mountain_packed_dl_15D0 + type: MK64:PACKED_GFX + offset: 0x732 +d_course_choco_mountain_packed_dl_1670: + symbol: d_course_choco_mountain_packed_dl_1670 + type: MK64:PACKED_GFX + offset: 0x76C +d_course_choco_mountain_packed_dl_1740: + symbol: d_course_choco_mountain_packed_dl_1740 + type: MK64:PACKED_GFX + offset: 0x7BD +d_course_choco_mountain_packed_dl_17E0: + symbol: d_course_choco_mountain_packed_dl_17E0 + type: MK64:PACKED_GFX + offset: 0x7F2 +d_course_choco_mountain_packed_dl_18E8: + symbol: d_course_choco_mountain_packed_dl_18E8 + type: MK64:PACKED_GFX + offset: 0x868 +d_course_choco_mountain_packed_dl_1988: + symbol: d_course_choco_mountain_packed_dl_1988 + type: MK64:PACKED_GFX + offset: 0x89D +d_course_choco_mountain_packed_dl_1A48: + symbol: d_course_choco_mountain_packed_dl_1A48 + type: MK64:PACKED_GFX + offset: 0x8D1 +d_course_choco_mountain_packed_dl_1AC8: + symbol: d_course_choco_mountain_packed_dl_1AC8 + type: MK64:PACKED_GFX + offset: 0x8F6 +d_course_choco_mountain_packed_dl_1BE0: + symbol: d_course_choco_mountain_packed_dl_1BE0 + type: MK64:PACKED_GFX + offset: 0x96E +d_course_choco_mountain_packed_dl_1C98: + symbol: d_course_choco_mountain_packed_dl_1C98 + type: MK64:PACKED_GFX + offset: 0x9B4 +d_course_choco_mountain_packed_dl_1DB8: + symbol: d_course_choco_mountain_packed_dl_1DB8 + type: MK64:PACKED_GFX + offset: 0xA31 +d_course_choco_mountain_packed_dl_1E90: + symbol: d_course_choco_mountain_packed_dl_1E90 + type: MK64:PACKED_GFX + offset: 0xA85 +d_course_choco_mountain_packed_dl_1FE8: + symbol: d_course_choco_mountain_packed_dl_1FE8 + type: MK64:PACKED_GFX + offset: 0xB21 +d_course_choco_mountain_packed_dl_20F8: + symbol: d_course_choco_mountain_packed_dl_20F8 + type: MK64:PACKED_GFX + offset: 0xB94 +d_course_choco_mountain_packed_dl_21D8: + symbol: d_course_choco_mountain_packed_dl_21D8 + type: MK64:PACKED_GFX + offset: 0xBDC +d_course_choco_mountain_packed_dl_2278: + symbol: d_course_choco_mountain_packed_dl_2278 + type: MK64:PACKED_GFX + offset: 0xC11 +d_course_choco_mountain_packed_dl_2380: + symbol: d_course_choco_mountain_packed_dl_2380 + type: MK64:PACKED_GFX + offset: 0xC81 +d_course_choco_mountain_packed_dl_2458: + symbol: d_course_choco_mountain_packed_dl_2458 + type: MK64:PACKED_GFX + offset: 0xCC2 +d_course_choco_mountain_packed_dl_2530: + symbol: d_course_choco_mountain_packed_dl_2530 + type: MK64:PACKED_GFX + offset: 0xD16 +d_course_choco_mountain_packed_dl_2600: + symbol: d_course_choco_mountain_packed_dl_2600 + type: MK64:PACKED_GFX + offset: 0xD54 +d_course_choco_mountain_packed_dl_26C0: + symbol: d_course_choco_mountain_packed_dl_26C0 + type: MK64:PACKED_GFX + offset: 0xD9B +d_course_choco_mountain_packed_dl_2760: + symbol: d_course_choco_mountain_packed_dl_2760 + type: MK64:PACKED_GFX + offset: 0xDD2 +d_course_choco_mountain_packed_dl_27F0: + symbol: d_course_choco_mountain_packed_dl_27F0 + type: MK64:PACKED_GFX + offset: 0xDFF +d_course_choco_mountain_packed_dl_28B0: + symbol: d_course_choco_mountain_packed_dl_28B0 + type: MK64:PACKED_GFX + offset: 0xE48 +d_course_choco_mountain_packed_dl_29E8: + symbol: d_course_choco_mountain_packed_dl_29E8 + type: MK64:PACKED_GFX + offset: 0xEBF +d_course_choco_mountain_packed_dl_2AE8: + symbol: d_course_choco_mountain_packed_dl_2AE8 + type: MK64:PACKED_GFX + offset: 0xF2A +d_course_choco_mountain_packed_dl_2BD0: + symbol: d_course_choco_mountain_packed_dl_2BD0 + type: MK64:PACKED_GFX + offset: 0xF88 +d_course_choco_mountain_packed_dl_2CA8: + symbol: d_course_choco_mountain_packed_dl_2CA8 + type: MK64:PACKED_GFX + offset: 0xFDC +d_course_choco_mountain_packed_dl_2D68: + symbol: d_course_choco_mountain_packed_dl_2D68 + type: MK64:PACKED_GFX + offset: 0x1023 +d_course_choco_mountain_packed_dl_2E38: + symbol: d_course_choco_mountain_packed_dl_2E38 + type: MK64:PACKED_GFX + offset: 0x1070 +d_course_choco_mountain_packed_dl_2EE8: + symbol: d_course_choco_mountain_packed_dl_2EE8 + type: MK64:PACKED_GFX + offset: 0x10B1 +d_course_choco_mountain_packed_dl_2FE8: + symbol: d_course_choco_mountain_packed_dl_2FE8 + type: MK64:PACKED_GFX + offset: 0x1105 +d_course_choco_mountain_packed_dl_30A8: + symbol: d_course_choco_mountain_packed_dl_30A8 + type: MK64:PACKED_GFX + offset: 0x114C +d_course_choco_mountain_packed_dl_3188: + symbol: d_course_choco_mountain_packed_dl_3188 + type: MK64:PACKED_GFX + offset: 0x11A5 +d_course_choco_mountain_packed_dl_3200: + symbol: d_course_choco_mountain_packed_dl_3200 + type: MK64:PACKED_GFX + offset: 0x11C3 +d_course_choco_mountain_packed_dl_32F0: + symbol: d_course_choco_mountain_packed_dl_32F0 + type: MK64:PACKED_GFX + offset: 0x1226 +d_course_choco_mountain_packed_dl_3390: + symbol: d_course_choco_mountain_packed_dl_3390 + type: MK64:PACKED_GFX + offset: 0x1259 +d_course_choco_mountain_packed_dl_3410: + symbol: d_course_choco_mountain_packed_dl_3410 + type: MK64:PACKED_GFX + offset: 0x127E +d_course_choco_mountain_packed_dl_34E0: + symbol: d_course_choco_mountain_packed_dl_34E0 + type: MK64:PACKED_GFX + offset: 0x12CD +d_course_choco_mountain_packed_dl_35B0: + symbol: d_course_choco_mountain_packed_dl_35B0 + type: MK64:PACKED_GFX + offset: 0x130B +d_course_choco_mountain_packed_dl_3670: + symbol: d_course_choco_mountain_packed_dl_3670 + type: MK64:PACKED_GFX + offset: 0x133D +d_course_choco_mountain_packed_dl_3708: + symbol: d_course_choco_mountain_packed_dl_3708 + type: MK64:PACKED_GFX + offset: 0x136B +d_course_choco_mountain_packed_dl_37B0: + symbol: d_course_choco_mountain_packed_dl_37B0 + type: MK64:PACKED_GFX + offset: 0x13A5 +d_course_choco_mountain_packed_dl_38B8: + symbol: d_course_choco_mountain_packed_dl_38B8 + type: MK64:PACKED_GFX + offset: 0x1411 +d_course_choco_mountain_packed_dl_3998: + symbol: d_course_choco_mountain_packed_dl_3998 + type: MK64:PACKED_GFX + offset: 0x1468 +d_course_choco_mountain_packed_dl_3A80: + symbol: d_course_choco_mountain_packed_dl_3A80 + type: MK64:PACKED_GFX + offset: 0x14B5 +d_course_choco_mountain_packed_dl_3B98: + symbol: d_course_choco_mountain_packed_dl_3B98 + type: MK64:PACKED_GFX + offset: 0x151C +d_course_choco_mountain_packed_dl_3CF0: + symbol: d_course_choco_mountain_packed_dl_3CF0 + type: MK64:PACKED_GFX + offset: 0x15A5 +d_course_choco_mountain_packed_dl_3DD8: + symbol: d_course_choco_mountain_packed_dl_3DD8 + type: MK64:PACKED_GFX + offset: 0x15F2 +d_course_choco_mountain_packed_dl_3EE8: + symbol: d_course_choco_mountain_packed_dl_3EE8 + type: MK64:PACKED_GFX + offset: 0x1656 +d_course_choco_mountain_packed_dl_3FB8: + symbol: d_course_choco_mountain_packed_dl_3FB8 + type: MK64:PACKED_GFX + offset: 0x1696 +d_course_choco_mountain_packed_dl_4148: + symbol: d_course_choco_mountain_packed_dl_4148 + type: MK64:PACKED_GFX + offset: 0x172A +d_course_choco_mountain_packed_dl_4608: + symbol: d_course_choco_mountain_packed_dl_4608 + type: MK64:PACKED_GFX + offset: 0x19FA +d_course_choco_mountain_packed_dl_4618: + symbol: d_course_choco_mountain_packed_dl_4618 + type: MK64:PACKED_GFX + offset: 0x19FE +d_course_choco_mountain_packed_dl_4690: + symbol: d_course_choco_mountain_packed_dl_4690 + type: MK64:PACKED_GFX + offset: 0x1A1E +d_course_choco_mountain_packed_dl_46F0: + symbol: d_course_choco_mountain_packed_dl_46F0 + type: MK64:PACKED_GFX + offset: 0x1A2F +d_course_choco_mountain_packed_dl_4790: + symbol: d_course_choco_mountain_packed_dl_4790 + type: MK64:PACKED_GFX + offset: 0x1A68 +d_course_choco_mountain_packed_dl_4840: + symbol: d_course_choco_mountain_packed_dl_4840 + type: MK64:PACKED_GFX + offset: 0x1AAB +d_course_choco_mountain_packed_dl_48E8: + symbol: d_course_choco_mountain_packed_dl_48E8 + type: MK64:PACKED_GFX + offset: 0x1AE9 +d_course_choco_mountain_packed_dl_4970: + symbol: d_course_choco_mountain_packed_dl_4970 + type: MK64:PACKED_GFX + offset: 0x1B13 +d_course_choco_mountain_packed_dl_49F0: + symbol: d_course_choco_mountain_packed_dl_49F0 + type: MK64:PACKED_GFX + offset: 0x1B38 +d_course_choco_mountain_packed_dl_4AB0: + symbol: d_course_choco_mountain_packed_dl_4AB0 + type: MK64:PACKED_GFX + offset: 0x1B62 +d_course_choco_mountain_packed_dl_4B58: + symbol: d_course_choco_mountain_packed_dl_4B58 + type: MK64:PACKED_GFX + offset: 0x1B9E +d_course_choco_mountain_packed_dl_4C08: + symbol: d_course_choco_mountain_packed_dl_4C08 + type: MK64:PACKED_GFX + offset: 0x1BDF +d_course_choco_mountain_packed_dl_4CC8: + symbol: d_course_choco_mountain_packed_dl_4CC8 + type: MK64:PACKED_GFX + offset: 0x1C28 +d_course_choco_mountain_packed_dl_4D90: + symbol: d_course_choco_mountain_packed_dl_4D90 + type: MK64:PACKED_GFX + offset: 0x1C72 +d_course_choco_mountain_packed_dl_4E40: + symbol: d_course_choco_mountain_packed_dl_4E40 + type: MK64:PACKED_GFX + offset: 0x1CB3 +d_course_choco_mountain_packed_dl_4EB0: + symbol: d_course_choco_mountain_packed_dl_4EB0 + type: MK64:PACKED_GFX + offset: 0x1CCE +d_course_choco_mountain_packed_dl_4F30: + symbol: d_course_choco_mountain_packed_dl_4F30 + type: MK64:PACKED_GFX + offset: 0x1CF3 +d_course_choco_mountain_packed_dl_4FC0: + symbol: d_course_choco_mountain_packed_dl_4FC0 + type: MK64:PACKED_GFX + offset: 0x1D22 +d_course_choco_mountain_packed_dl_5070: + symbol: d_course_choco_mountain_packed_dl_5070 + type: MK64:PACKED_GFX + offset: 0x1D63 +d_course_choco_mountain_packed_dl_5148: + symbol: d_course_choco_mountain_packed_dl_5148 + type: MK64:PACKED_GFX + offset: 0x1DBB +d_course_choco_mountain_packed_dl_51D8: + symbol: d_course_choco_mountain_packed_dl_51D8 + type: MK64:PACKED_GFX + offset: 0x1DE8 +d_course_choco_mountain_packed_dl_5258: + symbol: d_course_choco_mountain_packed_dl_5258 + type: MK64:PACKED_GFX + offset: 0x1E0D +d_course_choco_mountain_packed_dl_52C8: + symbol: d_course_choco_mountain_packed_dl_52C8 + type: MK64:PACKED_GFX + offset: 0x1E28 +d_course_choco_mountain_packed_dl_5338: + symbol: d_course_choco_mountain_packed_dl_5338 + type: MK64:PACKED_GFX + offset: 0x1E43 +d_course_choco_mountain_packed_dl_53D8: + symbol: d_course_choco_mountain_packed_dl_53D8 + type: MK64:PACKED_GFX + offset: 0x1E7A +d_course_choco_mountain_packed_dl_5490: + symbol: d_course_choco_mountain_packed_dl_5490 + type: MK64:PACKED_GFX + offset: 0x1EBC +d_course_choco_mountain_packed_dl_5558: + symbol: d_course_choco_mountain_packed_dl_5558 + type: MK64:PACKED_GFX + offset: 0x1F05 +d_course_choco_mountain_packed_dl_5688: + symbol: d_course_choco_mountain_packed_dl_5688 + type: MK64:PACKED_GFX + offset: 0x1F5E +d_course_choco_mountain_packed_dl_5778: + symbol: d_course_choco_mountain_packed_dl_5778 + type: MK64:PACKED_GFX + offset: 0x1F8F +d_course_choco_mountain_packed_dl_5868: + symbol: d_course_choco_mountain_packed_dl_5868 + type: MK64:PACKED_GFX + offset: 0x1FC0 +d_course_choco_mountain_packed_dl_5888: + symbol: d_course_choco_mountain_packed_dl_5888 + type: MK64:PACKED_GFX + offset: 0x1FCA +d_course_choco_mountain_packed_dl_5910: + symbol: d_course_choco_mountain_packed_dl_5910 + type: MK64:PACKED_GFX + offset: 0x1FF4 +d_course_choco_mountain_packed_dl_59A0: + symbol: d_course_choco_mountain_packed_dl_59A0 + type: MK64:PACKED_GFX + offset: 0x2021 +d_course_choco_mountain_packed_dl_5A00: + symbol: d_course_choco_mountain_packed_dl_5A00 + type: MK64:PACKED_GFX + offset: 0x2032 +d_course_choco_mountain_packed_dl_5A70: + symbol: d_course_choco_mountain_packed_dl_5A70 + type: MK64:PACKED_GFX + offset: 0x204D +d_course_choco_mountain_packed_dl_5A98: + symbol: d_course_choco_mountain_packed_dl_5A98 + type: MK64:PACKED_GFX + offset: 0x205A +d_course_choco_mountain_packed_dl_5AE0: + symbol: d_course_choco_mountain_packed_dl_5AE0 + type: MK64:PACKED_GFX + offset: 0x2073 +d_course_choco_mountain_packed_dl_5AF0: + symbol: d_course_choco_mountain_packed_dl_5AF0 + type: MK64:PACKED_GFX + offset: 0x2077 diff --git a/yamls/us/models/tracks/choco_mountain/choco_mountain_vertices.yml b/yamls/us/models/tracks/choco_mountain/choco_mountain_vertices.yml new file mode 100644 index 000000000..94f12f057 --- /dev/null +++ b/yamls/us/models/tracks/choco_mountain/choco_mountain_vertices.yml @@ -0,0 +1,1497 @@ +:config: + segments: + - [0x0F, 0x89B510] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_choco_mountain_vertex_0x04000000: + symbol: d_course_choco_mountain_vertex_0x04000000 + type: mk64:course_vtx + count: 50 + offset: 0x0 + +d_course_choco_mountain_vertex_0x04000200: + symbol: d_course_choco_mountain_vertex_0x04000200 + type: mk64:course_vtx + count: 50 + offset: 0x1c0 + +d_course_choco_mountain_vertex_0x04000400: + symbol: d_course_choco_mountain_vertex_0x04000400 + type: mk64:course_vtx + count: 50 + offset: 0x380 + +d_course_choco_mountain_vertex_0x04000600: + symbol: d_course_choco_mountain_vertex_0x04000600 + type: mk64:course_vtx + count: 50 + offset: 0x540 + +d_course_choco_mountain_vertex_0x04000800: + symbol: d_course_choco_mountain_vertex_0x04000800 + type: mk64:course_vtx + count: 50 + offset: 0x700 + +d_course_choco_mountain_vertex_0x04000A00: + symbol: d_course_choco_mountain_vertex_0x04000A00 + type: mk64:course_vtx + count: 22 + offset: 0x8c0 + +d_course_choco_mountain_vertex_0x04000B00: + symbol: d_course_choco_mountain_vertex_0x04000B00 + type: mk64:course_vtx + count: 50 + offset: 0x9a0 + +d_course_choco_mountain_vertex_0x04000D00: + symbol: d_course_choco_mountain_vertex_0x04000D00 + type: mk64:course_vtx + count: 22 + offset: 0xb60 + +d_course_choco_mountain_vertex_0x04000E00: + symbol: d_course_choco_mountain_vertex_0x04000E00 + type: mk64:course_vtx + count: 36 + offset: 0xc40 + +d_course_choco_mountain_vertex_0x04000F80: + symbol: d_course_choco_mountain_vertex_0x04000F80 + type: mk64:course_vtx + count: 32 + offset: 0xd90 + +d_course_choco_mountain_vertex_0x040010C0: + symbol: d_course_choco_mountain_vertex_0x040010C0 + type: mk64:course_vtx + count: 36 + offset: 0xea8 + +d_course_choco_mountain_vertex_0x04001240: + symbol: d_course_choco_mountain_vertex_0x04001240 + type: mk64:course_vtx + count: 8 + offset: 0xff8 + +d_course_choco_mountain_vertex_0x040012C0: + symbol: d_course_choco_mountain_vertex_0x040012C0 + type: mk64:course_vtx + count: 8 + offset: 0x1068 + +d_course_choco_mountain_vertex_0x04001340: + symbol: d_course_choco_mountain_vertex_0x04001340 + type: mk64:course_vtx + count: 8 + offset: 0x10d8 + +d_course_choco_mountain_vertex_0x040013C0: + symbol: d_course_choco_mountain_vertex_0x040013C0 + type: mk64:course_vtx + count: 18 + offset: 0x1148 + +d_course_choco_mountain_vertex_0x04001480: + symbol: d_course_choco_mountain_vertex_0x04001480 + type: mk64:course_vtx + count: 8 + offset: 0x11f0 + +d_course_choco_mountain_vertex_0x04001500: + symbol: d_course_choco_mountain_vertex_0x04001500 + type: mk64:course_vtx + count: 38 + offset: 0x1260 + +d_course_choco_mountain_vertex_0x040016A0: + symbol: d_course_choco_mountain_vertex_0x040016A0 + type: mk64:course_vtx + count: 40 + offset: 0x13cc + +d_course_choco_mountain_vertex_0x04001860: + symbol: d_course_choco_mountain_vertex_0x04001860 + type: mk64:course_vtx + count: 32 + offset: 0x1554 + +d_course_choco_mountain_vertex_0x040019A0: + symbol: d_course_choco_mountain_vertex_0x040019A0 + type: mk64:course_vtx + count: 18 + offset: 0x166c + +d_course_choco_mountain_vertex_0x04001A60: + symbol: d_course_choco_mountain_vertex_0x04001A60 + type: mk64:course_vtx + count: 20 + offset: 0x1714 + +d_course_choco_mountain_vertex_0x04001B40: + symbol: d_course_choco_mountain_vertex_0x04001B40 + type: mk64:course_vtx + count: 5 + offset: 0x17d8 + +d_course_choco_mountain_vertex_0x04001B90: + symbol: d_course_choco_mountain_vertex_0x04001B90 + type: mk64:course_vtx + count: 49 + offset: 0x181e + +d_course_choco_mountain_vertex_0x04001D80: + symbol: d_course_choco_mountain_vertex_0x04001D80 + type: mk64:course_vtx + count: 6 + offset: 0x19d0 + +d_course_choco_mountain_vertex_0x04001DE0: + symbol: d_course_choco_mountain_vertex_0x04001DE0 + type: mk64:course_vtx + count: 48 + offset: 0x1a24 + +d_course_choco_mountain_vertex_0x04001FC0: + symbol: d_course_choco_mountain_vertex_0x04001FC0 + type: mk64:course_vtx + count: 6 + offset: 0x1bc8 + +d_course_choco_mountain_vertex_0x04002020: + symbol: d_course_choco_mountain_vertex_0x04002020 + type: mk64:course_vtx + count: 19 + offset: 0x1c1c + +d_course_choco_mountain_vertex_0x040020F0: + symbol: d_course_choco_mountain_vertex_0x040020F0 + type: mk64:course_vtx + count: 18 + offset: 0x1cd2 + +d_course_choco_mountain_vertex_0x040021B0: + symbol: d_course_choco_mountain_vertex_0x040021B0 + type: mk64:course_vtx + count: 24 + offset: 0x1d7a + +d_course_choco_mountain_vertex_0x040022D0: + symbol: d_course_choco_mountain_vertex_0x040022D0 + type: mk64:course_vtx + count: 20 + offset: 0x1e76 + +d_course_choco_mountain_vertex_0x040023B0: + symbol: d_course_choco_mountain_vertex_0x040023B0 + type: mk64:course_vtx + count: 49 + offset: 0x1f3a + +d_course_choco_mountain_vertex_0x040025A0: + symbol: d_course_choco_mountain_vertex_0x040025A0 + type: mk64:course_vtx + count: 9 + offset: 0x20ec + +d_course_choco_mountain_vertex_0x04002630: + symbol: d_course_choco_mountain_vertex_0x04002630 + type: mk64:course_vtx + count: 18 + offset: 0x216a + +d_course_choco_mountain_vertex_0x040026F0: + symbol: d_course_choco_mountain_vertex_0x040026F0 + type: mk64:course_vtx + count: 49 + offset: 0x2212 + +d_course_choco_mountain_vertex_0x040028E0: + symbol: d_course_choco_mountain_vertex_0x040028E0 + type: mk64:course_vtx + count: 33 + offset: 0x23c4 + +d_course_choco_mountain_vertex_0x04002A30: + symbol: d_course_choco_mountain_vertex_0x04002A30 + type: mk64:course_vtx + count: 50 + offset: 0x24ea + +d_course_choco_mountain_vertex_0x04002C30: + symbol: d_course_choco_mountain_vertex_0x04002C30 + type: mk64:course_vtx + count: 32 + offset: 0x26aa + +d_course_choco_mountain_vertex_0x04002D70: + symbol: d_course_choco_mountain_vertex_0x04002D70 + type: mk64:course_vtx + count: 49 + offset: 0x27c2 + +d_course_choco_mountain_vertex_0x04002F60: + symbol: d_course_choco_mountain_vertex_0x04002F60 + type: mk64:course_vtx + count: 18 + offset: 0x2974 + +d_course_choco_mountain_vertex_0x04003020: + symbol: d_course_choco_mountain_vertex_0x04003020 + type: mk64:course_vtx + count: 21 + offset: 0x2a1c + +d_course_choco_mountain_vertex_0x04003110: + symbol: d_course_choco_mountain_vertex_0x04003110 + type: mk64:course_vtx + count: 48 + offset: 0x2aee + +d_course_choco_mountain_vertex_0x040032F0: + symbol: d_course_choco_mountain_vertex_0x040032F0 + type: mk64:course_vtx + count: 9 + offset: 0x2c92 + +d_course_choco_mountain_vertex_0x04003380: + symbol: d_course_choco_mountain_vertex_0x04003380 + type: mk64:course_vtx + count: 25 + offset: 0x2d10 + +d_course_choco_mountain_vertex_0x040034B0: + symbol: d_course_choco_mountain_vertex_0x040034B0 + type: mk64:course_vtx + count: 48 + offset: 0x2e1a + +d_course_choco_mountain_vertex_0x04003690: + symbol: d_course_choco_mountain_vertex_0x04003690 + type: mk64:course_vtx + count: 21 + offset: 0x2fbe + +d_course_choco_mountain_vertex_0x04003780: + symbol: d_course_choco_mountain_vertex_0x04003780 + type: mk64:course_vtx + count: 49 + offset: 0x3090 + +d_course_choco_mountain_vertex_0x04003970: + symbol: d_course_choco_mountain_vertex_0x04003970 + type: mk64:course_vtx + count: 6 + offset: 0x3242 + +d_course_choco_mountain_vertex_0x040039D0: + symbol: d_course_choco_mountain_vertex_0x040039D0 + type: mk64:course_vtx + count: 50 + offset: 0x3296 + +d_course_choco_mountain_vertex_0x04003BD0: + symbol: d_course_choco_mountain_vertex_0x04003BD0 + type: mk64:course_vtx + count: 33 + offset: 0x3456 + +d_course_choco_mountain_vertex_0x04003D20: + symbol: d_course_choco_mountain_vertex_0x04003D20 + type: mk64:course_vtx + count: 50 + offset: 0x357c + +d_course_choco_mountain_vertex_0x04003F20: + symbol: d_course_choco_mountain_vertex_0x04003F20 + type: mk64:course_vtx + count: 9 + offset: 0x373c + +d_course_choco_mountain_vertex_0x04003FB0: + symbol: d_course_choco_mountain_vertex_0x04003FB0 + type: mk64:course_vtx + count: 49 + offset: 0x37ba + +d_course_choco_mountain_vertex_0x040041A0: + symbol: d_course_choco_mountain_vertex_0x040041A0 + type: mk64:course_vtx + count: 32 + offset: 0x396c + +d_course_choco_mountain_vertex_0x040042E0: + symbol: d_course_choco_mountain_vertex_0x040042E0 + type: mk64:course_vtx + count: 50 + offset: 0x3a84 + +d_course_choco_mountain_vertex_0x040044E0: + symbol: d_course_choco_mountain_vertex_0x040044E0 + type: mk64:course_vtx + count: 6 + offset: 0x3c44 + +d_course_choco_mountain_vertex_0x04004540: + symbol: d_course_choco_mountain_vertex_0x04004540 + type: mk64:course_vtx + count: 48 + offset: 0x3c98 + +d_course_choco_mountain_vertex_0x04004720: + symbol: d_course_choco_mountain_vertex_0x04004720 + type: mk64:course_vtx + count: 50 + offset: 0x3e3c + +d_course_choco_mountain_vertex_0x04004920: + symbol: d_course_choco_mountain_vertex_0x04004920 + type: mk64:course_vtx + count: 18 + offset: 0x3ffc + +d_course_choco_mountain_vertex_0x040049E0: + symbol: d_course_choco_mountain_vertex_0x040049E0 + type: mk64:course_vtx + count: 48 + offset: 0x40a4 + +d_course_choco_mountain_vertex_0x04004BC0: + symbol: d_course_choco_mountain_vertex_0x04004BC0 + type: mk64:course_vtx + count: 21 + offset: 0x4248 + +d_course_choco_mountain_vertex_0x04004CB0: + symbol: d_course_choco_mountain_vertex_0x04004CB0 + type: mk64:course_vtx + count: 50 + offset: 0x431a + +d_course_choco_mountain_vertex_0x04004EB0: + symbol: d_course_choco_mountain_vertex_0x04004EB0 + type: mk64:course_vtx + count: 18 + offset: 0x44da + +d_course_choco_mountain_vertex_0x04004F70: + symbol: d_course_choco_mountain_vertex_0x04004F70 + type: mk64:course_vtx + count: 48 + offset: 0x4582 + +d_course_choco_mountain_vertex_0x04005150: + symbol: d_course_choco_mountain_vertex_0x04005150 + type: mk64:course_vtx + count: 21 + offset: 0x4726 + +d_course_choco_mountain_vertex_0x04005240: + symbol: d_course_choco_mountain_vertex_0x04005240 + type: mk64:course_vtx + count: 23 + offset: 0x47f8 + +d_course_choco_mountain_vertex_0x04005350: + symbol: d_course_choco_mountain_vertex_0x04005350 + type: mk64:course_vtx + count: 8 + offset: 0x48e6 + +d_course_choco_mountain_vertex_0x040053D0: + symbol: d_course_choco_mountain_vertex_0x040053D0 + type: mk64:course_vtx + count: 48 + offset: 0x4956 + +d_course_choco_mountain_vertex_0x040055B0: + symbol: d_course_choco_mountain_vertex_0x040055B0 + type: mk64:course_vtx + count: 49 + offset: 0x4afa + +d_course_choco_mountain_vertex_0x040057A0: + symbol: d_course_choco_mountain_vertex_0x040057A0 + type: mk64:course_vtx + count: 48 + offset: 0x4cac + +d_course_choco_mountain_vertex_0x04005980: + symbol: d_course_choco_mountain_vertex_0x04005980 + type: mk64:course_vtx + count: 49 + offset: 0x4e50 + +d_course_choco_mountain_vertex_0x04005B70: + symbol: d_course_choco_mountain_vertex_0x04005B70 + type: mk64:course_vtx + count: 33 + offset: 0x5002 + +d_course_choco_mountain_vertex_0x04005CC0: + symbol: d_course_choco_mountain_vertex_0x04005CC0 + type: mk64:course_vtx + count: 49 + offset: 0x5128 + +d_course_choco_mountain_vertex_0x04005EB0: + symbol: d_course_choco_mountain_vertex_0x04005EB0 + type: mk64:course_vtx + count: 40 + offset: 0x52da + +d_course_choco_mountain_vertex_0x04006070: + symbol: d_course_choco_mountain_vertex_0x04006070 + type: mk64:course_vtx + count: 50 + offset: 0x5462 + +d_course_choco_mountain_vertex_0x04006270: + symbol: d_course_choco_mountain_vertex_0x04006270 + type: mk64:course_vtx + count: 50 + offset: 0x5622 + +d_course_choco_mountain_vertex_0x04006470: + symbol: d_course_choco_mountain_vertex_0x04006470 + type: mk64:course_vtx + count: 49 + offset: 0x57e2 + +d_course_choco_mountain_vertex_0x04006660: + symbol: d_course_choco_mountain_vertex_0x04006660 + type: mk64:course_vtx + count: 34 + offset: 0x5994 + +d_course_choco_mountain_vertex_0x040067C0: + symbol: d_course_choco_mountain_vertex_0x040067C0 + type: mk64:course_vtx + count: 49 + offset: 0x5ac8 + +d_course_choco_mountain_vertex_0x040069B0: + symbol: d_course_choco_mountain_vertex_0x040069B0 + type: mk64:course_vtx + count: 48 + offset: 0x5c7a + +d_course_choco_mountain_vertex_0x04006B90: + symbol: d_course_choco_mountain_vertex_0x04006B90 + type: mk64:course_vtx + count: 16 + offset: 0x5e1e + +d_course_choco_mountain_vertex_0x04006C30: + symbol: d_course_choco_mountain_vertex_0x04006C30 + type: mk64:course_vtx + count: 50 + offset: 0x5eaa + +d_course_choco_mountain_vertex_0x04006E30: + symbol: d_course_choco_mountain_vertex_0x04006E30 + type: mk64:course_vtx + count: 48 + offset: 0x606a + +d_course_choco_mountain_vertex_0x04007010: + symbol: d_course_choco_mountain_vertex_0x04007010 + type: mk64:course_vtx + count: 50 + offset: 0x620e + +d_course_choco_mountain_vertex_0x04007210: + symbol: d_course_choco_mountain_vertex_0x04007210 + type: mk64:course_vtx + count: 50 + offset: 0x63ce + +d_course_choco_mountain_vertex_0x04007410: + symbol: d_course_choco_mountain_vertex_0x04007410 + type: mk64:course_vtx + count: 32 + offset: 0x658e + +d_course_choco_mountain_vertex_0x04007550: + symbol: d_course_choco_mountain_vertex_0x04007550 + type: mk64:course_vtx + count: 49 + offset: 0x66a6 + +d_course_choco_mountain_vertex_0x04007740: + symbol: d_course_choco_mountain_vertex_0x04007740 + type: mk64:course_vtx + count: 49 + offset: 0x6858 + +d_course_choco_mountain_vertex_0x04007930: + symbol: d_course_choco_mountain_vertex_0x04007930 + type: mk64:course_vtx + count: 50 + offset: 0x6a0a + +d_course_choco_mountain_vertex_0x04007B30: + symbol: d_course_choco_mountain_vertex_0x04007B30 + type: mk64:course_vtx + count: 18 + offset: 0x6bca + +d_course_choco_mountain_vertex_0x04007BF0: + symbol: d_course_choco_mountain_vertex_0x04007BF0 + type: mk64:course_vtx + count: 48 + offset: 0x6c72 + +d_course_choco_mountain_vertex_0x04007DD0: + symbol: d_course_choco_mountain_vertex_0x04007DD0 + type: mk64:course_vtx + count: 24 + offset: 0x6e16 + +d_course_choco_mountain_vertex_0x04007EF0: + symbol: d_course_choco_mountain_vertex_0x04007EF0 + type: mk64:course_vtx + count: 50 + offset: 0x6f12 + +d_course_choco_mountain_vertex_0x040080F0: + symbol: d_course_choco_mountain_vertex_0x040080F0 + type: mk64:course_vtx + count: 17 + offset: 0x70d2 + +d_course_choco_mountain_vertex_0x040081A0: + symbol: d_course_choco_mountain_vertex_0x040081A0 + type: mk64:course_vtx + count: 48 + offset: 0x716c + +d_course_choco_mountain_vertex_0x04008380: + symbol: d_course_choco_mountain_vertex_0x04008380 + type: mk64:course_vtx + count: 48 + offset: 0x7310 + +d_course_choco_mountain_vertex_0x04008560: + symbol: d_course_choco_mountain_vertex_0x04008560 + type: mk64:course_vtx + count: 49 + offset: 0x74b4 + +d_course_choco_mountain_vertex_0x04008750: + symbol: d_course_choco_mountain_vertex_0x04008750 + type: mk64:course_vtx + count: 21 + offset: 0x7666 + +d_course_choco_mountain_vertex_0x04008840: + symbol: d_course_choco_mountain_vertex_0x04008840 + type: mk64:course_vtx + count: 49 + offset: 0x7738 + +d_course_choco_mountain_vertex_0x04008A30: + symbol: d_course_choco_mountain_vertex_0x04008A30 + type: mk64:course_vtx + count: 18 + offset: 0x78ea + +d_course_choco_mountain_vertex_0x04008AF0: + symbol: d_course_choco_mountain_vertex_0x04008AF0 + type: mk64:course_vtx + count: 4 + offset: 0x7992 + +d_course_choco_mountain_vertex_0x04008B30: + symbol: d_course_choco_mountain_vertex_0x04008B30 + type: mk64:course_vtx + count: 49 + offset: 0x79ca + +d_course_choco_mountain_vertex_0x04008D20: + symbol: d_course_choco_mountain_vertex_0x04008D20 + type: mk64:course_vtx + count: 49 + offset: 0x7b7c + +d_course_choco_mountain_vertex_0x04008F10: + symbol: d_course_choco_mountain_vertex_0x04008F10 + type: mk64:course_vtx + count: 18 + offset: 0x7d2e + +d_course_choco_mountain_vertex_0x04008FD0: + symbol: d_course_choco_mountain_vertex_0x04008FD0 + type: mk64:course_vtx + count: 41 + offset: 0x7dd6 + +d_course_choco_mountain_vertex_0x040091A0: + symbol: d_course_choco_mountain_vertex_0x040091A0 + type: mk64:course_vtx + count: 25 + offset: 0x7f6c + +d_course_choco_mountain_vertex_0x040092D0: + symbol: d_course_choco_mountain_vertex_0x040092D0 + type: mk64:course_vtx + count: 48 + offset: 0x8076 + +d_course_choco_mountain_vertex_0x040094B0: + symbol: d_course_choco_mountain_vertex_0x040094B0 + type: mk64:course_vtx + count: 48 + offset: 0x821a + +d_course_choco_mountain_vertex_0x04009690: + symbol: d_course_choco_mountain_vertex_0x04009690 + type: mk64:course_vtx + count: 3 + offset: 0x83be + +d_course_choco_mountain_vertex_0x040096C0: + symbol: d_course_choco_mountain_vertex_0x040096C0 + type: mk64:course_vtx + count: 48 + offset: 0x83e8 + +d_course_choco_mountain_vertex_0x040098A0: + symbol: d_course_choco_mountain_vertex_0x040098A0 + type: mk64:course_vtx + count: 24 + offset: 0x858c + +d_course_choco_mountain_vertex_0x040099C0: + symbol: d_course_choco_mountain_vertex_0x040099C0 + type: mk64:course_vtx + count: 48 + offset: 0x8688 + +d_course_choco_mountain_vertex_0x04009BA0: + symbol: d_course_choco_mountain_vertex_0x04009BA0 + type: mk64:course_vtx + count: 6 + offset: 0x882c + +d_course_choco_mountain_vertex_0x04009C00: + symbol: d_course_choco_mountain_vertex_0x04009C00 + type: mk64:course_vtx + count: 48 + offset: 0x8880 + +d_course_choco_mountain_vertex_0x04009DE0: + symbol: d_course_choco_mountain_vertex_0x04009DE0 + type: mk64:course_vtx + count: 48 + offset: 0x8a24 + +d_course_choco_mountain_vertex_0x04009FC0: + symbol: d_course_choco_mountain_vertex_0x04009FC0 + type: mk64:course_vtx + count: 6 + offset: 0x8bc8 + +d_course_choco_mountain_vertex_0x0400A020: + symbol: d_course_choco_mountain_vertex_0x0400A020 + type: mk64:course_vtx + count: 50 + offset: 0x8c1c + +d_course_choco_mountain_vertex_0x0400A220: + symbol: d_course_choco_mountain_vertex_0x0400A220 + type: mk64:course_vtx + count: 48 + offset: 0x8ddc + +d_course_choco_mountain_vertex_0x0400A400: + symbol: d_course_choco_mountain_vertex_0x0400A400 + type: mk64:course_vtx + count: 32 + offset: 0x8f80 + +d_course_choco_mountain_vertex_0x0400A540: + symbol: d_course_choco_mountain_vertex_0x0400A540 + type: mk64:course_vtx + count: 21 + offset: 0x9098 + +d_course_choco_mountain_vertex_0x0400A630: + symbol: d_course_choco_mountain_vertex_0x0400A630 + type: mk64:course_vtx + count: 49 + offset: 0x916a + +d_course_choco_mountain_vertex_0x0400A820: + symbol: d_course_choco_mountain_vertex_0x0400A820 + type: mk64:course_vtx + count: 48 + offset: 0x931c + +d_course_choco_mountain_vertex_0x0400AA00: + symbol: d_course_choco_mountain_vertex_0x0400AA00 + type: mk64:course_vtx + count: 48 + offset: 0x94c0 + +d_course_choco_mountain_vertex_0x0400ABE0: + symbol: d_course_choco_mountain_vertex_0x0400ABE0 + type: mk64:course_vtx + count: 8 + offset: 0x9664 + +d_course_choco_mountain_vertex_0x0400AC60: + symbol: d_course_choco_mountain_vertex_0x0400AC60 + type: mk64:course_vtx + count: 49 + offset: 0x96d4 + +d_course_choco_mountain_vertex_0x0400AE50: + symbol: d_course_choco_mountain_vertex_0x0400AE50 + type: mk64:course_vtx + count: 50 + offset: 0x9886 + +d_course_choco_mountain_vertex_0x0400B050: + symbol: d_course_choco_mountain_vertex_0x0400B050 + type: mk64:course_vtx + count: 33 + offset: 0x9a46 + +d_course_choco_mountain_vertex_0x0400B1A0: + symbol: d_course_choco_mountain_vertex_0x0400B1A0 + type: mk64:course_vtx + count: 49 + offset: 0x9b6c + +d_course_choco_mountain_vertex_0x0400B390: + symbol: d_course_choco_mountain_vertex_0x0400B390 + type: mk64:course_vtx + count: 50 + offset: 0x9d1e + +d_course_choco_mountain_vertex_0x0400B590: + symbol: d_course_choco_mountain_vertex_0x0400B590 + type: mk64:course_vtx + count: 18 + offset: 0x9ede + +d_course_choco_mountain_vertex_0x0400B650: + symbol: d_course_choco_mountain_vertex_0x0400B650 + type: mk64:course_vtx + count: 48 + offset: 0x9f86 + +d_course_choco_mountain_vertex_0x0400B830: + symbol: d_course_choco_mountain_vertex_0x0400B830 + type: mk64:course_vtx + count: 50 + offset: 0xa12a + +d_course_choco_mountain_vertex_0x0400BA30: + symbol: d_course_choco_mountain_vertex_0x0400BA30 + type: mk64:course_vtx + count: 49 + offset: 0xa2ea + +d_course_choco_mountain_vertex_0x0400BC20: + symbol: d_course_choco_mountain_vertex_0x0400BC20 + type: mk64:course_vtx + count: 48 + offset: 0xa49c + +d_course_choco_mountain_vertex_0x0400BE00: + symbol: d_course_choco_mountain_vertex_0x0400BE00 + type: mk64:course_vtx + count: 3 + offset: 0xa640 + +d_course_choco_mountain_vertex_0x0400BE30: + symbol: d_course_choco_mountain_vertex_0x0400BE30 + type: mk64:course_vtx + count: 50 + offset: 0xa66a + +d_course_choco_mountain_vertex_0x0400C030: + symbol: d_course_choco_mountain_vertex_0x0400C030 + type: mk64:course_vtx + count: 36 + offset: 0xa82a + +d_course_choco_mountain_vertex_0x0400C1B0: + symbol: d_course_choco_mountain_vertex_0x0400C1B0 + type: mk64:course_vtx + count: 49 + offset: 0xa97a + +d_course_choco_mountain_vertex_0x0400C3A0: + symbol: d_course_choco_mountain_vertex_0x0400C3A0 + type: mk64:course_vtx + count: 48 + offset: 0xab2c + +d_course_choco_mountain_vertex_0x0400C580: + symbol: d_course_choco_mountain_vertex_0x0400C580 + type: mk64:course_vtx + count: 3 + offset: 0xacd0 + +d_course_choco_mountain_vertex_0x0400C5B0: + symbol: d_course_choco_mountain_vertex_0x0400C5B0 + type: mk64:course_vtx + count: 3 + offset: 0xacfa + +d_course_choco_mountain_vertex_0x0400C5E0: + symbol: d_course_choco_mountain_vertex_0x0400C5E0 + type: mk64:course_vtx + count: 49 + offset: 0xad24 + +d_course_choco_mountain_vertex_0x0400C7D0: + symbol: d_course_choco_mountain_vertex_0x0400C7D0 + type: mk64:course_vtx + count: 49 + offset: 0xaed6 + +d_course_choco_mountain_vertex_0x0400C9C0: + symbol: d_course_choco_mountain_vertex_0x0400C9C0 + type: mk64:course_vtx + count: 49 + offset: 0xb088 + +d_course_choco_mountain_vertex_0x0400CBB0: + symbol: d_course_choco_mountain_vertex_0x0400CBB0 + type: mk64:course_vtx + count: 49 + offset: 0xb23a + +d_course_choco_mountain_vertex_0x0400CDA0: + symbol: d_course_choco_mountain_vertex_0x0400CDA0 + type: mk64:course_vtx + count: 21 + offset: 0xb3ec + +d_course_choco_mountain_vertex_0x0400CE90: + symbol: d_course_choco_mountain_vertex_0x0400CE90 + type: mk64:course_vtx + count: 32 + offset: 0xb4be + +d_course_choco_mountain_vertex_0x0400CFD0: + symbol: d_course_choco_mountain_vertex_0x0400CFD0 + type: mk64:course_vtx + count: 50 + offset: 0xb5d6 + +d_course_choco_mountain_vertex_0x0400D1D0: + symbol: d_course_choco_mountain_vertex_0x0400D1D0 + type: mk64:course_vtx + count: 50 + offset: 0xb796 + +d_course_choco_mountain_vertex_0x0400D3D0: + symbol: d_course_choco_mountain_vertex_0x0400D3D0 + type: mk64:course_vtx + count: 39 + offset: 0xb956 + +d_course_choco_mountain_vertex_0x0400D580: + symbol: d_course_choco_mountain_vertex_0x0400D580 + type: mk64:course_vtx + count: 50 + offset: 0xbad0 + +d_course_choco_mountain_vertex_0x0400D780: + symbol: d_course_choco_mountain_vertex_0x0400D780 + type: mk64:course_vtx + count: 9 + offset: 0xbc90 + +d_course_choco_mountain_vertex_0x0400D810: + symbol: d_course_choco_mountain_vertex_0x0400D810 + type: mk64:course_vtx + count: 41 + offset: 0xbd0e + +d_course_choco_mountain_vertex_0x0400D9E0: + symbol: d_course_choco_mountain_vertex_0x0400D9E0 + type: mk64:course_vtx + count: 49 + offset: 0xbea4 + +d_course_choco_mountain_vertex_0x0400DBD0: + symbol: d_course_choco_mountain_vertex_0x0400DBD0 + type: mk64:course_vtx + count: 49 + offset: 0xc056 + +d_course_choco_mountain_vertex_0x0400DDC0: + symbol: d_course_choco_mountain_vertex_0x0400DDC0 + type: mk64:course_vtx + count: 6 + offset: 0xc208 + +d_course_choco_mountain_vertex_0x0400DE20: + symbol: d_course_choco_mountain_vertex_0x0400DE20 + type: mk64:course_vtx + count: 49 + offset: 0xc25c + +d_course_choco_mountain_vertex_0x0400E010: + symbol: d_course_choco_mountain_vertex_0x0400E010 + type: mk64:course_vtx + count: 18 + offset: 0xc40e + +d_course_choco_mountain_vertex_0x0400E0D0: + symbol: d_course_choco_mountain_vertex_0x0400E0D0 + type: mk64:course_vtx + count: 50 + offset: 0xc4b6 + +d_course_choco_mountain_vertex_0x0400E2D0: + symbol: d_course_choco_mountain_vertex_0x0400E2D0 + type: mk64:course_vtx + count: 3 + offset: 0xc676 + +d_course_choco_mountain_vertex_0x0400E300: + symbol: d_course_choco_mountain_vertex_0x0400E300 + type: mk64:course_vtx + count: 48 + offset: 0xc6a0 + +d_course_choco_mountain_vertex_0x0400E4E0: + symbol: d_course_choco_mountain_vertex_0x0400E4E0 + type: mk64:course_vtx + count: 3 + offset: 0xc844 + +d_course_choco_mountain_vertex_0x0400E510: + symbol: d_course_choco_mountain_vertex_0x0400E510 + type: mk64:course_vtx + count: 48 + offset: 0xc86e + +d_course_choco_mountain_vertex_0x0400E6F0: + symbol: d_course_choco_mountain_vertex_0x0400E6F0 + type: mk64:course_vtx + count: 33 + offset: 0xca12 + +d_course_choco_mountain_vertex_0x0400E840: + symbol: d_course_choco_mountain_vertex_0x0400E840 + type: mk64:course_vtx + count: 50 + offset: 0xcb38 + +d_course_choco_mountain_vertex_0x0400EA40: + symbol: d_course_choco_mountain_vertex_0x0400EA40 + type: mk64:course_vtx + count: 50 + offset: 0xccf8 + +d_course_choco_mountain_vertex_0x0400EC40: + symbol: d_course_choco_mountain_vertex_0x0400EC40 + type: mk64:course_vtx + count: 48 + offset: 0xceb8 + +d_course_choco_mountain_vertex_0x0400EE20: + symbol: d_course_choco_mountain_vertex_0x0400EE20 + type: mk64:course_vtx + count: 3 + offset: 0xd05c + +d_course_choco_mountain_vertex_0x0400EE50: + symbol: d_course_choco_mountain_vertex_0x0400EE50 + type: mk64:course_vtx + count: 49 + offset: 0xd086 + +d_course_choco_mountain_vertex_0x0400F040: + symbol: d_course_choco_mountain_vertex_0x0400F040 + type: mk64:course_vtx + count: 48 + offset: 0xd238 + +d_course_choco_mountain_vertex_0x0400F220: + symbol: d_course_choco_mountain_vertex_0x0400F220 + type: mk64:course_vtx + count: 21 + offset: 0xd3dc + +d_course_choco_mountain_vertex_0x0400F310: + symbol: d_course_choco_mountain_vertex_0x0400F310 + type: mk64:course_vtx + count: 33 + offset: 0xd4ae + +d_course_choco_mountain_vertex_0x0400F460: + symbol: d_course_choco_mountain_vertex_0x0400F460 + type: mk64:course_vtx + count: 49 + offset: 0xd5d4 + +d_course_choco_mountain_vertex_0x0400F650: + symbol: d_course_choco_mountain_vertex_0x0400F650 + type: mk64:course_vtx + count: 49 + offset: 0xd786 + +d_course_choco_mountain_vertex_0x0400F840: + symbol: d_course_choco_mountain_vertex_0x0400F840 + type: mk64:course_vtx + count: 32 + offset: 0xd938 + +d_course_choco_mountain_vertex_0x0400F980: + symbol: d_course_choco_mountain_vertex_0x0400F980 + type: mk64:course_vtx + count: 37 + offset: 0xda50 + +d_course_choco_mountain_vertex_0x0400FB10: + symbol: d_course_choco_mountain_vertex_0x0400FB10 + type: mk64:course_vtx + count: 50 + offset: 0xdbae + +d_course_choco_mountain_vertex_0x0400FD10: + symbol: d_course_choco_mountain_vertex_0x0400FD10 + type: mk64:course_vtx + count: 49 + offset: 0xdd6e + +d_course_choco_mountain_vertex_0x0400FF00: + symbol: d_course_choco_mountain_vertex_0x0400FF00 + type: mk64:course_vtx + count: 9 + offset: 0xdf20 + +d_course_choco_mountain_vertex_0x0400FF90: + symbol: d_course_choco_mountain_vertex_0x0400FF90 + type: mk64:course_vtx + count: 49 + offset: 0xdf9e + +d_course_choco_mountain_vertex_0x04010180: + symbol: d_course_choco_mountain_vertex_0x04010180 + type: mk64:course_vtx + count: 6 + offset: 0xe150 + +d_course_choco_mountain_vertex_0x040101E0: + symbol: d_course_choco_mountain_vertex_0x040101E0 + type: mk64:course_vtx + count: 48 + offset: 0xe1a4 + +d_course_choco_mountain_vertex_0x040103C0: + symbol: d_course_choco_mountain_vertex_0x040103C0 + type: mk64:course_vtx + count: 4 + offset: 0xe348 + +d_course_choco_mountain_vertex_0x04010400: + symbol: d_course_choco_mountain_vertex_0x04010400 + type: mk64:course_vtx + count: 48 + offset: 0xe380 + +d_course_choco_mountain_vertex_0x040105E0: + symbol: d_course_choco_mountain_vertex_0x040105E0 + type: mk64:course_vtx + count: 21 + offset: 0xe524 + +d_course_choco_mountain_vertex_0x040106D0: + symbol: d_course_choco_mountain_vertex_0x040106D0 + type: mk64:course_vtx + count: 48 + offset: 0xe5f6 + +d_course_choco_mountain_vertex_0x040108B0: + symbol: d_course_choco_mountain_vertex_0x040108B0 + type: mk64:course_vtx + count: 6 + offset: 0xe79a + +d_course_choco_mountain_vertex_0x04010910: + symbol: d_course_choco_mountain_vertex_0x04010910 + type: mk64:course_vtx + count: 40 + offset: 0xe7ee + +d_course_choco_mountain_vertex_0x04010AD0: + symbol: d_course_choco_mountain_vertex_0x04010AD0 + type: mk64:course_vtx + count: 50 + offset: 0xe976 + +d_course_choco_mountain_vertex_0x04010CD0: + symbol: d_course_choco_mountain_vertex_0x04010CD0 + type: mk64:course_vtx + count: 50 + offset: 0xeb36 + +d_course_choco_mountain_vertex_0x04010ED0: + symbol: d_course_choco_mountain_vertex_0x04010ED0 + type: mk64:course_vtx + count: 50 + offset: 0xecf6 + +d_course_choco_mountain_vertex_0x040110D0: + symbol: d_course_choco_mountain_vertex_0x040110D0 + type: mk64:course_vtx + count: 50 + offset: 0xeeb6 + +d_course_choco_mountain_vertex_0x040112D0: + symbol: d_course_choco_mountain_vertex_0x040112D0 + type: mk64:course_vtx + count: 50 + offset: 0xf076 + +d_course_choco_mountain_vertex_0x040114D0: + symbol: d_course_choco_mountain_vertex_0x040114D0 + type: mk64:course_vtx + count: 49 + offset: 0xf236 + +d_course_choco_mountain_vertex_0x040116C0: + symbol: d_course_choco_mountain_vertex_0x040116C0 + type: mk64:course_vtx + count: 48 + offset: 0xf3e8 + +d_course_choco_mountain_vertex_0x040118A0: + symbol: d_course_choco_mountain_vertex_0x040118A0 + type: mk64:course_vtx + count: 50 + offset: 0xf58c + +d_course_choco_mountain_vertex_0x04011AA0: + symbol: d_course_choco_mountain_vertex_0x04011AA0 + type: mk64:course_vtx + count: 50 + offset: 0xf74c + +d_course_choco_mountain_vertex_0x04011CA0: + symbol: d_course_choco_mountain_vertex_0x04011CA0 + type: mk64:course_vtx + count: 25 + offset: 0xf90c + +d_course_choco_mountain_vertex_0x04011DD0: + symbol: d_course_choco_mountain_vertex_0x04011DD0 + type: mk64:course_vtx + count: 34 + offset: 0xfa16 + +d_course_choco_mountain_vertex_0x04011F30: + symbol: d_course_choco_mountain_vertex_0x04011F30 + type: mk64:course_vtx + count: 6 + offset: 0xfb4a + +d_course_choco_mountain_vertex_0x04011F90: + symbol: d_course_choco_mountain_vertex_0x04011F90 + type: mk64:course_vtx + count: 39 + offset: 0xfb9e + +d_course_choco_mountain_vertex_0x04012140: + symbol: d_course_choco_mountain_vertex_0x04012140 + type: mk64:course_vtx + count: 48 + offset: 0xfd18 + +d_course_choco_mountain_vertex_0x04012320: + symbol: d_course_choco_mountain_vertex_0x04012320 + type: mk64:course_vtx + count: 50 + offset: 0xfebc + +d_course_choco_mountain_vertex_0x04012520: + symbol: d_course_choco_mountain_vertex_0x04012520 + type: mk64:course_vtx + count: 32 + offset: 0x1007c + +d_course_choco_mountain_vertex_0x04012660: + symbol: d_course_choco_mountain_vertex_0x04012660 + type: mk64:course_vtx + count: 38 + offset: 0x10194 + +d_course_choco_mountain_vertex_0x04012800: + symbol: d_course_choco_mountain_vertex_0x04012800 + type: mk64:course_vtx + count: 24 + offset: 0x10300 + +d_course_choco_mountain_vertex_0x04012920: + symbol: d_course_choco_mountain_vertex_0x04012920 + type: mk64:course_vtx + count: 4 + offset: 0x103fc + +d_course_choco_mountain_vertex_0x04012960: + symbol: d_course_choco_mountain_vertex_0x04012960 + type: mk64:course_vtx + count: 48 + offset: 0x10434 + +d_course_choco_mountain_vertex_0x04012B40: + symbol: d_course_choco_mountain_vertex_0x04012B40 + type: mk64:course_vtx + count: 34 + offset: 0x105d8 + +d_course_choco_mountain_vertex_0x04012CA0: + symbol: d_course_choco_mountain_vertex_0x04012CA0 + type: mk64:course_vtx + count: 48 + offset: 0x1070c + +d_course_choco_mountain_vertex_0x04012E80: + symbol: d_course_choco_mountain_vertex_0x04012E80 + type: mk64:course_vtx + count: 48 + offset: 0x108b0 + +d_course_choco_mountain_vertex_0x04013060: + symbol: d_course_choco_mountain_vertex_0x04013060 + type: mk64:course_vtx + count: 48 + offset: 0x10a54 + +d_course_choco_mountain_vertex_0x04013240: + symbol: d_course_choco_mountain_vertex_0x04013240 + type: mk64:course_vtx + count: 48 + offset: 0x10bf8 + +d_course_choco_mountain_vertex_0x04013420: + symbol: d_course_choco_mountain_vertex_0x04013420 + type: mk64:course_vtx + count: 6 + offset: 0x10d9c + +d_course_choco_mountain_vertex_0x04013480: + symbol: d_course_choco_mountain_vertex_0x04013480 + type: mk64:course_vtx + count: 48 + offset: 0x10df0 + +d_course_choco_mountain_vertex_0x04013660: + symbol: d_course_choco_mountain_vertex_0x04013660 + type: mk64:course_vtx + count: 50 + offset: 0x10f94 + +d_course_choco_mountain_vertex_0x04013860: + symbol: d_course_choco_mountain_vertex_0x04013860 + type: mk64:course_vtx + count: 3 + offset: 0x11154 + +d_course_choco_mountain_vertex_0x04013890: + symbol: d_course_choco_mountain_vertex_0x04013890 + type: mk64:course_vtx + count: 50 + offset: 0x1117e + +d_course_choco_mountain_vertex_0x04013A90: + symbol: d_course_choco_mountain_vertex_0x04013A90 + type: mk64:course_vtx + count: 4 + offset: 0x1133e + +d_course_choco_mountain_vertex_0x04013AD0: + symbol: d_course_choco_mountain_vertex_0x04013AD0 + type: mk64:course_vtx + count: 24 + offset: 0x11376 + +d_course_choco_mountain_vertex_0x04013BF0: + symbol: d_course_choco_mountain_vertex_0x04013BF0 + type: mk64:course_vtx + count: 33 + offset: 0x11472 + +d_course_choco_mountain_vertex_0x04013D40: + symbol: d_course_choco_mountain_vertex_0x04013D40 + type: mk64:course_vtx + count: 40 + offset: 0x11598 + +d_course_choco_mountain_vertex_0x04013F00: + symbol: d_course_choco_mountain_vertex_0x04013F00 + type: mk64:course_vtx + count: 50 + offset: 0x11720 + +d_course_choco_mountain_vertex_0x04014100: + symbol: d_course_choco_mountain_vertex_0x04014100 + type: mk64:course_vtx + count: 8 + offset: 0x118e0 + +d_course_choco_mountain_vertex_0x04014180: + symbol: d_course_choco_mountain_vertex_0x04014180 + type: mk64:course_vtx + count: 50 + offset: 0x11950 + +d_course_choco_mountain_vertex_0x04014380: + symbol: d_course_choco_mountain_vertex_0x04014380 + type: mk64:course_vtx + count: 48 + offset: 0x11b10 + +d_course_choco_mountain_vertex_0x04014560: + symbol: d_course_choco_mountain_vertex_0x04014560 + type: mk64:course_vtx + count: 18 + offset: 0x11cb4 + +d_course_choco_mountain_vertex_0x04014620: + symbol: d_course_choco_mountain_vertex_0x04014620 + type: mk64:course_vtx + count: 48 + offset: 0x11d5c + +d_course_choco_mountain_vertex_0x04014800: + symbol: d_course_choco_mountain_vertex_0x04014800 + type: mk64:course_vtx + count: 6 + offset: 0x11f00 + +d_course_choco_mountain_vertex_0x04014860: + symbol: d_course_choco_mountain_vertex_0x04014860 + type: mk64:course_vtx + count: 36 + offset: 0x11f54 + +d_course_choco_mountain_vertex_0x040149E0: + symbol: d_course_choco_mountain_vertex_0x040149E0 + type: mk64:course_vtx + count: 24 + offset: 0x120a4 + +d_course_choco_mountain_vertex_0x04014B00: + symbol: d_course_choco_mountain_vertex_0x04014B00 + type: mk64:course_vtx + count: 24 + offset: 0x121a0 + +d_course_choco_mountain_vertex_0x04014C20: + symbol: d_course_choco_mountain_vertex_0x04014C20 + type: mk64:course_vtx + count: 48 + offset: 0x1229c + +d_course_choco_mountain_vertex_0x04014E00: + symbol: d_course_choco_mountain_vertex_0x04014E00 + type: mk64:course_vtx + count: 24 + offset: 0x12440 + +d_course_choco_mountain_vertex_0x04014F20: + symbol: d_course_choco_mountain_vertex_0x04014F20 + type: mk64:course_vtx + count: 50 + offset: 0x1253c + +d_course_choco_mountain_vertex_0x04015120: + symbol: d_course_choco_mountain_vertex_0x04015120 + type: mk64:course_vtx + count: 39 + offset: 0x126fc + +d_course_choco_mountain_vertex_0x040152D0: + symbol: d_course_choco_mountain_vertex_0x040152D0 + type: mk64:course_vtx + count: 36 + offset: 0x12876 + +d_course_choco_mountain_vertex_0x04015450: + symbol: d_course_choco_mountain_vertex_0x04015450 + type: mk64:course_vtx + count: 18 + offset: 0x129c6 + +d_course_choco_mountain_vertex_0x04015510: + symbol: d_course_choco_mountain_vertex_0x04015510 + type: mk64:course_vtx + count: 18 + offset: 0x12a6e + +d_course_choco_mountain_vertex_0x040155D0: + symbol: d_course_choco_mountain_vertex_0x040155D0 + type: mk64:course_vtx + count: 8 + offset: 0x12b16 + +d_course_choco_mountain_vertex_0x04015650: + symbol: d_course_choco_mountain_vertex_0x04015650 + type: mk64:course_vtx + count: 4 + offset: 0x12b86 + +d_course_choco_mountain_vertex_0x04015690: + symbol: d_course_choco_mountain_vertex_0x04015690 + type: mk64:course_vtx + count: 4 + offset: 0x12bbe + +d_course_choco_mountain_vertex_0x040156D0: + symbol: d_course_choco_mountain_vertex_0x040156D0 + type: mk64:course_vtx + count: 8 + offset: 0x12bf6 + +d_course_choco_mountain_vertex_0x04015750: + symbol: d_course_choco_mountain_vertex_0x04015750 + type: mk64:course_vtx + count: 4 + offset: 0x12c66 + +d_course_choco_mountain_vertex_0x04015790: + symbol: d_course_choco_mountain_vertex_0x04015790 + type: mk64:course_vtx + count: 4 + offset: 0x12c9e + +d_course_choco_mountain_vertex_0x040157D0: + symbol: d_course_choco_mountain_vertex_0x040157D0 + type: mk64:course_vtx + count: 32 + offset: 0x12cd6 + +d_course_choco_mountain_vertex_0x04015910: + symbol: d_course_choco_mountain_vertex_0x04015910 + type: mk64:course_vtx + count: 35 + offset: 0x12dee + +d_course_choco_mountain_vertex_0x04015A80: + symbol: d_course_choco_mountain_vertex_0x04015A80 + type: mk64:course_vtx + count: 4 + offset: 0x12f30 + +d_course_choco_mountain_vertex_0x04015AC0: + symbol: d_course_choco_mountain_vertex_0x04015AC0 + type: mk64:course_vtx + count: 18 + offset: 0x12f68 \ No newline at end of file diff --git a/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml b/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml new file mode 100644 index 000000000..623c60224 --- /dev/null +++ b/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml @@ -0,0 +1,1290 @@ +:config: + segments: + - [0x06, 0x885A10] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml" + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureDksJungleParkwayKiwanoFruit1"] + - [0x03009800, "textures/other_textures/gTextureDksJungleParkwayKiwanoFruit2"] + - [0x0300A000, "textures/other_textures/gTextureDksJungleParkwayKiwanoFruit3"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_648508"] + - [0x05001000, "textures/other_textures/texture_6684F8"] + - [0x05001800, "textures/other_textures/wood_bridge_slats"] + - [0x05002800, "textures/other_textures/texture_654460"] + - [0x05003800, "textures/other_textures/texture_654F74"] + - [0x05004800, "textures/other_textures/texture_655998"] + - [0x05005000, "textures/other_textures/texture_655F38"] + - [0x05006000, "textures/other_textures/texture_656AF4"] + - [0x05007000, "textures/other_textures/texture_6575C8"] + - [0x05008000, "textures/other_textures/texture_658370"] + - [0x05009000, "textures/other_textures/texture_65912C"] + - [0x0500A000, "textures/other_textures/texture_659EE8"] + - [0x0500B000, "textures/other_textures/texture_65ADE0"] + - [0x0500C000, "textures/other_textures/texture_65BB3C"] + - [0x0500D000, "textures/other_textures/texture_65C8DC"] + - [0x0500E000, "textures/other_textures/texture_65D5D4"] + - [0x0500F000, "textures/other_textures/texture_65E2EC"] + - [0x0500F800, "textures/other_textures/texture_65EAEC"] + - [0x05010000, "textures/other_textures/texture_65E59C"] + - [0x05011000, "textures/other_textures/texture_65EE38"] + - [0x05012000, "textures/other_textures/texture_65FB18"] + - [0x05012800, "textures/other_textures/sign_pink_arrow"] + - [0x05013000, "textures/other_textures/waves_0"] + - [0x05013800, "textures/other_textures/texture_683844"] + # Segment 7 + - [0x7000000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_0"] + - [0x7000200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_200"] + - [0x7000398, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_398"] + - [0x7000520, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_520"] + - [0x70006C8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C8"] + - [0x70007E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7E0"] + - [0x7000918, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_918"] + - [0x7000A40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_A40"] + - [0x7000B68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_B68"] + - [0x7000C90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_C90"] + - [0x7000EC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_EC8"] + - [0x7000FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_FD0"] + - [0x7001118, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1118"] + - [0x70012A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_12A8"] + - [0x7001430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1430"] + - [0x70015B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_15B0"] + - [0x70017D0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_17D0"] + - [0x7001970, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1970"] + - [0x7001B38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1B38"] + - [0x7001C98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1C98"] + - [0x7001EB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1EB8"] + - [0x7002040, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2040"] + - [0x70020A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_20A0"] + - [0x7002100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2100"] + - [0x7002160, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2160"] + - [0x70021C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_21C0"] + - [0x7002378, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2378"] + - [0x70023F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_23F0"] + - [0x7002450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2450"] + - [0x70024B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_24B0"] + - [0x7002510, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2510"] + - [0x7002570, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2570"] + - [0x7002788, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2788"] + - [0x7002890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2890"] + - [0x70029F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_29F0"] + - [0x7002B78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2B78"] + - [0x7002D00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2D00"] + - [0x7002D60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2D60"] + - [0x7002DC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2DC8"] + - [0x7002E28, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2E28"] + - [0x7002E88, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2E88"] + - [0x7002FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2FD0"] + - [0x7003058, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3058"] + - [0x70030C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_30C0"] + - [0x7003130, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3130"] + - [0x70031A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_31A0"] + - [0x7003228, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3228"] + - [0x70032A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_32A0"] + - [0x70032D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_32D8"] + - [0x7003348, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3348"] + - [0x70033A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_33A8"] + - [0x7003420, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3420"] + - [0x7003498, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3498"] + - [0x7003508, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3508"] + - [0x7003588, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3588"] + - [0x70035F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_35F0"] + - [0x7003660, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3660"] + - [0x70036A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_36A8"] + - [0x7003748, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3748"] + - [0x7003758, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3758"] + - [0x70037C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_37C0"] + - [0x7003A30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3A30"] + - [0x7003A48, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3A48"] + - [0x7003AD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3AD0"] + - [0x7003AE0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3AE0"] + - [0x7003B18, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3B18"] + - [0x7003B28, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3B28"] + - [0x7003BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3BA8"] + - [0x7003C50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3C50"] + - [0x7003D08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3D08"] + - [0x7003DA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3DA8"] + - [0x7003DD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3DD0"] + - [0x7003E40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3E40"] + - [0x7003EB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3EB0"] + - [0x7003F30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3F30"] + - [0x7003FA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3FA8"] + - [0x7003FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3FD0"] + - [0x7004230, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4230"] + - [0x7004300, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4300"] + - [0x7004548, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4548"] + - [0x7004760, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4760"] + - [0x7004788, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4788"] + - [0x7004858, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4858"] + - [0x7004948, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4948"] + - [0x7004A08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4A08"] + - [0x7004AB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4AB0"] + - [0x7004B90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4B90"] + - [0x7004CA0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4CA0"] + - [0x7004D30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4D30"] + - [0x7004DB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4DB8"] + - [0x7004EB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4EB8"] + - [0x7004FE8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4FE8"] + - [0x70050A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_50A8"] + - [0x70051C8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_51C8"] + - [0x70052C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_52C0"] + - [0x7005420, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5420"] + - [0x70054D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_54D8"] + - [0x7005558, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5558"] + - [0x70055D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_55D8"] + - [0x7005648, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5648"] + - [0x70056B8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_56B8"] + - [0x7005768, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5768"] + - [0x7005800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5800"] + - [0x7005890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5890"] + - [0x70058F8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_58F8"] + - [0x7005970, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5970"] + - [0x70059E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_59E0"] + - [0x7005A50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5A50"] + - [0x7005AB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5AB0"] + - [0x7005B50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5B50"] + - [0x7005BE0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5BE0"] + - [0x7005C68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5C68"] + - [0x7005D68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5D68"] + - [0x7005DF0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5DF0"] + - [0x7005E70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5E70"] + - [0x7005EF0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5EF0"] + - [0x7005F80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5F80"] + - [0x7006008, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6008"] + - [0x7006098, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6098"] + - [0x7006100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6100"] + - [0x70061B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_61B0"] + - [0x7006240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6240"] + - [0x7006368, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6368"] + - [0x7006430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6430"] + - [0x70064C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_64C0"] + - [0x7006530, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6530"] + - [0x70065A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_65A8"] + - [0x7006620, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6620"] + - [0x70066B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_66B0"] + - [0x7006728, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6728"] + - [0x7006798, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6798"] + - [0x7006818, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6818"] + - [0x7006930, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6930"] + - [0x70069A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_69A0"] + - [0x7006A10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6A10"] + - [0x7006AA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6AA8"] + - [0x7006B48, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6B48"] + - [0x7006BD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6BD0"] + - [0x7006C38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C38"] + - [0x7006C98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C98"] + - [0x7006D08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6D08"] + - [0x7006D68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6D68"] + - [0x7006DD8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6DD8"] + - [0x7006E40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6E40"] + - [0x7006F10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6F10"] + - [0x7006F98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6F98"] + - [0x7007048, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7048"] + - [0x70070C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_70C0"] + - [0x7007170, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7170"] + - [0x70071E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_71E8"] + - [0x70072A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_72A8"] + - [0x7007390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7390"] + - [0x7007400, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7400"] + - [0x7007488, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7488"] + - [0x7007538, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7538"] + - [0x70076A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_76A0"] + - [0x70077E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_77E8"] + - [0x7007920, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7920"] + - [0x7007A88, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7A88"] + - [0x7007B10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7B10"] + - [0x7007C78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7C78"] + - [0x7007DA0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7DA0"] + - [0x7007E50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7E50"] + - [0x7007F58, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7F58"] + - [0x7007FC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7FC8"] + - [0x70080A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_80A0"] + - [0x7008140, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8140"] + - [0x7008358, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8358"] + - [0x7008458, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8458"] + - [0x70085A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_85A0"] + - [0x7008648, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8648"] + - [0x70086B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_86B0"] + - [0x7008760, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8760"] + - [0x7008800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8800"] + - [0x70089B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_89B0"] + - [0x7008A40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8A40"] + - [0x7008BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8BA8"] + - [0x7008C60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8C60"] + - [0x7008E78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8E78"] + - [0x7008F30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8F30"] + - [0x7009000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9000"] + - [0x7009128, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9128"] + - [0x7009250, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9250"] + - [0x7009268, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9268"] + - [0x70092D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_92D8"] + - [0x70092E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_92E8"] + - [0x7009390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9390"] + - [0x7009418, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9418"] + - [0x70094D0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_94D0"] + - [0x7009588, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9588"] + - [0x7009630, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9630"] + - [0x70096F8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_96F8"] + - [0x7009790, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9790"] + - [0x7009838, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9838"] + - [0x7009880, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9880"] + - [0x70098E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_98E0"] + - [0x70098F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_98F0"] + - [0x7009988, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9988"] + - [0x7009A20, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9A20"] + - [0x7009A38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9A38"] + - [0x7009B98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9B98"] + - [0x7009BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9BA8"] + - [0x7009C18, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9C18"] + # Segment 4 + - [0x4000000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000000"] + - [0x4000100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000100"] + - [0x4000180, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000180"] + - [0x4000200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000200"] + - [0x4000240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000240"] + - [0x40002c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040002C0"] + - [0x4000340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000340"] + - [0x4000440, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000440"] + - [0x4000500, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000500"] + - [0x4000540, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000540"] + - [0x4000580, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000580"] + - [0x40005c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040005C0"] + - [0x4000600, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000600"] + - [0x40006c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040006C0"] + - [0x4000740, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000740"] + - [0x4000780, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000780"] + - [0x40007c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040007C0"] + - [0x4000800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000800"] + - [0x4000840, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000840"] + - [0x40008c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040008C0"] + - [0x4000980, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000980"] + - [0x4000a00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000A00"] + - [0x4000a40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000A40"] + - [0x4000ac0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000AC0"] + - [0x4000b00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000B00"] + - [0x4000bc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000BC0"] + - [0x4000c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000C40"] + - [0x4000c80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000C80"] + - [0x4000cc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000CC0"] + - [0x4000d40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000D40"] + - [0x4000e00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000E00"] + - [0x4000e80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000E80"] + - [0x4000f00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000F00"] + - [0x4000fc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000FC0"] + - [0x4001040, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001040"] + - [0x40010c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040010C0"] + - [0x4001140, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001140"] + - [0x40011c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040011C0"] + - [0x4001240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001240"] + - [0x40012c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040012C0"] + - [0x4001340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001340"] + - [0x40013c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040013C0"] + - [0x4001440, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001440"] + - [0x40014c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040014C0"] + - [0x4001540, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001540"] + - [0x40015c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040015C0"] + - [0x4001640, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001640"] + - [0x4001780, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001780"] + - [0x4001840, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001840"] + - [0x4001900, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001900"] + - [0x40019c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040019C0"] + - [0x4001a80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001A80"] + - [0x4001bc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001BC0"] + - [0x4001c00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C00"] + - [0x4001c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C40"] + - [0x4001c80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C80"] + - [0x4001cc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001CC0"] + - [0x4001d80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001D80"] + - [0x4001e40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001E40"] + - [0x4001f00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001F00"] + - [0x4001fc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001FC0"] + - [0x4002040, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002040"] + - [0x4002080, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002080"] + - [0x4002100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002100"] + - [0x4002140, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002140"] + - [0x4002180, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002180"] + - [0x4002200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002200"] + - [0x4002280, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002280"] + - [0x40022c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040022C0"] + - [0x4002300, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002300"] + - [0x4002340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002340"] + - [0x4002380, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002380"] + - [0x4002400, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002400"] + - [0x4002540, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002540"] + - [0x4002640, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002640"] + - [0x4002780, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002780"] + - [0x40028c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040028C0"] + - [0x4002900, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002900"] + - [0x4002a40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002A40"] + - [0x4002b00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002B00"] + - [0x4002b80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002B80"] + - [0x4002c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002C40"] + - [0x4002cc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002CC0"] + - [0x4002e00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002E00"] + - [0x4002ec0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002EC0"] + - [0x4002f00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F00"] + - [0x4002f40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F40"] + - [0x4002f80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F80"] + - [0x4003000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003000"] + - [0x40030c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040030C0"] + - [0x4003100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003100"] + - [0x4003180, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003180"] + - [0x40031c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040031C0"] + - [0x4003240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003240"] + - [0x4003280, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003280"] + - [0x40032c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040032C0"] + - [0x4003340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003340"] + - [0x4003380, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003380"] + - [0x4003400, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003400"] + - [0x4003480, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003480"] + - [0x4003500, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003500"] + - [0x4003580, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003580"] + - [0x40036c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040036C0"] + - [0x4003780, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003780"] + - [0x4003800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003800"] + - [0x4003840, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003840"] + - [0x4003900, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003900"] + - [0x4003980, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003980"] + - [0x4003ac0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003AC0"] + - [0x4003b40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003B40"] + - [0x4003b80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003B80"] + - [0x4003bc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003BC0"] + - [0x4003c00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003C00"] + - [0x4003c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003C40"] + - [0x4003cc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003CC0"] + - [0x4003d00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D00"] + - [0x4003d40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D40"] + - [0x4003d80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D80"] + - [0x4003dc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003DC0"] + - [0x4003e30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003E30"] + - [0x4003e70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003E70"] + - [0x4003eb0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003EB0"] + - [0x4003ef0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003EF0"] + - [0x4003f30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003F30"] + - [0x4003f70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003F70"] + - [0x4003fb0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003FB0"] + - [0x40040b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040040B0"] + - [0x40040f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040040F0"] + - [0x4004130, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004130"] + - [0x4004170, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004170"] + - [0x40041b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040041B0"] + - [0x40041f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040041F0"] + - [0x40042b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040042B0"] + - [0x4004330, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004330"] + - [0x4004370, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004370"] + - [0x40043b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040043B0"] + - [0x4004430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004430"] + - [0x4004470, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004470"] + - [0x4004530, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004530"] + - [0x4004570, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004570"] + - [0x40045b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040045B0"] + - [0x40045f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040045F0"] + - [0x4004630, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004630"] + - [0x4004690, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004690"] + - [0x4004710, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004710"] + - [0x4004750, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004750"] + - [0x40047d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040047D0"] + - [0x4004850, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004850"] + - [0x40048d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040048D0"] + - [0x4004910, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004910"] + - [0x4004950, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004950"] + - [0x4004990, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004990"] + - [0x40049d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040049D0"] + - [0x4004a50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004A50"] + - [0x4004ad0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004AD0"] + - [0x4004b10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B10"] + - [0x4004b50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B50"] + - [0x4004b90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B90"] + - [0x4004bd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004BD0"] + - [0x4004c50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004C50"] + - [0x4004c90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004C90"] + - [0x4004d10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D10"] + - [0x4004d50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D50"] + - [0x4004d90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D90"] + - [0x4004f10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004F10"] + - [0x4004f90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004F90"] + - [0x4005050, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005050"] + - [0x4005110, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005110"] + - [0x4005290, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005290"] + - [0x4005390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005390"] + - [0x4005450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005450"] + - [0x4005490, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005490"] + - [0x4005590, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005590"] + - [0x4005690, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005690"] + - [0x4005750, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005750"] + - [0x4005890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005890"] + - [0x4005910, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005910"] + - [0x40059d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040059D0"] + - [0x4005ad0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005AD0"] + - [0x4005b50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005B50"] + - [0x4005d50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005D50"] + - [0x4005f50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005F50"] + - [0x4006150, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006150"] + - [0x4006350, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006350"] + - [0x4006550, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006550"] + - [0x4006750, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006750"] + - [0x4006950, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006950"] + - [0x4006a50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006A50"] + - [0x4006bd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006BD0"] + - [0x4006cf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006CF0"] + - [0x4006e90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006E90"] + - [0x4007060, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007060"] + - [0x40071f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040071F0"] + - [0x4007270, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007270"] + - [0x40072e0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040072E0"] + - [0x4007390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007390"] + - [0x4007430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007430"] + - [0x4007620, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007620"] + - [0x4007820, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007820"] + - [0x4007a10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007A10"] + - [0x4007bd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007BD0"] + - [0x4007dc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007DC0"] + - [0x4007e90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007E90"] + - [0x4008090, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008090"] + - [0x4008290, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008290"] + - [0x4008490, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008490"] + - [0x4008610, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008610"] + - [0x4008810, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008810"] + - [0x4008a10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008A10"] + - [0x4008bf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008BF0"] + - [0x4008d20, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008D20"] + - [0x4008f00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008F00"] + - [0x4008fc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008FC0"] + - [0x40091a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040091A0"] + - [0x4009320, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009320"] + - [0x4009500, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009500"] + - [0x4009560, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009560"] + - [0x4009710, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009710"] + - [0x40098f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040098F0"] + - [0x4009a10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009A10"] + - [0x4009c10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009C10"] + - [0x4009da0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009DA0"] + - [0x4009ed0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009ED0"] + - [0x4009fc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009FC0"] + - [0x400a100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A100"] + - [0x400a1c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A1C0"] + - [0x400a370, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A370"] + - [0x400a450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A450"] + - [0x400a5b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A5B0"] + - [0x400a6f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A6F0"] + - [0x400a7f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A7F0"] + - [0x400a8d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A8D0"] + - [0x400a990, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A990"] + - [0x400ab30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AB30"] + - [0x400ad10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AD10"] + - [0x400ad80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AD80"] + - [0x400aec0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AEC0"] + - [0x400af70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AF70"] + - [0x400aff0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AFF0"] + - [0x400b070, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B070"] + - [0x400b230, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B230"] + - [0x400b350, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B350"] + - [0x400b450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B450"] + - [0x400b4d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B4D0"] + - [0x400b570, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B570"] + - [0x400b5f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B5F0"] + - [0x400b670, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B670"] + - [0x400b6b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B6B0"] + - [0x400b7f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B7F0"] + - [0x400b9a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B9A0"] + - [0x400ba90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BA90"] + - [0x400bc90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BC90"] + - [0x400bd60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BD60"] + - [0x400be80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BE80"] + - [0x400bf60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BF60"] + - [0x400c020, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C020"] + - [0x400c100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C100"] + - [0x400c1c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C1C0"] + - [0x400c290, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C290"] + - [0x400c2f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C2F0"] + - [0x400c490, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C490"] + - [0x400c5a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C5A0"] + - [0x400c7a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C7A0"] + - [0x400c890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C890"] + - [0x400ca00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CA00"] + - [0x400caf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CAF0"] + - [0x400cb60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CB60"] + - [0x400cbf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CBF0"] + - [0x400cc90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CC90"] + - [0x400cd80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CD80"] + - [0x400ce20, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CE20"] + - [0x400ce90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CE90"] + - [0x400cf50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CF50"] + - [0x400d010, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D010"] + - [0x400d0d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D0D0"] + - [0x400d2c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D2C0"] + - [0x400d440, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D440"] + - [0x400d510, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D510"] + - [0x400d590, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D590"] + - [0x400d5d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D5D0"] + - [0x400d690, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D690"] + - [0x400d6d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D6D0"] + - [0x400d770, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D770"] + - [0x400d7f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D7F0"] + - [0x400d9e0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D9E0"] + - [0x400da80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DA80"] + - [0x400db80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DB80"] + - [0x400dd70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DD70"] + - [0x400de30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DE30"] + - [0x400dfc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DFC0"] + - [0x400e060, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E060"] + - [0x400e250, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E250"] + - [0x400e280, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E280"] + - [0x400e470, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E470"] + - [0x400e580, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E580"] + - [0x400e600, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E600"] + - [0x400e740, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E740"] + - [0x400e940, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E940"] + - [0x400eb40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EB40"] + - [0x400ed40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400ED40"] + - [0x400edd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EDD0"] + - [0x400efd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EFD0"] + - [0x400f1d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F1D0"] + - [0x400f3b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F3B0"] + - [0x400f5a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F5A0"] + - [0x400f7a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F7A0"] + - [0x400f8f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F8F0"] + - [0x400fae0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FAE0"] + - [0x400fce0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FCE0"] + - [0x400fec0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FEC0"] + - [0x400ff30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FF30"] + - [0x4010050, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010050"] + - [0x4010250, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010250"] + - [0x4010450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010450"] + - [0x40105f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040105F0"] + - [0x40107d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040107D0"] + - [0x40109d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040109D0"] + - [0x4010a10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010A10"] + - [0x4010b80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010B80"] + - [0x4010d80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010D80"] + - [0x4010f80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010F80"] + - [0x4011000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011000"] + - [0x4011200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011200"] + - [0x4011300, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011300"] + - [0x4011480, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011480"] + - [0x4011680, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011680"] + - [0x4011860, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011860"] + - [0x4011a40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011A40"] + - [0x4011c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011C40"] + - [0x4011de0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011DE0"] + - [0x4011fe0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011FE0"] + - [0x4012160, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012160"] + - [0x4012340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012340"] + - [0x4012540, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012540"] + - [0x40126c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040126C0"] + - [0x4012840, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012840"] + - [0x40128c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040128C0"] + - [0x4012a40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012A40"] + - [0x4012ba0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012BA0"] + - [0x4012da0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012DA0"] + - [0x4012f80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012F80"] + - [0x4013180, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013180"] + - [0x40132c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040132C0"] + - [0x4013390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013390"] + - [0x4013590, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013590"] + - [0x4013790, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013790"] + - [0x4013910, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013910"] + - [0x4013af0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013AF0"] + - [0x4013cf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013CF0"] + - [0x4013ef0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013EF0"] + - [0x40140f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040140F0"] + - [0x40142d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040142D0"] + - [0x40143d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040143D0"] + - [0x40145b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040145B0"] + - [0x40147b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040147B0"] + - [0x40148b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040148B0"] + - [0x4014970, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014970"] + - [0x4014b70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014B70"] + - [0x4014c70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014C70"] + - [0x4014d30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014D30"] + - [0x4014ed0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014ED0"] + - [0x4014f90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014F90"] + - [0x4015050, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015050"] + - [0x4015090, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015090"] + - [0x40150d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040150D0"] + - [0x40151d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040151D0"] + - [0x40152d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040152D0"] + - [0x40153d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040153D0"] + - [0x40154d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040154D0"] + - [0x4015590, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015590"] + - [0x4015650, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015650"] + - [0x4015790, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015790"] + - [0x40158d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040158D0"] + - [0x4015950, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015950"] + - [0x40159d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040159D0"] + - [0x4015a90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015A90"] + - [0x4015b50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015B50"] + - [0x4015b90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015B90"] + - [0x4015d90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015D90"] + - [0x4015ef0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015EF0"] + - [0x4015f90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015F90"] + - [0x4016170, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04016170"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_dks_jungle_parkway_dl_0: + symbol: d_course_dks_jungle_parkway_dl_0 + type: gfx + offset: 0x0 +d_course_dks_jungle_parkway_dl_20: + symbol: d_course_dks_jungle_parkway_dl_20 + type: gfx + offset: 0x20 +d_course_dks_jungle_parkway_dl_180: + symbol: d_course_dks_jungle_parkway_dl_180 + type: gfx + offset: 0x180 +d_course_dks_jungle_parkway_dl_210: + symbol: d_course_dks_jungle_parkway_dl_210 + type: gfx + offset: 0x210 +d_course_dks_jungle_parkway_dl_310: + symbol: d_course_dks_jungle_parkway_dl_310 + type: gfx + offset: 0x310 +d_course_dks_jungle_parkway_dl_400: + symbol: d_course_dks_jungle_parkway_dl_400 + type: gfx + offset: 0x400 +d_course_dks_jungle_parkway_dl_560: + symbol: d_course_dks_jungle_parkway_dl_560 + type: gfx + offset: 0x560 +d_course_dks_jungle_parkway_dl_628: + symbol: d_course_dks_jungle_parkway_dl_628 + type: gfx + offset: 0x628 +d_course_dks_jungle_parkway_dl_750: + symbol: d_course_dks_jungle_parkway_dl_750 + type: gfx + offset: 0x750 +d_course_dks_jungle_parkway_dl_888: + symbol: d_course_dks_jungle_parkway_dl_888 + type: gfx + offset: 0x888 +d_course_dks_jungle_parkway_dl_A10: + symbol: d_course_dks_jungle_parkway_dl_A10 + type: gfx + offset: 0xA10 +d_course_dks_jungle_parkway_dl_B00: + symbol: d_course_dks_jungle_parkway_dl_B00 + type: gfx + offset: 0xB00 +d_course_dks_jungle_parkway_dl_C30: + symbol: d_course_dks_jungle_parkway_dl_C30 + type: gfx + offset: 0xC30 +d_course_dks_jungle_parkway_dl_D98: + symbol: d_course_dks_jungle_parkway_dl_D98 + type: gfx + offset: 0xD98 +d_course_dks_jungle_parkway_dl_EF0: + symbol: d_course_dks_jungle_parkway_dl_EF0 + type: gfx + offset: 0xEF0 +d_course_dks_jungle_parkway_dl_1028: + symbol: d_course_dks_jungle_parkway_dl_1028 + type: gfx + offset: 0x1028 +d_course_dks_jungle_parkway_dl_1160: + symbol: d_course_dks_jungle_parkway_dl_1160 + type: gfx + offset: 0x1160 +d_course_dks_jungle_parkway_dl_12E8: + symbol: d_course_dks_jungle_parkway_dl_12E8 + type: gfx + offset: 0x12E8 +d_course_dks_jungle_parkway_dl_1478: + symbol: d_course_dks_jungle_parkway_dl_1478 + type: gfx + offset: 0x1478 +d_course_dks_jungle_parkway_dl_15E0: + symbol: d_course_dks_jungle_parkway_dl_15E0 + type: gfx + offset: 0x15E0 +d_course_dks_jungle_parkway_dl_1718: + symbol: d_course_dks_jungle_parkway_dl_1718 + type: gfx + offset: 0x1718 +d_course_dks_jungle_parkway_dl_1890: + symbol: d_course_dks_jungle_parkway_dl_1890 + type: gfx + offset: 0x1890 +d_course_dks_jungle_parkway_dl_1A00: + symbol: d_course_dks_jungle_parkway_dl_1A00 + type: gfx + offset: 0x1A00 +d_course_dks_jungle_parkway_dl_1B20: + symbol: d_course_dks_jungle_parkway_dl_1B20 + type: gfx + offset: 0x1B20 +d_course_dks_jungle_parkway_dl_1C20: + symbol: d_course_dks_jungle_parkway_dl_1C20 + type: gfx + offset: 0x1C20 +d_course_dks_jungle_parkway_dl_1DB8: + symbol: d_course_dks_jungle_parkway_dl_1DB8 + type: gfx + offset: 0x1DB8 +d_course_dks_jungle_parkway_dl_1F20: + symbol: d_course_dks_jungle_parkway_dl_1F20 + type: gfx + offset: 0x1F20 +d_course_dks_jungle_parkway_dl_1FD8: + symbol: d_course_dks_jungle_parkway_dl_1FD8 + type: gfx + offset: 0x1FD8 +d_course_dks_jungle_parkway_dl_20A0: + symbol: d_course_dks_jungle_parkway_dl_20A0 + type: gfx + offset: 0x20A0 +d_course_dks_jungle_parkway_dl_2200: + symbol: d_course_dks_jungle_parkway_dl_2200 + type: gfx + offset: 0x2200 +d_course_dks_jungle_parkway_dl_2328: + symbol: d_course_dks_jungle_parkway_dl_2328 + type: gfx + offset: 0x2328 +d_course_dks_jungle_parkway_dl_2398: + symbol: d_course_dks_jungle_parkway_dl_2398 + type: gfx + offset: 0x2398 +d_course_dks_jungle_parkway_dl_2480: + symbol: d_course_dks_jungle_parkway_dl_2480 + type: gfx + offset: 0x2480 +d_course_dks_jungle_parkway_dl_2558: + symbol: d_course_dks_jungle_parkway_dl_2558 + type: gfx + offset: 0x2558 +d_course_dks_jungle_parkway_dl_2728: + symbol: d_course_dks_jungle_parkway_dl_2728 + type: gfx + offset: 0x2728 +d_course_dks_jungle_parkway_dl_2810: + symbol: d_course_dks_jungle_parkway_dl_2810 + type: gfx + offset: 0x2810 +d_course_dks_jungle_parkway_dl_2928: + symbol: d_course_dks_jungle_parkway_dl_2928 + type: gfx + offset: 0x2928 +d_course_dks_jungle_parkway_dl_2AC0: + symbol: d_course_dks_jungle_parkway_dl_2AC0 + type: gfx + offset: 0x2AC0 +d_course_dks_jungle_parkway_dl_2B88: + symbol: d_course_dks_jungle_parkway_dl_2B88 + type: gfx + offset: 0x2B88 +d_course_dks_jungle_parkway_dl_2D70: + symbol: d_course_dks_jungle_parkway_dl_2D70 + type: gfx + offset: 0x2D70 +d_course_dks_jungle_parkway_dl_2E30: + symbol: d_course_dks_jungle_parkway_dl_2E30 + type: gfx + offset: 0x2E30 +d_course_dks_jungle_parkway_dl_3010: + symbol: d_course_dks_jungle_parkway_dl_3010 + type: gfx + offset: 0x3010 +d_course_dks_jungle_parkway_dl_3100: + symbol: d_course_dks_jungle_parkway_dl_3100 + type: gfx + offset: 0x3100 +d_course_dks_jungle_parkway_dl_3338: + symbol: d_course_dks_jungle_parkway_dl_3338 + type: gfx + offset: 0x3338 +d_course_dks_jungle_parkway_dl_3498: + symbol: d_course_dks_jungle_parkway_dl_3498 + type: gfx + offset: 0x3498 +d_course_dks_jungle_parkway_dl_36A0: + symbol: d_course_dks_jungle_parkway_dl_36A0 + type: gfx + offset: 0x36A0 +d_course_dks_jungle_parkway_dl_3790: + symbol: d_course_dks_jungle_parkway_dl_3790 + type: gfx + offset: 0x3790 +d_course_dks_jungle_parkway_dl_3988: + symbol: d_course_dks_jungle_parkway_dl_3988 + type: gfx + offset: 0x3988 +d_course_dks_jungle_parkway_dl_3B28: + symbol: d_course_dks_jungle_parkway_dl_3B28 + type: gfx + offset: 0x3B28 +d_course_dks_jungle_parkway_dl_3CC8: + symbol: d_course_dks_jungle_parkway_dl_3CC8 + type: gfx + offset: 0x3CC8 +d_course_dks_jungle_parkway_dl_3D88: + symbol: d_course_dks_jungle_parkway_dl_3D88 + type: gfx + offset: 0x3D88 +d_course_dks_jungle_parkway_dl_3F78: + symbol: d_course_dks_jungle_parkway_dl_3F78 + type: gfx + offset: 0x3F78 +d_course_dks_jungle_parkway_dl_4100: + symbol: d_course_dks_jungle_parkway_dl_4100 + type: gfx + offset: 0x4100 +d_course_dks_jungle_parkway_dl_4250: + symbol: d_course_dks_jungle_parkway_dl_4250 + type: gfx + offset: 0x4250 +d_course_dks_jungle_parkway_dl_42F8: + symbol: d_course_dks_jungle_parkway_dl_42F8 + type: gfx + offset: 0x42F8 +d_course_dks_jungle_parkway_dl_4470: + symbol: d_course_dks_jungle_parkway_dl_4470 + type: gfx + offset: 0x4470 +d_course_dks_jungle_parkway_dl_45C0: + symbol: d_course_dks_jungle_parkway_dl_45C0 + type: gfx + offset: 0x45C0 +d_course_dks_jungle_parkway_dl_4658: + symbol: d_course_dks_jungle_parkway_dl_4658 + type: gfx + offset: 0x4658 +d_course_dks_jungle_parkway_dl_4710: + symbol: d_course_dks_jungle_parkway_dl_4710 + type: gfx + offset: 0x4710 +d_course_dks_jungle_parkway_dl_4848: + symbol: d_course_dks_jungle_parkway_dl_4848 + type: gfx + offset: 0x4848 +d_course_dks_jungle_parkway_dl_4980: + symbol: d_course_dks_jungle_parkway_dl_4980 + type: gfx + offset: 0x4980 +d_course_dks_jungle_parkway_dl_4A38: + symbol: d_course_dks_jungle_parkway_dl_4A38 + type: gfx + offset: 0x4A38 +d_course_dks_jungle_parkway_dl_4AE8: + symbol: d_course_dks_jungle_parkway_dl_4AE8 + type: gfx + offset: 0x4AE8 +d_course_dks_jungle_parkway_dl_4C18: + symbol: d_course_dks_jungle_parkway_dl_4C18 + type: gfx + offset: 0x4C18 +d_course_dks_jungle_parkway_dl_4D10: + symbol: d_course_dks_jungle_parkway_dl_4D10 + type: gfx + offset: 0x4D10 +d_course_dks_jungle_parkway_dl_4E10: + symbol: d_course_dks_jungle_parkway_dl_4E10 + type: gfx + offset: 0x4E10 +d_course_dks_jungle_parkway_dl_4FB0: + symbol: d_course_dks_jungle_parkway_dl_4FB0 + type: gfx + offset: 0x4FB0 +d_course_dks_jungle_parkway_dl_51B0: + symbol: d_course_dks_jungle_parkway_dl_51B0 + type: gfx + offset: 0x51B0 +d_course_dks_jungle_parkway_dl_53F8: + symbol: d_course_dks_jungle_parkway_dl_53F8 + type: gfx + offset: 0x53F8 +d_course_dks_jungle_parkway_dl_5580: + symbol: d_course_dks_jungle_parkway_dl_5580 + type: gfx + offset: 0x5580 +d_course_dks_jungle_parkway_dl_5650: + symbol: d_course_dks_jungle_parkway_dl_5650 + type: gfx + offset: 0x5650 +d_course_dks_jungle_parkway_dl_57A0: + symbol: d_course_dks_jungle_parkway_dl_57A0 + type: gfx + offset: 0x57A0 +d_course_dks_jungle_parkway_dl_5920: + symbol: d_course_dks_jungle_parkway_dl_5920 + type: gfx + offset: 0x5920 +d_course_dks_jungle_parkway_dl_59B8: + symbol: d_course_dks_jungle_parkway_dl_59B8 + type: gfx + offset: 0x59B8 +d_course_dks_jungle_parkway_dl_5A50: + symbol: d_course_dks_jungle_parkway_dl_5A50 + type: gfx + offset: 0x5A50 +d_course_dks_jungle_parkway_dl_5B90: + symbol: d_course_dks_jungle_parkway_dl_5B90 + type: gfx + offset: 0x5B90 +d_course_dks_jungle_parkway_dl_5CB0: + symbol: d_course_dks_jungle_parkway_dl_5CB0 + type: gfx + offset: 0x5CB0 +d_course_dks_jungle_parkway_dl_5D70: + symbol: d_course_dks_jungle_parkway_dl_5D70 + type: gfx + offset: 0x5D70 +d_course_dks_jungle_parkway_dl_5DF8: + symbol: d_course_dks_jungle_parkway_dl_5DF8 + type: gfx + offset: 0x5DF8 +d_course_dks_jungle_parkway_dl_5EC8: + symbol: d_course_dks_jungle_parkway_dl_5EC8 + type: gfx + offset: 0x5EC8 +d_course_dks_jungle_parkway_dl_5FA8: + symbol: d_course_dks_jungle_parkway_dl_5FA8 + type: gfx + offset: 0x5FA8 +d_course_dks_jungle_parkway_dl_6048: + symbol: d_course_dks_jungle_parkway_dl_6048 + type: gfx + offset: 0x6048 +d_course_dks_jungle_parkway_dl_6178: + symbol: d_course_dks_jungle_parkway_dl_6178 + type: gfx + offset: 0x6178 +d_course_dks_jungle_parkway_dl_62D0: + symbol: d_course_dks_jungle_parkway_dl_62D0 + type: gfx + offset: 0x62D0 +d_course_dks_jungle_parkway_dl_6468: + symbol: d_course_dks_jungle_parkway_dl_6468 + type: gfx + offset: 0x6468 +d_course_dks_jungle_parkway_dl_6588: + symbol: d_course_dks_jungle_parkway_dl_6588 + type: gfx + offset: 0x6588 +d_course_dks_jungle_parkway_dl_6680: + symbol: d_course_dks_jungle_parkway_dl_6680 + type: gfx + offset: 0x6680 +d_course_dks_jungle_parkway_dl_6740: + symbol: d_course_dks_jungle_parkway_dl_6740 + type: gfx + offset: 0x6740 +d_course_dks_jungle_parkway_dl_67C0: + symbol: d_course_dks_jungle_parkway_dl_67C0 + type: gfx + offset: 0x67C0 +d_course_dks_jungle_parkway_dl_68D0: + symbol: d_course_dks_jungle_parkway_dl_68D0 + type: gfx + offset: 0x68D0 +d_course_dks_jungle_parkway_dl_69C8: + symbol: d_course_dks_jungle_parkway_dl_69C8 + type: gfx + offset: 0x69C8 +d_course_dks_jungle_parkway_dl_6A70: + symbol: d_course_dks_jungle_parkway_dl_6A70 + type: gfx + offset: 0x6A70 +d_course_dks_jungle_parkway_dl_6AD8: + symbol: d_course_dks_jungle_parkway_dl_6AD8 + type: gfx + offset: 0x6AD8 +d_course_dks_jungle_parkway_dl_6BE8: + symbol: d_course_dks_jungle_parkway_dl_6BE8 + type: gfx + offset: 0x6BE8 +d_course_dks_jungle_parkway_dl_6C70: + symbol: d_course_dks_jungle_parkway_dl_6C70 + type: gfx + offset: 0x6C70 +d_course_dks_jungle_parkway_dl_6CB8: + symbol: d_course_dks_jungle_parkway_dl_6CB8 + type: gfx + offset: 0x6CB8 +d_course_dks_jungle_parkway_dl_6D10: + symbol: d_course_dks_jungle_parkway_dl_6D10 + type: gfx + offset: 0x6D10 +d_course_dks_jungle_parkway_dl_6D88: + symbol: d_course_dks_jungle_parkway_dl_6D88 + type: gfx + offset: 0x6D88 +d_course_dks_jungle_parkway_dl_6E00: + symbol: d_course_dks_jungle_parkway_dl_6E00 + type: gfx + offset: 0x6E00 +d_course_dks_jungle_parkway_dl_6E48: + symbol: d_course_dks_jungle_parkway_dl_6E48 + type: gfx + offset: 0x6E48 +d_course_dks_jungle_parkway_dl_6EB0: + symbol: d_course_dks_jungle_parkway_dl_6EB0 + type: gfx + offset: 0x6EB0 +d_course_dks_jungle_parkway_dl_6F10: + symbol: d_course_dks_jungle_parkway_dl_6F10 + type: gfx + offset: 0x6F10 +d_course_dks_jungle_parkway_dl_7008: + symbol: d_course_dks_jungle_parkway_dl_7008 + type: gfx + offset: 0x7008 +d_course_dks_jungle_parkway_dl_7080: + symbol: d_course_dks_jungle_parkway_dl_7080 + type: gfx + offset: 0x7080 +d_course_dks_jungle_parkway_dl_7108: + symbol: d_course_dks_jungle_parkway_dl_7108 + type: gfx + offset: 0x7108 +d_course_dks_jungle_parkway_paddle_boat_model1: + symbol: d_course_dks_jungle_parkway_paddle_boat_model1 + type: vtx + offset: 0x8EB8 + count: 32 +d_course_dks_jungle_parkway_paddle_boat_model2: + symbol: d_course_dks_jungle_parkway_paddle_boat_model2 + type: vtx + offset: 0x90B8 + count: 4 +d_course_dks_jungle_parkway_paddle_boat_model3: + symbol: d_course_dks_jungle_parkway_paddle_boat_model3 + type: vtx + offset: 0x90F8 + count: 32 +d_course_dks_jungle_parkway_paddle_boat_model4: + symbol: d_course_dks_jungle_parkway_paddle_boat_model4 + type: vtx + offset: 0x92F8 + count: 10 +d_course_dks_jungle_parkway_paddle_boat_model5: + symbol: d_course_dks_jungle_parkway_paddle_boat_model5 + type: vtx + offset: 0x9398 + count: 18 +d_course_dks_jungle_parkway_paddle_boat_model6: + symbol: d_course_dks_jungle_parkway_paddle_boat_model6 + type: vtx + offset: 0x94B8 + count: 21 +d_course_dks_jungle_parkway_paddle_boat_model7: + symbol: d_course_dks_jungle_parkway_paddle_boat_model7 + type: vtx + offset: 0x9608 + count: 20 +d_course_dks_jungle_parkway_paddle_boat_model8: + symbol: d_course_dks_jungle_parkway_paddle_boat_model8 + type: vtx + offset: 0x9748 + count: 12 +d_course_dks_jungle_parkway_paddle_boat_model9: + symbol: d_course_dks_jungle_parkway_paddle_boat_model9 + type: vtx + offset: 0x9808 + count: 16 +d_course_dks_jungle_parkway_paddle_boat_model10: + symbol: d_course_dks_jungle_parkway_paddle_boat_model10 + type: vtx + offset: 0x9908 + count: 32 +d_course_dks_jungle_parkway_paddle_boat_model11: + symbol: d_course_dks_jungle_parkway_paddle_boat_model11 + type: vtx + offset: 0x9B08 + count: 8 +d_course_dks_jungle_parkway_paddle_boat_model12: + symbol: d_course_dks_jungle_parkway_paddle_boat_model12 + type: vtx + offset: 0x9B88 + count: 8 +d_course_dks_jungle_parkway_paddle_boat_model13: + symbol: d_course_dks_jungle_parkway_paddle_boat_model13 + type: vtx + offset: 0x9C08 + count: 16 +d_course_dks_jungle_parkway_paddle_boat_model14: + symbol: d_course_dks_jungle_parkway_paddle_boat_model14 + type: vtx + offset: 0x9D08 + count: 7 +d_course_dks_jungle_parkway_paddle_boat_model15: + symbol: d_course_dks_jungle_parkway_paddle_boat_model15 + type: vtx + offset: 0x9D78 + count: 7 +d_course_dks_jungle_parkway_dl_DE48: + symbol: d_course_dks_jungle_parkway_dl_DE48 + type: gfx + offset: 0xDE48 +d_course_dks_jungle_parkway_dl_DF30: + symbol: d_course_dks_jungle_parkway_dl_DF30 + type: gfx + offset: 0xDF30 +d_course_dks_jungle_parkway_dl_E030: + symbol: d_course_dks_jungle_parkway_dl_E030 + type: gfx + offset: 0xE030 +d_course_dks_jungle_parkway_dl_E048: + symbol: d_course_dks_jungle_parkway_dl_E048 + type: gfx + offset: 0xE048 +d_course_dks_jungle_parkway_railings_dl: + symbol: d_course_dks_jungle_parkway_railings_dl + type: gfx + offset: 0xE058 +d_course_dks_jungle_parkway_dl_E068: + symbol: d_course_dks_jungle_parkway_dl_E068 + type: gfx + offset: 0xE068 +d_course_dks_jungle_parkway_dl_E150: + symbol: d_course_dks_jungle_parkway_dl_E150 + type: gfx + offset: 0xE150 +d_course_dks_jungle_parkway_dl_E238: + symbol: d_course_dks_jungle_parkway_dl_E238 + type: gfx + offset: 0xE238 +d_course_dks_jungle_parkway_dl_E250: + symbol: d_course_dks_jungle_parkway_dl_E250 + type: gfx + offset: 0xE250 +d_course_dks_jungle_parkway_dl_E310: + symbol: d_course_dks_jungle_parkway_dl_E310 + type: gfx + offset: 0xE310 +d_course_dks_jungle_parkway_dl_E320: + symbol: d_course_dks_jungle_parkway_dl_E320 + type: gfx + offset: 0xE320 +d_course_dks_jungle_parkway_dl_E578: + symbol: d_course_dks_jungle_parkway_dl_E578 + type: gfx + offset: 0xE578 +d_course_dks_jungle_parkway_dl_E588: + symbol: d_course_dks_jungle_parkway_dl_E588 + type: gfx + offset: 0xE588 +d_course_dks_jungle_parkway_dl_E618: + symbol: d_course_dks_jungle_parkway_dl_E618 + type: gfx + offset: 0xE618 +d_course_dks_jungle_parkway_dl_E628: + symbol: d_course_dks_jungle_parkway_dl_E628 + type: gfx + offset: 0xE628 +d_course_dks_jungle_parkway_dl_E688: + symbol: d_course_dks_jungle_parkway_dl_E688 + type: gfx + offset: 0xE688 +d_course_dks_jungle_parkway_dl_E6E8: + symbol: d_course_dks_jungle_parkway_dl_E6E8 + type: gfx + offset: 0xE6E8 +d_course_dks_jungle_parkway_dl_E700: + symbol: d_course_dks_jungle_parkway_dl_E700 + type: gfx + offset: 0xE700 +d_course_dks_jungle_parkway_boat_dl: + symbol: d_course_dks_jungle_parkway_boat_dl + type: gfx + offset: 0xE730 +d_course_dks_jungle_parkway_paddle_boat_paddle_model1: + symbol: d_course_dks_jungle_parkway_paddle_boat_paddle_model1 + type: vtx + offset: 0xE740 + count: 21 +d_course_dks_jungle_parkway_paddle_boat_paddle_model2: + symbol: d_course_dks_jungle_parkway_paddle_boat_paddle_model2 + type: vtx + offset: 0xE890 + count: 32 +d_course_dks_jungle_parkway_paddle_boat_paddle_model3: + symbol: d_course_dks_jungle_parkway_paddle_boat_paddle_model3 + type: vtx + offset: 0xEA90 + count: 5 +d_course_dks_jungle_parkway_dl_FAE0: + symbol: d_course_dks_jungle_parkway_dl_FAE0 + type: gfx + offset: 0xFAE0 +d_course_dks_jungle_parkway_dl_FC08: + symbol: d_course_dks_jungle_parkway_dl_FC08 + type: gfx + offset: 0xFC08 +d_course_dks_jungle_parkway_dl_FC18: + symbol: d_course_dks_jungle_parkway_dl_FC18 + type: gfx + offset: 0xFC18 +d_course_dks_jungle_parkway_paddle_wheel_dl: + symbol: d_course_dks_jungle_parkway_paddle_wheel_dl + type: gfx + offset: 0xFC28 +d_course_dks_jungle_parkway_dl_FC38: + symbol: d_course_dks_jungle_parkway_dl_FC38 + type: gfx + offset: 0xFC38 +d_course_dks_jungle_parkway_tree_model: + symbol: d_course_dks_jungle_parkway_tree_model + type: vtx + offset: 0xFC40 + count: 8 +d_course_dks_jungle_parkway_dl_tree1: + symbol: d_course_dks_jungle_parkway_dl_tree1 + type: gfx + offset: 0x10CC0 +d_course_dks_jungle_parkway_tree2_model: + symbol: d_course_dks_jungle_parkway_tree2_model + type: vtx + offset: 0x10D48 + count: 8 +d_course_dks_jungle_parkway_dl_tree2: + symbol: d_course_dks_jungle_parkway_dl_tree2 + type: gfx + offset: 0x11DC8 +d_course_dks_jungle_parkway_model4: + symbol: d_course_dks_jungle_parkway_model4 + type: vtx + offset: 0x11E70 + count: 8 +d_course_dks_jungle_parkway_dl_tree3: + symbol: d_course_dks_jungle_parkway_dl_tree3 + type: gfx + offset: 0x12EF0 +d_course_dks_jungle_parkway_palm_tree_model: + symbol: d_course_dks_jungle_parkway_palm_tree_model + type: vtx + offset: 0x12F78 + count: 16 +d_course_dks_jungle_parkway_dl_13878: + symbol: d_course_dks_jungle_parkway_dl_13878 + type: gfx + offset: 0x13878 +d_course_dks_jungle_parkway_dl_palm_tree: + symbol: d_course_dks_jungle_parkway_dl_palm_tree + type: gfx + offset: 0x138D0 +d_course_dks_jungle_parkway_kiwano_model: + symbol: d_course_dks_jungle_parkway_kiwano_model + type: vtx + offset: 0x13B78 + count: 4 +d_course_dks_jungle_parkway_dl_kiwano_fruit: + symbol: d_course_dks_jungle_parkway_dl_kiwano_fruit + type: gfx + offset: 0x13BB8 +d_course_dks_jungle_parkway_dl_13C30: + symbol: d_course_dks_jungle_parkway_dl_13C30 + type: gfx + offset: 0x13C30 diff --git a/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists.yml b/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists.yml new file mode 100644 index 000000000..9f9cba175 --- /dev/null +++ b/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists.yml @@ -0,0 +1,1443 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x960ACC + no_compression: true + segments: + - [0x0E, 0x960ACC] + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureDksJungleParkwayKiwanoFruit1"] + - [0x03009800, "textures/other_textures/gTextureDksJungleParkwayKiwanoFruit2"] + - [0x0300A000, "textures/other_textures/gTextureDksJungleParkwayKiwanoFruit3"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_648508"] + - [0x05001000, "textures/other_textures/texture_6684F8"] + - [0x05001800, "textures/other_textures/wood_bridge_slats"] + - [0x05002800, "textures/other_textures/texture_654460"] + - [0x05003800, "textures/other_textures/texture_654F74"] + - [0x05004800, "textures/other_textures/texture_655998"] + - [0x05005000, "textures/other_textures/texture_655F38"] + - [0x05006000, "textures/other_textures/texture_656AF4"] + - [0x05007000, "textures/other_textures/texture_6575C8"] + - [0x05008000, "textures/other_textures/texture_658370"] + - [0x05009000, "textures/other_textures/texture_65912C"] + - [0x0500A000, "textures/other_textures/texture_659EE8"] + - [0x0500B000, "textures/other_textures/texture_65ADE0"] + - [0x0500C000, "textures/other_textures/texture_65BB3C"] + - [0x0500D000, "textures/other_textures/texture_65C8DC"] + - [0x0500E000, "textures/other_textures/texture_65D5D4"] + - [0x0500F000, "textures/other_textures/texture_65E2EC"] + - [0x0500F800, "textures/other_textures/texture_65EAEC"] + - [0x05010000, "textures/other_textures/texture_65E59C"] + - [0x05011000, "textures/other_textures/texture_65EE38"] + - [0x05012000, "textures/other_textures/texture_65FB18"] + - [0x05012800, "textures/other_textures/sign_pink_arrow"] + - [0x05013000, "textures/other_textures/waves_0"] + - [0x05013800, "textures/other_textures/texture_683844"] + # Segment 7 + - [0x7000000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_0"] + - [0x7000200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_200"] + - [0x7000398, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_398"] + - [0x7000520, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_520"] + - [0x70006C8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C8"] + - [0x70007E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7E0"] + - [0x7000918, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_918"] + - [0x7000A40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_A40"] + - [0x7000B68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_B68"] + - [0x7000C90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_C90"] + - [0x7000EC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_EC8"] + - [0x7000FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_FD0"] + - [0x7001118, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1118"] + - [0x70012A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_12A8"] + - [0x7001430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1430"] + - [0x70015B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_15B0"] + - [0x70017D0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_17D0"] + - [0x7001970, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1970"] + - [0x7001B38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1B38"] + - [0x7001C98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1C98"] + - [0x7001EB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1EB8"] + - [0x7002040, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2040"] + - [0x70020A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_20A0"] + - [0x7002100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2100"] + - [0x7002160, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2160"] + - [0x70021C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_21C0"] + - [0x7002378, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2378"] + - [0x70023F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_23F0"] + - [0x7002450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2450"] + - [0x70024B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_24B0"] + - [0x7002510, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2510"] + - [0x7002570, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2570"] + - [0x7002788, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2788"] + - [0x7002890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2890"] + - [0x70029F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_29F0"] + - [0x7002B78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2B78"] + - [0x7002D00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2D00"] + - [0x7002D60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2D60"] + - [0x7002DC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2DC8"] + - [0x7002E28, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2E28"] + - [0x7002E88, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2E88"] + - [0x7002FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2FD0"] + - [0x7003058, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3058"] + - [0x70030C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_30C0"] + - [0x7003130, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3130"] + - [0x70031A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_31A0"] + - [0x7003228, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3228"] + - [0x70032A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_32A0"] + - [0x70032D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_32D8"] + - [0x7003348, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3348"] + - [0x70033A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_33A8"] + - [0x7003420, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3420"] + - [0x7003498, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3498"] + - [0x7003508, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3508"] + - [0x7003588, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3588"] + - [0x70035F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_35F0"] + - [0x7003660, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3660"] + - [0x70036A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_36A8"] + - [0x7003748, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3748"] + - [0x7003758, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3758"] + - [0x70037C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_37C0"] + - [0x7003A30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3A30"] + - [0x7003A48, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3A48"] + - [0x7003AD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3AD0"] + - [0x7003AE0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3AE0"] + - [0x7003B18, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3B18"] + - [0x7003B28, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3B28"] + - [0x7003BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3BA8"] + - [0x7003C50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3C50"] + - [0x7003D08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3D08"] + - [0x7003DA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3DA8"] + - [0x7003DD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3DD0"] + - [0x7003E40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3E40"] + - [0x7003EB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3EB0"] + - [0x7003F30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3F30"] + - [0x7003FA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3FA8"] + - [0x7003FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3FD0"] + - [0x7004230, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4230"] + - [0x7004300, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4300"] + - [0x7004548, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4548"] + - [0x7004760, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4760"] + - [0x7004788, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4788"] + - [0x7004858, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4858"] + - [0x7004948, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4948"] + - [0x7004A08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4A08"] + - [0x7004AB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4AB0"] + - [0x7004B90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4B90"] + - [0x7004CA0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4CA0"] + - [0x7004D30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4D30"] + - [0x7004DB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4DB8"] + - [0x7004EB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4EB8"] + - [0x7004FE8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4FE8"] + - [0x70050A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_50A8"] + - [0x70051C8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_51C8"] + - [0x70052C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_52C0"] + - [0x7005420, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5420"] + - [0x70054D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_54D8"] + - [0x7005558, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5558"] + - [0x70055D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_55D8"] + - [0x7005648, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5648"] + - [0x70056B8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_56B8"] + - [0x7005768, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5768"] + - [0x7005800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5800"] + - [0x7005890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5890"] + - [0x70058F8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_58F8"] + - [0x7005970, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5970"] + - [0x70059E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_59E0"] + - [0x7005A50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5A50"] + - [0x7005AB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5AB0"] + - [0x7005B50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5B50"] + - [0x7005BE0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5BE0"] + - [0x7005C68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5C68"] + - [0x7005D68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5D68"] + - [0x7005DF0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5DF0"] + - [0x7005E70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5E70"] + - [0x7005EF0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5EF0"] + - [0x7005F80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5F80"] + - [0x7006008, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6008"] + - [0x7006098, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6098"] + - [0x7006100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6100"] + - [0x70061B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_61B0"] + - [0x7006240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6240"] + - [0x7006368, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6368"] + - [0x7006430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6430"] + - [0x70064C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_64C0"] + - [0x7006530, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6530"] + - [0x70065A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_65A8"] + - [0x7006620, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6620"] + - [0x70066B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_66B0"] + - [0x7006728, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6728"] + - [0x7006798, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6798"] + - [0x7006818, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6818"] + - [0x7006930, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6930"] + - [0x70069A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_69A0"] + - [0x7006A10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6A10"] + - [0x7006AA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6AA8"] + - [0x7006B48, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6B48"] + - [0x7006BD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6BD0"] + - [0x7006C38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C38"] + - [0x7006C98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C98"] + - [0x7006D08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6D08"] + - [0x7006D68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6D68"] + - [0x7006DD8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6DD8"] + - [0x7006E40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6E40"] + - [0x7006F10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6F10"] + - [0x7006F98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6F98"] + - [0x7007048, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7048"] + - [0x70070C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_70C0"] + - [0x7007170, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7170"] + - [0x70071E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_71E8"] + - [0x70072A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_72A8"] + - [0x7007390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7390"] + - [0x7007400, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7400"] + - [0x7007488, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7488"] + - [0x7007538, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7538"] + - [0x70076A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_76A0"] + - [0x70077E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_77E8"] + - [0x7007920, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7920"] + - [0x7007A88, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7A88"] + - [0x7007B10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7B10"] + - [0x7007C78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7C78"] + - [0x7007DA0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7DA0"] + - [0x7007E50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7E50"] + - [0x7007F58, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7F58"] + - [0x7007FC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7FC8"] + - [0x70080A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_80A0"] + - [0x7008140, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8140"] + - [0x7008358, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8358"] + - [0x7008458, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8458"] + - [0x70085A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_85A0"] + - [0x7008648, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8648"] + - [0x70086B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_86B0"] + - [0x7008760, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8760"] + - [0x7008800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8800"] + - [0x70089B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_89B0"] + - [0x7008A40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8A40"] + - [0x7008BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8BA8"] + - [0x7008C60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8C60"] + - [0x7008E78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8E78"] + - [0x7008F30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8F30"] + - [0x7009000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9000"] + - [0x7009128, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9128"] + - [0x7009250, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9250"] + - [0x7009268, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9268"] + - [0x70092D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_92D8"] + - [0x70092E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_92E8"] + - [0x7009390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9390"] + - [0x7009418, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9418"] + - [0x70094D0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_94D0"] + - [0x7009588, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9588"] + - [0x7009630, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9630"] + - [0x70096F8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_96F8"] + - [0x7009790, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9790"] + - [0x7009838, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9838"] + - [0x7009880, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9880"] + - [0x70098E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_98E0"] + - [0x70098F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_98F0"] + - [0x7009988, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9988"] + - [0x7009A20, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9A20"] + - [0x7009A38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9A38"] + - [0x7009B98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9B98"] + - [0x7009BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9BA8"] + - [0x7009C18, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9C18"] + # Segment 4 + - [0x4000000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000000"] + - [0x4000100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000100"] + - [0x4000180, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000180"] + - [0x4000200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000200"] + - [0x4000240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000240"] + - [0x40002c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040002C0"] + - [0x4000340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000340"] + - [0x4000440, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000440"] + - [0x4000500, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000500"] + - [0x4000540, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000540"] + - [0x4000580, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000580"] + - [0x40005c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040005C0"] + - [0x4000600, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000600"] + - [0x40006c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040006C0"] + - [0x4000740, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000740"] + - [0x4000780, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000780"] + - [0x40007c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040007C0"] + - [0x4000800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000800"] + - [0x4000840, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000840"] + - [0x40008c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040008C0"] + - [0x4000980, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000980"] + - [0x4000a00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000A00"] + - [0x4000a40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000A40"] + - [0x4000ac0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000AC0"] + - [0x4000b00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000B00"] + - [0x4000bc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000BC0"] + - [0x4000c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000C40"] + - [0x4000c80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000C80"] + - [0x4000cc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000CC0"] + - [0x4000d40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000D40"] + - [0x4000e00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000E00"] + - [0x4000e80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000E80"] + - [0x4000f00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000F00"] + - [0x4000fc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04000FC0"] + - [0x4001040, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001040"] + - [0x40010c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040010C0"] + - [0x4001140, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001140"] + - [0x40011c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040011C0"] + - [0x4001240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001240"] + - [0x40012c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040012C0"] + - [0x4001340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001340"] + - [0x40013c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040013C0"] + - [0x4001440, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001440"] + - [0x40014c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040014C0"] + - [0x4001540, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001540"] + - [0x40015c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040015C0"] + - [0x4001640, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001640"] + - [0x4001780, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001780"] + - [0x4001840, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001840"] + - [0x4001900, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001900"] + - [0x40019c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040019C0"] + - [0x4001a80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001A80"] + - [0x4001bc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001BC0"] + - [0x4001c00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C00"] + - [0x4001c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C40"] + - [0x4001c80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001C80"] + - [0x4001cc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001CC0"] + - [0x4001d80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001D80"] + - [0x4001e40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001E40"] + - [0x4001f00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001F00"] + - [0x4001fc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04001FC0"] + - [0x4002040, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002040"] + - [0x4002080, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002080"] + - [0x4002100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002100"] + - [0x4002140, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002140"] + - [0x4002180, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002180"] + - [0x4002200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002200"] + - [0x4002280, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002280"] + - [0x40022c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040022C0"] + - [0x4002300, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002300"] + - [0x4002340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002340"] + - [0x4002380, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002380"] + - [0x4002400, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002400"] + - [0x4002540, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002540"] + - [0x4002640, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002640"] + - [0x4002780, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002780"] + - [0x40028c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040028C0"] + - [0x4002900, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002900"] + - [0x4002a40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002A40"] + - [0x4002b00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002B00"] + - [0x4002b80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002B80"] + - [0x4002c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002C40"] + - [0x4002cc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002CC0"] + - [0x4002e00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002E00"] + - [0x4002ec0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002EC0"] + - [0x4002f00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F00"] + - [0x4002f40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F40"] + - [0x4002f80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04002F80"] + - [0x4003000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003000"] + - [0x40030c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040030C0"] + - [0x4003100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003100"] + - [0x4003180, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003180"] + - [0x40031c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040031C0"] + - [0x4003240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003240"] + - [0x4003280, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003280"] + - [0x40032c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040032C0"] + - [0x4003340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003340"] + - [0x4003380, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003380"] + - [0x4003400, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003400"] + - [0x4003480, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003480"] + - [0x4003500, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003500"] + - [0x4003580, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003580"] + - [0x40036c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040036C0"] + - [0x4003780, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003780"] + - [0x4003800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003800"] + - [0x4003840, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003840"] + - [0x4003900, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003900"] + - [0x4003980, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003980"] + - [0x4003ac0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003AC0"] + - [0x4003b40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003B40"] + - [0x4003b80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003B80"] + - [0x4003bc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003BC0"] + - [0x4003c00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003C00"] + - [0x4003c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003C40"] + - [0x4003cc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003CC0"] + - [0x4003d00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D00"] + - [0x4003d40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D40"] + - [0x4003d80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003D80"] + - [0x4003dc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003DC0"] + - [0x4003e30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003E30"] + - [0x4003e70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003E70"] + - [0x4003eb0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003EB0"] + - [0x4003ef0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003EF0"] + - [0x4003f30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003F30"] + - [0x4003f70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003F70"] + - [0x4003fb0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04003FB0"] + - [0x40040b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040040B0"] + - [0x40040f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040040F0"] + - [0x4004130, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004130"] + - [0x4004170, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004170"] + - [0x40041b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040041B0"] + - [0x40041f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040041F0"] + - [0x40042b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040042B0"] + - [0x4004330, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004330"] + - [0x4004370, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004370"] + - [0x40043b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040043B0"] + - [0x4004430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004430"] + - [0x4004470, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004470"] + - [0x4004530, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004530"] + - [0x4004570, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004570"] + - [0x40045b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040045B0"] + - [0x40045f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040045F0"] + - [0x4004630, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004630"] + - [0x4004690, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004690"] + - [0x4004710, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004710"] + - [0x4004750, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004750"] + - [0x40047d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040047D0"] + - [0x4004850, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004850"] + - [0x40048d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040048D0"] + - [0x4004910, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004910"] + - [0x4004950, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004950"] + - [0x4004990, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004990"] + - [0x40049d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040049D0"] + - [0x4004a50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004A50"] + - [0x4004ad0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004AD0"] + - [0x4004b10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B10"] + - [0x4004b50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B50"] + - [0x4004b90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004B90"] + - [0x4004bd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004BD0"] + - [0x4004c50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004C50"] + - [0x4004c90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004C90"] + - [0x4004d10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D10"] + - [0x4004d50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D50"] + - [0x4004d90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004D90"] + - [0x4004f10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004F10"] + - [0x4004f90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04004F90"] + - [0x4005050, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005050"] + - [0x4005110, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005110"] + - [0x4005290, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005290"] + - [0x4005390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005390"] + - [0x4005450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005450"] + - [0x4005490, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005490"] + - [0x4005590, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005590"] + - [0x4005690, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005690"] + - [0x4005750, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005750"] + - [0x4005890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005890"] + - [0x4005910, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005910"] + - [0x40059d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040059D0"] + - [0x4005ad0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005AD0"] + - [0x4005b50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005B50"] + - [0x4005d50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005D50"] + - [0x4005f50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04005F50"] + - [0x4006150, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006150"] + - [0x4006350, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006350"] + - [0x4006550, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006550"] + - [0x4006750, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006750"] + - [0x4006950, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006950"] + - [0x4006a50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006A50"] + - [0x4006bd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006BD0"] + - [0x4006cf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006CF0"] + - [0x4006e90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04006E90"] + - [0x4007060, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007060"] + - [0x40071f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040071F0"] + - [0x4007270, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007270"] + - [0x40072e0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040072E0"] + - [0x4007390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007390"] + - [0x4007430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007430"] + - [0x4007620, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007620"] + - [0x4007820, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007820"] + - [0x4007a10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007A10"] + - [0x4007bd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007BD0"] + - [0x4007dc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007DC0"] + - [0x4007e90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04007E90"] + - [0x4008090, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008090"] + - [0x4008290, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008290"] + - [0x4008490, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008490"] + - [0x4008610, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008610"] + - [0x4008810, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008810"] + - [0x4008a10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008A10"] + - [0x4008bf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008BF0"] + - [0x4008d20, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008D20"] + - [0x4008f00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008F00"] + - [0x4008fc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04008FC0"] + - [0x40091a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040091A0"] + - [0x4009320, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009320"] + - [0x4009500, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009500"] + - [0x4009560, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009560"] + - [0x4009710, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009710"] + - [0x40098f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040098F0"] + - [0x4009a10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009A10"] + - [0x4009c10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009C10"] + - [0x4009da0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009DA0"] + - [0x4009ed0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009ED0"] + - [0x4009fc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04009FC0"] + - [0x400a100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A100"] + - [0x400a1c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A1C0"] + - [0x400a370, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A370"] + - [0x400a450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A450"] + - [0x400a5b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A5B0"] + - [0x400a6f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A6F0"] + - [0x400a7f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A7F0"] + - [0x400a8d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A8D0"] + - [0x400a990, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400A990"] + - [0x400ab30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AB30"] + - [0x400ad10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AD10"] + - [0x400ad80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AD80"] + - [0x400aec0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AEC0"] + - [0x400af70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AF70"] + - [0x400aff0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400AFF0"] + - [0x400b070, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B070"] + - [0x400b230, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B230"] + - [0x400b350, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B350"] + - [0x400b450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B450"] + - [0x400b4d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B4D0"] + - [0x400b570, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B570"] + - [0x400b5f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B5F0"] + - [0x400b670, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B670"] + - [0x400b6b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B6B0"] + - [0x400b7f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B7F0"] + - [0x400b9a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400B9A0"] + - [0x400ba90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BA90"] + - [0x400bc90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BC90"] + - [0x400bd60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BD60"] + - [0x400be80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BE80"] + - [0x400bf60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400BF60"] + - [0x400c020, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C020"] + - [0x400c100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C100"] + - [0x400c1c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C1C0"] + - [0x400c290, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C290"] + - [0x400c2f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C2F0"] + - [0x400c490, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C490"] + - [0x400c5a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C5A0"] + - [0x400c7a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C7A0"] + - [0x400c890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400C890"] + - [0x400ca00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CA00"] + - [0x400caf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CAF0"] + - [0x400cb60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CB60"] + - [0x400cbf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CBF0"] + - [0x400cc90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CC90"] + - [0x400cd80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CD80"] + - [0x400ce20, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CE20"] + - [0x400ce90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CE90"] + - [0x400cf50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400CF50"] + - [0x400d010, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D010"] + - [0x400d0d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D0D0"] + - [0x400d2c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D2C0"] + - [0x400d440, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D440"] + - [0x400d510, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D510"] + - [0x400d590, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D590"] + - [0x400d5d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D5D0"] + - [0x400d690, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D690"] + - [0x400d6d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D6D0"] + - [0x400d770, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D770"] + - [0x400d7f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D7F0"] + - [0x400d9e0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400D9E0"] + - [0x400da80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DA80"] + - [0x400db80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DB80"] + - [0x400dd70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DD70"] + - [0x400de30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DE30"] + - [0x400dfc0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400DFC0"] + - [0x400e060, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E060"] + - [0x400e250, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E250"] + - [0x400e280, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E280"] + - [0x400e470, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E470"] + - [0x400e580, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E580"] + - [0x400e600, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E600"] + - [0x400e740, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E740"] + - [0x400e940, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400E940"] + - [0x400eb40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EB40"] + - [0x400ed40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400ED40"] + - [0x400edd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EDD0"] + - [0x400efd0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400EFD0"] + - [0x400f1d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F1D0"] + - [0x400f3b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F3B0"] + - [0x400f5a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F5A0"] + - [0x400f7a0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F7A0"] + - [0x400f8f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400F8F0"] + - [0x400fae0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FAE0"] + - [0x400fce0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FCE0"] + - [0x400fec0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FEC0"] + - [0x400ff30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x0400FF30"] + - [0x4010050, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010050"] + - [0x4010250, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010250"] + - [0x4010450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010450"] + - [0x40105f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040105F0"] + - [0x40107d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040107D0"] + - [0x40109d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040109D0"] + - [0x4010a10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010A10"] + - [0x4010b80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010B80"] + - [0x4010d80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010D80"] + - [0x4010f80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04010F80"] + - [0x4011000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011000"] + - [0x4011200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011200"] + - [0x4011300, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011300"] + - [0x4011480, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011480"] + - [0x4011680, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011680"] + - [0x4011860, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011860"] + - [0x4011a40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011A40"] + - [0x4011c40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011C40"] + - [0x4011de0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011DE0"] + - [0x4011fe0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04011FE0"] + - [0x4012160, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012160"] + - [0x4012340, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012340"] + - [0x4012540, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012540"] + - [0x40126c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040126C0"] + - [0x4012840, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012840"] + - [0x40128c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040128C0"] + - [0x4012a40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012A40"] + - [0x4012ba0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012BA0"] + - [0x4012da0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012DA0"] + - [0x4012f80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04012F80"] + - [0x4013180, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013180"] + - [0x40132c0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040132C0"] + - [0x4013390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013390"] + - [0x4013590, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013590"] + - [0x4013790, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013790"] + - [0x4013910, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013910"] + - [0x4013af0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013AF0"] + - [0x4013cf0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013CF0"] + - [0x4013ef0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04013EF0"] + - [0x40140f0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040140F0"] + - [0x40142d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040142D0"] + - [0x40143d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040143D0"] + - [0x40145b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040145B0"] + - [0x40147b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040147B0"] + - [0x40148b0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040148B0"] + - [0x4014970, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014970"] + - [0x4014b70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014B70"] + - [0x4014c70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014C70"] + - [0x4014d30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014D30"] + - [0x4014ed0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014ED0"] + - [0x4014f90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04014F90"] + - [0x4015050, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015050"] + - [0x4015090, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015090"] + - [0x40150d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040150D0"] + - [0x40151d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040151D0"] + - [0x40152d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040152D0"] + - [0x40153d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040153D0"] + - [0x40154d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040154D0"] + - [0x4015590, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015590"] + - [0x4015650, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015650"] + - [0x4015790, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015790"] + - [0x40158d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040158D0"] + - [0x4015950, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015950"] + - [0x40159d0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x040159D0"] + - [0x4015a90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015A90"] + - [0x4015b50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015B50"] + - [0x4015b90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015B90"] + - [0x4015d90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015D90"] + - [0x4015ef0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015EF0"] + - [0x4015f90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04015F90"] + - [0x4016170, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices/d_course_dks_jungle_parkway_vertex_0x04016170"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_dks_jungle_parkway_packed_dl_0: + symbol: d_course_dks_jungle_parkway_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_dks_jungle_parkway_packed_dl_200: + symbol: d_course_dks_jungle_parkway_packed_dl_200 + type: MK64:PACKED_GFX + offset: 0x8B +d_course_dks_jungle_parkway_packed_dl_398: + symbol: d_course_dks_jungle_parkway_packed_dl_398 + type: MK64:PACKED_GFX + offset: 0xEC +d_course_dks_jungle_parkway_packed_dl_520: + symbol: d_course_dks_jungle_parkway_packed_dl_520 + type: MK64:PACKED_GFX + offset: 0x143 +d_course_dks_jungle_parkway_packed_dl_6C8: + symbol: d_course_dks_jungle_parkway_packed_dl_6C8 + type: MK64:PACKED_GFX + offset: 0x1AE +d_course_dks_jungle_parkway_packed_dl_7E0: + symbol: d_course_dks_jungle_parkway_packed_dl_7E0 + type: MK64:PACKED_GFX + offset: 0x1ED +d_course_dks_jungle_parkway_packed_dl_918: + symbol: d_course_dks_jungle_parkway_packed_dl_918 + type: MK64:PACKED_GFX + offset: 0x240 +d_course_dks_jungle_parkway_packed_dl_A40: + symbol: d_course_dks_jungle_parkway_packed_dl_A40 + type: MK64:PACKED_GFX + offset: 0x289 +d_course_dks_jungle_parkway_packed_dl_B68: + symbol: d_course_dks_jungle_parkway_packed_dl_B68 + type: MK64:PACKED_GFX + offset: 0x2D2 +d_course_dks_jungle_parkway_packed_dl_C90: + symbol: d_course_dks_jungle_parkway_packed_dl_C90 + type: MK64:PACKED_GFX + offset: 0x31B +d_course_dks_jungle_parkway_packed_dl_EC8: + symbol: d_course_dks_jungle_parkway_packed_dl_EC8 + type: MK64:PACKED_GFX + offset: 0x3C9 +d_course_dks_jungle_parkway_packed_dl_FD0: + symbol: d_course_dks_jungle_parkway_packed_dl_FD0 + type: MK64:PACKED_GFX + offset: 0x3FE +d_course_dks_jungle_parkway_packed_dl_1118: + symbol: d_course_dks_jungle_parkway_packed_dl_1118 + type: MK64:PACKED_GFX + offset: 0x45B +d_course_dks_jungle_parkway_packed_dl_12A8: + symbol: d_course_dks_jungle_parkway_packed_dl_12A8 + type: MK64:PACKED_GFX + offset: 0x4B7 +d_course_dks_jungle_parkway_packed_dl_1430: + symbol: d_course_dks_jungle_parkway_packed_dl_1430 + type: MK64:PACKED_GFX + offset: 0x50E +d_course_dks_jungle_parkway_packed_dl_15B0: + symbol: d_course_dks_jungle_parkway_packed_dl_15B0 + type: MK64:PACKED_GFX + offset: 0x58E +d_course_dks_jungle_parkway_packed_dl_17D0: + symbol: d_course_dks_jungle_parkway_packed_dl_17D0 + type: MK64:PACKED_GFX + offset: 0x62D +d_course_dks_jungle_parkway_packed_dl_1970: + symbol: d_course_dks_jungle_parkway_packed_dl_1970 + type: MK64:PACKED_GFX + offset: 0x693 +d_course_dks_jungle_parkway_packed_dl_1B38: + symbol: d_course_dks_jungle_parkway_packed_dl_1B38 + type: MK64:PACKED_GFX + offset: 0x6FB +d_course_dks_jungle_parkway_packed_dl_1C98: + symbol: d_course_dks_jungle_parkway_packed_dl_1C98 + type: MK64:PACKED_GFX + offset: 0x750 +d_course_dks_jungle_parkway_packed_dl_1EB8: + symbol: d_course_dks_jungle_parkway_packed_dl_1EB8 + type: MK64:PACKED_GFX + offset: 0x7EF +d_course_dks_jungle_parkway_packed_dl_2040: + symbol: d_course_dks_jungle_parkway_packed_dl_2040 + type: MK64:PACKED_GFX + offset: 0x846 +d_course_dks_jungle_parkway_packed_dl_20A0: + symbol: d_course_dks_jungle_parkway_packed_dl_20A0 + type: MK64:PACKED_GFX + offset: 0x857 +d_course_dks_jungle_parkway_packed_dl_2100: + symbol: d_course_dks_jungle_parkway_packed_dl_2100 + type: MK64:PACKED_GFX + offset: 0x868 +d_course_dks_jungle_parkway_packed_dl_2160: + symbol: d_course_dks_jungle_parkway_packed_dl_2160 + type: MK64:PACKED_GFX + offset: 0x879 +d_course_dks_jungle_parkway_packed_dl_21C0: + symbol: d_course_dks_jungle_parkway_packed_dl_21C0 + type: MK64:PACKED_GFX + offset: 0x88A +d_course_dks_jungle_parkway_packed_dl_2378: + symbol: d_course_dks_jungle_parkway_packed_dl_2378 + type: MK64:PACKED_GFX + offset: 0x8E8 +d_course_dks_jungle_parkway_packed_dl_23F0: + symbol: d_course_dks_jungle_parkway_packed_dl_23F0 + type: MK64:PACKED_GFX + offset: 0x908 +d_course_dks_jungle_parkway_packed_dl_2450: + symbol: d_course_dks_jungle_parkway_packed_dl_2450 + type: MK64:PACKED_GFX + offset: 0x919 +d_course_dks_jungle_parkway_packed_dl_24B0: + symbol: d_course_dks_jungle_parkway_packed_dl_24B0 + type: MK64:PACKED_GFX + offset: 0x92A +d_course_dks_jungle_parkway_packed_dl_2510: + symbol: d_course_dks_jungle_parkway_packed_dl_2510 + type: MK64:PACKED_GFX + offset: 0x93B +d_course_dks_jungle_parkway_packed_dl_2570: + symbol: d_course_dks_jungle_parkway_packed_dl_2570 + type: MK64:PACKED_GFX + offset: 0x94C +d_course_dks_jungle_parkway_packed_dl_2788: + symbol: d_course_dks_jungle_parkway_packed_dl_2788 + type: MK64:PACKED_GFX + offset: 0x9CF +d_course_dks_jungle_parkway_packed_dl_2890: + symbol: d_course_dks_jungle_parkway_packed_dl_2890 + type: MK64:PACKED_GFX + offset: 0xA04 +d_course_dks_jungle_parkway_packed_dl_29F0: + symbol: d_course_dks_jungle_parkway_packed_dl_29F0 + type: MK64:PACKED_GFX + offset: 0xA59 +d_course_dks_jungle_parkway_packed_dl_2B78: + symbol: d_course_dks_jungle_parkway_packed_dl_2B78 + type: MK64:PACKED_GFX + offset: 0xAB0 +d_course_dks_jungle_parkway_packed_dl_2D00: + symbol: d_course_dks_jungle_parkway_packed_dl_2D00 + type: MK64:PACKED_GFX + offset: 0xB07 +d_course_dks_jungle_parkway_packed_dl_2D60: + symbol: d_course_dks_jungle_parkway_packed_dl_2D60 + type: MK64:PACKED_GFX + offset: 0xB18 +d_course_dks_jungle_parkway_packed_dl_2DC8: + symbol: d_course_dks_jungle_parkway_packed_dl_2DC8 + type: MK64:PACKED_GFX + offset: 0xB2E +d_course_dks_jungle_parkway_packed_dl_2E28: + symbol: d_course_dks_jungle_parkway_packed_dl_2E28 + type: MK64:PACKED_GFX + offset: 0xB3F +d_course_dks_jungle_parkway_packed_dl_2E88: + symbol: d_course_dks_jungle_parkway_packed_dl_2E88 + type: MK64:PACKED_GFX + offset: 0xB50 +d_course_dks_jungle_parkway_packed_dl_2FD0: + symbol: d_course_dks_jungle_parkway_packed_dl_2FD0 + type: MK64:PACKED_GFX + offset: 0xBC9 +d_course_dks_jungle_parkway_packed_dl_3058: + symbol: d_course_dks_jungle_parkway_packed_dl_3058 + type: MK64:PACKED_GFX + offset: 0xBF3 +d_course_dks_jungle_parkway_packed_dl_30C0: + symbol: d_course_dks_jungle_parkway_packed_dl_30C0 + type: MK64:PACKED_GFX + offset: 0xC09 +d_course_dks_jungle_parkway_packed_dl_3130: + symbol: d_course_dks_jungle_parkway_packed_dl_3130 + type: MK64:PACKED_GFX + offset: 0xC24 +d_course_dks_jungle_parkway_packed_dl_31A0: + symbol: d_course_dks_jungle_parkway_packed_dl_31A0 + type: MK64:PACKED_GFX + offset: 0xC3F +d_course_dks_jungle_parkway_packed_dl_3228: + symbol: d_course_dks_jungle_parkway_packed_dl_3228 + type: MK64:PACKED_GFX + offset: 0xC69 +d_course_dks_jungle_parkway_packed_dl_32A0: + symbol: d_course_dks_jungle_parkway_packed_dl_32A0 + type: MK64:PACKED_GFX + offset: 0xC89 +d_course_dks_jungle_parkway_packed_dl_32D8: + symbol: d_course_dks_jungle_parkway_packed_dl_32D8 + type: MK64:PACKED_GFX + offset: 0xC9C +d_course_dks_jungle_parkway_packed_dl_3348: + symbol: d_course_dks_jungle_parkway_packed_dl_3348 + type: MK64:PACKED_GFX + offset: 0xCB7 +d_course_dks_jungle_parkway_packed_dl_33A8: + symbol: d_course_dks_jungle_parkway_packed_dl_33A8 + type: MK64:PACKED_GFX + offset: 0xCC8 +d_course_dks_jungle_parkway_packed_dl_3420: + symbol: d_course_dks_jungle_parkway_packed_dl_3420 + type: MK64:PACKED_GFX + offset: 0xCE8 +d_course_dks_jungle_parkway_packed_dl_3498: + symbol: d_course_dks_jungle_parkway_packed_dl_3498 + type: MK64:PACKED_GFX + offset: 0xD08 +d_course_dks_jungle_parkway_packed_dl_3508: + symbol: d_course_dks_jungle_parkway_packed_dl_3508 + type: MK64:PACKED_GFX + offset: 0xD23 +d_course_dks_jungle_parkway_packed_dl_3588: + symbol: d_course_dks_jungle_parkway_packed_dl_3588 + type: MK64:PACKED_GFX + offset: 0xD48 +d_course_dks_jungle_parkway_packed_dl_35F0: + symbol: d_course_dks_jungle_parkway_packed_dl_35F0 + type: MK64:PACKED_GFX + offset: 0xD5E +d_course_dks_jungle_parkway_packed_dl_3660: + symbol: d_course_dks_jungle_parkway_packed_dl_3660 + type: MK64:PACKED_GFX + offset: 0xD79 +d_course_dks_jungle_parkway_packed_dl_36A8: + symbol: d_course_dks_jungle_parkway_packed_dl_36A8 + type: MK64:PACKED_GFX + offset: 0xD92 +d_course_dks_jungle_parkway_packed_dl_3748: + symbol: d_course_dks_jungle_parkway_packed_dl_3748 + type: MK64:PACKED_GFX + offset: 0xDCB +d_course_dks_jungle_parkway_packed_dl_3758: + symbol: d_course_dks_jungle_parkway_packed_dl_3758 + type: MK64:PACKED_GFX + offset: 0xDCF +d_course_dks_jungle_parkway_packed_dl_37C0: + symbol: d_course_dks_jungle_parkway_packed_dl_37C0 + type: MK64:PACKED_GFX + offset: 0xDE5 +d_course_dks_jungle_parkway_packed_dl_3A30: + symbol: d_course_dks_jungle_parkway_packed_dl_3A30 + type: MK64:PACKED_GFX + offset: 0xF32 +d_course_dks_jungle_parkway_packed_dl_3A48: + symbol: d_course_dks_jungle_parkway_packed_dl_3A48 + type: MK64:PACKED_GFX + offset: 0xF39 +d_course_dks_jungle_parkway_packed_dl_3AD0: + symbol: d_course_dks_jungle_parkway_packed_dl_3AD0 + type: MK64:PACKED_GFX + offset: 0xF63 +d_course_dks_jungle_parkway_packed_dl_3AE0: + symbol: d_course_dks_jungle_parkway_packed_dl_3AE0 + type: MK64:PACKED_GFX + offset: 0xF67 +d_course_dks_jungle_parkway_packed_dl_3B18: + symbol: d_course_dks_jungle_parkway_packed_dl_3B18 + type: MK64:PACKED_GFX + offset: 0xF7A +d_course_dks_jungle_parkway_packed_dl_3B28: + symbol: d_course_dks_jungle_parkway_packed_dl_3B28 + type: MK64:PACKED_GFX + offset: 0xF7E +d_course_dks_jungle_parkway_packed_dl_3BA8: + symbol: d_course_dks_jungle_parkway_packed_dl_3BA8 + type: MK64:PACKED_GFX + offset: 0xFA3 +d_course_dks_jungle_parkway_packed_dl_3C50: + symbol: d_course_dks_jungle_parkway_packed_dl_3C50 + type: MK64:PACKED_GFX + offset: 0xFE1 +d_course_dks_jungle_parkway_packed_dl_3D08: + symbol: d_course_dks_jungle_parkway_packed_dl_3D08 + type: MK64:PACKED_GFX + offset: 0x1027 +d_course_dks_jungle_parkway_packed_dl_3DA8: + symbol: d_course_dks_jungle_parkway_packed_dl_3DA8 + type: MK64:PACKED_GFX + offset: 0x105E +d_course_dks_jungle_parkway_packed_dl_3DD0: + symbol: d_course_dks_jungle_parkway_packed_dl_3DD0 + type: MK64:PACKED_GFX + offset: 0x106B +d_course_dks_jungle_parkway_packed_dl_3E40: + symbol: d_course_dks_jungle_parkway_packed_dl_3E40 + type: MK64:PACKED_GFX + offset: 0x1086 +d_course_dks_jungle_parkway_packed_dl_3EB0: + symbol: d_course_dks_jungle_parkway_packed_dl_3EB0 + type: MK64:PACKED_GFX + offset: 0x109F +d_course_dks_jungle_parkway_packed_dl_3F30: + symbol: d_course_dks_jungle_parkway_packed_dl_3F30 + type: MK64:PACKED_GFX + offset: 0x10C2 +d_course_dks_jungle_parkway_packed_dl_3FA8: + symbol: d_course_dks_jungle_parkway_packed_dl_3FA8 + type: MK64:PACKED_GFX + offset: 0x10E2 +d_course_dks_jungle_parkway_packed_dl_3FD0: + symbol: d_course_dks_jungle_parkway_packed_dl_3FD0 + type: MK64:PACKED_GFX + offset: 0x10EF +d_course_dks_jungle_parkway_packed_dl_4230: + symbol: d_course_dks_jungle_parkway_packed_dl_4230 + type: MK64:PACKED_GFX + offset: 0x1234 +d_course_dks_jungle_parkway_packed_dl_4300: + symbol: d_course_dks_jungle_parkway_packed_dl_4300 + type: MK64:PACKED_GFX + offset: 0x1285 +d_course_dks_jungle_parkway_packed_dl_4548: + symbol: d_course_dks_jungle_parkway_packed_dl_4548 + type: MK64:PACKED_GFX + offset: 0x13BF +d_course_dks_jungle_parkway_packed_dl_4760: + symbol: d_course_dks_jungle_parkway_packed_dl_4760 + type: MK64:PACKED_GFX + offset: 0x14D7 +d_course_dks_jungle_parkway_packed_dl_4788: + symbol: d_course_dks_jungle_parkway_packed_dl_4788 + type: MK64:PACKED_GFX + offset: 0x14E4 +d_course_dks_jungle_parkway_packed_dl_4858: + symbol: d_course_dks_jungle_parkway_packed_dl_4858 + type: MK64:PACKED_GFX + offset: 0x1539 +d_course_dks_jungle_parkway_packed_dl_4948: + symbol: d_course_dks_jungle_parkway_packed_dl_4948 + type: MK64:PACKED_GFX + offset: 0x15A2 +d_course_dks_jungle_parkway_packed_dl_4A08: + symbol: d_course_dks_jungle_parkway_packed_dl_4A08 + type: MK64:PACKED_GFX + offset: 0x15ED +d_course_dks_jungle_parkway_packed_dl_4AB0: + symbol: d_course_dks_jungle_parkway_packed_dl_4AB0 + type: MK64:PACKED_GFX + offset: 0x162B +d_course_dks_jungle_parkway_packed_dl_4B90: + symbol: d_course_dks_jungle_parkway_packed_dl_4B90 + type: MK64:PACKED_GFX + offset: 0x168A +d_course_dks_jungle_parkway_packed_dl_4CA0: + symbol: d_course_dks_jungle_parkway_packed_dl_4CA0 + type: MK64:PACKED_GFX + offset: 0x1707 +d_course_dks_jungle_parkway_packed_dl_4D30: + symbol: d_course_dks_jungle_parkway_packed_dl_4D30 + type: MK64:PACKED_GFX + offset: 0x1734 +d_course_dks_jungle_parkway_packed_dl_4DB8: + symbol: d_course_dks_jungle_parkway_packed_dl_4DB8 + type: MK64:PACKED_GFX + offset: 0x175E +d_course_dks_jungle_parkway_packed_dl_4EB8: + symbol: d_course_dks_jungle_parkway_packed_dl_4EB8 + type: MK64:PACKED_GFX + offset: 0x17B0 +d_course_dks_jungle_parkway_packed_dl_4FE8: + symbol: d_course_dks_jungle_parkway_packed_dl_4FE8 + type: MK64:PACKED_GFX + offset: 0x181E +d_course_dks_jungle_parkway_packed_dl_50A8: + symbol: d_course_dks_jungle_parkway_packed_dl_50A8 + type: MK64:PACKED_GFX + offset: 0x1869 +d_course_dks_jungle_parkway_packed_dl_51C8: + symbol: d_course_dks_jungle_parkway_packed_dl_51C8 + type: MK64:PACKED_GFX + offset: 0x18CF +d_course_dks_jungle_parkway_packed_dl_52C0: + symbol: d_course_dks_jungle_parkway_packed_dl_52C0 + type: MK64:PACKED_GFX + offset: 0x191A +d_course_dks_jungle_parkway_packed_dl_5420: + symbol: d_course_dks_jungle_parkway_packed_dl_5420 + type: MK64:PACKED_GFX + offset: 0x19A2 +d_course_dks_jungle_parkway_packed_dl_54D8: + symbol: d_course_dks_jungle_parkway_packed_dl_54D8 + type: MK64:PACKED_GFX + offset: 0x19EA +d_course_dks_jungle_parkway_packed_dl_5558: + symbol: d_course_dks_jungle_parkway_packed_dl_5558 + type: MK64:PACKED_GFX + offset: 0x1A18 +d_course_dks_jungle_parkway_packed_dl_55D8: + symbol: d_course_dks_jungle_parkway_packed_dl_55D8 + type: MK64:PACKED_GFX + offset: 0x1A3B +d_course_dks_jungle_parkway_packed_dl_5648: + symbol: d_course_dks_jungle_parkway_packed_dl_5648 + type: MK64:PACKED_GFX + offset: 0x1A56 +d_course_dks_jungle_parkway_packed_dl_56B8: + symbol: d_course_dks_jungle_parkway_packed_dl_56B8 + type: MK64:PACKED_GFX + offset: 0x1A71 +d_course_dks_jungle_parkway_packed_dl_5768: + symbol: d_course_dks_jungle_parkway_packed_dl_5768 + type: MK64:PACKED_GFX + offset: 0x1AB4 +d_course_dks_jungle_parkway_packed_dl_5800: + symbol: d_course_dks_jungle_parkway_packed_dl_5800 + type: MK64:PACKED_GFX + offset: 0x1AE8 +d_course_dks_jungle_parkway_packed_dl_5890: + symbol: d_course_dks_jungle_parkway_packed_dl_5890 + type: MK64:PACKED_GFX + offset: 0x1B17 +d_course_dks_jungle_parkway_packed_dl_58F8: + symbol: d_course_dks_jungle_parkway_packed_dl_58F8 + type: MK64:PACKED_GFX + offset: 0x1B2D +d_course_dks_jungle_parkway_packed_dl_5970: + symbol: d_course_dks_jungle_parkway_packed_dl_5970 + type: MK64:PACKED_GFX + offset: 0x1B4D +d_course_dks_jungle_parkway_packed_dl_59E0: + symbol: d_course_dks_jungle_parkway_packed_dl_59E0 + type: MK64:PACKED_GFX + offset: 0x1B68 +d_course_dks_jungle_parkway_packed_dl_5A50: + symbol: d_course_dks_jungle_parkway_packed_dl_5A50 + type: MK64:PACKED_GFX + offset: 0x1B83 +d_course_dks_jungle_parkway_packed_dl_5AB0: + symbol: d_course_dks_jungle_parkway_packed_dl_5AB0 + type: MK64:PACKED_GFX + offset: 0x1B94 +d_course_dks_jungle_parkway_packed_dl_5B50: + symbol: d_course_dks_jungle_parkway_packed_dl_5B50 + type: MK64:PACKED_GFX + offset: 0x1BCB +d_course_dks_jungle_parkway_packed_dl_5BE0: + symbol: d_course_dks_jungle_parkway_packed_dl_5BE0 + type: MK64:PACKED_GFX + offset: 0x1BFA +d_course_dks_jungle_parkway_packed_dl_5C68: + symbol: d_course_dks_jungle_parkway_packed_dl_5C68 + type: MK64:PACKED_GFX + offset: 0x1C22 +d_course_dks_jungle_parkway_packed_dl_5D68: + symbol: d_course_dks_jungle_parkway_packed_dl_5D68 + type: MK64:PACKED_GFX + offset: 0x1C95 +d_course_dks_jungle_parkway_packed_dl_5DF0: + symbol: d_course_dks_jungle_parkway_packed_dl_5DF0 + type: MK64:PACKED_GFX + offset: 0x1CBF +d_course_dks_jungle_parkway_packed_dl_5E70: + symbol: d_course_dks_jungle_parkway_packed_dl_5E70 + type: MK64:PACKED_GFX + offset: 0x1CE4 +d_course_dks_jungle_parkway_packed_dl_5EF0: + symbol: d_course_dks_jungle_parkway_packed_dl_5EF0 + type: MK64:PACKED_GFX + offset: 0x1D09 +d_course_dks_jungle_parkway_packed_dl_5F80: + symbol: d_course_dks_jungle_parkway_packed_dl_5F80 + type: MK64:PACKED_GFX + offset: 0x1D36 +d_course_dks_jungle_parkway_packed_dl_6008: + symbol: d_course_dks_jungle_parkway_packed_dl_6008 + type: MK64:PACKED_GFX + offset: 0x1D5E +d_course_dks_jungle_parkway_packed_dl_6098: + symbol: d_course_dks_jungle_parkway_packed_dl_6098 + type: MK64:PACKED_GFX + offset: 0x1D8D +d_course_dks_jungle_parkway_packed_dl_6100: + symbol: d_course_dks_jungle_parkway_packed_dl_6100 + type: MK64:PACKED_GFX + offset: 0x1DA3 +d_course_dks_jungle_parkway_packed_dl_61B0: + symbol: d_course_dks_jungle_parkway_packed_dl_61B0 + type: MK64:PACKED_GFX + offset: 0x1DE6 +d_course_dks_jungle_parkway_packed_dl_6240: + symbol: d_course_dks_jungle_parkway_packed_dl_6240 + type: MK64:PACKED_GFX + offset: 0x1E13 +d_course_dks_jungle_parkway_packed_dl_6368: + symbol: d_course_dks_jungle_parkway_packed_dl_6368 + type: MK64:PACKED_GFX + offset: 0x1E9D +d_course_dks_jungle_parkway_packed_dl_6430: + symbol: d_course_dks_jungle_parkway_packed_dl_6430 + type: MK64:PACKED_GFX + offset: 0x1EED +d_course_dks_jungle_parkway_packed_dl_64C0: + symbol: d_course_dks_jungle_parkway_packed_dl_64C0 + type: MK64:PACKED_GFX + offset: 0x1F1A +d_course_dks_jungle_parkway_packed_dl_6530: + symbol: d_course_dks_jungle_parkway_packed_dl_6530 + type: MK64:PACKED_GFX + offset: 0x1F33 +d_course_dks_jungle_parkway_packed_dl_65A8: + symbol: d_course_dks_jungle_parkway_packed_dl_65A8 + type: MK64:PACKED_GFX + offset: 0x1F51 +d_course_dks_jungle_parkway_packed_dl_6620: + symbol: d_course_dks_jungle_parkway_packed_dl_6620 + type: MK64:PACKED_GFX + offset: 0x1F71 +d_course_dks_jungle_parkway_packed_dl_66B0: + symbol: d_course_dks_jungle_parkway_packed_dl_66B0 + type: MK64:PACKED_GFX + offset: 0x1F9E +d_course_dks_jungle_parkway_packed_dl_6728: + symbol: d_course_dks_jungle_parkway_packed_dl_6728 + type: MK64:PACKED_GFX + offset: 0x1FBE +d_course_dks_jungle_parkway_packed_dl_6798: + symbol: d_course_dks_jungle_parkway_packed_dl_6798 + type: MK64:PACKED_GFX + offset: 0x1FD7 +d_course_dks_jungle_parkway_packed_dl_6818: + symbol: d_course_dks_jungle_parkway_packed_dl_6818 + type: MK64:PACKED_GFX + offset: 0x1FFC +d_course_dks_jungle_parkway_packed_dl_6930: + symbol: d_course_dks_jungle_parkway_packed_dl_6930 + type: MK64:PACKED_GFX + offset: 0x2063 +d_course_dks_jungle_parkway_packed_dl_69A0: + symbol: d_course_dks_jungle_parkway_packed_dl_69A0 + type: MK64:PACKED_GFX + offset: 0x207E +d_course_dks_jungle_parkway_packed_dl_6A10: + symbol: d_course_dks_jungle_parkway_packed_dl_6A10 + type: MK64:PACKED_GFX + offset: 0x2099 +d_course_dks_jungle_parkway_packed_dl_6AA8: + symbol: d_course_dks_jungle_parkway_packed_dl_6AA8 + type: MK64:PACKED_GFX + offset: 0x20CD +d_course_dks_jungle_parkway_packed_dl_6B48: + symbol: d_course_dks_jungle_parkway_packed_dl_6B48 + type: MK64:PACKED_GFX + offset: 0x2106 +d_course_dks_jungle_parkway_packed_dl_6BD0: + symbol: d_course_dks_jungle_parkway_packed_dl_6BD0 + type: MK64:PACKED_GFX + offset: 0x212E +d_course_dks_jungle_parkway_packed_dl_6C38: + symbol: d_course_dks_jungle_parkway_packed_dl_6C38 + type: MK64:PACKED_GFX + offset: 0x2144 +d_course_dks_jungle_parkway_packed_dl_6C98: + symbol: d_course_dks_jungle_parkway_packed_dl_6C98 + type: MK64:PACKED_GFX + offset: 0x2155 +d_course_dks_jungle_parkway_packed_dl_6D08: + symbol: d_course_dks_jungle_parkway_packed_dl_6D08 + type: MK64:PACKED_GFX + offset: 0x2170 +d_course_dks_jungle_parkway_packed_dl_6D68: + symbol: d_course_dks_jungle_parkway_packed_dl_6D68 + type: MK64:PACKED_GFX + offset: 0x2181 +d_course_dks_jungle_parkway_packed_dl_6DD8: + symbol: d_course_dks_jungle_parkway_packed_dl_6DD8 + type: MK64:PACKED_GFX + offset: 0x219C +d_course_dks_jungle_parkway_packed_dl_6E40: + symbol: d_course_dks_jungle_parkway_packed_dl_6E40 + type: MK64:PACKED_GFX + offset: 0x21B2 +d_course_dks_jungle_parkway_packed_dl_6F10: + symbol: d_course_dks_jungle_parkway_packed_dl_6F10 + type: MK64:PACKED_GFX + offset: 0x2205 +d_course_dks_jungle_parkway_packed_dl_6F98: + symbol: d_course_dks_jungle_parkway_packed_dl_6F98 + type: MK64:PACKED_GFX + offset: 0x222F +d_course_dks_jungle_parkway_packed_dl_7048: + symbol: d_course_dks_jungle_parkway_packed_dl_7048 + type: MK64:PACKED_GFX + offset: 0x2270 +d_course_dks_jungle_parkway_packed_dl_70C0: + symbol: d_course_dks_jungle_parkway_packed_dl_70C0 + type: MK64:PACKED_GFX + offset: 0x2290 +d_course_dks_jungle_parkway_packed_dl_7170: + symbol: d_course_dks_jungle_parkway_packed_dl_7170 + type: MK64:PACKED_GFX + offset: 0x22D1 +d_course_dks_jungle_parkway_packed_dl_71E8: + symbol: d_course_dks_jungle_parkway_packed_dl_71E8 + type: MK64:PACKED_GFX + offset: 0x22F1 +d_course_dks_jungle_parkway_packed_dl_72A8: + symbol: d_course_dks_jungle_parkway_packed_dl_72A8 + type: MK64:PACKED_GFX + offset: 0x2338 +d_course_dks_jungle_parkway_packed_dl_7390: + symbol: d_course_dks_jungle_parkway_packed_dl_7390 + type: MK64:PACKED_GFX + offset: 0x239A +d_course_dks_jungle_parkway_packed_dl_7400: + symbol: d_course_dks_jungle_parkway_packed_dl_7400 + type: MK64:PACKED_GFX + offset: 0x23B5 +d_course_dks_jungle_parkway_packed_dl_7488: + symbol: d_course_dks_jungle_parkway_packed_dl_7488 + type: MK64:PACKED_GFX + offset: 0x23DF +d_course_dks_jungle_parkway_packed_dl_7538: + symbol: d_course_dks_jungle_parkway_packed_dl_7538 + type: MK64:PACKED_GFX + offset: 0x241F +d_course_dks_jungle_parkway_packed_dl_76A0: + symbol: d_course_dks_jungle_parkway_packed_dl_76A0 + type: MK64:PACKED_GFX + offset: 0x24CD +d_course_dks_jungle_parkway_packed_dl_77E8: + symbol: d_course_dks_jungle_parkway_packed_dl_77E8 + type: MK64:PACKED_GFX + offset: 0x256B +d_course_dks_jungle_parkway_packed_dl_7920: + symbol: d_course_dks_jungle_parkway_packed_dl_7920 + type: MK64:PACKED_GFX + offset: 0x25FB +d_course_dks_jungle_parkway_packed_dl_7A88: + symbol: d_course_dks_jungle_parkway_packed_dl_7A88 + type: MK64:PACKED_GFX + offset: 0x26A7 +d_course_dks_jungle_parkway_packed_dl_7B10: + symbol: d_course_dks_jungle_parkway_packed_dl_7B10 + type: MK64:PACKED_GFX + offset: 0x26D1 +d_course_dks_jungle_parkway_packed_dl_7C78: + symbol: d_course_dks_jungle_parkway_packed_dl_7C78 + type: MK64:PACKED_GFX + offset: 0x2783 +d_course_dks_jungle_parkway_packed_dl_7DA0: + symbol: d_course_dks_jungle_parkway_packed_dl_7DA0 + type: MK64:PACKED_GFX + offset: 0x280D +d_course_dks_jungle_parkway_packed_dl_7E50: + symbol: d_course_dks_jungle_parkway_packed_dl_7E50 + type: MK64:PACKED_GFX + offset: 0x284E +d_course_dks_jungle_parkway_packed_dl_7F58: + symbol: d_course_dks_jungle_parkway_packed_dl_7F58 + type: MK64:PACKED_GFX + offset: 0x28C6 +d_course_dks_jungle_parkway_packed_dl_7FC8: + symbol: d_course_dks_jungle_parkway_packed_dl_7FC8 + type: MK64:PACKED_GFX + offset: 0x28E1 +d_course_dks_jungle_parkway_packed_dl_80A0: + symbol: d_course_dks_jungle_parkway_packed_dl_80A0 + type: MK64:PACKED_GFX + offset: 0x293B +d_course_dks_jungle_parkway_packed_dl_8140: + symbol: d_course_dks_jungle_parkway_packed_dl_8140 + type: MK64:PACKED_GFX + offset: 0x2974 +d_course_dks_jungle_parkway_packed_dl_8358: + symbol: d_course_dks_jungle_parkway_packed_dl_8358 + type: MK64:PACKED_GFX + offset: 0x2A90 +d_course_dks_jungle_parkway_packed_dl_8458: + symbol: d_course_dks_jungle_parkway_packed_dl_8458 + type: MK64:PACKED_GFX + offset: 0x2B03 +d_course_dks_jungle_parkway_packed_dl_85A0: + symbol: d_course_dks_jungle_parkway_packed_dl_85A0 + type: MK64:PACKED_GFX + offset: 0x2B9F +d_course_dks_jungle_parkway_packed_dl_8648: + symbol: d_course_dks_jungle_parkway_packed_dl_8648 + type: MK64:PACKED_GFX + offset: 0x2BDD +d_course_dks_jungle_parkway_packed_dl_86B0: + symbol: d_course_dks_jungle_parkway_packed_dl_86B0 + type: MK64:PACKED_GFX + offset: 0x2BF3 +d_course_dks_jungle_parkway_packed_dl_8760: + symbol: d_course_dks_jungle_parkway_packed_dl_8760 + type: MK64:PACKED_GFX + offset: 0x2C36 +d_course_dks_jungle_parkway_packed_dl_8800: + symbol: d_course_dks_jungle_parkway_packed_dl_8800 + type: MK64:PACKED_GFX + offset: 0x2C6F +d_course_dks_jungle_parkway_packed_dl_89B0: + symbol: d_course_dks_jungle_parkway_packed_dl_89B0 + type: MK64:PACKED_GFX + offset: 0x2D4C +d_course_dks_jungle_parkway_packed_dl_8A40: + symbol: d_course_dks_jungle_parkway_packed_dl_8A40 + type: MK64:PACKED_GFX + offset: 0x2D7B +d_course_dks_jungle_parkway_packed_dl_8BA8: + symbol: d_course_dks_jungle_parkway_packed_dl_8BA8 + type: MK64:PACKED_GFX + offset: 0x2E2D +d_course_dks_jungle_parkway_packed_dl_8C60: + symbol: d_course_dks_jungle_parkway_packed_dl_8C60 + type: MK64:PACKED_GFX + offset: 0x2E75 +d_course_dks_jungle_parkway_packed_dl_8E78: + symbol: d_course_dks_jungle_parkway_packed_dl_8E78 + type: MK64:PACKED_GFX + offset: 0x2F91 +d_course_dks_jungle_parkway_packed_dl_8F30: + symbol: d_course_dks_jungle_parkway_packed_dl_8F30 + type: MK64:PACKED_GFX + offset: 0x2FD9 +d_course_dks_jungle_parkway_packed_dl_9000: + symbol: d_course_dks_jungle_parkway_packed_dl_9000 + type: MK64:PACKED_GFX + offset: 0x3025 +d_course_dks_jungle_parkway_packed_dl_9128: + symbol: d_course_dks_jungle_parkway_packed_dl_9128 + type: MK64:PACKED_GFX + offset: 0x308E +d_course_dks_jungle_parkway_packed_dl_9250: + symbol: d_course_dks_jungle_parkway_packed_dl_9250 + type: MK64:PACKED_GFX + offset: 0x30F7 +d_course_dks_jungle_parkway_packed_dl_9268: + symbol: d_course_dks_jungle_parkway_packed_dl_9268 + type: MK64:PACKED_GFX + offset: 0x30FE +d_course_dks_jungle_parkway_packed_dl_92D8: + symbol: d_course_dks_jungle_parkway_packed_dl_92D8 + type: MK64:PACKED_GFX + offset: 0x313A +d_course_dks_jungle_parkway_packed_dl_92E8: + symbol: d_course_dks_jungle_parkway_packed_dl_92E8 + type: MK64:PACKED_GFX + offset: 0x313E +d_course_dks_jungle_parkway_packed_dl_9390: + symbol: d_course_dks_jungle_parkway_packed_dl_9390 + type: MK64:PACKED_GFX + offset: 0x316E +d_course_dks_jungle_parkway_packed_dl_9418: + symbol: d_course_dks_jungle_parkway_packed_dl_9418 + type: MK64:PACKED_GFX + offset: 0x318A +d_course_dks_jungle_parkway_packed_dl_94D0: + symbol: d_course_dks_jungle_parkway_packed_dl_94D0 + type: MK64:PACKED_GFX + offset: 0x31C4 +d_course_dks_jungle_parkway_packed_dl_9588: + symbol: d_course_dks_jungle_parkway_packed_dl_9588 + type: MK64:PACKED_GFX + offset: 0x31FE +d_course_dks_jungle_parkway_packed_dl_9630: + symbol: d_course_dks_jungle_parkway_packed_dl_9630 + type: MK64:PACKED_GFX + offset: 0x322E +d_course_dks_jungle_parkway_packed_dl_96F8: + symbol: d_course_dks_jungle_parkway_packed_dl_96F8 + type: MK64:PACKED_GFX + offset: 0x3272 +d_course_dks_jungle_parkway_packed_dl_9790: + symbol: d_course_dks_jungle_parkway_packed_dl_9790 + type: MK64:PACKED_GFX + offset: 0x3298 +d_course_dks_jungle_parkway_packed_dl_9838: + symbol: d_course_dks_jungle_parkway_packed_dl_9838 + type: MK64:PACKED_GFX + offset: 0x32C8 +d_course_dks_jungle_parkway_packed_dl_9880: + symbol: d_course_dks_jungle_parkway_packed_dl_9880 + type: MK64:PACKED_GFX + offset: 0x32E1 +d_course_dks_jungle_parkway_packed_dl_98E0: + symbol: d_course_dks_jungle_parkway_packed_dl_98E0 + type: MK64:PACKED_GFX + offset: 0x32F2 +d_course_dks_jungle_parkway_packed_dl_98F0: + symbol: d_course_dks_jungle_parkway_packed_dl_98F0 + type: MK64:PACKED_GFX + offset: 0x32F6 +d_course_dks_jungle_parkway_packed_dl_9988: + symbol: d_course_dks_jungle_parkway_packed_dl_9988 + type: MK64:PACKED_GFX + offset: 0x332A +d_course_dks_jungle_parkway_packed_dl_9A20: + symbol: d_course_dks_jungle_parkway_packed_dl_9A20 + type: MK64:PACKED_GFX + offset: 0x335C +d_course_dks_jungle_parkway_packed_dl_9A38: + symbol: d_course_dks_jungle_parkway_packed_dl_9A38 + type: MK64:PACKED_GFX + offset: 0x3363 +d_course_dks_jungle_parkway_packed_dl_9B98: + symbol: d_course_dks_jungle_parkway_packed_dl_9B98 + type: MK64:PACKED_GFX + offset: 0x33ED +d_course_dks_jungle_parkway_packed_dl_9BA8: + symbol: d_course_dks_jungle_parkway_packed_dl_9BA8 + type: MK64:PACKED_GFX + offset: 0x33F1 +d_course_dks_jungle_parkway_packed_dl_9C18: + symbol: d_course_dks_jungle_parkway_packed_dl_9C18 + type: MK64:PACKED_GFX + offset: 0x3419 diff --git a/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices.yml b/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices.yml new file mode 100644 index 000000000..8ccaae47b --- /dev/null +++ b/yamls/us/models/tracks/dks_jungle_parkway/dks_jungle_parkway_vertices.yml @@ -0,0 +1,2301 @@ +:config: + segments: + - [0x0F, 0x956670] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_dks_jungle_parkway_vertex_0x04000000: + symbol: d_course_dks_jungle_parkway_vertex_0x04000000 + type: mk64:course_vtx + count: 22 + offset: 0x0 + +d_course_dks_jungle_parkway_vertex_0x04000100: + symbol: d_course_dks_jungle_parkway_vertex_0x04000100 + type: mk64:course_vtx + count: 8 + offset: 0xe0 + +d_course_dks_jungle_parkway_vertex_0x04000180: + symbol: d_course_dks_jungle_parkway_vertex_0x04000180 + type: mk64:course_vtx + count: 8 + offset: 0x150 + +d_course_dks_jungle_parkway_vertex_0x04000200: + symbol: d_course_dks_jungle_parkway_vertex_0x04000200 + type: mk64:course_vtx + count: 4 + offset: 0x1c0 + +d_course_dks_jungle_parkway_vertex_0x04000240: + symbol: d_course_dks_jungle_parkway_vertex_0x04000240 + type: mk64:course_vtx + count: 8 + offset: 0x1f8 + +d_course_dks_jungle_parkway_vertex_0x040002C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040002C0 + type: mk64:course_vtx + count: 8 + offset: 0x268 + +d_course_dks_jungle_parkway_vertex_0x04000340: + symbol: d_course_dks_jungle_parkway_vertex_0x04000340 + type: mk64:course_vtx + count: 22 + offset: 0x2d8 + +d_course_dks_jungle_parkway_vertex_0x04000440: + symbol: d_course_dks_jungle_parkway_vertex_0x04000440 + type: mk64:course_vtx + count: 18 + offset: 0x3b8 + +d_course_dks_jungle_parkway_vertex_0x04000500: + symbol: d_course_dks_jungle_parkway_vertex_0x04000500 + type: mk64:course_vtx + count: 4 + offset: 0x460 + +d_course_dks_jungle_parkway_vertex_0x04000540: + symbol: d_course_dks_jungle_parkway_vertex_0x04000540 + type: mk64:course_vtx + count: 4 + offset: 0x498 + +d_course_dks_jungle_parkway_vertex_0x04000580: + symbol: d_course_dks_jungle_parkway_vertex_0x04000580 + type: mk64:course_vtx + count: 4 + offset: 0x4d0 + +d_course_dks_jungle_parkway_vertex_0x040005C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040005C0 + type: mk64:course_vtx + count: 4 + offset: 0x508 + +d_course_dks_jungle_parkway_vertex_0x04000600: + symbol: d_course_dks_jungle_parkway_vertex_0x04000600 + type: mk64:course_vtx + count: 18 + offset: 0x540 + +d_course_dks_jungle_parkway_vertex_0x040006C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040006C0 + type: mk64:course_vtx + count: 8 + offset: 0x5e8 + +d_course_dks_jungle_parkway_vertex_0x04000740: + symbol: d_course_dks_jungle_parkway_vertex_0x04000740 + type: mk64:course_vtx + count: 4 + offset: 0x658 + +d_course_dks_jungle_parkway_vertex_0x04000780: + symbol: d_course_dks_jungle_parkway_vertex_0x04000780 + type: mk64:course_vtx + count: 4 + offset: 0x690 + +d_course_dks_jungle_parkway_vertex_0x040007C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040007C0 + type: mk64:course_vtx + count: 4 + offset: 0x6c8 + +d_course_dks_jungle_parkway_vertex_0x04000800: + symbol: d_course_dks_jungle_parkway_vertex_0x04000800 + type: mk64:course_vtx + count: 4 + offset: 0x700 + +d_course_dks_jungle_parkway_vertex_0x04000840: + symbol: d_course_dks_jungle_parkway_vertex_0x04000840 + type: mk64:course_vtx + count: 8 + offset: 0x738 + +d_course_dks_jungle_parkway_vertex_0x040008C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040008C0 + type: mk64:course_vtx + count: 18 + offset: 0x7a8 + +d_course_dks_jungle_parkway_vertex_0x04000980: + symbol: d_course_dks_jungle_parkway_vertex_0x04000980 + type: mk64:course_vtx + count: 8 + offset: 0x850 + +d_course_dks_jungle_parkway_vertex_0x04000A00: + symbol: d_course_dks_jungle_parkway_vertex_0x04000A00 + type: mk64:course_vtx + count: 4 + offset: 0x8c0 + +d_course_dks_jungle_parkway_vertex_0x04000A40: + symbol: d_course_dks_jungle_parkway_vertex_0x04000A40 + type: mk64:course_vtx + count: 8 + offset: 0x8f8 + +d_course_dks_jungle_parkway_vertex_0x04000AC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04000AC0 + type: mk64:course_vtx + count: 4 + offset: 0x968 + +d_course_dks_jungle_parkway_vertex_0x04000B00: + symbol: d_course_dks_jungle_parkway_vertex_0x04000B00 + type: mk64:course_vtx + count: 18 + offset: 0x9a0 + +d_course_dks_jungle_parkway_vertex_0x04000BC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04000BC0 + type: mk64:course_vtx + count: 8 + offset: 0xa48 + +d_course_dks_jungle_parkway_vertex_0x04000C40: + symbol: d_course_dks_jungle_parkway_vertex_0x04000C40 + type: mk64:course_vtx + count: 4 + offset: 0xab8 + +d_course_dks_jungle_parkway_vertex_0x04000C80: + symbol: d_course_dks_jungle_parkway_vertex_0x04000C80 + type: mk64:course_vtx + count: 4 + offset: 0xaf0 + +d_course_dks_jungle_parkway_vertex_0x04000CC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04000CC0 + type: mk64:course_vtx + count: 8 + offset: 0xb28 + +d_course_dks_jungle_parkway_vertex_0x04000D40: + symbol: d_course_dks_jungle_parkway_vertex_0x04000D40 + type: mk64:course_vtx + count: 18 + offset: 0xb98 + +d_course_dks_jungle_parkway_vertex_0x04000E00: + symbol: d_course_dks_jungle_parkway_vertex_0x04000E00 + type: mk64:course_vtx + count: 8 + offset: 0xc40 + +d_course_dks_jungle_parkway_vertex_0x04000E80: + symbol: d_course_dks_jungle_parkway_vertex_0x04000E80 + type: mk64:course_vtx + count: 8 + offset: 0xcb0 + +d_course_dks_jungle_parkway_vertex_0x04000F00: + symbol: d_course_dks_jungle_parkway_vertex_0x04000F00 + type: mk64:course_vtx + count: 18 + offset: 0xd20 + +d_course_dks_jungle_parkway_vertex_0x04000FC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04000FC0 + type: mk64:course_vtx + count: 8 + offset: 0xdc8 + +d_course_dks_jungle_parkway_vertex_0x04001040: + symbol: d_course_dks_jungle_parkway_vertex_0x04001040 + type: mk64:course_vtx + count: 8 + offset: 0xe38 + +d_course_dks_jungle_parkway_vertex_0x040010C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040010C0 + type: mk64:course_vtx + count: 8 + offset: 0xea8 + +d_course_dks_jungle_parkway_vertex_0x04001140: + symbol: d_course_dks_jungle_parkway_vertex_0x04001140 + type: mk64:course_vtx + count: 8 + offset: 0xf18 + +d_course_dks_jungle_parkway_vertex_0x040011C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040011C0 + type: mk64:course_vtx + count: 8 + offset: 0xf88 + +d_course_dks_jungle_parkway_vertex_0x04001240: + symbol: d_course_dks_jungle_parkway_vertex_0x04001240 + type: mk64:course_vtx + count: 8 + offset: 0xff8 + +d_course_dks_jungle_parkway_vertex_0x040012C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040012C0 + type: mk64:course_vtx + count: 8 + offset: 0x1068 + +d_course_dks_jungle_parkway_vertex_0x04001340: + symbol: d_course_dks_jungle_parkway_vertex_0x04001340 + type: mk64:course_vtx + count: 8 + offset: 0x10d8 + +d_course_dks_jungle_parkway_vertex_0x040013C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040013C0 + type: mk64:course_vtx + count: 8 + offset: 0x1148 + +d_course_dks_jungle_parkway_vertex_0x04001440: + symbol: d_course_dks_jungle_parkway_vertex_0x04001440 + type: mk64:course_vtx + count: 8 + offset: 0x11b8 + +d_course_dks_jungle_parkway_vertex_0x040014C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040014C0 + type: mk64:course_vtx + count: 8 + offset: 0x1228 + +d_course_dks_jungle_parkway_vertex_0x04001540: + symbol: d_course_dks_jungle_parkway_vertex_0x04001540 + type: mk64:course_vtx + count: 8 + offset: 0x1298 + +d_course_dks_jungle_parkway_vertex_0x040015C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040015C0 + type: mk64:course_vtx + count: 8 + offset: 0x1308 + +d_course_dks_jungle_parkway_vertex_0x04001640: + symbol: d_course_dks_jungle_parkway_vertex_0x04001640 + type: mk64:course_vtx + count: 32 + offset: 0x1378 + +d_course_dks_jungle_parkway_vertex_0x04001780: + symbol: d_course_dks_jungle_parkway_vertex_0x04001780 + type: mk64:course_vtx + count: 18 + offset: 0x1490 + +d_course_dks_jungle_parkway_vertex_0x04001840: + symbol: d_course_dks_jungle_parkway_vertex_0x04001840 + type: mk64:course_vtx + count: 18 + offset: 0x1538 + +d_course_dks_jungle_parkway_vertex_0x04001900: + symbol: d_course_dks_jungle_parkway_vertex_0x04001900 + type: mk64:course_vtx + count: 18 + offset: 0x15e0 + +d_course_dks_jungle_parkway_vertex_0x040019C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040019C0 + type: mk64:course_vtx + count: 18 + offset: 0x1688 + +d_course_dks_jungle_parkway_vertex_0x04001A80: + symbol: d_course_dks_jungle_parkway_vertex_0x04001A80 + type: mk64:course_vtx + count: 32 + offset: 0x1730 + +d_course_dks_jungle_parkway_vertex_0x04001BC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04001BC0 + type: mk64:course_vtx + count: 4 + offset: 0x1848 + +d_course_dks_jungle_parkway_vertex_0x04001C00: + symbol: d_course_dks_jungle_parkway_vertex_0x04001C00 + type: mk64:course_vtx + count: 4 + offset: 0x1880 + +d_course_dks_jungle_parkway_vertex_0x04001C40: + symbol: d_course_dks_jungle_parkway_vertex_0x04001C40 + type: mk64:course_vtx + count: 4 + offset: 0x18b8 + +d_course_dks_jungle_parkway_vertex_0x04001C80: + symbol: d_course_dks_jungle_parkway_vertex_0x04001C80 + type: mk64:course_vtx + count: 4 + offset: 0x18f0 + +d_course_dks_jungle_parkway_vertex_0x04001CC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04001CC0 + type: mk64:course_vtx + count: 18 + offset: 0x1928 + +d_course_dks_jungle_parkway_vertex_0x04001D80: + symbol: d_course_dks_jungle_parkway_vertex_0x04001D80 + type: mk64:course_vtx + count: 18 + offset: 0x19d0 + +d_course_dks_jungle_parkway_vertex_0x04001E40: + symbol: d_course_dks_jungle_parkway_vertex_0x04001E40 + type: mk64:course_vtx + count: 18 + offset: 0x1a78 + +d_course_dks_jungle_parkway_vertex_0x04001F00: + symbol: d_course_dks_jungle_parkway_vertex_0x04001F00 + type: mk64:course_vtx + count: 18 + offset: 0x1b20 + +d_course_dks_jungle_parkway_vertex_0x04001FC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04001FC0 + type: mk64:course_vtx + count: 8 + offset: 0x1bc8 + +d_course_dks_jungle_parkway_vertex_0x04002040: + symbol: d_course_dks_jungle_parkway_vertex_0x04002040 + type: mk64:course_vtx + count: 4 + offset: 0x1c38 + +d_course_dks_jungle_parkway_vertex_0x04002080: + symbol: d_course_dks_jungle_parkway_vertex_0x04002080 + type: mk64:course_vtx + count: 8 + offset: 0x1c70 + +d_course_dks_jungle_parkway_vertex_0x04002100: + symbol: d_course_dks_jungle_parkway_vertex_0x04002100 + type: mk64:course_vtx + count: 4 + offset: 0x1ce0 + +d_course_dks_jungle_parkway_vertex_0x04002140: + symbol: d_course_dks_jungle_parkway_vertex_0x04002140 + type: mk64:course_vtx + count: 4 + offset: 0x1d18 + +d_course_dks_jungle_parkway_vertex_0x04002180: + symbol: d_course_dks_jungle_parkway_vertex_0x04002180 + type: mk64:course_vtx + count: 8 + offset: 0x1d50 + +d_course_dks_jungle_parkway_vertex_0x04002200: + symbol: d_course_dks_jungle_parkway_vertex_0x04002200 + type: mk64:course_vtx + count: 8 + offset: 0x1dc0 + +d_course_dks_jungle_parkway_vertex_0x04002280: + symbol: d_course_dks_jungle_parkway_vertex_0x04002280 + type: mk64:course_vtx + count: 4 + offset: 0x1e30 + +d_course_dks_jungle_parkway_vertex_0x040022C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040022C0 + type: mk64:course_vtx + count: 4 + offset: 0x1e68 + +d_course_dks_jungle_parkway_vertex_0x04002300: + symbol: d_course_dks_jungle_parkway_vertex_0x04002300 + type: mk64:course_vtx + count: 4 + offset: 0x1ea0 + +d_course_dks_jungle_parkway_vertex_0x04002340: + symbol: d_course_dks_jungle_parkway_vertex_0x04002340 + type: mk64:course_vtx + count: 4 + offset: 0x1ed8 + +d_course_dks_jungle_parkway_vertex_0x04002380: + symbol: d_course_dks_jungle_parkway_vertex_0x04002380 + type: mk64:course_vtx + count: 8 + offset: 0x1f10 + +d_course_dks_jungle_parkway_vertex_0x04002400: + symbol: d_course_dks_jungle_parkway_vertex_0x04002400 + type: mk64:course_vtx + count: 32 + offset: 0x1f80 + +d_course_dks_jungle_parkway_vertex_0x04002540: + symbol: d_course_dks_jungle_parkway_vertex_0x04002540 + type: mk64:course_vtx + count: 22 + offset: 0x2098 + +d_course_dks_jungle_parkway_vertex_0x04002640: + symbol: d_course_dks_jungle_parkway_vertex_0x04002640 + type: mk64:course_vtx + count: 32 + offset: 0x2178 + +d_course_dks_jungle_parkway_vertex_0x04002780: + symbol: d_course_dks_jungle_parkway_vertex_0x04002780 + type: mk64:course_vtx + count: 32 + offset: 0x2290 + +d_course_dks_jungle_parkway_vertex_0x040028C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040028C0 + type: mk64:course_vtx + count: 4 + offset: 0x23a8 + +d_course_dks_jungle_parkway_vertex_0x04002900: + symbol: d_course_dks_jungle_parkway_vertex_0x04002900 + type: mk64:course_vtx + count: 32 + offset: 0x23e0 + +d_course_dks_jungle_parkway_vertex_0x04002A40: + symbol: d_course_dks_jungle_parkway_vertex_0x04002A40 + type: mk64:course_vtx + count: 18 + offset: 0x24f8 + +d_course_dks_jungle_parkway_vertex_0x04002B00: + symbol: d_course_dks_jungle_parkway_vertex_0x04002B00 + type: mk64:course_vtx + count: 8 + offset: 0x25a0 + +d_course_dks_jungle_parkway_vertex_0x04002B80: + symbol: d_course_dks_jungle_parkway_vertex_0x04002B80 + type: mk64:course_vtx + count: 18 + offset: 0x2610 + +d_course_dks_jungle_parkway_vertex_0x04002C40: + symbol: d_course_dks_jungle_parkway_vertex_0x04002C40 + type: mk64:course_vtx + count: 8 + offset: 0x26b8 + +d_course_dks_jungle_parkway_vertex_0x04002CC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04002CC0 + type: mk64:course_vtx + count: 32 + offset: 0x2728 + +d_course_dks_jungle_parkway_vertex_0x04002E00: + symbol: d_course_dks_jungle_parkway_vertex_0x04002E00 + type: mk64:course_vtx + count: 18 + offset: 0x2840 + +d_course_dks_jungle_parkway_vertex_0x04002EC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04002EC0 + type: mk64:course_vtx + count: 4 + offset: 0x28e8 + +d_course_dks_jungle_parkway_vertex_0x04002F00: + symbol: d_course_dks_jungle_parkway_vertex_0x04002F00 + type: mk64:course_vtx + count: 4 + offset: 0x2920 + +d_course_dks_jungle_parkway_vertex_0x04002F40: + symbol: d_course_dks_jungle_parkway_vertex_0x04002F40 + type: mk64:course_vtx + count: 4 + offset: 0x2958 + +d_course_dks_jungle_parkway_vertex_0x04002F80: + symbol: d_course_dks_jungle_parkway_vertex_0x04002F80 + type: mk64:course_vtx + count: 8 + offset: 0x2990 + +d_course_dks_jungle_parkway_vertex_0x04003000: + symbol: d_course_dks_jungle_parkway_vertex_0x04003000 + type: mk64:course_vtx + count: 18 + offset: 0x2a00 + +d_course_dks_jungle_parkway_vertex_0x040030C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040030C0 + type: mk64:course_vtx + count: 4 + offset: 0x2aa8 + +d_course_dks_jungle_parkway_vertex_0x04003100: + symbol: d_course_dks_jungle_parkway_vertex_0x04003100 + type: mk64:course_vtx + count: 8 + offset: 0x2ae0 + +d_course_dks_jungle_parkway_vertex_0x04003180: + symbol: d_course_dks_jungle_parkway_vertex_0x04003180 + type: mk64:course_vtx + count: 4 + offset: 0x2b50 + +d_course_dks_jungle_parkway_vertex_0x040031C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040031C0 + type: mk64:course_vtx + count: 8 + offset: 0x2b88 + +d_course_dks_jungle_parkway_vertex_0x04003240: + symbol: d_course_dks_jungle_parkway_vertex_0x04003240 + type: mk64:course_vtx + count: 4 + offset: 0x2bf8 + +d_course_dks_jungle_parkway_vertex_0x04003280: + symbol: d_course_dks_jungle_parkway_vertex_0x04003280 + type: mk64:course_vtx + count: 4 + offset: 0x2c30 + +d_course_dks_jungle_parkway_vertex_0x040032C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040032C0 + type: mk64:course_vtx + count: 8 + offset: 0x2c68 + +d_course_dks_jungle_parkway_vertex_0x04003340: + symbol: d_course_dks_jungle_parkway_vertex_0x04003340 + type: mk64:course_vtx + count: 4 + offset: 0x2cd8 + +d_course_dks_jungle_parkway_vertex_0x04003380: + symbol: d_course_dks_jungle_parkway_vertex_0x04003380 + type: mk64:course_vtx + count: 8 + offset: 0x2d10 + +d_course_dks_jungle_parkway_vertex_0x04003400: + symbol: d_course_dks_jungle_parkway_vertex_0x04003400 + type: mk64:course_vtx + count: 8 + offset: 0x2d80 + +d_course_dks_jungle_parkway_vertex_0x04003480: + symbol: d_course_dks_jungle_parkway_vertex_0x04003480 + type: mk64:course_vtx + count: 8 + offset: 0x2df0 + +d_course_dks_jungle_parkway_vertex_0x04003500: + symbol: d_course_dks_jungle_parkway_vertex_0x04003500 + type: mk64:course_vtx + count: 8 + offset: 0x2e60 + +d_course_dks_jungle_parkway_vertex_0x04003580: + symbol: d_course_dks_jungle_parkway_vertex_0x04003580 + type: mk64:course_vtx + count: 32 + offset: 0x2ed0 + +d_course_dks_jungle_parkway_vertex_0x040036C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040036C0 + type: mk64:course_vtx + count: 18 + offset: 0x2fe8 + +d_course_dks_jungle_parkway_vertex_0x04003780: + symbol: d_course_dks_jungle_parkway_vertex_0x04003780 + type: mk64:course_vtx + count: 8 + offset: 0x3090 + +d_course_dks_jungle_parkway_vertex_0x04003800: + symbol: d_course_dks_jungle_parkway_vertex_0x04003800 + type: mk64:course_vtx + count: 4 + offset: 0x3100 + +d_course_dks_jungle_parkway_vertex_0x04003840: + symbol: d_course_dks_jungle_parkway_vertex_0x04003840 + type: mk64:course_vtx + count: 18 + offset: 0x3138 + +d_course_dks_jungle_parkway_vertex_0x04003900: + symbol: d_course_dks_jungle_parkway_vertex_0x04003900 + type: mk64:course_vtx + count: 8 + offset: 0x31e0 + +d_course_dks_jungle_parkway_vertex_0x04003980: + symbol: d_course_dks_jungle_parkway_vertex_0x04003980 + type: mk64:course_vtx + count: 32 + offset: 0x3250 + +d_course_dks_jungle_parkway_vertex_0x04003AC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04003AC0 + type: mk64:course_vtx + count: 8 + offset: 0x3368 + +d_course_dks_jungle_parkway_vertex_0x04003B40: + symbol: d_course_dks_jungle_parkway_vertex_0x04003B40 + type: mk64:course_vtx + count: 4 + offset: 0x33d8 + +d_course_dks_jungle_parkway_vertex_0x04003B80: + symbol: d_course_dks_jungle_parkway_vertex_0x04003B80 + type: mk64:course_vtx + count: 4 + offset: 0x3410 + +d_course_dks_jungle_parkway_vertex_0x04003BC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04003BC0 + type: mk64:course_vtx + count: 4 + offset: 0x3448 + +d_course_dks_jungle_parkway_vertex_0x04003C00: + symbol: d_course_dks_jungle_parkway_vertex_0x04003C00 + type: mk64:course_vtx + count: 4 + offset: 0x3480 + +d_course_dks_jungle_parkway_vertex_0x04003C40: + symbol: d_course_dks_jungle_parkway_vertex_0x04003C40 + type: mk64:course_vtx + count: 8 + offset: 0x34b8 + +d_course_dks_jungle_parkway_vertex_0x04003CC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04003CC0 + type: mk64:course_vtx + count: 4 + offset: 0x3528 + +d_course_dks_jungle_parkway_vertex_0x04003D00: + symbol: d_course_dks_jungle_parkway_vertex_0x04003D00 + type: mk64:course_vtx + count: 4 + offset: 0x3560 + +d_course_dks_jungle_parkway_vertex_0x04003D40: + symbol: d_course_dks_jungle_parkway_vertex_0x04003D40 + type: mk64:course_vtx + count: 4 + offset: 0x3598 + +d_course_dks_jungle_parkway_vertex_0x04003D80: + symbol: d_course_dks_jungle_parkway_vertex_0x04003D80 + type: mk64:course_vtx + count: 4 + offset: 0x35d0 + +d_course_dks_jungle_parkway_vertex_0x04003DC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04003DC0 + type: mk64:course_vtx + count: 7 + offset: 0x3608 + +d_course_dks_jungle_parkway_vertex_0x04003E30: + symbol: d_course_dks_jungle_parkway_vertex_0x04003E30 + type: mk64:course_vtx + count: 4 + offset: 0x366a + +d_course_dks_jungle_parkway_vertex_0x04003E70: + symbol: d_course_dks_jungle_parkway_vertex_0x04003E70 + type: mk64:course_vtx + count: 4 + offset: 0x36a2 + +d_course_dks_jungle_parkway_vertex_0x04003EB0: + symbol: d_course_dks_jungle_parkway_vertex_0x04003EB0 + type: mk64:course_vtx + count: 4 + offset: 0x36da + +d_course_dks_jungle_parkway_vertex_0x04003EF0: + symbol: d_course_dks_jungle_parkway_vertex_0x04003EF0 + type: mk64:course_vtx + count: 4 + offset: 0x3712 + +d_course_dks_jungle_parkway_vertex_0x04003F30: + symbol: d_course_dks_jungle_parkway_vertex_0x04003F30 + type: mk64:course_vtx + count: 4 + offset: 0x374a + +d_course_dks_jungle_parkway_vertex_0x04003F70: + symbol: d_course_dks_jungle_parkway_vertex_0x04003F70 + type: mk64:course_vtx + count: 4 + offset: 0x3782 + +d_course_dks_jungle_parkway_vertex_0x04003FB0: + symbol: d_course_dks_jungle_parkway_vertex_0x04003FB0 + type: mk64:course_vtx + count: 22 + offset: 0x37ba + +d_course_dks_jungle_parkway_vertex_0x040040B0: + symbol: d_course_dks_jungle_parkway_vertex_0x040040B0 + type: mk64:course_vtx + count: 4 + offset: 0x389a + +d_course_dks_jungle_parkway_vertex_0x040040F0: + symbol: d_course_dks_jungle_parkway_vertex_0x040040F0 + type: mk64:course_vtx + count: 4 + offset: 0x38d2 + +d_course_dks_jungle_parkway_vertex_0x04004130: + symbol: d_course_dks_jungle_parkway_vertex_0x04004130 + type: mk64:course_vtx + count: 4 + offset: 0x390a + +d_course_dks_jungle_parkway_vertex_0x04004170: + symbol: d_course_dks_jungle_parkway_vertex_0x04004170 + type: mk64:course_vtx + count: 4 + offset: 0x3942 + +d_course_dks_jungle_parkway_vertex_0x040041B0: + symbol: d_course_dks_jungle_parkway_vertex_0x040041B0 + type: mk64:course_vtx + count: 4 + offset: 0x397a + +d_course_dks_jungle_parkway_vertex_0x040041F0: + symbol: d_course_dks_jungle_parkway_vertex_0x040041F0 + type: mk64:course_vtx + count: 18 + offset: 0x39b2 + +d_course_dks_jungle_parkway_vertex_0x040042B0: + symbol: d_course_dks_jungle_parkway_vertex_0x040042B0 + type: mk64:course_vtx + count: 8 + offset: 0x3a5a + +d_course_dks_jungle_parkway_vertex_0x04004330: + symbol: d_course_dks_jungle_parkway_vertex_0x04004330 + type: mk64:course_vtx + count: 4 + offset: 0x3aca + +d_course_dks_jungle_parkway_vertex_0x04004370: + symbol: d_course_dks_jungle_parkway_vertex_0x04004370 + type: mk64:course_vtx + count: 4 + offset: 0x3b02 + +d_course_dks_jungle_parkway_vertex_0x040043B0: + symbol: d_course_dks_jungle_parkway_vertex_0x040043B0 + type: mk64:course_vtx + count: 8 + offset: 0x3b3a + +d_course_dks_jungle_parkway_vertex_0x04004430: + symbol: d_course_dks_jungle_parkway_vertex_0x04004430 + type: mk64:course_vtx + count: 4 + offset: 0x3baa + +d_course_dks_jungle_parkway_vertex_0x04004470: + symbol: d_course_dks_jungle_parkway_vertex_0x04004470 + type: mk64:course_vtx + count: 18 + offset: 0x3be2 + +d_course_dks_jungle_parkway_vertex_0x04004530: + symbol: d_course_dks_jungle_parkway_vertex_0x04004530 + type: mk64:course_vtx + count: 4 + offset: 0x3c8a + +d_course_dks_jungle_parkway_vertex_0x04004570: + symbol: d_course_dks_jungle_parkway_vertex_0x04004570 + type: mk64:course_vtx + count: 4 + offset: 0x3cc2 + +d_course_dks_jungle_parkway_vertex_0x040045B0: + symbol: d_course_dks_jungle_parkway_vertex_0x040045B0 + type: mk64:course_vtx + count: 4 + offset: 0x3cfa + +d_course_dks_jungle_parkway_vertex_0x040045F0: + symbol: d_course_dks_jungle_parkway_vertex_0x040045F0 + type: mk64:course_vtx + count: 4 + offset: 0x3d32 + +d_course_dks_jungle_parkway_vertex_0x04004630: + symbol: d_course_dks_jungle_parkway_vertex_0x04004630 + type: mk64:course_vtx + count: 6 + offset: 0x3d6a + +d_course_dks_jungle_parkway_vertex_0x04004690: + symbol: d_course_dks_jungle_parkway_vertex_0x04004690 + type: mk64:course_vtx + count: 8 + offset: 0x3dbe + +d_course_dks_jungle_parkway_vertex_0x04004710: + symbol: d_course_dks_jungle_parkway_vertex_0x04004710 + type: mk64:course_vtx + count: 4 + offset: 0x3e2e + +d_course_dks_jungle_parkway_vertex_0x04004750: + symbol: d_course_dks_jungle_parkway_vertex_0x04004750 + type: mk64:course_vtx + count: 8 + offset: 0x3e66 + +d_course_dks_jungle_parkway_vertex_0x040047D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040047D0 + type: mk64:course_vtx + count: 8 + offset: 0x3ed6 + +d_course_dks_jungle_parkway_vertex_0x04004850: + symbol: d_course_dks_jungle_parkway_vertex_0x04004850 + type: mk64:course_vtx + count: 8 + offset: 0x3f46 + +d_course_dks_jungle_parkway_vertex_0x040048D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040048D0 + type: mk64:course_vtx + count: 4 + offset: 0x3fb6 + +d_course_dks_jungle_parkway_vertex_0x04004910: + symbol: d_course_dks_jungle_parkway_vertex_0x04004910 + type: mk64:course_vtx + count: 4 + offset: 0x3fee + +d_course_dks_jungle_parkway_vertex_0x04004950: + symbol: d_course_dks_jungle_parkway_vertex_0x04004950 + type: mk64:course_vtx + count: 4 + offset: 0x4026 + +d_course_dks_jungle_parkway_vertex_0x04004990: + symbol: d_course_dks_jungle_parkway_vertex_0x04004990 + type: mk64:course_vtx + count: 4 + offset: 0x405e + +d_course_dks_jungle_parkway_vertex_0x040049D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040049D0 + type: mk64:course_vtx + count: 8 + offset: 0x4096 + +d_course_dks_jungle_parkway_vertex_0x04004A50: + symbol: d_course_dks_jungle_parkway_vertex_0x04004A50 + type: mk64:course_vtx + count: 8 + offset: 0x4106 + +d_course_dks_jungle_parkway_vertex_0x04004AD0: + symbol: d_course_dks_jungle_parkway_vertex_0x04004AD0 + type: mk64:course_vtx + count: 4 + offset: 0x4176 + +d_course_dks_jungle_parkway_vertex_0x04004B10: + symbol: d_course_dks_jungle_parkway_vertex_0x04004B10 + type: mk64:course_vtx + count: 4 + offset: 0x41ae + +d_course_dks_jungle_parkway_vertex_0x04004B50: + symbol: d_course_dks_jungle_parkway_vertex_0x04004B50 + type: mk64:course_vtx + count: 4 + offset: 0x41e6 + +d_course_dks_jungle_parkway_vertex_0x04004B90: + symbol: d_course_dks_jungle_parkway_vertex_0x04004B90 + type: mk64:course_vtx + count: 4 + offset: 0x421e + +d_course_dks_jungle_parkway_vertex_0x04004BD0: + symbol: d_course_dks_jungle_parkway_vertex_0x04004BD0 + type: mk64:course_vtx + count: 8 + offset: 0x4256 + +d_course_dks_jungle_parkway_vertex_0x04004C50: + symbol: d_course_dks_jungle_parkway_vertex_0x04004C50 + type: mk64:course_vtx + count: 4 + offset: 0x42c6 + +d_course_dks_jungle_parkway_vertex_0x04004C90: + symbol: d_course_dks_jungle_parkway_vertex_0x04004C90 + type: mk64:course_vtx + count: 8 + offset: 0x42fe + +d_course_dks_jungle_parkway_vertex_0x04004D10: + symbol: d_course_dks_jungle_parkway_vertex_0x04004D10 + type: mk64:course_vtx + count: 4 + offset: 0x436e + +d_course_dks_jungle_parkway_vertex_0x04004D50: + symbol: d_course_dks_jungle_parkway_vertex_0x04004D50 + type: mk64:course_vtx + count: 4 + offset: 0x43a6 + +d_course_dks_jungle_parkway_vertex_0x04004D90: + symbol: d_course_dks_jungle_parkway_vertex_0x04004D90 + type: mk64:course_vtx + count: 36 + offset: 0x43de + +d_course_dks_jungle_parkway_vertex_0x04004F10: + symbol: d_course_dks_jungle_parkway_vertex_0x04004F10 + type: mk64:course_vtx + count: 8 + offset: 0x452e + +d_course_dks_jungle_parkway_vertex_0x04004F90: + symbol: d_course_dks_jungle_parkway_vertex_0x04004F90 + type: mk64:course_vtx + count: 18 + offset: 0x459e + +d_course_dks_jungle_parkway_vertex_0x04005050: + symbol: d_course_dks_jungle_parkway_vertex_0x04005050 + type: mk64:course_vtx + count: 18 + offset: 0x4646 + +d_course_dks_jungle_parkway_vertex_0x04005110: + symbol: d_course_dks_jungle_parkway_vertex_0x04005110 + type: mk64:course_vtx + count: 36 + offset: 0x46ee + +d_course_dks_jungle_parkway_vertex_0x04005290: + symbol: d_course_dks_jungle_parkway_vertex_0x04005290 + type: mk64:course_vtx + count: 22 + offset: 0x483e + +d_course_dks_jungle_parkway_vertex_0x04005390: + symbol: d_course_dks_jungle_parkway_vertex_0x04005390 + type: mk64:course_vtx + count: 18 + offset: 0x491e + +d_course_dks_jungle_parkway_vertex_0x04005450: + symbol: d_course_dks_jungle_parkway_vertex_0x04005450 + type: mk64:course_vtx + count: 4 + offset: 0x49c6 + +d_course_dks_jungle_parkway_vertex_0x04005490: + symbol: d_course_dks_jungle_parkway_vertex_0x04005490 + type: mk64:course_vtx + count: 22 + offset: 0x49fe + +d_course_dks_jungle_parkway_vertex_0x04005590: + symbol: d_course_dks_jungle_parkway_vertex_0x04005590 + type: mk64:course_vtx + count: 22 + offset: 0x4ade + +d_course_dks_jungle_parkway_vertex_0x04005690: + symbol: d_course_dks_jungle_parkway_vertex_0x04005690 + type: mk64:course_vtx + count: 18 + offset: 0x4bbe + +d_course_dks_jungle_parkway_vertex_0x04005750: + symbol: d_course_dks_jungle_parkway_vertex_0x04005750 + type: mk64:course_vtx + count: 32 + offset: 0x4c66 + +d_course_dks_jungle_parkway_vertex_0x04005890: + symbol: d_course_dks_jungle_parkway_vertex_0x04005890 + type: mk64:course_vtx + count: 8 + offset: 0x4d7e + +d_course_dks_jungle_parkway_vertex_0x04005910: + symbol: d_course_dks_jungle_parkway_vertex_0x04005910 + type: mk64:course_vtx + count: 18 + offset: 0x4dee + +d_course_dks_jungle_parkway_vertex_0x040059D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040059D0 + type: mk64:course_vtx + count: 22 + offset: 0x4e96 + +d_course_dks_jungle_parkway_vertex_0x04005AD0: + symbol: d_course_dks_jungle_parkway_vertex_0x04005AD0 + type: mk64:course_vtx + count: 8 + offset: 0x4f76 + +d_course_dks_jungle_parkway_vertex_0x04005B50: + symbol: d_course_dks_jungle_parkway_vertex_0x04005B50 + type: mk64:course_vtx + count: 50 + offset: 0x4fe6 + +d_course_dks_jungle_parkway_vertex_0x04005D50: + symbol: d_course_dks_jungle_parkway_vertex_0x04005D50 + type: mk64:course_vtx + count: 50 + offset: 0x51a6 + +d_course_dks_jungle_parkway_vertex_0x04005F50: + symbol: d_course_dks_jungle_parkway_vertex_0x04005F50 + type: mk64:course_vtx + count: 50 + offset: 0x5366 + +d_course_dks_jungle_parkway_vertex_0x04006150: + symbol: d_course_dks_jungle_parkway_vertex_0x04006150 + type: mk64:course_vtx + count: 50 + offset: 0x5526 + +d_course_dks_jungle_parkway_vertex_0x04006350: + symbol: d_course_dks_jungle_parkway_vertex_0x04006350 + type: mk64:course_vtx + count: 50 + offset: 0x56e6 + +d_course_dks_jungle_parkway_vertex_0x04006550: + symbol: d_course_dks_jungle_parkway_vertex_0x04006550 + type: mk64:course_vtx + count: 50 + offset: 0x58a6 + +d_course_dks_jungle_parkway_vertex_0x04006750: + symbol: d_course_dks_jungle_parkway_vertex_0x04006750 + type: mk64:course_vtx + count: 50 + offset: 0x5a66 + +d_course_dks_jungle_parkway_vertex_0x04006950: + symbol: d_course_dks_jungle_parkway_vertex_0x04006950 + type: mk64:course_vtx + count: 22 + offset: 0x5c26 + +d_course_dks_jungle_parkway_vertex_0x04006A50: + symbol: d_course_dks_jungle_parkway_vertex_0x04006A50 + type: mk64:course_vtx + count: 36 + offset: 0x5d06 + +d_course_dks_jungle_parkway_vertex_0x04006BD0: + symbol: d_course_dks_jungle_parkway_vertex_0x04006BD0 + type: mk64:course_vtx + count: 24 + offset: 0x5e56 + +d_course_dks_jungle_parkway_vertex_0x04006CF0: + symbol: d_course_dks_jungle_parkway_vertex_0x04006CF0 + type: mk64:course_vtx + count: 38 + offset: 0x5f52 + +d_course_dks_jungle_parkway_vertex_0x04006E90: + symbol: d_course_dks_jungle_parkway_vertex_0x04006E90 + type: mk64:course_vtx + count: 41 + offset: 0x60be + +d_course_dks_jungle_parkway_vertex_0x04007060: + symbol: d_course_dks_jungle_parkway_vertex_0x04007060 + type: mk64:course_vtx + count: 37 + offset: 0x6254 + +d_course_dks_jungle_parkway_vertex_0x040071F0: + symbol: d_course_dks_jungle_parkway_vertex_0x040071F0 + type: mk64:course_vtx + count: 8 + offset: 0x63b2 + +d_course_dks_jungle_parkway_vertex_0x04007270: + symbol: d_course_dks_jungle_parkway_vertex_0x04007270 + type: mk64:course_vtx + count: 7 + offset: 0x6422 + +d_course_dks_jungle_parkway_vertex_0x040072E0: + symbol: d_course_dks_jungle_parkway_vertex_0x040072E0 + type: mk64:course_vtx + count: 17 + offset: 0x6484 + +d_course_dks_jungle_parkway_vertex_0x04007390: + symbol: d_course_dks_jungle_parkway_vertex_0x04007390 + type: mk64:course_vtx + count: 16 + offset: 0x651e + +d_course_dks_jungle_parkway_vertex_0x04007430: + symbol: d_course_dks_jungle_parkway_vertex_0x04007430 + type: mk64:course_vtx + count: 49 + offset: 0x65aa + +d_course_dks_jungle_parkway_vertex_0x04007620: + symbol: d_course_dks_jungle_parkway_vertex_0x04007620 + type: mk64:course_vtx + count: 50 + offset: 0x675c + +d_course_dks_jungle_parkway_vertex_0x04007820: + symbol: d_course_dks_jungle_parkway_vertex_0x04007820 + type: mk64:course_vtx + count: 49 + offset: 0x691c + +d_course_dks_jungle_parkway_vertex_0x04007A10: + symbol: d_course_dks_jungle_parkway_vertex_0x04007A10 + type: mk64:course_vtx + count: 40 + offset: 0x6ace + +d_course_dks_jungle_parkway_vertex_0x04007BD0: + symbol: d_course_dks_jungle_parkway_vertex_0x04007BD0 + type: mk64:course_vtx + count: 49 + offset: 0x6c56 + +d_course_dks_jungle_parkway_vertex_0x04007DC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04007DC0 + type: mk64:course_vtx + count: 19 + offset: 0x6e08 + +d_course_dks_jungle_parkway_vertex_0x04007E90: + symbol: d_course_dks_jungle_parkway_vertex_0x04007E90 + type: mk64:course_vtx + count: 50 + offset: 0x6ebe + +d_course_dks_jungle_parkway_vertex_0x04008090: + symbol: d_course_dks_jungle_parkway_vertex_0x04008090 + type: mk64:course_vtx + count: 50 + offset: 0x707e + +d_course_dks_jungle_parkway_vertex_0x04008290: + symbol: d_course_dks_jungle_parkway_vertex_0x04008290 + type: mk64:course_vtx + count: 50 + offset: 0x723e + +d_course_dks_jungle_parkway_vertex_0x04008490: + symbol: d_course_dks_jungle_parkway_vertex_0x04008490 + type: mk64:course_vtx + count: 36 + offset: 0x73fe + +d_course_dks_jungle_parkway_vertex_0x04008610: + symbol: d_course_dks_jungle_parkway_vertex_0x04008610 + type: mk64:course_vtx + count: 50 + offset: 0x754e + +d_course_dks_jungle_parkway_vertex_0x04008810: + symbol: d_course_dks_jungle_parkway_vertex_0x04008810 + type: mk64:course_vtx + count: 50 + offset: 0x770e + +d_course_dks_jungle_parkway_vertex_0x04008A10: + symbol: d_course_dks_jungle_parkway_vertex_0x04008A10 + type: mk64:course_vtx + count: 48 + offset: 0x78ce + +d_course_dks_jungle_parkway_vertex_0x04008BF0: + symbol: d_course_dks_jungle_parkway_vertex_0x04008BF0 + type: mk64:course_vtx + count: 25 + offset: 0x7a72 + +d_course_dks_jungle_parkway_vertex_0x04008D20: + symbol: d_course_dks_jungle_parkway_vertex_0x04008D20 + type: mk64:course_vtx + count: 48 + offset: 0x7b7c + +d_course_dks_jungle_parkway_vertex_0x04008F00: + symbol: d_course_dks_jungle_parkway_vertex_0x04008F00 + type: mk64:course_vtx + count: 18 + offset: 0x7d20 + +d_course_dks_jungle_parkway_vertex_0x04008FC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04008FC0 + type: mk64:course_vtx + count: 48 + offset: 0x7dc8 + +d_course_dks_jungle_parkway_vertex_0x040091A0: + symbol: d_course_dks_jungle_parkway_vertex_0x040091A0 + type: mk64:course_vtx + count: 36 + offset: 0x7f6c + +d_course_dks_jungle_parkway_vertex_0x04009320: + symbol: d_course_dks_jungle_parkway_vertex_0x04009320 + type: mk64:course_vtx + count: 48 + offset: 0x80bc + +d_course_dks_jungle_parkway_vertex_0x04009500: + symbol: d_course_dks_jungle_parkway_vertex_0x04009500 + type: mk64:course_vtx + count: 6 + offset: 0x8260 + +d_course_dks_jungle_parkway_vertex_0x04009560: + symbol: d_course_dks_jungle_parkway_vertex_0x04009560 + type: mk64:course_vtx + count: 39 + offset: 0x82b4 + +d_course_dks_jungle_parkway_vertex_0x04009710: + symbol: d_course_dks_jungle_parkway_vertex_0x04009710 + type: mk64:course_vtx + count: 48 + offset: 0x842e + +d_course_dks_jungle_parkway_vertex_0x040098F0: + symbol: d_course_dks_jungle_parkway_vertex_0x040098F0 + type: mk64:course_vtx + count: 24 + offset: 0x85d2 + +d_course_dks_jungle_parkway_vertex_0x04009A10: + symbol: d_course_dks_jungle_parkway_vertex_0x04009A10 + type: mk64:course_vtx + count: 50 + offset: 0x86ce + +d_course_dks_jungle_parkway_vertex_0x04009C10: + symbol: d_course_dks_jungle_parkway_vertex_0x04009C10 + type: mk64:course_vtx + count: 37 + offset: 0x888e + +d_course_dks_jungle_parkway_vertex_0x04009DA0: + symbol: d_course_dks_jungle_parkway_vertex_0x04009DA0 + type: mk64:course_vtx + count: 25 + offset: 0x89ec + +d_course_dks_jungle_parkway_vertex_0x04009ED0: + symbol: d_course_dks_jungle_parkway_vertex_0x04009ED0 + type: mk64:course_vtx + count: 21 + offset: 0x8af6 + +d_course_dks_jungle_parkway_vertex_0x04009FC0: + symbol: d_course_dks_jungle_parkway_vertex_0x04009FC0 + type: mk64:course_vtx + count: 32 + offset: 0x8bc8 + +d_course_dks_jungle_parkway_vertex_0x0400A100: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A100 + type: mk64:course_vtx + count: 18 + offset: 0x8ce0 + +d_course_dks_jungle_parkway_vertex_0x0400A1C0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A1C0 + type: mk64:course_vtx + count: 39 + offset: 0x8d88 + +d_course_dks_jungle_parkway_vertex_0x0400A370: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A370 + type: mk64:course_vtx + count: 20 + offset: 0x8f02 + +d_course_dks_jungle_parkway_vertex_0x0400A450: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A450 + type: mk64:course_vtx + count: 34 + offset: 0x8fc6 + +d_course_dks_jungle_parkway_vertex_0x0400A5B0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A5B0 + type: mk64:course_vtx + count: 32 + offset: 0x90fa + +d_course_dks_jungle_parkway_vertex_0x0400A6F0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A6F0 + type: mk64:course_vtx + count: 22 + offset: 0x9212 + +d_course_dks_jungle_parkway_vertex_0x0400A7F0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A7F0 + type: mk64:course_vtx + count: 20 + offset: 0x92f2 + +d_course_dks_jungle_parkway_vertex_0x0400A8D0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A8D0 + type: mk64:course_vtx + count: 18 + offset: 0x93b6 + +d_course_dks_jungle_parkway_vertex_0x0400A990: + symbol: d_course_dks_jungle_parkway_vertex_0x0400A990 + type: mk64:course_vtx + count: 38 + offset: 0x945e + +d_course_dks_jungle_parkway_vertex_0x0400AB30: + symbol: d_course_dks_jungle_parkway_vertex_0x0400AB30 + type: mk64:course_vtx + count: 48 + offset: 0x95ca + +d_course_dks_jungle_parkway_vertex_0x0400AD10: + symbol: d_course_dks_jungle_parkway_vertex_0x0400AD10 + type: mk64:course_vtx + count: 7 + offset: 0x976e + +d_course_dks_jungle_parkway_vertex_0x0400AD80: + symbol: d_course_dks_jungle_parkway_vertex_0x0400AD80 + type: mk64:course_vtx + count: 32 + offset: 0x97d0 + +d_course_dks_jungle_parkway_vertex_0x0400AEC0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400AEC0 + type: mk64:course_vtx + count: 17 + offset: 0x98e8 + +d_course_dks_jungle_parkway_vertex_0x0400AF70: + symbol: d_course_dks_jungle_parkway_vertex_0x0400AF70 + type: mk64:course_vtx + count: 8 + offset: 0x9982 + +d_course_dks_jungle_parkway_vertex_0x0400AFF0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400AFF0 + type: mk64:course_vtx + count: 8 + offset: 0x99f2 + +d_course_dks_jungle_parkway_vertex_0x0400B070: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B070 + type: mk64:course_vtx + count: 40 + offset: 0x9a62 + +d_course_dks_jungle_parkway_vertex_0x0400B230: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B230 + type: mk64:course_vtx + count: 24 + offset: 0x9bea + +d_course_dks_jungle_parkway_vertex_0x0400B350: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B350 + type: mk64:course_vtx + count: 22 + offset: 0x9ce6 + +d_course_dks_jungle_parkway_vertex_0x0400B450: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B450 + type: mk64:course_vtx + count: 8 + offset: 0x9dc6 + +d_course_dks_jungle_parkway_vertex_0x0400B4D0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B4D0 + type: mk64:course_vtx + count: 16 + offset: 0x9e36 + +d_course_dks_jungle_parkway_vertex_0x0400B570: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B570 + type: mk64:course_vtx + count: 8 + offset: 0x9ec2 + +d_course_dks_jungle_parkway_vertex_0x0400B5F0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B5F0 + type: mk64:course_vtx + count: 8 + offset: 0x9f32 + +d_course_dks_jungle_parkway_vertex_0x0400B670: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B670 + type: mk64:course_vtx + count: 4 + offset: 0x9fa2 + +d_course_dks_jungle_parkway_vertex_0x0400B6B0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B6B0 + type: mk64:course_vtx + count: 32 + offset: 0x9fda + +d_course_dks_jungle_parkway_vertex_0x0400B7F0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B7F0 + type: mk64:course_vtx + count: 39 + offset: 0xa0f2 + +d_course_dks_jungle_parkway_vertex_0x0400B9A0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400B9A0 + type: mk64:course_vtx + count: 21 + offset: 0xa26c + +d_course_dks_jungle_parkway_vertex_0x0400BA90: + symbol: d_course_dks_jungle_parkway_vertex_0x0400BA90 + type: mk64:course_vtx + count: 50 + offset: 0xa33e + +d_course_dks_jungle_parkway_vertex_0x0400BC90: + symbol: d_course_dks_jungle_parkway_vertex_0x0400BC90 + type: mk64:course_vtx + count: 19 + offset: 0xa4fe + +d_course_dks_jungle_parkway_vertex_0x0400BD60: + symbol: d_course_dks_jungle_parkway_vertex_0x0400BD60 + type: mk64:course_vtx + count: 24 + offset: 0xa5b4 + +d_course_dks_jungle_parkway_vertex_0x0400BE80: + symbol: d_course_dks_jungle_parkway_vertex_0x0400BE80 + type: mk64:course_vtx + count: 20 + offset: 0xa6b0 + +d_course_dks_jungle_parkway_vertex_0x0400BF60: + symbol: d_course_dks_jungle_parkway_vertex_0x0400BF60 + type: mk64:course_vtx + count: 18 + offset: 0xa774 + +d_course_dks_jungle_parkway_vertex_0x0400C020: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C020 + type: mk64:course_vtx + count: 20 + offset: 0xa81c + +d_course_dks_jungle_parkway_vertex_0x0400C100: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C100 + type: mk64:course_vtx + count: 18 + offset: 0xa8e0 + +d_course_dks_jungle_parkway_vertex_0x0400C1C0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C1C0 + type: mk64:course_vtx + count: 19 + offset: 0xa988 + +d_course_dks_jungle_parkway_vertex_0x0400C290: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C290 + type: mk64:course_vtx + count: 6 + offset: 0xaa3e + +d_course_dks_jungle_parkway_vertex_0x0400C2F0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C2F0 + type: mk64:course_vtx + count: 38 + offset: 0xaa92 + +d_course_dks_jungle_parkway_vertex_0x0400C490: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C490 + type: mk64:course_vtx + count: 23 + offset: 0xabfe + +d_course_dks_jungle_parkway_vertex_0x0400C5A0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C5A0 + type: mk64:course_vtx + count: 50 + offset: 0xacec + +d_course_dks_jungle_parkway_vertex_0x0400C7A0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C7A0 + type: mk64:course_vtx + count: 21 + offset: 0xaeac + +d_course_dks_jungle_parkway_vertex_0x0400C890: + symbol: d_course_dks_jungle_parkway_vertex_0x0400C890 + type: mk64:course_vtx + count: 35 + offset: 0xaf7e + +d_course_dks_jungle_parkway_vertex_0x0400CA00: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CA00 + type: mk64:course_vtx + count: 21 + offset: 0xb0c0 + +d_course_dks_jungle_parkway_vertex_0x0400CAF0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CAF0 + type: mk64:course_vtx + count: 7 + offset: 0xb192 + +d_course_dks_jungle_parkway_vertex_0x0400CB60: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CB60 + type: mk64:course_vtx + count: 9 + offset: 0xb1f4 + +d_course_dks_jungle_parkway_vertex_0x0400CBF0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CBF0 + type: mk64:course_vtx + count: 16 + offset: 0xb272 + +d_course_dks_jungle_parkway_vertex_0x0400CC90: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CC90 + type: mk64:course_vtx + count: 21 + offset: 0xb2fe + +d_course_dks_jungle_parkway_vertex_0x0400CD80: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CD80 + type: mk64:course_vtx + count: 16 + offset: 0xb3d0 + +d_course_dks_jungle_parkway_vertex_0x0400CE20: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CE20 + type: mk64:course_vtx + count: 7 + offset: 0xb45c + +d_course_dks_jungle_parkway_vertex_0x0400CE90: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CE90 + type: mk64:course_vtx + count: 18 + offset: 0xb4be + +d_course_dks_jungle_parkway_vertex_0x0400CF50: + symbol: d_course_dks_jungle_parkway_vertex_0x0400CF50 + type: mk64:course_vtx + count: 18 + offset: 0xb566 + +d_course_dks_jungle_parkway_vertex_0x0400D010: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D010 + type: mk64:course_vtx + count: 18 + offset: 0xb60e + +d_course_dks_jungle_parkway_vertex_0x0400D0D0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D0D0 + type: mk64:course_vtx + count: 49 + offset: 0xb6b6 + +d_course_dks_jungle_parkway_vertex_0x0400D2C0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D2C0 + type: mk64:course_vtx + count: 36 + offset: 0xb868 + +d_course_dks_jungle_parkway_vertex_0x0400D440: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D440 + type: mk64:course_vtx + count: 19 + offset: 0xb9b8 + +d_course_dks_jungle_parkway_vertex_0x0400D510: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D510 + type: mk64:course_vtx + count: 8 + offset: 0xba6e + +d_course_dks_jungle_parkway_vertex_0x0400D590: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D590 + type: mk64:course_vtx + count: 4 + offset: 0xbade + +d_course_dks_jungle_parkway_vertex_0x0400D5D0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D5D0 + type: mk64:course_vtx + count: 18 + offset: 0xbb16 + +d_course_dks_jungle_parkway_vertex_0x0400D690: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D690 + type: mk64:course_vtx + count: 4 + offset: 0xbbbe + +d_course_dks_jungle_parkway_vertex_0x0400D6D0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D6D0 + type: mk64:course_vtx + count: 16 + offset: 0xbbf6 + +d_course_dks_jungle_parkway_vertex_0x0400D770: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D770 + type: mk64:course_vtx + count: 8 + offset: 0xbc82 + +d_course_dks_jungle_parkway_vertex_0x0400D7F0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D7F0 + type: mk64:course_vtx + count: 49 + offset: 0xbcf2 + +d_course_dks_jungle_parkway_vertex_0x0400D9E0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400D9E0 + type: mk64:course_vtx + count: 16 + offset: 0xbea4 + +d_course_dks_jungle_parkway_vertex_0x0400DA80: + symbol: d_course_dks_jungle_parkway_vertex_0x0400DA80 + type: mk64:course_vtx + count: 22 + offset: 0xbf30 + +d_course_dks_jungle_parkway_vertex_0x0400DB80: + symbol: d_course_dks_jungle_parkway_vertex_0x0400DB80 + type: mk64:course_vtx + count: 49 + offset: 0xc010 + +d_course_dks_jungle_parkway_vertex_0x0400DD70: + symbol: d_course_dks_jungle_parkway_vertex_0x0400DD70 + type: mk64:course_vtx + count: 18 + offset: 0xc1c2 + +d_course_dks_jungle_parkway_vertex_0x0400DE30: + symbol: d_course_dks_jungle_parkway_vertex_0x0400DE30 + type: mk64:course_vtx + count: 37 + offset: 0xc26a + +d_course_dks_jungle_parkway_vertex_0x0400DFC0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400DFC0 + type: mk64:course_vtx + count: 16 + offset: 0xc3c8 + +d_course_dks_jungle_parkway_vertex_0x0400E060: + symbol: d_course_dks_jungle_parkway_vertex_0x0400E060 + type: mk64:course_vtx + count: 49 + offset: 0xc454 + +d_course_dks_jungle_parkway_vertex_0x0400E250: + symbol: d_course_dks_jungle_parkway_vertex_0x0400E250 + type: mk64:course_vtx + count: 3 + offset: 0xc606 + +d_course_dks_jungle_parkway_vertex_0x0400E280: + symbol: d_course_dks_jungle_parkway_vertex_0x0400E280 + type: mk64:course_vtx + count: 49 + offset: 0xc630 + +d_course_dks_jungle_parkway_vertex_0x0400E470: + symbol: d_course_dks_jungle_parkway_vertex_0x0400E470 + type: mk64:course_vtx + count: 23 + offset: 0xc7e2 + +d_course_dks_jungle_parkway_vertex_0x0400E580: + symbol: d_course_dks_jungle_parkway_vertex_0x0400E580 + type: mk64:course_vtx + count: 8 + offset: 0xc8d0 + +d_course_dks_jungle_parkway_vertex_0x0400E600: + symbol: d_course_dks_jungle_parkway_vertex_0x0400E600 + type: mk64:course_vtx + count: 32 + offset: 0xc940 + +d_course_dks_jungle_parkway_vertex_0x0400E740: + symbol: d_course_dks_jungle_parkway_vertex_0x0400E740 + type: mk64:course_vtx + count: 50 + offset: 0xca58 + +d_course_dks_jungle_parkway_vertex_0x0400E940: + symbol: d_course_dks_jungle_parkway_vertex_0x0400E940 + type: mk64:course_vtx + count: 50 + offset: 0xcc18 + +d_course_dks_jungle_parkway_vertex_0x0400EB40: + symbol: d_course_dks_jungle_parkway_vertex_0x0400EB40 + type: mk64:course_vtx + count: 50 + offset: 0xcdd8 + +d_course_dks_jungle_parkway_vertex_0x0400ED40: + symbol: d_course_dks_jungle_parkway_vertex_0x0400ED40 + type: mk64:course_vtx + count: 9 + offset: 0xcf98 + +d_course_dks_jungle_parkway_vertex_0x0400EDD0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400EDD0 + type: mk64:course_vtx + count: 50 + offset: 0xd016 + +d_course_dks_jungle_parkway_vertex_0x0400EFD0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400EFD0 + type: mk64:course_vtx + count: 50 + offset: 0xd1d6 + +d_course_dks_jungle_parkway_vertex_0x0400F1D0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400F1D0 + type: mk64:course_vtx + count: 48 + offset: 0xd396 + +d_course_dks_jungle_parkway_vertex_0x0400F3B0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400F3B0 + type: mk64:course_vtx + count: 49 + offset: 0xd53a + +d_course_dks_jungle_parkway_vertex_0x0400F5A0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400F5A0 + type: mk64:course_vtx + count: 50 + offset: 0xd6ec + +d_course_dks_jungle_parkway_vertex_0x0400F7A0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400F7A0 + type: mk64:course_vtx + count: 33 + offset: 0xd8ac + +d_course_dks_jungle_parkway_vertex_0x0400F8F0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400F8F0 + type: mk64:course_vtx + count: 49 + offset: 0xd9d2 + +d_course_dks_jungle_parkway_vertex_0x0400FAE0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400FAE0 + type: mk64:course_vtx + count: 50 + offset: 0xdb84 + +d_course_dks_jungle_parkway_vertex_0x0400FCE0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400FCE0 + type: mk64:course_vtx + count: 48 + offset: 0xdd44 + +d_course_dks_jungle_parkway_vertex_0x0400FEC0: + symbol: d_course_dks_jungle_parkway_vertex_0x0400FEC0 + type: mk64:course_vtx + count: 7 + offset: 0xdee8 + +d_course_dks_jungle_parkway_vertex_0x0400FF30: + symbol: d_course_dks_jungle_parkway_vertex_0x0400FF30 + type: mk64:course_vtx + count: 24 + offset: 0xdf4a + +d_course_dks_jungle_parkway_vertex_0x04010050: + symbol: d_course_dks_jungle_parkway_vertex_0x04010050 + type: mk64:course_vtx + count: 50 + offset: 0xe046 + +d_course_dks_jungle_parkway_vertex_0x04010250: + symbol: d_course_dks_jungle_parkway_vertex_0x04010250 + type: mk64:course_vtx + count: 50 + offset: 0xe206 + +d_course_dks_jungle_parkway_vertex_0x04010450: + symbol: d_course_dks_jungle_parkway_vertex_0x04010450 + type: mk64:course_vtx + count: 38 + offset: 0xe3c6 + +d_course_dks_jungle_parkway_vertex_0x040105F0: + symbol: d_course_dks_jungle_parkway_vertex_0x040105F0 + type: mk64:course_vtx + count: 48 + offset: 0xe532 + +d_course_dks_jungle_parkway_vertex_0x040107D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040107D0 + type: mk64:course_vtx + count: 50 + offset: 0xe6d6 + +d_course_dks_jungle_parkway_vertex_0x040109D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040109D0 + type: mk64:course_vtx + count: 4 + offset: 0xe896 + +d_course_dks_jungle_parkway_vertex_0x04010A10: + symbol: d_course_dks_jungle_parkway_vertex_0x04010A10 + type: mk64:course_vtx + count: 35 + offset: 0xe8ce + +d_course_dks_jungle_parkway_vertex_0x04010B80: + symbol: d_course_dks_jungle_parkway_vertex_0x04010B80 + type: mk64:course_vtx + count: 50 + offset: 0xea10 + +d_course_dks_jungle_parkway_vertex_0x04010D80: + symbol: d_course_dks_jungle_parkway_vertex_0x04010D80 + type: mk64:course_vtx + count: 50 + offset: 0xebd0 + +d_course_dks_jungle_parkway_vertex_0x04010F80: + symbol: d_course_dks_jungle_parkway_vertex_0x04010F80 + type: mk64:course_vtx + count: 8 + offset: 0xed90 + +d_course_dks_jungle_parkway_vertex_0x04011000: + symbol: d_course_dks_jungle_parkway_vertex_0x04011000 + type: mk64:course_vtx + count: 50 + offset: 0xee00 + +d_course_dks_jungle_parkway_vertex_0x04011200: + symbol: d_course_dks_jungle_parkway_vertex_0x04011200 + type: mk64:course_vtx + count: 22 + offset: 0xefc0 + +d_course_dks_jungle_parkway_vertex_0x04011300: + symbol: d_course_dks_jungle_parkway_vertex_0x04011300 + type: mk64:course_vtx + count: 36 + offset: 0xf0a0 + +d_course_dks_jungle_parkway_vertex_0x04011480: + symbol: d_course_dks_jungle_parkway_vertex_0x04011480 + type: mk64:course_vtx + count: 50 + offset: 0xf1f0 + +d_course_dks_jungle_parkway_vertex_0x04011680: + symbol: d_course_dks_jungle_parkway_vertex_0x04011680 + type: mk64:course_vtx + count: 48 + offset: 0xf3b0 + +d_course_dks_jungle_parkway_vertex_0x04011860: + symbol: d_course_dks_jungle_parkway_vertex_0x04011860 + type: mk64:course_vtx + count: 48 + offset: 0xf554 + +d_course_dks_jungle_parkway_vertex_0x04011A40: + symbol: d_course_dks_jungle_parkway_vertex_0x04011A40 + type: mk64:course_vtx + count: 50 + offset: 0xf6f8 + +d_course_dks_jungle_parkway_vertex_0x04011C40: + symbol: d_course_dks_jungle_parkway_vertex_0x04011C40 + type: mk64:course_vtx + count: 38 + offset: 0xf8b8 + +d_course_dks_jungle_parkway_vertex_0x04011DE0: + symbol: d_course_dks_jungle_parkway_vertex_0x04011DE0 + type: mk64:course_vtx + count: 50 + offset: 0xfa24 + +d_course_dks_jungle_parkway_vertex_0x04011FE0: + symbol: d_course_dks_jungle_parkway_vertex_0x04011FE0 + type: mk64:course_vtx + count: 36 + offset: 0xfbe4 + +d_course_dks_jungle_parkway_vertex_0x04012160: + symbol: d_course_dks_jungle_parkway_vertex_0x04012160 + type: mk64:course_vtx + count: 48 + offset: 0xfd34 + +d_course_dks_jungle_parkway_vertex_0x04012340: + symbol: d_course_dks_jungle_parkway_vertex_0x04012340 + type: mk64:course_vtx + count: 50 + offset: 0xfed8 + +d_course_dks_jungle_parkway_vertex_0x04012540: + symbol: d_course_dks_jungle_parkway_vertex_0x04012540 + type: mk64:course_vtx + count: 36 + offset: 0x10098 + +d_course_dks_jungle_parkway_vertex_0x040126C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040126C0 + type: mk64:course_vtx + count: 36 + offset: 0x101e8 + +d_course_dks_jungle_parkway_vertex_0x04012840: + symbol: d_course_dks_jungle_parkway_vertex_0x04012840 + type: mk64:course_vtx + count: 8 + offset: 0x10338 + +d_course_dks_jungle_parkway_vertex_0x040128C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040128C0 + type: mk64:course_vtx + count: 36 + offset: 0x103a8 + +d_course_dks_jungle_parkway_vertex_0x04012A40: + symbol: d_course_dks_jungle_parkway_vertex_0x04012A40 + type: mk64:course_vtx + count: 34 + offset: 0x104f8 + +d_course_dks_jungle_parkway_vertex_0x04012BA0: + symbol: d_course_dks_jungle_parkway_vertex_0x04012BA0 + type: mk64:course_vtx + count: 50 + offset: 0x1062c + +d_course_dks_jungle_parkway_vertex_0x04012DA0: + symbol: d_course_dks_jungle_parkway_vertex_0x04012DA0 + type: mk64:course_vtx + count: 48 + offset: 0x107ec + +d_course_dks_jungle_parkway_vertex_0x04012F80: + symbol: d_course_dks_jungle_parkway_vertex_0x04012F80 + type: mk64:course_vtx + count: 50 + offset: 0x10990 + +d_course_dks_jungle_parkway_vertex_0x04013180: + symbol: d_course_dks_jungle_parkway_vertex_0x04013180 + type: mk64:course_vtx + count: 32 + offset: 0x10b50 + +d_course_dks_jungle_parkway_vertex_0x040132C0: + symbol: d_course_dks_jungle_parkway_vertex_0x040132C0 + type: mk64:course_vtx + count: 19 + offset: 0x10c68 + +d_course_dks_jungle_parkway_vertex_0x04013390: + symbol: d_course_dks_jungle_parkway_vertex_0x04013390 + type: mk64:course_vtx + count: 50 + offset: 0x10d1e + +d_course_dks_jungle_parkway_vertex_0x04013590: + symbol: d_course_dks_jungle_parkway_vertex_0x04013590 + type: mk64:course_vtx + count: 50 + offset: 0x10ede + +d_course_dks_jungle_parkway_vertex_0x04013790: + symbol: d_course_dks_jungle_parkway_vertex_0x04013790 + type: mk64:course_vtx + count: 36 + offset: 0x1109e + +d_course_dks_jungle_parkway_vertex_0x04013910: + symbol: d_course_dks_jungle_parkway_vertex_0x04013910 + type: mk64:course_vtx + count: 48 + offset: 0x111ee + +d_course_dks_jungle_parkway_vertex_0x04013AF0: + symbol: d_course_dks_jungle_parkway_vertex_0x04013AF0 + type: mk64:course_vtx + count: 50 + offset: 0x11392 + +d_course_dks_jungle_parkway_vertex_0x04013CF0: + symbol: d_course_dks_jungle_parkway_vertex_0x04013CF0 + type: mk64:course_vtx + count: 50 + offset: 0x11552 + +d_course_dks_jungle_parkway_vertex_0x04013EF0: + symbol: d_course_dks_jungle_parkway_vertex_0x04013EF0 + type: mk64:course_vtx + count: 50 + offset: 0x11712 + +d_course_dks_jungle_parkway_vertex_0x040140F0: + symbol: d_course_dks_jungle_parkway_vertex_0x040140F0 + type: mk64:course_vtx + count: 48 + offset: 0x118d2 + +d_course_dks_jungle_parkway_vertex_0x040142D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040142D0 + type: mk64:course_vtx + count: 22 + offset: 0x11a76 + +d_course_dks_jungle_parkway_vertex_0x040143D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040143D0 + type: mk64:course_vtx + count: 48 + offset: 0x11b56 + +d_course_dks_jungle_parkway_vertex_0x040145B0: + symbol: d_course_dks_jungle_parkway_vertex_0x040145B0 + type: mk64:course_vtx + count: 50 + offset: 0x11cfa + +d_course_dks_jungle_parkway_vertex_0x040147B0: + symbol: d_course_dks_jungle_parkway_vertex_0x040147B0 + type: mk64:course_vtx + count: 22 + offset: 0x11eba + +d_course_dks_jungle_parkway_vertex_0x040148B0: + symbol: d_course_dks_jungle_parkway_vertex_0x040148B0 + type: mk64:course_vtx + count: 18 + offset: 0x11f9a + +d_course_dks_jungle_parkway_vertex_0x04014970: + symbol: d_course_dks_jungle_parkway_vertex_0x04014970 + type: mk64:course_vtx + count: 50 + offset: 0x12042 + +d_course_dks_jungle_parkway_vertex_0x04014B70: + symbol: d_course_dks_jungle_parkway_vertex_0x04014B70 + type: mk64:course_vtx + count: 22 + offset: 0x12202 + +d_course_dks_jungle_parkway_vertex_0x04014C70: + symbol: d_course_dks_jungle_parkway_vertex_0x04014C70 + type: mk64:course_vtx + count: 18 + offset: 0x122e2 + +d_course_dks_jungle_parkway_vertex_0x04014D30: + symbol: d_course_dks_jungle_parkway_vertex_0x04014D30 + type: mk64:course_vtx + count: 38 + offset: 0x1238a + +d_course_dks_jungle_parkway_vertex_0x04014ED0: + symbol: d_course_dks_jungle_parkway_vertex_0x04014ED0 + type: mk64:course_vtx + count: 18 + offset: 0x124f6 + +d_course_dks_jungle_parkway_vertex_0x04014F90: + symbol: d_course_dks_jungle_parkway_vertex_0x04014F90 + type: mk64:course_vtx + count: 18 + offset: 0x1259e + +d_course_dks_jungle_parkway_vertex_0x04015050: + symbol: d_course_dks_jungle_parkway_vertex_0x04015050 + type: mk64:course_vtx + count: 4 + offset: 0x12646 + +d_course_dks_jungle_parkway_vertex_0x04015090: + symbol: d_course_dks_jungle_parkway_vertex_0x04015090 + type: mk64:course_vtx + count: 4 + offset: 0x1267e + +d_course_dks_jungle_parkway_vertex_0x040150D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040150D0 + type: mk64:course_vtx + count: 22 + offset: 0x126b6 + +d_course_dks_jungle_parkway_vertex_0x040151D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040151D0 + type: mk64:course_vtx + count: 22 + offset: 0x12796 + +d_course_dks_jungle_parkway_vertex_0x040152D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040152D0 + type: mk64:course_vtx + count: 22 + offset: 0x12876 + +d_course_dks_jungle_parkway_vertex_0x040153D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040153D0 + type: mk64:course_vtx + count: 22 + offset: 0x12956 + +d_course_dks_jungle_parkway_vertex_0x040154D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040154D0 + type: mk64:course_vtx + count: 18 + offset: 0x12a36 + +d_course_dks_jungle_parkway_vertex_0x04015590: + symbol: d_course_dks_jungle_parkway_vertex_0x04015590 + type: mk64:course_vtx + count: 18 + offset: 0x12ade + +d_course_dks_jungle_parkway_vertex_0x04015650: + symbol: d_course_dks_jungle_parkway_vertex_0x04015650 + type: mk64:course_vtx + count: 32 + offset: 0x12b86 + +d_course_dks_jungle_parkway_vertex_0x04015790: + symbol: d_course_dks_jungle_parkway_vertex_0x04015790 + type: mk64:course_vtx + count: 32 + offset: 0x12c9e + +d_course_dks_jungle_parkway_vertex_0x040158D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040158D0 + type: mk64:course_vtx + count: 8 + offset: 0x12db6 + +d_course_dks_jungle_parkway_vertex_0x04015950: + symbol: d_course_dks_jungle_parkway_vertex_0x04015950 + type: mk64:course_vtx + count: 8 + offset: 0x12e26 + +d_course_dks_jungle_parkway_vertex_0x040159D0: + symbol: d_course_dks_jungle_parkway_vertex_0x040159D0 + type: mk64:course_vtx + count: 18 + offset: 0x12e96 + +d_course_dks_jungle_parkway_vertex_0x04015A90: + symbol: d_course_dks_jungle_parkway_vertex_0x04015A90 + type: mk64:course_vtx + count: 18 + offset: 0x12f3e + +d_course_dks_jungle_parkway_vertex_0x04015B50: + symbol: d_course_dks_jungle_parkway_vertex_0x04015B50 + type: mk64:course_vtx + count: 4 + offset: 0x12fe6 + +d_course_dks_jungle_parkway_vertex_0x04015B90: + symbol: d_course_dks_jungle_parkway_vertex_0x04015B90 + type: mk64:course_vtx + count: 50 + offset: 0x1301e + +d_course_dks_jungle_parkway_vertex_0x04015D90: + symbol: d_course_dks_jungle_parkway_vertex_0x04015D90 + type: mk64:course_vtx + count: 34 + offset: 0x131de + +d_course_dks_jungle_parkway_vertex_0x04015EF0: + symbol: d_course_dks_jungle_parkway_vertex_0x04015EF0 + type: mk64:course_vtx + count: 16 + offset: 0x13312 + +d_course_dks_jungle_parkway_vertex_0x04015F90: + symbol: d_course_dks_jungle_parkway_vertex_0x04015F90 + type: mk64:course_vtx + count: 48 + offset: 0x1339e + +d_course_dks_jungle_parkway_vertex_0x04016170: + symbol: d_course_dks_jungle_parkway_vertex_0x04016170 + type: mk64:course_vtx + count: 36 + offset: 0x13542 diff --git a/yamls/us/models/tracks/double_deck/double_deck_data.yml b/yamls/us/models/tracks/double_deck/double_deck_data.yml new file mode 100644 index 000000000..d5e67f20f --- /dev/null +++ b/yamls/us/models/tracks/double_deck/double_deck_data.yml @@ -0,0 +1,28 @@ +:config: + segments: + - [0x06, 0x8858A0] + - [0x07, 0x800000] + manual_segments: + - [0x7000000, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_0"] + - [0x7000210, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_210"] + - [0x70003A0, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_3A0"] + - [0x70003B8, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_3B8"] + - [0x7000580, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_580"] + - [0x7000708, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_708"] + - [0x7000720, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_720"] + - [0x7000738, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_738"] + - [0x7000748, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_748"] + - [0x7000750, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_750"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_double_deck_dl: + symbol: d_course_double_deck_dl + type: gfx + offset: 0x0 + otr_mode: index diff --git a/yamls/us/models/tracks/double_deck/double_deck_displaylists.yml b/yamls/us/models/tracks/double_deck/double_deck_displaylists.yml new file mode 100644 index 000000000..de0622721 --- /dev/null +++ b/yamls/us/models/tracks/double_deck/double_deck_displaylists.yml @@ -0,0 +1,91 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x9562F4 + no_compression: true + segments: + - [0x0E, 0x9562F4] + manual_segments: + # Segment 5 + - [0x5000000, "textures/other_textures/gray_cobblestone"] + - [0x5000800, "textures/other_textures/texture_642978"] + # Segment 7 + - [0x7000000, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_0"] + - [0x7000210, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_210"] + - [0x70003A0, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_3A0"] + - [0x70003B8, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_3B8"] + - [0x7000580, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_580"] + - [0x7000708, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_708"] + - [0x7000720, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_720"] + - [0x7000738, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_738"] + - [0x7000748, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_748"] + - [0x7000750, "models/tracks/double_deck/double_deck_displaylists/d_course_double_deck_packed_dl_750"] + # Segment 4 + - [0x4000000, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000000"] + - [0x4000200, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000200"] + - [0x4000400, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000400"] + - [0x4000600, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000600"] + - [0x4000800, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000800"] + - [0x4000a00, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000A00"] + - [0x4000c00, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000C00"] + - [0x4000e00, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04000E00"] + - [0x4001000, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001000"] + - [0x4001200, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001200"] + - [0x4001250, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001250"] + - [0x4001450, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001450"] + - [0x4001650, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001650"] + - [0x4001850, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001850"] + - [0x4001a50, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001A50"] + - [0x4001c50, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001C50"] + - [0x4001c80, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001C80"] + - [0x4001e80, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04001E80"] + - [0x4002080, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04002080"] + - [0x4002280, "models/tracks/double_deck/double_deck_vertices/d_course_double_deck_vertex_0x04002280"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_double_deck_packed_dl_0: + symbol: d_course_double_deck_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_double_deck_packed_dl_210: + symbol: d_course_double_deck_packed_dl_210 + type: MK64:PACKED_GFX + offset: 0x10D +d_course_double_deck_packed_dl_3A0: + symbol: d_course_double_deck_packed_dl_3A0 + type: MK64:PACKED_GFX + offset: 0x1CA +d_course_double_deck_packed_dl_3B8: + symbol: d_course_double_deck_packed_dl_3B8 + type: MK64:PACKED_GFX + offset: 0x1D1 +d_course_double_deck_packed_dl_580: + symbol: d_course_double_deck_packed_dl_580 + type: MK64:PACKED_GFX + offset: 0x2B3 +d_course_double_deck_packed_dl_708: + symbol: d_course_double_deck_packed_dl_708 + type: MK64:PACKED_GFX + offset: 0x35F +d_course_double_deck_packed_dl_720: + symbol: d_course_double_deck_packed_dl_720 + type: MK64:PACKED_GFX + offset: 0x366 +d_course_double_deck_packed_dl_738: + symbol: d_course_double_deck_packed_dl_738 + type: MK64:PACKED_GFX + offset: 0x36D +d_course_double_deck_packed_dl_748: + symbol: d_course_double_deck_packed_dl_748 + type: MK64:PACKED_GFX + offset: 0x371 +d_course_double_deck_packed_dl_750: + symbol: d_course_double_deck_packed_dl_750 + type: MK64:PACKED_GFX + offset: 0x372 + diff --git a/yamls/us/models/tracks/double_deck/double_deck_vertices.yml b/yamls/us/models/tracks/double_deck/double_deck_vertices.yml new file mode 100644 index 000000000..8fedec14f --- /dev/null +++ b/yamls/us/models/tracks/double_deck/double_deck_vertices.yml @@ -0,0 +1,129 @@ +:config: + segments: + - [0x0F, 0x955620] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_double_deck_vertex_0x04000000: + symbol: d_course_double_deck_vertex_0x04000000 + type: mk64:course_vtx + count: 50 + offset: 0x0 + +d_course_double_deck_vertex_0x04000200: + symbol: d_course_double_deck_vertex_0x04000200 + type: mk64:course_vtx + count: 50 + offset: 0x1c0 + +d_course_double_deck_vertex_0x04000400: + symbol: d_course_double_deck_vertex_0x04000400 + type: mk64:course_vtx + count: 50 + offset: 0x380 + +d_course_double_deck_vertex_0x04000600: + symbol: d_course_double_deck_vertex_0x04000600 + type: mk64:course_vtx + count: 50 + offset: 0x540 + +d_course_double_deck_vertex_0x04000800: + symbol: d_course_double_deck_vertex_0x04000800 + type: mk64:course_vtx + count: 50 + offset: 0x700 + +d_course_double_deck_vertex_0x04000A00: + symbol: d_course_double_deck_vertex_0x04000A00 + type: mk64:course_vtx + count: 50 + offset: 0x8c0 + +d_course_double_deck_vertex_0x04000C00: + symbol: d_course_double_deck_vertex_0x04000C00 + type: mk64:course_vtx + count: 50 + offset: 0xa80 + +d_course_double_deck_vertex_0x04000E00: + symbol: d_course_double_deck_vertex_0x04000E00 + type: mk64:course_vtx + count: 50 + offset: 0xc40 + +d_course_double_deck_vertex_0x04001000: + symbol: d_course_double_deck_vertex_0x04001000 + type: mk64:course_vtx + count: 50 + offset: 0xe00 + +d_course_double_deck_vertex_0x04001200: + symbol: d_course_double_deck_vertex_0x04001200 + type: mk64:course_vtx + count: 5 + offset: 0xfc0 + +d_course_double_deck_vertex_0x04001250: + symbol: d_course_double_deck_vertex_0x04001250 + type: mk64:course_vtx + count: 50 + offset: 0x1006 + +d_course_double_deck_vertex_0x04001450: + symbol: d_course_double_deck_vertex_0x04001450 + type: mk64:course_vtx + count: 50 + offset: 0x11c6 + +d_course_double_deck_vertex_0x04001650: + symbol: d_course_double_deck_vertex_0x04001650 + type: mk64:course_vtx + count: 50 + offset: 0x1386 + +d_course_double_deck_vertex_0x04001850: + symbol: d_course_double_deck_vertex_0x04001850 + type: mk64:course_vtx + count: 50 + offset: 0x1546 + +d_course_double_deck_vertex_0x04001A50: + symbol: d_course_double_deck_vertex_0x04001A50 + type: mk64:course_vtx + count: 50 + offset: 0x1706 + +d_course_double_deck_vertex_0x04001C50: + symbol: d_course_double_deck_vertex_0x04001C50 + type: mk64:course_vtx + count: 3 + offset: 0x18c6 + +d_course_double_deck_vertex_0x04001C80: + symbol: d_course_double_deck_vertex_0x04001C80 + type: mk64:course_vtx + count: 50 + offset: 0x18f0 + +d_course_double_deck_vertex_0x04001E80: + symbol: d_course_double_deck_vertex_0x04001E80 + type: mk64:course_vtx + count: 50 + offset: 0x1ab0 + +d_course_double_deck_vertex_0x04002080: + symbol: d_course_double_deck_vertex_0x04002080 + type: mk64:course_vtx + count: 50 + offset: 0x1c70 + +d_course_double_deck_vertex_0x04002280: + symbol: d_course_double_deck_vertex_0x04002280 + type: mk64:course_vtx + count: 3 + offset: 0x1e30 \ No newline at end of file diff --git a/yamls/us/models/tracks/frappe_snowland/frappe_snowland_data.yml b/yamls/us/models/tracks/frappe_snowland/frappe_snowland_data.yml new file mode 100644 index 000000000..f7d412955 --- /dev/null +++ b/yamls/us/models/tracks/frappe_snowland/frappe_snowland_data.yml @@ -0,0 +1,455 @@ +:config: + segments: + - [0x06, 0x83F740] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/frappe_snowland/frappe_snowland_data.yml" + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureFrappeSnowlandTreeLeft"] + - [0x03009800, "textures/other_textures/gTextureFrappeSnowlandTreeRight"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_6684F8"] + - [0x05000800, "textures/other_textures/texture_66CA98"] + - [0x05001000, "textures/other_textures/texture_66EBF0"] + - [0x05001800, "textures/other_textures/texture_675434"] + - [0x05002000, "textures/other_textures/texture_677F04"] + - [0x05002800, "textures/other_textures/texture_678118"] + - [0x05003000, "textures/other_textures/texture_679258"] + - [0x05004000, "textures/other_textures/texture_67973C"] + # Segment 7 + - [0x7000000, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_0"] + - [0x7000088, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_88"] + - [0x7000098, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_98"] + - [0x70000A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_A8"] + - [0x70000B8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B8"] + - [0x70001A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1A0"] + - [0x7000250, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_250"] + - [0x7000370, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_370"] + - [0x7000520, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_520"] + - [0x7000548, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_548"] + - [0x7000808, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_808"] + - [0x7000818, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_818"] + - [0x7000878, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_878"] + - [0x70008E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_8E0"] + - [0x7000960, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_960"] + - [0x70009D8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_9D8"] + - [0x7000A48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_A48"] + - [0x7000AB0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_AB0"] + - [0x7000B30, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B30"] + - [0x7000B70, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B70"] + - [0x7000BF0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_BF0"] + - [0x7000CC0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_CC0"] + - [0x7000D28, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_D28"] + - [0x7000DA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_DA0"] + - [0x7000E18, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_E18"] + - [0x7000E98, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_E98"] + - [0x7000F08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_F08"] + - [0x7000FA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_FA0"] + - [0x7001018, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1018"] + - [0x7001080, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1080"] + - [0x70010E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_10E0"] + - [0x7001150, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1150"] + - [0x70011B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_11B0"] + - [0x7001218, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1218"] + - [0x7001288, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1288"] + - [0x70012E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_12E8"] + - [0x7001360, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1360"] + - [0x70013F0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_13F0"] + - [0x7001458, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1458"] + - [0x70014C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_14C8"] + - [0x7001538, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1538"] + - [0x70015B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_15B0"] + - [0x7001628, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1628"] + - [0x7001698, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1698"] + - [0x7001708, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1708"] + - [0x7001748, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1748"] + - [0x7001860, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1860"] + - [0x7001910, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1910"] + - [0x7001A08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1A08"] + - [0x7001B20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1B20"] + - [0x7001BE8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1BE8"] + - [0x7001C98, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1C98"] + - [0x7001D60, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1D60"] + - [0x7001E40, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1E40"] + - [0x7001F10, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1F10"] + - [0x7002018, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2018"] + - [0x70020C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_20C8"] + - [0x7002160, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2160"] + - [0x7002210, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2210"] + - [0x70022C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_22C8"] + - [0x7002350, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2350"] + - [0x7002418, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2418"] + - [0x70024A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_24A0"] + - [0x7002548, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2548"] + - [0x70025D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_25D0"] + - [0x7002670, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2670"] + - [0x70026A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_26A8"] + - [0x7002710, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2710"] + - [0x70027A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_27A8"] + - [0x7002840, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2840"] + - [0x70028D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_28D0"] + - [0x7002960, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2960"] + - [0x70029E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_29E8"] + - [0x7002A90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2A90"] + - [0x7002AD0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2AD0"] + - [0x7002B38, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2B38"] + - [0x7002B48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2B48"] + - [0x7003118, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3118"] + - [0x7003128, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3128"] + - [0x7003358, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3358"] + - [0x70035A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_35A8"] + - [0x7003758, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3758"] + - [0x7003B20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3B20"] + - [0x7003B48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3B48"] + - [0x7003BD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3BD8"] + - [0x7003CD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3CD8"] + - [0x7003D58, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3D58"] + - [0x7003DD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3DD8"] + - [0x7003E68, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3E68"] + - [0x7003EF8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3EF8"] + - [0x7003F80, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3F80"] + - [0x7004020, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4020"] + - [0x70040B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_40B0"] + - [0x7004120, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4120"] + - [0x7004188, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4188"] + - [0x7004208, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4208"] + - [0x7004288, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4288"] + - [0x7004300, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4300"] + - [0x7004378, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4378"] + - [0x70043E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_43E8"] + - [0x7004490, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4490"] + - [0x7004520, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4520"] + - [0x7004590, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4590"] + - [0x7004608, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4608"] + - [0x7004680, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4680"] + - [0x7004700, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4700"] + - [0x7004778, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4778"] + - [0x70047F8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_47F8"] + - [0x7004880, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4880"] + - [0x70048C0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_48C0"] + - [0x70049E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_49E0"] + - [0x7004BA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4BA0"] + - [0x7004D18, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4D18"] + - [0x7004E40, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4E40"] + - [0x7004F00, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4F00"] + - [0x7004FF8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4FF8"] + - [0x70050D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_50D0"] + - [0x70051C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_51C8"] + - [0x7005330, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5330"] + - [0x70054A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_54A0"] + - [0x70055D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_55D0"] + - [0x7005740, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5740"] + - [0x70058C0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_58C0"] + - [0x7005988, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5988"] + - [0x7005A20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5A20"] + - [0x7005AC0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5AC0"] + - [0x7005B58, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5B58"] + - [0x7005BE0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5BE0"] + - [0x7005C70, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5C70"] + - [0x7005D90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5D90"] + - [0x7005E08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5E08"] + - [0x7005EA8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5EA8"] + - [0x7005F90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5F90"] + - [0x7006088, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6088"] + - [0x70061A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_61A0"] + - [0x7006268, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6268"] + - [0x70062F8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_62F8"] + - [0x70063D8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_63D8"] + - [0x70065E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_65E0"] + - [0x70065F0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_65F0"] + - [0x7006638, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6638"] + - [0x7006650, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6650"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_frappe_snowland_dl_0: + symbol: d_course_frappe_snowland_dl_0 + type: gfx + offset: 0x0 +d_course_frappe_snowland_dl_C8: + symbol: d_course_frappe_snowland_dl_C8 + type: gfx + offset: 0xC8 +d_course_frappe_snowland_dl_1B8: + symbol: d_course_frappe_snowland_dl_1B8 + type: gfx + offset: 0x1B8 +d_course_frappe_snowland_dl_298: + symbol: d_course_frappe_snowland_dl_298 + type: gfx + offset: 0x298 +d_course_frappe_snowland_dl_398: + symbol: d_course_frappe_snowland_dl_398 + type: gfx + offset: 0x398 +d_course_frappe_snowland_dl_458: + symbol: d_course_frappe_snowland_dl_458 + type: gfx + offset: 0x458 +d_course_frappe_snowland_dl_540: + symbol: d_course_frappe_snowland_dl_540 + type: gfx + offset: 0x540 +d_course_frappe_snowland_dl_610: + symbol: d_course_frappe_snowland_dl_610 + type: gfx + offset: 0x610 +d_course_frappe_snowland_dl_728: + symbol: d_course_frappe_snowland_dl_728 + type: gfx + offset: 0x728 +d_course_frappe_snowland_dl_7C8: + symbol: d_course_frappe_snowland_dl_7C8 + type: gfx + offset: 0x7C8 +d_course_frappe_snowland_dl_8C0: + symbol: d_course_frappe_snowland_dl_8C0 + type: gfx + offset: 0x8C0 +d_course_frappe_snowland_dl_940: + symbol: d_course_frappe_snowland_dl_940 + type: gfx + offset: 0x940 +d_course_frappe_snowland_dl_A38: + symbol: d_course_frappe_snowland_dl_A38 + type: gfx + offset: 0xA38 +d_course_frappe_snowland_dl_AA8: + symbol: d_course_frappe_snowland_dl_AA8 + type: gfx + offset: 0xAA8 +d_course_frappe_snowland_dl_BA8: + symbol: d_course_frappe_snowland_dl_BA8 + type: gfx + offset: 0xBA8 +d_course_frappe_snowland_dl_C38: + symbol: d_course_frappe_snowland_dl_C38 + type: gfx + offset: 0xC38 +d_course_frappe_snowland_dl_D28: + symbol: d_course_frappe_snowland_dl_D28 + type: gfx + offset: 0xD28 +d_course_frappe_snowland_dl_DA8: + symbol: d_course_frappe_snowland_dl_DA8 + type: gfx + offset: 0xDA8 +d_course_frappe_snowland_dl_EC8: + symbol: d_course_frappe_snowland_dl_EC8 + type: gfx + offset: 0xEC8 +d_course_frappe_snowland_dl_F90: + symbol: d_course_frappe_snowland_dl_F90 + type: gfx + offset: 0xF90 +d_course_frappe_snowland_dl_1068: + symbol: d_course_frappe_snowland_dl_1068 + type: gfx + offset: 0x1068 +d_course_frappe_snowland_dl_1118: + symbol: d_course_frappe_snowland_dl_1118 + type: gfx + offset: 0x1118 +d_course_frappe_snowland_dl_1240: + symbol: d_course_frappe_snowland_dl_1240 + type: gfx + offset: 0x1240 +d_course_frappe_snowland_dl_1360: + symbol: d_course_frappe_snowland_dl_1360 + type: gfx + offset: 0x1360 +d_course_frappe_snowland_dl_1430: + symbol: d_course_frappe_snowland_dl_1430 + type: gfx + offset: 0x1430 +d_course_frappe_snowland_dl_14E0: + symbol: d_course_frappe_snowland_dl_14E0 + type: gfx + offset: 0x14E0 +d_course_frappe_snowland_dl_1610: + symbol: d_course_frappe_snowland_dl_1610 + type: gfx + offset: 0x1610 +d_course_frappe_snowland_dl_1768: + symbol: d_course_frappe_snowland_dl_1768 + type: gfx + offset: 0x1768 +d_course_frappe_snowland_dl_1818: + symbol: d_course_frappe_snowland_dl_1818 + type: gfx + offset: 0x1818 +d_course_frappe_snowland_dl_1930: + symbol: d_course_frappe_snowland_dl_1930 + type: gfx + offset: 0x1930 +d_course_frappe_snowland_dl_1A50: + symbol: d_course_frappe_snowland_dl_1A50 + type: gfx + offset: 0x1A50 +d_course_frappe_snowland_dl_1BC8: + symbol: d_course_frappe_snowland_dl_1BC8 + type: gfx + offset: 0x1BC8 +d_course_frappe_snowland_dl_1C80: + symbol: d_course_frappe_snowland_dl_1C80 + type: gfx + offset: 0x1C80 +d_course_frappe_snowland_dl_1DE8: + symbol: d_course_frappe_snowland_dl_1DE8 + type: gfx + offset: 0x1DE8 +d_course_frappe_snowland_dl_1E98: + symbol: d_course_frappe_snowland_dl_1E98 + type: gfx + offset: 0x1E98 +d_course_frappe_snowland_dl_2000: + symbol: d_course_frappe_snowland_dl_2000 + type: gfx + offset: 0x2000 +d_course_frappe_snowland_dl_20B0: + symbol: d_course_frappe_snowland_dl_20B0 + type: gfx + offset: 0x20B0 +d_course_frappe_snowland_dl_2240: + symbol: d_course_frappe_snowland_dl_2240 + type: gfx + offset: 0x2240 +d_course_frappe_snowland_dl_2308: + symbol: d_course_frappe_snowland_dl_2308 + type: gfx + offset: 0x2308 +d_course_frappe_snowland_dl_2448: + symbol: d_course_frappe_snowland_dl_2448 + type: gfx + offset: 0x2448 +d_course_frappe_snowland_dl_2588: + symbol: d_course_frappe_snowland_dl_2588 + type: gfx + offset: 0x2588 +d_course_frappe_snowland_dl_2618: + symbol: d_course_frappe_snowland_dl_2618 + type: gfx + offset: 0x2618 +d_course_frappe_snowland_dl_2698: + symbol: d_course_frappe_snowland_dl_2698 + type: gfx + offset: 0x2698 +d_course_frappe_snowland_dl_2700: + symbol: d_course_frappe_snowland_dl_2700 + type: gfx + offset: 0x2700 +d_course_frappe_snowland_dl_2780: + symbol: d_course_frappe_snowland_dl_2780 + type: gfx + offset: 0x2780 +d_course_frappe_snowland_dl_27F8: + symbol: d_course_frappe_snowland_dl_27F8 + type: gfx + offset: 0x27F8 +d_course_frappe_snowland_dl_2860: + symbol: d_course_frappe_snowland_dl_2860 + type: gfx + offset: 0x2860 +d_course_frappe_snowland_dl_28A8: + symbol: d_course_frappe_snowland_dl_28A8 + type: gfx + offset: 0x28A8 +d_course_frappe_snowland_dl_2930: + symbol: d_course_frappe_snowland_dl_2930 + type: gfx + offset: 0x2930 +d_course_frappe_snowland_dl_29B0: + symbol: d_course_frappe_snowland_dl_29B0 + type: gfx + offset: 0x29B0 +d_course_frappe_snowland_dl_2A40: + symbol: d_course_frappe_snowland_dl_2A40 + type: gfx + offset: 0x2A40 +d_course_frappe_snowland_dl_2AB0: + symbol: d_course_frappe_snowland_dl_2AB0 + type: gfx + offset: 0x2AB0 +d_course_frappe_snowland_dl_2B48: + symbol: d_course_frappe_snowland_dl_2B48 + type: gfx + offset: 0x2B48 +d_course_frappe_snowland_dl_2BA0: + symbol: d_course_frappe_snowland_dl_2BA0 + type: gfx + offset: 0x2BA0 +d_course_frappe_snowland_dl_2C00: + symbol: d_course_frappe_snowland_dl_2C00 + type: gfx + offset: 0x2C00 +d_course_frappe_snowland_dl_2C50: + symbol: d_course_frappe_snowland_dl_2C50 + type: gfx + offset: 0x2C50 +d_course_frappe_snowland_dl_2CB8: + symbol: d_course_frappe_snowland_dl_2CB8 + type: gfx + offset: 0x2CB8 +d_course_frappe_snowland_dl_2D20: + symbol: d_course_frappe_snowland_dl_2D20 + type: gfx + offset: 0x2D20 +d_course_frappe_snowland_dl_2D78: + symbol: d_course_frappe_snowland_dl_2D78 + type: gfx + offset: 0x2D78 +d_course_frappe_snowland_dl_2DD0: + symbol: d_course_frappe_snowland_dl_2DD0 + type: gfx + offset: 0x2DD0 +d_course_frappe_snowland_dl_2E40: + symbol: d_course_frappe_snowland_dl_2E40 + type: gfx + offset: 0x2E40 +d_course_frappe_snowland_dl_2F40: + symbol: d_course_frappe_snowland_dl_2F40 + type: gfx + offset: 0x2F40 +d_course_frappe_snowland_dl_3000: + symbol: d_course_frappe_snowland_dl_3000 + type: gfx + offset: 0x3000 +d_course_frappe_snowland_dl_30D0: + symbol: d_course_frappe_snowland_dl_30D0 + type: gfx + offset: 0x30D0 +d_course_frappe_snowland_dl_3198: + symbol: d_course_frappe_snowland_dl_3198 + type: gfx + offset: 0x3198 +d_course_frappe_snowland_dl_3270: + symbol: d_course_frappe_snowland_dl_3270 + type: gfx + offset: 0x3270 +d_course_frappe_snowland_dl_3328: + symbol: d_course_frappe_snowland_dl_3328 + type: gfx + offset: 0x3328 +d_course_frappe_snowland_dl_33E0: + symbol: d_course_frappe_snowland_dl_33E0 + type: gfx + offset: 0x33E0 +d_frappe_snowland_tree: + symbol: d_frappe_snowland_tree + type: vtx + offset: 0x7520 + count: 8 +d_course_frappe_snowland_dl_tree: + symbol: d_course_frappe_snowland_dl_tree + type: gfx + offset: 0x75A0 +d_course_frappe_snowland_dl_76A0: + symbol: d_course_frappe_snowland_dl_76A0 + type: gfx + offset: 0x76A0 diff --git a/yamls/us/models/tracks/frappe_snowland/frappe_snowland_displaylists.yml b/yamls/us/models/tracks/frappe_snowland/frappe_snowland_displaylists.yml new file mode 100644 index 000000000..2530135ff --- /dev/null +++ b/yamls/us/models/tracks/frappe_snowland/frappe_snowland_displaylists.yml @@ -0,0 +1,978 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x8D6624 + no_compression: true + segments: + - [0x0E, 0x8D6624] + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureFrappeSnowlandTreeLeft"] + - [0x03009800, "textures/other_textures/gTextureFrappeSnowlandTreeRight"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_6684F8"] + - [0x05000800, "textures/other_textures/texture_66CA98"] + - [0x05001000, "textures/other_textures/texture_66EBF0"] + - [0x05001800, "textures/other_textures/texture_675434"] + - [0x05002000, "textures/other_textures/texture_677F04"] + - [0x05002800, "textures/other_textures/texture_678118"] + - [0x05003000, "textures/other_textures/texture_679258"] + - [0x05004000, "textures/other_textures/texture_67973C"] + # Segment 7 + - [0x7000000, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_0"] + - [0x7000088, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_88"] + - [0x7000098, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_98"] + - [0x70000A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_A8"] + - [0x70000B8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B8"] + - [0x70001A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1A0"] + - [0x7000250, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_250"] + - [0x7000370, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_370"] + - [0x7000520, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_520"] + - [0x7000548, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_548"] + - [0x7000808, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_808"] + - [0x7000818, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_818"] + - [0x7000878, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_878"] + - [0x70008E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_8E0"] + - [0x7000960, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_960"] + - [0x70009D8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_9D8"] + - [0x7000A48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_A48"] + - [0x7000AB0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_AB0"] + - [0x7000B30, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B30"] + - [0x7000B70, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B70"] + - [0x7000BF0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_BF0"] + - [0x7000CC0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_CC0"] + - [0x7000D28, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_D28"] + - [0x7000DA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_DA0"] + - [0x7000E18, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_E18"] + - [0x7000E98, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_E98"] + - [0x7000F08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_F08"] + - [0x7000FA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_FA0"] + - [0x7001018, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1018"] + - [0x7001080, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1080"] + - [0x70010E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_10E0"] + - [0x7001150, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1150"] + - [0x70011B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_11B0"] + - [0x7001218, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1218"] + - [0x7001288, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1288"] + - [0x70012E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_12E8"] + - [0x7001360, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1360"] + - [0x70013F0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_13F0"] + - [0x7001458, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1458"] + - [0x70014C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_14C8"] + - [0x7001538, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1538"] + - [0x70015B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_15B0"] + - [0x7001628, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1628"] + - [0x7001698, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1698"] + - [0x7001708, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1708"] + - [0x7001748, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1748"] + - [0x7001860, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1860"] + - [0x7001910, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1910"] + - [0x7001A08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1A08"] + - [0x7001B20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1B20"] + - [0x7001BE8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1BE8"] + - [0x7001C98, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1C98"] + - [0x7001D60, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1D60"] + - [0x7001E40, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1E40"] + - [0x7001F10, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1F10"] + - [0x7002018, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2018"] + - [0x70020C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_20C8"] + - [0x7002160, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2160"] + - [0x7002210, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2210"] + - [0x70022C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_22C8"] + - [0x7002350, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2350"] + - [0x7002418, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2418"] + - [0x70024A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_24A0"] + - [0x7002548, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2548"] + - [0x70025D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_25D0"] + - [0x7002670, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2670"] + - [0x70026A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_26A8"] + - [0x7002710, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2710"] + - [0x70027A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_27A8"] + - [0x7002840, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2840"] + - [0x70028D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_28D0"] + - [0x7002960, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2960"] + - [0x70029E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_29E8"] + - [0x7002A90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2A90"] + - [0x7002AD0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2AD0"] + - [0x7002B38, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2B38"] + - [0x7002B48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2B48"] + - [0x7003118, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3118"] + - [0x7003128, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3128"] + - [0x7003358, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3358"] + - [0x70035A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_35A8"] + - [0x7003758, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3758"] + - [0x7003B20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3B20"] + - [0x7003B48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3B48"] + - [0x7003BD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3BD8"] + - [0x7003CD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3CD8"] + - [0x7003D58, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3D58"] + - [0x7003DD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3DD8"] + - [0x7003E68, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3E68"] + - [0x7003EF8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3EF8"] + - [0x7003F80, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3F80"] + - [0x7004020, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4020"] + - [0x70040B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_40B0"] + - [0x7004120, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4120"] + - [0x7004188, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4188"] + - [0x7004208, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4208"] + - [0x7004288, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4288"] + - [0x7004300, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4300"] + - [0x7004378, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4378"] + - [0x70043E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_43E8"] + - [0x7004490, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4490"] + - [0x7004520, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4520"] + - [0x7004590, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4590"] + - [0x7004608, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4608"] + - [0x7004680, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4680"] + - [0x7004700, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4700"] + - [0x7004778, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4778"] + - [0x70047F8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_47F8"] + - [0x7004880, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4880"] + - [0x70048C0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_48C0"] + - [0x70049E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_49E0"] + - [0x7004BA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4BA0"] + - [0x7004D18, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4D18"] + - [0x7004E40, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4E40"] + - [0x7004F00, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4F00"] + - [0x7004FF8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4FF8"] + - [0x70050D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_50D0"] + - [0x70051C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_51C8"] + - [0x7005330, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5330"] + - [0x70054A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_54A0"] + - [0x70055D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_55D0"] + - [0x7005740, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5740"] + - [0x70058C0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_58C0"] + - [0x7005988, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5988"] + - [0x7005A20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5A20"] + - [0x7005AC0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5AC0"] + - [0x7005B58, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5B58"] + - [0x7005BE0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5BE0"] + - [0x7005C70, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5C70"] + - [0x7005D90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5D90"] + - [0x7005E08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5E08"] + - [0x7005EA8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5EA8"] + - [0x7005F90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5F90"] + - [0x7006088, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6088"] + - [0x70061A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_61A0"] + - [0x7006268, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6268"] + - [0x70062F8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_62F8"] + - [0x70063D8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_63D8"] + - [0x70065E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_65E0"] + - [0x70065F0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_65F0"] + - [0x7006638, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6638"] + - [0x7006650, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6650"] + # Segment 4 + - [0x4000000, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000000"] + - [0x4000040, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000040"] + - [0x4000240, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000240"] + - [0x4000430, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000430"] + - [0x4000570, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000570"] + - [0x4000770, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000770"] + - [0x40008e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040008E0"] + - [0x4000ae0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000AE0"] + - [0x4000cc0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000CC0"] + - [0x4000eb0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000EB0"] + - [0x4000fd0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04000FD0"] + - [0x40011c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040011C0"] + - [0x40013c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040013C0"] + - [0x40015c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040015C0"] + - [0x40017c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040017C0"] + - [0x40019a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040019A0"] + - [0x4001b90, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04001B90"] + - [0x4001c50, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04001C50"] + - [0x4001e40, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04001E40"] + - [0x4002020, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002020"] + - [0x4002200, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002200"] + - [0x40023e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040023E0"] + - [0x40025c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040025C0"] + - [0x40027a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040027A0"] + - [0x4002990, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002990"] + - [0x4002b90, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002B90"] + - [0x4002d80, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002D80"] + - [0x4002f80, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04002F80"] + - [0x4003170, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003170"] + - [0x4003230, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003230"] + - [0x4003260, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003260"] + - [0x40032d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040032D0"] + - [0x4003430, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003430"] + - [0x4003530, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003530"] + - [0x4003610, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003610"] + - [0x4003690, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003690"] + - [0x40037d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040037D0"] + - [0x4003900, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003900"] + - [0x4003940, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003940"] + - [0x4003a50, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003A50"] + - [0x4003ad0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003AD0"] + - [0x4003bd0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003BD0"] + - [0x4003cd0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003CD0"] + - [0x4003e00, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003E00"] + - [0x4003ec0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003EC0"] + - [0x4003f00, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003F00"] + - [0x4003f40, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04003F40"] + - [0x4004040, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004040"] + - [0x40040c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040040C0"] + - [0x4004100, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004100"] + - [0x40041c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040041C0"] + - [0x4004200, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004200"] + - [0x4004280, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004280"] + - [0x4004340, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004340"] + - [0x4004380, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004380"] + - [0x4004460, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004460"] + - [0x40044c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040044C0"] + - [0x4004540, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004540"] + - [0x40045c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040045C0"] + - [0x4004670, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004670"] + - [0x4004720, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004720"] + - [0x4004790, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004790"] + - [0x4004810, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004810"] + - [0x4004a10, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004A10"] + - [0x4004aa0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004AA0"] + - [0x4004bf0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004BF0"] + - [0x4004df0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004DF0"] + - [0x4004e20, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04004E20"] + - [0x4005020, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005020"] + - [0x4005110, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005110"] + - [0x40052d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040052D0"] + - [0x4005450, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005450"] + - [0x40055f0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040055F0"] + - [0x40057e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040057E0"] + - [0x4005990, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005990"] + - [0x4005b90, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005B90"] + - [0x4005c10, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005C10"] + - [0x4005d20, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005D20"] + - [0x4005e10, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005E10"] + - [0x4005f60, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04005F60"] + - [0x40060c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040060C0"] + - [0x4006180, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006180"] + - [0x4006360, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006360"] + - [0x4006420, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006420"] + - [0x4006520, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006520"] + - [0x40065f0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040065F0"] + - [0x4006640, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006640"] + - [0x4006750, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006750"] + - [0x4006890, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006890"] + - [0x40069a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040069A0"] + - [0x4006ad0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006AD0"] + - [0x4006bd0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006BD0"] + - [0x4006d60, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006D60"] + - [0x4006da0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006DA0"] + - [0x4006f80, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04006F80"] + - [0x4007160, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007160"] + - [0x4007350, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007350"] + - [0x4007530, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007530"] + - [0x4007720, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007720"] + - [0x4007900, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007900"] + - [0x4007ae0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007AE0"] + - [0x4007ce0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007CE0"] + - [0x4007ec0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04007EC0"] + - [0x40080a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040080A0"] + - [0x4008280, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008280"] + - [0x4008480, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008480"] + - [0x4008680, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008680"] + - [0x4008860, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008860"] + - [0x4008a60, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008A60"] + - [0x4008c60, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008C60"] + - [0x4008e60, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04008E60"] + - [0x4009040, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009040"] + - [0x4009230, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009230"] + - [0x4009410, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009410"] + - [0x40095f0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040095F0"] + - [0x40097d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040097D0"] + - [0x40099b0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040099B0"] + - [0x4009bb0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009BB0"] + - [0x4009d90, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009D90"] + - [0x4009f80, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04009F80"] + - [0x400a0e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A0E0"] + - [0x400a2d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A2D0"] + - [0x400a4c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A4C0"] + - [0x400a6c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A6C0"] + - [0x400a8a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400A8A0"] + - [0x400aa90, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400AA90"] + - [0x400ac80, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400AC80"] + - [0x400ae80, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400AE80"] + - [0x400b000, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B000"] + - [0x400b200, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B200"] + - [0x400b400, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B400"] + - [0x400b600, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B600"] + - [0x400b800, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B800"] + - [0x400b9f0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400B9F0"] + - [0x400bbf0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400BBF0"] + - [0x400bdd0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400BDD0"] + - [0x400bfc0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400BFC0"] + - [0x400c1a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C1A0"] + - [0x400c3a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C3A0"] + - [0x400c590, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C590"] + - [0x400c780, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C780"] + - [0x400c960, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C960"] + - [0x400c9f0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400C9F0"] + - [0x400cbf0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400CBF0"] + - [0x400cdf0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400CDF0"] + - [0x400cfe0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400CFE0"] + - [0x400d1d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D1D0"] + - [0x400d3d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D3D0"] + - [0x400d5d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D5D0"] + - [0x400d7d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D7D0"] + - [0x400d9d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400D9D0"] + - [0x400dbb0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400DBB0"] + - [0x400ddb0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400DDB0"] + - [0x400df90, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400DF90"] + - [0x400e180, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E180"] + - [0x400e380, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E380"] + - [0x400e4e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E4E0"] + - [0x400e6a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E6A0"] + - [0x400e6e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E6E0"] + - [0x400e8e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E8E0"] + - [0x400e960, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400E960"] + - [0x400eaa0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400EAA0"] + - [0x400ebe0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400EBE0"] + - [0x400eda0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400EDA0"] + - [0x400ef60, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400EF60"] + - [0x400f0e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F0E0"] + - [0x400f120, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F120"] + - [0x400f1a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F1A0"] + - [0x400f360, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F360"] + - [0x400f420, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F420"] + - [0x400f4a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F4A0"] + - [0x400f5e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F5E0"] + - [0x400f720, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F720"] + - [0x400f820, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F820"] + - [0x400f920, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F920"] + - [0x400f9e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400F9E0"] + - [0x400fbe0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FBE0"] + - [0x400fc20, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FC20"] + - [0x400fcd0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FCD0"] + - [0x400fdd0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FDD0"] + - [0x400feb0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FEB0"] + - [0x400fff0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x0400FFF0"] + - [0x40100f0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040100F0"] + - [0x4010230, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010230"] + - [0x40103a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040103A0"] + - [0x40105a0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040105A0"] + - [0x4010770, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010770"] + - [0x4010970, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010970"] + - [0x4010b70, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010B70"] + - [0x4010d10, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010D10"] + - [0x4010f00, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04010F00"] + - [0x40110e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040110E0"] + - [0x40112e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040112E0"] + - [0x40114e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040114E0"] + - [0x40116d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040116D0"] + - [0x4011850, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011850"] + - [0x4011a50, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011A50"] + - [0x4011b60, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011B60"] + - [0x4011d50, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011D50"] + - [0x4011dc0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011DC0"] + - [0x4011fc0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04011FC0"] + - [0x40120c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040120C0"] + - [0x40122b0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040122B0"] + - [0x40124b0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040124B0"] + - [0x40125d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040125D0"] + - [0x40127d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040127D0"] + - [0x40129b0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040129B0"] + - [0x4012a50, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04012A50"] + - [0x4012c50, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04012C50"] + - [0x4012e50, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04012E50"] + - [0x4012e90, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04012E90"] + - [0x4013070, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013070"] + - [0x4013270, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013270"] + - [0x40132e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040132E0"] + - [0x40134d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040134D0"] + - [0x40136d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040136D0"] + - [0x40137e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040137E0"] + - [0x4013980, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013980"] + - [0x4013ae0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013AE0"] + - [0x4013c70, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013C70"] + - [0x4013dc0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013DC0"] + - [0x4013f20, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04013F20"] + - [0x4014070, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014070"] + - [0x4014270, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014270"] + - [0x40143d0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040143D0"] + - [0x4014490, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014490"] + - [0x40145e0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040145E0"] + - [0x40147c0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040147C0"] + - [0x4014850, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014850"] + - [0x4014a50, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014A50"] + - [0x4014b70, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014B70"] + - [0x4014d60, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014D60"] + - [0x4014e90, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04014E90"] + - [0x4015070, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015070"] + - [0x40150f0, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x040150F0"] + - [0x4015210, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015210"] + - [0x4015410, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015410"] + - [0x4015610, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015610"] + - [0x4015810, "models/tracks/frappe_snowland/frappe_snowland_vertices/d_course_frappe_snowland_vertex_0x04015810"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_frappe_snowland_packed_dl_0: + symbol: d_course_frappe_snowland_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_frappe_snowland_packed_dl_88: + symbol: d_course_frappe_snowland_packed_dl_88 + type: MK64:PACKED_GFX + offset: 0x16 +d_course_frappe_snowland_packed_dl_98: + symbol: d_course_frappe_snowland_packed_dl_98 + type: MK64:PACKED_GFX + offset: 0x1A +d_course_frappe_snowland_packed_dl_A8: + symbol: d_course_frappe_snowland_packed_dl_A8 + type: MK64:PACKED_GFX + offset: 0x1E +d_course_frappe_snowland_packed_dl_B8: + symbol: d_course_frappe_snowland_packed_dl_B8 + type: MK64:PACKED_GFX + offset: 0x22 +d_course_frappe_snowland_packed_dl_1A0: + symbol: d_course_frappe_snowland_packed_dl_1A0 + type: MK64:PACKED_GFX + offset: 0x7E +d_course_frappe_snowland_packed_dl_250: + symbol: d_course_frappe_snowland_packed_dl_250 + type: MK64:PACKED_GFX + offset: 0xBD +d_course_frappe_snowland_packed_dl_370: + symbol: d_course_frappe_snowland_packed_dl_370 + type: MK64:PACKED_GFX + offset: 0x138 +d_course_frappe_snowland_packed_dl_520: + symbol: d_course_frappe_snowland_packed_dl_520 + type: MK64:PACKED_GFX + offset: 0x207 +d_course_frappe_snowland_packed_dl_548: + symbol: d_course_frappe_snowland_packed_dl_548 + type: MK64:PACKED_GFX + offset: 0x214 +d_course_frappe_snowland_packed_dl_808: + symbol: d_course_frappe_snowland_packed_dl_808 + type: MK64:PACKED_GFX + offset: 0x37D +d_course_frappe_snowland_packed_dl_818: + symbol: d_course_frappe_snowland_packed_dl_818 + type: MK64:PACKED_GFX + offset: 0x381 +d_course_frappe_snowland_packed_dl_878: + symbol: d_course_frappe_snowland_packed_dl_878 + type: MK64:PACKED_GFX + offset: 0x390 +d_course_frappe_snowland_packed_dl_8E0: + symbol: d_course_frappe_snowland_packed_dl_8E0 + type: MK64:PACKED_GFX + offset: 0x3A4 +d_course_frappe_snowland_packed_dl_960: + symbol: d_course_frappe_snowland_packed_dl_960 + type: MK64:PACKED_GFX + offset: 0x3C9 +d_course_frappe_snowland_packed_dl_9D8: + symbol: d_course_frappe_snowland_packed_dl_9D8 + type: MK64:PACKED_GFX + offset: 0x3E9 +d_course_frappe_snowland_packed_dl_A48: + symbol: d_course_frappe_snowland_packed_dl_A48 + type: MK64:PACKED_GFX + offset: 0x404 +d_course_frappe_snowland_packed_dl_AB0: + symbol: d_course_frappe_snowland_packed_dl_AB0 + type: MK64:PACKED_GFX + offset: 0x41A +d_course_frappe_snowland_packed_dl_B30: + symbol: d_course_frappe_snowland_packed_dl_B30 + type: MK64:PACKED_GFX + offset: 0x43F +d_course_frappe_snowland_packed_dl_B70: + symbol: d_course_frappe_snowland_packed_dl_B70 + type: MK64:PACKED_GFX + offset: 0x455 +d_course_frappe_snowland_packed_dl_BF0: + symbol: d_course_frappe_snowland_packed_dl_BF0 + type: MK64:PACKED_GFX + offset: 0x478 +d_course_frappe_snowland_packed_dl_CC0: + symbol: d_course_frappe_snowland_packed_dl_CC0 + type: MK64:PACKED_GFX + offset: 0x4AA +d_course_frappe_snowland_packed_dl_D28: + symbol: d_course_frappe_snowland_packed_dl_D28 + type: MK64:PACKED_GFX + offset: 0x4C0 +d_course_frappe_snowland_packed_dl_DA0: + symbol: d_course_frappe_snowland_packed_dl_DA0 + type: MK64:PACKED_GFX + offset: 0x4E0 +d_course_frappe_snowland_packed_dl_E18: + symbol: d_course_frappe_snowland_packed_dl_E18 + type: MK64:PACKED_GFX + offset: 0x500 +d_course_frappe_snowland_packed_dl_E98: + symbol: d_course_frappe_snowland_packed_dl_E98 + type: MK64:PACKED_GFX + offset: 0x523 +d_course_frappe_snowland_packed_dl_F08: + symbol: d_course_frappe_snowland_packed_dl_F08 + type: MK64:PACKED_GFX + offset: 0x53E +d_course_frappe_snowland_packed_dl_FA0: + symbol: d_course_frappe_snowland_packed_dl_FA0 + type: MK64:PACKED_GFX + offset: 0x55B +d_course_frappe_snowland_packed_dl_1018: + symbol: d_course_frappe_snowland_packed_dl_1018 + type: MK64:PACKED_GFX + offset: 0x57B +d_course_frappe_snowland_packed_dl_1080: + symbol: d_course_frappe_snowland_packed_dl_1080 + type: MK64:PACKED_GFX + offset: 0x591 +d_course_frappe_snowland_packed_dl_10E0: + symbol: d_course_frappe_snowland_packed_dl_10E0 + type: MK64:PACKED_GFX + offset: 0x5A2 +d_course_frappe_snowland_packed_dl_1150: + symbol: d_course_frappe_snowland_packed_dl_1150 + type: MK64:PACKED_GFX + offset: 0x5BD +d_course_frappe_snowland_packed_dl_11B0: + symbol: d_course_frappe_snowland_packed_dl_11B0 + type: MK64:PACKED_GFX + offset: 0x5CE +d_course_frappe_snowland_packed_dl_1218: + symbol: d_course_frappe_snowland_packed_dl_1218 + type: MK64:PACKED_GFX + offset: 0x5E4 +d_course_frappe_snowland_packed_dl_1288: + symbol: d_course_frappe_snowland_packed_dl_1288 + type: MK64:PACKED_GFX + offset: 0x5FF +d_course_frappe_snowland_packed_dl_12E8: + symbol: d_course_frappe_snowland_packed_dl_12E8 + type: MK64:PACKED_GFX + offset: 0x610 +d_course_frappe_snowland_packed_dl_1360: + symbol: d_course_frappe_snowland_packed_dl_1360 + type: MK64:PACKED_GFX + offset: 0x630 +d_course_frappe_snowland_packed_dl_13F0: + symbol: d_course_frappe_snowland_packed_dl_13F0 + type: MK64:PACKED_GFX + offset: 0x664 +d_course_frappe_snowland_packed_dl_1458: + symbol: d_course_frappe_snowland_packed_dl_1458 + type: MK64:PACKED_GFX + offset: 0x67A +d_course_frappe_snowland_packed_dl_14C8: + symbol: d_course_frappe_snowland_packed_dl_14C8 + type: MK64:PACKED_GFX + offset: 0x695 +d_course_frappe_snowland_packed_dl_1538: + symbol: d_course_frappe_snowland_packed_dl_1538 + type: MK64:PACKED_GFX + offset: 0x6B0 +d_course_frappe_snowland_packed_dl_15B0: + symbol: d_course_frappe_snowland_packed_dl_15B0 + type: MK64:PACKED_GFX + offset: 0x6CE +d_course_frappe_snowland_packed_dl_1628: + symbol: d_course_frappe_snowland_packed_dl_1628 + type: MK64:PACKED_GFX + offset: 0x6EC +d_course_frappe_snowland_packed_dl_1698: + symbol: d_course_frappe_snowland_packed_dl_1698 + type: MK64:PACKED_GFX + offset: 0x705 +d_course_frappe_snowland_packed_dl_1708: + symbol: d_course_frappe_snowland_packed_dl_1708 + type: MK64:PACKED_GFX + offset: 0x720 +d_course_frappe_snowland_packed_dl_1748: + symbol: d_course_frappe_snowland_packed_dl_1748 + type: MK64:PACKED_GFX + offset: 0x736 +d_course_frappe_snowland_packed_dl_1860: + symbol: d_course_frappe_snowland_packed_dl_1860 + type: MK64:PACKED_GFX + offset: 0x7B6 +d_course_frappe_snowland_packed_dl_1910: + symbol: d_course_frappe_snowland_packed_dl_1910 + type: MK64:PACKED_GFX + offset: 0x7F9 +d_course_frappe_snowland_packed_dl_1A08: + symbol: d_course_frappe_snowland_packed_dl_1A08 + type: MK64:PACKED_GFX + offset: 0x863 +d_course_frappe_snowland_packed_dl_1B20: + symbol: d_course_frappe_snowland_packed_dl_1B20 + type: MK64:PACKED_GFX + offset: 0x8E3 +d_course_frappe_snowland_packed_dl_1BE8: + symbol: d_course_frappe_snowland_packed_dl_1BE8 + type: MK64:PACKED_GFX + offset: 0x935 +d_course_frappe_snowland_packed_dl_1C98: + symbol: d_course_frappe_snowland_packed_dl_1C98 + type: MK64:PACKED_GFX + offset: 0x978 +d_course_frappe_snowland_packed_dl_1D60: + symbol: d_course_frappe_snowland_packed_dl_1D60 + type: MK64:PACKED_GFX + offset: 0x9CA +d_course_frappe_snowland_packed_dl_1E40: + symbol: d_course_frappe_snowland_packed_dl_1E40 + type: MK64:PACKED_GFX + offset: 0xA29 +d_course_frappe_snowland_packed_dl_1F10: + symbol: d_course_frappe_snowland_packed_dl_1F10 + type: MK64:PACKED_GFX + offset: 0xA80 +d_course_frappe_snowland_packed_dl_2018: + symbol: d_course_frappe_snowland_packed_dl_2018 + type: MK64:PACKED_GFX + offset: 0xAF4 +d_course_frappe_snowland_packed_dl_20C8: + symbol: d_course_frappe_snowland_packed_dl_20C8 + type: MK64:PACKED_GFX + offset: 0xB35 +d_course_frappe_snowland_packed_dl_2160: + symbol: d_course_frappe_snowland_packed_dl_2160 + type: MK64:PACKED_GFX + offset: 0xB69 +d_course_frappe_snowland_packed_dl_2210: + symbol: d_course_frappe_snowland_packed_dl_2210 + type: MK64:PACKED_GFX + offset: 0xBAA +d_course_frappe_snowland_packed_dl_22C8: + symbol: d_course_frappe_snowland_packed_dl_22C8 + type: MK64:PACKED_GFX + offset: 0xBF0 +d_course_frappe_snowland_packed_dl_2350: + symbol: d_course_frappe_snowland_packed_dl_2350 + type: MK64:PACKED_GFX + offset: 0xC18 +d_course_frappe_snowland_packed_dl_2418: + symbol: d_course_frappe_snowland_packed_dl_2418 + type: MK64:PACKED_GFX + offset: 0xC68 +d_course_frappe_snowland_packed_dl_24A0: + symbol: d_course_frappe_snowland_packed_dl_24A0 + type: MK64:PACKED_GFX + offset: 0xC92 +d_course_frappe_snowland_packed_dl_2548: + symbol: d_course_frappe_snowland_packed_dl_2548 + type: MK64:PACKED_GFX + offset: 0xCCE +d_course_frappe_snowland_packed_dl_25D0: + symbol: d_course_frappe_snowland_packed_dl_25D0 + type: MK64:PACKED_GFX + offset: 0xCF6 +d_course_frappe_snowland_packed_dl_2670: + symbol: d_course_frappe_snowland_packed_dl_2670 + type: MK64:PACKED_GFX + offset: 0xD30 +d_course_frappe_snowland_packed_dl_26A8: + symbol: d_course_frappe_snowland_packed_dl_26A8 + type: MK64:PACKED_GFX + offset: 0xD43 +d_course_frappe_snowland_packed_dl_2710: + symbol: d_course_frappe_snowland_packed_dl_2710 + type: MK64:PACKED_GFX + offset: 0xD57 +d_course_frappe_snowland_packed_dl_27A8: + symbol: d_course_frappe_snowland_packed_dl_27A8 + type: MK64:PACKED_GFX + offset: 0xD89 +d_course_frappe_snowland_packed_dl_2840: + symbol: d_course_frappe_snowland_packed_dl_2840 + type: MK64:PACKED_GFX + offset: 0xDBD +d_course_frappe_snowland_packed_dl_28D0: + symbol: d_course_frappe_snowland_packed_dl_28D0 + type: MK64:PACKED_GFX + offset: 0xDEA +d_course_frappe_snowland_packed_dl_2960: + symbol: d_course_frappe_snowland_packed_dl_2960 + type: MK64:PACKED_GFX + offset: 0xE17 +d_course_frappe_snowland_packed_dl_29E8: + symbol: d_course_frappe_snowland_packed_dl_29E8 + type: MK64:PACKED_GFX + offset: 0xE41 +d_course_frappe_snowland_packed_dl_2A90: + symbol: d_course_frappe_snowland_packed_dl_2A90 + type: MK64:PACKED_GFX + offset: 0xE7D +d_course_frappe_snowland_packed_dl_2AD0: + symbol: d_course_frappe_snowland_packed_dl_2AD0 + type: MK64:PACKED_GFX + offset: 0xE93 +d_course_frappe_snowland_packed_dl_2B38: + symbol: d_course_frappe_snowland_packed_dl_2B38 + type: MK64:PACKED_GFX + offset: 0xEA5 +d_course_frappe_snowland_packed_dl_2B48: + symbol: d_course_frappe_snowland_packed_dl_2B48 + type: MK64:PACKED_GFX + offset: 0xEA9 +d_course_frappe_snowland_packed_dl_3118: + symbol: d_course_frappe_snowland_packed_dl_3118 + type: MK64:PACKED_GFX + offset: 0x11D0 +d_course_frappe_snowland_packed_dl_3128: + symbol: d_course_frappe_snowland_packed_dl_3128 + type: MK64:PACKED_GFX + offset: 0x11D4 +d_course_frappe_snowland_packed_dl_3358: + symbol: d_course_frappe_snowland_packed_dl_3358 + type: MK64:PACKED_GFX + offset: 0x12F1 +d_course_frappe_snowland_packed_dl_35A8: + symbol: d_course_frappe_snowland_packed_dl_35A8 + type: MK64:PACKED_GFX + offset: 0x1422 +d_course_frappe_snowland_packed_dl_3758: + symbol: d_course_frappe_snowland_packed_dl_3758 + type: MK64:PACKED_GFX + offset: 0x14F3 +d_course_frappe_snowland_packed_dl_3B20: + symbol: d_course_frappe_snowland_packed_dl_3B20 + type: MK64:PACKED_GFX + offset: 0x1709 +d_course_frappe_snowland_packed_dl_3B48: + symbol: d_course_frappe_snowland_packed_dl_3B48 + type: MK64:PACKED_GFX + offset: 0x1716 +d_course_frappe_snowland_packed_dl_3BD8: + symbol: d_course_frappe_snowland_packed_dl_3BD8 + type: MK64:PACKED_GFX + offset: 0x1745 +d_course_frappe_snowland_packed_dl_3CD8: + symbol: d_course_frappe_snowland_packed_dl_3CD8 + type: MK64:PACKED_GFX + offset: 0x1795 +d_course_frappe_snowland_packed_dl_3D58: + symbol: d_course_frappe_snowland_packed_dl_3D58 + type: MK64:PACKED_GFX + offset: 0x17BA +d_course_frappe_snowland_packed_dl_3DD8: + symbol: d_course_frappe_snowland_packed_dl_3DD8 + type: MK64:PACKED_GFX + offset: 0x17DF +d_course_frappe_snowland_packed_dl_3E68: + symbol: d_course_frappe_snowland_packed_dl_3E68 + type: MK64:PACKED_GFX + offset: 0x180E +d_course_frappe_snowland_packed_dl_3EF8: + symbol: d_course_frappe_snowland_packed_dl_3EF8 + type: MK64:PACKED_GFX + offset: 0x183D +d_course_frappe_snowland_packed_dl_3F80: + symbol: d_course_frappe_snowland_packed_dl_3F80 + type: MK64:PACKED_GFX + offset: 0x1867 +d_course_frappe_snowland_packed_dl_4020: + symbol: d_course_frappe_snowland_packed_dl_4020 + type: MK64:PACKED_GFX + offset: 0x1889 +d_course_frappe_snowland_packed_dl_40B0: + symbol: d_course_frappe_snowland_packed_dl_40B0 + type: MK64:PACKED_GFX + offset: 0x18B8 +d_course_frappe_snowland_packed_dl_4120: + symbol: d_course_frappe_snowland_packed_dl_4120 + type: MK64:PACKED_GFX + offset: 0x18D3 +d_course_frappe_snowland_packed_dl_4188: + symbol: d_course_frappe_snowland_packed_dl_4188 + type: MK64:PACKED_GFX + offset: 0x18E9 +d_course_frappe_snowland_packed_dl_4208: + symbol: d_course_frappe_snowland_packed_dl_4208 + type: MK64:PACKED_GFX + offset: 0x190E +d_course_frappe_snowland_packed_dl_4288: + symbol: d_course_frappe_snowland_packed_dl_4288 + type: MK64:PACKED_GFX + offset: 0x1933 +d_course_frappe_snowland_packed_dl_4300: + symbol: d_course_frappe_snowland_packed_dl_4300 + type: MK64:PACKED_GFX + offset: 0x1953 +d_course_frappe_snowland_packed_dl_4378: + symbol: d_course_frappe_snowland_packed_dl_4378 + type: MK64:PACKED_GFX + offset: 0x1973 +d_course_frappe_snowland_packed_dl_43E8: + symbol: d_course_frappe_snowland_packed_dl_43E8 + type: MK64:PACKED_GFX + offset: 0x198E +d_course_frappe_snowland_packed_dl_4490: + symbol: d_course_frappe_snowland_packed_dl_4490 + type: MK64:PACKED_GFX + offset: 0x19CA +d_course_frappe_snowland_packed_dl_4520: + symbol: d_course_frappe_snowland_packed_dl_4520 + type: MK64:PACKED_GFX + offset: 0x19FE +d_course_frappe_snowland_packed_dl_4590: + symbol: d_course_frappe_snowland_packed_dl_4590 + type: MK64:PACKED_GFX + offset: 0x1A17 +d_course_frappe_snowland_packed_dl_4608: + symbol: d_course_frappe_snowland_packed_dl_4608 + type: MK64:PACKED_GFX + offset: 0x1A37 +d_course_frappe_snowland_packed_dl_4680: + symbol: d_course_frappe_snowland_packed_dl_4680 + type: MK64:PACKED_GFX + offset: 0x1A57 +d_course_frappe_snowland_packed_dl_4700: + symbol: d_course_frappe_snowland_packed_dl_4700 + type: MK64:PACKED_GFX + offset: 0x1A7C +d_course_frappe_snowland_packed_dl_4778: + symbol: d_course_frappe_snowland_packed_dl_4778 + type: MK64:PACKED_GFX + offset: 0x1A9C +d_course_frappe_snowland_packed_dl_47F8: + symbol: d_course_frappe_snowland_packed_dl_47F8 + type: MK64:PACKED_GFX + offset: 0x1AC1 +d_course_frappe_snowland_packed_dl_4880: + symbol: d_course_frappe_snowland_packed_dl_4880 + type: MK64:PACKED_GFX + offset: 0x1AE9 +d_course_frappe_snowland_packed_dl_48C0: + symbol: d_course_frappe_snowland_packed_dl_48C0 + type: MK64:PACKED_GFX + offset: 0x1AFF +d_course_frappe_snowland_packed_dl_49E0: + symbol: d_course_frappe_snowland_packed_dl_49E0 + type: MK64:PACKED_GFX + offset: 0x1B84 +d_course_frappe_snowland_packed_dl_4BA0: + symbol: d_course_frappe_snowland_packed_dl_4BA0 + type: MK64:PACKED_GFX + offset: 0x1C69 +d_course_frappe_snowland_packed_dl_4D18: + symbol: d_course_frappe_snowland_packed_dl_4D18 + type: MK64:PACKED_GFX + offset: 0x1D21 +d_course_frappe_snowland_packed_dl_4E40: + symbol: d_course_frappe_snowland_packed_dl_4E40 + type: MK64:PACKED_GFX + offset: 0x1DAB +d_course_frappe_snowland_packed_dl_4F00: + symbol: d_course_frappe_snowland_packed_dl_4F00 + type: MK64:PACKED_GFX + offset: 0x1DF8 +d_course_frappe_snowland_packed_dl_4FF8: + symbol: d_course_frappe_snowland_packed_dl_4FF8 + type: MK64:PACKED_GFX + offset: 0x1E64 +d_course_frappe_snowland_packed_dl_50D0: + symbol: d_course_frappe_snowland_packed_dl_50D0 + type: MK64:PACKED_GFX + offset: 0x1EBC +d_course_frappe_snowland_packed_dl_51C8: + symbol: d_course_frappe_snowland_packed_dl_51C8 + type: MK64:PACKED_GFX + offset: 0x1F26 +d_course_frappe_snowland_packed_dl_5330: + symbol: d_course_frappe_snowland_packed_dl_5330 + type: MK64:PACKED_GFX + offset: 0x1FD6 +d_course_frappe_snowland_packed_dl_54A0: + symbol: d_course_frappe_snowland_packed_dl_54A0 + type: MK64:PACKED_GFX + offset: 0x208B +d_course_frappe_snowland_packed_dl_55D0: + symbol: d_course_frappe_snowland_packed_dl_55D0 + type: MK64:PACKED_GFX + offset: 0x2118 +d_course_frappe_snowland_packed_dl_5740: + symbol: d_course_frappe_snowland_packed_dl_5740 + type: MK64:PACKED_GFX + offset: 0x21C9 +d_course_frappe_snowland_packed_dl_58C0: + symbol: d_course_frappe_snowland_packed_dl_58C0 + type: MK64:PACKED_GFX + offset: 0x2286 +d_course_frappe_snowland_packed_dl_5988: + symbol: d_course_frappe_snowland_packed_dl_5988 + type: MK64:PACKED_GFX + offset: 0x22D6 +d_course_frappe_snowland_packed_dl_5A20: + symbol: d_course_frappe_snowland_packed_dl_5A20 + type: MK64:PACKED_GFX + offset: 0x230A +d_course_frappe_snowland_packed_dl_5AC0: + symbol: d_course_frappe_snowland_packed_dl_5AC0 + type: MK64:PACKED_GFX + offset: 0x2343 +d_course_frappe_snowland_packed_dl_5B58: + symbol: d_course_frappe_snowland_packed_dl_5B58 + type: MK64:PACKED_GFX + offset: 0x2375 +d_course_frappe_snowland_packed_dl_5BE0: + symbol: d_course_frappe_snowland_packed_dl_5BE0 + type: MK64:PACKED_GFX + offset: 0x239F +d_course_frappe_snowland_packed_dl_5C70: + symbol: d_course_frappe_snowland_packed_dl_5C70 + type: MK64:PACKED_GFX + offset: 0x23CE +d_course_frappe_snowland_packed_dl_5D90: + symbol: d_course_frappe_snowland_packed_dl_5D90 + type: MK64:PACKED_GFX + offset: 0x2453 +d_course_frappe_snowland_packed_dl_5E08: + symbol: d_course_frappe_snowland_packed_dl_5E08 + type: MK64:PACKED_GFX + offset: 0x2473 +d_course_frappe_snowland_packed_dl_5EA8: + symbol: d_course_frappe_snowland_packed_dl_5EA8 + type: MK64:PACKED_GFX + offset: 0x24AC +d_course_frappe_snowland_packed_dl_5F90: + symbol: d_course_frappe_snowland_packed_dl_5F90 + type: MK64:PACKED_GFX + offset: 0x250E +d_course_frappe_snowland_packed_dl_6088: + symbol: d_course_frappe_snowland_packed_dl_6088 + type: MK64:PACKED_GFX + offset: 0x257A +d_course_frappe_snowland_packed_dl_61A0: + symbol: d_course_frappe_snowland_packed_dl_61A0 + type: MK64:PACKED_GFX + offset: 0x25FA +d_course_frappe_snowland_packed_dl_6268: + symbol: d_course_frappe_snowland_packed_dl_6268 + type: MK64:PACKED_GFX + offset: 0x264A +d_course_frappe_snowland_packed_dl_62F8: + symbol: d_course_frappe_snowland_packed_dl_62F8 + type: MK64:PACKED_GFX + offset: 0x2677 +d_course_frappe_snowland_packed_dl_63D8: + symbol: d_course_frappe_snowland_packed_dl_63D8 + type: MK64:PACKED_GFX + offset: 0x26C9 +d_course_frappe_snowland_packed_dl_65E0: + symbol: d_course_frappe_snowland_packed_dl_65E0 + type: MK64:PACKED_GFX + offset: 0x27FC +d_course_frappe_snowland_packed_dl_65F0: + symbol: d_course_frappe_snowland_packed_dl_65F0 + type: MK64:PACKED_GFX + offset: 0x2800 +d_course_frappe_snowland_packed_dl_6638: + symbol: d_course_frappe_snowland_packed_dl_6638 + type: MK64:PACKED_GFX + offset: 0x2819 +d_course_frappe_snowland_packed_dl_6650: + symbol: d_course_frappe_snowland_packed_dl_6650 + type: MK64:PACKED_GFX + offset: 0x2820 diff --git a/yamls/us/models/tracks/frappe_snowland/frappe_snowland_vertices.yml b/yamls/us/models/tracks/frappe_snowland/frappe_snowland_vertices.yml new file mode 100644 index 000000000..b8f7112eb --- /dev/null +++ b/yamls/us/models/tracks/frappe_snowland/frappe_snowland_vertices.yml @@ -0,0 +1,1443 @@ +:config: + segments: + - [0x0F, 0x8CC900] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_frappe_snowland_vertex_0x04000000: + symbol: d_course_frappe_snowland_vertex_0x04000000 + type: mk64:course_vtx + count: 4 + offset: 0x0 + +d_course_frappe_snowland_vertex_0x04000040: + symbol: d_course_frappe_snowland_vertex_0x04000040 + type: mk64:course_vtx + count: 50 + offset: 0x38 + +d_course_frappe_snowland_vertex_0x04000240: + symbol: d_course_frappe_snowland_vertex_0x04000240 + type: mk64:course_vtx + count: 49 + offset: 0x1f8 + +d_course_frappe_snowland_vertex_0x04000430: + symbol: d_course_frappe_snowland_vertex_0x04000430 + type: mk64:course_vtx + count: 32 + offset: 0x3aa + +d_course_frappe_snowland_vertex_0x04000570: + symbol: d_course_frappe_snowland_vertex_0x04000570 + type: mk64:course_vtx + count: 50 + offset: 0x4c2 + +d_course_frappe_snowland_vertex_0x04000770: + symbol: d_course_frappe_snowland_vertex_0x04000770 + type: mk64:course_vtx + count: 35 + offset: 0x682 + +d_course_frappe_snowland_vertex_0x040008E0: + symbol: d_course_frappe_snowland_vertex_0x040008E0 + type: mk64:course_vtx + count: 50 + offset: 0x7c4 + +d_course_frappe_snowland_vertex_0x04000AE0: + symbol: d_course_frappe_snowland_vertex_0x04000AE0 + type: mk64:course_vtx + count: 48 + offset: 0x984 + +d_course_frappe_snowland_vertex_0x04000CC0: + symbol: d_course_frappe_snowland_vertex_0x04000CC0 + type: mk64:course_vtx + count: 49 + offset: 0xb28 + +d_course_frappe_snowland_vertex_0x04000EB0: + symbol: d_course_frappe_snowland_vertex_0x04000EB0 + type: mk64:course_vtx + count: 24 + offset: 0xcda + +d_course_frappe_snowland_vertex_0x04000FD0: + symbol: d_course_frappe_snowland_vertex_0x04000FD0 + type: mk64:course_vtx + count: 49 + offset: 0xdd6 + +d_course_frappe_snowland_vertex_0x040011C0: + symbol: d_course_frappe_snowland_vertex_0x040011C0 + type: mk64:course_vtx + count: 50 + offset: 0xf88 + +d_course_frappe_snowland_vertex_0x040013C0: + symbol: d_course_frappe_snowland_vertex_0x040013C0 + type: mk64:course_vtx + count: 50 + offset: 0x1148 + +d_course_frappe_snowland_vertex_0x040015C0: + symbol: d_course_frappe_snowland_vertex_0x040015C0 + type: mk64:course_vtx + count: 50 + offset: 0x1308 + +d_course_frappe_snowland_vertex_0x040017C0: + symbol: d_course_frappe_snowland_vertex_0x040017C0 + type: mk64:course_vtx + count: 48 + offset: 0x14c8 + +d_course_frappe_snowland_vertex_0x040019A0: + symbol: d_course_frappe_snowland_vertex_0x040019A0 + type: mk64:course_vtx + count: 49 + offset: 0x166c + +d_course_frappe_snowland_vertex_0x04001B90: + symbol: d_course_frappe_snowland_vertex_0x04001B90 + type: mk64:course_vtx + count: 18 + offset: 0x181e + +d_course_frappe_snowland_vertex_0x04001C50: + symbol: d_course_frappe_snowland_vertex_0x04001C50 + type: mk64:course_vtx + count: 49 + offset: 0x18c6 + +d_course_frappe_snowland_vertex_0x04001E40: + symbol: d_course_frappe_snowland_vertex_0x04001E40 + type: mk64:course_vtx + count: 48 + offset: 0x1a78 + +d_course_frappe_snowland_vertex_0x04002020: + symbol: d_course_frappe_snowland_vertex_0x04002020 + type: mk64:course_vtx + count: 48 + offset: 0x1c1c + +d_course_frappe_snowland_vertex_0x04002200: + symbol: d_course_frappe_snowland_vertex_0x04002200 + type: mk64:course_vtx + count: 48 + offset: 0x1dc0 + +d_course_frappe_snowland_vertex_0x040023E0: + symbol: d_course_frappe_snowland_vertex_0x040023E0 + type: mk64:course_vtx + count: 48 + offset: 0x1f64 + +d_course_frappe_snowland_vertex_0x040025C0: + symbol: d_course_frappe_snowland_vertex_0x040025C0 + type: mk64:course_vtx + count: 48 + offset: 0x2108 + +d_course_frappe_snowland_vertex_0x040027A0: + symbol: d_course_frappe_snowland_vertex_0x040027A0 + type: mk64:course_vtx + count: 49 + offset: 0x22ac + +d_course_frappe_snowland_vertex_0x04002990: + symbol: d_course_frappe_snowland_vertex_0x04002990 + type: mk64:course_vtx + count: 50 + offset: 0x245e + +d_course_frappe_snowland_vertex_0x04002B90: + symbol: d_course_frappe_snowland_vertex_0x04002B90 + type: mk64:course_vtx + count: 49 + offset: 0x261e + +d_course_frappe_snowland_vertex_0x04002D80: + symbol: d_course_frappe_snowland_vertex_0x04002D80 + type: mk64:course_vtx + count: 50 + offset: 0x27d0 + +d_course_frappe_snowland_vertex_0x04002F80: + symbol: d_course_frappe_snowland_vertex_0x04002F80 + type: mk64:course_vtx + count: 49 + offset: 0x2990 + +d_course_frappe_snowland_vertex_0x04003170: + symbol: d_course_frappe_snowland_vertex_0x04003170 + type: mk64:course_vtx + count: 18 + offset: 0x2b42 + +d_course_frappe_snowland_vertex_0x04003230: + symbol: d_course_frappe_snowland_vertex_0x04003230 + type: mk64:course_vtx + count: 3 + offset: 0x2bea + +d_course_frappe_snowland_vertex_0x04003260: + symbol: d_course_frappe_snowland_vertex_0x04003260 + type: mk64:course_vtx + count: 7 + offset: 0x2c14 + +d_course_frappe_snowland_vertex_0x040032D0: + symbol: d_course_frappe_snowland_vertex_0x040032D0 + type: mk64:course_vtx + count: 34 + offset: 0x2c76 + +d_course_frappe_snowland_vertex_0x04003430: + symbol: d_course_frappe_snowland_vertex_0x04003430 + type: mk64:course_vtx + count: 22 + offset: 0x2daa + +d_course_frappe_snowland_vertex_0x04003530: + symbol: d_course_frappe_snowland_vertex_0x04003530 + type: mk64:course_vtx + count: 20 + offset: 0x2e8a + +d_course_frappe_snowland_vertex_0x04003610: + symbol: d_course_frappe_snowland_vertex_0x04003610 + type: mk64:course_vtx + count: 8 + offset: 0x2f4e + +d_course_frappe_snowland_vertex_0x04003690: + symbol: d_course_frappe_snowland_vertex_0x04003690 + type: mk64:course_vtx + count: 32 + offset: 0x2fbe + +d_course_frappe_snowland_vertex_0x040037D0: + symbol: d_course_frappe_snowland_vertex_0x040037D0 + type: mk64:course_vtx + count: 25 + offset: 0x30d6 + +d_course_frappe_snowland_vertex_0x04003900: + symbol: d_course_frappe_snowland_vertex_0x04003900 + type: mk64:course_vtx + count: 4 + offset: 0x31e0 + +d_course_frappe_snowland_vertex_0x04003940: + symbol: d_course_frappe_snowland_vertex_0x04003940 + type: mk64:course_vtx + count: 23 + offset: 0x3218 + +d_course_frappe_snowland_vertex_0x04003A50: + symbol: d_course_frappe_snowland_vertex_0x04003A50 + type: mk64:course_vtx + count: 8 + offset: 0x3306 + +d_course_frappe_snowland_vertex_0x04003AD0: + symbol: d_course_frappe_snowland_vertex_0x04003AD0 + type: mk64:course_vtx + count: 22 + offset: 0x3376 + +d_course_frappe_snowland_vertex_0x04003BD0: + symbol: d_course_frappe_snowland_vertex_0x04003BD0 + type: mk64:course_vtx + count: 22 + offset: 0x3456 + +d_course_frappe_snowland_vertex_0x04003CD0: + symbol: d_course_frappe_snowland_vertex_0x04003CD0 + type: mk64:course_vtx + count: 25 + offset: 0x3536 + +d_course_frappe_snowland_vertex_0x04003E00: + symbol: d_course_frappe_snowland_vertex_0x04003E00 + type: mk64:course_vtx + count: 18 + offset: 0x3640 + +d_course_frappe_snowland_vertex_0x04003EC0: + symbol: d_course_frappe_snowland_vertex_0x04003EC0 + type: mk64:course_vtx + count: 4 + offset: 0x36e8 + +d_course_frappe_snowland_vertex_0x04003F00: + symbol: d_course_frappe_snowland_vertex_0x04003F00 + type: mk64:course_vtx + count: 4 + offset: 0x3720 + +d_course_frappe_snowland_vertex_0x04003F40: + symbol: d_course_frappe_snowland_vertex_0x04003F40 + type: mk64:course_vtx + count: 22 + offset: 0x3758 + +d_course_frappe_snowland_vertex_0x04004040: + symbol: d_course_frappe_snowland_vertex_0x04004040 + type: mk64:course_vtx + count: 8 + offset: 0x3838 + +d_course_frappe_snowland_vertex_0x040040C0: + symbol: d_course_frappe_snowland_vertex_0x040040C0 + type: mk64:course_vtx + count: 4 + offset: 0x38a8 + +d_course_frappe_snowland_vertex_0x04004100: + symbol: d_course_frappe_snowland_vertex_0x04004100 + type: mk64:course_vtx + count: 18 + offset: 0x38e0 + +d_course_frappe_snowland_vertex_0x040041C0: + symbol: d_course_frappe_snowland_vertex_0x040041C0 + type: mk64:course_vtx + count: 4 + offset: 0x3988 + +d_course_frappe_snowland_vertex_0x04004200: + symbol: d_course_frappe_snowland_vertex_0x04004200 + type: mk64:course_vtx + count: 8 + offset: 0x39c0 + +d_course_frappe_snowland_vertex_0x04004280: + symbol: d_course_frappe_snowland_vertex_0x04004280 + type: mk64:course_vtx + count: 18 + offset: 0x3a30 + +d_course_frappe_snowland_vertex_0x04004340: + symbol: d_course_frappe_snowland_vertex_0x04004340 + type: mk64:course_vtx + count: 4 + offset: 0x3ad8 + +d_course_frappe_snowland_vertex_0x04004380: + symbol: d_course_frappe_snowland_vertex_0x04004380 + type: mk64:course_vtx + count: 20 + offset: 0x3b10 + +d_course_frappe_snowland_vertex_0x04004460: + symbol: d_course_frappe_snowland_vertex_0x04004460 + type: mk64:course_vtx + count: 6 + offset: 0x3bd4 + +d_course_frappe_snowland_vertex_0x040044C0: + symbol: d_course_frappe_snowland_vertex_0x040044C0 + type: mk64:course_vtx + count: 8 + offset: 0x3c28 + +d_course_frappe_snowland_vertex_0x04004540: + symbol: d_course_frappe_snowland_vertex_0x04004540 + type: mk64:course_vtx + count: 8 + offset: 0x3c98 + +d_course_frappe_snowland_vertex_0x040045C0: + symbol: d_course_frappe_snowland_vertex_0x040045C0 + type: mk64:course_vtx + count: 17 + offset: 0x3d08 + +d_course_frappe_snowland_vertex_0x04004670: + symbol: d_course_frappe_snowland_vertex_0x04004670 + type: mk64:course_vtx + count: 17 + offset: 0x3da2 + +d_course_frappe_snowland_vertex_0x04004720: + symbol: d_course_frappe_snowland_vertex_0x04004720 + type: mk64:course_vtx + count: 7 + offset: 0x3e3c + +d_course_frappe_snowland_vertex_0x04004790: + symbol: d_course_frappe_snowland_vertex_0x04004790 + type: mk64:course_vtx + count: 8 + offset: 0x3e9e + +d_course_frappe_snowland_vertex_0x04004810: + symbol: d_course_frappe_snowland_vertex_0x04004810 + type: mk64:course_vtx + count: 50 + offset: 0x3f0e + +d_course_frappe_snowland_vertex_0x04004A10: + symbol: d_course_frappe_snowland_vertex_0x04004A10 + type: mk64:course_vtx + count: 9 + offset: 0x40ce + +d_course_frappe_snowland_vertex_0x04004AA0: + symbol: d_course_frappe_snowland_vertex_0x04004AA0 + type: mk64:course_vtx + count: 33 + offset: 0x414c + +d_course_frappe_snowland_vertex_0x04004BF0: + symbol: d_course_frappe_snowland_vertex_0x04004BF0 + type: mk64:course_vtx + count: 50 + offset: 0x4272 + +d_course_frappe_snowland_vertex_0x04004DF0: + symbol: d_course_frappe_snowland_vertex_0x04004DF0 + type: mk64:course_vtx + count: 3 + offset: 0x4432 + +d_course_frappe_snowland_vertex_0x04004E20: + symbol: d_course_frappe_snowland_vertex_0x04004E20 + type: mk64:course_vtx + count: 50 + offset: 0x445c + +d_course_frappe_snowland_vertex_0x04005020: + symbol: d_course_frappe_snowland_vertex_0x04005020 + type: mk64:course_vtx + count: 21 + offset: 0x461c + +d_course_frappe_snowland_vertex_0x04005110: + symbol: d_course_frappe_snowland_vertex_0x04005110 + type: mk64:course_vtx + count: 40 + offset: 0x46ee + +d_course_frappe_snowland_vertex_0x040052D0: + symbol: d_course_frappe_snowland_vertex_0x040052D0 + type: mk64:course_vtx + count: 36 + offset: 0x4876 + +d_course_frappe_snowland_vertex_0x04005450: + symbol: d_course_frappe_snowland_vertex_0x04005450 + type: mk64:course_vtx + count: 38 + offset: 0x49c6 + +d_course_frappe_snowland_vertex_0x040055F0: + symbol: d_course_frappe_snowland_vertex_0x040055F0 + type: mk64:course_vtx + count: 49 + offset: 0x4b32 + +d_course_frappe_snowland_vertex_0x040057E0: + symbol: d_course_frappe_snowland_vertex_0x040057E0 + type: mk64:course_vtx + count: 39 + offset: 0x4ce4 + +d_course_frappe_snowland_vertex_0x04005990: + symbol: d_course_frappe_snowland_vertex_0x04005990 + type: mk64:course_vtx + count: 50 + offset: 0x4e5e + +d_course_frappe_snowland_vertex_0x04005B90: + symbol: d_course_frappe_snowland_vertex_0x04005B90 + type: mk64:course_vtx + count: 8 + offset: 0x501e + +d_course_frappe_snowland_vertex_0x04005C10: + symbol: d_course_frappe_snowland_vertex_0x04005C10 + type: mk64:course_vtx + count: 23 + offset: 0x508e + +d_course_frappe_snowland_vertex_0x04005D20: + symbol: d_course_frappe_snowland_vertex_0x04005D20 + type: mk64:course_vtx + count: 21 + offset: 0x517c + +d_course_frappe_snowland_vertex_0x04005E10: + symbol: d_course_frappe_snowland_vertex_0x04005E10 + type: mk64:course_vtx + count: 33 + offset: 0x524e + +d_course_frappe_snowland_vertex_0x04005F60: + symbol: d_course_frappe_snowland_vertex_0x04005F60 + type: mk64:course_vtx + count: 34 + offset: 0x5374 + +d_course_frappe_snowland_vertex_0x040060C0: + symbol: d_course_frappe_snowland_vertex_0x040060C0 + type: mk64:course_vtx + count: 18 + offset: 0x54a8 + +d_course_frappe_snowland_vertex_0x04006180: + symbol: d_course_frappe_snowland_vertex_0x04006180 + type: mk64:course_vtx + count: 48 + offset: 0x5550 + +d_course_frappe_snowland_vertex_0x04006360: + symbol: d_course_frappe_snowland_vertex_0x04006360 + type: mk64:course_vtx + count: 18 + offset: 0x56f4 + +d_course_frappe_snowland_vertex_0x04006420: + symbol: d_course_frappe_snowland_vertex_0x04006420 + type: mk64:course_vtx + count: 22 + offset: 0x579c + +d_course_frappe_snowland_vertex_0x04006520: + symbol: d_course_frappe_snowland_vertex_0x04006520 + type: mk64:course_vtx + count: 19 + offset: 0x587c + +d_course_frappe_snowland_vertex_0x040065F0: + symbol: d_course_frappe_snowland_vertex_0x040065F0 + type: mk64:course_vtx + count: 5 + offset: 0x5932 + +d_course_frappe_snowland_vertex_0x04006640: + symbol: d_course_frappe_snowland_vertex_0x04006640 + type: mk64:course_vtx + count: 23 + offset: 0x5978 + +d_course_frappe_snowland_vertex_0x04006750: + symbol: d_course_frappe_snowland_vertex_0x04006750 + type: mk64:course_vtx + count: 32 + offset: 0x5a66 + +d_course_frappe_snowland_vertex_0x04006890: + symbol: d_course_frappe_snowland_vertex_0x04006890 + type: mk64:course_vtx + count: 23 + offset: 0x5b7e + +d_course_frappe_snowland_vertex_0x040069A0: + symbol: d_course_frappe_snowland_vertex_0x040069A0 + type: mk64:course_vtx + count: 25 + offset: 0x5c6c + +d_course_frappe_snowland_vertex_0x04006AD0: + symbol: d_course_frappe_snowland_vertex_0x04006AD0 + type: mk64:course_vtx + count: 22 + offset: 0x5d76 + +d_course_frappe_snowland_vertex_0x04006BD0: + symbol: d_course_frappe_snowland_vertex_0x04006BD0 + type: mk64:course_vtx + count: 37 + offset: 0x5e56 + +d_course_frappe_snowland_vertex_0x04006D60: + symbol: d_course_frappe_snowland_vertex_0x04006D60 + type: mk64:course_vtx + count: 4 + offset: 0x5fb4 + +d_course_frappe_snowland_vertex_0x04006DA0: + symbol: d_course_frappe_snowland_vertex_0x04006DA0 + type: mk64:course_vtx + count: 48 + offset: 0x5fec + +d_course_frappe_snowland_vertex_0x04006F80: + symbol: d_course_frappe_snowland_vertex_0x04006F80 + type: mk64:course_vtx + count: 48 + offset: 0x6190 + +d_course_frappe_snowland_vertex_0x04007160: + symbol: d_course_frappe_snowland_vertex_0x04007160 + type: mk64:course_vtx + count: 49 + offset: 0x6334 + +d_course_frappe_snowland_vertex_0x04007350: + symbol: d_course_frappe_snowland_vertex_0x04007350 + type: mk64:course_vtx + count: 48 + offset: 0x64e6 + +d_course_frappe_snowland_vertex_0x04007530: + symbol: d_course_frappe_snowland_vertex_0x04007530 + type: mk64:course_vtx + count: 49 + offset: 0x668a + +d_course_frappe_snowland_vertex_0x04007720: + symbol: d_course_frappe_snowland_vertex_0x04007720 + type: mk64:course_vtx + count: 48 + offset: 0x683c + +d_course_frappe_snowland_vertex_0x04007900: + symbol: d_course_frappe_snowland_vertex_0x04007900 + type: mk64:course_vtx + count: 48 + offset: 0x69e0 + +d_course_frappe_snowland_vertex_0x04007AE0: + symbol: d_course_frappe_snowland_vertex_0x04007AE0 + type: mk64:course_vtx + count: 50 + offset: 0x6b84 + +d_course_frappe_snowland_vertex_0x04007CE0: + symbol: d_course_frappe_snowland_vertex_0x04007CE0 + type: mk64:course_vtx + count: 48 + offset: 0x6d44 + +d_course_frappe_snowland_vertex_0x04007EC0: + symbol: d_course_frappe_snowland_vertex_0x04007EC0 + type: mk64:course_vtx + count: 48 + offset: 0x6ee8 + +d_course_frappe_snowland_vertex_0x040080A0: + symbol: d_course_frappe_snowland_vertex_0x040080A0 + type: mk64:course_vtx + count: 48 + offset: 0x708c + +d_course_frappe_snowland_vertex_0x04008280: + symbol: d_course_frappe_snowland_vertex_0x04008280 + type: mk64:course_vtx + count: 50 + offset: 0x7230 + +d_course_frappe_snowland_vertex_0x04008480: + symbol: d_course_frappe_snowland_vertex_0x04008480 + type: mk64:course_vtx + count: 50 + offset: 0x73f0 + +d_course_frappe_snowland_vertex_0x04008680: + symbol: d_course_frappe_snowland_vertex_0x04008680 + type: mk64:course_vtx + count: 48 + offset: 0x75b0 + +d_course_frappe_snowland_vertex_0x04008860: + symbol: d_course_frappe_snowland_vertex_0x04008860 + type: mk64:course_vtx + count: 50 + offset: 0x7754 + +d_course_frappe_snowland_vertex_0x04008A60: + symbol: d_course_frappe_snowland_vertex_0x04008A60 + type: mk64:course_vtx + count: 50 + offset: 0x7914 + +d_course_frappe_snowland_vertex_0x04008C60: + symbol: d_course_frappe_snowland_vertex_0x04008C60 + type: mk64:course_vtx + count: 50 + offset: 0x7ad4 + +d_course_frappe_snowland_vertex_0x04008E60: + symbol: d_course_frappe_snowland_vertex_0x04008E60 + type: mk64:course_vtx + count: 48 + offset: 0x7c94 + +d_course_frappe_snowland_vertex_0x04009040: + symbol: d_course_frappe_snowland_vertex_0x04009040 + type: mk64:course_vtx + count: 49 + offset: 0x7e38 + +d_course_frappe_snowland_vertex_0x04009230: + symbol: d_course_frappe_snowland_vertex_0x04009230 + type: mk64:course_vtx + count: 48 + offset: 0x7fea + +d_course_frappe_snowland_vertex_0x04009410: + symbol: d_course_frappe_snowland_vertex_0x04009410 + type: mk64:course_vtx + count: 48 + offset: 0x818e + +d_course_frappe_snowland_vertex_0x040095F0: + symbol: d_course_frappe_snowland_vertex_0x040095F0 + type: mk64:course_vtx + count: 48 + offset: 0x8332 + +d_course_frappe_snowland_vertex_0x040097D0: + symbol: d_course_frappe_snowland_vertex_0x040097D0 + type: mk64:course_vtx + count: 48 + offset: 0x84d6 + +d_course_frappe_snowland_vertex_0x040099B0: + symbol: d_course_frappe_snowland_vertex_0x040099B0 + type: mk64:course_vtx + count: 50 + offset: 0x867a + +d_course_frappe_snowland_vertex_0x04009BB0: + symbol: d_course_frappe_snowland_vertex_0x04009BB0 + type: mk64:course_vtx + count: 48 + offset: 0x883a + +d_course_frappe_snowland_vertex_0x04009D90: + symbol: d_course_frappe_snowland_vertex_0x04009D90 + type: mk64:course_vtx + count: 49 + offset: 0x89de + +d_course_frappe_snowland_vertex_0x04009F80: + symbol: d_course_frappe_snowland_vertex_0x04009F80 + type: mk64:course_vtx + count: 34 + offset: 0x8b90 + +d_course_frappe_snowland_vertex_0x0400A0E0: + symbol: d_course_frappe_snowland_vertex_0x0400A0E0 + type: mk64:course_vtx + count: 49 + offset: 0x8cc4 + +d_course_frappe_snowland_vertex_0x0400A2D0: + symbol: d_course_frappe_snowland_vertex_0x0400A2D0 + type: mk64:course_vtx + count: 49 + offset: 0x8e76 + +d_course_frappe_snowland_vertex_0x0400A4C0: + symbol: d_course_frappe_snowland_vertex_0x0400A4C0 + type: mk64:course_vtx + count: 50 + offset: 0x9028 + +d_course_frappe_snowland_vertex_0x0400A6C0: + symbol: d_course_frappe_snowland_vertex_0x0400A6C0 + type: mk64:course_vtx + count: 48 + offset: 0x91e8 + +d_course_frappe_snowland_vertex_0x0400A8A0: + symbol: d_course_frappe_snowland_vertex_0x0400A8A0 + type: mk64:course_vtx + count: 49 + offset: 0x938c + +d_course_frappe_snowland_vertex_0x0400AA90: + symbol: d_course_frappe_snowland_vertex_0x0400AA90 + type: mk64:course_vtx + count: 49 + offset: 0x953e + +d_course_frappe_snowland_vertex_0x0400AC80: + symbol: d_course_frappe_snowland_vertex_0x0400AC80 + type: mk64:course_vtx + count: 50 + offset: 0x96f0 + +d_course_frappe_snowland_vertex_0x0400AE80: + symbol: d_course_frappe_snowland_vertex_0x0400AE80 + type: mk64:course_vtx + count: 36 + offset: 0x98b0 + +d_course_frappe_snowland_vertex_0x0400B000: + symbol: d_course_frappe_snowland_vertex_0x0400B000 + type: mk64:course_vtx + count: 50 + offset: 0x9a00 + +d_course_frappe_snowland_vertex_0x0400B200: + symbol: d_course_frappe_snowland_vertex_0x0400B200 + type: mk64:course_vtx + count: 50 + offset: 0x9bc0 + +d_course_frappe_snowland_vertex_0x0400B400: + symbol: d_course_frappe_snowland_vertex_0x0400B400 + type: mk64:course_vtx + count: 50 + offset: 0x9d80 + +d_course_frappe_snowland_vertex_0x0400B600: + symbol: d_course_frappe_snowland_vertex_0x0400B600 + type: mk64:course_vtx + count: 50 + offset: 0x9f40 + +d_course_frappe_snowland_vertex_0x0400B800: + symbol: d_course_frappe_snowland_vertex_0x0400B800 + type: mk64:course_vtx + count: 49 + offset: 0xa100 + +d_course_frappe_snowland_vertex_0x0400B9F0: + symbol: d_course_frappe_snowland_vertex_0x0400B9F0 + type: mk64:course_vtx + count: 50 + offset: 0xa2b2 + +d_course_frappe_snowland_vertex_0x0400BBF0: + symbol: d_course_frappe_snowland_vertex_0x0400BBF0 + type: mk64:course_vtx + count: 48 + offset: 0xa472 + +d_course_frappe_snowland_vertex_0x0400BDD0: + symbol: d_course_frappe_snowland_vertex_0x0400BDD0 + type: mk64:course_vtx + count: 49 + offset: 0xa616 + +d_course_frappe_snowland_vertex_0x0400BFC0: + symbol: d_course_frappe_snowland_vertex_0x0400BFC0 + type: mk64:course_vtx + count: 48 + offset: 0xa7c8 + +d_course_frappe_snowland_vertex_0x0400C1A0: + symbol: d_course_frappe_snowland_vertex_0x0400C1A0 + type: mk64:course_vtx + count: 50 + offset: 0xa96c + +d_course_frappe_snowland_vertex_0x0400C3A0: + symbol: d_course_frappe_snowland_vertex_0x0400C3A0 + type: mk64:course_vtx + count: 49 + offset: 0xab2c + +d_course_frappe_snowland_vertex_0x0400C590: + symbol: d_course_frappe_snowland_vertex_0x0400C590 + type: mk64:course_vtx + count: 49 + offset: 0xacde + +d_course_frappe_snowland_vertex_0x0400C780: + symbol: d_course_frappe_snowland_vertex_0x0400C780 + type: mk64:course_vtx + count: 48 + offset: 0xae90 + +d_course_frappe_snowland_vertex_0x0400C960: + symbol: d_course_frappe_snowland_vertex_0x0400C960 + type: mk64:course_vtx + count: 9 + offset: 0xb034 + +d_course_frappe_snowland_vertex_0x0400C9F0: + symbol: d_course_frappe_snowland_vertex_0x0400C9F0 + type: mk64:course_vtx + count: 50 + offset: 0xb0b2 + +d_course_frappe_snowland_vertex_0x0400CBF0: + symbol: d_course_frappe_snowland_vertex_0x0400CBF0 + type: mk64:course_vtx + count: 50 + offset: 0xb272 + +d_course_frappe_snowland_vertex_0x0400CDF0: + symbol: d_course_frappe_snowland_vertex_0x0400CDF0 + type: mk64:course_vtx + count: 49 + offset: 0xb432 + +d_course_frappe_snowland_vertex_0x0400CFE0: + symbol: d_course_frappe_snowland_vertex_0x0400CFE0 + type: mk64:course_vtx + count: 49 + offset: 0xb5e4 + +d_course_frappe_snowland_vertex_0x0400D1D0: + symbol: d_course_frappe_snowland_vertex_0x0400D1D0 + type: mk64:course_vtx + count: 50 + offset: 0xb796 + +d_course_frappe_snowland_vertex_0x0400D3D0: + symbol: d_course_frappe_snowland_vertex_0x0400D3D0 + type: mk64:course_vtx + count: 50 + offset: 0xb956 + +d_course_frappe_snowland_vertex_0x0400D5D0: + symbol: d_course_frappe_snowland_vertex_0x0400D5D0 + type: mk64:course_vtx + count: 50 + offset: 0xbb16 + +d_course_frappe_snowland_vertex_0x0400D7D0: + symbol: d_course_frappe_snowland_vertex_0x0400D7D0 + type: mk64:course_vtx + count: 50 + offset: 0xbcd6 + +d_course_frappe_snowland_vertex_0x0400D9D0: + symbol: d_course_frappe_snowland_vertex_0x0400D9D0 + type: mk64:course_vtx + count: 48 + offset: 0xbe96 + +d_course_frappe_snowland_vertex_0x0400DBB0: + symbol: d_course_frappe_snowland_vertex_0x0400DBB0 + type: mk64:course_vtx + count: 50 + offset: 0xc03a + +d_course_frappe_snowland_vertex_0x0400DDB0: + symbol: d_course_frappe_snowland_vertex_0x0400DDB0 + type: mk64:course_vtx + count: 48 + offset: 0xc1fa + +d_course_frappe_snowland_vertex_0x0400DF90: + symbol: d_course_frappe_snowland_vertex_0x0400DF90 + type: mk64:course_vtx + count: 49 + offset: 0xc39e + +d_course_frappe_snowland_vertex_0x0400E180: + symbol: d_course_frappe_snowland_vertex_0x0400E180 + type: mk64:course_vtx + count: 50 + offset: 0xc550 + +d_course_frappe_snowland_vertex_0x0400E380: + symbol: d_course_frappe_snowland_vertex_0x0400E380 + type: mk64:course_vtx + count: 34 + offset: 0xc710 + +d_course_frappe_snowland_vertex_0x0400E4E0: + symbol: d_course_frappe_snowland_vertex_0x0400E4E0 + type: mk64:course_vtx + count: 40 + offset: 0xc844 + +d_course_frappe_snowland_vertex_0x0400E6A0: + symbol: d_course_frappe_snowland_vertex_0x0400E6A0 + type: mk64:course_vtx + count: 4 + offset: 0xc9cc + +d_course_frappe_snowland_vertex_0x0400E6E0: + symbol: d_course_frappe_snowland_vertex_0x0400E6E0 + type: mk64:course_vtx + count: 50 + offset: 0xca04 + +d_course_frappe_snowland_vertex_0x0400E8E0: + symbol: d_course_frappe_snowland_vertex_0x0400E8E0 + type: mk64:course_vtx + count: 8 + offset: 0xcbc4 + +d_course_frappe_snowland_vertex_0x0400E960: + symbol: d_course_frappe_snowland_vertex_0x0400E960 + type: mk64:course_vtx + count: 32 + offset: 0xcc34 + +d_course_frappe_snowland_vertex_0x0400EAA0: + symbol: d_course_frappe_snowland_vertex_0x0400EAA0 + type: mk64:course_vtx + count: 32 + offset: 0xcd4c + +d_course_frappe_snowland_vertex_0x0400EBE0: + symbol: d_course_frappe_snowland_vertex_0x0400EBE0 + type: mk64:course_vtx + count: 40 + offset: 0xce64 + +d_course_frappe_snowland_vertex_0x0400EDA0: + symbol: d_course_frappe_snowland_vertex_0x0400EDA0 + type: mk64:course_vtx + count: 40 + offset: 0xcfec + +d_course_frappe_snowland_vertex_0x0400EF60: + symbol: d_course_frappe_snowland_vertex_0x0400EF60 + type: mk64:course_vtx + count: 36 + offset: 0xd174 + +d_course_frappe_snowland_vertex_0x0400F0E0: + symbol: d_course_frappe_snowland_vertex_0x0400F0E0 + type: mk64:course_vtx + count: 4 + offset: 0xd2c4 + +d_course_frappe_snowland_vertex_0x0400F120: + symbol: d_course_frappe_snowland_vertex_0x0400F120 + type: mk64:course_vtx + count: 8 + offset: 0xd2fc + +d_course_frappe_snowland_vertex_0x0400F1A0: + symbol: d_course_frappe_snowland_vertex_0x0400F1A0 + type: mk64:course_vtx + count: 40 + offset: 0xd36c + +d_course_frappe_snowland_vertex_0x0400F360: + symbol: d_course_frappe_snowland_vertex_0x0400F360 + type: mk64:course_vtx + count: 18 + offset: 0xd4f4 + +d_course_frappe_snowland_vertex_0x0400F420: + symbol: d_course_frappe_snowland_vertex_0x0400F420 + type: mk64:course_vtx + count: 8 + offset: 0xd59c + +d_course_frappe_snowland_vertex_0x0400F4A0: + symbol: d_course_frappe_snowland_vertex_0x0400F4A0 + type: mk64:course_vtx + count: 32 + offset: 0xd60c + +d_course_frappe_snowland_vertex_0x0400F5E0: + symbol: d_course_frappe_snowland_vertex_0x0400F5E0 + type: mk64:course_vtx + count: 32 + offset: 0xd724 + +d_course_frappe_snowland_vertex_0x0400F720: + symbol: d_course_frappe_snowland_vertex_0x0400F720 + type: mk64:course_vtx + count: 22 + offset: 0xd83c + +d_course_frappe_snowland_vertex_0x0400F820: + symbol: d_course_frappe_snowland_vertex_0x0400F820 + type: mk64:course_vtx + count: 22 + offset: 0xd91c + +d_course_frappe_snowland_vertex_0x0400F920: + symbol: d_course_frappe_snowland_vertex_0x0400F920 + type: mk64:course_vtx + count: 18 + offset: 0xd9fc + +d_course_frappe_snowland_vertex_0x0400F9E0: + symbol: d_course_frappe_snowland_vertex_0x0400F9E0 + type: mk64:course_vtx + count: 50 + offset: 0xdaa4 + +d_course_frappe_snowland_vertex_0x0400FBE0: + symbol: d_course_frappe_snowland_vertex_0x0400FBE0 + type: mk64:course_vtx + count: 4 + offset: 0xdc64 + +d_course_frappe_snowland_vertex_0x0400FC20: + symbol: d_course_frappe_snowland_vertex_0x0400FC20 + type: mk64:course_vtx + count: 17 + offset: 0xdc9c + +d_course_frappe_snowland_vertex_0x0400FCD0: + symbol: d_course_frappe_snowland_vertex_0x0400FCD0 + type: mk64:course_vtx + count: 22 + offset: 0xdd36 + +d_course_frappe_snowland_vertex_0x0400FDD0: + symbol: d_course_frappe_snowland_vertex_0x0400FDD0 + type: mk64:course_vtx + count: 20 + offset: 0xde16 + +d_course_frappe_snowland_vertex_0x0400FEB0: + symbol: d_course_frappe_snowland_vertex_0x0400FEB0 + type: mk64:course_vtx + count: 32 + offset: 0xdeda + +d_course_frappe_snowland_vertex_0x0400FFF0: + symbol: d_course_frappe_snowland_vertex_0x0400FFF0 + type: mk64:course_vtx + count: 22 + offset: 0xdff2 + +d_course_frappe_snowland_vertex_0x040100F0: + symbol: d_course_frappe_snowland_vertex_0x040100F0 + type: mk64:course_vtx + count: 32 + offset: 0xe0d2 + +d_course_frappe_snowland_vertex_0x04010230: + symbol: d_course_frappe_snowland_vertex_0x04010230 + type: mk64:course_vtx + count: 35 + offset: 0xe1ea + +d_course_frappe_snowland_vertex_0x040103A0: + symbol: d_course_frappe_snowland_vertex_0x040103A0 + type: mk64:course_vtx + count: 50 + offset: 0xe32c + +d_course_frappe_snowland_vertex_0x040105A0: + symbol: d_course_frappe_snowland_vertex_0x040105A0 + type: mk64:course_vtx + count: 41 + offset: 0xe4ec + +d_course_frappe_snowland_vertex_0x04010770: + symbol: d_course_frappe_snowland_vertex_0x04010770 + type: mk64:course_vtx + count: 50 + offset: 0xe682 + +d_course_frappe_snowland_vertex_0x04010970: + symbol: d_course_frappe_snowland_vertex_0x04010970 + type: mk64:course_vtx + count: 50 + offset: 0xe842 + +d_course_frappe_snowland_vertex_0x04010B70: + symbol: d_course_frappe_snowland_vertex_0x04010B70 + type: mk64:course_vtx + count: 38 + offset: 0xea02 + +d_course_frappe_snowland_vertex_0x04010D10: + symbol: d_course_frappe_snowland_vertex_0x04010D10 + type: mk64:course_vtx + count: 49 + offset: 0xeb6e + +d_course_frappe_snowland_vertex_0x04010F00: + symbol: d_course_frappe_snowland_vertex_0x04010F00 + type: mk64:course_vtx + count: 48 + offset: 0xed20 + +d_course_frappe_snowland_vertex_0x040110E0: + symbol: d_course_frappe_snowland_vertex_0x040110E0 + type: mk64:course_vtx + count: 50 + offset: 0xeec4 + +d_course_frappe_snowland_vertex_0x040112E0: + symbol: d_course_frappe_snowland_vertex_0x040112E0 + type: mk64:course_vtx + count: 50 + offset: 0xf084 + +d_course_frappe_snowland_vertex_0x040114E0: + symbol: d_course_frappe_snowland_vertex_0x040114E0 + type: mk64:course_vtx + count: 49 + offset: 0xf244 + +d_course_frappe_snowland_vertex_0x040116D0: + symbol: d_course_frappe_snowland_vertex_0x040116D0 + type: mk64:course_vtx + count: 36 + offset: 0xf3f6 + +d_course_frappe_snowland_vertex_0x04011850: + symbol: d_course_frappe_snowland_vertex_0x04011850 + type: mk64:course_vtx + count: 50 + offset: 0xf546 + +d_course_frappe_snowland_vertex_0x04011A50: + symbol: d_course_frappe_snowland_vertex_0x04011A50 + type: mk64:course_vtx + count: 23 + offset: 0xf706 + +d_course_frappe_snowland_vertex_0x04011B60: + symbol: d_course_frappe_snowland_vertex_0x04011B60 + type: mk64:course_vtx + count: 49 + offset: 0xf7f4 + +d_course_frappe_snowland_vertex_0x04011D50: + symbol: d_course_frappe_snowland_vertex_0x04011D50 + type: mk64:course_vtx + count: 7 + offset: 0xf9a6 + +d_course_frappe_snowland_vertex_0x04011DC0: + symbol: d_course_frappe_snowland_vertex_0x04011DC0 + type: mk64:course_vtx + count: 50 + offset: 0xfa08 + +d_course_frappe_snowland_vertex_0x04011FC0: + symbol: d_course_frappe_snowland_vertex_0x04011FC0 + type: mk64:course_vtx + count: 22 + offset: 0xfbc8 + +d_course_frappe_snowland_vertex_0x040120C0: + symbol: d_course_frappe_snowland_vertex_0x040120C0 + type: mk64:course_vtx + count: 49 + offset: 0xfca8 + +d_course_frappe_snowland_vertex_0x040122B0: + symbol: d_course_frappe_snowland_vertex_0x040122B0 + type: mk64:course_vtx + count: 50 + offset: 0xfe5a + +d_course_frappe_snowland_vertex_0x040124B0: + symbol: d_course_frappe_snowland_vertex_0x040124B0 + type: mk64:course_vtx + count: 24 + offset: 0x1001a + +d_course_frappe_snowland_vertex_0x040125D0: + symbol: d_course_frappe_snowland_vertex_0x040125D0 + type: mk64:course_vtx + count: 50 + offset: 0x10116 + +d_course_frappe_snowland_vertex_0x040127D0: + symbol: d_course_frappe_snowland_vertex_0x040127D0 + type: mk64:course_vtx + count: 48 + offset: 0x102d6 + +d_course_frappe_snowland_vertex_0x040129B0: + symbol: d_course_frappe_snowland_vertex_0x040129B0 + type: mk64:course_vtx + count: 16 + offset: 0x1047a + +d_course_frappe_snowland_vertex_0x04012A50: + symbol: d_course_frappe_snowland_vertex_0x04012A50 + type: mk64:course_vtx + count: 50 + offset: 0x10506 + +d_course_frappe_snowland_vertex_0x04012C50: + symbol: d_course_frappe_snowland_vertex_0x04012C50 + type: mk64:course_vtx + count: 50 + offset: 0x106c6 + +d_course_frappe_snowland_vertex_0x04012E50: + symbol: d_course_frappe_snowland_vertex_0x04012E50 + type: mk64:course_vtx + count: 4 + offset: 0x10886 + +d_course_frappe_snowland_vertex_0x04012E90: + symbol: d_course_frappe_snowland_vertex_0x04012E90 + type: mk64:course_vtx + count: 48 + offset: 0x108be + +d_course_frappe_snowland_vertex_0x04013070: + symbol: d_course_frappe_snowland_vertex_0x04013070 + type: mk64:course_vtx + count: 50 + offset: 0x10a62 + +d_course_frappe_snowland_vertex_0x04013270: + symbol: d_course_frappe_snowland_vertex_0x04013270 + type: mk64:course_vtx + count: 7 + offset: 0x10c22 + +d_course_frappe_snowland_vertex_0x040132E0: + symbol: d_course_frappe_snowland_vertex_0x040132E0 + type: mk64:course_vtx + count: 49 + offset: 0x10c84 + +d_course_frappe_snowland_vertex_0x040134D0: + symbol: d_course_frappe_snowland_vertex_0x040134D0 + type: mk64:course_vtx + count: 50 + offset: 0x10e36 + +d_course_frappe_snowland_vertex_0x040136D0: + symbol: d_course_frappe_snowland_vertex_0x040136D0 + type: mk64:course_vtx + count: 23 + offset: 0x10ff6 + +d_course_frappe_snowland_vertex_0x040137E0: + symbol: d_course_frappe_snowland_vertex_0x040137E0 + type: mk64:course_vtx + count: 38 + offset: 0x110e4 + +d_course_frappe_snowland_vertex_0x04013980: + symbol: d_course_frappe_snowland_vertex_0x04013980 + type: mk64:course_vtx + count: 34 + offset: 0x11250 + +d_course_frappe_snowland_vertex_0x04013AE0: + symbol: d_course_frappe_snowland_vertex_0x04013AE0 + type: mk64:course_vtx + count: 37 + offset: 0x11384 + +d_course_frappe_snowland_vertex_0x04013C70: + symbol: d_course_frappe_snowland_vertex_0x04013C70 + type: mk64:course_vtx + count: 33 + offset: 0x114e2 + +d_course_frappe_snowland_vertex_0x04013DC0: + symbol: d_course_frappe_snowland_vertex_0x04013DC0 + type: mk64:course_vtx + count: 34 + offset: 0x11608 + +d_course_frappe_snowland_vertex_0x04013F20: + symbol: d_course_frappe_snowland_vertex_0x04013F20 + type: mk64:course_vtx + count: 33 + offset: 0x1173c + +d_course_frappe_snowland_vertex_0x04014070: + symbol: d_course_frappe_snowland_vertex_0x04014070 + type: mk64:course_vtx + count: 50 + offset: 0x11862 + +d_course_frappe_snowland_vertex_0x04014270: + symbol: d_course_frappe_snowland_vertex_0x04014270 + type: mk64:course_vtx + count: 34 + offset: 0x11a22 + +d_course_frappe_snowland_vertex_0x040143D0: + symbol: d_course_frappe_snowland_vertex_0x040143D0 + type: mk64:course_vtx + count: 18 + offset: 0x11b56 + +d_course_frappe_snowland_vertex_0x04014490: + symbol: d_course_frappe_snowland_vertex_0x04014490 + type: mk64:course_vtx + count: 33 + offset: 0x11bfe + +d_course_frappe_snowland_vertex_0x040145E0: + symbol: d_course_frappe_snowland_vertex_0x040145E0 + type: mk64:course_vtx + count: 48 + offset: 0x11d24 + +d_course_frappe_snowland_vertex_0x040147C0: + symbol: d_course_frappe_snowland_vertex_0x040147C0 + type: mk64:course_vtx + count: 9 + offset: 0x11ec8 + +d_course_frappe_snowland_vertex_0x04014850: + symbol: d_course_frappe_snowland_vertex_0x04014850 + type: mk64:course_vtx + count: 50 + offset: 0x11f46 + +d_course_frappe_snowland_vertex_0x04014A50: + symbol: d_course_frappe_snowland_vertex_0x04014A50 + type: mk64:course_vtx + count: 24 + offset: 0x12106 + +d_course_frappe_snowland_vertex_0x04014B70: + symbol: d_course_frappe_snowland_vertex_0x04014B70 + type: mk64:course_vtx + count: 49 + offset: 0x12202 + +d_course_frappe_snowland_vertex_0x04014D60: + symbol: d_course_frappe_snowland_vertex_0x04014D60 + type: mk64:course_vtx + count: 25 + offset: 0x123b4 + +d_course_frappe_snowland_vertex_0x04014E90: + symbol: d_course_frappe_snowland_vertex_0x04014E90 + type: mk64:course_vtx + count: 48 + offset: 0x124be + +d_course_frappe_snowland_vertex_0x04015070: + symbol: d_course_frappe_snowland_vertex_0x04015070 + type: mk64:course_vtx + count: 8 + offset: 0x12662 + +d_course_frappe_snowland_vertex_0x040150F0: + symbol: d_course_frappe_snowland_vertex_0x040150F0 + type: mk64:course_vtx + count: 24 + offset: 0x126d2 + +d_course_frappe_snowland_vertex_0x04015210: + symbol: d_course_frappe_snowland_vertex_0x04015210 + type: mk64:course_vtx + count: 50 + offset: 0x127ce + +d_course_frappe_snowland_vertex_0x04015410: + symbol: d_course_frappe_snowland_vertex_0x04015410 + type: mk64:course_vtx + count: 50 + offset: 0x1298e + +d_course_frappe_snowland_vertex_0x04015610: + symbol: d_course_frappe_snowland_vertex_0x04015610 + type: mk64:course_vtx + count: 50 + offset: 0x12b4e + +d_course_frappe_snowland_vertex_0x04015810: + symbol: d_course_frappe_snowland_vertex_0x04015810 + type: mk64:course_vtx + count: 36 + offset: 0x12d0e diff --git a/yamls/us/models/tracks/kalimari_desert/kalimari_desert_data.yml b/yamls/us/models/tracks/kalimari_desert/kalimari_desert_data.yml new file mode 100644 index 000000000..99367ad21 --- /dev/null +++ b/yamls/us/models/tracks/kalimari_desert/kalimari_desert_data.yml @@ -0,0 +1,2056 @@ +:config: + segments: + - [0x06, 0x8666a0] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/kalimari_desert/kalimari_desert_data.yml" + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureCactus1Left"] + - [0x03009800, "textures/other_textures/gTextureCactus1Right"] + - [0x0300A000, "textures/other_textures/gTextureCactus2Left"] + - [0x0300A800, "textures/other_textures/gTextureCactus2Right"] + - [0x0300B000, "textures/other_textures/gTextureCactus3"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_6684F8"] + - [0x05000800, "textures/other_textures/sign_luigis_0"] + - [0x05001800, "textures/other_textures/sign_luigis_1"] + - [0x05002800, "textures/other_textures/sign_mario_star_0"] + - [0x05003800, "textures/other_textures/sign_mario_star_1"] + - [0x05004800, "textures/other_textures/sign_nintendo_red_0"] + - [0x05005800, "textures/other_textures/sign_nintendo_red_1"] + - [0x05006800, "textures/other_textures/texture_67490C"] + - [0x05007000, "textures/other_textures/sign_yoshi"] + - [0x05008000, "textures/other_textures/checkerboard_blue_gray"] + - [0x05009000, "textures/other_textures/texture_646CA8"] + - [0x0500A000, "textures/other_textures/texture_6473E4"] + - [0x0500B000, "textures/other_textures/texture_647994"] + - [0x0500C000, "textures/other_textures/texture_668920"] + - [0x0500C800, "textures/other_textures/railroad_track"] + - [0x0500D800, "textures/other_textures/railroad_crossing_track"] + - [0x0500E800, "textures/other_textures/texture_67291C"] + - [0x0500F000, "textures/other_textures/fence_barbed_wire"] + - [0x05010000, "textures/other_textures/texture_67D304"] + - [0x05011000, "textures/other_textures/texture_67E010"] + - [0x05011800, "textures/other_textures/texture_67EEAC"] + - [0x05012000, "textures/other_textures/sign_shell_shot_0"] + - [0x05013000, "textures/other_textures/sign_shell_shot_1"] + - [0x05014000, "textures/other_textures/sign_koopa_air_0"] + - [0x05015000, "textures/other_textures/sign_koopa_air_1"] + # Segment 7 + - [0x7000000, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_0"] + - [0x7000068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_68"] + - [0x70000D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_D0"] + - [0x7000138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_138"] + - [0x70001A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1A0"] + - [0x7000208, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_208"] + - [0x7000270, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_270"] + - [0x70002A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2A8"] + - [0x7000358, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_358"] + - [0x70003E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E0"] + - [0x7000458, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_458"] + - [0x7000538, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_538"] + - [0x70005F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5F8"] + - [0x70006A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6A0"] + - [0x7000760, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_760"] + - [0x7000840, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_840"] + - [0x7000900, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_900"] + - [0x7000998, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_998"] + - [0x70009F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F0"] + - [0x7000A08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A08"] + - [0x7000A18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A18"] + - [0x7000A90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A90"] + - [0x7000AF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_AF8"] + - [0x7000B58, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_B58"] + - [0x7000BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_BC8"] + - [0x7000C30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_C30"] + - [0x7000C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_C98"] + - [0x7000CF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_CF8"] + - [0x7000D60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_D60"] + - [0x7000DC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_DC0"] + - [0x7000E20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_E20"] + - [0x7000E80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_E80"] + - [0x7000EE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_EE8"] + - [0x7000F48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_F48"] + - [0x7000FB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_FB8"] + - [0x7001028, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1028"] + - [0x7001098, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1098"] + - [0x7001110, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1110"] + - [0x7001178, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1178"] + - [0x70011E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_11E0"] + - [0x7001248, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1248"] + - [0x70012F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_12F0"] + - [0x70013D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_13D0"] + - [0x70014A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_14A0"] + - [0x7001580, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1580"] + - [0x7001650, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1650"] + - [0x7001678, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1678"] + - [0x7001710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1710"] + - [0x7001898, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1898"] + - [0x70019B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_19B8"] + - [0x7001A78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1A78"] + - [0x7001B18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1B18"] + - [0x7001B48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1B48"] + - [0x7001BE0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1BE0"] + - [0x7001C78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1C78"] + - [0x7001D10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1D10"] + - [0x7001DA8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1DA8"] + - [0x7001E40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1E40"] + - [0x7001ED8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1ED8"] + - [0x7001F10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1F10"] + - [0x7001F78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1F78"] + - [0x7002000, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2000"] + - [0x7002068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2068"] + - [0x70020D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_20D0"] + - [0x7002130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2130"] + - [0x7002198, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2198"] + - [0x70021F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_21F8"] + - [0x7002260, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2260"] + - [0x70022D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_22D0"] + - [0x7002338, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2338"] + - [0x70023C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_23C0"] + - [0x7002430, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2430"] + - [0x70024B0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_24B0"] + - [0x7002528, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2528"] + - [0x7002598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2598"] + - [0x7002620, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2620"] + - [0x7002698, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2698"] + - [0x7002710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2710"] + - [0x7002778, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2778"] + - [0x7002808, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2808"] + - [0x7002878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2878"] + - [0x70028E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_28E8"] + - [0x7002960, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2960"] + - [0x70029F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_29F0"] + - [0x7002AB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2AB8"] + - [0x7002B20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2B20"] + - [0x7002B80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2B80"] + - [0x7002BE0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2BE0"] + - [0x7002C48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2C48"] + - [0x7002CB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2CB8"] + - [0x7002D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2D20"] + - [0x7002D90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2D90"] + - [0x7002DF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2DF8"] + - [0x7002E60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2E60"] + - [0x7002EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2EC8"] + - [0x7002F30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2F30"] + - [0x7002FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2FB0"] + - [0x7003018, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3018"] + - [0x7003080, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3080"] + - [0x70030E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_30E8"] + - [0x7003158, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3158"] + - [0x70031C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_31C0"] + - [0x7003228, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3228"] + - [0x7003298, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3298"] + - [0x7003300, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3300"] + - [0x7003368, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3368"] + - [0x70033D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_33D8"] + - [0x7003440, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3440"] + - [0x70034A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_34A8"] + - [0x7003508, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3508"] + - [0x7003568, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3568"] + - [0x70035D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_35D8"] + - [0x7003640, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3640"] + - [0x70036A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_36A0"] + - [0x7003710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3710"] + - [0x7003780, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3780"] + - [0x70037F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_37F0"] + - [0x7003858, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3858"] + - [0x70038C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_38C8"] + - [0x7003930, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3930"] + - [0x70039A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_39A8"] + - [0x7003A10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3A10"] + - [0x7003A80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3A80"] + - [0x7003AE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3AE8"] + - [0x7003B48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3B48"] + - [0x7003BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3BC8"] + - [0x7003C30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3C30"] + - [0x7003C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3C98"] + - [0x7003D00, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3D00"] + - [0x7003D68, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3D68"] + - [0x7003DC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3DC8"] + - [0x7003E30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E30"] + - [0x7003E90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E90"] + - [0x7004018, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4018"] + - [0x70040D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_40D0"] + - [0x7004130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4130"] + - [0x70041E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_41E8"] + - [0x7004260, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4260"] + - [0x7004350, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4350"] + - [0x7004438, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4438"] + - [0x70044F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_44F0"] + - [0x70045D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_45D8"] + - [0x70046C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_46C0"] + - [0x70047A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_47A8"] + - [0x7004878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4878"] + - [0x7004948, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4948"] + - [0x70049B0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_49B0"] + - [0x7004A10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4A10"] + - [0x7004AA8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4AA8"] + - [0x7004B08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4B08"] + - [0x7004B78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4B78"] + - [0x7004BD8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4BD8"] + - [0x7004C40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4C40"] + - [0x7004CB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4CB0"] + - [0x7004D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4D20"] + - [0x7004D90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4D90"] + - [0x7004DF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4DF8"] + - [0x7004E60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4E60"] + - [0x7004EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4EC8"] + - [0x7004F40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4F40"] + - [0x7004FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4FB0"] + - [0x7005020, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5020"] + - [0x7005090, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5090"] + - [0x7005100, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5100"] + - [0x7005170, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5170"] + - [0x70051D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_51D0"] + - [0x7005238, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5238"] + - [0x70052E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_52E0"] + - [0x7005360, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5360"] + - [0x70053D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_53D0"] + - [0x7005450, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5450"] + - [0x70054C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_54C8"] + - [0x7005580, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5580"] + - [0x70055F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_55F0"] + - [0x70056A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_56A0"] + - [0x7005728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5728"] + - [0x70057D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_57D0"] + - [0x7005878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5878"] + - [0x7005948, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5948"] + - [0x70059F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_59F0"] + - [0x7005A60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5A60"] + - [0x7005B00, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5B00"] + - [0x7005B88, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5B88"] + - [0x7005C20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5C20"] + - [0x7005C90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5C90"] + - [0x7005D30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5D30"] + - [0x7005DB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5DB0"] + - [0x7005E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5E38"] + - [0x7005EB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5EB0"] + - [0x7005F28, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5F28"] + - [0x7005FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5FB0"] + - [0x7006050, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6050"] + - [0x70060C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_60C8"] + - [0x7006130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6130"] + - [0x70061D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_61D8"] + - [0x7006290, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6290"] + - [0x7006310, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6310"] + - [0x70063C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_63C0"] + - [0x7006490, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6490"] + - [0x7006530, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6530"] + - [0x70065F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_65F0"] + - [0x70066C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_66C8"] + - [0x7006780, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6780"] + - [0x7006820, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6820"] + - [0x70068E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_68E0"] + - [0x7006958, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6958"] + - [0x70069F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_69F8"] + - [0x7006A78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6A78"] + - [0x7006B28, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6B28"] + - [0x7006BC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6BC0"] + - [0x7006C70, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6C70"] + - [0x7006CF0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6CF0"] + - [0x7006DA0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6DA0"] + - [0x7006E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6E38"] + - [0x7006EE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6EE8"] + - [0x7006F70, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6F70"] + - [0x70070F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_70F8"] + - [0x70071C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_71C8"] + - [0x70071D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_71D8"] + - [0x70072B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_72B8"] + - [0x70073A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_73A8"] + - [0x70074A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_74A8"] + - [0x7007598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7598"] + - [0x70075C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_75C0"] + - [0x70076C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_76C0"] + - [0x7007728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7728"] + - [0x70077F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_77F8"] + - [0x7007890, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7890"] + - [0x70079F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_79F8"] + - [0x7007BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7BC8"] + - [0x7007CC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7CC8"] + - [0x7007E18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7E18"] + - [0x7007F80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7F80"] + - [0x70080B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_80B8"] + - [0x70081A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_81A0"] + - [0x7008330, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8330"] + - [0x7008398, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8398"] + - [0x7008418, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8418"] + - [0x7008490, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8490"] + - [0x7008508, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8508"] + - [0x70085A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_85A0"] + - [0x7008610, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8610"] + - [0x7008690, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8690"] + - [0x7008728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8728"] + - [0x7008798, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8798"] + - [0x7008808, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8808"] + - [0x7008888, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8888"] + - [0x7008920, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8920"] + - [0x7008990, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8990"] + - [0x7008A40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8A40"] + - [0x7008AC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8AC8"] + - [0x7008B60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8B60"] + - [0x7008C08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8C08"] + - [0x7008C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8C98"] + - [0x7008D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8D20"] + - [0x7008D98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8D98"] + - [0x7008E20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8E20"] + - [0x7008EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8EC8"] + - [0x7008F50, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8F50"] + - [0x7008FF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8FF8"] + - [0x7009068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9068"] + - [0x70090D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_90D8"] + - [0x7009138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9138"] + - [0x70091A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_91A8"] + - [0x7009210, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9210"] + - [0x7009280, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9280"] + - [0x70092F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_92F8"] + - [0x7009368, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9368"] + - [0x70093F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_93F0"] + - [0x7009480, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9480"] + - [0x7009510, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9510"] + - [0x7009598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9598"] + - [0x7009630, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9630"] + - [0x70096A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_96A8"] + - [0x7009740, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9740"] + - [0x70097B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_97B8"] + - [0x7009820, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9820"] + - [0x70098E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_98E0"] + - [0x7009958, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9958"] + - [0x70099D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_99D8"] + - [0x7009A68, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9A68"] + - [0x7009B10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9B10"] + - [0x7009BD8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9BD8"] + - [0x7009C50, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9C50"] + - [0x7009CC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9CC0"] + - [0x7009D48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9D48"] + - [0x7009DC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9DC0"] + - [0x7009E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9E38"] + - [0x7009EB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9EB0"] + - [0x7009F20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F20"] + - [0x7009F88, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F88"] + - [0x7009FE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9FE8"] + - [0x700A050, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A050"] + - [0x700A0C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A0C0"] + - [0x700A138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A138"] + - [0x700A1A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A1A0"] + - [0x700A228, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A228"] + - [0x700A2D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A2D0"] + - [0x700A350, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A350"] + - [0x700A3D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A3D8"] + - [0x700A458, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A458"] + - [0x700A4D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A4D0"] + - [0x700A548, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A548"] + - [0x700A5F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A5F0"] + - [0x700A670, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A670"] + - [0x700A680, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A680"] + # Segment 4 + - [0x4000000, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000000"] + - [0x4000080, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000080"] + - [0x4000100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000100"] + - [0x4000180, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000180"] + - [0x4000200, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000200"] + - [0x4000280, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000280"] + - [0x4000300, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000300"] + - [0x4000500, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000500"] + - [0x4000580, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000580"] + - [0x4000700, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000700"] + - [0x4000800, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000800"] + - [0x40009e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040009E0"] + - [0x4000b00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000B00"] + - [0x4000ce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000CE0"] + - [0x4000d40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000D40"] + - [0x4000f40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000F40"] + - [0x4001120, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001120"] + - [0x4001180, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001180"] + - [0x4001360, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001360"] + - [0x4001480, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001480"] + - [0x4001660, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001660"] + - [0x40016c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040016C0"] + - [0x4001880, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001880"] + - [0x40018c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040018C0"] + - [0x4001920, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001920"] + - [0x40019b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040019B0"] + - [0x4001a10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001A10"] + - [0x4001b00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001B00"] + - [0x4001b90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001B90"] + - [0x4001c00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001C00"] + - [0x4001c60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001C60"] + - [0x4001cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001CF0"] + - [0x4001d50, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001D50"] + - [0x4001db0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001DB0"] + - [0x4001e10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001E10"] + - [0x4001eb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001EB0"] + - [0x4001ee0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001EE0"] + - [0x4001fc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001FC0"] + - [0x40020c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040020C0"] + - [0x40021e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040021E0"] + - [0x4002340, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002340"] + - [0x40023f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040023F0"] + - [0x4002470, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002470"] + - [0x4002500, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002500"] + - [0x4002630, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002630"] + - [0x4002790, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002790"] + - [0x4002890, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002890"] + - [0x4002990, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002990"] + - [0x4002a70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002A70"] + - [0x4002b70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002B70"] + - [0x4002c30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002C30"] + - [0x4002cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002CF0"] + - [0x4002eb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002EB0"] + - [0x4003090, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003090"] + - [0x4003290, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003290"] + - [0x4003460, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003460"] + - [0x4003660, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003660"] + - [0x4003830, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003830"] + - [0x4003a30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003A30"] + - [0x4003ab0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003AB0"] + - [0x4003c70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003C70"] + - [0x4003cb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003CB0"] + - [0x4003cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003CF0"] + - [0x4003d30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003D30"] + - [0x4003d70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003D70"] + - [0x4003db0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003DB0"] + - [0x4003df0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003DF0"] + - [0x4003e30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003E30"] + - [0x4003e70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003E70"] + - [0x4003eb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003EB0"] + - [0x4003ef0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003EF0"] + - [0x4003f30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003F30"] + - [0x4003f70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003F70"] + - [0x4003ff0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003FF0"] + - [0x4004170, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004170"] + - [0x40041f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040041F0"] + - [0x4004270, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004270"] + - [0x40042b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040042B0"] + - [0x4004330, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004330"] + - [0x4004370, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004370"] + - [0x40043f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040043F0"] + - [0x40044b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040044B0"] + - [0x4004530, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004530"] + - [0x40046b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040046B0"] + - [0x4004770, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004770"] + - [0x40048b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040048B0"] + - [0x40049b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040049B0"] + - [0x4004a70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004A70"] + - [0x4004be0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004BE0"] + - [0x4004ce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004CE0"] + - [0x4004e20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004E20"] + - [0x4004ea0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004EA0"] + - [0x4005060, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005060"] + - [0x4005120, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005120"] + - [0x40051e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040051E0"] + - [0x40052d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040052D0"] + - [0x4005490, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005490"] + - [0x4005550, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005550"] + - [0x40055b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040055B0"] + - [0x4005610, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005610"] + - [0x4005690, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005690"] + - [0x4005760, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005760"] + - [0x40057e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040057E0"] + - [0x40058c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040058C0"] + - [0x4005970, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005970"] + - [0x4005a00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005A00"] + - [0x4005a90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005A90"] + - [0x4005b50, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005B50"] + - [0x4005cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005CF0"] + - [0x4005d70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005D70"] + - [0x4005e20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005E20"] + - [0x4005ea0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005EA0"] + - [0x4005f80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005F80"] + - [0x4006010, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006010"] + - [0x40060d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040060D0"] + - [0x40061b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040061B0"] + - [0x4006240, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006240"] + - [0x40062d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040062D0"] + - [0x40063b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040063B0"] + - [0x4006430, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006430"] + - [0x40064d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040064D0"] + - [0x4006520, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006520"] + - [0x4006570, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006570"] + - [0x4006680, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006680"] + - [0x4006740, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006740"] + - [0x40067a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040067A0"] + - [0x4006880, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006880"] + - [0x4006990, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006990"] + - [0x4006a70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006A70"] + - [0x4006b30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006B30"] + - [0x4006c40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006C40"] + - [0x4006d00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006D00"] + - [0x4006e30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006E30"] + - [0x4006ef0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006EF0"] + - [0x4006fd0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006FD0"] + - [0x4007070, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007070"] + - [0x40070c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040070C0"] + - [0x4007260, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007260"] + - [0x40072d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040072D0"] + - [0x4007390, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007390"] + - [0x4007440, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007440"] + - [0x40074f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040074F0"] + - [0x4007550, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007550"] + - [0x40075e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040075E0"] + - [0x4007640, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007640"] + - [0x4007680, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007680"] + - [0x4007700, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007700"] + - [0x4007740, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007740"] + - [0x4007780, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007780"] + - [0x4007800, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007800"] + - [0x40078a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040078A0"] + - [0x4007960, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007960"] + - [0x4007a60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007A60"] + - [0x4007b60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007B60"] + - [0x4007c60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007C60"] + - [0x4007ca0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007CA0"] + - [0x4007d20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007D20"] + - [0x4007de0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007DE0"] + - [0x4007ee0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007EE0"] + - [0x4007fa0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007FA0"] + - [0x40080a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040080A0"] + - [0x4008160, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008160"] + - [0x4008270, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008270"] + - [0x40082f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040082F0"] + - [0x40083b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040083B0"] + - [0x4008470, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008470"] + - [0x4008510, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008510"] + - [0x4008550, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008550"] + - [0x4008590, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008590"] + - [0x40085d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040085D0"] + - [0x4008630, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008630"] + - [0x4008710, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008710"] + - [0x4008750, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008750"] + - [0x40087f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040087F0"] + - [0x4008910, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008910"] + - [0x40089e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040089E0"] + - [0x4008ab0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008AB0"] + - [0x4008b30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008B30"] + - [0x4008bf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008BF0"] + - [0x4008c80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008C80"] + - [0x4008da0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008DA0"] + - [0x4008e70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008E70"] + - [0x4008f50, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008F50"] + - [0x4009010, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009010"] + - [0x4009100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009100"] + - [0x40091c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040091C0"] + - [0x4009200, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009200"] + - [0x40092a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040092A0"] + - [0x4009420, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009420"] + - [0x40094f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040094F0"] + - [0x40096c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040096C0"] + - [0x4009820, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009820"] + - [0x4009a20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009A20"] + - [0x4009bc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009BC0"] + - [0x4009c80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009C80"] + - [0x4009e80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009E80"] + - [0x4009f40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009F40"] + - [0x400a140, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A140"] + - [0x400a330, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A330"] + - [0x400a450, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A450"] + - [0x400a640, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A640"] + - [0x400a6b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A6B0"] + - [0x400a890, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A890"] + - [0x400aa70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AA70"] + - [0x400aaf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AAF0"] + - [0x400acf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400ACF0"] + - [0x400ade0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400ADE0"] + - [0x400aee0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AEE0"] + - [0x400b0d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B0D0"] + - [0x400b190, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B190"] + - [0x400b370, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B370"] + - [0x400b550, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B550"] + - [0x400b5b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B5B0"] + - [0x400b6c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B6C0"] + - [0x400b8b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B8B0"] + - [0x400b940, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B940"] + - [0x400bae0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BAE0"] + - [0x400bce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BCE0"] + - [0x400be20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BE20"] + - [0x400bf60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BF60"] + - [0x400c150, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C150"] + - [0x400c340, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C340"] + - [0x400c400, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C400"] + - [0x400c520, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C520"] + - [0x400c5a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C5A0"] + - [0x400c780, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C780"] + - [0x400c860, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C860"] + - [0x400ca40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CA40"] + - [0x400cbe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CBE0"] + - [0x400cda0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CDA0"] + - [0x400cf90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CF90"] + - [0x400d100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D100"] + - [0x400d2e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D2E0"] + - [0x400d4d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D4D0"] + - [0x400d590, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D590"] + - [0x400d790, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D790"] + - [0x400d840, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D840"] + - [0x400da40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DA40"] + - [0x400dc30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DC30"] + - [0x400de10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DE10"] + - [0x400e000, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E000"] + - [0x400e060, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E060"] + - [0x400e260, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E260"] + - [0x400e430, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E430"] + - [0x400e610, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E610"] + - [0x400e690, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E690"] + - [0x400e880, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E880"] + - [0x400ea80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EA80"] + - [0x400ebe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EBE0"] + - [0x400edd0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EDD0"] + - [0x400ee60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EE60"] + - [0x400f000, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F000"] + - [0x400f200, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F200"] + - [0x400f330, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F330"] + - [0x400f510, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F510"] + - [0x400f5a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F5A0"] + - [0x400f780, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F780"] + - [0x400f8a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F8A0"] + - [0x400fa30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FA30"] + - [0x400fc20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FC20"] + - [0x400fd90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FD90"] + - [0x400ff80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FF80"] + - [0x400ffe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FFE0"] + - [0x40101e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040101E0"] + - [0x4010310, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010310"] + - [0x4010500, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010500"] + - [0x4010700, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010700"] + - [0x4010780, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010780"] + - [0x40108e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040108E0"] + - [0x40109e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040109E0"] + - [0x4010b20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010B20"] + - [0x4010c60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010C60"] + - [0x4010de0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010DE0"] + - [0x4010f60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010F60"] + - [0x40110a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040110A0"] + - [0x40111e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040111E0"] + - [0x40112e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040112E0"] + - [0x40114e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040114E0"] + - [0x4011560, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011560"] + - [0x40115e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040115E0"] + - [0x40116e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040116E0"] + - [0x4011860, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011860"] + - [0x40119e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040119E0"] + - [0x4011be0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011BE0"] + - [0x4011de0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011DE0"] + - [0x4011fe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011FE0"] + - [0x40121e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040121E0"] + - [0x40123e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040123E0"] + - [0x4012440, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012440"] + - [0x4012540, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012540"] + - [0x4012740, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012740"] + - [0x40128c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040128C0"] + - [0x4012ac0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012AC0"] + - [0x4012b80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012B80"] + - [0x4012d00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012D00"] + - [0x4012f00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012F00"] + - [0x4013100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013100"] + - [0x4013280, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013280"] + - [0x4013480, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013480"] + - [0x4013520, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013520"] + - [0x40135e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040135E0"] + - [0x4013760, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013760"] + - [0x40138a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040138A0"] + - [0x4013aa0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013AA0"] + - [0x4013b20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013B20"] + - [0x4013b80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013B80"] + - [0x4013cc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013CC0"] + - [0x4013dc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013DC0"] + - [0x4013ec0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013EC0"] + - [0x40140c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040140C0"] + - [0x4014180, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014180"] + - [0x40142c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040142C0"] + - [0x4014300, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014300"] + - [0x4014340, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014340"] + - [0x4014400, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014400"] + - [0x40144c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040144C0"] + - [0x4014600, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014600"] + - [0x4014800, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014800"] + - [0x40148c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040148C0"] + - [0x4014ac0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014AC0"] + - [0x4014b40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014B40"] + - [0x4014cc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014CC0"] + - [0x4014ec0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014EC0"] + - [0x40150c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040150C0"] + - [0x4015100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015100"] + - [0x40152c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040152C0"] + - [0x4015440, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015440"] + - [0x4015540, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015540"] + - [0x40156c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040156C0"] + - [0x4015820, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015820"] + - [0x4015a20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015A20"] + - [0x4015a60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015A60"] + - [0x4015b20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015B20"] + - [0x4015be0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015BE0"] + - [0x4015c20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015C20"] + - [0x4015ce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015CE0"] + - [0x4015d60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015D60"] + - [0x4015e20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015E20"] + - [0x4015f20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015F20"] + - [0x4015fe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015FE0"] + - [0x4016160, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016160"] + - [0x40162d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040162D0"] + - [0x4016490, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016490"] + - [0x4016610, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016610"] + - [0x4016810, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016810"] + - [0x4016910, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016910"] + - [0x4016b10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016B10"] + - [0x4016c10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016C10"] + - [0x4016c90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016C90"] + - [0x4016e90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016E90"] + - [0x4016f90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016F90"] + - [0x4017090, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017090"] + - [0x40171d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040171D0"] + - [0x4017360, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017360"] + - [0x4017560, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017560"] + - [0x40175a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040175A0"] + - [0x4017720, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017720"] + - [0x40177f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040177F0"] + - [0x40179e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040179E0"] + - [0x4017b60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017B60"] + - [0x4017ce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017CE0"] + - [0x4017e30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017E30"] + - [0x4017f20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017F20"] + - [0x4017fb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017FB0"] + - [0x4018010, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018010"] + - [0x40180d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040180D0"] + - [0x40181a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040181A0"] + - [0x4018280, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018280"] + - [0x4018310, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018310"] + - [0x4018500, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018500"] + - [0x4018700, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018700"] + - [0x4018790, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018790"] + - [0x4018950, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018950"] + - [0x4018b40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018B40"] + - [0x4018cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018CF0"] + - [0x4018e30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018E30"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_kalimari_desert_dl_0: + symbol: d_course_kalimari_desert_dl_0 + type: gfx + offset: 0x0 + otr_mode: index +d_course_kalimari_desert_dl_100: + symbol: d_course_kalimari_desert_dl_100 + type: gfx + offset: 0x100 + otr_mode: index +d_course_kalimari_desert_dl_258: + symbol: d_course_kalimari_desert_dl_258 + type: gfx + offset: 0x258 + otr_mode: index +d_course_kalimari_desert_dl_310: + symbol: d_course_kalimari_desert_dl_310 + type: gfx + offset: 0x310 + otr_mode: index +d_course_kalimari_desert_dl_4A0: + symbol: d_course_kalimari_desert_dl_4A0 + type: gfx + offset: 0x4a0 + otr_mode: index +d_course_kalimari_desert_dl_5C0: + symbol: d_course_kalimari_desert_dl_5C0 + type: gfx + offset: 0x5c0 + otr_mode: index +d_course_kalimari_desert_dl_778: + symbol: d_course_kalimari_desert_dl_778 + type: gfx + offset: 0x778 + otr_mode: index +d_course_kalimari_desert_dl_858: + symbol: d_course_kalimari_desert_dl_858 + type: gfx + offset: 0x858 + otr_mode: index +d_course_kalimari_desert_dl_A58: + symbol: d_course_kalimari_desert_dl_A58 + type: gfx + offset: 0xa58 + otr_mode: index +d_course_kalimari_desert_dl_B38: + symbol: d_course_kalimari_desert_dl_B38 + type: gfx + offset: 0xb38 + otr_mode: index +d_course_kalimari_desert_dl_CD0: + symbol: d_course_kalimari_desert_dl_CD0 + type: gfx + offset: 0xcd0 + otr_mode: index +d_course_kalimari_desert_dl_DD0: + symbol: d_course_kalimari_desert_dl_DD0 + type: gfx + offset: 0xdd0 + otr_mode: index +d_course_kalimari_desert_dl_F68: + symbol: d_course_kalimari_desert_dl_F68 + type: gfx + offset: 0xf68 + otr_mode: index +d_course_kalimari_desert_dl_1030: + symbol: d_course_kalimari_desert_dl_1030 + type: gfx + offset: 0x1030 + otr_mode: index +d_course_kalimari_desert_dl_1258: + symbol: d_course_kalimari_desert_dl_1258 + type: gfx + offset: 0x1258 + otr_mode: index +d_course_kalimari_desert_dl_1350: + symbol: d_course_kalimari_desert_dl_1350 + type: gfx + offset: 0x1350 + otr_mode: index +d_course_kalimari_desert_dl_14C0: + symbol: d_course_kalimari_desert_dl_14C0 + type: gfx + offset: 0x14c0 + otr_mode: index +d_course_kalimari_desert_dl_1588: + symbol: d_course_kalimari_desert_dl_1588 + type: gfx + offset: 0x1588 + otr_mode: index +d_course_kalimari_desert_dl_17C8: + symbol: d_course_kalimari_desert_dl_17C8 + type: gfx + offset: 0x17c8 + otr_mode: index +d_course_kalimari_desert_dl_18C8: + symbol: d_course_kalimari_desert_dl_18C8 + type: gfx + offset: 0x18c8 + otr_mode: index +d_course_kalimari_desert_dl_1A58: + symbol: d_course_kalimari_desert_dl_1A58 + type: gfx + offset: 0x1a58 + otr_mode: index +d_course_kalimari_desert_dl_1B38: + symbol: d_course_kalimari_desert_dl_1B38 + type: gfx + offset: 0x1b38 + otr_mode: index +d_course_kalimari_desert_dl_1D48: + symbol: d_course_kalimari_desert_dl_1D48 + type: gfx + offset: 0x1d48 + otr_mode: index +d_course_kalimari_desert_dl_1E80: + symbol: d_course_kalimari_desert_dl_1E80 + type: gfx + offset: 0x1e80 + otr_mode: index +d_course_kalimari_desert_dl_2000: + symbol: d_course_kalimari_desert_dl_2000 + type: gfx + offset: 0x2000 + otr_mode: index +d_course_kalimari_desert_dl_20E0: + symbol: d_course_kalimari_desert_dl_20E0 + type: gfx + offset: 0x20e0 + otr_mode: index +d_course_kalimari_desert_dl_22D8: + symbol: d_course_kalimari_desert_dl_22D8 + type: gfx + offset: 0x22d8 + otr_mode: index +d_course_kalimari_desert_dl_2458: + symbol: d_course_kalimari_desert_dl_2458 + type: gfx + offset: 0x2458 + otr_mode: index +d_course_kalimari_desert_dl_25D0: + symbol: d_course_kalimari_desert_dl_25D0 + type: gfx + offset: 0x25d0 + otr_mode: index +d_course_kalimari_desert_dl_26E8: + symbol: d_course_kalimari_desert_dl_26E8 + type: gfx + offset: 0x26e8 + otr_mode: index +d_course_kalimari_desert_dl_2868: + symbol: d_course_kalimari_desert_dl_2868 + type: gfx + offset: 0x2868 + otr_mode: index +d_course_kalimari_desert_dl_29C0: + symbol: d_course_kalimari_desert_dl_29C0 + type: gfx + offset: 0x29c0 + otr_mode: index +d_course_kalimari_desert_dl_2B40: + symbol: d_course_kalimari_desert_dl_2B40 + type: gfx + offset: 0x2b40 + otr_mode: index +d_course_kalimari_desert_dl_2C88: + symbol: d_course_kalimari_desert_dl_2C88 + type: gfx + offset: 0x2c88 + otr_mode: index +d_course_kalimari_desert_dl_2DE8: + symbol: d_course_kalimari_desert_dl_2DE8 + type: gfx + offset: 0x2de8 + otr_mode: index +d_course_kalimari_desert_dl_2F30: + symbol: d_course_kalimari_desert_dl_2F30 + type: gfx + offset: 0x2f30 + otr_mode: index +d_course_kalimari_desert_dl_3068: + symbol: d_course_kalimari_desert_dl_3068 + type: gfx + offset: 0x3068 + otr_mode: index +d_course_kalimari_desert_dl_31C0: + symbol: d_course_kalimari_desert_dl_31C0 + type: gfx + offset: 0x31c0 + otr_mode: index +d_course_kalimari_desert_dl_32F8: + symbol: d_course_kalimari_desert_dl_32F8 + type: gfx + offset: 0x32f8 + otr_mode: index +d_course_kalimari_desert_dl_3460: + symbol: d_course_kalimari_desert_dl_3460 + type: gfx + offset: 0x3460 + otr_mode: index +d_course_kalimari_desert_dl_3590: + symbol: d_course_kalimari_desert_dl_3590 + type: gfx + offset: 0x3590 + otr_mode: index +d_course_kalimari_desert_dl_3718: + symbol: d_course_kalimari_desert_dl_3718 + type: gfx + offset: 0x3718 + otr_mode: index +d_course_kalimari_desert_dl_3818: + symbol: d_course_kalimari_desert_dl_3818 + type: gfx + offset: 0x3818 + otr_mode: index +d_course_kalimari_desert_dl_3998: + symbol: d_course_kalimari_desert_dl_3998 + type: gfx + offset: 0x3998 + otr_mode: index +d_course_kalimari_desert_dl_3AC0: + symbol: d_course_kalimari_desert_dl_3AC0 + type: gfx + offset: 0x3ac0 + otr_mode: index +d_course_kalimari_desert_dl_3CA0: + symbol: d_course_kalimari_desert_dl_3CA0 + type: gfx + offset: 0x3ca0 + otr_mode: index +d_course_kalimari_desert_dl_3DB8: + symbol: d_course_kalimari_desert_dl_3DB8 + type: gfx + offset: 0x3db8 + otr_mode: index +d_course_kalimari_desert_dl_3FB0: + symbol: d_course_kalimari_desert_dl_3FB0 + type: gfx + offset: 0x3fb0 + otr_mode: index +d_course_kalimari_desert_dl_40A8: + symbol: d_course_kalimari_desert_dl_40A8 + type: gfx + offset: 0x40a8 + otr_mode: index +d_course_kalimari_desert_dl_4280: + symbol: d_course_kalimari_desert_dl_4280 + type: gfx + offset: 0x4280 + otr_mode: index +d_course_kalimari_desert_dl_4358: + symbol: d_course_kalimari_desert_dl_4358 + type: gfx + offset: 0x4358 + otr_mode: index +d_course_kalimari_desert_dl_4538: + symbol: d_course_kalimari_desert_dl_4538 + type: gfx + offset: 0x4538 + otr_mode: index +d_course_kalimari_desert_dl_4630: + symbol: d_course_kalimari_desert_dl_4630 + type: gfx + offset: 0x4630 + otr_mode: index +d_course_kalimari_desert_dl_4908: + symbol: d_course_kalimari_desert_dl_4908 + type: gfx + offset: 0x4908 + otr_mode: index +d_course_kalimari_desert_dl_49E0: + symbol: d_course_kalimari_desert_dl_49E0 + type: gfx + offset: 0x49e0 + otr_mode: index +d_course_kalimari_desert_dl_4BA0: + symbol: d_course_kalimari_desert_dl_4BA0 + type: gfx + offset: 0x4ba0 + otr_mode: index +d_course_kalimari_desert_dl_4CF0: + symbol: d_course_kalimari_desert_dl_4CF0 + type: gfx + offset: 0x4cf0 + otr_mode: index +d_course_kalimari_desert_dl_4EF8: + symbol: d_course_kalimari_desert_dl_4EF8 + type: gfx + offset: 0x4ef8 + otr_mode: index +d_course_kalimari_desert_dl_4FB0: + symbol: d_course_kalimari_desert_dl_4FB0 + type: gfx + offset: 0x4fb0 + otr_mode: index +d_course_kalimari_desert_dl_5100: + symbol: d_course_kalimari_desert_dl_5100 + type: gfx + offset: 0x5100 + otr_mode: index +d_course_kalimari_desert_dl_5208: + symbol: d_course_kalimari_desert_dl_5208 + type: gfx + offset: 0x5208 + otr_mode: index +d_course_kalimari_desert_dl_53A0: + symbol: d_course_kalimari_desert_dl_53A0 + type: gfx + offset: 0x53a0 + otr_mode: index +d_course_kalimari_desert_dl_5470: + symbol: d_course_kalimari_desert_dl_5470 + type: gfx + offset: 0x5470 + otr_mode: index +d_course_kalimari_desert_dl_55C8: + symbol: d_course_kalimari_desert_dl_55C8 + type: gfx + offset: 0x55c8 + otr_mode: index +d_course_kalimari_desert_dl_5730: + symbol: d_course_kalimari_desert_dl_5730 + type: gfx + offset: 0x5730 + otr_mode: index +d_course_kalimari_desert_dl_5898: + symbol: d_course_kalimari_desert_dl_5898 + type: gfx + offset: 0x5898 + otr_mode: index +d_course_kalimari_desert_dl_5978: + symbol: d_course_kalimari_desert_dl_5978 + type: gfx + offset: 0x5978 + otr_mode: index +d_course_kalimari_desert_dl_5AD0: + symbol: d_course_kalimari_desert_dl_5AD0 + type: gfx + offset: 0x5ad0 + otr_mode: index +d_course_kalimari_desert_dl_5BE8: + symbol: d_course_kalimari_desert_dl_5BE8 + type: gfx + offset: 0x5be8 + otr_mode: index +d_course_kalimari_desert_dl_5D20: + symbol: d_course_kalimari_desert_dl_5D20 + type: gfx + offset: 0x5d20 + otr_mode: index +d_course_kalimari_desert_dl_5DF8: + symbol: d_course_kalimari_desert_dl_5DF8 + type: gfx + offset: 0x5df8 + otr_mode: index +d_course_kalimari_desert_dl_5F20: + symbol: d_course_kalimari_desert_dl_5F20 + type: gfx + offset: 0x5f20 + otr_mode: index +d_course_kalimari_desert_dl_6028: + symbol: d_course_kalimari_desert_dl_6028 + type: gfx + offset: 0x6028 + otr_mode: index +d_course_kalimari_desert_dl_61B0: + symbol: d_course_kalimari_desert_dl_61B0 + type: gfx + offset: 0x61b0 + otr_mode: index +d_course_kalimari_desert_dl_62F8: + symbol: d_course_kalimari_desert_dl_62F8 + type: gfx + offset: 0x62f8 + otr_mode: index +d_course_kalimari_desert_dl_63E0: + symbol: d_course_kalimari_desert_dl_63E0 + type: gfx + offset: 0x63e0 + otr_mode: index +d_course_kalimari_desert_dl_65B0: + symbol: d_course_kalimari_desert_dl_65B0 + type: gfx + offset: 0x65b0 + otr_mode: index +d_course_kalimari_desert_dl_66F0: + symbol: d_course_kalimari_desert_dl_66F0 + type: gfx + offset: 0x66f0 + otr_mode: index +d_course_kalimari_desert_dl_6838: + symbol: d_course_kalimari_desert_dl_6838 + type: gfx + offset: 0x6838 + otr_mode: index +d_course_kalimari_desert_dl_6940: + symbol: d_course_kalimari_desert_dl_6940 + type: gfx + offset: 0x6940 + otr_mode: index +d_course_kalimari_desert_cactus_model1: + symbol: d_course_kalimari_desert_cactus_model1 + type: vtx + offset: 0x8468 + count: 8 +d_course_kalimari_desert_cactus_model2: + symbol: d_course_kalimari_desert_cactus_model2 + type: vtx + offset: 0x84e8 + count: 8 +d_course_kalimari_desert_dl_cactus1: + symbol: d_course_kalimari_desert_dl_cactus1 + type: gfx + offset: 0x8528 +d_course_kalimari_desert_dl_cactus2: + symbol: d_course_kalimari_desert_dl_cactus2 + type: gfx + offset: 0x8628 +d_course_kalimari_desert_dl_cactus3: + symbol: d_course_kalimari_desert_dl_cactus3 + type: gfx + offset: 0x8728 +d_course_kalimari_desert_crossing_signal_active_model: + symbol: d_course_kalimari_desert_crossing_signal_active_model + type: vtx + offset: 0x107e8 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model1: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model1 + type: vtx + offset: 0x10828 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model2: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model2 + type: vtx + offset: 0x10868 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model3: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model3 + type: vtx + offset: 0x108a8 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model4: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model4 + type: vtx + offset: 0x108e8 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model5: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model5 + type: vtx + offset: 0x10928 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model6: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model6 + type: vtx + offset: 0x10968 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model7: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model7 + type: vtx + offset: 0x109a8 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model8: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model8 + type: vtx + offset: 0x109e8 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model9: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model9 + type: vtx + offset: 0x10a28 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model10: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model10 + type: vtx + offset: 0x10a68 + count: 4 +d_course_kalimari_desert_crossing_signal_unknown_model11: + symbol: d_course_kalimari_desert_crossing_signal_unknown_model11 + type: vtx + offset: 0x10aa8 + count: 4 +d_course_kalimari_desert_dl_crossing_right_active: + symbol: d_course_kalimari_desert_dl_crossing_right_active + type: gfx + offset: 0x10ae8 +d_course_kalimari_desert_dl_crossing_left_active: + symbol: d_course_kalimari_desert_dl_crossing_left_active + type: gfx + offset: 0x10c10 +d_course_kalimari_desert_dl_crossing_both_inactive: + symbol: d_course_kalimari_desert_dl_crossing_both_inactive + type: gfx + offset: 0x10d38 +d_course_kalimari_desert_locomotive_model_lod2: + symbol: d_course_kalimari_desert_locomotive_model_lod2 + type: vtx + offset: 0x19e60 + count: 10 +d_course_kalimari_desert_unknown_lod2_locomotive_model1: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model1 + type: vtx + offset: 0x19f00 + count: 8 +d_course_kalimari_desert_unknown_lod2_locomotive_model2: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model2 + type: vtx + offset: 0x19f80 + count: 8 +d_course_kalimari_desert_unknown_lod2_locomotive_model3: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model3 + type: vtx + offset: 0x1a000 + count: 30 +d_course_kalimari_desert_unknown_lod2_locomotive_model4: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model4 + type: vtx + offset: 0x1a1e0 + count: 32 +d_course_kalimari_desert_unknown_lod2_locomotive_model5: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model5 + type: vtx + offset: 0x1a3e0 + count: 30 +d_course_kalimari_desert_unknown_lod2_locomotive_model6: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model6 + type: vtx + offset: 0x1a5c0 + count: 4 +d_course_kalimari_desert_unknown_lod2_locomotive_model7: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model7 + type: vtx + offset: 0x1a600 + count: 32 +d_course_kalimari_desert_unknown_lod2_locomotive_model8: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model8 + type: vtx + offset: 0x1a800 + count: 6 +d_course_kalimari_desert_unknown_lod2_locomotive_model9: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model9 + type: vtx + offset: 0x1a860 + count: 6 +d_course_kalimari_desert_unknown_lod2_locomotive_model10: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model10 + type: vtx + offset: 0x1a8c0 + count: 4 +d_course_kalimari_desert_unknown_lod2_locomotive_model11: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model11 + type: vtx + offset: 0x1a900 + count: 28 +d_course_kalimari_desert_unknown_lod2_locomotive_model12: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model12 + type: vtx + offset: 0x1aac0 + count: 6 +d_course_kalimari_desert_unknown_lod2_locomotive_model13: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model13 + type: vtx + offset: 0x1ab20 + count: 12 +d_course_kalimari_desert_unknown_lod2_locomotive_model14: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model14 + type: vtx + offset: 0x1abe0 + count: 31 +d_course_kalimari_desert_unknown_lod2_locomotive_model15: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model15 + type: vtx + offset: 0x1add0 + count: 32 +d_course_kalimari_desert_unknown_lod2_locomotive_model16: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model16 + type: vtx + offset: 0x1afd0 + count: 16 +d_course_kalimari_desert_unknown_lod2_locomotive_model17: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model17 + type: vtx + offset: 0x1b0d0 + count: 32 +d_course_kalimari_desert_unknown_lod2_locomotive_model18: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model18 + type: vtx + offset: 0x1b2d0 + count: 12 +d_course_kalimari_desert_unknown_lod2_locomotive_model19: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model19 + type: vtx + offset: 0x1b390 + count: 31 +d_course_kalimari_desert_unknown_lod2_locomotive_model20: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model20 + type: vtx + offset: 0x1b580 + count: 32 +d_course_kalimari_desert_unknown_lod2_locomotive_model21: + symbol: d_course_kalimari_desert_unknown_lod2_locomotive_model21 + type: vtx + offset: 0x1b780 + count: 4 +d_course_kalimari_desert_dl_1B7C0: + symbol: d_course_kalimari_desert_dl_1B7C0 + type: gfx + offset: 0x1b7c0 +d_course_kalimari_desert_dl_1B850: + symbol: d_course_kalimari_desert_dl_1B850 + type: gfx + offset: 0x1b850 +d_course_kalimari_desert_dl_1B950: + symbol: d_course_kalimari_desert_dl_1B950 + type: gfx + offset: 0x1b950 +d_course_kalimari_desert_dl_1B968: + symbol: d_course_kalimari_desert_dl_1B968 + type: gfx + offset: 0x1b968 +d_course_kalimari_desert_dl_1B978: + symbol: d_course_kalimari_desert_dl_1B978 + type: gfx + offset: 0x1b978 +d_course_kalimari_desert_dl_1B990: + symbol: d_course_kalimari_desert_dl_1B990 + type: gfx + offset: 0x1b990 +d_course_kalimari_desert_dl_1BD18: + symbol: d_course_kalimari_desert_dl_1BD18 + type: gfx + offset: 0x1bd18 +d_course_kalimari_desert_dl_1BD58: + symbol: d_course_kalimari_desert_dl_1BD58 + type: gfx + offset: 0x1bd58 +d_course_kalimari_desert_dl_1BEF8: + symbol: d_course_kalimari_desert_dl_1BEF8 + type: gfx + offset: 0x1bef8 +d_course_kalimari_desert_dl_1BF90: + symbol: d_course_kalimari_desert_dl_1BF90 + type: gfx + offset: 0x1bf90 +d_course_kalimari_desert_dl_1C0B0: + symbol: d_course_kalimari_desert_dl_1C0B0 + type: gfx + offset: 0x1c0b0 +d_course_kalimari_desert_dl_1C0E0: + symbol: d_course_kalimari_desert_dl_1C0E0 + type: gfx + offset: 0x1c0e0 +d_course_kalimari_desert_dl_1C0F0: + symbol: d_course_kalimari_desert_dl_1C0F0 + type: gfx + offset: 0x1c0f0 +d_course_kalimari_desert_locomotive_model_lod1: + symbol: d_course_kalimari_desert_locomotive_model_lod1 + type: vtx + offset: 0x1c108 + count: 10 +d_course_kalimari_desert_unknown_lod1_locomotive_model1: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model1 + type: vtx + offset: 0x1c1a8 + count: 8 +d_course_kalimari_desert_unknown_lod1_locomotive_model2: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model2 + type: vtx + offset: 0x1c228 + count: 8 +d_course_kalimari_desert_unknown_lod1_locomotive_model3: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model3 + type: vtx + offset: 0x1c2a8 + count: 32 +d_course_kalimari_desert_unknown_lod1_locomotive_model4: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model4 + type: vtx + offset: 0x1c4a8 + count: 30 +d_course_kalimari_desert_unknown_lod1_locomotive_model5: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model5 + type: vtx + offset: 0x1c688 + count: 20 +d_course_kalimari_desert_unknown_lod1_locomotive_model6: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model6 + type: vtx + offset: 0x1c7c8 + count: 6 +d_course_kalimari_desert_unknown_lod1_locomotive_model7: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model7 + type: vtx + offset: 0x1c828 + count: 4 +d_course_kalimari_desert_unknown_lod1_locomotive_model8: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model8 + type: vtx + offset: 0x1c868 + count: 20 +d_course_kalimari_desert_unknown_lod1_locomotive_model9: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model9 + type: vtx + offset: 0x1c9a8 + count: 4 +d_course_kalimari_desert_unknown_lod1_locomotive_model10: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model10 + type: vtx + offset: 0x1c9e8 + count: 8 +d_course_kalimari_desert_unknown_lod1_locomotive_model11: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model11 + type: vtx + offset: 0x1ca68 + count: 30 +d_course_kalimari_desert_unknown_lod1_locomotive_model12: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model12 + type: vtx + offset: 0x1cc48 + count: 20 +d_course_kalimari_desert_unknown_lod1_locomotive_model13: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model13 + type: vtx + offset: 0x1cd88 + count: 31 +d_course_kalimari_desert_unknown_lod1_locomotive_model14: + symbol: d_course_kalimari_desert_unknown_lod1_locomotive_model14 + type: vtx + offset: 0x1cf78 + count: 3 +d_course_kalimari_desert_dl_1CFA8: + symbol: d_course_kalimari_desert_dl_1CFA8 + type: gfx + offset: 0x1cfa8 +d_course_kalimari_desert_dl_1D038: + symbol: d_course_kalimari_desert_dl_1D038 + type: gfx + offset: 0x1d038 +d_course_kalimari_desert_dl_1D138: + symbol: d_course_kalimari_desert_dl_1D138 + type: gfx + offset: 0x1d138 +d_course_kalimari_desert_dl_1D150: + symbol: d_course_kalimari_desert_dl_1D150 + type: gfx + offset: 0x1d150 +d_course_kalimari_desert_dl_1D160: + symbol: d_course_kalimari_desert_dl_1D160 + type: gfx + offset: 0x1d160 +d_course_kalimari_desert_dl_1D178: + symbol: d_course_kalimari_desert_dl_1D178 + type: gfx + offset: 0x1d178 +d_course_kalimari_desert_dl_1D418: + symbol: d_course_kalimari_desert_dl_1D418 + type: gfx + offset: 0x1d418 +d_course_kalimari_desert_dl_1D450: + symbol: d_course_kalimari_desert_dl_1D450 + type: gfx + offset: 0x1d450 +d_course_kalimari_desert_dl_1D540: + symbol: d_course_kalimari_desert_dl_1D540 + type: gfx + offset: 0x1d540 +d_course_kalimari_desert_dl_1D598: + symbol: d_course_kalimari_desert_dl_1D598 + type: gfx + offset: 0x1d598 +d_course_kalimari_desert_dl_1D630: + symbol: d_course_kalimari_desert_dl_1D630 + type: gfx + offset: 0x1d630 +d_course_kalimari_desert_dl_1D660: + symbol: d_course_kalimari_desert_dl_1D660 + type: gfx + offset: 0x1d660 +d_course_kalimari_desert_dl_1D670: + symbol: d_course_kalimari_desert_dl_1D670 + type: gfx + offset: 0x1d670 +d_course_kalimari_desert_locomotive_model_lod0: + symbol: d_course_kalimari_desert_locomotive_model_lod0 + type: vtx + offset: 0x1d688 + count: 10 +d_course_kalimari_desert_unknown_lod0_locomotive_model1: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model1 + type: vtx + offset: 0x1d728 + count: 8 +d_course_kalimari_desert_unknown_lod0_locomotive_model2: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model2 + type: vtx + offset: 0x1d7a8 + count: 8 +d_course_kalimari_desert_unknown_lod0_locomotive_model3: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model3 + type: vtx + offset: 0x1d828 + count: 32 +d_course_kalimari_desert_unknown_lod0_locomotive_model4: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model4 + type: vtx + offset: 0x1da28 + count: 14 +d_course_kalimari_desert_unknown_lod0_locomotive_model5: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model5 + type: vtx + offset: 0x1db08 + count: 12 +d_course_kalimari_desert_unknown_lod0_locomotive_model6: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model6 + type: vtx + offset: 0x1dbc8 + count: 4 +d_course_kalimari_desert_unknown_lod0_locomotive_model7: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model7 + type: vtx + offset: 0x1dc08 + count: 4 +d_course_kalimari_desert_unknown_lod0_locomotive_model8: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model8 + type: vtx + offset: 0x1dc48 + count: 16 +d_course_kalimari_desert_unknown_lod0_locomotive_model9: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model9 + type: vtx + offset: 0x1dd48 + count: 4 +d_course_kalimari_desert_unknown_lod0_locomotive_model10: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model10 + type: vtx + offset: 0x1dd88 + count: 8 +d_course_kalimari_desert_unknown_lod0_locomotive_model11: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model11 + type: vtx + offset: 0x1de08 + count: 30 +d_course_kalimari_desert_unknown_lod0_locomotive_model12: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model12 + type: vtx + offset: 0x1dfe8 + count: 19 +d_course_kalimari_desert_unknown_lod0_locomotive_model13: + symbol: d_course_kalimari_desert_unknown_lod0_locomotive_model13 + type: vtx + offset: 0x1e118 + count: 27 +d_course_kalimari_desert_dl_1E2C8: + symbol: d_course_kalimari_desert_dl_1E2C8 + type: gfx + offset: 0x1e2c8 +d_course_kalimari_desert_dl_1E358: + symbol: d_course_kalimari_desert_dl_1E358 + type: gfx + offset: 0x1e358 +d_course_kalimari_desert_dl_1E458: + symbol: d_course_kalimari_desert_dl_1E458 + type: gfx + offset: 0x1e458 +d_course_kalimari_desert_dl_1E470: + symbol: d_course_kalimari_desert_dl_1E470 + type: gfx + offset: 0x1e470 +d_course_kalimari_desert_dl_1E480: + symbol: d_course_kalimari_desert_dl_1E480 + type: gfx + offset: 0x1e480 +d_course_kalimari_desert_dl_1E498: + symbol: d_course_kalimari_desert_dl_1E498 + type: gfx + offset: 0x1e498 +d_course_kalimari_desert_dl_1E6D8: + symbol: d_course_kalimari_desert_dl_1E6D8 + type: gfx + offset: 0x1e6d8 +d_course_kalimari_desert_dl_1E710: + symbol: d_course_kalimari_desert_dl_1E710 + type: gfx + offset: 0x1e710 +d_course_kalimari_desert_dl_1E800: + symbol: d_course_kalimari_desert_dl_1E800 + type: gfx + offset: 0x1e800 +d_course_kalimari_desert_dl_1E858: + symbol: d_course_kalimari_desert_dl_1E858 + type: gfx + offset: 0x1e858 +d_course_kalimari_desert_dl_1E8D0: + symbol: d_course_kalimari_desert_dl_1E8D0 + type: gfx + offset: 0x1e8d0 +d_course_kalimari_desert_dl_1E900: + symbol: d_course_kalimari_desert_dl_1E900 + type: gfx + offset: 0x1e900 +d_course_kalimari_desert_dl_1E910: + symbol: d_course_kalimari_desert_dl_1E910 + type: gfx + offset: 0x1e910 +d_course_kalimari_desert_tender_model_lod2: + symbol: d_course_kalimari_desert_tender_model_lod2 + type: vtx + offset: 0x1e928 + count: 28 +d_course_kalimari_desert_unknown_lod2_tender_model1: + symbol: d_course_kalimari_desert_unknown_lod2_tender_model1 + type: vtx + offset: 0x1eae8 + count: 32 +d_course_kalimari_desert_unknown_lod2_tender_model2: + symbol: d_course_kalimari_desert_unknown_lod2_tender_model2 + type: vtx + offset: 0x1ece8 + count: 4 +d_course_kalimari_desert_unknown_lod2_tender_model3: + symbol: d_course_kalimari_desert_unknown_lod2_tender_model3 + type: vtx + offset: 0x1ed28 + count: 27 +d_course_kalimari_desert_unknown_lod2_tender_model4: + symbol: d_course_kalimari_desert_unknown_lod2_tender_model4 + type: vtx + offset: 0x1eed8 + count: 16 +d_course_kalimari_desert_dl_1EFD8: + symbol: d_course_kalimari_desert_dl_1EFD8 + type: gfx + offset: 0x1efd8 +d_course_kalimari_desert_dl_1F050: + symbol: d_course_kalimari_desert_dl_1F050 + type: gfx + offset: 0x1f050 +d_course_kalimari_desert_dl_1F0D8: + symbol: d_course_kalimari_desert_dl_1F0D8 + type: gfx + offset: 0x1f0d8 +d_course_kalimari_desert_dl_1F1F8: + symbol: d_course_kalimari_desert_dl_1F1F8 + type: gfx + offset: 0x1f1f8 +d_course_kalimari_desert_dl_1F218: + symbol: d_course_kalimari_desert_dl_1F218 + type: gfx + offset: 0x1f218 +d_course_kalimari_desert_dl_1F228: + symbol: d_course_kalimari_desert_dl_1F228 + type: gfx + offset: 0x1f228 +d_course_kalimari_desert_tender_model_lod1: + symbol: d_course_kalimari_desert_tender_model_lod1 + type: vtx + offset: 0x1f240 + count: 23 +d_course_kalimari_desert_unknown_lod1_tender_model1: + symbol: d_course_kalimari_desert_unknown_lod1_tender_model1 + type: vtx + offset: 0x1f3b0 + count: 12 +d_course_kalimari_desert_unknown_lod1_tender_model2: + symbol: d_course_kalimari_desert_unknown_lod1_tender_model2 + type: vtx + offset: 0x1f470 + count: 16 +d_course_kalimari_desert_dl_1F570: + symbol: d_course_kalimari_desert_dl_1F570 + type: gfx + offset: 0x1f570 +d_course_kalimari_desert_dl_1F5E0: + symbol: d_course_kalimari_desert_dl_1F5E0 + type: gfx + offset: 0x1f5e0 +d_course_kalimari_desert_dl_1F6E0: + symbol: d_course_kalimari_desert_dl_1F6E0 + type: gfx + offset: 0x1f6e0 +d_course_kalimari_desert_dl_1F6F8: + symbol: d_course_kalimari_desert_dl_1F6F8 + type: gfx + offset: 0x1f6f8 +d_course_kalimari_desert_dl_1F708: + symbol: d_course_kalimari_desert_dl_1F708 + type: gfx + offset: 0x1f708 +d_course_kalimari_desert_dl_1F720: + symbol: d_course_kalimari_desert_dl_1F720 + type: gfx + offset: 0x1f720 +d_course_kalimari_desert_tender_model_lod0: + symbol: d_course_kalimari_desert_tender_model_lod0 + type: vtx + offset: 0x1f728 + count: 16 +d_course_kalimari_desert_unknown_lod0_tender_model1: + symbol: d_course_kalimari_desert_unknown_lod0_tender_model1 + type: vtx + offset: 0x1f828 + count: 6 +d_course_kalimari_desert_unknown_lod0_tender_model2: + symbol: d_course_kalimari_desert_unknown_lod0_tender_model2 + type: vtx + offset: 0x1f888 + count: 16 +d_course_kalimari_desert_dl_1F988: + symbol: d_course_kalimari_desert_dl_1F988 + type: gfx + offset: 0x1f988 +d_course_kalimari_desert_dl_1F9D8: + symbol: d_course_kalimari_desert_dl_1F9D8 + type: gfx + offset: 0x1f9d8 +d_course_kalimari_desert_dl_1FAD0: + symbol: d_course_kalimari_desert_dl_1FAD0 + type: gfx + offset: 0x1fad0 +d_course_kalimari_desert_dl_1FAE8: + symbol: d_course_kalimari_desert_dl_1FAE8 + type: gfx + offset: 0x1fae8 +d_course_kalimari_desert_dl_1FAF8: + symbol: d_course_kalimari_desert_dl_1FAF8 + type: gfx + offset: 0x1faf8 +d_course_kalimari_desert_dl_1FB10: + symbol: d_course_kalimari_desert_dl_1FB10 + type: gfx + offset: 0x1fb10 +d_course_kalimari_desert_carriage_chassis_model_lod2: + symbol: d_course_kalimari_desert_carriage_chassis_model_lod2 + type: vtx + offset: 0x1fb18 + count: 12 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model1: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model1 + type: vtx + offset: 0x1fbd8 + count: 20 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model2: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model2 + type: vtx + offset: 0x1fd18 + count: 32 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model3: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model3 + type: vtx + offset: 0x1ff18 + count: 15 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model4: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model4 + type: vtx + offset: 0x20008 + count: 8 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model5: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model5 + type: vtx + offset: 0x20088 + count: 4 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model6: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model6 + type: vtx + offset: 0x200c8 + count: 12 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model7: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model7 + type: vtx + offset: 0x20188 + count: 32 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model8: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model8 + type: vtx + offset: 0x20388 + count: 4 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model9: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model9 + type: vtx + offset: 0x203c8 + count: 20 +d_course_kalimari_desert_unknown_lod2_carriage_chassis_model10: + symbol: d_course_kalimari_desert_unknown_lod2_carriage_chassis_model10 + type: vtx + offset: 0x20508 + count: 7 +d_course_kalimari_desert_dl_20578: + symbol: d_course_kalimari_desert_dl_20578 + type: gfx + offset: 0x20578 +d_course_kalimari_desert_dl_20610: + symbol: d_course_kalimari_desert_dl_20610 + type: gfx + offset: 0x20610 +d_course_kalimari_desert_dl_20620: + symbol: d_course_kalimari_desert_dl_20620 + type: gfx + offset: 0x20620 +d_course_kalimari_desert_dl_20630: + symbol: d_course_kalimari_desert_dl_20630 + type: gfx + offset: 0x20630 +d_course_kalimari_desert_dl_20688: + symbol: d_course_kalimari_desert_dl_20688 + type: gfx + offset: 0x20688 +d_course_kalimari_desert_dl_208A0: + symbol: d_course_kalimari_desert_dl_208A0 + type: gfx + offset: 0x208a0 +d_course_kalimari_desert_dl_20928: + symbol: d_course_kalimari_desert_dl_20928 + type: gfx + offset: 0x20928 +d_course_kalimari_desert_dl_20980: + symbol: d_course_kalimari_desert_dl_20980 + type: gfx + offset: 0x20980 +d_course_kalimari_desert_dl_209C8: + symbol: d_course_kalimari_desert_dl_209C8 + type: gfx + offset: 0x209c8 +d_course_kalimari_desert_dl_209F8: + symbol: d_course_kalimari_desert_dl_209F8 + type: gfx + offset: 0x209f8 +d_course_kalimari_desert_dl_20A08: + symbol: d_course_kalimari_desert_dl_20A08 + type: gfx + offset: 0x20a08 +d_course_kalimari_desert_dl_20A20: + symbol: d_course_kalimari_desert_dl_20A20 + type: gfx + offset: 0x20a20 +d_course_kalimari_desert_carriage_chassis_model_lod1: + symbol: d_course_kalimari_desert_carriage_chassis_model_lod1 + type: vtx + offset: 0x20a38 + count: 4 +d_course_kalimari_desert_unknown_lod1_carriage_chassis_model1: + symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model1 + type: vtx + offset: 0x20a78 + count: 16 +d_course_kalimari_desert_unknown_lod1_carriage_chassis_model2: + symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model2 + type: vtx + offset: 0x20b78 + count: 32 +d_course_kalimari_desert_unknown_lod1_carriage_chassis_model3: + symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model3 + type: vtx + offset: 0x20d78 + count: 17 +d_course_kalimari_desert_unknown_lod1_carriage_chassis_model4: + symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model4 + type: vtx + offset: 0x20e88 + count: 8 +d_course_kalimari_desert_unknown_lod1_carriage_chassis_model5: + symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model5 + type: vtx + offset: 0x20f08 + count: 4 +d_course_kalimari_desert_unknown_lod1_carriage_chassis_model6: + symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model6 + type: vtx + offset: 0x20f48 + count: 12 +d_course_kalimari_desert_unknown_lod1_carriage_chassis_model7: + symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model7 + type: vtx + offset: 0x21008 + count: 16 +d_course_kalimari_desert_unknown_lod1_carriage_chassis_model8: + symbol: d_course_kalimari_desert_unknown_lod1_carriage_chassis_model8 + type: vtx + offset: 0x21108 + count: 7 +d_course_kalimari_desert_dl_21178: + symbol: d_course_kalimari_desert_dl_21178 + type: gfx + offset: 0x21178 +d_course_kalimari_desert_dl_21200: + symbol: d_course_kalimari_desert_dl_21200 + type: gfx + offset: 0x21200 +d_course_kalimari_desert_dl_21210: + symbol: d_course_kalimari_desert_dl_21210 + type: gfx + offset: 0x21210 +d_course_kalimari_desert_dl_21220: + symbol: d_course_kalimari_desert_dl_21220 + type: gfx + offset: 0x21220 +d_course_kalimari_desert_dl_21238: + symbol: d_course_kalimari_desert_dl_21238 + type: gfx + offset: 0x21238 +d_course_kalimari_desert_dl_21288: + symbol: d_course_kalimari_desert_dl_21288 + type: gfx + offset: 0x21288 +d_course_kalimari_desert_dl_21480: + symbol: d_course_kalimari_desert_dl_21480 + type: gfx + offset: 0x21480 +d_course_kalimari_desert_dl_214D0: + symbol: d_course_kalimari_desert_dl_214D0 + type: gfx + offset: 0x214d0 +d_course_kalimari_desert_dl_21518: + symbol: d_course_kalimari_desert_dl_21518 + type: gfx + offset: 0x21518 +d_course_kalimari_desert_dl_21540: + symbol: d_course_kalimari_desert_dl_21540 + type: gfx + offset: 0x21540 +d_course_kalimari_desert_dl_21550: + symbol: d_course_kalimari_desert_dl_21550 + type: gfx + offset: 0x21550 +d_course_kalimari_desert_carriage_model_lod0: + symbol: d_course_kalimari_desert_carriage_model_lod0 + type: vtx + offset: 0x21568 + count: 4 +d_course_kalimari_desert_unknown_lod0_carriage_model1: + symbol: d_course_kalimari_desert_unknown_lod0_carriage_model1 + type: vtx + offset: 0x215a8 + count: 16 +d_course_kalimari_desert_unknown_lod0_carriage_model2: + symbol: d_course_kalimari_desert_unknown_lod0_carriage_model2 + type: vtx + offset: 0x216a8 + count: 16 +d_course_kalimari_desert_unknown_lod0_carriage_model3: + symbol: d_course_kalimari_desert_unknown_lod0_carriage_model3 + type: vtx + offset: 0x217a8 + count: 12 +d_course_kalimari_desert_unknown_lod0_carriage_model4: + symbol: d_course_kalimari_desert_unknown_lod0_carriage_model4 + type: vtx + offset: 0x21868 + count: 16 +d_course_kalimari_desert_unknown_lod0_carriage_model5: + symbol: d_course_kalimari_desert_unknown_lod0_carriage_model5 + type: vtx + offset: 0x21968 + count: 7 +d_course_kalimari_desert_dl_219D8: + symbol: d_course_kalimari_desert_dl_219D8 + type: gfx + offset: 0x219d8 +d_course_kalimari_desert_dl_21A60: + symbol: d_course_kalimari_desert_dl_21A60 + type: gfx + offset: 0x21a60 +d_course_kalimari_desert_dl_21A70: + symbol: d_course_kalimari_desert_dl_21A70 + type: gfx + offset: 0x21a70 +d_course_kalimari_desert_dl_21A80: + symbol: d_course_kalimari_desert_dl_21A80 + type: gfx + offset: 0x21a80 +d_course_kalimari_desert_dl_21A98: + symbol: d_course_kalimari_desert_dl_21A98 + type: gfx + offset: 0x21a98 +d_course_kalimari_desert_dl_21AE8: + symbol: d_course_kalimari_desert_dl_21AE8 + type: gfx + offset: 0x21ae8 +d_course_kalimari_desert_dl_21BC0: + symbol: d_course_kalimari_desert_dl_21BC0 + type: gfx + offset: 0x21bc0 +d_course_kalimari_desert_dl_21C10: + symbol: d_course_kalimari_desert_dl_21C10 + type: gfx + offset: 0x21c10 +d_course_kalimari_desert_dl_21C58: + symbol: d_course_kalimari_desert_dl_21C58 + type: gfx + offset: 0x21c58 +d_course_kalimari_desert_dl_21C80: + symbol: d_course_kalimari_desert_dl_21C80 + type: gfx + offset: 0x21c80 +d_course_kalimari_desert_dl_21C90: + symbol: d_course_kalimari_desert_dl_21C90 + type: gfx + offset: 0x21c90 +d_course_kalimari_desert_unknown_model1: + symbol: d_course_kalimari_desert_unknown_model1 + type: vtx + offset: 0x21ca8 + count: 4 +d_course_kalimari_desert_unknown_model2: + symbol: d_course_kalimari_desert_unknown_model2 + type: vtx + offset: 0x21ce8 + count: 4 +d_course_kalimari_desert_dl_22D28: + symbol: d_course_kalimari_desert_dl_22D28 + type: gfx + offset: 0x22d28 +d_course_kalimari_desert_dl_22D70: + symbol: d_course_kalimari_desert_dl_22D70 + type: gfx + offset: 0x22d70 +d_course_kalimari_desert_dl_22DB8: + symbol: d_course_kalimari_desert_dl_22DB8 + type: gfx + offset: 0x22db8 +d_course_kalimari_desert_dl_22E00: + symbol: d_course_kalimari_desert_dl_22E00 + type: gfx + offset: 0x22e00 + otr_mode: index diff --git a/yamls/us/models/tracks/kalimari_desert/kalimari_desert_displaylists.yml b/yamls/us/models/tracks/kalimari_desert/kalimari_desert_displaylists.yml new file mode 100644 index 000000000..d1bbb51d2 --- /dev/null +++ b/yamls/us/models/tracks/kalimari_desert/kalimari_desert_displaylists.yml @@ -0,0 +1,1955 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x934004 + no_compression: true + segments: + - [0x0F, 0x934004] + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureCactus1Left"] + - [0x03009800, "textures/other_textures/gTextureCactus1Right"] + - [0x0300A000, "textures/other_textures/gTextureCactus2Left"] + - [0x0300A800, "textures/other_textures/gTextureCactus2Right"] + - [0x0300B000, "textures/other_textures/gTextureCactus3"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_6684F8"] + - [0x05000800, "textures/other_textures/sign_luigis_0"] + - [0x05001800, "textures/other_textures/sign_luigis_1"] + - [0x05002800, "textures/other_textures/sign_mario_star_0"] + - [0x05003800, "textures/other_textures/sign_mario_star_1"] + - [0x05004800, "textures/other_textures/sign_nintendo_red_0"] + - [0x05005800, "textures/other_textures/sign_nintendo_red_1"] + - [0x05006800, "textures/other_textures/texture_67490C"] + - [0x05007000, "textures/other_textures/sign_yoshi"] + - [0x05008000, "textures/other_textures/checkerboard_blue_gray"] + - [0x05009000, "textures/other_textures/texture_646CA8"] + - [0x0500A000, "textures/other_textures/texture_6473E4"] + - [0x0500B000, "textures/other_textures/texture_647994"] + - [0x0500C000, "textures/other_textures/texture_668920"] + - [0x0500C800, "textures/other_textures/railroad_track"] + - [0x0500D800, "textures/other_textures/railroad_crossing_track"] + - [0x0500E800, "textures/other_textures/texture_67291C"] + - [0x0500F000, "textures/other_textures/fence_barbed_wire"] + - [0x05010000, "textures/other_textures/texture_67D304"] + - [0x05011000, "textures/other_textures/texture_67E010"] + - [0x05011800, "textures/other_textures/texture_67EEAC"] + - [0x05012000, "textures/other_textures/sign_shell_shot_0"] + - [0x05013000, "textures/other_textures/sign_shell_shot_1"] + - [0x05014000, "textures/other_textures/sign_koopa_air_0"] + - [0x05015000, "textures/other_textures/sign_koopa_air_1"] + # Segment 7 + - [0x7000000, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_0"] + - [0x7000068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_68"] + - [0x70000D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_D0"] + - [0x7000138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_138"] + - [0x70001A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1A0"] + - [0x7000208, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_208"] + - [0x7000270, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_270"] + - [0x70002A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2A8"] + - [0x7000358, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_358"] + - [0x70003E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E0"] + - [0x7000458, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_458"] + - [0x7000538, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_538"] + - [0x70005F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5F8"] + - [0x70006A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6A0"] + - [0x7000760, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_760"] + - [0x7000840, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_840"] + - [0x7000900, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_900"] + - [0x7000998, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_998"] + - [0x70009F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F0"] + - [0x7000A08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A08"] + - [0x7000A18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A18"] + - [0x7000A90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A90"] + - [0x7000AF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_AF8"] + - [0x7000B58, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_B58"] + - [0x7000BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_BC8"] + - [0x7000C30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_C30"] + - [0x7000C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_C98"] + - [0x7000CF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_CF8"] + - [0x7000D60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_D60"] + - [0x7000DC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_DC0"] + - [0x7000E20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_E20"] + - [0x7000E80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_E80"] + - [0x7000EE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_EE8"] + - [0x7000F48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_F48"] + - [0x7000FB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_FB8"] + - [0x7001028, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1028"] + - [0x7001098, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1098"] + - [0x7001110, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1110"] + - [0x7001178, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1178"] + - [0x70011E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_11E0"] + - [0x7001248, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1248"] + - [0x70012F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_12F0"] + - [0x70013D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_13D0"] + - [0x70014A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_14A0"] + - [0x7001580, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1580"] + - [0x7001650, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1650"] + - [0x7001678, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1678"] + - [0x7001710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1710"] + - [0x7001898, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1898"] + - [0x70019B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_19B8"] + - [0x7001A78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1A78"] + - [0x7001B18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1B18"] + - [0x7001B48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1B48"] + - [0x7001BE0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1BE0"] + - [0x7001C78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1C78"] + - [0x7001D10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1D10"] + - [0x7001DA8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1DA8"] + - [0x7001E40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1E40"] + - [0x7001ED8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1ED8"] + - [0x7001F10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1F10"] + - [0x7001F78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1F78"] + - [0x7002000, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2000"] + - [0x7002068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2068"] + - [0x70020D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_20D0"] + - [0x7002130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2130"] + - [0x7002198, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2198"] + - [0x70021F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_21F8"] + - [0x7002260, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2260"] + - [0x70022D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_22D0"] + - [0x7002338, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2338"] + - [0x70023C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_23C0"] + - [0x7002430, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2430"] + - [0x70024B0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_24B0"] + - [0x7002528, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2528"] + - [0x7002598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2598"] + - [0x7002620, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2620"] + - [0x7002698, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2698"] + - [0x7002710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2710"] + - [0x7002778, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2778"] + - [0x7002808, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2808"] + - [0x7002878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2878"] + - [0x70028E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_28E8"] + - [0x7002960, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2960"] + - [0x70029F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_29F0"] + - [0x7002AB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2AB8"] + - [0x7002B20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2B20"] + - [0x7002B80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2B80"] + - [0x7002BE0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2BE0"] + - [0x7002C48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2C48"] + - [0x7002CB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2CB8"] + - [0x7002D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2D20"] + - [0x7002D90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2D90"] + - [0x7002DF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2DF8"] + - [0x7002E60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2E60"] + - [0x7002EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2EC8"] + - [0x7002F30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2F30"] + - [0x7002FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2FB0"] + - [0x7003018, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3018"] + - [0x7003080, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3080"] + - [0x70030E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_30E8"] + - [0x7003158, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3158"] + - [0x70031C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_31C0"] + - [0x7003228, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3228"] + - [0x7003298, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3298"] + - [0x7003300, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3300"] + - [0x7003368, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3368"] + - [0x70033D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_33D8"] + - [0x7003440, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3440"] + - [0x70034A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_34A8"] + - [0x7003508, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3508"] + - [0x7003568, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3568"] + - [0x70035D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_35D8"] + - [0x7003640, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3640"] + - [0x70036A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_36A0"] + - [0x7003710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3710"] + - [0x7003780, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3780"] + - [0x70037F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_37F0"] + - [0x7003858, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3858"] + - [0x70038C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_38C8"] + - [0x7003930, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3930"] + - [0x70039A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_39A8"] + - [0x7003A10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3A10"] + - [0x7003A80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3A80"] + - [0x7003AE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3AE8"] + - [0x7003B48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3B48"] + - [0x7003BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3BC8"] + - [0x7003C30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3C30"] + - [0x7003C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3C98"] + - [0x7003D00, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3D00"] + - [0x7003D68, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3D68"] + - [0x7003DC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3DC8"] + - [0x7003E30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E30"] + - [0x7003E90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E90"] + - [0x7004018, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4018"] + - [0x70040D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_40D0"] + - [0x7004130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4130"] + - [0x70041E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_41E8"] + - [0x7004260, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4260"] + - [0x7004350, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4350"] + - [0x7004438, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4438"] + - [0x70044F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_44F0"] + - [0x70045D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_45D8"] + - [0x70046C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_46C0"] + - [0x70047A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_47A8"] + - [0x7004878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4878"] + - [0x7004948, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4948"] + - [0x70049B0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_49B0"] + - [0x7004A10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4A10"] + - [0x7004AA8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4AA8"] + - [0x7004B08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4B08"] + - [0x7004B78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4B78"] + - [0x7004BD8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4BD8"] + - [0x7004C40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4C40"] + - [0x7004CB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4CB0"] + - [0x7004D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4D20"] + - [0x7004D90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4D90"] + - [0x7004DF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4DF8"] + - [0x7004E60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4E60"] + - [0x7004EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4EC8"] + - [0x7004F40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4F40"] + - [0x7004FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4FB0"] + - [0x7005020, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5020"] + - [0x7005090, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5090"] + - [0x7005100, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5100"] + - [0x7005170, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5170"] + - [0x70051D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_51D0"] + - [0x7005238, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5238"] + - [0x70052E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_52E0"] + - [0x7005360, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5360"] + - [0x70053D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_53D0"] + - [0x7005450, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5450"] + - [0x70054C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_54C8"] + - [0x7005580, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5580"] + - [0x70055F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_55F0"] + - [0x70056A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_56A0"] + - [0x7005728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5728"] + - [0x70057D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_57D0"] + - [0x7005878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5878"] + - [0x7005948, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5948"] + - [0x70059F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_59F0"] + - [0x7005A60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5A60"] + - [0x7005B00, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5B00"] + - [0x7005B88, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5B88"] + - [0x7005C20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5C20"] + - [0x7005C90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5C90"] + - [0x7005D30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5D30"] + - [0x7005DB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5DB0"] + - [0x7005E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5E38"] + - [0x7005EB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5EB0"] + - [0x7005F28, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5F28"] + - [0x7005FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5FB0"] + - [0x7006050, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6050"] + - [0x70060C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_60C8"] + - [0x7006130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6130"] + - [0x70061D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_61D8"] + - [0x7006290, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6290"] + - [0x7006310, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6310"] + - [0x70063C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_63C0"] + - [0x7006490, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6490"] + - [0x7006530, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6530"] + - [0x70065F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_65F0"] + - [0x70066C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_66C8"] + - [0x7006780, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6780"] + - [0x7006820, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6820"] + - [0x70068E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_68E0"] + - [0x7006958, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6958"] + - [0x70069F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_69F8"] + - [0x7006A78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6A78"] + - [0x7006B28, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6B28"] + - [0x7006BC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6BC0"] + - [0x7006C70, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6C70"] + - [0x7006CF0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6CF0"] + - [0x7006DA0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6DA0"] + - [0x7006E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6E38"] + - [0x7006EE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6EE8"] + - [0x7006F70, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6F70"] + - [0x70070F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_70F8"] + - [0x70071C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_71C8"] + - [0x70071D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_71D8"] + - [0x70072B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_72B8"] + - [0x70073A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_73A8"] + - [0x70074A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_74A8"] + - [0x7007598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7598"] + - [0x70075C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_75C0"] + - [0x70076C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_76C0"] + - [0x7007728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7728"] + - [0x70077F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_77F8"] + - [0x7007890, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7890"] + - [0x70079F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_79F8"] + - [0x7007BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7BC8"] + - [0x7007CC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7CC8"] + - [0x7007E18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7E18"] + - [0x7007F80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7F80"] + - [0x70080B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_80B8"] + - [0x70081A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_81A0"] + - [0x7008330, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8330"] + - [0x7008398, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8398"] + - [0x7008418, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8418"] + - [0x7008490, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8490"] + - [0x7008508, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8508"] + - [0x70085A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_85A0"] + - [0x7008610, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8610"] + - [0x7008690, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8690"] + - [0x7008728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8728"] + - [0x7008798, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8798"] + - [0x7008808, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8808"] + - [0x7008888, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8888"] + - [0x7008920, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8920"] + - [0x7008990, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8990"] + - [0x7008A40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8A40"] + - [0x7008AC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8AC8"] + - [0x7008B60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8B60"] + - [0x7008C08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8C08"] + - [0x7008C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8C98"] + - [0x7008D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8D20"] + - [0x7008D98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8D98"] + - [0x7008E20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8E20"] + - [0x7008EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8EC8"] + - [0x7008F50, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8F50"] + - [0x7008FF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8FF8"] + - [0x7009068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9068"] + - [0x70090D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_90D8"] + - [0x7009138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9138"] + - [0x70091A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_91A8"] + - [0x7009210, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9210"] + - [0x7009280, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9280"] + - [0x70092F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_92F8"] + - [0x7009368, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9368"] + - [0x70093F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_93F0"] + - [0x7009480, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9480"] + - [0x7009510, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9510"] + - [0x7009598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9598"] + - [0x7009630, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9630"] + - [0x70096A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_96A8"] + - [0x7009740, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9740"] + - [0x70097B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_97B8"] + - [0x7009820, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9820"] + - [0x70098E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_98E0"] + - [0x7009958, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9958"] + - [0x70099D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_99D8"] + - [0x7009A68, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9A68"] + - [0x7009B10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9B10"] + - [0x7009BD8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9BD8"] + - [0x7009C50, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9C50"] + - [0x7009CC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9CC0"] + - [0x7009D48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9D48"] + - [0x7009DC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9DC0"] + - [0x7009E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9E38"] + - [0x7009EB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9EB0"] + - [0x7009F20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F20"] + - [0x7009F88, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F88"] + - [0x7009FE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9FE8"] + - [0x700A050, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A050"] + - [0x700A0C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A0C0"] + - [0x700A138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A138"] + - [0x700A1A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A1A0"] + - [0x700A228, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A228"] + - [0x700A2D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A2D0"] + - [0x700A350, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A350"] + - [0x700A3D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A3D8"] + - [0x700A458, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A458"] + - [0x700A4D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A4D0"] + - [0x700A548, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A548"] + - [0x700A5F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A5F0"] + - [0x700A670, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A670"] + - [0x700A680, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A680"] + # Segment 4 + - [0x4000000, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000000"] + - [0x4000080, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000080"] + - [0x4000100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000100"] + - [0x4000180, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000180"] + - [0x4000200, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000200"] + - [0x4000280, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000280"] + - [0x4000300, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000300"] + - [0x4000500, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000500"] + - [0x4000580, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000580"] + - [0x4000700, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000700"] + - [0x4000800, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000800"] + - [0x40009e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040009E0"] + - [0x4000b00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000B00"] + - [0x4000ce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000CE0"] + - [0x4000d40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000D40"] + - [0x4000f40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04000F40"] + - [0x4001120, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001120"] + - [0x4001180, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001180"] + - [0x4001360, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001360"] + - [0x4001480, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001480"] + - [0x4001660, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001660"] + - [0x40016c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040016C0"] + - [0x4001880, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001880"] + - [0x40018c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040018C0"] + - [0x4001920, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001920"] + - [0x40019b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040019B0"] + - [0x4001a10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001A10"] + - [0x4001b00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001B00"] + - [0x4001b90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001B90"] + - [0x4001c00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001C00"] + - [0x4001c60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001C60"] + - [0x4001cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001CF0"] + - [0x4001d50, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001D50"] + - [0x4001db0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001DB0"] + - [0x4001e10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001E10"] + - [0x4001eb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001EB0"] + - [0x4001ee0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001EE0"] + - [0x4001fc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04001FC0"] + - [0x40020c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040020C0"] + - [0x40021e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040021E0"] + - [0x4002340, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002340"] + - [0x40023f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040023F0"] + - [0x4002470, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002470"] + - [0x4002500, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002500"] + - [0x4002630, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002630"] + - [0x4002790, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002790"] + - [0x4002890, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002890"] + - [0x4002990, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002990"] + - [0x4002a70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002A70"] + - [0x4002b70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002B70"] + - [0x4002c30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002C30"] + - [0x4002cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002CF0"] + - [0x4002eb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04002EB0"] + - [0x4003090, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003090"] + - [0x4003290, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003290"] + - [0x4003460, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003460"] + - [0x4003660, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003660"] + - [0x4003830, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003830"] + - [0x4003a30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003A30"] + - [0x4003ab0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003AB0"] + - [0x4003c70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003C70"] + - [0x4003cb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003CB0"] + - [0x4003cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003CF0"] + - [0x4003d30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003D30"] + - [0x4003d70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003D70"] + - [0x4003db0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003DB0"] + - [0x4003df0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003DF0"] + - [0x4003e30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003E30"] + - [0x4003e70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003E70"] + - [0x4003eb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003EB0"] + - [0x4003ef0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003EF0"] + - [0x4003f30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003F30"] + - [0x4003f70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003F70"] + - [0x4003ff0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04003FF0"] + - [0x4004170, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004170"] + - [0x40041f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040041F0"] + - [0x4004270, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004270"] + - [0x40042b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040042B0"] + - [0x4004330, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004330"] + - [0x4004370, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004370"] + - [0x40043f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040043F0"] + - [0x40044b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040044B0"] + - [0x4004530, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004530"] + - [0x40046b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040046B0"] + - [0x4004770, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004770"] + - [0x40048b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040048B0"] + - [0x40049b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040049B0"] + - [0x4004a70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004A70"] + - [0x4004be0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004BE0"] + - [0x4004ce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004CE0"] + - [0x4004e20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004E20"] + - [0x4004ea0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04004EA0"] + - [0x4005060, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005060"] + - [0x4005120, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005120"] + - [0x40051e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040051E0"] + - [0x40052d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040052D0"] + - [0x4005490, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005490"] + - [0x4005550, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005550"] + - [0x40055b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040055B0"] + - [0x4005610, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005610"] + - [0x4005690, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005690"] + - [0x4005760, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005760"] + - [0x40057e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040057E0"] + - [0x40058c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040058C0"] + - [0x4005970, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005970"] + - [0x4005a00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005A00"] + - [0x4005a90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005A90"] + - [0x4005b50, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005B50"] + - [0x4005cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005CF0"] + - [0x4005d70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005D70"] + - [0x4005e20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005E20"] + - [0x4005ea0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005EA0"] + - [0x4005f80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04005F80"] + - [0x4006010, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006010"] + - [0x40060d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040060D0"] + - [0x40061b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040061B0"] + - [0x4006240, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006240"] + - [0x40062d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040062D0"] + - [0x40063b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040063B0"] + - [0x4006430, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006430"] + - [0x40064d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040064D0"] + - [0x4006520, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006520"] + - [0x4006570, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006570"] + - [0x4006680, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006680"] + - [0x4006740, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006740"] + - [0x40067a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040067A0"] + - [0x4006880, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006880"] + - [0x4006990, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006990"] + - [0x4006a70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006A70"] + - [0x4006b30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006B30"] + - [0x4006c40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006C40"] + - [0x4006d00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006D00"] + - [0x4006e30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006E30"] + - [0x4006ef0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006EF0"] + - [0x4006fd0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04006FD0"] + - [0x4007070, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007070"] + - [0x40070c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040070C0"] + - [0x4007260, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007260"] + - [0x40072d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040072D0"] + - [0x4007390, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007390"] + - [0x4007440, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007440"] + - [0x40074f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040074F0"] + - [0x4007550, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007550"] + - [0x40075e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040075E0"] + - [0x4007640, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007640"] + - [0x4007680, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007680"] + - [0x4007700, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007700"] + - [0x4007740, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007740"] + - [0x4007780, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007780"] + - [0x4007800, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007800"] + - [0x40078a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040078A0"] + - [0x4007960, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007960"] + - [0x4007a60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007A60"] + - [0x4007b60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007B60"] + - [0x4007c60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007C60"] + - [0x4007ca0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007CA0"] + - [0x4007d20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007D20"] + - [0x4007de0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007DE0"] + - [0x4007ee0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007EE0"] + - [0x4007fa0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04007FA0"] + - [0x40080a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040080A0"] + - [0x4008160, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008160"] + - [0x4008270, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008270"] + - [0x40082f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040082F0"] + - [0x40083b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040083B0"] + - [0x4008470, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008470"] + - [0x4008510, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008510"] + - [0x4008550, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008550"] + - [0x4008590, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008590"] + - [0x40085d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040085D0"] + - [0x4008630, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008630"] + - [0x4008710, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008710"] + - [0x4008750, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008750"] + - [0x40087f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040087F0"] + - [0x4008910, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008910"] + - [0x40089e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040089E0"] + - [0x4008ab0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008AB0"] + - [0x4008b30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008B30"] + - [0x4008bf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008BF0"] + - [0x4008c80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008C80"] + - [0x4008da0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008DA0"] + - [0x4008e70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008E70"] + - [0x4008f50, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04008F50"] + - [0x4009010, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009010"] + - [0x4009100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009100"] + - [0x40091c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040091C0"] + - [0x4009200, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009200"] + - [0x40092a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040092A0"] + - [0x4009420, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009420"] + - [0x40094f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040094F0"] + - [0x40096c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040096C0"] + - [0x4009820, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009820"] + - [0x4009a20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009A20"] + - [0x4009bc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009BC0"] + - [0x4009c80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009C80"] + - [0x4009e80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009E80"] + - [0x4009f40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04009F40"] + - [0x400a140, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A140"] + - [0x400a330, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A330"] + - [0x400a450, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A450"] + - [0x400a640, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A640"] + - [0x400a6b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A6B0"] + - [0x400a890, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400A890"] + - [0x400aa70, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AA70"] + - [0x400aaf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AAF0"] + - [0x400acf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400ACF0"] + - [0x400ade0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400ADE0"] + - [0x400aee0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400AEE0"] + - [0x400b0d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B0D0"] + - [0x400b190, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B190"] + - [0x400b370, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B370"] + - [0x400b550, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B550"] + - [0x400b5b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B5B0"] + - [0x400b6c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B6C0"] + - [0x400b8b0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B8B0"] + - [0x400b940, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400B940"] + - [0x400bae0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BAE0"] + - [0x400bce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BCE0"] + - [0x400be20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BE20"] + - [0x400bf60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400BF60"] + - [0x400c150, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C150"] + - [0x400c340, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C340"] + - [0x400c400, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C400"] + - [0x400c520, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C520"] + - [0x400c5a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C5A0"] + - [0x400c780, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C780"] + - [0x400c860, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400C860"] + - [0x400ca40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CA40"] + - [0x400cbe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CBE0"] + - [0x400cda0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CDA0"] + - [0x400cf90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400CF90"] + - [0x400d100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D100"] + - [0x400d2e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D2E0"] + - [0x400d4d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D4D0"] + - [0x400d590, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D590"] + - [0x400d790, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D790"] + - [0x400d840, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400D840"] + - [0x400da40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DA40"] + - [0x400dc30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DC30"] + - [0x400de10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400DE10"] + - [0x400e000, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E000"] + - [0x400e060, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E060"] + - [0x400e260, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E260"] + - [0x400e430, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E430"] + - [0x400e610, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E610"] + - [0x400e690, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E690"] + - [0x400e880, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400E880"] + - [0x400ea80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EA80"] + - [0x400ebe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EBE0"] + - [0x400edd0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EDD0"] + - [0x400ee60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400EE60"] + - [0x400f000, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F000"] + - [0x400f200, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F200"] + - [0x400f330, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F330"] + - [0x400f510, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F510"] + - [0x400f5a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F5A0"] + - [0x400f780, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F780"] + - [0x400f8a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400F8A0"] + - [0x400fa30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FA30"] + - [0x400fc20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FC20"] + - [0x400fd90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FD90"] + - [0x400ff80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FF80"] + - [0x400ffe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x0400FFE0"] + - [0x40101e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040101E0"] + - [0x4010310, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010310"] + - [0x4010500, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010500"] + - [0x4010700, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010700"] + - [0x4010780, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010780"] + - [0x40108e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040108E0"] + - [0x40109e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040109E0"] + - [0x4010b20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010B20"] + - [0x4010c60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010C60"] + - [0x4010de0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010DE0"] + - [0x4010f60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04010F60"] + - [0x40110a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040110A0"] + - [0x40111e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040111E0"] + - [0x40112e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040112E0"] + - [0x40114e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040114E0"] + - [0x4011560, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011560"] + - [0x40115e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040115E0"] + - [0x40116e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040116E0"] + - [0x4011860, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011860"] + - [0x40119e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040119E0"] + - [0x4011be0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011BE0"] + - [0x4011de0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011DE0"] + - [0x4011fe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04011FE0"] + - [0x40121e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040121E0"] + - [0x40123e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040123E0"] + - [0x4012440, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012440"] + - [0x4012540, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012540"] + - [0x4012740, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012740"] + - [0x40128c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040128C0"] + - [0x4012ac0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012AC0"] + - [0x4012b80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012B80"] + - [0x4012d00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012D00"] + - [0x4012f00, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04012F00"] + - [0x4013100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013100"] + - [0x4013280, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013280"] + - [0x4013480, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013480"] + - [0x4013520, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013520"] + - [0x40135e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040135E0"] + - [0x4013760, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013760"] + - [0x40138a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040138A0"] + - [0x4013aa0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013AA0"] + - [0x4013b20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013B20"] + - [0x4013b80, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013B80"] + - [0x4013cc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013CC0"] + - [0x4013dc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013DC0"] + - [0x4013ec0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04013EC0"] + - [0x40140c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040140C0"] + - [0x4014180, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014180"] + - [0x40142c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040142C0"] + - [0x4014300, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014300"] + - [0x4014340, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014340"] + - [0x4014400, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014400"] + - [0x40144c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040144C0"] + - [0x4014600, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014600"] + - [0x4014800, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014800"] + - [0x40148c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040148C0"] + - [0x4014ac0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014AC0"] + - [0x4014b40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014B40"] + - [0x4014cc0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014CC0"] + - [0x4014ec0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04014EC0"] + - [0x40150c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040150C0"] + - [0x4015100, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015100"] + - [0x40152c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040152C0"] + - [0x4015440, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015440"] + - [0x4015540, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015540"] + - [0x40156c0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040156C0"] + - [0x4015820, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015820"] + - [0x4015a20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015A20"] + - [0x4015a60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015A60"] + - [0x4015b20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015B20"] + - [0x4015be0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015BE0"] + - [0x4015c20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015C20"] + - [0x4015ce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015CE0"] + - [0x4015d60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015D60"] + - [0x4015e20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015E20"] + - [0x4015f20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015F20"] + - [0x4015fe0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04015FE0"] + - [0x4016160, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016160"] + - [0x40162d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040162D0"] + - [0x4016490, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016490"] + - [0x4016610, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016610"] + - [0x4016810, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016810"] + - [0x4016910, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016910"] + - [0x4016b10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016B10"] + - [0x4016c10, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016C10"] + - [0x4016c90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016C90"] + - [0x4016e90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016E90"] + - [0x4016f90, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04016F90"] + - [0x4017090, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017090"] + - [0x40171d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040171D0"] + - [0x4017360, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017360"] + - [0x4017560, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017560"] + - [0x40175a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040175A0"] + - [0x4017720, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017720"] + - [0x40177f0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040177F0"] + - [0x40179e0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040179E0"] + - [0x4017b60, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017B60"] + - [0x4017ce0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017CE0"] + - [0x4017e30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017E30"] + - [0x4017f20, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017F20"] + - [0x4017fb0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04017FB0"] + - [0x4018010, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018010"] + - [0x40180d0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040180D0"] + - [0x40181a0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x040181A0"] + - [0x4018280, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018280"] + - [0x4018310, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018310"] + - [0x4018500, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018500"] + - [0x4018700, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018700"] + - [0x4018790, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018790"] + - [0x4018950, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018950"] + - [0x4018b40, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018B40"] + - [0x4018cf0, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018CF0"] + - [0x4018e30, "models/tracks/kalimari_desert/kalimari_desert_vertices/d_course_kalimari_desert_vertex_0x04018E30"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_kalimari_desert_packed_dl_0: + symbol: d_course_kalimari_desert_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_kalimari_desert_packed_dl_68: + symbol: d_course_kalimari_desert_packed_dl_68 + type: MK64:PACKED_GFX + offset: 0x16 +d_course_kalimari_desert_packed_dl_D0: + symbol: d_course_kalimari_desert_packed_dl_D0 + type: MK64:PACKED_GFX + offset: 0x2C +d_course_kalimari_desert_packed_dl_138: + symbol: d_course_kalimari_desert_packed_dl_138 + type: MK64:PACKED_GFX + offset: 0x42 +d_course_kalimari_desert_packed_dl_1A0: + symbol: d_course_kalimari_desert_packed_dl_1A0 + type: MK64:PACKED_GFX + offset: 0x58 +d_course_kalimari_desert_packed_dl_208: + symbol: d_course_kalimari_desert_packed_dl_208 + type: MK64:PACKED_GFX + offset: 0x6E +d_course_kalimari_desert_packed_dl_270: + symbol: d_course_kalimari_desert_packed_dl_270 + type: MK64:PACKED_GFX + offset: 0x84 +d_course_kalimari_desert_packed_dl_2A8: + symbol: d_course_kalimari_desert_packed_dl_2A8 + type: MK64:PACKED_GFX + offset: 0x97 +d_course_kalimari_desert_packed_dl_358: + symbol: d_course_kalimari_desert_packed_dl_358 + type: MK64:PACKED_GFX + offset: 0xD8 +d_course_kalimari_desert_packed_dl_3E0: + symbol: d_course_kalimari_desert_packed_dl_3E0 + type: MK64:PACKED_GFX + offset: 0x102 +d_course_kalimari_desert_packed_dl_458: + symbol: d_course_kalimari_desert_packed_dl_458 + type: MK64:PACKED_GFX + offset: 0x122 +d_course_kalimari_desert_packed_dl_538: + symbol: d_course_kalimari_desert_packed_dl_538 + type: MK64:PACKED_GFX + offset: 0x181 +d_course_kalimari_desert_packed_dl_5F8: + symbol: d_course_kalimari_desert_packed_dl_5F8 + type: MK64:PACKED_GFX + offset: 0x1CC +d_course_kalimari_desert_packed_dl_6A0: + symbol: d_course_kalimari_desert_packed_dl_6A0 + type: MK64:PACKED_GFX + offset: 0x20A +d_course_kalimari_desert_packed_dl_760: + symbol: d_course_kalimari_desert_packed_dl_760 + type: MK64:PACKED_GFX + offset: 0x255 +d_course_kalimari_desert_packed_dl_840: + symbol: d_course_kalimari_desert_packed_dl_840 + type: MK64:PACKED_GFX + offset: 0x2B4 +d_course_kalimari_desert_packed_dl_900: + symbol: d_course_kalimari_desert_packed_dl_900 + type: MK64:PACKED_GFX + offset: 0x2FF +d_course_kalimari_desert_packed_dl_998: + symbol: d_course_kalimari_desert_packed_dl_998 + type: MK64:PACKED_GFX + offset: 0x333 +d_course_kalimari_desert_packed_dl_9F0: + symbol: d_course_kalimari_desert_packed_dl_9F0 + type: MK64:PACKED_GFX + offset: 0x352 +d_course_kalimari_desert_packed_dl_A08: + symbol: d_course_kalimari_desert_packed_dl_A08 + type: MK64:PACKED_GFX + offset: 0x359 +d_course_kalimari_desert_packed_dl_A18: + symbol: d_course_kalimari_desert_packed_dl_A18 + type: MK64:PACKED_GFX + offset: 0x35D +d_course_kalimari_desert_packed_dl_A90: + symbol: d_course_kalimari_desert_packed_dl_A90 + type: MK64:PACKED_GFX + offset: 0x377 +d_course_kalimari_desert_packed_dl_AF8: + symbol: d_course_kalimari_desert_packed_dl_AF8 + type: MK64:PACKED_GFX + offset: 0x38B +d_course_kalimari_desert_packed_dl_B58: + symbol: d_course_kalimari_desert_packed_dl_B58 + type: MK64:PACKED_GFX + offset: 0x39C +d_course_kalimari_desert_packed_dl_BC8: + symbol: d_course_kalimari_desert_packed_dl_BC8 + type: MK64:PACKED_GFX + offset: 0x3B5 +d_course_kalimari_desert_packed_dl_C30: + symbol: d_course_kalimari_desert_packed_dl_C30 + type: MK64:PACKED_GFX + offset: 0x3C9 +d_course_kalimari_desert_packed_dl_C98: + symbol: d_course_kalimari_desert_packed_dl_C98 + type: MK64:PACKED_GFX + offset: 0x3DD +d_course_kalimari_desert_packed_dl_CF8: + symbol: d_course_kalimari_desert_packed_dl_CF8 + type: MK64:PACKED_GFX + offset: 0x3EE +d_course_kalimari_desert_packed_dl_D60: + symbol: d_course_kalimari_desert_packed_dl_D60 + type: MK64:PACKED_GFX + offset: 0x402 +d_course_kalimari_desert_packed_dl_DC0: + symbol: d_course_kalimari_desert_packed_dl_DC0 + type: MK64:PACKED_GFX + offset: 0x413 +d_course_kalimari_desert_packed_dl_E20: + symbol: d_course_kalimari_desert_packed_dl_E20 + type: MK64:PACKED_GFX + offset: 0x424 +d_course_kalimari_desert_packed_dl_E80: + symbol: d_course_kalimari_desert_packed_dl_E80 + type: MK64:PACKED_GFX + offset: 0x435 +d_course_kalimari_desert_packed_dl_EE8: + symbol: d_course_kalimari_desert_packed_dl_EE8 + type: MK64:PACKED_GFX + offset: 0x44B +d_course_kalimari_desert_packed_dl_F48: + symbol: d_course_kalimari_desert_packed_dl_F48 + type: MK64:PACKED_GFX + offset: 0x45A +d_course_kalimari_desert_packed_dl_FB8: + symbol: d_course_kalimari_desert_packed_dl_FB8 + type: MK64:PACKED_GFX + offset: 0x473 +d_course_kalimari_desert_packed_dl_1028: + symbol: d_course_kalimari_desert_packed_dl_1028 + type: MK64:PACKED_GFX + offset: 0x48E +d_course_kalimari_desert_packed_dl_1098: + symbol: d_course_kalimari_desert_packed_dl_1098 + type: MK64:PACKED_GFX + offset: 0x4A9 +d_course_kalimari_desert_packed_dl_1110: + symbol: d_course_kalimari_desert_packed_dl_1110 + type: MK64:PACKED_GFX + offset: 0x4C9 +d_course_kalimari_desert_packed_dl_1178: + symbol: d_course_kalimari_desert_packed_dl_1178 + type: MK64:PACKED_GFX + offset: 0x4DF +d_course_kalimari_desert_packed_dl_11E0: + symbol: d_course_kalimari_desert_packed_dl_11E0 + type: MK64:PACKED_GFX + offset: 0x4F3 +d_course_kalimari_desert_packed_dl_1248: + symbol: d_course_kalimari_desert_packed_dl_1248 + type: MK64:PACKED_GFX + offset: 0x507 +d_course_kalimari_desert_packed_dl_12F0: + symbol: d_course_kalimari_desert_packed_dl_12F0 + type: MK64:PACKED_GFX + offset: 0x544 +d_course_kalimari_desert_packed_dl_13D0: + symbol: d_course_kalimari_desert_packed_dl_13D0 + type: MK64:PACKED_GFX + offset: 0x580 +d_course_kalimari_desert_packed_dl_14A0: + symbol: d_course_kalimari_desert_packed_dl_14A0 + type: MK64:PACKED_GFX + offset: 0x5B4 +d_course_kalimari_desert_packed_dl_1580: + symbol: d_course_kalimari_desert_packed_dl_1580 + type: MK64:PACKED_GFX + offset: 0x5F2 +d_course_kalimari_desert_packed_dl_1650: + symbol: d_course_kalimari_desert_packed_dl_1650 + type: MK64:PACKED_GFX + offset: 0x626 +d_course_kalimari_desert_packed_dl_1678: + symbol: d_course_kalimari_desert_packed_dl_1678 + type: MK64:PACKED_GFX + offset: 0x633 +d_course_kalimari_desert_packed_dl_1710: + symbol: d_course_kalimari_desert_packed_dl_1710 + type: MK64:PACKED_GFX + offset: 0x667 +d_course_kalimari_desert_packed_dl_1898: + symbol: d_course_kalimari_desert_packed_dl_1898 + type: MK64:PACKED_GFX + offset: 0x72D +d_course_kalimari_desert_packed_dl_19B8: + symbol: d_course_kalimari_desert_packed_dl_19B8 + type: MK64:PACKED_GFX + offset: 0x7B4 +d_course_kalimari_desert_packed_dl_1A78: + symbol: d_course_kalimari_desert_packed_dl_1A78 + type: MK64:PACKED_GFX + offset: 0x7FF +d_course_kalimari_desert_packed_dl_1B18: + symbol: d_course_kalimari_desert_packed_dl_1B18 + type: MK64:PACKED_GFX + offset: 0x838 +d_course_kalimari_desert_packed_dl_1B48: + symbol: d_course_kalimari_desert_packed_dl_1B48 + type: MK64:PACKED_GFX + offset: 0x848 +d_course_kalimari_desert_packed_dl_1BE0: + symbol: d_course_kalimari_desert_packed_dl_1BE0 + type: MK64:PACKED_GFX + offset: 0x865 +d_course_kalimari_desert_packed_dl_1C78: + symbol: d_course_kalimari_desert_packed_dl_1C78 + type: MK64:PACKED_GFX + offset: 0x882 +d_course_kalimari_desert_packed_dl_1D10: + symbol: d_course_kalimari_desert_packed_dl_1D10 + type: MK64:PACKED_GFX + offset: 0x89F +d_course_kalimari_desert_packed_dl_1DA8: + symbol: d_course_kalimari_desert_packed_dl_1DA8 + type: MK64:PACKED_GFX + offset: 0x8BC +d_course_kalimari_desert_packed_dl_1E40: + symbol: d_course_kalimari_desert_packed_dl_1E40 + type: MK64:PACKED_GFX + offset: 0x8D9 +d_course_kalimari_desert_packed_dl_1ED8: + symbol: d_course_kalimari_desert_packed_dl_1ED8 + type: MK64:PACKED_GFX + offset: 0x8F6 +d_course_kalimari_desert_packed_dl_1F10: + symbol: d_course_kalimari_desert_packed_dl_1F10 + type: MK64:PACKED_GFX + offset: 0x909 +d_course_kalimari_desert_packed_dl_1F78: + symbol: d_course_kalimari_desert_packed_dl_1F78 + type: MK64:PACKED_GFX + offset: 0x91F +d_course_kalimari_desert_packed_dl_2000: + symbol: d_course_kalimari_desert_packed_dl_2000 + type: MK64:PACKED_GFX + offset: 0x949 +d_course_kalimari_desert_packed_dl_2068: + symbol: d_course_kalimari_desert_packed_dl_2068 + type: MK64:PACKED_GFX + offset: 0x95F +d_course_kalimari_desert_packed_dl_20D0: + symbol: d_course_kalimari_desert_packed_dl_20D0 + type: MK64:PACKED_GFX + offset: 0x975 +d_course_kalimari_desert_packed_dl_2130: + symbol: d_course_kalimari_desert_packed_dl_2130 + type: MK64:PACKED_GFX + offset: 0x986 +d_course_kalimari_desert_packed_dl_2198: + symbol: d_course_kalimari_desert_packed_dl_2198 + type: MK64:PACKED_GFX + offset: 0x99C +d_course_kalimari_desert_packed_dl_21F8: + symbol: d_course_kalimari_desert_packed_dl_21F8 + type: MK64:PACKED_GFX + offset: 0x9AD +d_course_kalimari_desert_packed_dl_2260: + symbol: d_course_kalimari_desert_packed_dl_2260 + type: MK64:PACKED_GFX + offset: 0x9C3 +d_course_kalimari_desert_packed_dl_22D0: + symbol: d_course_kalimari_desert_packed_dl_22D0 + type: MK64:PACKED_GFX + offset: 0x9DE +d_course_kalimari_desert_packed_dl_2338: + symbol: d_course_kalimari_desert_packed_dl_2338 + type: MK64:PACKED_GFX + offset: 0x9F4 +d_course_kalimari_desert_packed_dl_23C0: + symbol: d_course_kalimari_desert_packed_dl_23C0 + type: MK64:PACKED_GFX + offset: 0xA1E +d_course_kalimari_desert_packed_dl_2430: + symbol: d_course_kalimari_desert_packed_dl_2430 + type: MK64:PACKED_GFX + offset: 0xA39 +d_course_kalimari_desert_packed_dl_24B0: + symbol: d_course_kalimari_desert_packed_dl_24B0 + type: MK64:PACKED_GFX + offset: 0xA5E +d_course_kalimari_desert_packed_dl_2528: + symbol: d_course_kalimari_desert_packed_dl_2528 + type: MK64:PACKED_GFX + offset: 0xA7E +d_course_kalimari_desert_packed_dl_2598: + symbol: d_course_kalimari_desert_packed_dl_2598 + type: MK64:PACKED_GFX + offset: 0xA99 +d_course_kalimari_desert_packed_dl_2620: + symbol: d_course_kalimari_desert_packed_dl_2620 + type: MK64:PACKED_GFX + offset: 0xAC1 +d_course_kalimari_desert_packed_dl_2698: + symbol: d_course_kalimari_desert_packed_dl_2698 + type: MK64:PACKED_GFX + offset: 0xAE1 +d_course_kalimari_desert_packed_dl_2710: + symbol: d_course_kalimari_desert_packed_dl_2710 + type: MK64:PACKED_GFX + offset: 0xB01 +d_course_kalimari_desert_packed_dl_2778: + symbol: d_course_kalimari_desert_packed_dl_2778 + type: MK64:PACKED_GFX + offset: 0xB17 +d_course_kalimari_desert_packed_dl_2808: + symbol: d_course_kalimari_desert_packed_dl_2808 + type: MK64:PACKED_GFX + offset: 0xB46 +d_course_kalimari_desert_packed_dl_2878: + symbol: d_course_kalimari_desert_packed_dl_2878 + type: MK64:PACKED_GFX + offset: 0xB61 +d_course_kalimari_desert_packed_dl_28E8: + symbol: d_course_kalimari_desert_packed_dl_28E8 + type: MK64:PACKED_GFX + offset: 0xB7C +d_course_kalimari_desert_packed_dl_2960: + symbol: d_course_kalimari_desert_packed_dl_2960 + type: MK64:PACKED_GFX + offset: 0xB9A +d_course_kalimari_desert_packed_dl_29F0: + symbol: d_course_kalimari_desert_packed_dl_29F0 + type: MK64:PACKED_GFX + offset: 0xBC9 +d_course_kalimari_desert_packed_dl_2AB8: + symbol: d_course_kalimari_desert_packed_dl_2AB8 + type: MK64:PACKED_GFX + offset: 0xC12 +d_course_kalimari_desert_packed_dl_2B20: + symbol: d_course_kalimari_desert_packed_dl_2B20 + type: MK64:PACKED_GFX + offset: 0xC28 +d_course_kalimari_desert_packed_dl_2B80: + symbol: d_course_kalimari_desert_packed_dl_2B80 + type: MK64:PACKED_GFX + offset: 0xC39 +d_course_kalimari_desert_packed_dl_2BE0: + symbol: d_course_kalimari_desert_packed_dl_2BE0 + type: MK64:PACKED_GFX + offset: 0xC4A +d_course_kalimari_desert_packed_dl_2C48: + symbol: d_course_kalimari_desert_packed_dl_2C48 + type: MK64:PACKED_GFX + offset: 0xC5E +d_course_kalimari_desert_packed_dl_2CB8: + symbol: d_course_kalimari_desert_packed_dl_2CB8 + type: MK64:PACKED_GFX + offset: 0xC77 +d_course_kalimari_desert_packed_dl_2D20: + symbol: d_course_kalimari_desert_packed_dl_2D20 + type: MK64:PACKED_GFX + offset: 0xC8B +d_course_kalimari_desert_packed_dl_2D90: + symbol: d_course_kalimari_desert_packed_dl_2D90 + type: MK64:PACKED_GFX + offset: 0xCA4 +d_course_kalimari_desert_packed_dl_2DF8: + symbol: d_course_kalimari_desert_packed_dl_2DF8 + type: MK64:PACKED_GFX + offset: 0xCBA +d_course_kalimari_desert_packed_dl_2E60: + symbol: d_course_kalimari_desert_packed_dl_2E60 + type: MK64:PACKED_GFX + offset: 0xCCE +d_course_kalimari_desert_packed_dl_2EC8: + symbol: d_course_kalimari_desert_packed_dl_2EC8 + type: MK64:PACKED_GFX + offset: 0xCE2 +d_course_kalimari_desert_packed_dl_2F30: + symbol: d_course_kalimari_desert_packed_dl_2F30 + type: MK64:PACKED_GFX + offset: 0xCF8 +d_course_kalimari_desert_packed_dl_2FB0: + symbol: d_course_kalimari_desert_packed_dl_2FB0 + type: MK64:PACKED_GFX + offset: 0xD1B +d_course_kalimari_desert_packed_dl_3018: + symbol: d_course_kalimari_desert_packed_dl_3018 + type: MK64:PACKED_GFX + offset: 0xD2F +d_course_kalimari_desert_packed_dl_3080: + symbol: d_course_kalimari_desert_packed_dl_3080 + type: MK64:PACKED_GFX + offset: 0xD45 +d_course_kalimari_desert_packed_dl_30E8: + symbol: d_course_kalimari_desert_packed_dl_30E8 + type: MK64:PACKED_GFX + offset: 0xD59 +d_course_kalimari_desert_packed_dl_3158: + symbol: d_course_kalimari_desert_packed_dl_3158 + type: MK64:PACKED_GFX + offset: 0xD72 +d_course_kalimari_desert_packed_dl_31C0: + symbol: d_course_kalimari_desert_packed_dl_31C0 + type: MK64:PACKED_GFX + offset: 0xD86 +d_course_kalimari_desert_packed_dl_3228: + symbol: d_course_kalimari_desert_packed_dl_3228 + type: MK64:PACKED_GFX + offset: 0xD9C +d_course_kalimari_desert_packed_dl_3298: + symbol: d_course_kalimari_desert_packed_dl_3298 + type: MK64:PACKED_GFX + offset: 0xDB7 +d_course_kalimari_desert_packed_dl_3300: + symbol: d_course_kalimari_desert_packed_dl_3300 + type: MK64:PACKED_GFX + offset: 0xDCB +d_course_kalimari_desert_packed_dl_3368: + symbol: d_course_kalimari_desert_packed_dl_3368 + type: MK64:PACKED_GFX + offset: 0xDDF +d_course_kalimari_desert_packed_dl_33D8: + symbol: d_course_kalimari_desert_packed_dl_33D8 + type: MK64:PACKED_GFX + offset: 0xDF8 +d_course_kalimari_desert_packed_dl_3440: + symbol: d_course_kalimari_desert_packed_dl_3440 + type: MK64:PACKED_GFX + offset: 0xE0C +d_course_kalimari_desert_packed_dl_34A8: + symbol: d_course_kalimari_desert_packed_dl_34A8 + type: MK64:PACKED_GFX + offset: 0xE22 +d_course_kalimari_desert_packed_dl_3508: + symbol: d_course_kalimari_desert_packed_dl_3508 + type: MK64:PACKED_GFX + offset: 0xE33 +d_course_kalimari_desert_packed_dl_3568: + symbol: d_course_kalimari_desert_packed_dl_3568 + type: MK64:PACKED_GFX + offset: 0xE44 +d_course_kalimari_desert_packed_dl_35D8: + symbol: d_course_kalimari_desert_packed_dl_35D8 + type: MK64:PACKED_GFX + offset: 0xE5F +d_course_kalimari_desert_packed_dl_3640: + symbol: d_course_kalimari_desert_packed_dl_3640 + type: MK64:PACKED_GFX + offset: 0xE75 +d_course_kalimari_desert_packed_dl_36A0: + symbol: d_course_kalimari_desert_packed_dl_36A0 + type: MK64:PACKED_GFX + offset: 0xE86 +d_course_kalimari_desert_packed_dl_3710: + symbol: d_course_kalimari_desert_packed_dl_3710 + type: MK64:PACKED_GFX + offset: 0xE9F +d_course_kalimari_desert_packed_dl_3780: + symbol: d_course_kalimari_desert_packed_dl_3780 + type: MK64:PACKED_GFX + offset: 0xEBA +d_course_kalimari_desert_packed_dl_37F0: + symbol: d_course_kalimari_desert_packed_dl_37F0 + type: MK64:PACKED_GFX + offset: 0xED3 +d_course_kalimari_desert_packed_dl_3858: + symbol: d_course_kalimari_desert_packed_dl_3858 + type: MK64:PACKED_GFX + offset: 0xEE9 +d_course_kalimari_desert_packed_dl_38C8: + symbol: d_course_kalimari_desert_packed_dl_38C8 + type: MK64:PACKED_GFX + offset: 0xF04 +d_course_kalimari_desert_packed_dl_3930: + symbol: d_course_kalimari_desert_packed_dl_3930 + type: MK64:PACKED_GFX + offset: 0xF1A +d_course_kalimari_desert_packed_dl_39A8: + symbol: d_course_kalimari_desert_packed_dl_39A8 + type: MK64:PACKED_GFX + offset: 0xF38 +d_course_kalimari_desert_packed_dl_3A10: + symbol: d_course_kalimari_desert_packed_dl_3A10 + type: MK64:PACKED_GFX + offset: 0xF4E +d_course_kalimari_desert_packed_dl_3A80: + symbol: d_course_kalimari_desert_packed_dl_3A80 + type: MK64:PACKED_GFX + offset: 0xF67 +d_course_kalimari_desert_packed_dl_3AE8: + symbol: d_course_kalimari_desert_packed_dl_3AE8 + type: MK64:PACKED_GFX + offset: 0xF7D +d_course_kalimari_desert_packed_dl_3B48: + symbol: d_course_kalimari_desert_packed_dl_3B48 + type: MK64:PACKED_GFX + offset: 0xF8E +d_course_kalimari_desert_packed_dl_3BC8: + symbol: d_course_kalimari_desert_packed_dl_3BC8 + type: MK64:PACKED_GFX + offset: 0xFB1 +d_course_kalimari_desert_packed_dl_3C30: + symbol: d_course_kalimari_desert_packed_dl_3C30 + type: MK64:PACKED_GFX + offset: 0xFC5 +d_course_kalimari_desert_packed_dl_3C98: + symbol: d_course_kalimari_desert_packed_dl_3C98 + type: MK64:PACKED_GFX + offset: 0xFDB +d_course_kalimari_desert_packed_dl_3D00: + symbol: d_course_kalimari_desert_packed_dl_3D00 + type: MK64:PACKED_GFX + offset: 0xFF1 +d_course_kalimari_desert_packed_dl_3D68: + symbol: d_course_kalimari_desert_packed_dl_3D68 + type: MK64:PACKED_GFX + offset: 0x1007 +d_course_kalimari_desert_packed_dl_3DC8: + symbol: d_course_kalimari_desert_packed_dl_3DC8 + type: MK64:PACKED_GFX + offset: 0x1018 +d_course_kalimari_desert_packed_dl_3E30: + symbol: d_course_kalimari_desert_packed_dl_3E30 + type: MK64:PACKED_GFX + offset: 0x102C +d_course_kalimari_desert_packed_dl_3E90: + symbol: d_course_kalimari_desert_packed_dl_3E90 + type: MK64:PACKED_GFX + offset: 0x103D +d_course_kalimari_desert_packed_dl_4018: + symbol: d_course_kalimari_desert_packed_dl_4018 + type: MK64:PACKED_GFX + offset: 0x10CE +d_course_kalimari_desert_packed_dl_40D0: + symbol: d_course_kalimari_desert_packed_dl_40D0 + type: MK64:PACKED_GFX + offset: 0x10F3 +d_course_kalimari_desert_packed_dl_4130: + symbol: d_course_kalimari_desert_packed_dl_4130 + type: MK64:PACKED_GFX + offset: 0x1104 +d_course_kalimari_desert_packed_dl_41E8: + symbol: d_course_kalimari_desert_packed_dl_41E8 + type: MK64:PACKED_GFX + offset: 0x1129 +d_course_kalimari_desert_packed_dl_4260: + symbol: d_course_kalimari_desert_packed_dl_4260 + type: MK64:PACKED_GFX + offset: 0x1149 +d_course_kalimari_desert_packed_dl_4350: + symbol: d_course_kalimari_desert_packed_dl_4350 + type: MK64:PACKED_GFX + offset: 0x118D +d_course_kalimari_desert_packed_dl_4438: + symbol: d_course_kalimari_desert_packed_dl_4438 + type: MK64:PACKED_GFX + offset: 0x11D0 +d_course_kalimari_desert_packed_dl_44F0: + symbol: d_course_kalimari_desert_packed_dl_44F0 + type: MK64:PACKED_GFX + offset: 0x11F5 +d_course_kalimari_desert_packed_dl_45D8: + symbol: d_course_kalimari_desert_packed_dl_45D8 + type: MK64:PACKED_GFX + offset: 0x1238 +d_course_kalimari_desert_packed_dl_46C0: + symbol: d_course_kalimari_desert_packed_dl_46C0 + type: MK64:PACKED_GFX + offset: 0x127B +d_course_kalimari_desert_packed_dl_47A8: + symbol: d_course_kalimari_desert_packed_dl_47A8 + type: MK64:PACKED_GFX + offset: 0x12BE +d_course_kalimari_desert_packed_dl_4878: + symbol: d_course_kalimari_desert_packed_dl_4878 + type: MK64:PACKED_GFX + offset: 0x12F2 +d_course_kalimari_desert_packed_dl_4948: + symbol: d_course_kalimari_desert_packed_dl_4948 + type: MK64:PACKED_GFX + offset: 0x1326 +d_course_kalimari_desert_packed_dl_49B0: + symbol: d_course_kalimari_desert_packed_dl_49B0 + type: MK64:PACKED_GFX + offset: 0x134B +d_course_kalimari_desert_packed_dl_4A10: + symbol: d_course_kalimari_desert_packed_dl_4A10 + type: MK64:PACKED_GFX + offset: 0x135C +d_course_kalimari_desert_packed_dl_4AA8: + symbol: d_course_kalimari_desert_packed_dl_4AA8 + type: MK64:PACKED_GFX + offset: 0x1379 +d_course_kalimari_desert_packed_dl_4B08: + symbol: d_course_kalimari_desert_packed_dl_4B08 + type: MK64:PACKED_GFX + offset: 0x138A +d_course_kalimari_desert_packed_dl_4B78: + symbol: d_course_kalimari_desert_packed_dl_4B78 + type: MK64:PACKED_GFX + offset: 0x13A5 +d_course_kalimari_desert_packed_dl_4BD8: + symbol: d_course_kalimari_desert_packed_dl_4BD8 + type: MK64:PACKED_GFX + offset: 0x13B6 +d_course_kalimari_desert_packed_dl_4C40: + symbol: d_course_kalimari_desert_packed_dl_4C40 + type: MK64:PACKED_GFX + offset: 0x13CC +d_course_kalimari_desert_packed_dl_4CB0: + symbol: d_course_kalimari_desert_packed_dl_4CB0 + type: MK64:PACKED_GFX + offset: 0x13E7 +d_course_kalimari_desert_packed_dl_4D20: + symbol: d_course_kalimari_desert_packed_dl_4D20 + type: MK64:PACKED_GFX + offset: 0x1400 +d_course_kalimari_desert_packed_dl_4D90: + symbol: d_course_kalimari_desert_packed_dl_4D90 + type: MK64:PACKED_GFX + offset: 0x1419 +d_course_kalimari_desert_packed_dl_4DF8: + symbol: d_course_kalimari_desert_packed_dl_4DF8 + type: MK64:PACKED_GFX + offset: 0x142F +d_course_kalimari_desert_packed_dl_4E60: + symbol: d_course_kalimari_desert_packed_dl_4E60 + type: MK64:PACKED_GFX + offset: 0x1445 +d_course_kalimari_desert_packed_dl_4EC8: + symbol: d_course_kalimari_desert_packed_dl_4EC8 + type: MK64:PACKED_GFX + offset: 0x1459 +d_course_kalimari_desert_packed_dl_4F40: + symbol: d_course_kalimari_desert_packed_dl_4F40 + type: MK64:PACKED_GFX + offset: 0x1479 +d_course_kalimari_desert_packed_dl_4FB0: + symbol: d_course_kalimari_desert_packed_dl_4FB0 + type: MK64:PACKED_GFX + offset: 0x1492 +d_course_kalimari_desert_packed_dl_5020: + symbol: d_course_kalimari_desert_packed_dl_5020 + type: MK64:PACKED_GFX + offset: 0x14AD +d_course_kalimari_desert_packed_dl_5090: + symbol: d_course_kalimari_desert_packed_dl_5090 + type: MK64:PACKED_GFX + offset: 0x14C8 +d_course_kalimari_desert_packed_dl_5100: + symbol: d_course_kalimari_desert_packed_dl_5100 + type: MK64:PACKED_GFX + offset: 0x14E1 +d_course_kalimari_desert_packed_dl_5170: + symbol: d_course_kalimari_desert_packed_dl_5170 + type: MK64:PACKED_GFX + offset: 0x14FC +d_course_kalimari_desert_packed_dl_51D0: + symbol: d_course_kalimari_desert_packed_dl_51D0 + type: MK64:PACKED_GFX + offset: 0x150D +d_course_kalimari_desert_packed_dl_5238: + symbol: d_course_kalimari_desert_packed_dl_5238 + type: MK64:PACKED_GFX + offset: 0x1523 +d_course_kalimari_desert_packed_dl_52E0: + symbol: d_course_kalimari_desert_packed_dl_52E0 + type: MK64:PACKED_GFX + offset: 0x1560 +d_course_kalimari_desert_packed_dl_5360: + symbol: d_course_kalimari_desert_packed_dl_5360 + type: MK64:PACKED_GFX + offset: 0x1583 +d_course_kalimari_desert_packed_dl_53D0: + symbol: d_course_kalimari_desert_packed_dl_53D0 + type: MK64:PACKED_GFX + offset: 0x159C +d_course_kalimari_desert_packed_dl_5450: + symbol: d_course_kalimari_desert_packed_dl_5450 + type: MK64:PACKED_GFX + offset: 0x15C1 +d_course_kalimari_desert_packed_dl_54C8: + symbol: d_course_kalimari_desert_packed_dl_54C8 + type: MK64:PACKED_GFX + offset: 0x15E1 +d_course_kalimari_desert_packed_dl_5580: + symbol: d_course_kalimari_desert_packed_dl_5580 + type: MK64:PACKED_GFX + offset: 0x1627 +d_course_kalimari_desert_packed_dl_55F0: + symbol: d_course_kalimari_desert_packed_dl_55F0 + type: MK64:PACKED_GFX + offset: 0x1640 +d_course_kalimari_desert_packed_dl_56A0: + symbol: d_course_kalimari_desert_packed_dl_56A0 + type: MK64:PACKED_GFX + offset: 0x167F +d_course_kalimari_desert_packed_dl_5728: + symbol: d_course_kalimari_desert_packed_dl_5728 + type: MK64:PACKED_GFX + offset: 0x16A7 +d_course_kalimari_desert_packed_dl_57D0: + symbol: d_course_kalimari_desert_packed_dl_57D0 + type: MK64:PACKED_GFX + offset: 0x16E1 +d_course_kalimari_desert_packed_dl_5878: + symbol: d_course_kalimari_desert_packed_dl_5878 + type: MK64:PACKED_GFX + offset: 0x1719 +d_course_kalimari_desert_packed_dl_5948: + symbol: d_course_kalimari_desert_packed_dl_5948 + type: MK64:PACKED_GFX + offset: 0x176A +d_course_kalimari_desert_packed_dl_59F0: + symbol: d_course_kalimari_desert_packed_dl_59F0 + type: MK64:PACKED_GFX + offset: 0x17A4 +d_course_kalimari_desert_packed_dl_5A60: + symbol: d_course_kalimari_desert_packed_dl_5A60 + type: MK64:PACKED_GFX + offset: 0x17BF +d_course_kalimari_desert_packed_dl_5B00: + symbol: d_course_kalimari_desert_packed_dl_5B00 + type: MK64:PACKED_GFX + offset: 0x17F4 +d_course_kalimari_desert_packed_dl_5B88: + symbol: d_course_kalimari_desert_packed_dl_5B88 + type: MK64:PACKED_GFX + offset: 0x181C +d_course_kalimari_desert_packed_dl_5C20: + symbol: d_course_kalimari_desert_packed_dl_5C20 + type: MK64:PACKED_GFX + offset: 0x184C +d_course_kalimari_desert_packed_dl_5C90: + symbol: d_course_kalimari_desert_packed_dl_5C90 + type: MK64:PACKED_GFX + offset: 0x1867 +d_course_kalimari_desert_packed_dl_5D30: + symbol: d_course_kalimari_desert_packed_dl_5D30 + type: MK64:PACKED_GFX + offset: 0x189A +d_course_kalimari_desert_packed_dl_5DB0: + symbol: d_course_kalimari_desert_packed_dl_5DB0 + type: MK64:PACKED_GFX + offset: 0x18BD +d_course_kalimari_desert_packed_dl_5E38: + symbol: d_course_kalimari_desert_packed_dl_5E38 + type: MK64:PACKED_GFX + offset: 0x18E5 +d_course_kalimari_desert_packed_dl_5EB0: + symbol: d_course_kalimari_desert_packed_dl_5EB0 + type: MK64:PACKED_GFX + offset: 0x1903 +d_course_kalimari_desert_packed_dl_5F28: + symbol: d_course_kalimari_desert_packed_dl_5F28 + type: MK64:PACKED_GFX + offset: 0x1923 +d_course_kalimari_desert_packed_dl_5FB0: + symbol: d_course_kalimari_desert_packed_dl_5FB0 + type: MK64:PACKED_GFX + offset: 0x194B +d_course_kalimari_desert_packed_dl_6050: + symbol: d_course_kalimari_desert_packed_dl_6050 + type: MK64:PACKED_GFX + offset: 0x1982 +d_course_kalimari_desert_packed_dl_60C8: + symbol: d_course_kalimari_desert_packed_dl_60C8 + type: MK64:PACKED_GFX + offset: 0x19A0 +d_course_kalimari_desert_packed_dl_6130: + symbol: d_course_kalimari_desert_packed_dl_6130 + type: MK64:PACKED_GFX + offset: 0x19B4 +d_course_kalimari_desert_packed_dl_61D8: + symbol: d_course_kalimari_desert_packed_dl_61D8 + type: MK64:PACKED_GFX + offset: 0x19EC +d_course_kalimari_desert_packed_dl_6290: + symbol: d_course_kalimari_desert_packed_dl_6290 + type: MK64:PACKED_GFX + offset: 0x1A30 +d_course_kalimari_desert_packed_dl_6310: + symbol: d_course_kalimari_desert_packed_dl_6310 + type: MK64:PACKED_GFX + offset: 0x1A55 +d_course_kalimari_desert_packed_dl_63C0: + symbol: d_course_kalimari_desert_packed_dl_63C0 + type: MK64:PACKED_GFX + offset: 0x1A94 +d_course_kalimari_desert_packed_dl_6490: + symbol: d_course_kalimari_desert_packed_dl_6490 + type: MK64:PACKED_GFX + offset: 0x1AE5 +d_course_kalimari_desert_packed_dl_6530: + symbol: d_course_kalimari_desert_packed_dl_6530 + type: MK64:PACKED_GFX + offset: 0x1B1C +d_course_kalimari_desert_packed_dl_65F0: + symbol: d_course_kalimari_desert_packed_dl_65F0 + type: MK64:PACKED_GFX + offset: 0x1B65 +d_course_kalimari_desert_packed_dl_66C8: + symbol: d_course_kalimari_desert_packed_dl_66C8 + type: MK64:PACKED_GFX + offset: 0x1BB9 +d_course_kalimari_desert_packed_dl_6780: + symbol: d_course_kalimari_desert_packed_dl_6780 + type: MK64:PACKED_GFX + offset: 0x1BFD +d_course_kalimari_desert_packed_dl_6820: + symbol: d_course_kalimari_desert_packed_dl_6820 + type: MK64:PACKED_GFX + offset: 0x1C30 +d_course_kalimari_desert_packed_dl_68E0: + symbol: d_course_kalimari_desert_packed_dl_68E0 + type: MK64:PACKED_GFX + offset: 0x1C77 +d_course_kalimari_desert_packed_dl_6958: + symbol: d_course_kalimari_desert_packed_dl_6958 + type: MK64:PACKED_GFX + offset: 0x1C97 +d_course_kalimari_desert_packed_dl_69F8: + symbol: d_course_kalimari_desert_packed_dl_69F8 + type: MK64:PACKED_GFX + offset: 0x1CCC +d_course_kalimari_desert_packed_dl_6A78: + symbol: d_course_kalimari_desert_packed_dl_6A78 + type: MK64:PACKED_GFX + offset: 0x1CEF +d_course_kalimari_desert_packed_dl_6B28: + symbol: d_course_kalimari_desert_packed_dl_6B28 + type: MK64:PACKED_GFX + offset: 0x1D2E +d_course_kalimari_desert_packed_dl_6BC0: + symbol: d_course_kalimari_desert_packed_dl_6BC0 + type: MK64:PACKED_GFX + offset: 0x1D5E +d_course_kalimari_desert_packed_dl_6C70: + symbol: d_course_kalimari_desert_packed_dl_6C70 + type: MK64:PACKED_GFX + offset: 0x1D9B +d_course_kalimari_desert_packed_dl_6CF0: + symbol: d_course_kalimari_desert_packed_dl_6CF0 + type: MK64:PACKED_GFX + offset: 0x1DBE +d_course_kalimari_desert_packed_dl_6DA0: + symbol: d_course_kalimari_desert_packed_dl_6DA0 + type: MK64:PACKED_GFX + offset: 0x1DFD +d_course_kalimari_desert_packed_dl_6E38: + symbol: d_course_kalimari_desert_packed_dl_6E38 + type: MK64:PACKED_GFX + offset: 0x1E2D +d_course_kalimari_desert_packed_dl_6EE8: + symbol: d_course_kalimari_desert_packed_dl_6EE8 + type: MK64:PACKED_GFX + offset: 0x1E6A +d_course_kalimari_desert_packed_dl_6F70: + symbol: d_course_kalimari_desert_packed_dl_6F70 + type: MK64:PACKED_GFX + offset: 0x1E92 +d_course_kalimari_desert_packed_dl_70F8: + symbol: d_course_kalimari_desert_packed_dl_70F8 + type: MK64:PACKED_GFX + offset: 0x1F23 +d_course_kalimari_desert_packed_dl_71C8: + symbol: d_course_kalimari_desert_packed_dl_71C8 + type: MK64:PACKED_GFX + offset: 0x1F99 +d_course_kalimari_desert_packed_dl_71D8: + symbol: d_course_kalimari_desert_packed_dl_71D8 + type: MK64:PACKED_GFX + offset: 0x1F9D +d_course_kalimari_desert_packed_dl_72B8: + symbol: d_course_kalimari_desert_packed_dl_72B8 + type: MK64:PACKED_GFX + offset: 0x1FDB +d_course_kalimari_desert_packed_dl_73A8: + symbol: d_course_kalimari_desert_packed_dl_73A8 + type: MK64:PACKED_GFX + offset: 0x2023 +d_course_kalimari_desert_packed_dl_74A8: + symbol: d_course_kalimari_desert_packed_dl_74A8 + type: MK64:PACKED_GFX + offset: 0x2075 +d_course_kalimari_desert_packed_dl_7598: + symbol: d_course_kalimari_desert_packed_dl_7598 + type: MK64:PACKED_GFX + offset: 0x20BD +d_course_kalimari_desert_packed_dl_75C0: + symbol: d_course_kalimari_desert_packed_dl_75C0 + type: MK64:PACKED_GFX + offset: 0x20CA +d_course_kalimari_desert_packed_dl_76C0: + symbol: d_course_kalimari_desert_packed_dl_76C0 + type: MK64:PACKED_GFX + offset: 0x211C +d_course_kalimari_desert_packed_dl_7728: + symbol: d_course_kalimari_desert_packed_dl_7728 + type: MK64:PACKED_GFX + offset: 0x2132 +d_course_kalimari_desert_packed_dl_77F8: + symbol: d_course_kalimari_desert_packed_dl_77F8 + type: MK64:PACKED_GFX + offset: 0x2166 +d_course_kalimari_desert_packed_dl_7890: + symbol: d_course_kalimari_desert_packed_dl_7890 + type: MK64:PACKED_GFX + offset: 0x219A +d_course_kalimari_desert_packed_dl_79F8: + symbol: d_course_kalimari_desert_packed_dl_79F8 + type: MK64:PACKED_GFX + offset: 0x222B +d_course_kalimari_desert_packed_dl_7BC8: + symbol: d_course_kalimari_desert_packed_dl_7BC8 + type: MK64:PACKED_GFX + offset: 0x22DA +d_course_kalimari_desert_packed_dl_7CC8: + symbol: d_course_kalimari_desert_packed_dl_7CC8 + type: MK64:PACKED_GFX + offset: 0x232C +d_course_kalimari_desert_packed_dl_7E18: + symbol: d_course_kalimari_desert_packed_dl_7E18 + type: MK64:PACKED_GFX + offset: 0x23AE +d_course_kalimari_desert_packed_dl_7F80: + symbol: d_course_kalimari_desert_packed_dl_7F80 + type: MK64:PACKED_GFX + offset: 0x243F +d_course_kalimari_desert_packed_dl_80B8: + symbol: d_course_kalimari_desert_packed_dl_80B8 + type: MK64:PACKED_GFX + offset: 0x24B2 +d_course_kalimari_desert_packed_dl_81A0: + symbol: d_course_kalimari_desert_packed_dl_81A0 + type: MK64:PACKED_GFX + offset: 0x24F5 +d_course_kalimari_desert_packed_dl_8330: + symbol: d_course_kalimari_desert_packed_dl_8330 + type: MK64:PACKED_GFX + offset: 0x257C +d_course_kalimari_desert_packed_dl_8398: + symbol: d_course_kalimari_desert_packed_dl_8398 + type: MK64:PACKED_GFX + offset: 0x25A1 +d_course_kalimari_desert_packed_dl_8418: + symbol: d_course_kalimari_desert_packed_dl_8418 + type: MK64:PACKED_GFX + offset: 0x25C6 +d_course_kalimari_desert_packed_dl_8490: + symbol: d_course_kalimari_desert_packed_dl_8490 + type: MK64:PACKED_GFX + offset: 0x25E6 +d_course_kalimari_desert_packed_dl_8508: + symbol: d_course_kalimari_desert_packed_dl_8508 + type: MK64:PACKED_GFX + offset: 0x2606 +d_course_kalimari_desert_packed_dl_85A0: + symbol: d_course_kalimari_desert_packed_dl_85A0 + type: MK64:PACKED_GFX + offset: 0x263A +d_course_kalimari_desert_packed_dl_8610: + symbol: d_course_kalimari_desert_packed_dl_8610 + type: MK64:PACKED_GFX + offset: 0x2655 +d_course_kalimari_desert_packed_dl_8690: + symbol: d_course_kalimari_desert_packed_dl_8690 + type: MK64:PACKED_GFX + offset: 0x267A +d_course_kalimari_desert_packed_dl_8728: + symbol: d_course_kalimari_desert_packed_dl_8728 + type: MK64:PACKED_GFX + offset: 0x2697 +d_course_kalimari_desert_packed_dl_8798: + symbol: d_course_kalimari_desert_packed_dl_8798 + type: MK64:PACKED_GFX + offset: 0x26B2 +d_course_kalimari_desert_packed_dl_8808: + symbol: d_course_kalimari_desert_packed_dl_8808 + type: MK64:PACKED_GFX + offset: 0x26CD +d_course_kalimari_desert_packed_dl_8888: + symbol: d_course_kalimari_desert_packed_dl_8888 + type: MK64:PACKED_GFX + offset: 0x26F2 +d_course_kalimari_desert_packed_dl_8920: + symbol: d_course_kalimari_desert_packed_dl_8920 + type: MK64:PACKED_GFX + offset: 0x2726 +d_course_kalimari_desert_packed_dl_8990: + symbol: d_course_kalimari_desert_packed_dl_8990 + type: MK64:PACKED_GFX + offset: 0x2741 +d_course_kalimari_desert_packed_dl_8A40: + symbol: d_course_kalimari_desert_packed_dl_8A40 + type: MK64:PACKED_GFX + offset: 0x2782 +d_course_kalimari_desert_packed_dl_8AC8: + symbol: d_course_kalimari_desert_packed_dl_8AC8 + type: MK64:PACKED_GFX + offset: 0x27AC +d_course_kalimari_desert_packed_dl_8B60: + symbol: d_course_kalimari_desert_packed_dl_8B60 + type: MK64:PACKED_GFX + offset: 0x27E0 +d_course_kalimari_desert_packed_dl_8C08: + symbol: d_course_kalimari_desert_packed_dl_8C08 + type: MK64:PACKED_GFX + offset: 0x281C +d_course_kalimari_desert_packed_dl_8C98: + symbol: d_course_kalimari_desert_packed_dl_8C98 + type: MK64:PACKED_GFX + offset: 0x284B +d_course_kalimari_desert_packed_dl_8D20: + symbol: d_course_kalimari_desert_packed_dl_8D20 + type: MK64:PACKED_GFX + offset: 0x2875 +d_course_kalimari_desert_packed_dl_8D98: + symbol: d_course_kalimari_desert_packed_dl_8D98 + type: MK64:PACKED_GFX + offset: 0x2895 +d_course_kalimari_desert_packed_dl_8E20: + symbol: d_course_kalimari_desert_packed_dl_8E20 + type: MK64:PACKED_GFX + offset: 0x28BF +d_course_kalimari_desert_packed_dl_8EC8: + symbol: d_course_kalimari_desert_packed_dl_8EC8 + type: MK64:PACKED_GFX + offset: 0x28FC +d_course_kalimari_desert_packed_dl_8F50: + symbol: d_course_kalimari_desert_packed_dl_8F50 + type: MK64:PACKED_GFX + offset: 0x2926 +d_course_kalimari_desert_packed_dl_8FF8: + symbol: d_course_kalimari_desert_packed_dl_8FF8 + type: MK64:PACKED_GFX + offset: 0x2962 +d_course_kalimari_desert_packed_dl_9068: + symbol: d_course_kalimari_desert_packed_dl_9068 + type: MK64:PACKED_GFX + offset: 0x297D +d_course_kalimari_desert_packed_dl_90D8: + symbol: d_course_kalimari_desert_packed_dl_90D8 + type: MK64:PACKED_GFX + offset: 0x2998 +d_course_kalimari_desert_packed_dl_9138: + symbol: d_course_kalimari_desert_packed_dl_9138 + type: MK64:PACKED_GFX + offset: 0x29A9 +d_course_kalimari_desert_packed_dl_91A8: + symbol: d_course_kalimari_desert_packed_dl_91A8 + type: MK64:PACKED_GFX + offset: 0x29C4 +d_course_kalimari_desert_packed_dl_9210: + symbol: d_course_kalimari_desert_packed_dl_9210 + type: MK64:PACKED_GFX + offset: 0x29DA +d_course_kalimari_desert_packed_dl_9280: + symbol: d_course_kalimari_desert_packed_dl_9280 + type: MK64:PACKED_GFX + offset: 0x29F5 +d_course_kalimari_desert_packed_dl_92F8: + symbol: d_course_kalimari_desert_packed_dl_92F8 + type: MK64:PACKED_GFX + offset: 0x2A15 +d_course_kalimari_desert_packed_dl_9368: + symbol: d_course_kalimari_desert_packed_dl_9368 + type: MK64:PACKED_GFX + offset: 0x2A30 +d_course_kalimari_desert_packed_dl_93F0: + symbol: d_course_kalimari_desert_packed_dl_93F0 + type: MK64:PACKED_GFX + offset: 0x2A5A +d_course_kalimari_desert_packed_dl_9480: + symbol: d_course_kalimari_desert_packed_dl_9480 + type: MK64:PACKED_GFX + offset: 0x2A87 +d_course_kalimari_desert_packed_dl_9510: + symbol: d_course_kalimari_desert_packed_dl_9510 + type: MK64:PACKED_GFX + offset: 0x2AB6 +d_course_kalimari_desert_packed_dl_9598: + symbol: d_course_kalimari_desert_packed_dl_9598 + type: MK64:PACKED_GFX + offset: 0x2AE0 +d_course_kalimari_desert_packed_dl_9630: + symbol: d_course_kalimari_desert_packed_dl_9630 + type: MK64:PACKED_GFX + offset: 0x2B14 +d_course_kalimari_desert_packed_dl_96A8: + symbol: d_course_kalimari_desert_packed_dl_96A8 + type: MK64:PACKED_GFX + offset: 0x2B34 +d_course_kalimari_desert_packed_dl_9740: + symbol: d_course_kalimari_desert_packed_dl_9740 + type: MK64:PACKED_GFX + offset: 0x2B68 +d_course_kalimari_desert_packed_dl_97B8: + symbol: d_course_kalimari_desert_packed_dl_97B8 + type: MK64:PACKED_GFX + offset: 0x2B88 +d_course_kalimari_desert_packed_dl_9820: + symbol: d_course_kalimari_desert_packed_dl_9820 + type: MK64:PACKED_GFX + offset: 0x2B9E +d_course_kalimari_desert_packed_dl_98E0: + symbol: d_course_kalimari_desert_packed_dl_98E0 + type: MK64:PACKED_GFX + offset: 0x2BE9 +d_course_kalimari_desert_packed_dl_9958: + symbol: d_course_kalimari_desert_packed_dl_9958 + type: MK64:PACKED_GFX + offset: 0x2C09 +d_course_kalimari_desert_packed_dl_99D8: + symbol: d_course_kalimari_desert_packed_dl_99D8 + type: MK64:PACKED_GFX + offset: 0x2C2E +d_course_kalimari_desert_packed_dl_9A68: + symbol: d_course_kalimari_desert_packed_dl_9A68 + type: MK64:PACKED_GFX + offset: 0x2C5B +d_course_kalimari_desert_packed_dl_9B10: + symbol: d_course_kalimari_desert_packed_dl_9B10 + type: MK64:PACKED_GFX + offset: 0x2C97 +d_course_kalimari_desert_packed_dl_9BD8: + symbol: d_course_kalimari_desert_packed_dl_9BD8 + type: MK64:PACKED_GFX + offset: 0x2CE0 +d_course_kalimari_desert_packed_dl_9C50: + symbol: d_course_kalimari_desert_packed_dl_9C50 + type: MK64:PACKED_GFX + offset: 0x2D00 +d_course_kalimari_desert_packed_dl_9CC0: + symbol: d_course_kalimari_desert_packed_dl_9CC0 + type: MK64:PACKED_GFX + offset: 0x2D19 +d_course_kalimari_desert_packed_dl_9D48: + symbol: d_course_kalimari_desert_packed_dl_9D48 + type: MK64:PACKED_GFX + offset: 0x2D43 +d_course_kalimari_desert_packed_dl_9DC0: + symbol: d_course_kalimari_desert_packed_dl_9DC0 + type: MK64:PACKED_GFX + offset: 0x2D63 +d_course_kalimari_desert_packed_dl_9E38: + symbol: d_course_kalimari_desert_packed_dl_9E38 + type: MK64:PACKED_GFX + offset: 0x2D83 +d_course_kalimari_desert_packed_dl_9EB0: + symbol: d_course_kalimari_desert_packed_dl_9EB0 + type: MK64:PACKED_GFX + offset: 0x2DA3 +d_course_kalimari_desert_packed_dl_9F20: + symbol: d_course_kalimari_desert_packed_dl_9F20 + type: MK64:PACKED_GFX + offset: 0x2DBC +d_course_kalimari_desert_packed_dl_9F88: + symbol: d_course_kalimari_desert_packed_dl_9F88 + type: MK64:PACKED_GFX + offset: 0x2DD0 +d_course_kalimari_desert_packed_dl_9FE8: + symbol: d_course_kalimari_desert_packed_dl_9FE8 + type: MK64:PACKED_GFX + offset: 0x2DE1 +d_course_kalimari_desert_packed_dl_A050: + symbol: d_course_kalimari_desert_packed_dl_A050 + type: MK64:PACKED_GFX + offset: 0x2DF7 +d_course_kalimari_desert_packed_dl_A0C0: + symbol: d_course_kalimari_desert_packed_dl_A0C0 + type: MK64:PACKED_GFX + offset: 0x2E10 +d_course_kalimari_desert_packed_dl_A138: + symbol: d_course_kalimari_desert_packed_dl_A138 + type: MK64:PACKED_GFX + offset: 0x2E2E +d_course_kalimari_desert_packed_dl_A1A0: + symbol: d_course_kalimari_desert_packed_dl_A1A0 + type: MK64:PACKED_GFX + offset: 0x2E44 +d_course_kalimari_desert_packed_dl_A228: + symbol: d_course_kalimari_desert_packed_dl_A228 + type: MK64:PACKED_GFX + offset: 0x2E6C +d_course_kalimari_desert_packed_dl_A2D0: + symbol: d_course_kalimari_desert_packed_dl_A2D0 + type: MK64:PACKED_GFX + offset: 0x2EA6 +d_course_kalimari_desert_packed_dl_A350: + symbol: d_course_kalimari_desert_packed_dl_A350 + type: MK64:PACKED_GFX + offset: 0x2ECB +d_course_kalimari_desert_packed_dl_A3D8: + symbol: d_course_kalimari_desert_packed_dl_A3D8 + type: MK64:PACKED_GFX + offset: 0x2EF5 +d_course_kalimari_desert_packed_dl_A458: + symbol: d_course_kalimari_desert_packed_dl_A458 + type: MK64:PACKED_GFX + offset: 0x2F18 +d_course_kalimari_desert_packed_dl_A4D0: + symbol: d_course_kalimari_desert_packed_dl_A4D0 + type: MK64:PACKED_GFX + offset: 0x2F36 +d_course_kalimari_desert_packed_dl_A548: + symbol: d_course_kalimari_desert_packed_dl_A548 + type: MK64:PACKED_GFX + offset: 0x2F56 +d_course_kalimari_desert_packed_dl_A5F0: + symbol: d_course_kalimari_desert_packed_dl_A5F0 + type: MK64:PACKED_GFX + offset: 0x2F93 +d_course_kalimari_desert_packed_dl_A670: + symbol: d_course_kalimari_desert_packed_dl_A670 + type: MK64:PACKED_GFX + offset: 0x2FC1 +d_course_kalimari_desert_packed_dl_A680: + symbol: d_course_kalimari_desert_packed_dl_A680 + type: MK64:PACKED_GFX + offset: 0x2FC5 diff --git a/yamls/us/models/tracks/kalimari_desert/kalimari_desert_vertices.yml b/yamls/us/models/tracks/kalimari_desert/kalimari_desert_vertices.yml new file mode 100644 index 000000000..3536d43ad --- /dev/null +++ b/yamls/us/models/tracks/kalimari_desert/kalimari_desert_vertices.yml @@ -0,0 +1,2265 @@ +:config: + segments: + - [0x0F, 0x928c70] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_kalimari_desert_vertex_0x04000000: + symbol: d_course_kalimari_desert_vertex_0x04000000 + type: mk64:course_vtx + count: 8 + offset: 0x0 + +d_course_kalimari_desert_vertex_0x04000080: + symbol: d_course_kalimari_desert_vertex_0x04000080 + type: mk64:course_vtx + count: 8 + offset: 0x70 + +d_course_kalimari_desert_vertex_0x04000100: + symbol: d_course_kalimari_desert_vertex_0x04000100 + type: mk64:course_vtx + count: 8 + offset: 0xe0 + +d_course_kalimari_desert_vertex_0x04000180: + symbol: d_course_kalimari_desert_vertex_0x04000180 + type: mk64:course_vtx + count: 8 + offset: 0x150 + +d_course_kalimari_desert_vertex_0x04000200: + symbol: d_course_kalimari_desert_vertex_0x04000200 + type: mk64:course_vtx + count: 8 + offset: 0x1c0 + +d_course_kalimari_desert_vertex_0x04000280: + symbol: d_course_kalimari_desert_vertex_0x04000280 + type: mk64:course_vtx + count: 8 + offset: 0x230 + +d_course_kalimari_desert_vertex_0x04000300: + symbol: d_course_kalimari_desert_vertex_0x04000300 + type: mk64:course_vtx + count: 50 + offset: 0x2a0 + +d_course_kalimari_desert_vertex_0x04000500: + symbol: d_course_kalimari_desert_vertex_0x04000500 + type: mk64:course_vtx + count: 8 + offset: 0x460 + +d_course_kalimari_desert_vertex_0x04000580: + symbol: d_course_kalimari_desert_vertex_0x04000580 + type: mk64:course_vtx + count: 36 + offset: 0x4d0 + +d_course_kalimari_desert_vertex_0x04000700: + symbol: d_course_kalimari_desert_vertex_0x04000700 + type: mk64:course_vtx + count: 22 + offset: 0x620 + +d_course_kalimari_desert_vertex_0x04000800: + symbol: d_course_kalimari_desert_vertex_0x04000800 + type: mk64:course_vtx + count: 48 + offset: 0x700 + +d_course_kalimari_desert_vertex_0x040009E0: + symbol: d_course_kalimari_desert_vertex_0x040009E0 + type: mk64:course_vtx + count: 24 + offset: 0x8a4 + +d_course_kalimari_desert_vertex_0x04000B00: + symbol: d_course_kalimari_desert_vertex_0x04000B00 + type: mk64:course_vtx + count: 48 + offset: 0x9a0 + +d_course_kalimari_desert_vertex_0x04000CE0: + symbol: d_course_kalimari_desert_vertex_0x04000CE0 + type: mk64:course_vtx + count: 6 + offset: 0xb44 + +d_course_kalimari_desert_vertex_0x04000D40: + symbol: d_course_kalimari_desert_vertex_0x04000D40 + type: mk64:course_vtx + count: 50 + offset: 0xb98 + +d_course_kalimari_desert_vertex_0x04000F40: + symbol: d_course_kalimari_desert_vertex_0x04000F40 + type: mk64:course_vtx + count: 48 + offset: 0xd58 + +d_course_kalimari_desert_vertex_0x04001120: + symbol: d_course_kalimari_desert_vertex_0x04001120 + type: mk64:course_vtx + count: 6 + offset: 0xefc + +d_course_kalimari_desert_vertex_0x04001180: + symbol: d_course_kalimari_desert_vertex_0x04001180 + type: mk64:course_vtx + count: 48 + offset: 0xf50 + +d_course_kalimari_desert_vertex_0x04001360: + symbol: d_course_kalimari_desert_vertex_0x04001360 + type: mk64:course_vtx + count: 24 + offset: 0x10f4 + +d_course_kalimari_desert_vertex_0x04001480: + symbol: d_course_kalimari_desert_vertex_0x04001480 + type: mk64:course_vtx + count: 48 + offset: 0x11f0 + +d_course_kalimari_desert_vertex_0x04001660: + symbol: d_course_kalimari_desert_vertex_0x04001660 + type: mk64:course_vtx + count: 6 + offset: 0x1394 + +d_course_kalimari_desert_vertex_0x040016C0: + symbol: d_course_kalimari_desert_vertex_0x040016C0 + type: mk64:course_vtx + count: 40 + offset: 0x13e8 + +d_course_kalimari_desert_vertex_0x04001880: + symbol: d_course_kalimari_desert_vertex_0x04001880 + type: mk64:course_vtx + count: 4 + offset: 0x1570 + +d_course_kalimari_desert_vertex_0x040018C0: + symbol: d_course_kalimari_desert_vertex_0x040018C0 + type: mk64:course_vtx + count: 6 + offset: 0x15a8 + +d_course_kalimari_desert_vertex_0x04001920: + symbol: d_course_kalimari_desert_vertex_0x04001920 + type: mk64:course_vtx + count: 9 + offset: 0x15fc + +d_course_kalimari_desert_vertex_0x040019B0: + symbol: d_course_kalimari_desert_vertex_0x040019B0 + type: mk64:course_vtx + count: 6 + offset: 0x167a + +d_course_kalimari_desert_vertex_0x04001A10: + symbol: d_course_kalimari_desert_vertex_0x04001A10 + type: mk64:course_vtx + count: 21 + offset: 0x16ce + +d_course_kalimari_desert_vertex_0x04001B00: + symbol: d_course_kalimari_desert_vertex_0x04001B00 + type: mk64:course_vtx + count: 9 + offset: 0x17a0 + +d_course_kalimari_desert_vertex_0x04001B90: + symbol: d_course_kalimari_desert_vertex_0x04001B90 + type: mk64:course_vtx + count: 7 + offset: 0x181e + +d_course_kalimari_desert_vertex_0x04001C00: + symbol: d_course_kalimari_desert_vertex_0x04001C00 + type: mk64:course_vtx + count: 6 + offset: 0x1880 + +d_course_kalimari_desert_vertex_0x04001C60: + symbol: d_course_kalimari_desert_vertex_0x04001C60 + type: mk64:course_vtx + count: 9 + offset: 0x18d4 + +d_course_kalimari_desert_vertex_0x04001CF0: + symbol: d_course_kalimari_desert_vertex_0x04001CF0 + type: mk64:course_vtx + count: 6 + offset: 0x1952 + +d_course_kalimari_desert_vertex_0x04001D50: + symbol: d_course_kalimari_desert_vertex_0x04001D50 + type: mk64:course_vtx + count: 6 + offset: 0x19a6 + +d_course_kalimari_desert_vertex_0x04001DB0: + symbol: d_course_kalimari_desert_vertex_0x04001DB0 + type: mk64:course_vtx + count: 6 + offset: 0x19fa + +d_course_kalimari_desert_vertex_0x04001E10: + symbol: d_course_kalimari_desert_vertex_0x04001E10 + type: mk64:course_vtx + count: 16 + offset: 0x1a4e + +d_course_kalimari_desert_vertex_0x04001EB0: + symbol: d_course_kalimari_desert_vertex_0x04001EB0 + type: mk64:course_vtx + count: 3 + offset: 0x1ada + +d_course_kalimari_desert_vertex_0x04001EE0: + symbol: d_course_kalimari_desert_vertex_0x04001EE0 + type: mk64:course_vtx + count: 20 + offset: 0x1b04 + +d_course_kalimari_desert_vertex_0x04001FC0: + symbol: d_course_kalimari_desert_vertex_0x04001FC0 + type: mk64:course_vtx + count: 22 + offset: 0x1bc8 + +d_course_kalimari_desert_vertex_0x040020C0: + symbol: d_course_kalimari_desert_vertex_0x040020C0 + type: mk64:course_vtx + count: 24 + offset: 0x1ca8 + +d_course_kalimari_desert_vertex_0x040021E0: + symbol: d_course_kalimari_desert_vertex_0x040021E0 + type: mk64:course_vtx + count: 34 + offset: 0x1da4 + +d_course_kalimari_desert_vertex_0x04002340: + symbol: d_course_kalimari_desert_vertex_0x04002340 + type: mk64:course_vtx + count: 17 + offset: 0x1ed8 + +d_course_kalimari_desert_vertex_0x040023F0: + symbol: d_course_kalimari_desert_vertex_0x040023F0 + type: mk64:course_vtx + count: 8 + offset: 0x1f72 + +d_course_kalimari_desert_vertex_0x04002470: + symbol: d_course_kalimari_desert_vertex_0x04002470 + type: mk64:course_vtx + count: 9 + offset: 0x1fe2 + +d_course_kalimari_desert_vertex_0x04002500: + symbol: d_course_kalimari_desert_vertex_0x04002500 + type: mk64:course_vtx + count: 25 + offset: 0x2060 + +d_course_kalimari_desert_vertex_0x04002630: + symbol: d_course_kalimari_desert_vertex_0x04002630 + type: mk64:course_vtx + count: 34 + offset: 0x216a + +d_course_kalimari_desert_vertex_0x04002790: + symbol: d_course_kalimari_desert_vertex_0x04002790 + type: mk64:course_vtx + count: 22 + offset: 0x229e + +d_course_kalimari_desert_vertex_0x04002890: + symbol: d_course_kalimari_desert_vertex_0x04002890 + type: mk64:course_vtx + count: 22 + offset: 0x237e + +d_course_kalimari_desert_vertex_0x04002990: + symbol: d_course_kalimari_desert_vertex_0x04002990 + type: mk64:course_vtx + count: 20 + offset: 0x245e + +d_course_kalimari_desert_vertex_0x04002A70: + symbol: d_course_kalimari_desert_vertex_0x04002A70 + type: mk64:course_vtx + count: 22 + offset: 0x2522 + +d_course_kalimari_desert_vertex_0x04002B70: + symbol: d_course_kalimari_desert_vertex_0x04002B70 + type: mk64:course_vtx + count: 18 + offset: 0x2602 + +d_course_kalimari_desert_vertex_0x04002C30: + symbol: d_course_kalimari_desert_vertex_0x04002C30 + type: mk64:course_vtx + count: 18 + offset: 0x26aa + +d_course_kalimari_desert_vertex_0x04002CF0: + symbol: d_course_kalimari_desert_vertex_0x04002CF0 + type: mk64:course_vtx + count: 40 + offset: 0x2752 + +d_course_kalimari_desert_vertex_0x04002EB0: + symbol: d_course_kalimari_desert_vertex_0x04002EB0 + type: mk64:course_vtx + count: 48 + offset: 0x28da + +d_course_kalimari_desert_vertex_0x04003090: + symbol: d_course_kalimari_desert_vertex_0x04003090 + type: mk64:course_vtx + count: 50 + offset: 0x2a7e + +d_course_kalimari_desert_vertex_0x04003290: + symbol: d_course_kalimari_desert_vertex_0x04003290 + type: mk64:course_vtx + count: 41 + offset: 0x2c3e + +d_course_kalimari_desert_vertex_0x04003460: + symbol: d_course_kalimari_desert_vertex_0x04003460 + type: mk64:course_vtx + count: 50 + offset: 0x2dd4 + +d_course_kalimari_desert_vertex_0x04003660: + symbol: d_course_kalimari_desert_vertex_0x04003660 + type: mk64:course_vtx + count: 41 + offset: 0x2f94 + +d_course_kalimari_desert_vertex_0x04003830: + symbol: d_course_kalimari_desert_vertex_0x04003830 + type: mk64:course_vtx + count: 50 + offset: 0x312a + +d_course_kalimari_desert_vertex_0x04003A30: + symbol: d_course_kalimari_desert_vertex_0x04003A30 + type: mk64:course_vtx + count: 8 + offset: 0x32ea + +d_course_kalimari_desert_vertex_0x04003AB0: + symbol: d_course_kalimari_desert_vertex_0x04003AB0 + type: mk64:course_vtx + count: 40 + offset: 0x335a + +d_course_kalimari_desert_vertex_0x04003C70: + symbol: d_course_kalimari_desert_vertex_0x04003C70 + type: mk64:course_vtx + count: 4 + offset: 0x34e2 + +d_course_kalimari_desert_vertex_0x04003CB0: + symbol: d_course_kalimari_desert_vertex_0x04003CB0 + type: mk64:course_vtx + count: 4 + offset: 0x351a + +d_course_kalimari_desert_vertex_0x04003CF0: + symbol: d_course_kalimari_desert_vertex_0x04003CF0 + type: mk64:course_vtx + count: 4 + offset: 0x3552 + +d_course_kalimari_desert_vertex_0x04003D30: + symbol: d_course_kalimari_desert_vertex_0x04003D30 + type: mk64:course_vtx + count: 4 + offset: 0x358a + +d_course_kalimari_desert_vertex_0x04003D70: + symbol: d_course_kalimari_desert_vertex_0x04003D70 + type: mk64:course_vtx + count: 4 + offset: 0x35c2 + +d_course_kalimari_desert_vertex_0x04003DB0: + symbol: d_course_kalimari_desert_vertex_0x04003DB0 + type: mk64:course_vtx + count: 4 + offset: 0x35fa + +d_course_kalimari_desert_vertex_0x04003DF0: + symbol: d_course_kalimari_desert_vertex_0x04003DF0 + type: mk64:course_vtx + count: 4 + offset: 0x3632 + +d_course_kalimari_desert_vertex_0x04003E30: + symbol: d_course_kalimari_desert_vertex_0x04003E30 + type: mk64:course_vtx + count: 4 + offset: 0x366a + +d_course_kalimari_desert_vertex_0x04003E70: + symbol: d_course_kalimari_desert_vertex_0x04003E70 + type: mk64:course_vtx + count: 4 + offset: 0x36a2 + +d_course_kalimari_desert_vertex_0x04003EB0: + symbol: d_course_kalimari_desert_vertex_0x04003EB0 + type: mk64:course_vtx + count: 4 + offset: 0x36da + +d_course_kalimari_desert_vertex_0x04003EF0: + symbol: d_course_kalimari_desert_vertex_0x04003EF0 + type: mk64:course_vtx + count: 4 + offset: 0x3712 + +d_course_kalimari_desert_vertex_0x04003F30: + symbol: d_course_kalimari_desert_vertex_0x04003F30 + type: mk64:course_vtx + count: 4 + offset: 0x374a + +d_course_kalimari_desert_vertex_0x04003F70: + symbol: d_course_kalimari_desert_vertex_0x04003F70 + type: mk64:course_vtx + count: 8 + offset: 0x3782 + +d_course_kalimari_desert_vertex_0x04003FF0: + symbol: d_course_kalimari_desert_vertex_0x04003FF0 + type: mk64:course_vtx + count: 36 + offset: 0x37f2 + +d_course_kalimari_desert_vertex_0x04004170: + symbol: d_course_kalimari_desert_vertex_0x04004170 + type: mk64:course_vtx + count: 8 + offset: 0x3942 + +d_course_kalimari_desert_vertex_0x040041F0: + symbol: d_course_kalimari_desert_vertex_0x040041F0 + type: mk64:course_vtx + count: 8 + offset: 0x39b2 + +d_course_kalimari_desert_vertex_0x04004270: + symbol: d_course_kalimari_desert_vertex_0x04004270 + type: mk64:course_vtx + count: 4 + offset: 0x3a22 + +d_course_kalimari_desert_vertex_0x040042B0: + symbol: d_course_kalimari_desert_vertex_0x040042B0 + type: mk64:course_vtx + count: 8 + offset: 0x3a5a + +d_course_kalimari_desert_vertex_0x04004330: + symbol: d_course_kalimari_desert_vertex_0x04004330 + type: mk64:course_vtx + count: 4 + offset: 0x3aca + +d_course_kalimari_desert_vertex_0x04004370: + symbol: d_course_kalimari_desert_vertex_0x04004370 + type: mk64:course_vtx + count: 8 + offset: 0x3b02 + +d_course_kalimari_desert_vertex_0x040043F0: + symbol: d_course_kalimari_desert_vertex_0x040043F0 + type: mk64:course_vtx + count: 18 + offset: 0x3b72 + +d_course_kalimari_desert_vertex_0x040044B0: + symbol: d_course_kalimari_desert_vertex_0x040044B0 + type: mk64:course_vtx + count: 8 + offset: 0x3c1a + +d_course_kalimari_desert_vertex_0x04004530: + symbol: d_course_kalimari_desert_vertex_0x04004530 + type: mk64:course_vtx + count: 36 + offset: 0x3c8a + +d_course_kalimari_desert_vertex_0x040046B0: + symbol: d_course_kalimari_desert_vertex_0x040046B0 + type: mk64:course_vtx + count: 18 + offset: 0x3dda + +d_course_kalimari_desert_vertex_0x04004770: + symbol: d_course_kalimari_desert_vertex_0x04004770 + type: mk64:course_vtx + count: 32 + offset: 0x3e82 + +d_course_kalimari_desert_vertex_0x040048B0: + symbol: d_course_kalimari_desert_vertex_0x040048B0 + type: mk64:course_vtx + count: 22 + offset: 0x3f9a + +d_course_kalimari_desert_vertex_0x040049B0: + symbol: d_course_kalimari_desert_vertex_0x040049B0 + type: mk64:course_vtx + count: 18 + offset: 0x407a + +d_course_kalimari_desert_vertex_0x04004A70: + symbol: d_course_kalimari_desert_vertex_0x04004A70 + type: mk64:course_vtx + count: 35 + offset: 0x4122 + +d_course_kalimari_desert_vertex_0x04004BE0: + symbol: d_course_kalimari_desert_vertex_0x04004BE0 + type: mk64:course_vtx + count: 22 + offset: 0x4264 + +d_course_kalimari_desert_vertex_0x04004CE0: + symbol: d_course_kalimari_desert_vertex_0x04004CE0 + type: mk64:course_vtx + count: 32 + offset: 0x4344 + +d_course_kalimari_desert_vertex_0x04004E20: + symbol: d_course_kalimari_desert_vertex_0x04004E20 + type: mk64:course_vtx + count: 8 + offset: 0x445c + +d_course_kalimari_desert_vertex_0x04004EA0: + symbol: d_course_kalimari_desert_vertex_0x04004EA0 + type: mk64:course_vtx + count: 40 + offset: 0x44cc + +d_course_kalimari_desert_vertex_0x04005060: + symbol: d_course_kalimari_desert_vertex_0x04005060 + type: mk64:course_vtx + count: 18 + offset: 0x4654 + +d_course_kalimari_desert_vertex_0x04005120: + symbol: d_course_kalimari_desert_vertex_0x04005120 + type: mk64:course_vtx + count: 18 + offset: 0x46fc + +d_course_kalimari_desert_vertex_0x040051E0: + symbol: d_course_kalimari_desert_vertex_0x040051E0 + type: mk64:course_vtx + count: 21 + offset: 0x47a4 + +d_course_kalimari_desert_vertex_0x040052D0: + symbol: d_course_kalimari_desert_vertex_0x040052D0 + type: mk64:course_vtx + count: 40 + offset: 0x4876 + +d_course_kalimari_desert_vertex_0x04005490: + symbol: d_course_kalimari_desert_vertex_0x04005490 + type: mk64:course_vtx + count: 18 + offset: 0x49fe + +d_course_kalimari_desert_vertex_0x04005550: + symbol: d_course_kalimari_desert_vertex_0x04005550 + type: mk64:course_vtx + count: 6 + offset: 0x4aa6 + +d_course_kalimari_desert_vertex_0x040055B0: + symbol: d_course_kalimari_desert_vertex_0x040055B0 + type: mk64:course_vtx + count: 6 + offset: 0x4afa + +d_course_kalimari_desert_vertex_0x04005610: + symbol: d_course_kalimari_desert_vertex_0x04005610 + type: mk64:course_vtx + count: 8 + offset: 0x4b4e + +d_course_kalimari_desert_vertex_0x04005690: + symbol: d_course_kalimari_desert_vertex_0x04005690 + type: mk64:course_vtx + count: 19 + offset: 0x4bbe + +d_course_kalimari_desert_vertex_0x04005760: + symbol: d_course_kalimari_desert_vertex_0x04005760 + type: mk64:course_vtx + count: 8 + offset: 0x4c74 + +d_course_kalimari_desert_vertex_0x040057E0: + symbol: d_course_kalimari_desert_vertex_0x040057E0 + type: mk64:course_vtx + count: 20 + offset: 0x4ce4 + +d_course_kalimari_desert_vertex_0x040058C0: + symbol: d_course_kalimari_desert_vertex_0x040058C0 + type: mk64:course_vtx + count: 17 + offset: 0x4da8 + +d_course_kalimari_desert_vertex_0x04005970: + symbol: d_course_kalimari_desert_vertex_0x04005970 + type: mk64:course_vtx + count: 9 + offset: 0x4e42 + +d_course_kalimari_desert_vertex_0x04005A00: + symbol: d_course_kalimari_desert_vertex_0x04005A00 + type: mk64:course_vtx + count: 9 + offset: 0x4ec0 + +d_course_kalimari_desert_vertex_0x04005A90: + symbol: d_course_kalimari_desert_vertex_0x04005A90 + type: mk64:course_vtx + count: 18 + offset: 0x4f3e + +d_course_kalimari_desert_vertex_0x04005B50: + symbol: d_course_kalimari_desert_vertex_0x04005B50 + type: mk64:course_vtx + count: 38 + offset: 0x4fe6 + +d_course_kalimari_desert_vertex_0x04005CF0: + symbol: d_course_kalimari_desert_vertex_0x04005CF0 + type: mk64:course_vtx + count: 8 + offset: 0x5152 + +d_course_kalimari_desert_vertex_0x04005D70: + symbol: d_course_kalimari_desert_vertex_0x04005D70 + type: mk64:course_vtx + count: 17 + offset: 0x51c2 + +d_course_kalimari_desert_vertex_0x04005E20: + symbol: d_course_kalimari_desert_vertex_0x04005E20 + type: mk64:course_vtx + count: 8 + offset: 0x525c + +d_course_kalimari_desert_vertex_0x04005EA0: + symbol: d_course_kalimari_desert_vertex_0x04005EA0 + type: mk64:course_vtx + count: 20 + offset: 0x52cc + +d_course_kalimari_desert_vertex_0x04005F80: + symbol: d_course_kalimari_desert_vertex_0x04005F80 + type: mk64:course_vtx + count: 9 + offset: 0x5390 + +d_course_kalimari_desert_vertex_0x04006010: + symbol: d_course_kalimari_desert_vertex_0x04006010 + type: mk64:course_vtx + count: 18 + offset: 0x540e + +d_course_kalimari_desert_vertex_0x040060D0: + symbol: d_course_kalimari_desert_vertex_0x040060D0 + type: mk64:course_vtx + count: 20 + offset: 0x54b6 + +d_course_kalimari_desert_vertex_0x040061B0: + symbol: d_course_kalimari_desert_vertex_0x040061B0 + type: mk64:course_vtx + count: 9 + offset: 0x557a + +d_course_kalimari_desert_vertex_0x04006240: + symbol: d_course_kalimari_desert_vertex_0x04006240 + type: mk64:course_vtx + count: 9 + offset: 0x55f8 + +d_course_kalimari_desert_vertex_0x040062D0: + symbol: d_course_kalimari_desert_vertex_0x040062D0 + type: mk64:course_vtx + count: 20 + offset: 0x5676 + +d_course_kalimari_desert_vertex_0x040063B0: + symbol: d_course_kalimari_desert_vertex_0x040063B0 + type: mk64:course_vtx + count: 8 + offset: 0x573a + +d_course_kalimari_desert_vertex_0x04006430: + symbol: d_course_kalimari_desert_vertex_0x04006430 + type: mk64:course_vtx + count: 16 + offset: 0x57aa + +d_course_kalimari_desert_vertex_0x040064D0: + symbol: d_course_kalimari_desert_vertex_0x040064D0 + type: mk64:course_vtx + count: 5 + offset: 0x5836 + +d_course_kalimari_desert_vertex_0x04006520: + symbol: d_course_kalimari_desert_vertex_0x04006520 + type: mk64:course_vtx + count: 5 + offset: 0x587c + +d_course_kalimari_desert_vertex_0x04006570: + symbol: d_course_kalimari_desert_vertex_0x04006570 + type: mk64:course_vtx + count: 23 + offset: 0x58c2 + +d_course_kalimari_desert_vertex_0x04006680: + symbol: d_course_kalimari_desert_vertex_0x04006680 + type: mk64:course_vtx + count: 18 + offset: 0x59b0 + +d_course_kalimari_desert_vertex_0x04006740: + symbol: d_course_kalimari_desert_vertex_0x04006740 + type: mk64:course_vtx + count: 6 + offset: 0x5a58 + +d_course_kalimari_desert_vertex_0x040067A0: + symbol: d_course_kalimari_desert_vertex_0x040067A0 + type: mk64:course_vtx + count: 20 + offset: 0x5aac + +d_course_kalimari_desert_vertex_0x04006880: + symbol: d_course_kalimari_desert_vertex_0x04006880 + type: mk64:course_vtx + count: 23 + offset: 0x5b70 + +d_course_kalimari_desert_vertex_0x04006990: + symbol: d_course_kalimari_desert_vertex_0x04006990 + type: mk64:course_vtx + count: 20 + offset: 0x5c5e + +d_course_kalimari_desert_vertex_0x04006A70: + symbol: d_course_kalimari_desert_vertex_0x04006A70 + type: mk64:course_vtx + count: 18 + offset: 0x5d22 + +d_course_kalimari_desert_vertex_0x04006B30: + symbol: d_course_kalimari_desert_vertex_0x04006B30 + type: mk64:course_vtx + count: 23 + offset: 0x5dca + +d_course_kalimari_desert_vertex_0x04006C40: + symbol: d_course_kalimari_desert_vertex_0x04006C40 + type: mk64:course_vtx + count: 18 + offset: 0x5eb8 + +d_course_kalimari_desert_vertex_0x04006D00: + symbol: d_course_kalimari_desert_vertex_0x04006D00 + type: mk64:course_vtx + count: 25 + offset: 0x5f60 + +d_course_kalimari_desert_vertex_0x04006E30: + symbol: d_course_kalimari_desert_vertex_0x04006E30 + type: mk64:course_vtx + count: 18 + offset: 0x606a + +d_course_kalimari_desert_vertex_0x04006EF0: + symbol: d_course_kalimari_desert_vertex_0x04006EF0 + type: mk64:course_vtx + count: 20 + offset: 0x6112 + +d_course_kalimari_desert_vertex_0x04006FD0: + symbol: d_course_kalimari_desert_vertex_0x04006FD0 + type: mk64:course_vtx + count: 16 + offset: 0x61d6 + +d_course_kalimari_desert_vertex_0x04007070: + symbol: d_course_kalimari_desert_vertex_0x04007070 + type: mk64:course_vtx + count: 5 + offset: 0x6262 + +d_course_kalimari_desert_vertex_0x040070C0: + symbol: d_course_kalimari_desert_vertex_0x040070C0 + type: mk64:course_vtx + count: 38 + offset: 0x62a8 + +d_course_kalimari_desert_vertex_0x04007260: + symbol: d_course_kalimari_desert_vertex_0x04007260 + type: mk64:course_vtx + count: 7 + offset: 0x6414 + +d_course_kalimari_desert_vertex_0x040072D0: + symbol: d_course_kalimari_desert_vertex_0x040072D0 + type: mk64:course_vtx + count: 18 + offset: 0x6476 + +d_course_kalimari_desert_vertex_0x04007390: + symbol: d_course_kalimari_desert_vertex_0x04007390 + type: mk64:course_vtx + count: 17 + offset: 0x651e + +d_course_kalimari_desert_vertex_0x04007440: + symbol: d_course_kalimari_desert_vertex_0x04007440 + type: mk64:course_vtx + count: 17 + offset: 0x65b8 + +d_course_kalimari_desert_vertex_0x040074F0: + symbol: d_course_kalimari_desert_vertex_0x040074F0 + type: mk64:course_vtx + count: 6 + offset: 0x6652 + +d_course_kalimari_desert_vertex_0x04007550: + symbol: d_course_kalimari_desert_vertex_0x04007550 + type: mk64:course_vtx + count: 9 + offset: 0x66a6 + +d_course_kalimari_desert_vertex_0x040075E0: + symbol: d_course_kalimari_desert_vertex_0x040075E0 + type: mk64:course_vtx + count: 6 + offset: 0x6724 + +d_course_kalimari_desert_vertex_0x04007640: + symbol: d_course_kalimari_desert_vertex_0x04007640 + type: mk64:course_vtx + count: 4 + offset: 0x6778 + +d_course_kalimari_desert_vertex_0x04007680: + symbol: d_course_kalimari_desert_vertex_0x04007680 + type: mk64:course_vtx + count: 8 + offset: 0x67b0 + +d_course_kalimari_desert_vertex_0x04007700: + symbol: d_course_kalimari_desert_vertex_0x04007700 + type: mk64:course_vtx + count: 4 + offset: 0x6820 + +d_course_kalimari_desert_vertex_0x04007740: + symbol: d_course_kalimari_desert_vertex_0x04007740 + type: mk64:course_vtx + count: 4 + offset: 0x6858 + +d_course_kalimari_desert_vertex_0x04007780: + symbol: d_course_kalimari_desert_vertex_0x04007780 + type: mk64:course_vtx + count: 8 + offset: 0x6890 + +d_course_kalimari_desert_vertex_0x04007800: + symbol: d_course_kalimari_desert_vertex_0x04007800 + type: mk64:course_vtx + count: 16 + offset: 0x6900 + +d_course_kalimari_desert_vertex_0x040078A0: + symbol: d_course_kalimari_desert_vertex_0x040078A0 + type: mk64:course_vtx + count: 18 + offset: 0x698c + +d_course_kalimari_desert_vertex_0x04007960: + symbol: d_course_kalimari_desert_vertex_0x04007960 + type: mk64:course_vtx + count: 22 + offset: 0x6a34 + +d_course_kalimari_desert_vertex_0x04007A60: + symbol: d_course_kalimari_desert_vertex_0x04007A60 + type: mk64:course_vtx + count: 22 + offset: 0x6b14 + +d_course_kalimari_desert_vertex_0x04007B60: + symbol: d_course_kalimari_desert_vertex_0x04007B60 + type: mk64:course_vtx + count: 22 + offset: 0x6bf4 + +d_course_kalimari_desert_vertex_0x04007C60: + symbol: d_course_kalimari_desert_vertex_0x04007C60 + type: mk64:course_vtx + count: 4 + offset: 0x6cd4 + +d_course_kalimari_desert_vertex_0x04007CA0: + symbol: d_course_kalimari_desert_vertex_0x04007CA0 + type: mk64:course_vtx + count: 8 + offset: 0x6d0c + +d_course_kalimari_desert_vertex_0x04007D20: + symbol: d_course_kalimari_desert_vertex_0x04007D20 + type: mk64:course_vtx + count: 18 + offset: 0x6d7c + +d_course_kalimari_desert_vertex_0x04007DE0: + symbol: d_course_kalimari_desert_vertex_0x04007DE0 + type: mk64:course_vtx + count: 22 + offset: 0x6e24 + +d_course_kalimari_desert_vertex_0x04007EE0: + symbol: d_course_kalimari_desert_vertex_0x04007EE0 + type: mk64:course_vtx + count: 18 + offset: 0x6f04 + +d_course_kalimari_desert_vertex_0x04007FA0: + symbol: d_course_kalimari_desert_vertex_0x04007FA0 + type: mk64:course_vtx + count: 22 + offset: 0x6fac + +d_course_kalimari_desert_vertex_0x040080A0: + symbol: d_course_kalimari_desert_vertex_0x040080A0 + type: mk64:course_vtx + count: 18 + offset: 0x708c + +d_course_kalimari_desert_vertex_0x04008160: + symbol: d_course_kalimari_desert_vertex_0x04008160 + type: mk64:course_vtx + count: 23 + offset: 0x7134 + +d_course_kalimari_desert_vertex_0x04008270: + symbol: d_course_kalimari_desert_vertex_0x04008270 + type: mk64:course_vtx + count: 8 + offset: 0x7222 + +d_course_kalimari_desert_vertex_0x040082F0: + symbol: d_course_kalimari_desert_vertex_0x040082F0 + type: mk64:course_vtx + count: 18 + offset: 0x7292 + +d_course_kalimari_desert_vertex_0x040083B0: + symbol: d_course_kalimari_desert_vertex_0x040083B0 + type: mk64:course_vtx + count: 18 + offset: 0x733a + +d_course_kalimari_desert_vertex_0x04008470: + symbol: d_course_kalimari_desert_vertex_0x04008470 + type: mk64:course_vtx + count: 16 + offset: 0x73e2 + +d_course_kalimari_desert_vertex_0x04008510: + symbol: d_course_kalimari_desert_vertex_0x04008510 + type: mk64:course_vtx + count: 4 + offset: 0x746e + +d_course_kalimari_desert_vertex_0x04008550: + symbol: d_course_kalimari_desert_vertex_0x04008550 + type: mk64:course_vtx + count: 4 + offset: 0x74a6 + +d_course_kalimari_desert_vertex_0x04008590: + symbol: d_course_kalimari_desert_vertex_0x04008590 + type: mk64:course_vtx + count: 4 + offset: 0x74de + +d_course_kalimari_desert_vertex_0x040085D0: + symbol: d_course_kalimari_desert_vertex_0x040085D0 + type: mk64:course_vtx + count: 6 + offset: 0x7516 + +d_course_kalimari_desert_vertex_0x04008630: + symbol: d_course_kalimari_desert_vertex_0x04008630 + type: mk64:course_vtx + count: 20 + offset: 0x756a + +d_course_kalimari_desert_vertex_0x04008710: + symbol: d_course_kalimari_desert_vertex_0x04008710 + type: mk64:course_vtx + count: 4 + offset: 0x762e + +d_course_kalimari_desert_vertex_0x04008750: + symbol: d_course_kalimari_desert_vertex_0x04008750 + type: mk64:course_vtx + count: 16 + offset: 0x7666 + +d_course_kalimari_desert_vertex_0x040087F0: + symbol: d_course_kalimari_desert_vertex_0x040087F0 + type: mk64:course_vtx + count: 24 + offset: 0x76f2 + +d_course_kalimari_desert_vertex_0x04008910: + symbol: d_course_kalimari_desert_vertex_0x04008910 + type: mk64:course_vtx + count: 19 + offset: 0x77ee + +d_course_kalimari_desert_vertex_0x040089E0: + symbol: d_course_kalimari_desert_vertex_0x040089E0 + type: mk64:course_vtx + count: 19 + offset: 0x78a4 + +d_course_kalimari_desert_vertex_0x04008AB0: + symbol: d_course_kalimari_desert_vertex_0x04008AB0 + type: mk64:course_vtx + count: 8 + offset: 0x795a + +d_course_kalimari_desert_vertex_0x04008B30: + symbol: d_course_kalimari_desert_vertex_0x04008B30 + type: mk64:course_vtx + count: 18 + offset: 0x79ca + +d_course_kalimari_desert_vertex_0x04008BF0: + symbol: d_course_kalimari_desert_vertex_0x04008BF0 + type: mk64:course_vtx + count: 9 + offset: 0x7a72 + +d_course_kalimari_desert_vertex_0x04008C80: + symbol: d_course_kalimari_desert_vertex_0x04008C80 + type: mk64:course_vtx + count: 24 + offset: 0x7af0 + +d_course_kalimari_desert_vertex_0x04008DA0: + symbol: d_course_kalimari_desert_vertex_0x04008DA0 + type: mk64:course_vtx + count: 19 + offset: 0x7bec + +d_course_kalimari_desert_vertex_0x04008E70: + symbol: d_course_kalimari_desert_vertex_0x04008E70 + type: mk64:course_vtx + count: 20 + offset: 0x7ca2 + +d_course_kalimari_desert_vertex_0x04008F50: + symbol: d_course_kalimari_desert_vertex_0x04008F50 + type: mk64:course_vtx + count: 18 + offset: 0x7d66 + +d_course_kalimari_desert_vertex_0x04009010: + symbol: d_course_kalimari_desert_vertex_0x04009010 + type: mk64:course_vtx + count: 21 + offset: 0x7e0e + +d_course_kalimari_desert_vertex_0x04009100: + symbol: d_course_kalimari_desert_vertex_0x04009100 + type: mk64:course_vtx + count: 18 + offset: 0x7ee0 + +d_course_kalimari_desert_vertex_0x040091C0: + symbol: d_course_kalimari_desert_vertex_0x040091C0 + type: mk64:course_vtx + count: 4 + offset: 0x7f88 + +d_course_kalimari_desert_vertex_0x04009200: + symbol: d_course_kalimari_desert_vertex_0x04009200 + type: mk64:course_vtx + count: 16 + offset: 0x7fc0 + +d_course_kalimari_desert_vertex_0x040092A0: + symbol: d_course_kalimari_desert_vertex_0x040092A0 + type: mk64:course_vtx + count: 36 + offset: 0x804c + +d_course_kalimari_desert_vertex_0x04009420: + symbol: d_course_kalimari_desert_vertex_0x04009420 + type: mk64:course_vtx + count: 19 + offset: 0x819c + +d_course_kalimari_desert_vertex_0x040094F0: + symbol: d_course_kalimari_desert_vertex_0x040094F0 + type: mk64:course_vtx + count: 41 + offset: 0x8252 + +d_course_kalimari_desert_vertex_0x040096C0: + symbol: d_course_kalimari_desert_vertex_0x040096C0 + type: mk64:course_vtx + count: 34 + offset: 0x83e8 + +d_course_kalimari_desert_vertex_0x04009820: + symbol: d_course_kalimari_desert_vertex_0x04009820 + type: mk64:course_vtx + count: 50 + offset: 0x851c + +d_course_kalimari_desert_vertex_0x04009A20: + symbol: d_course_kalimari_desert_vertex_0x04009A20 + type: mk64:course_vtx + count: 38 + offset: 0x86dc + +d_course_kalimari_desert_vertex_0x04009BC0: + symbol: d_course_kalimari_desert_vertex_0x04009BC0 + type: mk64:course_vtx + count: 18 + offset: 0x8848 + +d_course_kalimari_desert_vertex_0x04009C80: + symbol: d_course_kalimari_desert_vertex_0x04009C80 + type: mk64:course_vtx + count: 50 + offset: 0x88f0 + +d_course_kalimari_desert_vertex_0x04009E80: + symbol: d_course_kalimari_desert_vertex_0x04009E80 + type: mk64:course_vtx + count: 18 + offset: 0x8ab0 + +d_course_kalimari_desert_vertex_0x04009F40: + symbol: d_course_kalimari_desert_vertex_0x04009F40 + type: mk64:course_vtx + count: 50 + offset: 0x8b58 + +d_course_kalimari_desert_vertex_0x0400A140: + symbol: d_course_kalimari_desert_vertex_0x0400A140 + type: mk64:course_vtx + count: 49 + offset: 0x8d18 + +d_course_kalimari_desert_vertex_0x0400A330: + symbol: d_course_kalimari_desert_vertex_0x0400A330 + type: mk64:course_vtx + count: 24 + offset: 0x8eca + +d_course_kalimari_desert_vertex_0x0400A450: + symbol: d_course_kalimari_desert_vertex_0x0400A450 + type: mk64:course_vtx + count: 49 + offset: 0x8fc6 + +d_course_kalimari_desert_vertex_0x0400A640: + symbol: d_course_kalimari_desert_vertex_0x0400A640 + type: mk64:course_vtx + count: 7 + offset: 0x9178 + +d_course_kalimari_desert_vertex_0x0400A6B0: + symbol: d_course_kalimari_desert_vertex_0x0400A6B0 + type: mk64:course_vtx + count: 48 + offset: 0x91da + +d_course_kalimari_desert_vertex_0x0400A890: + symbol: d_course_kalimari_desert_vertex_0x0400A890 + type: mk64:course_vtx + count: 48 + offset: 0x937e + +d_course_kalimari_desert_vertex_0x0400AA70: + symbol: d_course_kalimari_desert_vertex_0x0400AA70 + type: mk64:course_vtx + count: 8 + offset: 0x9522 + +d_course_kalimari_desert_vertex_0x0400AAF0: + symbol: d_course_kalimari_desert_vertex_0x0400AAF0 + type: mk64:course_vtx + count: 50 + offset: 0x9592 + +d_course_kalimari_desert_vertex_0x0400ACF0: + symbol: d_course_kalimari_desert_vertex_0x0400ACF0 + type: mk64:course_vtx + count: 21 + offset: 0x9752 + +d_course_kalimari_desert_vertex_0x0400ADE0: + symbol: d_course_kalimari_desert_vertex_0x0400ADE0 + type: mk64:course_vtx + count: 22 + offset: 0x9824 + +d_course_kalimari_desert_vertex_0x0400AEE0: + symbol: d_course_kalimari_desert_vertex_0x0400AEE0 + type: mk64:course_vtx + count: 49 + offset: 0x9904 + +d_course_kalimari_desert_vertex_0x0400B0D0: + symbol: d_course_kalimari_desert_vertex_0x0400B0D0 + type: mk64:course_vtx + count: 18 + offset: 0x9ab6 + +d_course_kalimari_desert_vertex_0x0400B190: + symbol: d_course_kalimari_desert_vertex_0x0400B190 + type: mk64:course_vtx + count: 48 + offset: 0x9b5e + +d_course_kalimari_desert_vertex_0x0400B370: + symbol: d_course_kalimari_desert_vertex_0x0400B370 + type: mk64:course_vtx + count: 48 + offset: 0x9d02 + +d_course_kalimari_desert_vertex_0x0400B550: + symbol: d_course_kalimari_desert_vertex_0x0400B550 + type: mk64:course_vtx + count: 6 + offset: 0x9ea6 + +d_course_kalimari_desert_vertex_0x0400B5B0: + symbol: d_course_kalimari_desert_vertex_0x0400B5B0 + type: mk64:course_vtx + count: 23 + offset: 0x9efa + +d_course_kalimari_desert_vertex_0x0400B6C0: + symbol: d_course_kalimari_desert_vertex_0x0400B6C0 + type: mk64:course_vtx + count: 49 + offset: 0x9fe8 + +d_course_kalimari_desert_vertex_0x0400B8B0: + symbol: d_course_kalimari_desert_vertex_0x0400B8B0 + type: mk64:course_vtx + count: 9 + offset: 0xa19a + +d_course_kalimari_desert_vertex_0x0400B940: + symbol: d_course_kalimari_desert_vertex_0x0400B940 + type: mk64:course_vtx + count: 38 + offset: 0xa218 + +d_course_kalimari_desert_vertex_0x0400BAE0: + symbol: d_course_kalimari_desert_vertex_0x0400BAE0 + type: mk64:course_vtx + count: 50 + offset: 0xa384 + +d_course_kalimari_desert_vertex_0x0400BCE0: + symbol: d_course_kalimari_desert_vertex_0x0400BCE0 + type: mk64:course_vtx + count: 32 + offset: 0xa544 + +d_course_kalimari_desert_vertex_0x0400BE20: + symbol: d_course_kalimari_desert_vertex_0x0400BE20 + type: mk64:course_vtx + count: 32 + offset: 0xa65c + +d_course_kalimari_desert_vertex_0x0400BF60: + symbol: d_course_kalimari_desert_vertex_0x0400BF60 + type: mk64:course_vtx + count: 49 + offset: 0xa774 + +d_course_kalimari_desert_vertex_0x0400C150: + symbol: d_course_kalimari_desert_vertex_0x0400C150 + type: mk64:course_vtx + count: 49 + offset: 0xa926 + +d_course_kalimari_desert_vertex_0x0400C340: + symbol: d_course_kalimari_desert_vertex_0x0400C340 + type: mk64:course_vtx + count: 18 + offset: 0xaad8 + +d_course_kalimari_desert_vertex_0x0400C400: + symbol: d_course_kalimari_desert_vertex_0x0400C400 + type: mk64:course_vtx + count: 24 + offset: 0xab80 + +d_course_kalimari_desert_vertex_0x0400C520: + symbol: d_course_kalimari_desert_vertex_0x0400C520 + type: mk64:course_vtx + count: 8 + offset: 0xac7c + +d_course_kalimari_desert_vertex_0x0400C5A0: + symbol: d_course_kalimari_desert_vertex_0x0400C5A0 + type: mk64:course_vtx + count: 48 + offset: 0xacec + +d_course_kalimari_desert_vertex_0x0400C780: + symbol: d_course_kalimari_desert_vertex_0x0400C780 + type: mk64:course_vtx + count: 20 + offset: 0xae90 + +d_course_kalimari_desert_vertex_0x0400C860: + symbol: d_course_kalimari_desert_vertex_0x0400C860 + type: mk64:course_vtx + count: 48 + offset: 0xaf54 + +d_course_kalimari_desert_vertex_0x0400CA40: + symbol: d_course_kalimari_desert_vertex_0x0400CA40 + type: mk64:course_vtx + count: 38 + offset: 0xb0f8 + +d_course_kalimari_desert_vertex_0x0400CBE0: + symbol: d_course_kalimari_desert_vertex_0x0400CBE0 + type: mk64:course_vtx + count: 40 + offset: 0xb264 + +d_course_kalimari_desert_vertex_0x0400CDA0: + symbol: d_course_kalimari_desert_vertex_0x0400CDA0 + type: mk64:course_vtx + count: 49 + offset: 0xb3ec + +d_course_kalimari_desert_vertex_0x0400CF90: + symbol: d_course_kalimari_desert_vertex_0x0400CF90 + type: mk64:course_vtx + count: 35 + offset: 0xb59e + +d_course_kalimari_desert_vertex_0x0400D100: + symbol: d_course_kalimari_desert_vertex_0x0400D100 + type: mk64:course_vtx + count: 48 + offset: 0xb6e0 + +d_course_kalimari_desert_vertex_0x0400D2E0: + symbol: d_course_kalimari_desert_vertex_0x0400D2E0 + type: mk64:course_vtx + count: 49 + offset: 0xb884 + +d_course_kalimari_desert_vertex_0x0400D4D0: + symbol: d_course_kalimari_desert_vertex_0x0400D4D0 + type: mk64:course_vtx + count: 18 + offset: 0xba36 + +d_course_kalimari_desert_vertex_0x0400D590: + symbol: d_course_kalimari_desert_vertex_0x0400D590 + type: mk64:course_vtx + count: 50 + offset: 0xbade + +d_course_kalimari_desert_vertex_0x0400D790: + symbol: d_course_kalimari_desert_vertex_0x0400D790 + type: mk64:course_vtx + count: 17 + offset: 0xbc9e + +d_course_kalimari_desert_vertex_0x0400D840: + symbol: d_course_kalimari_desert_vertex_0x0400D840 + type: mk64:course_vtx + count: 50 + offset: 0xbd38 + +d_course_kalimari_desert_vertex_0x0400DA40: + symbol: d_course_kalimari_desert_vertex_0x0400DA40 + type: mk64:course_vtx + count: 49 + offset: 0xbef8 + +d_course_kalimari_desert_vertex_0x0400DC30: + symbol: d_course_kalimari_desert_vertex_0x0400DC30 + type: mk64:course_vtx + count: 48 + offset: 0xc0aa + +d_course_kalimari_desert_vertex_0x0400DE10: + symbol: d_course_kalimari_desert_vertex_0x0400DE10 + type: mk64:course_vtx + count: 49 + offset: 0xc24e + +d_course_kalimari_desert_vertex_0x0400E000: + symbol: d_course_kalimari_desert_vertex_0x0400E000 + type: mk64:course_vtx + count: 6 + offset: 0xc400 + +d_course_kalimari_desert_vertex_0x0400E060: + symbol: d_course_kalimari_desert_vertex_0x0400E060 + type: mk64:course_vtx + count: 50 + offset: 0xc454 + +d_course_kalimari_desert_vertex_0x0400E260: + symbol: d_course_kalimari_desert_vertex_0x0400E260 + type: mk64:course_vtx + count: 41 + offset: 0xc614 + +d_course_kalimari_desert_vertex_0x0400E430: + symbol: d_course_kalimari_desert_vertex_0x0400E430 + type: mk64:course_vtx + count: 48 + offset: 0xc7aa + +d_course_kalimari_desert_vertex_0x0400E610: + symbol: d_course_kalimari_desert_vertex_0x0400E610 + type: mk64:course_vtx + count: 8 + offset: 0xc94e + +d_course_kalimari_desert_vertex_0x0400E690: + symbol: d_course_kalimari_desert_vertex_0x0400E690 + type: mk64:course_vtx + count: 49 + offset: 0xc9be + +d_course_kalimari_desert_vertex_0x0400E880: + symbol: d_course_kalimari_desert_vertex_0x0400E880 + type: mk64:course_vtx + count: 50 + offset: 0xcb70 + +d_course_kalimari_desert_vertex_0x0400EA80: + symbol: d_course_kalimari_desert_vertex_0x0400EA80 + type: mk64:course_vtx + count: 34 + offset: 0xcd30 + +d_course_kalimari_desert_vertex_0x0400EBE0: + symbol: d_course_kalimari_desert_vertex_0x0400EBE0 + type: mk64:course_vtx + count: 49 + offset: 0xce64 + +d_course_kalimari_desert_vertex_0x0400EDD0: + symbol: d_course_kalimari_desert_vertex_0x0400EDD0 + type: mk64:course_vtx + count: 9 + offset: 0xd016 + +d_course_kalimari_desert_vertex_0x0400EE60: + symbol: d_course_kalimari_desert_vertex_0x0400EE60 + type: mk64:course_vtx + count: 38 + offset: 0xd094 + +d_course_kalimari_desert_vertex_0x0400F000: + symbol: d_course_kalimari_desert_vertex_0x0400F000 + type: mk64:course_vtx + count: 50 + offset: 0xd200 + +d_course_kalimari_desert_vertex_0x0400F200: + symbol: d_course_kalimari_desert_vertex_0x0400F200 + type: mk64:course_vtx + count: 25 + offset: 0xd3c0 + +d_course_kalimari_desert_vertex_0x0400F330: + symbol: d_course_kalimari_desert_vertex_0x0400F330 + type: mk64:course_vtx + count: 48 + offset: 0xd4ca + +d_course_kalimari_desert_vertex_0x0400F510: + symbol: d_course_kalimari_desert_vertex_0x0400F510 + type: mk64:course_vtx + count: 9 + offset: 0xd66e + +d_course_kalimari_desert_vertex_0x0400F5A0: + symbol: d_course_kalimari_desert_vertex_0x0400F5A0 + type: mk64:course_vtx + count: 48 + offset: 0xd6ec + +d_course_kalimari_desert_vertex_0x0400F780: + symbol: d_course_kalimari_desert_vertex_0x0400F780 + type: mk64:course_vtx + count: 24 + offset: 0xd890 + +d_course_kalimari_desert_vertex_0x0400F8A0: + symbol: d_course_kalimari_desert_vertex_0x0400F8A0 + type: mk64:course_vtx + count: 37 + offset: 0xd98c + +d_course_kalimari_desert_vertex_0x0400FA30: + symbol: d_course_kalimari_desert_vertex_0x0400FA30 + type: mk64:course_vtx + count: 49 + offset: 0xdaea + +d_course_kalimari_desert_vertex_0x0400FC20: + symbol: d_course_kalimari_desert_vertex_0x0400FC20 + type: mk64:course_vtx + count: 35 + offset: 0xdc9c + +d_course_kalimari_desert_vertex_0x0400FD90: + symbol: d_course_kalimari_desert_vertex_0x0400FD90 + type: mk64:course_vtx + count: 49 + offset: 0xddde + +d_course_kalimari_desert_vertex_0x0400FF80: + symbol: d_course_kalimari_desert_vertex_0x0400FF80 + type: mk64:course_vtx + count: 6 + offset: 0xdf90 + +d_course_kalimari_desert_vertex_0x0400FFE0: + symbol: d_course_kalimari_desert_vertex_0x0400FFE0 + type: mk64:course_vtx + count: 50 + offset: 0xdfe4 + +d_course_kalimari_desert_vertex_0x040101E0: + symbol: d_course_kalimari_desert_vertex_0x040101E0 + type: mk64:course_vtx + count: 25 + offset: 0xe1a4 + +d_course_kalimari_desert_vertex_0x04010310: + symbol: d_course_kalimari_desert_vertex_0x04010310 + type: mk64:course_vtx + count: 49 + offset: 0xe2ae + +d_course_kalimari_desert_vertex_0x04010500: + symbol: d_course_kalimari_desert_vertex_0x04010500 + type: mk64:course_vtx + count: 50 + offset: 0xe460 + +d_course_kalimari_desert_vertex_0x04010700: + symbol: d_course_kalimari_desert_vertex_0x04010700 + type: mk64:course_vtx + count: 8 + offset: 0xe620 + +d_course_kalimari_desert_vertex_0x04010780: + symbol: d_course_kalimari_desert_vertex_0x04010780 + type: mk64:course_vtx + count: 34 + offset: 0xe690 + +d_course_kalimari_desert_vertex_0x040108E0: + symbol: d_course_kalimari_desert_vertex_0x040108E0 + type: mk64:course_vtx + count: 22 + offset: 0xe7c4 + +d_course_kalimari_desert_vertex_0x040109E0: + symbol: d_course_kalimari_desert_vertex_0x040109E0 + type: mk64:course_vtx + count: 32 + offset: 0xe8a4 + +d_course_kalimari_desert_vertex_0x04010B20: + symbol: d_course_kalimari_desert_vertex_0x04010B20 + type: mk64:course_vtx + count: 32 + offset: 0xe9bc + +d_course_kalimari_desert_vertex_0x04010C60: + symbol: d_course_kalimari_desert_vertex_0x04010C60 + type: mk64:course_vtx + count: 36 + offset: 0xead4 + +d_course_kalimari_desert_vertex_0x04010DE0: + symbol: d_course_kalimari_desert_vertex_0x04010DE0 + type: mk64:course_vtx + count: 36 + offset: 0xec24 + +d_course_kalimari_desert_vertex_0x04010F60: + symbol: d_course_kalimari_desert_vertex_0x04010F60 + type: mk64:course_vtx + count: 32 + offset: 0xed74 + +d_course_kalimari_desert_vertex_0x040110A0: + symbol: d_course_kalimari_desert_vertex_0x040110A0 + type: mk64:course_vtx + count: 32 + offset: 0xee8c + +d_course_kalimari_desert_vertex_0x040111E0: + symbol: d_course_kalimari_desert_vertex_0x040111E0 + type: mk64:course_vtx + count: 22 + offset: 0xefa4 + +d_course_kalimari_desert_vertex_0x040112E0: + symbol: d_course_kalimari_desert_vertex_0x040112E0 + type: mk64:course_vtx + count: 50 + offset: 0xf084 + +d_course_kalimari_desert_vertex_0x040114E0: + symbol: d_course_kalimari_desert_vertex_0x040114E0 + type: mk64:course_vtx + count: 8 + offset: 0xf244 + +d_course_kalimari_desert_vertex_0x04011560: + symbol: d_course_kalimari_desert_vertex_0x04011560 + type: mk64:course_vtx + count: 8 + offset: 0xf2b4 + +d_course_kalimari_desert_vertex_0x040115E0: + symbol: d_course_kalimari_desert_vertex_0x040115E0 + type: mk64:course_vtx + count: 22 + offset: 0xf324 + +d_course_kalimari_desert_vertex_0x040116E0: + symbol: d_course_kalimari_desert_vertex_0x040116E0 + type: mk64:course_vtx + count: 36 + offset: 0xf404 + +d_course_kalimari_desert_vertex_0x04011860: + symbol: d_course_kalimari_desert_vertex_0x04011860 + type: mk64:course_vtx + count: 36 + offset: 0xf554 + +d_course_kalimari_desert_vertex_0x040119E0: + symbol: d_course_kalimari_desert_vertex_0x040119E0 + type: mk64:course_vtx + count: 50 + offset: 0xf6a4 + +d_course_kalimari_desert_vertex_0x04011BE0: + symbol: d_course_kalimari_desert_vertex_0x04011BE0 + type: mk64:course_vtx + count: 50 + offset: 0xf864 + +d_course_kalimari_desert_vertex_0x04011DE0: + symbol: d_course_kalimari_desert_vertex_0x04011DE0 + type: mk64:course_vtx + count: 50 + offset: 0xfa24 + +d_course_kalimari_desert_vertex_0x04011FE0: + symbol: d_course_kalimari_desert_vertex_0x04011FE0 + type: mk64:course_vtx + count: 50 + offset: 0xfbe4 + +d_course_kalimari_desert_vertex_0x040121E0: + symbol: d_course_kalimari_desert_vertex_0x040121E0 + type: mk64:course_vtx + count: 50 + offset: 0xfda4 + +d_course_kalimari_desert_vertex_0x040123E0: + symbol: d_course_kalimari_desert_vertex_0x040123E0 + type: mk64:course_vtx + count: 6 + offset: 0xff64 + +d_course_kalimari_desert_vertex_0x04012440: + symbol: d_course_kalimari_desert_vertex_0x04012440 + type: mk64:course_vtx + count: 22 + offset: 0xffb8 + +d_course_kalimari_desert_vertex_0x04012540: + symbol: d_course_kalimari_desert_vertex_0x04012540 + type: mk64:course_vtx + count: 50 + offset: 0x10098 + +d_course_kalimari_desert_vertex_0x04012740: + symbol: d_course_kalimari_desert_vertex_0x04012740 + type: mk64:course_vtx + count: 36 + offset: 0x10258 + +d_course_kalimari_desert_vertex_0x040128C0: + symbol: d_course_kalimari_desert_vertex_0x040128C0 + type: mk64:course_vtx + count: 50 + offset: 0x103a8 + +d_course_kalimari_desert_vertex_0x04012AC0: + symbol: d_course_kalimari_desert_vertex_0x04012AC0 + type: mk64:course_vtx + count: 18 + offset: 0x10568 + +d_course_kalimari_desert_vertex_0x04012B80: + symbol: d_course_kalimari_desert_vertex_0x04012B80 + type: mk64:course_vtx + count: 36 + offset: 0x10610 + +d_course_kalimari_desert_vertex_0x04012D00: + symbol: d_course_kalimari_desert_vertex_0x04012D00 + type: mk64:course_vtx + count: 50 + offset: 0x10760 + +d_course_kalimari_desert_vertex_0x04012F00: + symbol: d_course_kalimari_desert_vertex_0x04012F00 + type: mk64:course_vtx + count: 50 + offset: 0x10920 + +d_course_kalimari_desert_vertex_0x04013100: + symbol: d_course_kalimari_desert_vertex_0x04013100 + type: mk64:course_vtx + count: 36 + offset: 0x10ae0 + +d_course_kalimari_desert_vertex_0x04013280: + symbol: d_course_kalimari_desert_vertex_0x04013280 + type: mk64:course_vtx + count: 50 + offset: 0x10c30 + +d_course_kalimari_desert_vertex_0x04013480: + symbol: d_course_kalimari_desert_vertex_0x04013480 + type: mk64:course_vtx + count: 16 + offset: 0x10df0 + +d_course_kalimari_desert_vertex_0x04013520: + symbol: d_course_kalimari_desert_vertex_0x04013520 + type: mk64:course_vtx + count: 18 + offset: 0x10e7c + +d_course_kalimari_desert_vertex_0x040135E0: + symbol: d_course_kalimari_desert_vertex_0x040135E0 + type: mk64:course_vtx + count: 36 + offset: 0x10f24 + +d_course_kalimari_desert_vertex_0x04013760: + symbol: d_course_kalimari_desert_vertex_0x04013760 + type: mk64:course_vtx + count: 32 + offset: 0x11074 + +d_course_kalimari_desert_vertex_0x040138A0: + symbol: d_course_kalimari_desert_vertex_0x040138A0 + type: mk64:course_vtx + count: 50 + offset: 0x1118c + +d_course_kalimari_desert_vertex_0x04013AA0: + symbol: d_course_kalimari_desert_vertex_0x04013AA0 + type: mk64:course_vtx + count: 8 + offset: 0x1134c + +d_course_kalimari_desert_vertex_0x04013B20: + symbol: d_course_kalimari_desert_vertex_0x04013B20 + type: mk64:course_vtx + count: 6 + offset: 0x113bc + +d_course_kalimari_desert_vertex_0x04013B80: + symbol: d_course_kalimari_desert_vertex_0x04013B80 + type: mk64:course_vtx + count: 32 + offset: 0x11410 + +d_course_kalimari_desert_vertex_0x04013CC0: + symbol: d_course_kalimari_desert_vertex_0x04013CC0 + type: mk64:course_vtx + count: 22 + offset: 0x11528 + +d_course_kalimari_desert_vertex_0x04013DC0: + symbol: d_course_kalimari_desert_vertex_0x04013DC0 + type: mk64:course_vtx + count: 22 + offset: 0x11608 + +d_course_kalimari_desert_vertex_0x04013EC0: + symbol: d_course_kalimari_desert_vertex_0x04013EC0 + type: mk64:course_vtx + count: 50 + offset: 0x116e8 + +d_course_kalimari_desert_vertex_0x040140C0: + symbol: d_course_kalimari_desert_vertex_0x040140C0 + type: mk64:course_vtx + count: 18 + offset: 0x118a8 + +d_course_kalimari_desert_vertex_0x04014180: + symbol: d_course_kalimari_desert_vertex_0x04014180 + type: mk64:course_vtx + count: 32 + offset: 0x11950 + +d_course_kalimari_desert_vertex_0x040142C0: + symbol: d_course_kalimari_desert_vertex_0x040142C0 + type: mk64:course_vtx + count: 4 + offset: 0x11a68 + +d_course_kalimari_desert_vertex_0x04014300: + symbol: d_course_kalimari_desert_vertex_0x04014300 + type: mk64:course_vtx + count: 4 + offset: 0x11aa0 + +d_course_kalimari_desert_vertex_0x04014340: + symbol: d_course_kalimari_desert_vertex_0x04014340 + type: mk64:course_vtx + count: 18 + offset: 0x11ad8 + +d_course_kalimari_desert_vertex_0x04014400: + symbol: d_course_kalimari_desert_vertex_0x04014400 + type: mk64:course_vtx + count: 18 + offset: 0x11b80 + +d_course_kalimari_desert_vertex_0x040144C0: + symbol: d_course_kalimari_desert_vertex_0x040144C0 + type: mk64:course_vtx + count: 32 + offset: 0x11c28 + +d_course_kalimari_desert_vertex_0x04014600: + symbol: d_course_kalimari_desert_vertex_0x04014600 + type: mk64:course_vtx + count: 50 + offset: 0x11d40 + +d_course_kalimari_desert_vertex_0x04014800: + symbol: d_course_kalimari_desert_vertex_0x04014800 + type: mk64:course_vtx + count: 18 + offset: 0x11f00 + +d_course_kalimari_desert_vertex_0x040148C0: + symbol: d_course_kalimari_desert_vertex_0x040148C0 + type: mk64:course_vtx + count: 50 + offset: 0x11fa8 + +d_course_kalimari_desert_vertex_0x04014AC0: + symbol: d_course_kalimari_desert_vertex_0x04014AC0 + type: mk64:course_vtx + count: 8 + offset: 0x12168 + +d_course_kalimari_desert_vertex_0x04014B40: + symbol: d_course_kalimari_desert_vertex_0x04014B40 + type: mk64:course_vtx + count: 36 + offset: 0x121d8 + +d_course_kalimari_desert_vertex_0x04014CC0: + symbol: d_course_kalimari_desert_vertex_0x04014CC0 + type: mk64:course_vtx + count: 50 + offset: 0x12328 + +d_course_kalimari_desert_vertex_0x04014EC0: + symbol: d_course_kalimari_desert_vertex_0x04014EC0 + type: mk64:course_vtx + count: 50 + offset: 0x124e8 + +d_course_kalimari_desert_vertex_0x040150C0: + symbol: d_course_kalimari_desert_vertex_0x040150C0 + type: mk64:course_vtx + count: 4 + offset: 0x126a8 + +d_course_kalimari_desert_vertex_0x04015100: + symbol: d_course_kalimari_desert_vertex_0x04015100 + type: mk64:course_vtx + count: 40 + offset: 0x126e0 + +d_course_kalimari_desert_vertex_0x040152C0: + symbol: d_course_kalimari_desert_vertex_0x040152C0 + type: mk64:course_vtx + count: 36 + offset: 0x12868 + +d_course_kalimari_desert_vertex_0x04015440: + symbol: d_course_kalimari_desert_vertex_0x04015440 + type: mk64:course_vtx + count: 22 + offset: 0x129b8 + +d_course_kalimari_desert_vertex_0x04015540: + symbol: d_course_kalimari_desert_vertex_0x04015540 + type: mk64:course_vtx + count: 36 + offset: 0x12a98 + +d_course_kalimari_desert_vertex_0x040156C0: + symbol: d_course_kalimari_desert_vertex_0x040156C0 + type: mk64:course_vtx + count: 34 + offset: 0x12be8 + +d_course_kalimari_desert_vertex_0x04015820: + symbol: d_course_kalimari_desert_vertex_0x04015820 + type: mk64:course_vtx + count: 50 + offset: 0x12d1c + +d_course_kalimari_desert_vertex_0x04015A20: + symbol: d_course_kalimari_desert_vertex_0x04015A20 + type: mk64:course_vtx + count: 4 + offset: 0x12edc + +d_course_kalimari_desert_vertex_0x04015A60: + symbol: d_course_kalimari_desert_vertex_0x04015A60 + type: mk64:course_vtx + count: 18 + offset: 0x12f14 + +d_course_kalimari_desert_vertex_0x04015B20: + symbol: d_course_kalimari_desert_vertex_0x04015B20 + type: mk64:course_vtx + count: 18 + offset: 0x12fbc + +d_course_kalimari_desert_vertex_0x04015BE0: + symbol: d_course_kalimari_desert_vertex_0x04015BE0 + type: mk64:course_vtx + count: 4 + offset: 0x13064 + +d_course_kalimari_desert_vertex_0x04015C20: + symbol: d_course_kalimari_desert_vertex_0x04015C20 + type: mk64:course_vtx + count: 18 + offset: 0x1309c + +d_course_kalimari_desert_vertex_0x04015CE0: + symbol: d_course_kalimari_desert_vertex_0x04015CE0 + type: mk64:course_vtx + count: 8 + offset: 0x13144 + +d_course_kalimari_desert_vertex_0x04015D60: + symbol: d_course_kalimari_desert_vertex_0x04015D60 + type: mk64:course_vtx + count: 18 + offset: 0x131b4 + +d_course_kalimari_desert_vertex_0x04015E20: + symbol: d_course_kalimari_desert_vertex_0x04015E20 + type: mk64:course_vtx + count: 22 + offset: 0x1325c + +d_course_kalimari_desert_vertex_0x04015F20: + symbol: d_course_kalimari_desert_vertex_0x04015F20 + type: mk64:course_vtx + count: 18 + offset: 0x1333c + +d_course_kalimari_desert_vertex_0x04015FE0: + symbol: d_course_kalimari_desert_vertex_0x04015FE0 + type: mk64:course_vtx + count: 36 + offset: 0x133e4 + +d_course_kalimari_desert_vertex_0x04016160: + symbol: d_course_kalimari_desert_vertex_0x04016160 + type: mk64:course_vtx + count: 35 + offset: 0x13534 + +d_course_kalimari_desert_vertex_0x040162D0: + symbol: d_course_kalimari_desert_vertex_0x040162D0 + type: mk64:course_vtx + count: 40 + offset: 0x13676 + +d_course_kalimari_desert_vertex_0x04016490: + symbol: d_course_kalimari_desert_vertex_0x04016490 + type: mk64:course_vtx + count: 36 + offset: 0x137fe + +d_course_kalimari_desert_vertex_0x04016610: + symbol: d_course_kalimari_desert_vertex_0x04016610 + type: mk64:course_vtx + count: 50 + offset: 0x1394e + +d_course_kalimari_desert_vertex_0x04016810: + symbol: d_course_kalimari_desert_vertex_0x04016810 + type: mk64:course_vtx + count: 22 + offset: 0x13b0e + +d_course_kalimari_desert_vertex_0x04016910: + symbol: d_course_kalimari_desert_vertex_0x04016910 + type: mk64:course_vtx + count: 50 + offset: 0x13bee + +d_course_kalimari_desert_vertex_0x04016B10: + symbol: d_course_kalimari_desert_vertex_0x04016B10 + type: mk64:course_vtx + count: 22 + offset: 0x13dae + +d_course_kalimari_desert_vertex_0x04016C10: + symbol: d_course_kalimari_desert_vertex_0x04016C10 + type: mk64:course_vtx + count: 8 + offset: 0x13e8e + +d_course_kalimari_desert_vertex_0x04016C90: + symbol: d_course_kalimari_desert_vertex_0x04016C90 + type: mk64:course_vtx + count: 50 + offset: 0x13efe + +d_course_kalimari_desert_vertex_0x04016E90: + symbol: d_course_kalimari_desert_vertex_0x04016E90 + type: mk64:course_vtx + count: 22 + offset: 0x140be + +d_course_kalimari_desert_vertex_0x04016F90: + symbol: d_course_kalimari_desert_vertex_0x04016F90 + type: mk64:course_vtx + count: 22 + offset: 0x1419e + +d_course_kalimari_desert_vertex_0x04017090: + symbol: d_course_kalimari_desert_vertex_0x04017090 + type: mk64:course_vtx + count: 32 + offset: 0x1427e + +d_course_kalimari_desert_vertex_0x040171D0: + symbol: d_course_kalimari_desert_vertex_0x040171D0 + type: mk64:course_vtx + count: 37 + offset: 0x14396 + +d_course_kalimari_desert_vertex_0x04017360: + symbol: d_course_kalimari_desert_vertex_0x04017360 + type: mk64:course_vtx + count: 50 + offset: 0x144f4 + +d_course_kalimari_desert_vertex_0x04017560: + symbol: d_course_kalimari_desert_vertex_0x04017560 + type: mk64:course_vtx + count: 4 + offset: 0x146b4 + +d_course_kalimari_desert_vertex_0x040175A0: + symbol: d_course_kalimari_desert_vertex_0x040175A0 + type: mk64:course_vtx + count: 36 + offset: 0x146ec + +d_course_kalimari_desert_vertex_0x04017720: + symbol: d_course_kalimari_desert_vertex_0x04017720 + type: mk64:course_vtx + count: 19 + offset: 0x1483c + +d_course_kalimari_desert_vertex_0x040177F0: + symbol: d_course_kalimari_desert_vertex_0x040177F0 + type: mk64:course_vtx + count: 49 + offset: 0x148f2 + +d_course_kalimari_desert_vertex_0x040179E0: + symbol: d_course_kalimari_desert_vertex_0x040179E0 + type: mk64:course_vtx + count: 36 + offset: 0x14aa4 + +d_course_kalimari_desert_vertex_0x04017B60: + symbol: d_course_kalimari_desert_vertex_0x04017B60 + type: mk64:course_vtx + count: 36 + offset: 0x14bf4 + +d_course_kalimari_desert_vertex_0x04017CE0: + symbol: d_course_kalimari_desert_vertex_0x04017CE0 + type: mk64:course_vtx + count: 33 + offset: 0x14d44 + +d_course_kalimari_desert_vertex_0x04017E30: + symbol: d_course_kalimari_desert_vertex_0x04017E30 + type: mk64:course_vtx + count: 21 + offset: 0x14e6a + +d_course_kalimari_desert_vertex_0x04017F20: + symbol: d_course_kalimari_desert_vertex_0x04017F20 + type: mk64:course_vtx + count: 9 + offset: 0x14f3c + +d_course_kalimari_desert_vertex_0x04017FB0: + symbol: d_course_kalimari_desert_vertex_0x04017FB0 + type: mk64:course_vtx + count: 6 + offset: 0x14fba + +d_course_kalimari_desert_vertex_0x04018010: + symbol: d_course_kalimari_desert_vertex_0x04018010 + type: mk64:course_vtx + count: 18 + offset: 0x1500e + +d_course_kalimari_desert_vertex_0x040180D0: + symbol: d_course_kalimari_desert_vertex_0x040180D0 + type: mk64:course_vtx + count: 19 + offset: 0x150b6 + +d_course_kalimari_desert_vertex_0x040181A0: + symbol: d_course_kalimari_desert_vertex_0x040181A0 + type: mk64:course_vtx + count: 20 + offset: 0x1516c + +d_course_kalimari_desert_vertex_0x04018280: + symbol: d_course_kalimari_desert_vertex_0x04018280 + type: mk64:course_vtx + count: 9 + offset: 0x15230 + +d_course_kalimari_desert_vertex_0x04018310: + symbol: d_course_kalimari_desert_vertex_0x04018310 + type: mk64:course_vtx + count: 49 + offset: 0x152ae + +d_course_kalimari_desert_vertex_0x04018500: + symbol: d_course_kalimari_desert_vertex_0x04018500 + type: mk64:course_vtx + count: 50 + offset: 0x15460 + +d_course_kalimari_desert_vertex_0x04018700: + symbol: d_course_kalimari_desert_vertex_0x04018700 + type: mk64:course_vtx + count: 9 + offset: 0x15620 + +d_course_kalimari_desert_vertex_0x04018790: + symbol: d_course_kalimari_desert_vertex_0x04018790 + type: mk64:course_vtx + count: 40 + offset: 0x1569e + +d_course_kalimari_desert_vertex_0x04018950: + symbol: d_course_kalimari_desert_vertex_0x04018950 + type: mk64:course_vtx + count: 49 + offset: 0x15826 + +d_course_kalimari_desert_vertex_0x04018B40: + symbol: d_course_kalimari_desert_vertex_0x04018B40 + type: mk64:course_vtx + count: 39 + offset: 0x159d8 + +d_course_kalimari_desert_vertex_0x04018CF0: + symbol: d_course_kalimari_desert_vertex_0x04018CF0 + type: mk64:course_vtx + count: 32 + offset: 0x15b52 + +d_course_kalimari_desert_vertex_0x04018E30: + symbol: d_course_kalimari_desert_vertex_0x04018E30 + type: mk64:course_vtx + count: 34 + offset: 0x15c6a diff --git a/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml b/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml new file mode 100644 index 000000000..b678dfd61 --- /dev/null +++ b/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml @@ -0,0 +1,2207 @@ +:config: + segments: + - [0x06, 0x842E40] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml" + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_643B3C"] + - [0x05000800, "textures/other_textures/texture_66A3DC"] + - [0x05001000, "textures/other_textures/sign_wood_red_arrow"] + - [0x05002000, "textures/other_textures/texture_66DD38"] + - [0x05003000, "textures/other_textures/texture_643430"] + - [0x05003800, "textures/other_textures/texture_660D8C"] + - [0x05004000, "textures/other_textures/texture_6609D0"] + - [0x05005000, "textures/other_textures/grass_12"] + - [0x05005800, "textures/other_textures/texture_66CA98"] + - [0x05006000, "textures/other_textures/texture_66EBF0"] + - [0x05006800, "textures/other_textures/texture_67BEE8"] + - [0x05007000, "textures/other_textures/sand_finish"] + - [0x05007800, "textures/other_textures/wheel_steam_engine"] + - [0x05008000, "textures/other_textures/texture_669570"] + - [0x05009000, "textures/other_textures/waves_1"] + - [0x05009800, "textures/other_textures/waves_2"] + # Segment 7 + - [0x7000000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_0"] + - [0x70000B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B0"] + - [0x7000160, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_160"] + - [0x7000210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_210"] + - [0x70002C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C0"] + - [0x70002E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E8"] + - [0x7000358, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_358"] + - [0x7000368, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_368"] + - [0x7000380, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_380"] + - [0x7000390, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_390"] + - [0x7000440, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_440"] + - [0x7000518, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_518"] + - [0x7000610, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_610"] + - [0x70006D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6D8"] + - [0x7000778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_778"] + - [0x7000858, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_858"] + - [0x7000928, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_928"] + - [0x7000A00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A00"] + - [0x7000AE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AE0"] + - [0x7000BD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_BD8"] + - [0x7000CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_CC0"] + - [0x7000D70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_D70"] + - [0x7000E60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_E60"] + - [0x7000F38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_F38"] + - [0x7001000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1000"] + - [0x70010B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_10B0"] + - [0x7001190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1190"] + - [0x7001210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1210"] + - [0x70012D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_12D0"] + - [0x70013D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_13D0"] + - [0x70014D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_14D0"] + - [0x7001590, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1590"] + - [0x7001668, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1668"] + - [0x70016F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_16F0"] + - [0x7001778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1778"] + - [0x7001850, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1850"] + - [0x7001940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1940"] + - [0x7001A40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1A40"] + - [0x7001B58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1B58"] + - [0x7001C18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1C18"] + - [0x7001CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1CC0"] + - [0x7001DA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1DA8"] + - [0x7001E90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1E90"] + - [0x7001F78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1F78"] + - [0x7002058, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2058"] + - [0x7002178, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2178"] + - [0x70021D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_21D8"] + - [0x7002240, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2240"] + - [0x70022B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_22B0"] + - [0x7002320, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2320"] + - [0x7002398, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2398"] + - [0x7002410, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2410"] + - [0x7002478, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2478"] + - [0x70024E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_24E8"] + - [0x7002560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2560"] + - [0x70025C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_25C8"] + - [0x7002638, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2638"] + - [0x7002698, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2698"] + - [0x7002748, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2748"] + - [0x70027B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_27B0"] + - [0x7002818, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2818"] + - [0x7002888, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2888"] + - [0x70028F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_28F0"] + - [0x7002960, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2960"] + - [0x70029D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_29D0"] + - [0x7002A58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2A58"] + - [0x7002AC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2AC8"] + - [0x7002B30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2B30"] + - [0x7002BA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2BA8"] + - [0x7002C08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C08"] + - [0x7002C68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C68"] + - [0x7002CC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2CC8"] + - [0x7002D40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2D40"] + - [0x7002DA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2DA8"] + - [0x7002E18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E18"] + - [0x7002E98, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E98"] + - [0x7002F00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2F00"] + - [0x7002F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2F60"] + - [0x7002FC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2FC8"] + - [0x7003038, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3038"] + - [0x70030B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_30B0"] + - [0x70031D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_31D0"] + - [0x70032B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_32B0"] + - [0x7003390, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3390"] + - [0x7003470, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3470"] + - [0x7003550, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3550"] + - [0x7003630, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3630"] + - [0x70036F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_36F0"] + - [0x70037B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_37B0"] + - [0x70038B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_38B0"] + - [0x7003978, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3978"] + - [0x70039E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_39E8"] + - [0x7003AC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3AC8"] + - [0x7003B40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3B40"] + - [0x7003C38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3C38"] + - [0x7003D00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3D00"] + - [0x7003DE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3DE0"] + - [0x7003ED8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3ED8"] + - [0x7003F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3F60"] + - [0x7004040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4040"] + - [0x7004120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4120"] + - [0x7004200, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4200"] + - [0x70042E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_42E0"] + - [0x70043C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_43C0"] + - [0x7004490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4490"] + - [0x70045C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_45C8"] + - [0x70046A8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_46A8"] + - [0x7004770, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4770"] + - [0x70047E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_47E0"] + - [0x70048B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_48B0"] + - [0x7004920, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4920"] + - [0x7004A08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4A08"] + - [0x7004AF0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4AF0"] + - [0x7004BD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4BD0"] + - [0x7004CC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4CC8"] + - [0x7004DD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4DD8"] + - [0x7004EA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4EA0"] + - [0x7004F68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4F68"] + - [0x7005028, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5028"] + - [0x70050E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_50E8"] + - [0x70051A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_51A0"] + - [0x7005250, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5250"] + - [0x7005300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5300"] + - [0x70053D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_53D8"] + - [0x7005488, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5488"] + - [0x70054E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_54E8"] + - [0x7005598, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5598"] + - [0x70055F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_55F8"] + - [0x70056C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_56C8"] + - [0x7005778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5778"] + - [0x7005828, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5828"] + - [0x70058F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_58F8"] + - [0x7005970, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5970"] + - [0x7005A38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5A38"] + - [0x7005B00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5B00"] + - [0x7005BB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5BB8"] + - [0x7005C88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5C88"] + - [0x7005D50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5D50"] + - [0x7005E08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5E08"] + - [0x7005EB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5EB0"] + - [0x7005F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5F60"] + - [0x7006010, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6010"] + - [0x7006078, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6078"] + - [0x7006140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6140"] + - [0x70061A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_61A0"] + - [0x7006268, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6268"] + - [0x7006330, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6330"] + - [0x70063F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_63F8"] + - [0x70064C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_64C8"] + - [0x70065D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_65D8"] + - [0x7006648, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6648"] + - [0x70066B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_66B0"] + - [0x7006718, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6718"] + - [0x70067A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_67A0"] + - [0x7006810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6810"] + - [0x70068C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_68C0"] + - [0x7006938, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6938"] + - [0x7006998, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6998"] + - [0x70069F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_69F8"] + - [0x7006A68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6A68"] + - [0x7006AD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6AD0"] + - [0x7006B30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6B30"] + - [0x7006BE8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6BE8"] + - [0x7006D70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6D70"] + - [0x7006DE8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6DE8"] + - [0x7006EB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6EB8"] + - [0x7006F30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6F30"] + - [0x7006FA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6FA0"] + - [0x7007000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7000"] + - [0x70070A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_70A0"] + - [0x7007120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7120"] + - [0x7007188, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7188"] + - [0x70071F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_71F0"] + - [0x7007260, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7260"] + - [0x70072D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_72D0"] + - [0x7007358, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7358"] + - [0x7007430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7430"] + - [0x7007538, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7538"] + - [0x7007608, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7608"] + - [0x70076A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_76A0"] + - [0x70076C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_76C0"] + - [0x7007740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7740"] + - [0x7007810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7810"] + - [0x70078E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_78E0"] + - [0x7007970, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7970"] + - [0x7007A98, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7A98"] + - [0x7007DB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7DB0"] + - [0x7007E48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7E48"] + - [0x7007EE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7EE0"] + - [0x7007F70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7F70"] + - [0x7008028, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8028"] + - [0x70080F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_80F8"] + - [0x7008200, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8200"] + - [0x70082D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_82D8"] + - [0x7008360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8360"] + - [0x7008468, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8468"] + - [0x7008510, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8510"] + - [0x70085C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_85C0"] + - [0x70086B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_86B0"] + - [0x7008740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8740"] + - [0x70087E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_87E0"] + - [0x7008870, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8870"] + - [0x7008918, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8918"] + - [0x7008980, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8980"] + - [0x7008A90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8A90"] + - [0x7008C18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8C18"] + - [0x7008D08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8D08"] + - [0x7008DB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8DB0"] + - [0x7008E50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8E50"] + - [0x7008EE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8EE0"] + - [0x7008F58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8F58"] + - [0x7008FD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8FD0"] + - [0x7009080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9080"] + - [0x7009188, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9188"] + - [0x7009228, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9228"] + - [0x70092C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_92C8"] + - [0x7009368, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9368"] + - [0x7009408, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9408"] + - [0x70094A8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_94A8"] + - [0x7009548, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9548"] + - [0x70095E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_95E8"] + - [0x7009688, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9688"] + - [0x70096D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_96D0"] + - [0x7009800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9800"] + - [0x7009930, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9930"] + - [0x7009A30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9A30"] + - [0x7009B20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B20"] + - [0x7009B48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B48"] + - [0x7009B78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B78"] + - [0x7009B88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B88"] + - [0x7009CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9CC0"] + - [0x7009CD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9CD0"] + - [0x7009D58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9D58"] + - [0x7009E70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9E70"] + - [0x7009E88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9E88"] + - [0x7009EC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9EC0"] + - [0x7009EF8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9EF8"] + - [0x7009F30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9F30"] + - [0x7009F68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9F68"] + - [0x7009FA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FA0"] + - [0x7009FC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FC8"] + - [0x7009FF0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FF0"] + - [0x700A020, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A020"] + - [0x700A080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A080"] + - [0x700A0B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A0B0"] + - [0x700A0E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A0E8"] + - [0x700A128, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A128"] + - [0x700A158, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A158"] + - [0x700A190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A190"] + - [0x700A1D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A1D0"] + - [0x700A210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A210"] + - [0x700A240, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A240"] + - [0x700A278, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A278"] + - [0x700A2B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A2B0"] + - [0x700A2E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A2E8"] + - [0x700A320, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A320"] + - [0x700A350, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A350"] + - [0x700A388, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A388"] + - [0x700A3C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A3C8"] + - [0x700A400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A400"] + - [0x700A438, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A438"] + - [0x700A470, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A470"] + - [0x700A4A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A4A0"] + - [0x700A4D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A4D0"] + - [0x700A508, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A508"] + - [0x700A540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A540"] + - [0x700A640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A640"] + - [0x700A668, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A668"] + - [0x700A690, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A690"] + - [0x700A6B8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A6B8"] + - [0x700A6E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A6E0"] + - [0x700A708, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A708"] + - [0x700A738, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A738"] + - [0x700A760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A760"] + - [0x700A798, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A798"] + - [0x700A7C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A7C0"] + - [0x700A7E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A7E0"] + - [0x700A810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A810"] + - [0x700A838, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A838"] + - [0x700A868, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A868"] + - [0x700A890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A890"] + - [0x700A8C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A8C0"] + - [0x700A8E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A8E0"] + - [0x700A908, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A908"] + - [0x700A930, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A930"] + - [0x700A990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A990"] + - [0x700A9F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A9F0"] + - [0x700AA48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AA48"] + - [0x700AAB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AAB0"] + - [0x700AB08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AB08"] + - [0x700AB68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AB68"] + - [0x700ABD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ABD0"] + - [0x700AC40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AC40"] + - [0x700ACB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ACB0"] + - [0x700ACD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ACD8"] + - [0x700AD00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD00"] + - [0x700AD28, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD28"] + - [0x700AD50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD50"] + - [0x700AD78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD78"] + - [0x700ADB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ADB8"] + - [0x700ADE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ADE0"] + - [0x700AEF8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AEF8"] + - [0x700AFC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AFC8"] + - [0x700B0A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B0A0"] + - [0x700B168, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B168"] + - [0x700B208, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B208"] + - [0x700B230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B230"] + - [0x700B2B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B2B0"] + - [0x700B2C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B2C0"] + # Segment 4 + - [0x4000000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000000"] + - [0x4000040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000040"] + - [0x4000080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000080"] + - [0x40000c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040000C0"] + - [0x4000100, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000100"] + - [0x4000140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000140"] + - [0x4000180, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000180"] + - [0x40001c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040001C0"] + - [0x4000200, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000200"] + - [0x40002c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040002C0"] + - [0x40004c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040004C0"] + - [0x4000610, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000610"] + - [0x4000800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000800"] + - [0x4000a00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000A00"] + - [0x4000a60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000A60"] + - [0x4000c50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000C50"] + - [0x4000e50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000E50"] + - [0x4000ff0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000FF0"] + - [0x40011f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040011F0"] + - [0x40013e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040013E0"] + - [0x40015c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040015C0"] + - [0x40016b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040016B0"] + - [0x4001890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001890"] + - [0x4001a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001A80"] + - [0x4001af0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001AF0"] + - [0x4001cf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001CF0"] + - [0x4001ed0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001ED0"] + - [0x4001f00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001F00"] + - [0x4002100, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002100"] + - [0x40022f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040022F0"] + - [0x4002350, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002350"] + - [0x4002540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002540"] + - [0x4002740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002740"] + - [0x40027e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040027E0"] + - [0x40029e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040029E0"] + - [0x4002be0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002BE0"] + - [0x4002d80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002D80"] + - [0x4002f60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002F60"] + - [0x4003160, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003160"] + - [0x4003270, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003270"] + - [0x4003460, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003460"] + - [0x4003580, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003580"] + - [0x4003760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003760"] + - [0x4003880, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003880"] + - [0x40038e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040038E0"] + - [0x4003ad0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003AD0"] + - [0x4003cb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003CB0"] + - [0x4003d20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003D20"] + - [0x4003f00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003F00"] + - [0x40040f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040040F0"] + - [0x4004150, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004150"] + - [0x4004350, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004350"] + - [0x40044a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040044A0"] + - [0x4004680, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004680"] + - [0x4004880, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004880"] + - [0x4004940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004940"] + - [0x4004a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004A80"] + - [0x4004c70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004C70"] + - [0x4004e10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004E10"] + - [0x4005010, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005010"] + - [0x40051f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040051F0"] + - [0x40053e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040053E0"] + - [0x40055d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040055D0"] + - [0x40057d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040057D0"] + - [0x40059a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040059A0"] + - [0x4005ba0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005BA0"] + - [0x4005d00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005D00"] + - [0x4005ef0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005EF0"] + - [0x40060f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040060F0"] + - [0x4006120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006120"] + - [0x40062c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040062C0"] + - [0x4006490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006490"] + - [0x4006670, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006670"] + - [0x4006860, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006860"] + - [0x40068a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040068A0"] + - [0x4006a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006A80"] + - [0x4006c80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006C80"] + - [0x4006db0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006DB0"] + - [0x4006f90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006F90"] + - [0x4007180, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007180"] + - [0x4007360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007360"] + - [0x4007560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007560"] + - [0x4007750, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007750"] + - [0x4007940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007940"] + - [0x40079c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040079C0"] + - [0x4007ba0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007BA0"] + - [0x4007d60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007D60"] + - [0x4007f60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007F60"] + - [0x4008050, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008050"] + - [0x4008230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008230"] + - [0x4008430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008430"] + - [0x4008500, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008500"] + - [0x4008700, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008700"] + - [0x4008900, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008900"] + - [0x40089e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040089E0"] + - [0x4008be0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008BE0"] + - [0x4008de0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008DE0"] + - [0x4008ed0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008ED0"] + - [0x40090d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040090D0"] + - [0x40092d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040092D0"] + - [0x4009300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009300"] + - [0x4009360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009360"] + - [0x40093f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040093F0"] + - [0x40094e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040094E0"] + - [0x40095b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040095B0"] + - [0x4009710, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009710"] + - [0x4009860, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009860"] + - [0x40098e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040098E0"] + - [0x40099c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040099C0"] + - [0x4009b10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009B10"] + - [0x4009bd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009BD0"] + - [0x4009cb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009CB0"] + - [0x4009d10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009D10"] + - [0x4009e20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009E20"] + - [0x4009e80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009E80"] + - [0x4009f10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009F10"] + - [0x4009fd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009FD0"] + - [0x400a0e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A0E0"] + - [0x400a1a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A1A0"] + - [0x400a270, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A270"] + - [0x400a380, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A380"] + - [0x400a560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A560"] + - [0x400a670, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A670"] + - [0x400a720, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A720"] + - [0x400a870, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A870"] + - [0x400a8a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A8A0"] + - [0x400a900, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A900"] + - [0x400a960, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A960"] + - [0x400aa90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AA90"] + - [0x400ab20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AB20"] + - [0x400ac20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AC20"] + - [0x400adb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400ADB0"] + - [0x400ae30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AE30"] + - [0x400ae90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AE90"] + - [0x400af50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AF50"] + - [0x400b070, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B070"] + - [0x400b1c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B1C0"] + - [0x400b300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B300"] + - [0x400b400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B400"] + - [0x400b580, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B580"] + - [0x400b680, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B680"] + - [0x400b7b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B7B0"] + - [0x400b8b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B8B0"] + - [0x400ba20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BA20"] + - [0x400bb20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BB20"] + - [0x400bc60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BC60"] + - [0x400bd60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BD60"] + - [0x400bdf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BDF0"] + - [0x400be70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BE70"] + - [0x400bf20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BF20"] + - [0x400bfa0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BFA0"] + - [0x400c120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C120"] + - [0x400c290, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C290"] + - [0x400c3b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C3B0"] + - [0x400c430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C430"] + - [0x400c530, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C530"] + - [0x400c6a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C6A0"] + - [0x400c7a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C7A0"] + - [0x400c920, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C920"] + - [0x400cb00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CB00"] + - [0x400cc80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CC80"] + - [0x400cd70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CD70"] + - [0x400cdf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CDF0"] + - [0x400cf40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CF40"] + - [0x400d040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D040"] + - [0x400d1e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D1E0"] + - [0x400d360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D360"] + - [0x400d520, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D520"] + - [0x400d660, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D660"] + - [0x400d760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D760"] + - [0x400d8a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D8A0"] + - [0x400d9a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D9A0"] + - [0x400daf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DAF0"] + - [0x400dbf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DBF0"] + - [0x400dd60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DD60"] + - [0x400de60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DE60"] + - [0x400dfb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DFB0"] + - [0x400e0b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E0B0"] + - [0x400e1f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E1F0"] + - [0x400e270, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E270"] + - [0x400e450, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E450"] + - [0x400e650, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E650"] + - [0x400e840, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E840"] + - [0x400e8a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E8A0"] + - [0x400e9e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E9E0"] + - [0x400eae0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EAE0"] + - [0x400ebd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EBD0"] + - [0x400ec50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EC50"] + - [0x400ed60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400ED60"] + - [0x400ef10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EF10"] + - [0x400ef60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EF60"] + - [0x400f070, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F070"] + - [0x400f1a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F1A0"] + - [0x400f2d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F2D0"] + - [0x400f480, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F480"] + - [0x400f500, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F500"] + - [0x400f630, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F630"] + - [0x400f720, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F720"] + - [0x400f8d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F8D0"] + - [0x400fa50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FA50"] + - [0x400fb00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FB00"] + - [0x400fb80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FB80"] + - [0x400fc30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FC30"] + - [0x400fcb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FCB0"] + - [0x400fd70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FD70"] + - [0x400fdf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FDF0"] + - [0x400feb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FEB0"] + - [0x400ff30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FF30"] + - [0x400ffd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FFD0"] + - [0x4010010, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010010"] + - [0x4010050, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010050"] + - [0x4010090, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010090"] + - [0x40100f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040100F0"] + - [0x4010130, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010130"] + - [0x4010260, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010260"] + - [0x4010320, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010320"] + - [0x4010380, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010380"] + - [0x40103c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040103C0"] + - [0x40103f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040103F0"] + - [0x4010450, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010450"] + - [0x4010490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010490"] + - [0x40104f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040104F0"] + - [0x40105e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040105E0"] + - [0x40106a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040106A0"] + - [0x4010700, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010700"] + - [0x4010740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010740"] + - [0x40107a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040107A0"] + - [0x40107e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040107E0"] + - [0x40108d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040108D0"] + - [0x4010990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010990"] + - [0x4010ac0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010AC0"] + - [0x4010b70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010B70"] + - [0x4010bf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010BF0"] + - [0x4010cc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010CC0"] + - [0x4010d40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010D40"] + - [0x4010de0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010DE0"] + - [0x4010e20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010E20"] + - [0x4010f20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010F20"] + - [0x4010fd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010FD0"] + - [0x4011080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011080"] + - [0x4011100, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011100"] + - [0x4011190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011190"] + - [0x40111d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040111D0"] + - [0x40113c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040113C0"] + - [0x40114e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040114E0"] + - [0x4011540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011540"] + - [0x4011580, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011580"] + - [0x40115e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040115E0"] + - [0x4011620, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011620"] + - [0x40116b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040116B0"] + - [0x4011790, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011790"] + - [0x40117f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040117F0"] + - [0x4011850, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011850"] + - [0x40118f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040118F0"] + - [0x40119d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040119D0"] + - [0x4011b00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011B00"] + - [0x4011b40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011B40"] + - [0x4011c40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011C40"] + - [0x4011cc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011CC0"] + - [0x4011dc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011DC0"] + - [0x4011e70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011E70"] + - [0x4011f80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011F80"] + - [0x4012000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012000"] + - [0x40120b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040120B0"] + - [0x40122a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040122A0"] + - [0x40123c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040123C0"] + - [0x4012400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012400"] + - [0x4012460, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012460"] + - [0x40125e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040125E0"] + - [0x4012640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012640"] + - [0x4012690, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012690"] + - [0x4012750, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012750"] + - [0x40127d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040127D0"] + - [0x4012830, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012830"] + - [0x4012890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012890"] + - [0x4012950, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012950"] + - [0x4012ae0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012AE0"] + - [0x4012ce0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012CE0"] + - [0x4012e90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012E90"] + - [0x4013040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013040"] + - [0x40131c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040131C0"] + - [0x40132b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040132B0"] + - [0x4013340, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013340"] + - [0x4013480, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013480"] + - [0x4013580, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013580"] + - [0x40135d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040135D0"] + - [0x40137d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040137D0"] + - [0x4013860, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013860"] + - [0x4013a10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013A10"] + - [0x4013a90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013A90"] + - [0x4013b50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013B50"] + - [0x4013c50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013C50"] + - [0x4013d70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013D70"] + - [0x4013f70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013F70"] + - [0x4014150, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014150"] + - [0x4014340, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014340"] + - [0x4014530, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014530"] + - [0x4014560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014560"] + - [0x4014760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014760"] + - [0x4014940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014940"] + - [0x40149c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040149C0"] + - [0x4014bc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014BC0"] + - [0x4014bf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014BF0"] + - [0x4014dd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014DD0"] + - [0x4014fb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014FB0"] + - [0x40151a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040151A0"] + - [0x4015230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015230"] + - [0x4015430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015430"] + - [0x4015620, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015620"] + - [0x4015650, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015650"] + - [0x4015830, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015830"] + - [0x4015860, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015860"] + - [0x4015890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015890"] + - [0x4015a70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015A70"] + - [0x4015b60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015B60"] + - [0x4015b90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015B90"] + - [0x4015d80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015D80"] + - [0x4015e50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015E50"] + - [0x4016030, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016030"] + - [0x4016210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016210"] + - [0x40163f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040163F0"] + - [0x40165d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040165D0"] + - [0x40167b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040167B0"] + - [0x4016990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016990"] + - [0x40169c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040169C0"] + - [0x4016ba0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016BA0"] + - [0x4016d90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016D90"] + - [0x4016f70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016F70"] + - [0x4017120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017120"] + - [0x4017300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017300"] + - [0x40173c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040173C0"] + - [0x40175a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040175A0"] + - [0x4017660, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017660"] + - [0x4017840, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017840"] + - [0x40178a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040178A0"] + - [0x4017a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017A80"] + - [0x4017c70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017C70"] + - [0x4017e70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017E70"] + - [0x4018050, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018050"] + - [0x40180e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040180E0"] + - [0x40182c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040182C0"] + - [0x40184a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040184A0"] + - [0x4018680, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018680"] + - [0x40187f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040187F0"] + - [0x40189f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040189F0"] + - [0x4018bd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018BD0"] + - [0x4018ce0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018CE0"] + - [0x4018ec0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018EC0"] + - [0x4018f50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018F50"] + - [0x4019130, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019130"] + - [0x4019280, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019280"] + - [0x4019480, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019480"] + - [0x4019570, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019570"] + - [0x4019750, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019750"] + - [0x4019900, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019900"] + - [0x4019940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019940"] + - [0x4019a00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019A00"] + - [0x4019a60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019A60"] + - [0x4019c40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019C40"] + - [0x4019ca0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019CA0"] + - [0x4019ea0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019EA0"] + - [0x4019f30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019F30"] + - [0x401a110, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A110"] + - [0x401a140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A140"] + - [0x401a340, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A340"] + - [0x401a460, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A460"] + - [0x401a520, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A520"] + - [0x401a720, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A720"] + - [0x401a900, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A900"] + - [0x401aae0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AAE0"] + - [0x401ab70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AB70"] + - [0x401ad70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AD70"] + - [0x401af60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AF60"] + - [0x401b140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B140"] + - [0x401b330, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B330"] + - [0x401b520, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B520"] + - [0x401b640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B640"] + - [0x401b820, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B820"] + - [0x401ba00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BA00"] + - [0x401bbe0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BBE0"] + - [0x401bdc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BDC0"] + - [0x401bf30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BF30"] + - [0x401c130, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C130"] + - [0x401c1f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C1F0"] + - [0x401c3d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C3D0"] + - [0x401c400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C400"] + - [0x401c550, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C550"] + - [0x401c6a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C6A0"] + - [0x401c790, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C790"] + - [0x401c810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C810"] + - [0x401c8b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C8B0"] + - [0x401c8f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C8F0"] + - [0x401c990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C990"] + - [0x401c9d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C9D0"] + - [0x401ca70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CA70"] + - [0x401cab0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CAB0"] + - [0x401cb50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CB50"] + - [0x401cb90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CB90"] + - [0x401cc30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CC30"] + - [0x401cc70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CC70"] + - [0x401cd10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CD10"] + - [0x401cd50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CD50"] + - [0x401cdf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CDF0"] + - [0x401ce30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CE30"] + - [0x401ced0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CED0"] + - [0x401cf10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CF10"] + - [0x401d110, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D110"] + - [0x401d190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D190"] + - [0x401d370, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D370"] + - [0x401d3a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D3A0"] + - [0x401d5a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D5A0"] + - [0x401d620, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D620"] + - [0x401d800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D800"] + - [0x401d830, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D830"] + - [0x401da10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DA10"] + - [0x401dbf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DBF0"] + - [0x401ddd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DDD0"] + - [0x401def0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DEF0"] + - [0x401e0d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E0D0"] + - [0x401e2b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E2B0"] + - [0x401e490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E490"] + - [0x401e4c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E4C0"] + - [0x401e560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E560"] + - [0x401e760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E760"] + - [0x401e930, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E930"] + - [0x401ea60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EA60"] + - [0x401ec60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EC60"] + - [0x401ed20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401ED20"] + - [0x401ee90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EE90"] + - [0x401efe0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EFE0"] + - [0x401f150, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F150"] + - [0x401f290, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F290"] + - [0x401f3d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F3D0"] + - [0x401f450, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F450"] + - [0x401f510, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F510"] + - [0x401f620, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F620"] + - [0x401f810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F810"] + - [0x401f890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F890"] + - [0x401f9a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F9A0"] + - [0x401fb20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FB20"] + - [0x401fd00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FD00"] + - [0x401fde0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FDE0"] + - [0x401ff10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FF10"] + - [0x40200b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040200B0"] + - [0x4020250, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020250"] + - [0x4020370, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020370"] + - [0x40204f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040204F0"] + - [0x4020640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020640"] + - [0x4020780, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020780"] + - [0x40208e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040208E0"] + - [0x4020a00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020A00"] + - [0x4020b40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020B40"] + - [0x4020ce0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020CE0"] + - [0x4020e50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020E50"] + - [0x4020fa0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020FA0"] + - [0x40210d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040210D0"] + - [0x40211e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040211E0"] + - [0x4021300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021300"] + - [0x4021470, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021470"] + - [0x40215a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040215A0"] + - [0x4021630, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021630"] + - [0x40216c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040216C0"] + - [0x4021770, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021770"] + - [0x4021800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021800"] + - [0x40218b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040218B0"] + - [0x40219c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040219C0"] + - [0x4021a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021A80"] + - [0x4021bb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021BB0"] + - [0x4021c40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021C40"] + - [0x4021ca0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021CA0"] + - [0x4021d80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021D80"] + - [0x4021e10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021E10"] + - [0x4021ef0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021EF0"] + - [0x4021fb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021FB0"] + - [0x40220a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040220A0"] + - [0x4022100, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022100"] + - [0x4022190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022190"] + - [0x4022250, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022250"] + - [0x4022450, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022450"] + - [0x4022510, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022510"] + - [0x4022700, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022700"] + - [0x40227c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040227C0"] + - [0x40229c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040229C0"] + - [0x40229f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040229F0"] + - [0x4022bd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022BD0"] + - [0x4022cc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022CC0"] + - [0x4022eb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022EB0"] + - [0x4022f10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022F10"] + - [0x40230f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040230F0"] + - [0x40231f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040231F0"] + - [0x40233d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040233D0"] + - [0x40234b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040234B0"] + - [0x40236b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040236B0"] + - [0x40237e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040237E0"] + - [0x40239d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040239D0"] + - [0x4023ab0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023AB0"] + - [0x4023b30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023B30"] + - [0x4023bf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023BF0"] + - [0x4023c80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023C80"] + - [0x4023d30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023D30"] + - [0x4023db0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023DB0"] + - [0x4023f40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023F40"] + - [0x4023fd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023FD0"] + - [0x4024090, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024090"] + - [0x4024170, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024170"] + - [0x4024230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024230"] + - [0x4024360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024360"] + - [0x4024540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024540"] + - [0x4024720, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024720"] + - [0x4024780, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024780"] + - [0x4024970, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024970"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_koopa_troopa_beach_crab_frames: + range: [0xD828, 0x13828] + mode: APPEND +d_course_koopa_troopa_beach_dl_0: + symbol: d_course_koopa_troopa_beach_dl_0 + type: gfx + offset: 0x0 +d_course_koopa_troopa_beach_dl_48: + symbol: d_course_koopa_troopa_beach_dl_48 + type: gfx + offset: 0x48 +d_course_koopa_troopa_beach_dl_90: + symbol: d_course_koopa_troopa_beach_dl_90 + type: gfx + offset: 0x90 +d_course_koopa_troopa_beach_dl_118: + symbol: d_course_koopa_troopa_beach_dl_118 + type: gfx + offset: 0x118 +d_course_koopa_troopa_beach_dl_188: + symbol: d_course_koopa_troopa_beach_dl_188 + type: gfx + offset: 0x188 +d_course_koopa_troopa_beach_dl_218: + symbol: d_course_koopa_troopa_beach_dl_218 + type: gfx + offset: 0x218 +d_course_koopa_troopa_beach_dl_278: + symbol: d_course_koopa_troopa_beach_dl_278 + type: gfx + offset: 0x278 +d_course_koopa_troopa_beach_dl_328: + symbol: d_course_koopa_troopa_beach_dl_328 + type: gfx + offset: 0x328 +d_course_koopa_troopa_beach_dl_3C0: + symbol: d_course_koopa_troopa_beach_dl_3C0 + type: gfx + offset: 0x3C0 +d_course_koopa_troopa_beach_dl_458: + symbol: d_course_koopa_troopa_beach_dl_458 + type: gfx + offset: 0x458 +d_course_koopa_troopa_beach_dl_4B0: + symbol: d_course_koopa_troopa_beach_dl_4B0 + type: gfx + offset: 0x4B0 +d_course_koopa_troopa_beach_dl_530: + symbol: d_course_koopa_troopa_beach_dl_530 + type: gfx + offset: 0x530 +d_course_koopa_troopa_beach_dl_5A0: + symbol: d_course_koopa_troopa_beach_dl_5A0 + type: gfx + offset: 0x5A0 +d_course_koopa_troopa_beach_dl_658: + symbol: d_course_koopa_troopa_beach_dl_658 + type: gfx + offset: 0x658 +d_course_koopa_troopa_beach_dl_6E0: + symbol: d_course_koopa_troopa_beach_dl_6E0 + type: gfx + offset: 0x6E0 +d_course_koopa_troopa_beach_dl_790: + symbol: d_course_koopa_troopa_beach_dl_790 + type: gfx + offset: 0x790 +d_course_koopa_troopa_beach_dl_828: + symbol: d_course_koopa_troopa_beach_dl_828 + type: gfx + offset: 0x828 +d_course_koopa_troopa_beach_dl_8F0: + symbol: d_course_koopa_troopa_beach_dl_8F0 + type: gfx + offset: 0x8F0 +d_course_koopa_troopa_beach_dl_960: + symbol: d_course_koopa_troopa_beach_dl_960 + type: gfx + offset: 0x960 +d_course_koopa_troopa_beach_dl_9E0: + symbol: d_course_koopa_troopa_beach_dl_9E0 + type: gfx + offset: 0x9E0 +d_course_koopa_troopa_beach_dl_A58: + symbol: d_course_koopa_troopa_beach_dl_A58 + type: gfx + offset: 0xA58 +d_course_koopa_troopa_beach_dl_B10: + symbol: d_course_koopa_troopa_beach_dl_B10 + type: gfx + offset: 0xB10 +d_course_koopa_troopa_beach_dl_B98: + symbol: d_course_koopa_troopa_beach_dl_B98 + type: gfx + offset: 0xB98 +d_course_koopa_troopa_beach_dl_C50: + symbol: d_course_koopa_troopa_beach_dl_C50 + type: gfx + offset: 0xC50 +d_course_koopa_troopa_beach_dl_CF0: + symbol: d_course_koopa_troopa_beach_dl_CF0 + type: gfx + offset: 0xCF0 +d_course_koopa_troopa_beach_dl_DB8: + symbol: d_course_koopa_troopa_beach_dl_DB8 + type: gfx + offset: 0xDB8 +d_course_koopa_troopa_beach_dl_E48: + symbol: d_course_koopa_troopa_beach_dl_E48 + type: gfx + offset: 0xE48 +d_course_koopa_troopa_beach_dl_EE0: + symbol: d_course_koopa_troopa_beach_dl_EE0 + type: gfx + offset: 0xEE0 +d_course_koopa_troopa_beach_dl_F60: + symbol: d_course_koopa_troopa_beach_dl_F60 + type: gfx + offset: 0xF60 +d_course_koopa_troopa_beach_dl_1040: + symbol: d_course_koopa_troopa_beach_dl_1040 + type: gfx + offset: 0x1040 +d_course_koopa_troopa_beach_dl_10D0: + symbol: d_course_koopa_troopa_beach_dl_10D0 + type: gfx + offset: 0x10D0 +d_course_koopa_troopa_beach_dl_1178: + symbol: d_course_koopa_troopa_beach_dl_1178 + type: gfx + offset: 0x1178 +d_course_koopa_troopa_beach_dl_1218: + symbol: d_course_koopa_troopa_beach_dl_1218 + type: gfx + offset: 0x1218 +d_course_koopa_troopa_beach_dl_1310: + symbol: d_course_koopa_troopa_beach_dl_1310 + type: gfx + offset: 0x1310 +d_course_koopa_troopa_beach_dl_13B8: + symbol: d_course_koopa_troopa_beach_dl_13B8 + type: gfx + offset: 0x13B8 +d_course_koopa_troopa_beach_dl_1430: + symbol: d_course_koopa_troopa_beach_dl_1430 + type: gfx + offset: 0x1430 +d_course_koopa_troopa_beach_dl_1498: + symbol: d_course_koopa_troopa_beach_dl_1498 + type: gfx + offset: 0x1498 +d_course_koopa_troopa_beach_dl_1558: + symbol: d_course_koopa_troopa_beach_dl_1558 + type: gfx + offset: 0x1558 +d_course_koopa_troopa_beach_dl_15E0: + symbol: d_course_koopa_troopa_beach_dl_15E0 + type: gfx + offset: 0x15E0 +d_course_koopa_troopa_beach_dl_1680: + symbol: d_course_koopa_troopa_beach_dl_1680 + type: gfx + offset: 0x1680 +d_course_koopa_troopa_beach_dl_1708: + symbol: d_course_koopa_troopa_beach_dl_1708 + type: gfx + offset: 0x1708 +d_course_koopa_troopa_beach_dl_17B0: + symbol: d_course_koopa_troopa_beach_dl_17B0 + type: gfx + offset: 0x17B0 +d_course_koopa_troopa_beach_dl_1818: + symbol: d_course_koopa_troopa_beach_dl_1818 + type: gfx + offset: 0x1818 +d_course_koopa_troopa_beach_dl_1878: + symbol: d_course_koopa_troopa_beach_dl_1878 + type: gfx + offset: 0x1878 +d_course_koopa_troopa_beach_dl_18E0: + symbol: d_course_koopa_troopa_beach_dl_18E0 + type: gfx + offset: 0x18E0 +d_course_koopa_troopa_beach_dl_1940: + symbol: d_course_koopa_troopa_beach_dl_1940 + type: gfx + offset: 0x1940 +d_course_koopa_troopa_beach_dl_1988: + symbol: d_course_koopa_troopa_beach_dl_1988 + type: gfx + offset: 0x1988 +d_course_koopa_troopa_beach_dl_19E8: + symbol: d_course_koopa_troopa_beach_dl_19E8 + type: gfx + offset: 0x19E8 +d_course_koopa_troopa_beach_dl_1A50: + symbol: d_course_koopa_troopa_beach_dl_1A50 + type: gfx + offset: 0x1A50 +d_course_koopa_troopa_beach_dl_1AA8: + symbol: d_course_koopa_troopa_beach_dl_1AA8 + type: gfx + offset: 0x1AA8 +d_course_koopa_troopa_beach_dl_1AD8: + symbol: d_course_koopa_troopa_beach_dl_1AD8 + type: gfx + offset: 0x1AD8 +d_course_koopa_troopa_beach_dl_1B50: + symbol: d_course_koopa_troopa_beach_dl_1B50 + type: gfx + offset: 0x1B50 +d_course_koopa_troopa_beach_dl_1BB8: + symbol: d_course_koopa_troopa_beach_dl_1BB8 + type: gfx + offset: 0x1BB8 +d_course_koopa_troopa_beach_dl_1C00: + symbol: d_course_koopa_troopa_beach_dl_1C00 + type: gfx + offset: 0x1C00 +d_course_koopa_troopa_beach_dl_1C48: + symbol: d_course_koopa_troopa_beach_dl_1C48 + type: gfx + offset: 0x1C48 +d_course_koopa_troopa_beach_dl_1CB0: + symbol: d_course_koopa_troopa_beach_dl_1CB0 + type: gfx + offset: 0x1CB0 +d_course_koopa_troopa_beach_dl_1D20: + symbol: d_course_koopa_troopa_beach_dl_1D20 + type: gfx + offset: 0x1D20 +d_course_koopa_troopa_beach_dl_1D88: + symbol: d_course_koopa_troopa_beach_dl_1D88 + type: gfx + offset: 0x1D88 +d_course_koopa_troopa_beach_dl_1DE0: + symbol: d_course_koopa_troopa_beach_dl_1DE0 + type: gfx + offset: 0x1DE0 +d_course_koopa_troopa_beach_dl_1E40: + symbol: d_course_koopa_troopa_beach_dl_1E40 + type: gfx + offset: 0x1E40 +d_course_koopa_troopa_beach_dl_1EB0: + symbol: d_course_koopa_troopa_beach_dl_1EB0 + type: gfx + offset: 0x1EB0 +d_course_koopa_troopa_beach_dl_1F68: + symbol: d_course_koopa_troopa_beach_dl_1F68 + type: gfx + offset: 0x1F68 +d_course_koopa_troopa_beach_dl_1FE8: + symbol: d_course_koopa_troopa_beach_dl_1FE8 + type: gfx + offset: 0x1FE8 +d_course_koopa_troopa_beach_dl_2058: + symbol: d_course_koopa_troopa_beach_dl_2058 + type: gfx + offset: 0x2058 +d_course_koopa_troopa_beach_dl_20C8: + symbol: d_course_koopa_troopa_beach_dl_20C8 + type: gfx + offset: 0x20C8 +d_course_koopa_troopa_beach_dl_2178: + symbol: d_course_koopa_troopa_beach_dl_2178 + type: gfx + offset: 0x2178 +d_course_koopa_troopa_beach_dl_2200: + symbol: d_course_koopa_troopa_beach_dl_2200 + type: gfx + offset: 0x2200 +d_course_koopa_troopa_beach_dl_2258: + symbol: d_course_koopa_troopa_beach_dl_2258 + type: gfx + offset: 0x2258 +d_course_koopa_troopa_beach_dl_22C8: + symbol: d_course_koopa_troopa_beach_dl_22C8 + type: gfx + offset: 0x22C8 +d_course_koopa_troopa_beach_dl_2390: + symbol: d_course_koopa_troopa_beach_dl_2390 + type: gfx + offset: 0x2390 +d_course_koopa_troopa_beach_dl_2440: + symbol: d_course_koopa_troopa_beach_dl_2440 + type: gfx + offset: 0x2440 +d_course_koopa_troopa_beach_dl_24C0: + symbol: d_course_koopa_troopa_beach_dl_24C0 + type: gfx + offset: 0x24C0 +d_course_koopa_troopa_beach_dl_2540: + symbol: d_course_koopa_troopa_beach_dl_2540 + type: gfx + offset: 0x2540 +d_course_koopa_troopa_beach_dl_25D8: + symbol: d_course_koopa_troopa_beach_dl_25D8 + type: gfx + offset: 0x25D8 +d_course_koopa_troopa_beach_dl_2660: + symbol: d_course_koopa_troopa_beach_dl_2660 + type: gfx + offset: 0x2660 +d_course_koopa_troopa_beach_dl_26E0: + symbol: d_course_koopa_troopa_beach_dl_26E0 + type: gfx + offset: 0x26E0 +d_course_koopa_troopa_beach_dl_2760: + symbol: d_course_koopa_troopa_beach_dl_2760 + type: gfx + offset: 0x2760 +d_course_koopa_troopa_beach_dl_2800: + symbol: d_course_koopa_troopa_beach_dl_2800 + type: gfx + offset: 0x2800 +d_course_koopa_troopa_beach_dl_2898: + symbol: d_course_koopa_troopa_beach_dl_2898 + type: gfx + offset: 0x2898 +d_course_koopa_troopa_beach_dl_2910: + symbol: d_course_koopa_troopa_beach_dl_2910 + type: gfx + offset: 0x2910 +d_course_koopa_troopa_beach_dl_2988: + symbol: d_course_koopa_troopa_beach_dl_2988 + type: gfx + offset: 0x2988 +d_course_koopa_troopa_beach_dl_2A18: + symbol: d_course_koopa_troopa_beach_dl_2A18 + type: gfx + offset: 0x2A18 +d_course_koopa_troopa_beach_dl_2AA0: + symbol: d_course_koopa_troopa_beach_dl_2AA0 + type: gfx + offset: 0x2AA0 +d_course_koopa_troopa_beach_dl_2B08: + symbol: d_course_koopa_troopa_beach_dl_2B08 + type: gfx + offset: 0x2B08 +d_course_koopa_troopa_beach_dl_2B78: + symbol: d_course_koopa_troopa_beach_dl_2B78 + type: gfx + offset: 0x2B78 +d_course_koopa_troopa_beach_dl_2C28: + symbol: d_course_koopa_troopa_beach_dl_2C28 + type: gfx + offset: 0x2C28 +d_course_koopa_troopa_beach_dl_2CC0: + symbol: d_course_koopa_troopa_beach_dl_2CC0 + type: gfx + offset: 0x2CC0 +d_course_koopa_troopa_beach_dl_2D50: + symbol: d_course_koopa_troopa_beach_dl_2D50 + type: gfx + offset: 0x2D50 +d_course_koopa_troopa_beach_dl_2DC0: + symbol: d_course_koopa_troopa_beach_dl_2DC0 + type: gfx + offset: 0x2DC0 +d_course_koopa_troopa_beach_dl_2E38: + symbol: d_course_koopa_troopa_beach_dl_2E38 + type: gfx + offset: 0x2E38 +d_course_koopa_troopa_beach_dl_2EC0: + symbol: d_course_koopa_troopa_beach_dl_2EC0 + type: gfx + offset: 0x2EC0 +d_course_koopa_troopa_beach_dl_2F30: + symbol: d_course_koopa_troopa_beach_dl_2F30 + type: gfx + offset: 0x2F30 +d_course_koopa_troopa_beach_dl_2FB0: + symbol: d_course_koopa_troopa_beach_dl_2FB0 + type: gfx + offset: 0x2FB0 +d_course_koopa_troopa_beach_dl_3050: + symbol: d_course_koopa_troopa_beach_dl_3050 + type: gfx + offset: 0x3050 +d_course_koopa_troopa_beach_dl_30E0: + symbol: d_course_koopa_troopa_beach_dl_30E0 + type: gfx + offset: 0x30E0 +d_course_koopa_troopa_beach_dl_3198: + symbol: d_course_koopa_troopa_beach_dl_3198 + type: gfx + offset: 0x3198 +d_course_koopa_troopa_beach_dl_3218: + symbol: d_course_koopa_troopa_beach_dl_3218 + type: gfx + offset: 0x3218 +d_course_koopa_troopa_beach_dl_3278: + symbol: d_course_koopa_troopa_beach_dl_3278 + type: gfx + offset: 0x3278 +d_course_koopa_troopa_beach_dl_3308: + symbol: d_course_koopa_troopa_beach_dl_3308 + type: gfx + offset: 0x3308 +d_course_koopa_troopa_beach_dl_3370: + symbol: d_course_koopa_troopa_beach_dl_3370 + type: gfx + offset: 0x3370 +d_course_koopa_troopa_beach_dl_33F8: + symbol: d_course_koopa_troopa_beach_dl_33F8 + type: gfx + offset: 0x33F8 +d_course_koopa_troopa_beach_dl_34B8: + symbol: d_course_koopa_troopa_beach_dl_34B8 + type: gfx + offset: 0x34B8 +d_course_koopa_troopa_beach_dl_3550: + symbol: d_course_koopa_troopa_beach_dl_3550 + type: gfx + offset: 0x3550 +d_course_koopa_troopa_beach_dl_3628: + symbol: d_course_koopa_troopa_beach_dl_3628 + type: gfx + offset: 0x3628 +d_course_koopa_troopa_beach_dl_36D8: + symbol: d_course_koopa_troopa_beach_dl_36D8 + type: gfx + offset: 0x36D8 +d_course_koopa_troopa_beach_dl_3730: + symbol: d_course_koopa_troopa_beach_dl_3730 + type: gfx + offset: 0x3730 +d_course_koopa_troopa_beach_dl_37B8: + symbol: d_course_koopa_troopa_beach_dl_37B8 + type: gfx + offset: 0x37B8 +d_course_koopa_troopa_beach_dl_3830: + symbol: d_course_koopa_troopa_beach_dl_3830 + type: gfx + offset: 0x3830 +d_course_koopa_troopa_beach_dl_38A8: + symbol: d_course_koopa_troopa_beach_dl_38A8 + type: gfx + offset: 0x38A8 +d_course_koopa_troopa_beach_dl_3980: + symbol: d_course_koopa_troopa_beach_dl_3980 + type: gfx + offset: 0x3980 +d_course_koopa_troopa_beach_dl_3A10: + symbol: d_course_koopa_troopa_beach_dl_3A10 + type: gfx + offset: 0x3A10 +d_course_koopa_troopa_beach_dl_3B10: + symbol: d_course_koopa_troopa_beach_dl_3B10 + type: gfx + offset: 0x3B10 +d_course_koopa_troopa_beach_dl_3BB8: + symbol: d_course_koopa_troopa_beach_dl_3BB8 + type: gfx + offset: 0x3BB8 +d_course_koopa_troopa_beach_dl_3C28: + symbol: d_course_koopa_troopa_beach_dl_3C28 + type: gfx + offset: 0x3C28 +d_course_koopa_troopa_beach_dl_3CC0: + symbol: d_course_koopa_troopa_beach_dl_3CC0 + type: gfx + offset: 0x3CC0 +d_course_koopa_troopa_beach_dl_3D40: + symbol: d_course_koopa_troopa_beach_dl_3D40 + type: gfx + offset: 0x3D40 +d_course_koopa_troopa_beach_dl_3DC0: + symbol: d_course_koopa_troopa_beach_dl_3DC0 + type: gfx + offset: 0x3DC0 +d_course_koopa_troopa_beach_dl_3EA8: + symbol: d_course_koopa_troopa_beach_dl_3EA8 + type: gfx + offset: 0x3EA8 +d_course_koopa_troopa_beach_dl_3F20: + symbol: d_course_koopa_troopa_beach_dl_3F20 + type: gfx + offset: 0x3F20 +d_course_koopa_troopa_beach_dl_4028: + symbol: d_course_koopa_troopa_beach_dl_4028 + type: gfx + offset: 0x4028 +d_course_koopa_troopa_beach_dl_40C0: + symbol: d_course_koopa_troopa_beach_dl_40C0 + type: gfx + offset: 0x40C0 +d_course_koopa_troopa_beach_dl_4138: + symbol: d_course_koopa_troopa_beach_dl_4138 + type: gfx + offset: 0x4138 +d_course_koopa_troopa_beach_dl_41D0: + symbol: d_course_koopa_troopa_beach_dl_41D0 + type: gfx + offset: 0x41D0 +d_course_koopa_troopa_beach_dl_4260: + symbol: d_course_koopa_troopa_beach_dl_4260 + type: gfx + offset: 0x4260 +d_course_koopa_troopa_beach_dl_42D8: + symbol: d_course_koopa_troopa_beach_dl_42D8 + type: gfx + offset: 0x42D8 +d_course_koopa_troopa_beach_dl_43C0: + symbol: d_course_koopa_troopa_beach_dl_43C0 + type: gfx + offset: 0x43C0 +d_course_koopa_troopa_beach_dl_4450: + symbol: d_course_koopa_troopa_beach_dl_4450 + type: gfx + offset: 0x4450 +d_course_koopa_troopa_beach_dl_4548: + symbol: d_course_koopa_troopa_beach_dl_4548 + type: gfx + offset: 0x4548 +d_course_koopa_troopa_beach_dl_45D0: + symbol: d_course_koopa_troopa_beach_dl_45D0 + type: gfx + offset: 0x45D0 +d_course_koopa_troopa_beach_dl_4670: + symbol: d_course_koopa_troopa_beach_dl_4670 + type: gfx + offset: 0x4670 +d_course_koopa_troopa_beach_dl_4700: + symbol: d_course_koopa_troopa_beach_dl_4700 + type: gfx + offset: 0x4700 +d_course_koopa_troopa_beach_dl_47C0: + symbol: d_course_koopa_troopa_beach_dl_47C0 + type: gfx + offset: 0x47C0 +d_course_koopa_troopa_beach_dl_4840: + symbol: d_course_koopa_troopa_beach_dl_4840 + type: gfx + offset: 0x4840 +d_course_koopa_troopa_beach_dl_4948: + symbol: d_course_koopa_troopa_beach_dl_4948 + type: gfx + offset: 0x4948 +d_course_koopa_troopa_beach_dl_49F0: + symbol: d_course_koopa_troopa_beach_dl_49F0 + type: gfx + offset: 0x49F0 +d_course_koopa_troopa_beach_dl_4B28: + symbol: d_course_koopa_troopa_beach_dl_4B28 + type: gfx + offset: 0x4B28 +d_course_koopa_troopa_beach_dl_4BC8: + symbol: d_course_koopa_troopa_beach_dl_4BC8 + type: gfx + offset: 0x4BC8 +d_course_koopa_troopa_beach_dl_4C70: + symbol: d_course_koopa_troopa_beach_dl_4C70 + type: gfx + offset: 0x4C70 +d_course_koopa_troopa_beach_dl_4D08: + symbol: d_course_koopa_troopa_beach_dl_4D08 + type: gfx + offset: 0x4D08 +d_course_koopa_troopa_beach_dl_4DC0: + symbol: d_course_koopa_troopa_beach_dl_4DC0 + type: gfx + offset: 0x4DC0 +d_course_koopa_troopa_beach_dl_4E70: + symbol: d_course_koopa_troopa_beach_dl_4E70 + type: gfx + offset: 0x4E70 +d_course_koopa_troopa_beach_dl_4F58: + symbol: d_course_koopa_troopa_beach_dl_4F58 + type: gfx + offset: 0x4F58 +d_course_koopa_troopa_beach_dl_4FF8: + symbol: d_course_koopa_troopa_beach_dl_4FF8 + type: gfx + offset: 0x4FF8 +d_course_koopa_troopa_beach_dl_5120: + symbol: d_course_koopa_troopa_beach_dl_5120 + type: gfx + offset: 0x5120 +d_course_koopa_troopa_beach_dl_51C8: + symbol: d_course_koopa_troopa_beach_dl_51C8 + type: gfx + offset: 0x51C8 +d_course_koopa_troopa_beach_dl_5248: + symbol: d_course_koopa_troopa_beach_dl_5248 + type: gfx + offset: 0x5248 +d_course_koopa_troopa_beach_dl_52D8: + symbol: d_course_koopa_troopa_beach_dl_52D8 + type: gfx + offset: 0x52D8 +d_course_koopa_troopa_beach_dl_5358: + symbol: d_course_koopa_troopa_beach_dl_5358 + type: gfx + offset: 0x5358 +d_course_koopa_troopa_beach_dl_53B8: + symbol: d_course_koopa_troopa_beach_dl_53B8 + type: gfx + offset: 0x53B8 +d_course_koopa_troopa_beach_dl_5480: + symbol: d_course_koopa_troopa_beach_dl_5480 + type: gfx + offset: 0x5480 +d_course_koopa_troopa_beach_dl_5500: + symbol: d_course_koopa_troopa_beach_dl_5500 + type: gfx + offset: 0x5500 +d_course_koopa_troopa_beach_dl_55D0: + symbol: d_course_koopa_troopa_beach_dl_55D0 + type: gfx + offset: 0x55D0 +d_course_koopa_troopa_beach_dl_5628: + symbol: d_course_koopa_troopa_beach_dl_5628 + type: gfx + offset: 0x5628 +d_course_koopa_troopa_beach_dl_56D0: + symbol: d_course_koopa_troopa_beach_dl_56D0 + type: gfx + offset: 0x56D0 +d_course_koopa_troopa_beach_dl_5778: + symbol: d_course_koopa_troopa_beach_dl_5778 + type: gfx + offset: 0x5778 +d_course_koopa_troopa_beach_dl_5840: + symbol: d_course_koopa_troopa_beach_dl_5840 + type: gfx + offset: 0x5840 +d_course_koopa_troopa_beach_dl_58E0: + symbol: d_course_koopa_troopa_beach_dl_58E0 + type: gfx + offset: 0x58E0 +d_course_koopa_troopa_beach_dl_59C8: + symbol: d_course_koopa_troopa_beach_dl_59C8 + type: gfx + offset: 0x59C8 +d_course_koopa_troopa_beach_dl_5A50: + symbol: d_course_koopa_troopa_beach_dl_5A50 + type: gfx + offset: 0x5A50 +d_course_koopa_troopa_beach_dl_5B48: + symbol: d_course_koopa_troopa_beach_dl_5B48 + type: gfx + offset: 0x5B48 +d_course_koopa_troopa_beach_dl_5BB8: + symbol: d_course_koopa_troopa_beach_dl_5BB8 + type: gfx + offset: 0x5BB8 +d_course_koopa_troopa_beach_dl_5C88: + symbol: d_course_koopa_troopa_beach_dl_5C88 + type: gfx + offset: 0x5C88 +d_course_koopa_troopa_beach_dl_5D28: + symbol: d_course_koopa_troopa_beach_dl_5D28 + type: gfx + offset: 0x5D28 +d_course_koopa_troopa_beach_dl_5DB8: + symbol: d_course_koopa_troopa_beach_dl_5DB8 + type: gfx + offset: 0x5DB8 +d_course_koopa_troopa_beach_dl_5E28: + symbol: d_course_koopa_troopa_beach_dl_5E28 + type: gfx + offset: 0x5E28 +d_course_koopa_troopa_beach_dl_5EE0: + symbol: d_course_koopa_troopa_beach_dl_5EE0 + type: gfx + offset: 0x5EE0 +d_course_koopa_troopa_beach_dl_5F58: + symbol: d_course_koopa_troopa_beach_dl_5F58 + type: gfx + offset: 0x5F58 +d_course_koopa_troopa_beach_dl_6000: + symbol: d_course_koopa_troopa_beach_dl_6000 + type: gfx + offset: 0x6000 +d_course_koopa_troopa_beach_dl_6050: + symbol: d_course_koopa_troopa_beach_dl_6050 + type: gfx + offset: 0x6050 +d_course_koopa_troopa_beach_dl_6128: + symbol: d_course_koopa_troopa_beach_dl_6128 + type: gfx + offset: 0x6128 +d_course_koopa_troopa_beach_dl_61D0: + symbol: d_course_koopa_troopa_beach_dl_61D0 + type: gfx + offset: 0x61D0 +d_course_koopa_troopa_beach_dl_6268: + symbol: d_course_koopa_troopa_beach_dl_6268 + type: gfx + offset: 0x6268 +d_course_koopa_troopa_beach_dl_62F8: + symbol: d_course_koopa_troopa_beach_dl_62F8 + type: gfx + offset: 0x62F8 +d_course_koopa_troopa_beach_dl_6398: + symbol: d_course_koopa_troopa_beach_dl_6398 + type: gfx + offset: 0x6398 +d_course_koopa_troopa_beach_dl_6410: + symbol: d_course_koopa_troopa_beach_dl_6410 + type: gfx + offset: 0x6410 +d_course_koopa_troopa_beach_dl_6498: + symbol: d_course_koopa_troopa_beach_dl_6498 + type: gfx + offset: 0x6498 +d_course_koopa_troopa_beach_dl_64F0: + symbol: d_course_koopa_troopa_beach_dl_64F0 + type: gfx + offset: 0x64F0 +d_course_koopa_troopa_beach_dl_65B8: + symbol: d_course_koopa_troopa_beach_dl_65B8 + type: gfx + offset: 0x65B8 +d_course_koopa_troopa_beach_dl_6660: + symbol: d_course_koopa_troopa_beach_dl_6660 + type: gfx + offset: 0x6660 +d_course_koopa_troopa_beach_dl_6718: + symbol: d_course_koopa_troopa_beach_dl_6718 + type: gfx + offset: 0x6718 +d_course_koopa_troopa_beach_dl_67A0: + symbol: d_course_koopa_troopa_beach_dl_67A0 + type: gfx + offset: 0x67A0 +d_course_koopa_troopa_beach_dl_6830: + symbol: d_course_koopa_troopa_beach_dl_6830 + type: gfx + offset: 0x6830 +d_course_koopa_troopa_beach_dl_6898: + symbol: d_course_koopa_troopa_beach_dl_6898 + type: gfx + offset: 0x6898 +d_course_koopa_troopa_beach_dl_6918: + symbol: d_course_koopa_troopa_beach_dl_6918 + type: gfx + offset: 0x6918 +d_course_koopa_troopa_beach_dl_6968: + symbol: d_course_koopa_troopa_beach_dl_6968 + type: gfx + offset: 0x6968 +d_course_koopa_troopa_beach_dl_6A28: + symbol: d_course_koopa_troopa_beach_dl_6A28 + type: gfx + offset: 0x6A28 +d_course_koopa_troopa_beach_dl_6AC0: + symbol: d_course_koopa_troopa_beach_dl_6AC0 + type: gfx + offset: 0x6AC0 +d_course_koopa_troopa_beach_dl_6B88: + symbol: d_course_koopa_troopa_beach_dl_6B88 + type: gfx + offset: 0x6B88 +d_course_koopa_troopa_beach_dl_6C18: + symbol: d_course_koopa_troopa_beach_dl_6C18 + type: gfx + offset: 0x6C18 +d_course_koopa_troopa_beach_dl_6CA0: + symbol: d_course_koopa_troopa_beach_dl_6CA0 + type: gfx + offset: 0x6CA0 +d_course_koopa_troopa_beach_dl_6D10: + symbol: d_course_koopa_troopa_beach_dl_6D10 + type: gfx + offset: 0x6D10 +d_course_koopa_troopa_beach_dl_6DB8: + symbol: d_course_koopa_troopa_beach_dl_6DB8 + type: gfx + offset: 0x6DB8 +d_course_koopa_troopa_beach_dl_6E18: + symbol: d_course_koopa_troopa_beach_dl_6E18 + type: gfx + offset: 0x6E18 +d_course_koopa_troopa_beach_dl_6ED0: + symbol: d_course_koopa_troopa_beach_dl_6ED0 + type: gfx + offset: 0x6ED0 +d_course_koopa_troopa_beach_dl_6F70: + symbol: d_course_koopa_troopa_beach_dl_6F70 + type: gfx + offset: 0x6F70 +d_course_koopa_troopa_beach_dl_7060: + symbol: d_course_koopa_troopa_beach_dl_7060 + type: gfx + offset: 0x7060 +d_course_koopa_troopa_beach_dl_7100: + symbol: d_course_koopa_troopa_beach_dl_7100 + type: gfx + offset: 0x7100 +d_course_koopa_troopa_beach_dl_7168: + symbol: d_course_koopa_troopa_beach_dl_7168 + type: gfx + offset: 0x7168 +d_course_koopa_troopa_beach_dl_71C8: + symbol: d_course_koopa_troopa_beach_dl_71C8 + type: gfx + offset: 0x71C8 +d_course_koopa_troopa_beach_dl_72B0: + symbol: d_course_koopa_troopa_beach_dl_72B0 + type: gfx + offset: 0x72B0 +d_course_koopa_troopa_beach_dl_7338: + symbol: d_course_koopa_troopa_beach_dl_7338 + type: gfx + offset: 0x7338 +d_course_koopa_troopa_beach_dl_73F8: + symbol: d_course_koopa_troopa_beach_dl_73F8 + type: gfx + offset: 0x73F8 +d_course_koopa_troopa_beach_dl_7478: + symbol: d_course_koopa_troopa_beach_dl_7478 + type: gfx + offset: 0x7478 +d_course_koopa_troopa_beach_dl_75A0: + symbol: d_course_koopa_troopa_beach_dl_75A0 + type: gfx + offset: 0x75A0 +d_course_koopa_troopa_beach_dl_7640: + symbol: d_course_koopa_troopa_beach_dl_7640 + type: gfx + offset: 0x7640 +d_course_koopa_troopa_beach_dl_76A8: + symbol: d_course_koopa_troopa_beach_dl_76A8 + type: gfx + offset: 0x76A8 +d_course_koopa_troopa_beach_dl_7718: + symbol: d_course_koopa_troopa_beach_dl_7718 + type: gfx + offset: 0x7718 +d_course_koopa_troopa_beach_dl_7840: + symbol: d_course_koopa_troopa_beach_dl_7840 + type: gfx + offset: 0x7840 +d_course_koopa_troopa_beach_dl_78E8: + symbol: d_course_koopa_troopa_beach_dl_78E8 + type: gfx + offset: 0x78E8 +d_course_koopa_troopa_beach_dl_7978: + symbol: d_course_koopa_troopa_beach_dl_7978 + type: gfx + offset: 0x7978 +d_course_koopa_troopa_beach_dl_79E8: + symbol: d_course_koopa_troopa_beach_dl_79E8 + type: gfx + offset: 0x79E8 +d_course_koopa_troopa_beach_dl_7AE0: + symbol: d_course_koopa_troopa_beach_dl_7AE0 + type: gfx + offset: 0x7AE0 +d_course_koopa_troopa_beach_dl_7B50: + symbol: d_course_koopa_troopa_beach_dl_7B50 + type: gfx + offset: 0x7B50 +d_course_koopa_troopa_beach_dl_7BA0: + symbol: d_course_koopa_troopa_beach_dl_7BA0 + type: gfx + offset: 0x7BA0 +d_course_koopa_troopa_beach_dl_7C08: + symbol: d_course_koopa_troopa_beach_dl_7C08 + type: gfx + offset: 0x7C08 +d_course_koopa_troopa_beach_dl_7CE0: + symbol: d_course_koopa_troopa_beach_dl_7CE0 + type: gfx + offset: 0x7CE0 +d_course_koopa_troopa_beach_dl_7D58: + symbol: d_course_koopa_troopa_beach_dl_7D58 + type: gfx + offset: 0x7D58 +d_course_koopa_troopa_beach_dl_7DD0: + symbol: d_course_koopa_troopa_beach_dl_7DD0 + type: gfx + offset: 0x7DD0 +d_course_koopa_troopa_beach_dl_7E38: + symbol: d_course_koopa_troopa_beach_dl_7E38 + type: gfx + offset: 0x7E38 +d_course_koopa_troopa_beach_dl_7EE0: + symbol: d_course_koopa_troopa_beach_dl_7EE0 + type: gfx + offset: 0x7EE0 +d_course_koopa_troopa_beach_dl_7F68: + symbol: d_course_koopa_troopa_beach_dl_7F68 + type: gfx + offset: 0x7F68 +d_course_koopa_troopa_beach_dl_7FC8: + symbol: d_course_koopa_troopa_beach_dl_7FC8 + type: gfx + offset: 0x7FC8 +d_course_koopa_troopa_beach_dl_8048: + symbol: d_course_koopa_troopa_beach_dl_8048 + type: gfx + offset: 0x8048 +d_course_koopa_troopa_beach_dl_80E0: + symbol: d_course_koopa_troopa_beach_dl_80E0 + type: gfx + offset: 0x80E0 +d_course_koopa_troopa_beach_dl_8150: + symbol: d_course_koopa_troopa_beach_dl_8150 + type: gfx + offset: 0x8150 +d_course_koopa_troopa_beach_dl_81B8: + symbol: d_course_koopa_troopa_beach_dl_81B8 + type: gfx + offset: 0x81B8 +d_course_koopa_troopa_beach_dl_8228: + symbol: d_course_koopa_troopa_beach_dl_8228 + type: gfx + offset: 0x8228 +d_course_koopa_troopa_beach_dl_82D8: + symbol: d_course_koopa_troopa_beach_dl_82D8 + type: gfx + offset: 0x82D8 +d_course_koopa_troopa_beach_dl_8368: + symbol: d_course_koopa_troopa_beach_dl_8368 + type: gfx + offset: 0x8368 +d_course_koopa_troopa_beach_dl_83D0: + symbol: d_course_koopa_troopa_beach_dl_83D0 + type: gfx + offset: 0x83D0 +d_course_koopa_troopa_beach_dl_8448: + symbol: d_course_koopa_troopa_beach_dl_8448 + type: gfx + offset: 0x8448 +d_course_koopa_troopa_beach_dl_84D0: + symbol: d_course_koopa_troopa_beach_dl_84D0 + type: gfx + offset: 0x84D0 +d_course_koopa_troopa_beach_dl_8550: + symbol: d_course_koopa_troopa_beach_dl_8550 + type: gfx + offset: 0x8550 +d_course_koopa_troopa_beach_dl_85E8: + symbol: d_course_koopa_troopa_beach_dl_85E8 + type: gfx + offset: 0x85E8 +d_course_koopa_troopa_beach_dl_8650: + symbol: d_course_koopa_troopa_beach_dl_8650 + type: gfx + offset: 0x8650 +d_course_koopa_troopa_beach_dl_8710: + symbol: d_course_koopa_troopa_beach_dl_8710 + type: gfx + offset: 0x8710 +d_course_koopa_troopa_beach_dl_8790: + symbol: d_course_koopa_troopa_beach_dl_8790 + type: gfx + offset: 0x8790 +d_course_koopa_troopa_beach_dl_8800: + symbol: d_course_koopa_troopa_beach_dl_8800 + type: gfx + offset: 0x8800 +d_course_koopa_troopa_beach_dl_8878: + symbol: d_course_koopa_troopa_beach_dl_8878 + type: gfx + offset: 0x8878 +d_course_koopa_troopa_beach_dl_88F0: + symbol: d_course_koopa_troopa_beach_dl_88F0 + type: gfx + offset: 0x88F0 +d_course_koopa_troopa_beach_dl_8958: + symbol: d_course_koopa_troopa_beach_dl_8958 + type: gfx + offset: 0x8958 +d_course_koopa_troopa_beach_dl_8A20: + symbol: d_course_koopa_troopa_beach_dl_8A20 + type: gfx + offset: 0x8A20 +d_course_koopa_troopa_beach_dl_8A98: + symbol: d_course_koopa_troopa_beach_dl_8A98 + type: gfx + offset: 0x8A98 +d_course_koopa_troopa_beach_dl_8BB0: + symbol: d_course_koopa_troopa_beach_dl_8BB0 + type: gfx + offset: 0x8BB0 +d_course_koopa_troopa_beach_dl_8C48: + symbol: d_course_koopa_troopa_beach_dl_8C48 + type: gfx + offset: 0x8C48 +d_course_koopa_troopa_beach_dl_8CC8: + symbol: d_course_koopa_troopa_beach_dl_8CC8 + type: gfx + offset: 0x8CC8 +d_course_koopa_troopa_beach_dl_8D48: + symbol: d_course_koopa_troopa_beach_dl_8D48 + type: gfx + offset: 0x8D48 +d_course_koopa_troopa_beach_dl_8DC0: + symbol: d_course_koopa_troopa_beach_dl_8DC0 + type: gfx + offset: 0x8DC0 +d_course_koopa_troopa_beach_dl_8E30: + symbol: d_course_koopa_troopa_beach_dl_8E30 + type: gfx + offset: 0x8E30 +d_course_koopa_troopa_beach_dl_8F50: + symbol: d_course_koopa_troopa_beach_dl_8F50 + type: gfx + offset: 0x8F50 +d_course_koopa_troopa_beach_dl_9008: + symbol: d_course_koopa_troopa_beach_dl_9008 + type: gfx + offset: 0x9008 +d_course_koopa_troopa_beach_dl_90F0: + symbol: d_course_koopa_troopa_beach_dl_90F0 + type: gfx + offset: 0x90F0 +d_course_koopa_troopa_beach_dl_9188: + symbol: d_course_koopa_troopa_beach_dl_9188 + type: gfx + offset: 0x9188 +d_course_koopa_troopa_beach_dl_9210: + symbol: d_course_koopa_troopa_beach_dl_9210 + type: gfx + offset: 0x9210 +d_course_koopa_troopa_beach_dl_9288: + symbol: d_course_koopa_troopa_beach_dl_9288 + type: gfx + offset: 0x9288 +d_course_koopa_troopa_beach_dl_92E8: + symbol: d_course_koopa_troopa_beach_dl_92E8 + type: gfx + offset: 0x92E8 +d_course_koopa_troopa_beach_dl_9378: + symbol: d_course_koopa_troopa_beach_dl_9378 + type: gfx + offset: 0x9378 +d_course_koopa_troopa_beach_dl_9498: + symbol: d_course_koopa_troopa_beach_dl_9498 + type: gfx + offset: 0x9498 +d_course_koopa_troopa_beach_dl_9548: + symbol: d_course_koopa_troopa_beach_dl_9548 + type: gfx + offset: 0x9548 +d_course_koopa_troopa_beach_dl_9618: + symbol: d_course_koopa_troopa_beach_dl_9618 + type: gfx + offset: 0x9618 +d_course_koopa_troopa_beach_dl_96A0: + symbol: d_course_koopa_troopa_beach_dl_96A0 + type: gfx + offset: 0x96A0 +d_course_koopa_troopa_beach_dl_9720: + symbol: d_course_koopa_troopa_beach_dl_9720 + type: gfx + offset: 0x9720 +d_course_koopa_troopa_beach_dl_9798: + symbol: d_course_koopa_troopa_beach_dl_9798 + type: gfx + offset: 0x9798 +d_course_koopa_troopa_beach_dl_9818: + symbol: d_course_koopa_troopa_beach_dl_9818 + type: gfx + offset: 0x9818 +d_course_koopa_troopa_beach_dl_98A0: + symbol: d_course_koopa_troopa_beach_dl_98A0 + type: gfx + offset: 0x98A0 +d_course_koopa_troopa_beach_dl_99A0: + symbol: d_course_koopa_troopa_beach_dl_99A0 + type: gfx + offset: 0x99A0 +d_course_koopa_troopa_beach_dl_9A30: + symbol: d_course_koopa_troopa_beach_dl_9A30 + type: gfx + offset: 0x9A30 +d_course_koopa_troopa_beach_dl_9AE0: + symbol: d_course_koopa_troopa_beach_dl_9AE0 + type: gfx + offset: 0x9AE0 +d_course_koopa_troopa_beach_dl_9B58: + symbol: d_course_koopa_troopa_beach_dl_9B58 + type: gfx + offset: 0x9B58 +d_course_koopa_troopa_beach_dl_9BC8: + symbol: d_course_koopa_troopa_beach_dl_9BC8 + type: gfx + offset: 0x9BC8 +d_course_koopa_troopa_beach_dl_9C38: + symbol: d_course_koopa_troopa_beach_dl_9C38 + type: gfx + offset: 0x9C38 +d_course_koopa_troopa_beach_dl_9D00: + symbol: d_course_koopa_troopa_beach_dl_9D00 + type: gfx + offset: 0x9D00 +d_course_koopa_troopa_beach_dl_9D98: + symbol: d_course_koopa_troopa_beach_dl_9D98 + type: gfx + offset: 0x9D98 +d_course_koopa_troopa_beach_dl_9E60: + symbol: d_course_koopa_troopa_beach_dl_9E60 + type: gfx + offset: 0x9E60 +d_course_koopa_troopa_beach_dl_9ED8: + symbol: d_course_koopa_troopa_beach_dl_9ED8 + type: gfx + offset: 0x9ED8 +d_course_koopa_troopa_beach_dl_9F78: + symbol: d_course_koopa_troopa_beach_dl_9F78 + type: gfx + offset: 0x9F78 +d_course_koopa_troopa_beach_dl_9FE8: + symbol: d_course_koopa_troopa_beach_dl_9FE8 + type: gfx + offset: 0x9FE8 +d_course_koopa_troopa_beach_dl_A070: + symbol: d_course_koopa_troopa_beach_dl_A070 + type: gfx + offset: 0xA070 +d_course_koopa_troopa_beach_dl_A0D0: + symbol: d_course_koopa_troopa_beach_dl_A0D0 + type: gfx + offset: 0xA0D0 +d_course_koopa_troopa_beach_dl_A190: + symbol: d_course_koopa_troopa_beach_dl_A190 + type: gfx + offset: 0xA190 +d_course_koopa_troopa_beach_dl_A220: + symbol: d_course_koopa_troopa_beach_dl_A220 + type: gfx + offset: 0xA220 +d_course_koopa_troopa_beach_dl_A2E8: + symbol: d_course_koopa_troopa_beach_dl_A2E8 + type: gfx + offset: 0xA2E8 +d_course_koopa_troopa_beach_dl_A340: + symbol: d_course_koopa_troopa_beach_dl_A340 + type: gfx + offset: 0xA340 +d_course_koopa_troopa_beach_dl_A428: + symbol: d_course_koopa_troopa_beach_dl_A428 + type: gfx + offset: 0xA428 +d_course_koopa_troopa_beach_dl_A4D8: + symbol: d_course_koopa_troopa_beach_dl_A4D8 + type: gfx + offset: 0xA4D8 +d_course_koopa_troopa_beach_dl_A578: + symbol: d_course_koopa_troopa_beach_dl_A578 + type: gfx + offset: 0xA578 +d_course_koopa_troopa_beach_dl_A608: + symbol: d_course_koopa_troopa_beach_dl_A608 + type: gfx + offset: 0xA608 +d_course_koopa_troopa_beach_dl_A6F0: + symbol: d_course_koopa_troopa_beach_dl_A6F0 + type: gfx + offset: 0xA6F0 +d_course_koopa_troopa_beach_dl_A780: + symbol: d_course_koopa_troopa_beach_dl_A780 + type: gfx + offset: 0xA780 +d_course_koopa_troopa_beach_dl_A828: + symbol: d_course_koopa_troopa_beach_dl_A828 + type: gfx + offset: 0xA828 +d_course_koopa_troopa_beach_dl_A8D0: + symbol: d_course_koopa_troopa_beach_dl_A8D0 + type: gfx + offset: 0xA8D0 +d_course_koopa_troopa_beach_dl_A9A0: + symbol: d_course_koopa_troopa_beach_dl_A9A0 + type: gfx + offset: 0xA9A0 +d_course_koopa_troopa_beach_dl_AA38: + symbol: d_course_koopa_troopa_beach_dl_AA38 + type: gfx + offset: 0xAA38 +d_course_koopa_troopa_beach_dl_AAE8: + symbol: d_course_koopa_troopa_beach_dl_AAE8 + type: gfx + offset: 0xAAE8 +d_course_koopa_troopa_beach_dl_AB88: + symbol: d_course_koopa_troopa_beach_dl_AB88 + type: gfx + offset: 0xAB88 +d_course_koopa_troopa_beach_dl_AC10: + symbol: d_course_koopa_troopa_beach_dl_AC10 + type: gfx + offset: 0xAC10 +d_course_koopa_troopa_beach_dl_AC68: + symbol: d_course_koopa_troopa_beach_dl_AC68 + type: gfx + offset: 0xAC68 +d_course_koopa_troopa_beach_dl_AD40: + symbol: d_course_koopa_troopa_beach_dl_AD40 + type: gfx + offset: 0xAD40 +d_course_koopa_troopa_beach_bird_model: + symbol: d_course_koopa_troopa_beach_bird_model + type: vtx + offset: 0x16400 + count: 3 +d_course_koopa_troopa_beach_unknown_model1: + symbol: d_course_koopa_troopa_beach_unknown_model1 + type: vtx + offset: 0x16430 + count: 10 +d_course_koopa_troopa_beach_unknown_model2: + symbol: d_course_koopa_troopa_beach_unknown_model2 + type: vtx + offset: 0x164D0 + count: 14 +d_course_koopa_troopa_beach_unknown_model3: + symbol: d_course_koopa_troopa_beach_unknown_model3 + type: vtx + offset: 0x165B0 + count: 8 +d_course_koopa_troopa_beach_dl_16630: + symbol: d_course_koopa_troopa_beach_dl_16630 + type: gfx + offset: 0x16630 +d_course_koopa_troopa_beach_bird_wing_model: + symbol: d_course_koopa_troopa_beach_bird_wing_model + type: vtx + offset: 0x167D0 + count: 8 +d_course_koopa_troopa_beach_dl_16850: + symbol: d_course_koopa_troopa_beach_dl_16850 + type: gfx + offset: 0x16850 +d_course_koopa_troopa_beach_bird_wing_2_model: + symbol: d_course_koopa_troopa_beach_bird_wing_2_model + type: vtx + offset: 0x16870 + count: 8 +d_course_koopa_troopa_beach_dl_168F0: + symbol: d_course_koopa_troopa_beach_dl_168F0 + type: gfx + offset: 0x168F0 +d_course_koopa_troopa_beach_bird_wing_3_model: + symbol: d_course_koopa_troopa_beach_bird_wing_3_model + type: vtx + offset: 0x16910 + count: 8 +d_course_koopa_troopa_beach_dl_16990: + symbol: d_course_koopa_troopa_beach_dl_16990 + type: gfx + offset: 0x16990 +d_course_koopa_troopa_beach_tree_model: + symbol: d_course_koopa_troopa_beach_tree_model + type: vtx + offset: 0x16B90 + count: 9 +d_course_koopa_troopa_beach_unknown_model4: + symbol: d_course_koopa_troopa_beach_unknown_model4 + type: vtx + offset: 0x16C20 + count: 16 +d_course_koopa_troopa_beach_dl_18520: + symbol: d_course_koopa_troopa_beach_dl_18520 + type: gfx + offset: 0x18520 +d_course_koopa_troopa_beach_dl_185E8: + symbol: d_course_koopa_troopa_beach_dl_185E8 + type: gfx + offset: 0x185E8 +d_course_koopa_troopa_beach_dl_tree_top1: + symbol: d_course_koopa_troopa_beach_dl_tree_top1 + type: gfx + offset: 0x185F8 +d_course_koopa_troopa_beach_dl_18608: + symbol: d_course_koopa_troopa_beach_dl_18608 + type: gfx + offset: 0x18608 +d_course_koopa_troopa_beach_dl_186A8: + symbol: d_course_koopa_troopa_beach_dl_186A8 + type: gfx + offset: 0x186A8 +d_course_koopa_troopa_beach_dl_tree_trunk1: + symbol: d_course_koopa_troopa_beach_dl_tree_trunk1 + type: gfx + offset: 0x186B8 +d_course_koopa_troopa_beach_tree_2_model: + symbol: d_course_koopa_troopa_beach_tree_2_model + type: vtx + offset: 0x186C8 + count: 9 +d_course_koopa_troopa_beach_unknown_model5: + symbol: d_course_koopa_troopa_beach_unknown_model5 + type: vtx + offset: 0x18758 + count: 16 +d_course_koopa_troopa_beach_dl_18870: + symbol: d_course_koopa_troopa_beach_dl_18870 + type: gfx + offset: 0x18870 +d_course_koopa_troopa_beach_dl_18938: + symbol: d_course_koopa_troopa_beach_dl_18938 + type: gfx + offset: 0x18938 +d_course_koopa_troopa_beach_dl_tree_top2: + symbol: d_course_koopa_troopa_beach_dl_tree_top2 + type: gfx + offset: 0x18948 +d_course_koopa_troopa_beach_dl_18958: + symbol: d_course_koopa_troopa_beach_dl_18958 + type: gfx + offset: 0x18958 +d_course_koopa_troopa_beach_dl_189F8: + symbol: d_course_koopa_troopa_beach_dl_189F8 + type: gfx + offset: 0x189F8 +d_course_koopa_troopa_beach_dl_tree_trunk2: + symbol: d_course_koopa_troopa_beach_dl_tree_trunk2 + type: gfx + offset: 0x18A08 +d_course_koopa_troopa_beach_tree_3_model: + symbol: d_course_koopa_troopa_beach_tree_3_model + type: vtx + offset: 0x18A18 + count: 9 +d_course_koopa_troopa_beach_unknown_model6: + symbol: d_course_koopa_troopa_beach_unknown_model6 + type: vtx + offset: 0x18AA8 + count: 16 +d_course_koopa_troopa_beach_dl_18BC0: + symbol: d_course_koopa_troopa_beach_dl_18BC0 + type: gfx + offset: 0x18BC0 +d_course_koopa_troopa_beach_dl_18C88: + symbol: d_course_koopa_troopa_beach_dl_18C88 + type: gfx + offset: 0x18C88 +d_course_koopa_troopa_beach_dl_tree_top3: + symbol: d_course_koopa_troopa_beach_dl_tree_top3 + type: gfx + offset: 0x18C98 +d_course_koopa_troopa_beach_dl_18CA8: + symbol: d_course_koopa_troopa_beach_dl_18CA8 + type: gfx + offset: 0x18CA8 +d_course_koopa_troopa_beach_dl_18D48: + symbol: d_course_koopa_troopa_beach_dl_18D48 + type: gfx + offset: 0x18D48 +d_course_koopa_troopa_beach_dl_tree_trunk3: + symbol: d_course_koopa_troopa_beach_dl_tree_trunk3 + type: gfx + offset: 0x18D58 +d_course_koopa_troopa_beach_dl_18D68: + symbol: d_course_koopa_troopa_beach_dl_18D68 + type: gfx + offset: 0x18D68 diff --git a/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists.yml b/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists.yml new file mode 100644 index 000000000..897444956 --- /dev/null +++ b/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists.yml @@ -0,0 +1,2090 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x8E8BC8 + no_compression: true + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_643B3C"] + - [0x05000800, "textures/other_textures/texture_66A3DC"] + - [0x05001000, "textures/other_textures/sign_wood_red_arrow"] + - [0x05002000, "textures/other_textures/texture_66DD38"] + - [0x05003000, "textures/other_textures/texture_643430"] + - [0x05003800, "textures/other_textures/texture_660D8C"] + - [0x05004000, "textures/other_textures/texture_6609D0"] + - [0x05005000, "textures/other_textures/grass_12"] + - [0x05005800, "textures/other_textures/texture_66CA98"] + - [0x05006000, "textures/other_textures/texture_66EBF0"] + - [0x05006800, "textures/other_textures/texture_67BEE8"] + - [0x05007000, "textures/other_textures/sand_finish"] + - [0x05007800, "textures/other_textures/wheel_steam_engine"] + - [0x05008000, "textures/other_textures/texture_669570"] + - [0x05009000, "textures/other_textures/waves_1"] + - [0x05009800, "textures/other_textures/waves_2"] + # Segment 7 + - [0x7000000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_0"] + - [0x70000B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B0"] + - [0x7000160, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_160"] + - [0x7000210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_210"] + - [0x70002C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C0"] + - [0x70002E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E8"] + - [0x7000358, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_358"] + - [0x7000368, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_368"] + - [0x7000380, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_380"] + - [0x7000390, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_390"] + - [0x7000440, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_440"] + - [0x7000518, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_518"] + - [0x7000610, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_610"] + - [0x70006D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6D8"] + - [0x7000778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_778"] + - [0x7000858, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_858"] + - [0x7000928, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_928"] + - [0x7000A00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A00"] + - [0x7000AE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AE0"] + - [0x7000BD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_BD8"] + - [0x7000CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_CC0"] + - [0x7000D70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_D70"] + - [0x7000E60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_E60"] + - [0x7000F38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_F38"] + - [0x7001000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1000"] + - [0x70010B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_10B0"] + - [0x7001190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1190"] + - [0x7001210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1210"] + - [0x70012D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_12D0"] + - [0x70013D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_13D0"] + - [0x70014D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_14D0"] + - [0x7001590, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1590"] + - [0x7001668, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1668"] + - [0x70016F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_16F0"] + - [0x7001778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1778"] + - [0x7001850, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1850"] + - [0x7001940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1940"] + - [0x7001A40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1A40"] + - [0x7001B58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1B58"] + - [0x7001C18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1C18"] + - [0x7001CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1CC0"] + - [0x7001DA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1DA8"] + - [0x7001E90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1E90"] + - [0x7001F78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1F78"] + - [0x7002058, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2058"] + - [0x7002178, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2178"] + - [0x70021D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_21D8"] + - [0x7002240, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2240"] + - [0x70022B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_22B0"] + - [0x7002320, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2320"] + - [0x7002398, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2398"] + - [0x7002410, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2410"] + - [0x7002478, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2478"] + - [0x70024E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_24E8"] + - [0x7002560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2560"] + - [0x70025C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_25C8"] + - [0x7002638, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2638"] + - [0x7002698, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2698"] + - [0x7002748, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2748"] + - [0x70027B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_27B0"] + - [0x7002818, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2818"] + - [0x7002888, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2888"] + - [0x70028F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_28F0"] + - [0x7002960, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2960"] + - [0x70029D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_29D0"] + - [0x7002A58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2A58"] + - [0x7002AC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2AC8"] + - [0x7002B30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2B30"] + - [0x7002BA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2BA8"] + - [0x7002C08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C08"] + - [0x7002C68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C68"] + - [0x7002CC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2CC8"] + - [0x7002D40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2D40"] + - [0x7002DA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2DA8"] + - [0x7002E18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E18"] + - [0x7002E98, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E98"] + - [0x7002F00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2F00"] + - [0x7002F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2F60"] + - [0x7002FC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2FC8"] + - [0x7003038, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3038"] + - [0x70030B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_30B0"] + - [0x70031D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_31D0"] + - [0x70032B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_32B0"] + - [0x7003390, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3390"] + - [0x7003470, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3470"] + - [0x7003550, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3550"] + - [0x7003630, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3630"] + - [0x70036F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_36F0"] + - [0x70037B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_37B0"] + - [0x70038B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_38B0"] + - [0x7003978, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3978"] + - [0x70039E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_39E8"] + - [0x7003AC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3AC8"] + - [0x7003B40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3B40"] + - [0x7003C38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3C38"] + - [0x7003D00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3D00"] + - [0x7003DE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3DE0"] + - [0x7003ED8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3ED8"] + - [0x7003F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3F60"] + - [0x7004040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4040"] + - [0x7004120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4120"] + - [0x7004200, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4200"] + - [0x70042E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_42E0"] + - [0x70043C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_43C0"] + - [0x7004490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4490"] + - [0x70045C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_45C8"] + - [0x70046A8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_46A8"] + - [0x7004770, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4770"] + - [0x70047E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_47E0"] + - [0x70048B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_48B0"] + - [0x7004920, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4920"] + - [0x7004A08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4A08"] + - [0x7004AF0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4AF0"] + - [0x7004BD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4BD0"] + - [0x7004CC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4CC8"] + - [0x7004DD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4DD8"] + - [0x7004EA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4EA0"] + - [0x7004F68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4F68"] + - [0x7005028, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5028"] + - [0x70050E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_50E8"] + - [0x70051A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_51A0"] + - [0x7005250, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5250"] + - [0x7005300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5300"] + - [0x70053D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_53D8"] + - [0x7005488, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5488"] + - [0x70054E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_54E8"] + - [0x7005598, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5598"] + - [0x70055F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_55F8"] + - [0x70056C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_56C8"] + - [0x7005778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5778"] + - [0x7005828, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5828"] + - [0x70058F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_58F8"] + - [0x7005970, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5970"] + - [0x7005A38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5A38"] + - [0x7005B00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5B00"] + - [0x7005BB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5BB8"] + - [0x7005C88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5C88"] + - [0x7005D50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5D50"] + - [0x7005E08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5E08"] + - [0x7005EB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5EB0"] + - [0x7005F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5F60"] + - [0x7006010, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6010"] + - [0x7006078, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6078"] + - [0x7006140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6140"] + - [0x70061A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_61A0"] + - [0x7006268, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6268"] + - [0x7006330, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6330"] + - [0x70063F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_63F8"] + - [0x70064C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_64C8"] + - [0x70065D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_65D8"] + - [0x7006648, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6648"] + - [0x70066B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_66B0"] + - [0x7006718, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6718"] + - [0x70067A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_67A0"] + - [0x7006810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6810"] + - [0x70068C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_68C0"] + - [0x7006938, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6938"] + - [0x7006998, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6998"] + - [0x70069F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_69F8"] + - [0x7006A68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6A68"] + - [0x7006AD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6AD0"] + - [0x7006B30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6B30"] + - [0x7006BE8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6BE8"] + - [0x7006D70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6D70"] + - [0x7006DE8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6DE8"] + - [0x7006EB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6EB8"] + - [0x7006F30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6F30"] + - [0x7006FA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6FA0"] + - [0x7007000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7000"] + - [0x70070A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_70A0"] + - [0x7007120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7120"] + - [0x7007188, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7188"] + - [0x70071F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_71F0"] + - [0x7007260, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7260"] + - [0x70072D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_72D0"] + - [0x7007358, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7358"] + - [0x7007430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7430"] + - [0x7007538, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7538"] + - [0x7007608, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7608"] + - [0x70076A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_76A0"] + - [0x70076C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_76C0"] + - [0x7007740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7740"] + - [0x7007810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7810"] + - [0x70078E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_78E0"] + - [0x7007970, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7970"] + - [0x7007A98, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7A98"] + - [0x7007DB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7DB0"] + - [0x7007E48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7E48"] + - [0x7007EE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7EE0"] + - [0x7007F70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7F70"] + - [0x7008028, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8028"] + - [0x70080F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_80F8"] + - [0x7008200, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8200"] + - [0x70082D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_82D8"] + - [0x7008360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8360"] + - [0x7008468, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8468"] + - [0x7008510, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8510"] + - [0x70085C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_85C0"] + - [0x70086B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_86B0"] + - [0x7008740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8740"] + - [0x70087E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_87E0"] + - [0x7008870, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8870"] + - [0x7008918, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8918"] + - [0x7008980, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8980"] + - [0x7008A90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8A90"] + - [0x7008C18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8C18"] + - [0x7008D08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8D08"] + - [0x7008DB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8DB0"] + - [0x7008E50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8E50"] + - [0x7008EE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8EE0"] + - [0x7008F58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8F58"] + - [0x7008FD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8FD0"] + - [0x7009080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9080"] + - [0x7009188, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9188"] + - [0x7009228, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9228"] + - [0x70092C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_92C8"] + - [0x7009368, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9368"] + - [0x7009408, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9408"] + - [0x70094A8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_94A8"] + - [0x7009548, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9548"] + - [0x70095E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_95E8"] + - [0x7009688, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9688"] + - [0x70096D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_96D0"] + - [0x7009800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9800"] + - [0x7009930, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9930"] + - [0x7009A30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9A30"] + - [0x7009B20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B20"] + - [0x7009B48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B48"] + - [0x7009B78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B78"] + - [0x7009B88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B88"] + - [0x7009CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9CC0"] + - [0x7009CD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9CD0"] + - [0x7009D58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9D58"] + - [0x7009E70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9E70"] + - [0x7009E88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9E88"] + - [0x7009EC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9EC0"] + - [0x7009EF8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9EF8"] + - [0x7009F30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9F30"] + - [0x7009F68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9F68"] + - [0x7009FA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FA0"] + - [0x7009FC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FC8"] + - [0x7009FF0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FF0"] + - [0x700A020, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A020"] + - [0x700A080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A080"] + - [0x700A0B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A0B0"] + - [0x700A0E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A0E8"] + - [0x700A128, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A128"] + - [0x700A158, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A158"] + - [0x700A190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A190"] + - [0x700A1D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A1D0"] + - [0x700A210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A210"] + - [0x700A240, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A240"] + - [0x700A278, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A278"] + - [0x700A2B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A2B0"] + - [0x700A2E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A2E8"] + - [0x700A320, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A320"] + - [0x700A350, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A350"] + - [0x700A388, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A388"] + - [0x700A3C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A3C8"] + - [0x700A400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A400"] + - [0x700A438, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A438"] + - [0x700A470, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A470"] + - [0x700A4A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A4A0"] + - [0x700A4D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A4D0"] + - [0x700A508, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A508"] + - [0x700A540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A540"] + - [0x700A640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A640"] + - [0x700A668, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A668"] + - [0x700A690, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A690"] + - [0x700A6B8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A6B8"] + - [0x700A6E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A6E0"] + - [0x700A708, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A708"] + - [0x700A738, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A738"] + - [0x700A760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A760"] + - [0x700A798, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A798"] + - [0x700A7C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A7C0"] + - [0x700A7E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A7E0"] + - [0x700A810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A810"] + - [0x700A838, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A838"] + - [0x700A868, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A868"] + - [0x700A890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A890"] + - [0x700A8C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A8C0"] + - [0x700A8E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A8E0"] + - [0x700A908, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A908"] + - [0x700A930, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A930"] + - [0x700A990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A990"] + - [0x700A9F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A9F0"] + - [0x700AA48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AA48"] + - [0x700AAB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AAB0"] + - [0x700AB08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AB08"] + - [0x700AB68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AB68"] + - [0x700ABD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ABD0"] + - [0x700AC40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AC40"] + - [0x700ACB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ACB0"] + - [0x700ACD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ACD8"] + - [0x700AD00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD00"] + - [0x700AD28, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD28"] + - [0x700AD50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD50"] + - [0x700AD78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD78"] + - [0x700ADB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ADB8"] + - [0x700ADE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ADE0"] + - [0x700AEF8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AEF8"] + - [0x700AFC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AFC8"] + - [0x700B0A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B0A0"] + - [0x700B168, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B168"] + - [0x700B208, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B208"] + - [0x700B230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B230"] + - [0x700B2B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B2B0"] + - [0x700B2C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B2C0"] + # Segment 4 + - [0x4000000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000000"] + - [0x4000040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000040"] + - [0x4000080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000080"] + - [0x40000c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040000C0"] + - [0x4000100, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000100"] + - [0x4000140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000140"] + - [0x4000180, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000180"] + - [0x40001c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040001C0"] + - [0x4000200, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000200"] + - [0x40002c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040002C0"] + - [0x40004c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040004C0"] + - [0x4000610, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000610"] + - [0x4000800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000800"] + - [0x4000a00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000A00"] + - [0x4000a60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000A60"] + - [0x4000c50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000C50"] + - [0x4000e50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000E50"] + - [0x4000ff0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04000FF0"] + - [0x40011f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040011F0"] + - [0x40013e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040013E0"] + - [0x40015c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040015C0"] + - [0x40016b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040016B0"] + - [0x4001890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001890"] + - [0x4001a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001A80"] + - [0x4001af0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001AF0"] + - [0x4001cf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001CF0"] + - [0x4001ed0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001ED0"] + - [0x4001f00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04001F00"] + - [0x4002100, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002100"] + - [0x40022f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040022F0"] + - [0x4002350, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002350"] + - [0x4002540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002540"] + - [0x4002740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002740"] + - [0x40027e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040027E0"] + - [0x40029e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040029E0"] + - [0x4002be0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002BE0"] + - [0x4002d80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002D80"] + - [0x4002f60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04002F60"] + - [0x4003160, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003160"] + - [0x4003270, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003270"] + - [0x4003460, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003460"] + - [0x4003580, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003580"] + - [0x4003760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003760"] + - [0x4003880, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003880"] + - [0x40038e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040038E0"] + - [0x4003ad0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003AD0"] + - [0x4003cb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003CB0"] + - [0x4003d20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003D20"] + - [0x4003f00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04003F00"] + - [0x40040f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040040F0"] + - [0x4004150, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004150"] + - [0x4004350, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004350"] + - [0x40044a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040044A0"] + - [0x4004680, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004680"] + - [0x4004880, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004880"] + - [0x4004940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004940"] + - [0x4004a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004A80"] + - [0x4004c70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004C70"] + - [0x4004e10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04004E10"] + - [0x4005010, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005010"] + - [0x40051f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040051F0"] + - [0x40053e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040053E0"] + - [0x40055d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040055D0"] + - [0x40057d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040057D0"] + - [0x40059a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040059A0"] + - [0x4005ba0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005BA0"] + - [0x4005d00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005D00"] + - [0x4005ef0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04005EF0"] + - [0x40060f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040060F0"] + - [0x4006120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006120"] + - [0x40062c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040062C0"] + - [0x4006490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006490"] + - [0x4006670, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006670"] + - [0x4006860, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006860"] + - [0x40068a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040068A0"] + - [0x4006a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006A80"] + - [0x4006c80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006C80"] + - [0x4006db0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006DB0"] + - [0x4006f90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04006F90"] + - [0x4007180, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007180"] + - [0x4007360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007360"] + - [0x4007560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007560"] + - [0x4007750, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007750"] + - [0x4007940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007940"] + - [0x40079c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040079C0"] + - [0x4007ba0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007BA0"] + - [0x4007d60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007D60"] + - [0x4007f60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04007F60"] + - [0x4008050, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008050"] + - [0x4008230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008230"] + - [0x4008430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008430"] + - [0x4008500, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008500"] + - [0x4008700, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008700"] + - [0x4008900, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008900"] + - [0x40089e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040089E0"] + - [0x4008be0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008BE0"] + - [0x4008de0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008DE0"] + - [0x4008ed0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04008ED0"] + - [0x40090d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040090D0"] + - [0x40092d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040092D0"] + - [0x4009300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009300"] + - [0x4009360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009360"] + - [0x40093f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040093F0"] + - [0x40094e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040094E0"] + - [0x40095b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040095B0"] + - [0x4009710, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009710"] + - [0x4009860, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009860"] + - [0x40098e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040098E0"] + - [0x40099c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040099C0"] + - [0x4009b10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009B10"] + - [0x4009bd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009BD0"] + - [0x4009cb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009CB0"] + - [0x4009d10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009D10"] + - [0x4009e20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009E20"] + - [0x4009e80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009E80"] + - [0x4009f10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009F10"] + - [0x4009fd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04009FD0"] + - [0x400a0e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A0E0"] + - [0x400a1a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A1A0"] + - [0x400a270, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A270"] + - [0x400a380, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A380"] + - [0x400a560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A560"] + - [0x400a670, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A670"] + - [0x400a720, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A720"] + - [0x400a870, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A870"] + - [0x400a8a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A8A0"] + - [0x400a900, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A900"] + - [0x400a960, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400A960"] + - [0x400aa90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AA90"] + - [0x400ab20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AB20"] + - [0x400ac20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AC20"] + - [0x400adb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400ADB0"] + - [0x400ae30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AE30"] + - [0x400ae90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AE90"] + - [0x400af50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400AF50"] + - [0x400b070, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B070"] + - [0x400b1c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B1C0"] + - [0x400b300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B300"] + - [0x400b400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B400"] + - [0x400b580, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B580"] + - [0x400b680, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B680"] + - [0x400b7b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B7B0"] + - [0x400b8b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400B8B0"] + - [0x400ba20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BA20"] + - [0x400bb20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BB20"] + - [0x400bc60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BC60"] + - [0x400bd60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BD60"] + - [0x400bdf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BDF0"] + - [0x400be70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BE70"] + - [0x400bf20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BF20"] + - [0x400bfa0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400BFA0"] + - [0x400c120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C120"] + - [0x400c290, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C290"] + - [0x400c3b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C3B0"] + - [0x400c430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C430"] + - [0x400c530, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C530"] + - [0x400c6a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C6A0"] + - [0x400c7a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C7A0"] + - [0x400c920, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400C920"] + - [0x400cb00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CB00"] + - [0x400cc80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CC80"] + - [0x400cd70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CD70"] + - [0x400cdf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CDF0"] + - [0x400cf40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400CF40"] + - [0x400d040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D040"] + - [0x400d1e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D1E0"] + - [0x400d360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D360"] + - [0x400d520, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D520"] + - [0x400d660, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D660"] + - [0x400d760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D760"] + - [0x400d8a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D8A0"] + - [0x400d9a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400D9A0"] + - [0x400daf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DAF0"] + - [0x400dbf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DBF0"] + - [0x400dd60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DD60"] + - [0x400de60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DE60"] + - [0x400dfb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400DFB0"] + - [0x400e0b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E0B0"] + - [0x400e1f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E1F0"] + - [0x400e270, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E270"] + - [0x400e450, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E450"] + - [0x400e650, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E650"] + - [0x400e840, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E840"] + - [0x400e8a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E8A0"] + - [0x400e9e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400E9E0"] + - [0x400eae0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EAE0"] + - [0x400ebd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EBD0"] + - [0x400ec50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EC50"] + - [0x400ed60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400ED60"] + - [0x400ef10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EF10"] + - [0x400ef60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400EF60"] + - [0x400f070, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F070"] + - [0x400f1a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F1A0"] + - [0x400f2d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F2D0"] + - [0x400f480, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F480"] + - [0x400f500, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F500"] + - [0x400f630, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F630"] + - [0x400f720, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F720"] + - [0x400f8d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400F8D0"] + - [0x400fa50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FA50"] + - [0x400fb00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FB00"] + - [0x400fb80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FB80"] + - [0x400fc30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FC30"] + - [0x400fcb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FCB0"] + - [0x400fd70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FD70"] + - [0x400fdf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FDF0"] + - [0x400feb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FEB0"] + - [0x400ff30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FF30"] + - [0x400ffd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0400FFD0"] + - [0x4010010, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010010"] + - [0x4010050, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010050"] + - [0x4010090, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010090"] + - [0x40100f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040100F0"] + - [0x4010130, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010130"] + - [0x4010260, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010260"] + - [0x4010320, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010320"] + - [0x4010380, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010380"] + - [0x40103c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040103C0"] + - [0x40103f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040103F0"] + - [0x4010450, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010450"] + - [0x4010490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010490"] + - [0x40104f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040104F0"] + - [0x40105e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040105E0"] + - [0x40106a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040106A0"] + - [0x4010700, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010700"] + - [0x4010740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010740"] + - [0x40107a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040107A0"] + - [0x40107e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040107E0"] + - [0x40108d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040108D0"] + - [0x4010990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010990"] + - [0x4010ac0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010AC0"] + - [0x4010b70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010B70"] + - [0x4010bf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010BF0"] + - [0x4010cc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010CC0"] + - [0x4010d40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010D40"] + - [0x4010de0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010DE0"] + - [0x4010e20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010E20"] + - [0x4010f20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010F20"] + - [0x4010fd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04010FD0"] + - [0x4011080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011080"] + - [0x4011100, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011100"] + - [0x4011190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011190"] + - [0x40111d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040111D0"] + - [0x40113c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040113C0"] + - [0x40114e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040114E0"] + - [0x4011540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011540"] + - [0x4011580, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011580"] + - [0x40115e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040115E0"] + - [0x4011620, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011620"] + - [0x40116b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040116B0"] + - [0x4011790, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011790"] + - [0x40117f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040117F0"] + - [0x4011850, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011850"] + - [0x40118f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040118F0"] + - [0x40119d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040119D0"] + - [0x4011b00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011B00"] + - [0x4011b40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011B40"] + - [0x4011c40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011C40"] + - [0x4011cc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011CC0"] + - [0x4011dc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011DC0"] + - [0x4011e70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011E70"] + - [0x4011f80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04011F80"] + - [0x4012000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012000"] + - [0x40120b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040120B0"] + - [0x40122a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040122A0"] + - [0x40123c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040123C0"] + - [0x4012400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012400"] + - [0x4012460, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012460"] + - [0x40125e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040125E0"] + - [0x4012640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012640"] + - [0x4012690, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012690"] + - [0x4012750, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012750"] + - [0x40127d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040127D0"] + - [0x4012830, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012830"] + - [0x4012890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012890"] + - [0x4012950, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012950"] + - [0x4012ae0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012AE0"] + - [0x4012ce0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012CE0"] + - [0x4012e90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04012E90"] + - [0x4013040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013040"] + - [0x40131c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040131C0"] + - [0x40132b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040132B0"] + - [0x4013340, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013340"] + - [0x4013480, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013480"] + - [0x4013580, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013580"] + - [0x40135d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040135D0"] + - [0x40137d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040137D0"] + - [0x4013860, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013860"] + - [0x4013a10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013A10"] + - [0x4013a90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013A90"] + - [0x4013b50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013B50"] + - [0x4013c50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013C50"] + - [0x4013d70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013D70"] + - [0x4013f70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04013F70"] + - [0x4014150, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014150"] + - [0x4014340, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014340"] + - [0x4014530, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014530"] + - [0x4014560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014560"] + - [0x4014760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014760"] + - [0x4014940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014940"] + - [0x40149c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040149C0"] + - [0x4014bc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014BC0"] + - [0x4014bf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014BF0"] + - [0x4014dd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014DD0"] + - [0x4014fb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04014FB0"] + - [0x40151a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040151A0"] + - [0x4015230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015230"] + - [0x4015430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015430"] + - [0x4015620, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015620"] + - [0x4015650, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015650"] + - [0x4015830, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015830"] + - [0x4015860, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015860"] + - [0x4015890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015890"] + - [0x4015a70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015A70"] + - [0x4015b60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015B60"] + - [0x4015b90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015B90"] + - [0x4015d80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015D80"] + - [0x4015e50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04015E50"] + - [0x4016030, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016030"] + - [0x4016210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016210"] + - [0x40163f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040163F0"] + - [0x40165d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040165D0"] + - [0x40167b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040167B0"] + - [0x4016990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016990"] + - [0x40169c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040169C0"] + - [0x4016ba0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016BA0"] + - [0x4016d90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016D90"] + - [0x4016f70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04016F70"] + - [0x4017120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017120"] + - [0x4017300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017300"] + - [0x40173c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040173C0"] + - [0x40175a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040175A0"] + - [0x4017660, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017660"] + - [0x4017840, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017840"] + - [0x40178a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040178A0"] + - [0x4017a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017A80"] + - [0x4017c70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017C70"] + - [0x4017e70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04017E70"] + - [0x4018050, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018050"] + - [0x40180e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040180E0"] + - [0x40182c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040182C0"] + - [0x40184a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040184A0"] + - [0x4018680, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018680"] + - [0x40187f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040187F0"] + - [0x40189f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040189F0"] + - [0x4018bd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018BD0"] + - [0x4018ce0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018CE0"] + - [0x4018ec0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018EC0"] + - [0x4018f50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04018F50"] + - [0x4019130, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019130"] + - [0x4019280, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019280"] + - [0x4019480, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019480"] + - [0x4019570, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019570"] + - [0x4019750, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019750"] + - [0x4019900, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019900"] + - [0x4019940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019940"] + - [0x4019a00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019A00"] + - [0x4019a60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019A60"] + - [0x4019c40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019C40"] + - [0x4019ca0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019CA0"] + - [0x4019ea0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019EA0"] + - [0x4019f30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04019F30"] + - [0x401a110, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A110"] + - [0x401a140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A140"] + - [0x401a340, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A340"] + - [0x401a460, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A460"] + - [0x401a520, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A520"] + - [0x401a720, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A720"] + - [0x401a900, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401A900"] + - [0x401aae0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AAE0"] + - [0x401ab70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AB70"] + - [0x401ad70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AD70"] + - [0x401af60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401AF60"] + - [0x401b140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B140"] + - [0x401b330, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B330"] + - [0x401b520, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B520"] + - [0x401b640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B640"] + - [0x401b820, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401B820"] + - [0x401ba00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BA00"] + - [0x401bbe0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BBE0"] + - [0x401bdc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BDC0"] + - [0x401bf30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401BF30"] + - [0x401c130, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C130"] + - [0x401c1f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C1F0"] + - [0x401c3d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C3D0"] + - [0x401c400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C400"] + - [0x401c550, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C550"] + - [0x401c6a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C6A0"] + - [0x401c790, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C790"] + - [0x401c810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C810"] + - [0x401c8b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C8B0"] + - [0x401c8f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C8F0"] + - [0x401c990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C990"] + - [0x401c9d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401C9D0"] + - [0x401ca70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CA70"] + - [0x401cab0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CAB0"] + - [0x401cb50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CB50"] + - [0x401cb90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CB90"] + - [0x401cc30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CC30"] + - [0x401cc70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CC70"] + - [0x401cd10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CD10"] + - [0x401cd50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CD50"] + - [0x401cdf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CDF0"] + - [0x401ce30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CE30"] + - [0x401ced0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CED0"] + - [0x401cf10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401CF10"] + - [0x401d110, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D110"] + - [0x401d190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D190"] + - [0x401d370, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D370"] + - [0x401d3a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D3A0"] + - [0x401d5a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D5A0"] + - [0x401d620, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D620"] + - [0x401d800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D800"] + - [0x401d830, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401D830"] + - [0x401da10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DA10"] + - [0x401dbf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DBF0"] + - [0x401ddd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DDD0"] + - [0x401def0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401DEF0"] + - [0x401e0d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E0D0"] + - [0x401e2b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E2B0"] + - [0x401e490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E490"] + - [0x401e4c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E4C0"] + - [0x401e560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E560"] + - [0x401e760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E760"] + - [0x401e930, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401E930"] + - [0x401ea60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EA60"] + - [0x401ec60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EC60"] + - [0x401ed20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401ED20"] + - [0x401ee90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EE90"] + - [0x401efe0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401EFE0"] + - [0x401f150, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F150"] + - [0x401f290, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F290"] + - [0x401f3d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F3D0"] + - [0x401f450, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F450"] + - [0x401f510, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F510"] + - [0x401f620, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F620"] + - [0x401f810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F810"] + - [0x401f890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F890"] + - [0x401f9a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401F9A0"] + - [0x401fb20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FB20"] + - [0x401fd00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FD00"] + - [0x401fde0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FDE0"] + - [0x401ff10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x0401FF10"] + - [0x40200b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040200B0"] + - [0x4020250, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020250"] + - [0x4020370, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020370"] + - [0x40204f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040204F0"] + - [0x4020640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020640"] + - [0x4020780, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020780"] + - [0x40208e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040208E0"] + - [0x4020a00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020A00"] + - [0x4020b40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020B40"] + - [0x4020ce0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020CE0"] + - [0x4020e50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020E50"] + - [0x4020fa0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04020FA0"] + - [0x40210d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040210D0"] + - [0x40211e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040211E0"] + - [0x4021300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021300"] + - [0x4021470, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021470"] + - [0x40215a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040215A0"] + - [0x4021630, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021630"] + - [0x40216c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040216C0"] + - [0x4021770, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021770"] + - [0x4021800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021800"] + - [0x40218b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040218B0"] + - [0x40219c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040219C0"] + - [0x4021a80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021A80"] + - [0x4021bb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021BB0"] + - [0x4021c40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021C40"] + - [0x4021ca0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021CA0"] + - [0x4021d80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021D80"] + - [0x4021e10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021E10"] + - [0x4021ef0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021EF0"] + - [0x4021fb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04021FB0"] + - [0x40220a0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040220A0"] + - [0x4022100, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022100"] + - [0x4022190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022190"] + - [0x4022250, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022250"] + - [0x4022450, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022450"] + - [0x4022510, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022510"] + - [0x4022700, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022700"] + - [0x40227c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040227C0"] + - [0x40229c0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040229C0"] + - [0x40229f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040229F0"] + - [0x4022bd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022BD0"] + - [0x4022cc0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022CC0"] + - [0x4022eb0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022EB0"] + - [0x4022f10, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04022F10"] + - [0x40230f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040230F0"] + - [0x40231f0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040231F0"] + - [0x40233d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040233D0"] + - [0x40234b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040234B0"] + - [0x40236b0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040236B0"] + - [0x40237e0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040237E0"] + - [0x40239d0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x040239D0"] + - [0x4023ab0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023AB0"] + - [0x4023b30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023B30"] + - [0x4023bf0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023BF0"] + - [0x4023c80, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023C80"] + - [0x4023d30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023D30"] + - [0x4023db0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023DB0"] + - [0x4023f40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023F40"] + - [0x4023fd0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04023FD0"] + - [0x4024090, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024090"] + - [0x4024170, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024170"] + - [0x4024230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024230"] + - [0x4024360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024360"] + - [0x4024540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024540"] + - [0x4024720, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024720"] + - [0x4024780, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024780"] + - [0x4024970, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices/d_course_koopa_troopa_beach_vertex_0x04024970"] + segments: + - [0x0F, 0x8E8BC8] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_koopa_troopa_beach_packed_dl_0: + symbol: d_course_koopa_troopa_beach_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_koopa_troopa_beach_packed_dl_B0: + symbol: d_course_koopa_troopa_beach_packed_dl_B0 + type: MK64:PACKED_GFX + offset: 0x20 +d_course_koopa_troopa_beach_packed_dl_160: + symbol: d_course_koopa_troopa_beach_packed_dl_160 + type: MK64:PACKED_GFX + offset: 0x40 +d_course_koopa_troopa_beach_packed_dl_210: + symbol: d_course_koopa_troopa_beach_packed_dl_210 + type: MK64:PACKED_GFX + offset: 0x60 +d_course_koopa_troopa_beach_packed_dl_2C0: + symbol: d_course_koopa_troopa_beach_packed_dl_2C0 + type: MK64:PACKED_GFX + offset: 0x80 +d_course_koopa_troopa_beach_packed_dl_2E8: + symbol: d_course_koopa_troopa_beach_packed_dl_2E8 + type: MK64:PACKED_GFX + offset: 0x8D +d_course_koopa_troopa_beach_packed_dl_358: + symbol: d_course_koopa_troopa_beach_packed_dl_358 + type: MK64:PACKED_GFX + offset: 0xA8 +d_course_koopa_troopa_beach_packed_dl_368: + symbol: d_course_koopa_troopa_beach_packed_dl_368 + type: MK64:PACKED_GFX + offset: 0xAC +d_course_koopa_troopa_beach_packed_dl_380: + symbol: d_course_koopa_troopa_beach_packed_dl_380 + type: MK64:PACKED_GFX + offset: 0xB3 +d_course_koopa_troopa_beach_packed_dl_390: + symbol: d_course_koopa_troopa_beach_packed_dl_390 + type: MK64:PACKED_GFX + offset: 0xB7 +d_course_koopa_troopa_beach_packed_dl_440: + symbol: d_course_koopa_troopa_beach_packed_dl_440 + type: MK64:PACKED_GFX + offset: 0xF6 +d_course_koopa_troopa_beach_packed_dl_518: + symbol: d_course_koopa_troopa_beach_packed_dl_518 + type: MK64:PACKED_GFX + offset: 0x14C +d_course_koopa_troopa_beach_packed_dl_610: + symbol: d_course_koopa_troopa_beach_packed_dl_610 + type: MK64:PACKED_GFX + offset: 0x1B4 +d_course_koopa_troopa_beach_packed_dl_6D8: + symbol: d_course_koopa_troopa_beach_packed_dl_6D8 + type: MK64:PACKED_GFX + offset: 0x202 +d_course_koopa_troopa_beach_packed_dl_778: + symbol: d_course_koopa_troopa_beach_packed_dl_778 + type: MK64:PACKED_GFX + offset: 0x237 +d_course_koopa_troopa_beach_packed_dl_858: + symbol: d_course_koopa_troopa_beach_packed_dl_858 + type: MK64:PACKED_GFX + offset: 0x28E +d_course_koopa_troopa_beach_packed_dl_928: + symbol: d_course_koopa_troopa_beach_packed_dl_928 + type: MK64:PACKED_GFX + offset: 0x2DD +d_course_koopa_troopa_beach_packed_dl_A00: + symbol: d_course_koopa_troopa_beach_packed_dl_A00 + type: MK64:PACKED_GFX + offset: 0x331 +d_course_koopa_troopa_beach_packed_dl_AE0: + symbol: d_course_koopa_troopa_beach_packed_dl_AE0 + type: MK64:PACKED_GFX + offset: 0x38C +d_course_koopa_troopa_beach_packed_dl_BD8: + symbol: d_course_koopa_troopa_beach_packed_dl_BD8 + type: MK64:PACKED_GFX + offset: 0x3F6 +d_course_koopa_troopa_beach_packed_dl_CC0: + symbol: d_course_koopa_troopa_beach_packed_dl_CC0 + type: MK64:PACKED_GFX + offset: 0x456 +d_course_koopa_troopa_beach_packed_dl_D70: + symbol: d_course_koopa_troopa_beach_packed_dl_D70 + type: MK64:PACKED_GFX + offset: 0x497 +d_course_koopa_troopa_beach_packed_dl_E60: + symbol: d_course_koopa_troopa_beach_packed_dl_E60 + type: MK64:PACKED_GFX + offset: 0x4E9 +d_course_koopa_troopa_beach_packed_dl_F38: + symbol: d_course_koopa_troopa_beach_packed_dl_F38 + type: MK64:PACKED_GFX + offset: 0x53D +d_course_koopa_troopa_beach_packed_dl_1000: + symbol: d_course_koopa_troopa_beach_packed_dl_1000 + type: MK64:PACKED_GFX + offset: 0x589 +d_course_koopa_troopa_beach_packed_dl_10B0: + symbol: d_course_koopa_troopa_beach_packed_dl_10B0 + type: MK64:PACKED_GFX + offset: 0x5C6 +d_course_koopa_troopa_beach_packed_dl_1190: + symbol: d_course_koopa_troopa_beach_packed_dl_1190 + type: MK64:PACKED_GFX + offset: 0x621 +d_course_koopa_troopa_beach_packed_dl_1210: + symbol: d_course_koopa_troopa_beach_packed_dl_1210 + type: MK64:PACKED_GFX + offset: 0x646 +d_course_koopa_troopa_beach_packed_dl_12D0: + symbol: d_course_koopa_troopa_beach_packed_dl_12D0 + type: MK64:PACKED_GFX + offset: 0x68F +d_course_koopa_troopa_beach_packed_dl_13D0: + symbol: d_course_koopa_troopa_beach_packed_dl_13D0 + type: MK64:PACKED_GFX + offset: 0x6FC +d_course_koopa_troopa_beach_packed_dl_14D0: + symbol: d_course_koopa_troopa_beach_packed_dl_14D0 + type: MK64:PACKED_GFX + offset: 0x769 +d_course_koopa_troopa_beach_packed_dl_1590: + symbol: d_course_koopa_troopa_beach_packed_dl_1590 + type: MK64:PACKED_GFX + offset: 0x7B0 +d_course_koopa_troopa_beach_packed_dl_1668: + symbol: d_course_koopa_troopa_beach_packed_dl_1668 + type: MK64:PACKED_GFX + offset: 0x806 +d_course_koopa_troopa_beach_packed_dl_16F0: + symbol: d_course_koopa_troopa_beach_packed_dl_16F0 + type: MK64:PACKED_GFX + offset: 0x82E +d_course_koopa_troopa_beach_packed_dl_1778: + symbol: d_course_koopa_troopa_beach_packed_dl_1778 + type: MK64:PACKED_GFX + offset: 0x856 +d_course_koopa_troopa_beach_packed_dl_1850: + symbol: d_course_koopa_troopa_beach_packed_dl_1850 + type: MK64:PACKED_GFX + offset: 0x8AC +d_course_koopa_troopa_beach_packed_dl_1940: + symbol: d_course_koopa_troopa_beach_packed_dl_1940 + type: MK64:PACKED_GFX + offset: 0x911 +d_course_koopa_troopa_beach_packed_dl_1A40: + symbol: d_course_koopa_troopa_beach_packed_dl_1A40 + type: MK64:PACKED_GFX + offset: 0x97E +d_course_koopa_troopa_beach_packed_dl_1B58: + symbol: d_course_koopa_troopa_beach_packed_dl_1B58 + type: MK64:PACKED_GFX + offset: 0x9FA +d_course_koopa_troopa_beach_packed_dl_1C18: + symbol: d_course_koopa_troopa_beach_packed_dl_1C18 + type: MK64:PACKED_GFX + offset: 0xA43 +d_course_koopa_troopa_beach_packed_dl_1CC0: + symbol: d_course_koopa_troopa_beach_packed_dl_1CC0 + type: MK64:PACKED_GFX + offset: 0xA7D +d_course_koopa_troopa_beach_packed_dl_1DA8: + symbol: d_course_koopa_troopa_beach_packed_dl_1DA8 + type: MK64:PACKED_GFX + offset: 0xADB +d_course_koopa_troopa_beach_packed_dl_1E90: + symbol: d_course_koopa_troopa_beach_packed_dl_1E90 + type: MK64:PACKED_GFX + offset: 0xB39 +d_course_koopa_troopa_beach_packed_dl_1F78: + symbol: d_course_koopa_troopa_beach_packed_dl_1F78 + type: MK64:PACKED_GFX + offset: 0xB97 +d_course_koopa_troopa_beach_packed_dl_2058: + symbol: d_course_koopa_troopa_beach_packed_dl_2058 + type: MK64:PACKED_GFX + offset: 0xBEE +d_course_koopa_troopa_beach_packed_dl_2178: + symbol: d_course_koopa_troopa_beach_packed_dl_2178 + type: MK64:PACKED_GFX + offset: 0xC58 +d_course_koopa_troopa_beach_packed_dl_21D8: + symbol: d_course_koopa_troopa_beach_packed_dl_21D8 + type: MK64:PACKED_GFX + offset: 0xC69 +d_course_koopa_troopa_beach_packed_dl_2240: + symbol: d_course_koopa_troopa_beach_packed_dl_2240 + type: MK64:PACKED_GFX + offset: 0xC7D +d_course_koopa_troopa_beach_packed_dl_22B0: + symbol: d_course_koopa_troopa_beach_packed_dl_22B0 + type: MK64:PACKED_GFX + offset: 0xC96 +d_course_koopa_troopa_beach_packed_dl_2320: + symbol: d_course_koopa_troopa_beach_packed_dl_2320 + type: MK64:PACKED_GFX + offset: 0xCAF +d_course_koopa_troopa_beach_packed_dl_2398: + symbol: d_course_koopa_troopa_beach_packed_dl_2398 + type: MK64:PACKED_GFX + offset: 0xCCF +d_course_koopa_troopa_beach_packed_dl_2410: + symbol: d_course_koopa_troopa_beach_packed_dl_2410 + type: MK64:PACKED_GFX + offset: 0xCED +d_course_koopa_troopa_beach_packed_dl_2478: + symbol: d_course_koopa_troopa_beach_packed_dl_2478 + type: MK64:PACKED_GFX + offset: 0xD01 +d_course_koopa_troopa_beach_packed_dl_24E8: + symbol: d_course_koopa_troopa_beach_packed_dl_24E8 + type: MK64:PACKED_GFX + offset: 0xD1A +d_course_koopa_troopa_beach_packed_dl_2560: + symbol: d_course_koopa_troopa_beach_packed_dl_2560 + type: MK64:PACKED_GFX + offset: 0xD38 +d_course_koopa_troopa_beach_packed_dl_25C8: + symbol: d_course_koopa_troopa_beach_packed_dl_25C8 + type: MK64:PACKED_GFX + offset: 0xD4E +d_course_koopa_troopa_beach_packed_dl_2638: + symbol: d_course_koopa_troopa_beach_packed_dl_2638 + type: MK64:PACKED_GFX + offset: 0xD67 +d_course_koopa_troopa_beach_packed_dl_2698: + symbol: d_course_koopa_troopa_beach_packed_dl_2698 + type: MK64:PACKED_GFX + offset: 0xD78 +d_course_koopa_troopa_beach_packed_dl_2748: + symbol: d_course_koopa_troopa_beach_packed_dl_2748 + type: MK64:PACKED_GFX + offset: 0xDA4 +d_course_koopa_troopa_beach_packed_dl_27B0: + symbol: d_course_koopa_troopa_beach_packed_dl_27B0 + type: MK64:PACKED_GFX + offset: 0xDB8 +d_course_koopa_troopa_beach_packed_dl_2818: + symbol: d_course_koopa_troopa_beach_packed_dl_2818 + type: MK64:PACKED_GFX + offset: 0xDCE +d_course_koopa_troopa_beach_packed_dl_2888: + symbol: d_course_koopa_troopa_beach_packed_dl_2888 + type: MK64:PACKED_GFX + offset: 0xDE9 +d_course_koopa_troopa_beach_packed_dl_28F0: + symbol: d_course_koopa_troopa_beach_packed_dl_28F0 + type: MK64:PACKED_GFX + offset: 0xDFF +d_course_koopa_troopa_beach_packed_dl_2960: + symbol: d_course_koopa_troopa_beach_packed_dl_2960 + type: MK64:PACKED_GFX + offset: 0xE18 +d_course_koopa_troopa_beach_packed_dl_29D0: + symbol: d_course_koopa_troopa_beach_packed_dl_29D0 + type: MK64:PACKED_GFX + offset: 0xE33 +d_course_koopa_troopa_beach_packed_dl_2A58: + symbol: d_course_koopa_troopa_beach_packed_dl_2A58 + type: MK64:PACKED_GFX + offset: 0xE5B +d_course_koopa_troopa_beach_packed_dl_2AC8: + symbol: d_course_koopa_troopa_beach_packed_dl_2AC8 + type: MK64:PACKED_GFX + offset: 0xE76 +d_course_koopa_troopa_beach_packed_dl_2B30: + symbol: d_course_koopa_troopa_beach_packed_dl_2B30 + type: MK64:PACKED_GFX + offset: 0xE8C +d_course_koopa_troopa_beach_packed_dl_2BA8: + symbol: d_course_koopa_troopa_beach_packed_dl_2BA8 + type: MK64:PACKED_GFX + offset: 0xEAA +d_course_koopa_troopa_beach_packed_dl_2C08: + symbol: d_course_koopa_troopa_beach_packed_dl_2C08 + type: MK64:PACKED_GFX + offset: 0xEB9 +d_course_koopa_troopa_beach_packed_dl_2C68: + symbol: d_course_koopa_troopa_beach_packed_dl_2C68 + type: MK64:PACKED_GFX + offset: 0xECA +d_course_koopa_troopa_beach_packed_dl_2CC8: + symbol: d_course_koopa_troopa_beach_packed_dl_2CC8 + type: MK64:PACKED_GFX + offset: 0xEDB +d_course_koopa_troopa_beach_packed_dl_2D40: + symbol: d_course_koopa_troopa_beach_packed_dl_2D40 + type: MK64:PACKED_GFX + offset: 0xEF9 +d_course_koopa_troopa_beach_packed_dl_2DA8: + symbol: d_course_koopa_troopa_beach_packed_dl_2DA8 + type: MK64:PACKED_GFX + offset: 0xF0D +d_course_koopa_troopa_beach_packed_dl_2E18: + symbol: d_course_koopa_troopa_beach_packed_dl_2E18 + type: MK64:PACKED_GFX + offset: 0xF28 +d_course_koopa_troopa_beach_packed_dl_2E98: + symbol: d_course_koopa_troopa_beach_packed_dl_2E98 + type: MK64:PACKED_GFX + offset: 0xF4B +d_course_koopa_troopa_beach_packed_dl_2F00: + symbol: d_course_koopa_troopa_beach_packed_dl_2F00 + type: MK64:PACKED_GFX + offset: 0xF5F +d_course_koopa_troopa_beach_packed_dl_2F60: + symbol: d_course_koopa_troopa_beach_packed_dl_2F60 + type: MK64:PACKED_GFX + offset: 0xF70 +d_course_koopa_troopa_beach_packed_dl_2FC8: + symbol: d_course_koopa_troopa_beach_packed_dl_2FC8 + type: MK64:PACKED_GFX + offset: 0xF86 +d_course_koopa_troopa_beach_packed_dl_3038: + symbol: d_course_koopa_troopa_beach_packed_dl_3038 + type: MK64:PACKED_GFX + offset: 0xFA1 +d_course_koopa_troopa_beach_packed_dl_30B0: + symbol: d_course_koopa_troopa_beach_packed_dl_30B0 + type: MK64:PACKED_GFX + offset: 0xFBF +d_course_koopa_troopa_beach_packed_dl_31D0: + symbol: d_course_koopa_troopa_beach_packed_dl_31D0 + type: MK64:PACKED_GFX + offset: 0x1029 +d_course_koopa_troopa_beach_packed_dl_32B0: + symbol: d_course_koopa_troopa_beach_packed_dl_32B0 + type: MK64:PACKED_GFX + offset: 0x1065 +d_course_koopa_troopa_beach_packed_dl_3390: + symbol: d_course_koopa_troopa_beach_packed_dl_3390 + type: MK64:PACKED_GFX + offset: 0x10A3 +d_course_koopa_troopa_beach_packed_dl_3470: + symbol: d_course_koopa_troopa_beach_packed_dl_3470 + type: MK64:PACKED_GFX + offset: 0x10DF +d_course_koopa_troopa_beach_packed_dl_3550: + symbol: d_course_koopa_troopa_beach_packed_dl_3550 + type: MK64:PACKED_GFX + offset: 0x111D +d_course_koopa_troopa_beach_packed_dl_3630: + symbol: d_course_koopa_troopa_beach_packed_dl_3630 + type: MK64:PACKED_GFX + offset: 0x1159 +d_course_koopa_troopa_beach_packed_dl_36F0: + symbol: d_course_koopa_troopa_beach_packed_dl_36F0 + type: MK64:PACKED_GFX + offset: 0x1181 +d_course_koopa_troopa_beach_packed_dl_37B0: + symbol: d_course_koopa_troopa_beach_packed_dl_37B0 + type: MK64:PACKED_GFX + offset: 0x11AB +d_course_koopa_troopa_beach_packed_dl_38B0: + symbol: d_course_koopa_troopa_beach_packed_dl_38B0 + type: MK64:PACKED_GFX + offset: 0x11FB +d_course_koopa_troopa_beach_packed_dl_3978: + symbol: d_course_koopa_troopa_beach_packed_dl_3978 + type: MK64:PACKED_GFX + offset: 0x122A +d_course_koopa_troopa_beach_packed_dl_39E8: + symbol: d_course_koopa_troopa_beach_packed_dl_39E8 + type: MK64:PACKED_GFX + offset: 0x1245 +d_course_koopa_troopa_beach_packed_dl_3AC8: + symbol: d_course_koopa_troopa_beach_packed_dl_3AC8 + type: MK64:PACKED_GFX + offset: 0x1283 +d_course_koopa_troopa_beach_packed_dl_3B40: + symbol: d_course_koopa_troopa_beach_packed_dl_3B40 + type: MK64:PACKED_GFX + offset: 0x12A3 +d_course_koopa_troopa_beach_packed_dl_3C38: + symbol: d_course_koopa_troopa_beach_packed_dl_3C38 + type: MK64:PACKED_GFX + offset: 0x12F0 +d_course_koopa_troopa_beach_packed_dl_3D00: + symbol: d_course_koopa_troopa_beach_packed_dl_3D00 + type: MK64:PACKED_GFX + offset: 0x131D +d_course_koopa_troopa_beach_packed_dl_3DE0: + symbol: d_course_koopa_troopa_beach_packed_dl_3DE0 + type: MK64:PACKED_GFX + offset: 0x1359 +d_course_koopa_troopa_beach_packed_dl_3ED8: + symbol: d_course_koopa_troopa_beach_packed_dl_3ED8 + type: MK64:PACKED_GFX + offset: 0x13A4 +d_course_koopa_troopa_beach_packed_dl_3F60: + symbol: d_course_koopa_troopa_beach_packed_dl_3F60 + type: MK64:PACKED_GFX + offset: 0x13CC +d_course_koopa_troopa_beach_packed_dl_4040: + symbol: d_course_koopa_troopa_beach_packed_dl_4040 + type: MK64:PACKED_GFX + offset: 0x1408 +d_course_koopa_troopa_beach_packed_dl_4120: + symbol: d_course_koopa_troopa_beach_packed_dl_4120 + type: MK64:PACKED_GFX + offset: 0x1444 +d_course_koopa_troopa_beach_packed_dl_4200: + symbol: d_course_koopa_troopa_beach_packed_dl_4200 + type: MK64:PACKED_GFX + offset: 0x1480 +d_course_koopa_troopa_beach_packed_dl_42E0: + symbol: d_course_koopa_troopa_beach_packed_dl_42E0 + type: MK64:PACKED_GFX + offset: 0x14BE +d_course_koopa_troopa_beach_packed_dl_43C0: + symbol: d_course_koopa_troopa_beach_packed_dl_43C0 + type: MK64:PACKED_GFX + offset: 0x14FA +d_course_koopa_troopa_beach_packed_dl_4490: + symbol: d_course_koopa_troopa_beach_packed_dl_4490 + type: MK64:PACKED_GFX + offset: 0x152C +d_course_koopa_troopa_beach_packed_dl_45C8: + symbol: d_course_koopa_troopa_beach_packed_dl_45C8 + type: MK64:PACKED_GFX + offset: 0x15BA +d_course_koopa_troopa_beach_packed_dl_46A8: + symbol: d_course_koopa_troopa_beach_packed_dl_46A8 + type: MK64:PACKED_GFX + offset: 0x15F6 +d_course_koopa_troopa_beach_packed_dl_4770: + symbol: d_course_koopa_troopa_beach_packed_dl_4770 + type: MK64:PACKED_GFX + offset: 0x1623 +d_course_koopa_troopa_beach_packed_dl_47E0: + symbol: d_course_koopa_troopa_beach_packed_dl_47E0 + type: MK64:PACKED_GFX + offset: 0x163E +d_course_koopa_troopa_beach_packed_dl_48B0: + symbol: d_course_koopa_troopa_beach_packed_dl_48B0 + type: MK64:PACKED_GFX + offset: 0x1672 +d_course_koopa_troopa_beach_packed_dl_4920: + symbol: d_course_koopa_troopa_beach_packed_dl_4920 + type: MK64:PACKED_GFX + offset: 0x168D +d_course_koopa_troopa_beach_packed_dl_4A08: + symbol: d_course_koopa_troopa_beach_packed_dl_4A08 + type: MK64:PACKED_GFX + offset: 0x16CC +d_course_koopa_troopa_beach_packed_dl_4AF0: + symbol: d_course_koopa_troopa_beach_packed_dl_4AF0 + type: MK64:PACKED_GFX + offset: 0x170D +d_course_koopa_troopa_beach_packed_dl_4BD0: + symbol: d_course_koopa_troopa_beach_packed_dl_4BD0 + type: MK64:PACKED_GFX + offset: 0x1749 +d_course_koopa_troopa_beach_packed_dl_4CC8: + symbol: d_course_koopa_troopa_beach_packed_dl_4CC8 + type: MK64:PACKED_GFX + offset: 0x1796 +d_course_koopa_troopa_beach_packed_dl_4DD8: + symbol: d_course_koopa_troopa_beach_packed_dl_4DD8 + type: MK64:PACKED_GFX + offset: 0x17FA +d_course_koopa_troopa_beach_packed_dl_4EA0: + symbol: d_course_koopa_troopa_beach_packed_dl_4EA0 + type: MK64:PACKED_GFX + offset: 0x1827 +d_course_koopa_troopa_beach_packed_dl_4F68: + symbol: d_course_koopa_troopa_beach_packed_dl_4F68 + type: MK64:PACKED_GFX + offset: 0x1854 +d_course_koopa_troopa_beach_packed_dl_5028: + symbol: d_course_koopa_troopa_beach_packed_dl_5028 + type: MK64:PACKED_GFX + offset: 0x187E +d_course_koopa_troopa_beach_packed_dl_50E8: + symbol: d_course_koopa_troopa_beach_packed_dl_50E8 + type: MK64:PACKED_GFX + offset: 0x18A8 +d_course_koopa_troopa_beach_packed_dl_51A0: + symbol: d_course_koopa_troopa_beach_packed_dl_51A0 + type: MK64:PACKED_GFX + offset: 0x18CD +d_course_koopa_troopa_beach_packed_dl_5250: + symbol: d_course_koopa_troopa_beach_packed_dl_5250 + type: MK64:PACKED_GFX + offset: 0x18ED +d_course_koopa_troopa_beach_packed_dl_5300: + symbol: d_course_koopa_troopa_beach_packed_dl_5300 + type: MK64:PACKED_GFX + offset: 0x190D +d_course_koopa_troopa_beach_packed_dl_53D8: + symbol: d_course_koopa_troopa_beach_packed_dl_53D8 + type: MK64:PACKED_GFX + offset: 0x1944 +d_course_koopa_troopa_beach_packed_dl_5488: + symbol: d_course_koopa_troopa_beach_packed_dl_5488 + type: MK64:PACKED_GFX + offset: 0x1964 +d_course_koopa_troopa_beach_packed_dl_54E8: + symbol: d_course_koopa_troopa_beach_packed_dl_54E8 + type: MK64:PACKED_GFX + offset: 0x1973 +d_course_koopa_troopa_beach_packed_dl_5598: + symbol: d_course_koopa_troopa_beach_packed_dl_5598 + type: MK64:PACKED_GFX + offset: 0x1993 +d_course_koopa_troopa_beach_packed_dl_55F8: + symbol: d_course_koopa_troopa_beach_packed_dl_55F8 + type: MK64:PACKED_GFX + offset: 0x19A4 +d_course_koopa_troopa_beach_packed_dl_56C8: + symbol: d_course_koopa_troopa_beach_packed_dl_56C8 + type: MK64:PACKED_GFX + offset: 0x19D6 +d_course_koopa_troopa_beach_packed_dl_5778: + symbol: d_course_koopa_troopa_beach_packed_dl_5778 + type: MK64:PACKED_GFX + offset: 0x19F6 +d_course_koopa_troopa_beach_packed_dl_5828: + symbol: d_course_koopa_troopa_beach_packed_dl_5828 + type: MK64:PACKED_GFX + offset: 0x1A16 +d_course_koopa_troopa_beach_packed_dl_58F8: + symbol: d_course_koopa_troopa_beach_packed_dl_58F8 + type: MK64:PACKED_GFX + offset: 0x1A48 +d_course_koopa_troopa_beach_packed_dl_5970: + symbol: d_course_koopa_troopa_beach_packed_dl_5970 + type: MK64:PACKED_GFX + offset: 0x1A66 +d_course_koopa_troopa_beach_packed_dl_5A38: + symbol: d_course_koopa_troopa_beach_packed_dl_5A38 + type: MK64:PACKED_GFX + offset: 0x1A93 +d_course_koopa_troopa_beach_packed_dl_5B00: + symbol: d_course_koopa_troopa_beach_packed_dl_5B00 + type: MK64:PACKED_GFX + offset: 0x1AC0 +d_course_koopa_troopa_beach_packed_dl_5BB8: + symbol: d_course_koopa_troopa_beach_packed_dl_5BB8 + type: MK64:PACKED_GFX + offset: 0x1AE5 +d_course_koopa_troopa_beach_packed_dl_5C88: + symbol: d_course_koopa_troopa_beach_packed_dl_5C88 + type: MK64:PACKED_GFX + offset: 0x1B19 +d_course_koopa_troopa_beach_packed_dl_5D50: + symbol: d_course_koopa_troopa_beach_packed_dl_5D50 + type: MK64:PACKED_GFX + offset: 0x1B46 +d_course_koopa_troopa_beach_packed_dl_5E08: + symbol: d_course_koopa_troopa_beach_packed_dl_5E08 + type: MK64:PACKED_GFX + offset: 0x1B69 +d_course_koopa_troopa_beach_packed_dl_5EB0: + symbol: d_course_koopa_troopa_beach_packed_dl_5EB0 + type: MK64:PACKED_GFX + offset: 0x1BA5 +d_course_koopa_troopa_beach_packed_dl_5F60: + symbol: d_course_koopa_troopa_beach_packed_dl_5F60 + type: MK64:PACKED_GFX + offset: 0x1BC5 +d_course_koopa_troopa_beach_packed_dl_6010: + symbol: d_course_koopa_troopa_beach_packed_dl_6010 + type: MK64:PACKED_GFX + offset: 0x1BE5 +d_course_koopa_troopa_beach_packed_dl_6078: + symbol: d_course_koopa_troopa_beach_packed_dl_6078 + type: MK64:PACKED_GFX + offset: 0x1BF9 +d_course_koopa_troopa_beach_packed_dl_6140: + symbol: d_course_koopa_troopa_beach_packed_dl_6140 + type: MK64:PACKED_GFX + offset: 0x1C26 +d_course_koopa_troopa_beach_packed_dl_61A0: + symbol: d_course_koopa_troopa_beach_packed_dl_61A0 + type: MK64:PACKED_GFX + offset: 0x1C37 +d_course_koopa_troopa_beach_packed_dl_6268: + symbol: d_course_koopa_troopa_beach_packed_dl_6268 + type: MK64:PACKED_GFX + offset: 0x1C64 +d_course_koopa_troopa_beach_packed_dl_6330: + symbol: d_course_koopa_troopa_beach_packed_dl_6330 + type: MK64:PACKED_GFX + offset: 0x1C91 +d_course_koopa_troopa_beach_packed_dl_63F8: + symbol: d_course_koopa_troopa_beach_packed_dl_63F8 + type: MK64:PACKED_GFX + offset: 0x1CC0 +d_course_koopa_troopa_beach_packed_dl_64C8: + symbol: d_course_koopa_troopa_beach_packed_dl_64C8 + type: MK64:PACKED_GFX + offset: 0x1CF4 +d_course_koopa_troopa_beach_packed_dl_65D8: + symbol: d_course_koopa_troopa_beach_packed_dl_65D8 + type: MK64:PACKED_GFX + offset: 0x1D58 +d_course_koopa_troopa_beach_packed_dl_6648: + symbol: d_course_koopa_troopa_beach_packed_dl_6648 + type: MK64:PACKED_GFX + offset: 0x1D73 +d_course_koopa_troopa_beach_packed_dl_66B0: + symbol: d_course_koopa_troopa_beach_packed_dl_66B0 + type: MK64:PACKED_GFX + offset: 0x1D87 +d_course_koopa_troopa_beach_packed_dl_6718: + symbol: d_course_koopa_troopa_beach_packed_dl_6718 + type: MK64:PACKED_GFX + offset: 0x1D9D +d_course_koopa_troopa_beach_packed_dl_67A0: + symbol: d_course_koopa_troopa_beach_packed_dl_67A0 + type: MK64:PACKED_GFX + offset: 0x1DC7 +d_course_koopa_troopa_beach_packed_dl_6810: + symbol: d_course_koopa_troopa_beach_packed_dl_6810 + type: MK64:PACKED_GFX + offset: 0x1DE2 +d_course_koopa_troopa_beach_packed_dl_68C0: + symbol: d_course_koopa_troopa_beach_packed_dl_68C0 + type: MK64:PACKED_GFX + offset: 0x1E02 +d_course_koopa_troopa_beach_packed_dl_6938: + symbol: d_course_koopa_troopa_beach_packed_dl_6938 + type: MK64:PACKED_GFX + offset: 0x1E22 +d_course_koopa_troopa_beach_packed_dl_6998: + symbol: d_course_koopa_troopa_beach_packed_dl_6998 + type: MK64:PACKED_GFX + offset: 0x1E33 +d_course_koopa_troopa_beach_packed_dl_69F8: + symbol: d_course_koopa_troopa_beach_packed_dl_69F8 + type: MK64:PACKED_GFX + offset: 0x1E44 +d_course_koopa_troopa_beach_packed_dl_6A68: + symbol: d_course_koopa_troopa_beach_packed_dl_6A68 + type: MK64:PACKED_GFX + offset: 0x1E5D +d_course_koopa_troopa_beach_packed_dl_6AD0: + symbol: d_course_koopa_troopa_beach_packed_dl_6AD0 + type: MK64:PACKED_GFX + offset: 0x1E71 +d_course_koopa_troopa_beach_packed_dl_6B30: + symbol: d_course_koopa_troopa_beach_packed_dl_6B30 + type: MK64:PACKED_GFX + offset: 0x1E82 +d_course_koopa_troopa_beach_packed_dl_6BE8: + symbol: d_course_koopa_troopa_beach_packed_dl_6BE8 + type: MK64:PACKED_GFX + offset: 0x1EA7 +d_course_koopa_troopa_beach_packed_dl_6D70: + symbol: d_course_koopa_troopa_beach_packed_dl_6D70 + type: MK64:PACKED_GFX + offset: 0x1F2D +d_course_koopa_troopa_beach_packed_dl_6DE8: + symbol: d_course_koopa_troopa_beach_packed_dl_6DE8 + type: MK64:PACKED_GFX + offset: 0x1F4D +d_course_koopa_troopa_beach_packed_dl_6EB8: + symbol: d_course_koopa_troopa_beach_packed_dl_6EB8 + type: MK64:PACKED_GFX + offset: 0x1F7D +d_course_koopa_troopa_beach_packed_dl_6F30: + symbol: d_course_koopa_troopa_beach_packed_dl_6F30 + type: MK64:PACKED_GFX + offset: 0x1F9B +d_course_koopa_troopa_beach_packed_dl_6FA0: + symbol: d_course_koopa_troopa_beach_packed_dl_6FA0 + type: MK64:PACKED_GFX + offset: 0x1FB6 +d_course_koopa_troopa_beach_packed_dl_7000: + symbol: d_course_koopa_troopa_beach_packed_dl_7000 + type: MK64:PACKED_GFX + offset: 0x1FC7 +d_course_koopa_troopa_beach_packed_dl_70A0: + symbol: d_course_koopa_troopa_beach_packed_dl_70A0 + type: MK64:PACKED_GFX + offset: 0x1FFA +d_course_koopa_troopa_beach_packed_dl_7120: + symbol: d_course_koopa_troopa_beach_packed_dl_7120 + type: MK64:PACKED_GFX + offset: 0x201F +d_course_koopa_troopa_beach_packed_dl_7188: + symbol: d_course_koopa_troopa_beach_packed_dl_7188 + type: MK64:PACKED_GFX + offset: 0x2033 +d_course_koopa_troopa_beach_packed_dl_71F0: + symbol: d_course_koopa_troopa_beach_packed_dl_71F0 + type: MK64:PACKED_GFX + offset: 0x2049 +d_course_koopa_troopa_beach_packed_dl_7260: + symbol: d_course_koopa_troopa_beach_packed_dl_7260 + type: MK64:PACKED_GFX + offset: 0x2064 +d_course_koopa_troopa_beach_packed_dl_72D0: + symbol: d_course_koopa_troopa_beach_packed_dl_72D0 + type: MK64:PACKED_GFX + offset: 0x207F +d_course_koopa_troopa_beach_packed_dl_7358: + symbol: d_course_koopa_troopa_beach_packed_dl_7358 + type: MK64:PACKED_GFX + offset: 0x20A7 +d_course_koopa_troopa_beach_packed_dl_7430: + symbol: d_course_koopa_troopa_beach_packed_dl_7430 + type: MK64:PACKED_GFX + offset: 0x20F6 +d_course_koopa_troopa_beach_packed_dl_7538: + symbol: d_course_koopa_troopa_beach_packed_dl_7538 + type: MK64:PACKED_GFX + offset: 0x2166 +d_course_koopa_troopa_beach_packed_dl_7608: + symbol: d_course_koopa_troopa_beach_packed_dl_7608 + type: MK64:PACKED_GFX + offset: 0x21B5 +d_course_koopa_troopa_beach_packed_dl_76A0: + symbol: d_course_koopa_troopa_beach_packed_dl_76A0 + type: MK64:PACKED_GFX + offset: 0x21E3 +d_course_koopa_troopa_beach_packed_dl_76C0: + symbol: d_course_koopa_troopa_beach_packed_dl_76C0 + type: MK64:PACKED_GFX + offset: 0x21ED +d_course_koopa_troopa_beach_packed_dl_7740: + symbol: d_course_koopa_troopa_beach_packed_dl_7740 + type: MK64:PACKED_GFX + offset: 0x2212 +d_course_koopa_troopa_beach_packed_dl_7810: + symbol: d_course_koopa_troopa_beach_packed_dl_7810 + type: MK64:PACKED_GFX + offset: 0x2261 +d_course_koopa_troopa_beach_packed_dl_78E0: + symbol: d_course_koopa_troopa_beach_packed_dl_78E0 + type: MK64:PACKED_GFX + offset: 0x22AE +d_course_koopa_troopa_beach_packed_dl_7970: + symbol: d_course_koopa_troopa_beach_packed_dl_7970 + type: MK64:PACKED_GFX + offset: 0x22D9 +d_course_koopa_troopa_beach_packed_dl_7A98: + symbol: d_course_koopa_troopa_beach_packed_dl_7A98 + type: MK64:PACKED_GFX + offset: 0x2325 +d_course_koopa_troopa_beach_packed_dl_7DB0: + symbol: d_course_koopa_troopa_beach_packed_dl_7DB0 + type: MK64:PACKED_GFX + offset: 0x2491 +d_course_koopa_troopa_beach_packed_dl_7E48: + symbol: d_course_koopa_troopa_beach_packed_dl_7E48 + type: MK64:PACKED_GFX + offset: 0x24C3 +d_course_koopa_troopa_beach_packed_dl_7EE0: + symbol: d_course_koopa_troopa_beach_packed_dl_7EE0 + type: MK64:PACKED_GFX + offset: 0x24F5 +d_course_koopa_troopa_beach_packed_dl_7F70: + symbol: d_course_koopa_troopa_beach_packed_dl_7F70 + type: MK64:PACKED_GFX + offset: 0x2522 +d_course_koopa_troopa_beach_packed_dl_8028: + symbol: d_course_koopa_troopa_beach_packed_dl_8028 + type: MK64:PACKED_GFX + offset: 0x2566 +d_course_koopa_troopa_beach_packed_dl_80F8: + symbol: d_course_koopa_troopa_beach_packed_dl_80F8 + type: MK64:PACKED_GFX + offset: 0x25B5 +d_course_koopa_troopa_beach_packed_dl_8200: + symbol: d_course_koopa_troopa_beach_packed_dl_8200 + type: MK64:PACKED_GFX + offset: 0x2629 +d_course_koopa_troopa_beach_packed_dl_82D8: + symbol: d_course_koopa_troopa_beach_packed_dl_82D8 + type: MK64:PACKED_GFX + offset: 0x267F +d_course_koopa_troopa_beach_packed_dl_8360: + symbol: d_course_koopa_troopa_beach_packed_dl_8360 + type: MK64:PACKED_GFX + offset: 0x26A7 +d_course_koopa_troopa_beach_packed_dl_8468: + symbol: d_course_koopa_troopa_beach_packed_dl_8468 + type: MK64:PACKED_GFX + offset: 0x26F8 +d_course_koopa_troopa_beach_packed_dl_8510: + symbol: d_course_koopa_troopa_beach_packed_dl_8510 + type: MK64:PACKED_GFX + offset: 0x2730 +d_course_koopa_troopa_beach_packed_dl_85C0: + symbol: d_course_koopa_troopa_beach_packed_dl_85C0 + type: MK64:PACKED_GFX + offset: 0x276F +d_course_koopa_troopa_beach_packed_dl_86B0: + symbol: d_course_koopa_troopa_beach_packed_dl_86B0 + type: MK64:PACKED_GFX + offset: 0x27A0 +d_course_koopa_troopa_beach_packed_dl_8740: + symbol: d_course_koopa_troopa_beach_packed_dl_8740 + type: MK64:PACKED_GFX + offset: 0x27CD +d_course_koopa_troopa_beach_packed_dl_87E0: + symbol: d_course_koopa_troopa_beach_packed_dl_87E0 + type: MK64:PACKED_GFX + offset: 0x2800 +d_course_koopa_troopa_beach_packed_dl_8870: + symbol: d_course_koopa_troopa_beach_packed_dl_8870 + type: MK64:PACKED_GFX + offset: 0x282B +d_course_koopa_troopa_beach_packed_dl_8918: + symbol: d_course_koopa_troopa_beach_packed_dl_8918 + type: MK64:PACKED_GFX + offset: 0x2867 +d_course_koopa_troopa_beach_packed_dl_8980: + symbol: d_course_koopa_troopa_beach_packed_dl_8980 + type: MK64:PACKED_GFX + offset: 0x287D +d_course_koopa_troopa_beach_packed_dl_8A90: + symbol: d_course_koopa_troopa_beach_packed_dl_8A90 + type: MK64:PACKED_GFX + offset: 0x28EE +d_course_koopa_troopa_beach_packed_dl_8C18: + symbol: d_course_koopa_troopa_beach_packed_dl_8C18 + type: MK64:PACKED_GFX + offset: 0x29A8 +d_course_koopa_troopa_beach_packed_dl_8D08: + symbol: d_course_koopa_troopa_beach_packed_dl_8D08 + type: MK64:PACKED_GFX + offset: 0x2A0B +d_course_koopa_troopa_beach_packed_dl_8DB0: + symbol: d_course_koopa_troopa_beach_packed_dl_8DB0 + type: MK64:PACKED_GFX + offset: 0x2A47 +d_course_koopa_troopa_beach_packed_dl_8E50: + symbol: d_course_koopa_troopa_beach_packed_dl_8E50 + type: MK64:PACKED_GFX + offset: 0x2A7C +d_course_koopa_troopa_beach_packed_dl_8EE0: + symbol: d_course_koopa_troopa_beach_packed_dl_8EE0 + type: MK64:PACKED_GFX + offset: 0x2AA7 +d_course_koopa_troopa_beach_packed_dl_8F58: + symbol: d_course_koopa_troopa_beach_packed_dl_8F58 + type: MK64:PACKED_GFX + offset: 0x2AC5 +d_course_koopa_troopa_beach_packed_dl_8FD0: + symbol: d_course_koopa_troopa_beach_packed_dl_8FD0 + type: MK64:PACKED_GFX + offset: 0x2AE3 +d_course_koopa_troopa_beach_packed_dl_9080: + symbol: d_course_koopa_troopa_beach_packed_dl_9080 + type: MK64:PACKED_GFX + offset: 0x2B0B +d_course_koopa_troopa_beach_packed_dl_9188: + symbol: d_course_koopa_troopa_beach_packed_dl_9188 + type: MK64:PACKED_GFX + offset: 0x2B6C +d_course_koopa_troopa_beach_packed_dl_9228: + symbol: d_course_koopa_troopa_beach_packed_dl_9228 + type: MK64:PACKED_GFX + offset: 0x2B8E +d_course_koopa_troopa_beach_packed_dl_92C8: + symbol: d_course_koopa_troopa_beach_packed_dl_92C8 + type: MK64:PACKED_GFX + offset: 0x2BB0 +d_course_koopa_troopa_beach_packed_dl_9368: + symbol: d_course_koopa_troopa_beach_packed_dl_9368 + type: MK64:PACKED_GFX + offset: 0x2BD2 +d_course_koopa_troopa_beach_packed_dl_9408: + symbol: d_course_koopa_troopa_beach_packed_dl_9408 + type: MK64:PACKED_GFX + offset: 0x2BF4 +d_course_koopa_troopa_beach_packed_dl_94A8: + symbol: d_course_koopa_troopa_beach_packed_dl_94A8 + type: MK64:PACKED_GFX + offset: 0x2C16 +d_course_koopa_troopa_beach_packed_dl_9548: + symbol: d_course_koopa_troopa_beach_packed_dl_9548 + type: MK64:PACKED_GFX + offset: 0x2C38 +d_course_koopa_troopa_beach_packed_dl_95E8: + symbol: d_course_koopa_troopa_beach_packed_dl_95E8 + type: MK64:PACKED_GFX + offset: 0x2C5A +d_course_koopa_troopa_beach_packed_dl_9688: + symbol: d_course_koopa_troopa_beach_packed_dl_9688 + type: MK64:PACKED_GFX + offset: 0x2C7C +d_course_koopa_troopa_beach_packed_dl_96D0: + symbol: d_course_koopa_troopa_beach_packed_dl_96D0 + type: MK64:PACKED_GFX + offset: 0x2C95 +d_course_koopa_troopa_beach_packed_dl_9800: + symbol: d_course_koopa_troopa_beach_packed_dl_9800 + type: MK64:PACKED_GFX + offset: 0x2CFF +d_course_koopa_troopa_beach_packed_dl_9930: + symbol: d_course_koopa_troopa_beach_packed_dl_9930 + type: MK64:PACKED_GFX + offset: 0x2D69 +d_course_koopa_troopa_beach_packed_dl_9A30: + symbol: d_course_koopa_troopa_beach_packed_dl_9A30 + type: MK64:PACKED_GFX + offset: 0x2DD8 +d_course_koopa_troopa_beach_packed_dl_9B20: + symbol: d_course_koopa_troopa_beach_packed_dl_9B20 + type: MK64:PACKED_GFX + offset: 0x2E3B +d_course_koopa_troopa_beach_packed_dl_9B48: + symbol: d_course_koopa_troopa_beach_packed_dl_9B48 + type: MK64:PACKED_GFX + offset: 0x2E48 +d_course_koopa_troopa_beach_packed_dl_9B78: + symbol: d_course_koopa_troopa_beach_packed_dl_9B78 + type: MK64:PACKED_GFX + offset: 0x2E5C +d_course_koopa_troopa_beach_packed_dl_9B88: + symbol: d_course_koopa_troopa_beach_packed_dl_9B88 + type: MK64:PACKED_GFX + offset: 0x2E60 +d_course_koopa_troopa_beach_packed_dl_9CC0: + symbol: d_course_koopa_troopa_beach_packed_dl_9CC0 + type: MK64:PACKED_GFX + offset: 0x2F15 +d_course_koopa_troopa_beach_packed_dl_9CD0: + symbol: d_course_koopa_troopa_beach_packed_dl_9CD0 + type: MK64:PACKED_GFX + offset: 0x2F19 +d_course_koopa_troopa_beach_packed_dl_9D58: + symbol: d_course_koopa_troopa_beach_packed_dl_9D58 + type: MK64:PACKED_GFX + offset: 0x2F41 +d_course_koopa_troopa_beach_packed_dl_9E70: + symbol: d_course_koopa_troopa_beach_packed_dl_9E70 + type: MK64:PACKED_GFX + offset: 0x2FC3 +d_course_koopa_troopa_beach_packed_dl_9E88: + symbol: d_course_koopa_troopa_beach_packed_dl_9E88 + type: MK64:PACKED_GFX + offset: 0x2FCA +d_course_koopa_troopa_beach_packed_dl_9EC0: + symbol: d_course_koopa_troopa_beach_packed_dl_9EC0 + type: MK64:PACKED_GFX + offset: 0x2FE3 +d_course_koopa_troopa_beach_packed_dl_9EF8: + symbol: d_course_koopa_troopa_beach_packed_dl_9EF8 + type: MK64:PACKED_GFX + offset: 0x2FFA +d_course_koopa_troopa_beach_packed_dl_9F30: + symbol: d_course_koopa_troopa_beach_packed_dl_9F30 + type: MK64:PACKED_GFX + offset: 0x3013 +d_course_koopa_troopa_beach_packed_dl_9F68: + symbol: d_course_koopa_troopa_beach_packed_dl_9F68 + type: MK64:PACKED_GFX + offset: 0x302A +d_course_koopa_troopa_beach_packed_dl_9FA0: + symbol: d_course_koopa_troopa_beach_packed_dl_9FA0 + type: MK64:PACKED_GFX + offset: 0x3041 +d_course_koopa_troopa_beach_packed_dl_9FC8: + symbol: d_course_koopa_troopa_beach_packed_dl_9FC8 + type: MK64:PACKED_GFX + offset: 0x304E +d_course_koopa_troopa_beach_packed_dl_9FF0: + symbol: d_course_koopa_troopa_beach_packed_dl_9FF0 + type: MK64:PACKED_GFX + offset: 0x305D +d_course_koopa_troopa_beach_packed_dl_A020: + symbol: d_course_koopa_troopa_beach_packed_dl_A020 + type: MK64:PACKED_GFX + offset: 0x3071 +d_course_koopa_troopa_beach_packed_dl_A080: + symbol: d_course_koopa_troopa_beach_packed_dl_A080 + type: MK64:PACKED_GFX + offset: 0x309D +d_course_koopa_troopa_beach_packed_dl_A0B0: + symbol: d_course_koopa_troopa_beach_packed_dl_A0B0 + type: MK64:PACKED_GFX + offset: 0x30B1 +d_course_koopa_troopa_beach_packed_dl_A0E8: + symbol: d_course_koopa_troopa_beach_packed_dl_A0E8 + type: MK64:PACKED_GFX + offset: 0x30CA +d_course_koopa_troopa_beach_packed_dl_A128: + symbol: d_course_koopa_troopa_beach_packed_dl_A128 + type: MK64:PACKED_GFX + offset: 0x30E8 +d_course_koopa_troopa_beach_packed_dl_A158: + symbol: d_course_koopa_troopa_beach_packed_dl_A158 + type: MK64:PACKED_GFX + offset: 0x30FA +d_course_koopa_troopa_beach_packed_dl_A190: + symbol: d_course_koopa_troopa_beach_packed_dl_A190 + type: MK64:PACKED_GFX + offset: 0x3111 +d_course_koopa_troopa_beach_packed_dl_A1D0: + symbol: d_course_koopa_troopa_beach_packed_dl_A1D0 + type: MK64:PACKED_GFX + offset: 0x312D +d_course_koopa_troopa_beach_packed_dl_A210: + symbol: d_course_koopa_troopa_beach_packed_dl_A210 + type: MK64:PACKED_GFX + offset: 0x3149 +d_course_koopa_troopa_beach_packed_dl_A240: + symbol: d_course_koopa_troopa_beach_packed_dl_A240 + type: MK64:PACKED_GFX + offset: 0x315D +d_course_koopa_troopa_beach_packed_dl_A278: + symbol: d_course_koopa_troopa_beach_packed_dl_A278 + type: MK64:PACKED_GFX + offset: 0x3176 +d_course_koopa_troopa_beach_packed_dl_A2B0: + symbol: d_course_koopa_troopa_beach_packed_dl_A2B0 + type: MK64:PACKED_GFX + offset: 0x318D +d_course_koopa_troopa_beach_packed_dl_A2E8: + symbol: d_course_koopa_troopa_beach_packed_dl_A2E8 + type: MK64:PACKED_GFX + offset: 0x31A4 +d_course_koopa_troopa_beach_packed_dl_A320: + symbol: d_course_koopa_troopa_beach_packed_dl_A320 + type: MK64:PACKED_GFX + offset: 0x31BD +d_course_koopa_troopa_beach_packed_dl_A350: + symbol: d_course_koopa_troopa_beach_packed_dl_A350 + type: MK64:PACKED_GFX + offset: 0x31D1 +d_course_koopa_troopa_beach_packed_dl_A388: + symbol: d_course_koopa_troopa_beach_packed_dl_A388 + type: MK64:PACKED_GFX + offset: 0x31E8 +d_course_koopa_troopa_beach_packed_dl_A3C8: + symbol: d_course_koopa_troopa_beach_packed_dl_A3C8 + type: MK64:PACKED_GFX + offset: 0x3204 +d_course_koopa_troopa_beach_packed_dl_A400: + symbol: d_course_koopa_troopa_beach_packed_dl_A400 + type: MK64:PACKED_GFX + offset: 0x321D +d_course_koopa_troopa_beach_packed_dl_A438: + symbol: d_course_koopa_troopa_beach_packed_dl_A438 + type: MK64:PACKED_GFX + offset: 0x3234 +d_course_koopa_troopa_beach_packed_dl_A470: + symbol: d_course_koopa_troopa_beach_packed_dl_A470 + type: MK64:PACKED_GFX + offset: 0x324B +d_course_koopa_troopa_beach_packed_dl_A4A0: + symbol: d_course_koopa_troopa_beach_packed_dl_A4A0 + type: MK64:PACKED_GFX + offset: 0x325F +d_course_koopa_troopa_beach_packed_dl_A4D0: + symbol: d_course_koopa_troopa_beach_packed_dl_A4D0 + type: MK64:PACKED_GFX + offset: 0x3273 +d_course_koopa_troopa_beach_packed_dl_A508: + symbol: d_course_koopa_troopa_beach_packed_dl_A508 + type: MK64:PACKED_GFX + offset: 0x328C +d_course_koopa_troopa_beach_packed_dl_A540: + symbol: d_course_koopa_troopa_beach_packed_dl_A540 + type: MK64:PACKED_GFX + offset: 0x32A3 +d_course_koopa_troopa_beach_packed_dl_A640: + symbol: d_course_koopa_troopa_beach_packed_dl_A640 + type: MK64:PACKED_GFX + offset: 0x3301 +d_course_koopa_troopa_beach_packed_dl_A668: + symbol: d_course_koopa_troopa_beach_packed_dl_A668 + type: MK64:PACKED_GFX + offset: 0x330E +d_course_koopa_troopa_beach_packed_dl_A690: + symbol: d_course_koopa_troopa_beach_packed_dl_A690 + type: MK64:PACKED_GFX + offset: 0x331B +d_course_koopa_troopa_beach_packed_dl_A6B8: + symbol: d_course_koopa_troopa_beach_packed_dl_A6B8 + type: MK64:PACKED_GFX + offset: 0x332A +d_course_koopa_troopa_beach_packed_dl_A6E0: + symbol: d_course_koopa_troopa_beach_packed_dl_A6E0 + type: MK64:PACKED_GFX + offset: 0x3337 +d_course_koopa_troopa_beach_packed_dl_A708: + symbol: d_course_koopa_troopa_beach_packed_dl_A708 + type: MK64:PACKED_GFX + offset: 0x3346 +d_course_koopa_troopa_beach_packed_dl_A738: + symbol: d_course_koopa_troopa_beach_packed_dl_A738 + type: MK64:PACKED_GFX + offset: 0x335A +d_course_koopa_troopa_beach_packed_dl_A760: + symbol: d_course_koopa_troopa_beach_packed_dl_A760 + type: MK64:PACKED_GFX + offset: 0x3369 +d_course_koopa_troopa_beach_packed_dl_A798: + symbol: d_course_koopa_troopa_beach_packed_dl_A798 + type: MK64:PACKED_GFX + offset: 0x3380 +d_course_koopa_troopa_beach_packed_dl_A7C0: + symbol: d_course_koopa_troopa_beach_packed_dl_A7C0 + type: MK64:PACKED_GFX + offset: 0x338D +d_course_koopa_troopa_beach_packed_dl_A7E0: + symbol: d_course_koopa_troopa_beach_packed_dl_A7E0 + type: MK64:PACKED_GFX + offset: 0x3397 +d_course_koopa_troopa_beach_packed_dl_A810: + symbol: d_course_koopa_troopa_beach_packed_dl_A810 + type: MK64:PACKED_GFX + offset: 0x33A9 +d_course_koopa_troopa_beach_packed_dl_A838: + symbol: d_course_koopa_troopa_beach_packed_dl_A838 + type: MK64:PACKED_GFX + offset: 0x33B6 +d_course_koopa_troopa_beach_packed_dl_A868: + symbol: d_course_koopa_troopa_beach_packed_dl_A868 + type: MK64:PACKED_GFX + offset: 0x33C8 +d_course_koopa_troopa_beach_packed_dl_A890: + symbol: d_course_koopa_troopa_beach_packed_dl_A890 + type: MK64:PACKED_GFX + offset: 0x33D7 +d_course_koopa_troopa_beach_packed_dl_A8C0: + symbol: d_course_koopa_troopa_beach_packed_dl_A8C0 + type: MK64:PACKED_GFX + offset: 0x33E9 +d_course_koopa_troopa_beach_packed_dl_A8E0: + symbol: d_course_koopa_troopa_beach_packed_dl_A8E0 + type: MK64:PACKED_GFX + offset: 0x33F3 +d_course_koopa_troopa_beach_packed_dl_A908: + symbol: d_course_koopa_troopa_beach_packed_dl_A908 + type: MK64:PACKED_GFX + offset: 0x3400 +d_course_koopa_troopa_beach_packed_dl_A930: + symbol: d_course_koopa_troopa_beach_packed_dl_A930 + type: MK64:PACKED_GFX + offset: 0x340F +d_course_koopa_troopa_beach_packed_dl_A990: + symbol: d_course_koopa_troopa_beach_packed_dl_A990 + type: MK64:PACKED_GFX + offset: 0x343F +d_course_koopa_troopa_beach_packed_dl_A9F0: + symbol: d_course_koopa_troopa_beach_packed_dl_A9F0 + type: MK64:PACKED_GFX + offset: 0x346D +d_course_koopa_troopa_beach_packed_dl_AA48: + symbol: d_course_koopa_troopa_beach_packed_dl_AA48 + type: MK64:PACKED_GFX + offset: 0x3496 +d_course_koopa_troopa_beach_packed_dl_AAB0: + symbol: d_course_koopa_troopa_beach_packed_dl_AAB0 + type: MK64:PACKED_GFX + offset: 0x34C7 +d_course_koopa_troopa_beach_packed_dl_AB08: + symbol: d_course_koopa_troopa_beach_packed_dl_AB08 + type: MK64:PACKED_GFX + offset: 0x34F0 +d_course_koopa_troopa_beach_packed_dl_AB68: + symbol: d_course_koopa_troopa_beach_packed_dl_AB68 + type: MK64:PACKED_GFX + offset: 0x3520 +d_course_koopa_troopa_beach_packed_dl_ABD0: + symbol: d_course_koopa_troopa_beach_packed_dl_ABD0 + type: MK64:PACKED_GFX + offset: 0x3551 +d_course_koopa_troopa_beach_packed_dl_AC40: + symbol: d_course_koopa_troopa_beach_packed_dl_AC40 + type: MK64:PACKED_GFX + offset: 0x3587 +d_course_koopa_troopa_beach_packed_dl_ACB0: + symbol: d_course_koopa_troopa_beach_packed_dl_ACB0 + type: MK64:PACKED_GFX + offset: 0x35BD +d_course_koopa_troopa_beach_packed_dl_ACD8: + symbol: d_course_koopa_troopa_beach_packed_dl_ACD8 + type: MK64:PACKED_GFX + offset: 0x35CA +d_course_koopa_troopa_beach_packed_dl_AD00: + symbol: d_course_koopa_troopa_beach_packed_dl_AD00 + type: MK64:PACKED_GFX + offset: 0x35D9 +d_course_koopa_troopa_beach_packed_dl_AD28: + symbol: d_course_koopa_troopa_beach_packed_dl_AD28 + type: MK64:PACKED_GFX + offset: 0x35E6 +d_course_koopa_troopa_beach_packed_dl_AD50: + symbol: d_course_koopa_troopa_beach_packed_dl_AD50 + type: MK64:PACKED_GFX + offset: 0x35F5 +d_course_koopa_troopa_beach_packed_dl_AD78: + symbol: d_course_koopa_troopa_beach_packed_dl_AD78 + type: MK64:PACKED_GFX + offset: 0x3602 +d_course_koopa_troopa_beach_packed_dl_ADB8: + symbol: d_course_koopa_troopa_beach_packed_dl_ADB8 + type: MK64:PACKED_GFX + offset: 0x361E +d_course_koopa_troopa_beach_packed_dl_ADE0: + symbol: d_course_koopa_troopa_beach_packed_dl_ADE0 + type: MK64:PACKED_GFX + offset: 0x362B +d_course_koopa_troopa_beach_packed_dl_AEF8: + symbol: d_course_koopa_troopa_beach_packed_dl_AEF8 + type: MK64:PACKED_GFX + offset: 0x3692 +d_course_koopa_troopa_beach_packed_dl_AFC8: + symbol: d_course_koopa_troopa_beach_packed_dl_AFC8 + type: MK64:PACKED_GFX + offset: 0x36C4 +d_course_koopa_troopa_beach_packed_dl_B0A0: + symbol: d_course_koopa_troopa_beach_packed_dl_B0A0 + type: MK64:PACKED_GFX + offset: 0x36FB +d_course_koopa_troopa_beach_packed_dl_B168: + symbol: d_course_koopa_troopa_beach_packed_dl_B168 + type: MK64:PACKED_GFX + offset: 0x3747 +d_course_koopa_troopa_beach_packed_dl_B208: + symbol: d_course_koopa_troopa_beach_packed_dl_B208 + type: MK64:PACKED_GFX + offset: 0x377A +d_course_koopa_troopa_beach_packed_dl_B230: + symbol: d_course_koopa_troopa_beach_packed_dl_B230 + type: MK64:PACKED_GFX + offset: 0x3787 +d_course_koopa_troopa_beach_packed_dl_B2B0: + symbol: d_course_koopa_troopa_beach_packed_dl_B2B0 + type: MK64:PACKED_GFX + offset: 0x37B5 +d_course_koopa_troopa_beach_packed_dl_B2C0: + symbol: d_course_koopa_troopa_beach_packed_dl_B2C0 + type: MK64:PACKED_GFX + offset: 0x37B9 diff --git a/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices.yml b/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices.yml new file mode 100644 index 000000000..d8594354f --- /dev/null +++ b/yamls/us/models/tracks/koopa_troopa_beach/koopa_troopa_beach_vertices.yml @@ -0,0 +1,3075 @@ +:config: + segments: + - [0x0F, 0x8D8E50] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_koopa_troopa_beach_vertex_0x04000000: + symbol: d_course_koopa_troopa_beach_vertex_0x04000000 + type: mk64:course_vtx + count: 4 + offset: 0x0 + +d_course_koopa_troopa_beach_vertex_0x04000040: + symbol: d_course_koopa_troopa_beach_vertex_0x04000040 + type: mk64:course_vtx + count: 4 + offset: 0x38 + +d_course_koopa_troopa_beach_vertex_0x04000080: + symbol: d_course_koopa_troopa_beach_vertex_0x04000080 + type: mk64:course_vtx + count: 4 + offset: 0x70 + +d_course_koopa_troopa_beach_vertex_0x040000C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040000C0 + type: mk64:course_vtx + count: 4 + offset: 0xa8 + +d_course_koopa_troopa_beach_vertex_0x04000100: + symbol: d_course_koopa_troopa_beach_vertex_0x04000100 + type: mk64:course_vtx + count: 4 + offset: 0xe0 + +d_course_koopa_troopa_beach_vertex_0x04000140: + symbol: d_course_koopa_troopa_beach_vertex_0x04000140 + type: mk64:course_vtx + count: 4 + offset: 0x118 + +d_course_koopa_troopa_beach_vertex_0x04000180: + symbol: d_course_koopa_troopa_beach_vertex_0x04000180 + type: mk64:course_vtx + count: 4 + offset: 0x150 + +d_course_koopa_troopa_beach_vertex_0x040001C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040001C0 + type: mk64:course_vtx + count: 4 + offset: 0x188 + +d_course_koopa_troopa_beach_vertex_0x04000200: + symbol: d_course_koopa_troopa_beach_vertex_0x04000200 + type: mk64:course_vtx + count: 18 + offset: 0x1c0 + +d_course_koopa_troopa_beach_vertex_0x040002C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040002C0 + type: mk64:course_vtx + count: 50 + offset: 0x268 + +d_course_koopa_troopa_beach_vertex_0x040004C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040004C0 + type: mk64:course_vtx + count: 33 + offset: 0x428 + +d_course_koopa_troopa_beach_vertex_0x04000610: + symbol: d_course_koopa_troopa_beach_vertex_0x04000610 + type: mk64:course_vtx + count: 49 + offset: 0x54e + +d_course_koopa_troopa_beach_vertex_0x04000800: + symbol: d_course_koopa_troopa_beach_vertex_0x04000800 + type: mk64:course_vtx + count: 50 + offset: 0x700 + +d_course_koopa_troopa_beach_vertex_0x04000A00: + symbol: d_course_koopa_troopa_beach_vertex_0x04000A00 + type: mk64:course_vtx + count: 6 + offset: 0x8c0 + +d_course_koopa_troopa_beach_vertex_0x04000A60: + symbol: d_course_koopa_troopa_beach_vertex_0x04000A60 + type: mk64:course_vtx + count: 49 + offset: 0x914 + +d_course_koopa_troopa_beach_vertex_0x04000C50: + symbol: d_course_koopa_troopa_beach_vertex_0x04000C50 + type: mk64:course_vtx + count: 50 + offset: 0xac6 + +d_course_koopa_troopa_beach_vertex_0x04000E50: + symbol: d_course_koopa_troopa_beach_vertex_0x04000E50 + type: mk64:course_vtx + count: 38 + offset: 0xc86 + +d_course_koopa_troopa_beach_vertex_0x04000FF0: + symbol: d_course_koopa_troopa_beach_vertex_0x04000FF0 + type: mk64:course_vtx + count: 50 + offset: 0xdf2 + +d_course_koopa_troopa_beach_vertex_0x040011F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040011F0 + type: mk64:course_vtx + count: 49 + offset: 0xfb2 + +d_course_koopa_troopa_beach_vertex_0x040013E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040013E0 + type: mk64:course_vtx + count: 48 + offset: 0x1164 + +d_course_koopa_troopa_beach_vertex_0x040015C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040015C0 + type: mk64:course_vtx + count: 21 + offset: 0x1308 + +d_course_koopa_troopa_beach_vertex_0x040016B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040016B0 + type: mk64:course_vtx + count: 48 + offset: 0x13da + +d_course_koopa_troopa_beach_vertex_0x04001890: + symbol: d_course_koopa_troopa_beach_vertex_0x04001890 + type: mk64:course_vtx + count: 49 + offset: 0x157e + +d_course_koopa_troopa_beach_vertex_0x04001A80: + symbol: d_course_koopa_troopa_beach_vertex_0x04001A80 + type: mk64:course_vtx + count: 7 + offset: 0x1730 + +d_course_koopa_troopa_beach_vertex_0x04001AF0: + symbol: d_course_koopa_troopa_beach_vertex_0x04001AF0 + type: mk64:course_vtx + count: 50 + offset: 0x1792 + +d_course_koopa_troopa_beach_vertex_0x04001CF0: + symbol: d_course_koopa_troopa_beach_vertex_0x04001CF0 + type: mk64:course_vtx + count: 48 + offset: 0x1952 + +d_course_koopa_troopa_beach_vertex_0x04001ED0: + symbol: d_course_koopa_troopa_beach_vertex_0x04001ED0 + type: mk64:course_vtx + count: 3 + offset: 0x1af6 + +d_course_koopa_troopa_beach_vertex_0x04001F00: + symbol: d_course_koopa_troopa_beach_vertex_0x04001F00 + type: mk64:course_vtx + count: 50 + offset: 0x1b20 + +d_course_koopa_troopa_beach_vertex_0x04002100: + symbol: d_course_koopa_troopa_beach_vertex_0x04002100 + type: mk64:course_vtx + count: 49 + offset: 0x1ce0 + +d_course_koopa_troopa_beach_vertex_0x040022F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040022F0 + type: mk64:course_vtx + count: 6 + offset: 0x1e92 + +d_course_koopa_troopa_beach_vertex_0x04002350: + symbol: d_course_koopa_troopa_beach_vertex_0x04002350 + type: mk64:course_vtx + count: 49 + offset: 0x1ee6 + +d_course_koopa_troopa_beach_vertex_0x04002540: + symbol: d_course_koopa_troopa_beach_vertex_0x04002540 + type: mk64:course_vtx + count: 50 + offset: 0x2098 + +d_course_koopa_troopa_beach_vertex_0x04002740: + symbol: d_course_koopa_troopa_beach_vertex_0x04002740 + type: mk64:course_vtx + count: 16 + offset: 0x2258 + +d_course_koopa_troopa_beach_vertex_0x040027E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040027E0 + type: mk64:course_vtx + count: 50 + offset: 0x22e4 + +d_course_koopa_troopa_beach_vertex_0x040029E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040029E0 + type: mk64:course_vtx + count: 50 + offset: 0x24a4 + +d_course_koopa_troopa_beach_vertex_0x04002BE0: + symbol: d_course_koopa_troopa_beach_vertex_0x04002BE0 + type: mk64:course_vtx + count: 38 + offset: 0x2664 + +d_course_koopa_troopa_beach_vertex_0x04002D80: + symbol: d_course_koopa_troopa_beach_vertex_0x04002D80 + type: mk64:course_vtx + count: 48 + offset: 0x27d0 + +d_course_koopa_troopa_beach_vertex_0x04002F60: + symbol: d_course_koopa_troopa_beach_vertex_0x04002F60 + type: mk64:course_vtx + count: 50 + offset: 0x2974 + +d_course_koopa_troopa_beach_vertex_0x04003160: + symbol: d_course_koopa_troopa_beach_vertex_0x04003160 + type: mk64:course_vtx + count: 23 + offset: 0x2b34 + +d_course_koopa_troopa_beach_vertex_0x04003270: + symbol: d_course_koopa_troopa_beach_vertex_0x04003270 + type: mk64:course_vtx + count: 49 + offset: 0x2c22 + +d_course_koopa_troopa_beach_vertex_0x04003460: + symbol: d_course_koopa_troopa_beach_vertex_0x04003460 + type: mk64:course_vtx + count: 24 + offset: 0x2dd4 + +d_course_koopa_troopa_beach_vertex_0x04003580: + symbol: d_course_koopa_troopa_beach_vertex_0x04003580 + type: mk64:course_vtx + count: 48 + offset: 0x2ed0 + +d_course_koopa_troopa_beach_vertex_0x04003760: + symbol: d_course_koopa_troopa_beach_vertex_0x04003760 + type: mk64:course_vtx + count: 24 + offset: 0x3074 + +d_course_koopa_troopa_beach_vertex_0x04003880: + symbol: d_course_koopa_troopa_beach_vertex_0x04003880 + type: mk64:course_vtx + count: 6 + offset: 0x3170 + +d_course_koopa_troopa_beach_vertex_0x040038E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040038E0 + type: mk64:course_vtx + count: 49 + offset: 0x31c4 + +d_course_koopa_troopa_beach_vertex_0x04003AD0: + symbol: d_course_koopa_troopa_beach_vertex_0x04003AD0 + type: mk64:course_vtx + count: 48 + offset: 0x3376 + +d_course_koopa_troopa_beach_vertex_0x04003CB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04003CB0 + type: mk64:course_vtx + count: 7 + offset: 0x351a + +d_course_koopa_troopa_beach_vertex_0x04003D20: + symbol: d_course_koopa_troopa_beach_vertex_0x04003D20 + type: mk64:course_vtx + count: 48 + offset: 0x357c + +d_course_koopa_troopa_beach_vertex_0x04003F00: + symbol: d_course_koopa_troopa_beach_vertex_0x04003F00 + type: mk64:course_vtx + count: 49 + offset: 0x3720 + +d_course_koopa_troopa_beach_vertex_0x040040F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040040F0 + type: mk64:course_vtx + count: 6 + offset: 0x38d2 + +d_course_koopa_troopa_beach_vertex_0x04004150: + symbol: d_course_koopa_troopa_beach_vertex_0x04004150 + type: mk64:course_vtx + count: 50 + offset: 0x3926 + +d_course_koopa_troopa_beach_vertex_0x04004350: + symbol: d_course_koopa_troopa_beach_vertex_0x04004350 + type: mk64:course_vtx + count: 33 + offset: 0x3ae6 + +d_course_koopa_troopa_beach_vertex_0x040044A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040044A0 + type: mk64:course_vtx + count: 48 + offset: 0x3c0c + +d_course_koopa_troopa_beach_vertex_0x04004680: + symbol: d_course_koopa_troopa_beach_vertex_0x04004680 + type: mk64:course_vtx + count: 50 + offset: 0x3db0 + +d_course_koopa_troopa_beach_vertex_0x04004880: + symbol: d_course_koopa_troopa_beach_vertex_0x04004880 + type: mk64:course_vtx + count: 18 + offset: 0x3f70 + +d_course_koopa_troopa_beach_vertex_0x04004940: + symbol: d_course_koopa_troopa_beach_vertex_0x04004940 + type: mk64:course_vtx + count: 32 + offset: 0x4018 + +d_course_koopa_troopa_beach_vertex_0x04004A80: + symbol: d_course_koopa_troopa_beach_vertex_0x04004A80 + type: mk64:course_vtx + count: 49 + offset: 0x4130 + +d_course_koopa_troopa_beach_vertex_0x04004C70: + symbol: d_course_koopa_troopa_beach_vertex_0x04004C70 + type: mk64:course_vtx + count: 38 + offset: 0x42e2 + +d_course_koopa_troopa_beach_vertex_0x04004E10: + symbol: d_course_koopa_troopa_beach_vertex_0x04004E10 + type: mk64:course_vtx + count: 50 + offset: 0x444e + +d_course_koopa_troopa_beach_vertex_0x04005010: + symbol: d_course_koopa_troopa_beach_vertex_0x04005010 + type: mk64:course_vtx + count: 48 + offset: 0x460e + +d_course_koopa_troopa_beach_vertex_0x040051F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040051F0 + type: mk64:course_vtx + count: 49 + offset: 0x47b2 + +d_course_koopa_troopa_beach_vertex_0x040053E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040053E0 + type: mk64:course_vtx + count: 49 + offset: 0x4964 + +d_course_koopa_troopa_beach_vertex_0x040055D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040055D0 + type: mk64:course_vtx + count: 50 + offset: 0x4b16 + +d_course_koopa_troopa_beach_vertex_0x040057D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040057D0 + type: mk64:course_vtx + count: 41 + offset: 0x4cd6 + +d_course_koopa_troopa_beach_vertex_0x040059A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040059A0 + type: mk64:course_vtx + count: 50 + offset: 0x4e6c + +d_course_koopa_troopa_beach_vertex_0x04005BA0: + symbol: d_course_koopa_troopa_beach_vertex_0x04005BA0 + type: mk64:course_vtx + count: 34 + offset: 0x502c + +d_course_koopa_troopa_beach_vertex_0x04005D00: + symbol: d_course_koopa_troopa_beach_vertex_0x04005D00 + type: mk64:course_vtx + count: 49 + offset: 0x5160 + +d_course_koopa_troopa_beach_vertex_0x04005EF0: + symbol: d_course_koopa_troopa_beach_vertex_0x04005EF0 + type: mk64:course_vtx + count: 50 + offset: 0x5312 + +d_course_koopa_troopa_beach_vertex_0x040060F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040060F0 + type: mk64:course_vtx + count: 3 + offset: 0x54d2 + +d_course_koopa_troopa_beach_vertex_0x04006120: + symbol: d_course_koopa_troopa_beach_vertex_0x04006120 + type: mk64:course_vtx + count: 38 + offset: 0x54fc + +d_course_koopa_troopa_beach_vertex_0x040062C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040062C0 + type: mk64:course_vtx + count: 41 + offset: 0x5668 + +d_course_koopa_troopa_beach_vertex_0x04006490: + symbol: d_course_koopa_troopa_beach_vertex_0x04006490 + type: mk64:course_vtx + count: 48 + offset: 0x57fe + +d_course_koopa_troopa_beach_vertex_0x04006670: + symbol: d_course_koopa_troopa_beach_vertex_0x04006670 + type: mk64:course_vtx + count: 49 + offset: 0x59a2 + +d_course_koopa_troopa_beach_vertex_0x04006860: + symbol: d_course_koopa_troopa_beach_vertex_0x04006860 + type: mk64:course_vtx + count: 4 + offset: 0x5b54 + +d_course_koopa_troopa_beach_vertex_0x040068A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040068A0 + type: mk64:course_vtx + count: 48 + offset: 0x5b8c + +d_course_koopa_troopa_beach_vertex_0x04006A80: + symbol: d_course_koopa_troopa_beach_vertex_0x04006A80 + type: mk64:course_vtx + count: 50 + offset: 0x5d30 + +d_course_koopa_troopa_beach_vertex_0x04006C80: + symbol: d_course_koopa_troopa_beach_vertex_0x04006C80 + type: mk64:course_vtx + count: 25 + offset: 0x5ef0 + +d_course_koopa_troopa_beach_vertex_0x04006DB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04006DB0 + type: mk64:course_vtx + count: 48 + offset: 0x5ffa + +d_course_koopa_troopa_beach_vertex_0x04006F90: + symbol: d_course_koopa_troopa_beach_vertex_0x04006F90 + type: mk64:course_vtx + count: 49 + offset: 0x619e + +d_course_koopa_troopa_beach_vertex_0x04007180: + symbol: d_course_koopa_troopa_beach_vertex_0x04007180 + type: mk64:course_vtx + count: 48 + offset: 0x6350 + +d_course_koopa_troopa_beach_vertex_0x04007360: + symbol: d_course_koopa_troopa_beach_vertex_0x04007360 + type: mk64:course_vtx + count: 50 + offset: 0x64f4 + +d_course_koopa_troopa_beach_vertex_0x04007560: + symbol: d_course_koopa_troopa_beach_vertex_0x04007560 + type: mk64:course_vtx + count: 49 + offset: 0x66b4 + +d_course_koopa_troopa_beach_vertex_0x04007750: + symbol: d_course_koopa_troopa_beach_vertex_0x04007750 + type: mk64:course_vtx + count: 49 + offset: 0x6866 + +d_course_koopa_troopa_beach_vertex_0x04007940: + symbol: d_course_koopa_troopa_beach_vertex_0x04007940 + type: mk64:course_vtx + count: 8 + offset: 0x6a18 + +d_course_koopa_troopa_beach_vertex_0x040079C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040079C0 + type: mk64:course_vtx + count: 48 + offset: 0x6a88 + +d_course_koopa_troopa_beach_vertex_0x04007BA0: + symbol: d_course_koopa_troopa_beach_vertex_0x04007BA0 + type: mk64:course_vtx + count: 40 + offset: 0x6c2c + +d_course_koopa_troopa_beach_vertex_0x04007D60: + symbol: d_course_koopa_troopa_beach_vertex_0x04007D60 + type: mk64:course_vtx + count: 50 + offset: 0x6db4 + +d_course_koopa_troopa_beach_vertex_0x04007F60: + symbol: d_course_koopa_troopa_beach_vertex_0x04007F60 + type: mk64:course_vtx + count: 21 + offset: 0x6f74 + +d_course_koopa_troopa_beach_vertex_0x04008050: + symbol: d_course_koopa_troopa_beach_vertex_0x04008050 + type: mk64:course_vtx + count: 48 + offset: 0x7046 + +d_course_koopa_troopa_beach_vertex_0x04008230: + symbol: d_course_koopa_troopa_beach_vertex_0x04008230 + type: mk64:course_vtx + count: 50 + offset: 0x71ea + +d_course_koopa_troopa_beach_vertex_0x04008430: + symbol: d_course_koopa_troopa_beach_vertex_0x04008430 + type: mk64:course_vtx + count: 19 + offset: 0x73aa + +d_course_koopa_troopa_beach_vertex_0x04008500: + symbol: d_course_koopa_troopa_beach_vertex_0x04008500 + type: mk64:course_vtx + count: 50 + offset: 0x7460 + +d_course_koopa_troopa_beach_vertex_0x04008700: + symbol: d_course_koopa_troopa_beach_vertex_0x04008700 + type: mk64:course_vtx + count: 50 + offset: 0x7620 + +d_course_koopa_troopa_beach_vertex_0x04008900: + symbol: d_course_koopa_troopa_beach_vertex_0x04008900 + type: mk64:course_vtx + count: 20 + offset: 0x77e0 + +d_course_koopa_troopa_beach_vertex_0x040089E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040089E0 + type: mk64:course_vtx + count: 50 + offset: 0x78a4 + +d_course_koopa_troopa_beach_vertex_0x04008BE0: + symbol: d_course_koopa_troopa_beach_vertex_0x04008BE0 + type: mk64:course_vtx + count: 50 + offset: 0x7a64 + +d_course_koopa_troopa_beach_vertex_0x04008DE0: + symbol: d_course_koopa_troopa_beach_vertex_0x04008DE0 + type: mk64:course_vtx + count: 21 + offset: 0x7c24 + +d_course_koopa_troopa_beach_vertex_0x04008ED0: + symbol: d_course_koopa_troopa_beach_vertex_0x04008ED0 + type: mk64:course_vtx + count: 50 + offset: 0x7cf6 + +d_course_koopa_troopa_beach_vertex_0x040090D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040090D0 + type: mk64:course_vtx + count: 50 + offset: 0x7eb6 + +d_course_koopa_troopa_beach_vertex_0x040092D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040092D0 + type: mk64:course_vtx + count: 3 + offset: 0x8076 + +d_course_koopa_troopa_beach_vertex_0x04009300: + symbol: d_course_koopa_troopa_beach_vertex_0x04009300 + type: mk64:course_vtx + count: 6 + offset: 0x80a0 + +d_course_koopa_troopa_beach_vertex_0x04009360: + symbol: d_course_koopa_troopa_beach_vertex_0x04009360 + type: mk64:course_vtx + count: 9 + offset: 0x80f4 + +d_course_koopa_troopa_beach_vertex_0x040093F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040093F0 + type: mk64:course_vtx + count: 21 + offset: 0x8172 + +d_course_koopa_troopa_beach_vertex_0x040094E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040094E0 + type: mk64:course_vtx + count: 19 + offset: 0x8244 + +d_course_koopa_troopa_beach_vertex_0x040095B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040095B0 + type: mk64:course_vtx + count: 34 + offset: 0x82fa + +d_course_koopa_troopa_beach_vertex_0x04009710: + symbol: d_course_koopa_troopa_beach_vertex_0x04009710 + type: mk64:course_vtx + count: 33 + offset: 0x842e + +d_course_koopa_troopa_beach_vertex_0x04009860: + symbol: d_course_koopa_troopa_beach_vertex_0x04009860 + type: mk64:course_vtx + count: 8 + offset: 0x8554 + +d_course_koopa_troopa_beach_vertex_0x040098E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040098E0 + type: mk64:course_vtx + count: 20 + offset: 0x85c4 + +d_course_koopa_troopa_beach_vertex_0x040099C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040099C0 + type: mk64:course_vtx + count: 33 + offset: 0x8688 + +d_course_koopa_troopa_beach_vertex_0x04009B10: + symbol: d_course_koopa_troopa_beach_vertex_0x04009B10 + type: mk64:course_vtx + count: 18 + offset: 0x87ae + +d_course_koopa_troopa_beach_vertex_0x04009BD0: + symbol: d_course_koopa_troopa_beach_vertex_0x04009BD0 + type: mk64:course_vtx + count: 20 + offset: 0x8856 + +d_course_koopa_troopa_beach_vertex_0x04009CB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04009CB0 + type: mk64:course_vtx + count: 6 + offset: 0x891a + +d_course_koopa_troopa_beach_vertex_0x04009D10: + symbol: d_course_koopa_troopa_beach_vertex_0x04009D10 + type: mk64:course_vtx + count: 23 + offset: 0x896e + +d_course_koopa_troopa_beach_vertex_0x04009E20: + symbol: d_course_koopa_troopa_beach_vertex_0x04009E20 + type: mk64:course_vtx + count: 6 + offset: 0x8a5c + +d_course_koopa_troopa_beach_vertex_0x04009E80: + symbol: d_course_koopa_troopa_beach_vertex_0x04009E80 + type: mk64:course_vtx + count: 9 + offset: 0x8ab0 + +d_course_koopa_troopa_beach_vertex_0x04009F10: + symbol: d_course_koopa_troopa_beach_vertex_0x04009F10 + type: mk64:course_vtx + count: 18 + offset: 0x8b2e + +d_course_koopa_troopa_beach_vertex_0x04009FD0: + symbol: d_course_koopa_troopa_beach_vertex_0x04009FD0 + type: mk64:course_vtx + count: 23 + offset: 0x8bd6 + +d_course_koopa_troopa_beach_vertex_0x0400A0E0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A0E0 + type: mk64:course_vtx + count: 18 + offset: 0x8cc4 + +d_course_koopa_troopa_beach_vertex_0x0400A1A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A1A0 + type: mk64:course_vtx + count: 19 + offset: 0x8d6c + +d_course_koopa_troopa_beach_vertex_0x0400A270: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A270 + type: mk64:course_vtx + count: 23 + offset: 0x8e22 + +d_course_koopa_troopa_beach_vertex_0x0400A380: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A380 + type: mk64:course_vtx + count: 48 + offset: 0x8f10 + +d_course_koopa_troopa_beach_vertex_0x0400A560: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A560 + type: mk64:course_vtx + count: 23 + offset: 0x90b4 + +d_course_koopa_troopa_beach_vertex_0x0400A670: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A670 + type: mk64:course_vtx + count: 17 + offset: 0x91a2 + +d_course_koopa_troopa_beach_vertex_0x0400A720: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A720 + type: mk64:course_vtx + count: 33 + offset: 0x923c + +d_course_koopa_troopa_beach_vertex_0x0400A870: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A870 + type: mk64:course_vtx + count: 3 + offset: 0x9362 + +d_course_koopa_troopa_beach_vertex_0x0400A8A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A8A0 + type: mk64:course_vtx + count: 6 + offset: 0x938c + +d_course_koopa_troopa_beach_vertex_0x0400A900: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A900 + type: mk64:course_vtx + count: 6 + offset: 0x93e0 + +d_course_koopa_troopa_beach_vertex_0x0400A960: + symbol: d_course_koopa_troopa_beach_vertex_0x0400A960 + type: mk64:course_vtx + count: 25 + offset: 0x9434 + +d_course_koopa_troopa_beach_vertex_0x0400AA90: + symbol: d_course_koopa_troopa_beach_vertex_0x0400AA90 + type: mk64:course_vtx + count: 9 + offset: 0x953e + +d_course_koopa_troopa_beach_vertex_0x0400AB20: + symbol: d_course_koopa_troopa_beach_vertex_0x0400AB20 + type: mk64:course_vtx + count: 22 + offset: 0x95bc + +d_course_koopa_troopa_beach_vertex_0x0400AC20: + symbol: d_course_koopa_troopa_beach_vertex_0x0400AC20 + type: mk64:course_vtx + count: 37 + offset: 0x969c + +d_course_koopa_troopa_beach_vertex_0x0400ADB0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400ADB0 + type: mk64:course_vtx + count: 8 + offset: 0x97fa + +d_course_koopa_troopa_beach_vertex_0x0400AE30: + symbol: d_course_koopa_troopa_beach_vertex_0x0400AE30 + type: mk64:course_vtx + count: 6 + offset: 0x986a + +d_course_koopa_troopa_beach_vertex_0x0400AE90: + symbol: d_course_koopa_troopa_beach_vertex_0x0400AE90 + type: mk64:course_vtx + count: 18 + offset: 0x98be + +d_course_koopa_troopa_beach_vertex_0x0400AF50: + symbol: d_course_koopa_troopa_beach_vertex_0x0400AF50 + type: mk64:course_vtx + count: 24 + offset: 0x9966 + +d_course_koopa_troopa_beach_vertex_0x0400B070: + symbol: d_course_koopa_troopa_beach_vertex_0x0400B070 + type: mk64:course_vtx + count: 33 + offset: 0x9a62 + +d_course_koopa_troopa_beach_vertex_0x0400B1C0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400B1C0 + type: mk64:course_vtx + count: 32 + offset: 0x9b88 + +d_course_koopa_troopa_beach_vertex_0x0400B300: + symbol: d_course_koopa_troopa_beach_vertex_0x0400B300 + type: mk64:course_vtx + count: 22 + offset: 0x9ca0 + +d_course_koopa_troopa_beach_vertex_0x0400B400: + symbol: d_course_koopa_troopa_beach_vertex_0x0400B400 + type: mk64:course_vtx + count: 36 + offset: 0x9d80 + +d_course_koopa_troopa_beach_vertex_0x0400B580: + symbol: d_course_koopa_troopa_beach_vertex_0x0400B580 + type: mk64:course_vtx + count: 22 + offset: 0x9ed0 + +d_course_koopa_troopa_beach_vertex_0x0400B680: + symbol: d_course_koopa_troopa_beach_vertex_0x0400B680 + type: mk64:course_vtx + count: 25 + offset: 0x9fb0 + +d_course_koopa_troopa_beach_vertex_0x0400B7B0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400B7B0 + type: mk64:course_vtx + count: 22 + offset: 0xa0ba + +d_course_koopa_troopa_beach_vertex_0x0400B8B0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400B8B0 + type: mk64:course_vtx + count: 35 + offset: 0xa19a + +d_course_koopa_troopa_beach_vertex_0x0400BA20: + symbol: d_course_koopa_troopa_beach_vertex_0x0400BA20 + type: mk64:course_vtx + count: 22 + offset: 0xa2dc + +d_course_koopa_troopa_beach_vertex_0x0400BB20: + symbol: d_course_koopa_troopa_beach_vertex_0x0400BB20 + type: mk64:course_vtx + count: 32 + offset: 0xa3bc + +d_course_koopa_troopa_beach_vertex_0x0400BC60: + symbol: d_course_koopa_troopa_beach_vertex_0x0400BC60 + type: mk64:course_vtx + count: 22 + offset: 0xa4d4 + +d_course_koopa_troopa_beach_vertex_0x0400BD60: + symbol: d_course_koopa_troopa_beach_vertex_0x0400BD60 + type: mk64:course_vtx + count: 9 + offset: 0xa5b4 + +d_course_koopa_troopa_beach_vertex_0x0400BDF0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400BDF0 + type: mk64:course_vtx + count: 8 + offset: 0xa632 + +d_course_koopa_troopa_beach_vertex_0x0400BE70: + symbol: d_course_koopa_troopa_beach_vertex_0x0400BE70 + type: mk64:course_vtx + count: 17 + offset: 0xa6a2 + +d_course_koopa_troopa_beach_vertex_0x0400BF20: + symbol: d_course_koopa_troopa_beach_vertex_0x0400BF20 + type: mk64:course_vtx + count: 8 + offset: 0xa73c + +d_course_koopa_troopa_beach_vertex_0x0400BFA0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400BFA0 + type: mk64:course_vtx + count: 36 + offset: 0xa7ac + +d_course_koopa_troopa_beach_vertex_0x0400C120: + symbol: d_course_koopa_troopa_beach_vertex_0x0400C120 + type: mk64:course_vtx + count: 35 + offset: 0xa8fc + +d_course_koopa_troopa_beach_vertex_0x0400C290: + symbol: d_course_koopa_troopa_beach_vertex_0x0400C290 + type: mk64:course_vtx + count: 24 + offset: 0xaa3e + +d_course_koopa_troopa_beach_vertex_0x0400C3B0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400C3B0 + type: mk64:course_vtx + count: 8 + offset: 0xab3a + +d_course_koopa_troopa_beach_vertex_0x0400C430: + symbol: d_course_koopa_troopa_beach_vertex_0x0400C430 + type: mk64:course_vtx + count: 22 + offset: 0xabaa + +d_course_koopa_troopa_beach_vertex_0x0400C530: + symbol: d_course_koopa_troopa_beach_vertex_0x0400C530 + type: mk64:course_vtx + count: 35 + offset: 0xac8a + +d_course_koopa_troopa_beach_vertex_0x0400C6A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400C6A0 + type: mk64:course_vtx + count: 22 + offset: 0xadcc + +d_course_koopa_troopa_beach_vertex_0x0400C7A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400C7A0 + type: mk64:course_vtx + count: 36 + offset: 0xaeac + +d_course_koopa_troopa_beach_vertex_0x0400C920: + symbol: d_course_koopa_troopa_beach_vertex_0x0400C920 + type: mk64:course_vtx + count: 48 + offset: 0xaffc + +d_course_koopa_troopa_beach_vertex_0x0400CB00: + symbol: d_course_koopa_troopa_beach_vertex_0x0400CB00 + type: mk64:course_vtx + count: 36 + offset: 0xb1a0 + +d_course_koopa_troopa_beach_vertex_0x0400CC80: + symbol: d_course_koopa_troopa_beach_vertex_0x0400CC80 + type: mk64:course_vtx + count: 21 + offset: 0xb2f0 + +d_course_koopa_troopa_beach_vertex_0x0400CD70: + symbol: d_course_koopa_troopa_beach_vertex_0x0400CD70 + type: mk64:course_vtx + count: 8 + offset: 0xb3c2 + +d_course_koopa_troopa_beach_vertex_0x0400CDF0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400CDF0 + type: mk64:course_vtx + count: 33 + offset: 0xb432 + +d_course_koopa_troopa_beach_vertex_0x0400CF40: + symbol: d_course_koopa_troopa_beach_vertex_0x0400CF40 + type: mk64:course_vtx + count: 22 + offset: 0xb558 + +d_course_koopa_troopa_beach_vertex_0x0400D040: + symbol: d_course_koopa_troopa_beach_vertex_0x0400D040 + type: mk64:course_vtx + count: 38 + offset: 0xb638 + +d_course_koopa_troopa_beach_vertex_0x0400D1E0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400D1E0 + type: mk64:course_vtx + count: 36 + offset: 0xb7a4 + +d_course_koopa_troopa_beach_vertex_0x0400D360: + symbol: d_course_koopa_troopa_beach_vertex_0x0400D360 + type: mk64:course_vtx + count: 40 + offset: 0xb8f4 + +d_course_koopa_troopa_beach_vertex_0x0400D520: + symbol: d_course_koopa_troopa_beach_vertex_0x0400D520 + type: mk64:course_vtx + count: 32 + offset: 0xba7c + +d_course_koopa_troopa_beach_vertex_0x0400D660: + symbol: d_course_koopa_troopa_beach_vertex_0x0400D660 + type: mk64:course_vtx + count: 22 + offset: 0xbb94 + +d_course_koopa_troopa_beach_vertex_0x0400D760: + symbol: d_course_koopa_troopa_beach_vertex_0x0400D760 + type: mk64:course_vtx + count: 32 + offset: 0xbc74 + +d_course_koopa_troopa_beach_vertex_0x0400D8A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400D8A0 + type: mk64:course_vtx + count: 22 + offset: 0xbd8c + +d_course_koopa_troopa_beach_vertex_0x0400D9A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400D9A0 + type: mk64:course_vtx + count: 33 + offset: 0xbe6c + +d_course_koopa_troopa_beach_vertex_0x0400DAF0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400DAF0 + type: mk64:course_vtx + count: 22 + offset: 0xbf92 + +d_course_koopa_troopa_beach_vertex_0x0400DBF0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400DBF0 + type: mk64:course_vtx + count: 35 + offset: 0xc072 + +d_course_koopa_troopa_beach_vertex_0x0400DD60: + symbol: d_course_koopa_troopa_beach_vertex_0x0400DD60 + type: mk64:course_vtx + count: 22 + offset: 0xc1b4 + +d_course_koopa_troopa_beach_vertex_0x0400DE60: + symbol: d_course_koopa_troopa_beach_vertex_0x0400DE60 + type: mk64:course_vtx + count: 33 + offset: 0xc294 + +d_course_koopa_troopa_beach_vertex_0x0400DFB0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400DFB0 + type: mk64:course_vtx + count: 22 + offset: 0xc3ba + +d_course_koopa_troopa_beach_vertex_0x0400E0B0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400E0B0 + type: mk64:course_vtx + count: 32 + offset: 0xc49a + +d_course_koopa_troopa_beach_vertex_0x0400E1F0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400E1F0 + type: mk64:course_vtx + count: 8 + offset: 0xc5b2 + +d_course_koopa_troopa_beach_vertex_0x0400E270: + symbol: d_course_koopa_troopa_beach_vertex_0x0400E270 + type: mk64:course_vtx + count: 48 + offset: 0xc622 + +d_course_koopa_troopa_beach_vertex_0x0400E450: + symbol: d_course_koopa_troopa_beach_vertex_0x0400E450 + type: mk64:course_vtx + count: 50 + offset: 0xc7c6 + +d_course_koopa_troopa_beach_vertex_0x0400E650: + symbol: d_course_koopa_troopa_beach_vertex_0x0400E650 + type: mk64:course_vtx + count: 49 + offset: 0xc986 + +d_course_koopa_troopa_beach_vertex_0x0400E840: + symbol: d_course_koopa_troopa_beach_vertex_0x0400E840 + type: mk64:course_vtx + count: 6 + offset: 0xcb38 + +d_course_koopa_troopa_beach_vertex_0x0400E8A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400E8A0 + type: mk64:course_vtx + count: 32 + offset: 0xcb8c + +d_course_koopa_troopa_beach_vertex_0x0400E9E0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400E9E0 + type: mk64:course_vtx + count: 22 + offset: 0xcca4 + +d_course_koopa_troopa_beach_vertex_0x0400EAE0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400EAE0 + type: mk64:course_vtx + count: 21 + offset: 0xcd84 + +d_course_koopa_troopa_beach_vertex_0x0400EBD0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400EBD0 + type: mk64:course_vtx + count: 8 + offset: 0xce56 + +d_course_koopa_troopa_beach_vertex_0x0400EC50: + symbol: d_course_koopa_troopa_beach_vertex_0x0400EC50 + type: mk64:course_vtx + count: 23 + offset: 0xcec6 + +d_course_koopa_troopa_beach_vertex_0x0400ED60: + symbol: d_course_koopa_troopa_beach_vertex_0x0400ED60 + type: mk64:course_vtx + count: 39 + offset: 0xcfb4 + +d_course_koopa_troopa_beach_vertex_0x0400EF10: + symbol: d_course_koopa_troopa_beach_vertex_0x0400EF10 + type: mk64:course_vtx + count: 5 + offset: 0xd12e + +d_course_koopa_troopa_beach_vertex_0x0400EF60: + symbol: d_course_koopa_troopa_beach_vertex_0x0400EF60 + type: mk64:course_vtx + count: 23 + offset: 0xd174 + +d_course_koopa_troopa_beach_vertex_0x0400F070: + symbol: d_course_koopa_troopa_beach_vertex_0x0400F070 + type: mk64:course_vtx + count: 25 + offset: 0xd262 + +d_course_koopa_troopa_beach_vertex_0x0400F1A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400F1A0 + type: mk64:course_vtx + count: 25 + offset: 0xd36c + +d_course_koopa_troopa_beach_vertex_0x0400F2D0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400F2D0 + type: mk64:course_vtx + count: 39 + offset: 0xd476 + +d_course_koopa_troopa_beach_vertex_0x0400F480: + symbol: d_course_koopa_troopa_beach_vertex_0x0400F480 + type: mk64:course_vtx + count: 8 + offset: 0xd5f0 + +d_course_koopa_troopa_beach_vertex_0x0400F500: + symbol: d_course_koopa_troopa_beach_vertex_0x0400F500 + type: mk64:course_vtx + count: 25 + offset: 0xd660 + +d_course_koopa_troopa_beach_vertex_0x0400F630: + symbol: d_course_koopa_troopa_beach_vertex_0x0400F630 + type: mk64:course_vtx + count: 21 + offset: 0xd76a + +d_course_koopa_troopa_beach_vertex_0x0400F720: + symbol: d_course_koopa_troopa_beach_vertex_0x0400F720 + type: mk64:course_vtx + count: 39 + offset: 0xd83c + +d_course_koopa_troopa_beach_vertex_0x0400F8D0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400F8D0 + type: mk64:course_vtx + count: 36 + offset: 0xd9b6 + +d_course_koopa_troopa_beach_vertex_0x0400FA50: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FA50 + type: mk64:course_vtx + count: 17 + offset: 0xdb06 + +d_course_koopa_troopa_beach_vertex_0x0400FB00: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FB00 + type: mk64:course_vtx + count: 8 + offset: 0xdba0 + +d_course_koopa_troopa_beach_vertex_0x0400FB80: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FB80 + type: mk64:course_vtx + count: 17 + offset: 0xdc10 + +d_course_koopa_troopa_beach_vertex_0x0400FC30: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FC30 + type: mk64:course_vtx + count: 8 + offset: 0xdcaa + +d_course_koopa_troopa_beach_vertex_0x0400FCB0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FCB0 + type: mk64:course_vtx + count: 18 + offset: 0xdd1a + +d_course_koopa_troopa_beach_vertex_0x0400FD70: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FD70 + type: mk64:course_vtx + count: 8 + offset: 0xddc2 + +d_course_koopa_troopa_beach_vertex_0x0400FDF0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FDF0 + type: mk64:course_vtx + count: 18 + offset: 0xde32 + +d_course_koopa_troopa_beach_vertex_0x0400FEB0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FEB0 + type: mk64:course_vtx + count: 8 + offset: 0xdeda + +d_course_koopa_troopa_beach_vertex_0x0400FF30: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FF30 + type: mk64:course_vtx + count: 16 + offset: 0xdf4a + +d_course_koopa_troopa_beach_vertex_0x0400FFD0: + symbol: d_course_koopa_troopa_beach_vertex_0x0400FFD0 + type: mk64:course_vtx + count: 4 + offset: 0xdfd6 + +d_course_koopa_troopa_beach_vertex_0x04010010: + symbol: d_course_koopa_troopa_beach_vertex_0x04010010 + type: mk64:course_vtx + count: 4 + offset: 0xe00e + +d_course_koopa_troopa_beach_vertex_0x04010050: + symbol: d_course_koopa_troopa_beach_vertex_0x04010050 + type: mk64:course_vtx + count: 4 + offset: 0xe046 + +d_course_koopa_troopa_beach_vertex_0x04010090: + symbol: d_course_koopa_troopa_beach_vertex_0x04010090 + type: mk64:course_vtx + count: 6 + offset: 0xe07e + +d_course_koopa_troopa_beach_vertex_0x040100F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040100F0 + type: mk64:course_vtx + count: 4 + offset: 0xe0d2 + +d_course_koopa_troopa_beach_vertex_0x04010130: + symbol: d_course_koopa_troopa_beach_vertex_0x04010130 + type: mk64:course_vtx + count: 25 + offset: 0xe10a + +d_course_koopa_troopa_beach_vertex_0x04010260: + symbol: d_course_koopa_troopa_beach_vertex_0x04010260 + type: mk64:course_vtx + count: 18 + offset: 0xe214 + +d_course_koopa_troopa_beach_vertex_0x04010320: + symbol: d_course_koopa_troopa_beach_vertex_0x04010320 + type: mk64:course_vtx + count: 6 + offset: 0xe2bc + +d_course_koopa_troopa_beach_vertex_0x04010380: + symbol: d_course_koopa_troopa_beach_vertex_0x04010380 + type: mk64:course_vtx + count: 4 + offset: 0xe310 + +d_course_koopa_troopa_beach_vertex_0x040103C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040103C0 + type: mk64:course_vtx + count: 3 + offset: 0xe348 + +d_course_koopa_troopa_beach_vertex_0x040103F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040103F0 + type: mk64:course_vtx + count: 6 + offset: 0xe372 + +d_course_koopa_troopa_beach_vertex_0x04010450: + symbol: d_course_koopa_troopa_beach_vertex_0x04010450 + type: mk64:course_vtx + count: 4 + offset: 0xe3c6 + +d_course_koopa_troopa_beach_vertex_0x04010490: + symbol: d_course_koopa_troopa_beach_vertex_0x04010490 + type: mk64:course_vtx + count: 6 + offset: 0xe3fe + +d_course_koopa_troopa_beach_vertex_0x040104F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040104F0 + type: mk64:course_vtx + count: 21 + offset: 0xe452 + +d_course_koopa_troopa_beach_vertex_0x040105E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040105E0 + type: mk64:course_vtx + count: 18 + offset: 0xe524 + +d_course_koopa_troopa_beach_vertex_0x040106A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040106A0 + type: mk64:course_vtx + count: 6 + offset: 0xe5cc + +d_course_koopa_troopa_beach_vertex_0x04010700: + symbol: d_course_koopa_troopa_beach_vertex_0x04010700 + type: mk64:course_vtx + count: 4 + offset: 0xe620 + +d_course_koopa_troopa_beach_vertex_0x04010740: + symbol: d_course_koopa_troopa_beach_vertex_0x04010740 + type: mk64:course_vtx + count: 6 + offset: 0xe658 + +d_course_koopa_troopa_beach_vertex_0x040107A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040107A0 + type: mk64:course_vtx + count: 4 + offset: 0xe6ac + +d_course_koopa_troopa_beach_vertex_0x040107E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040107E0 + type: mk64:course_vtx + count: 21 + offset: 0xe6e4 + +d_course_koopa_troopa_beach_vertex_0x040108D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040108D0 + type: mk64:course_vtx + count: 18 + offset: 0xe7b6 + +d_course_koopa_troopa_beach_vertex_0x04010990: + symbol: d_course_koopa_troopa_beach_vertex_0x04010990 + type: mk64:course_vtx + count: 25 + offset: 0xe85e + +d_course_koopa_troopa_beach_vertex_0x04010AC0: + symbol: d_course_koopa_troopa_beach_vertex_0x04010AC0 + type: mk64:course_vtx + count: 17 + offset: 0xe968 + +d_course_koopa_troopa_beach_vertex_0x04010B70: + symbol: d_course_koopa_troopa_beach_vertex_0x04010B70 + type: mk64:course_vtx + count: 8 + offset: 0xea02 + +d_course_koopa_troopa_beach_vertex_0x04010BF0: + symbol: d_course_koopa_troopa_beach_vertex_0x04010BF0 + type: mk64:course_vtx + count: 19 + offset: 0xea72 + +d_course_koopa_troopa_beach_vertex_0x04010CC0: + symbol: d_course_koopa_troopa_beach_vertex_0x04010CC0 + type: mk64:course_vtx + count: 8 + offset: 0xeb28 + +d_course_koopa_troopa_beach_vertex_0x04010D40: + symbol: d_course_koopa_troopa_beach_vertex_0x04010D40 + type: mk64:course_vtx + count: 16 + offset: 0xeb98 + +d_course_koopa_troopa_beach_vertex_0x04010DE0: + symbol: d_course_koopa_troopa_beach_vertex_0x04010DE0 + type: mk64:course_vtx + count: 4 + offset: 0xec24 + +d_course_koopa_troopa_beach_vertex_0x04010E20: + symbol: d_course_koopa_troopa_beach_vertex_0x04010E20 + type: mk64:course_vtx + count: 22 + offset: 0xec5c + +d_course_koopa_troopa_beach_vertex_0x04010F20: + symbol: d_course_koopa_troopa_beach_vertex_0x04010F20 + type: mk64:course_vtx + count: 17 + offset: 0xed3c + +d_course_koopa_troopa_beach_vertex_0x04010FD0: + symbol: d_course_koopa_troopa_beach_vertex_0x04010FD0 + type: mk64:course_vtx + count: 17 + offset: 0xedd6 + +d_course_koopa_troopa_beach_vertex_0x04011080: + symbol: d_course_koopa_troopa_beach_vertex_0x04011080 + type: mk64:course_vtx + count: 8 + offset: 0xee70 + +d_course_koopa_troopa_beach_vertex_0x04011100: + symbol: d_course_koopa_troopa_beach_vertex_0x04011100 + type: mk64:course_vtx + count: 9 + offset: 0xeee0 + +d_course_koopa_troopa_beach_vertex_0x04011190: + symbol: d_course_koopa_troopa_beach_vertex_0x04011190 + type: mk64:course_vtx + count: 4 + offset: 0xef5e + +d_course_koopa_troopa_beach_vertex_0x040111D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040111D0 + type: mk64:course_vtx + count: 49 + offset: 0xef96 + +d_course_koopa_troopa_beach_vertex_0x040113C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040113C0 + type: mk64:course_vtx + count: 24 + offset: 0xf148 + +d_course_koopa_troopa_beach_vertex_0x040114E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040114E0 + type: mk64:course_vtx + count: 6 + offset: 0xf244 + +d_course_koopa_troopa_beach_vertex_0x04011540: + symbol: d_course_koopa_troopa_beach_vertex_0x04011540 + type: mk64:course_vtx + count: 4 + offset: 0xf298 + +d_course_koopa_troopa_beach_vertex_0x04011580: + symbol: d_course_koopa_troopa_beach_vertex_0x04011580 + type: mk64:course_vtx + count: 6 + offset: 0xf2d0 + +d_course_koopa_troopa_beach_vertex_0x040115E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040115E0 + type: mk64:course_vtx + count: 4 + offset: 0xf324 + +d_course_koopa_troopa_beach_vertex_0x04011620: + symbol: d_course_koopa_troopa_beach_vertex_0x04011620 + type: mk64:course_vtx + count: 9 + offset: 0xf35c + +d_course_koopa_troopa_beach_vertex_0x040116B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040116B0 + type: mk64:course_vtx + count: 20 + offset: 0xf3da + +d_course_koopa_troopa_beach_vertex_0x04011790: + symbol: d_course_koopa_troopa_beach_vertex_0x04011790 + type: mk64:course_vtx + count: 6 + offset: 0xf49e + +d_course_koopa_troopa_beach_vertex_0x040117F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040117F0 + type: mk64:course_vtx + count: 6 + offset: 0xf4f2 + +d_course_koopa_troopa_beach_vertex_0x04011850: + symbol: d_course_koopa_troopa_beach_vertex_0x04011850 + type: mk64:course_vtx + count: 16 + offset: 0xf546 + +d_course_koopa_troopa_beach_vertex_0x040118F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040118F0 + type: mk64:course_vtx + count: 20 + offset: 0xf5d2 + +d_course_koopa_troopa_beach_vertex_0x040119D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040119D0 + type: mk64:course_vtx + count: 25 + offset: 0xf696 + +d_course_koopa_troopa_beach_vertex_0x04011B00: + symbol: d_course_koopa_troopa_beach_vertex_0x04011B00 + type: mk64:course_vtx + count: 4 + offset: 0xf7a0 + +d_course_koopa_troopa_beach_vertex_0x04011B40: + symbol: d_course_koopa_troopa_beach_vertex_0x04011B40 + type: mk64:course_vtx + count: 22 + offset: 0xf7d8 + +d_course_koopa_troopa_beach_vertex_0x04011C40: + symbol: d_course_koopa_troopa_beach_vertex_0x04011C40 + type: mk64:course_vtx + count: 8 + offset: 0xf8b8 + +d_course_koopa_troopa_beach_vertex_0x04011CC0: + symbol: d_course_koopa_troopa_beach_vertex_0x04011CC0 + type: mk64:course_vtx + count: 22 + offset: 0xf928 + +d_course_koopa_troopa_beach_vertex_0x04011DC0: + symbol: d_course_koopa_troopa_beach_vertex_0x04011DC0 + type: mk64:course_vtx + count: 17 + offset: 0xfa08 + +d_course_koopa_troopa_beach_vertex_0x04011E70: + symbol: d_course_koopa_troopa_beach_vertex_0x04011E70 + type: mk64:course_vtx + count: 23 + offset: 0xfaa2 + +d_course_koopa_troopa_beach_vertex_0x04011F80: + symbol: d_course_koopa_troopa_beach_vertex_0x04011F80 + type: mk64:course_vtx + count: 8 + offset: 0xfb90 + +d_course_koopa_troopa_beach_vertex_0x04012000: + symbol: d_course_koopa_troopa_beach_vertex_0x04012000 + type: mk64:course_vtx + count: 17 + offset: 0xfc00 + +d_course_koopa_troopa_beach_vertex_0x040120B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040120B0 + type: mk64:course_vtx + count: 49 + offset: 0xfc9a + +d_course_koopa_troopa_beach_vertex_0x040122A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040122A0 + type: mk64:course_vtx + count: 24 + offset: 0xfe4c + +d_course_koopa_troopa_beach_vertex_0x040123C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040123C0 + type: mk64:course_vtx + count: 4 + offset: 0xff48 + +d_course_koopa_troopa_beach_vertex_0x04012400: + symbol: d_course_koopa_troopa_beach_vertex_0x04012400 + type: mk64:course_vtx + count: 6 + offset: 0xff80 + +d_course_koopa_troopa_beach_vertex_0x04012460: + symbol: d_course_koopa_troopa_beach_vertex_0x04012460 + type: mk64:course_vtx + count: 36 + offset: 0xffd4 + +d_course_koopa_troopa_beach_vertex_0x040125E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040125E0 + type: mk64:course_vtx + count: 6 + offset: 0x10124 + +d_course_koopa_troopa_beach_vertex_0x04012640: + symbol: d_course_koopa_troopa_beach_vertex_0x04012640 + type: mk64:course_vtx + count: 5 + offset: 0x10178 + +d_course_koopa_troopa_beach_vertex_0x04012690: + symbol: d_course_koopa_troopa_beach_vertex_0x04012690 + type: mk64:course_vtx + count: 18 + offset: 0x101be + +d_course_koopa_troopa_beach_vertex_0x04012750: + symbol: d_course_koopa_troopa_beach_vertex_0x04012750 + type: mk64:course_vtx + count: 8 + offset: 0x10266 + +d_course_koopa_troopa_beach_vertex_0x040127D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040127D0 + type: mk64:course_vtx + count: 6 + offset: 0x102d6 + +d_course_koopa_troopa_beach_vertex_0x04012830: + symbol: d_course_koopa_troopa_beach_vertex_0x04012830 + type: mk64:course_vtx + count: 6 + offset: 0x1032a + +d_course_koopa_troopa_beach_vertex_0x04012890: + symbol: d_course_koopa_troopa_beach_vertex_0x04012890 + type: mk64:course_vtx + count: 18 + offset: 0x1037e + +d_course_koopa_troopa_beach_vertex_0x04012950: + symbol: d_course_koopa_troopa_beach_vertex_0x04012950 + type: mk64:course_vtx + count: 37 + offset: 0x10426 + +d_course_koopa_troopa_beach_vertex_0x04012AE0: + symbol: d_course_koopa_troopa_beach_vertex_0x04012AE0 + type: mk64:course_vtx + count: 50 + offset: 0x10584 + +d_course_koopa_troopa_beach_vertex_0x04012CE0: + symbol: d_course_koopa_troopa_beach_vertex_0x04012CE0 + type: mk64:course_vtx + count: 39 + offset: 0x10744 + +d_course_koopa_troopa_beach_vertex_0x04012E90: + symbol: d_course_koopa_troopa_beach_vertex_0x04012E90 + type: mk64:course_vtx + count: 39 + offset: 0x108be + +d_course_koopa_troopa_beach_vertex_0x04013040: + symbol: d_course_koopa_troopa_beach_vertex_0x04013040 + type: mk64:course_vtx + count: 36 + offset: 0x10a38 + +d_course_koopa_troopa_beach_vertex_0x040131C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040131C0 + type: mk64:course_vtx + count: 21 + offset: 0x10b88 + +d_course_koopa_troopa_beach_vertex_0x040132B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040132B0 + type: mk64:course_vtx + count: 9 + offset: 0x10c5a + +d_course_koopa_troopa_beach_vertex_0x04013340: + symbol: d_course_koopa_troopa_beach_vertex_0x04013340 + type: mk64:course_vtx + count: 32 + offset: 0x10cd8 + +d_course_koopa_troopa_beach_vertex_0x04013480: + symbol: d_course_koopa_troopa_beach_vertex_0x04013480 + type: mk64:course_vtx + count: 22 + offset: 0x10df0 + +d_course_koopa_troopa_beach_vertex_0x04013580: + symbol: d_course_koopa_troopa_beach_vertex_0x04013580 + type: mk64:course_vtx + count: 5 + offset: 0x10ed0 + +d_course_koopa_troopa_beach_vertex_0x040135D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040135D0 + type: mk64:course_vtx + count: 50 + offset: 0x10f16 + +d_course_koopa_troopa_beach_vertex_0x040137D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040137D0 + type: mk64:course_vtx + count: 9 + offset: 0x110d6 + +d_course_koopa_troopa_beach_vertex_0x04013860: + symbol: d_course_koopa_troopa_beach_vertex_0x04013860 + type: mk64:course_vtx + count: 39 + offset: 0x11154 + +d_course_koopa_troopa_beach_vertex_0x04013A10: + symbol: d_course_koopa_troopa_beach_vertex_0x04013A10 + type: mk64:course_vtx + count: 8 + offset: 0x112ce + +d_course_koopa_troopa_beach_vertex_0x04013A90: + symbol: d_course_koopa_troopa_beach_vertex_0x04013A90 + type: mk64:course_vtx + count: 18 + offset: 0x1133e + +d_course_koopa_troopa_beach_vertex_0x04013B50: + symbol: d_course_koopa_troopa_beach_vertex_0x04013B50 + type: mk64:course_vtx + count: 22 + offset: 0x113e6 + +d_course_koopa_troopa_beach_vertex_0x04013C50: + symbol: d_course_koopa_troopa_beach_vertex_0x04013C50 + type: mk64:course_vtx + count: 24 + offset: 0x114c6 + +d_course_koopa_troopa_beach_vertex_0x04013D70: + symbol: d_course_koopa_troopa_beach_vertex_0x04013D70 + type: mk64:course_vtx + count: 50 + offset: 0x115c2 + +d_course_koopa_troopa_beach_vertex_0x04013F70: + symbol: d_course_koopa_troopa_beach_vertex_0x04013F70 + type: mk64:course_vtx + count: 48 + offset: 0x11782 + +d_course_koopa_troopa_beach_vertex_0x04014150: + symbol: d_course_koopa_troopa_beach_vertex_0x04014150 + type: mk64:course_vtx + count: 49 + offset: 0x11926 + +d_course_koopa_troopa_beach_vertex_0x04014340: + symbol: d_course_koopa_troopa_beach_vertex_0x04014340 + type: mk64:course_vtx + count: 49 + offset: 0x11ad8 + +d_course_koopa_troopa_beach_vertex_0x04014530: + symbol: d_course_koopa_troopa_beach_vertex_0x04014530 + type: mk64:course_vtx + count: 3 + offset: 0x11c8a + +d_course_koopa_troopa_beach_vertex_0x04014560: + symbol: d_course_koopa_troopa_beach_vertex_0x04014560 + type: mk64:course_vtx + count: 50 + offset: 0x11cb4 + +d_course_koopa_troopa_beach_vertex_0x04014760: + symbol: d_course_koopa_troopa_beach_vertex_0x04014760 + type: mk64:course_vtx + count: 48 + offset: 0x11e74 + +d_course_koopa_troopa_beach_vertex_0x04014940: + symbol: d_course_koopa_troopa_beach_vertex_0x04014940 + type: mk64:course_vtx + count: 8 + offset: 0x12018 + +d_course_koopa_troopa_beach_vertex_0x040149C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040149C0 + type: mk64:course_vtx + count: 50 + offset: 0x12088 + +d_course_koopa_troopa_beach_vertex_0x04014BC0: + symbol: d_course_koopa_troopa_beach_vertex_0x04014BC0 + type: mk64:course_vtx + count: 3 + offset: 0x12248 + +d_course_koopa_troopa_beach_vertex_0x04014BF0: + symbol: d_course_koopa_troopa_beach_vertex_0x04014BF0 + type: mk64:course_vtx + count: 48 + offset: 0x12272 + +d_course_koopa_troopa_beach_vertex_0x04014DD0: + symbol: d_course_koopa_troopa_beach_vertex_0x04014DD0 + type: mk64:course_vtx + count: 48 + offset: 0x12416 + +d_course_koopa_troopa_beach_vertex_0x04014FB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04014FB0 + type: mk64:course_vtx + count: 49 + offset: 0x125ba + +d_course_koopa_troopa_beach_vertex_0x040151A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040151A0 + type: mk64:course_vtx + count: 9 + offset: 0x1276c + +d_course_koopa_troopa_beach_vertex_0x04015230: + symbol: d_course_koopa_troopa_beach_vertex_0x04015230 + type: mk64:course_vtx + count: 50 + offset: 0x127ea + +d_course_koopa_troopa_beach_vertex_0x04015430: + symbol: d_course_koopa_troopa_beach_vertex_0x04015430 + type: mk64:course_vtx + count: 49 + offset: 0x129aa + +d_course_koopa_troopa_beach_vertex_0x04015620: + symbol: d_course_koopa_troopa_beach_vertex_0x04015620 + type: mk64:course_vtx + count: 3 + offset: 0x12b5c + +d_course_koopa_troopa_beach_vertex_0x04015650: + symbol: d_course_koopa_troopa_beach_vertex_0x04015650 + type: mk64:course_vtx + count: 48 + offset: 0x12b86 + +d_course_koopa_troopa_beach_vertex_0x04015830: + symbol: d_course_koopa_troopa_beach_vertex_0x04015830 + type: mk64:course_vtx + count: 3 + offset: 0x12d2a + +d_course_koopa_troopa_beach_vertex_0x04015860: + symbol: d_course_koopa_troopa_beach_vertex_0x04015860 + type: mk64:course_vtx + count: 3 + offset: 0x12d54 + +d_course_koopa_troopa_beach_vertex_0x04015890: + symbol: d_course_koopa_troopa_beach_vertex_0x04015890 + type: mk64:course_vtx + count: 48 + offset: 0x12d7e + +d_course_koopa_troopa_beach_vertex_0x04015A70: + symbol: d_course_koopa_troopa_beach_vertex_0x04015A70 + type: mk64:course_vtx + count: 21 + offset: 0x12f22 + +d_course_koopa_troopa_beach_vertex_0x04015B60: + symbol: d_course_koopa_troopa_beach_vertex_0x04015B60 + type: mk64:course_vtx + count: 3 + offset: 0x12ff4 + +d_course_koopa_troopa_beach_vertex_0x04015B90: + symbol: d_course_koopa_troopa_beach_vertex_0x04015B90 + type: mk64:course_vtx + count: 49 + offset: 0x1301e + +d_course_koopa_troopa_beach_vertex_0x04015D80: + symbol: d_course_koopa_troopa_beach_vertex_0x04015D80 + type: mk64:course_vtx + count: 19 + offset: 0x131d0 + +d_course_koopa_troopa_beach_vertex_0x04015E50: + symbol: d_course_koopa_troopa_beach_vertex_0x04015E50 + type: mk64:course_vtx + count: 48 + offset: 0x13286 + +d_course_koopa_troopa_beach_vertex_0x04016030: + symbol: d_course_koopa_troopa_beach_vertex_0x04016030 + type: mk64:course_vtx + count: 48 + offset: 0x1342a + +d_course_koopa_troopa_beach_vertex_0x04016210: + symbol: d_course_koopa_troopa_beach_vertex_0x04016210 + type: mk64:course_vtx + count: 48 + offset: 0x135ce + +d_course_koopa_troopa_beach_vertex_0x040163F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040163F0 + type: mk64:course_vtx + count: 48 + offset: 0x13772 + +d_course_koopa_troopa_beach_vertex_0x040165D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040165D0 + type: mk64:course_vtx + count: 48 + offset: 0x13916 + +d_course_koopa_troopa_beach_vertex_0x040167B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040167B0 + type: mk64:course_vtx + count: 48 + offset: 0x13aba + +d_course_koopa_troopa_beach_vertex_0x04016990: + symbol: d_course_koopa_troopa_beach_vertex_0x04016990 + type: mk64:course_vtx + count: 3 + offset: 0x13c5e + +d_course_koopa_troopa_beach_vertex_0x040169C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040169C0 + type: mk64:course_vtx + count: 48 + offset: 0x13c88 + +d_course_koopa_troopa_beach_vertex_0x04016BA0: + symbol: d_course_koopa_troopa_beach_vertex_0x04016BA0 + type: mk64:course_vtx + count: 49 + offset: 0x13e2c + +d_course_koopa_troopa_beach_vertex_0x04016D90: + symbol: d_course_koopa_troopa_beach_vertex_0x04016D90 + type: mk64:course_vtx + count: 48 + offset: 0x13fde + +d_course_koopa_troopa_beach_vertex_0x04016F70: + symbol: d_course_koopa_troopa_beach_vertex_0x04016F70 + type: mk64:course_vtx + count: 39 + offset: 0x14182 + +d_course_koopa_troopa_beach_vertex_0x04017120: + symbol: d_course_koopa_troopa_beach_vertex_0x04017120 + type: mk64:course_vtx + count: 48 + offset: 0x142fc + +d_course_koopa_troopa_beach_vertex_0x04017300: + symbol: d_course_koopa_troopa_beach_vertex_0x04017300 + type: mk64:course_vtx + count: 18 + offset: 0x144a0 + +d_course_koopa_troopa_beach_vertex_0x040173C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040173C0 + type: mk64:course_vtx + count: 48 + offset: 0x14548 + +d_course_koopa_troopa_beach_vertex_0x040175A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040175A0 + type: mk64:course_vtx + count: 18 + offset: 0x146ec + +d_course_koopa_troopa_beach_vertex_0x04017660: + symbol: d_course_koopa_troopa_beach_vertex_0x04017660 + type: mk64:course_vtx + count: 48 + offset: 0x14794 + +d_course_koopa_troopa_beach_vertex_0x04017840: + symbol: d_course_koopa_troopa_beach_vertex_0x04017840 + type: mk64:course_vtx + count: 6 + offset: 0x14938 + +d_course_koopa_troopa_beach_vertex_0x040178A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040178A0 + type: mk64:course_vtx + count: 48 + offset: 0x1498c + +d_course_koopa_troopa_beach_vertex_0x04017A80: + symbol: d_course_koopa_troopa_beach_vertex_0x04017A80 + type: mk64:course_vtx + count: 49 + offset: 0x14b30 + +d_course_koopa_troopa_beach_vertex_0x04017C70: + symbol: d_course_koopa_troopa_beach_vertex_0x04017C70 + type: mk64:course_vtx + count: 50 + offset: 0x14ce2 + +d_course_koopa_troopa_beach_vertex_0x04017E70: + symbol: d_course_koopa_troopa_beach_vertex_0x04017E70 + type: mk64:course_vtx + count: 48 + offset: 0x14ea2 + +d_course_koopa_troopa_beach_vertex_0x04018050: + symbol: d_course_koopa_troopa_beach_vertex_0x04018050 + type: mk64:course_vtx + count: 9 + offset: 0x15046 + +d_course_koopa_troopa_beach_vertex_0x040180E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040180E0 + type: mk64:course_vtx + count: 48 + offset: 0x150c4 + +d_course_koopa_troopa_beach_vertex_0x040182C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040182C0 + type: mk64:course_vtx + count: 48 + offset: 0x15268 + +d_course_koopa_troopa_beach_vertex_0x040184A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040184A0 + type: mk64:course_vtx + count: 48 + offset: 0x1540c + +d_course_koopa_troopa_beach_vertex_0x04018680: + symbol: d_course_koopa_troopa_beach_vertex_0x04018680 + type: mk64:course_vtx + count: 35 + offset: 0x155b0 + +d_course_koopa_troopa_beach_vertex_0x040187F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040187F0 + type: mk64:course_vtx + count: 50 + offset: 0x156f2 + +d_course_koopa_troopa_beach_vertex_0x040189F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040189F0 + type: mk64:course_vtx + count: 48 + offset: 0x158b2 + +d_course_koopa_troopa_beach_vertex_0x04018BD0: + symbol: d_course_koopa_troopa_beach_vertex_0x04018BD0 + type: mk64:course_vtx + count: 23 + offset: 0x15a56 + +d_course_koopa_troopa_beach_vertex_0x04018CE0: + symbol: d_course_koopa_troopa_beach_vertex_0x04018CE0 + type: mk64:course_vtx + count: 48 + offset: 0x15b44 + +d_course_koopa_troopa_beach_vertex_0x04018EC0: + symbol: d_course_koopa_troopa_beach_vertex_0x04018EC0 + type: mk64:course_vtx + count: 9 + offset: 0x15ce8 + +d_course_koopa_troopa_beach_vertex_0x04018F50: + symbol: d_course_koopa_troopa_beach_vertex_0x04018F50 + type: mk64:course_vtx + count: 48 + offset: 0x15d66 + +d_course_koopa_troopa_beach_vertex_0x04019130: + symbol: d_course_koopa_troopa_beach_vertex_0x04019130 + type: mk64:course_vtx + count: 33 + offset: 0x15f0a + +d_course_koopa_troopa_beach_vertex_0x04019280: + symbol: d_course_koopa_troopa_beach_vertex_0x04019280 + type: mk64:course_vtx + count: 50 + offset: 0x16030 + +d_course_koopa_troopa_beach_vertex_0x04019480: + symbol: d_course_koopa_troopa_beach_vertex_0x04019480 + type: mk64:course_vtx + count: 21 + offset: 0x161f0 + +d_course_koopa_troopa_beach_vertex_0x04019570: + symbol: d_course_koopa_troopa_beach_vertex_0x04019570 + type: mk64:course_vtx + count: 48 + offset: 0x162c2 + +d_course_koopa_troopa_beach_vertex_0x04019750: + symbol: d_course_koopa_troopa_beach_vertex_0x04019750 + type: mk64:course_vtx + count: 39 + offset: 0x16466 + +d_course_koopa_troopa_beach_vertex_0x04019900: + symbol: d_course_koopa_troopa_beach_vertex_0x04019900 + type: mk64:course_vtx + count: 4 + offset: 0x165e0 + +d_course_koopa_troopa_beach_vertex_0x04019940: + symbol: d_course_koopa_troopa_beach_vertex_0x04019940 + type: mk64:course_vtx + count: 18 + offset: 0x16618 + +d_course_koopa_troopa_beach_vertex_0x04019A00: + symbol: d_course_koopa_troopa_beach_vertex_0x04019A00 + type: mk64:course_vtx + count: 6 + offset: 0x166c0 + +d_course_koopa_troopa_beach_vertex_0x04019A60: + symbol: d_course_koopa_troopa_beach_vertex_0x04019A60 + type: mk64:course_vtx + count: 48 + offset: 0x16714 + +d_course_koopa_troopa_beach_vertex_0x04019C40: + symbol: d_course_koopa_troopa_beach_vertex_0x04019C40 + type: mk64:course_vtx + count: 6 + offset: 0x168b8 + +d_course_koopa_troopa_beach_vertex_0x04019CA0: + symbol: d_course_koopa_troopa_beach_vertex_0x04019CA0 + type: mk64:course_vtx + count: 50 + offset: 0x1690c + +d_course_koopa_troopa_beach_vertex_0x04019EA0: + symbol: d_course_koopa_troopa_beach_vertex_0x04019EA0 + type: mk64:course_vtx + count: 9 + offset: 0x16acc + +d_course_koopa_troopa_beach_vertex_0x04019F30: + symbol: d_course_koopa_troopa_beach_vertex_0x04019F30 + type: mk64:course_vtx + count: 48 + offset: 0x16b4a + +d_course_koopa_troopa_beach_vertex_0x0401A110: + symbol: d_course_koopa_troopa_beach_vertex_0x0401A110 + type: mk64:course_vtx + count: 3 + offset: 0x16cee + +d_course_koopa_troopa_beach_vertex_0x0401A140: + symbol: d_course_koopa_troopa_beach_vertex_0x0401A140 + type: mk64:course_vtx + count: 50 + offset: 0x16d18 + +d_course_koopa_troopa_beach_vertex_0x0401A340: + symbol: d_course_koopa_troopa_beach_vertex_0x0401A340 + type: mk64:course_vtx + count: 24 + offset: 0x16ed8 + +d_course_koopa_troopa_beach_vertex_0x0401A460: + symbol: d_course_koopa_troopa_beach_vertex_0x0401A460 + type: mk64:course_vtx + count: 18 + offset: 0x16fd4 + +d_course_koopa_troopa_beach_vertex_0x0401A520: + symbol: d_course_koopa_troopa_beach_vertex_0x0401A520 + type: mk64:course_vtx + count: 50 + offset: 0x1707c + +d_course_koopa_troopa_beach_vertex_0x0401A720: + symbol: d_course_koopa_troopa_beach_vertex_0x0401A720 + type: mk64:course_vtx + count: 48 + offset: 0x1723c + +d_course_koopa_troopa_beach_vertex_0x0401A900: + symbol: d_course_koopa_troopa_beach_vertex_0x0401A900 + type: mk64:course_vtx + count: 48 + offset: 0x173e0 + +d_course_koopa_troopa_beach_vertex_0x0401AAE0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401AAE0 + type: mk64:course_vtx + count: 9 + offset: 0x17584 + +d_course_koopa_troopa_beach_vertex_0x0401AB70: + symbol: d_course_koopa_troopa_beach_vertex_0x0401AB70 + type: mk64:course_vtx + count: 50 + offset: 0x17602 + +d_course_koopa_troopa_beach_vertex_0x0401AD70: + symbol: d_course_koopa_troopa_beach_vertex_0x0401AD70 + type: mk64:course_vtx + count: 49 + offset: 0x177c2 + +d_course_koopa_troopa_beach_vertex_0x0401AF60: + symbol: d_course_koopa_troopa_beach_vertex_0x0401AF60 + type: mk64:course_vtx + count: 48 + offset: 0x17974 + +d_course_koopa_troopa_beach_vertex_0x0401B140: + symbol: d_course_koopa_troopa_beach_vertex_0x0401B140 + type: mk64:course_vtx + count: 49 + offset: 0x17b18 + +d_course_koopa_troopa_beach_vertex_0x0401B330: + symbol: d_course_koopa_troopa_beach_vertex_0x0401B330 + type: mk64:course_vtx + count: 49 + offset: 0x17cca + +d_course_koopa_troopa_beach_vertex_0x0401B520: + symbol: d_course_koopa_troopa_beach_vertex_0x0401B520 + type: mk64:course_vtx + count: 24 + offset: 0x17e7c + +d_course_koopa_troopa_beach_vertex_0x0401B640: + symbol: d_course_koopa_troopa_beach_vertex_0x0401B640 + type: mk64:course_vtx + count: 48 + offset: 0x17f78 + +d_course_koopa_troopa_beach_vertex_0x0401B820: + symbol: d_course_koopa_troopa_beach_vertex_0x0401B820 + type: mk64:course_vtx + count: 48 + offset: 0x1811c + +d_course_koopa_troopa_beach_vertex_0x0401BA00: + symbol: d_course_koopa_troopa_beach_vertex_0x0401BA00 + type: mk64:course_vtx + count: 48 + offset: 0x182c0 + +d_course_koopa_troopa_beach_vertex_0x0401BBE0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401BBE0 + type: mk64:course_vtx + count: 48 + offset: 0x18464 + +d_course_koopa_troopa_beach_vertex_0x0401BDC0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401BDC0 + type: mk64:course_vtx + count: 35 + offset: 0x18608 + +d_course_koopa_troopa_beach_vertex_0x0401BF30: + symbol: d_course_koopa_troopa_beach_vertex_0x0401BF30 + type: mk64:course_vtx + count: 50 + offset: 0x1874a + +d_course_koopa_troopa_beach_vertex_0x0401C130: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C130 + type: mk64:course_vtx + count: 18 + offset: 0x1890a + +d_course_koopa_troopa_beach_vertex_0x0401C1F0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C1F0 + type: mk64:course_vtx + count: 48 + offset: 0x189b2 + +d_course_koopa_troopa_beach_vertex_0x0401C3D0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C3D0 + type: mk64:course_vtx + count: 3 + offset: 0x18b56 + +d_course_koopa_troopa_beach_vertex_0x0401C400: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C400 + type: mk64:course_vtx + count: 33 + offset: 0x18b80 + +d_course_koopa_troopa_beach_vertex_0x0401C550: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C550 + type: mk64:course_vtx + count: 33 + offset: 0x18ca6 + +d_course_koopa_troopa_beach_vertex_0x0401C6A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C6A0 + type: mk64:course_vtx + count: 21 + offset: 0x18dcc + +d_course_koopa_troopa_beach_vertex_0x0401C790: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C790 + type: mk64:course_vtx + count: 8 + offset: 0x18e9e + +d_course_koopa_troopa_beach_vertex_0x0401C810: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C810 + type: mk64:course_vtx + count: 16 + offset: 0x18f0e + +d_course_koopa_troopa_beach_vertex_0x0401C8B0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C8B0 + type: mk64:course_vtx + count: 4 + offset: 0x18f9a + +d_course_koopa_troopa_beach_vertex_0x0401C8F0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C8F0 + type: mk64:course_vtx + count: 16 + offset: 0x18fd2 + +d_course_koopa_troopa_beach_vertex_0x0401C990: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C990 + type: mk64:course_vtx + count: 4 + offset: 0x1905e + +d_course_koopa_troopa_beach_vertex_0x0401C9D0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401C9D0 + type: mk64:course_vtx + count: 16 + offset: 0x19096 + +d_course_koopa_troopa_beach_vertex_0x0401CA70: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CA70 + type: mk64:course_vtx + count: 4 + offset: 0x19122 + +d_course_koopa_troopa_beach_vertex_0x0401CAB0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CAB0 + type: mk64:course_vtx + count: 16 + offset: 0x1915a + +d_course_koopa_troopa_beach_vertex_0x0401CB50: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CB50 + type: mk64:course_vtx + count: 4 + offset: 0x191e6 + +d_course_koopa_troopa_beach_vertex_0x0401CB90: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CB90 + type: mk64:course_vtx + count: 16 + offset: 0x1921e + +d_course_koopa_troopa_beach_vertex_0x0401CC30: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CC30 + type: mk64:course_vtx + count: 4 + offset: 0x192aa + +d_course_koopa_troopa_beach_vertex_0x0401CC70: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CC70 + type: mk64:course_vtx + count: 16 + offset: 0x192e2 + +d_course_koopa_troopa_beach_vertex_0x0401CD10: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CD10 + type: mk64:course_vtx + count: 4 + offset: 0x1936e + +d_course_koopa_troopa_beach_vertex_0x0401CD50: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CD50 + type: mk64:course_vtx + count: 16 + offset: 0x193a6 + +d_course_koopa_troopa_beach_vertex_0x0401CDF0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CDF0 + type: mk64:course_vtx + count: 4 + offset: 0x19432 + +d_course_koopa_troopa_beach_vertex_0x0401CE30: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CE30 + type: mk64:course_vtx + count: 16 + offset: 0x1946a + +d_course_koopa_troopa_beach_vertex_0x0401CED0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CED0 + type: mk64:course_vtx + count: 4 + offset: 0x194f6 + +d_course_koopa_troopa_beach_vertex_0x0401CF10: + symbol: d_course_koopa_troopa_beach_vertex_0x0401CF10 + type: mk64:course_vtx + count: 50 + offset: 0x1952e + +d_course_koopa_troopa_beach_vertex_0x0401D110: + symbol: d_course_koopa_troopa_beach_vertex_0x0401D110 + type: mk64:course_vtx + count: 8 + offset: 0x196ee + +d_course_koopa_troopa_beach_vertex_0x0401D190: + symbol: d_course_koopa_troopa_beach_vertex_0x0401D190 + type: mk64:course_vtx + count: 48 + offset: 0x1975e + +d_course_koopa_troopa_beach_vertex_0x0401D370: + symbol: d_course_koopa_troopa_beach_vertex_0x0401D370 + type: mk64:course_vtx + count: 3 + offset: 0x19902 + +d_course_koopa_troopa_beach_vertex_0x0401D3A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401D3A0 + type: mk64:course_vtx + count: 50 + offset: 0x1992c + +d_course_koopa_troopa_beach_vertex_0x0401D5A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401D5A0 + type: mk64:course_vtx + count: 8 + offset: 0x19aec + +d_course_koopa_troopa_beach_vertex_0x0401D620: + symbol: d_course_koopa_troopa_beach_vertex_0x0401D620 + type: mk64:course_vtx + count: 48 + offset: 0x19b5c + +d_course_koopa_troopa_beach_vertex_0x0401D800: + symbol: d_course_koopa_troopa_beach_vertex_0x0401D800 + type: mk64:course_vtx + count: 3 + offset: 0x19d00 + +d_course_koopa_troopa_beach_vertex_0x0401D830: + symbol: d_course_koopa_troopa_beach_vertex_0x0401D830 + type: mk64:course_vtx + count: 48 + offset: 0x19d2a + +d_course_koopa_troopa_beach_vertex_0x0401DA10: + symbol: d_course_koopa_troopa_beach_vertex_0x0401DA10 + type: mk64:course_vtx + count: 48 + offset: 0x19ece + +d_course_koopa_troopa_beach_vertex_0x0401DBF0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401DBF0 + type: mk64:course_vtx + count: 48 + offset: 0x1a072 + +d_course_koopa_troopa_beach_vertex_0x0401DDD0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401DDD0 + type: mk64:course_vtx + count: 24 + offset: 0x1a216 + +d_course_koopa_troopa_beach_vertex_0x0401DEF0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401DEF0 + type: mk64:course_vtx + count: 48 + offset: 0x1a312 + +d_course_koopa_troopa_beach_vertex_0x0401E0D0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401E0D0 + type: mk64:course_vtx + count: 48 + offset: 0x1a4b6 + +d_course_koopa_troopa_beach_vertex_0x0401E2B0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401E2B0 + type: mk64:course_vtx + count: 48 + offset: 0x1a65a + +d_course_koopa_troopa_beach_vertex_0x0401E490: + symbol: d_course_koopa_troopa_beach_vertex_0x0401E490 + type: mk64:course_vtx + count: 3 + offset: 0x1a7fe + +d_course_koopa_troopa_beach_vertex_0x0401E4C0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401E4C0 + type: mk64:course_vtx + count: 16 + offset: 0x1a828 + +d_course_koopa_troopa_beach_vertex_0x0401E560: + symbol: d_course_koopa_troopa_beach_vertex_0x0401E560 + type: mk64:course_vtx + count: 50 + offset: 0x1a8b4 + +d_course_koopa_troopa_beach_vertex_0x0401E760: + symbol: d_course_koopa_troopa_beach_vertex_0x0401E760 + type: mk64:course_vtx + count: 41 + offset: 0x1aa74 + +d_course_koopa_troopa_beach_vertex_0x0401E930: + symbol: d_course_koopa_troopa_beach_vertex_0x0401E930 + type: mk64:course_vtx + count: 25 + offset: 0x1ac0a + +d_course_koopa_troopa_beach_vertex_0x0401EA60: + symbol: d_course_koopa_troopa_beach_vertex_0x0401EA60 + type: mk64:course_vtx + count: 50 + offset: 0x1ad14 + +d_course_koopa_troopa_beach_vertex_0x0401EC60: + symbol: d_course_koopa_troopa_beach_vertex_0x0401EC60 + type: mk64:course_vtx + count: 18 + offset: 0x1aed4 + +d_course_koopa_troopa_beach_vertex_0x0401ED20: + symbol: d_course_koopa_troopa_beach_vertex_0x0401ED20 + type: mk64:course_vtx + count: 35 + offset: 0x1af7c + +d_course_koopa_troopa_beach_vertex_0x0401EE90: + symbol: d_course_koopa_troopa_beach_vertex_0x0401EE90 + type: mk64:course_vtx + count: 33 + offset: 0x1b0be + +d_course_koopa_troopa_beach_vertex_0x0401EFE0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401EFE0 + type: mk64:course_vtx + count: 35 + offset: 0x1b1e4 + +d_course_koopa_troopa_beach_vertex_0x0401F150: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F150 + type: mk64:course_vtx + count: 32 + offset: 0x1b326 + +d_course_koopa_troopa_beach_vertex_0x0401F290: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F290 + type: mk64:course_vtx + count: 32 + offset: 0x1b43e + +d_course_koopa_troopa_beach_vertex_0x0401F3D0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F3D0 + type: mk64:course_vtx + count: 8 + offset: 0x1b556 + +d_course_koopa_troopa_beach_vertex_0x0401F450: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F450 + type: mk64:course_vtx + count: 18 + offset: 0x1b5c6 + +d_course_koopa_troopa_beach_vertex_0x0401F510: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F510 + type: mk64:course_vtx + count: 23 + offset: 0x1b66e + +d_course_koopa_troopa_beach_vertex_0x0401F620: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F620 + type: mk64:course_vtx + count: 49 + offset: 0x1b75c + +d_course_koopa_troopa_beach_vertex_0x0401F810: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F810 + type: mk64:course_vtx + count: 8 + offset: 0x1b90e + +d_course_koopa_troopa_beach_vertex_0x0401F890: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F890 + type: mk64:course_vtx + count: 23 + offset: 0x1b97e + +d_course_koopa_troopa_beach_vertex_0x0401F9A0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401F9A0 + type: mk64:course_vtx + count: 36 + offset: 0x1ba6c + +d_course_koopa_troopa_beach_vertex_0x0401FB20: + symbol: d_course_koopa_troopa_beach_vertex_0x0401FB20 + type: mk64:course_vtx + count: 48 + offset: 0x1bbbc + +d_course_koopa_troopa_beach_vertex_0x0401FD00: + symbol: d_course_koopa_troopa_beach_vertex_0x0401FD00 + type: mk64:course_vtx + count: 20 + offset: 0x1bd60 + +d_course_koopa_troopa_beach_vertex_0x0401FDE0: + symbol: d_course_koopa_troopa_beach_vertex_0x0401FDE0 + type: mk64:course_vtx + count: 25 + offset: 0x1be24 + +d_course_koopa_troopa_beach_vertex_0x0401FF10: + symbol: d_course_koopa_troopa_beach_vertex_0x0401FF10 + type: mk64:course_vtx + count: 38 + offset: 0x1bf2e + +d_course_koopa_troopa_beach_vertex_0x040200B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040200B0 + type: mk64:course_vtx + count: 38 + offset: 0x1c09a + +d_course_koopa_troopa_beach_vertex_0x04020250: + symbol: d_course_koopa_troopa_beach_vertex_0x04020250 + type: mk64:course_vtx + count: 24 + offset: 0x1c206 + +d_course_koopa_troopa_beach_vertex_0x04020370: + symbol: d_course_koopa_troopa_beach_vertex_0x04020370 + type: mk64:course_vtx + count: 36 + offset: 0x1c302 + +d_course_koopa_troopa_beach_vertex_0x040204F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040204F0 + type: mk64:course_vtx + count: 33 + offset: 0x1c452 + +d_course_koopa_troopa_beach_vertex_0x04020640: + symbol: d_course_koopa_troopa_beach_vertex_0x04020640 + type: mk64:course_vtx + count: 32 + offset: 0x1c578 + +d_course_koopa_troopa_beach_vertex_0x04020780: + symbol: d_course_koopa_troopa_beach_vertex_0x04020780 + type: mk64:course_vtx + count: 34 + offset: 0x1c690 + +d_course_koopa_troopa_beach_vertex_0x040208E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040208E0 + type: mk64:course_vtx + count: 24 + offset: 0x1c7c4 + +d_course_koopa_troopa_beach_vertex_0x04020A00: + symbol: d_course_koopa_troopa_beach_vertex_0x04020A00 + type: mk64:course_vtx + count: 32 + offset: 0x1c8c0 + +d_course_koopa_troopa_beach_vertex_0x04020B40: + symbol: d_course_koopa_troopa_beach_vertex_0x04020B40 + type: mk64:course_vtx + count: 38 + offset: 0x1c9d8 + +d_course_koopa_troopa_beach_vertex_0x04020CE0: + symbol: d_course_koopa_troopa_beach_vertex_0x04020CE0 + type: mk64:course_vtx + count: 35 + offset: 0x1cb44 + +d_course_koopa_troopa_beach_vertex_0x04020E50: + symbol: d_course_koopa_troopa_beach_vertex_0x04020E50 + type: mk64:course_vtx + count: 33 + offset: 0x1cc86 + +d_course_koopa_troopa_beach_vertex_0x04020FA0: + symbol: d_course_koopa_troopa_beach_vertex_0x04020FA0 + type: mk64:course_vtx + count: 25 + offset: 0x1cdac + +d_course_koopa_troopa_beach_vertex_0x040210D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040210D0 + type: mk64:course_vtx + count: 23 + offset: 0x1ceb6 + +d_course_koopa_troopa_beach_vertex_0x040211E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040211E0 + type: mk64:course_vtx + count: 24 + offset: 0x1cfa4 + +d_course_koopa_troopa_beach_vertex_0x04021300: + symbol: d_course_koopa_troopa_beach_vertex_0x04021300 + type: mk64:course_vtx + count: 35 + offset: 0x1d0a0 + +d_course_koopa_troopa_beach_vertex_0x04021470: + symbol: d_course_koopa_troopa_beach_vertex_0x04021470 + type: mk64:course_vtx + count: 25 + offset: 0x1d1e2 + +d_course_koopa_troopa_beach_vertex_0x040215A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040215A0 + type: mk64:course_vtx + count: 9 + offset: 0x1d2ec + +d_course_koopa_troopa_beach_vertex_0x04021630: + symbol: d_course_koopa_troopa_beach_vertex_0x04021630 + type: mk64:course_vtx + count: 9 + offset: 0x1d36a + +d_course_koopa_troopa_beach_vertex_0x040216C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040216C0 + type: mk64:course_vtx + count: 17 + offset: 0x1d3e8 + +d_course_koopa_troopa_beach_vertex_0x04021770: + symbol: d_course_koopa_troopa_beach_vertex_0x04021770 + type: mk64:course_vtx + count: 9 + offset: 0x1d482 + +d_course_koopa_troopa_beach_vertex_0x04021800: + symbol: d_course_koopa_troopa_beach_vertex_0x04021800 + type: mk64:course_vtx + count: 17 + offset: 0x1d500 + +d_course_koopa_troopa_beach_vertex_0x040218B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040218B0 + type: mk64:course_vtx + count: 23 + offset: 0x1d59a + +d_course_koopa_troopa_beach_vertex_0x040219C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040219C0 + type: mk64:course_vtx + count: 18 + offset: 0x1d688 + +d_course_koopa_troopa_beach_vertex_0x04021A80: + symbol: d_course_koopa_troopa_beach_vertex_0x04021A80 + type: mk64:course_vtx + count: 25 + offset: 0x1d730 + +d_course_koopa_troopa_beach_vertex_0x04021BB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04021BB0 + type: mk64:course_vtx + count: 9 + offset: 0x1d83a + +d_course_koopa_troopa_beach_vertex_0x04021C40: + symbol: d_course_koopa_troopa_beach_vertex_0x04021C40 + type: mk64:course_vtx + count: 6 + offset: 0x1d8b8 + +d_course_koopa_troopa_beach_vertex_0x04021CA0: + symbol: d_course_koopa_troopa_beach_vertex_0x04021CA0 + type: mk64:course_vtx + count: 20 + offset: 0x1d90c + +d_course_koopa_troopa_beach_vertex_0x04021D80: + symbol: d_course_koopa_troopa_beach_vertex_0x04021D80 + type: mk64:course_vtx + count: 9 + offset: 0x1d9d0 + +d_course_koopa_troopa_beach_vertex_0x04021E10: + symbol: d_course_koopa_troopa_beach_vertex_0x04021E10 + type: mk64:course_vtx + count: 20 + offset: 0x1da4e + +d_course_koopa_troopa_beach_vertex_0x04021EF0: + symbol: d_course_koopa_troopa_beach_vertex_0x04021EF0 + type: mk64:course_vtx + count: 18 + offset: 0x1db12 + +d_course_koopa_troopa_beach_vertex_0x04021FB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04021FB0 + type: mk64:course_vtx + count: 21 + offset: 0x1dbba + +d_course_koopa_troopa_beach_vertex_0x040220A0: + symbol: d_course_koopa_troopa_beach_vertex_0x040220A0 + type: mk64:course_vtx + count: 6 + offset: 0x1dc8c + +d_course_koopa_troopa_beach_vertex_0x04022100: + symbol: d_course_koopa_troopa_beach_vertex_0x04022100 + type: mk64:course_vtx + count: 9 + offset: 0x1dce0 + +d_course_koopa_troopa_beach_vertex_0x04022190: + symbol: d_course_koopa_troopa_beach_vertex_0x04022190 + type: mk64:course_vtx + count: 18 + offset: 0x1dd5e + +d_course_koopa_troopa_beach_vertex_0x04022250: + symbol: d_course_koopa_troopa_beach_vertex_0x04022250 + type: mk64:course_vtx + count: 50 + offset: 0x1de06 + +d_course_koopa_troopa_beach_vertex_0x04022450: + symbol: d_course_koopa_troopa_beach_vertex_0x04022450 + type: mk64:course_vtx + count: 18 + offset: 0x1dfc6 + +d_course_koopa_troopa_beach_vertex_0x04022510: + symbol: d_course_koopa_troopa_beach_vertex_0x04022510 + type: mk64:course_vtx + count: 49 + offset: 0x1e06e + +d_course_koopa_troopa_beach_vertex_0x04022700: + symbol: d_course_koopa_troopa_beach_vertex_0x04022700 + type: mk64:course_vtx + count: 18 + offset: 0x1e220 + +d_course_koopa_troopa_beach_vertex_0x040227C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040227C0 + type: mk64:course_vtx + count: 50 + offset: 0x1e2c8 + +d_course_koopa_troopa_beach_vertex_0x040229C0: + symbol: d_course_koopa_troopa_beach_vertex_0x040229C0 + type: mk64:course_vtx + count: 3 + offset: 0x1e488 + +d_course_koopa_troopa_beach_vertex_0x040229F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040229F0 + type: mk64:course_vtx + count: 48 + offset: 0x1e4b2 + +d_course_koopa_troopa_beach_vertex_0x04022BD0: + symbol: d_course_koopa_troopa_beach_vertex_0x04022BD0 + type: mk64:course_vtx + count: 21 + offset: 0x1e656 + +d_course_koopa_troopa_beach_vertex_0x04022CC0: + symbol: d_course_koopa_troopa_beach_vertex_0x04022CC0 + type: mk64:course_vtx + count: 49 + offset: 0x1e728 + +d_course_koopa_troopa_beach_vertex_0x04022EB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04022EB0 + type: mk64:course_vtx + count: 6 + offset: 0x1e8da + +d_course_koopa_troopa_beach_vertex_0x04022F10: + symbol: d_course_koopa_troopa_beach_vertex_0x04022F10 + type: mk64:course_vtx + count: 48 + offset: 0x1e92e + +d_course_koopa_troopa_beach_vertex_0x040230F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040230F0 + type: mk64:course_vtx + count: 22 + offset: 0x1ead2 + +d_course_koopa_troopa_beach_vertex_0x040231F0: + symbol: d_course_koopa_troopa_beach_vertex_0x040231F0 + type: mk64:course_vtx + count: 48 + offset: 0x1ebb2 + +d_course_koopa_troopa_beach_vertex_0x040233D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040233D0 + type: mk64:course_vtx + count: 20 + offset: 0x1ed56 + +d_course_koopa_troopa_beach_vertex_0x040234B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040234B0 + type: mk64:course_vtx + count: 50 + offset: 0x1ee1a + +d_course_koopa_troopa_beach_vertex_0x040236B0: + symbol: d_course_koopa_troopa_beach_vertex_0x040236B0 + type: mk64:course_vtx + count: 25 + offset: 0x1efda + +d_course_koopa_troopa_beach_vertex_0x040237E0: + symbol: d_course_koopa_troopa_beach_vertex_0x040237E0 + type: mk64:course_vtx + count: 49 + offset: 0x1f0e4 + +d_course_koopa_troopa_beach_vertex_0x040239D0: + symbol: d_course_koopa_troopa_beach_vertex_0x040239D0 + type: mk64:course_vtx + count: 20 + offset: 0x1f296 + +d_course_koopa_troopa_beach_vertex_0x04023AB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04023AB0 + type: mk64:course_vtx + count: 8 + offset: 0x1f35a + +d_course_koopa_troopa_beach_vertex_0x04023B30: + symbol: d_course_koopa_troopa_beach_vertex_0x04023B30 + type: mk64:course_vtx + count: 18 + offset: 0x1f3ca + +d_course_koopa_troopa_beach_vertex_0x04023BF0: + symbol: d_course_koopa_troopa_beach_vertex_0x04023BF0 + type: mk64:course_vtx + count: 9 + offset: 0x1f472 + +d_course_koopa_troopa_beach_vertex_0x04023C80: + symbol: d_course_koopa_troopa_beach_vertex_0x04023C80 + type: mk64:course_vtx + count: 17 + offset: 0x1f4f0 + +d_course_koopa_troopa_beach_vertex_0x04023D30: + symbol: d_course_koopa_troopa_beach_vertex_0x04023D30 + type: mk64:course_vtx + count: 8 + offset: 0x1f58a + +d_course_koopa_troopa_beach_vertex_0x04023DB0: + symbol: d_course_koopa_troopa_beach_vertex_0x04023DB0 + type: mk64:course_vtx + count: 37 + offset: 0x1f5fa + +d_course_koopa_troopa_beach_vertex_0x04023F40: + symbol: d_course_koopa_troopa_beach_vertex_0x04023F40 + type: mk64:course_vtx + count: 9 + offset: 0x1f758 + +d_course_koopa_troopa_beach_vertex_0x04023FD0: + symbol: d_course_koopa_troopa_beach_vertex_0x04023FD0 + type: mk64:course_vtx + count: 18 + offset: 0x1f7d6 + +d_course_koopa_troopa_beach_vertex_0x04024090: + symbol: d_course_koopa_troopa_beach_vertex_0x04024090 + type: mk64:course_vtx + count: 20 + offset: 0x1f87e + +d_course_koopa_troopa_beach_vertex_0x04024170: + symbol: d_course_koopa_troopa_beach_vertex_0x04024170 + type: mk64:course_vtx + count: 18 + offset: 0x1f942 + +d_course_koopa_troopa_beach_vertex_0x04024230: + symbol: d_course_koopa_troopa_beach_vertex_0x04024230 + type: mk64:course_vtx + count: 25 + offset: 0x1f9ea + +d_course_koopa_troopa_beach_vertex_0x04024360: + symbol: d_course_koopa_troopa_beach_vertex_0x04024360 + type: mk64:course_vtx + count: 48 + offset: 0x1faf4 + +d_course_koopa_troopa_beach_vertex_0x04024540: + symbol: d_course_koopa_troopa_beach_vertex_0x04024540 + type: mk64:course_vtx + count: 48 + offset: 0x1fc98 + +d_course_koopa_troopa_beach_vertex_0x04024720: + symbol: d_course_koopa_troopa_beach_vertex_0x04024720 + type: mk64:course_vtx + count: 6 + offset: 0x1fe3c + +d_course_koopa_troopa_beach_vertex_0x04024780: + symbol: d_course_koopa_troopa_beach_vertex_0x04024780 + type: mk64:course_vtx + count: 49 + offset: 0x1fe90 + +d_course_koopa_troopa_beach_vertex_0x04024970: + symbol: d_course_koopa_troopa_beach_vertex_0x04024970 + type: mk64:course_vtx + count: 9 + offset: 0x20042 diff --git a/yamls/us/models/tracks/luigi_raceway/luigi_raceway_data.yml b/yamls/us/models/tracks/luigi_raceway/luigi_raceway_data.yml new file mode 100644 index 000000000..2dd8dfaa4 --- /dev/null +++ b/yamls/us/models/tracks/luigi_raceway/luigi_raceway_data.yml @@ -0,0 +1,1677 @@ +:config: + segments: + - [0x06, 0x84E8E0] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/luigi_raceway/luigi_raceway_data.yml" + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees5Left"] + - [0x03009800, "textures/other_textures/gTextureTrees5Right"] + # Segment 5 + - [0x05000000, "textures/other_textures/sign_shell_shot_0"] + - [0x05001000, "textures/other_textures/sign_shell_shot_1"] + - [0x05002000, "textures/other_textures/checkerbord_yellow_blue"] + - [0x05002800, "textures/other_textures/texture_64619C"] + - [0x05003000, "textures/other_textures/checkerboard_blue_green"] + - [0x05003800, "textures/other_textures/grass_3"] + - [0x05004000, "textures/other_textures/flag_red"] + - [0x05004800, "textures/other_textures/texture_65100C"] + - [0x05005000, "textures/other_textures/texture_65112C"] + - [0x05005800, "textures/other_textures/texture_653608"] + - [0x05006000, "textures/other_textures/grass_11"] + - [0x05006800, "textures/other_textures/sign_luigi_face_0"] + - [0x05007800, "textures/other_textures/sign_luigi_face_1"] + - [0x05008800, "textures/other_textures/texture_66C7A8"] + - [0x05009000, "textures/other_textures/texture_670AC8"] + - [0x0500A000, "textures/other_textures/texture_671A88"] + - [0x0500A800, "textures/other_textures/texture_6735DC"] + - [0x0500B000, "textures/other_textures/texture_673C68"] + - [0x0500B800, "textures/other_textures/texture_6747C4"] + - [0x0500C000, "textures/other_textures/road_1"] + - [0x0500D000, "textures/other_textures/road_2"] + - [0x0500E000, "textures/other_textures/road_finish_1"] + - [0x0500F000, "textures/other_textures/texture_67BBD8"] + - [0x0500F800, "textures/other_textures/texture_68272C"] + - [0x05010800, "textures/other_textures/texture_682928"] + - [0x05011800, "textures/other_textures/texture_682B24"] + - [0x05012800, "textures/other_textures/texture_682D20"] + - [0x05013800, "textures/other_textures/texture_682F1C"] + - [0x05014800, "textures/other_textures/texture_683118"] + - [0x05015800, "textures/other_textures/sign_blue_64"] + - [0x05016800, "textures/other_textures/sign_koopa_air_0"] + - [0x05017800, "textures/other_textures/sign_koopa_air_1"] + - [0x05018800, "textures/other_textures/sign_luigis_0"] + - [0x05019800, "textures/other_textures/sign_luigis_1"] + - [0x0501A800, "textures/other_textures/sign_mario_star_0"] + - [0x0501B800, "textures/other_textures/sign_mario_star_1"] + - [0x0501C800, "textures/other_textures/sign_nintendo_red_0"] + - [0x0501D800, "textures/other_textures/sign_nintendo_red_1"] + - [0x0501E800, "textures/other_textures/sign_yoshi"] + - [0x0501F800, "textures/other_textures/checkerboard_blue_gray"] + # Segment 7 + - [0x7000000, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_0"] + - [0x7000068, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_68"] + - [0x7000078, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_78"] + - [0x70000E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_E0"] + - [0x70000F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F0"] + - [0x7000108, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_108"] + - [0x7000118, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_118"] + - [0x7000190, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_190"] + - [0x7000208, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_208"] + - [0x7000280, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_280"] + - [0x70002F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2F8"] + - [0x7000370, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_370"] + - [0x70003E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3E8"] + - [0x7000450, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_450"] + - [0x70004B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4B8"] + - [0x7000528, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_528"] + - [0x70005A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5A0"] + - [0x7000610, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_610"] + - [0x7000688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_688"] + - [0x7000700, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_700"] + - [0x7000778, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_778"] + - [0x70007F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7F0"] + - [0x7000858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_858"] + - [0x70008D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D0"] + - [0x7000938, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_938"] + - [0x70009A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9A8"] + - [0x7000A20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A20"] + - [0x7000A98, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A98"] + - [0x7000B48, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B48"] + - [0x7000BD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BD0"] + - [0x7000C58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C58"] + - [0x7000CE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_CE0"] + - [0x7000D68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_D68"] + - [0x7000DF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_DF0"] + - [0x7000E78, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_E78"] + - [0x7000F00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F00"] + - [0x7000F88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F88"] + - [0x7001000, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1000"] + - [0x7001088, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1088"] + - [0x7001110, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1110"] + - [0x70011B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_11B8"] + - [0x7001260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1260"] + - [0x7001308, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1308"] + - [0x70013B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_13B0"] + - [0x7001438, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1438"] + - [0x70014E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_14E0"] + - [0x7001558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1558"] + - [0x70015E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_15E0"] + - [0x7001688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1688"] + - [0x7001730, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1730"] + - [0x70017E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_17E0"] + - [0x7001848, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1848"] + - [0x70018B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_18B8"] + - [0x7001920, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1920"] + - [0x7001988, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1988"] + - [0x7001A28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1A28"] + - [0x7001AC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1AC8"] + - [0x7001B28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1B28"] + - [0x7001BD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1BD8"] + - [0x7001C90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1C90"] + - [0x7001D00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1D00"] + - [0x7001D68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1D68"] + - [0x7001E10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1E10"] + - [0x7001E70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1E70"] + - [0x7001F18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1F18"] + - [0x7001F90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1F90"] + - [0x7001FF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1FF0"] + - [0x7002050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2050"] + - [0x70020C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_20C0"] + - [0x7002130, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2130"] + - [0x70021A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_21A8"] + - [0x7002210, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2210"] + - [0x7002280, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2280"] + - [0x70022F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_22F8"] + - [0x7002368, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2368"] + - [0x70023E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_23E0"] + - [0x7002458, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2458"] + - [0x70024E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_24E0"] + - [0x7002560, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2560"] + - [0x70025E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_25E8"] + - [0x7002658, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2658"] + - [0x70026B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_26B8"] + - [0x7002720, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2720"] + - [0x7002798, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2798"] + - [0x7002810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2810"] + - [0x7002888, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2888"] + - [0x7002900, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2900"] + - [0x7002978, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2978"] + - [0x70029F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_29F0"] + - [0x7002A68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2A68"] + - [0x7002AE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2AE0"] + - [0x7002B58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2B58"] + - [0x7002BC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2BC8"] + - [0x7002C40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2C40"] + - [0x7002CB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2CB8"] + - [0x7002D30, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2D30"] + - [0x7002DA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2DA8"] + - [0x7002E20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2E20"] + - [0x7002E90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2E90"] + - [0x7002EF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2EF8"] + - [0x7002F60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2F60"] + - [0x7003080, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3080"] + - [0x70030F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_30F8"] + - [0x7003170, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3170"] + - [0x70031E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_31E8"] + - [0x7003260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3260"] + - [0x70032D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_32D8"] + - [0x7003350, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3350"] + - [0x70033C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_33C8"] + - [0x7003448, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3448"] + - [0x70034C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_34C8"] + - [0x7003548, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3548"] + - [0x70035D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_35D0"] + - [0x7003678, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3678"] + - [0x70036F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_36F8"] + - [0x7003768, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3768"] + - [0x70037E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_37E0"] + - [0x7003858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3858"] + - [0x70038D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_38D0"] + - [0x7003948, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3948"] + - [0x70039C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_39C8"] + - [0x7003A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3A58"] + - [0x7003AD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3AD0"] + - [0x7003B38, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3B38"] + - [0x7003BD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3BD0"] + - [0x7003C40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3C40"] + - [0x7003CF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3CF0"] + - [0x7003D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3D60"] + - [0x7003DD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3DD8"] + - [0x7003EB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3EB8"] + - [0x7003FC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3FC0"] + - [0x7004148, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4148"] + - [0x7004330, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4330"] + - [0x7004518, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4518"] + - [0x7004540, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4540"] + - [0x70045B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_45B8"] + - [0x70046A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_46A0"] + - [0x7004860, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4860"] + - [0x7004880, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4880"] + - [0x7004960, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4960"] + - [0x70049B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_49B8"] + - [0x7004A28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4A28"] + - [0x7004B10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4B10"] + - [0x7004C28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4C28"] + - [0x7004EE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4EE8"] + - [0x7004F20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4F20"] + - [0x7005038, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5038"] + - [0x70051D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_51D8"] + - [0x70053E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_53E0"] + - [0x70055E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_55E8"] + - [0x7005788, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5788"] + - [0x70058A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_58A0"] + - [0x70059B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_59B8"] + - [0x7005AB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5AB8"] + - [0x7005BB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5BB8"] + - [0x7005CD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5CD0"] + - [0x7005ED8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5ED8"] + - [0x70060E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_60E0"] + - [0x7006300, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6300"] + - [0x7006418, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6418"] + - [0x7006558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6558"] + - [0x70065D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_65D8"] + - [0x7006680, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6680"] + - [0x7006728, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6728"] + - [0x70067D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_67D0"] + - [0x7006878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6878"] + - [0x7006920, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6920"] + - [0x70069C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_69C0"] + - [0x7006A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6A58"] + - [0x7006B00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6B00"] + - [0x7006BF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6BF0"] + - [0x7006CA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6CA8"] + - [0x7006D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6D60"] + - [0x7006E18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6E18"] + - [0x7006EF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6EF0"] + - [0x7006FA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6FA8"] + - [0x7007050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7050"] + - [0x70070F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_70F8"] + - [0x70071A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_71A0"] + - [0x7007248, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7248"] + - [0x70072F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_72F0"] + - [0x7007398, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7398"] + - [0x7007440, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7440"] + - [0x70074F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_74F0"] + - [0x70075A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_75A8"] + - [0x7007650, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7650"] + - [0x70076F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_76F8"] + - [0x70077B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_77B0"] + - [0x7007878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7878"] + - [0x7007940, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7940"] + - [0x70079E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_79E8"] + - [0x7007A88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7A88"] + - [0x7007B80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7B80"] + - [0x7007BF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7BF8"] + - [0x7007C80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7C80"] + - [0x7007CF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7CF0"] + - [0x7007D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7D60"] + - [0x7007DD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7DD8"] + - [0x7007E50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7E50"] + - [0x7007EB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7EB8"] + - [0x7007EF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7EF8"] + - [0x7007F68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7F68"] + - [0x7007FE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7FE0"] + - [0x7008048, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8048"] + - [0x70080B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_80B0"] + - [0x7008128, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8128"] + - [0x7008190, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8190"] + - [0x7008200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8200"] + - [0x7008240, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8240"] + - [0x7008320, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8320"] + - [0x70083C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_83C8"] + - [0x70083E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_83E0"] + - [0x7008448, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8448"] + - [0x70084B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_84B0"] + - [0x70084C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_84C8"] + - [0x7008528, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8528"] + - [0x70085F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_85F8"] + - [0x7008768, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8768"] + - [0x7008788, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8788"] + - [0x70087F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_87F0"] + - [0x7008858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8858"] + - [0x70088C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_88C0"] + - [0x7008928, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8928"] + - [0x7008990, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8990"] + - [0x70089F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_89F8"] + - [0x7008A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8A58"] + - [0x7008AB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8AB8"] + - [0x7008B18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8B18"] + - [0x7008B80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8B80"] + - [0x7008BE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8BE8"] + - [0x7008C50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8C50"] + - [0x7008CB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8CB8"] + - [0x7008D20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D20"] + - [0x7008D88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D88"] + - [0x7008DE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8DE8"] + - [0x7008E50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8E50"] + - [0x7008EB0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8EB0"] + - [0x7008F18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8F18"] + - [0x7008F80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8F80"] + - [0x7008FE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8FE8"] + - [0x7009098, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9098"] + - [0x7009120, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9120"] + - [0x70091A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_91A8"] + - [0x7009230, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9230"] + - [0x70092B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_92B8"] + - [0x7009340, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9340"] + - [0x70093C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_93C8"] + - [0x7009440, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9440"] + - [0x70094B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_94B8"] + - [0x7009530, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9530"] + - [0x70095B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_95B8"] + - [0x7009640, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9640"] + - [0x70096C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_96C8"] + - [0x7009750, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9750"] + - [0x70097D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_97D8"] + - [0x7009860, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9860"] + - [0x70098D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_98D8"] + - [0x7009960, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9960"] + - [0x70099D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_99D8"] + - [0x7009A60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9A60"] + - [0x7009AE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9AE8"] + - [0x7009B70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9B70"] + - [0x7009C20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9C20"] + - [0x7009EC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9EC0"] + - [0x7009ED0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9ED0"] + - [0x7009F70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9F70"] + - [0x700A010, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A010"] + - [0x700A028, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A028"] + - [0x700A088, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A088"] + - [0x700A0F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A0F0"] + - [0x700A150, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A150"] + - [0x700A1B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A1B0"] + - [0x700A210, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A210"] + - [0x700A270, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A270"] + - [0x700A2A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A2A8"] + - [0x700A308, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A308"] + - [0x700A368, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A368"] + - [0x700A3C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A3C8"] + - [0x700A430, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A430"] + - [0x700A490, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A490"] + - [0x700A4F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A4F8"] + - [0x700A558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A558"] + - [0x700A5C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A5C0"] + - [0x700A620, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A620"] + - [0x700A688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A688"] + - [0x700A6E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A6E8"] + - [0x700A748, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A748"] + - [0x700A7A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A7A8"] + - [0x700A810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A810"] + - [0x700A870, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A870"] + - [0x700A8D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A8D0"] + - [0x700A930, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A930"] + - [0x700A998, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A998"] + - [0x700AA00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AA00"] + - [0x700AA68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AA68"] + - [0x700AAD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AAD0"] + - [0x700AB38, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AB38"] + - [0x700ABA0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ABA0"] + - [0x700AC08, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AC08"] + - [0x700AC70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AC70"] + - [0x700ACD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ACD8"] + - [0x700AD40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AD40"] + - [0x700ADA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ADA8"] + - [0x700AE10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AE10"] + - [0x700AE78, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AE78"] + - [0x700AEE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AEE0"] + - [0x700AF48, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AF48"] + - [0x700AFB0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AFB0"] + - [0x700B010, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B010"] + - [0x700B078, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B078"] + - [0x700B198, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B198"] + - [0x700B200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B200"] + - [0x700B268, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B268"] + - [0x700B2D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B2D0"] + - [0x700B338, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B338"] + - [0x700B3A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B3A0"] + - [0x700B408, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B408"] + - [0x700B470, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B470"] + - [0x700B4D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B4D0"] + - [0x700B530, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B530"] + - [0x700B590, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B590"] + - [0x700B600, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B600"] + - [0x700B678, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B678"] + - [0x700B6D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B6D8"] + - [0x700B740, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B740"] + - [0x700B7A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B7A8"] + - [0x700B810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B810"] + - [0x700B878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B878"] + - [0x700B8E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B8E0"] + - [0x700B948, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B948"] + - [0x700B9B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B9B8"] + - [0x700BA20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BA20"] + - [0x700BA80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BA80"] + - [0x700BAF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BAF0"] + - [0x700BB50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BB50"] + - [0x700BBC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BBC0"] + - [0x700BC20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BC20"] + - [0x700BC88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BC88"] + - [0x700BD68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BD68"] + - [0x700BDC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BDC8"] + - [0x700BE28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BE28"] + - [0x700BE88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BE88"] + - [0x700BF20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BF20"] + - [0x700BFB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BFB8"] + - [0x700C050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C050"] + - [0x700C0F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C0F0"] + - [0x700C1A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C1A0"] + - [0x700C200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C200"] + - [0x700C260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C260"] + - [0x700C300, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C300"] + - [0x700C3A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C3A8"] + - [0x700C410, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C410"] + - [0x700C4C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C4C0"] + - [0x700C540, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C540"] + - [0x700C5C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C5C0"] + - [0x700C640, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C640"] + - [0x700C668, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C668"] + - [0x700C730, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C730"] + - [0x700C740, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C740"] + # Segment 4 + - [0x4000000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000000"] + - [0x4000080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000080"] + - [0x4000100, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000100"] + - [0x4000200, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000200"] + - [0x4000300, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000300"] + - [0x4000400, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000400"] + - [0x4000500, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000500"] + - [0x4000600, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000600"] + - [0x4000700, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000700"] + - [0x4000780, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000780"] + - [0x4000800, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000800"] + - [0x40008c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040008C0"] + - [0x40009c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040009C0"] + - [0x4000a80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000A80"] + - [0x4000b80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000B80"] + - [0x4000c80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000C80"] + - [0x4000d80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000D80"] + - [0x4000e80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000E80"] + - [0x4000f00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000F00"] + - [0x4001000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001000"] + - [0x4001080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001080"] + - [0x4001140, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001140"] + - [0x4001240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001240"] + - [0x4001340, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001340"] + - [0x40013a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040013A0"] + - [0x4001420, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001420"] + - [0x4001480, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001480"] + - [0x4001500, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001500"] + - [0x4001560, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001560"] + - [0x40015e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040015E0"] + - [0x4001640, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001640"] + - [0x40016c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040016C0"] + - [0x4001720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001720"] + - [0x40017a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040017A0"] + - [0x4001800, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001800"] + - [0x4001880, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001880"] + - [0x40018e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040018E0"] + - [0x4001960, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001960"] + - [0x40019c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040019C0"] + - [0x4001a40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001A40"] + - [0x4001a80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001A80"] + - [0x4001ac0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001AC0"] + - [0x4001b20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001B20"] + - [0x4001ba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001BA0"] + - [0x4001c00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001C00"] + - [0x4001c80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001C80"] + - [0x4001d20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001D20"] + - [0x4001e20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001E20"] + - [0x4001ec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001EC0"] + - [0x4001fc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001FC0"] + - [0x4002060, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002060"] + - [0x4002160, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002160"] + - [0x4002200, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002200"] + - [0x4002300, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002300"] + - [0x4002360, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002360"] + - [0x40023e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040023E0"] + - [0x4002480, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002480"] + - [0x4002580, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002580"] + - [0x40025c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040025C0"] + - [0x4002600, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002600"] + - [0x4002660, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002660"] + - [0x40026e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040026E0"] + - [0x4002780, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002780"] + - [0x4002880, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002880"] + - [0x4002920, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002920"] + - [0x4002a20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002A20"] + - [0x4002a80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002A80"] + - [0x4002af0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002AF0"] + - [0x4002b50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002B50"] + - [0x4002bb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002BB0"] + - [0x4002bf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002BF0"] + - [0x4002c40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002C40"] + - [0x4002cc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002CC0"] + - [0x4002d20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002D20"] + - [0x4002d60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002D60"] + - [0x4002de0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002DE0"] + - [0x4002e50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002E50"] + - [0x4002ee0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002EE0"] + - [0x4002f40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002F40"] + - [0x4002fb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002FB0"] + - [0x4003020, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003020"] + - [0x4003060, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003060"] + - [0x40030f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040030F0"] + - [0x4003130, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003130"] + - [0x40031f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040031F0"] + - [0x4003270, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003270"] + - [0x40032d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040032D0"] + - [0x4003330, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003330"] + - [0x4003420, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003420"] + - [0x4003530, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003530"] + - [0x40036b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040036B0"] + - [0x4003770, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003770"] + - [0x4003890, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003890"] + - [0x4003a10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003A10"] + - [0x4003b20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003B20"] + - [0x4003ca0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003CA0"] + - [0x4003de0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003DE0"] + - [0x4003fd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003FD0"] + - [0x40041b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040041B0"] + - [0x40043a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040043A0"] + - [0x40044c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040044C0"] + - [0x40044f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040044F0"] + - [0x40045b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040045B0"] + - [0x4004730, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004730"] + - [0x40048b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040048B0"] + - [0x4004a30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004A30"] + - [0x4004bb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004BB0"] + - [0x4004d00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004D00"] + - [0x4004e80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004E80"] + - [0x4005000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005000"] + - [0x4005180, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005180"] + - [0x4005300, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005300"] + - [0x40053f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040053F0"] + - [0x4005570, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005570"] + - [0x40056f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040056F0"] + - [0x4005870, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005870"] + - [0x40059f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040059F0"] + - [0x4005b70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005B70"] + - [0x4005c90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005C90"] + - [0x4005d50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005D50"] + - [0x4005e10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005E10"] + - [0x4005f90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005F90"] + - [0x4006110, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006110"] + - [0x4006290, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006290"] + - [0x4006410, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006410"] + - [0x4006590, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006590"] + - [0x4006710, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006710"] + - [0x4006890, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006890"] + - [0x4006a70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006A70"] + - [0x4006c00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006C00"] + - [0x4006d90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006D90"] + - [0x4006f80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006F80"] + - [0x4007170, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007170"] + - [0x4007200, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007200"] + - [0x40073b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040073B0"] + - [0x40074c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040074C0"] + - [0x4007630, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007630"] + - [0x40077b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040077B0"] + - [0x4007910, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007910"] + - [0x4007a90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007A90"] + - [0x4007c40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007C40"] + - [0x4007e20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007E20"] + - [0x4007e50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007E50"] + - [0x4007fd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007FD0"] + - [0x4008080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008080"] + - [0x4008260, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008260"] + - [0x40082c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040082C0"] + - [0x4008390, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008390"] + - [0x4008580, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008580"] + - [0x4008660, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008660"] + - [0x4008780, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008780"] + - [0x4008900, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008900"] + - [0x4008b00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008B00"] + - [0x4008d00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008D00"] + - [0x4008e00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008E00"] + - [0x4008f70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008F70"] + - [0x4009170, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009170"] + - [0x4009370, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009370"] + - [0x4009560, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009560"] + - [0x40096b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040096B0"] + - [0x40098b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040098B0"] + - [0x4009ab0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009AB0"] + - [0x4009ca0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009CA0"] + - [0x4009e80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009E80"] + - [0x4009f00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009F00"] + - [0x4009fb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009FB0"] + - [0x400a1b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A1B0"] + - [0x400a3b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A3B0"] + - [0x400a5a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A5A0"] + - [0x400a790, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A790"] + - [0x400a8d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A8D0"] + - [0x400a9a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A9A0"] + - [0x400ab40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AB40"] + - [0x400aba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ABA0"] + - [0x400ac60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AC60"] + - [0x400ad20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AD20"] + - [0x400ae60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AE60"] + - [0x400af50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AF50"] + - [0x400afd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AFD0"] + - [0x400b090, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B090"] + - [0x400b150, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B150"] + - [0x400b240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B240"] + - [0x400b2c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B2C0"] + - [0x400b460, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B460"] + - [0x400b660, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B660"] + - [0x400b710, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B710"] + - [0x400b740, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B740"] + - [0x400b940, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B940"] + - [0x400ba20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BA20"] + - [0x400ba60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BA60"] + - [0x400baa0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BAA0"] + - [0x400bae0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BAE0"] + - [0x400bb20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BB20"] + - [0x400bb60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BB60"] + - [0x400bba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BBA0"] + - [0x400bbe0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BBE0"] + - [0x400bce0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BCE0"] + - [0x400bde0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BDE0"] + - [0x400bee0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BEE0"] + - [0x400bfe0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BFE0"] + - [0x400c0a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C0A0"] + - [0x400c1b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C1B0"] + - [0x400c1f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C1F0"] + - [0x400c230, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C230"] + - [0x400c270, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C270"] + - [0x400c2b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C2B0"] + - [0x400c2f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C2F0"] + - [0x400c330, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C330"] + - [0x400c430, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C430"] + - [0x400c4b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C4B0"] + - [0x400c5d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C5D0"] + - [0x400c610, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C610"] + - [0x400c650, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C650"] + - [0x400c690, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C690"] + - [0x400c6d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C6D0"] + - [0x400c7d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C7D0"] + - [0x400c850, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C850"] + - [0x400c970, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C970"] + - [0x400c9b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C9B0"] + - [0x400c9f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C9F0"] + - [0x400caf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CAF0"] + - [0x400cbb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CBB0"] + - [0x400ccc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CCC0"] + - [0x400cdc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CDC0"] + - [0x400cec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CEC0"] + - [0x400cfc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CFC0"] + - [0x400d0c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D0C0"] + - [0x400d1c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D1C0"] + - [0x400d2c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D2C0"] + - [0x400d380, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D380"] + - [0x400d440, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D440"] + - [0x400d500, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D500"] + - [0x400d5c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D5C0"] + - [0x400d680, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D680"] + - [0x400d740, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D740"] + - [0x400d840, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D840"] + - [0x400d940, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D940"] + - [0x400da40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DA40"] + - [0x400da80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DA80"] + - [0x400dac0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DAC0"] + - [0x400db00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DB00"] + - [0x400db40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DB40"] + - [0x400dc40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DC40"] + - [0x400dcc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DCC0"] + - [0x400dde0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DDE0"] + - [0x400de20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DE20"] + - [0x400de60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DE60"] + - [0x400dea0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DEA0"] + - [0x400dee0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DEE0"] + - [0x400dfe0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DFE0"] + - [0x400e060, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E060"] + - [0x400e180, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E180"] + - [0x400e1c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E1C0"] + - [0x400e200, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E200"] + - [0x400e300, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E300"] + - [0x400e380, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E380"] + - [0x400e4a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E4A0"] + - [0x400e4e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E4E0"] + - [0x400e520, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E520"] + - [0x400e620, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E620"] + - [0x400e720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E720"] + - [0x400e820, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E820"] + - [0x400e960, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E960"] + - [0x400ea80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EA80"] + - [0x400ebd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EBD0"] + - [0x400ec70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EC70"] + - [0x400ecf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ECF0"] + - [0x400ed70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ED70"] + - [0x400edf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EDF0"] + - [0x400ee70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EE70"] + - [0x400ef10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EF10"] + - [0x400efb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EFB0"] + - [0x400f050, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F050"] + - [0x400f0f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F0F0"] + - [0x400f170, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F170"] + - [0x400f210, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F210"] + - [0x400f250, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F250"] + - [0x400f290, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F290"] + - [0x400f2d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F2D0"] + - [0x400f350, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F350"] + - [0x400f3d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F3D0"] + - [0x400f490, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F490"] + - [0x400f550, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F550"] + - [0x400f590, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F590"] + - [0x400f610, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F610"] + - [0x400f6f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F6F0"] + - [0x400f7b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F7B0"] + - [0x400f870, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F870"] + - [0x400f930, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F930"] + - [0x400f9f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F9F0"] + - [0x400fb30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FB30"] + - [0x400fc70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FC70"] + - [0x400fd30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FD30"] + - [0x400fdf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FDF0"] + - [0x400fe70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FE70"] + - [0x400fef0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FEF0"] + - [0x400ff70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FF70"] + - [0x400fff0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FFF0"] + - [0x4010090, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010090"] + - [0x4010130, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010130"] + - [0x40101b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040101B0"] + - [0x4010230, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010230"] + - [0x40102d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040102D0"] + - [0x4010350, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010350"] + - [0x40103f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040103F0"] + - [0x4010470, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010470"] + - [0x4010510, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010510"] + - [0x40105b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040105B0"] + - [0x4010630, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010630"] + - [0x40106f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040106F0"] + - [0x40107b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040107B0"] + - [0x4010870, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010870"] + - [0x4010910, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010910"] + - [0x4010990, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010990"] + - [0x4010a10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010A10"] + - [0x4010a90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010A90"] + - [0x4010af0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010AF0"] + - [0x4010bb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010BB0"] + - [0x4010c70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010C70"] + - [0x4010d30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010D30"] + - [0x4010df0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010DF0"] + - [0x4010ed0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010ED0"] + - [0x4010f50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010F50"] + - [0x4010fd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010FD0"] + - [0x4011050, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011050"] + - [0x4011090, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011090"] + - [0x4011190, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011190"] + - [0x40112d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040112D0"] + - [0x4011390, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011390"] + - [0x4011450, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011450"] + - [0x4011550, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011550"] + - [0x4011650, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011650"] + - [0x40116d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040116D0"] + - [0x4011790, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011790"] + - [0x4011890, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011890"] + - [0x4011910, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011910"] + - [0x4011990, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011990"] + - [0x4011a90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011A90"] + - [0x4011b10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011B10"] + - [0x4011bd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011BD0"] + - [0x4011dd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011DD0"] + - [0x4011e10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011E10"] + - [0x4011f70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011F70"] + - [0x4011ff0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011FF0"] + - [0x4012070, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012070"] + - [0x40120b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040120B0"] + - [0x40121c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040121C0"] + - [0x4012220, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012220"] + - [0x40122e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040122E0"] + - [0x40123a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040123A0"] + - [0x4012460, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012460"] + - [0x40124a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040124A0"] + - [0x4012520, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012520"] + - [0x40125a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040125A0"] + - [0x4012620, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012620"] + - [0x40126a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040126A0"] + - [0x4012720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012720"] + - [0x40127a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040127A0"] + - [0x40127e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040127E0"] + - [0x4012820, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012820"] + - [0x4012860, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012860"] + - [0x40128e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040128E0"] + - [0x4012960, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012960"] + - [0x40129e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040129E0"] + - [0x4012a60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012A60"] + - [0x4012ae0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012AE0"] + - [0x4012b60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012B60"] + - [0x4012ba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012BA0"] + - [0x4012c20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012C20"] + - [0x4012c60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012C60"] + - [0x4012ce0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012CE0"] + - [0x4012d60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012D60"] + - [0x4012de0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012DE0"] + - [0x4012e40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012E40"] + - [0x4012ec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012EC0"] + - [0x4012f20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012F20"] + - [0x4012fa0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012FA0"] + - [0x4013000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013000"] + - [0x4013080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013080"] + - [0x40130e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040130E0"] + - [0x4013160, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013160"] + - [0x40131c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040131C0"] + - [0x4013240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013240"] + - [0x40132a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040132A0"] + - [0x4013320, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013320"] + - [0x4013360, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013360"] + - [0x40133a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040133A0"] + - [0x40133e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040133E0"] + - [0x4013420, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013420"] + - [0x4013460, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013460"] + - [0x40134a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040134A0"] + - [0x4013500, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013500"] + - [0x4013560, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013560"] + - [0x40135c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040135C0"] + - [0x4013640, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013640"] + - [0x40136a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040136A0"] + - [0x4013720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013720"] + - [0x4013780, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013780"] + - [0x4013800, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013800"] + - [0x4013860, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013860"] + - [0x40138e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040138E0"] + - [0x4013940, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013940"] + - [0x40139c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040139C0"] + - [0x4013a00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013A00"] + - [0x4013a40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013A40"] + - [0x4013aa0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013AA0"] + - [0x4013b20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013B20"] + - [0x4013b60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013B60"] + - [0x4013ba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013BA0"] + - [0x4013c00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013C00"] + - [0x4013c80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013C80"] + - [0x4013ce0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013CE0"] + - [0x4013d60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013D60"] + - [0x4013dc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013DC0"] + - [0x4013e40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013E40"] + - [0x4014040, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014040"] + - [0x4014240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014240"] + - [0x4014440, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014440"] + - [0x4014640, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014640"] + - [0x4014840, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014840"] + - [0x4014880, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014880"] + - [0x40149b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040149B0"] + - [0x4014af0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014AF0"] + - [0x4014b30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014B30"] + - [0x4014b90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014B90"] + - [0x4014bd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014BD0"] + - [0x4014c10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C10"] + - [0x4014c50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C50"] + - [0x4014c90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C90"] + - [0x4014cc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014CC0"] + - [0x4014cf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014CF0"] + - [0x4014d30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014D30"] + - [0x4014db0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014DB0"] + - [0x4014df0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014DF0"] + - [0x4014e80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014E80"] + - [0x4014ec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014EC0"] + - [0x4014f40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014F40"] + - [0x4014f80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014F80"] + - [0x4014fe0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014FE0"] + - [0x4015020, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015020"] + - [0x4015060, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015060"] + - [0x40150a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040150A0"] + - [0x4015140, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015140"] + - [0x4015170, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015170"] + - [0x40151a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040151A0"] + - [0x40151e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040151E0"] + - [0x4015240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015240"] + - [0x40152c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040152C0"] + - [0x4015340, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015340"] + - [0x40153c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040153C0"] + - [0x4015420, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015420"] + - [0x40154a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040154A0"] + - [0x4015520, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015520"] + - [0x40155a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040155A0"] + - [0x4015620, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015620"] + - [0x40156e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040156E0"] + - [0x4015760, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015760"] + - [0x40157e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040157E0"] + - [0x4015860, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015860"] + - [0x40158e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040158E0"] + - [0x4015960, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015960"] + - [0x40159e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040159E0"] + - [0x4015a20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015A20"] + - [0x4015ab0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015AB0"] + - [0x4015b10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015B10"] + - [0x4015b70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015B70"] + - [0x4015bd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015BD0"] + - [0x4015c50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015C50"] + - [0x4015cd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015CD0"] + - [0x4015d50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015D50"] + - [0x4015db0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015DB0"] + - [0x4015df0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015DF0"] + - [0x4015e30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015E30"] + - [0x4015e70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015E70"] + - [0x4015f10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015F10"] + - [0x4016000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016000"] + - [0x4016040, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016040"] + - [0x40160c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040160C0"] + - [0x4016140, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016140"] + - [0x40161b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040161B0"] + - [0x4016230, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016230"] + - [0x40162b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040162B0"] + - [0x4016330, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016330"] + - [0x40163c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040163C0"] + - [0x4016440, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016440"] + - [0x4016480, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016480"] + - [0x4016520, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016520"] + - [0x4016580, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016580"] + - [0x4016630, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016630"] + - [0x4016670, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016670"] + - [0x40166f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040166F0"] + - [0x4016720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016720"] + - [0x4016760, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016760"] + - [0x40167a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040167A0"] + - [0x40167e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040167E0"] + - [0x4016820, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016820"] + - [0x4016860, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016860"] + - [0x40168a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040168A0"] + - [0x40168e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040168E0"] + - [0x4016910, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016910"] + - [0x40169a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040169A0"] + - [0x40169e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040169E0"] + - [0x4016a70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016A70"] + - [0x4016ab0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016AB0"] + - [0x4016af0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016AF0"] + - [0x4016b30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016B30"] + - [0x4016b70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016B70"] + - [0x4016bf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016BF0"] + - [0x4016c70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016C70"] + - [0x4016cc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016CC0"] + - [0x4016ec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016EC0"] + - [0x4016f40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016F40"] + - [0x4017080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04017080"] + - [0x40171c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040171C0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_luigi_raceway_dl_0: + symbol: d_course_luigi_raceway_dl_0 + type: gfx + offset: 0x0 + otr_mode: index +d_course_luigi_raceway_dl_1A8: + symbol: d_course_luigi_raceway_dl_1A8 + type: gfx + offset: 0x1A8 + otr_mode: index +d_course_luigi_raceway_dl_328: + symbol: d_course_luigi_raceway_dl_328 + type: gfx + offset: 0x328 + otr_mode: index +d_course_luigi_raceway_dl_480: + symbol: d_course_luigi_raceway_dl_480 + type: gfx + offset: 0x480 + otr_mode: index +d_course_luigi_raceway_dl_6E0: + symbol: d_course_luigi_raceway_dl_6E0 + type: gfx + offset: 0x6E0 + otr_mode: index +d_course_luigi_raceway_dl_868: + symbol: d_course_luigi_raceway_dl_868 + type: gfx + offset: 0x868 + otr_mode: index +d_course_luigi_raceway_dl_9F8: + symbol: d_course_luigi_raceway_dl_9F8 + type: gfx + offset: 0x9F8 + otr_mode: index +d_course_luigi_raceway_dl_B48: + symbol: d_course_luigi_raceway_dl_B48 + type: gfx + offset: 0xB48 + otr_mode: index +d_course_luigi_raceway_dl_D80: + symbol: d_course_luigi_raceway_dl_D80 + type: gfx + offset: 0xD80 + otr_mode: index +d_course_luigi_raceway_dl_EE8: + symbol: d_course_luigi_raceway_dl_EE8 + type: gfx + offset: 0xEE8 + otr_mode: index +d_course_luigi_raceway_dl_1058: + symbol: d_course_luigi_raceway_dl_1058 + type: gfx + offset: 0x1058 + otr_mode: index +d_course_luigi_raceway_dl_1198: + symbol: d_course_luigi_raceway_dl_1198 + type: gfx + offset: 0x1198 + otr_mode: index +d_course_luigi_raceway_dl_1398: + symbol: d_course_luigi_raceway_dl_1398 + type: gfx + offset: 0x1398 + otr_mode: index +d_course_luigi_raceway_dl_1538: + symbol: d_course_luigi_raceway_dl_1538 + type: gfx + offset: 0x1538 + otr_mode: index +d_course_luigi_raceway_dl_16D8: + symbol: d_course_luigi_raceway_dl_16D8 + type: gfx + offset: 0x16D8 + otr_mode: index +d_course_luigi_raceway_dl_1888: + symbol: d_course_luigi_raceway_dl_1888 + type: gfx + offset: 0x1888 + otr_mode: index +d_course_luigi_raceway_dl_1B00: + symbol: d_course_luigi_raceway_dl_1B00 + type: gfx + offset: 0x1B00 + otr_mode: index +d_course_luigi_raceway_dl_1C78: + symbol: d_course_luigi_raceway_dl_1C78 + type: gfx + offset: 0x1C78 + otr_mode: index +d_course_luigi_raceway_dl_1E30: + symbol: d_course_luigi_raceway_dl_1E30 + type: gfx + offset: 0x1E30 + otr_mode: index +d_course_luigi_raceway_dl_1FD0: + symbol: d_course_luigi_raceway_dl_1FD0 + type: gfx + offset: 0x1FD0 + otr_mode: index +d_course_luigi_raceway_dl_2240: + symbol: d_course_luigi_raceway_dl_2240 + type: gfx + offset: 0x2240 + otr_mode: index +d_course_luigi_raceway_dl_2348: + symbol: d_course_luigi_raceway_dl_2348 + type: gfx + offset: 0x2348 + otr_mode: index +d_course_luigi_raceway_dl_2518: + symbol: d_course_luigi_raceway_dl_2518 + type: gfx + offset: 0x2518 + otr_mode: index +d_course_luigi_raceway_dl_2658: + symbol: d_course_luigi_raceway_dl_2658 + type: gfx + offset: 0x2658 + otr_mode: index +d_course_luigi_raceway_dl_2860: + symbol: d_course_luigi_raceway_dl_2860 + type: gfx + offset: 0x2860 + otr_mode: index +d_course_luigi_raceway_dl_2978: + symbol: d_course_luigi_raceway_dl_2978 + type: gfx + offset: 0x2978 + otr_mode: index +d_course_luigi_raceway_dl_2BC0: + symbol: d_course_luigi_raceway_dl_2BC0 + type: gfx + offset: 0x2BC0 + otr_mode: index +d_course_luigi_raceway_dl_2D00: + symbol: d_course_luigi_raceway_dl_2D00 + type: gfx + offset: 0x2D00 + otr_mode: index +d_course_luigi_raceway_dl_2F08: + symbol: d_course_luigi_raceway_dl_2F08 + type: gfx + offset: 0x2F08 + otr_mode: index +d_course_luigi_raceway_dl_2FF8: + symbol: d_course_luigi_raceway_dl_2FF8 + type: gfx + offset: 0x2FF8 + otr_mode: index +d_course_luigi_raceway_dl_32C0: + symbol: d_course_luigi_raceway_dl_32C0 + type: gfx + offset: 0x32C0 + otr_mode: index +d_course_luigi_raceway_dl_3408: + symbol: d_course_luigi_raceway_dl_3408 + type: gfx + offset: 0x3408 + otr_mode: index +d_course_luigi_raceway_dl_3610: + symbol: d_course_luigi_raceway_dl_3610 + type: gfx + offset: 0x3610 + otr_mode: index +d_course_luigi_raceway_dl_36A8: + symbol: d_course_luigi_raceway_dl_36A8 + type: gfx + offset: 0x36A8 + otr_mode: index +d_course_luigi_raceway_dl_3928: + symbol: d_course_luigi_raceway_dl_3928 + type: gfx + offset: 0x3928 + otr_mode: index +d_course_luigi_raceway_dl_3AB0: + symbol: d_course_luigi_raceway_dl_3AB0 + type: gfx + offset: 0x3AB0 + otr_mode: index +d_course_luigi_raceway_dl_3C18: + symbol: d_course_luigi_raceway_dl_3C18 + type: gfx + offset: 0x3C18 + otr_mode: index +d_course_luigi_raceway_dl_3CA0: + symbol: d_course_luigi_raceway_dl_3CA0 + type: gfx + offset: 0x3CA0 + otr_mode: index +d_course_luigi_raceway_dl_3EB0: + symbol: d_course_luigi_raceway_dl_3EB0 + type: gfx + offset: 0x3EB0 + otr_mode: index +d_course_luigi_raceway_dl_4058: + symbol: d_course_luigi_raceway_dl_4058 + type: gfx + offset: 0x4058 + otr_mode: index +d_course_luigi_raceway_dl_4198: + symbol: d_course_luigi_raceway_dl_4198 + type: gfx + offset: 0x4198 + otr_mode: index +d_course_luigi_raceway_dl_4240: + symbol: d_course_luigi_raceway_dl_4240 + type: gfx + offset: 0x4240 + otr_mode: index +d_course_luigi_raceway_dl_4440: + symbol: d_course_luigi_raceway_dl_4440 + type: gfx + offset: 0x4440 + otr_mode: index +d_course_luigi_raceway_dl_4638: + symbol: d_course_luigi_raceway_dl_4638 + type: gfx + offset: 0x4638 + otr_mode: index +d_course_luigi_raceway_dl_4720: + symbol: d_course_luigi_raceway_dl_4720 + type: gfx + offset: 0x4720 + otr_mode: index +d_course_luigi_raceway_dl_4828: + symbol: d_course_luigi_raceway_dl_4828 + type: gfx + offset: 0x4828 + otr_mode: index +d_course_luigi_raceway_dl_4A18: + symbol: d_course_luigi_raceway_dl_4A18 + type: gfx + offset: 0x4A18 + otr_mode: index +d_course_luigi_raceway_dl_4C60: + symbol: d_course_luigi_raceway_dl_4C60 + type: gfx + offset: 0x4C60 + otr_mode: index +d_course_luigi_raceway_dl_4CF8: + symbol: d_course_luigi_raceway_dl_4CF8 + type: gfx + offset: 0x4CF8 + otr_mode: index +d_course_luigi_raceway_dl_4E38: + symbol: d_course_luigi_raceway_dl_4E38 + type: gfx + offset: 0x4E38 + otr_mode: index +d_course_luigi_raceway_dl_4FD8: + symbol: d_course_luigi_raceway_dl_4FD8 + type: gfx + offset: 0x4FD8 + otr_mode: index +d_course_luigi_raceway_dl_5220: + symbol: d_course_luigi_raceway_dl_5220 + type: gfx + offset: 0x5220 + otr_mode: index +d_course_luigi_raceway_dl_52D0: + symbol: d_course_luigi_raceway_dl_52D0 + type: gfx + offset: 0x52D0 + otr_mode: index +d_course_luigi_raceway_dl_5420: + symbol: d_course_luigi_raceway_dl_5420 + type: gfx + offset: 0x5420 + otr_mode: index +d_course_luigi_raceway_dl_5558: + symbol: d_course_luigi_raceway_dl_5558 + type: gfx + offset: 0x5558 + otr_mode: index +d_course_luigi_raceway_dl_5728: + symbol: d_course_luigi_raceway_dl_5728 + type: gfx + offset: 0x5728 + otr_mode: index +d_course_luigi_raceway_dl_57F8: + symbol: d_course_luigi_raceway_dl_57F8 + type: gfx + offset: 0x57F8 + otr_mode: index +d_course_luigi_raceway_dl_5940: + symbol: d_course_luigi_raceway_dl_5940 + type: gfx + offset: 0x5940 + otr_mode: index +d_course_luigi_raceway_dl_5A60: + symbol: d_course_luigi_raceway_dl_5A60 + type: gfx + offset: 0x5A60 + otr_mode: index +d_course_luigi_raceway_dl_5BA0: + symbol: d_course_luigi_raceway_dl_5BA0 + type: gfx + offset: 0x5BA0 + otr_mode: index +d_course_luigi_raceway_dl_5CB8: + symbol: d_course_luigi_raceway_dl_5CB8 + type: gfx + offset: 0x5CB8 + otr_mode: index +d_course_luigi_raceway_dl_5E10: + symbol: d_course_luigi_raceway_dl_5E10 + type: gfx + offset: 0x5E10 + otr_mode: index +d_course_luigi_raceway_dl_5F08: + symbol: d_course_luigi_raceway_dl_5F08 + type: gfx + offset: 0x5F08 + otr_mode: index +d_course_luigi_raceway_dl_6018: + symbol: d_course_luigi_raceway_dl_6018 + type: gfx + offset: 0x6018 + otr_mode: index +d_course_luigi_raceway_dl_6150: + symbol: d_course_luigi_raceway_dl_6150 + type: gfx + offset: 0x6150 + otr_mode: index +d_course_luigi_raceway_dl_6288: + symbol: d_course_luigi_raceway_dl_6288 + type: gfx + offset: 0x6288 + otr_mode: index +d_course_luigi_raceway_dl_6350: + symbol: d_course_luigi_raceway_dl_6350 + type: gfx + offset: 0x6350 + otr_mode: index +d_course_luigi_raceway_dl_6400: + symbol: d_course_luigi_raceway_dl_6400 + type: gfx + offset: 0x6400 + otr_mode: index +d_course_luigi_raceway_dl_6558: + symbol: d_course_luigi_raceway_dl_6558 + type: gfx + offset: 0x6558 + otr_mode: index +d_course_luigi_raceway_dl_65B0: + symbol: d_course_luigi_raceway_dl_65B0 + type: gfx + offset: 0x65B0 + otr_mode: index +d_course_luigi_raceway_dl_6608: + symbol: d_course_luigi_raceway_dl_6608 + type: gfx + offset: 0x6608 + otr_mode: index +d_course_luigi_raceway_dl_6658: + symbol: d_course_luigi_raceway_dl_6658 + type: gfx + offset: 0x6658 + otr_mode: index +d_course_luigi_raceway_dl_66B8: + symbol: d_course_luigi_raceway_dl_66B8 + type: gfx + offset: 0x66B8 + otr_mode: index +d_course_luigi_raceway_dl_6708: + symbol: d_course_luigi_raceway_dl_6708 + type: gfx + offset: 0x6708 + otr_mode: index +d_course_luigi_raceway_dl_67A0: + symbol: d_course_luigi_raceway_dl_67A0 + type: gfx + offset: 0x67A0 + otr_mode: index +d_course_luigi_raceway_dl_6810: + symbol: d_course_luigi_raceway_dl_6810 + type: gfx + offset: 0x6810 + otr_mode: index +d_course_luigi_raceway_dl_68C0: + symbol: d_course_luigi_raceway_dl_68C0 + type: gfx + offset: 0x68C0 + otr_mode: index +d_course_luigi_raceway_dl_6930: + symbol: d_course_luigi_raceway_dl_6930 + type: gfx + offset: 0x6930 + otr_mode: index +d_course_luigi_raceway_dl_6A00: + symbol: d_course_luigi_raceway_dl_6A00 + type: gfx + offset: 0x6A00 + otr_mode: index +d_course_luigi_raceway_dl_6A90: + symbol: d_course_luigi_raceway_dl_6A90 + type: gfx + offset: 0x6A90 + otr_mode: index +d_course_luigi_raceway_dl_6B58: + symbol: d_course_luigi_raceway_dl_6B58 + type: gfx + offset: 0x6B58 + otr_mode: index +d_course_luigi_raceway_dl_6C40: + symbol: d_course_luigi_raceway_dl_6C40 + type: gfx + offset: 0x6C40 + otr_mode: index +d_course_luigi_raceway_dl_6DA0: + symbol: d_course_luigi_raceway_dl_6DA0 + type: gfx + offset: 0x6DA0 + otr_mode: index +d_course_luigi_raceway_dl_6EB0: + symbol: d_course_luigi_raceway_dl_6EB0 + type: gfx + offset: 0x6EB0 + otr_mode: index +d_course_luigi_raceway_dl_6FF0: + symbol: d_course_luigi_raceway_dl_6FF0 + type: gfx + offset: 0x6FF0 + otr_mode: index +d_course_luigi_raceway_dl_7110: + symbol: d_course_luigi_raceway_dl_7110 + type: gfx + offset: 0x7110 + otr_mode: index +d_course_luigi_raceway_dl_7248: + symbol: d_course_luigi_raceway_dl_7248 + type: gfx + offset: 0x7248 + otr_mode: index +d_course_luigi_raceway_dl_7388: + symbol: d_course_luigi_raceway_dl_7388 + type: gfx + offset: 0x7388 + otr_mode: index +d_course_luigi_raceway_dl_74B0: + symbol: d_course_luigi_raceway_dl_74B0 + type: gfx + offset: 0x74B0 + otr_mode: index +d_course_luigi_raceway_dl_75F0: + symbol: d_course_luigi_raceway_dl_75F0 + type: gfx + offset: 0x75F0 + otr_mode: index +d_course_luigi_raceway_dl_7750: + symbol: d_course_luigi_raceway_dl_7750 + type: gfx + offset: 0x7750 + otr_mode: index +d_course_luigi_raceway_dl_7928: + symbol: d_course_luigi_raceway_dl_7928 + type: gfx + offset: 0x7928 + otr_mode: index +d_course_luigi_raceway_dl_7A18: + symbol: d_course_luigi_raceway_dl_7A18 + type: gfx + offset: 0x7A18 + otr_mode: index +d_course_luigi_raceway_dl_7BB0: + symbol: d_course_luigi_raceway_dl_7BB0 + type: gfx + offset: 0x7BB0 + otr_mode: index +d_course_luigi_raceway_dl_7CD0: + symbol: d_course_luigi_raceway_dl_7CD0 + type: gfx + offset: 0x7CD0 + otr_mode: index +d_course_luigi_raceway_dl_7EE8: + symbol: d_course_luigi_raceway_dl_7EE8 + type: gfx + offset: 0x7EE8 + otr_mode: index +d_course_luigi_raceway_dl_7FA0: + symbol: d_course_luigi_raceway_dl_7FA0 + type: gfx + offset: 0x7FA0 + otr_mode: index +d_course_luigi_raceway_dl_8158: + symbol: d_course_luigi_raceway_dl_8158 + type: gfx + offset: 0x8158 + otr_mode: index +d_course_luigi_raceway_dl_8260: + symbol: d_course_luigi_raceway_dl_8260 + type: gfx + offset: 0x8260 + otr_mode: index +d_course_luigi_raceway_dl_8450: + symbol: d_course_luigi_raceway_dl_8450 + type: gfx + offset: 0x8450 + otr_mode: index +d_course_luigi_raceway_dl_8508: + symbol: d_course_luigi_raceway_dl_8508 + type: gfx + offset: 0x8508 + otr_mode: index +d_course_luigi_raceway_dl_86F8: + symbol: d_course_luigi_raceway_dl_86F8 + type: gfx + offset: 0x86F8 + otr_mode: index +d_course_luigi_raceway_dl_8790: + symbol: d_course_luigi_raceway_dl_8790 + type: gfx + offset: 0x8790 + otr_mode: index +d_course_luigi_raceway_dl_8958: + symbol: d_course_luigi_raceway_dl_8958 + type: gfx + offset: 0x8958 + otr_mode: index +d_course_luigi_raceway_dl_8A70: + symbol: d_course_luigi_raceway_dl_8A70 + type: gfx + offset: 0x8A70 + otr_mode: index +d_course_luigi_raceway_dl_8CC8: + symbol: d_course_luigi_raceway_dl_8CC8 + type: gfx + offset: 0x8CC8 + otr_mode: index +d_course_luigi_raceway_dl_8D68: + symbol: d_course_luigi_raceway_dl_8D68 + type: gfx + offset: 0x8D68 + otr_mode: index +d_course_luigi_raceway_dl_8F00: + symbol: d_course_luigi_raceway_dl_8F00 + type: gfx + offset: 0x8F00 + otr_mode: index +d_course_luigi_raceway_dl_9058: + symbol: d_course_luigi_raceway_dl_9058 + type: gfx + offset: 0x9058 + otr_mode: index +d_course_luigi_raceway_dl_9310: + symbol: d_course_luigi_raceway_dl_9310 + type: gfx + offset: 0x9310 + otr_mode: index +d_course_luigi_raceway_dl_9408: + symbol: d_course_luigi_raceway_dl_9408 + type: gfx + offset: 0x9408 + otr_mode: index +d_course_luigi_raceway_dl_95A0: + symbol: d_course_luigi_raceway_dl_95A0 + type: gfx + offset: 0x95A0 + otr_mode: index +d_course_luigi_raceway_dl_97B0: + symbol: d_course_luigi_raceway_dl_97B0 + type: gfx + offset: 0x97B0 + otr_mode: index +d_course_luigi_raceway_dl_99C0: + symbol: d_course_luigi_raceway_dl_99C0 + type: gfx + offset: 0x99C0 + otr_mode: index +d_course_luigi_raceway_dl_9AD0: + symbol: d_course_luigi_raceway_dl_9AD0 + type: gfx + offset: 0x9AD0 + otr_mode: index +d_course_luigi_raceway_dl_9C50: + symbol: d_course_luigi_raceway_dl_9C50 + type: gfx + offset: 0x9C50 + otr_mode: index +d_course_luigi_raceway_dl_9E58: + symbol: d_course_luigi_raceway_dl_9E58 + type: gfx + offset: 0x9E58 + otr_mode: index +d_course_luigi_raceway_dl_A028: + symbol: d_course_luigi_raceway_dl_A028 + type: gfx + offset: 0xA028 + otr_mode: index +d_course_luigi_raceway_dl_A178: + symbol: d_course_luigi_raceway_dl_A178 + type: gfx + offset: 0xA178 + otr_mode: index +d_course_luigi_raceway_dl_A320: + symbol: d_course_luigi_raceway_dl_A320 + type: gfx + offset: 0xA320 + otr_mode: index +d_course_luigi_raceway_basket_model_lod2: + symbol: d_course_luigi_raceway_basket_model_lod2 + type: vtx + offset: 0xBA90 + count: 16 +d_course_luigi_raceway_unknown_model1: + symbol: d_course_luigi_raceway_unknown_model1 + type: vtx + offset: 0xBB90 + count: 20 +d_course_luigi_raceway_unknown_model2: + symbol: d_course_luigi_raceway_unknown_model2 + type: vtx + offset: 0xBCD0 + count: 32 +d_course_luigi_raceway_unknown_model3: + symbol: d_course_luigi_raceway_unknown_model3 + type: vtx + offset: 0xBED0 + count: 32 +d_course_luigi_raceway_unknown_model4: + symbol: d_course_luigi_raceway_unknown_model4 + type: vtx + offset: 0xC0D0 + count: 18 +d_course_luigi_raceway_unknown_model5: + symbol: d_course_luigi_raceway_unknown_model5 + type: vtx + offset: 0xC1F0 + count: 27 +d_course_luigi_raceway_basket_model_lod1: + symbol: d_course_luigi_raceway_basket_model_lod1 + type: vtx + offset: 0xC3B8 + count: 4 +d_course_luigi_raceway_unknown_model6: + symbol: d_course_luigi_raceway_unknown_model6 + type: vtx + offset: 0xC3F8 + count: 12 +d_course_luigi_raceway_unknown_model7: + symbol: d_course_luigi_raceway_unknown_model7 + type: vtx + offset: 0xC4B8 + count: 6 +d_course_luigi_raceway_unknown_model8: + symbol: d_course_luigi_raceway_unknown_model8 + type: vtx + offset: 0xC518 + count: 7 +d_course_luigi_raceway_dl_F588: + symbol: d_course_luigi_raceway_dl_F588 + type: gfx + offset: 0xF588 +d_course_luigi_raceway_dl_F630: + symbol: d_course_luigi_raceway_dl_F630 + type: gfx + offset: 0xF630 +d_course_luigi_raceway_dl_F640: + symbol: d_course_luigi_raceway_dl_F640 + type: gfx + offset: 0xF640 +d_course_luigi_raceway_dl_F650: + symbol: d_course_luigi_raceway_dl_F650 + type: gfx + offset: 0xF650 +d_course_luigi_raceway_dl_F660: + symbol: d_course_luigi_raceway_dl_F660 + type: gfx + offset: 0xF660 +d_course_luigi_raceway_dl_F718: + symbol: d_course_luigi_raceway_dl_F718 + type: gfx + offset: 0xF718 +d_course_luigi_raceway_dl_F728: + symbol: d_course_luigi_raceway_dl_F728 + type: gfx + offset: 0xF728 +d_course_luigi_raceway_dl_F938: + symbol: d_course_luigi_raceway_dl_F938 + type: gfx + offset: 0xF938 +d_course_luigi_raceway_dl_F948: + symbol: d_course_luigi_raceway_dl_F948 + type: gfx + offset: 0xF948 +d_course_luigi_raceway_dl_F960: + symbol: d_course_luigi_raceway_dl_F960 + type: gfx + offset: 0xF960 +d_course_luigi_raceway_dl_F970: + symbol: d_course_luigi_raceway_dl_F970 + type: gfx + offset: 0xF970 +d_course_luigi_raceway_dl_FA00: + symbol: d_course_luigi_raceway_dl_FA00 + type: gfx + offset: 0xFA00 +d_course_luigi_raceway_dl_FA10: + symbol: d_course_luigi_raceway_dl_FA10 + type: gfx + offset: 0xFA10 +d_course_luigi_raceway_dl_FA20: + symbol: d_course_luigi_raceway_dl_FA20 + type: gfx + offset: 0xFA20 +d_course_luigi_raceway_dl_FA30: + symbol: d_course_luigi_raceway_dl_FA30 + type: gfx + offset: 0xFA30 +d_course_luigi_raceway_dl_FB10: + symbol: d_course_luigi_raceway_dl_FB10 + type: gfx + offset: 0xFB10 +d_course_luigi_raceway_dl_FB20: + symbol: d_course_luigi_raceway_dl_FB20 + type: gfx + offset: 0xFB20 +d_course_luigi_raceway_dl_FBB8: + symbol: d_course_luigi_raceway_dl_FBB8 + type: gfx + offset: 0xFBB8 +d_course_luigi_raceway_dl_FBC8: + symbol: d_course_luigi_raceway_dl_FBC8 + type: gfx + offset: 0xFBC8 +d_course_luigi_raceway_dl_FBE0: + symbol: d_course_luigi_raceway_dl_FBE0 + type: gfx + offset: 0xFBE0 +d_course_luigi_raceway_tree_model: + symbol: d_course_luigi_raceway_tree_model + type: vtx + offset: 0xFBF0 + count: 8 +d_course_luigi_raceway_dl_FC70: + symbol: d_course_luigi_raceway_dl_FC70 + type: gfx + offset: 0xFC70 +d_course_luigi_raceway_dl_FD40: + symbol: d_course_luigi_raceway_dl_FD40 + type: gfx + offset: 0xFD40 diff --git a/yamls/us/models/tracks/luigi_raceway/luigi_raceway_displaylists.yml b/yamls/us/models/tracks/luigi_raceway/luigi_raceway_displaylists.yml new file mode 100644 index 000000000..06059e0f1 --- /dev/null +++ b/yamls/us/models/tracks/luigi_raceway/luigi_raceway_displaylists.yml @@ -0,0 +1,2370 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x907E40 + no_compression: true + segments: + - [0x0F, 0x907E40] + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees5Left"] + - [0x03009800, "textures/other_textures/gTextureTrees5Right"] + # Segment 5 + - [0x05000000, "textures/other_textures/sign_shell_shot_0"] + - [0x05001000, "textures/other_textures/sign_shell_shot_1"] + - [0x05002000, "textures/other_textures/checkerbord_yellow_blue"] + - [0x05002800, "textures/other_textures/texture_64619C"] + - [0x05003000, "textures/other_textures/checkerboard_blue_green"] + - [0x05003800, "textures/other_textures/grass_3"] + - [0x05004000, "textures/other_textures/flag_red"] + - [0x05004800, "textures/other_textures/texture_65100C"] + - [0x05005000, "textures/other_textures/texture_65112C"] + - [0x05005800, "textures/other_textures/texture_653608"] + - [0x05006000, "textures/other_textures/grass_11"] + - [0x05006800, "textures/other_textures/sign_luigi_face_0"] + - [0x05007800, "textures/other_textures/sign_luigi_face_1"] + - [0x05008800, "textures/other_textures/texture_66C7A8"] + - [0x05009000, "textures/other_textures/texture_670AC8"] + - [0x0500A000, "textures/other_textures/texture_671A88"] + - [0x0500A800, "textures/other_textures/texture_6735DC"] + - [0x0500B000, "textures/other_textures/texture_673C68"] + - [0x0500B800, "textures/other_textures/texture_6747C4"] + - [0x0500C000, "textures/other_textures/road_1"] + - [0x0500D000, "textures/other_textures/road_2"] + - [0x0500E000, "textures/other_textures/road_finish_1"] + - [0x0500F000, "textures/other_textures/texture_67BBD8"] + - [0x0500F800, "textures/other_textures/texture_68272C"] + - [0x05010800, "textures/other_textures/texture_682928"] + - [0x05011800, "textures/other_textures/texture_682B24"] + - [0x05012800, "textures/other_textures/texture_682D20"] + - [0x05013800, "textures/other_textures/texture_682F1C"] + - [0x05014800, "textures/other_textures/texture_683118"] + - [0x05015800, "textures/other_textures/sign_blue_64"] + - [0x05016800, "textures/other_textures/sign_koopa_air_0"] + - [0x05017800, "textures/other_textures/sign_koopa_air_1"] + - [0x05018800, "textures/other_textures/sign_luigis_0"] + - [0x05019800, "textures/other_textures/sign_luigis_1"] + - [0x0501A800, "textures/other_textures/sign_mario_star_0"] + - [0x0501B800, "textures/other_textures/sign_mario_star_1"] + - [0x0501C800, "textures/other_textures/sign_nintendo_red_0"] + - [0x0501D800, "textures/other_textures/sign_nintendo_red_1"] + - [0x0501E800, "textures/other_textures/sign_yoshi"] + - [0x0501F800, "textures/other_textures/checkerboard_blue_gray"] + # Segment 7 + - [0x7000000, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_0"] + - [0x7000068, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_68"] + - [0x7000078, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_78"] + - [0x70000E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_E0"] + - [0x70000F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F0"] + - [0x7000108, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_108"] + - [0x7000118, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_118"] + - [0x7000190, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_190"] + - [0x7000208, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_208"] + - [0x7000280, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_280"] + - [0x70002F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2F8"] + - [0x7000370, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_370"] + - [0x70003E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3E8"] + - [0x7000450, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_450"] + - [0x70004B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4B8"] + - [0x7000528, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_528"] + - [0x70005A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5A0"] + - [0x7000610, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_610"] + - [0x7000688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_688"] + - [0x7000700, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_700"] + - [0x7000778, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_778"] + - [0x70007F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7F0"] + - [0x7000858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_858"] + - [0x70008D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D0"] + - [0x7000938, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_938"] + - [0x70009A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9A8"] + - [0x7000A20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A20"] + - [0x7000A98, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A98"] + - [0x7000B48, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B48"] + - [0x7000BD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BD0"] + - [0x7000C58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C58"] + - [0x7000CE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_CE0"] + - [0x7000D68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_D68"] + - [0x7000DF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_DF0"] + - [0x7000E78, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_E78"] + - [0x7000F00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F00"] + - [0x7000F88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F88"] + - [0x7001000, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1000"] + - [0x7001088, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1088"] + - [0x7001110, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1110"] + - [0x70011B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_11B8"] + - [0x7001260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1260"] + - [0x7001308, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1308"] + - [0x70013B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_13B0"] + - [0x7001438, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1438"] + - [0x70014E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_14E0"] + - [0x7001558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1558"] + - [0x70015E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_15E0"] + - [0x7001688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1688"] + - [0x7001730, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1730"] + - [0x70017E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_17E0"] + - [0x7001848, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1848"] + - [0x70018B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_18B8"] + - [0x7001920, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1920"] + - [0x7001988, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1988"] + - [0x7001A28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1A28"] + - [0x7001AC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1AC8"] + - [0x7001B28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1B28"] + - [0x7001BD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1BD8"] + - [0x7001C90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1C90"] + - [0x7001D00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1D00"] + - [0x7001D68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1D68"] + - [0x7001E10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1E10"] + - [0x7001E70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1E70"] + - [0x7001F18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1F18"] + - [0x7001F90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1F90"] + - [0x7001FF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1FF0"] + - [0x7002050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2050"] + - [0x70020C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_20C0"] + - [0x7002130, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2130"] + - [0x70021A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_21A8"] + - [0x7002210, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2210"] + - [0x7002280, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2280"] + - [0x70022F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_22F8"] + - [0x7002368, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2368"] + - [0x70023E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_23E0"] + - [0x7002458, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2458"] + - [0x70024E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_24E0"] + - [0x7002560, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2560"] + - [0x70025E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_25E8"] + - [0x7002658, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2658"] + - [0x70026B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_26B8"] + - [0x7002720, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2720"] + - [0x7002798, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2798"] + - [0x7002810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2810"] + - [0x7002888, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2888"] + - [0x7002900, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2900"] + - [0x7002978, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2978"] + - [0x70029F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_29F0"] + - [0x7002A68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2A68"] + - [0x7002AE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2AE0"] + - [0x7002B58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2B58"] + - [0x7002BC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2BC8"] + - [0x7002C40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2C40"] + - [0x7002CB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2CB8"] + - [0x7002D30, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2D30"] + - [0x7002DA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2DA8"] + - [0x7002E20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2E20"] + - [0x7002E90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2E90"] + - [0x7002EF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2EF8"] + - [0x7002F60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2F60"] + - [0x7003080, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3080"] + - [0x70030F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_30F8"] + - [0x7003170, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3170"] + - [0x70031E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_31E8"] + - [0x7003260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3260"] + - [0x70032D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_32D8"] + - [0x7003350, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3350"] + - [0x70033C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_33C8"] + - [0x7003448, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3448"] + - [0x70034C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_34C8"] + - [0x7003548, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3548"] + - [0x70035D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_35D0"] + - [0x7003678, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3678"] + - [0x70036F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_36F8"] + - [0x7003768, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3768"] + - [0x70037E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_37E0"] + - [0x7003858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3858"] + - [0x70038D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_38D0"] + - [0x7003948, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3948"] + - [0x70039C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_39C8"] + - [0x7003A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3A58"] + - [0x7003AD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3AD0"] + - [0x7003B38, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3B38"] + - [0x7003BD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3BD0"] + - [0x7003C40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3C40"] + - [0x7003CF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3CF0"] + - [0x7003D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3D60"] + - [0x7003DD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3DD8"] + - [0x7003EB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3EB8"] + - [0x7003FC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3FC0"] + - [0x7004148, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4148"] + - [0x7004330, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4330"] + - [0x7004518, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4518"] + - [0x7004540, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4540"] + - [0x70045B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_45B8"] + - [0x70046A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_46A0"] + - [0x7004860, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4860"] + - [0x7004880, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4880"] + - [0x7004960, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4960"] + - [0x70049B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_49B8"] + - [0x7004A28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4A28"] + - [0x7004B10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4B10"] + - [0x7004C28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4C28"] + - [0x7004EE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4EE8"] + - [0x7004F20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4F20"] + - [0x7005038, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5038"] + - [0x70051D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_51D8"] + - [0x70053E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_53E0"] + - [0x70055E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_55E8"] + - [0x7005788, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5788"] + - [0x70058A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_58A0"] + - [0x70059B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_59B8"] + - [0x7005AB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5AB8"] + - [0x7005BB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5BB8"] + - [0x7005CD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5CD0"] + - [0x7005ED8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5ED8"] + - [0x70060E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_60E0"] + - [0x7006300, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6300"] + - [0x7006418, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6418"] + - [0x7006558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6558"] + - [0x70065D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_65D8"] + - [0x7006680, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6680"] + - [0x7006728, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6728"] + - [0x70067D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_67D0"] + - [0x7006878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6878"] + - [0x7006920, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6920"] + - [0x70069C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_69C0"] + - [0x7006A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6A58"] + - [0x7006B00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6B00"] + - [0x7006BF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6BF0"] + - [0x7006CA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6CA8"] + - [0x7006D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6D60"] + - [0x7006E18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6E18"] + - [0x7006EF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6EF0"] + - [0x7006FA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6FA8"] + - [0x7007050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7050"] + - [0x70070F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_70F8"] + - [0x70071A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_71A0"] + - [0x7007248, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7248"] + - [0x70072F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_72F0"] + - [0x7007398, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7398"] + - [0x7007440, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7440"] + - [0x70074F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_74F0"] + - [0x70075A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_75A8"] + - [0x7007650, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7650"] + - [0x70076F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_76F8"] + - [0x70077B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_77B0"] + - [0x7007878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7878"] + - [0x7007940, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7940"] + - [0x70079E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_79E8"] + - [0x7007A88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7A88"] + - [0x7007B80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7B80"] + - [0x7007BF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7BF8"] + - [0x7007C80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7C80"] + - [0x7007CF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7CF0"] + - [0x7007D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7D60"] + - [0x7007DD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7DD8"] + - [0x7007E50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7E50"] + - [0x7007EB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7EB8"] + - [0x7007EF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7EF8"] + - [0x7007F68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7F68"] + - [0x7007FE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7FE0"] + - [0x7008048, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8048"] + - [0x70080B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_80B0"] + - [0x7008128, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8128"] + - [0x7008190, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8190"] + - [0x7008200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8200"] + - [0x7008240, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8240"] + - [0x7008320, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8320"] + - [0x70083C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_83C8"] + - [0x70083E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_83E0"] + - [0x7008448, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8448"] + - [0x70084B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_84B0"] + - [0x70084C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_84C8"] + - [0x7008528, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8528"] + - [0x70085F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_85F8"] + - [0x7008768, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8768"] + - [0x7008788, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8788"] + - [0x70087F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_87F0"] + - [0x7008858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8858"] + - [0x70088C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_88C0"] + - [0x7008928, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8928"] + - [0x7008990, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8990"] + - [0x70089F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_89F8"] + - [0x7008A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8A58"] + - [0x7008AB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8AB8"] + - [0x7008B18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8B18"] + - [0x7008B80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8B80"] + - [0x7008BE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8BE8"] + - [0x7008C50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8C50"] + - [0x7008CB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8CB8"] + - [0x7008D20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D20"] + - [0x7008D88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D88"] + - [0x7008DE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8DE8"] + - [0x7008E50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8E50"] + - [0x7008EB0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8EB0"] + - [0x7008F18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8F18"] + - [0x7008F80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8F80"] + - [0x7008FE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8FE8"] + - [0x7009098, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9098"] + - [0x7009120, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9120"] + - [0x70091A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_91A8"] + - [0x7009230, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9230"] + - [0x70092B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_92B8"] + - [0x7009340, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9340"] + - [0x70093C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_93C8"] + - [0x7009440, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9440"] + - [0x70094B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_94B8"] + - [0x7009530, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9530"] + - [0x70095B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_95B8"] + - [0x7009640, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9640"] + - [0x70096C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_96C8"] + - [0x7009750, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9750"] + - [0x70097D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_97D8"] + - [0x7009860, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9860"] + - [0x70098D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_98D8"] + - [0x7009960, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9960"] + - [0x70099D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_99D8"] + - [0x7009A60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9A60"] + - [0x7009AE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9AE8"] + - [0x7009B70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9B70"] + - [0x7009C20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9C20"] + - [0x7009EC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9EC0"] + - [0x7009ED0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9ED0"] + - [0x7009F70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9F70"] + - [0x700A010, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A010"] + - [0x700A028, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A028"] + - [0x700A088, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A088"] + - [0x700A0F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A0F0"] + - [0x700A150, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A150"] + - [0x700A1B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A1B0"] + - [0x700A210, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A210"] + - [0x700A270, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A270"] + - [0x700A2A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A2A8"] + - [0x700A308, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A308"] + - [0x700A368, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A368"] + - [0x700A3C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A3C8"] + - [0x700A430, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A430"] + - [0x700A490, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A490"] + - [0x700A4F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A4F8"] + - [0x700A558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A558"] + - [0x700A5C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A5C0"] + - [0x700A620, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A620"] + - [0x700A688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A688"] + - [0x700A6E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A6E8"] + - [0x700A748, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A748"] + - [0x700A7A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A7A8"] + - [0x700A810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A810"] + - [0x700A870, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A870"] + - [0x700A8D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A8D0"] + - [0x700A930, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A930"] + - [0x700A998, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A998"] + - [0x700AA00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AA00"] + - [0x700AA68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AA68"] + - [0x700AAD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AAD0"] + - [0x700AB38, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AB38"] + - [0x700ABA0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ABA0"] + - [0x700AC08, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AC08"] + - [0x700AC70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AC70"] + - [0x700ACD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ACD8"] + - [0x700AD40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AD40"] + - [0x700ADA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ADA8"] + - [0x700AE10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AE10"] + - [0x700AE78, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AE78"] + - [0x700AEE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AEE0"] + - [0x700AF48, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AF48"] + - [0x700AFB0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AFB0"] + - [0x700B010, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B010"] + - [0x700B078, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B078"] + - [0x700B198, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B198"] + - [0x700B200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B200"] + - [0x700B268, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B268"] + - [0x700B2D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B2D0"] + - [0x700B338, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B338"] + - [0x700B3A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B3A0"] + - [0x700B408, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B408"] + - [0x700B470, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B470"] + - [0x700B4D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B4D0"] + - [0x700B530, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B530"] + - [0x700B590, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B590"] + - [0x700B600, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B600"] + - [0x700B678, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B678"] + - [0x700B6D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B6D8"] + - [0x700B740, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B740"] + - [0x700B7A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B7A8"] + - [0x700B810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B810"] + - [0x700B878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B878"] + - [0x700B8E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B8E0"] + - [0x700B948, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B948"] + - [0x700B9B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B9B8"] + - [0x700BA20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BA20"] + - [0x700BA80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BA80"] + - [0x700BAF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BAF0"] + - [0x700BB50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BB50"] + - [0x700BBC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BBC0"] + - [0x700BC20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BC20"] + - [0x700BC88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BC88"] + - [0x700BD68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BD68"] + - [0x700BDC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BDC8"] + - [0x700BE28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BE28"] + - [0x700BE88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BE88"] + - [0x700BF20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BF20"] + - [0x700BFB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BFB8"] + - [0x700C050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C050"] + - [0x700C0F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C0F0"] + - [0x700C1A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C1A0"] + - [0x700C200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C200"] + - [0x700C260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C260"] + - [0x700C300, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C300"] + - [0x700C3A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C3A8"] + - [0x700C410, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C410"] + - [0x700C4C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C4C0"] + - [0x700C540, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C540"] + - [0x700C5C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C5C0"] + - [0x700C640, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C640"] + - [0x700C668, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C668"] + - [0x700C730, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C730"] + - [0x700C740, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C740"] + # Segment 4 + - [0x4000000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000000"] + - [0x4000080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000080"] + - [0x4000100, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000100"] + - [0x4000200, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000200"] + - [0x4000300, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000300"] + - [0x4000400, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000400"] + - [0x4000500, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000500"] + - [0x4000600, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000600"] + - [0x4000700, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000700"] + - [0x4000780, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000780"] + - [0x4000800, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000800"] + - [0x40008c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040008C0"] + - [0x40009c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040009C0"] + - [0x4000a80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000A80"] + - [0x4000b80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000B80"] + - [0x4000c80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000C80"] + - [0x4000d80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000D80"] + - [0x4000e80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000E80"] + - [0x4000f00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04000F00"] + - [0x4001000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001000"] + - [0x4001080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001080"] + - [0x4001140, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001140"] + - [0x4001240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001240"] + - [0x4001340, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001340"] + - [0x40013a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040013A0"] + - [0x4001420, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001420"] + - [0x4001480, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001480"] + - [0x4001500, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001500"] + - [0x4001560, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001560"] + - [0x40015e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040015E0"] + - [0x4001640, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001640"] + - [0x40016c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040016C0"] + - [0x4001720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001720"] + - [0x40017a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040017A0"] + - [0x4001800, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001800"] + - [0x4001880, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001880"] + - [0x40018e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040018E0"] + - [0x4001960, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001960"] + - [0x40019c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040019C0"] + - [0x4001a40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001A40"] + - [0x4001a80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001A80"] + - [0x4001ac0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001AC0"] + - [0x4001b20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001B20"] + - [0x4001ba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001BA0"] + - [0x4001c00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001C00"] + - [0x4001c80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001C80"] + - [0x4001d20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001D20"] + - [0x4001e20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001E20"] + - [0x4001ec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001EC0"] + - [0x4001fc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04001FC0"] + - [0x4002060, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002060"] + - [0x4002160, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002160"] + - [0x4002200, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002200"] + - [0x4002300, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002300"] + - [0x4002360, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002360"] + - [0x40023e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040023E0"] + - [0x4002480, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002480"] + - [0x4002580, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002580"] + - [0x40025c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040025C0"] + - [0x4002600, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002600"] + - [0x4002660, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002660"] + - [0x40026e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040026E0"] + - [0x4002780, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002780"] + - [0x4002880, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002880"] + - [0x4002920, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002920"] + - [0x4002a20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002A20"] + - [0x4002a80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002A80"] + - [0x4002af0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002AF0"] + - [0x4002b50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002B50"] + - [0x4002bb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002BB0"] + - [0x4002bf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002BF0"] + - [0x4002c40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002C40"] + - [0x4002cc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002CC0"] + - [0x4002d20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002D20"] + - [0x4002d60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002D60"] + - [0x4002de0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002DE0"] + - [0x4002e50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002E50"] + - [0x4002ee0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002EE0"] + - [0x4002f40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002F40"] + - [0x4002fb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04002FB0"] + - [0x4003020, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003020"] + - [0x4003060, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003060"] + - [0x40030f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040030F0"] + - [0x4003130, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003130"] + - [0x40031f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040031F0"] + - [0x4003270, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003270"] + - [0x40032d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040032D0"] + - [0x4003330, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003330"] + - [0x4003420, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003420"] + - [0x4003530, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003530"] + - [0x40036b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040036B0"] + - [0x4003770, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003770"] + - [0x4003890, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003890"] + - [0x4003a10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003A10"] + - [0x4003b20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003B20"] + - [0x4003ca0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003CA0"] + - [0x4003de0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003DE0"] + - [0x4003fd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04003FD0"] + - [0x40041b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040041B0"] + - [0x40043a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040043A0"] + - [0x40044c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040044C0"] + - [0x40044f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040044F0"] + - [0x40045b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040045B0"] + - [0x4004730, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004730"] + - [0x40048b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040048B0"] + - [0x4004a30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004A30"] + - [0x4004bb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004BB0"] + - [0x4004d00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004D00"] + - [0x4004e80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04004E80"] + - [0x4005000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005000"] + - [0x4005180, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005180"] + - [0x4005300, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005300"] + - [0x40053f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040053F0"] + - [0x4005570, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005570"] + - [0x40056f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040056F0"] + - [0x4005870, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005870"] + - [0x40059f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040059F0"] + - [0x4005b70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005B70"] + - [0x4005c90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005C90"] + - [0x4005d50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005D50"] + - [0x4005e10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005E10"] + - [0x4005f90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04005F90"] + - [0x4006110, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006110"] + - [0x4006290, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006290"] + - [0x4006410, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006410"] + - [0x4006590, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006590"] + - [0x4006710, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006710"] + - [0x4006890, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006890"] + - [0x4006a70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006A70"] + - [0x4006c00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006C00"] + - [0x4006d90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006D90"] + - [0x4006f80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04006F80"] + - [0x4007170, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007170"] + - [0x4007200, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007200"] + - [0x40073b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040073B0"] + - [0x40074c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040074C0"] + - [0x4007630, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007630"] + - [0x40077b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040077B0"] + - [0x4007910, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007910"] + - [0x4007a90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007A90"] + - [0x4007c40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007C40"] + - [0x4007e20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007E20"] + - [0x4007e50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007E50"] + - [0x4007fd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04007FD0"] + - [0x4008080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008080"] + - [0x4008260, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008260"] + - [0x40082c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040082C0"] + - [0x4008390, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008390"] + - [0x4008580, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008580"] + - [0x4008660, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008660"] + - [0x4008780, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008780"] + - [0x4008900, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008900"] + - [0x4008b00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008B00"] + - [0x4008d00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008D00"] + - [0x4008e00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008E00"] + - [0x4008f70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04008F70"] + - [0x4009170, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009170"] + - [0x4009370, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009370"] + - [0x4009560, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009560"] + - [0x40096b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040096B0"] + - [0x40098b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040098B0"] + - [0x4009ab0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009AB0"] + - [0x4009ca0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009CA0"] + - [0x4009e80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009E80"] + - [0x4009f00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009F00"] + - [0x4009fb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04009FB0"] + - [0x400a1b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A1B0"] + - [0x400a3b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A3B0"] + - [0x400a5a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A5A0"] + - [0x400a790, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A790"] + - [0x400a8d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A8D0"] + - [0x400a9a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400A9A0"] + - [0x400ab40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AB40"] + - [0x400aba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ABA0"] + - [0x400ac60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AC60"] + - [0x400ad20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AD20"] + - [0x400ae60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AE60"] + - [0x400af50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AF50"] + - [0x400afd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400AFD0"] + - [0x400b090, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B090"] + - [0x400b150, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B150"] + - [0x400b240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B240"] + - [0x400b2c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B2C0"] + - [0x400b460, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B460"] + - [0x400b660, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B660"] + - [0x400b710, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B710"] + - [0x400b740, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B740"] + - [0x400b940, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400B940"] + - [0x400ba20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BA20"] + - [0x400ba60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BA60"] + - [0x400baa0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BAA0"] + - [0x400bae0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BAE0"] + - [0x400bb20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BB20"] + - [0x400bb60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BB60"] + - [0x400bba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BBA0"] + - [0x400bbe0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BBE0"] + - [0x400bce0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BCE0"] + - [0x400bde0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BDE0"] + - [0x400bee0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BEE0"] + - [0x400bfe0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400BFE0"] + - [0x400c0a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C0A0"] + - [0x400c1b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C1B0"] + - [0x400c1f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C1F0"] + - [0x400c230, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C230"] + - [0x400c270, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C270"] + - [0x400c2b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C2B0"] + - [0x400c2f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C2F0"] + - [0x400c330, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C330"] + - [0x400c430, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C430"] + - [0x400c4b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C4B0"] + - [0x400c5d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C5D0"] + - [0x400c610, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C610"] + - [0x400c650, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C650"] + - [0x400c690, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C690"] + - [0x400c6d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C6D0"] + - [0x400c7d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C7D0"] + - [0x400c850, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C850"] + - [0x400c970, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C970"] + - [0x400c9b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C9B0"] + - [0x400c9f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400C9F0"] + - [0x400caf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CAF0"] + - [0x400cbb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CBB0"] + - [0x400ccc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CCC0"] + - [0x400cdc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CDC0"] + - [0x400cec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CEC0"] + - [0x400cfc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400CFC0"] + - [0x400d0c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D0C0"] + - [0x400d1c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D1C0"] + - [0x400d2c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D2C0"] + - [0x400d380, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D380"] + - [0x400d440, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D440"] + - [0x400d500, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D500"] + - [0x400d5c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D5C0"] + - [0x400d680, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D680"] + - [0x400d740, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D740"] + - [0x400d840, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D840"] + - [0x400d940, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400D940"] + - [0x400da40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DA40"] + - [0x400da80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DA80"] + - [0x400dac0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DAC0"] + - [0x400db00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DB00"] + - [0x400db40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DB40"] + - [0x400dc40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DC40"] + - [0x400dcc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DCC0"] + - [0x400dde0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DDE0"] + - [0x400de20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DE20"] + - [0x400de60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DE60"] + - [0x400dea0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DEA0"] + - [0x400dee0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DEE0"] + - [0x400dfe0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400DFE0"] + - [0x400e060, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E060"] + - [0x400e180, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E180"] + - [0x400e1c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E1C0"] + - [0x400e200, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E200"] + - [0x400e300, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E300"] + - [0x400e380, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E380"] + - [0x400e4a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E4A0"] + - [0x400e4e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E4E0"] + - [0x400e520, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E520"] + - [0x400e620, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E620"] + - [0x400e720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E720"] + - [0x400e820, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E820"] + - [0x400e960, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400E960"] + - [0x400ea80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EA80"] + - [0x400ebd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EBD0"] + - [0x400ec70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EC70"] + - [0x400ecf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ECF0"] + - [0x400ed70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400ED70"] + - [0x400edf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EDF0"] + - [0x400ee70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EE70"] + - [0x400ef10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EF10"] + - [0x400efb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400EFB0"] + - [0x400f050, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F050"] + - [0x400f0f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F0F0"] + - [0x400f170, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F170"] + - [0x400f210, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F210"] + - [0x400f250, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F250"] + - [0x400f290, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F290"] + - [0x400f2d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F2D0"] + - [0x400f350, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F350"] + - [0x400f3d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F3D0"] + - [0x400f490, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F490"] + - [0x400f550, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F550"] + - [0x400f590, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F590"] + - [0x400f610, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F610"] + - [0x400f6f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F6F0"] + - [0x400f7b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F7B0"] + - [0x400f870, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F870"] + - [0x400f930, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F930"] + - [0x400f9f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400F9F0"] + - [0x400fb30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FB30"] + - [0x400fc70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FC70"] + - [0x400fd30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FD30"] + - [0x400fdf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FDF0"] + - [0x400fe70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FE70"] + - [0x400fef0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FEF0"] + - [0x400ff70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FF70"] + - [0x400fff0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x0400FFF0"] + - [0x4010090, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010090"] + - [0x4010130, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010130"] + - [0x40101b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040101B0"] + - [0x4010230, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010230"] + - [0x40102d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040102D0"] + - [0x4010350, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010350"] + - [0x40103f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040103F0"] + - [0x4010470, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010470"] + - [0x4010510, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010510"] + - [0x40105b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040105B0"] + - [0x4010630, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010630"] + - [0x40106f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040106F0"] + - [0x40107b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040107B0"] + - [0x4010870, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010870"] + - [0x4010910, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010910"] + - [0x4010990, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010990"] + - [0x4010a10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010A10"] + - [0x4010a90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010A90"] + - [0x4010af0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010AF0"] + - [0x4010bb0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010BB0"] + - [0x4010c70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010C70"] + - [0x4010d30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010D30"] + - [0x4010df0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010DF0"] + - [0x4010ed0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010ED0"] + - [0x4010f50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010F50"] + - [0x4010fd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04010FD0"] + - [0x4011050, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011050"] + - [0x4011090, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011090"] + - [0x4011190, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011190"] + - [0x40112d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040112D0"] + - [0x4011390, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011390"] + - [0x4011450, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011450"] + - [0x4011550, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011550"] + - [0x4011650, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011650"] + - [0x40116d0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040116D0"] + - [0x4011790, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011790"] + - [0x4011890, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011890"] + - [0x4011910, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011910"] + - [0x4011990, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011990"] + - [0x4011a90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011A90"] + - [0x4011b10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011B10"] + - [0x4011bd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011BD0"] + - [0x4011dd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011DD0"] + - [0x4011e10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011E10"] + - [0x4011f70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011F70"] + - [0x4011ff0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04011FF0"] + - [0x4012070, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012070"] + - [0x40120b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040120B0"] + - [0x40121c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040121C0"] + - [0x4012220, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012220"] + - [0x40122e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040122E0"] + - [0x40123a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040123A0"] + - [0x4012460, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012460"] + - [0x40124a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040124A0"] + - [0x4012520, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012520"] + - [0x40125a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040125A0"] + - [0x4012620, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012620"] + - [0x40126a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040126A0"] + - [0x4012720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012720"] + - [0x40127a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040127A0"] + - [0x40127e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040127E0"] + - [0x4012820, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012820"] + - [0x4012860, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012860"] + - [0x40128e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040128E0"] + - [0x4012960, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012960"] + - [0x40129e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040129E0"] + - [0x4012a60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012A60"] + - [0x4012ae0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012AE0"] + - [0x4012b60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012B60"] + - [0x4012ba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012BA0"] + - [0x4012c20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012C20"] + - [0x4012c60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012C60"] + - [0x4012ce0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012CE0"] + - [0x4012d60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012D60"] + - [0x4012de0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012DE0"] + - [0x4012e40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012E40"] + - [0x4012ec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012EC0"] + - [0x4012f20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012F20"] + - [0x4012fa0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04012FA0"] + - [0x4013000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013000"] + - [0x4013080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013080"] + - [0x40130e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040130E0"] + - [0x4013160, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013160"] + - [0x40131c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040131C0"] + - [0x4013240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013240"] + - [0x40132a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040132A0"] + - [0x4013320, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013320"] + - [0x4013360, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013360"] + - [0x40133a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040133A0"] + - [0x40133e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040133E0"] + - [0x4013420, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013420"] + - [0x4013460, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013460"] + - [0x40134a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040134A0"] + - [0x4013500, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013500"] + - [0x4013560, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013560"] + - [0x40135c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040135C0"] + - [0x4013640, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013640"] + - [0x40136a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040136A0"] + - [0x4013720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013720"] + - [0x4013780, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013780"] + - [0x4013800, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013800"] + - [0x4013860, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013860"] + - [0x40138e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040138E0"] + - [0x4013940, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013940"] + - [0x40139c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040139C0"] + - [0x4013a00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013A00"] + - [0x4013a40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013A40"] + - [0x4013aa0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013AA0"] + - [0x4013b20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013B20"] + - [0x4013b60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013B60"] + - [0x4013ba0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013BA0"] + - [0x4013c00, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013C00"] + - [0x4013c80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013C80"] + - [0x4013ce0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013CE0"] + - [0x4013d60, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013D60"] + - [0x4013dc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013DC0"] + - [0x4013e40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04013E40"] + - [0x4014040, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014040"] + - [0x4014240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014240"] + - [0x4014440, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014440"] + - [0x4014640, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014640"] + - [0x4014840, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014840"] + - [0x4014880, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014880"] + - [0x40149b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040149B0"] + - [0x4014af0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014AF0"] + - [0x4014b30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014B30"] + - [0x4014b90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014B90"] + - [0x4014bd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014BD0"] + - [0x4014c10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C10"] + - [0x4014c50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C50"] + - [0x4014c90, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014C90"] + - [0x4014cc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014CC0"] + - [0x4014cf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014CF0"] + - [0x4014d30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014D30"] + - [0x4014db0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014DB0"] + - [0x4014df0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014DF0"] + - [0x4014e80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014E80"] + - [0x4014ec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014EC0"] + - [0x4014f40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014F40"] + - [0x4014f80, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014F80"] + - [0x4014fe0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04014FE0"] + - [0x4015020, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015020"] + - [0x4015060, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015060"] + - [0x40150a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040150A0"] + - [0x4015140, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015140"] + - [0x4015170, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015170"] + - [0x40151a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040151A0"] + - [0x40151e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040151E0"] + - [0x4015240, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015240"] + - [0x40152c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040152C0"] + - [0x4015340, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015340"] + - [0x40153c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040153C0"] + - [0x4015420, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015420"] + - [0x40154a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040154A0"] + - [0x4015520, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015520"] + - [0x40155a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040155A0"] + - [0x4015620, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015620"] + - [0x40156e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040156E0"] + - [0x4015760, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015760"] + - [0x40157e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040157E0"] + - [0x4015860, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015860"] + - [0x40158e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040158E0"] + - [0x4015960, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015960"] + - [0x40159e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040159E0"] + - [0x4015a20, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015A20"] + - [0x4015ab0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015AB0"] + - [0x4015b10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015B10"] + - [0x4015b70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015B70"] + - [0x4015bd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015BD0"] + - [0x4015c50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015C50"] + - [0x4015cd0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015CD0"] + - [0x4015d50, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015D50"] + - [0x4015db0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015DB0"] + - [0x4015df0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015DF0"] + - [0x4015e30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015E30"] + - [0x4015e70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015E70"] + - [0x4015f10, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04015F10"] + - [0x4016000, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016000"] + - [0x4016040, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016040"] + - [0x40160c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040160C0"] + - [0x4016140, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016140"] + - [0x40161b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040161B0"] + - [0x4016230, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016230"] + - [0x40162b0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040162B0"] + - [0x4016330, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016330"] + - [0x40163c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040163C0"] + - [0x4016440, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016440"] + - [0x4016480, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016480"] + - [0x4016520, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016520"] + - [0x4016580, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016580"] + - [0x4016630, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016630"] + - [0x4016670, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016670"] + - [0x40166f0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040166F0"] + - [0x4016720, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016720"] + - [0x4016760, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016760"] + - [0x40167a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040167A0"] + - [0x40167e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040167E0"] + - [0x4016820, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016820"] + - [0x4016860, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016860"] + - [0x40168a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040168A0"] + - [0x40168e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040168E0"] + - [0x4016910, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016910"] + - [0x40169a0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040169A0"] + - [0x40169e0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040169E0"] + - [0x4016a70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016A70"] + - [0x4016ab0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016AB0"] + - [0x4016af0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016AF0"] + - [0x4016b30, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016B30"] + - [0x4016b70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016B70"] + - [0x4016bf0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016BF0"] + - [0x4016c70, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016C70"] + - [0x4016cc0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016CC0"] + - [0x4016ec0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016EC0"] + - [0x4016f40, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04016F40"] + - [0x4017080, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x04017080"] + - [0x40171c0, "models/tracks/luigi_raceway/luigi_raceway_vertices/d_course_luigi_raceway_vertex_0x040171C0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_luigi_raceway_packed_dl_0: + symbol: d_course_luigi_raceway_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_luigi_raceway_packed_dl_68: + symbol: d_course_luigi_raceway_packed_dl_68 + type: MK64:PACKED_GFX + offset: 0x16 +d_course_luigi_raceway_packed_dl_78: + symbol: d_course_luigi_raceway_packed_dl_78 + type: MK64:PACKED_GFX + offset: 0x1A +d_course_luigi_raceway_packed_dl_E0: + symbol: d_course_luigi_raceway_packed_dl_E0 + type: MK64:PACKED_GFX + offset: 0x30 +d_course_luigi_raceway_packed_dl_F0: + symbol: d_course_luigi_raceway_packed_dl_F0 + type: MK64:PACKED_GFX + offset: 0x34 +d_course_luigi_raceway_packed_dl_108: + symbol: d_course_luigi_raceway_packed_dl_108 + type: MK64:PACKED_GFX + offset: 0x3B +d_course_luigi_raceway_packed_dl_118: + symbol: d_course_luigi_raceway_packed_dl_118 + type: MK64:PACKED_GFX + offset: 0x3F +d_course_luigi_raceway_packed_dl_190: + symbol: d_course_luigi_raceway_packed_dl_190 + type: MK64:PACKED_GFX + offset: 0x5F +d_course_luigi_raceway_packed_dl_208: + symbol: d_course_luigi_raceway_packed_dl_208 + type: MK64:PACKED_GFX + offset: 0x7F +d_course_luigi_raceway_packed_dl_280: + symbol: d_course_luigi_raceway_packed_dl_280 + type: MK64:PACKED_GFX + offset: 0x9F +d_course_luigi_raceway_packed_dl_2F8: + symbol: d_course_luigi_raceway_packed_dl_2F8 + type: MK64:PACKED_GFX + offset: 0xBF +d_course_luigi_raceway_packed_dl_370: + symbol: d_course_luigi_raceway_packed_dl_370 + type: MK64:PACKED_GFX + offset: 0xDF +d_course_luigi_raceway_packed_dl_3E8: + symbol: d_course_luigi_raceway_packed_dl_3E8 + type: MK64:PACKED_GFX + offset: 0xFF +d_course_luigi_raceway_packed_dl_450: + symbol: d_course_luigi_raceway_packed_dl_450 + type: MK64:PACKED_GFX + offset: 0x115 +d_course_luigi_raceway_packed_dl_4B8: + symbol: d_course_luigi_raceway_packed_dl_4B8 + type: MK64:PACKED_GFX + offset: 0x12B +d_course_luigi_raceway_packed_dl_528: + symbol: d_course_luigi_raceway_packed_dl_528 + type: MK64:PACKED_GFX + offset: 0x146 +d_course_luigi_raceway_packed_dl_5A0: + symbol: d_course_luigi_raceway_packed_dl_5A0 + type: MK64:PACKED_GFX + offset: 0x166 +d_course_luigi_raceway_packed_dl_610: + symbol: d_course_luigi_raceway_packed_dl_610 + type: MK64:PACKED_GFX + offset: 0x181 +d_course_luigi_raceway_packed_dl_688: + symbol: d_course_luigi_raceway_packed_dl_688 + type: MK64:PACKED_GFX + offset: 0x1A1 +d_course_luigi_raceway_packed_dl_700: + symbol: d_course_luigi_raceway_packed_dl_700 + type: MK64:PACKED_GFX + offset: 0x1C1 +d_course_luigi_raceway_packed_dl_778: + symbol: d_course_luigi_raceway_packed_dl_778 + type: MK64:PACKED_GFX + offset: 0x1E1 +d_course_luigi_raceway_packed_dl_7F0: + symbol: d_course_luigi_raceway_packed_dl_7F0 + type: MK64:PACKED_GFX + offset: 0x201 +d_course_luigi_raceway_packed_dl_858: + symbol: d_course_luigi_raceway_packed_dl_858 + type: MK64:PACKED_GFX + offset: 0x217 +d_course_luigi_raceway_packed_dl_8D0: + symbol: d_course_luigi_raceway_packed_dl_8D0 + type: MK64:PACKED_GFX + offset: 0x237 +d_course_luigi_raceway_packed_dl_938: + symbol: d_course_luigi_raceway_packed_dl_938 + type: MK64:PACKED_GFX + offset: 0x24D +d_course_luigi_raceway_packed_dl_9A8: + symbol: d_course_luigi_raceway_packed_dl_9A8 + type: MK64:PACKED_GFX + offset: 0x268 +d_course_luigi_raceway_packed_dl_A20: + symbol: d_course_luigi_raceway_packed_dl_A20 + type: MK64:PACKED_GFX + offset: 0x288 +d_course_luigi_raceway_packed_dl_A98: + symbol: d_course_luigi_raceway_packed_dl_A98 + type: MK64:PACKED_GFX + offset: 0x2A8 +d_course_luigi_raceway_packed_dl_B48: + symbol: d_course_luigi_raceway_packed_dl_B48 + type: MK64:PACKED_GFX + offset: 0x2E8 +d_course_luigi_raceway_packed_dl_BD0: + symbol: d_course_luigi_raceway_packed_dl_BD0 + type: MK64:PACKED_GFX + offset: 0x30C +d_course_luigi_raceway_packed_dl_C58: + symbol: d_course_luigi_raceway_packed_dl_C58 + type: MK64:PACKED_GFX + offset: 0x330 +d_course_luigi_raceway_packed_dl_CE0: + symbol: d_course_luigi_raceway_packed_dl_CE0 + type: MK64:PACKED_GFX + offset: 0x354 +d_course_luigi_raceway_packed_dl_D68: + symbol: d_course_luigi_raceway_packed_dl_D68 + type: MK64:PACKED_GFX + offset: 0x378 +d_course_luigi_raceway_packed_dl_DF0: + symbol: d_course_luigi_raceway_packed_dl_DF0 + type: MK64:PACKED_GFX + offset: 0x39C +d_course_luigi_raceway_packed_dl_E78: + symbol: d_course_luigi_raceway_packed_dl_E78 + type: MK64:PACKED_GFX + offset: 0x3C0 +d_course_luigi_raceway_packed_dl_F00: + symbol: d_course_luigi_raceway_packed_dl_F00 + type: MK64:PACKED_GFX + offset: 0x3E4 +d_course_luigi_raceway_packed_dl_F88: + symbol: d_course_luigi_raceway_packed_dl_F88 + type: MK64:PACKED_GFX + offset: 0x408 +d_course_luigi_raceway_packed_dl_1000: + symbol: d_course_luigi_raceway_packed_dl_1000 + type: MK64:PACKED_GFX + offset: 0x422 +d_course_luigi_raceway_packed_dl_1088: + symbol: d_course_luigi_raceway_packed_dl_1088 + type: MK64:PACKED_GFX + offset: 0x446 +d_course_luigi_raceway_packed_dl_1110: + symbol: d_course_luigi_raceway_packed_dl_1110 + type: MK64:PACKED_GFX + offset: 0x46A +d_course_luigi_raceway_packed_dl_11B8: + symbol: d_course_luigi_raceway_packed_dl_11B8 + type: MK64:PACKED_GFX + offset: 0x4A2 +d_course_luigi_raceway_packed_dl_1260: + symbol: d_course_luigi_raceway_packed_dl_1260 + type: MK64:PACKED_GFX + offset: 0x4DA +d_course_luigi_raceway_packed_dl_1308: + symbol: d_course_luigi_raceway_packed_dl_1308 + type: MK64:PACKED_GFX + offset: 0x512 +d_course_luigi_raceway_packed_dl_13B0: + symbol: d_course_luigi_raceway_packed_dl_13B0 + type: MK64:PACKED_GFX + offset: 0x54A +d_course_luigi_raceway_packed_dl_1438: + symbol: d_course_luigi_raceway_packed_dl_1438 + type: MK64:PACKED_GFX + offset: 0x56E +d_course_luigi_raceway_packed_dl_14E0: + symbol: d_course_luigi_raceway_packed_dl_14E0 + type: MK64:PACKED_GFX + offset: 0x5A6 +d_course_luigi_raceway_packed_dl_1558: + symbol: d_course_luigi_raceway_packed_dl_1558 + type: MK64:PACKED_GFX + offset: 0x5C0 +d_course_luigi_raceway_packed_dl_15E0: + symbol: d_course_luigi_raceway_packed_dl_15E0 + type: MK64:PACKED_GFX + offset: 0x5E4 +d_course_luigi_raceway_packed_dl_1688: + symbol: d_course_luigi_raceway_packed_dl_1688 + type: MK64:PACKED_GFX + offset: 0x61C +d_course_luigi_raceway_packed_dl_1730: + symbol: d_course_luigi_raceway_packed_dl_1730 + type: MK64:PACKED_GFX + offset: 0x654 +d_course_luigi_raceway_packed_dl_17E0: + symbol: d_course_luigi_raceway_packed_dl_17E0 + type: MK64:PACKED_GFX + offset: 0x694 +d_course_luigi_raceway_packed_dl_1848: + symbol: d_course_luigi_raceway_packed_dl_1848 + type: MK64:PACKED_GFX + offset: 0x6AA +d_course_luigi_raceway_packed_dl_18B8: + symbol: d_course_luigi_raceway_packed_dl_18B8 + type: MK64:PACKED_GFX + offset: 0x6C3 +d_course_luigi_raceway_packed_dl_1920: + symbol: d_course_luigi_raceway_packed_dl_1920 + type: MK64:PACKED_GFX + offset: 0x6D9 +d_course_luigi_raceway_packed_dl_1988: + symbol: d_course_luigi_raceway_packed_dl_1988 + type: MK64:PACKED_GFX + offset: 0x6EF +d_course_luigi_raceway_packed_dl_1A28: + symbol: d_course_luigi_raceway_packed_dl_1A28 + type: MK64:PACKED_GFX + offset: 0x70F +d_course_luigi_raceway_packed_dl_1AC8: + symbol: d_course_luigi_raceway_packed_dl_1AC8 + type: MK64:PACKED_GFX + offset: 0x731 +d_course_luigi_raceway_packed_dl_1B28: + symbol: d_course_luigi_raceway_packed_dl_1B28 + type: MK64:PACKED_GFX + offset: 0x742 +d_course_luigi_raceway_packed_dl_1BD8: + symbol: d_course_luigi_raceway_packed_dl_1BD8 + type: MK64:PACKED_GFX + offset: 0x76E +d_course_luigi_raceway_packed_dl_1C90: + symbol: d_course_luigi_raceway_packed_dl_1C90 + type: MK64:PACKED_GFX + offset: 0x79D +d_course_luigi_raceway_packed_dl_1D00: + symbol: d_course_luigi_raceway_packed_dl_1D00 + type: MK64:PACKED_GFX + offset: 0x7B6 +d_course_luigi_raceway_packed_dl_1D68: + symbol: d_course_luigi_raceway_packed_dl_1D68 + type: MK64:PACKED_GFX + offset: 0x7CC +d_course_luigi_raceway_packed_dl_1E10: + symbol: d_course_luigi_raceway_packed_dl_1E10 + type: MK64:PACKED_GFX + offset: 0x7F1 +d_course_luigi_raceway_packed_dl_1E70: + symbol: d_course_luigi_raceway_packed_dl_1E70 + type: MK64:PACKED_GFX + offset: 0x802 +d_course_luigi_raceway_packed_dl_1F18: + symbol: d_course_luigi_raceway_packed_dl_1F18 + type: MK64:PACKED_GFX + offset: 0x829 +d_course_luigi_raceway_packed_dl_1F90: + symbol: d_course_luigi_raceway_packed_dl_1F90 + type: MK64:PACKED_GFX + offset: 0x854 +d_course_luigi_raceway_packed_dl_1FF0: + symbol: d_course_luigi_raceway_packed_dl_1FF0 + type: MK64:PACKED_GFX + offset: 0x865 +d_course_luigi_raceway_packed_dl_2050: + symbol: d_course_luigi_raceway_packed_dl_2050 + type: MK64:PACKED_GFX + offset: 0x876 +d_course_luigi_raceway_packed_dl_20C0: + symbol: d_course_luigi_raceway_packed_dl_20C0 + type: MK64:PACKED_GFX + offset: 0x88F +d_course_luigi_raceway_packed_dl_2130: + symbol: d_course_luigi_raceway_packed_dl_2130 + type: MK64:PACKED_GFX + offset: 0x8AA +d_course_luigi_raceway_packed_dl_21A8: + symbol: d_course_luigi_raceway_packed_dl_21A8 + type: MK64:PACKED_GFX + offset: 0x8CA +d_course_luigi_raceway_packed_dl_2210: + symbol: d_course_luigi_raceway_packed_dl_2210 + type: MK64:PACKED_GFX + offset: 0x8E0 +d_course_luigi_raceway_packed_dl_2280: + symbol: d_course_luigi_raceway_packed_dl_2280 + type: MK64:PACKED_GFX + offset: 0x8FB +d_course_luigi_raceway_packed_dl_22F8: + symbol: d_course_luigi_raceway_packed_dl_22F8 + type: MK64:PACKED_GFX + offset: 0x91B +d_course_luigi_raceway_packed_dl_2368: + symbol: d_course_luigi_raceway_packed_dl_2368 + type: MK64:PACKED_GFX + offset: 0x936 +d_course_luigi_raceway_packed_dl_23E0: + symbol: d_course_luigi_raceway_packed_dl_23E0 + type: MK64:PACKED_GFX + offset: 0x956 +d_course_luigi_raceway_packed_dl_2458: + symbol: d_course_luigi_raceway_packed_dl_2458 + type: MK64:PACKED_GFX + offset: 0x974 +d_course_luigi_raceway_packed_dl_24E0: + symbol: d_course_luigi_raceway_packed_dl_24E0 + type: MK64:PACKED_GFX + offset: 0x99C +d_course_luigi_raceway_packed_dl_2560: + symbol: d_course_luigi_raceway_packed_dl_2560 + type: MK64:PACKED_GFX + offset: 0x9C1 +d_course_luigi_raceway_packed_dl_25E8: + symbol: d_course_luigi_raceway_packed_dl_25E8 + type: MK64:PACKED_GFX + offset: 0x9E9 +d_course_luigi_raceway_packed_dl_2658: + symbol: d_course_luigi_raceway_packed_dl_2658 + type: MK64:PACKED_GFX + offset: 0xA04 +d_course_luigi_raceway_packed_dl_26B8: + symbol: d_course_luigi_raceway_packed_dl_26B8 + type: MK64:PACKED_GFX + offset: 0xA13 +d_course_luigi_raceway_packed_dl_2720: + symbol: d_course_luigi_raceway_packed_dl_2720 + type: MK64:PACKED_GFX + offset: 0xA29 +d_course_luigi_raceway_packed_dl_2798: + symbol: d_course_luigi_raceway_packed_dl_2798 + type: MK64:PACKED_GFX + offset: 0xA49 +d_course_luigi_raceway_packed_dl_2810: + symbol: d_course_luigi_raceway_packed_dl_2810 + type: MK64:PACKED_GFX + offset: 0xA69 +d_course_luigi_raceway_packed_dl_2888: + symbol: d_course_luigi_raceway_packed_dl_2888 + type: MK64:PACKED_GFX + offset: 0xA89 +d_course_luigi_raceway_packed_dl_2900: + symbol: d_course_luigi_raceway_packed_dl_2900 + type: MK64:PACKED_GFX + offset: 0xAA9 +d_course_luigi_raceway_packed_dl_2978: + symbol: d_course_luigi_raceway_packed_dl_2978 + type: MK64:PACKED_GFX + offset: 0xAC7 +d_course_luigi_raceway_packed_dl_29F0: + symbol: d_course_luigi_raceway_packed_dl_29F0 + type: MK64:PACKED_GFX + offset: 0xAE7 +d_course_luigi_raceway_packed_dl_2A68: + symbol: d_course_luigi_raceway_packed_dl_2A68 + type: MK64:PACKED_GFX + offset: 0xB07 +d_course_luigi_raceway_packed_dl_2AE0: + symbol: d_course_luigi_raceway_packed_dl_2AE0 + type: MK64:PACKED_GFX + offset: 0xB27 +d_course_luigi_raceway_packed_dl_2B58: + symbol: d_course_luigi_raceway_packed_dl_2B58 + type: MK64:PACKED_GFX + offset: 0xB47 +d_course_luigi_raceway_packed_dl_2BC8: + symbol: d_course_luigi_raceway_packed_dl_2BC8 + type: MK64:PACKED_GFX + offset: 0xB60 +d_course_luigi_raceway_packed_dl_2C40: + symbol: d_course_luigi_raceway_packed_dl_2C40 + type: MK64:PACKED_GFX + offset: 0xB80 +d_course_luigi_raceway_packed_dl_2CB8: + symbol: d_course_luigi_raceway_packed_dl_2CB8 + type: MK64:PACKED_GFX + offset: 0xBA0 +d_course_luigi_raceway_packed_dl_2D30: + symbol: d_course_luigi_raceway_packed_dl_2D30 + type: MK64:PACKED_GFX + offset: 0xBC0 +d_course_luigi_raceway_packed_dl_2DA8: + symbol: d_course_luigi_raceway_packed_dl_2DA8 + type: MK64:PACKED_GFX + offset: 0xBE0 +d_course_luigi_raceway_packed_dl_2E20: + symbol: d_course_luigi_raceway_packed_dl_2E20 + type: MK64:PACKED_GFX + offset: 0xC00 +d_course_luigi_raceway_packed_dl_2E90: + symbol: d_course_luigi_raceway_packed_dl_2E90 + type: MK64:PACKED_GFX + offset: 0xC1B +d_course_luigi_raceway_packed_dl_2EF8: + symbol: d_course_luigi_raceway_packed_dl_2EF8 + type: MK64:PACKED_GFX + offset: 0xC31 +d_course_luigi_raceway_packed_dl_2F60: + symbol: d_course_luigi_raceway_packed_dl_2F60 + type: MK64:PACKED_GFX + offset: 0xC47 +d_course_luigi_raceway_packed_dl_3080: + symbol: d_course_luigi_raceway_packed_dl_3080 + type: MK64:PACKED_GFX + offset: 0xCB1 +d_course_luigi_raceway_packed_dl_30F8: + symbol: d_course_luigi_raceway_packed_dl_30F8 + type: MK64:PACKED_GFX + offset: 0xCD1 +d_course_luigi_raceway_packed_dl_3170: + symbol: d_course_luigi_raceway_packed_dl_3170 + type: MK64:PACKED_GFX + offset: 0xCF1 +d_course_luigi_raceway_packed_dl_31E8: + symbol: d_course_luigi_raceway_packed_dl_31E8 + type: MK64:PACKED_GFX + offset: 0xD11 +d_course_luigi_raceway_packed_dl_3260: + symbol: d_course_luigi_raceway_packed_dl_3260 + type: MK64:PACKED_GFX + offset: 0xD31 +d_course_luigi_raceway_packed_dl_32D8: + symbol: d_course_luigi_raceway_packed_dl_32D8 + type: MK64:PACKED_GFX + offset: 0xD51 +d_course_luigi_raceway_packed_dl_3350: + symbol: d_course_luigi_raceway_packed_dl_3350 + type: MK64:PACKED_GFX + offset: 0xD71 +d_course_luigi_raceway_packed_dl_33C8: + symbol: d_course_luigi_raceway_packed_dl_33C8 + type: MK64:PACKED_GFX + offset: 0xD91 +d_course_luigi_raceway_packed_dl_3448: + symbol: d_course_luigi_raceway_packed_dl_3448 + type: MK64:PACKED_GFX + offset: 0xDB6 +d_course_luigi_raceway_packed_dl_34C8: + symbol: d_course_luigi_raceway_packed_dl_34C8 + type: MK64:PACKED_GFX + offset: 0xDD9 +d_course_luigi_raceway_packed_dl_3548: + symbol: d_course_luigi_raceway_packed_dl_3548 + type: MK64:PACKED_GFX + offset: 0xDFC +d_course_luigi_raceway_packed_dl_35D0: + symbol: d_course_luigi_raceway_packed_dl_35D0 + type: MK64:PACKED_GFX + offset: 0xE24 +d_course_luigi_raceway_packed_dl_3678: + symbol: d_course_luigi_raceway_packed_dl_3678 + type: MK64:PACKED_GFX + offset: 0xE5C +d_course_luigi_raceway_packed_dl_36F8: + symbol: d_course_luigi_raceway_packed_dl_36F8 + type: MK64:PACKED_GFX + offset: 0xE7F +d_course_luigi_raceway_packed_dl_3768: + symbol: d_course_luigi_raceway_packed_dl_3768 + type: MK64:PACKED_GFX + offset: 0xE9A +d_course_luigi_raceway_packed_dl_37E0: + symbol: d_course_luigi_raceway_packed_dl_37E0 + type: MK64:PACKED_GFX + offset: 0xEBA +d_course_luigi_raceway_packed_dl_3858: + symbol: d_course_luigi_raceway_packed_dl_3858 + type: MK64:PACKED_GFX + offset: 0xEDA +d_course_luigi_raceway_packed_dl_38D0: + symbol: d_course_luigi_raceway_packed_dl_38D0 + type: MK64:PACKED_GFX + offset: 0xEFA +d_course_luigi_raceway_packed_dl_3948: + symbol: d_course_luigi_raceway_packed_dl_3948 + type: MK64:PACKED_GFX + offset: 0xF1A +d_course_luigi_raceway_packed_dl_39C8: + symbol: d_course_luigi_raceway_packed_dl_39C8 + type: MK64:PACKED_GFX + offset: 0xF3D +d_course_luigi_raceway_packed_dl_3A58: + symbol: d_course_luigi_raceway_packed_dl_3A58 + type: MK64:PACKED_GFX + offset: 0xF68 +d_course_luigi_raceway_packed_dl_3AD0: + symbol: d_course_luigi_raceway_packed_dl_3AD0 + type: MK64:PACKED_GFX + offset: 0xF88 +d_course_luigi_raceway_packed_dl_3B38: + symbol: d_course_luigi_raceway_packed_dl_3B38 + type: MK64:PACKED_GFX + offset: 0xF9E +d_course_luigi_raceway_packed_dl_3BD0: + symbol: d_course_luigi_raceway_packed_dl_3BD0 + type: MK64:PACKED_GFX + offset: 0xFCE +d_course_luigi_raceway_packed_dl_3C40: + symbol: d_course_luigi_raceway_packed_dl_3C40 + type: MK64:PACKED_GFX + offset: 0xFE7 +d_course_luigi_raceway_packed_dl_3CF0: + symbol: d_course_luigi_raceway_packed_dl_3CF0 + type: MK64:PACKED_GFX + offset: 0x1024 +d_course_luigi_raceway_packed_dl_3D60: + symbol: d_course_luigi_raceway_packed_dl_3D60 + type: MK64:PACKED_GFX + offset: 0x103F +d_course_luigi_raceway_packed_dl_3DD8: + symbol: d_course_luigi_raceway_packed_dl_3DD8 + type: MK64:PACKED_GFX + offset: 0x105F +d_course_luigi_raceway_packed_dl_3EB8: + symbol: d_course_luigi_raceway_packed_dl_3EB8 + type: MK64:PACKED_GFX + offset: 0x10B1 +d_course_luigi_raceway_packed_dl_3FC0: + symbol: d_course_luigi_raceway_packed_dl_3FC0 + type: MK64:PACKED_GFX + offset: 0x1127 +d_course_luigi_raceway_packed_dl_4148: + symbol: d_course_luigi_raceway_packed_dl_4148 + type: MK64:PACKED_GFX + offset: 0x11D6 +d_course_luigi_raceway_packed_dl_4330: + symbol: d_course_luigi_raceway_packed_dl_4330 + type: MK64:PACKED_GFX + offset: 0x12BD +d_course_luigi_raceway_packed_dl_4518: + symbol: d_course_luigi_raceway_packed_dl_4518 + type: MK64:PACKED_GFX + offset: 0x13A4 +d_course_luigi_raceway_packed_dl_4540: + symbol: d_course_luigi_raceway_packed_dl_4540 + type: MK64:PACKED_GFX + offset: 0x13B1 +d_course_luigi_raceway_packed_dl_45B8: + symbol: d_course_luigi_raceway_packed_dl_45B8 + type: MK64:PACKED_GFX + offset: 0x13CF +d_course_luigi_raceway_packed_dl_46A0: + symbol: d_course_luigi_raceway_packed_dl_46A0 + type: MK64:PACKED_GFX + offset: 0x1427 +d_course_luigi_raceway_packed_dl_4860: + symbol: d_course_luigi_raceway_packed_dl_4860 + type: MK64:PACKED_GFX + offset: 0x14B5 +d_course_luigi_raceway_packed_dl_4880: + symbol: d_course_luigi_raceway_packed_dl_4880 + type: MK64:PACKED_GFX + offset: 0x14BF +d_course_luigi_raceway_packed_dl_4960: + symbol: d_course_luigi_raceway_packed_dl_4960 + type: MK64:PACKED_GFX + offset: 0x1503 +d_course_luigi_raceway_packed_dl_49B8: + symbol: d_course_luigi_raceway_packed_dl_49B8 + type: MK64:PACKED_GFX + offset: 0x1522 +d_course_luigi_raceway_packed_dl_4A28: + symbol: d_course_luigi_raceway_packed_dl_4A28 + type: MK64:PACKED_GFX + offset: 0x153D +d_course_luigi_raceway_packed_dl_4B10: + symbol: d_course_luigi_raceway_packed_dl_4B10 + type: MK64:PACKED_GFX + offset: 0x15A3 +d_course_luigi_raceway_packed_dl_4C28: + symbol: d_course_luigi_raceway_packed_dl_4C28 + type: MK64:PACKED_GFX + offset: 0x1621 +d_course_luigi_raceway_packed_dl_4EE8: + symbol: d_course_luigi_raceway_packed_dl_4EE8 + type: MK64:PACKED_GFX + offset: 0x16D6 +d_course_luigi_raceway_packed_dl_4F20: + symbol: d_course_luigi_raceway_packed_dl_4F20 + type: MK64:PACKED_GFX + offset: 0x16E9 +d_course_luigi_raceway_packed_dl_5038: + symbol: d_course_luigi_raceway_packed_dl_5038 + type: MK64:PACKED_GFX + offset: 0x173F +d_course_luigi_raceway_packed_dl_51D8: + symbol: d_course_luigi_raceway_packed_dl_51D8 + type: MK64:PACKED_GFX + offset: 0x17AE +d_course_luigi_raceway_packed_dl_53E0: + symbol: d_course_luigi_raceway_packed_dl_53E0 + type: MK64:PACKED_GFX + offset: 0x1832 +d_course_luigi_raceway_packed_dl_55E8: + symbol: d_course_luigi_raceway_packed_dl_55E8 + type: MK64:PACKED_GFX + offset: 0x18B6 +d_course_luigi_raceway_packed_dl_5788: + symbol: d_course_luigi_raceway_packed_dl_5788 + type: MK64:PACKED_GFX + offset: 0x1925 +d_course_luigi_raceway_packed_dl_58A0: + symbol: d_course_luigi_raceway_packed_dl_58A0 + type: MK64:PACKED_GFX + offset: 0x197B +d_course_luigi_raceway_packed_dl_59B8: + symbol: d_course_luigi_raceway_packed_dl_59B8 + type: MK64:PACKED_GFX + offset: 0x19D1 +d_course_luigi_raceway_packed_dl_5AB8: + symbol: d_course_luigi_raceway_packed_dl_5AB8 + type: MK64:PACKED_GFX + offset: 0x1A18 +d_course_luigi_raceway_packed_dl_5BB8: + symbol: d_course_luigi_raceway_packed_dl_5BB8 + type: MK64:PACKED_GFX + offset: 0x1A5F +d_course_luigi_raceway_packed_dl_5CD0: + symbol: d_course_luigi_raceway_packed_dl_5CD0 + type: MK64:PACKED_GFX + offset: 0x1AB5 +d_course_luigi_raceway_packed_dl_5ED8: + symbol: d_course_luigi_raceway_packed_dl_5ED8 + type: MK64:PACKED_GFX + offset: 0x1B39 +d_course_luigi_raceway_packed_dl_60E0: + symbol: d_course_luigi_raceway_packed_dl_60E0 + type: MK64:PACKED_GFX + offset: 0x1BBD +d_course_luigi_raceway_packed_dl_6300: + symbol: d_course_luigi_raceway_packed_dl_6300 + type: MK64:PACKED_GFX + offset: 0x1C44 +d_course_luigi_raceway_packed_dl_6418: + symbol: d_course_luigi_raceway_packed_dl_6418 + type: MK64:PACKED_GFX + offset: 0x1C9A +d_course_luigi_raceway_packed_dl_6558: + symbol: d_course_luigi_raceway_packed_dl_6558 + type: MK64:PACKED_GFX + offset: 0x1D07 +d_course_luigi_raceway_packed_dl_65D8: + symbol: d_course_luigi_raceway_packed_dl_65D8 + type: MK64:PACKED_GFX + offset: 0x1D35 +d_course_luigi_raceway_packed_dl_6680: + symbol: d_course_luigi_raceway_packed_dl_6680 + type: MK64:PACKED_GFX + offset: 0x1D5C +d_course_luigi_raceway_packed_dl_6728: + symbol: d_course_luigi_raceway_packed_dl_6728 + type: MK64:PACKED_GFX + offset: 0x1D83 +d_course_luigi_raceway_packed_dl_67D0: + symbol: d_course_luigi_raceway_packed_dl_67D0 + type: MK64:PACKED_GFX + offset: 0x1DAA +d_course_luigi_raceway_packed_dl_6878: + symbol: d_course_luigi_raceway_packed_dl_6878 + type: MK64:PACKED_GFX + offset: 0x1DD1 +d_course_luigi_raceway_packed_dl_6920: + symbol: d_course_luigi_raceway_packed_dl_6920 + type: MK64:PACKED_GFX + offset: 0x1DF8 +d_course_luigi_raceway_packed_dl_69C0: + symbol: d_course_luigi_raceway_packed_dl_69C0 + type: MK64:PACKED_GFX + offset: 0x1E1A +d_course_luigi_raceway_packed_dl_6A58: + symbol: d_course_luigi_raceway_packed_dl_6A58 + type: MK64:PACKED_GFX + offset: 0x1E37 +d_course_luigi_raceway_packed_dl_6B00: + symbol: d_course_luigi_raceway_packed_dl_6B00 + type: MK64:PACKED_GFX + offset: 0x1E5E +d_course_luigi_raceway_packed_dl_6BF0: + symbol: d_course_luigi_raceway_packed_dl_6BF0 + type: MK64:PACKED_GFX + offset: 0x1E9B +d_course_luigi_raceway_packed_dl_6CA8: + symbol: d_course_luigi_raceway_packed_dl_6CA8 + type: MK64:PACKED_GFX + offset: 0x1ECC +d_course_luigi_raceway_packed_dl_6D60: + symbol: d_course_luigi_raceway_packed_dl_6D60 + type: MK64:PACKED_GFX + offset: 0x1EFD +d_course_luigi_raceway_packed_dl_6E18: + symbol: d_course_luigi_raceway_packed_dl_6E18 + type: MK64:PACKED_GFX + offset: 0x1F2E +d_course_luigi_raceway_packed_dl_6EF0: + symbol: d_course_luigi_raceway_packed_dl_6EF0 + type: MK64:PACKED_GFX + offset: 0x1F73 +d_course_luigi_raceway_packed_dl_6FA8: + symbol: d_course_luigi_raceway_packed_dl_6FA8 + type: MK64:PACKED_GFX + offset: 0x1FA4 +d_course_luigi_raceway_packed_dl_7050: + symbol: d_course_luigi_raceway_packed_dl_7050 + type: MK64:PACKED_GFX + offset: 0x1FCB +d_course_luigi_raceway_packed_dl_70F8: + symbol: d_course_luigi_raceway_packed_dl_70F8 + type: MK64:PACKED_GFX + offset: 0x1FF2 +d_course_luigi_raceway_packed_dl_71A0: + symbol: d_course_luigi_raceway_packed_dl_71A0 + type: MK64:PACKED_GFX + offset: 0x2019 +d_course_luigi_raceway_packed_dl_7248: + symbol: d_course_luigi_raceway_packed_dl_7248 + type: MK64:PACKED_GFX + offset: 0x2040 +d_course_luigi_raceway_packed_dl_72F0: + symbol: d_course_luigi_raceway_packed_dl_72F0 + type: MK64:PACKED_GFX + offset: 0x2067 +d_course_luigi_raceway_packed_dl_7398: + symbol: d_course_luigi_raceway_packed_dl_7398 + type: MK64:PACKED_GFX + offset: 0x208E +d_course_luigi_raceway_packed_dl_7440: + symbol: d_course_luigi_raceway_packed_dl_7440 + type: MK64:PACKED_GFX + offset: 0x20B5 +d_course_luigi_raceway_packed_dl_74F0: + symbol: d_course_luigi_raceway_packed_dl_74F0 + type: MK64:PACKED_GFX + offset: 0x20E1 +d_course_luigi_raceway_packed_dl_75A8: + symbol: d_course_luigi_raceway_packed_dl_75A8 + type: MK64:PACKED_GFX + offset: 0x2112 +d_course_luigi_raceway_packed_dl_7650: + symbol: d_course_luigi_raceway_packed_dl_7650 + type: MK64:PACKED_GFX + offset: 0x2139 +d_course_luigi_raceway_packed_dl_76F8: + symbol: d_course_luigi_raceway_packed_dl_76F8 + type: MK64:PACKED_GFX + offset: 0x2160 +d_course_luigi_raceway_packed_dl_77B0: + symbol: d_course_luigi_raceway_packed_dl_77B0 + type: MK64:PACKED_GFX + offset: 0x2191 +d_course_luigi_raceway_packed_dl_7878: + symbol: d_course_luigi_raceway_packed_dl_7878 + type: MK64:PACKED_GFX + offset: 0x21CC +d_course_luigi_raceway_packed_dl_7940: + symbol: d_course_luigi_raceway_packed_dl_7940 + type: MK64:PACKED_GFX + offset: 0x2207 +d_course_luigi_raceway_packed_dl_79E8: + symbol: d_course_luigi_raceway_packed_dl_79E8 + type: MK64:PACKED_GFX + offset: 0x222E +d_course_luigi_raceway_packed_dl_7A88: + symbol: d_course_luigi_raceway_packed_dl_7A88 + type: MK64:PACKED_GFX + offset: 0x2250 +d_course_luigi_raceway_packed_dl_7B80: + symbol: d_course_luigi_raceway_packed_dl_7B80 + type: MK64:PACKED_GFX + offset: 0x22AB +d_course_luigi_raceway_packed_dl_7BF8: + symbol: d_course_luigi_raceway_packed_dl_7BF8 + type: MK64:PACKED_GFX + offset: 0x22CB +d_course_luigi_raceway_packed_dl_7C80: + symbol: d_course_luigi_raceway_packed_dl_7C80 + type: MK64:PACKED_GFX + offset: 0x22F5 +d_course_luigi_raceway_packed_dl_7CF0: + symbol: d_course_luigi_raceway_packed_dl_7CF0 + type: MK64:PACKED_GFX + offset: 0x2310 +d_course_luigi_raceway_packed_dl_7D60: + symbol: d_course_luigi_raceway_packed_dl_7D60 + type: MK64:PACKED_GFX + offset: 0x232B +d_course_luigi_raceway_packed_dl_7DD8: + symbol: d_course_luigi_raceway_packed_dl_7DD8 + type: MK64:PACKED_GFX + offset: 0x234B +d_course_luigi_raceway_packed_dl_7E50: + symbol: d_course_luigi_raceway_packed_dl_7E50 + type: MK64:PACKED_GFX + offset: 0x236B +d_course_luigi_raceway_packed_dl_7EB8: + symbol: d_course_luigi_raceway_packed_dl_7EB8 + type: MK64:PACKED_GFX + offset: 0x2381 +d_course_luigi_raceway_packed_dl_7EF8: + symbol: d_course_luigi_raceway_packed_dl_7EF8 + type: MK64:PACKED_GFX + offset: 0x2397 +d_course_luigi_raceway_packed_dl_7F68: + symbol: d_course_luigi_raceway_packed_dl_7F68 + type: MK64:PACKED_GFX + offset: 0x23B2 +d_course_luigi_raceway_packed_dl_7FE0: + symbol: d_course_luigi_raceway_packed_dl_7FE0 + type: MK64:PACKED_GFX + offset: 0x23D2 +d_course_luigi_raceway_packed_dl_8048: + symbol: d_course_luigi_raceway_packed_dl_8048 + type: MK64:PACKED_GFX + offset: 0x23E8 +d_course_luigi_raceway_packed_dl_80B0: + symbol: d_course_luigi_raceway_packed_dl_80B0 + type: MK64:PACKED_GFX + offset: 0x23FE +d_course_luigi_raceway_packed_dl_8128: + symbol: d_course_luigi_raceway_packed_dl_8128 + type: MK64:PACKED_GFX + offset: 0x241E +d_course_luigi_raceway_packed_dl_8190: + symbol: d_course_luigi_raceway_packed_dl_8190 + type: MK64:PACKED_GFX + offset: 0x2434 +d_course_luigi_raceway_packed_dl_8200: + symbol: d_course_luigi_raceway_packed_dl_8200 + type: MK64:PACKED_GFX + offset: 0x244F +d_course_luigi_raceway_packed_dl_8240: + symbol: d_course_luigi_raceway_packed_dl_8240 + type: MK64:PACKED_GFX + offset: 0x2465 +d_course_luigi_raceway_packed_dl_8320: + symbol: d_course_luigi_raceway_packed_dl_8320 + type: MK64:PACKED_GFX + offset: 0x24C2 +d_course_luigi_raceway_packed_dl_83C8: + symbol: d_course_luigi_raceway_packed_dl_83C8 + type: MK64:PACKED_GFX + offset: 0x2500 +d_course_luigi_raceway_packed_dl_83E0: + symbol: d_course_luigi_raceway_packed_dl_83E0 + type: MK64:PACKED_GFX + offset: 0x2507 +d_course_luigi_raceway_packed_dl_8448: + symbol: d_course_luigi_raceway_packed_dl_8448 + type: MK64:PACKED_GFX + offset: 0x251D +d_course_luigi_raceway_packed_dl_84B0: + symbol: d_course_luigi_raceway_packed_dl_84B0 + type: MK64:PACKED_GFX + offset: 0x2533 +d_course_luigi_raceway_packed_dl_84C8: + symbol: d_course_luigi_raceway_packed_dl_84C8 + type: MK64:PACKED_GFX + offset: 0x253A +d_course_luigi_raceway_packed_dl_8528: + symbol: d_course_luigi_raceway_packed_dl_8528 + type: MK64:PACKED_GFX + offset: 0x254B +d_course_luigi_raceway_packed_dl_85F8: + symbol: d_course_luigi_raceway_packed_dl_85F8 + type: MK64:PACKED_GFX + offset: 0x2592 +d_course_luigi_raceway_packed_dl_8768: + symbol: d_course_luigi_raceway_packed_dl_8768 + type: MK64:PACKED_GFX + offset: 0x25F0 +d_course_luigi_raceway_packed_dl_8788: + symbol: d_course_luigi_raceway_packed_dl_8788 + type: MK64:PACKED_GFX + offset: 0x25FA +d_course_luigi_raceway_packed_dl_87F0: + symbol: d_course_luigi_raceway_packed_dl_87F0 + type: MK64:PACKED_GFX + offset: 0x2610 +d_course_luigi_raceway_packed_dl_8858: + symbol: d_course_luigi_raceway_packed_dl_8858 + type: MK64:PACKED_GFX + offset: 0x2626 +d_course_luigi_raceway_packed_dl_88C0: + symbol: d_course_luigi_raceway_packed_dl_88C0 + type: MK64:PACKED_GFX + offset: 0x263C +d_course_luigi_raceway_packed_dl_8928: + symbol: d_course_luigi_raceway_packed_dl_8928 + type: MK64:PACKED_GFX + offset: 0x2652 +d_course_luigi_raceway_packed_dl_8990: + symbol: d_course_luigi_raceway_packed_dl_8990 + type: MK64:PACKED_GFX + offset: 0x2668 +d_course_luigi_raceway_packed_dl_89F8: + symbol: d_course_luigi_raceway_packed_dl_89F8 + type: MK64:PACKED_GFX + offset: 0x267E +d_course_luigi_raceway_packed_dl_8A58: + symbol: d_course_luigi_raceway_packed_dl_8A58 + type: MK64:PACKED_GFX + offset: 0x268F +d_course_luigi_raceway_packed_dl_8AB8: + symbol: d_course_luigi_raceway_packed_dl_8AB8 + type: MK64:PACKED_GFX + offset: 0x26A0 +d_course_luigi_raceway_packed_dl_8B18: + symbol: d_course_luigi_raceway_packed_dl_8B18 + type: MK64:PACKED_GFX + offset: 0x26B1 +d_course_luigi_raceway_packed_dl_8B80: + symbol: d_course_luigi_raceway_packed_dl_8B80 + type: MK64:PACKED_GFX + offset: 0x26C7 +d_course_luigi_raceway_packed_dl_8BE8: + symbol: d_course_luigi_raceway_packed_dl_8BE8 + type: MK64:PACKED_GFX + offset: 0x26DD +d_course_luigi_raceway_packed_dl_8C50: + symbol: d_course_luigi_raceway_packed_dl_8C50 + type: MK64:PACKED_GFX + offset: 0x26F3 +d_course_luigi_raceway_packed_dl_8CB8: + symbol: d_course_luigi_raceway_packed_dl_8CB8 + type: MK64:PACKED_GFX + offset: 0x2709 +d_course_luigi_raceway_packed_dl_8D20: + symbol: d_course_luigi_raceway_packed_dl_8D20 + type: MK64:PACKED_GFX + offset: 0x271F +d_course_luigi_raceway_packed_dl_8D88: + symbol: d_course_luigi_raceway_packed_dl_8D88 + type: MK64:PACKED_GFX + offset: 0x2735 +d_course_luigi_raceway_packed_dl_8DE8: + symbol: d_course_luigi_raceway_packed_dl_8DE8 + type: MK64:PACKED_GFX + offset: 0x2746 +d_course_luigi_raceway_packed_dl_8E50: + symbol: d_course_luigi_raceway_packed_dl_8E50 + type: MK64:PACKED_GFX + offset: 0x275C +d_course_luigi_raceway_packed_dl_8EB0: + symbol: d_course_luigi_raceway_packed_dl_8EB0 + type: MK64:PACKED_GFX + offset: 0x276D +d_course_luigi_raceway_packed_dl_8F18: + symbol: d_course_luigi_raceway_packed_dl_8F18 + type: MK64:PACKED_GFX + offset: 0x2783 +d_course_luigi_raceway_packed_dl_8F80: + symbol: d_course_luigi_raceway_packed_dl_8F80 + type: MK64:PACKED_GFX + offset: 0x2799 +d_course_luigi_raceway_packed_dl_8FE8: + symbol: d_course_luigi_raceway_packed_dl_8FE8 + type: MK64:PACKED_GFX + offset: 0x27AF +d_course_luigi_raceway_packed_dl_9098: + symbol: d_course_luigi_raceway_packed_dl_9098 + type: MK64:PACKED_GFX + offset: 0x27EF +d_course_luigi_raceway_packed_dl_9120: + symbol: d_course_luigi_raceway_packed_dl_9120 + type: MK64:PACKED_GFX + offset: 0x2813 +d_course_luigi_raceway_packed_dl_91A8: + symbol: d_course_luigi_raceway_packed_dl_91A8 + type: MK64:PACKED_GFX + offset: 0x2837 +d_course_luigi_raceway_packed_dl_9230: + symbol: d_course_luigi_raceway_packed_dl_9230 + type: MK64:PACKED_GFX + offset: 0x285B +d_course_luigi_raceway_packed_dl_92B8: + symbol: d_course_luigi_raceway_packed_dl_92B8 + type: MK64:PACKED_GFX + offset: 0x287F +d_course_luigi_raceway_packed_dl_9340: + symbol: d_course_luigi_raceway_packed_dl_9340 + type: MK64:PACKED_GFX + offset: 0x28A3 +d_course_luigi_raceway_packed_dl_93C8: + symbol: d_course_luigi_raceway_packed_dl_93C8 + type: MK64:PACKED_GFX + offset: 0x28C7 +d_course_luigi_raceway_packed_dl_9440: + symbol: d_course_luigi_raceway_packed_dl_9440 + type: MK64:PACKED_GFX + offset: 0x28E1 +d_course_luigi_raceway_packed_dl_94B8: + symbol: d_course_luigi_raceway_packed_dl_94B8 + type: MK64:PACKED_GFX + offset: 0x28FB +d_course_luigi_raceway_packed_dl_9530: + symbol: d_course_luigi_raceway_packed_dl_9530 + type: MK64:PACKED_GFX + offset: 0x2915 +d_course_luigi_raceway_packed_dl_95B8: + symbol: d_course_luigi_raceway_packed_dl_95B8 + type: MK64:PACKED_GFX + offset: 0x2939 +d_course_luigi_raceway_packed_dl_9640: + symbol: d_course_luigi_raceway_packed_dl_9640 + type: MK64:PACKED_GFX + offset: 0x295D +d_course_luigi_raceway_packed_dl_96C8: + symbol: d_course_luigi_raceway_packed_dl_96C8 + type: MK64:PACKED_GFX + offset: 0x2981 +d_course_luigi_raceway_packed_dl_9750: + symbol: d_course_luigi_raceway_packed_dl_9750 + type: MK64:PACKED_GFX + offset: 0x29A5 +d_course_luigi_raceway_packed_dl_97D8: + symbol: d_course_luigi_raceway_packed_dl_97D8 + type: MK64:PACKED_GFX + offset: 0x29C9 +d_course_luigi_raceway_packed_dl_9860: + symbol: d_course_luigi_raceway_packed_dl_9860 + type: MK64:PACKED_GFX + offset: 0x29ED +d_course_luigi_raceway_packed_dl_98D8: + symbol: d_course_luigi_raceway_packed_dl_98D8 + type: MK64:PACKED_GFX + offset: 0x2A07 +d_course_luigi_raceway_packed_dl_9960: + symbol: d_course_luigi_raceway_packed_dl_9960 + type: MK64:PACKED_GFX + offset: 0x2A2B +d_course_luigi_raceway_packed_dl_99D8: + symbol: d_course_luigi_raceway_packed_dl_99D8 + type: MK64:PACKED_GFX + offset: 0x2A45 +d_course_luigi_raceway_packed_dl_9A60: + symbol: d_course_luigi_raceway_packed_dl_9A60 + type: MK64:PACKED_GFX + offset: 0x2A69 +d_course_luigi_raceway_packed_dl_9AE8: + symbol: d_course_luigi_raceway_packed_dl_9AE8 + type: MK64:PACKED_GFX + offset: 0x2A8D +d_course_luigi_raceway_packed_dl_9B70: + symbol: d_course_luigi_raceway_packed_dl_9B70 + type: MK64:PACKED_GFX + offset: 0x2AB1 +d_course_luigi_raceway_packed_dl_9C20: + symbol: d_course_luigi_raceway_packed_dl_9C20 + type: MK64:PACKED_GFX + offset: 0x2AF1 +d_course_luigi_raceway_packed_dl_9EC0: + symbol: d_course_luigi_raceway_packed_dl_9EC0 + type: MK64:PACKED_GFX + offset: 0x2C7D +d_course_luigi_raceway_packed_dl_9ED0: + symbol: d_course_luigi_raceway_packed_dl_9ED0 + type: MK64:PACKED_GFX + offset: 0x2C81 +d_course_luigi_raceway_packed_dl_9F70: + symbol: d_course_luigi_raceway_packed_dl_9F70 + type: MK64:PACKED_GFX + offset: 0x2CB8 +d_course_luigi_raceway_packed_dl_A010: + symbol: d_course_luigi_raceway_packed_dl_A010 + type: MK64:PACKED_GFX + offset: 0x2CF1 +d_course_luigi_raceway_packed_dl_A028: + symbol: d_course_luigi_raceway_packed_dl_A028 + type: MK64:PACKED_GFX + offset: 0x2CF8 +d_course_luigi_raceway_packed_dl_A088: + symbol: d_course_luigi_raceway_packed_dl_A088 + type: MK64:PACKED_GFX + offset: 0x2D09 +d_course_luigi_raceway_packed_dl_A0F0: + symbol: d_course_luigi_raceway_packed_dl_A0F0 + type: MK64:PACKED_GFX + offset: 0x2D1F +d_course_luigi_raceway_packed_dl_A150: + symbol: d_course_luigi_raceway_packed_dl_A150 + type: MK64:PACKED_GFX + offset: 0x2D30 +d_course_luigi_raceway_packed_dl_A1B0: + symbol: d_course_luigi_raceway_packed_dl_A1B0 + type: MK64:PACKED_GFX + offset: 0x2D41 +d_course_luigi_raceway_packed_dl_A210: + symbol: d_course_luigi_raceway_packed_dl_A210 + type: MK64:PACKED_GFX + offset: 0x2D52 +d_course_luigi_raceway_packed_dl_A270: + symbol: d_course_luigi_raceway_packed_dl_A270 + type: MK64:PACKED_GFX + offset: 0x2D63 +d_course_luigi_raceway_packed_dl_A2A8: + symbol: d_course_luigi_raceway_packed_dl_A2A8 + type: MK64:PACKED_GFX + offset: 0x2D76 +d_course_luigi_raceway_packed_dl_A308: + symbol: d_course_luigi_raceway_packed_dl_A308 + type: MK64:PACKED_GFX + offset: 0x2D85 +d_course_luigi_raceway_packed_dl_A368: + symbol: d_course_luigi_raceway_packed_dl_A368 + type: MK64:PACKED_GFX + offset: 0x2D94 +d_course_luigi_raceway_packed_dl_A3C8: + symbol: d_course_luigi_raceway_packed_dl_A3C8 + type: MK64:PACKED_GFX + offset: 0x2DA5 +d_course_luigi_raceway_packed_dl_A430: + symbol: d_course_luigi_raceway_packed_dl_A430 + type: MK64:PACKED_GFX + offset: 0x2DBB +d_course_luigi_raceway_packed_dl_A490: + symbol: d_course_luigi_raceway_packed_dl_A490 + type: MK64:PACKED_GFX + offset: 0x2DCC +d_course_luigi_raceway_packed_dl_A4F8: + symbol: d_course_luigi_raceway_packed_dl_A4F8 + type: MK64:PACKED_GFX + offset: 0x2DE0 +d_course_luigi_raceway_packed_dl_A558: + symbol: d_course_luigi_raceway_packed_dl_A558 + type: MK64:PACKED_GFX + offset: 0x2DF1 +d_course_luigi_raceway_packed_dl_A5C0: + symbol: d_course_luigi_raceway_packed_dl_A5C0 + type: MK64:PACKED_GFX + offset: 0x2E07 +d_course_luigi_raceway_packed_dl_A620: + symbol: d_course_luigi_raceway_packed_dl_A620 + type: MK64:PACKED_GFX + offset: 0x2E18 +d_course_luigi_raceway_packed_dl_A688: + symbol: d_course_luigi_raceway_packed_dl_A688 + type: MK64:PACKED_GFX + offset: 0x2E2E +d_course_luigi_raceway_packed_dl_A6E8: + symbol: d_course_luigi_raceway_packed_dl_A6E8 + type: MK64:PACKED_GFX + offset: 0x2E3F +d_course_luigi_raceway_packed_dl_A748: + symbol: d_course_luigi_raceway_packed_dl_A748 + type: MK64:PACKED_GFX + offset: 0x2E50 +d_course_luigi_raceway_packed_dl_A7A8: + symbol: d_course_luigi_raceway_packed_dl_A7A8 + type: MK64:PACKED_GFX + offset: 0x2E61 +d_course_luigi_raceway_packed_dl_A810: + symbol: d_course_luigi_raceway_packed_dl_A810 + type: MK64:PACKED_GFX + offset: 0x2E77 +d_course_luigi_raceway_packed_dl_A870: + symbol: d_course_luigi_raceway_packed_dl_A870 + type: MK64:PACKED_GFX + offset: 0x2E86 +d_course_luigi_raceway_packed_dl_A8D0: + symbol: d_course_luigi_raceway_packed_dl_A8D0 + type: MK64:PACKED_GFX + offset: 0x2E95 +d_course_luigi_raceway_packed_dl_A930: + symbol: d_course_luigi_raceway_packed_dl_A930 + type: MK64:PACKED_GFX + offset: 0x2EA6 +d_course_luigi_raceway_packed_dl_A998: + symbol: d_course_luigi_raceway_packed_dl_A998 + type: MK64:PACKED_GFX + offset: 0x2EBC +d_course_luigi_raceway_packed_dl_AA00: + symbol: d_course_luigi_raceway_packed_dl_AA00 + type: MK64:PACKED_GFX + offset: 0x2ED2 +d_course_luigi_raceway_packed_dl_AA68: + symbol: d_course_luigi_raceway_packed_dl_AA68 + type: MK64:PACKED_GFX + offset: 0x2EE8 +d_course_luigi_raceway_packed_dl_AAD0: + symbol: d_course_luigi_raceway_packed_dl_AAD0 + type: MK64:PACKED_GFX + offset: 0x2EFE +d_course_luigi_raceway_packed_dl_AB38: + symbol: d_course_luigi_raceway_packed_dl_AB38 + type: MK64:PACKED_GFX + offset: 0x2F14 +d_course_luigi_raceway_packed_dl_ABA0: + symbol: d_course_luigi_raceway_packed_dl_ABA0 + type: MK64:PACKED_GFX + offset: 0x2F2A +d_course_luigi_raceway_packed_dl_AC08: + symbol: d_course_luigi_raceway_packed_dl_AC08 + type: MK64:PACKED_GFX + offset: 0x2F40 +d_course_luigi_raceway_packed_dl_AC70: + symbol: d_course_luigi_raceway_packed_dl_AC70 + type: MK64:PACKED_GFX + offset: 0x2F56 +d_course_luigi_raceway_packed_dl_ACD8: + symbol: d_course_luigi_raceway_packed_dl_ACD8 + type: MK64:PACKED_GFX + offset: 0x2F6C +d_course_luigi_raceway_packed_dl_AD40: + symbol: d_course_luigi_raceway_packed_dl_AD40 + type: MK64:PACKED_GFX + offset: 0x2F82 +d_course_luigi_raceway_packed_dl_ADA8: + symbol: d_course_luigi_raceway_packed_dl_ADA8 + type: MK64:PACKED_GFX + offset: 0x2F98 +d_course_luigi_raceway_packed_dl_AE10: + symbol: d_course_luigi_raceway_packed_dl_AE10 + type: MK64:PACKED_GFX + offset: 0x2FAE +d_course_luigi_raceway_packed_dl_AE78: + symbol: d_course_luigi_raceway_packed_dl_AE78 + type: MK64:PACKED_GFX + offset: 0x2FC4 +d_course_luigi_raceway_packed_dl_AEE0: + symbol: d_course_luigi_raceway_packed_dl_AEE0 + type: MK64:PACKED_GFX + offset: 0x2FDA +d_course_luigi_raceway_packed_dl_AF48: + symbol: d_course_luigi_raceway_packed_dl_AF48 + type: MK64:PACKED_GFX + offset: 0x2FF0 +d_course_luigi_raceway_packed_dl_AFB0: + symbol: d_course_luigi_raceway_packed_dl_AFB0 + type: MK64:PACKED_GFX + offset: 0x3006 +d_course_luigi_raceway_packed_dl_B010: + symbol: d_course_luigi_raceway_packed_dl_B010 + type: MK64:PACKED_GFX + offset: 0x3017 +d_course_luigi_raceway_packed_dl_B078: + symbol: d_course_luigi_raceway_packed_dl_B078 + type: MK64:PACKED_GFX + offset: 0x302B +d_course_luigi_raceway_packed_dl_B198: + symbol: d_course_luigi_raceway_packed_dl_B198 + type: MK64:PACKED_GFX + offset: 0x3095 +d_course_luigi_raceway_packed_dl_B200: + symbol: d_course_luigi_raceway_packed_dl_B200 + type: MK64:PACKED_GFX + offset: 0x30AB +d_course_luigi_raceway_packed_dl_B268: + symbol: d_course_luigi_raceway_packed_dl_B268 + type: MK64:PACKED_GFX + offset: 0x30C1 +d_course_luigi_raceway_packed_dl_B2D0: + symbol: d_course_luigi_raceway_packed_dl_B2D0 + type: MK64:PACKED_GFX + offset: 0x30D7 +d_course_luigi_raceway_packed_dl_B338: + symbol: d_course_luigi_raceway_packed_dl_B338 + type: MK64:PACKED_GFX + offset: 0x30ED +d_course_luigi_raceway_packed_dl_B3A0: + symbol: d_course_luigi_raceway_packed_dl_B3A0 + type: MK64:PACKED_GFX + offset: 0x3103 +d_course_luigi_raceway_packed_dl_B408: + symbol: d_course_luigi_raceway_packed_dl_B408 + type: MK64:PACKED_GFX + offset: 0x3119 +d_course_luigi_raceway_packed_dl_B470: + symbol: d_course_luigi_raceway_packed_dl_B470 + type: MK64:PACKED_GFX + offset: 0x312F +d_course_luigi_raceway_packed_dl_B4D0: + symbol: d_course_luigi_raceway_packed_dl_B4D0 + type: MK64:PACKED_GFX + offset: 0x3140 +d_course_luigi_raceway_packed_dl_B530: + symbol: d_course_luigi_raceway_packed_dl_B530 + type: MK64:PACKED_GFX + offset: 0x3151 +d_course_luigi_raceway_packed_dl_B590: + symbol: d_course_luigi_raceway_packed_dl_B590 + type: MK64:PACKED_GFX + offset: 0x3162 +d_course_luigi_raceway_packed_dl_B600: + symbol: d_course_luigi_raceway_packed_dl_B600 + type: MK64:PACKED_GFX + offset: 0x317D +d_course_luigi_raceway_packed_dl_B678: + symbol: d_course_luigi_raceway_packed_dl_B678 + type: MK64:PACKED_GFX + offset: 0x319B +d_course_luigi_raceway_packed_dl_B6D8: + symbol: d_course_luigi_raceway_packed_dl_B6D8 + type: MK64:PACKED_GFX + offset: 0x31AC +d_course_luigi_raceway_packed_dl_B740: + symbol: d_course_luigi_raceway_packed_dl_B740 + type: MK64:PACKED_GFX + offset: 0x31C2 +d_course_luigi_raceway_packed_dl_B7A8: + symbol: d_course_luigi_raceway_packed_dl_B7A8 + type: MK64:PACKED_GFX + offset: 0x31D8 +d_course_luigi_raceway_packed_dl_B810: + symbol: d_course_luigi_raceway_packed_dl_B810 + type: MK64:PACKED_GFX + offset: 0x31EE +d_course_luigi_raceway_packed_dl_B878: + symbol: d_course_luigi_raceway_packed_dl_B878 + type: MK64:PACKED_GFX + offset: 0x3204 +d_course_luigi_raceway_packed_dl_B8E0: + symbol: d_course_luigi_raceway_packed_dl_B8E0 + type: MK64:PACKED_GFX + offset: 0x321A +d_course_luigi_raceway_packed_dl_B948: + symbol: d_course_luigi_raceway_packed_dl_B948 + type: MK64:PACKED_GFX + offset: 0x3230 +d_course_luigi_raceway_packed_dl_B9B8: + symbol: d_course_luigi_raceway_packed_dl_B9B8 + type: MK64:PACKED_GFX + offset: 0x3249 +d_course_luigi_raceway_packed_dl_BA20: + symbol: d_course_luigi_raceway_packed_dl_BA20 + type: MK64:PACKED_GFX + offset: 0x325F +d_course_luigi_raceway_packed_dl_BA80: + symbol: d_course_luigi_raceway_packed_dl_BA80 + type: MK64:PACKED_GFX + offset: 0x3270 +d_course_luigi_raceway_packed_dl_BAF0: + symbol: d_course_luigi_raceway_packed_dl_BAF0 + type: MK64:PACKED_GFX + offset: 0x328B +d_course_luigi_raceway_packed_dl_BB50: + symbol: d_course_luigi_raceway_packed_dl_BB50 + type: MK64:PACKED_GFX + offset: 0x329C +d_course_luigi_raceway_packed_dl_BBC0: + symbol: d_course_luigi_raceway_packed_dl_BBC0 + type: MK64:PACKED_GFX + offset: 0x32B5 +d_course_luigi_raceway_packed_dl_BC20: + symbol: d_course_luigi_raceway_packed_dl_BC20 + type: MK64:PACKED_GFX + offset: 0x32C6 +d_course_luigi_raceway_packed_dl_BC88: + symbol: d_course_luigi_raceway_packed_dl_BC88 + type: MK64:PACKED_GFX + offset: 0x32DC +d_course_luigi_raceway_packed_dl_BD68: + symbol: d_course_luigi_raceway_packed_dl_BD68 + type: MK64:PACKED_GFX + offset: 0x332E +d_course_luigi_raceway_packed_dl_BDC8: + symbol: d_course_luigi_raceway_packed_dl_BDC8 + type: MK64:PACKED_GFX + offset: 0x333D +d_course_luigi_raceway_packed_dl_BE28: + symbol: d_course_luigi_raceway_packed_dl_BE28 + type: MK64:PACKED_GFX + offset: 0x334E +d_course_luigi_raceway_packed_dl_BE88: + symbol: d_course_luigi_raceway_packed_dl_BE88 + type: MK64:PACKED_GFX + offset: 0x335F +d_course_luigi_raceway_packed_dl_BF20: + symbol: d_course_luigi_raceway_packed_dl_BF20 + type: MK64:PACKED_GFX + offset: 0x337C +d_course_luigi_raceway_packed_dl_BFB8: + symbol: d_course_luigi_raceway_packed_dl_BFB8 + type: MK64:PACKED_GFX + offset: 0x3399 +d_course_luigi_raceway_packed_dl_C050: + symbol: d_course_luigi_raceway_packed_dl_C050 + type: MK64:PACKED_GFX + offset: 0x33B4 +d_course_luigi_raceway_packed_dl_C0F0: + symbol: d_course_luigi_raceway_packed_dl_C0F0 + type: MK64:PACKED_GFX + offset: 0x33D4 +d_course_luigi_raceway_packed_dl_C1A0: + symbol: d_course_luigi_raceway_packed_dl_C1A0 + type: MK64:PACKED_GFX + offset: 0x33FE +d_course_luigi_raceway_packed_dl_C200: + symbol: d_course_luigi_raceway_packed_dl_C200 + type: MK64:PACKED_GFX + offset: 0x340F +d_course_luigi_raceway_packed_dl_C260: + symbol: d_course_luigi_raceway_packed_dl_C260 + type: MK64:PACKED_GFX + offset: 0x3420 +d_course_luigi_raceway_packed_dl_C300: + symbol: d_course_luigi_raceway_packed_dl_C300 + type: MK64:PACKED_GFX + offset: 0x3442 +d_course_luigi_raceway_packed_dl_C3A8: + symbol: d_course_luigi_raceway_packed_dl_C3A8 + type: MK64:PACKED_GFX + offset: 0x3467 +d_course_luigi_raceway_packed_dl_C410: + symbol: d_course_luigi_raceway_packed_dl_C410 + type: MK64:PACKED_GFX + offset: 0x348C +d_course_luigi_raceway_packed_dl_C4C0: + symbol: d_course_luigi_raceway_packed_dl_C4C0 + type: MK64:PACKED_GFX + offset: 0x34CD +d_course_luigi_raceway_packed_dl_C540: + symbol: d_course_luigi_raceway_packed_dl_C540 + type: MK64:PACKED_GFX + offset: 0x34F2 +d_course_luigi_raceway_packed_dl_C5C0: + symbol: d_course_luigi_raceway_packed_dl_C5C0 + type: MK64:PACKED_GFX + offset: 0x3517 +d_course_luigi_raceway_packed_dl_C640: + symbol: d_course_luigi_raceway_packed_dl_C640 + type: MK64:PACKED_GFX + offset: 0x353C +d_course_luigi_raceway_packed_dl_C668: + symbol: d_course_luigi_raceway_packed_dl_C668 + type: MK64:PACKED_GFX + offset: 0x3549 +d_course_luigi_raceway_packed_dl_C730: + symbol: d_course_luigi_raceway_packed_dl_C730 + type: MK64:PACKED_GFX + offset: 0x3592 +d_course_luigi_raceway_packed_dl_C740: + symbol: d_course_luigi_raceway_packed_dl_C740 + type: MK64:PACKED_GFX + offset: 0x3596 diff --git a/yamls/us/models/tracks/luigi_raceway/luigi_raceway_vertices.yml b/yamls/us/models/tracks/luigi_raceway/luigi_raceway_vertices.yml new file mode 100644 index 000000000..cebeed051 --- /dev/null +++ b/yamls/us/models/tracks/luigi_raceway/luigi_raceway_vertices.yml @@ -0,0 +1,3093 @@ +:config: + segments: + - [0x0F, 0x8FE640] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_luigi_raceway_vertex_0x04000000: + symbol: d_course_luigi_raceway_vertex_0x04000000 + type: mk64:course_vtx + count: 8 + offset: 0x0 + +d_course_luigi_raceway_vertex_0x04000080: + symbol: d_course_luigi_raceway_vertex_0x04000080 + type: mk64:course_vtx + count: 8 + offset: 0x70 + +d_course_luigi_raceway_vertex_0x04000100: + symbol: d_course_luigi_raceway_vertex_0x04000100 + type: mk64:course_vtx + count: 22 + offset: 0xe0 + +d_course_luigi_raceway_vertex_0x04000200: + symbol: d_course_luigi_raceway_vertex_0x04000200 + type: mk64:course_vtx + count: 22 + offset: 0x1c0 + +d_course_luigi_raceway_vertex_0x04000300: + symbol: d_course_luigi_raceway_vertex_0x04000300 + type: mk64:course_vtx + count: 22 + offset: 0x2a0 + +d_course_luigi_raceway_vertex_0x04000400: + symbol: d_course_luigi_raceway_vertex_0x04000400 + type: mk64:course_vtx + count: 22 + offset: 0x380 + +d_course_luigi_raceway_vertex_0x04000500: + symbol: d_course_luigi_raceway_vertex_0x04000500 + type: mk64:course_vtx + count: 22 + offset: 0x460 + +d_course_luigi_raceway_vertex_0x04000600: + symbol: d_course_luigi_raceway_vertex_0x04000600 + type: mk64:course_vtx + count: 22 + offset: 0x540 + +d_course_luigi_raceway_vertex_0x04000700: + symbol: d_course_luigi_raceway_vertex_0x04000700 + type: mk64:course_vtx + count: 8 + offset: 0x620 + +d_course_luigi_raceway_vertex_0x04000780: + symbol: d_course_luigi_raceway_vertex_0x04000780 + type: mk64:course_vtx + count: 8 + offset: 0x690 + +d_course_luigi_raceway_vertex_0x04000800: + symbol: d_course_luigi_raceway_vertex_0x04000800 + type: mk64:course_vtx + count: 18 + offset: 0x700 + +d_course_luigi_raceway_vertex_0x040008C0: + symbol: d_course_luigi_raceway_vertex_0x040008C0 + type: mk64:course_vtx + count: 22 + offset: 0x7a8 + +d_course_luigi_raceway_vertex_0x040009C0: + symbol: d_course_luigi_raceway_vertex_0x040009C0 + type: mk64:course_vtx + count: 18 + offset: 0x888 + +d_course_luigi_raceway_vertex_0x04000A80: + symbol: d_course_luigi_raceway_vertex_0x04000A80 + type: mk64:course_vtx + count: 22 + offset: 0x930 + +d_course_luigi_raceway_vertex_0x04000B80: + symbol: d_course_luigi_raceway_vertex_0x04000B80 + type: mk64:course_vtx + count: 22 + offset: 0xa10 + +d_course_luigi_raceway_vertex_0x04000C80: + symbol: d_course_luigi_raceway_vertex_0x04000C80 + type: mk64:course_vtx + count: 22 + offset: 0xaf0 + +d_course_luigi_raceway_vertex_0x04000D80: + symbol: d_course_luigi_raceway_vertex_0x04000D80 + type: mk64:course_vtx + count: 22 + offset: 0xbd0 + +d_course_luigi_raceway_vertex_0x04000E80: + symbol: d_course_luigi_raceway_vertex_0x04000E80 + type: mk64:course_vtx + count: 8 + offset: 0xcb0 + +d_course_luigi_raceway_vertex_0x04000F00: + symbol: d_course_luigi_raceway_vertex_0x04000F00 + type: mk64:course_vtx + count: 22 + offset: 0xd20 + +d_course_luigi_raceway_vertex_0x04001000: + symbol: d_course_luigi_raceway_vertex_0x04001000 + type: mk64:course_vtx + count: 8 + offset: 0xe00 + +d_course_luigi_raceway_vertex_0x04001080: + symbol: d_course_luigi_raceway_vertex_0x04001080 + type: mk64:course_vtx + count: 18 + offset: 0xe70 + +d_course_luigi_raceway_vertex_0x04001140: + symbol: d_course_luigi_raceway_vertex_0x04001140 + type: mk64:course_vtx + count: 22 + offset: 0xf18 + +d_course_luigi_raceway_vertex_0x04001240: + symbol: d_course_luigi_raceway_vertex_0x04001240 + type: mk64:course_vtx + count: 22 + offset: 0xff8 + +d_course_luigi_raceway_vertex_0x04001340: + symbol: d_course_luigi_raceway_vertex_0x04001340 + type: mk64:course_vtx + count: 6 + offset: 0x10d8 + +d_course_luigi_raceway_vertex_0x040013A0: + symbol: d_course_luigi_raceway_vertex_0x040013A0 + type: mk64:course_vtx + count: 8 + offset: 0x112c + +d_course_luigi_raceway_vertex_0x04001420: + symbol: d_course_luigi_raceway_vertex_0x04001420 + type: mk64:course_vtx + count: 6 + offset: 0x119c + +d_course_luigi_raceway_vertex_0x04001480: + symbol: d_course_luigi_raceway_vertex_0x04001480 + type: mk64:course_vtx + count: 8 + offset: 0x11f0 + +d_course_luigi_raceway_vertex_0x04001500: + symbol: d_course_luigi_raceway_vertex_0x04001500 + type: mk64:course_vtx + count: 6 + offset: 0x1260 + +d_course_luigi_raceway_vertex_0x04001560: + symbol: d_course_luigi_raceway_vertex_0x04001560 + type: mk64:course_vtx + count: 8 + offset: 0x12b4 + +d_course_luigi_raceway_vertex_0x040015E0: + symbol: d_course_luigi_raceway_vertex_0x040015E0 + type: mk64:course_vtx + count: 6 + offset: 0x1324 + +d_course_luigi_raceway_vertex_0x04001640: + symbol: d_course_luigi_raceway_vertex_0x04001640 + type: mk64:course_vtx + count: 8 + offset: 0x1378 + +d_course_luigi_raceway_vertex_0x040016C0: + symbol: d_course_luigi_raceway_vertex_0x040016C0 + type: mk64:course_vtx + count: 6 + offset: 0x13e8 + +d_course_luigi_raceway_vertex_0x04001720: + symbol: d_course_luigi_raceway_vertex_0x04001720 + type: mk64:course_vtx + count: 8 + offset: 0x143c + +d_course_luigi_raceway_vertex_0x040017A0: + symbol: d_course_luigi_raceway_vertex_0x040017A0 + type: mk64:course_vtx + count: 6 + offset: 0x14ac + +d_course_luigi_raceway_vertex_0x04001800: + symbol: d_course_luigi_raceway_vertex_0x04001800 + type: mk64:course_vtx + count: 8 + offset: 0x1500 + +d_course_luigi_raceway_vertex_0x04001880: + symbol: d_course_luigi_raceway_vertex_0x04001880 + type: mk64:course_vtx + count: 6 + offset: 0x1570 + +d_course_luigi_raceway_vertex_0x040018E0: + symbol: d_course_luigi_raceway_vertex_0x040018E0 + type: mk64:course_vtx + count: 8 + offset: 0x15c4 + +d_course_luigi_raceway_vertex_0x04001960: + symbol: d_course_luigi_raceway_vertex_0x04001960 + type: mk64:course_vtx + count: 6 + offset: 0x1634 + +d_course_luigi_raceway_vertex_0x040019C0: + symbol: d_course_luigi_raceway_vertex_0x040019C0 + type: mk64:course_vtx + count: 8 + offset: 0x1688 + +d_course_luigi_raceway_vertex_0x04001A40: + symbol: d_course_luigi_raceway_vertex_0x04001A40 + type: mk64:course_vtx + count: 4 + offset: 0x16f8 + +d_course_luigi_raceway_vertex_0x04001A80: + symbol: d_course_luigi_raceway_vertex_0x04001A80 + type: mk64:course_vtx + count: 4 + offset: 0x1730 + +d_course_luigi_raceway_vertex_0x04001AC0: + symbol: d_course_luigi_raceway_vertex_0x04001AC0 + type: mk64:course_vtx + count: 6 + offset: 0x1768 + +d_course_luigi_raceway_vertex_0x04001B20: + symbol: d_course_luigi_raceway_vertex_0x04001B20 + type: mk64:course_vtx + count: 8 + offset: 0x17bc + +d_course_luigi_raceway_vertex_0x04001BA0: + symbol: d_course_luigi_raceway_vertex_0x04001BA0 + type: mk64:course_vtx + count: 6 + offset: 0x182c + +d_course_luigi_raceway_vertex_0x04001C00: + symbol: d_course_luigi_raceway_vertex_0x04001C00 + type: mk64:course_vtx + count: 8 + offset: 0x1880 + +d_course_luigi_raceway_vertex_0x04001C80: + symbol: d_course_luigi_raceway_vertex_0x04001C80 + type: mk64:course_vtx + count: 16 + offset: 0x18f0 + +d_course_luigi_raceway_vertex_0x04001D20: + symbol: d_course_luigi_raceway_vertex_0x04001D20 + type: mk64:course_vtx + count: 22 + offset: 0x197c + +d_course_luigi_raceway_vertex_0x04001E20: + symbol: d_course_luigi_raceway_vertex_0x04001E20 + type: mk64:course_vtx + count: 16 + offset: 0x1a5c + +d_course_luigi_raceway_vertex_0x04001EC0: + symbol: d_course_luigi_raceway_vertex_0x04001EC0 + type: mk64:course_vtx + count: 22 + offset: 0x1ae8 + +d_course_luigi_raceway_vertex_0x04001FC0: + symbol: d_course_luigi_raceway_vertex_0x04001FC0 + type: mk64:course_vtx + count: 16 + offset: 0x1bc8 + +d_course_luigi_raceway_vertex_0x04002060: + symbol: d_course_luigi_raceway_vertex_0x04002060 + type: mk64:course_vtx + count: 22 + offset: 0x1c54 + +d_course_luigi_raceway_vertex_0x04002160: + symbol: d_course_luigi_raceway_vertex_0x04002160 + type: mk64:course_vtx + count: 16 + offset: 0x1d34 + +d_course_luigi_raceway_vertex_0x04002200: + symbol: d_course_luigi_raceway_vertex_0x04002200 + type: mk64:course_vtx + count: 22 + offset: 0x1dc0 + +d_course_luigi_raceway_vertex_0x04002300: + symbol: d_course_luigi_raceway_vertex_0x04002300 + type: mk64:course_vtx + count: 6 + offset: 0x1ea0 + +d_course_luigi_raceway_vertex_0x04002360: + symbol: d_course_luigi_raceway_vertex_0x04002360 + type: mk64:course_vtx + count: 8 + offset: 0x1ef4 + +d_course_luigi_raceway_vertex_0x040023E0: + symbol: d_course_luigi_raceway_vertex_0x040023E0 + type: mk64:course_vtx + count: 16 + offset: 0x1f64 + +d_course_luigi_raceway_vertex_0x04002480: + symbol: d_course_luigi_raceway_vertex_0x04002480 + type: mk64:course_vtx + count: 22 + offset: 0x1ff0 + +d_course_luigi_raceway_vertex_0x04002580: + symbol: d_course_luigi_raceway_vertex_0x04002580 + type: mk64:course_vtx + count: 4 + offset: 0x20d0 + +d_course_luigi_raceway_vertex_0x040025C0: + symbol: d_course_luigi_raceway_vertex_0x040025C0 + type: mk64:course_vtx + count: 4 + offset: 0x2108 + +d_course_luigi_raceway_vertex_0x04002600: + symbol: d_course_luigi_raceway_vertex_0x04002600 + type: mk64:course_vtx + count: 6 + offset: 0x2140 + +d_course_luigi_raceway_vertex_0x04002660: + symbol: d_course_luigi_raceway_vertex_0x04002660 + type: mk64:course_vtx + count: 8 + offset: 0x2194 + +d_course_luigi_raceway_vertex_0x040026E0: + symbol: d_course_luigi_raceway_vertex_0x040026E0 + type: mk64:course_vtx + count: 16 + offset: 0x2204 + +d_course_luigi_raceway_vertex_0x04002780: + symbol: d_course_luigi_raceway_vertex_0x04002780 + type: mk64:course_vtx + count: 22 + offset: 0x2290 + +d_course_luigi_raceway_vertex_0x04002880: + symbol: d_course_luigi_raceway_vertex_0x04002880 + type: mk64:course_vtx + count: 16 + offset: 0x2370 + +d_course_luigi_raceway_vertex_0x04002920: + symbol: d_course_luigi_raceway_vertex_0x04002920 + type: mk64:course_vtx + count: 22 + offset: 0x23fc + +d_course_luigi_raceway_vertex_0x04002A20: + symbol: d_course_luigi_raceway_vertex_0x04002A20 + type: mk64:course_vtx + count: 6 + offset: 0x24dc + +d_course_luigi_raceway_vertex_0x04002A80: + symbol: d_course_luigi_raceway_vertex_0x04002A80 + type: mk64:course_vtx + count: 7 + offset: 0x2530 + +d_course_luigi_raceway_vertex_0x04002AF0: + symbol: d_course_luigi_raceway_vertex_0x04002AF0 + type: mk64:course_vtx + count: 6 + offset: 0x2592 + +d_course_luigi_raceway_vertex_0x04002B50: + symbol: d_course_luigi_raceway_vertex_0x04002B50 + type: mk64:course_vtx + count: 6 + offset: 0x25e6 + +d_course_luigi_raceway_vertex_0x04002BB0: + symbol: d_course_luigi_raceway_vertex_0x04002BB0 + type: mk64:course_vtx + count: 4 + offset: 0x263a + +d_course_luigi_raceway_vertex_0x04002BF0: + symbol: d_course_luigi_raceway_vertex_0x04002BF0 + type: mk64:course_vtx + count: 5 + offset: 0x2672 + +d_course_luigi_raceway_vertex_0x04002C40: + symbol: d_course_luigi_raceway_vertex_0x04002C40 + type: mk64:course_vtx + count: 8 + offset: 0x26b8 + +d_course_luigi_raceway_vertex_0x04002CC0: + symbol: d_course_luigi_raceway_vertex_0x04002CC0 + type: mk64:course_vtx + count: 6 + offset: 0x2728 + +d_course_luigi_raceway_vertex_0x04002D20: + symbol: d_course_luigi_raceway_vertex_0x04002D20 + type: mk64:course_vtx + count: 4 + offset: 0x277c + +d_course_luigi_raceway_vertex_0x04002D60: + symbol: d_course_luigi_raceway_vertex_0x04002D60 + type: mk64:course_vtx + count: 8 + offset: 0x27b4 + +d_course_luigi_raceway_vertex_0x04002DE0: + symbol: d_course_luigi_raceway_vertex_0x04002DE0 + type: mk64:course_vtx + count: 7 + offset: 0x2824 + +d_course_luigi_raceway_vertex_0x04002E50: + symbol: d_course_luigi_raceway_vertex_0x04002E50 + type: mk64:course_vtx + count: 9 + offset: 0x2886 + +d_course_luigi_raceway_vertex_0x04002EE0: + symbol: d_course_luigi_raceway_vertex_0x04002EE0 + type: mk64:course_vtx + count: 6 + offset: 0x2904 + +d_course_luigi_raceway_vertex_0x04002F40: + symbol: d_course_luigi_raceway_vertex_0x04002F40 + type: mk64:course_vtx + count: 7 + offset: 0x2958 + +d_course_luigi_raceway_vertex_0x04002FB0: + symbol: d_course_luigi_raceway_vertex_0x04002FB0 + type: mk64:course_vtx + count: 7 + offset: 0x29ba + +d_course_luigi_raceway_vertex_0x04003020: + symbol: d_course_luigi_raceway_vertex_0x04003020 + type: mk64:course_vtx + count: 4 + offset: 0x2a1c + +d_course_luigi_raceway_vertex_0x04003060: + symbol: d_course_luigi_raceway_vertex_0x04003060 + type: mk64:course_vtx + count: 9 + offset: 0x2a54 + +d_course_luigi_raceway_vertex_0x040030F0: + symbol: d_course_luigi_raceway_vertex_0x040030F0 + type: mk64:course_vtx + count: 4 + offset: 0x2ad2 + +d_course_luigi_raceway_vertex_0x04003130: + symbol: d_course_luigi_raceway_vertex_0x04003130 + type: mk64:course_vtx + count: 18 + offset: 0x2b0a + +d_course_luigi_raceway_vertex_0x040031F0: + symbol: d_course_luigi_raceway_vertex_0x040031F0 + type: mk64:course_vtx + count: 8 + offset: 0x2bb2 + +d_course_luigi_raceway_vertex_0x04003270: + symbol: d_course_luigi_raceway_vertex_0x04003270 + type: mk64:course_vtx + count: 6 + offset: 0x2c22 + +d_course_luigi_raceway_vertex_0x040032D0: + symbol: d_course_luigi_raceway_vertex_0x040032D0 + type: mk64:course_vtx + count: 6 + offset: 0x2c76 + +d_course_luigi_raceway_vertex_0x04003330: + symbol: d_course_luigi_raceway_vertex_0x04003330 + type: mk64:course_vtx + count: 21 + offset: 0x2cca + +d_course_luigi_raceway_vertex_0x04003420: + symbol: d_course_luigi_raceway_vertex_0x04003420 + type: mk64:course_vtx + count: 23 + offset: 0x2d9c + +d_course_luigi_raceway_vertex_0x04003530: + symbol: d_course_luigi_raceway_vertex_0x04003530 + type: mk64:course_vtx + count: 36 + offset: 0x2e8a + +d_course_luigi_raceway_vertex_0x040036B0: + symbol: d_course_luigi_raceway_vertex_0x040036B0 + type: mk64:course_vtx + count: 18 + offset: 0x2fda + +d_course_luigi_raceway_vertex_0x04003770: + symbol: d_course_luigi_raceway_vertex_0x04003770 + type: mk64:course_vtx + count: 24 + offset: 0x3082 + +d_course_luigi_raceway_vertex_0x04003890: + symbol: d_course_luigi_raceway_vertex_0x04003890 + type: mk64:course_vtx + count: 36 + offset: 0x317e + +d_course_luigi_raceway_vertex_0x04003A10: + symbol: d_course_luigi_raceway_vertex_0x04003A10 + type: mk64:course_vtx + count: 23 + offset: 0x32ce + +d_course_luigi_raceway_vertex_0x04003B20: + symbol: d_course_luigi_raceway_vertex_0x04003B20 + type: mk64:course_vtx + count: 36 + offset: 0x33bc + +d_course_luigi_raceway_vertex_0x04003CA0: + symbol: d_course_luigi_raceway_vertex_0x04003CA0 + type: mk64:course_vtx + count: 32 + offset: 0x350c + +d_course_luigi_raceway_vertex_0x04003DE0: + symbol: d_course_luigi_raceway_vertex_0x04003DE0 + type: mk64:course_vtx + count: 49 + offset: 0x3624 + +d_course_luigi_raceway_vertex_0x04003FD0: + symbol: d_course_luigi_raceway_vertex_0x04003FD0 + type: mk64:course_vtx + count: 48 + offset: 0x37d6 + +d_course_luigi_raceway_vertex_0x040041B0: + symbol: d_course_luigi_raceway_vertex_0x040041B0 + type: mk64:course_vtx + count: 49 + offset: 0x397a + +d_course_luigi_raceway_vertex_0x040043A0: + symbol: d_course_luigi_raceway_vertex_0x040043A0 + type: mk64:course_vtx + count: 24 + offset: 0x3b2c + +d_course_luigi_raceway_vertex_0x040044C0: + symbol: d_course_luigi_raceway_vertex_0x040044C0 + type: mk64:course_vtx + count: 3 + offset: 0x3c28 + +d_course_luigi_raceway_vertex_0x040044F0: + symbol: d_course_luigi_raceway_vertex_0x040044F0 + type: mk64:course_vtx + count: 18 + offset: 0x3c52 + +d_course_luigi_raceway_vertex_0x040045B0: + symbol: d_course_luigi_raceway_vertex_0x040045B0 + type: mk64:course_vtx + count: 36 + offset: 0x3cfa + +d_course_luigi_raceway_vertex_0x04004730: + symbol: d_course_luigi_raceway_vertex_0x04004730 + type: mk64:course_vtx + count: 36 + offset: 0x3e4a + +d_course_luigi_raceway_vertex_0x040048B0: + symbol: d_course_luigi_raceway_vertex_0x040048B0 + type: mk64:course_vtx + count: 36 + offset: 0x3f9a + +d_course_luigi_raceway_vertex_0x04004A30: + symbol: d_course_luigi_raceway_vertex_0x04004A30 + type: mk64:course_vtx + count: 36 + offset: 0x40ea + +d_course_luigi_raceway_vertex_0x04004BB0: + symbol: d_course_luigi_raceway_vertex_0x04004BB0 + type: mk64:course_vtx + count: 33 + offset: 0x423a + +d_course_luigi_raceway_vertex_0x04004D00: + symbol: d_course_luigi_raceway_vertex_0x04004D00 + type: mk64:course_vtx + count: 36 + offset: 0x4360 + +d_course_luigi_raceway_vertex_0x04004E80: + symbol: d_course_luigi_raceway_vertex_0x04004E80 + type: mk64:course_vtx + count: 36 + offset: 0x44b0 + +d_course_luigi_raceway_vertex_0x04005000: + symbol: d_course_luigi_raceway_vertex_0x04005000 + type: mk64:course_vtx + count: 36 + offset: 0x4600 + +d_course_luigi_raceway_vertex_0x04005180: + symbol: d_course_luigi_raceway_vertex_0x04005180 + type: mk64:course_vtx + count: 36 + offset: 0x4750 + +d_course_luigi_raceway_vertex_0x04005300: + symbol: d_course_luigi_raceway_vertex_0x04005300 + type: mk64:course_vtx + count: 21 + offset: 0x48a0 + +d_course_luigi_raceway_vertex_0x040053F0: + symbol: d_course_luigi_raceway_vertex_0x040053F0 + type: mk64:course_vtx + count: 36 + offset: 0x4972 + +d_course_luigi_raceway_vertex_0x04005570: + symbol: d_course_luigi_raceway_vertex_0x04005570 + type: mk64:course_vtx + count: 36 + offset: 0x4ac2 + +d_course_luigi_raceway_vertex_0x040056F0: + symbol: d_course_luigi_raceway_vertex_0x040056F0 + type: mk64:course_vtx + count: 36 + offset: 0x4c12 + +d_course_luigi_raceway_vertex_0x04005870: + symbol: d_course_luigi_raceway_vertex_0x04005870 + type: mk64:course_vtx + count: 36 + offset: 0x4d62 + +d_course_luigi_raceway_vertex_0x040059F0: + symbol: d_course_luigi_raceway_vertex_0x040059F0 + type: mk64:course_vtx + count: 36 + offset: 0x4eb2 + +d_course_luigi_raceway_vertex_0x04005B70: + symbol: d_course_luigi_raceway_vertex_0x04005B70 + type: mk64:course_vtx + count: 24 + offset: 0x5002 + +d_course_luigi_raceway_vertex_0x04005C90: + symbol: d_course_luigi_raceway_vertex_0x04005C90 + type: mk64:course_vtx + count: 18 + offset: 0x50fe + +d_course_luigi_raceway_vertex_0x04005D50: + symbol: d_course_luigi_raceway_vertex_0x04005D50 + type: mk64:course_vtx + count: 18 + offset: 0x51a6 + +d_course_luigi_raceway_vertex_0x04005E10: + symbol: d_course_luigi_raceway_vertex_0x04005E10 + type: mk64:course_vtx + count: 36 + offset: 0x524e + +d_course_luigi_raceway_vertex_0x04005F90: + symbol: d_course_luigi_raceway_vertex_0x04005F90 + type: mk64:course_vtx + count: 36 + offset: 0x539e + +d_course_luigi_raceway_vertex_0x04006110: + symbol: d_course_luigi_raceway_vertex_0x04006110 + type: mk64:course_vtx + count: 36 + offset: 0x54ee + +d_course_luigi_raceway_vertex_0x04006290: + symbol: d_course_luigi_raceway_vertex_0x04006290 + type: mk64:course_vtx + count: 36 + offset: 0x563e + +d_course_luigi_raceway_vertex_0x04006410: + symbol: d_course_luigi_raceway_vertex_0x04006410 + type: mk64:course_vtx + count: 36 + offset: 0x578e + +d_course_luigi_raceway_vertex_0x04006590: + symbol: d_course_luigi_raceway_vertex_0x04006590 + type: mk64:course_vtx + count: 36 + offset: 0x58de + +d_course_luigi_raceway_vertex_0x04006710: + symbol: d_course_luigi_raceway_vertex_0x04006710 + type: mk64:course_vtx + count: 36 + offset: 0x5a2e + +d_course_luigi_raceway_vertex_0x04006890: + symbol: d_course_luigi_raceway_vertex_0x04006890 + type: mk64:course_vtx + count: 48 + offset: 0x5b7e + +d_course_luigi_raceway_vertex_0x04006A70: + symbol: d_course_luigi_raceway_vertex_0x04006A70 + type: mk64:course_vtx + count: 37 + offset: 0x5d22 + +d_course_luigi_raceway_vertex_0x04006C00: + symbol: d_course_luigi_raceway_vertex_0x04006C00 + type: mk64:course_vtx + count: 37 + offset: 0x5e80 + +d_course_luigi_raceway_vertex_0x04006D90: + symbol: d_course_luigi_raceway_vertex_0x04006D90 + type: mk64:course_vtx + count: 49 + offset: 0x5fde + +d_course_luigi_raceway_vertex_0x04006F80: + symbol: d_course_luigi_raceway_vertex_0x04006F80 + type: mk64:course_vtx + count: 49 + offset: 0x6190 + +d_course_luigi_raceway_vertex_0x04007170: + symbol: d_course_luigi_raceway_vertex_0x04007170 + type: mk64:course_vtx + count: 9 + offset: 0x6342 + +d_course_luigi_raceway_vertex_0x04007200: + symbol: d_course_luigi_raceway_vertex_0x04007200 + type: mk64:course_vtx + count: 39 + offset: 0x63c0 + +d_course_luigi_raceway_vertex_0x040073B0: + symbol: d_course_luigi_raceway_vertex_0x040073B0 + type: mk64:course_vtx + count: 23 + offset: 0x653a + +d_course_luigi_raceway_vertex_0x040074C0: + symbol: d_course_luigi_raceway_vertex_0x040074C0 + type: mk64:course_vtx + count: 35 + offset: 0x6628 + +d_course_luigi_raceway_vertex_0x04007630: + symbol: d_course_luigi_raceway_vertex_0x04007630 + type: mk64:course_vtx + count: 36 + offset: 0x676a + +d_course_luigi_raceway_vertex_0x040077B0: + symbol: d_course_luigi_raceway_vertex_0x040077B0 + type: mk64:course_vtx + count: 34 + offset: 0x68ba + +d_course_luigi_raceway_vertex_0x04007910: + symbol: d_course_luigi_raceway_vertex_0x04007910 + type: mk64:course_vtx + count: 36 + offset: 0x69ee + +d_course_luigi_raceway_vertex_0x04007A90: + symbol: d_course_luigi_raceway_vertex_0x04007A90 + type: mk64:course_vtx + count: 39 + offset: 0x6b3e + +d_course_luigi_raceway_vertex_0x04007C40: + symbol: d_course_luigi_raceway_vertex_0x04007C40 + type: mk64:course_vtx + count: 48 + offset: 0x6cb8 + +d_course_luigi_raceway_vertex_0x04007E20: + symbol: d_course_luigi_raceway_vertex_0x04007E20 + type: mk64:course_vtx + count: 3 + offset: 0x6e5c + +d_course_luigi_raceway_vertex_0x04007E50: + symbol: d_course_luigi_raceway_vertex_0x04007E50 + type: mk64:course_vtx + count: 36 + offset: 0x6e86 + +d_course_luigi_raceway_vertex_0x04007FD0: + symbol: d_course_luigi_raceway_vertex_0x04007FD0 + type: mk64:course_vtx + count: 17 + offset: 0x6fd6 + +d_course_luigi_raceway_vertex_0x04008080: + symbol: d_course_luigi_raceway_vertex_0x04008080 + type: mk64:course_vtx + count: 48 + offset: 0x7070 + +d_course_luigi_raceway_vertex_0x04008260: + symbol: d_course_luigi_raceway_vertex_0x04008260 + type: mk64:course_vtx + count: 6 + offset: 0x7214 + +d_course_luigi_raceway_vertex_0x040082C0: + symbol: d_course_luigi_raceway_vertex_0x040082C0 + type: mk64:course_vtx + count: 19 + offset: 0x7268 + +d_course_luigi_raceway_vertex_0x04008390: + symbol: d_course_luigi_raceway_vertex_0x04008390 + type: mk64:course_vtx + count: 49 + offset: 0x731e + +d_course_luigi_raceway_vertex_0x04008580: + symbol: d_course_luigi_raceway_vertex_0x04008580 + type: mk64:course_vtx + count: 20 + offset: 0x74d0 + +d_course_luigi_raceway_vertex_0x04008660: + symbol: d_course_luigi_raceway_vertex_0x04008660 + type: mk64:course_vtx + count: 24 + offset: 0x7594 + +d_course_luigi_raceway_vertex_0x04008780: + symbol: d_course_luigi_raceway_vertex_0x04008780 + type: mk64:course_vtx + count: 36 + offset: 0x7690 + +d_course_luigi_raceway_vertex_0x04008900: + symbol: d_course_luigi_raceway_vertex_0x04008900 + type: mk64:course_vtx + count: 50 + offset: 0x77e0 + +d_course_luigi_raceway_vertex_0x04008B00: + symbol: d_course_luigi_raceway_vertex_0x04008B00 + type: mk64:course_vtx + count: 50 + offset: 0x79a0 + +d_course_luigi_raceway_vertex_0x04008D00: + symbol: d_course_luigi_raceway_vertex_0x04008D00 + type: mk64:course_vtx + count: 22 + offset: 0x7b60 + +d_course_luigi_raceway_vertex_0x04008E00: + symbol: d_course_luigi_raceway_vertex_0x04008E00 + type: mk64:course_vtx + count: 35 + offset: 0x7c40 + +d_course_luigi_raceway_vertex_0x04008F70: + symbol: d_course_luigi_raceway_vertex_0x04008F70 + type: mk64:course_vtx + count: 50 + offset: 0x7d82 + +d_course_luigi_raceway_vertex_0x04009170: + symbol: d_course_luigi_raceway_vertex_0x04009170 + type: mk64:course_vtx + count: 50 + offset: 0x7f42 + +d_course_luigi_raceway_vertex_0x04009370: + symbol: d_course_luigi_raceway_vertex_0x04009370 + type: mk64:course_vtx + count: 49 + offset: 0x8102 + +d_course_luigi_raceway_vertex_0x04009560: + symbol: d_course_luigi_raceway_vertex_0x04009560 + type: mk64:course_vtx + count: 33 + offset: 0x82b4 + +d_course_luigi_raceway_vertex_0x040096B0: + symbol: d_course_luigi_raceway_vertex_0x040096B0 + type: mk64:course_vtx + count: 50 + offset: 0x83da + +d_course_luigi_raceway_vertex_0x040098B0: + symbol: d_course_luigi_raceway_vertex_0x040098B0 + type: mk64:course_vtx + count: 50 + offset: 0x859a + +d_course_luigi_raceway_vertex_0x04009AB0: + symbol: d_course_luigi_raceway_vertex_0x04009AB0 + type: mk64:course_vtx + count: 49 + offset: 0x875a + +d_course_luigi_raceway_vertex_0x04009CA0: + symbol: d_course_luigi_raceway_vertex_0x04009CA0 + type: mk64:course_vtx + count: 48 + offset: 0x890c + +d_course_luigi_raceway_vertex_0x04009E80: + symbol: d_course_luigi_raceway_vertex_0x04009E80 + type: mk64:course_vtx + count: 8 + offset: 0x8ab0 + +d_course_luigi_raceway_vertex_0x04009F00: + symbol: d_course_luigi_raceway_vertex_0x04009F00 + type: mk64:course_vtx + count: 17 + offset: 0x8b20 + +d_course_luigi_raceway_vertex_0x04009FB0: + symbol: d_course_luigi_raceway_vertex_0x04009FB0 + type: mk64:course_vtx + count: 50 + offset: 0x8bba + +d_course_luigi_raceway_vertex_0x0400A1B0: + symbol: d_course_luigi_raceway_vertex_0x0400A1B0 + type: mk64:course_vtx + count: 50 + offset: 0x8d7a + +d_course_luigi_raceway_vertex_0x0400A3B0: + symbol: d_course_luigi_raceway_vertex_0x0400A3B0 + type: mk64:course_vtx + count: 49 + offset: 0x8f3a + +d_course_luigi_raceway_vertex_0x0400A5A0: + symbol: d_course_luigi_raceway_vertex_0x0400A5A0 + type: mk64:course_vtx + count: 49 + offset: 0x90ec + +d_course_luigi_raceway_vertex_0x0400A790: + symbol: d_course_luigi_raceway_vertex_0x0400A790 + type: mk64:course_vtx + count: 32 + offset: 0x929e + +d_course_luigi_raceway_vertex_0x0400A8D0: + symbol: d_course_luigi_raceway_vertex_0x0400A8D0 + type: mk64:course_vtx + count: 19 + offset: 0x93b6 + +d_course_luigi_raceway_vertex_0x0400A9A0: + symbol: d_course_luigi_raceway_vertex_0x0400A9A0 + type: mk64:course_vtx + count: 38 + offset: 0x946c + +d_course_luigi_raceway_vertex_0x0400AB40: + symbol: d_course_luigi_raceway_vertex_0x0400AB40 + type: mk64:course_vtx + count: 6 + offset: 0x95d8 + +d_course_luigi_raceway_vertex_0x0400ABA0: + symbol: d_course_luigi_raceway_vertex_0x0400ABA0 + type: mk64:course_vtx + count: 18 + offset: 0x962c + +d_course_luigi_raceway_vertex_0x0400AC60: + symbol: d_course_luigi_raceway_vertex_0x0400AC60 + type: mk64:course_vtx + count: 18 + offset: 0x96d4 + +d_course_luigi_raceway_vertex_0x0400AD20: + symbol: d_course_luigi_raceway_vertex_0x0400AD20 + type: mk64:course_vtx + count: 32 + offset: 0x977c + +d_course_luigi_raceway_vertex_0x0400AE60: + symbol: d_course_luigi_raceway_vertex_0x0400AE60 + type: mk64:course_vtx + count: 21 + offset: 0x9894 + +d_course_luigi_raceway_vertex_0x0400AF50: + symbol: d_course_luigi_raceway_vertex_0x0400AF50 + type: mk64:course_vtx + count: 8 + offset: 0x9966 + +d_course_luigi_raceway_vertex_0x0400AFD0: + symbol: d_course_luigi_raceway_vertex_0x0400AFD0 + type: mk64:course_vtx + count: 18 + offset: 0x99d6 + +d_course_luigi_raceway_vertex_0x0400B090: + symbol: d_course_luigi_raceway_vertex_0x0400B090 + type: mk64:course_vtx + count: 18 + offset: 0x9a7e + +d_course_luigi_raceway_vertex_0x0400B150: + symbol: d_course_luigi_raceway_vertex_0x0400B150 + type: mk64:course_vtx + count: 21 + offset: 0x9b26 + +d_course_luigi_raceway_vertex_0x0400B240: + symbol: d_course_luigi_raceway_vertex_0x0400B240 + type: mk64:course_vtx + count: 8 + offset: 0x9bf8 + +d_course_luigi_raceway_vertex_0x0400B2C0: + symbol: d_course_luigi_raceway_vertex_0x0400B2C0 + type: mk64:course_vtx + count: 38 + offset: 0x9c68 + +d_course_luigi_raceway_vertex_0x0400B460: + symbol: d_course_luigi_raceway_vertex_0x0400B460 + type: mk64:course_vtx + count: 50 + offset: 0x9dd4 + +d_course_luigi_raceway_vertex_0x0400B660: + symbol: d_course_luigi_raceway_vertex_0x0400B660 + type: mk64:course_vtx + count: 17 + offset: 0x9f94 + +d_course_luigi_raceway_vertex_0x0400B710: + symbol: d_course_luigi_raceway_vertex_0x0400B710 + type: mk64:course_vtx + count: 3 + offset: 0xa02e + +d_course_luigi_raceway_vertex_0x0400B740: + symbol: d_course_luigi_raceway_vertex_0x0400B740 + type: mk64:course_vtx + count: 50 + offset: 0xa058 + +d_course_luigi_raceway_vertex_0x0400B940: + symbol: d_course_luigi_raceway_vertex_0x0400B940 + type: mk64:course_vtx + count: 20 + offset: 0xa218 + +d_course_luigi_raceway_vertex_0x0400BA20: + symbol: d_course_luigi_raceway_vertex_0x0400BA20 + type: mk64:course_vtx + count: 4 + offset: 0xa2dc + +d_course_luigi_raceway_vertex_0x0400BA60: + symbol: d_course_luigi_raceway_vertex_0x0400BA60 + type: mk64:course_vtx + count: 4 + offset: 0xa314 + +d_course_luigi_raceway_vertex_0x0400BAA0: + symbol: d_course_luigi_raceway_vertex_0x0400BAA0 + type: mk64:course_vtx + count: 4 + offset: 0xa34c + +d_course_luigi_raceway_vertex_0x0400BAE0: + symbol: d_course_luigi_raceway_vertex_0x0400BAE0 + type: mk64:course_vtx + count: 4 + offset: 0xa384 + +d_course_luigi_raceway_vertex_0x0400BB20: + symbol: d_course_luigi_raceway_vertex_0x0400BB20 + type: mk64:course_vtx + count: 4 + offset: 0xa3bc + +d_course_luigi_raceway_vertex_0x0400BB60: + symbol: d_course_luigi_raceway_vertex_0x0400BB60 + type: mk64:course_vtx + count: 4 + offset: 0xa3f4 + +d_course_luigi_raceway_vertex_0x0400BBA0: + symbol: d_course_luigi_raceway_vertex_0x0400BBA0 + type: mk64:course_vtx + count: 4 + offset: 0xa42c + +d_course_luigi_raceway_vertex_0x0400BBE0: + symbol: d_course_luigi_raceway_vertex_0x0400BBE0 + type: mk64:course_vtx + count: 22 + offset: 0xa464 + +d_course_luigi_raceway_vertex_0x0400BCE0: + symbol: d_course_luigi_raceway_vertex_0x0400BCE0 + type: mk64:course_vtx + count: 22 + offset: 0xa544 + +d_course_luigi_raceway_vertex_0x0400BDE0: + symbol: d_course_luigi_raceway_vertex_0x0400BDE0 + type: mk64:course_vtx + count: 22 + offset: 0xa624 + +d_course_luigi_raceway_vertex_0x0400BEE0: + symbol: d_course_luigi_raceway_vertex_0x0400BEE0 + type: mk64:course_vtx + count: 22 + offset: 0xa704 + +d_course_luigi_raceway_vertex_0x0400BFE0: + symbol: d_course_luigi_raceway_vertex_0x0400BFE0 + type: mk64:course_vtx + count: 18 + offset: 0xa7e4 + +d_course_luigi_raceway_vertex_0x0400C0A0: + symbol: d_course_luigi_raceway_vertex_0x0400C0A0 + type: mk64:course_vtx + count: 23 + offset: 0xa88c + +d_course_luigi_raceway_vertex_0x0400C1B0: + symbol: d_course_luigi_raceway_vertex_0x0400C1B0 + type: mk64:course_vtx + count: 4 + offset: 0xa97a + +d_course_luigi_raceway_vertex_0x0400C1F0: + symbol: d_course_luigi_raceway_vertex_0x0400C1F0 + type: mk64:course_vtx + count: 4 + offset: 0xa9b2 + +d_course_luigi_raceway_vertex_0x0400C230: + symbol: d_course_luigi_raceway_vertex_0x0400C230 + type: mk64:course_vtx + count: 4 + offset: 0xa9ea + +d_course_luigi_raceway_vertex_0x0400C270: + symbol: d_course_luigi_raceway_vertex_0x0400C270 + type: mk64:course_vtx + count: 4 + offset: 0xaa22 + +d_course_luigi_raceway_vertex_0x0400C2B0: + symbol: d_course_luigi_raceway_vertex_0x0400C2B0 + type: mk64:course_vtx + count: 4 + offset: 0xaa5a + +d_course_luigi_raceway_vertex_0x0400C2F0: + symbol: d_course_luigi_raceway_vertex_0x0400C2F0 + type: mk64:course_vtx + count: 4 + offset: 0xaa92 + +d_course_luigi_raceway_vertex_0x0400C330: + symbol: d_course_luigi_raceway_vertex_0x0400C330 + type: mk64:course_vtx + count: 22 + offset: 0xaaca + +d_course_luigi_raceway_vertex_0x0400C430: + symbol: d_course_luigi_raceway_vertex_0x0400C430 + type: mk64:course_vtx + count: 8 + offset: 0xabaa + +d_course_luigi_raceway_vertex_0x0400C4B0: + symbol: d_course_luigi_raceway_vertex_0x0400C4B0 + type: mk64:course_vtx + count: 24 + offset: 0xac1a + +d_course_luigi_raceway_vertex_0x0400C5D0: + symbol: d_course_luigi_raceway_vertex_0x0400C5D0 + type: mk64:course_vtx + count: 4 + offset: 0xad16 + +d_course_luigi_raceway_vertex_0x0400C610: + symbol: d_course_luigi_raceway_vertex_0x0400C610 + type: mk64:course_vtx + count: 4 + offset: 0xad4e + +d_course_luigi_raceway_vertex_0x0400C650: + symbol: d_course_luigi_raceway_vertex_0x0400C650 + type: mk64:course_vtx + count: 4 + offset: 0xad86 + +d_course_luigi_raceway_vertex_0x0400C690: + symbol: d_course_luigi_raceway_vertex_0x0400C690 + type: mk64:course_vtx + count: 4 + offset: 0xadbe + +d_course_luigi_raceway_vertex_0x0400C6D0: + symbol: d_course_luigi_raceway_vertex_0x0400C6D0 + type: mk64:course_vtx + count: 22 + offset: 0xadf6 + +d_course_luigi_raceway_vertex_0x0400C7D0: + symbol: d_course_luigi_raceway_vertex_0x0400C7D0 + type: mk64:course_vtx + count: 8 + offset: 0xaed6 + +d_course_luigi_raceway_vertex_0x0400C850: + symbol: d_course_luigi_raceway_vertex_0x0400C850 + type: mk64:course_vtx + count: 24 + offset: 0xaf46 + +d_course_luigi_raceway_vertex_0x0400C970: + symbol: d_course_luigi_raceway_vertex_0x0400C970 + type: mk64:course_vtx + count: 4 + offset: 0xb042 + +d_course_luigi_raceway_vertex_0x0400C9B0: + symbol: d_course_luigi_raceway_vertex_0x0400C9B0 + type: mk64:course_vtx + count: 4 + offset: 0xb07a + +d_course_luigi_raceway_vertex_0x0400C9F0: + symbol: d_course_luigi_raceway_vertex_0x0400C9F0 + type: mk64:course_vtx + count: 22 + offset: 0xb0b2 + +d_course_luigi_raceway_vertex_0x0400CAF0: + symbol: d_course_luigi_raceway_vertex_0x0400CAF0 + type: mk64:course_vtx + count: 18 + offset: 0xb192 + +d_course_luigi_raceway_vertex_0x0400CBB0: + symbol: d_course_luigi_raceway_vertex_0x0400CBB0 + type: mk64:course_vtx + count: 23 + offset: 0xb23a + +d_course_luigi_raceway_vertex_0x0400CCC0: + symbol: d_course_luigi_raceway_vertex_0x0400CCC0 + type: mk64:course_vtx + count: 22 + offset: 0xb328 + +d_course_luigi_raceway_vertex_0x0400CDC0: + symbol: d_course_luigi_raceway_vertex_0x0400CDC0 + type: mk64:course_vtx + count: 22 + offset: 0xb408 + +d_course_luigi_raceway_vertex_0x0400CEC0: + symbol: d_course_luigi_raceway_vertex_0x0400CEC0 + type: mk64:course_vtx + count: 22 + offset: 0xb4e8 + +d_course_luigi_raceway_vertex_0x0400CFC0: + symbol: d_course_luigi_raceway_vertex_0x0400CFC0 + type: mk64:course_vtx + count: 22 + offset: 0xb5c8 + +d_course_luigi_raceway_vertex_0x0400D0C0: + symbol: d_course_luigi_raceway_vertex_0x0400D0C0 + type: mk64:course_vtx + count: 22 + offset: 0xb6a8 + +d_course_luigi_raceway_vertex_0x0400D1C0: + symbol: d_course_luigi_raceway_vertex_0x0400D1C0 + type: mk64:course_vtx + count: 22 + offset: 0xb788 + +d_course_luigi_raceway_vertex_0x0400D2C0: + symbol: d_course_luigi_raceway_vertex_0x0400D2C0 + type: mk64:course_vtx + count: 18 + offset: 0xb868 + +d_course_luigi_raceway_vertex_0x0400D380: + symbol: d_course_luigi_raceway_vertex_0x0400D380 + type: mk64:course_vtx + count: 18 + offset: 0xb910 + +d_course_luigi_raceway_vertex_0x0400D440: + symbol: d_course_luigi_raceway_vertex_0x0400D440 + type: mk64:course_vtx + count: 18 + offset: 0xb9b8 + +d_course_luigi_raceway_vertex_0x0400D500: + symbol: d_course_luigi_raceway_vertex_0x0400D500 + type: mk64:course_vtx + count: 18 + offset: 0xba60 + +d_course_luigi_raceway_vertex_0x0400D5C0: + symbol: d_course_luigi_raceway_vertex_0x0400D5C0 + type: mk64:course_vtx + count: 18 + offset: 0xbb08 + +d_course_luigi_raceway_vertex_0x0400D680: + symbol: d_course_luigi_raceway_vertex_0x0400D680 + type: mk64:course_vtx + count: 18 + offset: 0xbbb0 + +d_course_luigi_raceway_vertex_0x0400D740: + symbol: d_course_luigi_raceway_vertex_0x0400D740 + type: mk64:course_vtx + count: 22 + offset: 0xbc58 + +d_course_luigi_raceway_vertex_0x0400D840: + symbol: d_course_luigi_raceway_vertex_0x0400D840 + type: mk64:course_vtx + count: 22 + offset: 0xbd38 + +d_course_luigi_raceway_vertex_0x0400D940: + symbol: d_course_luigi_raceway_vertex_0x0400D940 + type: mk64:course_vtx + count: 22 + offset: 0xbe18 + +d_course_luigi_raceway_vertex_0x0400DA40: + symbol: d_course_luigi_raceway_vertex_0x0400DA40 + type: mk64:course_vtx + count: 4 + offset: 0xbef8 + +d_course_luigi_raceway_vertex_0x0400DA80: + symbol: d_course_luigi_raceway_vertex_0x0400DA80 + type: mk64:course_vtx + count: 4 + offset: 0xbf30 + +d_course_luigi_raceway_vertex_0x0400DAC0: + symbol: d_course_luigi_raceway_vertex_0x0400DAC0 + type: mk64:course_vtx + count: 4 + offset: 0xbf68 + +d_course_luigi_raceway_vertex_0x0400DB00: + symbol: d_course_luigi_raceway_vertex_0x0400DB00 + type: mk64:course_vtx + count: 4 + offset: 0xbfa0 + +d_course_luigi_raceway_vertex_0x0400DB40: + symbol: d_course_luigi_raceway_vertex_0x0400DB40 + type: mk64:course_vtx + count: 22 + offset: 0xbfd8 + +d_course_luigi_raceway_vertex_0x0400DC40: + symbol: d_course_luigi_raceway_vertex_0x0400DC40 + type: mk64:course_vtx + count: 8 + offset: 0xc0b8 + +d_course_luigi_raceway_vertex_0x0400DCC0: + symbol: d_course_luigi_raceway_vertex_0x0400DCC0 + type: mk64:course_vtx + count: 24 + offset: 0xc128 + +d_course_luigi_raceway_vertex_0x0400DDE0: + symbol: d_course_luigi_raceway_vertex_0x0400DDE0 + type: mk64:course_vtx + count: 4 + offset: 0xc224 + +d_course_luigi_raceway_vertex_0x0400DE20: + symbol: d_course_luigi_raceway_vertex_0x0400DE20 + type: mk64:course_vtx + count: 4 + offset: 0xc25c + +d_course_luigi_raceway_vertex_0x0400DE60: + symbol: d_course_luigi_raceway_vertex_0x0400DE60 + type: mk64:course_vtx + count: 4 + offset: 0xc294 + +d_course_luigi_raceway_vertex_0x0400DEA0: + symbol: d_course_luigi_raceway_vertex_0x0400DEA0 + type: mk64:course_vtx + count: 4 + offset: 0xc2cc + +d_course_luigi_raceway_vertex_0x0400DEE0: + symbol: d_course_luigi_raceway_vertex_0x0400DEE0 + type: mk64:course_vtx + count: 22 + offset: 0xc304 + +d_course_luigi_raceway_vertex_0x0400DFE0: + symbol: d_course_luigi_raceway_vertex_0x0400DFE0 + type: mk64:course_vtx + count: 8 + offset: 0xc3e4 + +d_course_luigi_raceway_vertex_0x0400E060: + symbol: d_course_luigi_raceway_vertex_0x0400E060 + type: mk64:course_vtx + count: 24 + offset: 0xc454 + +d_course_luigi_raceway_vertex_0x0400E180: + symbol: d_course_luigi_raceway_vertex_0x0400E180 + type: mk64:course_vtx + count: 4 + offset: 0xc550 + +d_course_luigi_raceway_vertex_0x0400E1C0: + symbol: d_course_luigi_raceway_vertex_0x0400E1C0 + type: mk64:course_vtx + count: 4 + offset: 0xc588 + +d_course_luigi_raceway_vertex_0x0400E200: + symbol: d_course_luigi_raceway_vertex_0x0400E200 + type: mk64:course_vtx + count: 22 + offset: 0xc5c0 + +d_course_luigi_raceway_vertex_0x0400E300: + symbol: d_course_luigi_raceway_vertex_0x0400E300 + type: mk64:course_vtx + count: 8 + offset: 0xc6a0 + +d_course_luigi_raceway_vertex_0x0400E380: + symbol: d_course_luigi_raceway_vertex_0x0400E380 + type: mk64:course_vtx + count: 24 + offset: 0xc710 + +d_course_luigi_raceway_vertex_0x0400E4A0: + symbol: d_course_luigi_raceway_vertex_0x0400E4A0 + type: mk64:course_vtx + count: 4 + offset: 0xc80c + +d_course_luigi_raceway_vertex_0x0400E4E0: + symbol: d_course_luigi_raceway_vertex_0x0400E4E0 + type: mk64:course_vtx + count: 4 + offset: 0xc844 + +d_course_luigi_raceway_vertex_0x0400E520: + symbol: d_course_luigi_raceway_vertex_0x0400E520 + type: mk64:course_vtx + count: 22 + offset: 0xc87c + +d_course_luigi_raceway_vertex_0x0400E620: + symbol: d_course_luigi_raceway_vertex_0x0400E620 + type: mk64:course_vtx + count: 22 + offset: 0xc95c + +d_course_luigi_raceway_vertex_0x0400E720: + symbol: d_course_luigi_raceway_vertex_0x0400E720 + type: mk64:course_vtx + count: 22 + offset: 0xca3c + +d_course_luigi_raceway_vertex_0x0400E820: + symbol: d_course_luigi_raceway_vertex_0x0400E820 + type: mk64:course_vtx + count: 32 + offset: 0xcb1c + +d_course_luigi_raceway_vertex_0x0400E960: + symbol: d_course_luigi_raceway_vertex_0x0400E960 + type: mk64:course_vtx + count: 24 + offset: 0xcc34 + +d_course_luigi_raceway_vertex_0x0400EA80: + symbol: d_course_luigi_raceway_vertex_0x0400EA80 + type: mk64:course_vtx + count: 33 + offset: 0xcd30 + +d_course_luigi_raceway_vertex_0x0400EBD0: + symbol: d_course_luigi_raceway_vertex_0x0400EBD0 + type: mk64:course_vtx + count: 16 + offset: 0xce56 + +d_course_luigi_raceway_vertex_0x0400EC70: + symbol: d_course_luigi_raceway_vertex_0x0400EC70 + type: mk64:course_vtx + count: 8 + offset: 0xcee2 + +d_course_luigi_raceway_vertex_0x0400ECF0: + symbol: d_course_luigi_raceway_vertex_0x0400ECF0 + type: mk64:course_vtx + count: 8 + offset: 0xcf52 + +d_course_luigi_raceway_vertex_0x0400ED70: + symbol: d_course_luigi_raceway_vertex_0x0400ED70 + type: mk64:course_vtx + count: 8 + offset: 0xcfc2 + +d_course_luigi_raceway_vertex_0x0400EDF0: + symbol: d_course_luigi_raceway_vertex_0x0400EDF0 + type: mk64:course_vtx + count: 8 + offset: 0xd032 + +d_course_luigi_raceway_vertex_0x0400EE70: + symbol: d_course_luigi_raceway_vertex_0x0400EE70 + type: mk64:course_vtx + count: 16 + offset: 0xd0a2 + +d_course_luigi_raceway_vertex_0x0400EF10: + symbol: d_course_luigi_raceway_vertex_0x0400EF10 + type: mk64:course_vtx + count: 16 + offset: 0xd12e + +d_course_luigi_raceway_vertex_0x0400EFB0: + symbol: d_course_luigi_raceway_vertex_0x0400EFB0 + type: mk64:course_vtx + count: 16 + offset: 0xd1ba + +d_course_luigi_raceway_vertex_0x0400F050: + symbol: d_course_luigi_raceway_vertex_0x0400F050 + type: mk64:course_vtx + count: 16 + offset: 0xd246 + +d_course_luigi_raceway_vertex_0x0400F0F0: + symbol: d_course_luigi_raceway_vertex_0x0400F0F0 + type: mk64:course_vtx + count: 8 + offset: 0xd2d2 + +d_course_luigi_raceway_vertex_0x0400F170: + symbol: d_course_luigi_raceway_vertex_0x0400F170 + type: mk64:course_vtx + count: 16 + offset: 0xd342 + +d_course_luigi_raceway_vertex_0x0400F210: + symbol: d_course_luigi_raceway_vertex_0x0400F210 + type: mk64:course_vtx + count: 4 + offset: 0xd3ce + +d_course_luigi_raceway_vertex_0x0400F250: + symbol: d_course_luigi_raceway_vertex_0x0400F250 + type: mk64:course_vtx + count: 4 + offset: 0xd406 + +d_course_luigi_raceway_vertex_0x0400F290: + symbol: d_course_luigi_raceway_vertex_0x0400F290 + type: mk64:course_vtx + count: 4 + offset: 0xd43e + +d_course_luigi_raceway_vertex_0x0400F2D0: + symbol: d_course_luigi_raceway_vertex_0x0400F2D0 + type: mk64:course_vtx + count: 8 + offset: 0xd476 + +d_course_luigi_raceway_vertex_0x0400F350: + symbol: d_course_luigi_raceway_vertex_0x0400F350 + type: mk64:course_vtx + count: 8 + offset: 0xd4e6 + +d_course_luigi_raceway_vertex_0x0400F3D0: + symbol: d_course_luigi_raceway_vertex_0x0400F3D0 + type: mk64:course_vtx + count: 18 + offset: 0xd556 + +d_course_luigi_raceway_vertex_0x0400F490: + symbol: d_course_luigi_raceway_vertex_0x0400F490 + type: mk64:course_vtx + count: 18 + offset: 0xd5fe + +d_course_luigi_raceway_vertex_0x0400F550: + symbol: d_course_luigi_raceway_vertex_0x0400F550 + type: mk64:course_vtx + count: 4 + offset: 0xd6a6 + +d_course_luigi_raceway_vertex_0x0400F590: + symbol: d_course_luigi_raceway_vertex_0x0400F590 + type: mk64:course_vtx + count: 8 + offset: 0xd6de + +d_course_luigi_raceway_vertex_0x0400F610: + symbol: d_course_luigi_raceway_vertex_0x0400F610 + type: mk64:course_vtx + count: 20 + offset: 0xd74e + +d_course_luigi_raceway_vertex_0x0400F6F0: + symbol: d_course_luigi_raceway_vertex_0x0400F6F0 + type: mk64:course_vtx + count: 18 + offset: 0xd812 + +d_course_luigi_raceway_vertex_0x0400F7B0: + symbol: d_course_luigi_raceway_vertex_0x0400F7B0 + type: mk64:course_vtx + count: 18 + offset: 0xd8ba + +d_course_luigi_raceway_vertex_0x0400F870: + symbol: d_course_luigi_raceway_vertex_0x0400F870 + type: mk64:course_vtx + count: 18 + offset: 0xd962 + +d_course_luigi_raceway_vertex_0x0400F930: + symbol: d_course_luigi_raceway_vertex_0x0400F930 + type: mk64:course_vtx + count: 18 + offset: 0xda0a + +d_course_luigi_raceway_vertex_0x0400F9F0: + symbol: d_course_luigi_raceway_vertex_0x0400F9F0 + type: mk64:course_vtx + count: 32 + offset: 0xdab2 + +d_course_luigi_raceway_vertex_0x0400FB30: + symbol: d_course_luigi_raceway_vertex_0x0400FB30 + type: mk64:course_vtx + count: 32 + offset: 0xdbca + +d_course_luigi_raceway_vertex_0x0400FC70: + symbol: d_course_luigi_raceway_vertex_0x0400FC70 + type: mk64:course_vtx + count: 18 + offset: 0xdce2 + +d_course_luigi_raceway_vertex_0x0400FD30: + symbol: d_course_luigi_raceway_vertex_0x0400FD30 + type: mk64:course_vtx + count: 18 + offset: 0xdd8a + +d_course_luigi_raceway_vertex_0x0400FDF0: + symbol: d_course_luigi_raceway_vertex_0x0400FDF0 + type: mk64:course_vtx + count: 8 + offset: 0xde32 + +d_course_luigi_raceway_vertex_0x0400FE70: + symbol: d_course_luigi_raceway_vertex_0x0400FE70 + type: mk64:course_vtx + count: 8 + offset: 0xdea2 + +d_course_luigi_raceway_vertex_0x0400FEF0: + symbol: d_course_luigi_raceway_vertex_0x0400FEF0 + type: mk64:course_vtx + count: 8 + offset: 0xdf12 + +d_course_luigi_raceway_vertex_0x0400FF70: + symbol: d_course_luigi_raceway_vertex_0x0400FF70 + type: mk64:course_vtx + count: 8 + offset: 0xdf82 + +d_course_luigi_raceway_vertex_0x0400FFF0: + symbol: d_course_luigi_raceway_vertex_0x0400FFF0 + type: mk64:course_vtx + count: 16 + offset: 0xdff2 + +d_course_luigi_raceway_vertex_0x04010090: + symbol: d_course_luigi_raceway_vertex_0x04010090 + type: mk64:course_vtx + count: 16 + offset: 0xe07e + +d_course_luigi_raceway_vertex_0x04010130: + symbol: d_course_luigi_raceway_vertex_0x04010130 + type: mk64:course_vtx + count: 8 + offset: 0xe10a + +d_course_luigi_raceway_vertex_0x040101B0: + symbol: d_course_luigi_raceway_vertex_0x040101B0 + type: mk64:course_vtx + count: 8 + offset: 0xe17a + +d_course_luigi_raceway_vertex_0x04010230: + symbol: d_course_luigi_raceway_vertex_0x04010230 + type: mk64:course_vtx + count: 16 + offset: 0xe1ea + +d_course_luigi_raceway_vertex_0x040102D0: + symbol: d_course_luigi_raceway_vertex_0x040102D0 + type: mk64:course_vtx + count: 8 + offset: 0xe276 + +d_course_luigi_raceway_vertex_0x04010350: + symbol: d_course_luigi_raceway_vertex_0x04010350 + type: mk64:course_vtx + count: 16 + offset: 0xe2e6 + +d_course_luigi_raceway_vertex_0x040103F0: + symbol: d_course_luigi_raceway_vertex_0x040103F0 + type: mk64:course_vtx + count: 8 + offset: 0xe372 + +d_course_luigi_raceway_vertex_0x04010470: + symbol: d_course_luigi_raceway_vertex_0x04010470 + type: mk64:course_vtx + count: 16 + offset: 0xe3e2 + +d_course_luigi_raceway_vertex_0x04010510: + symbol: d_course_luigi_raceway_vertex_0x04010510 + type: mk64:course_vtx + count: 16 + offset: 0xe46e + +d_course_luigi_raceway_vertex_0x040105B0: + symbol: d_course_luigi_raceway_vertex_0x040105B0 + type: mk64:course_vtx + count: 8 + offset: 0xe4fa + +d_course_luigi_raceway_vertex_0x04010630: + symbol: d_course_luigi_raceway_vertex_0x04010630 + type: mk64:course_vtx + count: 18 + offset: 0xe56a + +d_course_luigi_raceway_vertex_0x040106F0: + symbol: d_course_luigi_raceway_vertex_0x040106F0 + type: mk64:course_vtx + count: 18 + offset: 0xe612 + +d_course_luigi_raceway_vertex_0x040107B0: + symbol: d_course_luigi_raceway_vertex_0x040107B0 + type: mk64:course_vtx + count: 18 + offset: 0xe6ba + +d_course_luigi_raceway_vertex_0x04010870: + symbol: d_course_luigi_raceway_vertex_0x04010870 + type: mk64:course_vtx + count: 16 + offset: 0xe762 + +d_course_luigi_raceway_vertex_0x04010910: + symbol: d_course_luigi_raceway_vertex_0x04010910 + type: mk64:course_vtx + count: 8 + offset: 0xe7ee + +d_course_luigi_raceway_vertex_0x04010990: + symbol: d_course_luigi_raceway_vertex_0x04010990 + type: mk64:course_vtx + count: 8 + offset: 0xe85e + +d_course_luigi_raceway_vertex_0x04010A10: + symbol: d_course_luigi_raceway_vertex_0x04010A10 + type: mk64:course_vtx + count: 8 + offset: 0xe8ce + +d_course_luigi_raceway_vertex_0x04010A90: + symbol: d_course_luigi_raceway_vertex_0x04010A90 + type: mk64:course_vtx + count: 6 + offset: 0xe93e + +d_course_luigi_raceway_vertex_0x04010AF0: + symbol: d_course_luigi_raceway_vertex_0x04010AF0 + type: mk64:course_vtx + count: 18 + offset: 0xe992 + +d_course_luigi_raceway_vertex_0x04010BB0: + symbol: d_course_luigi_raceway_vertex_0x04010BB0 + type: mk64:course_vtx + count: 18 + offset: 0xea3a + +d_course_luigi_raceway_vertex_0x04010C70: + symbol: d_course_luigi_raceway_vertex_0x04010C70 + type: mk64:course_vtx + count: 18 + offset: 0xeae2 + +d_course_luigi_raceway_vertex_0x04010D30: + symbol: d_course_luigi_raceway_vertex_0x04010D30 + type: mk64:course_vtx + count: 18 + offset: 0xeb8a + +d_course_luigi_raceway_vertex_0x04010DF0: + symbol: d_course_luigi_raceway_vertex_0x04010DF0 + type: mk64:course_vtx + count: 20 + offset: 0xec32 + +d_course_luigi_raceway_vertex_0x04010ED0: + symbol: d_course_luigi_raceway_vertex_0x04010ED0 + type: mk64:course_vtx + count: 8 + offset: 0xecf6 + +d_course_luigi_raceway_vertex_0x04010F50: + symbol: d_course_luigi_raceway_vertex_0x04010F50 + type: mk64:course_vtx + count: 8 + offset: 0xed66 + +d_course_luigi_raceway_vertex_0x04010FD0: + symbol: d_course_luigi_raceway_vertex_0x04010FD0 + type: mk64:course_vtx + count: 8 + offset: 0xedd6 + +d_course_luigi_raceway_vertex_0x04011050: + symbol: d_course_luigi_raceway_vertex_0x04011050 + type: mk64:course_vtx + count: 4 + offset: 0xee46 + +d_course_luigi_raceway_vertex_0x04011090: + symbol: d_course_luigi_raceway_vertex_0x04011090 + type: mk64:course_vtx + count: 22 + offset: 0xee7e + +d_course_luigi_raceway_vertex_0x04011190: + symbol: d_course_luigi_raceway_vertex_0x04011190 + type: mk64:course_vtx + count: 32 + offset: 0xef5e + +d_course_luigi_raceway_vertex_0x040112D0: + symbol: d_course_luigi_raceway_vertex_0x040112D0 + type: mk64:course_vtx + count: 18 + offset: 0xf076 + +d_course_luigi_raceway_vertex_0x04011390: + symbol: d_course_luigi_raceway_vertex_0x04011390 + type: mk64:course_vtx + count: 18 + offset: 0xf11e + +d_course_luigi_raceway_vertex_0x04011450: + symbol: d_course_luigi_raceway_vertex_0x04011450 + type: mk64:course_vtx + count: 22 + offset: 0xf1c6 + +d_course_luigi_raceway_vertex_0x04011550: + symbol: d_course_luigi_raceway_vertex_0x04011550 + type: mk64:course_vtx + count: 22 + offset: 0xf2a6 + +d_course_luigi_raceway_vertex_0x04011650: + symbol: d_course_luigi_raceway_vertex_0x04011650 + type: mk64:course_vtx + count: 8 + offset: 0xf386 + +d_course_luigi_raceway_vertex_0x040116D0: + symbol: d_course_luigi_raceway_vertex_0x040116D0 + type: mk64:course_vtx + count: 18 + offset: 0xf3f6 + +d_course_luigi_raceway_vertex_0x04011790: + symbol: d_course_luigi_raceway_vertex_0x04011790 + type: mk64:course_vtx + count: 22 + offset: 0xf49e + +d_course_luigi_raceway_vertex_0x04011890: + symbol: d_course_luigi_raceway_vertex_0x04011890 + type: mk64:course_vtx + count: 8 + offset: 0xf57e + +d_course_luigi_raceway_vertex_0x04011910: + symbol: d_course_luigi_raceway_vertex_0x04011910 + type: mk64:course_vtx + count: 8 + offset: 0xf5ee + +d_course_luigi_raceway_vertex_0x04011990: + symbol: d_course_luigi_raceway_vertex_0x04011990 + type: mk64:course_vtx + count: 22 + offset: 0xf65e + +d_course_luigi_raceway_vertex_0x04011A90: + symbol: d_course_luigi_raceway_vertex_0x04011A90 + type: mk64:course_vtx + count: 8 + offset: 0xf73e + +d_course_luigi_raceway_vertex_0x04011B10: + symbol: d_course_luigi_raceway_vertex_0x04011B10 + type: mk64:course_vtx + count: 18 + offset: 0xf7ae + +d_course_luigi_raceway_vertex_0x04011BD0: + symbol: d_course_luigi_raceway_vertex_0x04011BD0 + type: mk64:course_vtx + count: 50 + offset: 0xf856 + +d_course_luigi_raceway_vertex_0x04011DD0: + symbol: d_course_luigi_raceway_vertex_0x04011DD0 + type: mk64:course_vtx + count: 4 + offset: 0xfa16 + +d_course_luigi_raceway_vertex_0x04011E10: + symbol: d_course_luigi_raceway_vertex_0x04011E10 + type: mk64:course_vtx + count: 34 + offset: 0xfa4e + +d_course_luigi_raceway_vertex_0x04011F70: + symbol: d_course_luigi_raceway_vertex_0x04011F70 + type: mk64:course_vtx + count: 8 + offset: 0xfb82 + +d_course_luigi_raceway_vertex_0x04011FF0: + symbol: d_course_luigi_raceway_vertex_0x04011FF0 + type: mk64:course_vtx + count: 8 + offset: 0xfbf2 + +d_course_luigi_raceway_vertex_0x04012070: + symbol: d_course_luigi_raceway_vertex_0x04012070 + type: mk64:course_vtx + count: 4 + offset: 0xfc62 + +d_course_luigi_raceway_vertex_0x040120B0: + symbol: d_course_luigi_raceway_vertex_0x040120B0 + type: mk64:course_vtx + count: 23 + offset: 0xfc9a + +d_course_luigi_raceway_vertex_0x040121C0: + symbol: d_course_luigi_raceway_vertex_0x040121C0 + type: mk64:course_vtx + count: 6 + offset: 0xfd88 + +d_course_luigi_raceway_vertex_0x04012220: + symbol: d_course_luigi_raceway_vertex_0x04012220 + type: mk64:course_vtx + count: 18 + offset: 0xfddc + +d_course_luigi_raceway_vertex_0x040122E0: + symbol: d_course_luigi_raceway_vertex_0x040122E0 + type: mk64:course_vtx + count: 18 + offset: 0xfe84 + +d_course_luigi_raceway_vertex_0x040123A0: + symbol: d_course_luigi_raceway_vertex_0x040123A0 + type: mk64:course_vtx + count: 18 + offset: 0xff2c + +d_course_luigi_raceway_vertex_0x04012460: + symbol: d_course_luigi_raceway_vertex_0x04012460 + type: mk64:course_vtx + count: 4 + offset: 0xffd4 + +d_course_luigi_raceway_vertex_0x040124A0: + symbol: d_course_luigi_raceway_vertex_0x040124A0 + type: mk64:course_vtx + count: 8 + offset: 0x1000c + +d_course_luigi_raceway_vertex_0x04012520: + symbol: d_course_luigi_raceway_vertex_0x04012520 + type: mk64:course_vtx + count: 8 + offset: 0x1007c + +d_course_luigi_raceway_vertex_0x040125A0: + symbol: d_course_luigi_raceway_vertex_0x040125A0 + type: mk64:course_vtx + count: 8 + offset: 0x100ec + +d_course_luigi_raceway_vertex_0x04012620: + symbol: d_course_luigi_raceway_vertex_0x04012620 + type: mk64:course_vtx + count: 8 + offset: 0x1015c + +d_course_luigi_raceway_vertex_0x040126A0: + symbol: d_course_luigi_raceway_vertex_0x040126A0 + type: mk64:course_vtx + count: 8 + offset: 0x101cc + +d_course_luigi_raceway_vertex_0x04012720: + symbol: d_course_luigi_raceway_vertex_0x04012720 + type: mk64:course_vtx + count: 8 + offset: 0x1023c + +d_course_luigi_raceway_vertex_0x040127A0: + symbol: d_course_luigi_raceway_vertex_0x040127A0 + type: mk64:course_vtx + count: 4 + offset: 0x102ac + +d_course_luigi_raceway_vertex_0x040127E0: + symbol: d_course_luigi_raceway_vertex_0x040127E0 + type: mk64:course_vtx + count: 4 + offset: 0x102e4 + +d_course_luigi_raceway_vertex_0x04012820: + symbol: d_course_luigi_raceway_vertex_0x04012820 + type: mk64:course_vtx + count: 4 + offset: 0x1031c + +d_course_luigi_raceway_vertex_0x04012860: + symbol: d_course_luigi_raceway_vertex_0x04012860 + type: mk64:course_vtx + count: 8 + offset: 0x10354 + +d_course_luigi_raceway_vertex_0x040128E0: + symbol: d_course_luigi_raceway_vertex_0x040128E0 + type: mk64:course_vtx + count: 8 + offset: 0x103c4 + +d_course_luigi_raceway_vertex_0x04012960: + symbol: d_course_luigi_raceway_vertex_0x04012960 + type: mk64:course_vtx + count: 8 + offset: 0x10434 + +d_course_luigi_raceway_vertex_0x040129E0: + symbol: d_course_luigi_raceway_vertex_0x040129E0 + type: mk64:course_vtx + count: 8 + offset: 0x104a4 + +d_course_luigi_raceway_vertex_0x04012A60: + symbol: d_course_luigi_raceway_vertex_0x04012A60 + type: mk64:course_vtx + count: 8 + offset: 0x10514 + +d_course_luigi_raceway_vertex_0x04012AE0: + symbol: d_course_luigi_raceway_vertex_0x04012AE0 + type: mk64:course_vtx + count: 8 + offset: 0x10584 + +d_course_luigi_raceway_vertex_0x04012B60: + symbol: d_course_luigi_raceway_vertex_0x04012B60 + type: mk64:course_vtx + count: 4 + offset: 0x105f4 + +d_course_luigi_raceway_vertex_0x04012BA0: + symbol: d_course_luigi_raceway_vertex_0x04012BA0 + type: mk64:course_vtx + count: 8 + offset: 0x1062c + +d_course_luigi_raceway_vertex_0x04012C20: + symbol: d_course_luigi_raceway_vertex_0x04012C20 + type: mk64:course_vtx + count: 4 + offset: 0x1069c + +d_course_luigi_raceway_vertex_0x04012C60: + symbol: d_course_luigi_raceway_vertex_0x04012C60 + type: mk64:course_vtx + count: 8 + offset: 0x106d4 + +d_course_luigi_raceway_vertex_0x04012CE0: + symbol: d_course_luigi_raceway_vertex_0x04012CE0 + type: mk64:course_vtx + count: 8 + offset: 0x10744 + +d_course_luigi_raceway_vertex_0x04012D60: + symbol: d_course_luigi_raceway_vertex_0x04012D60 + type: mk64:course_vtx + count: 8 + offset: 0x107b4 + +d_course_luigi_raceway_vertex_0x04012DE0: + symbol: d_course_luigi_raceway_vertex_0x04012DE0 + type: mk64:course_vtx + count: 6 + offset: 0x10824 + +d_course_luigi_raceway_vertex_0x04012E40: + symbol: d_course_luigi_raceway_vertex_0x04012E40 + type: mk64:course_vtx + count: 8 + offset: 0x10878 + +d_course_luigi_raceway_vertex_0x04012EC0: + symbol: d_course_luigi_raceway_vertex_0x04012EC0 + type: mk64:course_vtx + count: 6 + offset: 0x108e8 + +d_course_luigi_raceway_vertex_0x04012F20: + symbol: d_course_luigi_raceway_vertex_0x04012F20 + type: mk64:course_vtx + count: 8 + offset: 0x1093c + +d_course_luigi_raceway_vertex_0x04012FA0: + symbol: d_course_luigi_raceway_vertex_0x04012FA0 + type: mk64:course_vtx + count: 6 + offset: 0x109ac + +d_course_luigi_raceway_vertex_0x04013000: + symbol: d_course_luigi_raceway_vertex_0x04013000 + type: mk64:course_vtx + count: 8 + offset: 0x10a00 + +d_course_luigi_raceway_vertex_0x04013080: + symbol: d_course_luigi_raceway_vertex_0x04013080 + type: mk64:course_vtx + count: 6 + offset: 0x10a70 + +d_course_luigi_raceway_vertex_0x040130E0: + symbol: d_course_luigi_raceway_vertex_0x040130E0 + type: mk64:course_vtx + count: 8 + offset: 0x10ac4 + +d_course_luigi_raceway_vertex_0x04013160: + symbol: d_course_luigi_raceway_vertex_0x04013160 + type: mk64:course_vtx + count: 6 + offset: 0x10b34 + +d_course_luigi_raceway_vertex_0x040131C0: + symbol: d_course_luigi_raceway_vertex_0x040131C0 + type: mk64:course_vtx + count: 8 + offset: 0x10b88 + +d_course_luigi_raceway_vertex_0x04013240: + symbol: d_course_luigi_raceway_vertex_0x04013240 + type: mk64:course_vtx + count: 6 + offset: 0x10bf8 + +d_course_luigi_raceway_vertex_0x040132A0: + symbol: d_course_luigi_raceway_vertex_0x040132A0 + type: mk64:course_vtx + count: 8 + offset: 0x10c4c + +d_course_luigi_raceway_vertex_0x04013320: + symbol: d_course_luigi_raceway_vertex_0x04013320 + type: mk64:course_vtx + count: 4 + offset: 0x10cbc + +d_course_luigi_raceway_vertex_0x04013360: + symbol: d_course_luigi_raceway_vertex_0x04013360 + type: mk64:course_vtx + count: 4 + offset: 0x10cf4 + +d_course_luigi_raceway_vertex_0x040133A0: + symbol: d_course_luigi_raceway_vertex_0x040133A0 + type: mk64:course_vtx + count: 4 + offset: 0x10d2c + +d_course_luigi_raceway_vertex_0x040133E0: + symbol: d_course_luigi_raceway_vertex_0x040133E0 + type: mk64:course_vtx + count: 4 + offset: 0x10d64 + +d_course_luigi_raceway_vertex_0x04013420: + symbol: d_course_luigi_raceway_vertex_0x04013420 + type: mk64:course_vtx + count: 4 + offset: 0x10d9c + +d_course_luigi_raceway_vertex_0x04013460: + symbol: d_course_luigi_raceway_vertex_0x04013460 + type: mk64:course_vtx + count: 4 + offset: 0x10dd4 + +d_course_luigi_raceway_vertex_0x040134A0: + symbol: d_course_luigi_raceway_vertex_0x040134A0 + type: mk64:course_vtx + count: 6 + offset: 0x10e0c + +d_course_luigi_raceway_vertex_0x04013500: + symbol: d_course_luigi_raceway_vertex_0x04013500 + type: mk64:course_vtx + count: 6 + offset: 0x10e60 + +d_course_luigi_raceway_vertex_0x04013560: + symbol: d_course_luigi_raceway_vertex_0x04013560 + type: mk64:course_vtx + count: 6 + offset: 0x10eb4 + +d_course_luigi_raceway_vertex_0x040135C0: + symbol: d_course_luigi_raceway_vertex_0x040135C0 + type: mk64:course_vtx + count: 8 + offset: 0x10f08 + +d_course_luigi_raceway_vertex_0x04013640: + symbol: d_course_luigi_raceway_vertex_0x04013640 + type: mk64:course_vtx + count: 6 + offset: 0x10f78 + +d_course_luigi_raceway_vertex_0x040136A0: + symbol: d_course_luigi_raceway_vertex_0x040136A0 + type: mk64:course_vtx + count: 8 + offset: 0x10fcc + +d_course_luigi_raceway_vertex_0x04013720: + symbol: d_course_luigi_raceway_vertex_0x04013720 + type: mk64:course_vtx + count: 6 + offset: 0x1103c + +d_course_luigi_raceway_vertex_0x04013780: + symbol: d_course_luigi_raceway_vertex_0x04013780 + type: mk64:course_vtx + count: 8 + offset: 0x11090 + +d_course_luigi_raceway_vertex_0x04013800: + symbol: d_course_luigi_raceway_vertex_0x04013800 + type: mk64:course_vtx + count: 6 + offset: 0x11100 + +d_course_luigi_raceway_vertex_0x04013860: + symbol: d_course_luigi_raceway_vertex_0x04013860 + type: mk64:course_vtx + count: 8 + offset: 0x11154 + +d_course_luigi_raceway_vertex_0x040138E0: + symbol: d_course_luigi_raceway_vertex_0x040138E0 + type: mk64:course_vtx + count: 6 + offset: 0x111c4 + +d_course_luigi_raceway_vertex_0x04013940: + symbol: d_course_luigi_raceway_vertex_0x04013940 + type: mk64:course_vtx + count: 8 + offset: 0x11218 + +d_course_luigi_raceway_vertex_0x040139C0: + symbol: d_course_luigi_raceway_vertex_0x040139C0 + type: mk64:course_vtx + count: 4 + offset: 0x11288 + +d_course_luigi_raceway_vertex_0x04013A00: + symbol: d_course_luigi_raceway_vertex_0x04013A00 + type: mk64:course_vtx + count: 4 + offset: 0x112c0 + +d_course_luigi_raceway_vertex_0x04013A40: + symbol: d_course_luigi_raceway_vertex_0x04013A40 + type: mk64:course_vtx + count: 6 + offset: 0x112f8 + +d_course_luigi_raceway_vertex_0x04013AA0: + symbol: d_course_luigi_raceway_vertex_0x04013AA0 + type: mk64:course_vtx + count: 8 + offset: 0x1134c + +d_course_luigi_raceway_vertex_0x04013B20: + symbol: d_course_luigi_raceway_vertex_0x04013B20 + type: mk64:course_vtx + count: 4 + offset: 0x113bc + +d_course_luigi_raceway_vertex_0x04013B60: + symbol: d_course_luigi_raceway_vertex_0x04013B60 + type: mk64:course_vtx + count: 4 + offset: 0x113f4 + +d_course_luigi_raceway_vertex_0x04013BA0: + symbol: d_course_luigi_raceway_vertex_0x04013BA0 + type: mk64:course_vtx + count: 6 + offset: 0x1142c + +d_course_luigi_raceway_vertex_0x04013C00: + symbol: d_course_luigi_raceway_vertex_0x04013C00 + type: mk64:course_vtx + count: 8 + offset: 0x11480 + +d_course_luigi_raceway_vertex_0x04013C80: + symbol: d_course_luigi_raceway_vertex_0x04013C80 + type: mk64:course_vtx + count: 6 + offset: 0x114f0 + +d_course_luigi_raceway_vertex_0x04013CE0: + symbol: d_course_luigi_raceway_vertex_0x04013CE0 + type: mk64:course_vtx + count: 8 + offset: 0x11544 + +d_course_luigi_raceway_vertex_0x04013D60: + symbol: d_course_luigi_raceway_vertex_0x04013D60 + type: mk64:course_vtx + count: 6 + offset: 0x115b4 + +d_course_luigi_raceway_vertex_0x04013DC0: + symbol: d_course_luigi_raceway_vertex_0x04013DC0 + type: mk64:course_vtx + count: 8 + offset: 0x11608 + +d_course_luigi_raceway_vertex_0x04013E40: + symbol: d_course_luigi_raceway_vertex_0x04013E40 + type: mk64:course_vtx + count: 50 + offset: 0x11678 + +d_course_luigi_raceway_vertex_0x04014040: + symbol: d_course_luigi_raceway_vertex_0x04014040 + type: mk64:course_vtx + count: 50 + offset: 0x11838 + +d_course_luigi_raceway_vertex_0x04014240: + symbol: d_course_luigi_raceway_vertex_0x04014240 + type: mk64:course_vtx + count: 50 + offset: 0x119f8 + +d_course_luigi_raceway_vertex_0x04014440: + symbol: d_course_luigi_raceway_vertex_0x04014440 + type: mk64:course_vtx + count: 50 + offset: 0x11bb8 + +d_course_luigi_raceway_vertex_0x04014640: + symbol: d_course_luigi_raceway_vertex_0x04014640 + type: mk64:course_vtx + count: 50 + offset: 0x11d78 + +d_course_luigi_raceway_vertex_0x04014840: + symbol: d_course_luigi_raceway_vertex_0x04014840 + type: mk64:course_vtx + count: 4 + offset: 0x11f38 + +d_course_luigi_raceway_vertex_0x04014880: + symbol: d_course_luigi_raceway_vertex_0x04014880 + type: mk64:course_vtx + count: 25 + offset: 0x11f70 + +d_course_luigi_raceway_vertex_0x040149B0: + symbol: d_course_luigi_raceway_vertex_0x040149B0 + type: mk64:course_vtx + count: 32 + offset: 0x1207a + +d_course_luigi_raceway_vertex_0x04014AF0: + symbol: d_course_luigi_raceway_vertex_0x04014AF0 + type: mk64:course_vtx + count: 4 + offset: 0x12192 + +d_course_luigi_raceway_vertex_0x04014B30: + symbol: d_course_luigi_raceway_vertex_0x04014B30 + type: mk64:course_vtx + count: 6 + offset: 0x121ca + +d_course_luigi_raceway_vertex_0x04014B90: + symbol: d_course_luigi_raceway_vertex_0x04014B90 + type: mk64:course_vtx + count: 4 + offset: 0x1221e + +d_course_luigi_raceway_vertex_0x04014BD0: + symbol: d_course_luigi_raceway_vertex_0x04014BD0 + type: mk64:course_vtx + count: 4 + offset: 0x12256 + +d_course_luigi_raceway_vertex_0x04014C10: + symbol: d_course_luigi_raceway_vertex_0x04014C10 + type: mk64:course_vtx + count: 4 + offset: 0x1228e + +d_course_luigi_raceway_vertex_0x04014C50: + symbol: d_course_luigi_raceway_vertex_0x04014C50 + type: mk64:course_vtx + count: 4 + offset: 0x122c6 + +d_course_luigi_raceway_vertex_0x04014C90: + symbol: d_course_luigi_raceway_vertex_0x04014C90 + type: mk64:course_vtx + count: 3 + offset: 0x122fe + +d_course_luigi_raceway_vertex_0x04014CC0: + symbol: d_course_luigi_raceway_vertex_0x04014CC0 + type: mk64:course_vtx + count: 3 + offset: 0x12328 + +d_course_luigi_raceway_vertex_0x04014CF0: + symbol: d_course_luigi_raceway_vertex_0x04014CF0 + type: mk64:course_vtx + count: 4 + offset: 0x12352 + +d_course_luigi_raceway_vertex_0x04014D30: + symbol: d_course_luigi_raceway_vertex_0x04014D30 + type: mk64:course_vtx + count: 8 + offset: 0x1238a + +d_course_luigi_raceway_vertex_0x04014DB0: + symbol: d_course_luigi_raceway_vertex_0x04014DB0 + type: mk64:course_vtx + count: 4 + offset: 0x123fa + +d_course_luigi_raceway_vertex_0x04014DF0: + symbol: d_course_luigi_raceway_vertex_0x04014DF0 + type: mk64:course_vtx + count: 9 + offset: 0x12432 + +d_course_luigi_raceway_vertex_0x04014E80: + symbol: d_course_luigi_raceway_vertex_0x04014E80 + type: mk64:course_vtx + count: 4 + offset: 0x124b0 + +d_course_luigi_raceway_vertex_0x04014EC0: + symbol: d_course_luigi_raceway_vertex_0x04014EC0 + type: mk64:course_vtx + count: 8 + offset: 0x124e8 + +d_course_luigi_raceway_vertex_0x04014F40: + symbol: d_course_luigi_raceway_vertex_0x04014F40 + type: mk64:course_vtx + count: 4 + offset: 0x12558 + +d_course_luigi_raceway_vertex_0x04014F80: + symbol: d_course_luigi_raceway_vertex_0x04014F80 + type: mk64:course_vtx + count: 6 + offset: 0x12590 + +d_course_luigi_raceway_vertex_0x04014FE0: + symbol: d_course_luigi_raceway_vertex_0x04014FE0 + type: mk64:course_vtx + count: 4 + offset: 0x125e4 + +d_course_luigi_raceway_vertex_0x04015020: + symbol: d_course_luigi_raceway_vertex_0x04015020 + type: mk64:course_vtx + count: 4 + offset: 0x1261c + +d_course_luigi_raceway_vertex_0x04015060: + symbol: d_course_luigi_raceway_vertex_0x04015060 + type: mk64:course_vtx + count: 4 + offset: 0x12654 + +d_course_luigi_raceway_vertex_0x040150A0: + symbol: d_course_luigi_raceway_vertex_0x040150A0 + type: mk64:course_vtx + count: 16 + offset: 0x1268c + +d_course_luigi_raceway_vertex_0x04015140: + symbol: d_course_luigi_raceway_vertex_0x04015140 + type: mk64:course_vtx + count: 3 + offset: 0x12718 + +d_course_luigi_raceway_vertex_0x04015170: + symbol: d_course_luigi_raceway_vertex_0x04015170 + type: mk64:course_vtx + count: 3 + offset: 0x12742 + +d_course_luigi_raceway_vertex_0x040151A0: + symbol: d_course_luigi_raceway_vertex_0x040151A0 + type: mk64:course_vtx + count: 4 + offset: 0x1276c + +d_course_luigi_raceway_vertex_0x040151E0: + symbol: d_course_luigi_raceway_vertex_0x040151E0 + type: mk64:course_vtx + count: 6 + offset: 0x127a4 + +d_course_luigi_raceway_vertex_0x04015240: + symbol: d_course_luigi_raceway_vertex_0x04015240 + type: mk64:course_vtx + count: 8 + offset: 0x127f8 + +d_course_luigi_raceway_vertex_0x040152C0: + symbol: d_course_luigi_raceway_vertex_0x040152C0 + type: mk64:course_vtx + count: 8 + offset: 0x12868 + +d_course_luigi_raceway_vertex_0x04015340: + symbol: d_course_luigi_raceway_vertex_0x04015340 + type: mk64:course_vtx + count: 8 + offset: 0x128d8 + +d_course_luigi_raceway_vertex_0x040153C0: + symbol: d_course_luigi_raceway_vertex_0x040153C0 + type: mk64:course_vtx + count: 6 + offset: 0x12948 + +d_course_luigi_raceway_vertex_0x04015420: + symbol: d_course_luigi_raceway_vertex_0x04015420 + type: mk64:course_vtx + count: 8 + offset: 0x1299c + +d_course_luigi_raceway_vertex_0x040154A0: + symbol: d_course_luigi_raceway_vertex_0x040154A0 + type: mk64:course_vtx + count: 8 + offset: 0x12a0c + +d_course_luigi_raceway_vertex_0x04015520: + symbol: d_course_luigi_raceway_vertex_0x04015520 + type: mk64:course_vtx + count: 8 + offset: 0x12a7c + +d_course_luigi_raceway_vertex_0x040155A0: + symbol: d_course_luigi_raceway_vertex_0x040155A0 + type: mk64:course_vtx + count: 8 + offset: 0x12aec + +d_course_luigi_raceway_vertex_0x04015620: + symbol: d_course_luigi_raceway_vertex_0x04015620 + type: mk64:course_vtx + count: 18 + offset: 0x12b5c + +d_course_luigi_raceway_vertex_0x040156E0: + symbol: d_course_luigi_raceway_vertex_0x040156E0 + type: mk64:course_vtx + count: 8 + offset: 0x12c04 + +d_course_luigi_raceway_vertex_0x04015760: + symbol: d_course_luigi_raceway_vertex_0x04015760 + type: mk64:course_vtx + count: 8 + offset: 0x12c74 + +d_course_luigi_raceway_vertex_0x040157E0: + symbol: d_course_luigi_raceway_vertex_0x040157E0 + type: mk64:course_vtx + count: 8 + offset: 0x12ce4 + +d_course_luigi_raceway_vertex_0x04015860: + symbol: d_course_luigi_raceway_vertex_0x04015860 + type: mk64:course_vtx + count: 8 + offset: 0x12d54 + +d_course_luigi_raceway_vertex_0x040158E0: + symbol: d_course_luigi_raceway_vertex_0x040158E0 + type: mk64:course_vtx + count: 8 + offset: 0x12dc4 + +d_course_luigi_raceway_vertex_0x04015960: + symbol: d_course_luigi_raceway_vertex_0x04015960 + type: mk64:course_vtx + count: 8 + offset: 0x12e34 + +d_course_luigi_raceway_vertex_0x040159E0: + symbol: d_course_luigi_raceway_vertex_0x040159E0 + type: mk64:course_vtx + count: 4 + offset: 0x12ea4 + +d_course_luigi_raceway_vertex_0x04015A20: + symbol: d_course_luigi_raceway_vertex_0x04015A20 + type: mk64:course_vtx + count: 9 + offset: 0x12edc + +d_course_luigi_raceway_vertex_0x04015AB0: + symbol: d_course_luigi_raceway_vertex_0x04015AB0 + type: mk64:course_vtx + count: 6 + offset: 0x12f5a + +d_course_luigi_raceway_vertex_0x04015B10: + symbol: d_course_luigi_raceway_vertex_0x04015B10 + type: mk64:course_vtx + count: 6 + offset: 0x12fae + +d_course_luigi_raceway_vertex_0x04015B70: + symbol: d_course_luigi_raceway_vertex_0x04015B70 + type: mk64:course_vtx + count: 6 + offset: 0x13002 + +d_course_luigi_raceway_vertex_0x04015BD0: + symbol: d_course_luigi_raceway_vertex_0x04015BD0 + type: mk64:course_vtx + count: 8 + offset: 0x13056 + +d_course_luigi_raceway_vertex_0x04015C50: + symbol: d_course_luigi_raceway_vertex_0x04015C50 + type: mk64:course_vtx + count: 8 + offset: 0x130c6 + +d_course_luigi_raceway_vertex_0x04015CD0: + symbol: d_course_luigi_raceway_vertex_0x04015CD0 + type: mk64:course_vtx + count: 8 + offset: 0x13136 + +d_course_luigi_raceway_vertex_0x04015D50: + symbol: d_course_luigi_raceway_vertex_0x04015D50 + type: mk64:course_vtx + count: 6 + offset: 0x131a6 + +d_course_luigi_raceway_vertex_0x04015DB0: + symbol: d_course_luigi_raceway_vertex_0x04015DB0 + type: mk64:course_vtx + count: 4 + offset: 0x131fa + +d_course_luigi_raceway_vertex_0x04015DF0: + symbol: d_course_luigi_raceway_vertex_0x04015DF0 + type: mk64:course_vtx + count: 4 + offset: 0x13232 + +d_course_luigi_raceway_vertex_0x04015E30: + symbol: d_course_luigi_raceway_vertex_0x04015E30 + type: mk64:course_vtx + count: 4 + offset: 0x1326a + +d_course_luigi_raceway_vertex_0x04015E70: + symbol: d_course_luigi_raceway_vertex_0x04015E70 + type: mk64:course_vtx + count: 16 + offset: 0x132a2 + +d_course_luigi_raceway_vertex_0x04015F10: + symbol: d_course_luigi_raceway_vertex_0x04015F10 + type: mk64:course_vtx + count: 21 + offset: 0x1332e + +d_course_luigi_raceway_vertex_0x04016000: + symbol: d_course_luigi_raceway_vertex_0x04016000 + type: mk64:course_vtx + count: 4 + offset: 0x13400 + +d_course_luigi_raceway_vertex_0x04016040: + symbol: d_course_luigi_raceway_vertex_0x04016040 + type: mk64:course_vtx + count: 8 + offset: 0x13438 + +d_course_luigi_raceway_vertex_0x040160C0: + symbol: d_course_luigi_raceway_vertex_0x040160C0 + type: mk64:course_vtx + count: 8 + offset: 0x134a8 + +d_course_luigi_raceway_vertex_0x04016140: + symbol: d_course_luigi_raceway_vertex_0x04016140 + type: mk64:course_vtx + count: 7 + offset: 0x13518 + +d_course_luigi_raceway_vertex_0x040161B0: + symbol: d_course_luigi_raceway_vertex_0x040161B0 + type: mk64:course_vtx + count: 8 + offset: 0x1357a + +d_course_luigi_raceway_vertex_0x04016230: + symbol: d_course_luigi_raceway_vertex_0x04016230 + type: mk64:course_vtx + count: 8 + offset: 0x135ea + +d_course_luigi_raceway_vertex_0x040162B0: + symbol: d_course_luigi_raceway_vertex_0x040162B0 + type: mk64:course_vtx + count: 8 + offset: 0x1365a + +d_course_luigi_raceway_vertex_0x04016330: + symbol: d_course_luigi_raceway_vertex_0x04016330 + type: mk64:course_vtx + count: 9 + offset: 0x136ca + +d_course_luigi_raceway_vertex_0x040163C0: + symbol: d_course_luigi_raceway_vertex_0x040163C0 + type: mk64:course_vtx + count: 8 + offset: 0x13748 + +d_course_luigi_raceway_vertex_0x04016440: + symbol: d_course_luigi_raceway_vertex_0x04016440 + type: mk64:course_vtx + count: 4 + offset: 0x137b8 + +d_course_luigi_raceway_vertex_0x04016480: + symbol: d_course_luigi_raceway_vertex_0x04016480 + type: mk64:course_vtx + count: 16 + offset: 0x137f0 + +d_course_luigi_raceway_vertex_0x04016520: + symbol: d_course_luigi_raceway_vertex_0x04016520 + type: mk64:course_vtx + count: 6 + offset: 0x1387c + +d_course_luigi_raceway_vertex_0x04016580: + symbol: d_course_luigi_raceway_vertex_0x04016580 + type: mk64:course_vtx + count: 17 + offset: 0x138d0 + +d_course_luigi_raceway_vertex_0x04016630: + symbol: d_course_luigi_raceway_vertex_0x04016630 + type: mk64:course_vtx + count: 4 + offset: 0x1396a + +d_course_luigi_raceway_vertex_0x04016670: + symbol: d_course_luigi_raceway_vertex_0x04016670 + type: mk64:course_vtx + count: 8 + offset: 0x139a2 + +d_course_luigi_raceway_vertex_0x040166F0: + symbol: d_course_luigi_raceway_vertex_0x040166F0 + type: mk64:course_vtx + count: 3 + offset: 0x13a12 + +d_course_luigi_raceway_vertex_0x04016720: + symbol: d_course_luigi_raceway_vertex_0x04016720 + type: mk64:course_vtx + count: 4 + offset: 0x13a3c + +d_course_luigi_raceway_vertex_0x04016760: + symbol: d_course_luigi_raceway_vertex_0x04016760 + type: mk64:course_vtx + count: 4 + offset: 0x13a74 + +d_course_luigi_raceway_vertex_0x040167A0: + symbol: d_course_luigi_raceway_vertex_0x040167A0 + type: mk64:course_vtx + count: 4 + offset: 0x13aac + +d_course_luigi_raceway_vertex_0x040167E0: + symbol: d_course_luigi_raceway_vertex_0x040167E0 + type: mk64:course_vtx + count: 4 + offset: 0x13ae4 + +d_course_luigi_raceway_vertex_0x04016820: + symbol: d_course_luigi_raceway_vertex_0x04016820 + type: mk64:course_vtx + count: 4 + offset: 0x13b1c + +d_course_luigi_raceway_vertex_0x04016860: + symbol: d_course_luigi_raceway_vertex_0x04016860 + type: mk64:course_vtx + count: 4 + offset: 0x13b54 + +d_course_luigi_raceway_vertex_0x040168A0: + symbol: d_course_luigi_raceway_vertex_0x040168A0 + type: mk64:course_vtx + count: 4 + offset: 0x13b8c + +d_course_luigi_raceway_vertex_0x040168E0: + symbol: d_course_luigi_raceway_vertex_0x040168E0 + type: mk64:course_vtx + count: 3 + offset: 0x13bc4 + +d_course_luigi_raceway_vertex_0x04016910: + symbol: d_course_luigi_raceway_vertex_0x04016910 + type: mk64:course_vtx + count: 9 + offset: 0x13bee + +d_course_luigi_raceway_vertex_0x040169A0: + symbol: d_course_luigi_raceway_vertex_0x040169A0 + type: mk64:course_vtx + count: 4 + offset: 0x13c6c + +d_course_luigi_raceway_vertex_0x040169E0: + symbol: d_course_luigi_raceway_vertex_0x040169E0 + type: mk64:course_vtx + count: 9 + offset: 0x13ca4 + +d_course_luigi_raceway_vertex_0x04016A70: + symbol: d_course_luigi_raceway_vertex_0x04016A70 + type: mk64:course_vtx + count: 4 + offset: 0x13d22 + +d_course_luigi_raceway_vertex_0x04016AB0: + symbol: d_course_luigi_raceway_vertex_0x04016AB0 + type: mk64:course_vtx + count: 4 + offset: 0x13d5a + +d_course_luigi_raceway_vertex_0x04016AF0: + symbol: d_course_luigi_raceway_vertex_0x04016AF0 + type: mk64:course_vtx + count: 4 + offset: 0x13d92 + +d_course_luigi_raceway_vertex_0x04016B30: + symbol: d_course_luigi_raceway_vertex_0x04016B30 + type: mk64:course_vtx + count: 4 + offset: 0x13dca + +d_course_luigi_raceway_vertex_0x04016B70: + symbol: d_course_luigi_raceway_vertex_0x04016B70 + type: mk64:course_vtx + count: 8 + offset: 0x13e02 + +d_course_luigi_raceway_vertex_0x04016BF0: + symbol: d_course_luigi_raceway_vertex_0x04016BF0 + type: mk64:course_vtx + count: 8 + offset: 0x13e72 + +d_course_luigi_raceway_vertex_0x04016C70: + symbol: d_course_luigi_raceway_vertex_0x04016C70 + type: mk64:course_vtx + count: 5 + offset: 0x13ee2 + +d_course_luigi_raceway_vertex_0x04016CC0: + symbol: d_course_luigi_raceway_vertex_0x04016CC0 + type: mk64:course_vtx + count: 50 + offset: 0x13f28 + +d_course_luigi_raceway_vertex_0x04016EC0: + symbol: d_course_luigi_raceway_vertex_0x04016EC0 + type: mk64:course_vtx + count: 8 + offset: 0x140e8 + +d_course_luigi_raceway_vertex_0x04016F40: + symbol: d_course_luigi_raceway_vertex_0x04016F40 + type: mk64:course_vtx + count: 32 + offset: 0x14158 + +d_course_luigi_raceway_vertex_0x04017080: + symbol: d_course_luigi_raceway_vertex_0x04017080 + type: mk64:course_vtx + count: 32 + offset: 0x14270 + +d_course_luigi_raceway_vertex_0x040171C0: + symbol: d_course_luigi_raceway_vertex_0x040171C0 + type: mk64:course_vtx + count: 32 + offset: 0x14388 diff --git a/yamls/us/models/tracks/mario_raceway/mario_raceway_data.yml b/yamls/us/models/tracks/mario_raceway/mario_raceway_data.yml new file mode 100644 index 000000000..2dedb1dc6 --- /dev/null +++ b/yamls/us/models/tracks/mario_raceway/mario_raceway_data.yml @@ -0,0 +1,954 @@ +:config: + segments: + - [0x06, 0x8284D0] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/mario_raceway/mario_raceway_data.yml" + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees1"] + - [0x03009800, "textures/other_textures/gTexturePiranhaPlant1"] + - [0x0300A000, "textures/other_textures/gTexturePiranhaPlant2"] + - [0x0300A800, "textures/other_textures/gTexturePiranhaPlant3"] + - [0x0300B000, "textures/other_textures/gTexturePiranhaPlant4"] + - [0x0300B800, "textures/other_textures/gTexturePiranhaPlant5"] + - [0x0300C000, "textures/other_textures/gTexturePiranhaPlant6"] + - [0x0300C800, "textures/other_textures/gTexturePiranhaPlant7"] + - [0x0300D000, "textures/other_textures/gTexturePiranhaPlant8"] + - [0x0300D800, "textures/other_textures/gTexturePiranhaPlant9"] + # Segment 5 + - [0x05000000, "textures/other_textures/checkerboard_yellow_pink"] + - [0x05000800, "textures/other_textures/texture_64619C"] + - [0x05001000, "textures/other_textures/grass_1"] + - [0x05001800, "textures/other_textures/texture_64BB60"] + - [0x05002000, "textures/other_textures/grass_7"] + - [0x05002800, "textures/other_textures/grass_5"] + - [0x05003000, "textures/other_textures/flag_red"] + - [0x05003800, "textures/other_textures/texture_663F90"] + - [0x05004000, "textures/other_textures/texture_6642A4"] + - [0x05004800, "textures/other_textures/texture_6640B4"] + - [0x05005000, "textures/other_textures/grass_10"] + - [0x05005800, "textures/other_textures/texture_6684F8"] + - [0x05006000, "textures/other_textures/sign_luigis_0"] + - [0x05007000, "textures/other_textures/sign_luigis_1"] + - [0x05008000, "textures/other_textures/sign_mario_star_0"] + - [0x05009000, "textures/other_textures/sign_mario_star_1"] + - [0x0500A000, "textures/other_textures/texture_66C8F4"] + - [0x0500A800, "textures/other_textures/sign_nintendo_red_0"] + - [0x0500B800, "textures/other_textures/sign_nintendo_red_1"] + - [0x0500C800, "textures/other_textures/texture_670AC8"] + - [0x0500D800, "textures/other_textures/texture_674354"] + - [0x0500E000, "textures/other_textures/road_0"] + - [0x0500F000, "textures/other_textures/road_finish_0"] + - [0x05010000, "textures/other_textures/texture_67B9B0"] + - [0x05010800, "textures/other_textures/sign_yoshi"] + - [0x05011800, "textures/other_textures/checkerboard_blue_gray"] + - [0x05012800, "textures/other_textures/sign_shell_shot_0"] + - [0x05013800, "textures/other_textures/sign_shell_shot_1"] + - [0x05014800, "textures/other_textures/sign_koopa_air_0"] + - [0x05015800, "textures/other_textures/sign_koopa_air_1"] + # Segment 7 + - [0x7000000, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_0"] + - [0x7000070, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_70"] + - [0x70000E0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_E0"] + - [0x70000F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_F8"] + - [0x7000160, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_160"] + - [0x7000170, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_170"] + - [0x70001D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1D8"] + - [0x7000240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_240"] + - [0x7000258, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_258"] + - [0x70002C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2C0"] + - [0x7000328, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_328"] + - [0x70003D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3D8"] + - [0x7000450, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_450"] + - [0x7000478, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_478"] + - [0x70004A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4A0"] + - [0x70004B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4B0"] + - [0x7000588, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_588"] + - [0x70008E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_8E8"] + - [0x7000900, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_900"] + - [0x7000A08, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_A08"] + - [0x7000B10, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_B10"] + - [0x7000C18, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_C18"] + - [0x7000D20, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_D20"] + - [0x7000E28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_E28"] + - [0x7000F30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_F30"] + - [0x7001038, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1038"] + - [0x7001140, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1140"] + - [0x7001188, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1188"] + - [0x7001348, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1348"] + - [0x70013C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_13C0"] + - [0x7001438, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1438"] + - [0x70014A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_14A0"] + - [0x70014C8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_14C8"] + - [0x7001500, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1500"] + - [0x7001550, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1550"] + - [0x7001600, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1600"] + - [0x7001668, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1668"] + - [0x70016D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_16D8"] + - [0x7001770, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1770"] + - [0x70017D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_17D8"] + - [0x7001850, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1850"] + - [0x7001890, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1890"] + - [0x70018B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_18B8"] + - [0x70018E0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_18E0"] + - [0x7001950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1950"] + - [0x7001988, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1988"] + - [0x7001A08, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1A08"] + - [0x7001A80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1A80"] + - [0x7001AF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1AF8"] + - [0x7001B28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1B28"] + - [0x7001BB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1BB8"] + - [0x7001C48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1C48"] + - [0x7001CF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1CF8"] + - [0x7001DA8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1DA8"] + - [0x7001E30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1E30"] + - [0x7001EA8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1EA8"] + - [0x7001F30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1F30"] + - [0x7001FB0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1FB0"] + - [0x7002038, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2038"] + - [0x70020B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_20B0"] + - [0x7002138, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2138"] + - [0x70021C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_21C0"] + - [0x7002248, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2248"] + - [0x70022B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_22B8"] + - [0x7002340, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2340"] + - [0x70023B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_23B8"] + - [0x7002420, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2420"] + - [0x7002498, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2498"] + - [0x7002510, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2510"] + - [0x7002588, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2588"] + - [0x7002600, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2600"] + - [0x7002680, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2680"] + - [0x70026F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_26F8"] + - [0x7002760, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2760"] + - [0x70027E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_27E8"] + - [0x7002870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2870"] + - [0x70028F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_28F8"] + - [0x70029B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_29B0"] + - [0x7002A28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2A28"] + - [0x7002B10, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2B10"] + - [0x7002B98, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2B98"] + - [0x7002D68, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2D68"] + - [0x7002D80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2D80"] + - [0x7003050, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3050"] + - [0x7003060, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3060"] + - [0x7003150, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3150"] + - [0x7003240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3240"] + - [0x7003258, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3258"] + - [0x70032F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_32F0"] + - [0x7003388, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3388"] + - [0x7003460, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3460"] + - [0x7003508, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3508"] + - [0x7003530, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3530"] + - [0x70035A8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_35A8"] + - [0x7003630, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3630"] + - [0x70036B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_36B0"] + - [0x7003728, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3728"] + - [0x7003798, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3798"] + - [0x7003818, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3818"] + - [0x70038B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_38B8"] + - [0x7003950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3950"] + - [0x70039E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_39E8"] + - [0x7003AB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3AB8"] + - [0x7003BB0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3BB0"] + - [0x7003C28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3C28"] + - [0x7003CD8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3CD8"] + - [0x7003D50, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3D50"] + - [0x7003E00, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3E00"] + - [0x7003E78, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3E78"] + - [0x7003EF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3EF8"] + - [0x7003F80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3F80"] + - [0x7004028, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4028"] + - [0x70040D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_40D8"] + - [0x7004188, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4188"] + - [0x7004210, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4210"] + - [0x7004290, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4290"] + - [0x7004348, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4348"] + - [0x70043C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_43C0"] + - [0x7004458, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4458"] + - [0x70044C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_44C0"] + - [0x7004540, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4540"] + - [0x70045B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_45B0"] + - [0x70046A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_46A0"] + - [0x7004780, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4780"] + - [0x7004870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4870"] + - [0x7004950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4950"] + - [0x70049E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_49E8"] + - [0x7004A68, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4A68"] + - [0x7004AD8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4AD8"] + - [0x7004B50, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4B50"] + - [0x7004BB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4BB8"] + - [0x7004C28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4C28"] + - [0x7004CB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4CB8"] + - [0x7004D48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4D48"] + - [0x7004E20, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4E20"] + - [0x7004EE8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4EE8"] + - [0x7004F90, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4F90"] + - [0x70050E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_50E8"] + - [0x7005218, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5218"] + - [0x70052B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_52B8"] + - [0x7005368, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5368"] + - [0x7005408, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5408"] + - [0x70054B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_54B0"] + - [0x7005550, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5550"] + - [0x7005608, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5608"] + - [0x70056F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_56F0"] + - [0x7005768, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5768"] + - [0x7005870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5870"] + - [0x7005970, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5970"] + - [0x7005A48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5A48"] + - [0x7005AE0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5AE0"] + - [0x7005BC8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5BC8"] + - [0x7005C80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5C80"] + - [0x7005CE8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5CE8"] + - [0x7005D70, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5D70"] + - [0x7005DF0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5DF0"] + - [0x7005E58, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5E58"] + - [0x7005ED0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5ED0"] + - [0x7005F88, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5F88"] + - [0x7006068, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6068"] + - [0x70060F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_60F0"] + - [0x7006198, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6198"] + - [0x7006240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6240"] + - [0x70062A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_62A0"] + - [0x7006308, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6308"] + - [0x70063B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_63B0"] + - [0x7006490, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6490"] + - [0x7006528, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6528"] + - [0x7006598, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6598"] + - [0x7006710, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6710"] + - [0x70068B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_68B0"] + - [0x70068C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_68C0"] + - [0x7006928, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6928"] + - [0x7006938, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6938"] + # Segment 4 + - [0x4000000, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000000"] + - [0x40000c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040000C0"] + - [0x4000180, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000180"] + - [0x4000200, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000200"] + - [0x4000280, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000280"] + - [0x4000300, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000300"] + - [0x4000380, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000380"] + - [0x4000400, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000400"] + - [0x4000600, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000600"] + - [0x4000680, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000680"] + - [0x4000780, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000780"] + - [0x4000980, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000980"] + - [0x4000b20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000B20"] + - [0x4000d20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000D20"] + - [0x4000f20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000F20"] + - [0x4001110, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001110"] + - [0x4001310, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001310"] + - [0x4001510, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001510"] + - [0x4001700, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001700"] + - [0x4001900, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001900"] + - [0x4001b00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001B00"] + - [0x4001d00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001D00"] + - [0x4001f00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001F00"] + - [0x40020c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040020C0"] + - [0x4002120, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002120"] + - [0x40021f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040021F0"] + - [0x4002230, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002230"] + - [0x4002290, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002290"] + - [0x4002360, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002360"] + - [0x40023a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040023A0"] + - [0x4002400, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002400"] + - [0x40024d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040024D0"] + - [0x4002510, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002510"] + - [0x4002570, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002570"] + - [0x4002660, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002660"] + - [0x40026a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040026A0"] + - [0x4002700, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002700"] + - [0x40027f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040027F0"] + - [0x4002830, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002830"] + - [0x4002890, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002890"] + - [0x4002980, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002980"] + - [0x40029c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040029C0"] + - [0x4002a20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002A20"] + - [0x4002af0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002AF0"] + - [0x4002b30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002B30"] + - [0x4002b90, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002B90"] + - [0x4002c60, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002C60"] + - [0x4002ca0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002CA0"] + - [0x4002db0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002DB0"] + - [0x4002ed0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002ED0"] + - [0x4002f90, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002F90"] + - [0x4003050, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003050"] + - [0x4003130, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003130"] + - [0x40032b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040032B0"] + - [0x4003310, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003310"] + - [0x4003410, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003410"] + - [0x40035c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040035C0"] + - [0x40037c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040037C0"] + - [0x40039c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040039C0"] + - [0x4003a00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003A00"] + - [0x4003be0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003BE0"] + - [0x4003c20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003C20"] + - [0x4003e20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003E20"] + - [0x4003ea0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003EA0"] + - [0x40040a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040040A0"] + - [0x4004250, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004250"] + - [0x4004450, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004450"] + - [0x4004490, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004490"] + - [0x4004510, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004510"] + - [0x4004550, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004550"] + - [0x4004690, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004690"] + - [0x4004700, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004700"] + - [0x4004780, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004780"] + - [0x4004980, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004980"] + - [0x4004a00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004A00"] + - [0x4004b00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004B00"] + - [0x4004d00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004D00"] + - [0x4004e00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004E00"] + - [0x4005000, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005000"] + - [0x40050c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040050C0"] + - [0x40052b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040052B0"] + - [0x4005370, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005370"] + - [0x4005430, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005430"] + - [0x40055d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040055D0"] + - [0x40057d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040057D0"] + - [0x4005840, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005840"] + - [0x4005a40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005A40"] + - [0x4005ac0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005AC0"] + - [0x4005c40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005C40"] + - [0x4005d40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005D40"] + - [0x4005e80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005E80"] + - [0x4005fa0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005FA0"] + - [0x4006120, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006120"] + - [0x4006220, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006220"] + - [0x40063a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040063A0"] + - [0x4006520, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006520"] + - [0x40066a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040066A0"] + - [0x4006760, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006760"] + - [0x40068e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040068E0"] + - [0x40069e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040069E0"] + - [0x4006a60, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006A60"] + - [0x4006b20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006B20"] + - [0x4006c00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006C00"] + - [0x4006ce0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006CE0"] + - [0x4006da0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006DA0"] + - [0x4006ec0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006EC0"] + - [0x4006f80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006F80"] + - [0x4007000, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007000"] + - [0x4007160, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007160"] + - [0x40072c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040072C0"] + - [0x4007440, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007440"] + - [0x4007640, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007640"] + - [0x40076b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040076B0"] + - [0x40077b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040077B0"] + - [0x4007930, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007930"] + - [0x4007b10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007B10"] + - [0x4007d10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007D10"] + - [0x4007f10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007F10"] + - [0x4008100, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008100"] + - [0x40082e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040082E0"] + - [0x4008360, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008360"] + - [0x4008560, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008560"] + - [0x4008750, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008750"] + - [0x4008950, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008950"] + - [0x4008b50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008B50"] + - [0x4008ce0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008CE0"] + - [0x4008d30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008D30"] + - [0x4008db0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008DB0"] + - [0x4008df0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008DF0"] + - [0x4008e30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008E30"] + - [0x4008e70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008E70"] + - [0x4008eb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008EB0"] + - [0x4008f30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008F30"] + - [0x4008f70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008F70"] + - [0x4008fb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008FB0"] + - [0x4008ff0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008FF0"] + - [0x4009030, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009030"] + - [0x4009170, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009170"] + - [0x40092b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040092B0"] + - [0x4009330, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009330"] + - [0x40093b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040093B0"] + - [0x4009500, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009500"] + - [0x40096e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040096E0"] + - [0x4009890, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009890"] + - [0x4009a00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009A00"] + - [0x4009af0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009AF0"] + - [0x4009c80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009C80"] + - [0x4009e60, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009E60"] + - [0x4009f50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009F50"] + - [0x400a130, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A130"] + - [0x400a1f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A1F0"] + - [0x400a3f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A3F0"] + - [0x400a450, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A450"] + - [0x400a650, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A650"] + - [0x400a850, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A850"] + - [0x400a8b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A8B0"] + - [0x400aa90, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AA90"] + - [0x400ac70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AC70"] + - [0x400ae50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AE50"] + - [0x400aee0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AEE0"] + - [0x400b020, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B020"] + - [0x400b200, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B200"] + - [0x400b380, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B380"] + - [0x400b4c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B4C0"] + - [0x400b6b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B6B0"] + - [0x400b830, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B830"] + - [0x400b970, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B970"] + - [0x400bb10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BB10"] + - [0x400bd10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BD10"] + - [0x400bf00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BF00"] + - [0x400bff0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BFF0"] + - [0x400c1d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C1D0"] + - [0x400c340, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C340"] + - [0x400c540, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C540"] + - [0x400c6c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C6C0"] + - [0x400c890, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C890"] + - [0x400ca60, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CA60"] + - [0x400cc50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CC50"] + - [0x400ce20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CE20"] + - [0x400cfa0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CFA0"] + - [0x400d1a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D1A0"] + - [0x400d200, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D200"] + - [0x400d2c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D2C0"] + - [0x400d440, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D440"] + - [0x400d520, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D520"] + - [0x400d710, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D710"] + - [0x400d900, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D900"] + - [0x400d9f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D9F0"] + - [0x400dbe0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DBE0"] + - [0x400ddd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DDD0"] + - [0x400df70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DF70"] + - [0x400e150, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E150"] + - [0x400e350, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E350"] + - [0x400e420, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E420"] + - [0x400e600, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E600"] + - [0x400e630, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E630"] + - [0x400e7d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E7D0"] + - [0x400e8a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E8A0"] + - [0x400ea20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EA20"] + - [0x400eae0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EAE0"] + - [0x400ebd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EBD0"] + - [0x400edb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EDB0"] + - [0x400ee10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EE10"] + - [0x400eff0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EFF0"] + - [0x400f050, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F050"] + - [0x400f230, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F230"] + - [0x400f430, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F430"] + - [0x400f510, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F510"] + - [0x400f6f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F6F0"] + - [0x400f870, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F870"] + - [0x400fa70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FA70"] + - [0x400fb40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FB40"] + - [0x400fd20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FD20"] + - [0x400ff20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FF20"] + - [0x4010110, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010110"] + - [0x4010300, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010300"] + - [0x40103f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040103F0"] + - [0x40105e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040105E0"] + - [0x40107d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040107D0"] + - [0x40109d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040109D0"] + - [0x4010bd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010BD0"] + - [0x4010dd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010DD0"] + - [0x4010e80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010E80"] + - [0x4011060, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011060"] + - [0x4011200, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011200"] + - [0x4011400, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011400"] + - [0x40114b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040114B0"] + - [0x40116b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040116B0"] + - [0x4011790, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011790"] + - [0x4011970, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011970"] + - [0x40119a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040119A0"] + - [0x4011ba0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011BA0"] + - [0x4011d50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011D50"] + - [0x4011f30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011F30"] + - [0x4012130, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012130"] + - [0x4012270, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012270"] + - [0x4012390, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012390"] + - [0x4012590, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012590"] + - [0x4012790, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012790"] + - [0x4012980, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012980"] + - [0x40129b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040129B0"] + - [0x4012b90, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012B90"] + - [0x4012d80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012D80"] + - [0x4012f80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012F80"] + - [0x4012fb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012FB0"] + - [0x40131a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040131A0"] + - [0x4013390, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013390"] + - [0x4013450, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013450"] + - [0x4013640, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013640"] + - [0x4013670, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013670"] + - [0x4013860, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013860"] + - [0x4013a40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013A40"] + - [0x4013bc0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013BC0"] + - [0x4013db0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013DB0"] + - [0x4013f50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013F50"] + - [0x4013fe0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013FE0"] + - [0x40141d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040141D0"] + - [0x4014300, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014300"] + - [0x4014350, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014350"] + - [0x4014400, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014400"] + - [0x40145f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040145F0"] + - [0x4014770, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014770"] + - [0x4014970, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014970"] + - [0x4014b70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014B70"] + - [0x4014c50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014C50"] + - [0x4014da0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014DA0"] + - [0x4014fa0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014FA0"] + - [0x4015060, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015060"] + - [0x4015260, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015260"] + - [0x4015370, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015370"] + - [0x40153a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040153A0"] + - [0x4015420, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015420"] + - [0x4015620, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015620"] + - [0x4015700, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015700"] + - [0x4015900, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015900"] + - [0x4015b00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015B00"] + - [0x4015bf0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015BF0"] + - [0x4015dd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015DD0"] + - [0x4015e00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015E00"] + - [0x4015eb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015EB0"] + - [0x40160a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040160A0"] + - [0x4016290, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016290"] + - [0x4016490, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016490"] + - [0x4016690, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016690"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_mario_raceway_dl_0: + symbol: d_course_mario_raceway_dl_0 + type: gfx + offset: 0x0 + otr_mode: index +d_course_mario_raceway_dl_E8: + symbol: d_course_mario_raceway_dl_E8 + type: gfx + offset: 0xE8 + otr_mode: index +d_course_mario_raceway_dl_1D0: + symbol: d_course_mario_raceway_dl_1D0 + type: gfx + offset: 0x1D0 + otr_mode: index +d_course_mario_raceway_dl_2C8: + symbol: d_course_mario_raceway_dl_2C8 + type: gfx + offset: 0x2C8 + otr_mode: index +d_course_mario_raceway_dl_3A8: + symbol: d_course_mario_raceway_dl_3A8 + type: gfx + offset: 0x3A8 + otr_mode: index +d_course_mario_raceway_dl_478: + symbol: d_course_mario_raceway_dl_478 + type: gfx + offset: 0x478 + otr_mode: index +d_course_mario_raceway_dl_568: + symbol: d_course_mario_raceway_dl_568 + type: gfx + offset: 0x568 + otr_mode: index +d_course_mario_raceway_dl_668: + symbol: d_course_mario_raceway_dl_668 + type: gfx + offset: 0x668 + otr_mode: index +d_course_mario_raceway_dl_750: + symbol: d_course_mario_raceway_dl_750 + type: gfx + offset: 0x750 + otr_mode: index +d_course_mario_raceway_dl_828: + symbol: d_course_mario_raceway_dl_828 + type: gfx + offset: 0x828 + otr_mode: index +d_course_mario_raceway_dl_928: + symbol: d_course_mario_raceway_dl_928 + type: gfx + offset: 0x928 + otr_mode: index +d_course_mario_raceway_dl_A00: + symbol: d_course_mario_raceway_dl_A00 + type: gfx + offset: 0xA00 + otr_mode: index +d_course_mario_raceway_dl_B08: + symbol: d_course_mario_raceway_dl_B08 + type: gfx + offset: 0xB08 + otr_mode: index +d_course_mario_raceway_dl_C20: + symbol: d_course_mario_raceway_dl_C20 + type: gfx + offset: 0xC20 + otr_mode: index +d_course_mario_raceway_dl_DC8: + symbol: d_course_mario_raceway_dl_DC8 + type: gfx + offset: 0xDC8 + otr_mode: index +d_course_mario_raceway_dl_F60: + symbol: d_course_mario_raceway_dl_F60 + type: gfx + offset: 0xF60 + otr_mode: index +d_course_mario_raceway_dl_10A8: + symbol: d_course_mario_raceway_dl_10A8 + type: gfx + offset: 0x10A8 + otr_mode: index +d_course_mario_raceway_dl_1210: + symbol: d_course_mario_raceway_dl_1210 + type: gfx + offset: 0x1210 + otr_mode: index +d_course_mario_raceway_dl_1408: + symbol: d_course_mario_raceway_dl_1408 + type: gfx + offset: 0x1408 + otr_mode: index +d_course_mario_raceway_dl_15C8: + symbol: d_course_mario_raceway_dl_15C8 + type: gfx + offset: 0x15C8 + otr_mode: index +d_course_mario_raceway_dl_1740: + symbol: d_course_mario_raceway_dl_1740 + type: gfx + offset: 0x1740 + otr_mode: index +d_course_mario_raceway_dl_1850: + symbol: d_course_mario_raceway_dl_1850 + type: gfx + offset: 0x1850 + otr_mode: index +d_course_mario_raceway_dl_1A30: + symbol: d_course_mario_raceway_dl_1A30 + type: gfx + offset: 0x1A30 + otr_mode: index +d_course_mario_raceway_dl_1B70: + symbol: d_course_mario_raceway_dl_1B70 + type: gfx + offset: 0x1B70 + otr_mode: index +d_course_mario_raceway_dl_1CF8: + symbol: d_course_mario_raceway_dl_1CF8 + type: gfx + offset: 0x1CF8 + otr_mode: index +d_course_mario_raceway_dl_1DE0: + symbol: d_course_mario_raceway_dl_1DE0 + type: gfx + offset: 0x1DE0 + otr_mode: index +d_course_mario_raceway_dl_1F68: + symbol: d_course_mario_raceway_dl_1F68 + type: gfx + offset: 0x1F68 + otr_mode: index +d_course_mario_raceway_dl_20A0: + symbol: d_course_mario_raceway_dl_20A0 + type: gfx + offset: 0x20A0 + otr_mode: index +d_course_mario_raceway_dl_21E8: + symbol: d_course_mario_raceway_dl_21E8 + type: gfx + offset: 0x21E8 + otr_mode: index +d_course_mario_raceway_dl_22E0: + symbol: d_course_mario_raceway_dl_22E0 + type: gfx + offset: 0x22E0 + otr_mode: index +d_course_mario_raceway_dl_2418: + symbol: d_course_mario_raceway_dl_2418 + type: gfx + offset: 0x2418 + otr_mode: index +d_course_mario_raceway_dl_2558: + symbol: d_course_mario_raceway_dl_2558 + type: gfx + offset: 0x2558 + otr_mode: index +d_course_mario_raceway_dl_2680: + symbol: d_course_mario_raceway_dl_2680 + type: gfx + offset: 0x2680 + otr_mode: index +d_course_mario_raceway_dl_2790: + symbol: d_course_mario_raceway_dl_2790 + type: gfx + offset: 0x2790 + otr_mode: index +d_course_mario_raceway_dl_28B0: + symbol: d_course_mario_raceway_dl_28B0 + type: gfx + offset: 0x28B0 + otr_mode: index +d_course_mario_raceway_dl_2A10: + symbol: d_course_mario_raceway_dl_2A10 + type: gfx + offset: 0x2A10 + otr_mode: index +d_course_mario_raceway_dl_2B40: + symbol: d_course_mario_raceway_dl_2B40 + type: gfx + offset: 0x2B40 + otr_mode: index +d_course_mario_raceway_dl_2C98: + symbol: d_course_mario_raceway_dl_2C98 + type: gfx + offset: 0x2C98 + otr_mode: index +d_course_mario_raceway_dl_2DC0: + symbol: d_course_mario_raceway_dl_2DC0 + type: gfx + offset: 0x2DC0 + otr_mode: index +d_course_mario_raceway_dl_2EF8: + symbol: d_course_mario_raceway_dl_2EF8 + type: gfx + offset: 0x2EF8 + otr_mode: index +d_course_mario_raceway_dl_3038: + symbol: d_course_mario_raceway_dl_3038 + type: gfx + offset: 0x3038 + otr_mode: index +d_course_mario_raceway_dl_31F0: + symbol: d_course_mario_raceway_dl_31F0 + type: gfx + offset: 0x31F0 + otr_mode: index +d_course_mario_raceway_dl_32D8: + symbol: d_course_mario_raceway_dl_32D8 + type: gfx + offset: 0x32D8 + otr_mode: index +d_course_mario_raceway_dl_3458: + symbol: d_course_mario_raceway_dl_3458 + type: gfx + offset: 0x3458 + otr_mode: index +d_course_mario_raceway_dl_35D0: + symbol: d_course_mario_raceway_dl_35D0 + type: gfx + offset: 0x35D0 + otr_mode: index +d_course_mario_raceway_dl_3748: + symbol: d_course_mario_raceway_dl_3748 + type: gfx + offset: 0x3748 + otr_mode: index +d_course_mario_raceway_dl_3830: + symbol: d_course_mario_raceway_dl_3830 + type: gfx + offset: 0x3830 + otr_mode: index +d_course_mario_raceway_dl_3960: + symbol: d_course_mario_raceway_dl_3960 + type: gfx + offset: 0x3960 + otr_mode: index +d_course_mario_raceway_dl_3AA0: + symbol: d_course_mario_raceway_dl_3AA0 + type: gfx + offset: 0x3AA0 + otr_mode: index +d_course_mario_raceway_dl_3C08: + symbol: d_course_mario_raceway_dl_3C08 + type: gfx + offset: 0x3C08 + otr_mode: index +d_course_mario_raceway_dl_3D68: + symbol: d_course_mario_raceway_dl_3D68 + type: gfx + offset: 0x3D68 + otr_mode: index +d_course_mario_raceway_dl_3EB8: + symbol: d_course_mario_raceway_dl_3EB8 + type: gfx + offset: 0x3EB8 + otr_mode: index +d_course_mario_raceway_dl_4038: + symbol: d_course_mario_raceway_dl_4038 + type: gfx + offset: 0x4038 + otr_mode: index +d_course_mario_raceway_dl_4150: + symbol: d_course_mario_raceway_dl_4150 + type: gfx + offset: 0x4150 + otr_mode: index +d_course_mario_raceway_dl_42A0: + symbol: d_course_mario_raceway_dl_42A0 + type: gfx + offset: 0x42A0 + otr_mode: index +d_course_mario_raceway_dl_43D8: + symbol: d_course_mario_raceway_dl_43D8 + type: gfx + offset: 0x43D8 + otr_mode: index +d_course_mario_raceway_dl_44F8: + symbol: d_course_mario_raceway_dl_44F8 + type: gfx + offset: 0x44F8 + otr_mode: index +d_course_mario_raceway_dl_4610: + symbol: d_course_mario_raceway_dl_4610 + type: gfx + offset: 0x4610 + otr_mode: index +d_course_mario_raceway_dl_4738: + symbol: d_course_mario_raceway_dl_4738 + type: gfx + offset: 0x4738 + otr_mode: index +d_course_mario_raceway_dl_4840: + symbol: d_course_mario_raceway_dl_4840 + type: gfx + offset: 0x4840 + otr_mode: index +d_course_mario_raceway_dl_4910: + symbol: d_course_mario_raceway_dl_4910 + type: gfx + offset: 0x4910 + otr_mode: index +d_course_mario_raceway_dl_4A60: + symbol: d_course_mario_raceway_dl_4A60 + type: gfx + offset: 0x4A60 + otr_mode: index +d_course_mario_raceway_dl_4B78: + symbol: d_course_mario_raceway_dl_4B78 + type: gfx + offset: 0x4B78 + otr_mode: index +d_course_mario_raceway_dl_4CD8: + symbol: d_course_mario_raceway_dl_4CD8 + type: gfx + offset: 0x4CD8 + otr_mode: index +d_course_mario_raceway_dl_4DC8: + symbol: d_course_mario_raceway_dl_4DC8 + type: gfx + offset: 0x4DC8 + otr_mode: index +d_course_mario_raceway_dl_4ED0: + symbol: d_course_mario_raceway_dl_4ED0 + type: gfx + offset: 0x4ED0 + otr_mode: index +d_course_mario_raceway_dl_4FF0: + symbol: d_course_mario_raceway_dl_4FF0 + type: gfx + offset: 0x4FF0 + otr_mode: index +d_course_mario_raceway_dl_5150: + symbol: d_course_mario_raceway_dl_5150 + type: gfx + offset: 0x5150 + otr_mode: index +d_course_mario_raceway_dl_5228: + symbol: d_course_mario_raceway_dl_5228 + type: gfx + offset: 0x5228 + otr_mode: index +d_course_mario_raceway_piranha_plant_model: + symbol: d_course_mario_raceway_piranha_plant_model + type: vtx + offset: 0x6950 + count: 4 +d_course_mario_raceway_dl_piranha_plant: + symbol: d_course_mario_raceway_dl_piranha_plant + type: gfx + offset: 0x6990 + otr_mode: index +d_course_mario_raceway_tree_model: + symbol: d_course_mario_raceway_tree_model + type: vtx + offset: 0x6A28 + count: 4 +d_course_mario_raceway_dl_tree: + symbol: d_course_mario_raceway_dl_tree + type: gfx + offset: 0x6A68 + otr_mode: index +d_course_mario_sign_model: + symbol: d_course_mario_sign_model + type: vtx + offset: 0x6B08 + count: 8 +d_course_mario_raceway_06006B88: + symbol: d_course_mario_raceway_06006B88 + type: vtx + offset: 0x6B88 + count: 30 +d_course_mario_raceway_06006D68: + symbol: d_course_mario_raceway_06006D68 + type: vtx + offset: 0x6D68 + count: 24 +d_course_mario_raceway_06006EE8: + symbol: d_course_mario_raceway_06006EE8 + type: vtx + offset: 0x6EE8 + count: 6 +d_course_mario_raceway_06006F48: + symbol: d_course_mario_raceway_06006F48 + type: vtx + offset: 0x6F48 + count: 6 +d_course_mario_raceway_06006FA8: + symbol: d_course_mario_raceway_06006FA8 + type: vtx + offset: 0x6FA8 + count: 6 +d_course_mario_raceway_06007008: + symbol: d_course_mario_raceway_06007008 + type: vtx + offset: 0x7008 + count: 6 +d_course_mario_raceway_dl_9068: + symbol: d_course_mario_raceway_dl_9068 + type: gfx + offset: 0x9068 + otr_mode: index +d_course_mario_raceway_dl_90B0: + symbol: d_course_mario_raceway_dl_90B0 + type: gfx + offset: 0x90B0 +d_course_mario_raceway_dl_90C0: + symbol: d_course_mario_raceway_dl_90C0 + type: gfx + offset: 0x90C0 + otr_mode: index +d_course_mario_raceway_dl_9190: + symbol: d_course_mario_raceway_dl_9190 + type: gfx + offset: 0x9190 + otr_mode: index +d_course_mario_raceway_dl_9250: + symbol: d_course_mario_raceway_dl_9250 + type: gfx + offset: 0x9250 + otr_mode: index +d_course_mario_raceway_dl_9310: + symbol: d_course_mario_raceway_dl_9310 + type: gfx + offset: 0x9310 +d_course_mario_raceway_dl_sign: + symbol: d_course_mario_raceway_dl_sign + type: gfx + offset: 0x9330 +d_course_mario_raceway_dl_9348: + symbol: d_course_mario_raceway_dl_9348 + type: gfx + offset: 0x9348 + otr_mode: index diff --git a/yamls/us/models/tracks/mario_raceway/mario_raceway_displaylists.yml b/yamls/us/models/tracks/mario_raceway/mario_raceway_displaylists.yml new file mode 100644 index 000000000..5bac78262 --- /dev/null +++ b/yamls/us/models/tracks/mario_raceway/mario_raceway_displaylists.yml @@ -0,0 +1,1213 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x899104 + no_compression: true + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees1"] + - [0x03009800, "textures/other_textures/gTexturePiranhaPlant1"] + - [0x0300A000, "textures/other_textures/gTexturePiranhaPlant2"] + - [0x0300A800, "textures/other_textures/gTexturePiranhaPlant3"] + - [0x0300B000, "textures/other_textures/gTexturePiranhaPlant4"] + - [0x0300B800, "textures/other_textures/gTexturePiranhaPlant5"] + - [0x0300C000, "textures/other_textures/gTexturePiranhaPlant6"] + - [0x0300C800, "textures/other_textures/gTexturePiranhaPlant7"] + - [0x0300D000, "textures/other_textures/gTexturePiranhaPlant8"] + - [0x0300D800, "textures/other_textures/gTexturePiranhaPlant9"] + # Segment 5 + - [0x05000000, "textures/other_textures/checkerboard_yellow_pink"] + - [0x05000800, "textures/other_textures/texture_64619C"] + - [0x05001000, "textures/other_textures/grass_1"] + - [0x05001800, "textures/other_textures/texture_64BB60"] + - [0x05002000, "textures/other_textures/grass_7"] + - [0x05002800, "textures/other_textures/grass_5"] + - [0x05003000, "textures/other_textures/flag_red"] + - [0x05003800, "textures/other_textures/texture_663F90"] + - [0x05004000, "textures/other_textures/texture_6642A4"] + - [0x05004800, "textures/other_textures/texture_6640B4"] + - [0x05005000, "textures/other_textures/grass_10"] + - [0x05005800, "textures/other_textures/texture_6684F8"] + - [0x05006000, "textures/other_textures/sign_luigis_0"] + - [0x05007000, "textures/other_textures/sign_luigis_1"] + - [0x05008000, "textures/other_textures/sign_mario_star_0"] + - [0x05009000, "textures/other_textures/sign_mario_star_1"] + - [0x0500A000, "textures/other_textures/texture_66C8F4"] + - [0x0500A800, "textures/other_textures/sign_nintendo_red_0"] + - [0x0500B800, "textures/other_textures/sign_nintendo_red_1"] + - [0x0500C800, "textures/other_textures/texture_670AC8"] + - [0x0500D800, "textures/other_textures/texture_674354"] + - [0x0500E000, "textures/other_textures/road_0"] + - [0x0500F000, "textures/other_textures/road_finish_0"] + - [0x05010000, "textures/other_textures/texture_67B9B0"] + - [0x05010800, "textures/other_textures/sign_yoshi"] + - [0x05011800, "textures/other_textures/checkerboard_blue_gray"] + - [0x05012800, "textures/other_textures/sign_shell_shot_0"] + - [0x05013800, "textures/other_textures/sign_shell_shot_1"] + - [0x05014800, "textures/other_textures/sign_koopa_air_0"] + - [0x05015800, "textures/other_textures/sign_koopa_air_1"] + # Segment 7 + - [0x7000000, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_0"] + - [0x7000070, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_70"] + - [0x70000E0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_E0"] + - [0x70000F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_F8"] + - [0x7000160, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_160"] + - [0x7000170, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_170"] + - [0x70001D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1D8"] + - [0x7000240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_240"] + - [0x7000258, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_258"] + - [0x70002C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2C0"] + - [0x7000328, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_328"] + - [0x70003D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3D8"] + - [0x7000450, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_450"] + - [0x7000478, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_478"] + - [0x70004A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4A0"] + - [0x70004B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4B0"] + - [0x7000588, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_588"] + - [0x70008E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_8E8"] + - [0x7000900, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_900"] + - [0x7000A08, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_A08"] + - [0x7000B10, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_B10"] + - [0x7000C18, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_C18"] + - [0x7000D20, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_D20"] + - [0x7000E28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_E28"] + - [0x7000F30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_F30"] + - [0x7001038, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1038"] + - [0x7001140, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1140"] + - [0x7001188, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1188"] + - [0x7001348, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1348"] + - [0x70013C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_13C0"] + - [0x7001438, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1438"] + - [0x70014A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_14A0"] + - [0x70014C8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_14C8"] + - [0x7001500, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1500"] + - [0x7001550, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1550"] + - [0x7001600, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1600"] + - [0x7001668, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1668"] + - [0x70016D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_16D8"] + - [0x7001770, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1770"] + - [0x70017D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_17D8"] + - [0x7001850, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1850"] + - [0x7001890, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1890"] + - [0x70018B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_18B8"] + - [0x70018E0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_18E0"] + - [0x7001950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1950"] + - [0x7001988, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1988"] + - [0x7001A08, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1A08"] + - [0x7001A80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1A80"] + - [0x7001AF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1AF8"] + - [0x7001B28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1B28"] + - [0x7001BB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1BB8"] + - [0x7001C48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1C48"] + - [0x7001CF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1CF8"] + - [0x7001DA8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1DA8"] + - [0x7001E30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1E30"] + - [0x7001EA8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1EA8"] + - [0x7001F30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1F30"] + - [0x7001FB0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1FB0"] + - [0x7002038, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2038"] + - [0x70020B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_20B0"] + - [0x7002138, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2138"] + - [0x70021C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_21C0"] + - [0x7002248, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2248"] + - [0x70022B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_22B8"] + - [0x7002340, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2340"] + - [0x70023B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_23B8"] + - [0x7002420, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2420"] + - [0x7002498, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2498"] + - [0x7002510, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2510"] + - [0x7002588, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2588"] + - [0x7002600, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2600"] + - [0x7002680, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2680"] + - [0x70026F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_26F8"] + - [0x7002760, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2760"] + - [0x70027E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_27E8"] + - [0x7002870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2870"] + - [0x70028F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_28F8"] + - [0x70029B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_29B0"] + - [0x7002A28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2A28"] + - [0x7002B10, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2B10"] + - [0x7002B98, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2B98"] + - [0x7002D68, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2D68"] + - [0x7002D80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2D80"] + - [0x7003050, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3050"] + - [0x7003060, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3060"] + - [0x7003150, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3150"] + - [0x7003240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3240"] + - [0x7003258, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3258"] + - [0x70032F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_32F0"] + - [0x7003388, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3388"] + - [0x7003460, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3460"] + - [0x7003508, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3508"] + - [0x7003530, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3530"] + - [0x70035A8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_35A8"] + - [0x7003630, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3630"] + - [0x70036B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_36B0"] + - [0x7003728, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3728"] + - [0x7003798, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3798"] + - [0x7003818, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3818"] + - [0x70038B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_38B8"] + - [0x7003950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3950"] + - [0x70039E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_39E8"] + - [0x7003AB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3AB8"] + - [0x7003BB0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3BB0"] + - [0x7003C28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3C28"] + - [0x7003CD8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3CD8"] + - [0x7003D50, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3D50"] + - [0x7003E00, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3E00"] + - [0x7003E78, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3E78"] + - [0x7003EF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3EF8"] + - [0x7003F80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3F80"] + - [0x7004028, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4028"] + - [0x70040D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_40D8"] + - [0x7004188, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4188"] + - [0x7004210, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4210"] + - [0x7004290, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4290"] + - [0x7004348, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4348"] + - [0x70043C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_43C0"] + - [0x7004458, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4458"] + - [0x70044C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_44C0"] + - [0x7004540, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4540"] + - [0x70045B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_45B0"] + - [0x70046A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_46A0"] + - [0x7004780, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4780"] + - [0x7004870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4870"] + - [0x7004950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4950"] + - [0x70049E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_49E8"] + - [0x7004A68, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4A68"] + - [0x7004AD8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4AD8"] + - [0x7004B50, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4B50"] + - [0x7004BB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4BB8"] + - [0x7004C28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4C28"] + - [0x7004CB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4CB8"] + - [0x7004D48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4D48"] + - [0x7004E20, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4E20"] + - [0x7004EE8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4EE8"] + - [0x7004F90, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4F90"] + - [0x70050E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_50E8"] + - [0x7005218, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5218"] + - [0x70052B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_52B8"] + - [0x7005368, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5368"] + - [0x7005408, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5408"] + - [0x70054B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_54B0"] + - [0x7005550, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5550"] + - [0x7005608, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5608"] + - [0x70056F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_56F0"] + - [0x7005768, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5768"] + - [0x7005870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5870"] + - [0x7005970, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5970"] + - [0x7005A48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5A48"] + - [0x7005AE0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5AE0"] + - [0x7005BC8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5BC8"] + - [0x7005C80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5C80"] + - [0x7005CE8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5CE8"] + - [0x7005D70, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5D70"] + - [0x7005DF0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5DF0"] + - [0x7005E58, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5E58"] + - [0x7005ED0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5ED0"] + - [0x7005F88, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5F88"] + - [0x7006068, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6068"] + - [0x70060F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_60F0"] + - [0x7006198, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6198"] + - [0x7006240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6240"] + - [0x70062A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_62A0"] + - [0x7006308, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6308"] + - [0x70063B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_63B0"] + - [0x7006490, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6490"] + - [0x7006528, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6528"] + - [0x7006598, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6598"] + - [0x7006710, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6710"] + - [0x70068B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_68B0"] + - [0x70068C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_68C0"] + - [0x7006928, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6928"] + - [0x7006938, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6938"] + # Segment 4 + - [0x4000000, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000000"] + - [0x40000c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040000C0"] + - [0x4000180, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000180"] + - [0x4000200, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000200"] + - [0x4000280, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000280"] + - [0x4000300, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000300"] + - [0x4000380, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000380"] + - [0x4000400, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000400"] + - [0x4000600, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000600"] + - [0x4000680, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000680"] + - [0x4000780, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000780"] + - [0x4000980, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000980"] + - [0x4000b20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000B20"] + - [0x4000d20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000D20"] + - [0x4000f20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04000F20"] + - [0x4001110, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001110"] + - [0x4001310, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001310"] + - [0x4001510, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001510"] + - [0x4001700, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001700"] + - [0x4001900, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001900"] + - [0x4001b00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001B00"] + - [0x4001d00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001D00"] + - [0x4001f00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04001F00"] + - [0x40020c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040020C0"] + - [0x4002120, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002120"] + - [0x40021f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040021F0"] + - [0x4002230, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002230"] + - [0x4002290, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002290"] + - [0x4002360, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002360"] + - [0x40023a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040023A0"] + - [0x4002400, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002400"] + - [0x40024d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040024D0"] + - [0x4002510, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002510"] + - [0x4002570, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002570"] + - [0x4002660, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002660"] + - [0x40026a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040026A0"] + - [0x4002700, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002700"] + - [0x40027f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040027F0"] + - [0x4002830, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002830"] + - [0x4002890, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002890"] + - [0x4002980, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002980"] + - [0x40029c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040029C0"] + - [0x4002a20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002A20"] + - [0x4002af0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002AF0"] + - [0x4002b30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002B30"] + - [0x4002b90, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002B90"] + - [0x4002c60, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002C60"] + - [0x4002ca0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002CA0"] + - [0x4002db0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002DB0"] + - [0x4002ed0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002ED0"] + - [0x4002f90, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04002F90"] + - [0x4003050, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003050"] + - [0x4003130, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003130"] + - [0x40032b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040032B0"] + - [0x4003310, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003310"] + - [0x4003410, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003410"] + - [0x40035c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040035C0"] + - [0x40037c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040037C0"] + - [0x40039c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040039C0"] + - [0x4003a00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003A00"] + - [0x4003be0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003BE0"] + - [0x4003c20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003C20"] + - [0x4003e20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003E20"] + - [0x4003ea0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04003EA0"] + - [0x40040a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040040A0"] + - [0x4004250, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004250"] + - [0x4004450, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004450"] + - [0x4004490, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004490"] + - [0x4004510, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004510"] + - [0x4004550, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004550"] + - [0x4004690, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004690"] + - [0x4004700, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004700"] + - [0x4004780, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004780"] + - [0x4004980, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004980"] + - [0x4004a00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004A00"] + - [0x4004b00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004B00"] + - [0x4004d00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004D00"] + - [0x4004e00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04004E00"] + - [0x4005000, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005000"] + - [0x40050c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040050C0"] + - [0x40052b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040052B0"] + - [0x4005370, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005370"] + - [0x4005430, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005430"] + - [0x40055d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040055D0"] + - [0x40057d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040057D0"] + - [0x4005840, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005840"] + - [0x4005a40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005A40"] + - [0x4005ac0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005AC0"] + - [0x4005c40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005C40"] + - [0x4005d40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005D40"] + - [0x4005e80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005E80"] + - [0x4005fa0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04005FA0"] + - [0x4006120, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006120"] + - [0x4006220, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006220"] + - [0x40063a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040063A0"] + - [0x4006520, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006520"] + - [0x40066a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040066A0"] + - [0x4006760, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006760"] + - [0x40068e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040068E0"] + - [0x40069e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040069E0"] + - [0x4006a60, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006A60"] + - [0x4006b20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006B20"] + - [0x4006c00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006C00"] + - [0x4006ce0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006CE0"] + - [0x4006da0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006DA0"] + - [0x4006ec0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006EC0"] + - [0x4006f80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04006F80"] + - [0x4007000, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007000"] + - [0x4007160, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007160"] + - [0x40072c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040072C0"] + - [0x4007440, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007440"] + - [0x4007640, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007640"] + - [0x40076b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040076B0"] + - [0x40077b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040077B0"] + - [0x4007930, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007930"] + - [0x4007b10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007B10"] + - [0x4007d10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007D10"] + - [0x4007f10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04007F10"] + - [0x4008100, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008100"] + - [0x40082e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040082E0"] + - [0x4008360, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008360"] + - [0x4008560, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008560"] + - [0x4008750, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008750"] + - [0x4008950, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008950"] + - [0x4008b50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008B50"] + - [0x4008ce0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008CE0"] + - [0x4008d30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008D30"] + - [0x4008db0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008DB0"] + - [0x4008df0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008DF0"] + - [0x4008e30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008E30"] + - [0x4008e70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008E70"] + - [0x4008eb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008EB0"] + - [0x4008f30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008F30"] + - [0x4008f70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008F70"] + - [0x4008fb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008FB0"] + - [0x4008ff0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04008FF0"] + - [0x4009030, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009030"] + - [0x4009170, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009170"] + - [0x40092b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040092B0"] + - [0x4009330, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009330"] + - [0x40093b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040093B0"] + - [0x4009500, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009500"] + - [0x40096e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040096E0"] + - [0x4009890, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009890"] + - [0x4009a00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009A00"] + - [0x4009af0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009AF0"] + - [0x4009c80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009C80"] + - [0x4009e60, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009E60"] + - [0x4009f50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04009F50"] + - [0x400a130, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A130"] + - [0x400a1f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A1F0"] + - [0x400a3f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A3F0"] + - [0x400a450, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A450"] + - [0x400a650, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A650"] + - [0x400a850, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A850"] + - [0x400a8b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400A8B0"] + - [0x400aa90, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AA90"] + - [0x400ac70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AC70"] + - [0x400ae50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AE50"] + - [0x400aee0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400AEE0"] + - [0x400b020, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B020"] + - [0x400b200, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B200"] + - [0x400b380, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B380"] + - [0x400b4c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B4C0"] + - [0x400b6b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B6B0"] + - [0x400b830, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B830"] + - [0x400b970, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400B970"] + - [0x400bb10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BB10"] + - [0x400bd10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BD10"] + - [0x400bf00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BF00"] + - [0x400bff0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400BFF0"] + - [0x400c1d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C1D0"] + - [0x400c340, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C340"] + - [0x400c540, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C540"] + - [0x400c6c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C6C0"] + - [0x400c890, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400C890"] + - [0x400ca60, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CA60"] + - [0x400cc50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CC50"] + - [0x400ce20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CE20"] + - [0x400cfa0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400CFA0"] + - [0x400d1a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D1A0"] + - [0x400d200, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D200"] + - [0x400d2c0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D2C0"] + - [0x400d440, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D440"] + - [0x400d520, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D520"] + - [0x400d710, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D710"] + - [0x400d900, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D900"] + - [0x400d9f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400D9F0"] + - [0x400dbe0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DBE0"] + - [0x400ddd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DDD0"] + - [0x400df70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400DF70"] + - [0x400e150, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E150"] + - [0x400e350, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E350"] + - [0x400e420, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E420"] + - [0x400e600, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E600"] + - [0x400e630, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E630"] + - [0x400e7d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E7D0"] + - [0x400e8a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400E8A0"] + - [0x400ea20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EA20"] + - [0x400eae0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EAE0"] + - [0x400ebd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EBD0"] + - [0x400edb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EDB0"] + - [0x400ee10, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EE10"] + - [0x400eff0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400EFF0"] + - [0x400f050, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F050"] + - [0x400f230, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F230"] + - [0x400f430, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F430"] + - [0x400f510, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F510"] + - [0x400f6f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F6F0"] + - [0x400f870, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400F870"] + - [0x400fa70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FA70"] + - [0x400fb40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FB40"] + - [0x400fd20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FD20"] + - [0x400ff20, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x0400FF20"] + - [0x4010110, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010110"] + - [0x4010300, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010300"] + - [0x40103f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040103F0"] + - [0x40105e0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040105E0"] + - [0x40107d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040107D0"] + - [0x40109d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040109D0"] + - [0x4010bd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010BD0"] + - [0x4010dd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010DD0"] + - [0x4010e80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04010E80"] + - [0x4011060, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011060"] + - [0x4011200, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011200"] + - [0x4011400, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011400"] + - [0x40114b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040114B0"] + - [0x40116b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040116B0"] + - [0x4011790, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011790"] + - [0x4011970, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011970"] + - [0x40119a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040119A0"] + - [0x4011ba0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011BA0"] + - [0x4011d50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011D50"] + - [0x4011f30, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04011F30"] + - [0x4012130, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012130"] + - [0x4012270, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012270"] + - [0x4012390, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012390"] + - [0x4012590, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012590"] + - [0x4012790, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012790"] + - [0x4012980, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012980"] + - [0x40129b0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040129B0"] + - [0x4012b90, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012B90"] + - [0x4012d80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012D80"] + - [0x4012f80, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012F80"] + - [0x4012fb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04012FB0"] + - [0x40131a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040131A0"] + - [0x4013390, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013390"] + - [0x4013450, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013450"] + - [0x4013640, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013640"] + - [0x4013670, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013670"] + - [0x4013860, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013860"] + - [0x4013a40, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013A40"] + - [0x4013bc0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013BC0"] + - [0x4013db0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013DB0"] + - [0x4013f50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013F50"] + - [0x4013fe0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04013FE0"] + - [0x40141d0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040141D0"] + - [0x4014300, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014300"] + - [0x4014350, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014350"] + - [0x4014400, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014400"] + - [0x40145f0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040145F0"] + - [0x4014770, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014770"] + - [0x4014970, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014970"] + - [0x4014b70, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014B70"] + - [0x4014c50, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014C50"] + - [0x4014da0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014DA0"] + - [0x4014fa0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04014FA0"] + - [0x4015060, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015060"] + - [0x4015260, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015260"] + - [0x4015370, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015370"] + - [0x40153a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040153A0"] + - [0x4015420, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015420"] + - [0x4015620, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015620"] + - [0x4015700, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015700"] + - [0x4015900, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015900"] + - [0x4015b00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015B00"] + - [0x4015bf0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015BF0"] + - [0x4015dd0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015DD0"] + - [0x4015e00, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015E00"] + - [0x4015eb0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04015EB0"] + - [0x40160a0, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x040160A0"] + - [0x4016290, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016290"] + - [0x4016490, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016490"] + - [0x4016690, "models/tracks/mario_raceway/mario_raceway_vertices/d_course_mario_raceway_vertex_0x04016690"] + segments: + - [0x0F, 0x899104] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_mario_raceway_packed_dl_0: + symbol: d_course_mario_raceway_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_mario_raceway_packed_dl_70: + symbol: d_course_mario_raceway_packed_dl_70 + type: MK64:PACKED_GFX + offset: 0x1B +d_course_mario_raceway_packed_dl_E0: + symbol: d_course_mario_raceway_packed_dl_E0 + type: MK64:PACKED_GFX + offset: 0x36 +d_course_mario_raceway_packed_dl_F8: + symbol: d_course_mario_raceway_packed_dl_F8 + type: MK64:PACKED_GFX + offset: 0x3D +d_course_mario_raceway_packed_dl_160: + symbol: d_course_mario_raceway_packed_dl_160 + type: MK64:PACKED_GFX + offset: 0x53 +d_course_mario_raceway_packed_dl_170: + symbol: d_course_mario_raceway_packed_dl_170 + type: MK64:PACKED_GFX + offset: 0x57 +d_course_mario_raceway_packed_dl_1D8: + symbol: d_course_mario_raceway_packed_dl_1D8 + type: MK64:PACKED_GFX + offset: 0x6D +d_course_mario_raceway_packed_dl_240: + symbol: d_course_mario_raceway_packed_dl_240 + type: MK64:PACKED_GFX + offset: 0x83 +d_course_mario_raceway_packed_dl_258: + symbol: d_course_mario_raceway_packed_dl_258 + type: MK64:PACKED_GFX + offset: 0x8A +d_course_mario_raceway_packed_dl_2C0: + symbol: d_course_mario_raceway_packed_dl_2C0 + type: MK64:PACKED_GFX + offset: 0xA0 +d_course_mario_raceway_packed_dl_328: + symbol: d_course_mario_raceway_packed_dl_328 + type: MK64:PACKED_GFX + offset: 0xB6 +d_course_mario_raceway_packed_dl_3D8: + symbol: d_course_mario_raceway_packed_dl_3D8 + type: MK64:PACKED_GFX + offset: 0xF7 +d_course_mario_raceway_packed_dl_450: + symbol: d_course_mario_raceway_packed_dl_450 + type: MK64:PACKED_GFX + offset: 0x117 +d_course_mario_raceway_packed_dl_478: + symbol: d_course_mario_raceway_packed_dl_478 + type: MK64:PACKED_GFX + offset: 0x124 +d_course_mario_raceway_packed_dl_4A0: + symbol: d_course_mario_raceway_packed_dl_4A0 + type: MK64:PACKED_GFX + offset: 0x131 +d_course_mario_raceway_packed_dl_4B0: + symbol: d_course_mario_raceway_packed_dl_4B0 + type: MK64:PACKED_GFX + offset: 0x135 +d_course_mario_raceway_packed_dl_588: + symbol: d_course_mario_raceway_packed_dl_588 + type: MK64:PACKED_GFX + offset: 0x18F +d_course_mario_raceway_packed_dl_8E8: + symbol: d_course_mario_raceway_packed_dl_8E8 + type: MK64:PACKED_GFX + offset: 0x368 +d_course_mario_raceway_packed_dl_900: + symbol: d_course_mario_raceway_packed_dl_900 + type: MK64:PACKED_GFX + offset: 0x36F +d_course_mario_raceway_packed_dl_A08: + symbol: d_course_mario_raceway_packed_dl_A08 + type: MK64:PACKED_GFX + offset: 0x3AD +d_course_mario_raceway_packed_dl_B10: + symbol: d_course_mario_raceway_packed_dl_B10 + type: MK64:PACKED_GFX + offset: 0x3EB +d_course_mario_raceway_packed_dl_C18: + symbol: d_course_mario_raceway_packed_dl_C18 + type: MK64:PACKED_GFX + offset: 0x429 +d_course_mario_raceway_packed_dl_D20: + symbol: d_course_mario_raceway_packed_dl_D20 + type: MK64:PACKED_GFX + offset: 0x467 +d_course_mario_raceway_packed_dl_E28: + symbol: d_course_mario_raceway_packed_dl_E28 + type: MK64:PACKED_GFX + offset: 0x4A5 +d_course_mario_raceway_packed_dl_F30: + symbol: d_course_mario_raceway_packed_dl_F30 + type: MK64:PACKED_GFX + offset: 0x4E3 +d_course_mario_raceway_packed_dl_1038: + symbol: d_course_mario_raceway_packed_dl_1038 + type: MK64:PACKED_GFX + offset: 0x521 +d_course_mario_raceway_packed_dl_1140: + symbol: d_course_mario_raceway_packed_dl_1140 + type: MK64:PACKED_GFX + offset: 0x55F +d_course_mario_raceway_packed_dl_1188: + symbol: d_course_mario_raceway_packed_dl_1188 + type: MK64:PACKED_GFX + offset: 0x578 +d_course_mario_raceway_packed_dl_1348: + symbol: d_course_mario_raceway_packed_dl_1348 + type: MK64:PACKED_GFX + offset: 0x606 +d_course_mario_raceway_packed_dl_13C0: + symbol: d_course_mario_raceway_packed_dl_13C0 + type: MK64:PACKED_GFX + offset: 0x626 +d_course_mario_raceway_packed_dl_1438: + symbol: d_course_mario_raceway_packed_dl_1438 + type: MK64:PACKED_GFX + offset: 0x667 +d_course_mario_raceway_packed_dl_14A0: + symbol: d_course_mario_raceway_packed_dl_14A0 + type: MK64:PACKED_GFX + offset: 0x67D +d_course_mario_raceway_packed_dl_14C8: + symbol: d_course_mario_raceway_packed_dl_14C8 + type: MK64:PACKED_GFX + offset: 0x68A +d_course_mario_raceway_packed_dl_1500: + symbol: d_course_mario_raceway_packed_dl_1500 + type: MK64:PACKED_GFX + offset: 0x6A3 +d_course_mario_raceway_packed_dl_1550: + symbol: d_course_mario_raceway_packed_dl_1550 + type: MK64:PACKED_GFX + offset: 0x6CB +d_course_mario_raceway_packed_dl_1600: + symbol: d_course_mario_raceway_packed_dl_1600 + type: MK64:PACKED_GFX + offset: 0x72B +d_course_mario_raceway_packed_dl_1668: + symbol: d_course_mario_raceway_packed_dl_1668 + type: MK64:PACKED_GFX + offset: 0x760 +d_course_mario_raceway_packed_dl_16D8: + symbol: d_course_mario_raceway_packed_dl_16D8 + type: MK64:PACKED_GFX + offset: 0x79A +d_course_mario_raceway_packed_dl_1770: + symbol: d_course_mario_raceway_packed_dl_1770 + type: MK64:PACKED_GFX + offset: 0x7ED +d_course_mario_raceway_packed_dl_17D8: + symbol: d_course_mario_raceway_packed_dl_17D8 + type: MK64:PACKED_GFX + offset: 0x822 +d_course_mario_raceway_packed_dl_1850: + symbol: d_course_mario_raceway_packed_dl_1850 + type: MK64:PACKED_GFX + offset: 0x840 +d_course_mario_raceway_packed_dl_1890: + symbol: d_course_mario_raceway_packed_dl_1890 + type: MK64:PACKED_GFX + offset: 0x85E +d_course_mario_raceway_packed_dl_18B8: + symbol: d_course_mario_raceway_packed_dl_18B8 + type: MK64:PACKED_GFX + offset: 0x86D +d_course_mario_raceway_packed_dl_18E0: + symbol: d_course_mario_raceway_packed_dl_18E0 + type: MK64:PACKED_GFX + offset: 0x87C +d_course_mario_raceway_packed_dl_1950: + symbol: d_course_mario_raceway_packed_dl_1950 + type: MK64:PACKED_GFX + offset: 0x8B6 +d_course_mario_raceway_packed_dl_1988: + symbol: d_course_mario_raceway_packed_dl_1988 + type: MK64:PACKED_GFX + offset: 0x8CF +d_course_mario_raceway_packed_dl_1A08: + symbol: d_course_mario_raceway_packed_dl_1A08 + type: MK64:PACKED_GFX + offset: 0x913 +d_course_mario_raceway_packed_dl_1A80: + symbol: d_course_mario_raceway_packed_dl_1A80 + type: MK64:PACKED_GFX + offset: 0x952 +d_course_mario_raceway_packed_dl_1AF8: + symbol: d_course_mario_raceway_packed_dl_1AF8 + type: MK64:PACKED_GFX + offset: 0x991 +d_course_mario_raceway_packed_dl_1B28: + symbol: d_course_mario_raceway_packed_dl_1B28 + type: MK64:PACKED_GFX + offset: 0x9A5 +d_course_mario_raceway_packed_dl_1BB8: + symbol: d_course_mario_raceway_packed_dl_1BB8 + type: MK64:PACKED_GFX + offset: 0x9D9 +d_course_mario_raceway_packed_dl_1C48: + symbol: d_course_mario_raceway_packed_dl_1C48 + type: MK64:PACKED_GFX + offset: 0xA06 +d_course_mario_raceway_packed_dl_1CF8: + symbol: d_course_mario_raceway_packed_dl_1CF8 + type: MK64:PACKED_GFX + offset: 0xA45 +d_course_mario_raceway_packed_dl_1DA8: + symbol: d_course_mario_raceway_packed_dl_1DA8 + type: MK64:PACKED_GFX + offset: 0xA86 +d_course_mario_raceway_packed_dl_1E30: + symbol: d_course_mario_raceway_packed_dl_1E30 + type: MK64:PACKED_GFX + offset: 0xAB0 +d_course_mario_raceway_packed_dl_1EA8: + symbol: d_course_mario_raceway_packed_dl_1EA8 + type: MK64:PACKED_GFX + offset: 0xAD0 +d_course_mario_raceway_packed_dl_1F30: + symbol: d_course_mario_raceway_packed_dl_1F30 + type: MK64:PACKED_GFX + offset: 0xAFA +d_course_mario_raceway_packed_dl_1FB0: + symbol: d_course_mario_raceway_packed_dl_1FB0 + type: MK64:PACKED_GFX + offset: 0xB1F +d_course_mario_raceway_packed_dl_2038: + symbol: d_course_mario_raceway_packed_dl_2038 + type: MK64:PACKED_GFX + offset: 0xB49 +d_course_mario_raceway_packed_dl_20B0: + symbol: d_course_mario_raceway_packed_dl_20B0 + type: MK64:PACKED_GFX + offset: 0xB69 +d_course_mario_raceway_packed_dl_2138: + symbol: d_course_mario_raceway_packed_dl_2138 + type: MK64:PACKED_GFX + offset: 0xB93 +d_course_mario_raceway_packed_dl_21C0: + symbol: d_course_mario_raceway_packed_dl_21C0 + type: MK64:PACKED_GFX + offset: 0xBBD +d_course_mario_raceway_packed_dl_2248: + symbol: d_course_mario_raceway_packed_dl_2248 + type: MK64:PACKED_GFX + offset: 0xBE7 +d_course_mario_raceway_packed_dl_22B8: + symbol: d_course_mario_raceway_packed_dl_22B8 + type: MK64:PACKED_GFX + offset: 0xC02 +d_course_mario_raceway_packed_dl_2340: + symbol: d_course_mario_raceway_packed_dl_2340 + type: MK64:PACKED_GFX + offset: 0xC2C +d_course_mario_raceway_packed_dl_23B8: + symbol: d_course_mario_raceway_packed_dl_23B8 + type: MK64:PACKED_GFX + offset: 0xC4C +d_course_mario_raceway_packed_dl_2420: + symbol: d_course_mario_raceway_packed_dl_2420 + type: MK64:PACKED_GFX + offset: 0xC62 +d_course_mario_raceway_packed_dl_2498: + symbol: d_course_mario_raceway_packed_dl_2498 + type: MK64:PACKED_GFX + offset: 0xC82 +d_course_mario_raceway_packed_dl_2510: + symbol: d_course_mario_raceway_packed_dl_2510 + type: MK64:PACKED_GFX + offset: 0xCA2 +d_course_mario_raceway_packed_dl_2588: + symbol: d_course_mario_raceway_packed_dl_2588 + type: MK64:PACKED_GFX + offset: 0xCC2 +d_course_mario_raceway_packed_dl_2600: + symbol: d_course_mario_raceway_packed_dl_2600 + type: MK64:PACKED_GFX + offset: 0xCE2 +d_course_mario_raceway_packed_dl_2680: + symbol: d_course_mario_raceway_packed_dl_2680 + type: MK64:PACKED_GFX + offset: 0xD07 +d_course_mario_raceway_packed_dl_26F8: + symbol: d_course_mario_raceway_packed_dl_26F8 + type: MK64:PACKED_GFX + offset: 0xD27 +d_course_mario_raceway_packed_dl_2760: + symbol: d_course_mario_raceway_packed_dl_2760 + type: MK64:PACKED_GFX + offset: 0xD3D +d_course_mario_raceway_packed_dl_27E8: + symbol: d_course_mario_raceway_packed_dl_27E8 + type: MK64:PACKED_GFX + offset: 0xD67 +d_course_mario_raceway_packed_dl_2870: + symbol: d_course_mario_raceway_packed_dl_2870 + type: MK64:PACKED_GFX + offset: 0xD91 +d_course_mario_raceway_packed_dl_28F8: + symbol: d_course_mario_raceway_packed_dl_28F8 + type: MK64:PACKED_GFX + offset: 0xDBB +d_course_mario_raceway_packed_dl_29B0: + symbol: d_course_mario_raceway_packed_dl_29B0 + type: MK64:PACKED_GFX + offset: 0xDFF +d_course_mario_raceway_packed_dl_2A28: + symbol: d_course_mario_raceway_packed_dl_2A28 + type: MK64:PACKED_GFX + offset: 0xE1F +d_course_mario_raceway_packed_dl_2B10: + symbol: d_course_mario_raceway_packed_dl_2B10 + type: MK64:PACKED_GFX + offset: 0xE74 +d_course_mario_raceway_packed_dl_2B98: + symbol: d_course_mario_raceway_packed_dl_2B98 + type: MK64:PACKED_GFX + offset: 0xE9E +d_course_mario_raceway_packed_dl_2D68: + symbol: d_course_mario_raceway_packed_dl_2D68 + type: MK64:PACKED_GFX + offset: 0xF8B +d_course_mario_raceway_packed_dl_2D80: + symbol: d_course_mario_raceway_packed_dl_2D80 + type: MK64:PACKED_GFX + offset: 0xF92 +d_course_mario_raceway_packed_dl_3050: + symbol: d_course_mario_raceway_packed_dl_3050 + type: MK64:PACKED_GFX + offset: 0x1115 +d_course_mario_raceway_packed_dl_3060: + symbol: d_course_mario_raceway_packed_dl_3060 + type: MK64:PACKED_GFX + offset: 0x1119 +d_course_mario_raceway_packed_dl_3150: + symbol: d_course_mario_raceway_packed_dl_3150 + type: MK64:PACKED_GFX + offset: 0x114A +d_course_mario_raceway_packed_dl_3240: + symbol: d_course_mario_raceway_packed_dl_3240 + type: MK64:PACKED_GFX + offset: 0x117B +d_course_mario_raceway_packed_dl_3258: + symbol: d_course_mario_raceway_packed_dl_3258 + type: MK64:PACKED_GFX + offset: 0x1182 +d_course_mario_raceway_packed_dl_32F0: + symbol: d_course_mario_raceway_packed_dl_32F0 + type: MK64:PACKED_GFX + offset: 0x119F +d_course_mario_raceway_packed_dl_3388: + symbol: d_course_mario_raceway_packed_dl_3388 + type: MK64:PACKED_GFX + offset: 0x11BC +d_course_mario_raceway_packed_dl_3460: + symbol: d_course_mario_raceway_packed_dl_3460 + type: MK64:PACKED_GFX + offset: 0x1201 +d_course_mario_raceway_packed_dl_3508: + symbol: d_course_mario_raceway_packed_dl_3508 + type: MK64:PACKED_GFX + offset: 0x1228 +d_course_mario_raceway_packed_dl_3530: + symbol: d_course_mario_raceway_packed_dl_3530 + type: MK64:PACKED_GFX + offset: 0x1235 +d_course_mario_raceway_packed_dl_35A8: + symbol: d_course_mario_raceway_packed_dl_35A8 + type: MK64:PACKED_GFX + offset: 0x1253 +d_course_mario_raceway_packed_dl_3630: + symbol: d_course_mario_raceway_packed_dl_3630 + type: MK64:PACKED_GFX + offset: 0x127B +d_course_mario_raceway_packed_dl_36B0: + symbol: d_course_mario_raceway_packed_dl_36B0 + type: MK64:PACKED_GFX + offset: 0x12A0 +d_course_mario_raceway_packed_dl_3728: + symbol: d_course_mario_raceway_packed_dl_3728 + type: MK64:PACKED_GFX + offset: 0x12C0 +d_course_mario_raceway_packed_dl_3798: + symbol: d_course_mario_raceway_packed_dl_3798 + type: MK64:PACKED_GFX + offset: 0x12D9 +d_course_mario_raceway_packed_dl_3818: + symbol: d_course_mario_raceway_packed_dl_3818 + type: MK64:PACKED_GFX + offset: 0x12FC +d_course_mario_raceway_packed_dl_38B8: + symbol: d_course_mario_raceway_packed_dl_38B8 + type: MK64:PACKED_GFX + offset: 0x1331 +d_course_mario_raceway_packed_dl_3950: + symbol: d_course_mario_raceway_packed_dl_3950 + type: MK64:PACKED_GFX + offset: 0x1363 +d_course_mario_raceway_packed_dl_39E8: + symbol: d_course_mario_raceway_packed_dl_39E8 + type: MK64:PACKED_GFX + offset: 0x1395 +d_course_mario_raceway_packed_dl_3AB8: + symbol: d_course_mario_raceway_packed_dl_3AB8 + type: MK64:PACKED_GFX + offset: 0x13E4 +d_course_mario_raceway_packed_dl_3BB0: + symbol: d_course_mario_raceway_packed_dl_3BB0 + type: MK64:PACKED_GFX + offset: 0x144C +d_course_mario_raceway_packed_dl_3C28: + symbol: d_course_mario_raceway_packed_dl_3C28 + type: MK64:PACKED_GFX + offset: 0x146A +d_course_mario_raceway_packed_dl_3CD8: + symbol: d_course_mario_raceway_packed_dl_3CD8 + type: MK64:PACKED_GFX + offset: 0x14A9 +d_course_mario_raceway_packed_dl_3D50: + symbol: d_course_mario_raceway_packed_dl_3D50 + type: MK64:PACKED_GFX + offset: 0x14C9 +d_course_mario_raceway_packed_dl_3E00: + symbol: d_course_mario_raceway_packed_dl_3E00 + type: MK64:PACKED_GFX + offset: 0x1508 +d_course_mario_raceway_packed_dl_3E78: + symbol: d_course_mario_raceway_packed_dl_3E78 + type: MK64:PACKED_GFX + offset: 0x1526 +d_course_mario_raceway_packed_dl_3EF8: + symbol: d_course_mario_raceway_packed_dl_3EF8 + type: MK64:PACKED_GFX + offset: 0x1549 +d_course_mario_raceway_packed_dl_3F80: + symbol: d_course_mario_raceway_packed_dl_3F80 + type: MK64:PACKED_GFX + offset: 0x1571 +d_course_mario_raceway_packed_dl_4028: + symbol: d_course_mario_raceway_packed_dl_4028 + type: MK64:PACKED_GFX + offset: 0x15A9 +d_course_mario_raceway_packed_dl_40D8: + symbol: d_course_mario_raceway_packed_dl_40D8 + type: MK64:PACKED_GFX + offset: 0x15E8 +d_course_mario_raceway_packed_dl_4188: + symbol: d_course_mario_raceway_packed_dl_4188 + type: MK64:PACKED_GFX + offset: 0x1627 +d_course_mario_raceway_packed_dl_4210: + symbol: d_course_mario_raceway_packed_dl_4210 + type: MK64:PACKED_GFX + offset: 0x164F +d_course_mario_raceway_packed_dl_4290: + symbol: d_course_mario_raceway_packed_dl_4290 + type: MK64:PACKED_GFX + offset: 0x1674 +d_course_mario_raceway_packed_dl_4348: + symbol: d_course_mario_raceway_packed_dl_4348 + type: MK64:PACKED_GFX + offset: 0x16B8 +d_course_mario_raceway_packed_dl_43C0: + symbol: d_course_mario_raceway_packed_dl_43C0 + type: MK64:PACKED_GFX + offset: 0x16D8 +d_course_mario_raceway_packed_dl_4458: + symbol: d_course_mario_raceway_packed_dl_4458 + type: MK64:PACKED_GFX + offset: 0x1708 +d_course_mario_raceway_packed_dl_44C0: + symbol: d_course_mario_raceway_packed_dl_44C0 + type: MK64:PACKED_GFX + offset: 0x171E +d_course_mario_raceway_packed_dl_4540: + symbol: d_course_mario_raceway_packed_dl_4540 + type: MK64:PACKED_GFX + offset: 0x1741 +d_course_mario_raceway_packed_dl_45B0: + symbol: d_course_mario_raceway_packed_dl_45B0 + type: MK64:PACKED_GFX + offset: 0x175C +d_course_mario_raceway_packed_dl_46A0: + symbol: d_course_mario_raceway_packed_dl_46A0 + type: MK64:PACKED_GFX + offset: 0x17B4 +d_course_mario_raceway_packed_dl_4780: + symbol: d_course_mario_raceway_packed_dl_4780 + type: MK64:PACKED_GFX + offset: 0x180D +d_course_mario_raceway_packed_dl_4870: + symbol: d_course_mario_raceway_packed_dl_4870 + type: MK64:PACKED_GFX + offset: 0x1870 +d_course_mario_raceway_packed_dl_4950: + symbol: d_course_mario_raceway_packed_dl_4950 + type: MK64:PACKED_GFX + offset: 0x18CB +d_course_mario_raceway_packed_dl_49E8: + symbol: d_course_mario_raceway_packed_dl_49E8 + type: MK64:PACKED_GFX + offset: 0x18F9 +d_course_mario_raceway_packed_dl_4A68: + symbol: d_course_mario_raceway_packed_dl_4A68 + type: MK64:PACKED_GFX + offset: 0x191E +d_course_mario_raceway_packed_dl_4AD8: + symbol: d_course_mario_raceway_packed_dl_4AD8 + type: MK64:PACKED_GFX + offset: 0x1937 +d_course_mario_raceway_packed_dl_4B50: + symbol: d_course_mario_raceway_packed_dl_4B50 + type: MK64:PACKED_GFX + offset: 0x1957 +d_course_mario_raceway_packed_dl_4BB8: + symbol: d_course_mario_raceway_packed_dl_4BB8 + type: MK64:PACKED_GFX + offset: 0x196D +d_course_mario_raceway_packed_dl_4C28: + symbol: d_course_mario_raceway_packed_dl_4C28 + type: MK64:PACKED_GFX + offset: 0x1986 +d_course_mario_raceway_packed_dl_4CB8: + symbol: d_course_mario_raceway_packed_dl_4CB8 + type: MK64:PACKED_GFX + offset: 0x19B3 +d_course_mario_raceway_packed_dl_4D48: + symbol: d_course_mario_raceway_packed_dl_4D48 + type: MK64:PACKED_GFX + offset: 0x19E0 +d_course_mario_raceway_packed_dl_4E20: + symbol: d_course_mario_raceway_packed_dl_4E20 + type: MK64:PACKED_GFX + offset: 0x1A34 +d_course_mario_raceway_packed_dl_4EE8: + symbol: d_course_mario_raceway_packed_dl_4EE8 + type: MK64:PACKED_GFX + offset: 0x1A84 +d_course_mario_raceway_packed_dl_4F90: + symbol: d_course_mario_raceway_packed_dl_4F90 + type: MK64:PACKED_GFX + offset: 0x1ABE +d_course_mario_raceway_packed_dl_50E8: + symbol: d_course_mario_raceway_packed_dl_50E8 + type: MK64:PACKED_GFX + offset: 0x1B5C +d_course_mario_raceway_packed_dl_5218: + symbol: d_course_mario_raceway_packed_dl_5218 + type: MK64:PACKED_GFX + offset: 0x1BE1 +d_course_mario_raceway_packed_dl_52B8: + symbol: d_course_mario_raceway_packed_dl_52B8 + type: MK64:PACKED_GFX + offset: 0x1C18 +d_course_mario_raceway_packed_dl_5368: + symbol: d_course_mario_raceway_packed_dl_5368 + type: MK64:PACKED_GFX + offset: 0x1C57 +d_course_mario_raceway_packed_dl_5408: + symbol: d_course_mario_raceway_packed_dl_5408 + type: MK64:PACKED_GFX + offset: 0x1C8C +d_course_mario_raceway_packed_dl_54B0: + symbol: d_course_mario_raceway_packed_dl_54B0 + type: MK64:PACKED_GFX + offset: 0x1CC4 +d_course_mario_raceway_packed_dl_5550: + symbol: d_course_mario_raceway_packed_dl_5550 + type: MK64:PACKED_GFX + offset: 0x1CF9 +d_course_mario_raceway_packed_dl_5608: + symbol: d_course_mario_raceway_packed_dl_5608 + type: MK64:PACKED_GFX + offset: 0x1D3D +d_course_mario_raceway_packed_dl_56F0: + symbol: d_course_mario_raceway_packed_dl_56F0 + type: MK64:PACKED_GFX + offset: 0x1D99 +d_course_mario_raceway_packed_dl_5768: + symbol: d_course_mario_raceway_packed_dl_5768 + type: MK64:PACKED_GFX + offset: 0x1DB9 +d_course_mario_raceway_packed_dl_5870: + symbol: d_course_mario_raceway_packed_dl_5870 + type: MK64:PACKED_GFX + offset: 0x1E25 +d_course_mario_raceway_packed_dl_5970: + symbol: d_course_mario_raceway_packed_dl_5970 + type: MK64:PACKED_GFX + offset: 0x1E8E +d_course_mario_raceway_packed_dl_5A48: + symbol: d_course_mario_raceway_packed_dl_5A48 + type: MK64:PACKED_GFX + offset: 0x1EE4 +d_course_mario_raceway_packed_dl_5AE0: + symbol: d_course_mario_raceway_packed_dl_5AE0 + type: MK64:PACKED_GFX + offset: 0x1F12 +d_course_mario_raceway_packed_dl_5BC8: + symbol: d_course_mario_raceway_packed_dl_5BC8 + type: MK64:PACKED_GFX + offset: 0x1F70 +d_course_mario_raceway_packed_dl_5C80: + symbol: d_course_mario_raceway_packed_dl_5C80 + type: MK64:PACKED_GFX + offset: 0x1FB2 +d_course_mario_raceway_packed_dl_5CE8: + symbol: d_course_mario_raceway_packed_dl_5CE8 + type: MK64:PACKED_GFX + offset: 0x1FC6 +d_course_mario_raceway_packed_dl_5D70: + symbol: d_course_mario_raceway_packed_dl_5D70 + type: MK64:PACKED_GFX + offset: 0x1FEE +d_course_mario_raceway_packed_dl_5DF0: + symbol: d_course_mario_raceway_packed_dl_5DF0 + type: MK64:PACKED_GFX + offset: 0x2011 +d_course_mario_raceway_packed_dl_5E58: + symbol: d_course_mario_raceway_packed_dl_5E58 + type: MK64:PACKED_GFX + offset: 0x2025 +d_course_mario_raceway_packed_dl_5ED0: + symbol: d_course_mario_raceway_packed_dl_5ED0 + type: MK64:PACKED_GFX + offset: 0x2043 +d_course_mario_raceway_packed_dl_5F88: + symbol: d_course_mario_raceway_packed_dl_5F88 + type: MK64:PACKED_GFX + offset: 0x2085 +d_course_mario_raceway_packed_dl_6068: + symbol: d_course_mario_raceway_packed_dl_6068 + type: MK64:PACKED_GFX + offset: 0x20DC +d_course_mario_raceway_packed_dl_60F0: + symbol: d_course_mario_raceway_packed_dl_60F0 + type: MK64:PACKED_GFX + offset: 0x2106 +d_course_mario_raceway_packed_dl_6198: + symbol: d_course_mario_raceway_packed_dl_6198 + type: MK64:PACKED_GFX + offset: 0x2140 +d_course_mario_raceway_packed_dl_6240: + symbol: d_course_mario_raceway_packed_dl_6240 + type: MK64:PACKED_GFX + offset: 0x217C +d_course_mario_raceway_packed_dl_62A0: + symbol: d_course_mario_raceway_packed_dl_62A0 + type: MK64:PACKED_GFX + offset: 0x218B +d_course_mario_raceway_packed_dl_6308: + symbol: d_course_mario_raceway_packed_dl_6308 + type: MK64:PACKED_GFX + offset: 0x21A1 +d_course_mario_raceway_packed_dl_63B0: + symbol: d_course_mario_raceway_packed_dl_63B0 + type: MK64:PACKED_GFX + offset: 0x21D9 +d_course_mario_raceway_packed_dl_6490: + symbol: d_course_mario_raceway_packed_dl_6490 + type: MK64:PACKED_GFX + offset: 0x2230 +d_course_mario_raceway_packed_dl_6528: + symbol: d_course_mario_raceway_packed_dl_6528 + type: MK64:PACKED_GFX + offset: 0x225E +d_course_mario_raceway_packed_dl_6598: + symbol: d_course_mario_raceway_packed_dl_6598 + type: MK64:PACKED_GFX + offset: 0x2277 +d_course_mario_raceway_packed_dl_6710: + symbol: d_course_mario_raceway_packed_dl_6710 + type: MK64:PACKED_GFX + offset: 0x2302 +d_course_mario_raceway_packed_dl_68B0: + symbol: d_course_mario_raceway_packed_dl_68B0 + type: MK64:PACKED_GFX + offset: 0x23CF +d_course_mario_raceway_packed_dl_68C0: + symbol: d_course_mario_raceway_packed_dl_68C0 + type: MK64:PACKED_GFX + offset: 0x23D3 +d_course_mario_raceway_packed_dl_6928: + symbol: d_course_mario_raceway_packed_dl_6928 + type: MK64:PACKED_GFX + offset: 0x23F8 +d_course_mario_raceway_packed_dl_6938: + symbol: d_course_mario_raceway_packed_dl_6938 + type: MK64:PACKED_GFX + offset: 0x23FC diff --git a/yamls/us/models/tracks/mario_raceway/mario_raceway_vertices.yml b/yamls/us/models/tracks/mario_raceway/mario_raceway_vertices.yml new file mode 100644 index 000000000..00a51e893 --- /dev/null +++ b/yamls/us/models/tracks/mario_raceway/mario_raceway_vertices.yml @@ -0,0 +1,1713 @@ +:config: + segments: + - [0x0F, 0x88FA10] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_mario_raceway_vertex_0x04000000: + symbol: d_course_mario_raceway_vertex_0x04000000 + type: mk64:course_vtx + count: 18 + offset: 0x0 + +d_course_mario_raceway_vertex_0x040000C0: + symbol: d_course_mario_raceway_vertex_0x040000C0 + type: mk64:course_vtx + count: 18 + offset: 0xa8 + +d_course_mario_raceway_vertex_0x04000180: + symbol: d_course_mario_raceway_vertex_0x04000180 + type: mk64:course_vtx + count: 8 + offset: 0x150 + +d_course_mario_raceway_vertex_0x04000200: + symbol: d_course_mario_raceway_vertex_0x04000200 + type: mk64:course_vtx + count: 8 + offset: 0x1c0 + +d_course_mario_raceway_vertex_0x04000280: + symbol: d_course_mario_raceway_vertex_0x04000280 + type: mk64:course_vtx + count: 8 + offset: 0x230 + +d_course_mario_raceway_vertex_0x04000300: + symbol: d_course_mario_raceway_vertex_0x04000300 + type: mk64:course_vtx + count: 8 + offset: 0x2a0 + +d_course_mario_raceway_vertex_0x04000380: + symbol: d_course_mario_raceway_vertex_0x04000380 + type: mk64:course_vtx + count: 8 + offset: 0x310 + +d_course_mario_raceway_vertex_0x04000400: + symbol: d_course_mario_raceway_vertex_0x04000400 + type: mk64:course_vtx + count: 50 + offset: 0x380 + +d_course_mario_raceway_vertex_0x04000600: + symbol: d_course_mario_raceway_vertex_0x04000600 + type: mk64:course_vtx + count: 8 + offset: 0x540 + +d_course_mario_raceway_vertex_0x04000680: + symbol: d_course_mario_raceway_vertex_0x04000680 + type: mk64:course_vtx + count: 22 + offset: 0x5b0 + +d_course_mario_raceway_vertex_0x04000780: + symbol: d_course_mario_raceway_vertex_0x04000780 + type: mk64:course_vtx + count: 50 + offset: 0x690 + +d_course_mario_raceway_vertex_0x04000980: + symbol: d_course_mario_raceway_vertex_0x04000980 + type: mk64:course_vtx + count: 38 + offset: 0x850 + +d_course_mario_raceway_vertex_0x04000B20: + symbol: d_course_mario_raceway_vertex_0x04000B20 + type: mk64:course_vtx + count: 50 + offset: 0x9bc + +d_course_mario_raceway_vertex_0x04000D20: + symbol: d_course_mario_raceway_vertex_0x04000D20 + type: mk64:course_vtx + count: 50 + offset: 0xb7c + +d_course_mario_raceway_vertex_0x04000F20: + symbol: d_course_mario_raceway_vertex_0x04000F20 + type: mk64:course_vtx + count: 49 + offset: 0xd3c + +d_course_mario_raceway_vertex_0x04001110: + symbol: d_course_mario_raceway_vertex_0x04001110 + type: mk64:course_vtx + count: 50 + offset: 0xeee + +d_course_mario_raceway_vertex_0x04001310: + symbol: d_course_mario_raceway_vertex_0x04001310 + type: mk64:course_vtx + count: 50 + offset: 0x10ae + +d_course_mario_raceway_vertex_0x04001510: + symbol: d_course_mario_raceway_vertex_0x04001510 + type: mk64:course_vtx + count: 49 + offset: 0x126e + +d_course_mario_raceway_vertex_0x04001700: + symbol: d_course_mario_raceway_vertex_0x04001700 + type: mk64:course_vtx + count: 50 + offset: 0x1420 + +d_course_mario_raceway_vertex_0x04001900: + symbol: d_course_mario_raceway_vertex_0x04001900 + type: mk64:course_vtx + count: 50 + offset: 0x15e0 + +d_course_mario_raceway_vertex_0x04001B00: + symbol: d_course_mario_raceway_vertex_0x04001B00 + type: mk64:course_vtx + count: 50 + offset: 0x17a0 + +d_course_mario_raceway_vertex_0x04001D00: + symbol: d_course_mario_raceway_vertex_0x04001D00 + type: mk64:course_vtx + count: 50 + offset: 0x1960 + +d_course_mario_raceway_vertex_0x04001F00: + symbol: d_course_mario_raceway_vertex_0x04001F00 + type: mk64:course_vtx + count: 40 + offset: 0x1b20 + +d_course_mario_raceway_vertex_0x040020C0: + symbol: d_course_mario_raceway_vertex_0x040020C0 + type: mk64:course_vtx + count: 6 + offset: 0x1ca8 + +d_course_mario_raceway_vertex_0x04002120: + symbol: d_course_mario_raceway_vertex_0x04002120 + type: mk64:course_vtx + count: 19 + offset: 0x1cfc + +d_course_mario_raceway_vertex_0x040021F0: + symbol: d_course_mario_raceway_vertex_0x040021F0 + type: mk64:course_vtx + count: 4 + offset: 0x1db2 + +d_course_mario_raceway_vertex_0x04002230: + symbol: d_course_mario_raceway_vertex_0x04002230 + type: mk64:course_vtx + count: 6 + offset: 0x1dea + +d_course_mario_raceway_vertex_0x04002290: + symbol: d_course_mario_raceway_vertex_0x04002290 + type: mk64:course_vtx + count: 19 + offset: 0x1e3e + +d_course_mario_raceway_vertex_0x04002360: + symbol: d_course_mario_raceway_vertex_0x04002360 + type: mk64:course_vtx + count: 4 + offset: 0x1ef4 + +d_course_mario_raceway_vertex_0x040023A0: + symbol: d_course_mario_raceway_vertex_0x040023A0 + type: mk64:course_vtx + count: 6 + offset: 0x1f2c + +d_course_mario_raceway_vertex_0x04002400: + symbol: d_course_mario_raceway_vertex_0x04002400 + type: mk64:course_vtx + count: 19 + offset: 0x1f80 + +d_course_mario_raceway_vertex_0x040024D0: + symbol: d_course_mario_raceway_vertex_0x040024D0 + type: mk64:course_vtx + count: 4 + offset: 0x2036 + +d_course_mario_raceway_vertex_0x04002510: + symbol: d_course_mario_raceway_vertex_0x04002510 + type: mk64:course_vtx + count: 6 + offset: 0x206e + +d_course_mario_raceway_vertex_0x04002570: + symbol: d_course_mario_raceway_vertex_0x04002570 + type: mk64:course_vtx + count: 21 + offset: 0x20c2 + +d_course_mario_raceway_vertex_0x04002660: + symbol: d_course_mario_raceway_vertex_0x04002660 + type: mk64:course_vtx + count: 4 + offset: 0x2194 + +d_course_mario_raceway_vertex_0x040026A0: + symbol: d_course_mario_raceway_vertex_0x040026A0 + type: mk64:course_vtx + count: 6 + offset: 0x21cc + +d_course_mario_raceway_vertex_0x04002700: + symbol: d_course_mario_raceway_vertex_0x04002700 + type: mk64:course_vtx + count: 21 + offset: 0x2220 + +d_course_mario_raceway_vertex_0x040027F0: + symbol: d_course_mario_raceway_vertex_0x040027F0 + type: mk64:course_vtx + count: 4 + offset: 0x22f2 + +d_course_mario_raceway_vertex_0x04002830: + symbol: d_course_mario_raceway_vertex_0x04002830 + type: mk64:course_vtx + count: 6 + offset: 0x232a + +d_course_mario_raceway_vertex_0x04002890: + symbol: d_course_mario_raceway_vertex_0x04002890 + type: mk64:course_vtx + count: 21 + offset: 0x237e + +d_course_mario_raceway_vertex_0x04002980: + symbol: d_course_mario_raceway_vertex_0x04002980 + type: mk64:course_vtx + count: 4 + offset: 0x2450 + +d_course_mario_raceway_vertex_0x040029C0: + symbol: d_course_mario_raceway_vertex_0x040029C0 + type: mk64:course_vtx + count: 6 + offset: 0x2488 + +d_course_mario_raceway_vertex_0x04002A20: + symbol: d_course_mario_raceway_vertex_0x04002A20 + type: mk64:course_vtx + count: 19 + offset: 0x24dc + +d_course_mario_raceway_vertex_0x04002AF0: + symbol: d_course_mario_raceway_vertex_0x04002AF0 + type: mk64:course_vtx + count: 4 + offset: 0x2592 + +d_course_mario_raceway_vertex_0x04002B30: + symbol: d_course_mario_raceway_vertex_0x04002B30 + type: mk64:course_vtx + count: 6 + offset: 0x25ca + +d_course_mario_raceway_vertex_0x04002B90: + symbol: d_course_mario_raceway_vertex_0x04002B90 + type: mk64:course_vtx + count: 19 + offset: 0x261e + +d_course_mario_raceway_vertex_0x04002C60: + symbol: d_course_mario_raceway_vertex_0x04002C60 + type: mk64:course_vtx + count: 4 + offset: 0x26d4 + +d_course_mario_raceway_vertex_0x04002CA0: + symbol: d_course_mario_raceway_vertex_0x04002CA0 + type: mk64:course_vtx + count: 23 + offset: 0x270c + +d_course_mario_raceway_vertex_0x04002DB0: + symbol: d_course_mario_raceway_vertex_0x04002DB0 + type: mk64:course_vtx + count: 24 + offset: 0x27fa + +d_course_mario_raceway_vertex_0x04002ED0: + symbol: d_course_mario_raceway_vertex_0x04002ED0 + type: mk64:course_vtx + count: 18 + offset: 0x28f6 + +d_course_mario_raceway_vertex_0x04002F90: + symbol: d_course_mario_raceway_vertex_0x04002F90 + type: mk64:course_vtx + count: 18 + offset: 0x299e + +d_course_mario_raceway_vertex_0x04003050: + symbol: d_course_mario_raceway_vertex_0x04003050 + type: mk64:course_vtx + count: 20 + offset: 0x2a46 + +d_course_mario_raceway_vertex_0x04003130: + symbol: d_course_mario_raceway_vertex_0x04003130 + type: mk64:course_vtx + count: 36 + offset: 0x2b0a + +d_course_mario_raceway_vertex_0x040032B0: + symbol: d_course_mario_raceway_vertex_0x040032B0 + type: mk64:course_vtx + count: 6 + offset: 0x2c5a + +d_course_mario_raceway_vertex_0x04003310: + symbol: d_course_mario_raceway_vertex_0x04003310 + type: mk64:course_vtx + count: 22 + offset: 0x2cae + +d_course_mario_raceway_vertex_0x04003410: + symbol: d_course_mario_raceway_vertex_0x04003410 + type: mk64:course_vtx + count: 39 + offset: 0x2d8e + +d_course_mario_raceway_vertex_0x040035C0: + symbol: d_course_mario_raceway_vertex_0x040035C0 + type: mk64:course_vtx + count: 50 + offset: 0x2f08 + +d_course_mario_raceway_vertex_0x040037C0: + symbol: d_course_mario_raceway_vertex_0x040037C0 + type: mk64:course_vtx + count: 50 + offset: 0x30c8 + +d_course_mario_raceway_vertex_0x040039C0: + symbol: d_course_mario_raceway_vertex_0x040039C0 + type: mk64:course_vtx + count: 4 + offset: 0x3288 + +d_course_mario_raceway_vertex_0x04003A00: + symbol: d_course_mario_raceway_vertex_0x04003A00 + type: mk64:course_vtx + count: 48 + offset: 0x32c0 + +d_course_mario_raceway_vertex_0x04003BE0: + symbol: d_course_mario_raceway_vertex_0x04003BE0 + type: mk64:course_vtx + count: 4 + offset: 0x3464 + +d_course_mario_raceway_vertex_0x04003C20: + symbol: d_course_mario_raceway_vertex_0x04003C20 + type: mk64:course_vtx + count: 50 + offset: 0x349c + +d_course_mario_raceway_vertex_0x04003E20: + symbol: d_course_mario_raceway_vertex_0x04003E20 + type: mk64:course_vtx + count: 8 + offset: 0x365c + +d_course_mario_raceway_vertex_0x04003EA0: + symbol: d_course_mario_raceway_vertex_0x04003EA0 + type: mk64:course_vtx + count: 50 + offset: 0x36cc + +d_course_mario_raceway_vertex_0x040040A0: + symbol: d_course_mario_raceway_vertex_0x040040A0 + type: mk64:course_vtx + count: 39 + offset: 0x388c + +d_course_mario_raceway_vertex_0x04004250: + symbol: d_course_mario_raceway_vertex_0x04004250 + type: mk64:course_vtx + count: 50 + offset: 0x3a06 + +d_course_mario_raceway_vertex_0x04004450: + symbol: d_course_mario_raceway_vertex_0x04004450 + type: mk64:course_vtx + count: 4 + offset: 0x3bc6 + +d_course_mario_raceway_vertex_0x04004490: + symbol: d_course_mario_raceway_vertex_0x04004490 + type: mk64:course_vtx + count: 8 + offset: 0x3bfe + +d_course_mario_raceway_vertex_0x04004510: + symbol: d_course_mario_raceway_vertex_0x04004510 + type: mk64:course_vtx + count: 4 + offset: 0x3c6e + +d_course_mario_raceway_vertex_0x04004550: + symbol: d_course_mario_raceway_vertex_0x04004550 + type: mk64:course_vtx + count: 32 + offset: 0x3ca6 + +d_course_mario_raceway_vertex_0x04004690: + symbol: d_course_mario_raceway_vertex_0x04004690 + type: mk64:course_vtx + count: 7 + offset: 0x3dbe + +d_course_mario_raceway_vertex_0x04004700: + symbol: d_course_mario_raceway_vertex_0x04004700 + type: mk64:course_vtx + count: 8 + offset: 0x3e20 + +d_course_mario_raceway_vertex_0x04004780: + symbol: d_course_mario_raceway_vertex_0x04004780 + type: mk64:course_vtx + count: 50 + offset: 0x3e90 + +d_course_mario_raceway_vertex_0x04004980: + symbol: d_course_mario_raceway_vertex_0x04004980 + type: mk64:course_vtx + count: 8 + offset: 0x4050 + +d_course_mario_raceway_vertex_0x04004A00: + symbol: d_course_mario_raceway_vertex_0x04004A00 + type: mk64:course_vtx + count: 22 + offset: 0x40c0 + +d_course_mario_raceway_vertex_0x04004B00: + symbol: d_course_mario_raceway_vertex_0x04004B00 + type: mk64:course_vtx + count: 50 + offset: 0x41a0 + +d_course_mario_raceway_vertex_0x04004D00: + symbol: d_course_mario_raceway_vertex_0x04004D00 + type: mk64:course_vtx + count: 22 + offset: 0x4360 + +d_course_mario_raceway_vertex_0x04004E00: + symbol: d_course_mario_raceway_vertex_0x04004E00 + type: mk64:course_vtx + count: 50 + offset: 0x4440 + +d_course_mario_raceway_vertex_0x04005000: + symbol: d_course_mario_raceway_vertex_0x04005000 + type: mk64:course_vtx + count: 18 + offset: 0x4600 + +d_course_mario_raceway_vertex_0x040050C0: + symbol: d_course_mario_raceway_vertex_0x040050C0 + type: mk64:course_vtx + count: 49 + offset: 0x46a8 + +d_course_mario_raceway_vertex_0x040052B0: + symbol: d_course_mario_raceway_vertex_0x040052B0 + type: mk64:course_vtx + count: 18 + offset: 0x485a + +d_course_mario_raceway_vertex_0x04005370: + symbol: d_course_mario_raceway_vertex_0x04005370 + type: mk64:course_vtx + count: 18 + offset: 0x4902 + +d_course_mario_raceway_vertex_0x04005430: + symbol: d_course_mario_raceway_vertex_0x04005430 + type: mk64:course_vtx + count: 38 + offset: 0x49aa + +d_course_mario_raceway_vertex_0x040055D0: + symbol: d_course_mario_raceway_vertex_0x040055D0 + type: mk64:course_vtx + count: 50 + offset: 0x4b16 + +d_course_mario_raceway_vertex_0x040057D0: + symbol: d_course_mario_raceway_vertex_0x040057D0 + type: mk64:course_vtx + count: 7 + offset: 0x4cd6 + +d_course_mario_raceway_vertex_0x04005840: + symbol: d_course_mario_raceway_vertex_0x04005840 + type: mk64:course_vtx + count: 50 + offset: 0x4d38 + +d_course_mario_raceway_vertex_0x04005A40: + symbol: d_course_mario_raceway_vertex_0x04005A40 + type: mk64:course_vtx + count: 8 + offset: 0x4ef8 + +d_course_mario_raceway_vertex_0x04005AC0: + symbol: d_course_mario_raceway_vertex_0x04005AC0 + type: mk64:course_vtx + count: 36 + offset: 0x4f68 + +d_course_mario_raceway_vertex_0x04005C40: + symbol: d_course_mario_raceway_vertex_0x04005C40 + type: mk64:course_vtx + count: 22 + offset: 0x50b8 + +d_course_mario_raceway_vertex_0x04005D40: + symbol: d_course_mario_raceway_vertex_0x04005D40 + type: mk64:course_vtx + count: 32 + offset: 0x5198 + +d_course_mario_raceway_vertex_0x04005E80: + symbol: d_course_mario_raceway_vertex_0x04005E80 + type: mk64:course_vtx + count: 24 + offset: 0x52b0 + +d_course_mario_raceway_vertex_0x04005FA0: + symbol: d_course_mario_raceway_vertex_0x04005FA0 + type: mk64:course_vtx + count: 36 + offset: 0x53ac + +d_course_mario_raceway_vertex_0x04006120: + symbol: d_course_mario_raceway_vertex_0x04006120 + type: mk64:course_vtx + count: 22 + offset: 0x54fc + +d_course_mario_raceway_vertex_0x04006220: + symbol: d_course_mario_raceway_vertex_0x04006220 + type: mk64:course_vtx + count: 36 + offset: 0x55dc + +d_course_mario_raceway_vertex_0x040063A0: + symbol: d_course_mario_raceway_vertex_0x040063A0 + type: mk64:course_vtx + count: 36 + offset: 0x572c + +d_course_mario_raceway_vertex_0x04006520: + symbol: d_course_mario_raceway_vertex_0x04006520 + type: mk64:course_vtx + count: 36 + offset: 0x587c + +d_course_mario_raceway_vertex_0x040066A0: + symbol: d_course_mario_raceway_vertex_0x040066A0 + type: mk64:course_vtx + count: 18 + offset: 0x59cc + +d_course_mario_raceway_vertex_0x04006760: + symbol: d_course_mario_raceway_vertex_0x04006760 + type: mk64:course_vtx + count: 36 + offset: 0x5a74 + +d_course_mario_raceway_vertex_0x040068E0: + symbol: d_course_mario_raceway_vertex_0x040068E0 + type: mk64:course_vtx + count: 22 + offset: 0x5bc4 + +d_course_mario_raceway_vertex_0x040069E0: + symbol: d_course_mario_raceway_vertex_0x040069E0 + type: mk64:course_vtx + count: 8 + offset: 0x5ca4 + +d_course_mario_raceway_vertex_0x04006A60: + symbol: d_course_mario_raceway_vertex_0x04006A60 + type: mk64:course_vtx + count: 18 + offset: 0x5d14 + +d_course_mario_raceway_vertex_0x04006B20: + symbol: d_course_mario_raceway_vertex_0x04006B20 + type: mk64:course_vtx + count: 20 + offset: 0x5dbc + +d_course_mario_raceway_vertex_0x04006C00: + symbol: d_course_mario_raceway_vertex_0x04006C00 + type: mk64:course_vtx + count: 20 + offset: 0x5e80 + +d_course_mario_raceway_vertex_0x04006CE0: + symbol: d_course_mario_raceway_vertex_0x04006CE0 + type: mk64:course_vtx + count: 18 + offset: 0x5f44 + +d_course_mario_raceway_vertex_0x04006DA0: + symbol: d_course_mario_raceway_vertex_0x04006DA0 + type: mk64:course_vtx + count: 24 + offset: 0x5fec + +d_course_mario_raceway_vertex_0x04006EC0: + symbol: d_course_mario_raceway_vertex_0x04006EC0 + type: mk64:course_vtx + count: 18 + offset: 0x60e8 + +d_course_mario_raceway_vertex_0x04006F80: + symbol: d_course_mario_raceway_vertex_0x04006F80 + type: mk64:course_vtx + count: 8 + offset: 0x6190 + +d_course_mario_raceway_vertex_0x04007000: + symbol: d_course_mario_raceway_vertex_0x04007000 + type: mk64:course_vtx + count: 34 + offset: 0x6200 + +d_course_mario_raceway_vertex_0x04007160: + symbol: d_course_mario_raceway_vertex_0x04007160 + type: mk64:course_vtx + count: 34 + offset: 0x6334 + +d_course_mario_raceway_vertex_0x040072C0: + symbol: d_course_mario_raceway_vertex_0x040072C0 + type: mk64:course_vtx + count: 36 + offset: 0x6468 + +d_course_mario_raceway_vertex_0x04007440: + symbol: d_course_mario_raceway_vertex_0x04007440 + type: mk64:course_vtx + count: 50 + offset: 0x65b8 + +d_course_mario_raceway_vertex_0x04007640: + symbol: d_course_mario_raceway_vertex_0x04007640 + type: mk64:course_vtx + count: 7 + offset: 0x6778 + +d_course_mario_raceway_vertex_0x040076B0: + symbol: d_course_mario_raceway_vertex_0x040076B0 + type: mk64:course_vtx + count: 22 + offset: 0x67da + +d_course_mario_raceway_vertex_0x040077B0: + symbol: d_course_mario_raceway_vertex_0x040077B0 + type: mk64:course_vtx + count: 36 + offset: 0x68ba + +d_course_mario_raceway_vertex_0x04007930: + symbol: d_course_mario_raceway_vertex_0x04007930 + type: mk64:course_vtx + count: 48 + offset: 0x6a0a + +d_course_mario_raceway_vertex_0x04007B10: + symbol: d_course_mario_raceway_vertex_0x04007B10 + type: mk64:course_vtx + count: 50 + offset: 0x6bae + +d_course_mario_raceway_vertex_0x04007D10: + symbol: d_course_mario_raceway_vertex_0x04007D10 + type: mk64:course_vtx + count: 50 + offset: 0x6d6e + +d_course_mario_raceway_vertex_0x04007F10: + symbol: d_course_mario_raceway_vertex_0x04007F10 + type: mk64:course_vtx + count: 49 + offset: 0x6f2e + +d_course_mario_raceway_vertex_0x04008100: + symbol: d_course_mario_raceway_vertex_0x04008100 + type: mk64:course_vtx + count: 48 + offset: 0x70e0 + +d_course_mario_raceway_vertex_0x040082E0: + symbol: d_course_mario_raceway_vertex_0x040082E0 + type: mk64:course_vtx + count: 8 + offset: 0x7284 + +d_course_mario_raceway_vertex_0x04008360: + symbol: d_course_mario_raceway_vertex_0x04008360 + type: mk64:course_vtx + count: 50 + offset: 0x72f4 + +d_course_mario_raceway_vertex_0x04008560: + symbol: d_course_mario_raceway_vertex_0x04008560 + type: mk64:course_vtx + count: 49 + offset: 0x74b4 + +d_course_mario_raceway_vertex_0x04008750: + symbol: d_course_mario_raceway_vertex_0x04008750 + type: mk64:course_vtx + count: 50 + offset: 0x7666 + +d_course_mario_raceway_vertex_0x04008950: + symbol: d_course_mario_raceway_vertex_0x04008950 + type: mk64:course_vtx + count: 50 + offset: 0x7826 + +d_course_mario_raceway_vertex_0x04008B50: + symbol: d_course_mario_raceway_vertex_0x04008B50 + type: mk64:course_vtx + count: 37 + offset: 0x79e6 + +d_course_mario_raceway_vertex_0x04008CE0: + symbol: d_course_mario_raceway_vertex_0x04008CE0 + type: mk64:course_vtx + count: 5 + offset: 0x7b44 + +d_course_mario_raceway_vertex_0x04008D30: + symbol: d_course_mario_raceway_vertex_0x04008D30 + type: mk64:course_vtx + count: 8 + offset: 0x7b8a + +d_course_mario_raceway_vertex_0x04008DB0: + symbol: d_course_mario_raceway_vertex_0x04008DB0 + type: mk64:course_vtx + count: 4 + offset: 0x7bfa + +d_course_mario_raceway_vertex_0x04008DF0: + symbol: d_course_mario_raceway_vertex_0x04008DF0 + type: mk64:course_vtx + count: 4 + offset: 0x7c32 + +d_course_mario_raceway_vertex_0x04008E30: + symbol: d_course_mario_raceway_vertex_0x04008E30 + type: mk64:course_vtx + count: 4 + offset: 0x7c6a + +d_course_mario_raceway_vertex_0x04008E70: + symbol: d_course_mario_raceway_vertex_0x04008E70 + type: mk64:course_vtx + count: 4 + offset: 0x7ca2 + +d_course_mario_raceway_vertex_0x04008EB0: + symbol: d_course_mario_raceway_vertex_0x04008EB0 + type: mk64:course_vtx + count: 8 + offset: 0x7cda + +d_course_mario_raceway_vertex_0x04008F30: + symbol: d_course_mario_raceway_vertex_0x04008F30 + type: mk64:course_vtx + count: 4 + offset: 0x7d4a + +d_course_mario_raceway_vertex_0x04008F70: + symbol: d_course_mario_raceway_vertex_0x04008F70 + type: mk64:course_vtx + count: 4 + offset: 0x7d82 + +d_course_mario_raceway_vertex_0x04008FB0: + symbol: d_course_mario_raceway_vertex_0x04008FB0 + type: mk64:course_vtx + count: 4 + offset: 0x7dba + +d_course_mario_raceway_vertex_0x04008FF0: + symbol: d_course_mario_raceway_vertex_0x04008FF0 + type: mk64:course_vtx + count: 4 + offset: 0x7df2 + +d_course_mario_raceway_vertex_0x04009030: + symbol: d_course_mario_raceway_vertex_0x04009030 + type: mk64:course_vtx + count: 32 + offset: 0x7e2a + +d_course_mario_raceway_vertex_0x04009170: + symbol: d_course_mario_raceway_vertex_0x04009170 + type: mk64:course_vtx + count: 32 + offset: 0x7f42 + +d_course_mario_raceway_vertex_0x040092B0: + symbol: d_course_mario_raceway_vertex_0x040092B0 + type: mk64:course_vtx + count: 8 + offset: 0x805a + +d_course_mario_raceway_vertex_0x04009330: + symbol: d_course_mario_raceway_vertex_0x04009330 + type: mk64:course_vtx + count: 8 + offset: 0x80ca + +d_course_mario_raceway_vertex_0x040093B0: + symbol: d_course_mario_raceway_vertex_0x040093B0 + type: mk64:course_vtx + count: 33 + offset: 0x813a + +d_course_mario_raceway_vertex_0x04009500: + symbol: d_course_mario_raceway_vertex_0x04009500 + type: mk64:course_vtx + count: 48 + offset: 0x8260 + +d_course_mario_raceway_vertex_0x040096E0: + symbol: d_course_mario_raceway_vertex_0x040096E0 + type: mk64:course_vtx + count: 39 + offset: 0x8404 + +d_course_mario_raceway_vertex_0x04009890: + symbol: d_course_mario_raceway_vertex_0x04009890 + type: mk64:course_vtx + count: 35 + offset: 0x857e + +d_course_mario_raceway_vertex_0x04009A00: + symbol: d_course_mario_raceway_vertex_0x04009A00 + type: mk64:course_vtx + count: 21 + offset: 0x86c0 + +d_course_mario_raceway_vertex_0x04009AF0: + symbol: d_course_mario_raceway_vertex_0x04009AF0 + type: mk64:course_vtx + count: 37 + offset: 0x8792 + +d_course_mario_raceway_vertex_0x04009C80: + symbol: d_course_mario_raceway_vertex_0x04009C80 + type: mk64:course_vtx + count: 48 + offset: 0x88f0 + +d_course_mario_raceway_vertex_0x04009E60: + symbol: d_course_mario_raceway_vertex_0x04009E60 + type: mk64:course_vtx + count: 21 + offset: 0x8a94 + +d_course_mario_raceway_vertex_0x04009F50: + symbol: d_course_mario_raceway_vertex_0x04009F50 + type: mk64:course_vtx + count: 48 + offset: 0x8b66 + +d_course_mario_raceway_vertex_0x0400A130: + symbol: d_course_mario_raceway_vertex_0x0400A130 + type: mk64:course_vtx + count: 18 + offset: 0x8d0a + +d_course_mario_raceway_vertex_0x0400A1F0: + symbol: d_course_mario_raceway_vertex_0x0400A1F0 + type: mk64:course_vtx + count: 50 + offset: 0x8db2 + +d_course_mario_raceway_vertex_0x0400A3F0: + symbol: d_course_mario_raceway_vertex_0x0400A3F0 + type: mk64:course_vtx + count: 6 + offset: 0x8f72 + +d_course_mario_raceway_vertex_0x0400A450: + symbol: d_course_mario_raceway_vertex_0x0400A450 + type: mk64:course_vtx + count: 50 + offset: 0x8fc6 + +d_course_mario_raceway_vertex_0x0400A650: + symbol: d_course_mario_raceway_vertex_0x0400A650 + type: mk64:course_vtx + count: 50 + offset: 0x9186 + +d_course_mario_raceway_vertex_0x0400A850: + symbol: d_course_mario_raceway_vertex_0x0400A850 + type: mk64:course_vtx + count: 6 + offset: 0x9346 + +d_course_mario_raceway_vertex_0x0400A8B0: + symbol: d_course_mario_raceway_vertex_0x0400A8B0 + type: mk64:course_vtx + count: 48 + offset: 0x939a + +d_course_mario_raceway_vertex_0x0400AA90: + symbol: d_course_mario_raceway_vertex_0x0400AA90 + type: mk64:course_vtx + count: 48 + offset: 0x953e + +d_course_mario_raceway_vertex_0x0400AC70: + symbol: d_course_mario_raceway_vertex_0x0400AC70 + type: mk64:course_vtx + count: 48 + offset: 0x96e2 + +d_course_mario_raceway_vertex_0x0400AE50: + symbol: d_course_mario_raceway_vertex_0x0400AE50 + type: mk64:course_vtx + count: 9 + offset: 0x9886 + +d_course_mario_raceway_vertex_0x0400AEE0: + symbol: d_course_mario_raceway_vertex_0x0400AEE0 + type: mk64:course_vtx + count: 32 + offset: 0x9904 + +d_course_mario_raceway_vertex_0x0400B020: + symbol: d_course_mario_raceway_vertex_0x0400B020 + type: mk64:course_vtx + count: 48 + offset: 0x9a1c + +d_course_mario_raceway_vertex_0x0400B200: + symbol: d_course_mario_raceway_vertex_0x0400B200 + type: mk64:course_vtx + count: 36 + offset: 0x9bc0 + +d_course_mario_raceway_vertex_0x0400B380: + symbol: d_course_mario_raceway_vertex_0x0400B380 + type: mk64:course_vtx + count: 32 + offset: 0x9d10 + +d_course_mario_raceway_vertex_0x0400B4C0: + symbol: d_course_mario_raceway_vertex_0x0400B4C0 + type: mk64:course_vtx + count: 49 + offset: 0x9e28 + +d_course_mario_raceway_vertex_0x0400B6B0: + symbol: d_course_mario_raceway_vertex_0x0400B6B0 + type: mk64:course_vtx + count: 36 + offset: 0x9fda + +d_course_mario_raceway_vertex_0x0400B830: + symbol: d_course_mario_raceway_vertex_0x0400B830 + type: mk64:course_vtx + count: 32 + offset: 0xa12a + +d_course_mario_raceway_vertex_0x0400B970: + symbol: d_course_mario_raceway_vertex_0x0400B970 + type: mk64:course_vtx + count: 38 + offset: 0xa242 + +d_course_mario_raceway_vertex_0x0400BB10: + symbol: d_course_mario_raceway_vertex_0x0400BB10 + type: mk64:course_vtx + count: 50 + offset: 0xa3ae + +d_course_mario_raceway_vertex_0x0400BD10: + symbol: d_course_mario_raceway_vertex_0x0400BD10 + type: mk64:course_vtx + count: 49 + offset: 0xa56e + +d_course_mario_raceway_vertex_0x0400BF00: + symbol: d_course_mario_raceway_vertex_0x0400BF00 + type: mk64:course_vtx + count: 21 + offset: 0xa720 + +d_course_mario_raceway_vertex_0x0400BFF0: + symbol: d_course_mario_raceway_vertex_0x0400BFF0 + type: mk64:course_vtx + count: 48 + offset: 0xa7f2 + +d_course_mario_raceway_vertex_0x0400C1D0: + symbol: d_course_mario_raceway_vertex_0x0400C1D0 + type: mk64:course_vtx + count: 35 + offset: 0xa996 + +d_course_mario_raceway_vertex_0x0400C340: + symbol: d_course_mario_raceway_vertex_0x0400C340 + type: mk64:course_vtx + count: 50 + offset: 0xaad8 + +d_course_mario_raceway_vertex_0x0400C540: + symbol: d_course_mario_raceway_vertex_0x0400C540 + type: mk64:course_vtx + count: 36 + offset: 0xac98 + +d_course_mario_raceway_vertex_0x0400C6C0: + symbol: d_course_mario_raceway_vertex_0x0400C6C0 + type: mk64:course_vtx + count: 41 + offset: 0xade8 + +d_course_mario_raceway_vertex_0x0400C890: + symbol: d_course_mario_raceway_vertex_0x0400C890 + type: mk64:course_vtx + count: 41 + offset: 0xaf7e + +d_course_mario_raceway_vertex_0x0400CA60: + symbol: d_course_mario_raceway_vertex_0x0400CA60 + type: mk64:course_vtx + count: 49 + offset: 0xb114 + +d_course_mario_raceway_vertex_0x0400CC50: + symbol: d_course_mario_raceway_vertex_0x0400CC50 + type: mk64:course_vtx + count: 41 + offset: 0xb2c6 + +d_course_mario_raceway_vertex_0x0400CE20: + symbol: d_course_mario_raceway_vertex_0x0400CE20 + type: mk64:course_vtx + count: 36 + offset: 0xb45c + +d_course_mario_raceway_vertex_0x0400CFA0: + symbol: d_course_mario_raceway_vertex_0x0400CFA0 + type: mk64:course_vtx + count: 50 + offset: 0xb5ac + +d_course_mario_raceway_vertex_0x0400D1A0: + symbol: d_course_mario_raceway_vertex_0x0400D1A0 + type: mk64:course_vtx + count: 6 + offset: 0xb76c + +d_course_mario_raceway_vertex_0x0400D200: + symbol: d_course_mario_raceway_vertex_0x0400D200 + type: mk64:course_vtx + count: 18 + offset: 0xb7c0 + +d_course_mario_raceway_vertex_0x0400D2C0: + symbol: d_course_mario_raceway_vertex_0x0400D2C0 + type: mk64:course_vtx + count: 36 + offset: 0xb868 + +d_course_mario_raceway_vertex_0x0400D440: + symbol: d_course_mario_raceway_vertex_0x0400D440 + type: mk64:course_vtx + count: 20 + offset: 0xb9b8 + +d_course_mario_raceway_vertex_0x0400D520: + symbol: d_course_mario_raceway_vertex_0x0400D520 + type: mk64:course_vtx + count: 49 + offset: 0xba7c + +d_course_mario_raceway_vertex_0x0400D710: + symbol: d_course_mario_raceway_vertex_0x0400D710 + type: mk64:course_vtx + count: 49 + offset: 0xbc2e + +d_course_mario_raceway_vertex_0x0400D900: + symbol: d_course_mario_raceway_vertex_0x0400D900 + type: mk64:course_vtx + count: 21 + offset: 0xbde0 + +d_course_mario_raceway_vertex_0x0400D9F0: + symbol: d_course_mario_raceway_vertex_0x0400D9F0 + type: mk64:course_vtx + count: 49 + offset: 0xbeb2 + +d_course_mario_raceway_vertex_0x0400DBE0: + symbol: d_course_mario_raceway_vertex_0x0400DBE0 + type: mk64:course_vtx + count: 49 + offset: 0xc064 + +d_course_mario_raceway_vertex_0x0400DDD0: + symbol: d_course_mario_raceway_vertex_0x0400DDD0 + type: mk64:course_vtx + count: 38 + offset: 0xc216 + +d_course_mario_raceway_vertex_0x0400DF70: + symbol: d_course_mario_raceway_vertex_0x0400DF70 + type: mk64:course_vtx + count: 48 + offset: 0xc382 + +d_course_mario_raceway_vertex_0x0400E150: + symbol: d_course_mario_raceway_vertex_0x0400E150 + type: mk64:course_vtx + count: 50 + offset: 0xc526 + +d_course_mario_raceway_vertex_0x0400E350: + symbol: d_course_mario_raceway_vertex_0x0400E350 + type: mk64:course_vtx + count: 19 + offset: 0xc6e6 + +d_course_mario_raceway_vertex_0x0400E420: + symbol: d_course_mario_raceway_vertex_0x0400E420 + type: mk64:course_vtx + count: 48 + offset: 0xc79c + +d_course_mario_raceway_vertex_0x0400E600: + symbol: d_course_mario_raceway_vertex_0x0400E600 + type: mk64:course_vtx + count: 3 + offset: 0xc940 + +d_course_mario_raceway_vertex_0x0400E630: + symbol: d_course_mario_raceway_vertex_0x0400E630 + type: mk64:course_vtx + count: 38 + offset: 0xc96a + +d_course_mario_raceway_vertex_0x0400E7D0: + symbol: d_course_mario_raceway_vertex_0x0400E7D0 + type: mk64:course_vtx + count: 19 + offset: 0xcad6 + +d_course_mario_raceway_vertex_0x0400E8A0: + symbol: d_course_mario_raceway_vertex_0x0400E8A0 + type: mk64:course_vtx + count: 36 + offset: 0xcb8c + +d_course_mario_raceway_vertex_0x0400EA20: + symbol: d_course_mario_raceway_vertex_0x0400EA20 + type: mk64:course_vtx + count: 18 + offset: 0xccdc + +d_course_mario_raceway_vertex_0x0400EAE0: + symbol: d_course_mario_raceway_vertex_0x0400EAE0 + type: mk64:course_vtx + count: 21 + offset: 0xcd84 + +d_course_mario_raceway_vertex_0x0400EBD0: + symbol: d_course_mario_raceway_vertex_0x0400EBD0 + type: mk64:course_vtx + count: 48 + offset: 0xce56 + +d_course_mario_raceway_vertex_0x0400EDB0: + symbol: d_course_mario_raceway_vertex_0x0400EDB0 + type: mk64:course_vtx + count: 6 + offset: 0xcffa + +d_course_mario_raceway_vertex_0x0400EE10: + symbol: d_course_mario_raceway_vertex_0x0400EE10 + type: mk64:course_vtx + count: 48 + offset: 0xd04e + +d_course_mario_raceway_vertex_0x0400EFF0: + symbol: d_course_mario_raceway_vertex_0x0400EFF0 + type: mk64:course_vtx + count: 6 + offset: 0xd1f2 + +d_course_mario_raceway_vertex_0x0400F050: + symbol: d_course_mario_raceway_vertex_0x0400F050 + type: mk64:course_vtx + count: 48 + offset: 0xd246 + +d_course_mario_raceway_vertex_0x0400F230: + symbol: d_course_mario_raceway_vertex_0x0400F230 + type: mk64:course_vtx + count: 50 + offset: 0xd3ea + +d_course_mario_raceway_vertex_0x0400F430: + symbol: d_course_mario_raceway_vertex_0x0400F430 + type: mk64:course_vtx + count: 20 + offset: 0xd5aa + +d_course_mario_raceway_vertex_0x0400F510: + symbol: d_course_mario_raceway_vertex_0x0400F510 + type: mk64:course_vtx + count: 48 + offset: 0xd66e + +d_course_mario_raceway_vertex_0x0400F6F0: + symbol: d_course_mario_raceway_vertex_0x0400F6F0 + type: mk64:course_vtx + count: 36 + offset: 0xd812 + +d_course_mario_raceway_vertex_0x0400F870: + symbol: d_course_mario_raceway_vertex_0x0400F870 + type: mk64:course_vtx + count: 50 + offset: 0xd962 + +d_course_mario_raceway_vertex_0x0400FA70: + symbol: d_course_mario_raceway_vertex_0x0400FA70 + type: mk64:course_vtx + count: 19 + offset: 0xdb22 + +d_course_mario_raceway_vertex_0x0400FB40: + symbol: d_course_mario_raceway_vertex_0x0400FB40 + type: mk64:course_vtx + count: 48 + offset: 0xdbd8 + +d_course_mario_raceway_vertex_0x0400FD20: + symbol: d_course_mario_raceway_vertex_0x0400FD20 + type: mk64:course_vtx + count: 50 + offset: 0xdd7c + +d_course_mario_raceway_vertex_0x0400FF20: + symbol: d_course_mario_raceway_vertex_0x0400FF20 + type: mk64:course_vtx + count: 49 + offset: 0xdf3c + +d_course_mario_raceway_vertex_0x04010110: + symbol: d_course_mario_raceway_vertex_0x04010110 + type: mk64:course_vtx + count: 49 + offset: 0xe0ee + +d_course_mario_raceway_vertex_0x04010300: + symbol: d_course_mario_raceway_vertex_0x04010300 + type: mk64:course_vtx + count: 21 + offset: 0xe2a0 + +d_course_mario_raceway_vertex_0x040103F0: + symbol: d_course_mario_raceway_vertex_0x040103F0 + type: mk64:course_vtx + count: 49 + offset: 0xe372 + +d_course_mario_raceway_vertex_0x040105E0: + symbol: d_course_mario_raceway_vertex_0x040105E0 + type: mk64:course_vtx + count: 49 + offset: 0xe524 + +d_course_mario_raceway_vertex_0x040107D0: + symbol: d_course_mario_raceway_vertex_0x040107D0 + type: mk64:course_vtx + count: 50 + offset: 0xe6d6 + +d_course_mario_raceway_vertex_0x040109D0: + symbol: d_course_mario_raceway_vertex_0x040109D0 + type: mk64:course_vtx + count: 50 + offset: 0xe896 + +d_course_mario_raceway_vertex_0x04010BD0: + symbol: d_course_mario_raceway_vertex_0x04010BD0 + type: mk64:course_vtx + count: 50 + offset: 0xea56 + +d_course_mario_raceway_vertex_0x04010DD0: + symbol: d_course_mario_raceway_vertex_0x04010DD0 + type: mk64:course_vtx + count: 17 + offset: 0xec16 + +d_course_mario_raceway_vertex_0x04010E80: + symbol: d_course_mario_raceway_vertex_0x04010E80 + type: mk64:course_vtx + count: 48 + offset: 0xecb0 + +d_course_mario_raceway_vertex_0x04011060: + symbol: d_course_mario_raceway_vertex_0x04011060 + type: mk64:course_vtx + count: 38 + offset: 0xee54 + +d_course_mario_raceway_vertex_0x04011200: + symbol: d_course_mario_raceway_vertex_0x04011200 + type: mk64:course_vtx + count: 50 + offset: 0xefc0 + +d_course_mario_raceway_vertex_0x04011400: + symbol: d_course_mario_raceway_vertex_0x04011400 + type: mk64:course_vtx + count: 17 + offset: 0xf180 + +d_course_mario_raceway_vertex_0x040114B0: + symbol: d_course_mario_raceway_vertex_0x040114B0 + type: mk64:course_vtx + count: 50 + offset: 0xf21a + +d_course_mario_raceway_vertex_0x040116B0: + symbol: d_course_mario_raceway_vertex_0x040116B0 + type: mk64:course_vtx + count: 20 + offset: 0xf3da + +d_course_mario_raceway_vertex_0x04011790: + symbol: d_course_mario_raceway_vertex_0x04011790 + type: mk64:course_vtx + count: 48 + offset: 0xf49e + +d_course_mario_raceway_vertex_0x04011970: + symbol: d_course_mario_raceway_vertex_0x04011970 + type: mk64:course_vtx + count: 3 + offset: 0xf642 + +d_course_mario_raceway_vertex_0x040119A0: + symbol: d_course_mario_raceway_vertex_0x040119A0 + type: mk64:course_vtx + count: 50 + offset: 0xf66c + +d_course_mario_raceway_vertex_0x04011BA0: + symbol: d_course_mario_raceway_vertex_0x04011BA0 + type: mk64:course_vtx + count: 39 + offset: 0xf82c + +d_course_mario_raceway_vertex_0x04011D50: + symbol: d_course_mario_raceway_vertex_0x04011D50 + type: mk64:course_vtx + count: 48 + offset: 0xf9a6 + +d_course_mario_raceway_vertex_0x04011F30: + symbol: d_course_mario_raceway_vertex_0x04011F30 + type: mk64:course_vtx + count: 50 + offset: 0xfb4a + +d_course_mario_raceway_vertex_0x04012130: + symbol: d_course_mario_raceway_vertex_0x04012130 + type: mk64:course_vtx + count: 32 + offset: 0xfd0a + +d_course_mario_raceway_vertex_0x04012270: + symbol: d_course_mario_raceway_vertex_0x04012270 + type: mk64:course_vtx + count: 24 + offset: 0xfe22 + +d_course_mario_raceway_vertex_0x04012390: + symbol: d_course_mario_raceway_vertex_0x04012390 + type: mk64:course_vtx + count: 50 + offset: 0xff1e + +d_course_mario_raceway_vertex_0x04012590: + symbol: d_course_mario_raceway_vertex_0x04012590 + type: mk64:course_vtx + count: 50 + offset: 0x100de + +d_course_mario_raceway_vertex_0x04012790: + symbol: d_course_mario_raceway_vertex_0x04012790 + type: mk64:course_vtx + count: 49 + offset: 0x1029e + +d_course_mario_raceway_vertex_0x04012980: + symbol: d_course_mario_raceway_vertex_0x04012980 + type: mk64:course_vtx + count: 3 + offset: 0x10450 + +d_course_mario_raceway_vertex_0x040129B0: + symbol: d_course_mario_raceway_vertex_0x040129B0 + type: mk64:course_vtx + count: 48 + offset: 0x1047a + +d_course_mario_raceway_vertex_0x04012B90: + symbol: d_course_mario_raceway_vertex_0x04012B90 + type: mk64:course_vtx + count: 49 + offset: 0x1061e + +d_course_mario_raceway_vertex_0x04012D80: + symbol: d_course_mario_raceway_vertex_0x04012D80 + type: mk64:course_vtx + count: 50 + offset: 0x107d0 + +d_course_mario_raceway_vertex_0x04012F80: + symbol: d_course_mario_raceway_vertex_0x04012F80 + type: mk64:course_vtx + count: 3 + offset: 0x10990 + +d_course_mario_raceway_vertex_0x04012FB0: + symbol: d_course_mario_raceway_vertex_0x04012FB0 + type: mk64:course_vtx + count: 49 + offset: 0x109ba + +d_course_mario_raceway_vertex_0x040131A0: + symbol: d_course_mario_raceway_vertex_0x040131A0 + type: mk64:course_vtx + count: 49 + offset: 0x10b6c + +d_course_mario_raceway_vertex_0x04013390: + symbol: d_course_mario_raceway_vertex_0x04013390 + type: mk64:course_vtx + count: 18 + offset: 0x10d1e + +d_course_mario_raceway_vertex_0x04013450: + symbol: d_course_mario_raceway_vertex_0x04013450 + type: mk64:course_vtx + count: 49 + offset: 0x10dc6 + +d_course_mario_raceway_vertex_0x04013640: + symbol: d_course_mario_raceway_vertex_0x04013640 + type: mk64:course_vtx + count: 3 + offset: 0x10f78 + +d_course_mario_raceway_vertex_0x04013670: + symbol: d_course_mario_raceway_vertex_0x04013670 + type: mk64:course_vtx + count: 49 + offset: 0x10fa2 + +d_course_mario_raceway_vertex_0x04013860: + symbol: d_course_mario_raceway_vertex_0x04013860 + type: mk64:course_vtx + count: 48 + offset: 0x11154 + +d_course_mario_raceway_vertex_0x04013A40: + symbol: d_course_mario_raceway_vertex_0x04013A40 + type: mk64:course_vtx + count: 36 + offset: 0x112f8 + +d_course_mario_raceway_vertex_0x04013BC0: + symbol: d_course_mario_raceway_vertex_0x04013BC0 + type: mk64:course_vtx + count: 49 + offset: 0x11448 + +d_course_mario_raceway_vertex_0x04013DB0: + symbol: d_course_mario_raceway_vertex_0x04013DB0 + type: mk64:course_vtx + count: 38 + offset: 0x115fa + +d_course_mario_raceway_vertex_0x04013F50: + symbol: d_course_mario_raceway_vertex_0x04013F50 + type: mk64:course_vtx + count: 9 + offset: 0x11766 + +d_course_mario_raceway_vertex_0x04013FE0: + symbol: d_course_mario_raceway_vertex_0x04013FE0 + type: mk64:course_vtx + count: 49 + offset: 0x117e4 + +d_course_mario_raceway_vertex_0x040141D0: + symbol: d_course_mario_raceway_vertex_0x040141D0 + type: mk64:course_vtx + count: 25 + offset: 0x11996 + +d_course_mario_raceway_vertex_0x04014300: + symbol: d_course_mario_raceway_vertex_0x04014300 + type: mk64:course_vtx + count: 5 + offset: 0x11aa0 + +d_course_mario_raceway_vertex_0x04014350: + symbol: d_course_mario_raceway_vertex_0x04014350 + type: mk64:course_vtx + count: 17 + offset: 0x11ae6 + +d_course_mario_raceway_vertex_0x04014400: + symbol: d_course_mario_raceway_vertex_0x04014400 + type: mk64:course_vtx + count: 49 + offset: 0x11b80 + +d_course_mario_raceway_vertex_0x040145F0: + symbol: d_course_mario_raceway_vertex_0x040145F0 + type: mk64:course_vtx + count: 36 + offset: 0x11d32 + +d_course_mario_raceway_vertex_0x04014770: + symbol: d_course_mario_raceway_vertex_0x04014770 + type: mk64:course_vtx + count: 50 + offset: 0x11e82 + +d_course_mario_raceway_vertex_0x04014970: + symbol: d_course_mario_raceway_vertex_0x04014970 + type: mk64:course_vtx + count: 50 + offset: 0x12042 + +d_course_mario_raceway_vertex_0x04014B70: + symbol: d_course_mario_raceway_vertex_0x04014B70 + type: mk64:course_vtx + count: 20 + offset: 0x12202 + +d_course_mario_raceway_vertex_0x04014C50: + symbol: d_course_mario_raceway_vertex_0x04014C50 + type: mk64:course_vtx + count: 33 + offset: 0x122c6 + +d_course_mario_raceway_vertex_0x04014DA0: + symbol: d_course_mario_raceway_vertex_0x04014DA0 + type: mk64:course_vtx + count: 50 + offset: 0x123ec + +d_course_mario_raceway_vertex_0x04014FA0: + symbol: d_course_mario_raceway_vertex_0x04014FA0 + type: mk64:course_vtx + count: 18 + offset: 0x125ac + +d_course_mario_raceway_vertex_0x04015060: + symbol: d_course_mario_raceway_vertex_0x04015060 + type: mk64:course_vtx + count: 50 + offset: 0x12654 + +d_course_mario_raceway_vertex_0x04015260: + symbol: d_course_mario_raceway_vertex_0x04015260 + type: mk64:course_vtx + count: 23 + offset: 0x12814 + +d_course_mario_raceway_vertex_0x04015370: + symbol: d_course_mario_raceway_vertex_0x04015370 + type: mk64:course_vtx + count: 3 + offset: 0x12902 + +d_course_mario_raceway_vertex_0x040153A0: + symbol: d_course_mario_raceway_vertex_0x040153A0 + type: mk64:course_vtx + count: 8 + offset: 0x1292c + +d_course_mario_raceway_vertex_0x04015420: + symbol: d_course_mario_raceway_vertex_0x04015420 + type: mk64:course_vtx + count: 50 + offset: 0x1299c + +d_course_mario_raceway_vertex_0x04015620: + symbol: d_course_mario_raceway_vertex_0x04015620 + type: mk64:course_vtx + count: 20 + offset: 0x12b5c + +d_course_mario_raceway_vertex_0x04015700: + symbol: d_course_mario_raceway_vertex_0x04015700 + type: mk64:course_vtx + count: 50 + offset: 0x12c20 + +d_course_mario_raceway_vertex_0x04015900: + symbol: d_course_mario_raceway_vertex_0x04015900 + type: mk64:course_vtx + count: 50 + offset: 0x12de0 + +d_course_mario_raceway_vertex_0x04015B00: + symbol: d_course_mario_raceway_vertex_0x04015B00 + type: mk64:course_vtx + count: 21 + offset: 0x12fa0 + +d_course_mario_raceway_vertex_0x04015BF0: + symbol: d_course_mario_raceway_vertex_0x04015BF0 + type: mk64:course_vtx + count: 48 + offset: 0x13072 + +d_course_mario_raceway_vertex_0x04015DD0: + symbol: d_course_mario_raceway_vertex_0x04015DD0 + type: mk64:course_vtx + count: 3 + offset: 0x13216 + +d_course_mario_raceway_vertex_0x04015E00: + symbol: d_course_mario_raceway_vertex_0x04015E00 + type: mk64:course_vtx + count: 17 + offset: 0x13240 + +d_course_mario_raceway_vertex_0x04015EB0: + symbol: d_course_mario_raceway_vertex_0x04015EB0 + type: mk64:course_vtx + count: 49 + offset: 0x132da + +d_course_mario_raceway_vertex_0x040160A0: + symbol: d_course_mario_raceway_vertex_0x040160A0 + type: mk64:course_vtx + count: 49 + offset: 0x1348c + +d_course_mario_raceway_vertex_0x04016290: + symbol: d_course_mario_raceway_vertex_0x04016290 + type: mk64:course_vtx + count: 50 + offset: 0x1363e + +d_course_mario_raceway_vertex_0x04016490: + symbol: d_course_mario_raceway_vertex_0x04016490 + type: mk64:course_vtx + count: 50 + offset: 0x137fe + +d_course_mario_raceway_vertex_0x04016690: + symbol: d_course_mario_raceway_vertex_0x04016690 + type: mk64:course_vtx + count: 32 + offset: 0x139be diff --git a/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_data.yml b/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_data.yml new file mode 100644 index 000000000..f02070b7f --- /dev/null +++ b/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_data.yml @@ -0,0 +1,1221 @@ +:config: + segments: + - [0x06, 0x852E20] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/moo_moo_farm/moo_moo_farm_data.yml" + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees4Left"] + - [0x03009800, "textures/other_textures/gTextureTrees4Right"] + - [0x0300A000, "textures/other_textures/gTextureCow01Left"] + - [0x0300A800, "textures/other_textures/gTextureCow01Right"] + - [0x0300B000, "textures/other_textures/gTextureCow02Left"] + - [0x0300B800, "textures/other_textures/gTextureCow02Right"] + - [0x0300C000, "textures/other_textures/gTextureCow03Left"] + - [0x0300C800, "textures/other_textures/gTextureCow03Right"] + - [0x0300D000, "textures/other_textures/gTextureCow04Left"] + - [0x0300D800, "textures/other_textures/gTextureCow04Right"] + - [0x0300E000, "textures/other_textures/gTextureCow05Left"] + - [0x0300E800, "textures/other_textures/gTextureCow05Right"] + # Segment 5 + - [0x05000000, "textures/other_textures/wood_door_0"] + - [0x05001000, "textures/other_textures/grass_2"] + - [0x05001800, "textures/other_textures/texture_64AF50"] + - [0x05002000, "textures/other_textures/texture_64B090"] + - [0x05002800, "textures/other_textures/texture_64B54C"] + - [0x05003000, "textures/other_textures/texture_64B3F8"] + - [0x05003800, "textures/other_textures/sign_nintendo_0"] + - [0x05004800, "textures/other_textures/sign_nintendo_1"] + - [0x05005800, "textures/other_textures/texture_6684F8"] + - [0x05006000, "textures/other_textures/sign_luigis_0"] + - [0x05007000, "textures/other_textures/sign_luigis_1"] + - [0x05008000, "textures/other_textures/sign_mario_star_0"] + - [0x05009000, "textures/other_textures/sign_mario_star_1"] + - [0x0500A000, "textures/other_textures/texture_674D58"] + - [0x0500B000, "textures/other_textures/texture_675064"] + - [0x0500B800, "textures/other_textures/texture_675220"] + - [0x0500C000, "textures/other_textures/texture_6775EC"] + - [0x0500D000, "textures/other_textures/texture_683314"] + - [0x0500E000, "textures/other_textures/texture_68CDA0"] + - [0x0500E800, "textures/other_textures/texture_6442D4"] + - [0x0500F000, "textures/other_textures/texture_64440C"] + - [0x05010000, "textures/other_textures/texture_6446AC"] + - [0x05010800, "textures/other_textures/gTextureMooMooFarmSignLeft"] + - [0x05011800, "textures/other_textures/gTextureMooMooFarmSignRight"] + - [0x05012800, "textures/other_textures/texture_64ACAC"] + - [0x05013000, "textures/other_textures/texture_66D698"] + - [0x05013800, "textures/other_textures/texture_66EBF0"] + - [0x05014000, "textures/other_textures/wheel_steam_engine_real"] + # Segment 7 + - [0x7000000, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_0"] + - [0x7000028, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_28"] + - [0x7000058, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_58"] + - [0x7000088, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_88"] + - [0x70000C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C0"] + - [0x70000F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_F8"] + - [0x7000130, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_130"] + - [0x7000170, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_170"] + - [0x70001A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A0"] + - [0x70001E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1E0"] + - [0x7000220, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_220"] + - [0x7000258, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_258"] + - [0x7000290, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_290"] + - [0x70002B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2B0"] + - [0x70002E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2E8"] + - [0x7000318, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_318"] + - [0x7000350, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_350"] + - [0x7000388, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_388"] + - [0x70003C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3C8"] + - [0x7000400, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_400"] + - [0x7000430, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_430"] + - [0x7000468, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_468"] + - [0x70004A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4A0"] + - [0x70004D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D0"] + - [0x7000590, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_590"] + - [0x70005C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5C8"] + - [0x7000600, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_600"] + - [0x7000638, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_638"] + - [0x7000670, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_670"] + - [0x70006A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6A8"] + - [0x70006E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6E0"] + - [0x7000720, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_720"] + - [0x7000750, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_750"] + - [0x7000790, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_790"] + - [0x70007D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_7D0"] + - [0x7000808, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_808"] + - [0x7000840, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_840"] + - [0x7000870, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_870"] + - [0x7000898, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_898"] + - [0x70008D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_8D0"] + - [0x7000908, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_908"] + - [0x7000940, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_940"] + - [0x7000978, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_978"] + - [0x70009B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_9B0"] + - [0x70009E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_9E0"] + - [0x7000A18, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A18"] + - [0x7000A50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A50"] + - [0x7000A80, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A80"] + - [0x7000B40, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_B40"] + - [0x7000C10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C10"] + - [0x7000C20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C20"] + - [0x7000CA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_CA0"] + - [0x7000CB0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_CB0"] + - [0x7000E50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_E50"] + - [0x7000EB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_EB8"] + - [0x7000F20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_F20"] + - [0x70010C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_10C0"] + - [0x70010E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_10E8"] + - [0x7001118, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1118"] + - [0x7001128, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1128"] + - [0x7001168, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1168"] + - [0x70011B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_11B0"] + - [0x70011F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_11F0"] + - [0x7001230, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1230"] + - [0x7001270, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1270"] + - [0x70012E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_12E0"] + - [0x7001348, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1348"] + - [0x7001388, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1388"] + - [0x70013E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_13E0"] + - [0x7001430, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1430"] + - [0x7001478, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1478"] + - [0x70014B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_14B8"] + - [0x7001518, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1518"] + - [0x7001578, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1578"] + - [0x70015E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_15E0"] + - [0x7001640, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1640"] + - [0x70016B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_16B8"] + - [0x7001718, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1718"] + - [0x7001750, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1750"] + - [0x70017A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_17A8"] + - [0x70017D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_17D8"] + - [0x7001828, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1828"] + - [0x70018E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_18E0"] + - [0x7001940, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1940"] + - [0x70019A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_19A0"] + - [0x7001A00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A00"] + - [0x7001A60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A60"] + - [0x7001AA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1AA0"] + - [0x7001AD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1AD0"] + - [0x7001B38, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1B38"] + - [0x7001BA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1BA0"] + - [0x7001C40, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1C40"] + - [0x7001C98, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1C98"] + - [0x7001D00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1D00"] + - [0x7001D60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1D60"] + - [0x7001DD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1DD0"] + - [0x7001E58, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1E58"] + - [0x7001ED0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1ED0"] + - [0x7001F20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F20"] + - [0x7001F58, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F58"] + - [0x7001F90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F90"] + - [0x7001FD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1FD0"] + - [0x7002008, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2008"] + - [0x7002040, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2040"] + - [0x7002080, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2080"] + - [0x70020C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_20C0"] + - [0x70020F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_20F8"] + - [0x7002160, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2160"] + - [0x70021D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_21D8"] + - [0x7002240, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2240"] + - [0x70022B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_22B0"] + - [0x7002338, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2338"] + - [0x70023C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_23C0"] + - [0x7002450, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2450"] + - [0x7002550, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2550"] + - [0x7002588, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2588"] + - [0x70025D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_25D0"] + - [0x7002618, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2618"] + - [0x7002658, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2658"] + - [0x7002690, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2690"] + - [0x70026C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_26C0"] + - [0x7002708, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2708"] + - [0x7002748, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2748"] + - [0x7002780, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2780"] + - [0x70027B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_27B8"] + - [0x70027F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_27F8"] + - [0x7002850, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2850"] + - [0x7002898, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2898"] + - [0x70028D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_28D8"] + - [0x7002918, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2918"] + - [0x7002998, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2998"] + - [0x70029F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_29F0"] + - [0x7002A50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2A50"] + - [0x7002AB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2AB8"] + - [0x7002AF0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2AF0"] + - [0x7002B50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2B50"] + - [0x7002BA8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2BA8"] + - [0x7002C10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2C10"] + - [0x7002C68, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2C68"] + - [0x7002CD8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2CD8"] + - [0x7002D30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2D30"] + - [0x7002D90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2D90"] + - [0x7002DF0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2DF0"] + - [0x7002E60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2E60"] + - [0x7002EA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2EA0"] + - [0x7002F10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2F10"] + - [0x7002F90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2F90"] + - [0x7002FF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2FF8"] + - [0x7003030, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3030"] + - [0x70030A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_30A8"] + - [0x70030F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_30F0"] + - [0x7003138, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3138"] + - [0x7003190, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3190"] + - [0x70031C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_31C8"] + - [0x7003210, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3210"] + - [0x7003268, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3268"] + - [0x70032A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_32A0"] + - [0x7003310, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3310"] + - [0x7003350, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3350"] + - [0x7003380, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3380"] + - [0x70033C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_33C0"] + - [0x70034B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_34B8"] + - [0x7003590, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3590"] + - [0x7003668, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3668"] + - [0x7003748, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3748"] + - [0x7003828, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3828"] + - [0x7003918, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3918"] + - [0x70039F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_39F8"] + - [0x7003B88, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3B88"] + - [0x7003C48, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3C48"] + - [0x7003D50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3D50"] + - [0x7003E50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3E50"] + - [0x7003F30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3F30"] + - [0x70040A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_40A8"] + - [0x70041B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_41B0"] + - [0x70042B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_42B8"] + - [0x70043A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_43A0"] + - [0x7004480, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4480"] + - [0x70045D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_45D0"] + - [0x70046E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_46E8"] + - [0x70047C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_47C8"] + - [0x70048B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_48B8"] + - [0x70049A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_49A8"] + - [0x7004A88, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4A88"] + - [0x7004B90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4B90"] + - [0x7004C50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4C50"] + - [0x7004CB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4CB8"] + - [0x7004D28, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D28"] + - [0x7004D90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D90"] + - [0x7004DF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4DF8"] + - [0x7004E20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4E20"] + - [0x7004F00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4F00"] + - [0x7005018, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5018"] + - [0x7005030, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5030"] + - [0x70050D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_50D0"] + - [0x7005170, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5170"] + - [0x7005208, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5208"] + - [0x7005290, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5290"] + - [0x70052B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_52B8"] + - [0x7005410, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5410"] + - [0x7005420, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5420"] + - [0x7005498, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5498"] + - [0x7005530, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5530"] + - [0x70055C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_55C8"] + - [0x7005640, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5640"] + - [0x7005668, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5668"] + - [0x7005700, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5700"] + - [0x70057A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_57A0"] + - [0x7005848, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5848"] + - [0x70058E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_58E8"] + - [0x7005988, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5988"] + - [0x7005A30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5A30"] + - [0x7005B70, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5B70"] + - [0x7005BF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5BF8"] + - [0x7005C98, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5C98"] + - [0x7005D30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5D30"] + - [0x7005DC0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5DC0"] + - [0x7005F08, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5F08"] + - [0x7005FD8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5FD8"] + - [0x7006090, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6090"] + - [0x7006130, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6130"] + - [0x70061F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_61F0"] + - [0x7006288, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6288"] + - [0x7006358, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6358"] + - [0x7006408, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6408"] + - [0x70064D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_64D0"] + - [0x7006578, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6578"] + - [0x7006618, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6618"] + - [0x70066D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_66D0"] + - [0x7006730, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6730"] + - [0x7006740, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6740"] + # Segment 4 + - [0x4000000, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000000"] + - [0x4000080, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000080"] + - [0x4000140, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000140"] + - [0x4000200, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000200"] + - [0x4000300, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000300"] + - [0x4000400, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000400"] + - [0x4000500, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000500"] + - [0x4000640, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000640"] + - [0x4000700, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000700"] + - [0x4000840, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000840"] + - [0x4000980, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000980"] + - [0x4000a80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000A80"] + - [0x4000b80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000B80"] + - [0x4000bc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000BC0"] + - [0x4000cc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000CC0"] + - [0x4000d80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000D80"] + - [0x4000e80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000E80"] + - [0x4000f80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000F80"] + - [0x40010c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040010C0"] + - [0x40011c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040011C0"] + - [0x4001280, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001280"] + - [0x4001380, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001380"] + - [0x4001480, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001480"] + - [0x4001540, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001540"] + - [0x4001640, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001640"] + - [0x4001740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001740"] + - [0x4001840, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001840"] + - [0x4001940, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001940"] + - [0x4001a40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001A40"] + - [0x4001b40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001B40"] + - [0x4001c80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001C80"] + - [0x4001d40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001D40"] + - [0x4001e80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001E80"] + - [0x4001fc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001FC0"] + - [0x40020c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040020C0"] + - [0x40021c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040021C0"] + - [0x4002280, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002280"] + - [0x4002300, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002300"] + - [0x4002400, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002400"] + - [0x4002500, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002500"] + - [0x4002600, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002600"] + - [0x4002700, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002700"] + - [0x4002800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002800"] + - [0x40028c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040028C0"] + - [0x40029c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040029C0"] + - [0x4002ac0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002AC0"] + - [0x4002b80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002B80"] + - [0x4002d80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002D80"] + - [0x4002f00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002F00"] + - [0x40030e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040030E0"] + - [0x40031c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040031C0"] + - [0x4003240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003240"] + - [0x4003280, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003280"] + - [0x40032c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040032C0"] + - [0x4003330, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003330"] + - [0x40033b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040033B0"] + - [0x4003430, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003430"] + - [0x40034b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040034B0"] + - [0x4003530, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003530"] + - [0x4003570, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003570"] + - [0x40035b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040035B0"] + - [0x4003620, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003620"] + - [0x40036a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040036A0"] + - [0x4003860, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003860"] + - [0x4003a30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003A30"] + - [0x4003bf0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003BF0"] + - [0x4003dd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003DD0"] + - [0x4003f90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003F90"] + - [0x4004190, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004190"] + - [0x40042d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040042D0"] + - [0x40044d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040044D0"] + - [0x40045f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040045F0"] + - [0x4004790, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004790"] + - [0x4004990, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004990"] + - [0x40049c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040049C0"] + - [0x4004ba0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004BA0"] + - [0x4004bf0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004BF0"] + - [0x4004dc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004DC0"] + - [0x4004f80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004F80"] + - [0x4005180, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005180"] + - [0x4005240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005240"] + - [0x4005440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005440"] + - [0x40054d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040054D0"] + - [0x40056d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040056D0"] + - [0x40057b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040057B0"] + - [0x4005990, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005990"] + - [0x4005a80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005A80"] + - [0x4005c70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005C70"] + - [0x4005e10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005E10"] + - [0x4005ff0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005FF0"] + - [0x40060d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040060D0"] + - [0x4006200, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006200"] + - [0x4006400, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006400"] + - [0x4006430, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006430"] + - [0x4006540, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006540"] + - [0x4006720, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006720"] + - [0x4006780, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006780"] + - [0x4006980, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006980"] + - [0x4006a10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006A10"] + - [0x4006bf0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006BF0"] + - [0x4006ce0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006CE0"] + - [0x4006ec0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006EC0"] + - [0x4006fe0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006FE0"] + - [0x40071c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040071C0"] + - [0x40072b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040072B0"] + - [0x4007420, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007420"] + - [0x4007520, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007520"] + - [0x4007720, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007720"] + - [0x4007800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007800"] + - [0x40079e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040079E0"] + - [0x4007b30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007B30"] + - [0x4007d30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007D30"] + - [0x4007f10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007F10"] + - [0x4008090, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008090"] + - [0x4008280, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008280"] + - [0x40082e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040082E0"] + - [0x40084e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040084E0"] + - [0x4008600, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008600"] + - [0x4008800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008800"] + - [0x40088b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040088B0"] + - [0x4008ab0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008AB0"] + - [0x4008c20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008C20"] + - [0x4008e10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008E10"] + - [0x4008ff0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008FF0"] + - [0x4009050, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009050"] + - [0x4009250, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009250"] + - [0x4009400, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009400"] + - [0x40095e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040095E0"] + - [0x4009610, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009610"] + - [0x4009740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009740"] + - [0x40098c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040098C0"] + - [0x4009a50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009A50"] + - [0x4009b70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009B70"] + - [0x4009c90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009C90"] + - [0x4009e70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009E70"] + - [0x400a040, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A040"] + - [0x400a190, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A190"] + - [0x400a370, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A370"] + - [0x400a4e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A4E0"] + - [0x400a6e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A6E0"] + - [0x400a8c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A8C0"] + - [0x400aaa0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AAA0"] + - [0x400ac20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AC20"] + - [0x400ae00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AE00"] + - [0x400afb0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AFB0"] + - [0x400b190, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B190"] + - [0x400b390, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B390"] + - [0x400b3f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B3F0"] + - [0x400b5f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B5F0"] + - [0x400b7d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B7D0"] + - [0x400b800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B800"] + - [0x400b9f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B9F0"] + - [0x400bbd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BBD0"] + - [0x400bc00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BC00"] + - [0x400bd60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BD60"] + - [0x400bf50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BF50"] + - [0x400c120, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C120"] + - [0x400c2c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C2C0"] + - [0x400c440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C440"] + - [0x400c560, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C560"] + - [0x400c740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C740"] + - [0x400c8c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C8C0"] + - [0x400c9f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C9F0"] + - [0x400cb50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CB50"] + - [0x400ccd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CCD0"] + - [0x400cec0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CEC0"] + - [0x400cef0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CEF0"] + - [0x400d0f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D0F0"] + - [0x400d2b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D2B0"] + - [0x400d480, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D480"] + - [0x400d660, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D660"] + - [0x400d6c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D6C0"] + - [0x400d8c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D8C0"] + - [0x400d950, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D950"] + - [0x400db40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DB40"] + - [0x400dc30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DC30"] + - [0x400dd80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DD80"] + - [0x400df70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DF70"] + - [0x400dff0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DFF0"] + - [0x400e1e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E1E0"] + - [0x400e240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E240"] + - [0x400e440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E440"] + - [0x400e530, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E530"] + - [0x400e730, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E730"] + - [0x400e790, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E790"] + - [0x400e970, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E970"] + - [0x400eab0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EAB0"] + - [0x400eca0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400ECA0"] + - [0x400ed00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400ED00"] + - [0x400eee0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EEE0"] + - [0x400ef90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EF90"] + - [0x400f190, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F190"] + - [0x400f250, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F250"] + - [0x400f440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F440"] + - [0x400f5c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F5C0"] + - [0x400f7a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F7A0"] + - [0x400f990, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F990"] + - [0x400fae0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FAE0"] + - [0x400fce0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FCE0"] + - [0x400fec0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FEC0"] + - [0x40100b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040100B0"] + - [0x4010170, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010170"] + - [0x40102d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040102D0"] + - [0x40104c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040104C0"] + - [0x4010680, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010680"] + - [0x4010880, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010880"] + - [0x4010a70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010A70"] + - [0x4010c50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010C50"] + - [0x4010ce0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010CE0"] + - [0x4010e40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010E40"] + - [0x4011040, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011040"] + - [0x4011240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011240"] + - [0x4011270, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011270"] + - [0x40113e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040113E0"] + - [0x40115d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040115D0"] + - [0x4011720, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011720"] + - [0x40118e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040118E0"] + - [0x4011a00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011A00"] + - [0x4011bd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011BD0"] + - [0x4011dd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011DD0"] + - [0x4011e70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011E70"] + - [0x4012070, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012070"] + - [0x4012270, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012270"] + - [0x4012320, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012320"] + - [0x4012520, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012520"] + - [0x4012710, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012710"] + - [0x4012800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012800"] + - [0x4012a00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012A00"] + - [0x4012c00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012C00"] + - [0x4012cd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012CD0"] + - [0x4012ed0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012ED0"] + - [0x40130d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040130D0"] + - [0x40131c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040131C0"] + - [0x40133c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040133C0"] + - [0x40133f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040133F0"] + - [0x40135e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040135E0"] + - [0x40136d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040136D0"] + - [0x40138d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040138D0"] + - [0x4013ad0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013AD0"] + - [0x4013ba0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013BA0"] + - [0x4013da0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013DA0"] + - [0x4013e20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013E20"] + - [0x4013ea0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013EA0"] + - [0x4014090, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014090"] + - [0x40140c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040140C0"] + - [0x4014240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014240"] + - [0x4014430, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014430"] + - [0x40145d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040145D0"] + - [0x40147d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040147D0"] + - [0x4014850, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014850"] + - [0x4014a40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014A40"] + - [0x4014bb0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014BB0"] + - [0x4014db0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014DB0"] + - [0x4014e30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014E30"] + - [0x4015020, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015020"] + - [0x4015110, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015110"] + - [0x4015310, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015310"] + - [0x4015510, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015510"] + - [0x40155f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040155F0"] + - [0x40157f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040157F0"] + - [0x4015820, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015820"] + - [0x4015860, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015860"] + - [0x40158a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040158A0"] + - [0x4015a90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015A90"] + - [0x4015c70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015C70"] + - [0x4015d00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015D00"] + - [0x4015f00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015F00"] + - [0x40160e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040160E0"] + - [0x40162e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040162E0"] + - [0x4016340, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016340"] + - [0x4016540, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016540"] + - [0x4016720, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016720"] + - [0x4016890, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016890"] + - [0x4016a90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016A90"] + - [0x4016c90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016C90"] + - [0x4016d60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016D60"] + - [0x4016f60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016F60"] + - [0x4017160, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017160"] + - [0x4017350, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017350"] + - [0x4017390, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017390"] + - [0x4017590, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017590"] + - [0x4017610, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017610"] + - [0x4017810, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017810"] + - [0x4017a00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017A00"] + - [0x4017a30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017A30"] + - [0x4017c30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017C30"] + - [0x4017c70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017C70"] + - [0x4017e70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017E70"] + - [0x4017f60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017F60"] + - [0x4018160, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018160"] + - [0x4018360, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018360"] + - [0x4018450, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018450"] + - [0x4018630, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018630"] + - [0x4018670, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018670"] + - [0x4018870, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018870"] + - [0x4018950, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018950"] + - [0x4018b50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018B50"] + - [0x4018b90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018B90"] + - [0x4018d70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018D70"] + - [0x4018e60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018E60"] + - [0x4019060, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019060"] + - [0x4019250, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019250"] + - [0x4019450, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019450"] + - [0x4019480, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019480"] + - [0x4019680, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019680"] + - [0x4019700, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019700"] + - [0x40197c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040197C0"] + - [0x4019840, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019840"] + - [0x40198c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040198C0"] + - [0x4019ac0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019AC0"] + - [0x4019cc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019CC0"] + - [0x4019ec0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019EC0"] + - [0x4019f40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019F40"] + - [0x401a100, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A100"] + - [0x401a2c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A2C0"] + - [0x401a4c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A4C0"] + - [0x401a640, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A640"] + - [0x401a740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A740"] + - [0x401a8a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A8A0"] + - [0x401a920, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A920"] + - [0x401aa20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AA20"] + - [0x401aa60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AA60"] + - [0x401aaa0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AAA0"] + - [0x401aae0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AAE0"] + - [0x401ab20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AB20"] + - [0x401ac20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AC20"] + - [0x401adf0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401ADF0"] + - [0x401aef0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AEF0"] + - [0x401b070, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B070"] + - [0x401b1a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B1A0"] + - [0x401b3a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B3A0"] + - [0x401b4e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B4E0"] + - [0x401b660, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B660"] + - [0x401b7a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B7A0"] + - [0x401b940, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B940"] + - [0x401ba80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BA80"] + - [0x401bc20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BC20"] + - [0x401bd90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BD90"] + - [0x401bea0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BEA0"] + - [0x401bfb0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BFB0"] + - [0x401c030, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C030"] + - [0x401c0b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C0B0"] + - [0x401c1f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C1F0"] + - [0x401c2b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C2B0"] + - [0x401c440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C440"] + - [0x401c550, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C550"] + - [0x401c6c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C6C0"] + - [0x401c7d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C7D0"] + - [0x401c930, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C930"] + - [0x401ca30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CA30"] + - [0x401cc10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CC10"] + - [0x401cc70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CC70"] + - [0x401ce00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE00"] + - [0x401ce40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE40"] + - [0x401ce80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE80"] + - [0x401d060, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D060"] + - [0x401d1c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D1C0"] + - [0x401d3a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D3A0"] + - [0x401d5a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D5A0"] + - [0x401d600, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D600"] + - [0x401d740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D740"] + - [0x401d8e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D8E0"] + - [0x401da20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DA20"] + - [0x401dc00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DC00"] + - [0x401dc30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DC30"] + - [0x401ddc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DDC0"] + - [0x401df10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DF10"] + - [0x401e040, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E040"] + - [0x401e220, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E220"] + - [0x401e340, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E340"] + - [0x401e510, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E510"] + - [0x401e6d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E6D0"] + - [0x401e880, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E880"] + - [0x401ea70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EA70"] + - [0x401eaa0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EAA0"] + - [0x401ec40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EC40"] + - [0x401ee10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EE10"] + - [0x401ef90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EF90"] + - [0x401f0e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401F0E0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_moo_moo_farm_mole_frames: + range: [0xFE70, 0x13670] + mode: APPEND +d_course_moo_moo_farm_dl_0: + symbol: d_course_moo_moo_farm_dl_0 + type: gfx + offset: 0x0 + otr_mode: index +d_course_moo_moo_farm_dl_30: + symbol: d_course_moo_moo_farm_dl_30 + type: gfx + offset: 0x30 + otr_mode: index +d_course_moo_moo_farm_dl_48: + symbol: d_course_moo_moo_farm_dl_48 + type: gfx + offset: 0x48 + otr_mode: index +d_course_moo_moo_farm_dl_60: + symbol: d_course_moo_moo_farm_dl_60 + type: gfx + offset: 0x60 + otr_mode: index +d_course_moo_moo_farm_dl_78: + symbol: d_course_moo_moo_farm_dl_78 + type: gfx + offset: 0x78 + otr_mode: index +d_course_moo_moo_farm_dl_88: + symbol: d_course_moo_moo_farm_dl_88 + type: gfx + offset: 0x88 + otr_mode: index +d_course_moo_moo_farm_dl_338: + symbol: d_course_moo_moo_farm_dl_338 + type: gfx + offset: 0x338 + otr_mode: index +d_course_moo_moo_farm_dl_598: + symbol: d_course_moo_moo_farm_dl_598 + type: gfx + offset: 0x598 + otr_mode: index +d_course_moo_moo_farm_dl_8A0: + symbol: d_course_moo_moo_farm_dl_8A0 + type: gfx + offset: 0x8a0 + otr_mode: index +d_course_moo_moo_farm_dl_B00: + symbol: d_course_moo_moo_farm_dl_B00 + type: gfx + offset: 0xb00 + otr_mode: index +d_course_moo_moo_farm_dl_D70: + symbol: d_course_moo_moo_farm_dl_D70 + type: gfx + offset: 0xd70 + otr_mode: index +d_course_moo_moo_farm_dl_FE0: + symbol: d_course_moo_moo_farm_dl_FE0 + type: gfx + offset: 0xfe0 + otr_mode: index +d_course_moo_moo_farm_dl_12B8: + symbol: d_course_moo_moo_farm_dl_12B8 + type: gfx + offset: 0x12b8 + otr_mode: index +d_course_moo_moo_farm_dl_1530: + symbol: d_course_moo_moo_farm_dl_1530 + type: gfx + offset: 0x1530 + otr_mode: index +d_course_moo_moo_farm_dl_1790: + symbol: d_course_moo_moo_farm_dl_1790 + type: gfx + offset: 0x1790 + otr_mode: index +d_course_moo_moo_farm_dl_1A20: + symbol: d_course_moo_moo_farm_dl_1A20 + type: gfx + offset: 0x1a20 + otr_mode: index +d_course_moo_moo_farm_dl_1D00: + symbol: d_course_moo_moo_farm_dl_1D00 + type: gfx + offset: 0x1d00 + otr_mode: index +d_course_moo_moo_farm_dl_1F58: + symbol: d_course_moo_moo_farm_dl_1F58 + type: gfx + offset: 0x1f58 + otr_mode: index +d_course_moo_moo_farm_dl_2190: + symbol: d_course_moo_moo_farm_dl_2190 + type: gfx + offset: 0x2190 + otr_mode: index +d_course_moo_moo_farm_dl_2470: + symbol: d_course_moo_moo_farm_dl_2470 + type: gfx + offset: 0x2470 + otr_mode: index +d_course_moo_moo_farm_dl_27A8: + symbol: d_course_moo_moo_farm_dl_27A8 + type: gfx + offset: 0x27a8 + otr_mode: index +d_course_moo_moo_farm_dl_2A10: + symbol: d_course_moo_moo_farm_dl_2A10 + type: gfx + offset: 0x2a10 + otr_mode: index +d_course_moo_moo_farm_dl_2C38: + symbol: d_course_moo_moo_farm_dl_2C38 + type: gfx + offset: 0x2c38 + otr_mode: index +d_course_moo_moo_farm_dl_2F20: + symbol: d_course_moo_moo_farm_dl_2F20 + type: gfx + offset: 0x2f20 + otr_mode: index +d_course_moo_moo_farm_dl_3238: + symbol: d_course_moo_moo_farm_dl_3238 + type: gfx + offset: 0x3238 + otr_mode: index +d_course_moo_moo_farm_dl_34A0: + symbol: d_course_moo_moo_farm_dl_34A0 + type: gfx + offset: 0x34a0 + otr_mode: index +d_course_moo_moo_farm_dl_36B8: + symbol: d_course_moo_moo_farm_dl_36B8 + type: gfx + offset: 0x36b8 + otr_mode: index +d_course_moo_moo_farm_dl_39F8: + symbol: d_course_moo_moo_farm_dl_39F8 + type: gfx + offset: 0x39f8 + otr_mode: index +d_course_moo_moo_farm_dl_3CB0: + symbol: d_course_moo_moo_farm_dl_3CB0 + type: gfx + offset: 0x3cb0 + otr_mode: index +d_course_moo_moo_farm_dl_3EB8: + symbol: d_course_moo_moo_farm_dl_3EB8 + type: gfx + offset: 0x3eb8 + otr_mode: index +d_course_moo_moo_farm_dl_4098: + symbol: d_course_moo_moo_farm_dl_4098 + type: gfx + offset: 0x4098 + otr_mode: index +d_course_moo_moo_farm_dl_4428: + symbol: d_course_moo_moo_farm_dl_4428 + type: gfx + offset: 0x4428 + otr_mode: index +d_course_moo_moo_farm_dl_46D8: + symbol: d_course_moo_moo_farm_dl_46D8 + type: gfx + offset: 0x46d8 + otr_mode: index +d_course_moo_moo_farm_dl_4910: + symbol: d_course_moo_moo_farm_dl_4910 + type: gfx + offset: 0x4910 + otr_mode: index +d_course_moo_moo_farm_dl_4AD0: + symbol: d_course_moo_moo_farm_dl_4AD0 + type: gfx + offset: 0x4ad0 + otr_mode: index +d_course_moo_moo_farm_dl_4E00: + symbol: d_course_moo_moo_farm_dl_4E00 + type: gfx + offset: 0x4e00 + otr_mode: index +d_course_moo_moo_farm_dl_5040: + symbol: d_course_moo_moo_farm_dl_5040 + type: gfx + offset: 0x5040 + otr_mode: index +d_course_moo_moo_farm_dl_5290: + symbol: d_course_moo_moo_farm_dl_5290 + type: gfx + offset: 0x5290 + otr_mode: index +d_course_moo_moo_farm_dl_5458: + symbol: d_course_moo_moo_farm_dl_5458 + type: gfx + offset: 0x5458 + otr_mode: index +d_course_moo_moo_farm_dl_5758: + symbol: d_course_moo_moo_farm_dl_5758 + type: gfx + offset: 0x5758 + otr_mode: index +d_course_moo_moo_farm_dl_5990: + symbol: d_course_moo_moo_farm_dl_5990 + type: gfx + offset: 0x5990 + otr_mode: index +d_course_moo_moo_farm_dl_5BF8: + symbol: d_course_moo_moo_farm_dl_5BF8 + type: gfx + offset: 0x5bf8 + otr_mode: index +d_course_moo_moo_farm_dl_5DF0: + symbol: d_course_moo_moo_farm_dl_5DF0 + type: gfx + offset: 0x5df0 + otr_mode: index +d_course_moo_moo_farm_dl_60A8: + symbol: d_course_moo_moo_farm_dl_60A8 + type: gfx + offset: 0x60a8 + otr_mode: index +d_course_moo_moo_farm_dl_62D0: + symbol: d_course_moo_moo_farm_dl_62D0 + type: gfx + offset: 0x62d0 + otr_mode: index +d_course_moo_moo_farm_dl_6548: + symbol: d_course_moo_moo_farm_dl_6548 + type: gfx + offset: 0x6548 + otr_mode: index +d_course_moo_moo_farm_dl_6778: + symbol: d_course_moo_moo_farm_dl_6778 + type: gfx + offset: 0x6778 + otr_mode: index +d_course_moo_moo_farm_dl_6A70: + symbol: d_course_moo_moo_farm_dl_6A70 + type: gfx + offset: 0x6a70 + otr_mode: index +d_course_moo_moo_farm_dl_6CB8: + symbol: d_course_moo_moo_farm_dl_6CB8 + type: gfx + offset: 0x6cb8 + otr_mode: index +d_course_moo_moo_farm_dl_6FF0: + symbol: d_course_moo_moo_farm_dl_6FF0 + type: gfx + offset: 0x6ff0 + otr_mode: index +d_course_moo_moo_farm_dl_7218: + symbol: d_course_moo_moo_farm_dl_7218 + type: gfx + offset: 0x7218 + otr_mode: index +d_course_moo_moo_farm_dl_74C8: + symbol: d_course_moo_moo_farm_dl_74C8 + type: gfx + offset: 0x74c8 + otr_mode: index +d_course_moo_moo_farm_dl_7718: + symbol: d_course_moo_moo_farm_dl_7718 + type: gfx + offset: 0x7718 + otr_mode: index +d_course_moo_moo_farm_dl_7A80: + symbol: d_course_moo_moo_farm_dl_7A80 + type: gfx + offset: 0x7a80 + otr_mode: index +d_course_moo_moo_farm_dl_7CD8: + symbol: d_course_moo_moo_farm_dl_7CD8 + type: gfx + offset: 0x7cd8 + otr_mode: index +d_course_moo_moo_farm_dl_7F78: + symbol: d_course_moo_moo_farm_dl_7F78 + type: gfx + offset: 0x7f78 + otr_mode: index +d_course_moo_moo_farm_dl_81E8: + symbol: d_course_moo_moo_farm_dl_81E8 + type: gfx + offset: 0x81e8 + otr_mode: index +d_course_moo_moo_farm_dl_84D0: + symbol: d_course_moo_moo_farm_dl_84D0 + type: gfx + offset: 0x84d0 + otr_mode: index +d_course_moo_moo_farm_dl_8728: + symbol: d_course_moo_moo_farm_dl_8728 + type: gfx + offset: 0x8728 + otr_mode: index +d_course_moo_moo_farm_dl_89A0: + symbol: d_course_moo_moo_farm_dl_89A0 + type: gfx + offset: 0x89a0 + otr_mode: index +d_course_moo_moo_farm_dl_8C00: + symbol: d_course_moo_moo_farm_dl_8C00 + type: gfx + offset: 0x8c00 + otr_mode: index +d_course_moo_moo_farm_dl_8F18: + symbol: d_course_moo_moo_farm_dl_8F18 + type: gfx + offset: 0x8f18 + otr_mode: index +d_course_moo_moo_farm_dl_9178: + symbol: d_course_moo_moo_farm_dl_9178 + type: gfx + offset: 0x9178 + otr_mode: index +d_course_moo_moo_farm_dl_93D0: + symbol: d_course_moo_moo_farm_dl_93D0 + type: gfx + offset: 0x93d0 + otr_mode: index +d_course_moo_moo_farm_dl_9640: + symbol: d_course_moo_moo_farm_dl_9640 + type: gfx + offset: 0x9640 + otr_mode: index +d_course_moo_moo_farm_dl_9938: + symbol: d_course_moo_moo_farm_dl_9938 + type: gfx + offset: 0x9938 + otr_mode: index +d_course_moo_moo_farm_dl_9BB0: + symbol: d_course_moo_moo_farm_dl_9BB0 + type: gfx + offset: 0x9bb0 + otr_mode: index +d_course_moo_moo_farm_dl_9DF8: + symbol: d_course_moo_moo_farm_dl_9DF8 + type: gfx + offset: 0x9df8 + otr_mode: index +d_course_moo_moo_farm_dl_A010: + symbol: d_course_moo_moo_farm_dl_A010 + type: gfx + offset: 0xa010 + otr_mode: index +d_course_moo_moo_farm_dl_A2C0: + symbol: d_course_moo_moo_farm_dl_A2C0 + type: gfx + offset: 0xa2c0 + otr_mode: index +d_course_moo_moo_farm_dl_A568: + symbol: d_course_moo_moo_farm_dl_A568 + type: gfx + offset: 0xa568 + otr_mode: index +d_course_moo_moo_farm_dl_A7B0: + symbol: d_course_moo_moo_farm_dl_A7B0 + type: gfx + offset: 0xa7b0 + otr_mode: index +d_course_moo_moo_farm_dl_A9C8: + symbol: d_course_moo_moo_farm_dl_A9C8 + type: gfx + offset: 0xa9c8 + otr_mode: index +d_course_moo_moo_farm_dl_ACB0: + symbol: d_course_moo_moo_farm_dl_ACB0 + type: gfx + offset: 0xacb0 + otr_mode: index +d_course_moo_moo_farm_dl_B020: + symbol: d_course_moo_moo_farm_dl_B020 + type: gfx + offset: 0xb020 + otr_mode: index +d_course_moo_moo_farm_dl_B230: + symbol: d_course_moo_moo_farm_dl_B230 + type: gfx + offset: 0xb230 + otr_mode: index +d_course_moo_moo_farm_dl_B478: + symbol: d_course_moo_moo_farm_dl_B478 + type: gfx + offset: 0xb478 + otr_mode: index +d_course_moo_moo_farm_dl_B798: + symbol: d_course_moo_moo_farm_dl_B798 + type: gfx + offset: 0xb798 + otr_mode: index +d_course_moo_moo_farm_dl_BB00: + symbol: d_course_moo_moo_farm_dl_BB00 + type: gfx + offset: 0xbb00 + otr_mode: index +d_course_moo_moo_farm_dl_BCE8: + symbol: d_course_moo_moo_farm_dl_BCE8 + type: gfx + offset: 0xbce8 + otr_mode: index +d_course_moo_moo_farm_dl_BF10: + symbol: d_course_moo_moo_farm_dl_BF10 + type: gfx + offset: 0xbf10 + otr_mode: index +d_course_moo_moo_farm_dl_C180: + symbol: d_course_moo_moo_farm_dl_C180 + type: gfx + offset: 0xc180 + otr_mode: index +d_course_moo_moo_farm_dl_C4F8: + symbol: d_course_moo_moo_farm_dl_C4F8 + type: gfx + offset: 0xc4f8 + otr_mode: index +d_course_moo_moo_farm_dl_C6D8: + symbol: d_course_moo_moo_farm_dl_C6D8 + type: gfx + offset: 0xc6d8 + otr_mode: index +d_course_moo_moo_farm_dl_C950: + symbol: d_course_moo_moo_farm_dl_C950 + type: gfx + offset: 0xc950 + otr_mode: index +d_course_moo_moo_farm_dl_CBC8: + symbol: d_course_moo_moo_farm_dl_CBC8 + type: gfx + offset: 0xcbc8 + otr_mode: index +d_course_moo_moo_farm_dl_CF58: + symbol: d_course_moo_moo_farm_dl_CF58 + type: gfx + offset: 0xcf58 + otr_mode: index +d_course_moo_moo_farm_dl_D140: + symbol: d_course_moo_moo_farm_dl_D140 + type: gfx + offset: 0xd140 + otr_mode: index +d_course_moo_moo_farm_dl_D408: + symbol: d_course_moo_moo_farm_dl_D408 + type: gfx + offset: 0xd408 + otr_mode: index +d_course_moo_moo_farm_dl_D6B0: + symbol: d_course_moo_moo_farm_dl_D6B0 + type: gfx + offset: 0xd6b0 + otr_mode: index +d_course_moo_moo_farm_dl_DA50: + symbol: d_course_moo_moo_farm_dl_DA50 + type: gfx + offset: 0xda50 + otr_mode: index +d_course_moo_moo_farm_dl_DC70: + symbol: d_course_moo_moo_farm_dl_DC70 + type: gfx + offset: 0xdc70 + otr_mode: index +d_course_moo_moo_farm_dl_DF60: + symbol: d_course_moo_moo_farm_dl_DF60 + type: gfx + offset: 0xdf60 + otr_mode: index +d_course_moo_moo_farm_dl_E1D8: + symbol: d_course_moo_moo_farm_dl_E1D8 + type: gfx + offset: 0xe1d8 + otr_mode: index +d_course_moo_moo_farm_dl_E4B0: + symbol: d_course_moo_moo_farm_dl_E4B0 + type: gfx + offset: 0xe4b0 + otr_mode: index +d_course_moo_moo_farm_dl_E708: + symbol: d_course_moo_moo_farm_dl_E708 + type: gfx + offset: 0xe708 + otr_mode: index +d_course_moo_moo_farm_dl_EA18: + symbol: d_course_moo_moo_farm_dl_EA18 + type: gfx + offset: 0xea18 + otr_mode: index +d_course_moo_moo_farm_cow_model: + symbol: d_course_moo_moo_farm_cow_model + type: vtx + offset: 0x13a08 + count: 8 +d_course_moo_moo_farm_unknown_model1: + symbol: d_course_moo_moo_farm_unknown_model1 + type: vtx + offset: 0x13a88 + count: 8 +d_course_moo_moo_farm_unknown_model2: + symbol: d_course_moo_moo_farm_unknown_model2 + type: vtx + offset: 0x13b08 + count: 8 +d_course_moo_moo_farm_dl_13B88: + symbol: d_course_moo_moo_farm_dl_13B88 + type: gfx + offset: 0x13b88 +d_course_moo_moo_farm_dl_cow1: + symbol: d_course_moo_moo_farm_dl_cow1 + type: gfx + offset: 0x13c00 +d_course_moo_moo_farm_dl_cow2: + symbol: d_course_moo_moo_farm_dl_cow2 + type: gfx + offset: 0x13ca0 +d_course_moo_moo_farm_dl_cow3: + symbol: d_course_moo_moo_farm_dl_cow3 + type: gfx + offset: 0x13d20 +d_course_moo_moo_farm_dl_cow4: + symbol: d_course_moo_moo_farm_dl_cow4 + type: gfx + offset: 0x13da0 +d_course_moo_moo_farm_dl_cow5: + symbol: d_course_moo_moo_farm_dl_cow5 + type: gfx + offset: 0x13e20 +d_course_moo_moo_farm_tree_model: + symbol: d_course_moo_moo_farm_tree_model + type: vtx + offset: 0x13ea0 + count: 8 +d_course_moo_moo_farm_dl_tree: + symbol: d_course_moo_moo_farm_dl_tree + type: gfx + offset: 0x13f20 +d_course_moo_moo_farm_dl_13FF8: + symbol: d_course_moo_moo_farm_dl_13FF8 + type: gfx + offset: 0x13ff8 + otr_mode: index +d_course_moo_moo_farm_dl_14060: + symbol: d_course_moo_moo_farm_dl_14060 + type: gfx + offset: 0x14060 + otr_mode: index +d_course_moo_moo_farm_dl_14088: + symbol: d_course_moo_moo_farm_dl_14088 + type: gfx + offset: 0x14088 + otr_mode: index diff --git a/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_displaylists.yml b/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_displaylists.yml new file mode 100644 index 000000000..634d70dbe --- /dev/null +++ b/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_displaylists.yml @@ -0,0 +1,1593 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x918ECC + no_compression: true + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees4Left"] + - [0x03009800, "textures/other_textures/gTextureTrees4Right"] + - [0x0300A000, "textures/other_textures/gTextureCow01Left"] + - [0x0300A800, "textures/other_textures/gTextureCow01Right"] + - [0x0300B000, "textures/other_textures/gTextureCow02Left"] + - [0x0300B800, "textures/other_textures/gTextureCow02Right"] + - [0x0300C000, "textures/other_textures/gTextureCow03Left"] + - [0x0300C800, "textures/other_textures/gTextureCow03Right"] + - [0x0300D000, "textures/other_textures/gTextureCow04Left"] + - [0x0300D800, "textures/other_textures/gTextureCow04Right"] + - [0x0300E000, "textures/other_textures/gTextureCow05Left"] + - [0x0300E800, "textures/other_textures/gTextureCow05Right"] + # Segment 5 + - [0x05000000, "textures/other_textures/wood_door_0"] + - [0x05001000, "textures/other_textures/grass_2"] + - [0x05001800, "textures/other_textures/texture_64AF50"] + - [0x05002000, "textures/other_textures/texture_64B090"] + - [0x05002800, "textures/other_textures/texture_64B54C"] + - [0x05003000, "textures/other_textures/texture_64B3F8"] + - [0x05003800, "textures/other_textures/sign_nintendo_0"] + - [0x05004800, "textures/other_textures/sign_nintendo_1"] + - [0x05005800, "textures/other_textures/texture_6684F8"] + - [0x05006000, "textures/other_textures/sign_luigis_0"] + - [0x05007000, "textures/other_textures/sign_luigis_1"] + - [0x05008000, "textures/other_textures/sign_mario_star_0"] + - [0x05009000, "textures/other_textures/sign_mario_star_1"] + - [0x0500A000, "textures/other_textures/texture_674D58"] + - [0x0500B000, "textures/other_textures/texture_675064"] + - [0x0500B800, "textures/other_textures/texture_675220"] + - [0x0500C000, "textures/other_textures/texture_6775EC"] + - [0x0500D000, "textures/other_textures/texture_683314"] + - [0x0500E000, "textures/other_textures/texture_68CDA0"] + - [0x0500E800, "textures/other_textures/texture_6442D4"] + - [0x0500F000, "textures/other_textures/texture_64440C"] + - [0x05010000, "textures/other_textures/texture_6446AC"] + - [0x05010800, "textures/other_textures/gTextureMooMooFarmSignLeft"] + - [0x05011800, "textures/other_textures/gTextureMooMooFarmSignRight"] + - [0x05012800, "textures/other_textures/texture_64ACAC"] + - [0x05013000, "textures/other_textures/texture_66D698"] + - [0x05013800, "textures/other_textures/texture_66EBF0"] + - [0x05014000, "textures/other_textures/wheel_steam_engine_real"] + # Segment 7 + - [0x7000000, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_0"] + - [0x7000028, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_28"] + - [0x7000058, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_58"] + - [0x7000088, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_88"] + - [0x70000C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C0"] + - [0x70000F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_F8"] + - [0x7000130, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_130"] + - [0x7000170, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_170"] + - [0x70001A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A0"] + - [0x70001E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1E0"] + - [0x7000220, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_220"] + - [0x7000258, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_258"] + - [0x7000290, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_290"] + - [0x70002B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2B0"] + - [0x70002E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2E8"] + - [0x7000318, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_318"] + - [0x7000350, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_350"] + - [0x7000388, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_388"] + - [0x70003C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3C8"] + - [0x7000400, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_400"] + - [0x7000430, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_430"] + - [0x7000468, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_468"] + - [0x70004A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4A0"] + - [0x70004D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D0"] + - [0x7000590, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_590"] + - [0x70005C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5C8"] + - [0x7000600, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_600"] + - [0x7000638, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_638"] + - [0x7000670, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_670"] + - [0x70006A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6A8"] + - [0x70006E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6E0"] + - [0x7000720, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_720"] + - [0x7000750, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_750"] + - [0x7000790, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_790"] + - [0x70007D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_7D0"] + - [0x7000808, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_808"] + - [0x7000840, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_840"] + - [0x7000870, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_870"] + - [0x7000898, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_898"] + - [0x70008D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_8D0"] + - [0x7000908, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_908"] + - [0x7000940, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_940"] + - [0x7000978, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_978"] + - [0x70009B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_9B0"] + - [0x70009E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_9E0"] + - [0x7000A18, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A18"] + - [0x7000A50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A50"] + - [0x7000A80, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A80"] + - [0x7000B40, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_B40"] + - [0x7000C10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C10"] + - [0x7000C20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C20"] + - [0x7000CA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_CA0"] + - [0x7000CB0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_CB0"] + - [0x7000E50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_E50"] + - [0x7000EB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_EB8"] + - [0x7000F20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_F20"] + - [0x70010C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_10C0"] + - [0x70010E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_10E8"] + - [0x7001118, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1118"] + - [0x7001128, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1128"] + - [0x7001168, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1168"] + - [0x70011B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_11B0"] + - [0x70011F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_11F0"] + - [0x7001230, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1230"] + - [0x7001270, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1270"] + - [0x70012E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_12E0"] + - [0x7001348, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1348"] + - [0x7001388, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1388"] + - [0x70013E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_13E0"] + - [0x7001430, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1430"] + - [0x7001478, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1478"] + - [0x70014B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_14B8"] + - [0x7001518, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1518"] + - [0x7001578, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1578"] + - [0x70015E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_15E0"] + - [0x7001640, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1640"] + - [0x70016B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_16B8"] + - [0x7001718, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1718"] + - [0x7001750, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1750"] + - [0x70017A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_17A8"] + - [0x70017D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_17D8"] + - [0x7001828, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1828"] + - [0x70018E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_18E0"] + - [0x7001940, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1940"] + - [0x70019A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_19A0"] + - [0x7001A00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A00"] + - [0x7001A60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A60"] + - [0x7001AA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1AA0"] + - [0x7001AD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1AD0"] + - [0x7001B38, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1B38"] + - [0x7001BA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1BA0"] + - [0x7001C40, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1C40"] + - [0x7001C98, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1C98"] + - [0x7001D00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1D00"] + - [0x7001D60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1D60"] + - [0x7001DD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1DD0"] + - [0x7001E58, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1E58"] + - [0x7001ED0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1ED0"] + - [0x7001F20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F20"] + - [0x7001F58, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F58"] + - [0x7001F90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F90"] + - [0x7001FD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1FD0"] + - [0x7002008, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2008"] + - [0x7002040, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2040"] + - [0x7002080, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2080"] + - [0x70020C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_20C0"] + - [0x70020F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_20F8"] + - [0x7002160, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2160"] + - [0x70021D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_21D8"] + - [0x7002240, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2240"] + - [0x70022B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_22B0"] + - [0x7002338, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2338"] + - [0x70023C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_23C0"] + - [0x7002450, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2450"] + - [0x7002550, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2550"] + - [0x7002588, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2588"] + - [0x70025D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_25D0"] + - [0x7002618, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2618"] + - [0x7002658, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2658"] + - [0x7002690, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2690"] + - [0x70026C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_26C0"] + - [0x7002708, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2708"] + - [0x7002748, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2748"] + - [0x7002780, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2780"] + - [0x70027B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_27B8"] + - [0x70027F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_27F8"] + - [0x7002850, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2850"] + - [0x7002898, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2898"] + - [0x70028D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_28D8"] + - [0x7002918, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2918"] + - [0x7002998, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2998"] + - [0x70029F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_29F0"] + - [0x7002A50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2A50"] + - [0x7002AB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2AB8"] + - [0x7002AF0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2AF0"] + - [0x7002B50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2B50"] + - [0x7002BA8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2BA8"] + - [0x7002C10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2C10"] + - [0x7002C68, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2C68"] + - [0x7002CD8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2CD8"] + - [0x7002D30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2D30"] + - [0x7002D90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2D90"] + - [0x7002DF0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2DF0"] + - [0x7002E60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2E60"] + - [0x7002EA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2EA0"] + - [0x7002F10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2F10"] + - [0x7002F90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2F90"] + - [0x7002FF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2FF8"] + - [0x7003030, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3030"] + - [0x70030A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_30A8"] + - [0x70030F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_30F0"] + - [0x7003138, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3138"] + - [0x7003190, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3190"] + - [0x70031C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_31C8"] + - [0x7003210, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3210"] + - [0x7003268, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3268"] + - [0x70032A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_32A0"] + - [0x7003310, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3310"] + - [0x7003350, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3350"] + - [0x7003380, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3380"] + - [0x70033C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_33C0"] + - [0x70034B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_34B8"] + - [0x7003590, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3590"] + - [0x7003668, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3668"] + - [0x7003748, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3748"] + - [0x7003828, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3828"] + - [0x7003918, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3918"] + - [0x70039F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_39F8"] + - [0x7003B88, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3B88"] + - [0x7003C48, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3C48"] + - [0x7003D50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3D50"] + - [0x7003E50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3E50"] + - [0x7003F30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3F30"] + - [0x70040A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_40A8"] + - [0x70041B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_41B0"] + - [0x70042B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_42B8"] + - [0x70043A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_43A0"] + - [0x7004480, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4480"] + - [0x70045D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_45D0"] + - [0x70046E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_46E8"] + - [0x70047C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_47C8"] + - [0x70048B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_48B8"] + - [0x70049A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_49A8"] + - [0x7004A88, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4A88"] + - [0x7004B90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4B90"] + - [0x7004C50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4C50"] + - [0x7004CB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4CB8"] + - [0x7004D28, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D28"] + - [0x7004D90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D90"] + - [0x7004DF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4DF8"] + - [0x7004E20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4E20"] + - [0x7004F00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4F00"] + - [0x7005018, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5018"] + - [0x7005030, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5030"] + - [0x70050D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_50D0"] + - [0x7005170, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5170"] + - [0x7005208, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5208"] + - [0x7005290, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5290"] + - [0x70052B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_52B8"] + - [0x7005410, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5410"] + - [0x7005420, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5420"] + - [0x7005498, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5498"] + - [0x7005530, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5530"] + - [0x70055C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_55C8"] + - [0x7005640, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5640"] + - [0x7005668, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5668"] + - [0x7005700, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5700"] + - [0x70057A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_57A0"] + - [0x7005848, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5848"] + - [0x70058E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_58E8"] + - [0x7005988, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5988"] + - [0x7005A30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5A30"] + - [0x7005B70, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5B70"] + - [0x7005BF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5BF8"] + - [0x7005C98, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5C98"] + - [0x7005D30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5D30"] + - [0x7005DC0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5DC0"] + - [0x7005F08, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5F08"] + - [0x7005FD8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5FD8"] + - [0x7006090, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6090"] + - [0x7006130, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6130"] + - [0x70061F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_61F0"] + - [0x7006288, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6288"] + - [0x7006358, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6358"] + - [0x7006408, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6408"] + - [0x70064D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_64D0"] + - [0x7006578, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6578"] + - [0x7006618, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6618"] + - [0x70066D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_66D0"] + - [0x7006730, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6730"] + - [0x7006740, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6740"] + # Segment 4 + - [0x4000000, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000000"] + - [0x4000080, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000080"] + - [0x4000140, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000140"] + - [0x4000200, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000200"] + - [0x4000300, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000300"] + - [0x4000400, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000400"] + - [0x4000500, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000500"] + - [0x4000640, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000640"] + - [0x4000700, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000700"] + - [0x4000840, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000840"] + - [0x4000980, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000980"] + - [0x4000a80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000A80"] + - [0x4000b80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000B80"] + - [0x4000bc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000BC0"] + - [0x4000cc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000CC0"] + - [0x4000d80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000D80"] + - [0x4000e80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000E80"] + - [0x4000f80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04000F80"] + - [0x40010c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040010C0"] + - [0x40011c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040011C0"] + - [0x4001280, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001280"] + - [0x4001380, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001380"] + - [0x4001480, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001480"] + - [0x4001540, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001540"] + - [0x4001640, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001640"] + - [0x4001740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001740"] + - [0x4001840, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001840"] + - [0x4001940, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001940"] + - [0x4001a40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001A40"] + - [0x4001b40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001B40"] + - [0x4001c80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001C80"] + - [0x4001d40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001D40"] + - [0x4001e80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001E80"] + - [0x4001fc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04001FC0"] + - [0x40020c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040020C0"] + - [0x40021c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040021C0"] + - [0x4002280, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002280"] + - [0x4002300, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002300"] + - [0x4002400, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002400"] + - [0x4002500, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002500"] + - [0x4002600, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002600"] + - [0x4002700, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002700"] + - [0x4002800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002800"] + - [0x40028c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040028C0"] + - [0x40029c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040029C0"] + - [0x4002ac0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002AC0"] + - [0x4002b80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002B80"] + - [0x4002d80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002D80"] + - [0x4002f00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04002F00"] + - [0x40030e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040030E0"] + - [0x40031c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040031C0"] + - [0x4003240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003240"] + - [0x4003280, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003280"] + - [0x40032c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040032C0"] + - [0x4003330, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003330"] + - [0x40033b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040033B0"] + - [0x4003430, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003430"] + - [0x40034b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040034B0"] + - [0x4003530, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003530"] + - [0x4003570, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003570"] + - [0x40035b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040035B0"] + - [0x4003620, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003620"] + - [0x40036a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040036A0"] + - [0x4003860, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003860"] + - [0x4003a30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003A30"] + - [0x4003bf0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003BF0"] + - [0x4003dd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003DD0"] + - [0x4003f90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04003F90"] + - [0x4004190, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004190"] + - [0x40042d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040042D0"] + - [0x40044d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040044D0"] + - [0x40045f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040045F0"] + - [0x4004790, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004790"] + - [0x4004990, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004990"] + - [0x40049c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040049C0"] + - [0x4004ba0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004BA0"] + - [0x4004bf0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004BF0"] + - [0x4004dc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004DC0"] + - [0x4004f80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04004F80"] + - [0x4005180, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005180"] + - [0x4005240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005240"] + - [0x4005440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005440"] + - [0x40054d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040054D0"] + - [0x40056d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040056D0"] + - [0x40057b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040057B0"] + - [0x4005990, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005990"] + - [0x4005a80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005A80"] + - [0x4005c70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005C70"] + - [0x4005e10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005E10"] + - [0x4005ff0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04005FF0"] + - [0x40060d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040060D0"] + - [0x4006200, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006200"] + - [0x4006400, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006400"] + - [0x4006430, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006430"] + - [0x4006540, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006540"] + - [0x4006720, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006720"] + - [0x4006780, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006780"] + - [0x4006980, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006980"] + - [0x4006a10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006A10"] + - [0x4006bf0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006BF0"] + - [0x4006ce0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006CE0"] + - [0x4006ec0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006EC0"] + - [0x4006fe0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04006FE0"] + - [0x40071c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040071C0"] + - [0x40072b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040072B0"] + - [0x4007420, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007420"] + - [0x4007520, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007520"] + - [0x4007720, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007720"] + - [0x4007800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007800"] + - [0x40079e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040079E0"] + - [0x4007b30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007B30"] + - [0x4007d30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007D30"] + - [0x4007f10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04007F10"] + - [0x4008090, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008090"] + - [0x4008280, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008280"] + - [0x40082e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040082E0"] + - [0x40084e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040084E0"] + - [0x4008600, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008600"] + - [0x4008800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008800"] + - [0x40088b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040088B0"] + - [0x4008ab0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008AB0"] + - [0x4008c20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008C20"] + - [0x4008e10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008E10"] + - [0x4008ff0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04008FF0"] + - [0x4009050, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009050"] + - [0x4009250, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009250"] + - [0x4009400, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009400"] + - [0x40095e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040095E0"] + - [0x4009610, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009610"] + - [0x4009740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009740"] + - [0x40098c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040098C0"] + - [0x4009a50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009A50"] + - [0x4009b70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009B70"] + - [0x4009c90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009C90"] + - [0x4009e70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04009E70"] + - [0x400a040, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A040"] + - [0x400a190, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A190"] + - [0x400a370, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A370"] + - [0x400a4e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A4E0"] + - [0x400a6e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A6E0"] + - [0x400a8c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400A8C0"] + - [0x400aaa0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AAA0"] + - [0x400ac20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AC20"] + - [0x400ae00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AE00"] + - [0x400afb0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400AFB0"] + - [0x400b190, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B190"] + - [0x400b390, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B390"] + - [0x400b3f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B3F0"] + - [0x400b5f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B5F0"] + - [0x400b7d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B7D0"] + - [0x400b800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B800"] + - [0x400b9f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400B9F0"] + - [0x400bbd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BBD0"] + - [0x400bc00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BC00"] + - [0x400bd60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BD60"] + - [0x400bf50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400BF50"] + - [0x400c120, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C120"] + - [0x400c2c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C2C0"] + - [0x400c440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C440"] + - [0x400c560, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C560"] + - [0x400c740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C740"] + - [0x400c8c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C8C0"] + - [0x400c9f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400C9F0"] + - [0x400cb50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CB50"] + - [0x400ccd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CCD0"] + - [0x400cec0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CEC0"] + - [0x400cef0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400CEF0"] + - [0x400d0f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D0F0"] + - [0x400d2b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D2B0"] + - [0x400d480, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D480"] + - [0x400d660, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D660"] + - [0x400d6c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D6C0"] + - [0x400d8c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D8C0"] + - [0x400d950, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400D950"] + - [0x400db40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DB40"] + - [0x400dc30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DC30"] + - [0x400dd80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DD80"] + - [0x400df70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DF70"] + - [0x400dff0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400DFF0"] + - [0x400e1e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E1E0"] + - [0x400e240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E240"] + - [0x400e440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E440"] + - [0x400e530, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E530"] + - [0x400e730, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E730"] + - [0x400e790, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E790"] + - [0x400e970, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400E970"] + - [0x400eab0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EAB0"] + - [0x400eca0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400ECA0"] + - [0x400ed00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400ED00"] + - [0x400eee0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EEE0"] + - [0x400ef90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400EF90"] + - [0x400f190, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F190"] + - [0x400f250, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F250"] + - [0x400f440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F440"] + - [0x400f5c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F5C0"] + - [0x400f7a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F7A0"] + - [0x400f990, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400F990"] + - [0x400fae0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FAE0"] + - [0x400fce0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FCE0"] + - [0x400fec0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0400FEC0"] + - [0x40100b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040100B0"] + - [0x4010170, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010170"] + - [0x40102d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040102D0"] + - [0x40104c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040104C0"] + - [0x4010680, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010680"] + - [0x4010880, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010880"] + - [0x4010a70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010A70"] + - [0x4010c50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010C50"] + - [0x4010ce0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010CE0"] + - [0x4010e40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04010E40"] + - [0x4011040, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011040"] + - [0x4011240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011240"] + - [0x4011270, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011270"] + - [0x40113e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040113E0"] + - [0x40115d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040115D0"] + - [0x4011720, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011720"] + - [0x40118e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040118E0"] + - [0x4011a00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011A00"] + - [0x4011bd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011BD0"] + - [0x4011dd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011DD0"] + - [0x4011e70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04011E70"] + - [0x4012070, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012070"] + - [0x4012270, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012270"] + - [0x4012320, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012320"] + - [0x4012520, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012520"] + - [0x4012710, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012710"] + - [0x4012800, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012800"] + - [0x4012a00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012A00"] + - [0x4012c00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012C00"] + - [0x4012cd0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012CD0"] + - [0x4012ed0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04012ED0"] + - [0x40130d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040130D0"] + - [0x40131c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040131C0"] + - [0x40133c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040133C0"] + - [0x40133f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040133F0"] + - [0x40135e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040135E0"] + - [0x40136d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040136D0"] + - [0x40138d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040138D0"] + - [0x4013ad0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013AD0"] + - [0x4013ba0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013BA0"] + - [0x4013da0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013DA0"] + - [0x4013e20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013E20"] + - [0x4013ea0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04013EA0"] + - [0x4014090, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014090"] + - [0x40140c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040140C0"] + - [0x4014240, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014240"] + - [0x4014430, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014430"] + - [0x40145d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040145D0"] + - [0x40147d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040147D0"] + - [0x4014850, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014850"] + - [0x4014a40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014A40"] + - [0x4014bb0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014BB0"] + - [0x4014db0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014DB0"] + - [0x4014e30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04014E30"] + - [0x4015020, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015020"] + - [0x4015110, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015110"] + - [0x4015310, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015310"] + - [0x4015510, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015510"] + - [0x40155f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040155F0"] + - [0x40157f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040157F0"] + - [0x4015820, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015820"] + - [0x4015860, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015860"] + - [0x40158a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040158A0"] + - [0x4015a90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015A90"] + - [0x4015c70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015C70"] + - [0x4015d00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015D00"] + - [0x4015f00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04015F00"] + - [0x40160e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040160E0"] + - [0x40162e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040162E0"] + - [0x4016340, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016340"] + - [0x4016540, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016540"] + - [0x4016720, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016720"] + - [0x4016890, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016890"] + - [0x4016a90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016A90"] + - [0x4016c90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016C90"] + - [0x4016d60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016D60"] + - [0x4016f60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04016F60"] + - [0x4017160, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017160"] + - [0x4017350, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017350"] + - [0x4017390, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017390"] + - [0x4017590, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017590"] + - [0x4017610, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017610"] + - [0x4017810, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017810"] + - [0x4017a00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017A00"] + - [0x4017a30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017A30"] + - [0x4017c30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017C30"] + - [0x4017c70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017C70"] + - [0x4017e70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017E70"] + - [0x4017f60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04017F60"] + - [0x4018160, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018160"] + - [0x4018360, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018360"] + - [0x4018450, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018450"] + - [0x4018630, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018630"] + - [0x4018670, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018670"] + - [0x4018870, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018870"] + - [0x4018950, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018950"] + - [0x4018b50, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018B50"] + - [0x4018b90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018B90"] + - [0x4018d70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018D70"] + - [0x4018e60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04018E60"] + - [0x4019060, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019060"] + - [0x4019250, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019250"] + - [0x4019450, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019450"] + - [0x4019480, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019480"] + - [0x4019680, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019680"] + - [0x4019700, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019700"] + - [0x40197c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040197C0"] + - [0x4019840, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019840"] + - [0x40198c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x040198C0"] + - [0x4019ac0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019AC0"] + - [0x4019cc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019CC0"] + - [0x4019ec0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019EC0"] + - [0x4019f40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x04019F40"] + - [0x401a100, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A100"] + - [0x401a2c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A2C0"] + - [0x401a4c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A4C0"] + - [0x401a640, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A640"] + - [0x401a740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A740"] + - [0x401a8a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A8A0"] + - [0x401a920, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401A920"] + - [0x401aa20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AA20"] + - [0x401aa60, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AA60"] + - [0x401aaa0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AAA0"] + - [0x401aae0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AAE0"] + - [0x401ab20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AB20"] + - [0x401ac20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AC20"] + - [0x401adf0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401ADF0"] + - [0x401aef0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401AEF0"] + - [0x401b070, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B070"] + - [0x401b1a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B1A0"] + - [0x401b3a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B3A0"] + - [0x401b4e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B4E0"] + - [0x401b660, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B660"] + - [0x401b7a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B7A0"] + - [0x401b940, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401B940"] + - [0x401ba80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BA80"] + - [0x401bc20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BC20"] + - [0x401bd90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BD90"] + - [0x401bea0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BEA0"] + - [0x401bfb0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401BFB0"] + - [0x401c030, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C030"] + - [0x401c0b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C0B0"] + - [0x401c1f0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C1F0"] + - [0x401c2b0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C2B0"] + - [0x401c440, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C440"] + - [0x401c550, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C550"] + - [0x401c6c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C6C0"] + - [0x401c7d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C7D0"] + - [0x401c930, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401C930"] + - [0x401ca30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CA30"] + - [0x401cc10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CC10"] + - [0x401cc70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CC70"] + - [0x401ce00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE00"] + - [0x401ce40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE40"] + - [0x401ce80, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401CE80"] + - [0x401d060, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D060"] + - [0x401d1c0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D1C0"] + - [0x401d3a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D3A0"] + - [0x401d5a0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D5A0"] + - [0x401d600, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D600"] + - [0x401d740, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D740"] + - [0x401d8e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401D8E0"] + - [0x401da20, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DA20"] + - [0x401dc00, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DC00"] + - [0x401dc30, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DC30"] + - [0x401ddc0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DDC0"] + - [0x401df10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401DF10"] + - [0x401e040, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E040"] + - [0x401e220, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E220"] + - [0x401e340, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E340"] + - [0x401e510, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E510"] + - [0x401e6d0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E6D0"] + - [0x401e880, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401E880"] + - [0x401ea70, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EA70"] + - [0x401eaa0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EAA0"] + - [0x401ec40, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EC40"] + - [0x401ee10, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EE10"] + - [0x401ef90, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401EF90"] + - [0x401f0e0, "models/tracks/moo_moo_farm/moo_moo_farm_vertices/d_course_moo_moo_farm_vertex_0x0401F0E0"] + segments: + - [0x0F, 0x918ECC] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_moo_moo_farm_packed_dl_0: + symbol: d_course_moo_moo_farm_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_moo_moo_farm_packed_dl_28: + symbol: d_course_moo_moo_farm_packed_dl_28 + type: MK64:PACKED_GFX + offset: 0xF +d_course_moo_moo_farm_packed_dl_58: + symbol: d_course_moo_moo_farm_packed_dl_58 + type: MK64:PACKED_GFX + offset: 0x23 +d_course_moo_moo_farm_packed_dl_88: + symbol: d_course_moo_moo_farm_packed_dl_88 + type: MK64:PACKED_GFX + offset: 0x37 +d_course_moo_moo_farm_packed_dl_C0: + symbol: d_course_moo_moo_farm_packed_dl_C0 + type: MK64:PACKED_GFX + offset: 0x50 +d_course_moo_moo_farm_packed_dl_F8: + symbol: d_course_moo_moo_farm_packed_dl_F8 + type: MK64:PACKED_GFX + offset: 0x69 +d_course_moo_moo_farm_packed_dl_130: + symbol: d_course_moo_moo_farm_packed_dl_130 + type: MK64:PACKED_GFX + offset: 0x82 +d_course_moo_moo_farm_packed_dl_170: + symbol: d_course_moo_moo_farm_packed_dl_170 + type: MK64:PACKED_GFX + offset: 0xA0 +d_course_moo_moo_farm_packed_dl_1A0: + symbol: d_course_moo_moo_farm_packed_dl_1A0 + type: MK64:PACKED_GFX + offset: 0xB4 +d_course_moo_moo_farm_packed_dl_1E0: + symbol: d_course_moo_moo_farm_packed_dl_1E0 + type: MK64:PACKED_GFX + offset: 0xD2 +d_course_moo_moo_farm_packed_dl_220: + symbol: d_course_moo_moo_farm_packed_dl_220 + type: MK64:PACKED_GFX + offset: 0xF0 +d_course_moo_moo_farm_packed_dl_258: + symbol: d_course_moo_moo_farm_packed_dl_258 + type: MK64:PACKED_GFX + offset: 0x109 +d_course_moo_moo_farm_packed_dl_290: + symbol: d_course_moo_moo_farm_packed_dl_290 + type: MK64:PACKED_GFX + offset: 0x122 +d_course_moo_moo_farm_packed_dl_2B0: + symbol: d_course_moo_moo_farm_packed_dl_2B0 + type: MK64:PACKED_GFX + offset: 0x12C +d_course_moo_moo_farm_packed_dl_2E8: + symbol: d_course_moo_moo_farm_packed_dl_2E8 + type: MK64:PACKED_GFX + offset: 0x145 +d_course_moo_moo_farm_packed_dl_318: + symbol: d_course_moo_moo_farm_packed_dl_318 + type: MK64:PACKED_GFX + offset: 0x159 +d_course_moo_moo_farm_packed_dl_350: + symbol: d_course_moo_moo_farm_packed_dl_350 + type: MK64:PACKED_GFX + offset: 0x172 +d_course_moo_moo_farm_packed_dl_388: + symbol: d_course_moo_moo_farm_packed_dl_388 + type: MK64:PACKED_GFX + offset: 0x18B +d_course_moo_moo_farm_packed_dl_3C8: + symbol: d_course_moo_moo_farm_packed_dl_3C8 + type: MK64:PACKED_GFX + offset: 0x1A9 +d_course_moo_moo_farm_packed_dl_400: + symbol: d_course_moo_moo_farm_packed_dl_400 + type: MK64:PACKED_GFX + offset: 0x1C2 +d_course_moo_moo_farm_packed_dl_430: + symbol: d_course_moo_moo_farm_packed_dl_430 + type: MK64:PACKED_GFX + offset: 0x1D6 +d_course_moo_moo_farm_packed_dl_468: + symbol: d_course_moo_moo_farm_packed_dl_468 + type: MK64:PACKED_GFX + offset: 0x1EF +d_course_moo_moo_farm_packed_dl_4A0: + symbol: d_course_moo_moo_farm_packed_dl_4A0 + type: MK64:PACKED_GFX + offset: 0x208 +d_course_moo_moo_farm_packed_dl_4D0: + symbol: d_course_moo_moo_farm_packed_dl_4D0 + type: MK64:PACKED_GFX + offset: 0x21C +d_course_moo_moo_farm_packed_dl_590: + symbol: d_course_moo_moo_farm_packed_dl_590 + type: MK64:PACKED_GFX + offset: 0x262 +d_course_moo_moo_farm_packed_dl_5C8: + symbol: d_course_moo_moo_farm_packed_dl_5C8 + type: MK64:PACKED_GFX + offset: 0x27B +d_course_moo_moo_farm_packed_dl_600: + symbol: d_course_moo_moo_farm_packed_dl_600 + type: MK64:PACKED_GFX + offset: 0x294 +d_course_moo_moo_farm_packed_dl_638: + symbol: d_course_moo_moo_farm_packed_dl_638 + type: MK64:PACKED_GFX + offset: 0x2AD +d_course_moo_moo_farm_packed_dl_670: + symbol: d_course_moo_moo_farm_packed_dl_670 + type: MK64:PACKED_GFX + offset: 0x2C6 +d_course_moo_moo_farm_packed_dl_6A8: + symbol: d_course_moo_moo_farm_packed_dl_6A8 + type: MK64:PACKED_GFX + offset: 0x2DF +d_course_moo_moo_farm_packed_dl_6E0: + symbol: d_course_moo_moo_farm_packed_dl_6E0 + type: MK64:PACKED_GFX + offset: 0x2F8 +d_course_moo_moo_farm_packed_dl_720: + symbol: d_course_moo_moo_farm_packed_dl_720 + type: MK64:PACKED_GFX + offset: 0x316 +d_course_moo_moo_farm_packed_dl_750: + symbol: d_course_moo_moo_farm_packed_dl_750 + type: MK64:PACKED_GFX + offset: 0x32A +d_course_moo_moo_farm_packed_dl_790: + symbol: d_course_moo_moo_farm_packed_dl_790 + type: MK64:PACKED_GFX + offset: 0x348 +d_course_moo_moo_farm_packed_dl_7D0: + symbol: d_course_moo_moo_farm_packed_dl_7D0 + type: MK64:PACKED_GFX + offset: 0x366 +d_course_moo_moo_farm_packed_dl_808: + symbol: d_course_moo_moo_farm_packed_dl_808 + type: MK64:PACKED_GFX + offset: 0x37F +d_course_moo_moo_farm_packed_dl_840: + symbol: d_course_moo_moo_farm_packed_dl_840 + type: MK64:PACKED_GFX + offset: 0x398 +d_course_moo_moo_farm_packed_dl_870: + symbol: d_course_moo_moo_farm_packed_dl_870 + type: MK64:PACKED_GFX + offset: 0x3AC +d_course_moo_moo_farm_packed_dl_898: + symbol: d_course_moo_moo_farm_packed_dl_898 + type: MK64:PACKED_GFX + offset: 0x3BB +d_course_moo_moo_farm_packed_dl_8D0: + symbol: d_course_moo_moo_farm_packed_dl_8D0 + type: MK64:PACKED_GFX + offset: 0x3D4 +d_course_moo_moo_farm_packed_dl_908: + symbol: d_course_moo_moo_farm_packed_dl_908 + type: MK64:PACKED_GFX + offset: 0x3ED +d_course_moo_moo_farm_packed_dl_940: + symbol: d_course_moo_moo_farm_packed_dl_940 + type: MK64:PACKED_GFX + offset: 0x406 +d_course_moo_moo_farm_packed_dl_978: + symbol: d_course_moo_moo_farm_packed_dl_978 + type: MK64:PACKED_GFX + offset: 0x41F +d_course_moo_moo_farm_packed_dl_9B0: + symbol: d_course_moo_moo_farm_packed_dl_9B0 + type: MK64:PACKED_GFX + offset: 0x438 +d_course_moo_moo_farm_packed_dl_9E0: + symbol: d_course_moo_moo_farm_packed_dl_9E0 + type: MK64:PACKED_GFX + offset: 0x44C +d_course_moo_moo_farm_packed_dl_A18: + symbol: d_course_moo_moo_farm_packed_dl_A18 + type: MK64:PACKED_GFX + offset: 0x465 +d_course_moo_moo_farm_packed_dl_A50: + symbol: d_course_moo_moo_farm_packed_dl_A50 + type: MK64:PACKED_GFX + offset: 0x47E +d_course_moo_moo_farm_packed_dl_A80: + symbol: d_course_moo_moo_farm_packed_dl_A80 + type: MK64:PACKED_GFX + offset: 0x492 +d_course_moo_moo_farm_packed_dl_B40: + symbol: d_course_moo_moo_farm_packed_dl_B40 + type: MK64:PACKED_GFX + offset: 0x4D8 +d_course_moo_moo_farm_packed_dl_C10: + symbol: d_course_moo_moo_farm_packed_dl_C10 + type: MK64:PACKED_GFX + offset: 0x52D +d_course_moo_moo_farm_packed_dl_C20: + symbol: d_course_moo_moo_farm_packed_dl_C20 + type: MK64:PACKED_GFX + offset: 0x531 +d_course_moo_moo_farm_packed_dl_CA0: + symbol: d_course_moo_moo_farm_packed_dl_CA0 + type: MK64:PACKED_GFX + offset: 0x575 +d_course_moo_moo_farm_packed_dl_CB0: + symbol: d_course_moo_moo_farm_packed_dl_CB0 + type: MK64:PACKED_GFX + offset: 0x579 +d_course_moo_moo_farm_packed_dl_E50: + symbol: d_course_moo_moo_farm_packed_dl_E50 + type: MK64:PACKED_GFX + offset: 0x5D2 +d_course_moo_moo_farm_packed_dl_EB8: + symbol: d_course_moo_moo_farm_packed_dl_EB8 + type: MK64:PACKED_GFX + offset: 0x5E8 +d_course_moo_moo_farm_packed_dl_F20: + symbol: d_course_moo_moo_farm_packed_dl_F20 + type: MK64:PACKED_GFX + offset: 0x5FE +d_course_moo_moo_farm_packed_dl_10C0: + symbol: d_course_moo_moo_farm_packed_dl_10C0 + type: MK64:PACKED_GFX + offset: 0x657 +d_course_moo_moo_farm_packed_dl_10E8: + symbol: d_course_moo_moo_farm_packed_dl_10E8 + type: MK64:PACKED_GFX + offset: 0x664 +d_course_moo_moo_farm_packed_dl_1118: + symbol: d_course_moo_moo_farm_packed_dl_1118 + type: MK64:PACKED_GFX + offset: 0x674 +d_course_moo_moo_farm_packed_dl_1128: + symbol: d_course_moo_moo_farm_packed_dl_1128 + type: MK64:PACKED_GFX + offset: 0x678 +d_course_moo_moo_farm_packed_dl_1168: + symbol: d_course_moo_moo_farm_packed_dl_1168 + type: MK64:PACKED_GFX + offset: 0x696 +d_course_moo_moo_farm_packed_dl_11B0: + symbol: d_course_moo_moo_farm_packed_dl_11B0 + type: MK64:PACKED_GFX + offset: 0x6B7 +d_course_moo_moo_farm_packed_dl_11F0: + symbol: d_course_moo_moo_farm_packed_dl_11F0 + type: MK64:PACKED_GFX + offset: 0x6D5 +d_course_moo_moo_farm_packed_dl_1230: + symbol: d_course_moo_moo_farm_packed_dl_1230 + type: MK64:PACKED_GFX + offset: 0x6F3 +d_course_moo_moo_farm_packed_dl_1270: + symbol: d_course_moo_moo_farm_packed_dl_1270 + type: MK64:PACKED_GFX + offset: 0x711 +d_course_moo_moo_farm_packed_dl_12E0: + symbol: d_course_moo_moo_farm_packed_dl_12E0 + type: MK64:PACKED_GFX + offset: 0x747 +d_course_moo_moo_farm_packed_dl_1348: + symbol: d_course_moo_moo_farm_packed_dl_1348 + type: MK64:PACKED_GFX + offset: 0x77A +d_course_moo_moo_farm_packed_dl_1388: + symbol: d_course_moo_moo_farm_packed_dl_1388 + type: MK64:PACKED_GFX + offset: 0x796 +d_course_moo_moo_farm_packed_dl_13E0: + symbol: d_course_moo_moo_farm_packed_dl_13E0 + type: MK64:PACKED_GFX + offset: 0x7BD +d_course_moo_moo_farm_packed_dl_1430: + symbol: d_course_moo_moo_farm_packed_dl_1430 + type: MK64:PACKED_GFX + offset: 0x7E3 +d_course_moo_moo_farm_packed_dl_1478: + symbol: d_course_moo_moo_farm_packed_dl_1478 + type: MK64:PACKED_GFX + offset: 0x804 +d_course_moo_moo_farm_packed_dl_14B8: + symbol: d_course_moo_moo_farm_packed_dl_14B8 + type: MK64:PACKED_GFX + offset: 0x822 +d_course_moo_moo_farm_packed_dl_1518: + symbol: d_course_moo_moo_farm_packed_dl_1518 + type: MK64:PACKED_GFX + offset: 0x850 +d_course_moo_moo_farm_packed_dl_1578: + symbol: d_course_moo_moo_farm_packed_dl_1578 + type: MK64:PACKED_GFX + offset: 0x87C +d_course_moo_moo_farm_packed_dl_15E0: + symbol: d_course_moo_moo_farm_packed_dl_15E0 + type: MK64:PACKED_GFX + offset: 0x8AD +d_course_moo_moo_farm_packed_dl_1640: + symbol: d_course_moo_moo_farm_packed_dl_1640 + type: MK64:PACKED_GFX + offset: 0x8DB +d_course_moo_moo_farm_packed_dl_16B8: + symbol: d_course_moo_moo_farm_packed_dl_16B8 + type: MK64:PACKED_GFX + offset: 0x916 +d_course_moo_moo_farm_packed_dl_1718: + symbol: d_course_moo_moo_farm_packed_dl_1718 + type: MK64:PACKED_GFX + offset: 0x944 +d_course_moo_moo_farm_packed_dl_1750: + symbol: d_course_moo_moo_farm_packed_dl_1750 + type: MK64:PACKED_GFX + offset: 0x95B +d_course_moo_moo_farm_packed_dl_17A8: + symbol: d_course_moo_moo_farm_packed_dl_17A8 + type: MK64:PACKED_GFX + offset: 0x982 +d_course_moo_moo_farm_packed_dl_17D8: + symbol: d_course_moo_moo_farm_packed_dl_17D8 + type: MK64:PACKED_GFX + offset: 0x996 +d_course_moo_moo_farm_packed_dl_1828: + symbol: d_course_moo_moo_farm_packed_dl_1828 + type: MK64:PACKED_GFX + offset: 0x9BC +d_course_moo_moo_farm_packed_dl_18E0: + symbol: d_course_moo_moo_farm_packed_dl_18E0 + type: MK64:PACKED_GFX + offset: 0x9FF +d_course_moo_moo_farm_packed_dl_1940: + symbol: d_course_moo_moo_farm_packed_dl_1940 + type: MK64:PACKED_GFX + offset: 0xA2B +d_course_moo_moo_farm_packed_dl_19A0: + symbol: d_course_moo_moo_farm_packed_dl_19A0 + type: MK64:PACKED_GFX + offset: 0xA59 +d_course_moo_moo_farm_packed_dl_1A00: + symbol: d_course_moo_moo_farm_packed_dl_1A00 + type: MK64:PACKED_GFX + offset: 0xA89 +d_course_moo_moo_farm_packed_dl_1A60: + symbol: d_course_moo_moo_farm_packed_dl_1A60 + type: MK64:PACKED_GFX + offset: 0xAB7 +d_course_moo_moo_farm_packed_dl_1AA0: + symbol: d_course_moo_moo_farm_packed_dl_1AA0 + type: MK64:PACKED_GFX + offset: 0xAD3 +d_course_moo_moo_farm_packed_dl_1AD0: + symbol: d_course_moo_moo_farm_packed_dl_1AD0 + type: MK64:PACKED_GFX + offset: 0xAE7 +d_course_moo_moo_farm_packed_dl_1B38: + symbol: d_course_moo_moo_farm_packed_dl_1B38 + type: MK64:PACKED_GFX + offset: 0xB1A +d_course_moo_moo_farm_packed_dl_1BA0: + symbol: d_course_moo_moo_farm_packed_dl_1BA0 + type: MK64:PACKED_GFX + offset: 0xB4D +d_course_moo_moo_farm_packed_dl_1C40: + symbol: d_course_moo_moo_farm_packed_dl_1C40 + type: MK64:PACKED_GFX + offset: 0xBA1 +d_course_moo_moo_farm_packed_dl_1C98: + symbol: d_course_moo_moo_farm_packed_dl_1C98 + type: MK64:PACKED_GFX + offset: 0xBCA +d_course_moo_moo_farm_packed_dl_1D00: + symbol: d_course_moo_moo_farm_packed_dl_1D00 + type: MK64:PACKED_GFX + offset: 0xBFD +d_course_moo_moo_farm_packed_dl_1D60: + symbol: d_course_moo_moo_farm_packed_dl_1D60 + type: MK64:PACKED_GFX + offset: 0xC2B +d_course_moo_moo_farm_packed_dl_1DD0: + symbol: d_course_moo_moo_farm_packed_dl_1DD0 + type: MK64:PACKED_GFX + offset: 0xC63 +d_course_moo_moo_farm_packed_dl_1E58: + symbol: d_course_moo_moo_farm_packed_dl_1E58 + type: MK64:PACKED_GFX + offset: 0xCA8 +d_course_moo_moo_farm_packed_dl_1ED0: + symbol: d_course_moo_moo_farm_packed_dl_1ED0 + type: MK64:PACKED_GFX + offset: 0xCE3 +d_course_moo_moo_farm_packed_dl_1F20: + symbol: d_course_moo_moo_farm_packed_dl_1F20 + type: MK64:PACKED_GFX + offset: 0xD07 +d_course_moo_moo_farm_packed_dl_1F58: + symbol: d_course_moo_moo_farm_packed_dl_1F58 + type: MK64:PACKED_GFX + offset: 0xD1E +d_course_moo_moo_farm_packed_dl_1F90: + symbol: d_course_moo_moo_farm_packed_dl_1F90 + type: MK64:PACKED_GFX + offset: 0xD37 +d_course_moo_moo_farm_packed_dl_1FD0: + symbol: d_course_moo_moo_farm_packed_dl_1FD0 + type: MK64:PACKED_GFX + offset: 0xD53 +d_course_moo_moo_farm_packed_dl_2008: + symbol: d_course_moo_moo_farm_packed_dl_2008 + type: MK64:PACKED_GFX + offset: 0xD6A +d_course_moo_moo_farm_packed_dl_2040: + symbol: d_course_moo_moo_farm_packed_dl_2040 + type: MK64:PACKED_GFX + offset: 0xD81 +d_course_moo_moo_farm_packed_dl_2080: + symbol: d_course_moo_moo_farm_packed_dl_2080 + type: MK64:PACKED_GFX + offset: 0xD9F +d_course_moo_moo_farm_packed_dl_20C0: + symbol: d_course_moo_moo_farm_packed_dl_20C0 + type: MK64:PACKED_GFX + offset: 0xDBD +d_course_moo_moo_farm_packed_dl_20F8: + symbol: d_course_moo_moo_farm_packed_dl_20F8 + type: MK64:PACKED_GFX + offset: 0xDD4 +d_course_moo_moo_farm_packed_dl_2160: + symbol: d_course_moo_moo_farm_packed_dl_2160 + type: MK64:PACKED_GFX + offset: 0xE09 +d_course_moo_moo_farm_packed_dl_21D8: + symbol: d_course_moo_moo_farm_packed_dl_21D8 + type: MK64:PACKED_GFX + offset: 0xE46 +d_course_moo_moo_farm_packed_dl_2240: + symbol: d_course_moo_moo_farm_packed_dl_2240 + type: MK64:PACKED_GFX + offset: 0xE7B +d_course_moo_moo_farm_packed_dl_22B0: + symbol: d_course_moo_moo_farm_packed_dl_22B0 + type: MK64:PACKED_GFX + offset: 0xEB3 +d_course_moo_moo_farm_packed_dl_2338: + symbol: d_course_moo_moo_farm_packed_dl_2338 + type: MK64:PACKED_GFX + offset: 0xEF8 +d_course_moo_moo_farm_packed_dl_23C0: + symbol: d_course_moo_moo_farm_packed_dl_23C0 + type: MK64:PACKED_GFX + offset: 0xF3B +d_course_moo_moo_farm_packed_dl_2450: + symbol: d_course_moo_moo_farm_packed_dl_2450 + type: MK64:PACKED_GFX + offset: 0xF81 +d_course_moo_moo_farm_packed_dl_2550: + symbol: d_course_moo_moo_farm_packed_dl_2550 + type: MK64:PACKED_GFX + offset: 0xFDF +d_course_moo_moo_farm_packed_dl_2588: + symbol: d_course_moo_moo_farm_packed_dl_2588 + type: MK64:PACKED_GFX + offset: 0xFF8 +d_course_moo_moo_farm_packed_dl_25D0: + symbol: d_course_moo_moo_farm_packed_dl_25D0 + type: MK64:PACKED_GFX + offset: 0x101B +d_course_moo_moo_farm_packed_dl_2618: + symbol: d_course_moo_moo_farm_packed_dl_2618 + type: MK64:PACKED_GFX + offset: 0x103C +d_course_moo_moo_farm_packed_dl_2658: + symbol: d_course_moo_moo_farm_packed_dl_2658 + type: MK64:PACKED_GFX + offset: 0x1058 +d_course_moo_moo_farm_packed_dl_2690: + symbol: d_course_moo_moo_farm_packed_dl_2690 + type: MK64:PACKED_GFX + offset: 0x1071 +d_course_moo_moo_farm_packed_dl_26C0: + symbol: d_course_moo_moo_farm_packed_dl_26C0 + type: MK64:PACKED_GFX + offset: 0x1085 +d_course_moo_moo_farm_packed_dl_2708: + symbol: d_course_moo_moo_farm_packed_dl_2708 + type: MK64:PACKED_GFX + offset: 0x10A6 +d_course_moo_moo_farm_packed_dl_2748: + symbol: d_course_moo_moo_farm_packed_dl_2748 + type: MK64:PACKED_GFX + offset: 0x10C2 +d_course_moo_moo_farm_packed_dl_2780: + symbol: d_course_moo_moo_farm_packed_dl_2780 + type: MK64:PACKED_GFX + offset: 0x10D9 +d_course_moo_moo_farm_packed_dl_27B8: + symbol: d_course_moo_moo_farm_packed_dl_27B8 + type: MK64:PACKED_GFX + offset: 0x10F2 +d_course_moo_moo_farm_packed_dl_27F8: + symbol: d_course_moo_moo_farm_packed_dl_27F8 + type: MK64:PACKED_GFX + offset: 0x110E +d_course_moo_moo_farm_packed_dl_2850: + symbol: d_course_moo_moo_farm_packed_dl_2850 + type: MK64:PACKED_GFX + offset: 0x1135 +d_course_moo_moo_farm_packed_dl_2898: + symbol: d_course_moo_moo_farm_packed_dl_2898 + type: MK64:PACKED_GFX + offset: 0x1158 +d_course_moo_moo_farm_packed_dl_28D8: + symbol: d_course_moo_moo_farm_packed_dl_28D8 + type: MK64:PACKED_GFX + offset: 0x1176 +d_course_moo_moo_farm_packed_dl_2918: + symbol: d_course_moo_moo_farm_packed_dl_2918 + type: MK64:PACKED_GFX + offset: 0x1194 +d_course_moo_moo_farm_packed_dl_2998: + symbol: d_course_moo_moo_farm_packed_dl_2998 + type: MK64:PACKED_GFX + offset: 0x11C2 +d_course_moo_moo_farm_packed_dl_29F0: + symbol: d_course_moo_moo_farm_packed_dl_29F0 + type: MK64:PACKED_GFX + offset: 0x11EB +d_course_moo_moo_farm_packed_dl_2A50: + symbol: d_course_moo_moo_farm_packed_dl_2A50 + type: MK64:PACKED_GFX + offset: 0x1217 +d_course_moo_moo_farm_packed_dl_2AB8: + symbol: d_course_moo_moo_farm_packed_dl_2AB8 + type: MK64:PACKED_GFX + offset: 0x1248 +d_course_moo_moo_farm_packed_dl_2AF0: + symbol: d_course_moo_moo_farm_packed_dl_2AF0 + type: MK64:PACKED_GFX + offset: 0x1261 +d_course_moo_moo_farm_packed_dl_2B50: + symbol: d_course_moo_moo_farm_packed_dl_2B50 + type: MK64:PACKED_GFX + offset: 0x128D +d_course_moo_moo_farm_packed_dl_2BA8: + symbol: d_course_moo_moo_farm_packed_dl_2BA8 + type: MK64:PACKED_GFX + offset: 0x12B6 +d_course_moo_moo_farm_packed_dl_2C10: + symbol: d_course_moo_moo_farm_packed_dl_2C10 + type: MK64:PACKED_GFX + offset: 0x12E7 +d_course_moo_moo_farm_packed_dl_2C68: + symbol: d_course_moo_moo_farm_packed_dl_2C68 + type: MK64:PACKED_GFX + offset: 0x1310 +d_course_moo_moo_farm_packed_dl_2CD8: + symbol: d_course_moo_moo_farm_packed_dl_2CD8 + type: MK64:PACKED_GFX + offset: 0x1346 +d_course_moo_moo_farm_packed_dl_2D30: + symbol: d_course_moo_moo_farm_packed_dl_2D30 + type: MK64:PACKED_GFX + offset: 0x136F +d_course_moo_moo_farm_packed_dl_2D90: + symbol: d_course_moo_moo_farm_packed_dl_2D90 + type: MK64:PACKED_GFX + offset: 0x139D +d_course_moo_moo_farm_packed_dl_2DF0: + symbol: d_course_moo_moo_farm_packed_dl_2DF0 + type: MK64:PACKED_GFX + offset: 0x13CB +d_course_moo_moo_farm_packed_dl_2E60: + symbol: d_course_moo_moo_farm_packed_dl_2E60 + type: MK64:PACKED_GFX + offset: 0x1403 +d_course_moo_moo_farm_packed_dl_2EA0: + symbol: d_course_moo_moo_farm_packed_dl_2EA0 + type: MK64:PACKED_GFX + offset: 0x1421 +d_course_moo_moo_farm_packed_dl_2F10: + symbol: d_course_moo_moo_farm_packed_dl_2F10 + type: MK64:PACKED_GFX + offset: 0x1457 +d_course_moo_moo_farm_packed_dl_2F90: + symbol: d_course_moo_moo_farm_packed_dl_2F90 + type: MK64:PACKED_GFX + offset: 0x1497 +d_course_moo_moo_farm_packed_dl_2FF8: + symbol: d_course_moo_moo_farm_packed_dl_2FF8 + type: MK64:PACKED_GFX + offset: 0x14CA +d_course_moo_moo_farm_packed_dl_3030: + symbol: d_course_moo_moo_farm_packed_dl_3030 + type: MK64:PACKED_GFX + offset: 0x14E3 +d_course_moo_moo_farm_packed_dl_30A8: + symbol: d_course_moo_moo_farm_packed_dl_30A8 + type: MK64:PACKED_GFX + offset: 0x1520 +d_course_moo_moo_farm_packed_dl_30F0: + symbol: d_course_moo_moo_farm_packed_dl_30F0 + type: MK64:PACKED_GFX + offset: 0x1543 +d_course_moo_moo_farm_packed_dl_3138: + symbol: d_course_moo_moo_farm_packed_dl_3138 + type: MK64:PACKED_GFX + offset: 0x1566 +d_course_moo_moo_farm_packed_dl_3190: + symbol: d_course_moo_moo_farm_packed_dl_3190 + type: MK64:PACKED_GFX + offset: 0x158F +d_course_moo_moo_farm_packed_dl_31C8: + symbol: d_course_moo_moo_farm_packed_dl_31C8 + type: MK64:PACKED_GFX + offset: 0x15A8 +d_course_moo_moo_farm_packed_dl_3210: + symbol: d_course_moo_moo_farm_packed_dl_3210 + type: MK64:PACKED_GFX + offset: 0x15CB +d_course_moo_moo_farm_packed_dl_3268: + symbol: d_course_moo_moo_farm_packed_dl_3268 + type: MK64:PACKED_GFX + offset: 0x15F2 +d_course_moo_moo_farm_packed_dl_32A0: + symbol: d_course_moo_moo_farm_packed_dl_32A0 + type: MK64:PACKED_GFX + offset: 0x160B +d_course_moo_moo_farm_packed_dl_3310: + symbol: d_course_moo_moo_farm_packed_dl_3310 + type: MK64:PACKED_GFX + offset: 0x1641 +d_course_moo_moo_farm_packed_dl_3350: + symbol: d_course_moo_moo_farm_packed_dl_3350 + type: MK64:PACKED_GFX + offset: 0x165F +d_course_moo_moo_farm_packed_dl_3380: + symbol: d_course_moo_moo_farm_packed_dl_3380 + type: MK64:PACKED_GFX + offset: 0x1673 +d_course_moo_moo_farm_packed_dl_33C0: + symbol: d_course_moo_moo_farm_packed_dl_33C0 + type: MK64:PACKED_GFX + offset: 0x1691 +d_course_moo_moo_farm_packed_dl_34B8: + symbol: d_course_moo_moo_farm_packed_dl_34B8 + type: MK64:PACKED_GFX + offset: 0x16EC +d_course_moo_moo_farm_packed_dl_3590: + symbol: d_course_moo_moo_farm_packed_dl_3590 + type: MK64:PACKED_GFX + offset: 0x174D +d_course_moo_moo_farm_packed_dl_3668: + symbol: d_course_moo_moo_farm_packed_dl_3668 + type: MK64:PACKED_GFX + offset: 0x17AE +d_course_moo_moo_farm_packed_dl_3748: + symbol: d_course_moo_moo_farm_packed_dl_3748 + type: MK64:PACKED_GFX + offset: 0x1810 +d_course_moo_moo_farm_packed_dl_3828: + symbol: d_course_moo_moo_farm_packed_dl_3828 + type: MK64:PACKED_GFX + offset: 0x1872 +d_course_moo_moo_farm_packed_dl_3918: + symbol: d_course_moo_moo_farm_packed_dl_3918 + type: MK64:PACKED_GFX + offset: 0x18DA +d_course_moo_moo_farm_packed_dl_39F8: + symbol: d_course_moo_moo_farm_packed_dl_39F8 + type: MK64:PACKED_GFX + offset: 0x193C +d_course_moo_moo_farm_packed_dl_3B88: + symbol: d_course_moo_moo_farm_packed_dl_3B88 + type: MK64:PACKED_GFX + offset: 0x19C6 +d_course_moo_moo_farm_packed_dl_3C48: + symbol: d_course_moo_moo_farm_packed_dl_3C48 + type: MK64:PACKED_GFX + offset: 0x1A14 +d_course_moo_moo_farm_packed_dl_3D50: + symbol: d_course_moo_moo_farm_packed_dl_3D50 + type: MK64:PACKED_GFX + offset: 0x1A8D +d_course_moo_moo_farm_packed_dl_3E50: + symbol: d_course_moo_moo_farm_packed_dl_3E50 + type: MK64:PACKED_GFX + offset: 0x1B05 +d_course_moo_moo_farm_packed_dl_3F30: + symbol: d_course_moo_moo_farm_packed_dl_3F30 + type: MK64:PACKED_GFX + offset: 0x1B67 +d_course_moo_moo_farm_packed_dl_40A8: + symbol: d_course_moo_moo_farm_packed_dl_40A8 + type: MK64:PACKED_GFX + offset: 0x1BEA +d_course_moo_moo_farm_packed_dl_41B0: + symbol: d_course_moo_moo_farm_packed_dl_41B0 + type: MK64:PACKED_GFX + offset: 0x1C63 +d_course_moo_moo_farm_packed_dl_42B8: + symbol: d_course_moo_moo_farm_packed_dl_42B8 + type: MK64:PACKED_GFX + offset: 0x1CDC +d_course_moo_moo_farm_packed_dl_43A0: + symbol: d_course_moo_moo_farm_packed_dl_43A0 + type: MK64:PACKED_GFX + offset: 0x1D45 +d_course_moo_moo_farm_packed_dl_4480: + symbol: d_course_moo_moo_farm_packed_dl_4480 + type: MK64:PACKED_GFX + offset: 0x1DA7 +d_course_moo_moo_farm_packed_dl_45D0: + symbol: d_course_moo_moo_farm_packed_dl_45D0 + type: MK64:PACKED_GFX + offset: 0x1E4B +d_course_moo_moo_farm_packed_dl_46E8: + symbol: d_course_moo_moo_farm_packed_dl_46E8 + type: MK64:PACKED_GFX + offset: 0x1ECE +d_course_moo_moo_farm_packed_dl_47C8: + symbol: d_course_moo_moo_farm_packed_dl_47C8 + type: MK64:PACKED_GFX + offset: 0x1F30 +d_course_moo_moo_farm_packed_dl_48B8: + symbol: d_course_moo_moo_farm_packed_dl_48B8 + type: MK64:PACKED_GFX + offset: 0x1F9A +d_course_moo_moo_farm_packed_dl_49A8: + symbol: d_course_moo_moo_farm_packed_dl_49A8 + type: MK64:PACKED_GFX + offset: 0x2004 +d_course_moo_moo_farm_packed_dl_4A88: + symbol: d_course_moo_moo_farm_packed_dl_4A88 + type: MK64:PACKED_GFX + offset: 0x2066 +d_course_moo_moo_farm_packed_dl_4B90: + symbol: d_course_moo_moo_farm_packed_dl_4B90 + type: MK64:PACKED_GFX + offset: 0x20DD +d_course_moo_moo_farm_packed_dl_4C50: + symbol: d_course_moo_moo_farm_packed_dl_4C50 + type: MK64:PACKED_GFX + offset: 0x2123 +d_course_moo_moo_farm_packed_dl_4CB8: + symbol: d_course_moo_moo_farm_packed_dl_4CB8 + type: MK64:PACKED_GFX + offset: 0x2139 +d_course_moo_moo_farm_packed_dl_4D28: + symbol: d_course_moo_moo_farm_packed_dl_4D28 + type: MK64:PACKED_GFX + offset: 0x2154 +d_course_moo_moo_farm_packed_dl_4D90: + symbol: d_course_moo_moo_farm_packed_dl_4D90 + type: MK64:PACKED_GFX + offset: 0x216A +d_course_moo_moo_farm_packed_dl_4DF8: + symbol: d_course_moo_moo_farm_packed_dl_4DF8 + type: MK64:PACKED_GFX + offset: 0x2180 +d_course_moo_moo_farm_packed_dl_4E20: + symbol: d_course_moo_moo_farm_packed_dl_4E20 + type: MK64:PACKED_GFX + offset: 0x218D +d_course_moo_moo_farm_packed_dl_4F00: + symbol: d_course_moo_moo_farm_packed_dl_4F00 + type: MK64:PACKED_GFX + offset: 0x21EC +d_course_moo_moo_farm_packed_dl_5018: + symbol: d_course_moo_moo_farm_packed_dl_5018 + type: MK64:PACKED_GFX + offset: 0x226E +d_course_moo_moo_farm_packed_dl_5030: + symbol: d_course_moo_moo_farm_packed_dl_5030 + type: MK64:PACKED_GFX + offset: 0x2275 +d_course_moo_moo_farm_packed_dl_50D0: + symbol: d_course_moo_moo_farm_packed_dl_50D0 + type: MK64:PACKED_GFX + offset: 0x22AE +d_course_moo_moo_farm_packed_dl_5170: + symbol: d_course_moo_moo_farm_packed_dl_5170 + type: MK64:PACKED_GFX + offset: 0x22E7 +d_course_moo_moo_farm_packed_dl_5208: + symbol: d_course_moo_moo_farm_packed_dl_5208 + type: MK64:PACKED_GFX + offset: 0x231B +d_course_moo_moo_farm_packed_dl_5290: + symbol: d_course_moo_moo_farm_packed_dl_5290 + type: MK64:PACKED_GFX + offset: 0x2345 +d_course_moo_moo_farm_packed_dl_52B8: + symbol: d_course_moo_moo_farm_packed_dl_52B8 + type: MK64:PACKED_GFX + offset: 0x2352 +d_course_moo_moo_farm_packed_dl_5410: + symbol: d_course_moo_moo_farm_packed_dl_5410 + type: MK64:PACKED_GFX + offset: 0x23B8 +d_course_moo_moo_farm_packed_dl_5420: + symbol: d_course_moo_moo_farm_packed_dl_5420 + type: MK64:PACKED_GFX + offset: 0x23BC +d_course_moo_moo_farm_packed_dl_5498: + symbol: d_course_moo_moo_farm_packed_dl_5498 + type: MK64:PACKED_GFX + offset: 0x23DC +d_course_moo_moo_farm_packed_dl_5530: + symbol: d_course_moo_moo_farm_packed_dl_5530 + type: MK64:PACKED_GFX + offset: 0x23F9 +d_course_moo_moo_farm_packed_dl_55C8: + symbol: d_course_moo_moo_farm_packed_dl_55C8 + type: MK64:PACKED_GFX + offset: 0x2416 +d_course_moo_moo_farm_packed_dl_5640: + symbol: d_course_moo_moo_farm_packed_dl_5640 + type: MK64:PACKED_GFX + offset: 0x2436 +d_course_moo_moo_farm_packed_dl_5668: + symbol: d_course_moo_moo_farm_packed_dl_5668 + type: MK64:PACKED_GFX + offset: 0x2443 +d_course_moo_moo_farm_packed_dl_5700: + symbol: d_course_moo_moo_farm_packed_dl_5700 + type: MK64:PACKED_GFX + offset: 0x247E +d_course_moo_moo_farm_packed_dl_57A0: + symbol: d_course_moo_moo_farm_packed_dl_57A0 + type: MK64:PACKED_GFX + offset: 0x24BA +d_course_moo_moo_farm_packed_dl_5848: + symbol: d_course_moo_moo_farm_packed_dl_5848 + type: MK64:PACKED_GFX + offset: 0x24FD +d_course_moo_moo_farm_packed_dl_58E8: + symbol: d_course_moo_moo_farm_packed_dl_58E8 + type: MK64:PACKED_GFX + offset: 0x253B +d_course_moo_moo_farm_packed_dl_5988: + symbol: d_course_moo_moo_farm_packed_dl_5988 + type: MK64:PACKED_GFX + offset: 0x2579 +d_course_moo_moo_farm_packed_dl_5A30: + symbol: d_course_moo_moo_farm_packed_dl_5A30 + type: MK64:PACKED_GFX + offset: 0x25BA +d_course_moo_moo_farm_packed_dl_5B70: + symbol: d_course_moo_moo_farm_packed_dl_5B70 + type: MK64:PACKED_GFX + offset: 0x2614 +d_course_moo_moo_farm_packed_dl_5BF8: + symbol: d_course_moo_moo_farm_packed_dl_5BF8 + type: MK64:PACKED_GFX + offset: 0x2643 +d_course_moo_moo_farm_packed_dl_5C98: + symbol: d_course_moo_moo_farm_packed_dl_5C98 + type: MK64:PACKED_GFX + offset: 0x267F +d_course_moo_moo_farm_packed_dl_5D30: + symbol: d_course_moo_moo_farm_packed_dl_5D30 + type: MK64:PACKED_GFX + offset: 0x26B8 +d_course_moo_moo_farm_packed_dl_5DC0: + symbol: d_course_moo_moo_farm_packed_dl_5DC0 + type: MK64:PACKED_GFX + offset: 0x26EE +d_course_moo_moo_farm_packed_dl_5F08: + symbol: d_course_moo_moo_farm_packed_dl_5F08 + type: MK64:PACKED_GFX + offset: 0x2759 +d_course_moo_moo_farm_packed_dl_5FD8: + symbol: d_course_moo_moo_farm_packed_dl_5FD8 + type: MK64:PACKED_GFX + offset: 0x27B5 +d_course_moo_moo_farm_packed_dl_6090: + symbol: d_course_moo_moo_farm_packed_dl_6090 + type: MK64:PACKED_GFX + offset: 0x2800 +d_course_moo_moo_farm_packed_dl_6130: + symbol: d_course_moo_moo_farm_packed_dl_6130 + type: MK64:PACKED_GFX + offset: 0x2840 +d_course_moo_moo_farm_packed_dl_61F0: + symbol: d_course_moo_moo_farm_packed_dl_61F0 + type: MK64:PACKED_GFX + offset: 0x288C +d_course_moo_moo_farm_packed_dl_6288: + symbol: d_course_moo_moo_farm_packed_dl_6288 + type: MK64:PACKED_GFX + offset: 0x28C5 +d_course_moo_moo_farm_packed_dl_6358: + symbol: d_course_moo_moo_farm_packed_dl_6358 + type: MK64:PACKED_GFX + offset: 0x291D +d_course_moo_moo_farm_packed_dl_6408: + symbol: d_course_moo_moo_farm_packed_dl_6408 + type: MK64:PACKED_GFX + offset: 0x2965 +d_course_moo_moo_farm_packed_dl_64D0: + symbol: d_course_moo_moo_farm_packed_dl_64D0 + type: MK64:PACKED_GFX + offset: 0x29B8 +d_course_moo_moo_farm_packed_dl_6578: + symbol: d_course_moo_moo_farm_packed_dl_6578 + type: MK64:PACKED_GFX + offset: 0x29FD +d_course_moo_moo_farm_packed_dl_6618: + symbol: d_course_moo_moo_farm_packed_dl_6618 + type: MK64:PACKED_GFX + offset: 0x2A3B +d_course_moo_moo_farm_packed_dl_66D0: + symbol: d_course_moo_moo_farm_packed_dl_66D0 + type: MK64:PACKED_GFX + offset: 0x2A7E +d_course_moo_moo_farm_packed_dl_6730: + symbol: d_course_moo_moo_farm_packed_dl_6730 + type: MK64:PACKED_GFX + offset: 0x2AA0 +d_course_moo_moo_farm_packed_dl_6740: + symbol: d_course_moo_moo_farm_packed_dl_6740 + type: MK64:PACKED_GFX + offset: 0x2AA4 diff --git a/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_vertices.yml b/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_vertices.yml new file mode 100644 index 000000000..fac108ec6 --- /dev/null +++ b/yamls/us/models/tracks/moo_moo_farm/moo_moo_farm_vertices.yml @@ -0,0 +1,2283 @@ +:config: + segments: + - [0x0F, 0x90B3E0] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_moo_moo_farm_vertex_0x04000000: + symbol: d_course_moo_moo_farm_vertex_0x04000000 + type: mk64:course_vtx + count: 8 + offset: 0x0 + +d_course_moo_moo_farm_vertex_0x04000080: + symbol: d_course_moo_moo_farm_vertex_0x04000080 + type: mk64:course_vtx + count: 18 + offset: 0x70 + +d_course_moo_moo_farm_vertex_0x04000140: + symbol: d_course_moo_moo_farm_vertex_0x04000140 + type: mk64:course_vtx + count: 18 + offset: 0x118 + +d_course_moo_moo_farm_vertex_0x04000200: + symbol: d_course_moo_moo_farm_vertex_0x04000200 + type: mk64:course_vtx + count: 22 + offset: 0x1c0 + +d_course_moo_moo_farm_vertex_0x04000300: + symbol: d_course_moo_moo_farm_vertex_0x04000300 + type: mk64:course_vtx + count: 22 + offset: 0x2a0 + +d_course_moo_moo_farm_vertex_0x04000400: + symbol: d_course_moo_moo_farm_vertex_0x04000400 + type: mk64:course_vtx + count: 22 + offset: 0x380 + +d_course_moo_moo_farm_vertex_0x04000500: + symbol: d_course_moo_moo_farm_vertex_0x04000500 + type: mk64:course_vtx + count: 32 + offset: 0x460 + +d_course_moo_moo_farm_vertex_0x04000640: + symbol: d_course_moo_moo_farm_vertex_0x04000640 + type: mk64:course_vtx + count: 18 + offset: 0x578 + +d_course_moo_moo_farm_vertex_0x04000700: + symbol: d_course_moo_moo_farm_vertex_0x04000700 + type: mk64:course_vtx + count: 32 + offset: 0x620 + +d_course_moo_moo_farm_vertex_0x04000840: + symbol: d_course_moo_moo_farm_vertex_0x04000840 + type: mk64:course_vtx + count: 32 + offset: 0x738 + +d_course_moo_moo_farm_vertex_0x04000980: + symbol: d_course_moo_moo_farm_vertex_0x04000980 + type: mk64:course_vtx + count: 22 + offset: 0x850 + +d_course_moo_moo_farm_vertex_0x04000A80: + symbol: d_course_moo_moo_farm_vertex_0x04000A80 + type: mk64:course_vtx + count: 22 + offset: 0x930 + +d_course_moo_moo_farm_vertex_0x04000B80: + symbol: d_course_moo_moo_farm_vertex_0x04000B80 + type: mk64:course_vtx + count: 4 + offset: 0xa10 + +d_course_moo_moo_farm_vertex_0x04000BC0: + symbol: d_course_moo_moo_farm_vertex_0x04000BC0 + type: mk64:course_vtx + count: 22 + offset: 0xa48 + +d_course_moo_moo_farm_vertex_0x04000CC0: + symbol: d_course_moo_moo_farm_vertex_0x04000CC0 + type: mk64:course_vtx + count: 18 + offset: 0xb28 + +d_course_moo_moo_farm_vertex_0x04000D80: + symbol: d_course_moo_moo_farm_vertex_0x04000D80 + type: mk64:course_vtx + count: 22 + offset: 0xbd0 + +d_course_moo_moo_farm_vertex_0x04000E80: + symbol: d_course_moo_moo_farm_vertex_0x04000E80 + type: mk64:course_vtx + count: 22 + offset: 0xcb0 + +d_course_moo_moo_farm_vertex_0x04000F80: + symbol: d_course_moo_moo_farm_vertex_0x04000F80 + type: mk64:course_vtx + count: 32 + offset: 0xd90 + +d_course_moo_moo_farm_vertex_0x040010C0: + symbol: d_course_moo_moo_farm_vertex_0x040010C0 + type: mk64:course_vtx + count: 22 + offset: 0xea8 + +d_course_moo_moo_farm_vertex_0x040011C0: + symbol: d_course_moo_moo_farm_vertex_0x040011C0 + type: mk64:course_vtx + count: 18 + offset: 0xf88 + +d_course_moo_moo_farm_vertex_0x04001280: + symbol: d_course_moo_moo_farm_vertex_0x04001280 + type: mk64:course_vtx + count: 22 + offset: 0x1030 + +d_course_moo_moo_farm_vertex_0x04001380: + symbol: d_course_moo_moo_farm_vertex_0x04001380 + type: mk64:course_vtx + count: 22 + offset: 0x1110 + +d_course_moo_moo_farm_vertex_0x04001480: + symbol: d_course_moo_moo_farm_vertex_0x04001480 + type: mk64:course_vtx + count: 18 + offset: 0x11f0 + +d_course_moo_moo_farm_vertex_0x04001540: + symbol: d_course_moo_moo_farm_vertex_0x04001540 + type: mk64:course_vtx + count: 22 + offset: 0x1298 + +d_course_moo_moo_farm_vertex_0x04001640: + symbol: d_course_moo_moo_farm_vertex_0x04001640 + type: mk64:course_vtx + count: 22 + offset: 0x1378 + +d_course_moo_moo_farm_vertex_0x04001740: + symbol: d_course_moo_moo_farm_vertex_0x04001740 + type: mk64:course_vtx + count: 22 + offset: 0x1458 + +d_course_moo_moo_farm_vertex_0x04001840: + symbol: d_course_moo_moo_farm_vertex_0x04001840 + type: mk64:course_vtx + count: 22 + offset: 0x1538 + +d_course_moo_moo_farm_vertex_0x04001940: + symbol: d_course_moo_moo_farm_vertex_0x04001940 + type: mk64:course_vtx + count: 22 + offset: 0x1618 + +d_course_moo_moo_farm_vertex_0x04001A40: + symbol: d_course_moo_moo_farm_vertex_0x04001A40 + type: mk64:course_vtx + count: 22 + offset: 0x16f8 + +d_course_moo_moo_farm_vertex_0x04001B40: + symbol: d_course_moo_moo_farm_vertex_0x04001B40 + type: mk64:course_vtx + count: 32 + offset: 0x17d8 + +d_course_moo_moo_farm_vertex_0x04001C80: + symbol: d_course_moo_moo_farm_vertex_0x04001C80 + type: mk64:course_vtx + count: 18 + offset: 0x18f0 + +d_course_moo_moo_farm_vertex_0x04001D40: + symbol: d_course_moo_moo_farm_vertex_0x04001D40 + type: mk64:course_vtx + count: 32 + offset: 0x1998 + +d_course_moo_moo_farm_vertex_0x04001E80: + symbol: d_course_moo_moo_farm_vertex_0x04001E80 + type: mk64:course_vtx + count: 32 + offset: 0x1ab0 + +d_course_moo_moo_farm_vertex_0x04001FC0: + symbol: d_course_moo_moo_farm_vertex_0x04001FC0 + type: mk64:course_vtx + count: 22 + offset: 0x1bc8 + +d_course_moo_moo_farm_vertex_0x040020C0: + symbol: d_course_moo_moo_farm_vertex_0x040020C0 + type: mk64:course_vtx + count: 22 + offset: 0x1ca8 + +d_course_moo_moo_farm_vertex_0x040021C0: + symbol: d_course_moo_moo_farm_vertex_0x040021C0 + type: mk64:course_vtx + count: 18 + offset: 0x1d88 + +d_course_moo_moo_farm_vertex_0x04002280: + symbol: d_course_moo_moo_farm_vertex_0x04002280 + type: mk64:course_vtx + count: 8 + offset: 0x1e30 + +d_course_moo_moo_farm_vertex_0x04002300: + symbol: d_course_moo_moo_farm_vertex_0x04002300 + type: mk64:course_vtx + count: 22 + offset: 0x1ea0 + +d_course_moo_moo_farm_vertex_0x04002400: + symbol: d_course_moo_moo_farm_vertex_0x04002400 + type: mk64:course_vtx + count: 22 + offset: 0x1f80 + +d_course_moo_moo_farm_vertex_0x04002500: + symbol: d_course_moo_moo_farm_vertex_0x04002500 + type: mk64:course_vtx + count: 22 + offset: 0x2060 + +d_course_moo_moo_farm_vertex_0x04002600: + symbol: d_course_moo_moo_farm_vertex_0x04002600 + type: mk64:course_vtx + count: 22 + offset: 0x2140 + +d_course_moo_moo_farm_vertex_0x04002700: + symbol: d_course_moo_moo_farm_vertex_0x04002700 + type: mk64:course_vtx + count: 22 + offset: 0x2220 + +d_course_moo_moo_farm_vertex_0x04002800: + symbol: d_course_moo_moo_farm_vertex_0x04002800 + type: mk64:course_vtx + count: 18 + offset: 0x2300 + +d_course_moo_moo_farm_vertex_0x040028C0: + symbol: d_course_moo_moo_farm_vertex_0x040028C0 + type: mk64:course_vtx + count: 22 + offset: 0x23a8 + +d_course_moo_moo_farm_vertex_0x040029C0: + symbol: d_course_moo_moo_farm_vertex_0x040029C0 + type: mk64:course_vtx + count: 22 + offset: 0x2488 + +d_course_moo_moo_farm_vertex_0x04002AC0: + symbol: d_course_moo_moo_farm_vertex_0x04002AC0 + type: mk64:course_vtx + count: 18 + offset: 0x2568 + +d_course_moo_moo_farm_vertex_0x04002B80: + symbol: d_course_moo_moo_farm_vertex_0x04002B80 + type: mk64:course_vtx + count: 50 + offset: 0x2610 + +d_course_moo_moo_farm_vertex_0x04002D80: + symbol: d_course_moo_moo_farm_vertex_0x04002D80 + type: mk64:course_vtx + count: 36 + offset: 0x27d0 + +d_course_moo_moo_farm_vertex_0x04002F00: + symbol: d_course_moo_moo_farm_vertex_0x04002F00 + type: mk64:course_vtx + count: 48 + offset: 0x2920 + +d_course_moo_moo_farm_vertex_0x040030E0: + symbol: d_course_moo_moo_farm_vertex_0x040030E0 + type: mk64:course_vtx + count: 20 + offset: 0x2ac4 + +d_course_moo_moo_farm_vertex_0x040031C0: + symbol: d_course_moo_moo_farm_vertex_0x040031C0 + type: mk64:course_vtx + count: 8 + offset: 0x2b88 + +d_course_moo_moo_farm_vertex_0x04003240: + symbol: d_course_moo_moo_farm_vertex_0x04003240 + type: mk64:course_vtx + count: 4 + offset: 0x2bf8 + +d_course_moo_moo_farm_vertex_0x04003280: + symbol: d_course_moo_moo_farm_vertex_0x04003280 + type: mk64:course_vtx + count: 4 + offset: 0x2c30 + +d_course_moo_moo_farm_vertex_0x040032C0: + symbol: d_course_moo_moo_farm_vertex_0x040032C0 + type: mk64:course_vtx + count: 7 + offset: 0x2c68 + +d_course_moo_moo_farm_vertex_0x04003330: + symbol: d_course_moo_moo_farm_vertex_0x04003330 + type: mk64:course_vtx + count: 8 + offset: 0x2cca + +d_course_moo_moo_farm_vertex_0x040033B0: + symbol: d_course_moo_moo_farm_vertex_0x040033B0 + type: mk64:course_vtx + count: 8 + offset: 0x2d3a + +d_course_moo_moo_farm_vertex_0x04003430: + symbol: d_course_moo_moo_farm_vertex_0x04003430 + type: mk64:course_vtx + count: 8 + offset: 0x2daa + +d_course_moo_moo_farm_vertex_0x040034B0: + symbol: d_course_moo_moo_farm_vertex_0x040034B0 + type: mk64:course_vtx + count: 8 + offset: 0x2e1a + +d_course_moo_moo_farm_vertex_0x04003530: + symbol: d_course_moo_moo_farm_vertex_0x04003530 + type: mk64:course_vtx + count: 4 + offset: 0x2e8a + +d_course_moo_moo_farm_vertex_0x04003570: + symbol: d_course_moo_moo_farm_vertex_0x04003570 + type: mk64:course_vtx + count: 4 + offset: 0x2ec2 + +d_course_moo_moo_farm_vertex_0x040035B0: + symbol: d_course_moo_moo_farm_vertex_0x040035B0 + type: mk64:course_vtx + count: 7 + offset: 0x2efa + +d_course_moo_moo_farm_vertex_0x04003620: + symbol: d_course_moo_moo_farm_vertex_0x04003620 + type: mk64:course_vtx + count: 8 + offset: 0x2f5c + +d_course_moo_moo_farm_vertex_0x040036A0: + symbol: d_course_moo_moo_farm_vertex_0x040036A0 + type: mk64:course_vtx + count: 40 + offset: 0x2fcc + +d_course_moo_moo_farm_vertex_0x04003860: + symbol: d_course_moo_moo_farm_vertex_0x04003860 + type: mk64:course_vtx + count: 41 + offset: 0x3154 + +d_course_moo_moo_farm_vertex_0x04003A30: + symbol: d_course_moo_moo_farm_vertex_0x04003A30 + type: mk64:course_vtx + count: 40 + offset: 0x32ea + +d_course_moo_moo_farm_vertex_0x04003BF0: + symbol: d_course_moo_moo_farm_vertex_0x04003BF0 + type: mk64:course_vtx + count: 48 + offset: 0x3472 + +d_course_moo_moo_farm_vertex_0x04003DD0: + symbol: d_course_moo_moo_farm_vertex_0x04003DD0 + type: mk64:course_vtx + count: 40 + offset: 0x3616 + +d_course_moo_moo_farm_vertex_0x04003F90: + symbol: d_course_moo_moo_farm_vertex_0x04003F90 + type: mk64:course_vtx + count: 50 + offset: 0x379e + +d_course_moo_moo_farm_vertex_0x04004190: + symbol: d_course_moo_moo_farm_vertex_0x04004190 + type: mk64:course_vtx + count: 32 + offset: 0x395e + +d_course_moo_moo_farm_vertex_0x040042D0: + symbol: d_course_moo_moo_farm_vertex_0x040042D0 + type: mk64:course_vtx + count: 50 + offset: 0x3a76 + +d_course_moo_moo_farm_vertex_0x040044D0: + symbol: d_course_moo_moo_farm_vertex_0x040044D0 + type: mk64:course_vtx + count: 24 + offset: 0x3c36 + +d_course_moo_moo_farm_vertex_0x040045F0: + symbol: d_course_moo_moo_farm_vertex_0x040045F0 + type: mk64:course_vtx + count: 38 + offset: 0x3d32 + +d_course_moo_moo_farm_vertex_0x04004790: + symbol: d_course_moo_moo_farm_vertex_0x04004790 + type: mk64:course_vtx + count: 50 + offset: 0x3e9e + +d_course_moo_moo_farm_vertex_0x04004990: + symbol: d_course_moo_moo_farm_vertex_0x04004990 + type: mk64:course_vtx + count: 3 + offset: 0x405e + +d_course_moo_moo_farm_vertex_0x040049C0: + symbol: d_course_moo_moo_farm_vertex_0x040049C0 + type: mk64:course_vtx + count: 48 + offset: 0x4088 + +d_course_moo_moo_farm_vertex_0x04004BA0: + symbol: d_course_moo_moo_farm_vertex_0x04004BA0 + type: mk64:course_vtx + count: 5 + offset: 0x422c + +d_course_moo_moo_farm_vertex_0x04004BF0: + symbol: d_course_moo_moo_farm_vertex_0x04004BF0 + type: mk64:course_vtx + count: 41 + offset: 0x4272 + +d_course_moo_moo_farm_vertex_0x04004DC0: + symbol: d_course_moo_moo_farm_vertex_0x04004DC0 + type: mk64:course_vtx + count: 40 + offset: 0x4408 + +d_course_moo_moo_farm_vertex_0x04004F80: + symbol: d_course_moo_moo_farm_vertex_0x04004F80 + type: mk64:course_vtx + count: 50 + offset: 0x4590 + +d_course_moo_moo_farm_vertex_0x04005180: + symbol: d_course_moo_moo_farm_vertex_0x04005180 + type: mk64:course_vtx + count: 18 + offset: 0x4750 + +d_course_moo_moo_farm_vertex_0x04005240: + symbol: d_course_moo_moo_farm_vertex_0x04005240 + type: mk64:course_vtx + count: 50 + offset: 0x47f8 + +d_course_moo_moo_farm_vertex_0x04005440: + symbol: d_course_moo_moo_farm_vertex_0x04005440 + type: mk64:course_vtx + count: 9 + offset: 0x49b8 + +d_course_moo_moo_farm_vertex_0x040054D0: + symbol: d_course_moo_moo_farm_vertex_0x040054D0 + type: mk64:course_vtx + count: 50 + offset: 0x4a36 + +d_course_moo_moo_farm_vertex_0x040056D0: + symbol: d_course_moo_moo_farm_vertex_0x040056D0 + type: mk64:course_vtx + count: 20 + offset: 0x4bf6 + +d_course_moo_moo_farm_vertex_0x040057B0: + symbol: d_course_moo_moo_farm_vertex_0x040057B0 + type: mk64:course_vtx + count: 48 + offset: 0x4cba + +d_course_moo_moo_farm_vertex_0x04005990: + symbol: d_course_moo_moo_farm_vertex_0x04005990 + type: mk64:course_vtx + count: 21 + offset: 0x4e5e + +d_course_moo_moo_farm_vertex_0x04005A80: + symbol: d_course_moo_moo_farm_vertex_0x04005A80 + type: mk64:course_vtx + count: 49 + offset: 0x4f30 + +d_course_moo_moo_farm_vertex_0x04005C70: + symbol: d_course_moo_moo_farm_vertex_0x04005C70 + type: mk64:course_vtx + count: 38 + offset: 0x50e2 + +d_course_moo_moo_farm_vertex_0x04005E10: + symbol: d_course_moo_moo_farm_vertex_0x04005E10 + type: mk64:course_vtx + count: 48 + offset: 0x524e + +d_course_moo_moo_farm_vertex_0x04005FF0: + symbol: d_course_moo_moo_farm_vertex_0x04005FF0 + type: mk64:course_vtx + count: 20 + offset: 0x53f2 + +d_course_moo_moo_farm_vertex_0x040060D0: + symbol: d_course_moo_moo_farm_vertex_0x040060D0 + type: mk64:course_vtx + count: 25 + offset: 0x54b6 + +d_course_moo_moo_farm_vertex_0x04006200: + symbol: d_course_moo_moo_farm_vertex_0x04006200 + type: mk64:course_vtx + count: 50 + offset: 0x55c0 + +d_course_moo_moo_farm_vertex_0x04006400: + symbol: d_course_moo_moo_farm_vertex_0x04006400 + type: mk64:course_vtx + count: 3 + offset: 0x5780 + +d_course_moo_moo_farm_vertex_0x04006430: + symbol: d_course_moo_moo_farm_vertex_0x04006430 + type: mk64:course_vtx + count: 23 + offset: 0x57aa + +d_course_moo_moo_farm_vertex_0x04006540: + symbol: d_course_moo_moo_farm_vertex_0x04006540 + type: mk64:course_vtx + count: 48 + offset: 0x5898 + +d_course_moo_moo_farm_vertex_0x04006720: + symbol: d_course_moo_moo_farm_vertex_0x04006720 + type: mk64:course_vtx + count: 6 + offset: 0x5a3c + +d_course_moo_moo_farm_vertex_0x04006780: + symbol: d_course_moo_moo_farm_vertex_0x04006780 + type: mk64:course_vtx + count: 50 + offset: 0x5a90 + +d_course_moo_moo_farm_vertex_0x04006980: + symbol: d_course_moo_moo_farm_vertex_0x04006980 + type: mk64:course_vtx + count: 9 + offset: 0x5c50 + +d_course_moo_moo_farm_vertex_0x04006A10: + symbol: d_course_moo_moo_farm_vertex_0x04006A10 + type: mk64:course_vtx + count: 48 + offset: 0x5cce + +d_course_moo_moo_farm_vertex_0x04006BF0: + symbol: d_course_moo_moo_farm_vertex_0x04006BF0 + type: mk64:course_vtx + count: 21 + offset: 0x5e72 + +d_course_moo_moo_farm_vertex_0x04006CE0: + symbol: d_course_moo_moo_farm_vertex_0x04006CE0 + type: mk64:course_vtx + count: 48 + offset: 0x5f44 + +d_course_moo_moo_farm_vertex_0x04006EC0: + symbol: d_course_moo_moo_farm_vertex_0x04006EC0 + type: mk64:course_vtx + count: 24 + offset: 0x60e8 + +d_course_moo_moo_farm_vertex_0x04006FE0: + symbol: d_course_moo_moo_farm_vertex_0x04006FE0 + type: mk64:course_vtx + count: 48 + offset: 0x61e4 + +d_course_moo_moo_farm_vertex_0x040071C0: + symbol: d_course_moo_moo_farm_vertex_0x040071C0 + type: mk64:course_vtx + count: 21 + offset: 0x6388 + +d_course_moo_moo_farm_vertex_0x040072B0: + symbol: d_course_moo_moo_farm_vertex_0x040072B0 + type: mk64:course_vtx + count: 35 + offset: 0x645a + +d_course_moo_moo_farm_vertex_0x04007420: + symbol: d_course_moo_moo_farm_vertex_0x04007420 + type: mk64:course_vtx + count: 22 + offset: 0x659c + +d_course_moo_moo_farm_vertex_0x04007520: + symbol: d_course_moo_moo_farm_vertex_0x04007520 + type: mk64:course_vtx + count: 50 + offset: 0x667c + +d_course_moo_moo_farm_vertex_0x04007720: + symbol: d_course_moo_moo_farm_vertex_0x04007720 + type: mk64:course_vtx + count: 20 + offset: 0x683c + +d_course_moo_moo_farm_vertex_0x04007800: + symbol: d_course_moo_moo_farm_vertex_0x04007800 + type: mk64:course_vtx + count: 48 + offset: 0x6900 + +d_course_moo_moo_farm_vertex_0x040079E0: + symbol: d_course_moo_moo_farm_vertex_0x040079E0 + type: mk64:course_vtx + count: 33 + offset: 0x6aa4 + +d_course_moo_moo_farm_vertex_0x04007B30: + symbol: d_course_moo_moo_farm_vertex_0x04007B30 + type: mk64:course_vtx + count: 50 + offset: 0x6bca + +d_course_moo_moo_farm_vertex_0x04007D30: + symbol: d_course_moo_moo_farm_vertex_0x04007D30 + type: mk64:course_vtx + count: 48 + offset: 0x6d8a + +d_course_moo_moo_farm_vertex_0x04007F10: + symbol: d_course_moo_moo_farm_vertex_0x04007F10 + type: mk64:course_vtx + count: 36 + offset: 0x6f2e + +d_course_moo_moo_farm_vertex_0x04008090: + symbol: d_course_moo_moo_farm_vertex_0x04008090 + type: mk64:course_vtx + count: 49 + offset: 0x707e + +d_course_moo_moo_farm_vertex_0x04008280: + symbol: d_course_moo_moo_farm_vertex_0x04008280 + type: mk64:course_vtx + count: 6 + offset: 0x7230 + +d_course_moo_moo_farm_vertex_0x040082E0: + symbol: d_course_moo_moo_farm_vertex_0x040082E0 + type: mk64:course_vtx + count: 50 + offset: 0x7284 + +d_course_moo_moo_farm_vertex_0x040084E0: + symbol: d_course_moo_moo_farm_vertex_0x040084E0 + type: mk64:course_vtx + count: 24 + offset: 0x7444 + +d_course_moo_moo_farm_vertex_0x04008600: + symbol: d_course_moo_moo_farm_vertex_0x04008600 + type: mk64:course_vtx + count: 50 + offset: 0x7540 + +d_course_moo_moo_farm_vertex_0x04008800: + symbol: d_course_moo_moo_farm_vertex_0x04008800 + type: mk64:course_vtx + count: 17 + offset: 0x7700 + +d_course_moo_moo_farm_vertex_0x040088B0: + symbol: d_course_moo_moo_farm_vertex_0x040088B0 + type: mk64:course_vtx + count: 50 + offset: 0x779a + +d_course_moo_moo_farm_vertex_0x04008AB0: + symbol: d_course_moo_moo_farm_vertex_0x04008AB0 + type: mk64:course_vtx + count: 35 + offset: 0x795a + +d_course_moo_moo_farm_vertex_0x04008C20: + symbol: d_course_moo_moo_farm_vertex_0x04008C20 + type: mk64:course_vtx + count: 49 + offset: 0x7a9c + +d_course_moo_moo_farm_vertex_0x04008E10: + symbol: d_course_moo_moo_farm_vertex_0x04008E10 + type: mk64:course_vtx + count: 48 + offset: 0x7c4e + +d_course_moo_moo_farm_vertex_0x04008FF0: + symbol: d_course_moo_moo_farm_vertex_0x04008FF0 + type: mk64:course_vtx + count: 6 + offset: 0x7df2 + +d_course_moo_moo_farm_vertex_0x04009050: + symbol: d_course_moo_moo_farm_vertex_0x04009050 + type: mk64:course_vtx + count: 50 + offset: 0x7e46 + +d_course_moo_moo_farm_vertex_0x04009250: + symbol: d_course_moo_moo_farm_vertex_0x04009250 + type: mk64:course_vtx + count: 39 + offset: 0x8006 + +d_course_moo_moo_farm_vertex_0x04009400: + symbol: d_course_moo_moo_farm_vertex_0x04009400 + type: mk64:course_vtx + count: 48 + offset: 0x8180 + +d_course_moo_moo_farm_vertex_0x040095E0: + symbol: d_course_moo_moo_farm_vertex_0x040095E0 + type: mk64:course_vtx + count: 3 + offset: 0x8324 + +d_course_moo_moo_farm_vertex_0x04009610: + symbol: d_course_moo_moo_farm_vertex_0x04009610 + type: mk64:course_vtx + count: 25 + offset: 0x834e + +d_course_moo_moo_farm_vertex_0x04009740: + symbol: d_course_moo_moo_farm_vertex_0x04009740 + type: mk64:course_vtx + count: 36 + offset: 0x8458 + +d_course_moo_moo_farm_vertex_0x040098C0: + symbol: d_course_moo_moo_farm_vertex_0x040098C0 + type: mk64:course_vtx + count: 37 + offset: 0x85a8 + +d_course_moo_moo_farm_vertex_0x04009A50: + symbol: d_course_moo_moo_farm_vertex_0x04009A50 + type: mk64:course_vtx + count: 24 + offset: 0x8706 + +d_course_moo_moo_farm_vertex_0x04009B70: + symbol: d_course_moo_moo_farm_vertex_0x04009B70 + type: mk64:course_vtx + count: 24 + offset: 0x8802 + +d_course_moo_moo_farm_vertex_0x04009C90: + symbol: d_course_moo_moo_farm_vertex_0x04009C90 + type: mk64:course_vtx + count: 48 + offset: 0x88fe + +d_course_moo_moo_farm_vertex_0x04009E70: + symbol: d_course_moo_moo_farm_vertex_0x04009E70 + type: mk64:course_vtx + count: 41 + offset: 0x8aa2 + +d_course_moo_moo_farm_vertex_0x0400A040: + symbol: d_course_moo_moo_farm_vertex_0x0400A040 + type: mk64:course_vtx + count: 33 + offset: 0x8c38 + +d_course_moo_moo_farm_vertex_0x0400A190: + symbol: d_course_moo_moo_farm_vertex_0x0400A190 + type: mk64:course_vtx + count: 48 + offset: 0x8d5e + +d_course_moo_moo_farm_vertex_0x0400A370: + symbol: d_course_moo_moo_farm_vertex_0x0400A370 + type: mk64:course_vtx + count: 35 + offset: 0x8f02 + +d_course_moo_moo_farm_vertex_0x0400A4E0: + symbol: d_course_moo_moo_farm_vertex_0x0400A4E0 + type: mk64:course_vtx + count: 50 + offset: 0x9044 + +d_course_moo_moo_farm_vertex_0x0400A6E0: + symbol: d_course_moo_moo_farm_vertex_0x0400A6E0 + type: mk64:course_vtx + count: 48 + offset: 0x9204 + +d_course_moo_moo_farm_vertex_0x0400A8C0: + symbol: d_course_moo_moo_farm_vertex_0x0400A8C0 + type: mk64:course_vtx + count: 48 + offset: 0x93a8 + +d_course_moo_moo_farm_vertex_0x0400AAA0: + symbol: d_course_moo_moo_farm_vertex_0x0400AAA0 + type: mk64:course_vtx + count: 36 + offset: 0x954c + +d_course_moo_moo_farm_vertex_0x0400AC20: + symbol: d_course_moo_moo_farm_vertex_0x0400AC20 + type: mk64:course_vtx + count: 48 + offset: 0x969c + +d_course_moo_moo_farm_vertex_0x0400AE00: + symbol: d_course_moo_moo_farm_vertex_0x0400AE00 + type: mk64:course_vtx + count: 39 + offset: 0x9840 + +d_course_moo_moo_farm_vertex_0x0400AFB0: + symbol: d_course_moo_moo_farm_vertex_0x0400AFB0 + type: mk64:course_vtx + count: 48 + offset: 0x99ba + +d_course_moo_moo_farm_vertex_0x0400B190: + symbol: d_course_moo_moo_farm_vertex_0x0400B190 + type: mk64:course_vtx + count: 50 + offset: 0x9b5e + +d_course_moo_moo_farm_vertex_0x0400B390: + symbol: d_course_moo_moo_farm_vertex_0x0400B390 + type: mk64:course_vtx + count: 6 + offset: 0x9d1e + +d_course_moo_moo_farm_vertex_0x0400B3F0: + symbol: d_course_moo_moo_farm_vertex_0x0400B3F0 + type: mk64:course_vtx + count: 50 + offset: 0x9d72 + +d_course_moo_moo_farm_vertex_0x0400B5F0: + symbol: d_course_moo_moo_farm_vertex_0x0400B5F0 + type: mk64:course_vtx + count: 48 + offset: 0x9f32 + +d_course_moo_moo_farm_vertex_0x0400B7D0: + symbol: d_course_moo_moo_farm_vertex_0x0400B7D0 + type: mk64:course_vtx + count: 3 + offset: 0xa0d6 + +d_course_moo_moo_farm_vertex_0x0400B800: + symbol: d_course_moo_moo_farm_vertex_0x0400B800 + type: mk64:course_vtx + count: 49 + offset: 0xa100 + +d_course_moo_moo_farm_vertex_0x0400B9F0: + symbol: d_course_moo_moo_farm_vertex_0x0400B9F0 + type: mk64:course_vtx + count: 48 + offset: 0xa2b2 + +d_course_moo_moo_farm_vertex_0x0400BBD0: + symbol: d_course_moo_moo_farm_vertex_0x0400BBD0 + type: mk64:course_vtx + count: 3 + offset: 0xa456 + +d_course_moo_moo_farm_vertex_0x0400BC00: + symbol: d_course_moo_moo_farm_vertex_0x0400BC00 + type: mk64:course_vtx + count: 34 + offset: 0xa480 + +d_course_moo_moo_farm_vertex_0x0400BD60: + symbol: d_course_moo_moo_farm_vertex_0x0400BD60 + type: mk64:course_vtx + count: 49 + offset: 0xa5b4 + +d_course_moo_moo_farm_vertex_0x0400BF50: + symbol: d_course_moo_moo_farm_vertex_0x0400BF50 + type: mk64:course_vtx + count: 41 + offset: 0xa766 + +d_course_moo_moo_farm_vertex_0x0400C120: + symbol: d_course_moo_moo_farm_vertex_0x0400C120 + type: mk64:course_vtx + count: 38 + offset: 0xa8fc + +d_course_moo_moo_farm_vertex_0x0400C2C0: + symbol: d_course_moo_moo_farm_vertex_0x0400C2C0 + type: mk64:course_vtx + count: 36 + offset: 0xaa68 + +d_course_moo_moo_farm_vertex_0x0400C440: + symbol: d_course_moo_moo_farm_vertex_0x0400C440 + type: mk64:course_vtx + count: 24 + offset: 0xabb8 + +d_course_moo_moo_farm_vertex_0x0400C560: + symbol: d_course_moo_moo_farm_vertex_0x0400C560 + type: mk64:course_vtx + count: 48 + offset: 0xacb4 + +d_course_moo_moo_farm_vertex_0x0400C740: + symbol: d_course_moo_moo_farm_vertex_0x0400C740 + type: mk64:course_vtx + count: 36 + offset: 0xae58 + +d_course_moo_moo_farm_vertex_0x0400C8C0: + symbol: d_course_moo_moo_farm_vertex_0x0400C8C0 + type: mk64:course_vtx + count: 25 + offset: 0xafa8 + +d_course_moo_moo_farm_vertex_0x0400C9F0: + symbol: d_course_moo_moo_farm_vertex_0x0400C9F0 + type: mk64:course_vtx + count: 34 + offset: 0xb0b2 + +d_course_moo_moo_farm_vertex_0x0400CB50: + symbol: d_course_moo_moo_farm_vertex_0x0400CB50 + type: mk64:course_vtx + count: 36 + offset: 0xb1e6 + +d_course_moo_moo_farm_vertex_0x0400CCD0: + symbol: d_course_moo_moo_farm_vertex_0x0400CCD0 + type: mk64:course_vtx + count: 49 + offset: 0xb336 + +d_course_moo_moo_farm_vertex_0x0400CEC0: + symbol: d_course_moo_moo_farm_vertex_0x0400CEC0 + type: mk64:course_vtx + count: 3 + offset: 0xb4e8 + +d_course_moo_moo_farm_vertex_0x0400CEF0: + symbol: d_course_moo_moo_farm_vertex_0x0400CEF0 + type: mk64:course_vtx + count: 50 + offset: 0xb512 + +d_course_moo_moo_farm_vertex_0x0400D0F0: + symbol: d_course_moo_moo_farm_vertex_0x0400D0F0 + type: mk64:course_vtx + count: 40 + offset: 0xb6d2 + +d_course_moo_moo_farm_vertex_0x0400D2B0: + symbol: d_course_moo_moo_farm_vertex_0x0400D2B0 + type: mk64:course_vtx + count: 41 + offset: 0xb85a + +d_course_moo_moo_farm_vertex_0x0400D480: + symbol: d_course_moo_moo_farm_vertex_0x0400D480 + type: mk64:course_vtx + count: 48 + offset: 0xb9f0 + +d_course_moo_moo_farm_vertex_0x0400D660: + symbol: d_course_moo_moo_farm_vertex_0x0400D660 + type: mk64:course_vtx + count: 6 + offset: 0xbb94 + +d_course_moo_moo_farm_vertex_0x0400D6C0: + symbol: d_course_moo_moo_farm_vertex_0x0400D6C0 + type: mk64:course_vtx + count: 50 + offset: 0xbbe8 + +d_course_moo_moo_farm_vertex_0x0400D8C0: + symbol: d_course_moo_moo_farm_vertex_0x0400D8C0 + type: mk64:course_vtx + count: 9 + offset: 0xbda8 + +d_course_moo_moo_farm_vertex_0x0400D950: + symbol: d_course_moo_moo_farm_vertex_0x0400D950 + type: mk64:course_vtx + count: 49 + offset: 0xbe26 + +d_course_moo_moo_farm_vertex_0x0400DB40: + symbol: d_course_moo_moo_farm_vertex_0x0400DB40 + type: mk64:course_vtx + count: 21 + offset: 0xbfd8 + +d_course_moo_moo_farm_vertex_0x0400DC30: + symbol: d_course_moo_moo_farm_vertex_0x0400DC30 + type: mk64:course_vtx + count: 33 + offset: 0xc0aa + +d_course_moo_moo_farm_vertex_0x0400DD80: + symbol: d_course_moo_moo_farm_vertex_0x0400DD80 + type: mk64:course_vtx + count: 49 + offset: 0xc1d0 + +d_course_moo_moo_farm_vertex_0x0400DF70: + symbol: d_course_moo_moo_farm_vertex_0x0400DF70 + type: mk64:course_vtx + count: 8 + offset: 0xc382 + +d_course_moo_moo_farm_vertex_0x0400DFF0: + symbol: d_course_moo_moo_farm_vertex_0x0400DFF0 + type: mk64:course_vtx + count: 49 + offset: 0xc3f2 + +d_course_moo_moo_farm_vertex_0x0400E1E0: + symbol: d_course_moo_moo_farm_vertex_0x0400E1E0 + type: mk64:course_vtx + count: 6 + offset: 0xc5a4 + +d_course_moo_moo_farm_vertex_0x0400E240: + symbol: d_course_moo_moo_farm_vertex_0x0400E240 + type: mk64:course_vtx + count: 50 + offset: 0xc5f8 + +d_course_moo_moo_farm_vertex_0x0400E440: + symbol: d_course_moo_moo_farm_vertex_0x0400E440 + type: mk64:course_vtx + count: 21 + offset: 0xc7b8 + +d_course_moo_moo_farm_vertex_0x0400E530: + symbol: d_course_moo_moo_farm_vertex_0x0400E530 + type: mk64:course_vtx + count: 50 + offset: 0xc88a + +d_course_moo_moo_farm_vertex_0x0400E730: + symbol: d_course_moo_moo_farm_vertex_0x0400E730 + type: mk64:course_vtx + count: 6 + offset: 0xca4a + +d_course_moo_moo_farm_vertex_0x0400E790: + symbol: d_course_moo_moo_farm_vertex_0x0400E790 + type: mk64:course_vtx + count: 48 + offset: 0xca9e + +d_course_moo_moo_farm_vertex_0x0400E970: + symbol: d_course_moo_moo_farm_vertex_0x0400E970 + type: mk64:course_vtx + count: 32 + offset: 0xcc42 + +d_course_moo_moo_farm_vertex_0x0400EAB0: + symbol: d_course_moo_moo_farm_vertex_0x0400EAB0 + type: mk64:course_vtx + count: 49 + offset: 0xcd5a + +d_course_moo_moo_farm_vertex_0x0400ECA0: + symbol: d_course_moo_moo_farm_vertex_0x0400ECA0 + type: mk64:course_vtx + count: 6 + offset: 0xcf0c + +d_course_moo_moo_farm_vertex_0x0400ED00: + symbol: d_course_moo_moo_farm_vertex_0x0400ED00 + type: mk64:course_vtx + count: 48 + offset: 0xcf60 + +d_course_moo_moo_farm_vertex_0x0400EEE0: + symbol: d_course_moo_moo_farm_vertex_0x0400EEE0 + type: mk64:course_vtx + count: 17 + offset: 0xd104 + +d_course_moo_moo_farm_vertex_0x0400EF90: + symbol: d_course_moo_moo_farm_vertex_0x0400EF90 + type: mk64:course_vtx + count: 50 + offset: 0xd19e + +d_course_moo_moo_farm_vertex_0x0400F190: + symbol: d_course_moo_moo_farm_vertex_0x0400F190 + type: mk64:course_vtx + count: 18 + offset: 0xd35e + +d_course_moo_moo_farm_vertex_0x0400F250: + symbol: d_course_moo_moo_farm_vertex_0x0400F250 + type: mk64:course_vtx + count: 49 + offset: 0xd406 + +d_course_moo_moo_farm_vertex_0x0400F440: + symbol: d_course_moo_moo_farm_vertex_0x0400F440 + type: mk64:course_vtx + count: 36 + offset: 0xd5b8 + +d_course_moo_moo_farm_vertex_0x0400F5C0: + symbol: d_course_moo_moo_farm_vertex_0x0400F5C0 + type: mk64:course_vtx + count: 48 + offset: 0xd708 + +d_course_moo_moo_farm_vertex_0x0400F7A0: + symbol: d_course_moo_moo_farm_vertex_0x0400F7A0 + type: mk64:course_vtx + count: 49 + offset: 0xd8ac + +d_course_moo_moo_farm_vertex_0x0400F990: + symbol: d_course_moo_moo_farm_vertex_0x0400F990 + type: mk64:course_vtx + count: 33 + offset: 0xda5e + +d_course_moo_moo_farm_vertex_0x0400FAE0: + symbol: d_course_moo_moo_farm_vertex_0x0400FAE0 + type: mk64:course_vtx + count: 50 + offset: 0xdb84 + +d_course_moo_moo_farm_vertex_0x0400FCE0: + symbol: d_course_moo_moo_farm_vertex_0x0400FCE0 + type: mk64:course_vtx + count: 48 + offset: 0xdd44 + +d_course_moo_moo_farm_vertex_0x0400FEC0: + symbol: d_course_moo_moo_farm_vertex_0x0400FEC0 + type: mk64:course_vtx + count: 49 + offset: 0xdee8 + +d_course_moo_moo_farm_vertex_0x040100B0: + symbol: d_course_moo_moo_farm_vertex_0x040100B0 + type: mk64:course_vtx + count: 18 + offset: 0xe09a + +d_course_moo_moo_farm_vertex_0x04010170: + symbol: d_course_moo_moo_farm_vertex_0x04010170 + type: mk64:course_vtx + count: 34 + offset: 0xe142 + +d_course_moo_moo_farm_vertex_0x040102D0: + symbol: d_course_moo_moo_farm_vertex_0x040102D0 + type: mk64:course_vtx + count: 49 + offset: 0xe276 + +d_course_moo_moo_farm_vertex_0x040104C0: + symbol: d_course_moo_moo_farm_vertex_0x040104C0 + type: mk64:course_vtx + count: 40 + offset: 0xe428 + +d_course_moo_moo_farm_vertex_0x04010680: + symbol: d_course_moo_moo_farm_vertex_0x04010680 + type: mk64:course_vtx + count: 50 + offset: 0xe5b0 + +d_course_moo_moo_farm_vertex_0x04010880: + symbol: d_course_moo_moo_farm_vertex_0x04010880 + type: mk64:course_vtx + count: 49 + offset: 0xe770 + +d_course_moo_moo_farm_vertex_0x04010A70: + symbol: d_course_moo_moo_farm_vertex_0x04010A70 + type: mk64:course_vtx + count: 48 + offset: 0xe922 + +d_course_moo_moo_farm_vertex_0x04010C50: + symbol: d_course_moo_moo_farm_vertex_0x04010C50 + type: mk64:course_vtx + count: 9 + offset: 0xeac6 + +d_course_moo_moo_farm_vertex_0x04010CE0: + symbol: d_course_moo_moo_farm_vertex_0x04010CE0 + type: mk64:course_vtx + count: 34 + offset: 0xeb44 + +d_course_moo_moo_farm_vertex_0x04010E40: + symbol: d_course_moo_moo_farm_vertex_0x04010E40 + type: mk64:course_vtx + count: 50 + offset: 0xec78 + +d_course_moo_moo_farm_vertex_0x04011040: + symbol: d_course_moo_moo_farm_vertex_0x04011040 + type: mk64:course_vtx + count: 50 + offset: 0xee38 + +d_course_moo_moo_farm_vertex_0x04011240: + symbol: d_course_moo_moo_farm_vertex_0x04011240 + type: mk64:course_vtx + count: 3 + offset: 0xeff8 + +d_course_moo_moo_farm_vertex_0x04011270: + symbol: d_course_moo_moo_farm_vertex_0x04011270 + type: mk64:course_vtx + count: 35 + offset: 0xf022 + +d_course_moo_moo_farm_vertex_0x040113E0: + symbol: d_course_moo_moo_farm_vertex_0x040113E0 + type: mk64:course_vtx + count: 49 + offset: 0xf164 + +d_course_moo_moo_farm_vertex_0x040115D0: + symbol: d_course_moo_moo_farm_vertex_0x040115D0 + type: mk64:course_vtx + count: 33 + offset: 0xf316 + +d_course_moo_moo_farm_vertex_0x04011720: + symbol: d_course_moo_moo_farm_vertex_0x04011720 + type: mk64:course_vtx + count: 40 + offset: 0xf43c + +d_course_moo_moo_farm_vertex_0x040118E0: + symbol: d_course_moo_moo_farm_vertex_0x040118E0 + type: mk64:course_vtx + count: 24 + offset: 0xf5c4 + +d_course_moo_moo_farm_vertex_0x04011A00: + symbol: d_course_moo_moo_farm_vertex_0x04011A00 + type: mk64:course_vtx + count: 41 + offset: 0xf6c0 + +d_course_moo_moo_farm_vertex_0x04011BD0: + symbol: d_course_moo_moo_farm_vertex_0x04011BD0 + type: mk64:course_vtx + count: 50 + offset: 0xf856 + +d_course_moo_moo_farm_vertex_0x04011DD0: + symbol: d_course_moo_moo_farm_vertex_0x04011DD0 + type: mk64:course_vtx + count: 16 + offset: 0xfa16 + +d_course_moo_moo_farm_vertex_0x04011E70: + symbol: d_course_moo_moo_farm_vertex_0x04011E70 + type: mk64:course_vtx + count: 50 + offset: 0xfaa2 + +d_course_moo_moo_farm_vertex_0x04012070: + symbol: d_course_moo_moo_farm_vertex_0x04012070 + type: mk64:course_vtx + count: 50 + offset: 0xfc62 + +d_course_moo_moo_farm_vertex_0x04012270: + symbol: d_course_moo_moo_farm_vertex_0x04012270 + type: mk64:course_vtx + count: 17 + offset: 0xfe22 + +d_course_moo_moo_farm_vertex_0x04012320: + symbol: d_course_moo_moo_farm_vertex_0x04012320 + type: mk64:course_vtx + count: 50 + offset: 0xfebc + +d_course_moo_moo_farm_vertex_0x04012520: + symbol: d_course_moo_moo_farm_vertex_0x04012520 + type: mk64:course_vtx + count: 49 + offset: 0x1007c + +d_course_moo_moo_farm_vertex_0x04012710: + symbol: d_course_moo_moo_farm_vertex_0x04012710 + type: mk64:course_vtx + count: 21 + offset: 0x1022e + +d_course_moo_moo_farm_vertex_0x04012800: + symbol: d_course_moo_moo_farm_vertex_0x04012800 + type: mk64:course_vtx + count: 50 + offset: 0x10300 + +d_course_moo_moo_farm_vertex_0x04012A00: + symbol: d_course_moo_moo_farm_vertex_0x04012A00 + type: mk64:course_vtx + count: 50 + offset: 0x104c0 + +d_course_moo_moo_farm_vertex_0x04012C00: + symbol: d_course_moo_moo_farm_vertex_0x04012C00 + type: mk64:course_vtx + count: 19 + offset: 0x10680 + +d_course_moo_moo_farm_vertex_0x04012CD0: + symbol: d_course_moo_moo_farm_vertex_0x04012CD0 + type: mk64:course_vtx + count: 50 + offset: 0x10736 + +d_course_moo_moo_farm_vertex_0x04012ED0: + symbol: d_course_moo_moo_farm_vertex_0x04012ED0 + type: mk64:course_vtx + count: 50 + offset: 0x108f6 + +d_course_moo_moo_farm_vertex_0x040130D0: + symbol: d_course_moo_moo_farm_vertex_0x040130D0 + type: mk64:course_vtx + count: 21 + offset: 0x10ab6 + +d_course_moo_moo_farm_vertex_0x040131C0: + symbol: d_course_moo_moo_farm_vertex_0x040131C0 + type: mk64:course_vtx + count: 50 + offset: 0x10b88 + +d_course_moo_moo_farm_vertex_0x040133C0: + symbol: d_course_moo_moo_farm_vertex_0x040133C0 + type: mk64:course_vtx + count: 3 + offset: 0x10d48 + +d_course_moo_moo_farm_vertex_0x040133F0: + symbol: d_course_moo_moo_farm_vertex_0x040133F0 + type: mk64:course_vtx + count: 49 + offset: 0x10d72 + +d_course_moo_moo_farm_vertex_0x040135E0: + symbol: d_course_moo_moo_farm_vertex_0x040135E0 + type: mk64:course_vtx + count: 21 + offset: 0x10f24 + +d_course_moo_moo_farm_vertex_0x040136D0: + symbol: d_course_moo_moo_farm_vertex_0x040136D0 + type: mk64:course_vtx + count: 50 + offset: 0x10ff6 + +d_course_moo_moo_farm_vertex_0x040138D0: + symbol: d_course_moo_moo_farm_vertex_0x040138D0 + type: mk64:course_vtx + count: 50 + offset: 0x111b6 + +d_course_moo_moo_farm_vertex_0x04013AD0: + symbol: d_course_moo_moo_farm_vertex_0x04013AD0 + type: mk64:course_vtx + count: 19 + offset: 0x11376 + +d_course_moo_moo_farm_vertex_0x04013BA0: + symbol: d_course_moo_moo_farm_vertex_0x04013BA0 + type: mk64:course_vtx + count: 50 + offset: 0x1142c + +d_course_moo_moo_farm_vertex_0x04013DA0: + symbol: d_course_moo_moo_farm_vertex_0x04013DA0 + type: mk64:course_vtx + count: 8 + offset: 0x115ec + +d_course_moo_moo_farm_vertex_0x04013E20: + symbol: d_course_moo_moo_farm_vertex_0x04013E20 + type: mk64:course_vtx + count: 8 + offset: 0x1165c + +d_course_moo_moo_farm_vertex_0x04013EA0: + symbol: d_course_moo_moo_farm_vertex_0x04013EA0 + type: mk64:course_vtx + count: 49 + offset: 0x116cc + +d_course_moo_moo_farm_vertex_0x04014090: + symbol: d_course_moo_moo_farm_vertex_0x04014090 + type: mk64:course_vtx + count: 3 + offset: 0x1187e + +d_course_moo_moo_farm_vertex_0x040140C0: + symbol: d_course_moo_moo_farm_vertex_0x040140C0 + type: mk64:course_vtx + count: 36 + offset: 0x118a8 + +d_course_moo_moo_farm_vertex_0x04014240: + symbol: d_course_moo_moo_farm_vertex_0x04014240 + type: mk64:course_vtx + count: 49 + offset: 0x119f8 + +d_course_moo_moo_farm_vertex_0x04014430: + symbol: d_course_moo_moo_farm_vertex_0x04014430 + type: mk64:course_vtx + count: 38 + offset: 0x11baa + +d_course_moo_moo_farm_vertex_0x040145D0: + symbol: d_course_moo_moo_farm_vertex_0x040145D0 + type: mk64:course_vtx + count: 50 + offset: 0x11d16 + +d_course_moo_moo_farm_vertex_0x040147D0: + symbol: d_course_moo_moo_farm_vertex_0x040147D0 + type: mk64:course_vtx + count: 8 + offset: 0x11ed6 + +d_course_moo_moo_farm_vertex_0x04014850: + symbol: d_course_moo_moo_farm_vertex_0x04014850 + type: mk64:course_vtx + count: 49 + offset: 0x11f46 + +d_course_moo_moo_farm_vertex_0x04014A40: + symbol: d_course_moo_moo_farm_vertex_0x04014A40 + type: mk64:course_vtx + count: 35 + offset: 0x120f8 + +d_course_moo_moo_farm_vertex_0x04014BB0: + symbol: d_course_moo_moo_farm_vertex_0x04014BB0 + type: mk64:course_vtx + count: 50 + offset: 0x1223a + +d_course_moo_moo_farm_vertex_0x04014DB0: + symbol: d_course_moo_moo_farm_vertex_0x04014DB0 + type: mk64:course_vtx + count: 8 + offset: 0x123fa + +d_course_moo_moo_farm_vertex_0x04014E30: + symbol: d_course_moo_moo_farm_vertex_0x04014E30 + type: mk64:course_vtx + count: 49 + offset: 0x1246a + +d_course_moo_moo_farm_vertex_0x04015020: + symbol: d_course_moo_moo_farm_vertex_0x04015020 + type: mk64:course_vtx + count: 21 + offset: 0x1261c + +d_course_moo_moo_farm_vertex_0x04015110: + symbol: d_course_moo_moo_farm_vertex_0x04015110 + type: mk64:course_vtx + count: 50 + offset: 0x126ee + +d_course_moo_moo_farm_vertex_0x04015310: + symbol: d_course_moo_moo_farm_vertex_0x04015310 + type: mk64:course_vtx + count: 50 + offset: 0x128ae + +d_course_moo_moo_farm_vertex_0x04015510: + symbol: d_course_moo_moo_farm_vertex_0x04015510 + type: mk64:course_vtx + count: 20 + offset: 0x12a6e + +d_course_moo_moo_farm_vertex_0x040155F0: + symbol: d_course_moo_moo_farm_vertex_0x040155F0 + type: mk64:course_vtx + count: 50 + offset: 0x12b32 + +d_course_moo_moo_farm_vertex_0x040157F0: + symbol: d_course_moo_moo_farm_vertex_0x040157F0 + type: mk64:course_vtx + count: 3 + offset: 0x12cf2 + +d_course_moo_moo_farm_vertex_0x04015820: + symbol: d_course_moo_moo_farm_vertex_0x04015820 + type: mk64:course_vtx + count: 4 + offset: 0x12d1c + +d_course_moo_moo_farm_vertex_0x04015860: + symbol: d_course_moo_moo_farm_vertex_0x04015860 + type: mk64:course_vtx + count: 4 + offset: 0x12d54 + +d_course_moo_moo_farm_vertex_0x040158A0: + symbol: d_course_moo_moo_farm_vertex_0x040158A0 + type: mk64:course_vtx + count: 49 + offset: 0x12d8c + +d_course_moo_moo_farm_vertex_0x04015A90: + symbol: d_course_moo_moo_farm_vertex_0x04015A90 + type: mk64:course_vtx + count: 48 + offset: 0x12f3e + +d_course_moo_moo_farm_vertex_0x04015C70: + symbol: d_course_moo_moo_farm_vertex_0x04015C70 + type: mk64:course_vtx + count: 9 + offset: 0x130e2 + +d_course_moo_moo_farm_vertex_0x04015D00: + symbol: d_course_moo_moo_farm_vertex_0x04015D00 + type: mk64:course_vtx + count: 50 + offset: 0x13160 + +d_course_moo_moo_farm_vertex_0x04015F00: + symbol: d_course_moo_moo_farm_vertex_0x04015F00 + type: mk64:course_vtx + count: 48 + offset: 0x13320 + +d_course_moo_moo_farm_vertex_0x040160E0: + symbol: d_course_moo_moo_farm_vertex_0x040160E0 + type: mk64:course_vtx + count: 50 + offset: 0x134c4 + +d_course_moo_moo_farm_vertex_0x040162E0: + symbol: d_course_moo_moo_farm_vertex_0x040162E0 + type: mk64:course_vtx + count: 6 + offset: 0x13684 + +d_course_moo_moo_farm_vertex_0x04016340: + symbol: d_course_moo_moo_farm_vertex_0x04016340 + type: mk64:course_vtx + count: 50 + offset: 0x136d8 + +d_course_moo_moo_farm_vertex_0x04016540: + symbol: d_course_moo_moo_farm_vertex_0x04016540 + type: mk64:course_vtx + count: 48 + offset: 0x13898 + +d_course_moo_moo_farm_vertex_0x04016720: + symbol: d_course_moo_moo_farm_vertex_0x04016720 + type: mk64:course_vtx + count: 35 + offset: 0x13a3c + +d_course_moo_moo_farm_vertex_0x04016890: + symbol: d_course_moo_moo_farm_vertex_0x04016890 + type: mk64:course_vtx + count: 50 + offset: 0x13b7e + +d_course_moo_moo_farm_vertex_0x04016A90: + symbol: d_course_moo_moo_farm_vertex_0x04016A90 + type: mk64:course_vtx + count: 50 + offset: 0x13d3e + +d_course_moo_moo_farm_vertex_0x04016C90: + symbol: d_course_moo_moo_farm_vertex_0x04016C90 + type: mk64:course_vtx + count: 19 + offset: 0x13efe + +d_course_moo_moo_farm_vertex_0x04016D60: + symbol: d_course_moo_moo_farm_vertex_0x04016D60 + type: mk64:course_vtx + count: 50 + offset: 0x13fb4 + +d_course_moo_moo_farm_vertex_0x04016F60: + symbol: d_course_moo_moo_farm_vertex_0x04016F60 + type: mk64:course_vtx + count: 50 + offset: 0x14174 + +d_course_moo_moo_farm_vertex_0x04017160: + symbol: d_course_moo_moo_farm_vertex_0x04017160 + type: mk64:course_vtx + count: 49 + offset: 0x14334 + +d_course_moo_moo_farm_vertex_0x04017350: + symbol: d_course_moo_moo_farm_vertex_0x04017350 + type: mk64:course_vtx + count: 4 + offset: 0x144e6 + +d_course_moo_moo_farm_vertex_0x04017390: + symbol: d_course_moo_moo_farm_vertex_0x04017390 + type: mk64:course_vtx + count: 50 + offset: 0x1451e + +d_course_moo_moo_farm_vertex_0x04017590: + symbol: d_course_moo_moo_farm_vertex_0x04017590 + type: mk64:course_vtx + count: 8 + offset: 0x146de + +d_course_moo_moo_farm_vertex_0x04017610: + symbol: d_course_moo_moo_farm_vertex_0x04017610 + type: mk64:course_vtx + count: 50 + offset: 0x1474e + +d_course_moo_moo_farm_vertex_0x04017810: + symbol: d_course_moo_moo_farm_vertex_0x04017810 + type: mk64:course_vtx + count: 49 + offset: 0x1490e + +d_course_moo_moo_farm_vertex_0x04017A00: + symbol: d_course_moo_moo_farm_vertex_0x04017A00 + type: mk64:course_vtx + count: 3 + offset: 0x14ac0 + +d_course_moo_moo_farm_vertex_0x04017A30: + symbol: d_course_moo_moo_farm_vertex_0x04017A30 + type: mk64:course_vtx + count: 50 + offset: 0x14aea + +d_course_moo_moo_farm_vertex_0x04017C30: + symbol: d_course_moo_moo_farm_vertex_0x04017C30 + type: mk64:course_vtx + count: 4 + offset: 0x14caa + +d_course_moo_moo_farm_vertex_0x04017C70: + symbol: d_course_moo_moo_farm_vertex_0x04017C70 + type: mk64:course_vtx + count: 50 + offset: 0x14ce2 + +d_course_moo_moo_farm_vertex_0x04017E70: + symbol: d_course_moo_moo_farm_vertex_0x04017E70 + type: mk64:course_vtx + count: 21 + offset: 0x14ea2 + +d_course_moo_moo_farm_vertex_0x04017F60: + symbol: d_course_moo_moo_farm_vertex_0x04017F60 + type: mk64:course_vtx + count: 50 + offset: 0x14f74 + +d_course_moo_moo_farm_vertex_0x04018160: + symbol: d_course_moo_moo_farm_vertex_0x04018160 + type: mk64:course_vtx + count: 50 + offset: 0x15134 + +d_course_moo_moo_farm_vertex_0x04018360: + symbol: d_course_moo_moo_farm_vertex_0x04018360 + type: mk64:course_vtx + count: 21 + offset: 0x152f4 + +d_course_moo_moo_farm_vertex_0x04018450: + symbol: d_course_moo_moo_farm_vertex_0x04018450 + type: mk64:course_vtx + count: 48 + offset: 0x153c6 + +d_course_moo_moo_farm_vertex_0x04018630: + symbol: d_course_moo_moo_farm_vertex_0x04018630 + type: mk64:course_vtx + count: 4 + offset: 0x1556a + +d_course_moo_moo_farm_vertex_0x04018670: + symbol: d_course_moo_moo_farm_vertex_0x04018670 + type: mk64:course_vtx + count: 50 + offset: 0x155a2 + +d_course_moo_moo_farm_vertex_0x04018870: + symbol: d_course_moo_moo_farm_vertex_0x04018870 + type: mk64:course_vtx + count: 20 + offset: 0x15762 + +d_course_moo_moo_farm_vertex_0x04018950: + symbol: d_course_moo_moo_farm_vertex_0x04018950 + type: mk64:course_vtx + count: 50 + offset: 0x15826 + +d_course_moo_moo_farm_vertex_0x04018B50: + symbol: d_course_moo_moo_farm_vertex_0x04018B50 + type: mk64:course_vtx + count: 4 + offset: 0x159e6 + +d_course_moo_moo_farm_vertex_0x04018B90: + symbol: d_course_moo_moo_farm_vertex_0x04018B90 + type: mk64:course_vtx + count: 48 + offset: 0x15a1e + +d_course_moo_moo_farm_vertex_0x04018D70: + symbol: d_course_moo_moo_farm_vertex_0x04018D70 + type: mk64:course_vtx + count: 21 + offset: 0x15bc2 + +d_course_moo_moo_farm_vertex_0x04018E60: + symbol: d_course_moo_moo_farm_vertex_0x04018E60 + type: mk64:course_vtx + count: 50 + offset: 0x15c94 + +d_course_moo_moo_farm_vertex_0x04019060: + symbol: d_course_moo_moo_farm_vertex_0x04019060 + type: mk64:course_vtx + count: 49 + offset: 0x15e54 + +d_course_moo_moo_farm_vertex_0x04019250: + symbol: d_course_moo_moo_farm_vertex_0x04019250 + type: mk64:course_vtx + count: 50 + offset: 0x16006 + +d_course_moo_moo_farm_vertex_0x04019450: + symbol: d_course_moo_moo_farm_vertex_0x04019450 + type: mk64:course_vtx + count: 3 + offset: 0x161c6 + +d_course_moo_moo_farm_vertex_0x04019480: + symbol: d_course_moo_moo_farm_vertex_0x04019480 + type: mk64:course_vtx + count: 50 + offset: 0x161f0 + +d_course_moo_moo_farm_vertex_0x04019680: + symbol: d_course_moo_moo_farm_vertex_0x04019680 + type: mk64:course_vtx + count: 8 + offset: 0x163b0 + +d_course_moo_moo_farm_vertex_0x04019700: + symbol: d_course_moo_moo_farm_vertex_0x04019700 + type: mk64:course_vtx + count: 18 + offset: 0x16420 + +d_course_moo_moo_farm_vertex_0x040197C0: + symbol: d_course_moo_moo_farm_vertex_0x040197C0 + type: mk64:course_vtx + count: 8 + offset: 0x164c8 + +d_course_moo_moo_farm_vertex_0x04019840: + symbol: d_course_moo_moo_farm_vertex_0x04019840 + type: mk64:course_vtx + count: 8 + offset: 0x16538 + +d_course_moo_moo_farm_vertex_0x040198C0: + symbol: d_course_moo_moo_farm_vertex_0x040198C0 + type: mk64:course_vtx + count: 50 + offset: 0x165a8 + +d_course_moo_moo_farm_vertex_0x04019AC0: + symbol: d_course_moo_moo_farm_vertex_0x04019AC0 + type: mk64:course_vtx + count: 50 + offset: 0x16768 + +d_course_moo_moo_farm_vertex_0x04019CC0: + symbol: d_course_moo_moo_farm_vertex_0x04019CC0 + type: mk64:course_vtx + count: 50 + offset: 0x16928 + +d_course_moo_moo_farm_vertex_0x04019EC0: + symbol: d_course_moo_moo_farm_vertex_0x04019EC0 + type: mk64:course_vtx + count: 8 + offset: 0x16ae8 + +d_course_moo_moo_farm_vertex_0x04019F40: + symbol: d_course_moo_moo_farm_vertex_0x04019F40 + type: mk64:course_vtx + count: 40 + offset: 0x16b58 + +d_course_moo_moo_farm_vertex_0x0401A100: + symbol: d_course_moo_moo_farm_vertex_0x0401A100 + type: mk64:course_vtx + count: 40 + offset: 0x16ce0 + +d_course_moo_moo_farm_vertex_0x0401A2C0: + symbol: d_course_moo_moo_farm_vertex_0x0401A2C0 + type: mk64:course_vtx + count: 50 + offset: 0x16e68 + +d_course_moo_moo_farm_vertex_0x0401A4C0: + symbol: d_course_moo_moo_farm_vertex_0x0401A4C0 + type: mk64:course_vtx + count: 36 + offset: 0x17028 + +d_course_moo_moo_farm_vertex_0x0401A640: + symbol: d_course_moo_moo_farm_vertex_0x0401A640 + type: mk64:course_vtx + count: 22 + offset: 0x17178 + +d_course_moo_moo_farm_vertex_0x0401A740: + symbol: d_course_moo_moo_farm_vertex_0x0401A740 + type: mk64:course_vtx + count: 34 + offset: 0x17258 + +d_course_moo_moo_farm_vertex_0x0401A8A0: + symbol: d_course_moo_moo_farm_vertex_0x0401A8A0 + type: mk64:course_vtx + count: 8 + offset: 0x1738c + +d_course_moo_moo_farm_vertex_0x0401A920: + symbol: d_course_moo_moo_farm_vertex_0x0401A920 + type: mk64:course_vtx + count: 22 + offset: 0x173fc + +d_course_moo_moo_farm_vertex_0x0401AA20: + symbol: d_course_moo_moo_farm_vertex_0x0401AA20 + type: mk64:course_vtx + count: 4 + offset: 0x174dc + +d_course_moo_moo_farm_vertex_0x0401AA60: + symbol: d_course_moo_moo_farm_vertex_0x0401AA60 + type: mk64:course_vtx + count: 4 + offset: 0x17514 + +d_course_moo_moo_farm_vertex_0x0401AAA0: + symbol: d_course_moo_moo_farm_vertex_0x0401AAA0 + type: mk64:course_vtx + count: 4 + offset: 0x1754c + +d_course_moo_moo_farm_vertex_0x0401AAE0: + symbol: d_course_moo_moo_farm_vertex_0x0401AAE0 + type: mk64:course_vtx + count: 4 + offset: 0x17584 + +d_course_moo_moo_farm_vertex_0x0401AB20: + symbol: d_course_moo_moo_farm_vertex_0x0401AB20 + type: mk64:course_vtx + count: 22 + offset: 0x175bc + +d_course_moo_moo_farm_vertex_0x0401AC20: + symbol: d_course_moo_moo_farm_vertex_0x0401AC20 + type: mk64:course_vtx + count: 41 + offset: 0x1769c + +d_course_moo_moo_farm_vertex_0x0401ADF0: + symbol: d_course_moo_moo_farm_vertex_0x0401ADF0 + type: mk64:course_vtx + count: 22 + offset: 0x17832 + +d_course_moo_moo_farm_vertex_0x0401AEF0: + symbol: d_course_moo_moo_farm_vertex_0x0401AEF0 + type: mk64:course_vtx + count: 36 + offset: 0x17912 + +d_course_moo_moo_farm_vertex_0x0401B070: + symbol: d_course_moo_moo_farm_vertex_0x0401B070 + type: mk64:course_vtx + count: 25 + offset: 0x17a62 + +d_course_moo_moo_farm_vertex_0x0401B1A0: + symbol: d_course_moo_moo_farm_vertex_0x0401B1A0 + type: mk64:course_vtx + count: 50 + offset: 0x17b6c + +d_course_moo_moo_farm_vertex_0x0401B3A0: + symbol: d_course_moo_moo_farm_vertex_0x0401B3A0 + type: mk64:course_vtx + count: 32 + offset: 0x17d2c + +d_course_moo_moo_farm_vertex_0x0401B4E0: + symbol: d_course_moo_moo_farm_vertex_0x0401B4E0 + type: mk64:course_vtx + count: 36 + offset: 0x17e44 + +d_course_moo_moo_farm_vertex_0x0401B660: + symbol: d_course_moo_moo_farm_vertex_0x0401B660 + type: mk64:course_vtx + count: 32 + offset: 0x17f94 + +d_course_moo_moo_farm_vertex_0x0401B7A0: + symbol: d_course_moo_moo_farm_vertex_0x0401B7A0 + type: mk64:course_vtx + count: 38 + offset: 0x180ac + +d_course_moo_moo_farm_vertex_0x0401B940: + symbol: d_course_moo_moo_farm_vertex_0x0401B940 + type: mk64:course_vtx + count: 32 + offset: 0x18218 + +d_course_moo_moo_farm_vertex_0x0401BA80: + symbol: d_course_moo_moo_farm_vertex_0x0401BA80 + type: mk64:course_vtx + count: 38 + offset: 0x18330 + +d_course_moo_moo_farm_vertex_0x0401BC20: + symbol: d_course_moo_moo_farm_vertex_0x0401BC20 + type: mk64:course_vtx + count: 35 + offset: 0x1849c + +d_course_moo_moo_farm_vertex_0x0401BD90: + symbol: d_course_moo_moo_farm_vertex_0x0401BD90 + type: mk64:course_vtx + count: 23 + offset: 0x185de + +d_course_moo_moo_farm_vertex_0x0401BEA0: + symbol: d_course_moo_moo_farm_vertex_0x0401BEA0 + type: mk64:course_vtx + count: 23 + offset: 0x186cc + +d_course_moo_moo_farm_vertex_0x0401BFB0: + symbol: d_course_moo_moo_farm_vertex_0x0401BFB0 + type: mk64:course_vtx + count: 8 + offset: 0x187ba + +d_course_moo_moo_farm_vertex_0x0401C030: + symbol: d_course_moo_moo_farm_vertex_0x0401C030 + type: mk64:course_vtx + count: 8 + offset: 0x1882a + +d_course_moo_moo_farm_vertex_0x0401C0B0: + symbol: d_course_moo_moo_farm_vertex_0x0401C0B0 + type: mk64:course_vtx + count: 32 + offset: 0x1889a + +d_course_moo_moo_farm_vertex_0x0401C1F0: + symbol: d_course_moo_moo_farm_vertex_0x0401C1F0 + type: mk64:course_vtx + count: 18 + offset: 0x189b2 + +d_course_moo_moo_farm_vertex_0x0401C2B0: + symbol: d_course_moo_moo_farm_vertex_0x0401C2B0 + type: mk64:course_vtx + count: 37 + offset: 0x18a5a + +d_course_moo_moo_farm_vertex_0x0401C440: + symbol: d_course_moo_moo_farm_vertex_0x0401C440 + type: mk64:course_vtx + count: 23 + offset: 0x18bb8 + +d_course_moo_moo_farm_vertex_0x0401C550: + symbol: d_course_moo_moo_farm_vertex_0x0401C550 + type: mk64:course_vtx + count: 35 + offset: 0x18ca6 + +d_course_moo_moo_farm_vertex_0x0401C6C0: + symbol: d_course_moo_moo_farm_vertex_0x0401C6C0 + type: mk64:course_vtx + count: 23 + offset: 0x18de8 + +d_course_moo_moo_farm_vertex_0x0401C7D0: + symbol: d_course_moo_moo_farm_vertex_0x0401C7D0 + type: mk64:course_vtx + count: 34 + offset: 0x18ed6 + +d_course_moo_moo_farm_vertex_0x0401C930: + symbol: d_course_moo_moo_farm_vertex_0x0401C930 + type: mk64:course_vtx + count: 22 + offset: 0x1900a + +d_course_moo_moo_farm_vertex_0x0401CA30: + symbol: d_course_moo_moo_farm_vertex_0x0401CA30 + type: mk64:course_vtx + count: 48 + offset: 0x190ea + +d_course_moo_moo_farm_vertex_0x0401CC10: + symbol: d_course_moo_moo_farm_vertex_0x0401CC10 + type: mk64:course_vtx + count: 6 + offset: 0x1928e + +d_course_moo_moo_farm_vertex_0x0401CC70: + symbol: d_course_moo_moo_farm_vertex_0x0401CC70 + type: mk64:course_vtx + count: 37 + offset: 0x192e2 + +d_course_moo_moo_farm_vertex_0x0401CE00: + symbol: d_course_moo_moo_farm_vertex_0x0401CE00 + type: mk64:course_vtx + count: 4 + offset: 0x19440 + +d_course_moo_moo_farm_vertex_0x0401CE40: + symbol: d_course_moo_moo_farm_vertex_0x0401CE40 + type: mk64:course_vtx + count: 4 + offset: 0x19478 + +d_course_moo_moo_farm_vertex_0x0401CE80: + symbol: d_course_moo_moo_farm_vertex_0x0401CE80 + type: mk64:course_vtx + count: 48 + offset: 0x194b0 + +d_course_moo_moo_farm_vertex_0x0401D060: + symbol: d_course_moo_moo_farm_vertex_0x0401D060 + type: mk64:course_vtx + count: 34 + offset: 0x19654 + +d_course_moo_moo_farm_vertex_0x0401D1C0: + symbol: d_course_moo_moo_farm_vertex_0x0401D1C0 + type: mk64:course_vtx + count: 48 + offset: 0x19788 + +d_course_moo_moo_farm_vertex_0x0401D3A0: + symbol: d_course_moo_moo_farm_vertex_0x0401D3A0 + type: mk64:course_vtx + count: 50 + offset: 0x1992c + +d_course_moo_moo_farm_vertex_0x0401D5A0: + symbol: d_course_moo_moo_farm_vertex_0x0401D5A0 + type: mk64:course_vtx + count: 6 + offset: 0x19aec + +d_course_moo_moo_farm_vertex_0x0401D600: + symbol: d_course_moo_moo_farm_vertex_0x0401D600 + type: mk64:course_vtx + count: 32 + offset: 0x19b40 + +d_course_moo_moo_farm_vertex_0x0401D740: + symbol: d_course_moo_moo_farm_vertex_0x0401D740 + type: mk64:course_vtx + count: 38 + offset: 0x19c58 + +d_course_moo_moo_farm_vertex_0x0401D8E0: + symbol: d_course_moo_moo_farm_vertex_0x0401D8E0 + type: mk64:course_vtx + count: 32 + offset: 0x19dc4 + +d_course_moo_moo_farm_vertex_0x0401DA20: + symbol: d_course_moo_moo_farm_vertex_0x0401DA20 + type: mk64:course_vtx + count: 48 + offset: 0x19edc + +d_course_moo_moo_farm_vertex_0x0401DC00: + symbol: d_course_moo_moo_farm_vertex_0x0401DC00 + type: mk64:course_vtx + count: 3 + offset: 0x1a080 + +d_course_moo_moo_farm_vertex_0x0401DC30: + symbol: d_course_moo_moo_farm_vertex_0x0401DC30 + type: mk64:course_vtx + count: 37 + offset: 0x1a0aa + +d_course_moo_moo_farm_vertex_0x0401DDC0: + symbol: d_course_moo_moo_farm_vertex_0x0401DDC0 + type: mk64:course_vtx + count: 33 + offset: 0x1a208 + +d_course_moo_moo_farm_vertex_0x0401DF10: + symbol: d_course_moo_moo_farm_vertex_0x0401DF10 + type: mk64:course_vtx + count: 25 + offset: 0x1a32e + +d_course_moo_moo_farm_vertex_0x0401E040: + symbol: d_course_moo_moo_farm_vertex_0x0401E040 + type: mk64:course_vtx + count: 48 + offset: 0x1a438 + +d_course_moo_moo_farm_vertex_0x0401E220: + symbol: d_course_moo_moo_farm_vertex_0x0401E220 + type: mk64:course_vtx + count: 24 + offset: 0x1a5dc + +d_course_moo_moo_farm_vertex_0x0401E340: + symbol: d_course_moo_moo_farm_vertex_0x0401E340 + type: mk64:course_vtx + count: 41 + offset: 0x1a6d8 + +d_course_moo_moo_farm_vertex_0x0401E510: + symbol: d_course_moo_moo_farm_vertex_0x0401E510 + type: mk64:course_vtx + count: 40 + offset: 0x1a86e + +d_course_moo_moo_farm_vertex_0x0401E6D0: + symbol: d_course_moo_moo_farm_vertex_0x0401E6D0 + type: mk64:course_vtx + count: 39 + offset: 0x1a9f6 + +d_course_moo_moo_farm_vertex_0x0401E880: + symbol: d_course_moo_moo_farm_vertex_0x0401E880 + type: mk64:course_vtx + count: 49 + offset: 0x1ab70 + +d_course_moo_moo_farm_vertex_0x0401EA70: + symbol: d_course_moo_moo_farm_vertex_0x0401EA70 + type: mk64:course_vtx + count: 3 + offset: 0x1ad22 + +d_course_moo_moo_farm_vertex_0x0401EAA0: + symbol: d_course_moo_moo_farm_vertex_0x0401EAA0 + type: mk64:course_vtx + count: 38 + offset: 0x1ad4c + +d_course_moo_moo_farm_vertex_0x0401EC40: + symbol: d_course_moo_moo_farm_vertex_0x0401EC40 + type: mk64:course_vtx + count: 41 + offset: 0x1aeb8 + +d_course_moo_moo_farm_vertex_0x0401EE10: + symbol: d_course_moo_moo_farm_vertex_0x0401EE10 + type: mk64:course_vtx + count: 36 + offset: 0x1b04e + +d_course_moo_moo_farm_vertex_0x0401EF90: + symbol: d_course_moo_moo_farm_vertex_0x0401EF90 + type: mk64:course_vtx + count: 33 + offset: 0x1b19e + +d_course_moo_moo_farm_vertex_0x0401F0E0: + symbol: d_course_moo_moo_farm_vertex_0x0401F0E0 + type: mk64:course_vtx + count: 34 + offset: 0x1b2c4 diff --git a/yamls/us/models/tracks/rainbow_road/rainbow_road_data.yml b/yamls/us/models/tracks/rainbow_road/rainbow_road_data.yml new file mode 100644 index 000000000..467fea4f8 --- /dev/null +++ b/yamls/us/models/tracks/rainbow_road/rainbow_road_data.yml @@ -0,0 +1,455 @@ +:config: + segments: + - [0x06, 0x872A00] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/rainbow_road/rainbow_road_data.yml" + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/star_outline"] + - [0x05000800, "textures/other_textures/texture_67A1B8"] + - [0x05001000, "textures/other_textures/checkerboard_black_white"] + - [0x05001800, "textures/other_textures/texture_662A34"] + - [0x05002000, "textures/other_textures/rainbow"] + # Segment 7 + - [0x7000000, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_0"] + - [0x7000308, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_308"] + - [0x7000498, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_498"] + - [0x70005C8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_5C8"] + - [0x7000730, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_730"] + - [0x7000918, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_918"] + - [0x7000A48, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_A48"] + - [0x7000B90, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_B90"] + - [0x7000D88, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_D88"] + - [0x7000EA8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_EA8"] + - [0x7000FF0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_FF0"] + - [0x7001168, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1168"] + - [0x7001318, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1318"] + - [0x7001380, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1380"] + - [0x7001390, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1390"] + - [0x70013A0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_13A0"] + - [0x7001528, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1528"] + - [0x70015F8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_15F8"] + - [0x7001698, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1698"] + - [0x7001758, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1758"] + - [0x7001850, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1850"] + - [0x7001978, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1978"] + - [0x7001A20, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1A20"] + - [0x7001B28, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1B28"] + - [0x7001BC0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1BC0"] + - [0x7001C70, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1C70"] + - [0x7001D30, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1D30"] + - [0x7001E18, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1E18"] + - [0x7001E80, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1E80"] + - [0x7001FB8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1FB8"] + - [0x7001FC8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1FC8"] + - [0x7002068, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2068"] + - [0x7002078, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2078"] + - [0x70020C0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20C0"] + - [0x70020D0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20D0"] + - [0x70020F8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20F8"] + - [0x7002108, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2108"] + # Segment 4 + - [0x4000000, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000000"] + - [0x4000200, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000200"] + - [0x4000400, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000400"] + - [0x4000600, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000600"] + - [0x4000800, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000800"] + - [0x4000a00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000A00"] + - [0x4000c00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000C00"] + - [0x4000e00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000E00"] + - [0x4001000, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001000"] + - [0x4001200, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001200"] + - [0x4001400, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001400"] + - [0x4001500, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001500"] + - [0x4001700, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001700"] + - [0x4001900, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001900"] + - [0x4001b00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001B00"] + - [0x4001d00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001D00"] + - [0x4001f00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001F00"] + - [0x4001f80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001F80"] + - [0x4002180, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002180"] + - [0x4002380, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002380"] + - [0x4002580, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002580"] + - [0x4002780, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002780"] + - [0x4002980, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002980"] + - [0x4002b80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002B80"] + - [0x4002d80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002D80"] + - [0x4002f80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002F80"] + - [0x4003100, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003100"] + - [0x4003300, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003300"] + - [0x4003500, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003500"] + - [0x4003700, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003700"] + - [0x4003900, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003900"] + - [0x4003b00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003B00"] + - [0x4003d00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003D00"] + - [0x4003dc0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003DC0"] + - [0x4003fc0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003FC0"] + - [0x40041c0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040041C0"] + - [0x40043a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040043A0"] + - [0x40045a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040045A0"] + - [0x40047a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040047A0"] + - [0x40049a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040049A0"] + - [0x4004ba0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004BA0"] + - [0x4004da0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004DA0"] + - [0x4004e20, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004E20"] + - [0x4005020, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005020"] + - [0x4005220, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005220"] + - [0x4005420, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005420"] + - [0x4005620, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005620"] + - [0x4005820, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005820"] + - [0x4005a20, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005A20"] + - [0x4005ba0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005BA0"] + - [0x4005da0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005DA0"] + - [0x4005fa0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005FA0"] + - [0x40061a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040061A0"] + - [0x4006320, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006320"] + - [0x4006520, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006520"] + - [0x4006720, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006720"] + - [0x4006920, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006920"] + - [0x4006b20, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006B20"] + - [0x4006ba0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006BA0"] + - [0x4006da0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006DA0"] + - [0x4006fa0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006FA0"] + - [0x40071a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040071A0"] + - [0x40073a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040073A0"] + - [0x40075a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040075A0"] + - [0x40077a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040077A0"] + - [0x40079a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040079A0"] + - [0x4007b80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007B80"] + - [0x4007d80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007D80"] + - [0x4007f80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007F80"] + - [0x4008100, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008100"] + - [0x4008300, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008300"] + - [0x4008500, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008500"] + - [0x4008700, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008700"] + - [0x4008900, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008900"] + - [0x4008a80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008A80"] + - [0x4008c80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008C80"] + - [0x4008e80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008E80"] + - [0x4008f00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008F00"] + - [0x4009100, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009100"] + - [0x4009300, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009300"] + - [0x4009500, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009500"] + - [0x4009700, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009700"] + - [0x4009740, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009740"] + - [0x4009920, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009920"] + - [0x4009b20, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009B20"] + - [0x4009b80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009B80"] + - [0x4009bc0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009BC0"] + - [0x4009da0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009DA0"] + - [0x4009ee0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009EE0"] + - [0x400a0e0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A0E0"] + - [0x400a260, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A260"] + - [0x400a460, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A460"] + - [0x400a640, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A640"] + - [0x400a820, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A820"] + - [0x400a8c0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A8C0"] + - [0x400aaa0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AAA0"] + - [0x400ac60, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AC60"] + - [0x400ae60, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AE60"] + - [0x400b040, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B040"] + - [0x400b080, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B080"] + - [0x400b280, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B280"] + - [0x400b440, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B440"] + - [0x400b640, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B640"] + - [0x400b840, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B840"] + - [0x400b930, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B930"] + - [0x400bb10, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BB10"] + - [0x400bc50, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BC50"] + - [0x400bcf0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BCF0"] + - [0x400bef0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BEF0"] + - [0x400c0f0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400C0F0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_rainbow_road_neon_boo_tlut_list: + range: [0x6800, 0x7000] + mode: APPEND + d_course_rainbow_road_neon_mushroom_tlut_list: + range: [0x5400, 0x5C00] + mode: APPEND + d_course_rainbow_road_neon_mario_tlut_list: + range: [0x5E00, 0x6600] + mode: APPEND + d_course_rainbow_road_static_tluts: + range: [0x7200, 0x7E00] + mode: APPEND + d_course_rainbow_road_static_textures: + range: [0xB000, 0x11000] + mode: APPEND +d_course_rainbow_road_dl_0: + symbol: d_course_rainbow_road_dl_0 + type: gfx + offset: 0x0 +d_course_rainbow_road_dl_80: + symbol: d_course_rainbow_road_dl_80 + type: gfx + offset: 0x80 +d_course_rainbow_road_dl_D8: + symbol: d_course_rainbow_road_dl_D8 + type: gfx + offset: 0xD8 +d_course_rainbow_road_dl_178: + symbol: d_course_rainbow_road_dl_178 + type: gfx + offset: 0x178 +d_course_rainbow_road_dl_210: + symbol: d_course_rainbow_road_dl_210 + type: gfx + offset: 0x210 +d_course_rainbow_road_dl_288: + symbol: d_course_rainbow_road_dl_288 + type: gfx + offset: 0x288 +d_course_rainbow_road_dl_338: + symbol: d_course_rainbow_road_dl_338 + type: gfx + offset: 0x338 +d_course_rainbow_road_dl_3D0: + symbol: d_course_rainbow_road_dl_3D0 + type: gfx + offset: 0x3D0 +d_course_rainbow_road_dl_4A0: + symbol: d_course_rainbow_road_dl_4A0 + type: gfx + offset: 0x4A0 +d_course_rainbow_road_dl_528: + symbol: d_course_rainbow_road_dl_528 + type: gfx + offset: 0x528 +d_course_rainbow_road_dl_5F8: + symbol: d_course_rainbow_road_dl_5F8 + type: gfx + offset: 0x5F8 +d_course_rainbow_road_dl_658: + symbol: d_course_rainbow_road_dl_658 + type: gfx + offset: 0x658 +d_course_rainbow_road_dl_6E0: + symbol: d_course_rainbow_road_dl_6E0 + type: gfx + offset: 0x6E0 +d_course_rainbow_road_dl_730: + symbol: d_course_rainbow_road_dl_730 + type: gfx + offset: 0x730 +d_course_rainbow_road_dl_7A8: + symbol: d_course_rainbow_road_dl_7A8 + type: gfx + offset: 0x7A8 +d_course_rainbow_road_dl_7F8: + symbol: d_course_rainbow_road_dl_7F8 + type: gfx + offset: 0x7F8 +d_course_rainbow_road_dl_880: + symbol: d_course_rainbow_road_dl_880 + type: gfx + offset: 0x880 +d_course_rainbow_road_dl_8E0: + symbol: d_course_rainbow_road_dl_8E0 + type: gfx + offset: 0x8E0 +d_course_rainbow_road_dl_958: + symbol: d_course_rainbow_road_dl_958 + type: gfx + offset: 0x958 +d_course_rainbow_road_dl_9C8: + symbol: d_course_rainbow_road_dl_9C8 + type: gfx + offset: 0x9C8 +d_course_rainbow_road_dl_A70: + symbol: d_course_rainbow_road_dl_A70 + type: gfx + offset: 0xA70 +d_course_rainbow_road_dl_B08: + symbol: d_course_rainbow_road_dl_B08 + type: gfx + offset: 0xB08 +d_course_rainbow_road_dl_B70: + symbol: d_course_rainbow_road_dl_B70 + type: gfx + offset: 0xB70 +d_course_rainbow_road_dl_BF0: + symbol: d_course_rainbow_road_dl_BF0 + type: gfx + offset: 0xBF0 +d_course_rainbow_road_dl_C70: + symbol: d_course_rainbow_road_dl_C70 + type: gfx + offset: 0xC70 +d_course_rainbow_road_dl_D10: + symbol: d_course_rainbow_road_dl_D10 + type: gfx + offset: 0xD10 +d_course_rainbow_road_dl_D80: + symbol: d_course_rainbow_road_dl_D80 + type: gfx + offset: 0xD80 +d_course_rainbow_road_dl_E08: + symbol: d_course_rainbow_road_dl_E08 + type: gfx + offset: 0xE08 +d_course_rainbow_road_dl_E98: + symbol: d_course_rainbow_road_dl_E98 + type: gfx + offset: 0xE98 +d_course_rainbow_road_dl_F50: + symbol: d_course_rainbow_road_dl_F50 + type: gfx + offset: 0xF50 +d_course_rainbow_road_dl_FB0: + symbol: d_course_rainbow_road_dl_FB0 + type: gfx + offset: 0xFB0 +d_course_rainbow_road_dl_1030: + symbol: d_course_rainbow_road_dl_1030 + type: gfx + offset: 0x1030 +d_course_rainbow_road_dl_10A8: + symbol: d_course_rainbow_road_dl_10A8 + type: gfx + offset: 0x10A8 +d_course_rainbow_road_dl_1150: + symbol: d_course_rainbow_road_dl_1150 + type: gfx + offset: 0x1150 +d_course_rainbow_road_dl_1198: + symbol: d_course_rainbow_road_dl_1198 + type: gfx + offset: 0x1198 +d_course_rainbow_road_dl_1228: + symbol: d_course_rainbow_road_dl_1228 + type: gfx + offset: 0x1228 +d_course_rainbow_road_dl_12A0: + symbol: d_course_rainbow_road_dl_12A0 + type: gfx + offset: 0x12A0 +d_course_rainbow_road_dl_1340: + symbol: d_course_rainbow_road_dl_1340 + type: gfx + offset: 0x1340 +d_course_rainbow_road_dl_13F0: + symbol: d_course_rainbow_road_dl_13F0 + type: gfx + offset: 0x13F0 +d_course_rainbow_road_dl_1488: + symbol: d_course_rainbow_road_dl_1488 + type: gfx + offset: 0x1488 +d_course_rainbow_road_dl_14E8: + symbol: d_course_rainbow_road_dl_14E8 + type: gfx + offset: 0x14E8 +d_course_rainbow_road_dl_1530: + symbol: d_course_rainbow_road_dl_1530 + type: gfx + offset: 0x1530 +d_course_rainbow_road_dl_15D0: + symbol: d_course_rainbow_road_dl_15D0 + type: gfx + offset: 0x15D0 +d_course_rainbow_road_dl_1678: + symbol: d_course_rainbow_road_dl_1678 + type: gfx + offset: 0x1678 +d_course_rainbow_road_dl_16C0: + symbol: d_course_rainbow_road_dl_16C0 + type: gfx + offset: 0x16C0 +d_course_rainbow_road_dl_1738: + symbol: d_course_rainbow_road_dl_1738 + type: gfx + offset: 0x1738 +d_course_rainbow_road_dl_17D0: + symbol: d_course_rainbow_road_dl_17D0 + type: gfx + offset: 0x17D0 +d_course_rainbow_road_dl_1878: + symbol: d_course_rainbow_road_dl_1878 + type: gfx + offset: 0x1878 +d_course_rainbow_road_dl_18D0: + symbol: d_course_rainbow_road_dl_18D0 + type: gfx + offset: 0x18D0 +d_course_rainbow_road_dl_1948: + symbol: d_course_rainbow_road_dl_1948 + type: gfx + offset: 0x1948 +d_course_rainbow_road_chomp_lower_jaw_model: + symbol: d_course_rainbow_road_chomp_lower_jaw_model + type: vtx + offset: 0x15028 + count: 24 +d_course_rainbow_road_dl_151A8: + symbol: d_course_rainbow_road_dl_151A8 + type: gfx + offset: 0x151A8 +d_course_rainbow_road_chomp_body_lower_model1: + symbol: d_course_rainbow_road_chomp_body_lower_model1 + type: vtx + offset: 0x15250 + count: 32 +d_course_rainbow_road_chomp_body_lower_model2: + symbol: d_course_rainbow_road_chomp_body_lower_model2 + type: vtx + offset: 0x15450 + count: 11 +d_course_rainbow_road_chomp_body_lower_model3: + symbol: d_course_rainbow_road_chomp_body_lower_model3 + type: vtx + offset: 0x15500 + count: 5 +d_course_rainbow_road_dl_15550: + symbol: d_course_rainbow_road_dl_15550 + type: gfx + offset: 0x15550 +d_course_rainbow_road_chomp_upper_jaw_model: + symbol: d_course_rainbow_road_chomp_upper_jaw_model + type: vtx + offset: 0x15740 + count: 24 +d_course_rainbow_road_dl_158C0: + symbol: d_course_rainbow_road_dl_158C0 + type: gfx + offset: 0x158C0 +d_course_rainbow_road_chomp_body_upper_back_model1: + symbol: d_course_rainbow_road_chomp_body_upper_back_model1 + type: vtx + offset: 0x15968 + count: 32 +d_course_rainbow_road_chomp_body_upper_back_model2: + symbol: d_course_rainbow_road_chomp_body_upper_back_model2 + type: vtx + offset: 0x15B68 + count: 11 +d_course_rainbow_road_chomp_body_upper_back_model3: + symbol: d_course_rainbow_road_chomp_body_upper_back_model3 + type: vtx + offset: 0x15C18 + count: 5 +d_course_rainbow_road_dl_15C68: + symbol: d_course_rainbow_road_dl_15C68 + type: gfx + offset: 0x15C68 +d_course_rainbow_road_chomp_eyes_model: + symbol: d_course_rainbow_road_chomp_eyes_model + type: vtx + offset: 0x15E58 + count: 12 +d_course_rainbow_road_dl_15F18: + symbol: d_course_rainbow_road_dl_15F18 + type: gfx + offset: 0x15F18 +d_course_rainbow_road_dl_16220: + symbol: d_course_rainbow_road_dl_16220 + type: gfx + offset: 0x16220 diff --git a/yamls/us/models/tracks/rainbow_road/rainbow_road_displaylists.yml b/yamls/us/models/tracks/rainbow_road/rainbow_road_displaylists.yml new file mode 100644 index 000000000..c32900b2d --- /dev/null +++ b/yamls/us/models/tracks/rainbow_road/rainbow_road_displaylists.yml @@ -0,0 +1,318 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x9426BC + no_compression: true + segments: + - [0x0F, 0x9426BC] + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/star_outline"] + - [0x05000800, "textures/other_textures/texture_67A1B8"] + - [0x05001000, "textures/other_textures/checkerboard_black_white"] + - [0x05001800, "textures/other_textures/texture_662A34"] + - [0x05002000, "textures/other_textures/rainbow"] + # Segment 7 + - [0x7000000, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_0"] + - [0x7000308, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_308"] + - [0x7000498, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_498"] + - [0x70005C8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_5C8"] + - [0x7000730, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_730"] + - [0x7000918, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_918"] + - [0x7000A48, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_A48"] + - [0x7000B90, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_B90"] + - [0x7000D88, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_D88"] + - [0x7000EA8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_EA8"] + - [0x7000FF0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_FF0"] + - [0x7001168, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1168"] + - [0x7001318, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1318"] + - [0x7001380, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1380"] + - [0x7001390, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1390"] + - [0x70013A0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_13A0"] + - [0x7001528, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1528"] + - [0x70015F8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_15F8"] + - [0x7001698, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1698"] + - [0x7001758, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1758"] + - [0x7001850, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1850"] + - [0x7001978, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1978"] + - [0x7001A20, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1A20"] + - [0x7001B28, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1B28"] + - [0x7001BC0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1BC0"] + - [0x7001C70, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1C70"] + - [0x7001D30, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1D30"] + - [0x7001E18, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1E18"] + - [0x7001E80, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1E80"] + - [0x7001FB8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1FB8"] + - [0x7001FC8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1FC8"] + - [0x7002068, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2068"] + - [0x7002078, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2078"] + - [0x70020C0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20C0"] + - [0x70020D0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20D0"] + - [0x70020F8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20F8"] + - [0x7002108, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2108"] + # Segment 4 + - [0x4000000, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000000"] + - [0x4000200, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000200"] + - [0x4000400, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000400"] + - [0x4000600, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000600"] + - [0x4000800, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000800"] + - [0x4000a00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000A00"] + - [0x4000c00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000C00"] + - [0x4000e00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04000E00"] + - [0x4001000, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001000"] + - [0x4001200, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001200"] + - [0x4001400, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001400"] + - [0x4001500, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001500"] + - [0x4001700, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001700"] + - [0x4001900, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001900"] + - [0x4001b00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001B00"] + - [0x4001d00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001D00"] + - [0x4001f00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001F00"] + - [0x4001f80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04001F80"] + - [0x4002180, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002180"] + - [0x4002380, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002380"] + - [0x4002580, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002580"] + - [0x4002780, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002780"] + - [0x4002980, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002980"] + - [0x4002b80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002B80"] + - [0x4002d80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002D80"] + - [0x4002f80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04002F80"] + - [0x4003100, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003100"] + - [0x4003300, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003300"] + - [0x4003500, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003500"] + - [0x4003700, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003700"] + - [0x4003900, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003900"] + - [0x4003b00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003B00"] + - [0x4003d00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003D00"] + - [0x4003dc0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003DC0"] + - [0x4003fc0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04003FC0"] + - [0x40041c0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040041C0"] + - [0x40043a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040043A0"] + - [0x40045a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040045A0"] + - [0x40047a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040047A0"] + - [0x40049a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040049A0"] + - [0x4004ba0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004BA0"] + - [0x4004da0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004DA0"] + - [0x4004e20, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04004E20"] + - [0x4005020, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005020"] + - [0x4005220, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005220"] + - [0x4005420, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005420"] + - [0x4005620, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005620"] + - [0x4005820, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005820"] + - [0x4005a20, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005A20"] + - [0x4005ba0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005BA0"] + - [0x4005da0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005DA0"] + - [0x4005fa0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04005FA0"] + - [0x40061a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040061A0"] + - [0x4006320, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006320"] + - [0x4006520, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006520"] + - [0x4006720, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006720"] + - [0x4006920, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006920"] + - [0x4006b20, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006B20"] + - [0x4006ba0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006BA0"] + - [0x4006da0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006DA0"] + - [0x4006fa0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04006FA0"] + - [0x40071a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040071A0"] + - [0x40073a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040073A0"] + - [0x40075a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040075A0"] + - [0x40077a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040077A0"] + - [0x40079a0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x040079A0"] + - [0x4007b80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007B80"] + - [0x4007d80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007D80"] + - [0x4007f80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04007F80"] + - [0x4008100, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008100"] + - [0x4008300, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008300"] + - [0x4008500, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008500"] + - [0x4008700, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008700"] + - [0x4008900, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008900"] + - [0x4008a80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008A80"] + - [0x4008c80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008C80"] + - [0x4008e80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008E80"] + - [0x4008f00, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04008F00"] + - [0x4009100, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009100"] + - [0x4009300, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009300"] + - [0x4009500, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009500"] + - [0x4009700, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009700"] + - [0x4009740, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009740"] + - [0x4009920, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009920"] + - [0x4009b20, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009B20"] + - [0x4009b80, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009B80"] + - [0x4009bc0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009BC0"] + - [0x4009da0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009DA0"] + - [0x4009ee0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x04009EE0"] + - [0x400a0e0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A0E0"] + - [0x400a260, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A260"] + - [0x400a460, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A460"] + - [0x400a640, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A640"] + - [0x400a820, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A820"] + - [0x400a8c0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400A8C0"] + - [0x400aaa0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AAA0"] + - [0x400ac60, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AC60"] + - [0x400ae60, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400AE60"] + - [0x400b040, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B040"] + - [0x400b080, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B080"] + - [0x400b280, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B280"] + - [0x400b440, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B440"] + - [0x400b640, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B640"] + - [0x400b840, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B840"] + - [0x400b930, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400B930"] + - [0x400bb10, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BB10"] + - [0x400bc50, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BC50"] + - [0x400bcf0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BCF0"] + - [0x400bef0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400BEF0"] + - [0x400c0f0, "models/tracks/rainbow_road/rainbow_road_vertices/d_course_rainbow_road_vertex_0x0400C0F0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_rainbow_road_packed_dl_0: + symbol: d_course_rainbow_road_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_rainbow_road_packed_dl_308: + symbol: d_course_rainbow_road_packed_dl_308 + type: MK64:PACKED_GFX + offset: 0x1C7 +d_course_rainbow_road_packed_dl_498: + symbol: d_course_rainbow_road_packed_dl_498 + type: MK64:PACKED_GFX + offset: 0x2AD +d_course_rainbow_road_packed_dl_5C8: + symbol: d_course_rainbow_road_packed_dl_5C8 + type: MK64:PACKED_GFX + offset: 0x35B +d_course_rainbow_road_packed_dl_730: + symbol: d_course_rainbow_road_packed_dl_730 + type: MK64:PACKED_GFX + offset: 0x42A +d_course_rainbow_road_packed_dl_918: + symbol: d_course_rainbow_road_packed_dl_918 + type: MK64:PACKED_GFX + offset: 0x545 +d_course_rainbow_road_packed_dl_A48: + symbol: d_course_rainbow_road_packed_dl_A48 + type: MK64:PACKED_GFX + offset: 0x5F3 +d_course_rainbow_road_packed_dl_B90: + symbol: d_course_rainbow_road_packed_dl_B90 + type: MK64:PACKED_GFX + offset: 0x6AE +d_course_rainbow_road_packed_dl_D88: + symbol: d_course_rainbow_road_packed_dl_D88 + type: MK64:PACKED_GFX + offset: 0x7D3 +d_course_rainbow_road_packed_dl_EA8: + symbol: d_course_rainbow_road_packed_dl_EA8 + type: MK64:PACKED_GFX + offset: 0x877 +d_course_rainbow_road_packed_dl_FF0: + symbol: d_course_rainbow_road_packed_dl_FF0 + type: MK64:PACKED_GFX + offset: 0x932 +d_course_rainbow_road_packed_dl_1168: + symbol: d_course_rainbow_road_packed_dl_1168 + type: MK64:PACKED_GFX + offset: 0xA0B +d_course_rainbow_road_packed_dl_1318: + symbol: d_course_rainbow_road_packed_dl_1318 + type: MK64:PACKED_GFX + offset: 0xB05 +d_course_rainbow_road_packed_dl_1380: + symbol: d_course_rainbow_road_packed_dl_1380 + type: MK64:PACKED_GFX + offset: 0xB2A +d_course_rainbow_road_packed_dl_1390: + symbol: d_course_rainbow_road_packed_dl_1390 + type: MK64:PACKED_GFX + offset: 0xB2E +d_course_rainbow_road_packed_dl_13A0: + symbol: d_course_rainbow_road_packed_dl_13A0 + type: MK64:PACKED_GFX + offset: 0xB32 +d_course_rainbow_road_packed_dl_1528: + symbol: d_course_rainbow_road_packed_dl_1528 + type: MK64:PACKED_GFX + offset: 0xC15 +d_course_rainbow_road_packed_dl_15F8: + symbol: d_course_rainbow_road_packed_dl_15F8 + type: MK64:PACKED_GFX + offset: 0xC89 +d_course_rainbow_road_packed_dl_1698: + symbol: d_course_rainbow_road_packed_dl_1698 + type: MK64:PACKED_GFX + offset: 0xCE1 +d_course_rainbow_road_packed_dl_1758: + symbol: d_course_rainbow_road_packed_dl_1758 + type: MK64:PACKED_GFX + offset: 0xD4B +d_course_rainbow_road_packed_dl_1850: + symbol: d_course_rainbow_road_packed_dl_1850 + type: MK64:PACKED_GFX + offset: 0xDD8 +d_course_rainbow_road_packed_dl_1978: + symbol: d_course_rainbow_road_packed_dl_1978 + type: MK64:PACKED_GFX + offset: 0xE41 +d_course_rainbow_road_packed_dl_1A20: + symbol: d_course_rainbow_road_packed_dl_1A20 + type: MK64:PACKED_GFX + offset: 0xE9E +d_course_rainbow_road_packed_dl_1B28: + symbol: d_course_rainbow_road_packed_dl_1B28 + type: MK64:PACKED_GFX + offset: 0xF33 +d_course_rainbow_road_packed_dl_1BC0: + symbol: d_course_rainbow_road_packed_dl_1BC0 + type: MK64:PACKED_GFX + offset: 0xF86 +d_course_rainbow_road_packed_dl_1C70: + symbol: d_course_rainbow_road_packed_dl_1C70 + type: MK64:PACKED_GFX + offset: 0xFE6 +d_course_rainbow_road_packed_dl_1D30: + symbol: d_course_rainbow_road_packed_dl_1D30 + type: MK64:PACKED_GFX + offset: 0x1052 +d_course_rainbow_road_packed_dl_1E18: + symbol: d_course_rainbow_road_packed_dl_1E18 + type: MK64:PACKED_GFX + offset: 0x10D1 +d_course_rainbow_road_packed_dl_1E80: + symbol: d_course_rainbow_road_packed_dl_1E80 + type: MK64:PACKED_GFX + offset: 0x10F6 +d_course_rainbow_road_packed_dl_1FB8: + symbol: d_course_rainbow_road_packed_dl_1FB8 + type: MK64:PACKED_GFX + offset: 0x1169 +d_course_rainbow_road_packed_dl_1FC8: + symbol: d_course_rainbow_road_packed_dl_1FC8 + type: MK64:PACKED_GFX + offset: 0x116D +d_course_rainbow_road_packed_dl_2068: + symbol: d_course_rainbow_road_packed_dl_2068 + type: MK64:PACKED_GFX + offset: 0x11C5 +d_course_rainbow_road_packed_dl_2078: + symbol: d_course_rainbow_road_packed_dl_2078 + type: MK64:PACKED_GFX + offset: 0x11C9 +d_course_rainbow_road_packed_dl_20C0: + symbol: d_course_rainbow_road_packed_dl_20C0 + type: MK64:PACKED_GFX + offset: 0x11EC +d_course_rainbow_road_packed_dl_20D0: + symbol: d_course_rainbow_road_packed_dl_20D0 + type: MK64:PACKED_GFX + offset: 0x11F0 +d_course_rainbow_road_packed_dl_20F8: + symbol: d_course_rainbow_road_packed_dl_20F8 + type: MK64:PACKED_GFX + offset: 0x11FD +d_course_rainbow_road_packed_dl_2108: + symbol: d_course_rainbow_road_packed_dl_2108 + type: MK64:PACKED_GFX + offset: 0x1201 diff --git a/yamls/us/models/tracks/rainbow_road/rainbow_road_vertices.yml b/yamls/us/models/tracks/rainbow_road/rainbow_road_vertices.yml new file mode 100644 index 000000000..349db886a --- /dev/null +++ b/yamls/us/models/tracks/rainbow_road/rainbow_road_vertices.yml @@ -0,0 +1,669 @@ +:config: + segments: + - [0x0F, 0x93CC60] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_rainbow_road_vertex_0x04000000: + symbol: d_course_rainbow_road_vertex_0x04000000 + type: mk64:course_vtx + count: 50 + offset: 0x0 + +d_course_rainbow_road_vertex_0x04000200: + symbol: d_course_rainbow_road_vertex_0x04000200 + type: mk64:course_vtx + count: 50 + offset: 0x1c0 + +d_course_rainbow_road_vertex_0x04000400: + symbol: d_course_rainbow_road_vertex_0x04000400 + type: mk64:course_vtx + count: 50 + offset: 0x380 + +d_course_rainbow_road_vertex_0x04000600: + symbol: d_course_rainbow_road_vertex_0x04000600 + type: mk64:course_vtx + count: 50 + offset: 0x540 + +d_course_rainbow_road_vertex_0x04000800: + symbol: d_course_rainbow_road_vertex_0x04000800 + type: mk64:course_vtx + count: 50 + offset: 0x700 + +d_course_rainbow_road_vertex_0x04000A00: + symbol: d_course_rainbow_road_vertex_0x04000A00 + type: mk64:course_vtx + count: 50 + offset: 0x8c0 + +d_course_rainbow_road_vertex_0x04000C00: + symbol: d_course_rainbow_road_vertex_0x04000C00 + type: mk64:course_vtx + count: 50 + offset: 0xa80 + +d_course_rainbow_road_vertex_0x04000E00: + symbol: d_course_rainbow_road_vertex_0x04000E00 + type: mk64:course_vtx + count: 50 + offset: 0xc40 + +d_course_rainbow_road_vertex_0x04001000: + symbol: d_course_rainbow_road_vertex_0x04001000 + type: mk64:course_vtx + count: 50 + offset: 0xe00 + +d_course_rainbow_road_vertex_0x04001200: + symbol: d_course_rainbow_road_vertex_0x04001200 + type: mk64:course_vtx + count: 50 + offset: 0xfc0 + +d_course_rainbow_road_vertex_0x04001400: + symbol: d_course_rainbow_road_vertex_0x04001400 + type: mk64:course_vtx + count: 22 + offset: 0x1180 + +d_course_rainbow_road_vertex_0x04001500: + symbol: d_course_rainbow_road_vertex_0x04001500 + type: mk64:course_vtx + count: 50 + offset: 0x1260 + +d_course_rainbow_road_vertex_0x04001700: + symbol: d_course_rainbow_road_vertex_0x04001700 + type: mk64:course_vtx + count: 50 + offset: 0x1420 + +d_course_rainbow_road_vertex_0x04001900: + symbol: d_course_rainbow_road_vertex_0x04001900 + type: mk64:course_vtx + count: 50 + offset: 0x15e0 + +d_course_rainbow_road_vertex_0x04001B00: + symbol: d_course_rainbow_road_vertex_0x04001B00 + type: mk64:course_vtx + count: 50 + offset: 0x17a0 + +d_course_rainbow_road_vertex_0x04001D00: + symbol: d_course_rainbow_road_vertex_0x04001D00 + type: mk64:course_vtx + count: 50 + offset: 0x1960 + +d_course_rainbow_road_vertex_0x04001F00: + symbol: d_course_rainbow_road_vertex_0x04001F00 + type: mk64:course_vtx + count: 8 + offset: 0x1b20 + +d_course_rainbow_road_vertex_0x04001F80: + symbol: d_course_rainbow_road_vertex_0x04001F80 + type: mk64:course_vtx + count: 50 + offset: 0x1b90 + +d_course_rainbow_road_vertex_0x04002180: + symbol: d_course_rainbow_road_vertex_0x04002180 + type: mk64:course_vtx + count: 50 + offset: 0x1d50 + +d_course_rainbow_road_vertex_0x04002380: + symbol: d_course_rainbow_road_vertex_0x04002380 + type: mk64:course_vtx + count: 50 + offset: 0x1f10 + +d_course_rainbow_road_vertex_0x04002580: + symbol: d_course_rainbow_road_vertex_0x04002580 + type: mk64:course_vtx + count: 50 + offset: 0x20d0 + +d_course_rainbow_road_vertex_0x04002780: + symbol: d_course_rainbow_road_vertex_0x04002780 + type: mk64:course_vtx + count: 50 + offset: 0x2290 + +d_course_rainbow_road_vertex_0x04002980: + symbol: d_course_rainbow_road_vertex_0x04002980 + type: mk64:course_vtx + count: 50 + offset: 0x2450 + +d_course_rainbow_road_vertex_0x04002B80: + symbol: d_course_rainbow_road_vertex_0x04002B80 + type: mk64:course_vtx + count: 50 + offset: 0x2610 + +d_course_rainbow_road_vertex_0x04002D80: + symbol: d_course_rainbow_road_vertex_0x04002D80 + type: mk64:course_vtx + count: 50 + offset: 0x27d0 + +d_course_rainbow_road_vertex_0x04002F80: + symbol: d_course_rainbow_road_vertex_0x04002F80 + type: mk64:course_vtx + count: 36 + offset: 0x2990 + +d_course_rainbow_road_vertex_0x04003100: + symbol: d_course_rainbow_road_vertex_0x04003100 + type: mk64:course_vtx + count: 50 + offset: 0x2ae0 + +d_course_rainbow_road_vertex_0x04003300: + symbol: d_course_rainbow_road_vertex_0x04003300 + type: mk64:course_vtx + count: 50 + offset: 0x2ca0 + +d_course_rainbow_road_vertex_0x04003500: + symbol: d_course_rainbow_road_vertex_0x04003500 + type: mk64:course_vtx + count: 50 + offset: 0x2e60 + +d_course_rainbow_road_vertex_0x04003700: + symbol: d_course_rainbow_road_vertex_0x04003700 + type: mk64:course_vtx + count: 50 + offset: 0x3020 + +d_course_rainbow_road_vertex_0x04003900: + symbol: d_course_rainbow_road_vertex_0x04003900 + type: mk64:course_vtx + count: 50 + offset: 0x31e0 + +d_course_rainbow_road_vertex_0x04003B00: + symbol: d_course_rainbow_road_vertex_0x04003B00 + type: mk64:course_vtx + count: 50 + offset: 0x33a0 + +d_course_rainbow_road_vertex_0x04003D00: + symbol: d_course_rainbow_road_vertex_0x04003D00 + type: mk64:course_vtx + count: 18 + offset: 0x3560 + +d_course_rainbow_road_vertex_0x04003DC0: + symbol: d_course_rainbow_road_vertex_0x04003DC0 + type: mk64:course_vtx + count: 50 + offset: 0x3608 + +d_course_rainbow_road_vertex_0x04003FC0: + symbol: d_course_rainbow_road_vertex_0x04003FC0 + type: mk64:course_vtx + count: 50 + offset: 0x37c8 + +d_course_rainbow_road_vertex_0x040041C0: + symbol: d_course_rainbow_road_vertex_0x040041C0 + type: mk64:course_vtx + count: 48 + offset: 0x3988 + +d_course_rainbow_road_vertex_0x040043A0: + symbol: d_course_rainbow_road_vertex_0x040043A0 + type: mk64:course_vtx + count: 50 + offset: 0x3b2c + +d_course_rainbow_road_vertex_0x040045A0: + symbol: d_course_rainbow_road_vertex_0x040045A0 + type: mk64:course_vtx + count: 50 + offset: 0x3cec + +d_course_rainbow_road_vertex_0x040047A0: + symbol: d_course_rainbow_road_vertex_0x040047A0 + type: mk64:course_vtx + count: 50 + offset: 0x3eac + +d_course_rainbow_road_vertex_0x040049A0: + symbol: d_course_rainbow_road_vertex_0x040049A0 + type: mk64:course_vtx + count: 50 + offset: 0x406c + +d_course_rainbow_road_vertex_0x04004BA0: + symbol: d_course_rainbow_road_vertex_0x04004BA0 + type: mk64:course_vtx + count: 50 + offset: 0x422c + +d_course_rainbow_road_vertex_0x04004DA0: + symbol: d_course_rainbow_road_vertex_0x04004DA0 + type: mk64:course_vtx + count: 8 + offset: 0x43ec + +d_course_rainbow_road_vertex_0x04004E20: + symbol: d_course_rainbow_road_vertex_0x04004E20 + type: mk64:course_vtx + count: 50 + offset: 0x445c + +d_course_rainbow_road_vertex_0x04005020: + symbol: d_course_rainbow_road_vertex_0x04005020 + type: mk64:course_vtx + count: 50 + offset: 0x461c + +d_course_rainbow_road_vertex_0x04005220: + symbol: d_course_rainbow_road_vertex_0x04005220 + type: mk64:course_vtx + count: 50 + offset: 0x47dc + +d_course_rainbow_road_vertex_0x04005420: + symbol: d_course_rainbow_road_vertex_0x04005420 + type: mk64:course_vtx + count: 50 + offset: 0x499c + +d_course_rainbow_road_vertex_0x04005620: + symbol: d_course_rainbow_road_vertex_0x04005620 + type: mk64:course_vtx + count: 50 + offset: 0x4b5c + +d_course_rainbow_road_vertex_0x04005820: + symbol: d_course_rainbow_road_vertex_0x04005820 + type: mk64:course_vtx + count: 50 + offset: 0x4d1c + +d_course_rainbow_road_vertex_0x04005A20: + symbol: d_course_rainbow_road_vertex_0x04005A20 + type: mk64:course_vtx + count: 36 + offset: 0x4edc + +d_course_rainbow_road_vertex_0x04005BA0: + symbol: d_course_rainbow_road_vertex_0x04005BA0 + type: mk64:course_vtx + count: 50 + offset: 0x502c + +d_course_rainbow_road_vertex_0x04005DA0: + symbol: d_course_rainbow_road_vertex_0x04005DA0 + type: mk64:course_vtx + count: 50 + offset: 0x51ec + +d_course_rainbow_road_vertex_0x04005FA0: + symbol: d_course_rainbow_road_vertex_0x04005FA0 + type: mk64:course_vtx + count: 50 + offset: 0x53ac + +d_course_rainbow_road_vertex_0x040061A0: + symbol: d_course_rainbow_road_vertex_0x040061A0 + type: mk64:course_vtx + count: 36 + offset: 0x556c + +d_course_rainbow_road_vertex_0x04006320: + symbol: d_course_rainbow_road_vertex_0x04006320 + type: mk64:course_vtx + count: 50 + offset: 0x56bc + +d_course_rainbow_road_vertex_0x04006520: + symbol: d_course_rainbow_road_vertex_0x04006520 + type: mk64:course_vtx + count: 50 + offset: 0x587c + +d_course_rainbow_road_vertex_0x04006720: + symbol: d_course_rainbow_road_vertex_0x04006720 + type: mk64:course_vtx + count: 50 + offset: 0x5a3c + +d_course_rainbow_road_vertex_0x04006920: + symbol: d_course_rainbow_road_vertex_0x04006920 + type: mk64:course_vtx + count: 50 + offset: 0x5bfc + +d_course_rainbow_road_vertex_0x04006B20: + symbol: d_course_rainbow_road_vertex_0x04006B20 + type: mk64:course_vtx + count: 8 + offset: 0x5dbc + +d_course_rainbow_road_vertex_0x04006BA0: + symbol: d_course_rainbow_road_vertex_0x04006BA0 + type: mk64:course_vtx + count: 50 + offset: 0x5e2c + +d_course_rainbow_road_vertex_0x04006DA0: + symbol: d_course_rainbow_road_vertex_0x04006DA0 + type: mk64:course_vtx + count: 50 + offset: 0x5fec + +d_course_rainbow_road_vertex_0x04006FA0: + symbol: d_course_rainbow_road_vertex_0x04006FA0 + type: mk64:course_vtx + count: 50 + offset: 0x61ac + +d_course_rainbow_road_vertex_0x040071A0: + symbol: d_course_rainbow_road_vertex_0x040071A0 + type: mk64:course_vtx + count: 50 + offset: 0x636c + +d_course_rainbow_road_vertex_0x040073A0: + symbol: d_course_rainbow_road_vertex_0x040073A0 + type: mk64:course_vtx + count: 50 + offset: 0x652c + +d_course_rainbow_road_vertex_0x040075A0: + symbol: d_course_rainbow_road_vertex_0x040075A0 + type: mk64:course_vtx + count: 50 + offset: 0x66ec + +d_course_rainbow_road_vertex_0x040077A0: + symbol: d_course_rainbow_road_vertex_0x040077A0 + type: mk64:course_vtx + count: 50 + offset: 0x68ac + +d_course_rainbow_road_vertex_0x040079A0: + symbol: d_course_rainbow_road_vertex_0x040079A0 + type: mk64:course_vtx + count: 48 + offset: 0x6a6c + +d_course_rainbow_road_vertex_0x04007B80: + symbol: d_course_rainbow_road_vertex_0x04007B80 + type: mk64:course_vtx + count: 50 + offset: 0x6c10 + +d_course_rainbow_road_vertex_0x04007D80: + symbol: d_course_rainbow_road_vertex_0x04007D80 + type: mk64:course_vtx + count: 50 + offset: 0x6dd0 + +d_course_rainbow_road_vertex_0x04007F80: + symbol: d_course_rainbow_road_vertex_0x04007F80 + type: mk64:course_vtx + count: 36 + offset: 0x6f90 + +d_course_rainbow_road_vertex_0x04008100: + symbol: d_course_rainbow_road_vertex_0x04008100 + type: mk64:course_vtx + count: 50 + offset: 0x70e0 + +d_course_rainbow_road_vertex_0x04008300: + symbol: d_course_rainbow_road_vertex_0x04008300 + type: mk64:course_vtx + count: 50 + offset: 0x72a0 + +d_course_rainbow_road_vertex_0x04008500: + symbol: d_course_rainbow_road_vertex_0x04008500 + type: mk64:course_vtx + count: 50 + offset: 0x7460 + +d_course_rainbow_road_vertex_0x04008700: + symbol: d_course_rainbow_road_vertex_0x04008700 + type: mk64:course_vtx + count: 50 + offset: 0x7620 + +d_course_rainbow_road_vertex_0x04008900: + symbol: d_course_rainbow_road_vertex_0x04008900 + type: mk64:course_vtx + count: 36 + offset: 0x77e0 + +d_course_rainbow_road_vertex_0x04008A80: + symbol: d_course_rainbow_road_vertex_0x04008A80 + type: mk64:course_vtx + count: 50 + offset: 0x7930 + +d_course_rainbow_road_vertex_0x04008C80: + symbol: d_course_rainbow_road_vertex_0x04008C80 + type: mk64:course_vtx + count: 50 + offset: 0x7af0 + +d_course_rainbow_road_vertex_0x04008E80: + symbol: d_course_rainbow_road_vertex_0x04008E80 + type: mk64:course_vtx + count: 8 + offset: 0x7cb0 + +d_course_rainbow_road_vertex_0x04008F00: + symbol: d_course_rainbow_road_vertex_0x04008F00 + type: mk64:course_vtx + count: 50 + offset: 0x7d20 + +d_course_rainbow_road_vertex_0x04009100: + symbol: d_course_rainbow_road_vertex_0x04009100 + type: mk64:course_vtx + count: 50 + offset: 0x7ee0 + +d_course_rainbow_road_vertex_0x04009300: + symbol: d_course_rainbow_road_vertex_0x04009300 + type: mk64:course_vtx + count: 50 + offset: 0x80a0 + +d_course_rainbow_road_vertex_0x04009500: + symbol: d_course_rainbow_road_vertex_0x04009500 + type: mk64:course_vtx + count: 50 + offset: 0x8260 + +d_course_rainbow_road_vertex_0x04009700: + symbol: d_course_rainbow_road_vertex_0x04009700 + type: mk64:course_vtx + count: 4 + offset: 0x8420 + +d_course_rainbow_road_vertex_0x04009740: + symbol: d_course_rainbow_road_vertex_0x04009740 + type: mk64:course_vtx + count: 48 + offset: 0x8458 + +d_course_rainbow_road_vertex_0x04009920: + symbol: d_course_rainbow_road_vertex_0x04009920 + type: mk64:course_vtx + count: 50 + offset: 0x85fc + +d_course_rainbow_road_vertex_0x04009B20: + symbol: d_course_rainbow_road_vertex_0x04009B20 + type: mk64:course_vtx + count: 6 + offset: 0x87bc + +d_course_rainbow_road_vertex_0x04009B80: + symbol: d_course_rainbow_road_vertex_0x04009B80 + type: mk64:course_vtx + count: 4 + offset: 0x8810 + +d_course_rainbow_road_vertex_0x04009BC0: + symbol: d_course_rainbow_road_vertex_0x04009BC0 + type: mk64:course_vtx + count: 48 + offset: 0x8848 + +d_course_rainbow_road_vertex_0x04009DA0: + symbol: d_course_rainbow_road_vertex_0x04009DA0 + type: mk64:course_vtx + count: 32 + offset: 0x89ec + +d_course_rainbow_road_vertex_0x04009EE0: + symbol: d_course_rainbow_road_vertex_0x04009EE0 + type: mk64:course_vtx + count: 50 + offset: 0x8b04 + +d_course_rainbow_road_vertex_0x0400A0E0: + symbol: d_course_rainbow_road_vertex_0x0400A0E0 + type: mk64:course_vtx + count: 36 + offset: 0x8cc4 + +d_course_rainbow_road_vertex_0x0400A260: + symbol: d_course_rainbow_road_vertex_0x0400A260 + type: mk64:course_vtx + count: 50 + offset: 0x8e14 + +d_course_rainbow_road_vertex_0x0400A460: + symbol: d_course_rainbow_road_vertex_0x0400A460 + type: mk64:course_vtx + count: 48 + offset: 0x8fd4 + +d_course_rainbow_road_vertex_0x0400A640: + symbol: d_course_rainbow_road_vertex_0x0400A640 + type: mk64:course_vtx + count: 48 + offset: 0x9178 + +d_course_rainbow_road_vertex_0x0400A820: + symbol: d_course_rainbow_road_vertex_0x0400A820 + type: mk64:course_vtx + count: 16 + offset: 0x931c + +d_course_rainbow_road_vertex_0x0400A8C0: + symbol: d_course_rainbow_road_vertex_0x0400A8C0 + type: mk64:course_vtx + count: 48 + offset: 0x93a8 + +d_course_rainbow_road_vertex_0x0400AAA0: + symbol: d_course_rainbow_road_vertex_0x0400AAA0 + type: mk64:course_vtx + count: 40 + offset: 0x954c + +d_course_rainbow_road_vertex_0x0400AC60: + symbol: d_course_rainbow_road_vertex_0x0400AC60 + type: mk64:course_vtx + count: 50 + offset: 0x96d4 + +d_course_rainbow_road_vertex_0x0400AE60: + symbol: d_course_rainbow_road_vertex_0x0400AE60 + type: mk64:course_vtx + count: 48 + offset: 0x9894 + +d_course_rainbow_road_vertex_0x0400B040: + symbol: d_course_rainbow_road_vertex_0x0400B040 + type: mk64:course_vtx + count: 4 + offset: 0x9a38 + +d_course_rainbow_road_vertex_0x0400B080: + symbol: d_course_rainbow_road_vertex_0x0400B080 + type: mk64:course_vtx + count: 50 + offset: 0x9a70 + +d_course_rainbow_road_vertex_0x0400B280: + symbol: d_course_rainbow_road_vertex_0x0400B280 + type: mk64:course_vtx + count: 40 + offset: 0x9c30 + +d_course_rainbow_road_vertex_0x0400B440: + symbol: d_course_rainbow_road_vertex_0x0400B440 + type: mk64:course_vtx + count: 50 + offset: 0x9db8 + +d_course_rainbow_road_vertex_0x0400B640: + symbol: d_course_rainbow_road_vertex_0x0400B640 + type: mk64:course_vtx + count: 50 + offset: 0x9f78 + +d_course_rainbow_road_vertex_0x0400B840: + symbol: d_course_rainbow_road_vertex_0x0400B840 + type: mk64:course_vtx + count: 21 + offset: 0xa138 + +d_course_rainbow_road_vertex_0x0400B930: + symbol: d_course_rainbow_road_vertex_0x0400B930 + type: mk64:course_vtx + count: 48 + offset: 0xa20a + +d_course_rainbow_road_vertex_0x0400BB10: + symbol: d_course_rainbow_road_vertex_0x0400BB10 + type: mk64:course_vtx + count: 32 + offset: 0xa3ae + +d_course_rainbow_road_vertex_0x0400BC50: + symbol: d_course_rainbow_road_vertex_0x0400BC50 + type: mk64:course_vtx + count: 16 + offset: 0xa4c6 + +d_course_rainbow_road_vertex_0x0400BCF0: + symbol: d_course_rainbow_road_vertex_0x0400BCF0 + type: mk64:course_vtx + count: 50 + offset: 0xa552 + +d_course_rainbow_road_vertex_0x0400BEF0: + symbol: d_course_rainbow_road_vertex_0x0400BEF0 + type: mk64:course_vtx + count: 50 + offset: 0xa712 + +d_course_rainbow_road_vertex_0x0400C0F0: + symbol: d_course_rainbow_road_vertex_0x0400C0F0 + type: mk64:course_vtx + count: 36 + offset: 0xa8d2 diff --git a/yamls/us/models/tracks/royal_raceway/royal_raceway_data.yml b/yamls/us/models/tracks/royal_raceway/royal_raceway_data.yml new file mode 100644 index 000000000..6a4d76ec5 --- /dev/null +++ b/yamls/us/models/tracks/royal_raceway/royal_raceway_data.yml @@ -0,0 +1,1521 @@ +:config: + segments: + - [0x06, 0x84ABD0] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/royal_raceway/royal_raceway_data.yml" + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees3"] + - [0x03009800, "textures/other_textures/gTextureTrees7"] + - [0x0300A000, "textures/other_textures/gTexturePiranhaPlant1"] + - [0x0300A800, "textures/other_textures/gTexturePiranhaPlant2"] + - [0x0300B000, "textures/other_textures/gTexturePiranhaPlant3"] + - [0x0300B800, "textures/other_textures/gTexturePiranhaPlant4"] + - [0x0300C000, "textures/other_textures/gTexturePiranhaPlant5"] + - [0x0300C800, "textures/other_textures/gTexturePiranhaPlant6"] + - [0x0300D000, "textures/other_textures/gTexturePiranhaPlant7"] + - [0x0300D800, "textures/other_textures/gTexturePiranhaPlant8"] + - [0x0300E000, "textures/other_textures/gTexturePiranhaPlant9"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_64619C"] + - [0x05000800, "textures/other_textures/texture_645134"] + - [0x05001000, "textures/other_textures/wood_door_1"] + - [0x05002000, "textures/other_textures/texture_64BB60"] + - [0x05002800, "textures/other_textures/grass_3"] + - [0x05003000, "textures/other_textures/texture_64F9E8"] + - [0x05004000, "textures/other_textures/flag_red"] + - [0x05004800, "textures/other_textures/crown_jewel_blue"] + - [0x05005000, "textures/other_textures/crown"] + - [0x05005800, "textures/other_textures/crown_jewel_pink"] + - [0x05006000, "textures/other_textures/sign_koopa_air_0"] + - [0x05007000, "textures/other_textures/sign_koopa_air_1"] + - [0x05008000, "textures/other_textures/texture_6684F8"] + - [0x05008800, "textures/other_textures/sign_luigis_0"] + - [0x05009800, "textures/other_textures/sign_luigis_1"] + - [0x0500A800, "textures/other_textures/sign_mario_star_0"] + - [0x0500B800, "textures/other_textures/sign_mario_star_1"] + - [0x0500C800, "textures/other_textures/texture_66CA98"] + - [0x0500D000, "textures/other_textures/checkerboard_pink"] + - [0x0500D800, "textures/other_textures/texture_670AC8"] + - [0x0500E800, "textures/other_textures/road_0"] + - [0x0500F800, "textures/other_textures/road_finish_0"] + - [0x05010800, "textures/other_textures/sign_yoshi"] + - [0x05011800, "textures/other_textures/checkerboard_blue_gray"] + - [0x05012800, "textures/other_textures/castle_bricks"] + - [0x05013800, "textures/other_textures/castle_bridge"] + - [0x05014000, "textures/other_textures/grass_8"] + - [0x05014800, "textures/other_textures/grass_9"] + - [0x05015000, "textures/other_textures/texture_6646B8"] + - [0x05016000, "textures/other_textures/texture_664408"] + - [0x05017000, "textures/other_textures/bricks_red"] + - [0x05018000, "textures/other_textures/texture_665C0C"] + - [0x05018800, "textures/other_textures/texture_6661AC"] + - [0x05019000, "textures/other_textures/texture_6663A4"] + - [0x05019800, "textures/other_textures/texture_667BAC"] + - [0x0501A000, "textures/other_textures/flag_red_2"] + - [0x0501A800, "textures/other_textures/texture_66DB60"] + - [0x0501B000, "textures/other_textures/stainglass_peach_0"] + - [0x0501C000, "textures/other_textures/stainglass_peach_1"] + - [0x0501D000, "textures/other_textures/fence_post_wooden"] + - [0x0501E000, "textures/other_textures/texture_648508"] + - [0x0501F000, "textures/other_textures/texture_6449D4"] + - [0x0501F800, "textures/other_textures/texture_67FE0C"] + # Segment 7 + - [0x7000000, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_0"] + - [0x70000A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A8"] + - [0x7000130, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_130"] + - [0x70001A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1A8"] + - [0x70001C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1C8"] + - [0x7000230, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_230"] + - [0x70002A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2A8"] + - [0x7000320, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_320"] + - [0x7000340, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_340"] + - [0x70004D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4D0"] + - [0x70004E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4E0"] + - [0x7000548, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_548"] + - [0x7000558, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_558"] + - [0x70005D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5D8"] + - [0x7000650, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_650"] + - [0x7000668, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_668"] + - [0x70006D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D0"] + - [0x70006E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6E0"] + - [0x7000750, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_750"] + - [0x70007C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C0"] + - [0x7000840, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_840"] + - [0x7000860, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_860"] + - [0x70008A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8A0"] + - [0x70008B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B0"] + - [0x7000930, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_930"] + - [0x70009C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9C8"] + - [0x7000AB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AB8"] + - [0x7000B78, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B78"] + - [0x7000C38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_C38"] + - [0x7000C68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_C68"] + - [0x7000CE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_CE0"] + - [0x7000CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_CF0"] + - [0x7000E88, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_E88"] + - [0x7000E98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_E98"] + - [0x7000F88, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_F88"] + - [0x7001098, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1098"] + - [0x70011A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_11A8"] + - [0x70011C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_11C8"] + - [0x70012B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_12B0"] + - [0x7001438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1438"] + - [0x7001450, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1450"] + - [0x70014C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_14C8"] + - [0x7001548, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1548"] + - [0x70015D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_15D8"] + - [0x7001640, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1640"] + - [0x70016B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_16B8"] + - [0x7001720, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1720"] + - [0x7001788, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1788"] + - [0x70017F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_17F8"] + - [0x7001860, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1860"] + - [0x70018D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_18D8"] + - [0x7001940, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1940"] + - [0x70019B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_19B0"] + - [0x7001A30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1A30"] + - [0x7001AA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1AA0"] + - [0x7001B18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1B18"] + - [0x7001B98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1B98"] + - [0x7001C48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1C48"] + - [0x7001CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1CF0"] + - [0x7001D68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1D68"] + - [0x7001DF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1DF0"] + - [0x7001E60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1E60"] + - [0x7001EF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1EF0"] + - [0x7001F58, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1F58"] + - [0x7001FE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1FE8"] + - [0x70020A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_20A0"] + - [0x7002110, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2110"] + - [0x70021B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_21B8"] + - [0x7002230, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2230"] + - [0x70022C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_22C0"] + - [0x7002370, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2370"] + - [0x70023F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_23F8"] + - [0x7002478, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2478"] + - [0x7002530, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2530"] + - [0x70025E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_25E0"] + - [0x70026B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_26B0"] + - [0x7002758, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2758"] + - [0x70027E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_27E0"] + - [0x7002870, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2870"] + - [0x70028D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_28D8"] + - [0x7002950, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2950"] + - [0x7002A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2A10"] + - [0x7002AC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2AC8"] + - [0x7002B38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2B38"] + - [0x7002BA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2BA0"] + - [0x7002C08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2C08"] + - [0x7002CF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2CF8"] + - [0x7002D80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2D80"] + - [0x7002E08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2E08"] + - [0x7002EE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2EE0"] + - [0x7002F70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2F70"] + - [0x7003018, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3018"] + - [0x7003090, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3090"] + - [0x7003118, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3118"] + - [0x7003190, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3190"] + - [0x7003218, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3218"] + - [0x7003268, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3268"] + - [0x70032F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_32F0"] + - [0x7003368, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3368"] + - [0x70033D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_33D8"] + - [0x7003440, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3440"] + - [0x70034C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_34C0"] + - [0x7003540, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3540"] + - [0x7003628, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3628"] + - [0x70036B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_36B8"] + - [0x7003728, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3728"] + - [0x7003790, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3790"] + - [0x70037E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_37E8"] + - [0x7003908, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3908"] + - [0x7003978, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3978"] + - [0x7003B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3B50"] + - [0x7003B70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3B70"] + - [0x7003C18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3C18"] + - [0x7003CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3CF0"] + - [0x7003DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3DC0"] + - [0x7003E50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3E50"] + - [0x7003F18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3F18"] + - [0x7003FA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3FA8"] + - [0x7004078, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4078"] + - [0x7004118, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4118"] + - [0x70041A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_41A8"] + - [0x7004298, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4298"] + - [0x7004350, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4350"] + - [0x7004400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4400"] + - [0x70044B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_44B0"] + - [0x7004538, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4538"] + - [0x70045E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_45E0"] + - [0x70046E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_46E0"] + - [0x70047C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_47C0"] + - [0x7004890, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4890"] + - [0x7004968, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4968"] + - [0x7004A08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4A08"] + - [0x7004A80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4A80"] + - [0x7004B30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4B30"] + - [0x7004BC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4BC8"] + - [0x7004CC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4CC8"] + - [0x7004DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4DC0"] + - [0x7004E90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4E90"] + - [0x7004F20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4F20"] + - [0x7004F98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4F98"] + - [0x7005018, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5018"] + - [0x70050B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_50B0"] + - [0x7005138, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5138"] + - [0x70051E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_51E8"] + - [0x7005298, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5298"] + - [0x7005330, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5330"] + - [0x7005400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5400"] + - [0x70054A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_54A8"] + - [0x7005520, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5520"] + - [0x70055D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_55D0"] + - [0x70056A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_56A0"] + - [0x7005740, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5740"] + - [0x70057F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_57F0"] + - [0x70058E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_58E8"] + - [0x7005990, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5990"] + - [0x7005A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5A10"] + - [0x7005AA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5AA8"] + - [0x7005B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5B50"] + - [0x7005C00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5C00"] + - [0x7005D18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5D18"] + - [0x7005DC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5DC8"] + - [0x7005EF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5EF8"] + - [0x7006008, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6008"] + - [0x70060D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_60D8"] + - [0x7006228, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6228"] + - [0x7006328, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6328"] + - [0x70067E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_67E8"] + - [0x7006808, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6808"] + - [0x7006880, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6880"] + - [0x70068E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_68E8"] + - [0x7006950, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6950"] + - [0x70069B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_69B0"] + - [0x7006A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6A10"] + - [0x7006A80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6A80"] + - [0x7006B60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6B60"] + - [0x7006BE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6BE8"] + - [0x7006C58, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6C58"] + - [0x7006CC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6CC0"] + - [0x7006D18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D18"] + - [0x7006D98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D98"] + - [0x7006E20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6E20"] + - [0x7006EB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6EB8"] + - [0x7006F28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6F28"] + - [0x7006FB0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6FB0"] + - [0x7007020, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7020"] + - [0x70070B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_70B8"] + - [0x7007138, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7138"] + - [0x70071A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_71A0"] + - [0x7007278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7278"] + - [0x70072E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_72E8"] + - [0x7007360, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7360"] + - [0x70073E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_73E0"] + - [0x7007490, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7490"] + - [0x7007500, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7500"] + - [0x7007578, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7578"] + - [0x70075F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_75F8"] + - [0x7007680, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7680"] + - [0x7007718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7718"] + - [0x7007780, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7780"] + - [0x70077E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_77E8"] + - [0x7007868, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7868"] + - [0x70078E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_78E0"] + - [0x7007980, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7980"] + - [0x7007A18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7A18"] + - [0x7007AE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7AE8"] + - [0x7007B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7B50"] + - [0x7007BB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7BB8"] + - [0x7007C20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C20"] + - [0x7007C98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C98"] + - [0x7007D10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7D10"] + - [0x7007D90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7D90"] + - [0x7007E08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7E08"] + - [0x7007E80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7E80"] + - [0x7007EF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7EF8"] + - [0x7007F70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7F70"] + - [0x7007FD0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7FD0"] + - [0x7008040, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8040"] + - [0x70080C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_80C8"] + - [0x7008140, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8140"] + - [0x70081C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_81C8"] + - [0x7008278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8278"] + - [0x7008318, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8318"] + - [0x7008390, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8390"] + - [0x7008400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8400"] + - [0x7008470, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8470"] + - [0x70084E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_84E8"] + - [0x7008580, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8580"] + - [0x7008618, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8618"] + - [0x70086B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_86B8"] + - [0x7008740, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8740"] + - [0x7008810, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8810"] + - [0x7008888, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8888"] + - [0x7008900, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8900"] + - [0x7008988, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8988"] + - [0x70089F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_89F0"] + - [0x7008A60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8A60"] + - [0x7008AC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8AC0"] + - [0x7008B28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B28"] + - [0x7008B98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B98"] + - [0x7008C00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8C00"] + - [0x7008C70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8C70"] + - [0x7008CD8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8CD8"] + - [0x7008D48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8D48"] + - [0x7008DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8DC0"] + - [0x7008E30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8E30"] + - [0x7008EA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8EA8"] + - [0x7008F28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8F28"] + - [0x7008F98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8F98"] + - [0x7009008, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9008"] + - [0x7009080, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9080"] + - [0x70090F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_90F8"] + - [0x7009168, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9168"] + - [0x7009198, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9198"] + - [0x7009210, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9210"] + - [0x7009290, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9290"] + - [0x7009310, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9310"] + - [0x7009380, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9380"] + - [0x7009408, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9408"] + - [0x7009438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9438"] + - [0x70094B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_94B0"] + - [0x7009520, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9520"] + - [0x7009598, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9598"] + - [0x7009608, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9608"] + - [0x7009630, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9630"] + - [0x70096A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_96A8"] + - [0x7009718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9718"] + - [0x7009778, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9778"] + - [0x70097E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_97E8"] + - [0x7009848, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9848"] + - [0x70098B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_98B8"] + - [0x7009918, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9918"] + - [0x7009988, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9988"] + - [0x7009A38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9A38"] + - [0x7009A98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9A98"] + - [0x7009B08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9B08"] + - [0x7009B68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9B68"] + - [0x7009BD0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9BD0"] + - [0x7009C48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9C48"] + - [0x7009CB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9CB8"] + - [0x7009D20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9D20"] + - [0x7009DA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9DA0"] + - [0x7009E18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9E18"] + - [0x7009E98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9E98"] + - [0x7009F10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9F10"] + - [0x7009F80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9F80"] + - [0x7009FF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9FF0"] + - [0x700A050, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A050"] + - [0x700A0B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A0B0"] + - [0x700A128, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A128"] + - [0x700A1A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A1A0"] + - [0x700A210, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A210"] + - [0x700A278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A278"] + - [0x700A2D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A2D8"] + - [0x700A3C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A3C8"] + - [0x700A438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A438"] + - [0x700A4B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A4B8"] + - [0x700A538, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A538"] + - [0x700A5A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A5A0"] + - [0x700A618, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A618"] + - [0x700A648, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A648"] + - [0x700A6A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A6A8"] + - [0x700A718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A718"] + - [0x700A730, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A730"] + - [0x700A7D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A7D8"] + - [0x700A870, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A870"] + - [0x700A8F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A8F8"] + - [0x700A970, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A970"] + - [0x700A998, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A998"] + - [0x700AA10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AA10"] + - [0x700AA90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AA90"] + - [0x700AB28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AB28"] + - [0x700ABA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_ABA8"] + - [0x700AC30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AC30"] + - [0x700AC60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AC60"] + - [0x700ACE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_ACE0"] + - [0x700AD78, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AD78"] + - [0x700AE00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AE00"] + - [0x700AE70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AE70"] + - [0x700AEF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AEF8"] + - [0x700AF28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AF28"] + - [0x700B030, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B030"] + - [0x700B040, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B040"] + - [0x700B120, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B120"] + - [0x700B130, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B130"] + # Segment 4 + - [0x4000000, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000000"] + - [0x4000200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000200"] + - [0x4000380, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000380"] + - [0x4000480, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000480"] + - [0x4000500, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000500"] + - [0x4000600, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000600"] + - [0x4000700, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000700"] + - [0x4000900, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000900"] + - [0x4000b00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000B00"] + - [0x4000c00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C00"] + - [0x4000c40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C40"] + - [0x4000c80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C80"] + - [0x4000d00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000D00"] + - [0x4000e40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000E40"] + - [0x4000f40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000F40"] + - [0x4000fc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000FC0"] + - [0x4001080, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001080"] + - [0x4001140, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001140"] + - [0x4001280, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001280"] + - [0x40013e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040013E0"] + - [0x40015e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040015E0"] + - [0x40017e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040017E0"] + - [0x4001980, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001980"] + - [0x4001b80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001B80"] + - [0x4001c80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001C80"] + - [0x4001e80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001E80"] + - [0x4001f80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001F80"] + - [0x40020a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040020A0"] + - [0x4002180, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002180"] + - [0x4002200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002200"] + - [0x4002340, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002340"] + - [0x4002380, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002380"] + - [0x4002400, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002400"] + - [0x4002440, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002440"] + - [0x4002480, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002480"] + - [0x4002580, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002580"] + - [0x4002600, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002600"] + - [0x4002680, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002680"] + - [0x4002780, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002780"] + - [0x4002800, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002800"] + - [0x4002880, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002880"] + - [0x4002980, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002980"] + - [0x4002ae0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002AE0"] + - [0x4002b30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002B30"] + - [0x4002d30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002D30"] + - [0x4002db0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002DB0"] + - [0x4002fb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002FB0"] + - [0x4003120, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003120"] + - [0x4003220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003220"] + - [0x4003360, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003360"] + - [0x4003520, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003520"] + - [0x40035a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040035A0"] + - [0x40036a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040036A0"] + - [0x4003720, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003720"] + - [0x40037a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040037A0"] + - [0x4003850, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003850"] + - [0x40038d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040038D0"] + - [0x40039c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040039C0"] + - [0x4003a40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003A40"] + - [0x4003b00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003B00"] + - [0x4003c10, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003C10"] + - [0x4003cc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003CC0"] + - [0x4003dc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003DC0"] + - [0x4003fc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003FC0"] + - [0x4004040, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004040"] + - [0x4004240, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004240"] + - [0x4004280, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004280"] + - [0x4004380, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004380"] + - [0x4004500, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004500"] + - [0x40045c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040045C0"] + - [0x4004780, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004780"] + - [0x4004800, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004800"] + - [0x40049c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040049C0"] + - [0x4004a60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004A60"] + - [0x4004aa0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004AA0"] + - [0x4004b60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004B60"] + - [0x4004d50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004D50"] + - [0x4004d90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004D90"] + - [0x4004eb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004EB0"] + - [0x4005070, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005070"] + - [0x4005270, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005270"] + - [0x40052f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040052F0"] + - [0x4005470, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005470"] + - [0x40055b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040055B0"] + - [0x40057b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040057B0"] + - [0x4005870, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005870"] + - [0x4005a70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005A70"] + - [0x4005af0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005AF0"] + - [0x4005cf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005CF0"] + - [0x4005e90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005E90"] + - [0x4006070, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006070"] + - [0x40060f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040060F0"] + - [0x4006290, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006290"] + - [0x4006450, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006450"] + - [0x40064d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040064D0"] + - [0x40065d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040065D0"] + - [0x40067d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040067D0"] + - [0x40068d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040068D0"] + - [0x4006ad0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006AD0"] + - [0x4006b90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006B90"] + - [0x4006c50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006C50"] + - [0x4006cd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006CD0"] + - [0x4006d50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006D50"] + - [0x4006ed0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006ED0"] + - [0x4007050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007050"] + - [0x4007250, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007250"] + - [0x4007410, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007410"] + - [0x40075d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040075D0"] + - [0x40077d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040077D0"] + - [0x4007810, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007810"] + - [0x4007910, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007910"] + - [0x4007a90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007A90"] + - [0x4007b80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007B80"] + - [0x4007d00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007D00"] + - [0x4007dd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007DD0"] + - [0x4007ec0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007EC0"] + - [0x4007f70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007F70"] + - [0x4007fc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007FC0"] + - [0x4008050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008050"] + - [0x4008100, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008100"] + - [0x40082f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040082F0"] + - [0x40083d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040083D0"] + - [0x40084e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040084E0"] + - [0x4008570, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008570"] + - [0x40085c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040085C0"] + - [0x4008640, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008640"] + - [0x4008750, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008750"] + - [0x4008790, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008790"] + - [0x4008850, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008850"] + - [0x4008910, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008910"] + - [0x40089d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040089D0"] + - [0x4008a80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008A80"] + - [0x4008b40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008B40"] + - [0x4008c00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008C00"] + - [0x4008e00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008E00"] + - [0x4008f20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008F20"] + - [0x4009120, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009120"] + - [0x4009320, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009320"] + - [0x40093e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040093E0"] + - [0x40095d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040095D0"] + - [0x40097c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040097C0"] + - [0x4009820, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009820"] + - [0x4009a00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009A00"] + - [0x4009a60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009A60"] + - [0x4009c60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009C60"] + - [0x4009e40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009E40"] + - [0x4009ea0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009EA0"] + - [0x400a080, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A080"] + - [0x400a0e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A0E0"] + - [0x400a2c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A2C0"] + - [0x400a4b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A4B0"] + - [0x400a570, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A570"] + - [0x400a770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A770"] + - [0x400a800, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A800"] + - [0x400a9e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A9E0"] + - [0x400aa40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AA40"] + - [0x400ac20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AC20"] + - [0x400ae00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AE00"] + - [0x400afe0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AFE0"] + - [0x400b040, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B040"] + - [0x400b240, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B240"] + - [0x400b3f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B3F0"] + - [0x400b5d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B5D0"] + - [0x400b770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B770"] + - [0x400b950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B950"] + - [0x400bb30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BB30"] + - [0x400bd20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BD20"] + - [0x400bf00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BF00"] + - [0x400c050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C050"] + - [0x400c230, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C230"] + - [0x400c410, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C410"] + - [0x400c5f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C5F0"] + - [0x400c6e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C6E0"] + - [0x400c8d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C8D0"] + - [0x400cac0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CAC0"] + - [0x400cbb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CBB0"] + - [0x400cd90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CD90"] + - [0x400cf90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CF90"] + - [0x400cff0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CFF0"] + - [0x400d1f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D1F0"] + - [0x400d3e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D3E0"] + - [0x400d4a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D4A0"] + - [0x400d680, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D680"] + - [0x400d770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D770"] + - [0x400d8f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D8F0"] + - [0x400daf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DAF0"] + - [0x400dc70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DC70"] + - [0x400de50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DE50"] + - [0x400df10, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DF10"] + - [0x400e0f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E0F0"] + - [0x400e2f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E2F0"] + - [0x400e4d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E4D0"] + - [0x400e590, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E590"] + - [0x400e770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E770"] + - [0x400e950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E950"] + - [0x400eb40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EB40"] + - [0x400eb70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EB70"] + - [0x400ed50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400ED50"] + - [0x400edb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EDB0"] + - [0x400eed0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EED0"] + - [0x400f050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F050"] + - [0x400f250, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F250"] + - [0x400f2b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F2B0"] + - [0x400f4a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F4A0"] + - [0x400f690, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F690"] + - [0x400f7d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F7D0"] + - [0x400f9c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F9C0"] + - [0x400fb40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FB40"] + - [0x400fd20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FD20"] + - [0x400fd80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FD80"] + - [0x400ff80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FF80"] + - [0x4010180, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010180"] + - [0x40101b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040101B0"] + - [0x40103a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040103A0"] + - [0x40104b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040104B0"] + - [0x4010620, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010620"] + - [0x4010820, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010820"] + - [0x4010950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010950"] + - [0x4010b40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010B40"] + - [0x4010d20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010D20"] + - [0x4010d70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010D70"] + - [0x4010f60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010F60"] + - [0x4011020, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011020"] + - [0x4011220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011220"] + - [0x4011360, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011360"] + - [0x4011550, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011550"] + - [0x4011750, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011750"] + - [0x4011950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011950"] + - [0x4011b30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011B30"] + - [0x4011c50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011C50"] + - [0x4011de0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011DE0"] + - [0x4011fc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011FC0"] + - [0x4012050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012050"] + - [0x4012250, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012250"] + - [0x4012370, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012370"] + - [0x4012550, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012550"] + - [0x4012690, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012690"] + - [0x4012870, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012870"] + - [0x4012a50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012A50"] + - [0x4012c40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012C40"] + - [0x4012df0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012DF0"] + - [0x4012fd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012FD0"] + - [0x4013110, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013110"] + - [0x40132f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040132F0"] + - [0x40134f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040134F0"] + - [0x40136f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040136F0"] + - [0x40138d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040138D0"] + - [0x4013920, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013920"] + - [0x4013b00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013B00"] + - [0x4013cf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013CF0"] + - [0x4013ef0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013EF0"] + - [0x4013f60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013F60"] + - [0x4013fa0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013FA0"] + - [0x40140f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040140F0"] + - [0x40142d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040142D0"] + - [0x40143e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040143E0"] + - [0x40145e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040145E0"] + - [0x4014620, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014620"] + - [0x4014820, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014820"] + - [0x4014a20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014A20"] + - [0x4014c20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014C20"] + - [0x4014d60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014D60"] + - [0x4014f60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014F60"] + - [0x4015150, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015150"] + - [0x4015350, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015350"] + - [0x4015550, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015550"] + - [0x4015740, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015740"] + - [0x4015920, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015920"] + - [0x4015ae0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015AE0"] + - [0x4015cd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015CD0"] + - [0x4015eb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015EB0"] + - [0x4015ff0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015FF0"] + - [0x4016140, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016140"] + - [0x4016200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016200"] + - [0x4016280, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016280"] + - [0x40162d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040162D0"] + - [0x4016330, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016330"] + - [0x4016430, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016430"] + - [0x4016610, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016610"] + - [0x4016810, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016810"] + - [0x4016930, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016930"] + - [0x4016af0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016AF0"] + - [0x4016bb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016BB0"] + - [0x4016c40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016C40"] + - [0x4016df0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016DF0"] + - [0x4016ff0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016FF0"] + - [0x40171e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040171E0"] + - [0x4017210, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017210"] + - [0x4017300, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017300"] + - [0x4017500, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017500"] + - [0x4017610, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017610"] + - [0x4017800, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017800"] + - [0x4017830, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017830"] + - [0x4017980, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017980"] + - [0x4017a40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017A40"] + - [0x4017b00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017B00"] + - [0x4017d00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017D00"] + - [0x4017d60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017D60"] + - [0x4017e80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017E80"] + - [0x4018000, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018000"] + - [0x40181b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040181B0"] + - [0x4018240, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018240"] + - [0x4018340, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018340"] + - [0x4018430, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018430"] + - [0x40185a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040185A0"] + - [0x4018750, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018750"] + - [0x4018940, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018940"] + - [0x4018b30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018B30"] + - [0x4018b60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018B60"] + - [0x4018c20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018C20"] + - [0x4018ce0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018CE0"] + - [0x4018e90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018E90"] + - [0x4018f80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018F80"] + - [0x4019160, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019160"] + - [0x4019200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019200"] + - [0x4019400, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019400"] + - [0x4019460, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019460"] + - [0x4019520, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019520"] + - [0x40195e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040195E0"] + - [0x4019690, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019690"] + - [0x40197e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040197E0"] + - [0x4019940, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019940"] + - [0x4019af0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019AF0"] + - [0x4019c60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019C60"] + - [0x4019dc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019DC0"] + - [0x4019f10, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019F10"] + - [0x401a050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A050"] + - [0x401a0b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A0B0"] + - [0x401a1c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A1C0"] + - [0x401a3b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A3B0"] + - [0x401a4e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A4E0"] + - [0x401a6e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A6E0"] + - [0x401a8e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A8E0"] + - [0x401aa20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AA20"] + - [0x401ac10, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AC10"] + - [0x401aca0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401ACA0"] + - [0x401ae20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AE20"] + - [0x401af20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AF20"] + - [0x401b010, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B010"] + - [0x401b160, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B160"] + - [0x401b340, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B340"] + - [0x401b370, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B370"] + - [0x401b550, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B550"] + - [0x401b5e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B5E0"] + - [0x401b7e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B7E0"] + - [0x401b870, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B870"] + - [0x401ba70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BA70"] + - [0x401bb80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BB80"] + - [0x401bc50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BC50"] + - [0x401bd60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BD60"] + - [0x401bdb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BDB0"] + - [0x401be40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BE40"] + - [0x401be80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BE80"] + - [0x401bed0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BED0"] + - [0x401bf60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BF60"] + - [0x401bfb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BFB0"] + - [0x401c020, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C020"] + - [0x401c070, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C070"] + - [0x401c100, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C100"] + - [0x401c220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C220"] + - [0x401c2b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C2B0"] + - [0x401c3d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C3D0"] + - [0x401c4b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C4B0"] + - [0x401c590, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C590"] + - [0x401c6f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C6F0"] + - [0x401c860, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C860"] + - [0x401c980, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C980"] + - [0x401cb00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CB00"] + - [0x401ccc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CCC0"] + - [0x401ce90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CE90"] + - [0x401cf60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CF60"] + - [0x401d150, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D150"] + - [0x401d200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D200"] + - [0x401d260, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D260"] + - [0x401d320, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D320"] + - [0x401d3b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D3B0"] + - [0x401d4b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D4B0"] + - [0x401d570, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D570"] + - [0x401d5b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D5B0"] + - [0x401d670, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D670"] + - [0x401d6b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D6B0"] + - [0x401d770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D770"] + - [0x401d7b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D7B0"] + - [0x401d870, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D870"] + - [0x401d8b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D8B0"] + - [0x401d8f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D8F0"] + - [0x401d930, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D930"] + - [0x401d9f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D9F0"] + - [0x401da30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DA30"] + - [0x401dab0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DAB0"] + - [0x401dbb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DBB0"] + - [0x401dc70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DC70"] + - [0x401dcf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DCF0"] + - [0x401de20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DE20"] + - [0x401df20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DF20"] + - [0x401e060, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E060"] + - [0x401e160, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E160"] + - [0x401e220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E220"] + - [0x401e2e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E2E0"] + - [0x401e320, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E320"] + - [0x401e360, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E360"] + - [0x401e460, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E460"] + - [0x401e560, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E560"] + - [0x401e620, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E620"] + - [0x401e6a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E6A0"] + - [0x401e6e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E6E0"] + - [0x401e7a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E7A0"] + - [0x401e8e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E8E0"] + - [0x401ea20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EA20"] + - [0x401ea90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EA90"] + - [0x401eb90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EB90"] + - [0x401ebd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EBD0"] + - [0x401ec90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EC90"] + - [0x401ede0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EDE0"] + - [0x401eef0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EEF0"] + - [0x401f000, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F000"] + - [0x401f0d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F0D0"] + - [0x401f220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F220"] + - [0x401f3b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F3B0"] + - [0x401f5a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F5A0"] + - [0x401f5d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F5D0"] + - [0x401f770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F770"] + - [0x401f950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F950"] + - [0x401faf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FAF0"] + - [0x401fce0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FCE0"] + - [0x401fd30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FD30"] + - [0x401ff20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FF20"] + - [0x4020040, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020040"] + - [0x4020200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020200"] + - [0x4020400, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020400"] + - [0x4020600, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020600"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_royal_raceway_dl_0: + symbol: d_course_royal_raceway_dl_0 + type: gfx + offset: 0x0 + otr_mode: index +d_course_royal_raceway_dl_258: + symbol: d_course_royal_raceway_dl_258 + type: gfx + offset: 0x258 + otr_mode: index +d_course_royal_raceway_dl_360: + symbol: d_course_royal_raceway_dl_360 + type: gfx + offset: 0x360 + otr_mode: index +d_course_royal_raceway_dl_470: + symbol: d_course_royal_raceway_dl_470 + type: gfx + offset: 0x470 + otr_mode: index +d_course_royal_raceway_dl_6D0: + symbol: d_course_royal_raceway_dl_6D0 + type: gfx + offset: 0x6D0 + otr_mode: index +d_course_royal_raceway_dl_8E0: + symbol: d_course_royal_raceway_dl_8E0 + type: gfx + offset: 0x8E0 + otr_mode: index +d_course_royal_raceway_dl_A48: + symbol: d_course_royal_raceway_dl_A48 + type: gfx + offset: 0xA48 + otr_mode: index +d_course_royal_raceway_dl_B40: + symbol: d_course_royal_raceway_dl_B40 + type: gfx + offset: 0xB40 + otr_mode: index +d_course_royal_raceway_dl_DA0: + symbol: d_course_royal_raceway_dl_DA0 + type: gfx + offset: 0xDA0 + otr_mode: index +d_course_royal_raceway_dl_F40: + symbol: d_course_royal_raceway_dl_F40 + type: gfx + offset: 0xF40 + otr_mode: index +d_course_royal_raceway_dl_1180: + symbol: d_course_royal_raceway_dl_1180 + type: gfx + offset: 0x1180 + otr_mode: index +d_course_royal_raceway_dl_12C0: + symbol: d_course_royal_raceway_dl_12C0 + type: gfx + offset: 0x12C0 + otr_mode: index +d_course_royal_raceway_dl_1538: + symbol: d_course_royal_raceway_dl_1538 + type: gfx + offset: 0x1538 + otr_mode: index +d_course_royal_raceway_dl_1610: + symbol: d_course_royal_raceway_dl_1610 + type: gfx + offset: 0x1610 + otr_mode: index +d_course_royal_raceway_dl_1850: + symbol: d_course_royal_raceway_dl_1850 + type: gfx + offset: 0x1850 + otr_mode: index +d_course_royal_raceway_dl_19B0: + symbol: d_course_royal_raceway_dl_19B0 + type: gfx + offset: 0x19B0 + otr_mode: index +d_course_royal_raceway_dl_1BB8: + symbol: d_course_royal_raceway_dl_1BB8 + type: gfx + offset: 0x1BB8 + otr_mode: index +d_course_royal_raceway_dl_1C40: + symbol: d_course_royal_raceway_dl_1C40 + type: gfx + offset: 0x1C40 + otr_mode: index +d_course_royal_raceway_dl_1E88: + symbol: d_course_royal_raceway_dl_1E88 + type: gfx + offset: 0x1E88 + otr_mode: index +d_course_royal_raceway_dl_2018: + symbol: d_course_royal_raceway_dl_2018 + type: gfx + offset: 0x2018 + otr_mode: index +d_course_royal_raceway_dl_21A8: + symbol: d_course_royal_raceway_dl_21A8 + type: gfx + offset: 0x21A8 + otr_mode: index +d_course_royal_raceway_dl_2210: + symbol: d_course_royal_raceway_dl_2210 + type: gfx + offset: 0x2210 + otr_mode: index +d_course_royal_raceway_dl_2428: + symbol: d_course_royal_raceway_dl_2428 + type: gfx + offset: 0x2428 + otr_mode: index +d_course_royal_raceway_dl_25F0: + symbol: d_course_royal_raceway_dl_25F0 + type: gfx + offset: 0x25F0 + otr_mode: index +d_course_royal_raceway_dl_26F0: + symbol: d_course_royal_raceway_dl_26F0 + type: gfx + offset: 0x26F0 + otr_mode: index +d_course_royal_raceway_dl_27B8: + symbol: d_course_royal_raceway_dl_27B8 + type: gfx + offset: 0x27B8 + otr_mode: index +d_course_royal_raceway_dl_29A0: + symbol: d_course_royal_raceway_dl_29A0 + type: gfx + offset: 0x29A0 + otr_mode: index +d_course_royal_raceway_dl_2B78: + symbol: d_course_royal_raceway_dl_2B78 + type: gfx + offset: 0x2B78 + otr_mode: index +d_course_royal_raceway_dl_2C20: + symbol: d_course_royal_raceway_dl_2C20 + type: gfx + offset: 0x2C20 + otr_mode: index +d_course_royal_raceway_dl_2DD0: + symbol: d_course_royal_raceway_dl_2DD0 + type: gfx + offset: 0x2DD0 + otr_mode: index +d_course_royal_raceway_dl_2FE0: + symbol: d_course_royal_raceway_dl_2FE0 + type: gfx + offset: 0x2FE0 + otr_mode: index +d_course_royal_raceway_dl_31F8: + symbol: d_course_royal_raceway_dl_31F8 + type: gfx + offset: 0x31F8 + otr_mode: index +d_course_royal_raceway_dl_33B0: + symbol: d_course_royal_raceway_dl_33B0 + type: gfx + offset: 0x33B0 + otr_mode: index +d_course_royal_raceway_dl_3580: + symbol: d_course_royal_raceway_dl_3580 + type: gfx + offset: 0x3580 + otr_mode: index +d_course_royal_raceway_dl_3748: + symbol: d_course_royal_raceway_dl_3748 + type: gfx + offset: 0x3748 + otr_mode: index +d_course_royal_raceway_dl_3960: + symbol: d_course_royal_raceway_dl_3960 + type: gfx + offset: 0x3960 + otr_mode: index +d_course_royal_raceway_dl_3AD8: + symbol: d_course_royal_raceway_dl_3AD8 + type: gfx + offset: 0x3AD8 + otr_mode: index +d_course_royal_raceway_dl_3BA8: + symbol: d_course_royal_raceway_dl_3BA8 + type: gfx + offset: 0x3BA8 + otr_mode: index +d_course_royal_raceway_dl_3D38: + symbol: d_course_royal_raceway_dl_3D38 + type: gfx + offset: 0x3D38 + otr_mode: index +d_course_royal_raceway_dl_3ED8: + symbol: d_course_royal_raceway_dl_3ED8 + type: gfx + offset: 0x3ED8 + otr_mode: index +d_course_royal_raceway_dl_3FA0: + symbol: d_course_royal_raceway_dl_3FA0 + type: gfx + offset: 0x3FA0 + otr_mode: index +d_course_royal_raceway_dl_4048: + symbol: d_course_royal_raceway_dl_4048 + type: gfx + offset: 0x4048 + otr_mode: index +d_course_royal_raceway_dl_41D8: + symbol: d_course_royal_raceway_dl_41D8 + type: gfx + offset: 0x41D8 + otr_mode: index +d_course_royal_raceway_dl_4380: + symbol: d_course_royal_raceway_dl_4380 + type: gfx + offset: 0x4380 + otr_mode: index +d_course_royal_raceway_dl_4438: + symbol: d_course_royal_raceway_dl_4438 + type: gfx + offset: 0x4438 + otr_mode: index +d_course_royal_raceway_dl_44C0: + symbol: d_course_royal_raceway_dl_44C0 + type: gfx + offset: 0x44C0 + otr_mode: index +d_course_royal_raceway_dl_45A0: + symbol: d_course_royal_raceway_dl_45A0 + type: gfx + offset: 0x45A0 + otr_mode: index +d_course_royal_raceway_dl_46A0: + symbol: d_course_royal_raceway_dl_46A0 + type: gfx + offset: 0x46A0 + otr_mode: index +d_course_royal_raceway_dl_4750: + symbol: d_course_royal_raceway_dl_4750 + type: gfx + offset: 0x4750 + otr_mode: index +d_course_royal_raceway_dl_4800: + symbol: d_course_royal_raceway_dl_4800 + type: gfx + offset: 0x4800 + otr_mode: index +d_course_royal_raceway_dl_4930: + symbol: d_course_royal_raceway_dl_4930 + type: gfx + offset: 0x4930 + otr_mode: index +d_course_royal_raceway_dl_4A38: + symbol: d_course_royal_raceway_dl_4A38 + type: gfx + offset: 0x4A38 + otr_mode: index +d_course_royal_raceway_dl_4AE0: + symbol: d_course_royal_raceway_dl_4AE0 + type: gfx + offset: 0x4AE0 + otr_mode: index +d_course_royal_raceway_dl_4BA8: + symbol: d_course_royal_raceway_dl_4BA8 + type: gfx + offset: 0x4BA8 + otr_mode: index +d_course_royal_raceway_dl_4D00: + symbol: d_course_royal_raceway_dl_4D00 + type: gfx + offset: 0x4D00 + otr_mode: index +d_course_royal_raceway_dl_4DF8: + symbol: d_course_royal_raceway_dl_4DF8 + type: gfx + offset: 0x4DF8 + otr_mode: index +d_course_royal_raceway_dl_4EC0: + symbol: d_course_royal_raceway_dl_4EC0 + type: gfx + offset: 0x4EC0 + otr_mode: index +d_course_royal_raceway_dl_4F80: + symbol: d_course_royal_raceway_dl_4F80 + type: gfx + offset: 0x4F80 + otr_mode: index +d_course_royal_raceway_dl_50F0: + symbol: d_course_royal_raceway_dl_50F0 + type: gfx + offset: 0x50F0 + otr_mode: index +d_course_royal_raceway_dl_51D0: + symbol: d_course_royal_raceway_dl_51D0 + type: gfx + offset: 0x51D0 + otr_mode: index +d_course_royal_raceway_dl_52F0: + symbol: d_course_royal_raceway_dl_52F0 + type: gfx + offset: 0x52F0 + otr_mode: index +d_course_royal_raceway_dl_53B8: + symbol: d_course_royal_raceway_dl_53B8 + type: gfx + offset: 0x53B8 + otr_mode: index +d_course_royal_raceway_dl_54F8: + symbol: d_course_royal_raceway_dl_54F8 + type: gfx + offset: 0x54F8 + otr_mode: index +d_course_royal_raceway_dl_5598: + symbol: d_course_royal_raceway_dl_5598 + type: gfx + offset: 0x5598 + otr_mode: index +d_course_royal_raceway_dl_56C0: + symbol: d_course_royal_raceway_dl_56C0 + type: gfx + offset: 0x56C0 + otr_mode: index +d_course_royal_raceway_dl_5758: + symbol: d_course_royal_raceway_dl_5758 + type: gfx + offset: 0x5758 + otr_mode: index +d_course_royal_raceway_dl_5890: + symbol: d_course_royal_raceway_dl_5890 + type: gfx + offset: 0x5890 + otr_mode: index +d_course_royal_raceway_dl_5900: + symbol: d_course_royal_raceway_dl_5900 + type: gfx + offset: 0x5900 + otr_mode: index +d_course_royal_raceway_dl_5A40: + symbol: d_course_royal_raceway_dl_5A40 + type: gfx + offset: 0x5A40 + otr_mode: index +d_course_royal_raceway_dl_5B28: + symbol: d_course_royal_raceway_dl_5B28 + type: gfx + offset: 0x5B28 + otr_mode: index +d_course_royal_raceway_dl_5CA0: + symbol: d_course_royal_raceway_dl_5CA0 + type: gfx + offset: 0x5CA0 + otr_mode: index +d_course_royal_raceway_dl_5D08: + symbol: d_course_royal_raceway_dl_5D08 + type: gfx + offset: 0x5D08 + otr_mode: index +d_course_royal_raceway_dl_5EB8: + symbol: d_course_royal_raceway_dl_5EB8 + type: gfx + offset: 0x5EB8 + otr_mode: index +d_course_royal_raceway_dl_5FD8: + symbol: d_course_royal_raceway_dl_5FD8 + type: gfx + offset: 0x5FD8 + otr_mode: index +d_course_royal_raceway_dl_6118: + symbol: d_course_royal_raceway_dl_6118 + type: gfx + offset: 0x6118 + otr_mode: index +d_course_royal_raceway_dl_61B0: + symbol: d_course_royal_raceway_dl_61B0 + type: gfx + offset: 0x61B0 + otr_mode: index +d_course_royal_raceway_dl_6378: + symbol: d_course_royal_raceway_dl_6378 + type: gfx + offset: 0x6378 + otr_mode: index +d_course_royal_raceway_dl_6538: + symbol: d_course_royal_raceway_dl_6538 + type: gfx + offset: 0x6538 + otr_mode: index +d_course_royal_raceway_dl_6780: + symbol: d_course_royal_raceway_dl_6780 + type: gfx + offset: 0x6780 + otr_mode: index +d_course_royal_raceway_dl_68C8: + symbol: d_course_royal_raceway_dl_68C8 + type: gfx + offset: 0x68C8 + otr_mode: index +d_course_royal_raceway_dl_6BC0: + symbol: d_course_royal_raceway_dl_6BC0 + type: gfx + offset: 0x6BC0 + otr_mode: index +d_course_royal_raceway_dl_6E20: + symbol: d_course_royal_raceway_dl_6E20 + type: gfx + offset: 0x6E20 + otr_mode: index +d_course_royal_raceway_dl_70C0: + symbol: d_course_royal_raceway_dl_70C0 + type: gfx + offset: 0x70C0 + otr_mode: index +d_course_royal_raceway_dl_72B8: + symbol: d_course_royal_raceway_dl_72B8 + type: gfx + offset: 0x72B8 + otr_mode: index +d_course_royal_raceway_dl_75C0: + symbol: d_course_royal_raceway_dl_75C0 + type: gfx + offset: 0x75C0 + otr_mode: index +d_course_royal_raceway_dl_7778: + symbol: d_course_royal_raceway_dl_7778 + type: gfx + offset: 0x7778 + otr_mode: index +d_course_royal_raceway_dl_78E8: + symbol: d_course_royal_raceway_dl_78E8 + type: gfx + offset: 0x78E8 + otr_mode: index +d_course_royal_raceway_dl_7AD0: + symbol: d_course_royal_raceway_dl_7AD0 + type: gfx + offset: 0x7AD0 + otr_mode: index +d_course_royal_raceway_dl_7BD8: + symbol: d_course_royal_raceway_dl_7BD8 + type: gfx + offset: 0x7BD8 + otr_mode: index +d_course_royal_raceway_dl_7DB0: + symbol: d_course_royal_raceway_dl_7DB0 + type: gfx + offset: 0x7DB0 + otr_mode: index +d_course_royal_raceway_dl_7ED8: + symbol: d_course_royal_raceway_dl_7ED8 + type: gfx + offset: 0x7ED8 + otr_mode: index +d_course_royal_raceway_dl_8068: + symbol: d_course_royal_raceway_dl_8068 + type: gfx + offset: 0x8068 + otr_mode: index +d_course_royal_raceway_dl_81C0: + symbol: d_course_royal_raceway_dl_81C0 + type: gfx + offset: 0x81C0 + otr_mode: index +d_course_royal_raceway_dl_8398: + symbol: d_course_royal_raceway_dl_8398 + type: gfx + offset: 0x8398 + otr_mode: index +d_course_royal_raceway_dl_84A0: + symbol: d_course_royal_raceway_dl_84A0 + type: gfx + offset: 0x84A0 + otr_mode: index +d_course_royal_raceway_dl_8620: + symbol: d_course_royal_raceway_dl_8620 + type: gfx + offset: 0x8620 + otr_mode: index +d_course_royal_raceway_dl_8770: + symbol: d_course_royal_raceway_dl_8770 + type: gfx + offset: 0x8770 + otr_mode: index +d_course_royal_raceway_dl_8838: + symbol: d_course_royal_raceway_dl_8838 + type: gfx + offset: 0x8838 + otr_mode: index +d_course_royal_raceway_dl_88B0: + symbol: d_course_royal_raceway_dl_88B0 + type: gfx + offset: 0x88B0 + otr_mode: index +d_course_royal_raceway_dl_8930: + symbol: d_course_royal_raceway_dl_8930 + type: gfx + offset: 0x8930 + otr_mode: index +d_course_royal_raceway_dl_89F0: + symbol: d_course_royal_raceway_dl_89F0 + type: gfx + offset: 0x89F0 + otr_mode: index +d_course_royal_raceway_dl_8C58: + symbol: d_course_royal_raceway_dl_8C58 + type: gfx + offset: 0x8C58 + otr_mode: index +d_course_royal_raceway_dl_8CD8: + symbol: d_course_royal_raceway_dl_8CD8 + type: gfx + offset: 0x8CD8 + otr_mode: index +d_course_royal_raceway_dl_8EB8: + symbol: d_course_royal_raceway_dl_8EB8 + type: gfx + offset: 0x8EB8 + otr_mode: index +d_course_royal_raceway_dl_8FA8: + symbol: d_course_royal_raceway_dl_8FA8 + type: gfx + offset: 0x8FA8 + otr_mode: index +d_course_royal_raceway_dl_9218: + symbol: d_course_royal_raceway_dl_9218 + type: gfx + offset: 0x9218 + otr_mode: index +d_course_royal_raceway_dl_92D0: + symbol: d_course_royal_raceway_dl_92D0 + type: gfx + offset: 0x92D0 + otr_mode: index +d_course_royal_raceway_dl_94E8: + symbol: d_course_royal_raceway_dl_94E8 + type: gfx + offset: 0x94E8 + otr_mode: index +d_course_royal_raceway_dl_9678: + symbol: d_course_royal_raceway_dl_9678 + type: gfx + offset: 0x9678 + otr_mode: index +d_course_royal_raceway_dl_9900: + symbol: d_course_royal_raceway_dl_9900 + type: gfx + offset: 0x9900 + otr_mode: index +d_course_royal_raceway_dl_99A0: + symbol: d_course_royal_raceway_dl_99A0 + type: gfx + offset: 0x99A0 + otr_mode: index +d_course_royal_raceway_dl_9B30: + symbol: d_course_royal_raceway_dl_9B30 + type: gfx + offset: 0x9B30 + otr_mode: index +d_course_royal_raceway_dl_9D58: + symbol: d_course_royal_raceway_dl_9D58 + type: gfx + offset: 0x9D58 + otr_mode: index +d_course_royal_raceway_dl_9FE8: + symbol: d_course_royal_raceway_dl_9FE8 + type: gfx + offset: 0x9FE8 + otr_mode: index +d_course_royal_raceway_dl_A0A8: + symbol: d_course_royal_raceway_dl_A0A8 + type: gfx + offset: 0xA0A8 + otr_mode: index +d_course_royal_raceway_dl_A200: + symbol: d_course_royal_raceway_dl_A200 + type: gfx + offset: 0xA200 + otr_mode: index +d_course_royal_raceway_dl_A478: + symbol: d_course_royal_raceway_dl_A478 + type: gfx + offset: 0xA478 + otr_mode: index +d_course_royal_raceway_dl_A600: + symbol: d_course_royal_raceway_dl_A600 + type: gfx + offset: 0xA600 + otr_mode: index +d_course_royal_raceway_dl_A728: + symbol: d_course_royal_raceway_dl_A728 + type: gfx + offset: 0xA728 + otr_mode: index +d_course_royal_raceway_dl_A8A8: + symbol: d_course_royal_raceway_dl_A8A8 + type: gfx + offset: 0xA8A8 + otr_mode: index +d_course_royal_raceway_dl_A9D0: + symbol: d_course_royal_raceway_dl_A9D0 + type: gfx + offset: 0xA9D0 + otr_mode: index +d_course_royal_raceway_dl_AB28: + symbol: d_course_royal_raceway_dl_AB28 + type: gfx + offset: 0xAB28 + otr_mode: index +d_course_royal_raceway_dl_AC28: + symbol: d_course_royal_raceway_dl_AC28 + type: gfx + offset: 0xAC28 + otr_mode: index +d_course_royal_raceway_dl_AD90: + symbol: d_course_royal_raceway_dl_AD90 + type: gfx + offset: 0xAD90 + otr_mode: index +d_course_royal_raceway_dl_AE70: + symbol: d_course_royal_raceway_dl_AE70 + type: gfx + offset: 0xAE70 + otr_mode: index +d_course_royal_raceway_dl_AFB0: + symbol: d_course_royal_raceway_dl_AFB0 + type: gfx + offset: 0xAFB0 + otr_mode: index +d_course_royal_raceway_dl_B040: + symbol: d_course_royal_raceway_dl_B040 + type: gfx + offset: 0xB040 + otr_mode: index +d_course_royal_raceway_dl_B188: + symbol: d_course_royal_raceway_dl_B188 + type: gfx + offset: 0xB188 + otr_mode: index +d_course_royal_raceway_dl_B230: + symbol: d_course_royal_raceway_dl_B230 + type: gfx + offset: 0xB230 + otr_mode: index +d_course_royal_raceway_dl_B2E0: + symbol: d_course_royal_raceway_dl_B2E0 + type: gfx + offset: 0xB2E0 + otr_mode: index +d_course_royal_raceway_dl_B3E8: + symbol: d_course_royal_raceway_dl_B3E8 + type: gfx + offset: 0xB3E8 + otr_mode: index +d_course_royal_raceway_dl_B508: + symbol: d_course_royal_raceway_dl_B508 + type: gfx + offset: 0xB508 + otr_mode: index +d_course_royal_raceway_tree_model: + symbol: d_course_royal_raceway_tree_model + type: vtx + offset: 0xD460 + count: 4 +d_course_royal_raceway_dl_tree: + symbol: d_course_royal_raceway_dl_tree + type: gfx + offset: 0xD4A0 +d_royal_raceway_peaches_castle_tree_model: + symbol: d_royal_raceway_peaches_castle_tree_model + type: vtx + offset: 0xD538 + count: 4 +d_course_royal_raceway_dl_castle_tree: + symbol: d_course_royal_raceway_dl_castle_tree + type: gfx + offset: 0xD578 +d_course_royal_raceway_piranha_plant_model: + symbol: d_course_royal_raceway_piranha_plant_model + type: vtx + offset: 0xD810 + count: 4 +d_course_royal_raceway_dl_piranha_plant: + symbol: d_course_royal_raceway_dl_piranha_plant + type: gfx + offset: 0xD850 + otr_mode: index +d_course_royal_raceway_dl_D8E8: + symbol: d_course_royal_raceway_dl_D8E8 + type: gfx + offset: 0xD8E8 + otr_mode: index diff --git a/yamls/us/models/tracks/royal_raceway/royal_raceway_displaylists.yml b/yamls/us/models/tracks/royal_raceway/royal_raceway_displaylists.yml new file mode 100644 index 000000000..221f5ae44 --- /dev/null +++ b/yamls/us/models/tracks/royal_raceway/royal_raceway_displaylists.yml @@ -0,0 +1,2124 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x8FAFF0 + no_compression: true + segments: + - [0x0F, 0x8FAFF0] + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees3"] + - [0x03009800, "textures/other_textures/gTextureTrees7"] + - [0x0300A000, "textures/other_textures/gTexturePiranhaPlant1"] + - [0x0300A800, "textures/other_textures/gTexturePiranhaPlant2"] + - [0x0300B000, "textures/other_textures/gTexturePiranhaPlant3"] + - [0x0300B800, "textures/other_textures/gTexturePiranhaPlant4"] + - [0x0300C000, "textures/other_textures/gTexturePiranhaPlant5"] + - [0x0300C800, "textures/other_textures/gTexturePiranhaPlant6"] + - [0x0300D000, "textures/other_textures/gTexturePiranhaPlant7"] + - [0x0300D800, "textures/other_textures/gTexturePiranhaPlant8"] + - [0x0300E000, "textures/other_textures/gTexturePiranhaPlant9"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_64619C"] + - [0x05000800, "textures/other_textures/texture_645134"] + - [0x05001000, "textures/other_textures/wood_door_1"] + - [0x05002000, "textures/other_textures/texture_64BB60"] + - [0x05002800, "textures/other_textures/grass_3"] + - [0x05003000, "textures/other_textures/texture_64F9E8"] + - [0x05004000, "textures/other_textures/flag_red"] + - [0x05004800, "textures/other_textures/crown_jewel_blue"] + - [0x05005000, "textures/other_textures/crown"] + - [0x05005800, "textures/other_textures/crown_jewel_pink"] + - [0x05006000, "textures/other_textures/sign_koopa_air_0"] + - [0x05007000, "textures/other_textures/sign_koopa_air_1"] + - [0x05008000, "textures/other_textures/texture_6684F8"] + - [0x05008800, "textures/other_textures/sign_luigis_0"] + - [0x05009800, "textures/other_textures/sign_luigis_1"] + - [0x0500A800, "textures/other_textures/sign_mario_star_0"] + - [0x0500B800, "textures/other_textures/sign_mario_star_1"] + - [0x0500C800, "textures/other_textures/texture_66CA98"] + - [0x0500D000, "textures/other_textures/checkerboard_pink"] + - [0x0500D800, "textures/other_textures/texture_670AC8"] + - [0x0500E800, "textures/other_textures/road_0"] + - [0x0500F800, "textures/other_textures/road_finish_0"] + - [0x05010800, "textures/other_textures/sign_yoshi"] + - [0x05011800, "textures/other_textures/checkerboard_blue_gray"] + - [0x05012800, "textures/other_textures/castle_bricks"] + - [0x05013800, "textures/other_textures/castle_bridge"] + - [0x05014000, "textures/other_textures/grass_8"] + - [0x05014800, "textures/other_textures/grass_9"] + - [0x05015000, "textures/other_textures/texture_6646B8"] + - [0x05016000, "textures/other_textures/texture_664408"] + - [0x05017000, "textures/other_textures/bricks_red"] + - [0x05018000, "textures/other_textures/texture_665C0C"] + - [0x05018800, "textures/other_textures/texture_6661AC"] + - [0x05019000, "textures/other_textures/texture_6663A4"] + - [0x05019800, "textures/other_textures/texture_667BAC"] + - [0x0501A000, "textures/other_textures/flag_red_2"] + - [0x0501A800, "textures/other_textures/texture_66DB60"] + - [0x0501B000, "textures/other_textures/stainglass_peach_0"] + - [0x0501C000, "textures/other_textures/stainglass_peach_1"] + - [0x0501D000, "textures/other_textures/fence_post_wooden"] + - [0x0501E000, "textures/other_textures/texture_648508"] + - [0x0501F000, "textures/other_textures/texture_6449D4"] + - [0x0501F800, "textures/other_textures/texture_67FE0C"] + # Segment 7 + - [0x7000000, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_0"] + - [0x70000A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A8"] + - [0x7000130, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_130"] + - [0x70001A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1A8"] + - [0x70001C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1C8"] + - [0x7000230, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_230"] + - [0x70002A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2A8"] + - [0x7000320, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_320"] + - [0x7000340, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_340"] + - [0x70004D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4D0"] + - [0x70004E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4E0"] + - [0x7000548, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_548"] + - [0x7000558, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_558"] + - [0x70005D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5D8"] + - [0x7000650, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_650"] + - [0x7000668, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_668"] + - [0x70006D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D0"] + - [0x70006E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6E0"] + - [0x7000750, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_750"] + - [0x70007C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C0"] + - [0x7000840, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_840"] + - [0x7000860, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_860"] + - [0x70008A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8A0"] + - [0x70008B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B0"] + - [0x7000930, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_930"] + - [0x70009C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9C8"] + - [0x7000AB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AB8"] + - [0x7000B78, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B78"] + - [0x7000C38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_C38"] + - [0x7000C68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_C68"] + - [0x7000CE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_CE0"] + - [0x7000CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_CF0"] + - [0x7000E88, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_E88"] + - [0x7000E98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_E98"] + - [0x7000F88, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_F88"] + - [0x7001098, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1098"] + - [0x70011A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_11A8"] + - [0x70011C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_11C8"] + - [0x70012B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_12B0"] + - [0x7001438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1438"] + - [0x7001450, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1450"] + - [0x70014C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_14C8"] + - [0x7001548, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1548"] + - [0x70015D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_15D8"] + - [0x7001640, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1640"] + - [0x70016B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_16B8"] + - [0x7001720, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1720"] + - [0x7001788, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1788"] + - [0x70017F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_17F8"] + - [0x7001860, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1860"] + - [0x70018D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_18D8"] + - [0x7001940, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1940"] + - [0x70019B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_19B0"] + - [0x7001A30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1A30"] + - [0x7001AA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1AA0"] + - [0x7001B18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1B18"] + - [0x7001B98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1B98"] + - [0x7001C48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1C48"] + - [0x7001CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1CF0"] + - [0x7001D68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1D68"] + - [0x7001DF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1DF0"] + - [0x7001E60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1E60"] + - [0x7001EF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1EF0"] + - [0x7001F58, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1F58"] + - [0x7001FE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1FE8"] + - [0x70020A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_20A0"] + - [0x7002110, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2110"] + - [0x70021B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_21B8"] + - [0x7002230, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2230"] + - [0x70022C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_22C0"] + - [0x7002370, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2370"] + - [0x70023F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_23F8"] + - [0x7002478, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2478"] + - [0x7002530, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2530"] + - [0x70025E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_25E0"] + - [0x70026B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_26B0"] + - [0x7002758, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2758"] + - [0x70027E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_27E0"] + - [0x7002870, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2870"] + - [0x70028D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_28D8"] + - [0x7002950, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2950"] + - [0x7002A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2A10"] + - [0x7002AC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2AC8"] + - [0x7002B38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2B38"] + - [0x7002BA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2BA0"] + - [0x7002C08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2C08"] + - [0x7002CF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2CF8"] + - [0x7002D80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2D80"] + - [0x7002E08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2E08"] + - [0x7002EE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2EE0"] + - [0x7002F70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2F70"] + - [0x7003018, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3018"] + - [0x7003090, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3090"] + - [0x7003118, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3118"] + - [0x7003190, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3190"] + - [0x7003218, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3218"] + - [0x7003268, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3268"] + - [0x70032F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_32F0"] + - [0x7003368, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3368"] + - [0x70033D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_33D8"] + - [0x7003440, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3440"] + - [0x70034C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_34C0"] + - [0x7003540, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3540"] + - [0x7003628, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3628"] + - [0x70036B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_36B8"] + - [0x7003728, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3728"] + - [0x7003790, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3790"] + - [0x70037E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_37E8"] + - [0x7003908, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3908"] + - [0x7003978, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3978"] + - [0x7003B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3B50"] + - [0x7003B70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3B70"] + - [0x7003C18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3C18"] + - [0x7003CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3CF0"] + - [0x7003DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3DC0"] + - [0x7003E50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3E50"] + - [0x7003F18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3F18"] + - [0x7003FA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3FA8"] + - [0x7004078, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4078"] + - [0x7004118, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4118"] + - [0x70041A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_41A8"] + - [0x7004298, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4298"] + - [0x7004350, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4350"] + - [0x7004400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4400"] + - [0x70044B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_44B0"] + - [0x7004538, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4538"] + - [0x70045E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_45E0"] + - [0x70046E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_46E0"] + - [0x70047C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_47C0"] + - [0x7004890, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4890"] + - [0x7004968, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4968"] + - [0x7004A08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4A08"] + - [0x7004A80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4A80"] + - [0x7004B30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4B30"] + - [0x7004BC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4BC8"] + - [0x7004CC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4CC8"] + - [0x7004DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4DC0"] + - [0x7004E90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4E90"] + - [0x7004F20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4F20"] + - [0x7004F98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4F98"] + - [0x7005018, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5018"] + - [0x70050B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_50B0"] + - [0x7005138, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5138"] + - [0x70051E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_51E8"] + - [0x7005298, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5298"] + - [0x7005330, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5330"] + - [0x7005400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5400"] + - [0x70054A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_54A8"] + - [0x7005520, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5520"] + - [0x70055D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_55D0"] + - [0x70056A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_56A0"] + - [0x7005740, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5740"] + - [0x70057F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_57F0"] + - [0x70058E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_58E8"] + - [0x7005990, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5990"] + - [0x7005A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5A10"] + - [0x7005AA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5AA8"] + - [0x7005B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5B50"] + - [0x7005C00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5C00"] + - [0x7005D18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5D18"] + - [0x7005DC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5DC8"] + - [0x7005EF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5EF8"] + - [0x7006008, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6008"] + - [0x70060D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_60D8"] + - [0x7006228, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6228"] + - [0x7006328, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6328"] + - [0x70067E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_67E8"] + - [0x7006808, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6808"] + - [0x7006880, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6880"] + - [0x70068E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_68E8"] + - [0x7006950, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6950"] + - [0x70069B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_69B0"] + - [0x7006A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6A10"] + - [0x7006A80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6A80"] + - [0x7006B60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6B60"] + - [0x7006BE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6BE8"] + - [0x7006C58, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6C58"] + - [0x7006CC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6CC0"] + - [0x7006D18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D18"] + - [0x7006D98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D98"] + - [0x7006E20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6E20"] + - [0x7006EB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6EB8"] + - [0x7006F28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6F28"] + - [0x7006FB0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6FB0"] + - [0x7007020, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7020"] + - [0x70070B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_70B8"] + - [0x7007138, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7138"] + - [0x70071A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_71A0"] + - [0x7007278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7278"] + - [0x70072E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_72E8"] + - [0x7007360, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7360"] + - [0x70073E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_73E0"] + - [0x7007490, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7490"] + - [0x7007500, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7500"] + - [0x7007578, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7578"] + - [0x70075F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_75F8"] + - [0x7007680, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7680"] + - [0x7007718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7718"] + - [0x7007780, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7780"] + - [0x70077E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_77E8"] + - [0x7007868, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7868"] + - [0x70078E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_78E0"] + - [0x7007980, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7980"] + - [0x7007A18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7A18"] + - [0x7007AE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7AE8"] + - [0x7007B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7B50"] + - [0x7007BB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7BB8"] + - [0x7007C20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C20"] + - [0x7007C98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C98"] + - [0x7007D10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7D10"] + - [0x7007D90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7D90"] + - [0x7007E08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7E08"] + - [0x7007E80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7E80"] + - [0x7007EF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7EF8"] + - [0x7007F70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7F70"] + - [0x7007FD0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7FD0"] + - [0x7008040, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8040"] + - [0x70080C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_80C8"] + - [0x7008140, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8140"] + - [0x70081C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_81C8"] + - [0x7008278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8278"] + - [0x7008318, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8318"] + - [0x7008390, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8390"] + - [0x7008400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8400"] + - [0x7008470, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8470"] + - [0x70084E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_84E8"] + - [0x7008580, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8580"] + - [0x7008618, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8618"] + - [0x70086B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_86B8"] + - [0x7008740, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8740"] + - [0x7008810, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8810"] + - [0x7008888, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8888"] + - [0x7008900, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8900"] + - [0x7008988, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8988"] + - [0x70089F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_89F0"] + - [0x7008A60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8A60"] + - [0x7008AC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8AC0"] + - [0x7008B28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B28"] + - [0x7008B98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B98"] + - [0x7008C00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8C00"] + - [0x7008C70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8C70"] + - [0x7008CD8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8CD8"] + - [0x7008D48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8D48"] + - [0x7008DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8DC0"] + - [0x7008E30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8E30"] + - [0x7008EA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8EA8"] + - [0x7008F28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8F28"] + - [0x7008F98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8F98"] + - [0x7009008, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9008"] + - [0x7009080, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9080"] + - [0x70090F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_90F8"] + - [0x7009168, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9168"] + - [0x7009198, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9198"] + - [0x7009210, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9210"] + - [0x7009290, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9290"] + - [0x7009310, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9310"] + - [0x7009380, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9380"] + - [0x7009408, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9408"] + - [0x7009438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9438"] + - [0x70094B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_94B0"] + - [0x7009520, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9520"] + - [0x7009598, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9598"] + - [0x7009608, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9608"] + - [0x7009630, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9630"] + - [0x70096A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_96A8"] + - [0x7009718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9718"] + - [0x7009778, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9778"] + - [0x70097E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_97E8"] + - [0x7009848, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9848"] + - [0x70098B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_98B8"] + - [0x7009918, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9918"] + - [0x7009988, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9988"] + - [0x7009A38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9A38"] + - [0x7009A98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9A98"] + - [0x7009B08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9B08"] + - [0x7009B68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9B68"] + - [0x7009BD0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9BD0"] + - [0x7009C48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9C48"] + - [0x7009CB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9CB8"] + - [0x7009D20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9D20"] + - [0x7009DA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9DA0"] + - [0x7009E18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9E18"] + - [0x7009E98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9E98"] + - [0x7009F10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9F10"] + - [0x7009F80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9F80"] + - [0x7009FF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9FF0"] + - [0x700A050, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A050"] + - [0x700A0B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A0B0"] + - [0x700A128, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A128"] + - [0x700A1A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A1A0"] + - [0x700A210, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A210"] + - [0x700A278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A278"] + - [0x700A2D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A2D8"] + - [0x700A3C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A3C8"] + - [0x700A438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A438"] + - [0x700A4B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A4B8"] + - [0x700A538, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A538"] + - [0x700A5A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A5A0"] + - [0x700A618, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A618"] + - [0x700A648, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A648"] + - [0x700A6A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A6A8"] + - [0x700A718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A718"] + - [0x700A730, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A730"] + - [0x700A7D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A7D8"] + - [0x700A870, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A870"] + - [0x700A8F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A8F8"] + - [0x700A970, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A970"] + - [0x700A998, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A998"] + - [0x700AA10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AA10"] + - [0x700AA90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AA90"] + - [0x700AB28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AB28"] + - [0x700ABA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_ABA8"] + - [0x700AC30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AC30"] + - [0x700AC60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AC60"] + - [0x700ACE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_ACE0"] + - [0x700AD78, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AD78"] + - [0x700AE00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AE00"] + - [0x700AE70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AE70"] + - [0x700AEF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AEF8"] + - [0x700AF28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AF28"] + - [0x700B030, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B030"] + - [0x700B040, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B040"] + - [0x700B120, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B120"] + - [0x700B130, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B130"] + # Segment 4 + - [0x4000000, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000000"] + - [0x4000200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000200"] + - [0x4000380, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000380"] + - [0x4000480, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000480"] + - [0x4000500, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000500"] + - [0x4000600, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000600"] + - [0x4000700, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000700"] + - [0x4000900, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000900"] + - [0x4000b00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000B00"] + - [0x4000c00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C00"] + - [0x4000c40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C40"] + - [0x4000c80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000C80"] + - [0x4000d00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000D00"] + - [0x4000e40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000E40"] + - [0x4000f40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000F40"] + - [0x4000fc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04000FC0"] + - [0x4001080, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001080"] + - [0x4001140, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001140"] + - [0x4001280, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001280"] + - [0x40013e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040013E0"] + - [0x40015e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040015E0"] + - [0x40017e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040017E0"] + - [0x4001980, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001980"] + - [0x4001b80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001B80"] + - [0x4001c80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001C80"] + - [0x4001e80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001E80"] + - [0x4001f80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04001F80"] + - [0x40020a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040020A0"] + - [0x4002180, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002180"] + - [0x4002200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002200"] + - [0x4002340, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002340"] + - [0x4002380, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002380"] + - [0x4002400, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002400"] + - [0x4002440, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002440"] + - [0x4002480, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002480"] + - [0x4002580, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002580"] + - [0x4002600, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002600"] + - [0x4002680, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002680"] + - [0x4002780, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002780"] + - [0x4002800, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002800"] + - [0x4002880, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002880"] + - [0x4002980, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002980"] + - [0x4002ae0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002AE0"] + - [0x4002b30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002B30"] + - [0x4002d30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002D30"] + - [0x4002db0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002DB0"] + - [0x4002fb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04002FB0"] + - [0x4003120, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003120"] + - [0x4003220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003220"] + - [0x4003360, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003360"] + - [0x4003520, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003520"] + - [0x40035a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040035A0"] + - [0x40036a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040036A0"] + - [0x4003720, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003720"] + - [0x40037a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040037A0"] + - [0x4003850, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003850"] + - [0x40038d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040038D0"] + - [0x40039c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040039C0"] + - [0x4003a40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003A40"] + - [0x4003b00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003B00"] + - [0x4003c10, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003C10"] + - [0x4003cc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003CC0"] + - [0x4003dc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003DC0"] + - [0x4003fc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04003FC0"] + - [0x4004040, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004040"] + - [0x4004240, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004240"] + - [0x4004280, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004280"] + - [0x4004380, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004380"] + - [0x4004500, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004500"] + - [0x40045c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040045C0"] + - [0x4004780, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004780"] + - [0x4004800, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004800"] + - [0x40049c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040049C0"] + - [0x4004a60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004A60"] + - [0x4004aa0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004AA0"] + - [0x4004b60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004B60"] + - [0x4004d50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004D50"] + - [0x4004d90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004D90"] + - [0x4004eb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04004EB0"] + - [0x4005070, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005070"] + - [0x4005270, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005270"] + - [0x40052f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040052F0"] + - [0x4005470, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005470"] + - [0x40055b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040055B0"] + - [0x40057b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040057B0"] + - [0x4005870, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005870"] + - [0x4005a70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005A70"] + - [0x4005af0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005AF0"] + - [0x4005cf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005CF0"] + - [0x4005e90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04005E90"] + - [0x4006070, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006070"] + - [0x40060f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040060F0"] + - [0x4006290, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006290"] + - [0x4006450, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006450"] + - [0x40064d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040064D0"] + - [0x40065d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040065D0"] + - [0x40067d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040067D0"] + - [0x40068d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040068D0"] + - [0x4006ad0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006AD0"] + - [0x4006b90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006B90"] + - [0x4006c50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006C50"] + - [0x4006cd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006CD0"] + - [0x4006d50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006D50"] + - [0x4006ed0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04006ED0"] + - [0x4007050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007050"] + - [0x4007250, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007250"] + - [0x4007410, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007410"] + - [0x40075d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040075D0"] + - [0x40077d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040077D0"] + - [0x4007810, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007810"] + - [0x4007910, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007910"] + - [0x4007a90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007A90"] + - [0x4007b80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007B80"] + - [0x4007d00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007D00"] + - [0x4007dd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007DD0"] + - [0x4007ec0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007EC0"] + - [0x4007f70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007F70"] + - [0x4007fc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04007FC0"] + - [0x4008050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008050"] + - [0x4008100, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008100"] + - [0x40082f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040082F0"] + - [0x40083d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040083D0"] + - [0x40084e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040084E0"] + - [0x4008570, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008570"] + - [0x40085c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040085C0"] + - [0x4008640, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008640"] + - [0x4008750, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008750"] + - [0x4008790, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008790"] + - [0x4008850, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008850"] + - [0x4008910, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008910"] + - [0x40089d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040089D0"] + - [0x4008a80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008A80"] + - [0x4008b40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008B40"] + - [0x4008c00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008C00"] + - [0x4008e00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008E00"] + - [0x4008f20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04008F20"] + - [0x4009120, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009120"] + - [0x4009320, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009320"] + - [0x40093e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040093E0"] + - [0x40095d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040095D0"] + - [0x40097c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040097C0"] + - [0x4009820, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009820"] + - [0x4009a00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009A00"] + - [0x4009a60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009A60"] + - [0x4009c60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009C60"] + - [0x4009e40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009E40"] + - [0x4009ea0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04009EA0"] + - [0x400a080, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A080"] + - [0x400a0e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A0E0"] + - [0x400a2c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A2C0"] + - [0x400a4b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A4B0"] + - [0x400a570, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A570"] + - [0x400a770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A770"] + - [0x400a800, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A800"] + - [0x400a9e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400A9E0"] + - [0x400aa40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AA40"] + - [0x400ac20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AC20"] + - [0x400ae00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AE00"] + - [0x400afe0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400AFE0"] + - [0x400b040, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B040"] + - [0x400b240, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B240"] + - [0x400b3f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B3F0"] + - [0x400b5d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B5D0"] + - [0x400b770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B770"] + - [0x400b950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400B950"] + - [0x400bb30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BB30"] + - [0x400bd20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BD20"] + - [0x400bf00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400BF00"] + - [0x400c050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C050"] + - [0x400c230, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C230"] + - [0x400c410, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C410"] + - [0x400c5f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C5F0"] + - [0x400c6e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C6E0"] + - [0x400c8d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400C8D0"] + - [0x400cac0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CAC0"] + - [0x400cbb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CBB0"] + - [0x400cd90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CD90"] + - [0x400cf90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CF90"] + - [0x400cff0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400CFF0"] + - [0x400d1f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D1F0"] + - [0x400d3e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D3E0"] + - [0x400d4a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D4A0"] + - [0x400d680, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D680"] + - [0x400d770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D770"] + - [0x400d8f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400D8F0"] + - [0x400daf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DAF0"] + - [0x400dc70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DC70"] + - [0x400de50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DE50"] + - [0x400df10, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400DF10"] + - [0x400e0f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E0F0"] + - [0x400e2f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E2F0"] + - [0x400e4d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E4D0"] + - [0x400e590, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E590"] + - [0x400e770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E770"] + - [0x400e950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400E950"] + - [0x400eb40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EB40"] + - [0x400eb70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EB70"] + - [0x400ed50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400ED50"] + - [0x400edb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EDB0"] + - [0x400eed0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400EED0"] + - [0x400f050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F050"] + - [0x400f250, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F250"] + - [0x400f2b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F2B0"] + - [0x400f4a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F4A0"] + - [0x400f690, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F690"] + - [0x400f7d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F7D0"] + - [0x400f9c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400F9C0"] + - [0x400fb40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FB40"] + - [0x400fd20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FD20"] + - [0x400fd80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FD80"] + - [0x400ff80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0400FF80"] + - [0x4010180, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010180"] + - [0x40101b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040101B0"] + - [0x40103a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040103A0"] + - [0x40104b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040104B0"] + - [0x4010620, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010620"] + - [0x4010820, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010820"] + - [0x4010950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010950"] + - [0x4010b40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010B40"] + - [0x4010d20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010D20"] + - [0x4010d70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010D70"] + - [0x4010f60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04010F60"] + - [0x4011020, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011020"] + - [0x4011220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011220"] + - [0x4011360, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011360"] + - [0x4011550, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011550"] + - [0x4011750, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011750"] + - [0x4011950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011950"] + - [0x4011b30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011B30"] + - [0x4011c50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011C50"] + - [0x4011de0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011DE0"] + - [0x4011fc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04011FC0"] + - [0x4012050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012050"] + - [0x4012250, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012250"] + - [0x4012370, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012370"] + - [0x4012550, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012550"] + - [0x4012690, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012690"] + - [0x4012870, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012870"] + - [0x4012a50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012A50"] + - [0x4012c40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012C40"] + - [0x4012df0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012DF0"] + - [0x4012fd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04012FD0"] + - [0x4013110, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013110"] + - [0x40132f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040132F0"] + - [0x40134f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040134F0"] + - [0x40136f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040136F0"] + - [0x40138d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040138D0"] + - [0x4013920, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013920"] + - [0x4013b00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013B00"] + - [0x4013cf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013CF0"] + - [0x4013ef0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013EF0"] + - [0x4013f60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013F60"] + - [0x4013fa0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04013FA0"] + - [0x40140f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040140F0"] + - [0x40142d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040142D0"] + - [0x40143e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040143E0"] + - [0x40145e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040145E0"] + - [0x4014620, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014620"] + - [0x4014820, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014820"] + - [0x4014a20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014A20"] + - [0x4014c20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014C20"] + - [0x4014d60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014D60"] + - [0x4014f60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04014F60"] + - [0x4015150, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015150"] + - [0x4015350, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015350"] + - [0x4015550, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015550"] + - [0x4015740, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015740"] + - [0x4015920, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015920"] + - [0x4015ae0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015AE0"] + - [0x4015cd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015CD0"] + - [0x4015eb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015EB0"] + - [0x4015ff0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04015FF0"] + - [0x4016140, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016140"] + - [0x4016200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016200"] + - [0x4016280, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016280"] + - [0x40162d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040162D0"] + - [0x4016330, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016330"] + - [0x4016430, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016430"] + - [0x4016610, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016610"] + - [0x4016810, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016810"] + - [0x4016930, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016930"] + - [0x4016af0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016AF0"] + - [0x4016bb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016BB0"] + - [0x4016c40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016C40"] + - [0x4016df0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016DF0"] + - [0x4016ff0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04016FF0"] + - [0x40171e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040171E0"] + - [0x4017210, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017210"] + - [0x4017300, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017300"] + - [0x4017500, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017500"] + - [0x4017610, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017610"] + - [0x4017800, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017800"] + - [0x4017830, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017830"] + - [0x4017980, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017980"] + - [0x4017a40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017A40"] + - [0x4017b00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017B00"] + - [0x4017d00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017D00"] + - [0x4017d60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017D60"] + - [0x4017e80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04017E80"] + - [0x4018000, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018000"] + - [0x40181b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040181B0"] + - [0x4018240, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018240"] + - [0x4018340, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018340"] + - [0x4018430, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018430"] + - [0x40185a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040185A0"] + - [0x4018750, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018750"] + - [0x4018940, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018940"] + - [0x4018b30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018B30"] + - [0x4018b60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018B60"] + - [0x4018c20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018C20"] + - [0x4018ce0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018CE0"] + - [0x4018e90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018E90"] + - [0x4018f80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04018F80"] + - [0x4019160, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019160"] + - [0x4019200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019200"] + - [0x4019400, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019400"] + - [0x4019460, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019460"] + - [0x4019520, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019520"] + - [0x40195e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040195E0"] + - [0x4019690, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019690"] + - [0x40197e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x040197E0"] + - [0x4019940, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019940"] + - [0x4019af0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019AF0"] + - [0x4019c60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019C60"] + - [0x4019dc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019DC0"] + - [0x4019f10, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04019F10"] + - [0x401a050, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A050"] + - [0x401a0b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A0B0"] + - [0x401a1c0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A1C0"] + - [0x401a3b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A3B0"] + - [0x401a4e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A4E0"] + - [0x401a6e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A6E0"] + - [0x401a8e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401A8E0"] + - [0x401aa20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AA20"] + - [0x401ac10, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AC10"] + - [0x401aca0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401ACA0"] + - [0x401ae20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AE20"] + - [0x401af20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401AF20"] + - [0x401b010, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B010"] + - [0x401b160, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B160"] + - [0x401b340, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B340"] + - [0x401b370, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B370"] + - [0x401b550, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B550"] + - [0x401b5e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B5E0"] + - [0x401b7e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B7E0"] + - [0x401b870, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401B870"] + - [0x401ba70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BA70"] + - [0x401bb80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BB80"] + - [0x401bc50, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BC50"] + - [0x401bd60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BD60"] + - [0x401bdb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BDB0"] + - [0x401be40, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BE40"] + - [0x401be80, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BE80"] + - [0x401bed0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BED0"] + - [0x401bf60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BF60"] + - [0x401bfb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401BFB0"] + - [0x401c020, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C020"] + - [0x401c070, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C070"] + - [0x401c100, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C100"] + - [0x401c220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C220"] + - [0x401c2b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C2B0"] + - [0x401c3d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C3D0"] + - [0x401c4b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C4B0"] + - [0x401c590, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C590"] + - [0x401c6f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C6F0"] + - [0x401c860, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C860"] + - [0x401c980, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401C980"] + - [0x401cb00, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CB00"] + - [0x401ccc0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CCC0"] + - [0x401ce90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CE90"] + - [0x401cf60, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401CF60"] + - [0x401d150, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D150"] + - [0x401d200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D200"] + - [0x401d260, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D260"] + - [0x401d320, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D320"] + - [0x401d3b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D3B0"] + - [0x401d4b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D4B0"] + - [0x401d570, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D570"] + - [0x401d5b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D5B0"] + - [0x401d670, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D670"] + - [0x401d6b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D6B0"] + - [0x401d770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D770"] + - [0x401d7b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D7B0"] + - [0x401d870, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D870"] + - [0x401d8b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D8B0"] + - [0x401d8f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D8F0"] + - [0x401d930, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D930"] + - [0x401d9f0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401D9F0"] + - [0x401da30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DA30"] + - [0x401dab0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DAB0"] + - [0x401dbb0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DBB0"] + - [0x401dc70, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DC70"] + - [0x401dcf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DCF0"] + - [0x401de20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DE20"] + - [0x401df20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401DF20"] + - [0x401e060, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E060"] + - [0x401e160, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E160"] + - [0x401e220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E220"] + - [0x401e2e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E2E0"] + - [0x401e320, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E320"] + - [0x401e360, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E360"] + - [0x401e460, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E460"] + - [0x401e560, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E560"] + - [0x401e620, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E620"] + - [0x401e6a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E6A0"] + - [0x401e6e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E6E0"] + - [0x401e7a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E7A0"] + - [0x401e8e0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401E8E0"] + - [0x401ea20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EA20"] + - [0x401ea90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EA90"] + - [0x401eb90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EB90"] + - [0x401ebd0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EBD0"] + - [0x401ec90, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EC90"] + - [0x401ede0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EDE0"] + - [0x401eef0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401EEF0"] + - [0x401f000, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F000"] + - [0x401f0d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F0D0"] + - [0x401f220, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F220"] + - [0x401f3b0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F3B0"] + - [0x401f5a0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F5A0"] + - [0x401f5d0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F5D0"] + - [0x401f770, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F770"] + - [0x401f950, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401F950"] + - [0x401faf0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FAF0"] + - [0x401fce0, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FCE0"] + - [0x401fd30, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FD30"] + - [0x401ff20, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x0401FF20"] + - [0x4020040, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020040"] + - [0x4020200, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020200"] + - [0x4020400, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020400"] + - [0x4020600, "models/tracks/royal_raceway/royal_raceway_vertices/d_course_royal_raceway_vertex_0x04020600"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_royal_raceway_packed_dl_0: + symbol: d_course_royal_raceway_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_royal_raceway_packed_dl_A8: + symbol: d_course_royal_raceway_packed_dl_A8 + type: MK64:PACKED_GFX + offset: 0x3E +d_course_royal_raceway_packed_dl_130: + symbol: d_course_royal_raceway_packed_dl_130 + type: MK64:PACKED_GFX + offset: 0x68 +d_course_royal_raceway_packed_dl_1A8: + symbol: d_course_royal_raceway_packed_dl_1A8 + type: MK64:PACKED_GFX + offset: 0x88 +d_course_royal_raceway_packed_dl_1C8: + symbol: d_course_royal_raceway_packed_dl_1C8 + type: MK64:PACKED_GFX + offset: 0x92 +d_course_royal_raceway_packed_dl_230: + symbol: d_course_royal_raceway_packed_dl_230 + type: MK64:PACKED_GFX + offset: 0xA8 +d_course_royal_raceway_packed_dl_2A8: + symbol: d_course_royal_raceway_packed_dl_2A8 + type: MK64:PACKED_GFX + offset: 0xC8 +d_course_royal_raceway_packed_dl_320: + symbol: d_course_royal_raceway_packed_dl_320 + type: MK64:PACKED_GFX + offset: 0xE8 +d_course_royal_raceway_packed_dl_340: + symbol: d_course_royal_raceway_packed_dl_340 + type: MK64:PACKED_GFX + offset: 0xF2 +d_course_royal_raceway_packed_dl_4D0: + symbol: d_course_royal_raceway_packed_dl_4D0 + type: MK64:PACKED_GFX + offset: 0x183 +d_course_royal_raceway_packed_dl_4E0: + symbol: d_course_royal_raceway_packed_dl_4E0 + type: MK64:PACKED_GFX + offset: 0x187 +d_course_royal_raceway_packed_dl_548: + symbol: d_course_royal_raceway_packed_dl_548 + type: MK64:PACKED_GFX + offset: 0x19D +d_course_royal_raceway_packed_dl_558: + symbol: d_course_royal_raceway_packed_dl_558 + type: MK64:PACKED_GFX + offset: 0x1A1 +d_course_royal_raceway_packed_dl_5D8: + symbol: d_course_royal_raceway_packed_dl_5D8 + type: MK64:PACKED_GFX + offset: 0x1C6 +d_course_royal_raceway_packed_dl_650: + symbol: d_course_royal_raceway_packed_dl_650 + type: MK64:PACKED_GFX + offset: 0x1E6 +d_course_royal_raceway_packed_dl_668: + symbol: d_course_royal_raceway_packed_dl_668 + type: MK64:PACKED_GFX + offset: 0x1ED +d_course_royal_raceway_packed_dl_6D0: + symbol: d_course_royal_raceway_packed_dl_6D0 + type: MK64:PACKED_GFX + offset: 0x203 +d_course_royal_raceway_packed_dl_6E0: + symbol: d_course_royal_raceway_packed_dl_6E0 + type: MK64:PACKED_GFX + offset: 0x207 +d_course_royal_raceway_packed_dl_750: + symbol: d_course_royal_raceway_packed_dl_750 + type: MK64:PACKED_GFX + offset: 0x222 +d_course_royal_raceway_packed_dl_7C0: + symbol: d_course_royal_raceway_packed_dl_7C0 + type: MK64:PACKED_GFX + offset: 0x23D +d_course_royal_raceway_packed_dl_840: + symbol: d_course_royal_raceway_packed_dl_840 + type: MK64:PACKED_GFX + offset: 0x262 +d_course_royal_raceway_packed_dl_860: + symbol: d_course_royal_raceway_packed_dl_860 + type: MK64:PACKED_GFX + offset: 0x26C +d_course_royal_raceway_packed_dl_8A0: + symbol: d_course_royal_raceway_packed_dl_8A0 + type: MK64:PACKED_GFX + offset: 0x282 +d_course_royal_raceway_packed_dl_8B0: + symbol: d_course_royal_raceway_packed_dl_8B0 + type: MK64:PACKED_GFX + offset: 0x286 +d_course_royal_raceway_packed_dl_930: + symbol: d_course_royal_raceway_packed_dl_930 + type: MK64:PACKED_GFX + offset: 0x2AB +d_course_royal_raceway_packed_dl_9C8: + symbol: d_course_royal_raceway_packed_dl_9C8 + type: MK64:PACKED_GFX + offset: 0x2DF +d_course_royal_raceway_packed_dl_AB8: + symbol: d_course_royal_raceway_packed_dl_AB8 + type: MK64:PACKED_GFX + offset: 0x348 +d_course_royal_raceway_packed_dl_B78: + symbol: d_course_royal_raceway_packed_dl_B78 + type: MK64:PACKED_GFX + offset: 0x393 +d_course_royal_raceway_packed_dl_C38: + symbol: d_course_royal_raceway_packed_dl_C38 + type: MK64:PACKED_GFX + offset: 0x3DE +d_course_royal_raceway_packed_dl_C68: + symbol: d_course_royal_raceway_packed_dl_C68 + type: MK64:PACKED_GFX + offset: 0x3EE +d_course_royal_raceway_packed_dl_CE0: + symbol: d_course_royal_raceway_packed_dl_CE0 + type: MK64:PACKED_GFX + offset: 0x40E +d_course_royal_raceway_packed_dl_CF0: + symbol: d_course_royal_raceway_packed_dl_CF0 + type: MK64:PACKED_GFX + offset: 0x412 +d_course_royal_raceway_packed_dl_E88: + symbol: d_course_royal_raceway_packed_dl_E88 + type: MK64:PACKED_GFX + offset: 0x489 +d_course_royal_raceway_packed_dl_E98: + symbol: d_course_royal_raceway_packed_dl_E98 + type: MK64:PACKED_GFX + offset: 0x48D +d_course_royal_raceway_packed_dl_F88: + symbol: d_course_royal_raceway_packed_dl_F88 + type: MK64:PACKED_GFX + offset: 0x4BE +d_course_royal_raceway_packed_dl_1098: + symbol: d_course_royal_raceway_packed_dl_1098 + type: MK64:PACKED_GFX + offset: 0x503 +d_course_royal_raceway_packed_dl_11A8: + symbol: d_course_royal_raceway_packed_dl_11A8 + type: MK64:PACKED_GFX + offset: 0x548 +d_course_royal_raceway_packed_dl_11C8: + symbol: d_course_royal_raceway_packed_dl_11C8 + type: MK64:PACKED_GFX + offset: 0x552 +d_course_royal_raceway_packed_dl_12B0: + symbol: d_course_royal_raceway_packed_dl_12B0 + type: MK64:PACKED_GFX + offset: 0x595 +d_course_royal_raceway_packed_dl_1438: + symbol: d_course_royal_raceway_packed_dl_1438 + type: MK64:PACKED_GFX + offset: 0x630 +d_course_royal_raceway_packed_dl_1450: + symbol: d_course_royal_raceway_packed_dl_1450 + type: MK64:PACKED_GFX + offset: 0x637 +d_course_royal_raceway_packed_dl_14C8: + symbol: d_course_royal_raceway_packed_dl_14C8 + type: MK64:PACKED_GFX + offset: 0x657 +d_course_royal_raceway_packed_dl_1548: + symbol: d_course_royal_raceway_packed_dl_1548 + type: MK64:PACKED_GFX + offset: 0x67C +d_course_royal_raceway_packed_dl_15D8: + symbol: d_course_royal_raceway_packed_dl_15D8 + type: MK64:PACKED_GFX + offset: 0x6AB +d_course_royal_raceway_packed_dl_1640: + symbol: d_course_royal_raceway_packed_dl_1640 + type: MK64:PACKED_GFX + offset: 0x6C1 +d_course_royal_raceway_packed_dl_16B8: + symbol: d_course_royal_raceway_packed_dl_16B8 + type: MK64:PACKED_GFX + offset: 0x6E1 +d_course_royal_raceway_packed_dl_1720: + symbol: d_course_royal_raceway_packed_dl_1720 + type: MK64:PACKED_GFX + offset: 0x6F7 +d_course_royal_raceway_packed_dl_1788: + symbol: d_course_royal_raceway_packed_dl_1788 + type: MK64:PACKED_GFX + offset: 0x70D +d_course_royal_raceway_packed_dl_17F8: + symbol: d_course_royal_raceway_packed_dl_17F8 + type: MK64:PACKED_GFX + offset: 0x726 +d_course_royal_raceway_packed_dl_1860: + symbol: d_course_royal_raceway_packed_dl_1860 + type: MK64:PACKED_GFX + offset: 0x73C +d_course_royal_raceway_packed_dl_18D8: + symbol: d_course_royal_raceway_packed_dl_18D8 + type: MK64:PACKED_GFX + offset: 0x75C +d_course_royal_raceway_packed_dl_1940: + symbol: d_course_royal_raceway_packed_dl_1940 + type: MK64:PACKED_GFX + offset: 0x772 +d_course_royal_raceway_packed_dl_19B0: + symbol: d_course_royal_raceway_packed_dl_19B0 + type: MK64:PACKED_GFX + offset: 0x78D +d_course_royal_raceway_packed_dl_1A30: + symbol: d_course_royal_raceway_packed_dl_1A30 + type: MK64:PACKED_GFX + offset: 0x7B0 +d_course_royal_raceway_packed_dl_1AA0: + symbol: d_course_royal_raceway_packed_dl_1AA0 + type: MK64:PACKED_GFX + offset: 0x7C9 +d_course_royal_raceway_packed_dl_1B18: + symbol: d_course_royal_raceway_packed_dl_1B18 + type: MK64:PACKED_GFX + offset: 0x7E9 +d_course_royal_raceway_packed_dl_1B98: + symbol: d_course_royal_raceway_packed_dl_1B98 + type: MK64:PACKED_GFX + offset: 0x817 +d_course_royal_raceway_packed_dl_1C48: + symbol: d_course_royal_raceway_packed_dl_1C48 + type: MK64:PACKED_GFX + offset: 0x858 +d_course_royal_raceway_packed_dl_1CF0: + symbol: d_course_royal_raceway_packed_dl_1CF0 + type: MK64:PACKED_GFX + offset: 0x894 +d_course_royal_raceway_packed_dl_1D68: + symbol: d_course_royal_raceway_packed_dl_1D68 + type: MK64:PACKED_GFX + offset: 0x8B4 +d_course_royal_raceway_packed_dl_1DF0: + symbol: d_course_royal_raceway_packed_dl_1DF0 + type: MK64:PACKED_GFX + offset: 0x8DE +d_course_royal_raceway_packed_dl_1E60: + symbol: d_course_royal_raceway_packed_dl_1E60 + type: MK64:PACKED_GFX + offset: 0x8F9 +d_course_royal_raceway_packed_dl_1EF0: + symbol: d_course_royal_raceway_packed_dl_1EF0 + type: MK64:PACKED_GFX + offset: 0x928 +d_course_royal_raceway_packed_dl_1F58: + symbol: d_course_royal_raceway_packed_dl_1F58 + type: MK64:PACKED_GFX + offset: 0x93E +d_course_royal_raceway_packed_dl_1FE8: + symbol: d_course_royal_raceway_packed_dl_1FE8 + type: MK64:PACKED_GFX + offset: 0x96D +d_course_royal_raceway_packed_dl_20A0: + symbol: d_course_royal_raceway_packed_dl_20A0 + type: MK64:PACKED_GFX + offset: 0x992 +d_course_royal_raceway_packed_dl_2110: + symbol: d_course_royal_raceway_packed_dl_2110 + type: MK64:PACKED_GFX + offset: 0x9AD +d_course_royal_raceway_packed_dl_21B8: + symbol: d_course_royal_raceway_packed_dl_21B8 + type: MK64:PACKED_GFX + offset: 0x9E7 +d_course_royal_raceway_packed_dl_2230: + symbol: d_course_royal_raceway_packed_dl_2230 + type: MK64:PACKED_GFX + offset: 0xA07 +d_course_royal_raceway_packed_dl_22C0: + symbol: d_course_royal_raceway_packed_dl_22C0 + type: MK64:PACKED_GFX + offset: 0xA36 +d_course_royal_raceway_packed_dl_2370: + symbol: d_course_royal_raceway_packed_dl_2370 + type: MK64:PACKED_GFX + offset: 0xA77 +d_course_royal_raceway_packed_dl_23F8: + symbol: d_course_royal_raceway_packed_dl_23F8 + type: MK64:PACKED_GFX + offset: 0xAA1 +d_course_royal_raceway_packed_dl_2478: + symbol: d_course_royal_raceway_packed_dl_2478 + type: MK64:PACKED_GFX + offset: 0xAC6 +d_course_royal_raceway_packed_dl_2530: + symbol: d_course_royal_raceway_packed_dl_2530 + type: MK64:PACKED_GFX + offset: 0xB0C +d_course_royal_raceway_packed_dl_25E0: + symbol: d_course_royal_raceway_packed_dl_25E0 + type: MK64:PACKED_GFX + offset: 0xB4D +d_course_royal_raceway_packed_dl_26B0: + symbol: d_course_royal_raceway_packed_dl_26B0 + type: MK64:PACKED_GFX + offset: 0xBA2 +d_course_royal_raceway_packed_dl_2758: + symbol: d_course_royal_raceway_packed_dl_2758 + type: MK64:PACKED_GFX + offset: 0xBDE +d_course_royal_raceway_packed_dl_27E0: + symbol: d_course_royal_raceway_packed_dl_27E0 + type: MK64:PACKED_GFX + offset: 0xC08 +d_course_royal_raceway_packed_dl_2870: + symbol: d_course_royal_raceway_packed_dl_2870 + type: MK64:PACKED_GFX + offset: 0xC37 +d_course_royal_raceway_packed_dl_28D8: + symbol: d_course_royal_raceway_packed_dl_28D8 + type: MK64:PACKED_GFX + offset: 0xC4D +d_course_royal_raceway_packed_dl_2950: + symbol: d_course_royal_raceway_packed_dl_2950 + type: MK64:PACKED_GFX + offset: 0xC6D +d_course_royal_raceway_packed_dl_2A10: + symbol: d_course_royal_raceway_packed_dl_2A10 + type: MK64:PACKED_GFX + offset: 0xCB8 +d_course_royal_raceway_packed_dl_2AC8: + symbol: d_course_royal_raceway_packed_dl_2AC8 + type: MK64:PACKED_GFX + offset: 0xCFE +d_course_royal_raceway_packed_dl_2B38: + symbol: d_course_royal_raceway_packed_dl_2B38 + type: MK64:PACKED_GFX + offset: 0xD19 +d_course_royal_raceway_packed_dl_2BA0: + symbol: d_course_royal_raceway_packed_dl_2BA0 + type: MK64:PACKED_GFX + offset: 0xD2F +d_course_royal_raceway_packed_dl_2C08: + symbol: d_course_royal_raceway_packed_dl_2C08 + type: MK64:PACKED_GFX + offset: 0xD45 +d_course_royal_raceway_packed_dl_2CF8: + symbol: d_course_royal_raceway_packed_dl_2CF8 + type: MK64:PACKED_GFX + offset: 0xD9D +d_course_royal_raceway_packed_dl_2D80: + symbol: d_course_royal_raceway_packed_dl_2D80 + type: MK64:PACKED_GFX + offset: 0xDC7 +d_course_royal_raceway_packed_dl_2E08: + symbol: d_course_royal_raceway_packed_dl_2E08 + type: MK64:PACKED_GFX + offset: 0xDF1 +d_course_royal_raceway_packed_dl_2EE0: + symbol: d_course_royal_raceway_packed_dl_2EE0 + type: MK64:PACKED_GFX + offset: 0xE4B +d_course_royal_raceway_packed_dl_2F70: + symbol: d_course_royal_raceway_packed_dl_2F70 + type: MK64:PACKED_GFX + offset: 0xE7A +d_course_royal_raceway_packed_dl_3018: + symbol: d_course_royal_raceway_packed_dl_3018 + type: MK64:PACKED_GFX + offset: 0xEB6 +d_course_royal_raceway_packed_dl_3090: + symbol: d_course_royal_raceway_packed_dl_3090 + type: MK64:PACKED_GFX + offset: 0xED6 +d_course_royal_raceway_packed_dl_3118: + symbol: d_course_royal_raceway_packed_dl_3118 + type: MK64:PACKED_GFX + offset: 0xF00 +d_course_royal_raceway_packed_dl_3190: + symbol: d_course_royal_raceway_packed_dl_3190 + type: MK64:PACKED_GFX + offset: 0xF1E +d_course_royal_raceway_packed_dl_3218: + symbol: d_course_royal_raceway_packed_dl_3218 + type: MK64:PACKED_GFX + offset: 0xF48 +d_course_royal_raceway_packed_dl_3268: + symbol: d_course_royal_raceway_packed_dl_3268 + type: MK64:PACKED_GFX + offset: 0xF64 +d_course_royal_raceway_packed_dl_32F0: + symbol: d_course_royal_raceway_packed_dl_32F0 + type: MK64:PACKED_GFX + offset: 0xF8C +d_course_royal_raceway_packed_dl_3368: + symbol: d_course_royal_raceway_packed_dl_3368 + type: MK64:PACKED_GFX + offset: 0xFAA +d_course_royal_raceway_packed_dl_33D8: + symbol: d_course_royal_raceway_packed_dl_33D8 + type: MK64:PACKED_GFX + offset: 0xFC5 +d_course_royal_raceway_packed_dl_3440: + symbol: d_course_royal_raceway_packed_dl_3440 + type: MK64:PACKED_GFX + offset: 0xFD9 +d_course_royal_raceway_packed_dl_34C0: + symbol: d_course_royal_raceway_packed_dl_34C0 + type: MK64:PACKED_GFX + offset: 0xFFC +d_course_royal_raceway_packed_dl_3540: + symbol: d_course_royal_raceway_packed_dl_3540 + type: MK64:PACKED_GFX + offset: 0x101F +d_course_royal_raceway_packed_dl_3628: + symbol: d_course_royal_raceway_packed_dl_3628 + type: MK64:PACKED_GFX + offset: 0x1081 +d_course_royal_raceway_packed_dl_36B8: + symbol: d_course_royal_raceway_packed_dl_36B8 + type: MK64:PACKED_GFX + offset: 0x10AE +d_course_royal_raceway_packed_dl_3728: + symbol: d_course_royal_raceway_packed_dl_3728 + type: MK64:PACKED_GFX + offset: 0x10C7 +d_course_royal_raceway_packed_dl_3790: + symbol: d_course_royal_raceway_packed_dl_3790 + type: MK64:PACKED_GFX + offset: 0x10DB +d_course_royal_raceway_packed_dl_37E8: + symbol: d_course_royal_raceway_packed_dl_37E8 + type: MK64:PACKED_GFX + offset: 0x10FA +d_course_royal_raceway_packed_dl_3908: + symbol: d_course_royal_raceway_packed_dl_3908 + type: MK64:PACKED_GFX + offset: 0x113B +d_course_royal_raceway_packed_dl_3978: + symbol: d_course_royal_raceway_packed_dl_3978 + type: MK64:PACKED_GFX + offset: 0x1156 +d_course_royal_raceway_packed_dl_3B50: + symbol: d_course_royal_raceway_packed_dl_3B50 + type: MK64:PACKED_GFX + offset: 0x11EB +d_course_royal_raceway_packed_dl_3B70: + symbol: d_course_royal_raceway_packed_dl_3B70 + type: MK64:PACKED_GFX + offset: 0x11F5 +d_course_royal_raceway_packed_dl_3C18: + symbol: d_course_royal_raceway_packed_dl_3C18 + type: MK64:PACKED_GFX + offset: 0x122F +d_course_royal_raceway_packed_dl_3CF0: + symbol: d_course_royal_raceway_packed_dl_3CF0 + type: MK64:PACKED_GFX + offset: 0x1283 +d_course_royal_raceway_packed_dl_3DC0: + symbol: d_course_royal_raceway_packed_dl_3DC0 + type: MK64:PACKED_GFX + offset: 0x12D2 +d_course_royal_raceway_packed_dl_3E50: + symbol: d_course_royal_raceway_packed_dl_3E50 + type: MK64:PACKED_GFX + offset: 0x12FF +d_course_royal_raceway_packed_dl_3F18: + symbol: d_course_royal_raceway_packed_dl_3F18 + type: MK64:PACKED_GFX + offset: 0x134B +d_course_royal_raceway_packed_dl_3FA8: + symbol: d_course_royal_raceway_packed_dl_3FA8 + type: MK64:PACKED_GFX + offset: 0x1378 +d_course_royal_raceway_packed_dl_4078: + symbol: d_course_royal_raceway_packed_dl_4078 + type: MK64:PACKED_GFX + offset: 0x13C9 +d_course_royal_raceway_packed_dl_4118: + symbol: d_course_royal_raceway_packed_dl_4118 + type: MK64:PACKED_GFX + offset: 0x13FC +d_course_royal_raceway_packed_dl_41A8: + symbol: d_course_royal_raceway_packed_dl_41A8 + type: MK64:PACKED_GFX + offset: 0x1429 +d_course_royal_raceway_packed_dl_4298: + symbol: d_course_royal_raceway_packed_dl_4298 + type: MK64:PACKED_GFX + offset: 0x148E +d_course_royal_raceway_packed_dl_4350: + symbol: d_course_royal_raceway_packed_dl_4350 + type: MK64:PACKED_GFX + offset: 0x14D0 +d_course_royal_raceway_packed_dl_4400: + symbol: d_course_royal_raceway_packed_dl_4400 + type: MK64:PACKED_GFX + offset: 0x150F +d_course_royal_raceway_packed_dl_44B0: + symbol: d_course_royal_raceway_packed_dl_44B0 + type: MK64:PACKED_GFX + offset: 0x1550 +d_course_royal_raceway_packed_dl_4538: + symbol: d_course_royal_raceway_packed_dl_4538 + type: MK64:PACKED_GFX + offset: 0x1578 +d_course_royal_raceway_packed_dl_45E0: + symbol: d_course_royal_raceway_packed_dl_45E0 + type: MK64:PACKED_GFX + offset: 0x15B2 +d_course_royal_raceway_packed_dl_46E0: + symbol: d_course_royal_raceway_packed_dl_46E0 + type: MK64:PACKED_GFX + offset: 0x161F +d_course_royal_raceway_packed_dl_47C0: + symbol: d_course_royal_raceway_packed_dl_47C0 + type: MK64:PACKED_GFX + offset: 0x1676 +d_course_royal_raceway_packed_dl_4890: + symbol: d_course_royal_raceway_packed_dl_4890 + type: MK64:PACKED_GFX + offset: 0x16C7 +d_course_royal_raceway_packed_dl_4968: + symbol: d_course_royal_raceway_packed_dl_4968 + type: MK64:PACKED_GFX + offset: 0x171D +d_course_royal_raceway_packed_dl_4A08: + symbol: d_course_royal_raceway_packed_dl_4A08 + type: MK64:PACKED_GFX + offset: 0x1752 +d_course_royal_raceway_packed_dl_4A80: + symbol: d_course_royal_raceway_packed_dl_4A80 + type: MK64:PACKED_GFX + offset: 0x1772 +d_course_royal_raceway_packed_dl_4B30: + symbol: d_course_royal_raceway_packed_dl_4B30 + type: MK64:PACKED_GFX + offset: 0x17B1 +d_course_royal_raceway_packed_dl_4BC8: + symbol: d_course_royal_raceway_packed_dl_4BC8 + type: MK64:PACKED_GFX + offset: 0x17E3 +d_course_royal_raceway_packed_dl_4CC8: + symbol: d_course_royal_raceway_packed_dl_4CC8 + type: MK64:PACKED_GFX + offset: 0x1850 +d_course_royal_raceway_packed_dl_4DC0: + symbol: d_course_royal_raceway_packed_dl_4DC0 + type: MK64:PACKED_GFX + offset: 0x18B6 +d_course_royal_raceway_packed_dl_4E90: + symbol: d_course_royal_raceway_packed_dl_4E90 + type: MK64:PACKED_GFX + offset: 0x1902 +d_course_royal_raceway_packed_dl_4F20: + symbol: d_course_royal_raceway_packed_dl_4F20 + type: MK64:PACKED_GFX + offset: 0x192F +d_course_royal_raceway_packed_dl_4F98: + symbol: d_course_royal_raceway_packed_dl_4F98 + type: MK64:PACKED_GFX + offset: 0x194D +d_course_royal_raceway_packed_dl_5018: + symbol: d_course_royal_raceway_packed_dl_5018 + type: MK64:PACKED_GFX + offset: 0x1970 +d_course_royal_raceway_packed_dl_50B0: + symbol: d_course_royal_raceway_packed_dl_50B0 + type: MK64:PACKED_GFX + offset: 0x19A0 +d_course_royal_raceway_packed_dl_5138: + symbol: d_course_royal_raceway_packed_dl_5138 + type: MK64:PACKED_GFX + offset: 0x19C8 +d_course_royal_raceway_packed_dl_51E8: + symbol: d_course_royal_raceway_packed_dl_51E8 + type: MK64:PACKED_GFX + offset: 0x1A05 +d_course_royal_raceway_packed_dl_5298: + symbol: d_course_royal_raceway_packed_dl_5298 + type: MK64:PACKED_GFX + offset: 0x1A44 +d_course_royal_raceway_packed_dl_5330: + symbol: d_course_royal_raceway_packed_dl_5330 + type: MK64:PACKED_GFX + offset: 0x1A74 +d_course_royal_raceway_packed_dl_5400: + symbol: d_course_royal_raceway_packed_dl_5400 + type: MK64:PACKED_GFX + offset: 0x1AC1 +d_course_royal_raceway_packed_dl_54A8: + symbol: d_course_royal_raceway_packed_dl_54A8 + type: MK64:PACKED_GFX + offset: 0x1AFB +d_course_royal_raceway_packed_dl_5520: + symbol: d_course_royal_raceway_packed_dl_5520 + type: MK64:PACKED_GFX + offset: 0x1B1B +d_course_royal_raceway_packed_dl_55D0: + symbol: d_course_royal_raceway_packed_dl_55D0 + type: MK64:PACKED_GFX + offset: 0x1B58 +d_course_royal_raceway_packed_dl_56A0: + symbol: d_course_royal_raceway_packed_dl_56A0 + type: MK64:PACKED_GFX + offset: 0x1BA9 +d_course_royal_raceway_packed_dl_5740: + symbol: d_course_royal_raceway_packed_dl_5740 + type: MK64:PACKED_GFX + offset: 0x1BDE +d_course_royal_raceway_packed_dl_57F0: + symbol: d_course_royal_raceway_packed_dl_57F0 + type: MK64:PACKED_GFX + offset: 0x1C1B +d_course_royal_raceway_packed_dl_58E8: + symbol: d_course_royal_raceway_packed_dl_58E8 + type: MK64:PACKED_GFX + offset: 0x1C83 +d_course_royal_raceway_packed_dl_5990: + symbol: d_course_royal_raceway_packed_dl_5990 + type: MK64:PACKED_GFX + offset: 0x1CBD +d_course_royal_raceway_packed_dl_5A10: + symbol: d_course_royal_raceway_packed_dl_5A10 + type: MK64:PACKED_GFX + offset: 0x1CE0 +d_course_royal_raceway_packed_dl_5AA8: + symbol: d_course_royal_raceway_packed_dl_5AA8 + type: MK64:PACKED_GFX + offset: 0x1D10 +d_course_royal_raceway_packed_dl_5B50: + symbol: d_course_royal_raceway_packed_dl_5B50 + type: MK64:PACKED_GFX + offset: 0x1D4A +d_course_royal_raceway_packed_dl_5C00: + symbol: d_course_royal_raceway_packed_dl_5C00 + type: MK64:PACKED_GFX + offset: 0x1D87 +d_course_royal_raceway_packed_dl_5D18: + symbol: d_course_royal_raceway_packed_dl_5D18 + type: MK64:PACKED_GFX + offset: 0x1E01 +d_course_royal_raceway_packed_dl_5DC8: + symbol: d_course_royal_raceway_packed_dl_5DC8 + type: MK64:PACKED_GFX + offset: 0x1E3E +d_course_royal_raceway_packed_dl_5EF8: + symbol: d_course_royal_raceway_packed_dl_5EF8 + type: MK64:PACKED_GFX + offset: 0x1EC5 +d_course_royal_raceway_packed_dl_6008: + symbol: d_course_royal_raceway_packed_dl_6008 + type: MK64:PACKED_GFX + offset: 0x1F36 +d_course_royal_raceway_packed_dl_60D8: + symbol: d_course_royal_raceway_packed_dl_60D8 + type: MK64:PACKED_GFX + offset: 0x1F82 +d_course_royal_raceway_packed_dl_6228: + symbol: d_course_royal_raceway_packed_dl_6228 + type: MK64:PACKED_GFX + offset: 0x1FE1 +d_course_royal_raceway_packed_dl_6328: + symbol: d_course_royal_raceway_packed_dl_6328 + type: MK64:PACKED_GFX + offset: 0x2031 +d_course_royal_raceway_packed_dl_67E8: + symbol: d_course_royal_raceway_packed_dl_67E8 + type: MK64:PACKED_GFX + offset: 0x2279 +d_course_royal_raceway_packed_dl_6808: + symbol: d_course_royal_raceway_packed_dl_6808 + type: MK64:PACKED_GFX + offset: 0x2283 +d_course_royal_raceway_packed_dl_6880: + symbol: d_course_royal_raceway_packed_dl_6880 + type: MK64:PACKED_GFX + offset: 0x22A3 +d_course_royal_raceway_packed_dl_68E8: + symbol: d_course_royal_raceway_packed_dl_68E8 + type: MK64:PACKED_GFX + offset: 0x22B9 +d_course_royal_raceway_packed_dl_6950: + symbol: d_course_royal_raceway_packed_dl_6950 + type: MK64:PACKED_GFX + offset: 0x22CD +d_course_royal_raceway_packed_dl_69B0: + symbol: d_course_royal_raceway_packed_dl_69B0 + type: MK64:PACKED_GFX + offset: 0x22DE +d_course_royal_raceway_packed_dl_6A10: + symbol: d_course_royal_raceway_packed_dl_6A10 + type: MK64:PACKED_GFX + offset: 0x22EF +d_course_royal_raceway_packed_dl_6A80: + symbol: d_course_royal_raceway_packed_dl_6A80 + type: MK64:PACKED_GFX + offset: 0x230A +d_course_royal_raceway_packed_dl_6B60: + symbol: d_course_royal_raceway_packed_dl_6B60 + type: MK64:PACKED_GFX + offset: 0x2363 +d_course_royal_raceway_packed_dl_6BE8: + symbol: d_course_royal_raceway_packed_dl_6BE8 + type: MK64:PACKED_GFX + offset: 0x238B +d_course_royal_raceway_packed_dl_6C58: + symbol: d_course_royal_raceway_packed_dl_6C58 + type: MK64:PACKED_GFX + offset: 0x23A4 +d_course_royal_raceway_packed_dl_6CC0: + symbol: d_course_royal_raceway_packed_dl_6CC0 + type: MK64:PACKED_GFX + offset: 0x23B8 +d_course_royal_raceway_packed_dl_6D18: + symbol: d_course_royal_raceway_packed_dl_6D18 + type: MK64:PACKED_GFX + offset: 0x23D7 +d_course_royal_raceway_packed_dl_6D98: + symbol: d_course_royal_raceway_packed_dl_6D98 + type: MK64:PACKED_GFX + offset: 0x23FA +d_course_royal_raceway_packed_dl_6E20: + symbol: d_course_royal_raceway_packed_dl_6E20 + type: MK64:PACKED_GFX + offset: 0x2424 +d_course_royal_raceway_packed_dl_6EB8: + symbol: d_course_royal_raceway_packed_dl_6EB8 + type: MK64:PACKED_GFX + offset: 0x2452 +d_course_royal_raceway_packed_dl_6F28: + symbol: d_course_royal_raceway_packed_dl_6F28 + type: MK64:PACKED_GFX + offset: 0x246B +d_course_royal_raceway_packed_dl_6FB0: + symbol: d_course_royal_raceway_packed_dl_6FB0 + type: MK64:PACKED_GFX + offset: 0x2493 +d_course_royal_raceway_packed_dl_7020: + symbol: d_course_royal_raceway_packed_dl_7020 + type: MK64:PACKED_GFX + offset: 0x24AE +d_course_royal_raceway_packed_dl_70B8: + symbol: d_course_royal_raceway_packed_dl_70B8 + type: MK64:PACKED_GFX + offset: 0x24DE +d_course_royal_raceway_packed_dl_7138: + symbol: d_course_royal_raceway_packed_dl_7138 + type: MK64:PACKED_GFX + offset: 0x24FD +d_course_royal_raceway_packed_dl_71A0: + symbol: d_course_royal_raceway_packed_dl_71A0 + type: MK64:PACKED_GFX + offset: 0x2513 +d_course_royal_raceway_packed_dl_7278: + symbol: d_course_royal_raceway_packed_dl_7278 + type: MK64:PACKED_GFX + offset: 0x2554 +d_course_royal_raceway_packed_dl_72E8: + symbol: d_course_royal_raceway_packed_dl_72E8 + type: MK64:PACKED_GFX + offset: 0x256F +d_course_royal_raceway_packed_dl_7360: + symbol: d_course_royal_raceway_packed_dl_7360 + type: MK64:PACKED_GFX + offset: 0x258F +d_course_royal_raceway_packed_dl_73E0: + symbol: d_course_royal_raceway_packed_dl_73E0 + type: MK64:PACKED_GFX + offset: 0x25B4 +d_course_royal_raceway_packed_dl_7490: + symbol: d_course_royal_raceway_packed_dl_7490 + type: MK64:PACKED_GFX + offset: 0x25DE +d_course_royal_raceway_packed_dl_7500: + symbol: d_course_royal_raceway_packed_dl_7500 + type: MK64:PACKED_GFX + offset: 0x25F7 +d_course_royal_raceway_packed_dl_7578: + symbol: d_course_royal_raceway_packed_dl_7578 + type: MK64:PACKED_GFX + offset: 0x2617 +d_course_royal_raceway_packed_dl_75F8: + symbol: d_course_royal_raceway_packed_dl_75F8 + type: MK64:PACKED_GFX + offset: 0x263C +d_course_royal_raceway_packed_dl_7680: + symbol: d_course_royal_raceway_packed_dl_7680 + type: MK64:PACKED_GFX + offset: 0x2664 +d_course_royal_raceway_packed_dl_7718: + symbol: d_course_royal_raceway_packed_dl_7718 + type: MK64:PACKED_GFX + offset: 0x2692 +d_course_royal_raceway_packed_dl_7780: + symbol: d_course_royal_raceway_packed_dl_7780 + type: MK64:PACKED_GFX + offset: 0x26A8 +d_course_royal_raceway_packed_dl_77E8: + symbol: d_course_royal_raceway_packed_dl_77E8 + type: MK64:PACKED_GFX + offset: 0x26BE +d_course_royal_raceway_packed_dl_7868: + symbol: d_course_royal_raceway_packed_dl_7868 + type: MK64:PACKED_GFX + offset: 0x26E3 +d_course_royal_raceway_packed_dl_78E0: + symbol: d_course_royal_raceway_packed_dl_78E0 + type: MK64:PACKED_GFX + offset: 0x26FD +d_course_royal_raceway_packed_dl_7980: + symbol: d_course_royal_raceway_packed_dl_7980 + type: MK64:PACKED_GFX + offset: 0x2732 +d_course_royal_raceway_packed_dl_7A18: + symbol: d_course_royal_raceway_packed_dl_7A18 + type: MK64:PACKED_GFX + offset: 0x2762 +d_course_royal_raceway_packed_dl_7AE8: + symbol: d_course_royal_raceway_packed_dl_7AE8 + type: MK64:PACKED_GFX + offset: 0x27AE +d_course_royal_raceway_packed_dl_7B50: + symbol: d_course_royal_raceway_packed_dl_7B50 + type: MK64:PACKED_GFX + offset: 0x27C4 +d_course_royal_raceway_packed_dl_7BB8: + symbol: d_course_royal_raceway_packed_dl_7BB8 + type: MK64:PACKED_GFX + offset: 0x27DA +d_course_royal_raceway_packed_dl_7C20: + symbol: d_course_royal_raceway_packed_dl_7C20 + type: MK64:PACKED_GFX + offset: 0x27F0 +d_course_royal_raceway_packed_dl_7C98: + symbol: d_course_royal_raceway_packed_dl_7C98 + type: MK64:PACKED_GFX + offset: 0x2810 +d_course_royal_raceway_packed_dl_7D10: + symbol: d_course_royal_raceway_packed_dl_7D10 + type: MK64:PACKED_GFX + offset: 0x2830 +d_course_royal_raceway_packed_dl_7D90: + symbol: d_course_royal_raceway_packed_dl_7D90 + type: MK64:PACKED_GFX + offset: 0x2855 +d_course_royal_raceway_packed_dl_7E08: + symbol: d_course_royal_raceway_packed_dl_7E08 + type: MK64:PACKED_GFX + offset: 0x2875 +d_course_royal_raceway_packed_dl_7E80: + symbol: d_course_royal_raceway_packed_dl_7E80 + type: MK64:PACKED_GFX + offset: 0x2895 +d_course_royal_raceway_packed_dl_7EF8: + symbol: d_course_royal_raceway_packed_dl_7EF8 + type: MK64:PACKED_GFX + offset: 0x28B5 +d_course_royal_raceway_packed_dl_7F70: + symbol: d_course_royal_raceway_packed_dl_7F70 + type: MK64:PACKED_GFX + offset: 0x28D3 +d_course_royal_raceway_packed_dl_7FD0: + symbol: d_course_royal_raceway_packed_dl_7FD0 + type: MK64:PACKED_GFX + offset: 0x28E4 +d_course_royal_raceway_packed_dl_8040: + symbol: d_course_royal_raceway_packed_dl_8040 + type: MK64:PACKED_GFX + offset: 0x28FF +d_course_royal_raceway_packed_dl_80C8: + symbol: d_course_royal_raceway_packed_dl_80C8 + type: MK64:PACKED_GFX + offset: 0x2927 +d_course_royal_raceway_packed_dl_8140: + symbol: d_course_royal_raceway_packed_dl_8140 + type: MK64:PACKED_GFX + offset: 0x2945 +d_course_royal_raceway_packed_dl_81C8: + symbol: d_course_royal_raceway_packed_dl_81C8 + type: MK64:PACKED_GFX + offset: 0x296F +d_course_royal_raceway_packed_dl_8278: + symbol: d_course_royal_raceway_packed_dl_8278 + type: MK64:PACKED_GFX + offset: 0x29AC +d_course_royal_raceway_packed_dl_8318: + symbol: d_course_royal_raceway_packed_dl_8318 + type: MK64:PACKED_GFX + offset: 0x29DF +d_course_royal_raceway_packed_dl_8390: + symbol: d_course_royal_raceway_packed_dl_8390 + type: MK64:PACKED_GFX + offset: 0x29FF +d_course_royal_raceway_packed_dl_8400: + symbol: d_course_royal_raceway_packed_dl_8400 + type: MK64:PACKED_GFX + offset: 0x2A1A +d_course_royal_raceway_packed_dl_8470: + symbol: d_course_royal_raceway_packed_dl_8470 + type: MK64:PACKED_GFX + offset: 0x2A33 +d_course_royal_raceway_packed_dl_84E8: + symbol: d_course_royal_raceway_packed_dl_84E8 + type: MK64:PACKED_GFX + offset: 0x2A53 +d_course_royal_raceway_packed_dl_8580: + symbol: d_course_royal_raceway_packed_dl_8580 + type: MK64:PACKED_GFX + offset: 0x2A81 +d_course_royal_raceway_packed_dl_8618: + symbol: d_course_royal_raceway_packed_dl_8618 + type: MK64:PACKED_GFX + offset: 0x2AB1 +d_course_royal_raceway_packed_dl_86B8: + symbol: d_course_royal_raceway_packed_dl_86B8 + type: MK64:PACKED_GFX + offset: 0x2AE6 +d_course_royal_raceway_packed_dl_8740: + symbol: d_course_royal_raceway_packed_dl_8740 + type: MK64:PACKED_GFX + offset: 0x2B0E +d_course_royal_raceway_packed_dl_8810: + symbol: d_course_royal_raceway_packed_dl_8810 + type: MK64:PACKED_GFX + offset: 0x2B5A +d_course_royal_raceway_packed_dl_8888: + symbol: d_course_royal_raceway_packed_dl_8888 + type: MK64:PACKED_GFX + offset: 0x2B7A +d_course_royal_raceway_packed_dl_8900: + symbol: d_course_royal_raceway_packed_dl_8900 + type: MK64:PACKED_GFX + offset: 0x2B98 +d_course_royal_raceway_packed_dl_8988: + symbol: d_course_royal_raceway_packed_dl_8988 + type: MK64:PACKED_GFX + offset: 0x2BC0 +d_course_royal_raceway_packed_dl_89F0: + symbol: d_course_royal_raceway_packed_dl_89F0 + type: MK64:PACKED_GFX + offset: 0x2BD4 +d_course_royal_raceway_packed_dl_8A60: + symbol: d_course_royal_raceway_packed_dl_8A60 + type: MK64:PACKED_GFX + offset: 0x2BED +d_course_royal_raceway_packed_dl_8AC0: + symbol: d_course_royal_raceway_packed_dl_8AC0 + type: MK64:PACKED_GFX + offset: 0x2BFE +d_course_royal_raceway_packed_dl_8B28: + symbol: d_course_royal_raceway_packed_dl_8B28 + type: MK64:PACKED_GFX + offset: 0x2C12 +d_course_royal_raceway_packed_dl_8B98: + symbol: d_course_royal_raceway_packed_dl_8B98 + type: MK64:PACKED_GFX + offset: 0x2C2B +d_course_royal_raceway_packed_dl_8C00: + symbol: d_course_royal_raceway_packed_dl_8C00 + type: MK64:PACKED_GFX + offset: 0x2C3F +d_course_royal_raceway_packed_dl_8C70: + symbol: d_course_royal_raceway_packed_dl_8C70 + type: MK64:PACKED_GFX + offset: 0x2C58 +d_course_royal_raceway_packed_dl_8CD8: + symbol: d_course_royal_raceway_packed_dl_8CD8 + type: MK64:PACKED_GFX + offset: 0x2C6C +d_course_royal_raceway_packed_dl_8D48: + symbol: d_course_royal_raceway_packed_dl_8D48 + type: MK64:PACKED_GFX + offset: 0x2C85 +d_course_royal_raceway_packed_dl_8DC0: + symbol: d_course_royal_raceway_packed_dl_8DC0 + type: MK64:PACKED_GFX + offset: 0x2CA5 +d_course_royal_raceway_packed_dl_8E30: + symbol: d_course_royal_raceway_packed_dl_8E30 + type: MK64:PACKED_GFX + offset: 0x2CBE +d_course_royal_raceway_packed_dl_8EA8: + symbol: d_course_royal_raceway_packed_dl_8EA8 + type: MK64:PACKED_GFX + offset: 0x2CDE +d_course_royal_raceway_packed_dl_8F28: + symbol: d_course_royal_raceway_packed_dl_8F28 + type: MK64:PACKED_GFX + offset: 0x2D0C +d_course_royal_raceway_packed_dl_8F98: + symbol: d_course_royal_raceway_packed_dl_8F98 + type: MK64:PACKED_GFX + offset: 0x2D25 +d_course_royal_raceway_packed_dl_9008: + symbol: d_course_royal_raceway_packed_dl_9008 + type: MK64:PACKED_GFX + offset: 0x2D3E +d_course_royal_raceway_packed_dl_9080: + symbol: d_course_royal_raceway_packed_dl_9080 + type: MK64:PACKED_GFX + offset: 0x2D5E +d_course_royal_raceway_packed_dl_90F8: + symbol: d_course_royal_raceway_packed_dl_90F8 + type: MK64:PACKED_GFX + offset: 0x2D7E +d_course_royal_raceway_packed_dl_9168: + symbol: d_course_royal_raceway_packed_dl_9168 + type: MK64:PACKED_GFX + offset: 0x2D99 +d_course_royal_raceway_packed_dl_9198: + symbol: d_course_royal_raceway_packed_dl_9198 + type: MK64:PACKED_GFX + offset: 0x2DA9 +d_course_royal_raceway_packed_dl_9210: + symbol: d_course_royal_raceway_packed_dl_9210 + type: MK64:PACKED_GFX + offset: 0x2DC9 +d_course_royal_raceway_packed_dl_9290: + symbol: d_course_royal_raceway_packed_dl_9290 + type: MK64:PACKED_GFX + offset: 0x2DEE +d_course_royal_raceway_packed_dl_9310: + symbol: d_course_royal_raceway_packed_dl_9310 + type: MK64:PACKED_GFX + offset: 0x2E13 +d_course_royal_raceway_packed_dl_9380: + symbol: d_course_royal_raceway_packed_dl_9380 + type: MK64:PACKED_GFX + offset: 0x2E2C +d_course_royal_raceway_packed_dl_9408: + symbol: d_course_royal_raceway_packed_dl_9408 + type: MK64:PACKED_GFX + offset: 0x2E54 +d_course_royal_raceway_packed_dl_9438: + symbol: d_course_royal_raceway_packed_dl_9438 + type: MK64:PACKED_GFX + offset: 0x2E64 +d_course_royal_raceway_packed_dl_94B0: + symbol: d_course_royal_raceway_packed_dl_94B0 + type: MK64:PACKED_GFX + offset: 0x2E82 +d_course_royal_raceway_packed_dl_9520: + symbol: d_course_royal_raceway_packed_dl_9520 + type: MK64:PACKED_GFX + offset: 0x2E9B +d_course_royal_raceway_packed_dl_9598: + symbol: d_course_royal_raceway_packed_dl_9598 + type: MK64:PACKED_GFX + offset: 0x2EB7 +d_course_royal_raceway_packed_dl_9608: + symbol: d_course_royal_raceway_packed_dl_9608 + type: MK64:PACKED_GFX + offset: 0x2ED0 +d_course_royal_raceway_packed_dl_9630: + symbol: d_course_royal_raceway_packed_dl_9630 + type: MK64:PACKED_GFX + offset: 0x2EDD +d_course_royal_raceway_packed_dl_96A8: + symbol: d_course_royal_raceway_packed_dl_96A8 + type: MK64:PACKED_GFX + offset: 0x2EFD +d_course_royal_raceway_packed_dl_9718: + symbol: d_course_royal_raceway_packed_dl_9718 + type: MK64:PACKED_GFX + offset: 0x2F18 +d_course_royal_raceway_packed_dl_9778: + symbol: d_course_royal_raceway_packed_dl_9778 + type: MK64:PACKED_GFX + offset: 0x2F29 +d_course_royal_raceway_packed_dl_97E8: + symbol: d_course_royal_raceway_packed_dl_97E8 + type: MK64:PACKED_GFX + offset: 0x2F44 +d_course_royal_raceway_packed_dl_9848: + symbol: d_course_royal_raceway_packed_dl_9848 + type: MK64:PACKED_GFX + offset: 0x2F55 +d_course_royal_raceway_packed_dl_98B8: + symbol: d_course_royal_raceway_packed_dl_98B8 + type: MK64:PACKED_GFX + offset: 0x2F70 +d_course_royal_raceway_packed_dl_9918: + symbol: d_course_royal_raceway_packed_dl_9918 + type: MK64:PACKED_GFX + offset: 0x2F81 +d_course_royal_raceway_packed_dl_9988: + symbol: d_course_royal_raceway_packed_dl_9988 + type: MK64:PACKED_GFX + offset: 0x2F9C +d_course_royal_raceway_packed_dl_9A38: + symbol: d_course_royal_raceway_packed_dl_9A38 + type: MK64:PACKED_GFX + offset: 0x2FBC +d_course_royal_raceway_packed_dl_9A98: + symbol: d_course_royal_raceway_packed_dl_9A98 + type: MK64:PACKED_GFX + offset: 0x2FCD +d_course_royal_raceway_packed_dl_9B08: + symbol: d_course_royal_raceway_packed_dl_9B08 + type: MK64:PACKED_GFX + offset: 0x2FE8 +d_course_royal_raceway_packed_dl_9B68: + symbol: d_course_royal_raceway_packed_dl_9B68 + type: MK64:PACKED_GFX + offset: 0x2FF9 +d_course_royal_raceway_packed_dl_9BD0: + symbol: d_course_royal_raceway_packed_dl_9BD0 + type: MK64:PACKED_GFX + offset: 0x300F +d_course_royal_raceway_packed_dl_9C48: + symbol: d_course_royal_raceway_packed_dl_9C48 + type: MK64:PACKED_GFX + offset: 0x302F +d_course_royal_raceway_packed_dl_9CB8: + symbol: d_course_royal_raceway_packed_dl_9CB8 + type: MK64:PACKED_GFX + offset: 0x304A +d_course_royal_raceway_packed_dl_9D20: + symbol: d_course_royal_raceway_packed_dl_9D20 + type: MK64:PACKED_GFX + offset: 0x3060 +d_course_royal_raceway_packed_dl_9DA0: + symbol: d_course_royal_raceway_packed_dl_9DA0 + type: MK64:PACKED_GFX + offset: 0x3083 +d_course_royal_raceway_packed_dl_9E18: + symbol: d_course_royal_raceway_packed_dl_9E18 + type: MK64:PACKED_GFX + offset: 0x30A3 +d_course_royal_raceway_packed_dl_9E98: + symbol: d_course_royal_raceway_packed_dl_9E98 + type: MK64:PACKED_GFX + offset: 0x30C8 +d_course_royal_raceway_packed_dl_9F10: + symbol: d_course_royal_raceway_packed_dl_9F10 + type: MK64:PACKED_GFX + offset: 0x30E8 +d_course_royal_raceway_packed_dl_9F80: + symbol: d_course_royal_raceway_packed_dl_9F80 + type: MK64:PACKED_GFX + offset: 0x3103 +d_course_royal_raceway_packed_dl_9FF0: + symbol: d_course_royal_raceway_packed_dl_9FF0 + type: MK64:PACKED_GFX + offset: 0x311E +d_course_royal_raceway_packed_dl_A050: + symbol: d_course_royal_raceway_packed_dl_A050 + type: MK64:PACKED_GFX + offset: 0x312F +d_course_royal_raceway_packed_dl_A0B0: + symbol: d_course_royal_raceway_packed_dl_A0B0 + type: MK64:PACKED_GFX + offset: 0x3140 +d_course_royal_raceway_packed_dl_A128: + symbol: d_course_royal_raceway_packed_dl_A128 + type: MK64:PACKED_GFX + offset: 0x3160 +d_course_royal_raceway_packed_dl_A1A0: + symbol: d_course_royal_raceway_packed_dl_A1A0 + type: MK64:PACKED_GFX + offset: 0x3180 +d_course_royal_raceway_packed_dl_A210: + symbol: d_course_royal_raceway_packed_dl_A210 + type: MK64:PACKED_GFX + offset: 0x319B +d_course_royal_raceway_packed_dl_A278: + symbol: d_course_royal_raceway_packed_dl_A278 + type: MK64:PACKED_GFX + offset: 0x31B1 +d_course_royal_raceway_packed_dl_A2D8: + symbol: d_course_royal_raceway_packed_dl_A2D8 + type: MK64:PACKED_GFX + offset: 0x31C2 +d_course_royal_raceway_packed_dl_A3C8: + symbol: d_course_royal_raceway_packed_dl_A3C8 + type: MK64:PACKED_GFX + offset: 0x321A +d_course_royal_raceway_packed_dl_A438: + symbol: d_course_royal_raceway_packed_dl_A438 + type: MK64:PACKED_GFX + offset: 0x3235 +d_course_royal_raceway_packed_dl_A4B8: + symbol: d_course_royal_raceway_packed_dl_A4B8 + type: MK64:PACKED_GFX + offset: 0x325A +d_course_royal_raceway_packed_dl_A538: + symbol: d_course_royal_raceway_packed_dl_A538 + type: MK64:PACKED_GFX + offset: 0x327F +d_course_royal_raceway_packed_dl_A5A0: + symbol: d_course_royal_raceway_packed_dl_A5A0 + type: MK64:PACKED_GFX + offset: 0x3293 +d_course_royal_raceway_packed_dl_A618: + symbol: d_course_royal_raceway_packed_dl_A618 + type: MK64:PACKED_GFX + offset: 0x32B3 +d_course_royal_raceway_packed_dl_A648: + symbol: d_course_royal_raceway_packed_dl_A648 + type: MK64:PACKED_GFX + offset: 0x32C3 +d_course_royal_raceway_packed_dl_A6A8: + symbol: d_course_royal_raceway_packed_dl_A6A8 + type: MK64:PACKED_GFX + offset: 0x32D4 +d_course_royal_raceway_packed_dl_A718: + symbol: d_course_royal_raceway_packed_dl_A718 + type: MK64:PACKED_GFX + offset: 0x32EF +d_course_royal_raceway_packed_dl_A730: + symbol: d_course_royal_raceway_packed_dl_A730 + type: MK64:PACKED_GFX + offset: 0x32F6 +d_course_royal_raceway_packed_dl_A7D8: + symbol: d_course_royal_raceway_packed_dl_A7D8 + type: MK64:PACKED_GFX + offset: 0x3332 +d_course_royal_raceway_packed_dl_A870: + symbol: d_course_royal_raceway_packed_dl_A870 + type: MK64:PACKED_GFX + offset: 0x3364 +d_course_royal_raceway_packed_dl_A8F8: + symbol: d_course_royal_raceway_packed_dl_A8F8 + type: MK64:PACKED_GFX + offset: 0x338C +d_course_royal_raceway_packed_dl_A970: + symbol: d_course_royal_raceway_packed_dl_A970 + type: MK64:PACKED_GFX + offset: 0x33AA +d_course_royal_raceway_packed_dl_A998: + symbol: d_course_royal_raceway_packed_dl_A998 + type: MK64:PACKED_GFX + offset: 0x33B7 +d_course_royal_raceway_packed_dl_AA10: + symbol: d_course_royal_raceway_packed_dl_AA10 + type: MK64:PACKED_GFX + offset: 0x33D7 +d_course_royal_raceway_packed_dl_AA90: + symbol: d_course_royal_raceway_packed_dl_AA90 + type: MK64:PACKED_GFX + offset: 0x33FA +d_course_royal_raceway_packed_dl_AB28: + symbol: d_course_royal_raceway_packed_dl_AB28 + type: MK64:PACKED_GFX + offset: 0x3428 +d_course_royal_raceway_packed_dl_ABA8: + symbol: d_course_royal_raceway_packed_dl_ABA8 + type: MK64:PACKED_GFX + offset: 0x344B +d_course_royal_raceway_packed_dl_AC30: + symbol: d_course_royal_raceway_packed_dl_AC30 + type: MK64:PACKED_GFX + offset: 0x3473 +d_course_royal_raceway_packed_dl_AC60: + symbol: d_course_royal_raceway_packed_dl_AC60 + type: MK64:PACKED_GFX + offset: 0x3483 +d_course_royal_raceway_packed_dl_ACE0: + symbol: d_course_royal_raceway_packed_dl_ACE0 + type: MK64:PACKED_GFX + offset: 0x34A6 +d_course_royal_raceway_packed_dl_AD78: + symbol: d_course_royal_raceway_packed_dl_AD78 + type: MK64:PACKED_GFX + offset: 0x34D6 +d_course_royal_raceway_packed_dl_AE00: + symbol: d_course_royal_raceway_packed_dl_AE00 + type: MK64:PACKED_GFX + offset: 0x34FE +d_course_royal_raceway_packed_dl_AE70: + symbol: d_course_royal_raceway_packed_dl_AE70 + type: MK64:PACKED_GFX + offset: 0x3519 +d_course_royal_raceway_packed_dl_AEF8: + symbol: d_course_royal_raceway_packed_dl_AEF8 + type: MK64:PACKED_GFX + offset: 0x3541 +d_course_royal_raceway_packed_dl_AF28: + symbol: d_course_royal_raceway_packed_dl_AF28 + type: MK64:PACKED_GFX + offset: 0x3551 +d_course_royal_raceway_packed_dl_B030: + symbol: d_course_royal_raceway_packed_dl_B030 + type: MK64:PACKED_GFX + offset: 0x35E8 +d_course_royal_raceway_packed_dl_B040: + symbol: d_course_royal_raceway_packed_dl_B040 + type: MK64:PACKED_GFX + offset: 0x35EC +d_course_royal_raceway_packed_dl_B120: + symbol: d_course_royal_raceway_packed_dl_B120 + type: MK64:PACKED_GFX + offset: 0x363E +d_course_royal_raceway_packed_dl_B130: + symbol: d_course_royal_raceway_packed_dl_B130 + type: MK64:PACKED_GFX + offset: 0x3642 diff --git a/yamls/us/models/tracks/royal_raceway/royal_raceway_vertices.yml b/yamls/us/models/tracks/royal_raceway/royal_raceway_vertices.yml new file mode 100644 index 000000000..f8c3c73a6 --- /dev/null +++ b/yamls/us/models/tracks/royal_raceway/royal_raceway_vertices.yml @@ -0,0 +1,2595 @@ +:config: + segments: + - [0x0F, 0x8EC390] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_royal_raceway_vertex_0x04000000: + symbol: d_course_royal_raceway_vertex_0x04000000 + type: mk64:course_vtx + count: 50 + offset: 0x0 + +d_course_royal_raceway_vertex_0x04000200: + symbol: d_course_royal_raceway_vertex_0x04000200 + type: mk64:course_vtx + count: 36 + offset: 0x1c0 + +d_course_royal_raceway_vertex_0x04000380: + symbol: d_course_royal_raceway_vertex_0x04000380 + type: mk64:course_vtx + count: 22 + offset: 0x310 + +d_course_royal_raceway_vertex_0x04000480: + symbol: d_course_royal_raceway_vertex_0x04000480 + type: mk64:course_vtx + count: 8 + offset: 0x3f0 + +d_course_royal_raceway_vertex_0x04000500: + symbol: d_course_royal_raceway_vertex_0x04000500 + type: mk64:course_vtx + count: 22 + offset: 0x460 + +d_course_royal_raceway_vertex_0x04000600: + symbol: d_course_royal_raceway_vertex_0x04000600 + type: mk64:course_vtx + count: 22 + offset: 0x540 + +d_course_royal_raceway_vertex_0x04000700: + symbol: d_course_royal_raceway_vertex_0x04000700 + type: mk64:course_vtx + count: 50 + offset: 0x620 + +d_course_royal_raceway_vertex_0x04000900: + symbol: d_course_royal_raceway_vertex_0x04000900 + type: mk64:course_vtx + count: 50 + offset: 0x7e0 + +d_course_royal_raceway_vertex_0x04000B00: + symbol: d_course_royal_raceway_vertex_0x04000B00 + type: mk64:course_vtx + count: 22 + offset: 0x9a0 + +d_course_royal_raceway_vertex_0x04000C00: + symbol: d_course_royal_raceway_vertex_0x04000C00 + type: mk64:course_vtx + count: 4 + offset: 0xa80 + +d_course_royal_raceway_vertex_0x04000C40: + symbol: d_course_royal_raceway_vertex_0x04000C40 + type: mk64:course_vtx + count: 4 + offset: 0xab8 + +d_course_royal_raceway_vertex_0x04000C80: + symbol: d_course_royal_raceway_vertex_0x04000C80 + type: mk64:course_vtx + count: 8 + offset: 0xaf0 + +d_course_royal_raceway_vertex_0x04000D00: + symbol: d_course_royal_raceway_vertex_0x04000D00 + type: mk64:course_vtx + count: 32 + offset: 0xb60 + +d_course_royal_raceway_vertex_0x04000E40: + symbol: d_course_royal_raceway_vertex_0x04000E40 + type: mk64:course_vtx + count: 22 + offset: 0xc78 + +d_course_royal_raceway_vertex_0x04000F40: + symbol: d_course_royal_raceway_vertex_0x04000F40 + type: mk64:course_vtx + count: 8 + offset: 0xd58 + +d_course_royal_raceway_vertex_0x04000FC0: + symbol: d_course_royal_raceway_vertex_0x04000FC0 + type: mk64:course_vtx + count: 18 + offset: 0xdc8 + +d_course_royal_raceway_vertex_0x04001080: + symbol: d_course_royal_raceway_vertex_0x04001080 + type: mk64:course_vtx + count: 18 + offset: 0xe70 + +d_course_royal_raceway_vertex_0x04001140: + symbol: d_course_royal_raceway_vertex_0x04001140 + type: mk64:course_vtx + count: 32 + offset: 0xf18 + +d_course_royal_raceway_vertex_0x04001280: + symbol: d_course_royal_raceway_vertex_0x04001280 + type: mk64:course_vtx + count: 34 + offset: 0x1030 + +d_course_royal_raceway_vertex_0x040013E0: + symbol: d_course_royal_raceway_vertex_0x040013E0 + type: mk64:course_vtx + count: 50 + offset: 0x1164 + +d_course_royal_raceway_vertex_0x040015E0: + symbol: d_course_royal_raceway_vertex_0x040015E0 + type: mk64:course_vtx + count: 50 + offset: 0x1324 + +d_course_royal_raceway_vertex_0x040017E0: + symbol: d_course_royal_raceway_vertex_0x040017E0 + type: mk64:course_vtx + count: 38 + offset: 0x14e4 + +d_course_royal_raceway_vertex_0x04001980: + symbol: d_course_royal_raceway_vertex_0x04001980 + type: mk64:course_vtx + count: 50 + offset: 0x1650 + +d_course_royal_raceway_vertex_0x04001B80: + symbol: d_course_royal_raceway_vertex_0x04001B80 + type: mk64:course_vtx + count: 22 + offset: 0x1810 + +d_course_royal_raceway_vertex_0x04001C80: + symbol: d_course_royal_raceway_vertex_0x04001C80 + type: mk64:course_vtx + count: 50 + offset: 0x18f0 + +d_course_royal_raceway_vertex_0x04001E80: + symbol: d_course_royal_raceway_vertex_0x04001E80 + type: mk64:course_vtx + count: 22 + offset: 0x1ab0 + +d_course_royal_raceway_vertex_0x04001F80: + symbol: d_course_royal_raceway_vertex_0x04001F80 + type: mk64:course_vtx + count: 24 + offset: 0x1b90 + +d_course_royal_raceway_vertex_0x040020A0: + symbol: d_course_royal_raceway_vertex_0x040020A0 + type: mk64:course_vtx + count: 20 + offset: 0x1c8c + +d_course_royal_raceway_vertex_0x04002180: + symbol: d_course_royal_raceway_vertex_0x04002180 + type: mk64:course_vtx + count: 8 + offset: 0x1d50 + +d_course_royal_raceway_vertex_0x04002200: + symbol: d_course_royal_raceway_vertex_0x04002200 + type: mk64:course_vtx + count: 32 + offset: 0x1dc0 + +d_course_royal_raceway_vertex_0x04002340: + symbol: d_course_royal_raceway_vertex_0x04002340 + type: mk64:course_vtx + count: 4 + offset: 0x1ed8 + +d_course_royal_raceway_vertex_0x04002380: + symbol: d_course_royal_raceway_vertex_0x04002380 + type: mk64:course_vtx + count: 8 + offset: 0x1f10 + +d_course_royal_raceway_vertex_0x04002400: + symbol: d_course_royal_raceway_vertex_0x04002400 + type: mk64:course_vtx + count: 4 + offset: 0x1f80 + +d_course_royal_raceway_vertex_0x04002440: + symbol: d_course_royal_raceway_vertex_0x04002440 + type: mk64:course_vtx + count: 4 + offset: 0x1fb8 + +d_course_royal_raceway_vertex_0x04002480: + symbol: d_course_royal_raceway_vertex_0x04002480 + type: mk64:course_vtx + count: 22 + offset: 0x1ff0 + +d_course_royal_raceway_vertex_0x04002580: + symbol: d_course_royal_raceway_vertex_0x04002580 + type: mk64:course_vtx + count: 8 + offset: 0x20d0 + +d_course_royal_raceway_vertex_0x04002600: + symbol: d_course_royal_raceway_vertex_0x04002600 + type: mk64:course_vtx + count: 8 + offset: 0x2140 + +d_course_royal_raceway_vertex_0x04002680: + symbol: d_course_royal_raceway_vertex_0x04002680 + type: mk64:course_vtx + count: 22 + offset: 0x21b0 + +d_course_royal_raceway_vertex_0x04002780: + symbol: d_course_royal_raceway_vertex_0x04002780 + type: mk64:course_vtx + count: 8 + offset: 0x2290 + +d_course_royal_raceway_vertex_0x04002800: + symbol: d_course_royal_raceway_vertex_0x04002800 + type: mk64:course_vtx + count: 8 + offset: 0x2300 + +d_course_royal_raceway_vertex_0x04002880: + symbol: d_course_royal_raceway_vertex_0x04002880 + type: mk64:course_vtx + count: 22 + offset: 0x2370 + +d_course_royal_raceway_vertex_0x04002980: + symbol: d_course_royal_raceway_vertex_0x04002980 + type: mk64:course_vtx + count: 34 + offset: 0x2450 + +d_course_royal_raceway_vertex_0x04002AE0: + symbol: d_course_royal_raceway_vertex_0x04002AE0 + type: mk64:course_vtx + count: 5 + offset: 0x2584 + +d_course_royal_raceway_vertex_0x04002B30: + symbol: d_course_royal_raceway_vertex_0x04002B30 + type: mk64:course_vtx + count: 50 + offset: 0x25ca + +d_course_royal_raceway_vertex_0x04002D30: + symbol: d_course_royal_raceway_vertex_0x04002D30 + type: mk64:course_vtx + count: 8 + offset: 0x278a + +d_course_royal_raceway_vertex_0x04002DB0: + symbol: d_course_royal_raceway_vertex_0x04002DB0 + type: mk64:course_vtx + count: 50 + offset: 0x27fa + +d_course_royal_raceway_vertex_0x04002FB0: + symbol: d_course_royal_raceway_vertex_0x04002FB0 + type: mk64:course_vtx + count: 35 + offset: 0x29ba + +d_course_royal_raceway_vertex_0x04003120: + symbol: d_course_royal_raceway_vertex_0x04003120 + type: mk64:course_vtx + count: 22 + offset: 0x2afc + +d_course_royal_raceway_vertex_0x04003220: + symbol: d_course_royal_raceway_vertex_0x04003220 + type: mk64:course_vtx + count: 32 + offset: 0x2bdc + +d_course_royal_raceway_vertex_0x04003360: + symbol: d_course_royal_raceway_vertex_0x04003360 + type: mk64:course_vtx + count: 40 + offset: 0x2cf4 + +d_course_royal_raceway_vertex_0x04003520: + symbol: d_course_royal_raceway_vertex_0x04003520 + type: mk64:course_vtx + count: 8 + offset: 0x2e7c + +d_course_royal_raceway_vertex_0x040035A0: + symbol: d_course_royal_raceway_vertex_0x040035A0 + type: mk64:course_vtx + count: 22 + offset: 0x2eec + +d_course_royal_raceway_vertex_0x040036A0: + symbol: d_course_royal_raceway_vertex_0x040036A0 + type: mk64:course_vtx + count: 8 + offset: 0x2fcc + +d_course_royal_raceway_vertex_0x04003720: + symbol: d_course_royal_raceway_vertex_0x04003720 + type: mk64:course_vtx + count: 8 + offset: 0x303c + +d_course_royal_raceway_vertex_0x040037A0: + symbol: d_course_royal_raceway_vertex_0x040037A0 + type: mk64:course_vtx + count: 17 + offset: 0x30ac + +d_course_royal_raceway_vertex_0x04003850: + symbol: d_course_royal_raceway_vertex_0x04003850 + type: mk64:course_vtx + count: 8 + offset: 0x3146 + +d_course_royal_raceway_vertex_0x040038D0: + symbol: d_course_royal_raceway_vertex_0x040038D0 + type: mk64:course_vtx + count: 21 + offset: 0x31b6 + +d_course_royal_raceway_vertex_0x040039C0: + symbol: d_course_royal_raceway_vertex_0x040039C0 + type: mk64:course_vtx + count: 8 + offset: 0x3288 + +d_course_royal_raceway_vertex_0x04003A40: + symbol: d_course_royal_raceway_vertex_0x04003A40 + type: mk64:course_vtx + count: 18 + offset: 0x32f8 + +d_course_royal_raceway_vertex_0x04003B00: + symbol: d_course_royal_raceway_vertex_0x04003B00 + type: mk64:course_vtx + count: 23 + offset: 0x33a0 + +d_course_royal_raceway_vertex_0x04003C10: + symbol: d_course_royal_raceway_vertex_0x04003C10 + type: mk64:course_vtx + count: 17 + offset: 0x348e + +d_course_royal_raceway_vertex_0x04003CC0: + symbol: d_course_royal_raceway_vertex_0x04003CC0 + type: mk64:course_vtx + count: 22 + offset: 0x3528 + +d_course_royal_raceway_vertex_0x04003DC0: + symbol: d_course_royal_raceway_vertex_0x04003DC0 + type: mk64:course_vtx + count: 50 + offset: 0x3608 + +d_course_royal_raceway_vertex_0x04003FC0: + symbol: d_course_royal_raceway_vertex_0x04003FC0 + type: mk64:course_vtx + count: 8 + offset: 0x37c8 + +d_course_royal_raceway_vertex_0x04004040: + symbol: d_course_royal_raceway_vertex_0x04004040 + type: mk64:course_vtx + count: 50 + offset: 0x3838 + +d_course_royal_raceway_vertex_0x04004240: + symbol: d_course_royal_raceway_vertex_0x04004240 + type: mk64:course_vtx + count: 4 + offset: 0x39f8 + +d_course_royal_raceway_vertex_0x04004280: + symbol: d_course_royal_raceway_vertex_0x04004280 + type: mk64:course_vtx + count: 22 + offset: 0x3a30 + +d_course_royal_raceway_vertex_0x04004380: + symbol: d_course_royal_raceway_vertex_0x04004380 + type: mk64:course_vtx + count: 36 + offset: 0x3b10 + +d_course_royal_raceway_vertex_0x04004500: + symbol: d_course_royal_raceway_vertex_0x04004500 + type: mk64:course_vtx + count: 18 + offset: 0x3c60 + +d_course_royal_raceway_vertex_0x040045C0: + symbol: d_course_royal_raceway_vertex_0x040045C0 + type: mk64:course_vtx + count: 40 + offset: 0x3d08 + +d_course_royal_raceway_vertex_0x04004780: + symbol: d_course_royal_raceway_vertex_0x04004780 + type: mk64:course_vtx + count: 8 + offset: 0x3e90 + +d_course_royal_raceway_vertex_0x04004800: + symbol: d_course_royal_raceway_vertex_0x04004800 + type: mk64:course_vtx + count: 40 + offset: 0x3f00 + +d_course_royal_raceway_vertex_0x040049C0: + symbol: d_course_royal_raceway_vertex_0x040049C0 + type: mk64:course_vtx + count: 16 + offset: 0x4088 + +d_course_royal_raceway_vertex_0x04004A60: + symbol: d_course_royal_raceway_vertex_0x04004A60 + type: mk64:course_vtx + count: 4 + offset: 0x4114 + +d_course_royal_raceway_vertex_0x04004AA0: + symbol: d_course_royal_raceway_vertex_0x04004AA0 + type: mk64:course_vtx + count: 18 + offset: 0x414c + +d_course_royal_raceway_vertex_0x04004B60: + symbol: d_course_royal_raceway_vertex_0x04004B60 + type: mk64:course_vtx + count: 49 + offset: 0x41f4 + +d_course_royal_raceway_vertex_0x04004D50: + symbol: d_course_royal_raceway_vertex_0x04004D50 + type: mk64:course_vtx + count: 4 + offset: 0x43a6 + +d_course_royal_raceway_vertex_0x04004D90: + symbol: d_course_royal_raceway_vertex_0x04004D90 + type: mk64:course_vtx + count: 24 + offset: 0x43de + +d_course_royal_raceway_vertex_0x04004EB0: + symbol: d_course_royal_raceway_vertex_0x04004EB0 + type: mk64:course_vtx + count: 40 + offset: 0x44da + +d_course_royal_raceway_vertex_0x04005070: + symbol: d_course_royal_raceway_vertex_0x04005070 + type: mk64:course_vtx + count: 50 + offset: 0x4662 + +d_course_royal_raceway_vertex_0x04005270: + symbol: d_course_royal_raceway_vertex_0x04005270 + type: mk64:course_vtx + count: 8 + offset: 0x4822 + +d_course_royal_raceway_vertex_0x040052F0: + symbol: d_course_royal_raceway_vertex_0x040052F0 + type: mk64:course_vtx + count: 36 + offset: 0x4892 + +d_course_royal_raceway_vertex_0x04005470: + symbol: d_course_royal_raceway_vertex_0x04005470 + type: mk64:course_vtx + count: 32 + offset: 0x49e2 + +d_course_royal_raceway_vertex_0x040055B0: + symbol: d_course_royal_raceway_vertex_0x040055B0 + type: mk64:course_vtx + count: 50 + offset: 0x4afa + +d_course_royal_raceway_vertex_0x040057B0: + symbol: d_course_royal_raceway_vertex_0x040057B0 + type: mk64:course_vtx + count: 18 + offset: 0x4cba + +d_course_royal_raceway_vertex_0x04005870: + symbol: d_course_royal_raceway_vertex_0x04005870 + type: mk64:course_vtx + count: 50 + offset: 0x4d62 + +d_course_royal_raceway_vertex_0x04005A70: + symbol: d_course_royal_raceway_vertex_0x04005A70 + type: mk64:course_vtx + count: 8 + offset: 0x4f22 + +d_course_royal_raceway_vertex_0x04005AF0: + symbol: d_course_royal_raceway_vertex_0x04005AF0 + type: mk64:course_vtx + count: 50 + offset: 0x4f92 + +d_course_royal_raceway_vertex_0x04005CF0: + symbol: d_course_royal_raceway_vertex_0x04005CF0 + type: mk64:course_vtx + count: 38 + offset: 0x5152 + +d_course_royal_raceway_vertex_0x04005E90: + symbol: d_course_royal_raceway_vertex_0x04005E90 + type: mk64:course_vtx + count: 48 + offset: 0x52be + +d_course_royal_raceway_vertex_0x04006070: + symbol: d_course_royal_raceway_vertex_0x04006070 + type: mk64:course_vtx + count: 8 + offset: 0x5462 + +d_course_royal_raceway_vertex_0x040060F0: + symbol: d_course_royal_raceway_vertex_0x040060F0 + type: mk64:course_vtx + count: 38 + offset: 0x54d2 + +d_course_royal_raceway_vertex_0x04006290: + symbol: d_course_royal_raceway_vertex_0x04006290 + type: mk64:course_vtx + count: 40 + offset: 0x563e + +d_course_royal_raceway_vertex_0x04006450: + symbol: d_course_royal_raceway_vertex_0x04006450 + type: mk64:course_vtx + count: 8 + offset: 0x57c6 + +d_course_royal_raceway_vertex_0x040064D0: + symbol: d_course_royal_raceway_vertex_0x040064D0 + type: mk64:course_vtx + count: 22 + offset: 0x5836 + +d_course_royal_raceway_vertex_0x040065D0: + symbol: d_course_royal_raceway_vertex_0x040065D0 + type: mk64:course_vtx + count: 50 + offset: 0x5916 + +d_course_royal_raceway_vertex_0x040067D0: + symbol: d_course_royal_raceway_vertex_0x040067D0 + type: mk64:course_vtx + count: 22 + offset: 0x5ad6 + +d_course_royal_raceway_vertex_0x040068D0: + symbol: d_course_royal_raceway_vertex_0x040068D0 + type: mk64:course_vtx + count: 50 + offset: 0x5bb6 + +d_course_royal_raceway_vertex_0x04006AD0: + symbol: d_course_royal_raceway_vertex_0x04006AD0 + type: mk64:course_vtx + count: 18 + offset: 0x5d76 + +d_course_royal_raceway_vertex_0x04006B90: + symbol: d_course_royal_raceway_vertex_0x04006B90 + type: mk64:course_vtx + count: 18 + offset: 0x5e1e + +d_course_royal_raceway_vertex_0x04006C50: + symbol: d_course_royal_raceway_vertex_0x04006C50 + type: mk64:course_vtx + count: 8 + offset: 0x5ec6 + +d_course_royal_raceway_vertex_0x04006CD0: + symbol: d_course_royal_raceway_vertex_0x04006CD0 + type: mk64:course_vtx + count: 8 + offset: 0x5f36 + +d_course_royal_raceway_vertex_0x04006D50: + symbol: d_course_royal_raceway_vertex_0x04006D50 + type: mk64:course_vtx + count: 36 + offset: 0x5fa6 + +d_course_royal_raceway_vertex_0x04006ED0: + symbol: d_course_royal_raceway_vertex_0x04006ED0 + type: mk64:course_vtx + count: 36 + offset: 0x60f6 + +d_course_royal_raceway_vertex_0x04007050: + symbol: d_course_royal_raceway_vertex_0x04007050 + type: mk64:course_vtx + count: 50 + offset: 0x6246 + +d_course_royal_raceway_vertex_0x04007250: + symbol: d_course_royal_raceway_vertex_0x04007250 + type: mk64:course_vtx + count: 40 + offset: 0x6406 + +d_course_royal_raceway_vertex_0x04007410: + symbol: d_course_royal_raceway_vertex_0x04007410 + type: mk64:course_vtx + count: 40 + offset: 0x658e + +d_course_royal_raceway_vertex_0x040075D0: + symbol: d_course_royal_raceway_vertex_0x040075D0 + type: mk64:course_vtx + count: 50 + offset: 0x6716 + +d_course_royal_raceway_vertex_0x040077D0: + symbol: d_course_royal_raceway_vertex_0x040077D0 + type: mk64:course_vtx + count: 4 + offset: 0x68d6 + +d_course_royal_raceway_vertex_0x04007810: + symbol: d_course_royal_raceway_vertex_0x04007810 + type: mk64:course_vtx + count: 22 + offset: 0x690e + +d_course_royal_raceway_vertex_0x04007910: + symbol: d_course_royal_raceway_vertex_0x04007910 + type: mk64:course_vtx + count: 36 + offset: 0x69ee + +d_course_royal_raceway_vertex_0x04007A90: + symbol: d_course_royal_raceway_vertex_0x04007A90 + type: mk64:course_vtx + count: 21 + offset: 0x6b3e + +d_course_royal_raceway_vertex_0x04007B80: + symbol: d_course_royal_raceway_vertex_0x04007B80 + type: mk64:course_vtx + count: 36 + offset: 0x6c10 + +d_course_royal_raceway_vertex_0x04007D00: + symbol: d_course_royal_raceway_vertex_0x04007D00 + type: mk64:course_vtx + count: 19 + offset: 0x6d60 + +d_course_royal_raceway_vertex_0x04007DD0: + symbol: d_course_royal_raceway_vertex_0x04007DD0 + type: mk64:course_vtx + count: 21 + offset: 0x6e16 + +d_course_royal_raceway_vertex_0x04007EC0: + symbol: d_course_royal_raceway_vertex_0x04007EC0 + type: mk64:course_vtx + count: 17 + offset: 0x6ee8 + +d_course_royal_raceway_vertex_0x04007F70: + symbol: d_course_royal_raceway_vertex_0x04007F70 + type: mk64:course_vtx + count: 5 + offset: 0x6f82 + +d_course_royal_raceway_vertex_0x04007FC0: + symbol: d_course_royal_raceway_vertex_0x04007FC0 + type: mk64:course_vtx + count: 9 + offset: 0x6fc8 + +d_course_royal_raceway_vertex_0x04008050: + symbol: d_course_royal_raceway_vertex_0x04008050 + type: mk64:course_vtx + count: 17 + offset: 0x7046 + +d_course_royal_raceway_vertex_0x04008100: + symbol: d_course_royal_raceway_vertex_0x04008100 + type: mk64:course_vtx + count: 49 + offset: 0x70e0 + +d_course_royal_raceway_vertex_0x040082F0: + symbol: d_course_royal_raceway_vertex_0x040082F0 + type: mk64:course_vtx + count: 20 + offset: 0x7292 + +d_course_royal_raceway_vertex_0x040083D0: + symbol: d_course_royal_raceway_vertex_0x040083D0 + type: mk64:course_vtx + count: 23 + offset: 0x7356 + +d_course_royal_raceway_vertex_0x040084E0: + symbol: d_course_royal_raceway_vertex_0x040084E0 + type: mk64:course_vtx + count: 9 + offset: 0x7444 + +d_course_royal_raceway_vertex_0x04008570: + symbol: d_course_royal_raceway_vertex_0x04008570 + type: mk64:course_vtx + count: 5 + offset: 0x74c2 + +d_course_royal_raceway_vertex_0x040085C0: + symbol: d_course_royal_raceway_vertex_0x040085C0 + type: mk64:course_vtx + count: 8 + offset: 0x7508 + +d_course_royal_raceway_vertex_0x04008640: + symbol: d_course_royal_raceway_vertex_0x04008640 + type: mk64:course_vtx + count: 23 + offset: 0x7578 + +d_course_royal_raceway_vertex_0x04008750: + symbol: d_course_royal_raceway_vertex_0x04008750 + type: mk64:course_vtx + count: 4 + offset: 0x7666 + +d_course_royal_raceway_vertex_0x04008790: + symbol: d_course_royal_raceway_vertex_0x04008790 + type: mk64:course_vtx + count: 18 + offset: 0x769e + +d_course_royal_raceway_vertex_0x04008850: + symbol: d_course_royal_raceway_vertex_0x04008850 + type: mk64:course_vtx + count: 18 + offset: 0x7746 + +d_course_royal_raceway_vertex_0x04008910: + symbol: d_course_royal_raceway_vertex_0x04008910 + type: mk64:course_vtx + count: 18 + offset: 0x77ee + +d_course_royal_raceway_vertex_0x040089D0: + symbol: d_course_royal_raceway_vertex_0x040089D0 + type: mk64:course_vtx + count: 17 + offset: 0x7896 + +d_course_royal_raceway_vertex_0x04008A80: + symbol: d_course_royal_raceway_vertex_0x04008A80 + type: mk64:course_vtx + count: 18 + offset: 0x7930 + +d_course_royal_raceway_vertex_0x04008B40: + symbol: d_course_royal_raceway_vertex_0x04008B40 + type: mk64:course_vtx + count: 18 + offset: 0x79d8 + +d_course_royal_raceway_vertex_0x04008C00: + symbol: d_course_royal_raceway_vertex_0x04008C00 + type: mk64:course_vtx + count: 50 + offset: 0x7a80 + +d_course_royal_raceway_vertex_0x04008E00: + symbol: d_course_royal_raceway_vertex_0x04008E00 + type: mk64:course_vtx + count: 24 + offset: 0x7c40 + +d_course_royal_raceway_vertex_0x04008F20: + symbol: d_course_royal_raceway_vertex_0x04008F20 + type: mk64:course_vtx + count: 50 + offset: 0x7d3c + +d_course_royal_raceway_vertex_0x04009120: + symbol: d_course_royal_raceway_vertex_0x04009120 + type: mk64:course_vtx + count: 50 + offset: 0x7efc + +d_course_royal_raceway_vertex_0x04009320: + symbol: d_course_royal_raceway_vertex_0x04009320 + type: mk64:course_vtx + count: 18 + offset: 0x80bc + +d_course_royal_raceway_vertex_0x040093E0: + symbol: d_course_royal_raceway_vertex_0x040093E0 + type: mk64:course_vtx + count: 49 + offset: 0x8164 + +d_course_royal_raceway_vertex_0x040095D0: + symbol: d_course_royal_raceway_vertex_0x040095D0 + type: mk64:course_vtx + count: 49 + offset: 0x8316 + +d_course_royal_raceway_vertex_0x040097C0: + symbol: d_course_royal_raceway_vertex_0x040097C0 + type: mk64:course_vtx + count: 6 + offset: 0x84c8 + +d_course_royal_raceway_vertex_0x04009820: + symbol: d_course_royal_raceway_vertex_0x04009820 + type: mk64:course_vtx + count: 48 + offset: 0x851c + +d_course_royal_raceway_vertex_0x04009A00: + symbol: d_course_royal_raceway_vertex_0x04009A00 + type: mk64:course_vtx + count: 6 + offset: 0x86c0 + +d_course_royal_raceway_vertex_0x04009A60: + symbol: d_course_royal_raceway_vertex_0x04009A60 + type: mk64:course_vtx + count: 50 + offset: 0x8714 + +d_course_royal_raceway_vertex_0x04009C60: + symbol: d_course_royal_raceway_vertex_0x04009C60 + type: mk64:course_vtx + count: 48 + offset: 0x88d4 + +d_course_royal_raceway_vertex_0x04009E40: + symbol: d_course_royal_raceway_vertex_0x04009E40 + type: mk64:course_vtx + count: 6 + offset: 0x8a78 + +d_course_royal_raceway_vertex_0x04009EA0: + symbol: d_course_royal_raceway_vertex_0x04009EA0 + type: mk64:course_vtx + count: 48 + offset: 0x8acc + +d_course_royal_raceway_vertex_0x0400A080: + symbol: d_course_royal_raceway_vertex_0x0400A080 + type: mk64:course_vtx + count: 6 + offset: 0x8c70 + +d_course_royal_raceway_vertex_0x0400A0E0: + symbol: d_course_royal_raceway_vertex_0x0400A0E0 + type: mk64:course_vtx + count: 48 + offset: 0x8cc4 + +d_course_royal_raceway_vertex_0x0400A2C0: + symbol: d_course_royal_raceway_vertex_0x0400A2C0 + type: mk64:course_vtx + count: 49 + offset: 0x8e68 + +d_course_royal_raceway_vertex_0x0400A4B0: + symbol: d_course_royal_raceway_vertex_0x0400A4B0 + type: mk64:course_vtx + count: 18 + offset: 0x901a + +d_course_royal_raceway_vertex_0x0400A570: + symbol: d_course_royal_raceway_vertex_0x0400A570 + type: mk64:course_vtx + count: 50 + offset: 0x90c2 + +d_course_royal_raceway_vertex_0x0400A770: + symbol: d_course_royal_raceway_vertex_0x0400A770 + type: mk64:course_vtx + count: 9 + offset: 0x9282 + +d_course_royal_raceway_vertex_0x0400A800: + symbol: d_course_royal_raceway_vertex_0x0400A800 + type: mk64:course_vtx + count: 48 + offset: 0x9300 + +d_course_royal_raceway_vertex_0x0400A9E0: + symbol: d_course_royal_raceway_vertex_0x0400A9E0 + type: mk64:course_vtx + count: 6 + offset: 0x94a4 + +d_course_royal_raceway_vertex_0x0400AA40: + symbol: d_course_royal_raceway_vertex_0x0400AA40 + type: mk64:course_vtx + count: 48 + offset: 0x94f8 + +d_course_royal_raceway_vertex_0x0400AC20: + symbol: d_course_royal_raceway_vertex_0x0400AC20 + type: mk64:course_vtx + count: 48 + offset: 0x969c + +d_course_royal_raceway_vertex_0x0400AE00: + symbol: d_course_royal_raceway_vertex_0x0400AE00 + type: mk64:course_vtx + count: 48 + offset: 0x9840 + +d_course_royal_raceway_vertex_0x0400AFE0: + symbol: d_course_royal_raceway_vertex_0x0400AFE0 + type: mk64:course_vtx + count: 6 + offset: 0x99e4 + +d_course_royal_raceway_vertex_0x0400B040: + symbol: d_course_royal_raceway_vertex_0x0400B040 + type: mk64:course_vtx + count: 50 + offset: 0x9a38 + +d_course_royal_raceway_vertex_0x0400B240: + symbol: d_course_royal_raceway_vertex_0x0400B240 + type: mk64:course_vtx + count: 39 + offset: 0x9bf8 + +d_course_royal_raceway_vertex_0x0400B3F0: + symbol: d_course_royal_raceway_vertex_0x0400B3F0 + type: mk64:course_vtx + count: 48 + offset: 0x9d72 + +d_course_royal_raceway_vertex_0x0400B5D0: + symbol: d_course_royal_raceway_vertex_0x0400B5D0 + type: mk64:course_vtx + count: 38 + offset: 0x9f16 + +d_course_royal_raceway_vertex_0x0400B770: + symbol: d_course_royal_raceway_vertex_0x0400B770 + type: mk64:course_vtx + count: 48 + offset: 0xa082 + +d_course_royal_raceway_vertex_0x0400B950: + symbol: d_course_royal_raceway_vertex_0x0400B950 + type: mk64:course_vtx + count: 48 + offset: 0xa226 + +d_course_royal_raceway_vertex_0x0400BB30: + symbol: d_course_royal_raceway_vertex_0x0400BB30 + type: mk64:course_vtx + count: 49 + offset: 0xa3ca + +d_course_royal_raceway_vertex_0x0400BD20: + symbol: d_course_royal_raceway_vertex_0x0400BD20 + type: mk64:course_vtx + count: 48 + offset: 0xa57c + +d_course_royal_raceway_vertex_0x0400BF00: + symbol: d_course_royal_raceway_vertex_0x0400BF00 + type: mk64:course_vtx + count: 33 + offset: 0xa720 + +d_course_royal_raceway_vertex_0x0400C050: + symbol: d_course_royal_raceway_vertex_0x0400C050 + type: mk64:course_vtx + count: 48 + offset: 0xa846 + +d_course_royal_raceway_vertex_0x0400C230: + symbol: d_course_royal_raceway_vertex_0x0400C230 + type: mk64:course_vtx + count: 48 + offset: 0xa9ea + +d_course_royal_raceway_vertex_0x0400C410: + symbol: d_course_royal_raceway_vertex_0x0400C410 + type: mk64:course_vtx + count: 48 + offset: 0xab8e + +d_course_royal_raceway_vertex_0x0400C5F0: + symbol: d_course_royal_raceway_vertex_0x0400C5F0 + type: mk64:course_vtx + count: 21 + offset: 0xad32 + +d_course_royal_raceway_vertex_0x0400C6E0: + symbol: d_course_royal_raceway_vertex_0x0400C6E0 + type: mk64:course_vtx + count: 49 + offset: 0xae04 + +d_course_royal_raceway_vertex_0x0400C8D0: + symbol: d_course_royal_raceway_vertex_0x0400C8D0 + type: mk64:course_vtx + count: 49 + offset: 0xafb6 + +d_course_royal_raceway_vertex_0x0400CAC0: + symbol: d_course_royal_raceway_vertex_0x0400CAC0 + type: mk64:course_vtx + count: 21 + offset: 0xb168 + +d_course_royal_raceway_vertex_0x0400CBB0: + symbol: d_course_royal_raceway_vertex_0x0400CBB0 + type: mk64:course_vtx + count: 48 + offset: 0xb23a + +d_course_royal_raceway_vertex_0x0400CD90: + symbol: d_course_royal_raceway_vertex_0x0400CD90 + type: mk64:course_vtx + count: 50 + offset: 0xb3de + +d_course_royal_raceway_vertex_0x0400CF90: + symbol: d_course_royal_raceway_vertex_0x0400CF90 + type: mk64:course_vtx + count: 6 + offset: 0xb59e + +d_course_royal_raceway_vertex_0x0400CFF0: + symbol: d_course_royal_raceway_vertex_0x0400CFF0 + type: mk64:course_vtx + count: 50 + offset: 0xb5f2 + +d_course_royal_raceway_vertex_0x0400D1F0: + symbol: d_course_royal_raceway_vertex_0x0400D1F0 + type: mk64:course_vtx + count: 49 + offset: 0xb7b2 + +d_course_royal_raceway_vertex_0x0400D3E0: + symbol: d_course_royal_raceway_vertex_0x0400D3E0 + type: mk64:course_vtx + count: 18 + offset: 0xb964 + +d_course_royal_raceway_vertex_0x0400D4A0: + symbol: d_course_royal_raceway_vertex_0x0400D4A0 + type: mk64:course_vtx + count: 48 + offset: 0xba0c + +d_course_royal_raceway_vertex_0x0400D680: + symbol: d_course_royal_raceway_vertex_0x0400D680 + type: mk64:course_vtx + count: 21 + offset: 0xbbb0 + +d_course_royal_raceway_vertex_0x0400D770: + symbol: d_course_royal_raceway_vertex_0x0400D770 + type: mk64:course_vtx + count: 36 + offset: 0xbc82 + +d_course_royal_raceway_vertex_0x0400D8F0: + symbol: d_course_royal_raceway_vertex_0x0400D8F0 + type: mk64:course_vtx + count: 50 + offset: 0xbdd2 + +d_course_royal_raceway_vertex_0x0400DAF0: + symbol: d_course_royal_raceway_vertex_0x0400DAF0 + type: mk64:course_vtx + count: 36 + offset: 0xbf92 + +d_course_royal_raceway_vertex_0x0400DC70: + symbol: d_course_royal_raceway_vertex_0x0400DC70 + type: mk64:course_vtx + count: 48 + offset: 0xc0e2 + +d_course_royal_raceway_vertex_0x0400DE50: + symbol: d_course_royal_raceway_vertex_0x0400DE50 + type: mk64:course_vtx + count: 18 + offset: 0xc286 + +d_course_royal_raceway_vertex_0x0400DF10: + symbol: d_course_royal_raceway_vertex_0x0400DF10 + type: mk64:course_vtx + count: 48 + offset: 0xc32e + +d_course_royal_raceway_vertex_0x0400E0F0: + symbol: d_course_royal_raceway_vertex_0x0400E0F0 + type: mk64:course_vtx + count: 50 + offset: 0xc4d2 + +d_course_royal_raceway_vertex_0x0400E2F0: + symbol: d_course_royal_raceway_vertex_0x0400E2F0 + type: mk64:course_vtx + count: 48 + offset: 0xc692 + +d_course_royal_raceway_vertex_0x0400E4D0: + symbol: d_course_royal_raceway_vertex_0x0400E4D0 + type: mk64:course_vtx + count: 18 + offset: 0xc836 + +d_course_royal_raceway_vertex_0x0400E590: + symbol: d_course_royal_raceway_vertex_0x0400E590 + type: mk64:course_vtx + count: 48 + offset: 0xc8de + +d_course_royal_raceway_vertex_0x0400E770: + symbol: d_course_royal_raceway_vertex_0x0400E770 + type: mk64:course_vtx + count: 48 + offset: 0xca82 + +d_course_royal_raceway_vertex_0x0400E950: + symbol: d_course_royal_raceway_vertex_0x0400E950 + type: mk64:course_vtx + count: 49 + offset: 0xcc26 + +d_course_royal_raceway_vertex_0x0400EB40: + symbol: d_course_royal_raceway_vertex_0x0400EB40 + type: mk64:course_vtx + count: 3 + offset: 0xcdd8 + +d_course_royal_raceway_vertex_0x0400EB70: + symbol: d_course_royal_raceway_vertex_0x0400EB70 + type: mk64:course_vtx + count: 48 + offset: 0xce02 + +d_course_royal_raceway_vertex_0x0400ED50: + symbol: d_course_royal_raceway_vertex_0x0400ED50 + type: mk64:course_vtx + count: 6 + offset: 0xcfa6 + +d_course_royal_raceway_vertex_0x0400EDB0: + symbol: d_course_royal_raceway_vertex_0x0400EDB0 + type: mk64:course_vtx + count: 24 + offset: 0xcffa + +d_course_royal_raceway_vertex_0x0400EED0: + symbol: d_course_royal_raceway_vertex_0x0400EED0 + type: mk64:course_vtx + count: 36 + offset: 0xd0f6 + +d_course_royal_raceway_vertex_0x0400F050: + symbol: d_course_royal_raceway_vertex_0x0400F050 + type: mk64:course_vtx + count: 50 + offset: 0xd246 + +d_course_royal_raceway_vertex_0x0400F250: + symbol: d_course_royal_raceway_vertex_0x0400F250 + type: mk64:course_vtx + count: 6 + offset: 0xd406 + +d_course_royal_raceway_vertex_0x0400F2B0: + symbol: d_course_royal_raceway_vertex_0x0400F2B0 + type: mk64:course_vtx + count: 49 + offset: 0xd45a + +d_course_royal_raceway_vertex_0x0400F4A0: + symbol: d_course_royal_raceway_vertex_0x0400F4A0 + type: mk64:course_vtx + count: 49 + offset: 0xd60c + +d_course_royal_raceway_vertex_0x0400F690: + symbol: d_course_royal_raceway_vertex_0x0400F690 + type: mk64:course_vtx + count: 32 + offset: 0xd7be + +d_course_royal_raceway_vertex_0x0400F7D0: + symbol: d_course_royal_raceway_vertex_0x0400F7D0 + type: mk64:course_vtx + count: 49 + offset: 0xd8d6 + +d_course_royal_raceway_vertex_0x0400F9C0: + symbol: d_course_royal_raceway_vertex_0x0400F9C0 + type: mk64:course_vtx + count: 36 + offset: 0xda88 + +d_course_royal_raceway_vertex_0x0400FB40: + symbol: d_course_royal_raceway_vertex_0x0400FB40 + type: mk64:course_vtx + count: 48 + offset: 0xdbd8 + +d_course_royal_raceway_vertex_0x0400FD20: + symbol: d_course_royal_raceway_vertex_0x0400FD20 + type: mk64:course_vtx + count: 6 + offset: 0xdd7c + +d_course_royal_raceway_vertex_0x0400FD80: + symbol: d_course_royal_raceway_vertex_0x0400FD80 + type: mk64:course_vtx + count: 50 + offset: 0xddd0 + +d_course_royal_raceway_vertex_0x0400FF80: + symbol: d_course_royal_raceway_vertex_0x0400FF80 + type: mk64:course_vtx + count: 50 + offset: 0xdf90 + +d_course_royal_raceway_vertex_0x04010180: + symbol: d_course_royal_raceway_vertex_0x04010180 + type: mk64:course_vtx + count: 3 + offset: 0xe150 + +d_course_royal_raceway_vertex_0x040101B0: + symbol: d_course_royal_raceway_vertex_0x040101B0 + type: mk64:course_vtx + count: 49 + offset: 0xe17a + +d_course_royal_raceway_vertex_0x040103A0: + symbol: d_course_royal_raceway_vertex_0x040103A0 + type: mk64:course_vtx + count: 23 + offset: 0xe32c + +d_course_royal_raceway_vertex_0x040104B0: + symbol: d_course_royal_raceway_vertex_0x040104B0 + type: mk64:course_vtx + count: 35 + offset: 0xe41a + +d_course_royal_raceway_vertex_0x04010620: + symbol: d_course_royal_raceway_vertex_0x04010620 + type: mk64:course_vtx + count: 50 + offset: 0xe55c + +d_course_royal_raceway_vertex_0x04010820: + symbol: d_course_royal_raceway_vertex_0x04010820 + type: mk64:course_vtx + count: 25 + offset: 0xe71c + +d_course_royal_raceway_vertex_0x04010950: + symbol: d_course_royal_raceway_vertex_0x04010950 + type: mk64:course_vtx + count: 49 + offset: 0xe826 + +d_course_royal_raceway_vertex_0x04010B40: + symbol: d_course_royal_raceway_vertex_0x04010B40 + type: mk64:course_vtx + count: 48 + offset: 0xe9d8 + +d_course_royal_raceway_vertex_0x04010D20: + symbol: d_course_royal_raceway_vertex_0x04010D20 + type: mk64:course_vtx + count: 5 + offset: 0xeb7c + +d_course_royal_raceway_vertex_0x04010D70: + symbol: d_course_royal_raceway_vertex_0x04010D70 + type: mk64:course_vtx + count: 49 + offset: 0xebc2 + +d_course_royal_raceway_vertex_0x04010F60: + symbol: d_course_royal_raceway_vertex_0x04010F60 + type: mk64:course_vtx + count: 18 + offset: 0xed74 + +d_course_royal_raceway_vertex_0x04011020: + symbol: d_course_royal_raceway_vertex_0x04011020 + type: mk64:course_vtx + count: 50 + offset: 0xee1c + +d_course_royal_raceway_vertex_0x04011220: + symbol: d_course_royal_raceway_vertex_0x04011220 + type: mk64:course_vtx + count: 32 + offset: 0xefdc + +d_course_royal_raceway_vertex_0x04011360: + symbol: d_course_royal_raceway_vertex_0x04011360 + type: mk64:course_vtx + count: 49 + offset: 0xf0f4 + +d_course_royal_raceway_vertex_0x04011550: + symbol: d_course_royal_raceway_vertex_0x04011550 + type: mk64:course_vtx + count: 50 + offset: 0xf2a6 + +d_course_royal_raceway_vertex_0x04011750: + symbol: d_course_royal_raceway_vertex_0x04011750 + type: mk64:course_vtx + count: 50 + offset: 0xf466 + +d_course_royal_raceway_vertex_0x04011950: + symbol: d_course_royal_raceway_vertex_0x04011950 + type: mk64:course_vtx + count: 48 + offset: 0xf626 + +d_course_royal_raceway_vertex_0x04011B30: + symbol: d_course_royal_raceway_vertex_0x04011B30 + type: mk64:course_vtx + count: 24 + offset: 0xf7ca + +d_course_royal_raceway_vertex_0x04011C50: + symbol: d_course_royal_raceway_vertex_0x04011C50 + type: mk64:course_vtx + count: 37 + offset: 0xf8c6 + +d_course_royal_raceway_vertex_0x04011DE0: + symbol: d_course_royal_raceway_vertex_0x04011DE0 + type: mk64:course_vtx + count: 48 + offset: 0xfa24 + +d_course_royal_raceway_vertex_0x04011FC0: + symbol: d_course_royal_raceway_vertex_0x04011FC0 + type: mk64:course_vtx + count: 9 + offset: 0xfbc8 + +d_course_royal_raceway_vertex_0x04012050: + symbol: d_course_royal_raceway_vertex_0x04012050 + type: mk64:course_vtx + count: 50 + offset: 0xfc46 + +d_course_royal_raceway_vertex_0x04012250: + symbol: d_course_royal_raceway_vertex_0x04012250 + type: mk64:course_vtx + count: 24 + offset: 0xfe06 + +d_course_royal_raceway_vertex_0x04012370: + symbol: d_course_royal_raceway_vertex_0x04012370 + type: mk64:course_vtx + count: 48 + offset: 0xff02 + +d_course_royal_raceway_vertex_0x04012550: + symbol: d_course_royal_raceway_vertex_0x04012550 + type: mk64:course_vtx + count: 32 + offset: 0x100a6 + +d_course_royal_raceway_vertex_0x04012690: + symbol: d_course_royal_raceway_vertex_0x04012690 + type: mk64:course_vtx + count: 48 + offset: 0x101be + +d_course_royal_raceway_vertex_0x04012870: + symbol: d_course_royal_raceway_vertex_0x04012870 + type: mk64:course_vtx + count: 48 + offset: 0x10362 + +d_course_royal_raceway_vertex_0x04012A50: + symbol: d_course_royal_raceway_vertex_0x04012A50 + type: mk64:course_vtx + count: 49 + offset: 0x10506 + +d_course_royal_raceway_vertex_0x04012C40: + symbol: d_course_royal_raceway_vertex_0x04012C40 + type: mk64:course_vtx + count: 39 + offset: 0x106b8 + +d_course_royal_raceway_vertex_0x04012DF0: + symbol: d_course_royal_raceway_vertex_0x04012DF0 + type: mk64:course_vtx + count: 48 + offset: 0x10832 + +d_course_royal_raceway_vertex_0x04012FD0: + symbol: d_course_royal_raceway_vertex_0x04012FD0 + type: mk64:course_vtx + count: 32 + offset: 0x109d6 + +d_course_royal_raceway_vertex_0x04013110: + symbol: d_course_royal_raceway_vertex_0x04013110 + type: mk64:course_vtx + count: 48 + offset: 0x10aee + +d_course_royal_raceway_vertex_0x040132F0: + symbol: d_course_royal_raceway_vertex_0x040132F0 + type: mk64:course_vtx + count: 50 + offset: 0x10c92 + +d_course_royal_raceway_vertex_0x040134F0: + symbol: d_course_royal_raceway_vertex_0x040134F0 + type: mk64:course_vtx + count: 50 + offset: 0x10e52 + +d_course_royal_raceway_vertex_0x040136F0: + symbol: d_course_royal_raceway_vertex_0x040136F0 + type: mk64:course_vtx + count: 48 + offset: 0x11012 + +d_course_royal_raceway_vertex_0x040138D0: + symbol: d_course_royal_raceway_vertex_0x040138D0 + type: mk64:course_vtx + count: 5 + offset: 0x111b6 + +d_course_royal_raceway_vertex_0x04013920: + symbol: d_course_royal_raceway_vertex_0x04013920 + type: mk64:course_vtx + count: 48 + offset: 0x111fc + +d_course_royal_raceway_vertex_0x04013B00: + symbol: d_course_royal_raceway_vertex_0x04013B00 + type: mk64:course_vtx + count: 49 + offset: 0x113a0 + +d_course_royal_raceway_vertex_0x04013CF0: + symbol: d_course_royal_raceway_vertex_0x04013CF0 + type: mk64:course_vtx + count: 50 + offset: 0x11552 + +d_course_royal_raceway_vertex_0x04013EF0: + symbol: d_course_royal_raceway_vertex_0x04013EF0 + type: mk64:course_vtx + count: 7 + offset: 0x11712 + +d_course_royal_raceway_vertex_0x04013F60: + symbol: d_course_royal_raceway_vertex_0x04013F60 + type: mk64:course_vtx + count: 4 + offset: 0x11774 + +d_course_royal_raceway_vertex_0x04013FA0: + symbol: d_course_royal_raceway_vertex_0x04013FA0 + type: mk64:course_vtx + count: 33 + offset: 0x117ac + +d_course_royal_raceway_vertex_0x040140F0: + symbol: d_course_royal_raceway_vertex_0x040140F0 + type: mk64:course_vtx + count: 48 + offset: 0x118d2 + +d_course_royal_raceway_vertex_0x040142D0: + symbol: d_course_royal_raceway_vertex_0x040142D0 + type: mk64:course_vtx + count: 23 + offset: 0x11a76 + +d_course_royal_raceway_vertex_0x040143E0: + symbol: d_course_royal_raceway_vertex_0x040143E0 + type: mk64:course_vtx + count: 50 + offset: 0x11b64 + +d_course_royal_raceway_vertex_0x040145E0: + symbol: d_course_royal_raceway_vertex_0x040145E0 + type: mk64:course_vtx + count: 4 + offset: 0x11d24 + +d_course_royal_raceway_vertex_0x04014620: + symbol: d_course_royal_raceway_vertex_0x04014620 + type: mk64:course_vtx + count: 50 + offset: 0x11d5c + +d_course_royal_raceway_vertex_0x04014820: + symbol: d_course_royal_raceway_vertex_0x04014820 + type: mk64:course_vtx + count: 50 + offset: 0x11f1c + +d_course_royal_raceway_vertex_0x04014A20: + symbol: d_course_royal_raceway_vertex_0x04014A20 + type: mk64:course_vtx + count: 50 + offset: 0x120dc + +d_course_royal_raceway_vertex_0x04014C20: + symbol: d_course_royal_raceway_vertex_0x04014C20 + type: mk64:course_vtx + count: 32 + offset: 0x1229c + +d_course_royal_raceway_vertex_0x04014D60: + symbol: d_course_royal_raceway_vertex_0x04014D60 + type: mk64:course_vtx + count: 50 + offset: 0x123b4 + +d_course_royal_raceway_vertex_0x04014F60: + symbol: d_course_royal_raceway_vertex_0x04014F60 + type: mk64:course_vtx + count: 49 + offset: 0x12574 + +d_course_royal_raceway_vertex_0x04015150: + symbol: d_course_royal_raceway_vertex_0x04015150 + type: mk64:course_vtx + count: 50 + offset: 0x12726 + +d_course_royal_raceway_vertex_0x04015350: + symbol: d_course_royal_raceway_vertex_0x04015350 + type: mk64:course_vtx + count: 50 + offset: 0x128e6 + +d_course_royal_raceway_vertex_0x04015550: + symbol: d_course_royal_raceway_vertex_0x04015550 + type: mk64:course_vtx + count: 49 + offset: 0x12aa6 + +d_course_royal_raceway_vertex_0x04015740: + symbol: d_course_royal_raceway_vertex_0x04015740 + type: mk64:course_vtx + count: 48 + offset: 0x12c58 + +d_course_royal_raceway_vertex_0x04015920: + symbol: d_course_royal_raceway_vertex_0x04015920 + type: mk64:course_vtx + count: 40 + offset: 0x12dfc + +d_course_royal_raceway_vertex_0x04015AE0: + symbol: d_course_royal_raceway_vertex_0x04015AE0 + type: mk64:course_vtx + count: 49 + offset: 0x12f84 + +d_course_royal_raceway_vertex_0x04015CD0: + symbol: d_course_royal_raceway_vertex_0x04015CD0 + type: mk64:course_vtx + count: 48 + offset: 0x13136 + +d_course_royal_raceway_vertex_0x04015EB0: + symbol: d_course_royal_raceway_vertex_0x04015EB0 + type: mk64:course_vtx + count: 32 + offset: 0x132da + +d_course_royal_raceway_vertex_0x04015FF0: + symbol: d_course_royal_raceway_vertex_0x04015FF0 + type: mk64:course_vtx + count: 33 + offset: 0x133f2 + +d_course_royal_raceway_vertex_0x04016140: + symbol: d_course_royal_raceway_vertex_0x04016140 + type: mk64:course_vtx + count: 18 + offset: 0x13518 + +d_course_royal_raceway_vertex_0x04016200: + symbol: d_course_royal_raceway_vertex_0x04016200 + type: mk64:course_vtx + count: 8 + offset: 0x135c0 + +d_course_royal_raceway_vertex_0x04016280: + symbol: d_course_royal_raceway_vertex_0x04016280 + type: mk64:course_vtx + count: 5 + offset: 0x13630 + +d_course_royal_raceway_vertex_0x040162D0: + symbol: d_course_royal_raceway_vertex_0x040162D0 + type: mk64:course_vtx + count: 6 + offset: 0x13676 + +d_course_royal_raceway_vertex_0x04016330: + symbol: d_course_royal_raceway_vertex_0x04016330 + type: mk64:course_vtx + count: 22 + offset: 0x136ca + +d_course_royal_raceway_vertex_0x04016430: + symbol: d_course_royal_raceway_vertex_0x04016430 + type: mk64:course_vtx + count: 48 + offset: 0x137aa + +d_course_royal_raceway_vertex_0x04016610: + symbol: d_course_royal_raceway_vertex_0x04016610 + type: mk64:course_vtx + count: 50 + offset: 0x1394e + +d_course_royal_raceway_vertex_0x04016810: + symbol: d_course_royal_raceway_vertex_0x04016810 + type: mk64:course_vtx + count: 24 + offset: 0x13b0e + +d_course_royal_raceway_vertex_0x04016930: + symbol: d_course_royal_raceway_vertex_0x04016930 + type: mk64:course_vtx + count: 40 + offset: 0x13c0a + +d_course_royal_raceway_vertex_0x04016AF0: + symbol: d_course_royal_raceway_vertex_0x04016AF0 + type: mk64:course_vtx + count: 18 + offset: 0x13d92 + +d_course_royal_raceway_vertex_0x04016BB0: + symbol: d_course_royal_raceway_vertex_0x04016BB0 + type: mk64:course_vtx + count: 9 + offset: 0x13e3a + +d_course_royal_raceway_vertex_0x04016C40: + symbol: d_course_royal_raceway_vertex_0x04016C40 + type: mk64:course_vtx + count: 39 + offset: 0x13eb8 + +d_course_royal_raceway_vertex_0x04016DF0: + symbol: d_course_royal_raceway_vertex_0x04016DF0 + type: mk64:course_vtx + count: 50 + offset: 0x14032 + +d_course_royal_raceway_vertex_0x04016FF0: + symbol: d_course_royal_raceway_vertex_0x04016FF0 + type: mk64:course_vtx + count: 49 + offset: 0x141f2 + +d_course_royal_raceway_vertex_0x040171E0: + symbol: d_course_royal_raceway_vertex_0x040171E0 + type: mk64:course_vtx + count: 3 + offset: 0x143a4 + +d_course_royal_raceway_vertex_0x04017210: + symbol: d_course_royal_raceway_vertex_0x04017210 + type: mk64:course_vtx + count: 21 + offset: 0x143ce + +d_course_royal_raceway_vertex_0x04017300: + symbol: d_course_royal_raceway_vertex_0x04017300 + type: mk64:course_vtx + count: 50 + offset: 0x144a0 + +d_course_royal_raceway_vertex_0x04017500: + symbol: d_course_royal_raceway_vertex_0x04017500 + type: mk64:course_vtx + count: 23 + offset: 0x14660 + +d_course_royal_raceway_vertex_0x04017610: + symbol: d_course_royal_raceway_vertex_0x04017610 + type: mk64:course_vtx + count: 49 + offset: 0x1474e + +d_course_royal_raceway_vertex_0x04017800: + symbol: d_course_royal_raceway_vertex_0x04017800 + type: mk64:course_vtx + count: 3 + offset: 0x14900 + +d_course_royal_raceway_vertex_0x04017830: + symbol: d_course_royal_raceway_vertex_0x04017830 + type: mk64:course_vtx + count: 33 + offset: 0x1492a + +d_course_royal_raceway_vertex_0x04017980: + symbol: d_course_royal_raceway_vertex_0x04017980 + type: mk64:course_vtx + count: 18 + offset: 0x14a50 + +d_course_royal_raceway_vertex_0x04017A40: + symbol: d_course_royal_raceway_vertex_0x04017A40 + type: mk64:course_vtx + count: 18 + offset: 0x14af8 + +d_course_royal_raceway_vertex_0x04017B00: + symbol: d_course_royal_raceway_vertex_0x04017B00 + type: mk64:course_vtx + count: 50 + offset: 0x14ba0 + +d_course_royal_raceway_vertex_0x04017D00: + symbol: d_course_royal_raceway_vertex_0x04017D00 + type: mk64:course_vtx + count: 6 + offset: 0x14d60 + +d_course_royal_raceway_vertex_0x04017D60: + symbol: d_course_royal_raceway_vertex_0x04017D60 + type: mk64:course_vtx + count: 24 + offset: 0x14db4 + +d_course_royal_raceway_vertex_0x04017E80: + symbol: d_course_royal_raceway_vertex_0x04017E80 + type: mk64:course_vtx + count: 36 + offset: 0x14eb0 + +d_course_royal_raceway_vertex_0x04018000: + symbol: d_course_royal_raceway_vertex_0x04018000 + type: mk64:course_vtx + count: 39 + offset: 0x15000 + +d_course_royal_raceway_vertex_0x040181B0: + symbol: d_course_royal_raceway_vertex_0x040181B0 + type: mk64:course_vtx + count: 9 + offset: 0x1517a + +d_course_royal_raceway_vertex_0x04018240: + symbol: d_course_royal_raceway_vertex_0x04018240 + type: mk64:course_vtx + count: 22 + offset: 0x151f8 + +d_course_royal_raceway_vertex_0x04018340: + symbol: d_course_royal_raceway_vertex_0x04018340 + type: mk64:course_vtx + count: 21 + offset: 0x152d8 + +d_course_royal_raceway_vertex_0x04018430: + symbol: d_course_royal_raceway_vertex_0x04018430 + type: mk64:course_vtx + count: 35 + offset: 0x153aa + +d_course_royal_raceway_vertex_0x040185A0: + symbol: d_course_royal_raceway_vertex_0x040185A0 + type: mk64:course_vtx + count: 39 + offset: 0x154ec + +d_course_royal_raceway_vertex_0x04018750: + symbol: d_course_royal_raceway_vertex_0x04018750 + type: mk64:course_vtx + count: 49 + offset: 0x15666 + +d_course_royal_raceway_vertex_0x04018940: + symbol: d_course_royal_raceway_vertex_0x04018940 + type: mk64:course_vtx + count: 49 + offset: 0x15818 + +d_course_royal_raceway_vertex_0x04018B30: + symbol: d_course_royal_raceway_vertex_0x04018B30 + type: mk64:course_vtx + count: 3 + offset: 0x159ca + +d_course_royal_raceway_vertex_0x04018B60: + symbol: d_course_royal_raceway_vertex_0x04018B60 + type: mk64:course_vtx + count: 18 + offset: 0x159f4 + +d_course_royal_raceway_vertex_0x04018C20: + symbol: d_course_royal_raceway_vertex_0x04018C20 + type: mk64:course_vtx + count: 18 + offset: 0x15a9c + +d_course_royal_raceway_vertex_0x04018CE0: + symbol: d_course_royal_raceway_vertex_0x04018CE0 + type: mk64:course_vtx + count: 39 + offset: 0x15b44 + +d_course_royal_raceway_vertex_0x04018E90: + symbol: d_course_royal_raceway_vertex_0x04018E90 + type: mk64:course_vtx + count: 21 + offset: 0x15cbe + +d_course_royal_raceway_vertex_0x04018F80: + symbol: d_course_royal_raceway_vertex_0x04018F80 + type: mk64:course_vtx + count: 48 + offset: 0x15d90 + +d_course_royal_raceway_vertex_0x04019160: + symbol: d_course_royal_raceway_vertex_0x04019160 + type: mk64:course_vtx + count: 16 + offset: 0x15f34 + +d_course_royal_raceway_vertex_0x04019200: + symbol: d_course_royal_raceway_vertex_0x04019200 + type: mk64:course_vtx + count: 50 + offset: 0x15fc0 + +d_course_royal_raceway_vertex_0x04019400: + symbol: d_course_royal_raceway_vertex_0x04019400 + type: mk64:course_vtx + count: 6 + offset: 0x16180 + +d_course_royal_raceway_vertex_0x04019460: + symbol: d_course_royal_raceway_vertex_0x04019460 + type: mk64:course_vtx + count: 18 + offset: 0x161d4 + +d_course_royal_raceway_vertex_0x04019520: + symbol: d_course_royal_raceway_vertex_0x04019520 + type: mk64:course_vtx + count: 18 + offset: 0x1627c + +d_course_royal_raceway_vertex_0x040195E0: + symbol: d_course_royal_raceway_vertex_0x040195E0 + type: mk64:course_vtx + count: 17 + offset: 0x16324 + +d_course_royal_raceway_vertex_0x04019690: + symbol: d_course_royal_raceway_vertex_0x04019690 + type: mk64:course_vtx + count: 33 + offset: 0x163be + +d_course_royal_raceway_vertex_0x040197E0: + symbol: d_course_royal_raceway_vertex_0x040197E0 + type: mk64:course_vtx + count: 34 + offset: 0x164e4 + +d_course_royal_raceway_vertex_0x04019940: + symbol: d_course_royal_raceway_vertex_0x04019940 + type: mk64:course_vtx + count: 39 + offset: 0x16618 + +d_course_royal_raceway_vertex_0x04019AF0: + symbol: d_course_royal_raceway_vertex_0x04019AF0 + type: mk64:course_vtx + count: 35 + offset: 0x16792 + +d_course_royal_raceway_vertex_0x04019C60: + symbol: d_course_royal_raceway_vertex_0x04019C60 + type: mk64:course_vtx + count: 34 + offset: 0x168d4 + +d_course_royal_raceway_vertex_0x04019DC0: + symbol: d_course_royal_raceway_vertex_0x04019DC0 + type: mk64:course_vtx + count: 33 + offset: 0x16a08 + +d_course_royal_raceway_vertex_0x04019F10: + symbol: d_course_royal_raceway_vertex_0x04019F10 + type: mk64:course_vtx + count: 32 + offset: 0x16b2e + +d_course_royal_raceway_vertex_0x0401A050: + symbol: d_course_royal_raceway_vertex_0x0401A050 + type: mk64:course_vtx + count: 6 + offset: 0x16c46 + +d_course_royal_raceway_vertex_0x0401A0B0: + symbol: d_course_royal_raceway_vertex_0x0401A0B0 + type: mk64:course_vtx + count: 23 + offset: 0x16c9a + +d_course_royal_raceway_vertex_0x0401A1C0: + symbol: d_course_royal_raceway_vertex_0x0401A1C0 + type: mk64:course_vtx + count: 49 + offset: 0x16d88 + +d_course_royal_raceway_vertex_0x0401A3B0: + symbol: d_course_royal_raceway_vertex_0x0401A3B0 + type: mk64:course_vtx + count: 25 + offset: 0x16f3a + +d_course_royal_raceway_vertex_0x0401A4E0: + symbol: d_course_royal_raceway_vertex_0x0401A4E0 + type: mk64:course_vtx + count: 50 + offset: 0x17044 + +d_course_royal_raceway_vertex_0x0401A6E0: + symbol: d_course_royal_raceway_vertex_0x0401A6E0 + type: mk64:course_vtx + count: 50 + offset: 0x17204 + +d_course_royal_raceway_vertex_0x0401A8E0: + symbol: d_course_royal_raceway_vertex_0x0401A8E0 + type: mk64:course_vtx + count: 32 + offset: 0x173c4 + +d_course_royal_raceway_vertex_0x0401AA20: + symbol: d_course_royal_raceway_vertex_0x0401AA20 + type: mk64:course_vtx + count: 49 + offset: 0x174dc + +d_course_royal_raceway_vertex_0x0401AC10: + symbol: d_course_royal_raceway_vertex_0x0401AC10 + type: mk64:course_vtx + count: 9 + offset: 0x1768e + +d_course_royal_raceway_vertex_0x0401ACA0: + symbol: d_course_royal_raceway_vertex_0x0401ACA0 + type: mk64:course_vtx + count: 36 + offset: 0x1770c + +d_course_royal_raceway_vertex_0x0401AE20: + symbol: d_course_royal_raceway_vertex_0x0401AE20 + type: mk64:course_vtx + count: 22 + offset: 0x1785c + +d_course_royal_raceway_vertex_0x0401AF20: + symbol: d_course_royal_raceway_vertex_0x0401AF20 + type: mk64:course_vtx + count: 21 + offset: 0x1793c + +d_course_royal_raceway_vertex_0x0401B010: + symbol: d_course_royal_raceway_vertex_0x0401B010 + type: mk64:course_vtx + count: 33 + offset: 0x17a0e + +d_course_royal_raceway_vertex_0x0401B160: + symbol: d_course_royal_raceway_vertex_0x0401B160 + type: mk64:course_vtx + count: 48 + offset: 0x17b34 + +d_course_royal_raceway_vertex_0x0401B340: + symbol: d_course_royal_raceway_vertex_0x0401B340 + type: mk64:course_vtx + count: 3 + offset: 0x17cd8 + +d_course_royal_raceway_vertex_0x0401B370: + symbol: d_course_royal_raceway_vertex_0x0401B370 + type: mk64:course_vtx + count: 48 + offset: 0x17d02 + +d_course_royal_raceway_vertex_0x0401B550: + symbol: d_course_royal_raceway_vertex_0x0401B550 + type: mk64:course_vtx + count: 9 + offset: 0x17ea6 + +d_course_royal_raceway_vertex_0x0401B5E0: + symbol: d_course_royal_raceway_vertex_0x0401B5E0 + type: mk64:course_vtx + count: 50 + offset: 0x17f24 + +d_course_royal_raceway_vertex_0x0401B7E0: + symbol: d_course_royal_raceway_vertex_0x0401B7E0 + type: mk64:course_vtx + count: 9 + offset: 0x180e4 + +d_course_royal_raceway_vertex_0x0401B870: + symbol: d_course_royal_raceway_vertex_0x0401B870 + type: mk64:course_vtx + count: 50 + offset: 0x18162 + +d_course_royal_raceway_vertex_0x0401BA70: + symbol: d_course_royal_raceway_vertex_0x0401BA70 + type: mk64:course_vtx + count: 23 + offset: 0x18322 + +d_course_royal_raceway_vertex_0x0401BB80: + symbol: d_course_royal_raceway_vertex_0x0401BB80 + type: mk64:course_vtx + count: 19 + offset: 0x18410 + +d_course_royal_raceway_vertex_0x0401BC50: + symbol: d_course_royal_raceway_vertex_0x0401BC50 + type: mk64:course_vtx + count: 23 + offset: 0x184c6 + +d_course_royal_raceway_vertex_0x0401BD60: + symbol: d_course_royal_raceway_vertex_0x0401BD60 + type: mk64:course_vtx + count: 5 + offset: 0x185b4 + +d_course_royal_raceway_vertex_0x0401BDB0: + symbol: d_course_royal_raceway_vertex_0x0401BDB0 + type: mk64:course_vtx + count: 9 + offset: 0x185fa + +d_course_royal_raceway_vertex_0x0401BE40: + symbol: d_course_royal_raceway_vertex_0x0401BE40 + type: mk64:course_vtx + count: 4 + offset: 0x18678 + +d_course_royal_raceway_vertex_0x0401BE80: + symbol: d_course_royal_raceway_vertex_0x0401BE80 + type: mk64:course_vtx + count: 5 + offset: 0x186b0 + +d_course_royal_raceway_vertex_0x0401BED0: + symbol: d_course_royal_raceway_vertex_0x0401BED0 + type: mk64:course_vtx + count: 9 + offset: 0x186f6 + +d_course_royal_raceway_vertex_0x0401BF60: + symbol: d_course_royal_raceway_vertex_0x0401BF60 + type: mk64:course_vtx + count: 5 + offset: 0x18774 + +d_course_royal_raceway_vertex_0x0401BFB0: + symbol: d_course_royal_raceway_vertex_0x0401BFB0 + type: mk64:course_vtx + count: 7 + offset: 0x187ba + +d_course_royal_raceway_vertex_0x0401C020: + symbol: d_course_royal_raceway_vertex_0x0401C020 + type: mk64:course_vtx + count: 5 + offset: 0x1881c + +d_course_royal_raceway_vertex_0x0401C070: + symbol: d_course_royal_raceway_vertex_0x0401C070 + type: mk64:course_vtx + count: 9 + offset: 0x18862 + +d_course_royal_raceway_vertex_0x0401C100: + symbol: d_course_royal_raceway_vertex_0x0401C100 + type: mk64:course_vtx + count: 24 + offset: 0x188e0 + +d_course_royal_raceway_vertex_0x0401C220: + symbol: d_course_royal_raceway_vertex_0x0401C220 + type: mk64:course_vtx + count: 9 + offset: 0x189dc + +d_course_royal_raceway_vertex_0x0401C2B0: + symbol: d_course_royal_raceway_vertex_0x0401C2B0 + type: mk64:course_vtx + count: 24 + offset: 0x18a5a + +d_course_royal_raceway_vertex_0x0401C3D0: + symbol: d_course_royal_raceway_vertex_0x0401C3D0 + type: mk64:course_vtx + count: 20 + offset: 0x18b56 + +d_course_royal_raceway_vertex_0x0401C4B0: + symbol: d_course_royal_raceway_vertex_0x0401C4B0 + type: mk64:course_vtx + count: 20 + offset: 0x18c1a + +d_course_royal_raceway_vertex_0x0401C590: + symbol: d_course_royal_raceway_vertex_0x0401C590 + type: mk64:course_vtx + count: 34 + offset: 0x18cde + +d_course_royal_raceway_vertex_0x0401C6F0: + symbol: d_course_royal_raceway_vertex_0x0401C6F0 + type: mk64:course_vtx + count: 35 + offset: 0x18e12 + +d_course_royal_raceway_vertex_0x0401C860: + symbol: d_course_royal_raceway_vertex_0x0401C860 + type: mk64:course_vtx + count: 24 + offset: 0x18f54 + +d_course_royal_raceway_vertex_0x0401C980: + symbol: d_course_royal_raceway_vertex_0x0401C980 + type: mk64:course_vtx + count: 36 + offset: 0x19050 + +d_course_royal_raceway_vertex_0x0401CB00: + symbol: d_course_royal_raceway_vertex_0x0401CB00 + type: mk64:course_vtx + count: 40 + offset: 0x191a0 + +d_course_royal_raceway_vertex_0x0401CCC0: + symbol: d_course_royal_raceway_vertex_0x0401CCC0 + type: mk64:course_vtx + count: 41 + offset: 0x19328 + +d_course_royal_raceway_vertex_0x0401CE90: + symbol: d_course_royal_raceway_vertex_0x0401CE90 + type: mk64:course_vtx + count: 19 + offset: 0x194be + +d_course_royal_raceway_vertex_0x0401CF60: + symbol: d_course_royal_raceway_vertex_0x0401CF60 + type: mk64:course_vtx + count: 49 + offset: 0x19574 + +d_course_royal_raceway_vertex_0x0401D150: + symbol: d_course_royal_raceway_vertex_0x0401D150 + type: mk64:course_vtx + count: 17 + offset: 0x19726 + +d_course_royal_raceway_vertex_0x0401D200: + symbol: d_course_royal_raceway_vertex_0x0401D200 + type: mk64:course_vtx + count: 6 + offset: 0x197c0 + +d_course_royal_raceway_vertex_0x0401D260: + symbol: d_course_royal_raceway_vertex_0x0401D260 + type: mk64:course_vtx + count: 18 + offset: 0x19814 + +d_course_royal_raceway_vertex_0x0401D320: + symbol: d_course_royal_raceway_vertex_0x0401D320 + type: mk64:course_vtx + count: 9 + offset: 0x198bc + +d_course_royal_raceway_vertex_0x0401D3B0: + symbol: d_course_royal_raceway_vertex_0x0401D3B0 + type: mk64:course_vtx + count: 22 + offset: 0x1993a + +d_course_royal_raceway_vertex_0x0401D4B0: + symbol: d_course_royal_raceway_vertex_0x0401D4B0 + type: mk64:course_vtx + count: 18 + offset: 0x19a1a + +d_course_royal_raceway_vertex_0x0401D570: + symbol: d_course_royal_raceway_vertex_0x0401D570 + type: mk64:course_vtx + count: 4 + offset: 0x19ac2 + +d_course_royal_raceway_vertex_0x0401D5B0: + symbol: d_course_royal_raceway_vertex_0x0401D5B0 + type: mk64:course_vtx + count: 18 + offset: 0x19afa + +d_course_royal_raceway_vertex_0x0401D670: + symbol: d_course_royal_raceway_vertex_0x0401D670 + type: mk64:course_vtx + count: 4 + offset: 0x19ba2 + +d_course_royal_raceway_vertex_0x0401D6B0: + symbol: d_course_royal_raceway_vertex_0x0401D6B0 + type: mk64:course_vtx + count: 18 + offset: 0x19bda + +d_course_royal_raceway_vertex_0x0401D770: + symbol: d_course_royal_raceway_vertex_0x0401D770 + type: mk64:course_vtx + count: 4 + offset: 0x19c82 + +d_course_royal_raceway_vertex_0x0401D7B0: + symbol: d_course_royal_raceway_vertex_0x0401D7B0 + type: mk64:course_vtx + count: 18 + offset: 0x19cba + +d_course_royal_raceway_vertex_0x0401D870: + symbol: d_course_royal_raceway_vertex_0x0401D870 + type: mk64:course_vtx + count: 4 + offset: 0x19d62 + +d_course_royal_raceway_vertex_0x0401D8B0: + symbol: d_course_royal_raceway_vertex_0x0401D8B0 + type: mk64:course_vtx + count: 4 + offset: 0x19d9a + +d_course_royal_raceway_vertex_0x0401D8F0: + symbol: d_course_royal_raceway_vertex_0x0401D8F0 + type: mk64:course_vtx + count: 4 + offset: 0x19dd2 + +d_course_royal_raceway_vertex_0x0401D930: + symbol: d_course_royal_raceway_vertex_0x0401D930 + type: mk64:course_vtx + count: 18 + offset: 0x19e0a + +d_course_royal_raceway_vertex_0x0401D9F0: + symbol: d_course_royal_raceway_vertex_0x0401D9F0 + type: mk64:course_vtx + count: 4 + offset: 0x19eb2 + +d_course_royal_raceway_vertex_0x0401DA30: + symbol: d_course_royal_raceway_vertex_0x0401DA30 + type: mk64:course_vtx + count: 8 + offset: 0x19eea + +d_course_royal_raceway_vertex_0x0401DAB0: + symbol: d_course_royal_raceway_vertex_0x0401DAB0 + type: mk64:course_vtx + count: 22 + offset: 0x19f5a + +d_course_royal_raceway_vertex_0x0401DBB0: + symbol: d_course_royal_raceway_vertex_0x0401DBB0 + type: mk64:course_vtx + count: 18 + offset: 0x1a03a + +d_course_royal_raceway_vertex_0x0401DC70: + symbol: d_course_royal_raceway_vertex_0x0401DC70 + type: mk64:course_vtx + count: 8 + offset: 0x1a0e2 + +d_course_royal_raceway_vertex_0x0401DCF0: + symbol: d_course_royal_raceway_vertex_0x0401DCF0 + type: mk64:course_vtx + count: 25 + offset: 0x1a152 + +d_course_royal_raceway_vertex_0x0401DE20: + symbol: d_course_royal_raceway_vertex_0x0401DE20 + type: mk64:course_vtx + count: 22 + offset: 0x1a25c + +d_course_royal_raceway_vertex_0x0401DF20: + symbol: d_course_royal_raceway_vertex_0x0401DF20 + type: mk64:course_vtx + count: 32 + offset: 0x1a33c + +d_course_royal_raceway_vertex_0x0401E060: + symbol: d_course_royal_raceway_vertex_0x0401E060 + type: mk64:course_vtx + count: 22 + offset: 0x1a454 + +d_course_royal_raceway_vertex_0x0401E160: + symbol: d_course_royal_raceway_vertex_0x0401E160 + type: mk64:course_vtx + count: 18 + offset: 0x1a534 + +d_course_royal_raceway_vertex_0x0401E220: + symbol: d_course_royal_raceway_vertex_0x0401E220 + type: mk64:course_vtx + count: 18 + offset: 0x1a5dc + +d_course_royal_raceway_vertex_0x0401E2E0: + symbol: d_course_royal_raceway_vertex_0x0401E2E0 + type: mk64:course_vtx + count: 4 + offset: 0x1a684 + +d_course_royal_raceway_vertex_0x0401E320: + symbol: d_course_royal_raceway_vertex_0x0401E320 + type: mk64:course_vtx + count: 4 + offset: 0x1a6bc + +d_course_royal_raceway_vertex_0x0401E360: + symbol: d_course_royal_raceway_vertex_0x0401E360 + type: mk64:course_vtx + count: 22 + offset: 0x1a6f4 + +d_course_royal_raceway_vertex_0x0401E460: + symbol: d_course_royal_raceway_vertex_0x0401E460 + type: mk64:course_vtx + count: 22 + offset: 0x1a7d4 + +d_course_royal_raceway_vertex_0x0401E560: + symbol: d_course_royal_raceway_vertex_0x0401E560 + type: mk64:course_vtx + count: 18 + offset: 0x1a8b4 + +d_course_royal_raceway_vertex_0x0401E620: + symbol: d_course_royal_raceway_vertex_0x0401E620 + type: mk64:course_vtx + count: 8 + offset: 0x1a95c + +d_course_royal_raceway_vertex_0x0401E6A0: + symbol: d_course_royal_raceway_vertex_0x0401E6A0 + type: mk64:course_vtx + count: 4 + offset: 0x1a9cc + +d_course_royal_raceway_vertex_0x0401E6E0: + symbol: d_course_royal_raceway_vertex_0x0401E6E0 + type: mk64:course_vtx + count: 18 + offset: 0x1aa04 + +d_course_royal_raceway_vertex_0x0401E7A0: + symbol: d_course_royal_raceway_vertex_0x0401E7A0 + type: mk64:course_vtx + count: 32 + offset: 0x1aaac + +d_course_royal_raceway_vertex_0x0401E8E0: + symbol: d_course_royal_raceway_vertex_0x0401E8E0 + type: mk64:course_vtx + count: 32 + offset: 0x1abc4 + +d_course_royal_raceway_vertex_0x0401EA20: + symbol: d_course_royal_raceway_vertex_0x0401EA20 + type: mk64:course_vtx + count: 7 + offset: 0x1acdc + +d_course_royal_raceway_vertex_0x0401EA90: + symbol: d_course_royal_raceway_vertex_0x0401EA90 + type: mk64:course_vtx + count: 22 + offset: 0x1ad3e + +d_course_royal_raceway_vertex_0x0401EB90: + symbol: d_course_royal_raceway_vertex_0x0401EB90 + type: mk64:course_vtx + count: 4 + offset: 0x1ae1e + +d_course_royal_raceway_vertex_0x0401EBD0: + symbol: d_course_royal_raceway_vertex_0x0401EBD0 + type: mk64:course_vtx + count: 18 + offset: 0x1ae56 + +d_course_royal_raceway_vertex_0x0401EC90: + symbol: d_course_royal_raceway_vertex_0x0401EC90 + type: mk64:course_vtx + count: 33 + offset: 0x1aefe + +d_course_royal_raceway_vertex_0x0401EDE0: + symbol: d_course_royal_raceway_vertex_0x0401EDE0 + type: mk64:course_vtx + count: 23 + offset: 0x1b024 + +d_course_royal_raceway_vertex_0x0401EEF0: + symbol: d_course_royal_raceway_vertex_0x0401EEF0 + type: mk64:course_vtx + count: 23 + offset: 0x1b112 + +d_course_royal_raceway_vertex_0x0401F000: + symbol: d_course_royal_raceway_vertex_0x0401F000 + type: mk64:course_vtx + count: 19 + offset: 0x1b200 + +d_course_royal_raceway_vertex_0x0401F0D0: + symbol: d_course_royal_raceway_vertex_0x0401F0D0 + type: mk64:course_vtx + count: 33 + offset: 0x1b2b6 + +d_course_royal_raceway_vertex_0x0401F220: + symbol: d_course_royal_raceway_vertex_0x0401F220 + type: mk64:course_vtx + count: 37 + offset: 0x1b3dc + +d_course_royal_raceway_vertex_0x0401F3B0: + symbol: d_course_royal_raceway_vertex_0x0401F3B0 + type: mk64:course_vtx + count: 49 + offset: 0x1b53a + +d_course_royal_raceway_vertex_0x0401F5A0: + symbol: d_course_royal_raceway_vertex_0x0401F5A0 + type: mk64:course_vtx + count: 3 + offset: 0x1b6ec + +d_course_royal_raceway_vertex_0x0401F5D0: + symbol: d_course_royal_raceway_vertex_0x0401F5D0 + type: mk64:course_vtx + count: 38 + offset: 0x1b716 + +d_course_royal_raceway_vertex_0x0401F770: + symbol: d_course_royal_raceway_vertex_0x0401F770 + type: mk64:course_vtx + count: 48 + offset: 0x1b882 + +d_course_royal_raceway_vertex_0x0401F950: + symbol: d_course_royal_raceway_vertex_0x0401F950 + type: mk64:course_vtx + count: 38 + offset: 0x1ba26 + +d_course_royal_raceway_vertex_0x0401FAF0: + symbol: d_course_royal_raceway_vertex_0x0401FAF0 + type: mk64:course_vtx + count: 49 + offset: 0x1bb92 + +d_course_royal_raceway_vertex_0x0401FCE0: + symbol: d_course_royal_raceway_vertex_0x0401FCE0 + type: mk64:course_vtx + count: 5 + offset: 0x1bd44 + +d_course_royal_raceway_vertex_0x0401FD30: + symbol: d_course_royal_raceway_vertex_0x0401FD30 + type: mk64:course_vtx + count: 49 + offset: 0x1bd8a + +d_course_royal_raceway_vertex_0x0401FF20: + symbol: d_course_royal_raceway_vertex_0x0401FF20 + type: mk64:course_vtx + count: 24 + offset: 0x1bf3c + +d_course_royal_raceway_vertex_0x04020040: + symbol: d_course_royal_raceway_vertex_0x04020040 + type: mk64:course_vtx + count: 40 + offset: 0x1c038 + +d_course_royal_raceway_vertex_0x04020200: + symbol: d_course_royal_raceway_vertex_0x04020200 + type: mk64:course_vtx + count: 50 + offset: 0x1c1c0 + +d_course_royal_raceway_vertex_0x04020400: + symbol: d_course_royal_raceway_vertex_0x04020400 + type: mk64:course_vtx + count: 50 + offset: 0x1c380 + +d_course_royal_raceway_vertex_0x04020600: + symbol: d_course_royal_raceway_vertex_0x04020600 + type: mk64:course_vtx + count: 24 + offset: 0x1c540 diff --git a/yamls/us/models/tracks/sherbet_land/sherbet_land_data.yml b/yamls/us/models/tracks/sherbet_land/sherbet_land_data.yml new file mode 100644 index 000000000..6afe58ace --- /dev/null +++ b/yamls/us/models/tracks/sherbet_land/sherbet_land_data.yml @@ -0,0 +1,976 @@ +:config: + segments: + - [0x06, 0x86ECF0] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/sherbet_land/sherbet_land_data.yml" + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_643B3C"] + - [0x05000800, "textures/other_textures/texture_66D024"] + - [0x05001000, "textures/other_textures/texture_678118"] + - [0x05001800, "textures/other_textures/sign_wood_red_arrow"] + - [0x05002800, "textures/other_textures/texture_678CC8"] + - [0x05003000, "textures/other_textures/texture_67842C"] + - [0x05003800, "textures/other_textures/texture_67893C"] + - [0x05004000, "textures/other_textures/texture_651984"] + - [0x05004800, "textures/other_textures/texture_651428"] + - [0x05005000, "textures/other_textures/texture_662924"] + # Segment 7 + - [0x7000000, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_0"] + - [0x70000C0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_C0"] + - [0x7000180, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_180"] + - [0x7000240, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_240"] + - [0x7000300, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_300"] + - [0x7000328, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_328"] + - [0x7000338, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_338"] + - [0x7000348, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_348"] + - [0x7000470, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_470"] + - [0x70005D0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_5D0"] + - [0x7000730, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_730"] + - [0x7000858, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_858"] + - [0x70009A0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_9A0"] + - [0x7000B00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_B00"] + - [0x7000C30, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_C30"] + - [0x7000D48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_D48"] + - [0x7000D90, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_D90"] + - [0x7000E00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_E00"] + - [0x7000EA0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_EA0"] + - [0x7000EB8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_EB8"] + - [0x7000F48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_F48"] + - [0x7000FD0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_FD0"] + - [0x7001050, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1050"] + - [0x70010C8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_10C8"] + - [0x7001148, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1148"] + - [0x70011B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_11B8"] + - [0x7001220, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1220"] + - [0x70012C8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_12C8"] + - [0x7001370, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1370"] + - [0x70013E8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_13E8"] + - [0x7001450, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1450"] + - [0x70014B0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_14B0"] + - [0x7001520, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1520"] + - [0x7001598, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1598"] + - [0x7001640, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1640"] + - [0x70016B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_16B8"] + - [0x7001720, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1720"] + - [0x7001798, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1798"] + - [0x7001800, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1800"] + - [0x7001870, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1870"] + - [0x70018E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_18E0"] + - [0x7001940, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1940"] + - [0x7001998, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1998"] + - [0x7001A18, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1A18"] + - [0x7001A98, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1A98"] + - [0x7001B20, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1B20"] + - [0x7001BE0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1BE0"] + - [0x7001C50, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1C50"] + - [0x7001CD8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1CD8"] + - [0x7001D48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1D48"] + - [0x7001DC0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1DC0"] + - [0x7001E40, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1E40"] + - [0x7001EB8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1EB8"] + - [0x7001F10, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1F10"] + - [0x7001F78, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1F78"] + - [0x7001FF0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1FF0"] + - [0x7002068, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2068"] + - [0x70020D0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_20D0"] + - [0x7002138, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2138"] + - [0x70021B0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_21B0"] + - [0x7002220, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2220"] + - [0x7002290, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2290"] + - [0x7002308, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2308"] + - [0x7002358, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2358"] + - [0x7002450, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2450"] + - [0x7002548, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2548"] + - [0x7002640, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2640"] + - [0x7002738, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2738"] + - [0x7002760, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2760"] + - [0x7002798, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2798"] + - [0x70027A8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_27A8"] + - [0x7002B48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2B48"] + - [0x7002B58, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2B58"] + - [0x7002BC8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2BC8"] + - [0x7002C68, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2C68"] + - [0x7002C80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2C80"] + - [0x7002CF0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2CF0"] + - [0x7002D80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2D80"] + - [0x7002E08, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2E08"] + - [0x7002E88, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2E88"] + - [0x7002F00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2F00"] + - [0x7002F80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2F80"] + - [0x7002FE8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2FE8"] + - [0x7003058, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3058"] + - [0x70030C0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_30C0"] + - [0x7003170, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3170"] + - [0x7003218, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3218"] + - [0x7003290, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3290"] + - [0x70032F8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_32F8"] + - [0x7003368, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3368"] + - [0x70033E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_33E0"] + - [0x7003488, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3488"] + - [0x7003500, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3500"] + - [0x7003568, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3568"] + - [0x70035E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_35E0"] + - [0x7003648, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3648"] + - [0x70036B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_36B8"] + - [0x7003728, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3728"] + - [0x7003788, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3788"] + - [0x70037E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_37E0"] + - [0x7003848, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3848"] + - [0x7003858, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3858"] + # Segment 4 + - [0x4000000, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000000"] + - [0x4000040, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000040"] + - [0x4000080, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000080"] + - [0x40000c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040000C0"] + - [0x4000100, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000100"] + - [0x4000140, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000140"] + - [0x4000180, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000180"] + - [0x40001c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040001C0"] + - [0x4000200, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000200"] + - [0x4000400, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000400"] + - [0x4000600, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000600"] + - [0x4000800, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000800"] + - [0x40008b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040008B0"] + - [0x4000ab0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000AB0"] + - [0x4000cb0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000CB0"] + - [0x4000ea0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000EA0"] + - [0x40010a0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040010A0"] + - [0x40011d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040011D0"] + - [0x40013b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040013B0"] + - [0x4001590, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001590"] + - [0x4001780, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001780"] + - [0x4001970, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001970"] + - [0x4001b20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001B20"] + - [0x4001d20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001D20"] + - [0x4001f20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001F20"] + - [0x40020b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040020B0"] + - [0x40020f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040020F0"] + - [0x40022e0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040022E0"] + - [0x40024c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040024C0"] + - [0x40026a0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040026A0"] + - [0x4002890, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002890"] + - [0x40028f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040028F0"] + - [0x4002ad0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002AD0"] + - [0x4002cc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002CC0"] + - [0x4002ec0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002EC0"] + - [0x40030c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040030C0"] + - [0x4003230, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003230"] + - [0x4003410, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003410"] + - [0x4003600, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003600"] + - [0x4003800, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003800"] + - [0x40039d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040039D0"] + - [0x4003bc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003BC0"] + - [0x4003da0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003DA0"] + - [0x4003e80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003E80"] + - [0x4003ec0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003EC0"] + - [0x4003fc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003FC0"] + - [0x40041c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040041C0"] + - [0x4004230, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004230"] + - [0x40043f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040043F0"] + - [0x4004570, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004570"] + - [0x4004750, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004750"] + - [0x40048b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040048B0"] + - [0x4004a60, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004A60"] + - [0x4004b80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004B80"] + - [0x4004c40, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004C40"] + - [0x4004e40, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004E40"] + - [0x4004f30, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004F30"] + - [0x4005120, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005120"] + - [0x40051b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040051B0"] + - [0x4005330, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005330"] + - [0x40053f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040053F0"] + - [0x40054b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040054B0"] + - [0x40055b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040055B0"] + - [0x40057b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040057B0"] + - [0x40057f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040057F0"] + - [0x40058c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040058C0"] + - [0x4005940, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005940"] + - [0x4005a40, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005A40"] + - [0x4005ac0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005AC0"] + - [0x4005b80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005B80"] + - [0x4005c40, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005C40"] + - [0x4005c80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005C80"] + - [0x4005d30, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005D30"] + - [0x4005de0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005DE0"] + - [0x4005ee0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005EE0"] + - [0x4005f80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005F80"] + - [0x4005fc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005FC0"] + - [0x4006040, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006040"] + - [0x4006110, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006110"] + - [0x4006180, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006180"] + - [0x4006220, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006220"] + - [0x40062d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040062D0"] + - [0x4006370, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006370"] + - [0x40063c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040063C0"] + - [0x4006450, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006450"] + - [0x40064e0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040064E0"] + - [0x4006540, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006540"] + - [0x4006590, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006590"] + - [0x4006620, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006620"] + - [0x4006690, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006690"] + - [0x4006700, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006700"] + - [0x4006790, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006790"] + - [0x4006990, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006990"] + - [0x4006b90, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006B90"] + - [0x4006c10, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006C10"] + - [0x4006e10, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006E10"] + - [0x4007010, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007010"] + - [0x4007090, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007090"] + - [0x4007290, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007290"] + - [0x4007490, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007490"] + - [0x4007510, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007510"] + - [0x4007710, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007710"] + - [0x4007910, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007910"] + - [0x4007990, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007990"] + - [0x4007a20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007A20"] + - [0x4007c20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007C20"] + - [0x4007e20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007E20"] + - [0x4008020, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008020"] + - [0x4008220, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008220"] + - [0x4008420, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008420"] + - [0x4008620, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008620"] + - [0x4008800, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008800"] + - [0x4008870, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008870"] + - [0x4008970, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008970"] + - [0x4008b50, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008B50"] + - [0x4008bc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008BC0"] + - [0x4008ce0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008CE0"] + - [0x4008ea0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008EA0"] + - [0x4009020, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009020"] + - [0x4009200, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009200"] + - [0x4009360, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009360"] + - [0x4009510, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009510"] + - [0x40095d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040095D0"] + - [0x40096d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040096D0"] + - [0x4009790, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009790"] + - [0x4009980, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009980"] + - [0x4009aa0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009AA0"] + - [0x4009c90, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009C90"] + - [0x4009d50, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009D50"] + - [0x4009ed0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009ED0"] + - [0x4009f90, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009F90"] + - [0x400a090, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A090"] + - [0x400a290, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A290"] + - [0x400a2d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A2D0"] + - [0x400a3a0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A3A0"] + - [0x400a420, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A420"] + - [0x400a520, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A520"] + - [0x400a5a0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A5A0"] + - [0x400a660, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A660"] + - [0x400a720, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A720"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_sherbet_land_dl_0: + symbol: d_course_sherbet_land_dl_0 + type: gfx + offset: 0x0 +d_course_sherbet_land_dl_C0: + symbol: d_course_sherbet_land_dl_C0 + type: gfx + offset: 0xC0 +d_course_sherbet_land_dl_158: + symbol: d_course_sherbet_land_dl_158 + type: gfx + offset: 0x158 +d_course_sherbet_land_dl_1A8: + symbol: d_course_sherbet_land_dl_1A8 + type: gfx + offset: 0x1A8 +d_course_sherbet_land_dl_280: + symbol: d_course_sherbet_land_dl_280 + type: gfx + offset: 0x280 +d_course_sherbet_land_dl_310: + symbol: d_course_sherbet_land_dl_310 + type: gfx + offset: 0x310 +d_course_sherbet_land_dl_3B8: + symbol: d_course_sherbet_land_dl_3B8 + type: gfx + offset: 0x3B8 +d_course_sherbet_land_dl_400: + symbol: d_course_sherbet_land_dl_400 + type: gfx + offset: 0x400 +d_course_sherbet_land_dl_4E8: + symbol: d_course_sherbet_land_dl_4E8 + type: gfx + offset: 0x4E8 +d_course_sherbet_land_dl_560: + symbol: d_course_sherbet_land_dl_560 + type: gfx + offset: 0x560 +d_course_sherbet_land_dl_638: + symbol: d_course_sherbet_land_dl_638 + type: gfx + offset: 0x638 +d_course_sherbet_land_dl_6A0: + symbol: d_course_sherbet_land_dl_6A0 + type: gfx + offset: 0x6A0 +d_course_sherbet_land_dl_768: + symbol: d_course_sherbet_land_dl_768 + type: gfx + offset: 0x768 +d_course_sherbet_land_dl_7A0: + symbol: d_course_sherbet_land_dl_7A0 + type: gfx + offset: 0x7A0 +d_course_sherbet_land_dl_880: + symbol: d_course_sherbet_land_dl_880 + type: gfx + offset: 0x880 +d_course_sherbet_land_dl_8E8: + symbol: d_course_sherbet_land_dl_8E8 + type: gfx + offset: 0x8E8 +d_course_sherbet_land_dl_9A0: + symbol: d_course_sherbet_land_dl_9A0 + type: gfx + offset: 0x9A0 +d_course_sherbet_land_dl_A28: + symbol: d_course_sherbet_land_dl_A28 + type: gfx + offset: 0xA28 +d_course_sherbet_land_dl_B08: + symbol: d_course_sherbet_land_dl_B08 + type: gfx + offset: 0xB08 +d_course_sherbet_land_dl_BC0: + symbol: d_course_sherbet_land_dl_BC0 + type: gfx + offset: 0xBC0 +d_course_sherbet_land_dl_C88: + symbol: d_course_sherbet_land_dl_C88 + type: gfx + offset: 0xC88 +d_course_sherbet_land_dl_D10: + symbol: d_course_sherbet_land_dl_D10 + type: gfx + offset: 0xD10 +d_course_sherbet_land_dl_DF0: + symbol: d_course_sherbet_land_dl_DF0 + type: gfx + offset: 0xDF0 +d_course_sherbet_land_dl_EC8: + symbol: d_course_sherbet_land_dl_EC8 + type: gfx + offset: 0xEC8 +d_course_sherbet_land_dl_F68: + symbol: d_course_sherbet_land_dl_F68 + type: gfx + offset: 0xF68 +d_course_sherbet_land_dl_1028: + symbol: d_course_sherbet_land_dl_1028 + type: gfx + offset: 0x1028 +d_course_sherbet_land_dl_10D8: + symbol: d_course_sherbet_land_dl_10D8 + type: gfx + offset: 0x10D8 +d_course_sherbet_land_dl_11C8: + symbol: d_course_sherbet_land_dl_11C8 + type: gfx + offset: 0x11C8 +d_course_sherbet_land_dl_1238: + symbol: d_course_sherbet_land_dl_1238 + type: gfx + offset: 0x1238 +d_course_sherbet_land_dl_12F0: + symbol: d_course_sherbet_land_dl_12F0 + type: gfx + offset: 0x12F0 +d_course_sherbet_land_dl_1368: + symbol: d_course_sherbet_land_dl_1368 + type: gfx + offset: 0x1368 +d_course_sherbet_land_dl_1440: + symbol: d_course_sherbet_land_dl_1440 + type: gfx + offset: 0x1440 +d_course_sherbet_land_dl_1480: + symbol: d_course_sherbet_land_dl_1480 + type: gfx + offset: 0x1480 +d_course_sherbet_land_dl_14C0: + symbol: d_course_sherbet_land_dl_14C0 + type: gfx + offset: 0x14C0 +d_course_sherbet_land_dl_1508: + symbol: d_course_sherbet_land_dl_1508 + type: gfx + offset: 0x1508 +d_course_sherbet_land_dl_1570: + symbol: d_course_sherbet_land_dl_1570 + type: gfx + offset: 0x1570 +d_course_sherbet_land_dl_1598: + symbol: d_course_sherbet_land_dl_1598 + type: gfx + offset: 0x1598 +d_course_sherbet_land_dl_15F0: + symbol: d_course_sherbet_land_dl_15F0 + type: gfx + offset: 0x15F0 +d_course_sherbet_land_dl_1638: + symbol: d_course_sherbet_land_dl_1638 + type: gfx + offset: 0x1638 +d_course_sherbet_land_dl_1698: + symbol: d_course_sherbet_land_dl_1698 + type: gfx + offset: 0x1698 +d_course_sherbet_land_dl_16C0: + symbol: d_course_sherbet_land_dl_16C0 + type: gfx + offset: 0x16C0 +d_course_sherbet_land_dl_1730: + symbol: d_course_sherbet_land_dl_1730 + type: gfx + offset: 0x1730 +d_course_sherbet_land_dl_1778: + symbol: d_course_sherbet_land_dl_1778 + type: gfx + offset: 0x1778 +d_course_sherbet_land_dl_17D8: + symbol: d_course_sherbet_land_dl_17D8 + type: gfx + offset: 0x17D8 +d_course_sherbet_land_dl_1828: + symbol: d_course_sherbet_land_dl_1828 + type: gfx + offset: 0x1828 +d_course_sherbet_land_dl_18A0: + symbol: d_course_sherbet_land_dl_18A0 + type: gfx + offset: 0x18A0 +d_course_sherbet_land_dl_18E8: + symbol: d_course_sherbet_land_dl_18E8 + type: gfx + offset: 0x18E8 +d_course_sherbet_land_dl_1920: + symbol: d_course_sherbet_land_dl_1920 + type: gfx + offset: 0x1920 +d_course_sherbet_land_dl_19A0: + symbol: d_course_sherbet_land_dl_19A0 + type: gfx + offset: 0x19A0 +d_course_sherbet_land_dl_19F0: + symbol: d_course_sherbet_land_dl_19F0 + type: gfx + offset: 0x19F0 +d_course_sherbet_land_dl_1A58: + symbol: d_course_sherbet_land_dl_1A58 + type: gfx + offset: 0x1A58 +d_course_sherbet_land_dl_1A90: + symbol: d_course_sherbet_land_dl_1A90 + type: gfx + offset: 0x1A90 +d_course_sherbet_land_dl_1AF8: + symbol: d_course_sherbet_land_dl_1AF8 + type: gfx + offset: 0x1AF8 +d_course_sherbet_land_dl_1B50: + symbol: d_course_sherbet_land_dl_1B50 + type: gfx + offset: 0x1B50 +d_course_sherbet_land_dl_1BA8: + symbol: d_course_sherbet_land_dl_1BA8 + type: gfx + offset: 0x1BA8 +d_course_sherbet_land_dl_1C20: + symbol: d_course_sherbet_land_dl_1C20 + type: gfx + offset: 0x1C20 +d_course_sherbet_land_dl_1C48: + symbol: d_course_sherbet_land_dl_1C48 + type: gfx + offset: 0x1C48 +d_course_sherbet_land_dl_1D08: + symbol: d_course_sherbet_land_dl_1D08 + type: gfx + offset: 0x1D08 +d_course_sherbet_land_dl_1D60: + symbol: d_course_sherbet_land_dl_1D60 + type: gfx + offset: 0x1D60 +d_course_sherbet_land_dl_1E10: + symbol: d_course_sherbet_land_dl_1E10 + type: gfx + offset: 0x1E10 +d_course_sherbet_land_dl_1E88: + symbol: d_course_sherbet_land_dl_1E88 + type: gfx + offset: 0x1E88 +d_course_sherbet_land_dl_1F70: + symbol: d_course_sherbet_land_dl_1F70 + type: gfx + offset: 0x1F70 +d_course_sherbet_land_dl_2010: + symbol: d_course_sherbet_land_dl_2010 + type: gfx + offset: 0x2010 +d_course_sherbet_land_dl_20D0: + symbol: d_course_sherbet_land_dl_20D0 + type: gfx + offset: 0x20D0 +d_course_sherbet_land_dl_2190: + symbol: d_course_sherbet_land_dl_2190 + type: gfx + offset: 0x2190 +d_course_sherbet_land_dl_2288: + symbol: d_course_sherbet_land_dl_2288 + type: gfx + offset: 0x2288 +d_course_sherbet_land_dl_22F8: + symbol: d_course_sherbet_land_dl_22F8 + type: gfx + offset: 0x22F8 +d_course_sherbet_land_dl_2370: + symbol: d_course_sherbet_land_dl_2370 + type: gfx + offset: 0x2370 +d_course_sherbet_land_dl_2438: + symbol: d_course_sherbet_land_dl_2438 + type: gfx + offset: 0x2438 +d_course_sherbet_land_dl_2530: + symbol: d_course_sherbet_land_dl_2530 + type: gfx + offset: 0x2530 +d_course_sherbet_land_dl_25A0: + symbol: d_course_sherbet_land_dl_25A0 + type: gfx + offset: 0x25A0 +d_course_sherbet_land_dl_25F8: + symbol: d_course_sherbet_land_dl_25F8 + type: gfx + offset: 0x25F8 +d_course_sherbet_land_dl_26D0: + symbol: d_course_sherbet_land_dl_26D0 + type: gfx + offset: 0x26D0 +d_course_sherbet_land_dl_27F0: + symbol: d_course_sherbet_land_dl_27F0 + type: gfx + offset: 0x27F0 +d_course_sherbet_land_dl_28A0: + symbol: d_course_sherbet_land_dl_28A0 + type: gfx + offset: 0x28A0 +d_course_sherbet_land_dl_2918: + symbol: d_course_sherbet_land_dl_2918 + type: gfx + offset: 0x2918 +d_course_sherbet_land_dl_2A38: + symbol: d_course_sherbet_land_dl_2A38 + type: gfx + offset: 0x2A38 +d_course_sherbet_land_dl_2B08: + symbol: d_course_sherbet_land_dl_2B08 + type: gfx + offset: 0x2B08 +d_course_sherbet_land_dl_2BE0: + symbol: d_course_sherbet_land_dl_2BE0 + type: gfx + offset: 0x2BE0 +d_course_sherbet_land_dl_2C58: + symbol: d_course_sherbet_land_dl_2C58 + type: gfx + offset: 0x2C58 +d_course_sherbet_land_dl_2D78: + symbol: d_course_sherbet_land_dl_2D78 + type: gfx + offset: 0x2D78 +d_course_sherbet_land_dl_2E28: + symbol: d_course_sherbet_land_dl_2E28 + type: gfx + offset: 0x2E28 +d_course_sherbet_land_dl_2F48: + symbol: d_course_sherbet_land_dl_2F48 + type: gfx + offset: 0x2F48 +d_course_sherbet_land_dl_2FE8: + symbol: d_course_sherbet_land_dl_2FE8 + type: gfx + offset: 0x2FE8 +d_course_sherbet_land_dl_30E0: + symbol: d_course_sherbet_land_dl_30E0 + type: gfx + offset: 0x30E0 +d_course_sherbet_land_dl_3150: + symbol: d_course_sherbet_land_dl_3150 + type: gfx + offset: 0x3150 +d_course_sherbet_land_dl_3260: + symbol: d_course_sherbet_land_dl_3260 + type: gfx + offset: 0x3260 +d_course_sherbet_land_dl_3320: + symbol: d_course_sherbet_land_dl_3320 + type: gfx + offset: 0x3320 +d_course_sherbet_land_dl_33E0: + symbol: d_course_sherbet_land_dl_33E0 + type: gfx + offset: 0x33E0 +d_course_sherbet_land_dl_3490: + symbol: d_course_sherbet_land_dl_3490 + type: gfx + offset: 0x3490 +d_course_sherbet_land_dl_35A8: + symbol: d_course_sherbet_land_dl_35A8 + type: gfx + offset: 0x35A8 +d_course_sherbet_land_dl_36A8: + symbol: d_course_sherbet_land_dl_36A8 + type: gfx + offset: 0x36A8 +d_course_sherbet_land_dl_3770: + symbol: d_course_sherbet_land_dl_3770 + type: gfx + offset: 0x3770 +d_course_sherbet_land_dl_3840: + symbol: d_course_sherbet_land_dl_3840 + type: gfx + offset: 0x3840 +d_course_sherbet_land_dl_3940: + symbol: d_course_sherbet_land_dl_3940 + type: gfx + offset: 0x3940 +d_course_sherbet_land_dl_3A50: + symbol: d_course_sherbet_land_dl_3A50 + type: gfx + offset: 0x3A50 +d_course_sherbet_land_dl_3AE0: + symbol: d_course_sherbet_land_dl_3AE0 + type: gfx + offset: 0x3AE0 +d_course_sherbet_land_dl_3BA8: + symbol: d_course_sherbet_land_dl_3BA8 + type: gfx + offset: 0x3BA8 +d_course_sherbet_land_dl_3C48: + symbol: d_course_sherbet_land_dl_3C48 + type: gfx + offset: 0x3C48 +d_course_sherbet_land_dl_3D40: + symbol: d_course_sherbet_land_dl_3D40 + type: gfx + offset: 0x3D40 +d_course_sherbet_land_dl_3D98: + symbol: d_course_sherbet_land_dl_3D98 + type: gfx + offset: 0x3D98 +d_course_sherbet_land_dl_3E58: + symbol: d_course_sherbet_land_dl_3E58 + type: gfx + offset: 0x3E58 +d_course_sherbet_land_dl_3EB8: + symbol: d_course_sherbet_land_dl_3EB8 + type: gfx + offset: 0x3EB8 +d_course_sherbet_land_dl_3FA0: + symbol: d_course_sherbet_land_dl_3FA0 + type: gfx + offset: 0x3FA0 +d_course_sherbet_land_dl_3FC0: + symbol: d_course_sherbet_land_dl_3FC0 + type: gfx + offset: 0x3FC0 +d_course_sherbet_land_dl_3FD8: + symbol: d_course_sherbet_land_dl_3FD8 + type: gfx + offset: 0x3FD8 +d_course_sherbet_land_dl_3FE8: + symbol: d_course_sherbet_land_dl_3FE8 + type: gfx + offset: 0x3FE8 +d_course_sherbet_land_dl_4000: + symbol: d_course_sherbet_land_dl_4000 + type: gfx + offset: 0x4000 +d_course_sherbet_land_dl_4010: + symbol: d_course_sherbet_land_dl_4010 + type: gfx + offset: 0x4010 +d_course_sherbet_land_dl_4018: + symbol: d_course_sherbet_land_dl_4018 + type: gfx + offset: 0x4018 +d_course_sherbet_land_dl_4020: + symbol: d_course_sherbet_land_dl_4020 + type: gfx + offset: 0x4020 +d_course_sherbet_land_dl_4028: + symbol: d_course_sherbet_land_dl_4028 + type: gfx + offset: 0x4028 +d_course_sherbet_land_dl_4030: + symbol: d_course_sherbet_land_dl_4030 + type: gfx + offset: 0x4030 +d_course_sherbet_land_dl_4038: + symbol: d_course_sherbet_land_dl_4038 + type: gfx + offset: 0x4038 +d_course_sherbet_land_dl_4040: + symbol: d_course_sherbet_land_dl_4040 + type: gfx + offset: 0x4040 +d_course_sherbet_land_dl_4048: + symbol: d_course_sherbet_land_dl_4048 + type: gfx + offset: 0x4048 +d_course_sherbet_land_dl_4050: + symbol: d_course_sherbet_land_dl_4050 + type: gfx + offset: 0x4050 +d_course_sherbet_land_dl_4058: + symbol: d_course_sherbet_land_dl_4058 + type: gfx + offset: 0x4058 +d_course_sherbet_land_dl_4060: + symbol: d_course_sherbet_land_dl_4060 + type: gfx + offset: 0x4060 +d_course_sherbet_land_dl_4068: + symbol: d_course_sherbet_land_dl_4068 + type: gfx + offset: 0x4068 +d_course_sherbet_land_dl_4070: + symbol: d_course_sherbet_land_dl_4070 + type: gfx + offset: 0x4070 +d_course_sherbet_land_dl_4078: + symbol: d_course_sherbet_land_dl_4078 + type: gfx + offset: 0x4078 +d_course_sherbet_land_dl_4080: + symbol: d_course_sherbet_land_dl_4080 + type: gfx + offset: 0x4080 +d_course_sherbet_land_dl_4088: + symbol: d_course_sherbet_land_dl_4088 + type: gfx + offset: 0x4088 +d_course_sherbet_land_dl_4090: + symbol: d_course_sherbet_land_dl_4090 + type: gfx + offset: 0x4090 +d_course_sherbet_land_dl_4098: + symbol: d_course_sherbet_land_dl_4098 + type: gfx + offset: 0x4098 +d_course_sherbet_land_dl_40A0: + symbol: d_course_sherbet_land_dl_40A0 + type: gfx + offset: 0x40A0 +d_course_sherbet_land_dl_40A8: + symbol: d_course_sherbet_land_dl_40A8 + type: gfx + offset: 0x40A8 +d_course_sherbet_land_dl_40B0: + symbol: d_course_sherbet_land_dl_40B0 + type: gfx + offset: 0x40B0 +d_course_sherbet_land_dl_4180: + symbol: d_course_sherbet_land_dl_4180 + type: gfx + offset: 0x4180 +d_course_sherbet_land_dl_41B8: + symbol: d_course_sherbet_land_dl_41B8 + type: gfx + offset: 0x41B8 +d_course_sherbet_land_dl_4280: + symbol: d_course_sherbet_land_dl_4280 + type: gfx + offset: 0x4280 +d_course_sherbet_land_dl_42E0: + symbol: d_course_sherbet_land_dl_42E0 + type: gfx + offset: 0x42E0 +d_course_sherbet_land_dl_43C8: + symbol: d_course_sherbet_land_dl_43C8 + type: gfx + offset: 0x43C8 +d_course_sherbet_land_dl_4470: + symbol: d_course_sherbet_land_dl_4470 + type: gfx + offset: 0x4470 +d_course_sherbet_land_dl_4570: + symbol: d_course_sherbet_land_dl_4570 + type: gfx + offset: 0x4570 +d_course_sherbet_land_dl_4618: + symbol: d_course_sherbet_land_dl_4618 + type: gfx + offset: 0x4618 +d_course_sherbet_land_dl_4710: + symbol: d_course_sherbet_land_dl_4710 + type: gfx + offset: 0x4710 +d_course_sherbet_land_dl_4798: + symbol: d_course_sherbet_land_dl_4798 + type: gfx + offset: 0x4798 +d_course_sherbet_land_dl_4868: + symbol: d_course_sherbet_land_dl_4868 + type: gfx + offset: 0x4868 +d_course_sherbet_land_dl_4930: + symbol: d_course_sherbet_land_dl_4930 + type: gfx + offset: 0x4930 +d_course_sherbet_land_dl_4A20: + symbol: d_course_sherbet_land_dl_4A20 + type: gfx + offset: 0x4A20 +d_course_sherbet_land_dl_4A98: + symbol: d_course_sherbet_land_dl_4A98 + type: gfx + offset: 0x4A98 +d_course_sherbet_land_dl_4B20: + symbol: d_course_sherbet_land_dl_4B20 + type: gfx + offset: 0x4B20 +d_course_sherbet_land_model1: + symbol: d_course_sherbet_land_model1 + type: vtx + offset: 0x62B8 + count: 30 +d_course_sherbet_land_model2: + symbol: d_course_sherbet_land_model2 + type: vtx + offset: 0x6498 + count: 30 +d_course_sherbet_land_model3: + symbol: d_course_sherbet_land_model3 + type: vtx + offset: 0x6678 + count: 30 +d_course_sherbet_land_model4: + symbol: d_course_sherbet_land_model4 + type: vtx + offset: 0x6858 + count: 9 +d_course_sherbet_land_dl_70E8: + symbol: d_course_sherbet_land_dl_70E8 + type: gfx + offset: 0x70E8 +d_course_sherbet_land_dl_7208: + symbol: d_course_sherbet_land_dl_7208 + type: gfx + offset: 0x7208 +d_course_sherbet_land_dl_ice_block: + symbol: d_course_sherbet_land_dl_ice_block + type: gfx + offset: 0x7218 +d_course_sherbet_land_dl_7228: + symbol: d_course_sherbet_land_dl_7228 + type: gfx + offset: 0x7228 +d_course_sherbet_land_penguin_eyes_model: + symbol: d_course_sherbet_land_penguin_eyes_model + type: vtx + offset: 0x82E8 + count: 8 +d_course_sherbet_land_dl_8368: + symbol: d_course_sherbet_land_dl_8368 + type: gfx + offset: 0x8368 +d_course_sherbet_land_penguin_nose_model: + symbol: d_course_sherbet_land_penguin_nose_model + type: vtx + offset: 0x8398 + count: 4 +d_course_sherbet_land_dl_83D8: + symbol: d_course_sherbet_land_dl_83D8 + type: gfx + offset: 0x83D8 +d_course_sherbet_land_penguin_head_model1: + symbol: d_course_sherbet_land_penguin_head_model1 + type: vtx + offset: 0x8400 + count: 24 +d_course_sherbet_land_penguin_head_model2: + symbol: d_course_sherbet_land_penguin_head_model2 + type: vtx + offset: 0x8580 + count: 3 +d_course_sherbet_land_dl_85B0: + symbol: d_course_sherbet_land_dl_85B0 + type: gfx + offset: 0x85B0 +d_course_sherbet_land_penguin_arms_model: + symbol: d_course_sherbet_land_penguin_arms_model + type: vtx + offset: 0x8690 + count: 10 +d_course_sherbet_land_dl_8730: + symbol: d_course_sherbet_land_dl_8730 + type: gfx + offset: 0x8730 +d_course_sherbet_land_penguin_unknown_model: + symbol: d_course_sherbet_land_penguin_unknown_model + type: vtx + offset: 0x8768 + count: 10 +d_course_sherbet_land_dl_8808: + symbol: d_course_sherbet_land_dl_8808 + type: gfx + offset: 0x8808 +d_course_sherbet_land_dl_8810: + symbol: d_course_sherbet_land_dl_8810 + type: gfx + offset: 0x8810 +d_course_sherbet_land_penguin_right_foot_model: + symbol: d_course_sherbet_land_penguin_right_foot_model + type: vtx + offset: 0x8840 + count: 15 +d_course_sherbet_land_dl_8930: + symbol: d_course_sherbet_land_dl_8930 + type: gfx + offset: 0x8930 +d_course_sherbet_land_penguin_left_foot_model: + symbol: d_course_sherbet_land_penguin_left_foot_model + type: vtx + offset: 0x8988 + count: 15 +d_course_sherbet_land_dl_8A78: + symbol: d_course_sherbet_land_dl_8A78 + type: gfx + offset: 0x8A78 +d_course_sherbet_land_penguin_body_model1: + symbol: d_course_sherbet_land_penguin_body_model1 + type: vtx + offset: 0x8AD0 + count: 20 +d_course_sherbet_land_penguin_body_model2: + symbol: d_course_sherbet_land_penguin_body_model2 + type: vtx + offset: 0x8C10 + count: 15 +d_course_sherbet_land_dl_8D00: + symbol: d_course_sherbet_land_dl_8D00 + type: gfx + offset: 0x8D00 +d_course_sherbet_land_dl_8E00: + symbol: d_course_sherbet_land_dl_8E00 + type: gfx + offset: 0x8E00 +d_course_sherbet_land_dl_9AE8: + symbol: d_course_sherbet_land_dl_9AE8 + type: gfx + offset: 0x9AE8 diff --git a/yamls/us/models/tracks/sherbet_land/sherbet_land_displaylists.yml b/yamls/us/models/tracks/sherbet_land/sherbet_land_displaylists.yml new file mode 100644 index 000000000..51b23b826 --- /dev/null +++ b/yamls/us/models/tracks/sherbet_land/sherbet_land_displaylists.yml @@ -0,0 +1,678 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x93B9C8 + no_compression: true + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_643B3C"] + - [0x05000800, "textures/other_textures/texture_66D024"] + - [0x05001000, "textures/other_textures/texture_678118"] + - [0x05001800, "textures/other_textures/sign_wood_red_arrow"] + - [0x05002800, "textures/other_textures/texture_678CC8"] + - [0x05003000, "textures/other_textures/texture_67842C"] + - [0x05003800, "textures/other_textures/texture_67893C"] + - [0x05004000, "textures/other_textures/texture_651984"] + - [0x05004800, "textures/other_textures/texture_651428"] + - [0x05005000, "textures/other_textures/texture_662924"] + # Segment 7 + - [0x7000000, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_0"] + - [0x70000C0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_C0"] + - [0x7000180, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_180"] + - [0x7000240, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_240"] + - [0x7000300, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_300"] + - [0x7000328, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_328"] + - [0x7000338, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_338"] + - [0x7000348, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_348"] + - [0x7000470, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_470"] + - [0x70005D0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_5D0"] + - [0x7000730, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_730"] + - [0x7000858, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_858"] + - [0x70009A0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_9A0"] + - [0x7000B00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_B00"] + - [0x7000C30, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_C30"] + - [0x7000D48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_D48"] + - [0x7000D90, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_D90"] + - [0x7000E00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_E00"] + - [0x7000EA0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_EA0"] + - [0x7000EB8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_EB8"] + - [0x7000F48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_F48"] + - [0x7000FD0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_FD0"] + - [0x7001050, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1050"] + - [0x70010C8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_10C8"] + - [0x7001148, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1148"] + - [0x70011B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_11B8"] + - [0x7001220, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1220"] + - [0x70012C8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_12C8"] + - [0x7001370, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1370"] + - [0x70013E8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_13E8"] + - [0x7001450, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1450"] + - [0x70014B0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_14B0"] + - [0x7001520, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1520"] + - [0x7001598, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1598"] + - [0x7001640, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1640"] + - [0x70016B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_16B8"] + - [0x7001720, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1720"] + - [0x7001798, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1798"] + - [0x7001800, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1800"] + - [0x7001870, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1870"] + - [0x70018E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_18E0"] + - [0x7001940, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1940"] + - [0x7001998, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1998"] + - [0x7001A18, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1A18"] + - [0x7001A98, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1A98"] + - [0x7001B20, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1B20"] + - [0x7001BE0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1BE0"] + - [0x7001C50, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1C50"] + - [0x7001CD8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1CD8"] + - [0x7001D48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1D48"] + - [0x7001DC0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1DC0"] + - [0x7001E40, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1E40"] + - [0x7001EB8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1EB8"] + - [0x7001F10, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1F10"] + - [0x7001F78, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1F78"] + - [0x7001FF0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1FF0"] + - [0x7002068, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2068"] + - [0x70020D0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_20D0"] + - [0x7002138, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2138"] + - [0x70021B0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_21B0"] + - [0x7002220, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2220"] + - [0x7002290, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2290"] + - [0x7002308, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2308"] + - [0x7002358, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2358"] + - [0x7002450, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2450"] + - [0x7002548, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2548"] + - [0x7002640, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2640"] + - [0x7002738, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2738"] + - [0x7002760, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2760"] + - [0x7002798, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2798"] + - [0x70027A8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_27A8"] + - [0x7002B48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2B48"] + - [0x7002B58, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2B58"] + - [0x7002BC8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2BC8"] + - [0x7002C68, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2C68"] + - [0x7002C80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2C80"] + - [0x7002CF0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2CF0"] + - [0x7002D80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2D80"] + - [0x7002E08, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2E08"] + - [0x7002E88, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2E88"] + - [0x7002F00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2F00"] + - [0x7002F80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2F80"] + - [0x7002FE8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2FE8"] + - [0x7003058, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3058"] + - [0x70030C0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_30C0"] + - [0x7003170, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3170"] + - [0x7003218, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3218"] + - [0x7003290, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3290"] + - [0x70032F8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_32F8"] + - [0x7003368, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3368"] + - [0x70033E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_33E0"] + - [0x7003488, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3488"] + - [0x7003500, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3500"] + - [0x7003568, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3568"] + - [0x70035E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_35E0"] + - [0x7003648, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3648"] + - [0x70036B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_36B8"] + - [0x7003728, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3728"] + - [0x7003788, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3788"] + - [0x70037E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_37E0"] + - [0x7003848, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3848"] + - [0x7003858, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3858"] + # Segment 4 + - [0x4000000, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000000"] + - [0x4000040, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000040"] + - [0x4000080, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000080"] + - [0x40000c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040000C0"] + - [0x4000100, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000100"] + - [0x4000140, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000140"] + - [0x4000180, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000180"] + - [0x40001c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040001C0"] + - [0x4000200, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000200"] + - [0x4000400, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000400"] + - [0x4000600, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000600"] + - [0x4000800, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000800"] + - [0x40008b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040008B0"] + - [0x4000ab0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000AB0"] + - [0x4000cb0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000CB0"] + - [0x4000ea0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04000EA0"] + - [0x40010a0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040010A0"] + - [0x40011d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040011D0"] + - [0x40013b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040013B0"] + - [0x4001590, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001590"] + - [0x4001780, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001780"] + - [0x4001970, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001970"] + - [0x4001b20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001B20"] + - [0x4001d20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001D20"] + - [0x4001f20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04001F20"] + - [0x40020b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040020B0"] + - [0x40020f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040020F0"] + - [0x40022e0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040022E0"] + - [0x40024c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040024C0"] + - [0x40026a0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040026A0"] + - [0x4002890, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002890"] + - [0x40028f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040028F0"] + - [0x4002ad0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002AD0"] + - [0x4002cc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002CC0"] + - [0x4002ec0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04002EC0"] + - [0x40030c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040030C0"] + - [0x4003230, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003230"] + - [0x4003410, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003410"] + - [0x4003600, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003600"] + - [0x4003800, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003800"] + - [0x40039d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040039D0"] + - [0x4003bc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003BC0"] + - [0x4003da0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003DA0"] + - [0x4003e80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003E80"] + - [0x4003ec0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003EC0"] + - [0x4003fc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04003FC0"] + - [0x40041c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040041C0"] + - [0x4004230, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004230"] + - [0x40043f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040043F0"] + - [0x4004570, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004570"] + - [0x4004750, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004750"] + - [0x40048b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040048B0"] + - [0x4004a60, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004A60"] + - [0x4004b80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004B80"] + - [0x4004c40, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004C40"] + - [0x4004e40, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004E40"] + - [0x4004f30, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04004F30"] + - [0x4005120, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005120"] + - [0x40051b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040051B0"] + - [0x4005330, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005330"] + - [0x40053f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040053F0"] + - [0x40054b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040054B0"] + - [0x40055b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040055B0"] + - [0x40057b0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040057B0"] + - [0x40057f0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040057F0"] + - [0x40058c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040058C0"] + - [0x4005940, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005940"] + - [0x4005a40, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005A40"] + - [0x4005ac0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005AC0"] + - [0x4005b80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005B80"] + - [0x4005c40, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005C40"] + - [0x4005c80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005C80"] + - [0x4005d30, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005D30"] + - [0x4005de0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005DE0"] + - [0x4005ee0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005EE0"] + - [0x4005f80, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005F80"] + - [0x4005fc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04005FC0"] + - [0x4006040, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006040"] + - [0x4006110, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006110"] + - [0x4006180, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006180"] + - [0x4006220, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006220"] + - [0x40062d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040062D0"] + - [0x4006370, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006370"] + - [0x40063c0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040063C0"] + - [0x4006450, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006450"] + - [0x40064e0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040064E0"] + - [0x4006540, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006540"] + - [0x4006590, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006590"] + - [0x4006620, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006620"] + - [0x4006690, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006690"] + - [0x4006700, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006700"] + - [0x4006790, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006790"] + - [0x4006990, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006990"] + - [0x4006b90, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006B90"] + - [0x4006c10, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006C10"] + - [0x4006e10, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04006E10"] + - [0x4007010, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007010"] + - [0x4007090, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007090"] + - [0x4007290, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007290"] + - [0x4007490, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007490"] + - [0x4007510, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007510"] + - [0x4007710, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007710"] + - [0x4007910, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007910"] + - [0x4007990, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007990"] + - [0x4007a20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007A20"] + - [0x4007c20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007C20"] + - [0x4007e20, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04007E20"] + - [0x4008020, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008020"] + - [0x4008220, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008220"] + - [0x4008420, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008420"] + - [0x4008620, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008620"] + - [0x4008800, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008800"] + - [0x4008870, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008870"] + - [0x4008970, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008970"] + - [0x4008b50, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008B50"] + - [0x4008bc0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008BC0"] + - [0x4008ce0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008CE0"] + - [0x4008ea0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04008EA0"] + - [0x4009020, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009020"] + - [0x4009200, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009200"] + - [0x4009360, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009360"] + - [0x4009510, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009510"] + - [0x40095d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040095D0"] + - [0x40096d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x040096D0"] + - [0x4009790, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009790"] + - [0x4009980, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009980"] + - [0x4009aa0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009AA0"] + - [0x4009c90, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009C90"] + - [0x4009d50, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009D50"] + - [0x4009ed0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009ED0"] + - [0x4009f90, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x04009F90"] + - [0x400a090, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A090"] + - [0x400a290, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A290"] + - [0x400a2d0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A2D0"] + - [0x400a3a0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A3A0"] + - [0x400a420, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A420"] + - [0x400a520, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A520"] + - [0x400a5a0, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A5A0"] + - [0x400a660, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A660"] + - [0x400a720, "models/tracks/sherbet_land/sherbet_land_vertices/d_course_sherbet_land_vertex_0x0400A720"] + segments: + - [0x0F, 0x93B9C8] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_sherbet_land_packed_dl_0: + symbol: d_course_sherbet_land_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_sherbet_land_packed_dl_C0: + symbol: d_course_sherbet_land_packed_dl_C0 + type: MK64:PACKED_GFX + offset: 0x22 +d_course_sherbet_land_packed_dl_180: + symbol: d_course_sherbet_land_packed_dl_180 + type: MK64:PACKED_GFX + offset: 0x44 +d_course_sherbet_land_packed_dl_240: + symbol: d_course_sherbet_land_packed_dl_240 + type: MK64:PACKED_GFX + offset: 0x66 +d_course_sherbet_land_packed_dl_300: + symbol: d_course_sherbet_land_packed_dl_300 + type: MK64:PACKED_GFX + offset: 0x88 +d_course_sherbet_land_packed_dl_328: + symbol: d_course_sherbet_land_packed_dl_328 + type: MK64:PACKED_GFX + offset: 0x95 +d_course_sherbet_land_packed_dl_338: + symbol: d_course_sherbet_land_packed_dl_338 + type: MK64:PACKED_GFX + offset: 0x99 +d_course_sherbet_land_packed_dl_348: + symbol: d_course_sherbet_land_packed_dl_348 + type: MK64:PACKED_GFX + offset: 0x9D +d_course_sherbet_land_packed_dl_470: + symbol: d_course_sherbet_land_packed_dl_470 + type: MK64:PACKED_GFX + offset: 0x11D +d_course_sherbet_land_packed_dl_5D0: + symbol: d_course_sherbet_land_packed_dl_5D0 + type: MK64:PACKED_GFX + offset: 0x1C2 +d_course_sherbet_land_packed_dl_730: + symbol: d_course_sherbet_land_packed_dl_730 + type: MK64:PACKED_GFX + offset: 0x265 +d_course_sherbet_land_packed_dl_858: + symbol: d_course_sherbet_land_packed_dl_858 + type: MK64:PACKED_GFX + offset: 0x2D6 +d_course_sherbet_land_packed_dl_9A0: + symbol: d_course_sherbet_land_packed_dl_9A0 + type: MK64:PACKED_GFX + offset: 0x368 +d_course_sherbet_land_packed_dl_B00: + symbol: d_course_sherbet_land_packed_dl_B00 + type: MK64:PACKED_GFX + offset: 0x40D +d_course_sherbet_land_packed_dl_C30: + symbol: d_course_sherbet_land_packed_dl_C30 + type: MK64:PACKED_GFX + offset: 0x496 +d_course_sherbet_land_packed_dl_D48: + symbol: d_course_sherbet_land_packed_dl_D48 + type: MK64:PACKED_GFX + offset: 0x4FB +d_course_sherbet_land_packed_dl_D90: + symbol: d_course_sherbet_land_packed_dl_D90 + type: MK64:PACKED_GFX + offset: 0x514 +d_course_sherbet_land_packed_dl_E00: + symbol: d_course_sherbet_land_packed_dl_E00 + type: MK64:PACKED_GFX + offset: 0x52F +d_course_sherbet_land_packed_dl_EA0: + symbol: d_course_sherbet_land_packed_dl_EA0 + type: MK64:PACKED_GFX + offset: 0x564 +d_course_sherbet_land_packed_dl_EB8: + symbol: d_course_sherbet_land_packed_dl_EB8 + type: MK64:PACKED_GFX + offset: 0x56B +d_course_sherbet_land_packed_dl_F48: + symbol: d_course_sherbet_land_packed_dl_F48 + type: MK64:PACKED_GFX + offset: 0x598 +d_course_sherbet_land_packed_dl_FD0: + symbol: d_course_sherbet_land_packed_dl_FD0 + type: MK64:PACKED_GFX + offset: 0x5C0 +d_course_sherbet_land_packed_dl_1050: + symbol: d_course_sherbet_land_packed_dl_1050 + type: MK64:PACKED_GFX + offset: 0x5E5 +d_course_sherbet_land_packed_dl_10C8: + symbol: d_course_sherbet_land_packed_dl_10C8 + type: MK64:PACKED_GFX + offset: 0x605 +d_course_sherbet_land_packed_dl_1148: + symbol: d_course_sherbet_land_packed_dl_1148 + type: MK64:PACKED_GFX + offset: 0x628 +d_course_sherbet_land_packed_dl_11B8: + symbol: d_course_sherbet_land_packed_dl_11B8 + type: MK64:PACKED_GFX + offset: 0x643 +d_course_sherbet_land_packed_dl_1220: + symbol: d_course_sherbet_land_packed_dl_1220 + type: MK64:PACKED_GFX + offset: 0x659 +d_course_sherbet_land_packed_dl_12C8: + symbol: d_course_sherbet_land_packed_dl_12C8 + type: MK64:PACKED_GFX + offset: 0x693 +d_course_sherbet_land_packed_dl_1370: + symbol: d_course_sherbet_land_packed_dl_1370 + type: MK64:PACKED_GFX + offset: 0x6CB +d_course_sherbet_land_packed_dl_13E8: + symbol: d_course_sherbet_land_packed_dl_13E8 + type: MK64:PACKED_GFX + offset: 0x6EB +d_course_sherbet_land_packed_dl_1450: + symbol: d_course_sherbet_land_packed_dl_1450 + type: MK64:PACKED_GFX + offset: 0x701 +d_course_sherbet_land_packed_dl_14B0: + symbol: d_course_sherbet_land_packed_dl_14B0 + type: MK64:PACKED_GFX + offset: 0x723 +d_course_sherbet_land_packed_dl_1520: + symbol: d_course_sherbet_land_packed_dl_1520 + type: MK64:PACKED_GFX + offset: 0x73E +d_course_sherbet_land_packed_dl_1598: + symbol: d_course_sherbet_land_packed_dl_1598 + type: MK64:PACKED_GFX + offset: 0x75E +d_course_sherbet_land_packed_dl_1640: + symbol: d_course_sherbet_land_packed_dl_1640 + type: MK64:PACKED_GFX + offset: 0x79A +d_course_sherbet_land_packed_dl_16B8: + symbol: d_course_sherbet_land_packed_dl_16B8 + type: MK64:PACKED_GFX + offset: 0x7B8 +d_course_sherbet_land_packed_dl_1720: + symbol: d_course_sherbet_land_packed_dl_1720 + type: MK64:PACKED_GFX + offset: 0x7CE +d_course_sherbet_land_packed_dl_1798: + symbol: d_course_sherbet_land_packed_dl_1798 + type: MK64:PACKED_GFX + offset: 0x7EE +d_course_sherbet_land_packed_dl_1800: + symbol: d_course_sherbet_land_packed_dl_1800 + type: MK64:PACKED_GFX + offset: 0x804 +d_course_sherbet_land_packed_dl_1870: + symbol: d_course_sherbet_land_packed_dl_1870 + type: MK64:PACKED_GFX + offset: 0x81F +d_course_sherbet_land_packed_dl_18E0: + symbol: d_course_sherbet_land_packed_dl_18E0 + type: MK64:PACKED_GFX + offset: 0x83A +d_course_sherbet_land_packed_dl_1940: + symbol: d_course_sherbet_land_packed_dl_1940 + type: MK64:PACKED_GFX + offset: 0x84B +d_course_sherbet_land_packed_dl_1998: + symbol: d_course_sherbet_land_packed_dl_1998 + type: MK64:PACKED_GFX + offset: 0x86A +d_course_sherbet_land_packed_dl_1A18: + symbol: d_course_sherbet_land_packed_dl_1A18 + type: MK64:PACKED_GFX + offset: 0x88D +d_course_sherbet_land_packed_dl_1A98: + symbol: d_course_sherbet_land_packed_dl_1A98 + type: MK64:PACKED_GFX + offset: 0x8B0 +d_course_sherbet_land_packed_dl_1B20: + symbol: d_course_sherbet_land_packed_dl_1B20 + type: MK64:PACKED_GFX + offset: 0x8DA +d_course_sherbet_land_packed_dl_1BE0: + symbol: d_course_sherbet_land_packed_dl_1BE0 + type: MK64:PACKED_GFX + offset: 0x904 +d_course_sherbet_land_packed_dl_1C50: + symbol: d_course_sherbet_land_packed_dl_1C50 + type: MK64:PACKED_GFX + offset: 0x91F +d_course_sherbet_land_packed_dl_1CD8: + symbol: d_course_sherbet_land_packed_dl_1CD8 + type: MK64:PACKED_GFX + offset: 0x947 +d_course_sherbet_land_packed_dl_1D48: + symbol: d_course_sherbet_land_packed_dl_1D48 + type: MK64:PACKED_GFX + offset: 0x960 +d_course_sherbet_land_packed_dl_1DC0: + symbol: d_course_sherbet_land_packed_dl_1DC0 + type: MK64:PACKED_GFX + offset: 0x980 +d_course_sherbet_land_packed_dl_1E40: + symbol: d_course_sherbet_land_packed_dl_1E40 + type: MK64:PACKED_GFX + offset: 0x9A3 +d_course_sherbet_land_packed_dl_1EB8: + symbol: d_course_sherbet_land_packed_dl_1EB8 + type: MK64:PACKED_GFX + offset: 0x9C3 +d_course_sherbet_land_packed_dl_1F10: + symbol: d_course_sherbet_land_packed_dl_1F10 + type: MK64:PACKED_GFX + offset: 0x9E2 +d_course_sherbet_land_packed_dl_1F78: + symbol: d_course_sherbet_land_packed_dl_1F78 + type: MK64:PACKED_GFX + offset: 0x9F6 +d_course_sherbet_land_packed_dl_1FF0: + symbol: d_course_sherbet_land_packed_dl_1FF0 + type: MK64:PACKED_GFX + offset: 0xA14 +d_course_sherbet_land_packed_dl_2068: + symbol: d_course_sherbet_land_packed_dl_2068 + type: MK64:PACKED_GFX + offset: 0xA32 +d_course_sherbet_land_packed_dl_20D0: + symbol: d_course_sherbet_land_packed_dl_20D0 + type: MK64:PACKED_GFX + offset: 0xA48 +d_course_sherbet_land_packed_dl_2138: + symbol: d_course_sherbet_land_packed_dl_2138 + type: MK64:PACKED_GFX + offset: 0xA5C +d_course_sherbet_land_packed_dl_21B0: + symbol: d_course_sherbet_land_packed_dl_21B0 + type: MK64:PACKED_GFX + offset: 0xA7A +d_course_sherbet_land_packed_dl_2220: + symbol: d_course_sherbet_land_packed_dl_2220 + type: MK64:PACKED_GFX + offset: 0xA93 +d_course_sherbet_land_packed_dl_2290: + symbol: d_course_sherbet_land_packed_dl_2290 + type: MK64:PACKED_GFX + offset: 0xAAC +d_course_sherbet_land_packed_dl_2308: + symbol: d_course_sherbet_land_packed_dl_2308 + type: MK64:PACKED_GFX + offset: 0xACA +d_course_sherbet_land_packed_dl_2358: + symbol: d_course_sherbet_land_packed_dl_2358 + type: MK64:PACKED_GFX + offset: 0xAE6 +d_course_sherbet_land_packed_dl_2450: + symbol: d_course_sherbet_land_packed_dl_2450 + type: MK64:PACKED_GFX + offset: 0xB52 +d_course_sherbet_land_packed_dl_2548: + symbol: d_course_sherbet_land_packed_dl_2548 + type: MK64:PACKED_GFX + offset: 0xBBE +d_course_sherbet_land_packed_dl_2640: + symbol: d_course_sherbet_land_packed_dl_2640 + type: MK64:PACKED_GFX + offset: 0xC2A +d_course_sherbet_land_packed_dl_2738: + symbol: d_course_sherbet_land_packed_dl_2738 + type: MK64:PACKED_GFX + offset: 0xC96 +d_course_sherbet_land_packed_dl_2760: + symbol: d_course_sherbet_land_packed_dl_2760 + type: MK64:PACKED_GFX + offset: 0xCA3 +d_course_sherbet_land_packed_dl_2798: + symbol: d_course_sherbet_land_packed_dl_2798 + type: MK64:PACKED_GFX + offset: 0xCBA +d_course_sherbet_land_packed_dl_27A8: + symbol: d_course_sherbet_land_packed_dl_27A8 + type: MK64:PACKED_GFX + offset: 0xCBE +d_course_sherbet_land_packed_dl_2B48: + symbol: d_course_sherbet_land_packed_dl_2B48 + type: MK64:PACKED_GFX + offset: 0xEDE +d_course_sherbet_land_packed_dl_2B58: + symbol: d_course_sherbet_land_packed_dl_2B58 + type: MK64:PACKED_GFX + offset: 0xEE2 +d_course_sherbet_land_packed_dl_2BC8: + symbol: d_course_sherbet_land_packed_dl_2BC8 + type: MK64:PACKED_GFX + offset: 0xEFD +d_course_sherbet_land_packed_dl_2C68: + symbol: d_course_sherbet_land_packed_dl_2C68 + type: MK64:PACKED_GFX + offset: 0xF32 +d_course_sherbet_land_packed_dl_2C80: + symbol: d_course_sherbet_land_packed_dl_2C80 + type: MK64:PACKED_GFX + offset: 0xF39 +d_course_sherbet_land_packed_dl_2CF0: + symbol: d_course_sherbet_land_packed_dl_2CF0 + type: MK64:PACKED_GFX + offset: 0xF54 +d_course_sherbet_land_packed_dl_2D80: + symbol: d_course_sherbet_land_packed_dl_2D80 + type: MK64:PACKED_GFX + offset: 0xF81 +d_course_sherbet_land_packed_dl_2E08: + symbol: d_course_sherbet_land_packed_dl_2E08 + type: MK64:PACKED_GFX + offset: 0xFA9 +d_course_sherbet_land_packed_dl_2E88: + symbol: d_course_sherbet_land_packed_dl_2E88 + type: MK64:PACKED_GFX + offset: 0xFCE +d_course_sherbet_land_packed_dl_2F00: + symbol: d_course_sherbet_land_packed_dl_2F00 + type: MK64:PACKED_GFX + offset: 0xFEE +d_course_sherbet_land_packed_dl_2F80: + symbol: d_course_sherbet_land_packed_dl_2F80 + type: MK64:PACKED_GFX + offset: 0x1011 +d_course_sherbet_land_packed_dl_2FE8: + symbol: d_course_sherbet_land_packed_dl_2FE8 + type: MK64:PACKED_GFX + offset: 0x1027 +d_course_sherbet_land_packed_dl_3058: + symbol: d_course_sherbet_land_packed_dl_3058 + type: MK64:PACKED_GFX + offset: 0x1042 +d_course_sherbet_land_packed_dl_30C0: + symbol: d_course_sherbet_land_packed_dl_30C0 + type: MK64:PACKED_GFX + offset: 0x1058 +d_course_sherbet_land_packed_dl_3170: + symbol: d_course_sherbet_land_packed_dl_3170 + type: MK64:PACKED_GFX + offset: 0x1097 +d_course_sherbet_land_packed_dl_3218: + symbol: d_course_sherbet_land_packed_dl_3218 + type: MK64:PACKED_GFX + offset: 0x10D3 +d_course_sherbet_land_packed_dl_3290: + symbol: d_course_sherbet_land_packed_dl_3290 + type: MK64:PACKED_GFX + offset: 0x10F3 +d_course_sherbet_land_packed_dl_32F8: + symbol: d_course_sherbet_land_packed_dl_32F8 + type: MK64:PACKED_GFX + offset: 0x1118 +d_course_sherbet_land_packed_dl_3368: + symbol: d_course_sherbet_land_packed_dl_3368 + type: MK64:PACKED_GFX + offset: 0x1133 +d_course_sherbet_land_packed_dl_33E0: + symbol: d_course_sherbet_land_packed_dl_33E0 + type: MK64:PACKED_GFX + offset: 0x1153 +d_course_sherbet_land_packed_dl_3488: + symbol: d_course_sherbet_land_packed_dl_3488 + type: MK64:PACKED_GFX + offset: 0x118F +d_course_sherbet_land_packed_dl_3500: + symbol: d_course_sherbet_land_packed_dl_3500 + type: MK64:PACKED_GFX + offset: 0x11AD +d_course_sherbet_land_packed_dl_3568: + symbol: d_course_sherbet_land_packed_dl_3568 + type: MK64:PACKED_GFX + offset: 0x11C3 +d_course_sherbet_land_packed_dl_35E0: + symbol: d_course_sherbet_land_packed_dl_35E0 + type: MK64:PACKED_GFX + offset: 0x11E3 +d_course_sherbet_land_packed_dl_3648: + symbol: d_course_sherbet_land_packed_dl_3648 + type: MK64:PACKED_GFX + offset: 0x11F9 +d_course_sherbet_land_packed_dl_36B8: + symbol: d_course_sherbet_land_packed_dl_36B8 + type: MK64:PACKED_GFX + offset: 0x1214 +d_course_sherbet_land_packed_dl_3728: + symbol: d_course_sherbet_land_packed_dl_3728 + type: MK64:PACKED_GFX + offset: 0x122F +d_course_sherbet_land_packed_dl_3788: + symbol: d_course_sherbet_land_packed_dl_3788 + type: MK64:PACKED_GFX + offset: 0x1240 +d_course_sherbet_land_packed_dl_37E0: + symbol: d_course_sherbet_land_packed_dl_37E0 + type: MK64:PACKED_GFX + offset: 0x125F +d_course_sherbet_land_packed_dl_3848: + symbol: d_course_sherbet_land_packed_dl_3848 + type: MK64:PACKED_GFX + offset: 0x1284 +d_course_sherbet_land_packed_dl_3858: + symbol: d_course_sherbet_land_packed_dl_3858 + type: MK64:PACKED_GFX + offset: 0x1288 diff --git a/yamls/us/models/tracks/sherbet_land/sherbet_land_vertices.yml b/yamls/us/models/tracks/sherbet_land/sherbet_land_vertices.yml new file mode 100644 index 000000000..1b35e2a3c --- /dev/null +++ b/yamls/us/models/tracks/sherbet_land/sherbet_land_vertices.yml @@ -0,0 +1,849 @@ +:config: + segments: + - [0x0F, 0x936FD0] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_sherbet_land_vertex_0x04000000: + symbol: d_course_sherbet_land_vertex_0x04000000 + type: mk64:course_vtx + count: 4 + offset: 0x0 + +d_course_sherbet_land_vertex_0x04000040: + symbol: d_course_sherbet_land_vertex_0x04000040 + type: mk64:course_vtx + count: 4 + offset: 0x38 + +d_course_sherbet_land_vertex_0x04000080: + symbol: d_course_sherbet_land_vertex_0x04000080 + type: mk64:course_vtx + count: 4 + offset: 0x70 + +d_course_sherbet_land_vertex_0x040000C0: + symbol: d_course_sherbet_land_vertex_0x040000C0 + type: mk64:course_vtx + count: 4 + offset: 0xa8 + +d_course_sherbet_land_vertex_0x04000100: + symbol: d_course_sherbet_land_vertex_0x04000100 + type: mk64:course_vtx + count: 4 + offset: 0xe0 + +d_course_sherbet_land_vertex_0x04000140: + symbol: d_course_sherbet_land_vertex_0x04000140 + type: mk64:course_vtx + count: 4 + offset: 0x118 + +d_course_sherbet_land_vertex_0x04000180: + symbol: d_course_sherbet_land_vertex_0x04000180 + type: mk64:course_vtx + count: 4 + offset: 0x150 + +d_course_sherbet_land_vertex_0x040001C0: + symbol: d_course_sherbet_land_vertex_0x040001C0 + type: mk64:course_vtx + count: 4 + offset: 0x188 + +d_course_sherbet_land_vertex_0x04000200: + symbol: d_course_sherbet_land_vertex_0x04000200 + type: mk64:course_vtx + count: 50 + offset: 0x1c0 + +d_course_sherbet_land_vertex_0x04000400: + symbol: d_course_sherbet_land_vertex_0x04000400 + type: mk64:course_vtx + count: 50 + offset: 0x380 + +d_course_sherbet_land_vertex_0x04000600: + symbol: d_course_sherbet_land_vertex_0x04000600 + type: mk64:course_vtx + count: 50 + offset: 0x540 + +d_course_sherbet_land_vertex_0x04000800: + symbol: d_course_sherbet_land_vertex_0x04000800 + type: mk64:course_vtx + count: 17 + offset: 0x700 + +d_course_sherbet_land_vertex_0x040008B0: + symbol: d_course_sherbet_land_vertex_0x040008B0 + type: mk64:course_vtx + count: 50 + offset: 0x79a + +d_course_sherbet_land_vertex_0x04000AB0: + symbol: d_course_sherbet_land_vertex_0x04000AB0 + type: mk64:course_vtx + count: 50 + offset: 0x95a + +d_course_sherbet_land_vertex_0x04000CB0: + symbol: d_course_sherbet_land_vertex_0x04000CB0 + type: mk64:course_vtx + count: 49 + offset: 0xb1a + +d_course_sherbet_land_vertex_0x04000EA0: + symbol: d_course_sherbet_land_vertex_0x04000EA0 + type: mk64:course_vtx + count: 50 + offset: 0xccc + +d_course_sherbet_land_vertex_0x040010A0: + symbol: d_course_sherbet_land_vertex_0x040010A0 + type: mk64:course_vtx + count: 25 + offset: 0xe8c + +d_course_sherbet_land_vertex_0x040011D0: + symbol: d_course_sherbet_land_vertex_0x040011D0 + type: mk64:course_vtx + count: 48 + offset: 0xf96 + +d_course_sherbet_land_vertex_0x040013B0: + symbol: d_course_sherbet_land_vertex_0x040013B0 + type: mk64:course_vtx + count: 48 + offset: 0x113a + +d_course_sherbet_land_vertex_0x04001590: + symbol: d_course_sherbet_land_vertex_0x04001590 + type: mk64:course_vtx + count: 49 + offset: 0x12de + +d_course_sherbet_land_vertex_0x04001780: + symbol: d_course_sherbet_land_vertex_0x04001780 + type: mk64:course_vtx + count: 49 + offset: 0x1490 + +d_course_sherbet_land_vertex_0x04001970: + symbol: d_course_sherbet_land_vertex_0x04001970 + type: mk64:course_vtx + count: 39 + offset: 0x1642 + +d_course_sherbet_land_vertex_0x04001B20: + symbol: d_course_sherbet_land_vertex_0x04001B20 + type: mk64:course_vtx + count: 50 + offset: 0x17bc + +d_course_sherbet_land_vertex_0x04001D20: + symbol: d_course_sherbet_land_vertex_0x04001D20 + type: mk64:course_vtx + count: 50 + offset: 0x197c + +d_course_sherbet_land_vertex_0x04001F20: + symbol: d_course_sherbet_land_vertex_0x04001F20 + type: mk64:course_vtx + count: 37 + offset: 0x1b3c + +d_course_sherbet_land_vertex_0x040020B0: + symbol: d_course_sherbet_land_vertex_0x040020B0 + type: mk64:course_vtx + count: 4 + offset: 0x1c9a + +d_course_sherbet_land_vertex_0x040020F0: + symbol: d_course_sherbet_land_vertex_0x040020F0 + type: mk64:course_vtx + count: 49 + offset: 0x1cd2 + +d_course_sherbet_land_vertex_0x040022E0: + symbol: d_course_sherbet_land_vertex_0x040022E0 + type: mk64:course_vtx + count: 48 + offset: 0x1e84 + +d_course_sherbet_land_vertex_0x040024C0: + symbol: d_course_sherbet_land_vertex_0x040024C0 + type: mk64:course_vtx + count: 48 + offset: 0x2028 + +d_course_sherbet_land_vertex_0x040026A0: + symbol: d_course_sherbet_land_vertex_0x040026A0 + type: mk64:course_vtx + count: 49 + offset: 0x21cc + +d_course_sherbet_land_vertex_0x04002890: + symbol: d_course_sherbet_land_vertex_0x04002890 + type: mk64:course_vtx + count: 6 + offset: 0x237e + +d_course_sherbet_land_vertex_0x040028F0: + symbol: d_course_sherbet_land_vertex_0x040028F0 + type: mk64:course_vtx + count: 48 + offset: 0x23d2 + +d_course_sherbet_land_vertex_0x04002AD0: + symbol: d_course_sherbet_land_vertex_0x04002AD0 + type: mk64:course_vtx + count: 49 + offset: 0x2576 + +d_course_sherbet_land_vertex_0x04002CC0: + symbol: d_course_sherbet_land_vertex_0x04002CC0 + type: mk64:course_vtx + count: 50 + offset: 0x2728 + +d_course_sherbet_land_vertex_0x04002EC0: + symbol: d_course_sherbet_land_vertex_0x04002EC0 + type: mk64:course_vtx + count: 50 + offset: 0x28e8 + +d_course_sherbet_land_vertex_0x040030C0: + symbol: d_course_sherbet_land_vertex_0x040030C0 + type: mk64:course_vtx + count: 35 + offset: 0x2aa8 + +d_course_sherbet_land_vertex_0x04003230: + symbol: d_course_sherbet_land_vertex_0x04003230 + type: mk64:course_vtx + count: 48 + offset: 0x2bea + +d_course_sherbet_land_vertex_0x04003410: + symbol: d_course_sherbet_land_vertex_0x04003410 + type: mk64:course_vtx + count: 49 + offset: 0x2d8e + +d_course_sherbet_land_vertex_0x04003600: + symbol: d_course_sherbet_land_vertex_0x04003600 + type: mk64:course_vtx + count: 50 + offset: 0x2f40 + +d_course_sherbet_land_vertex_0x04003800: + symbol: d_course_sherbet_land_vertex_0x04003800 + type: mk64:course_vtx + count: 41 + offset: 0x3100 + +d_course_sherbet_land_vertex_0x040039D0: + symbol: d_course_sherbet_land_vertex_0x040039D0 + type: mk64:course_vtx + count: 49 + offset: 0x3296 + +d_course_sherbet_land_vertex_0x04003BC0: + symbol: d_course_sherbet_land_vertex_0x04003BC0 + type: mk64:course_vtx + count: 48 + offset: 0x3448 + +d_course_sherbet_land_vertex_0x04003DA0: + symbol: d_course_sherbet_land_vertex_0x04003DA0 + type: mk64:course_vtx + count: 20 + offset: 0x35ec + +d_course_sherbet_land_vertex_0x04003E80: + symbol: d_course_sherbet_land_vertex_0x04003E80 + type: mk64:course_vtx + count: 4 + offset: 0x36b0 + +d_course_sherbet_land_vertex_0x04003EC0: + symbol: d_course_sherbet_land_vertex_0x04003EC0 + type: mk64:course_vtx + count: 22 + offset: 0x36e8 + +d_course_sherbet_land_vertex_0x04003FC0: + symbol: d_course_sherbet_land_vertex_0x04003FC0 + type: mk64:course_vtx + count: 50 + offset: 0x37c8 + +d_course_sherbet_land_vertex_0x040041C0: + symbol: d_course_sherbet_land_vertex_0x040041C0 + type: mk64:course_vtx + count: 7 + offset: 0x3988 + +d_course_sherbet_land_vertex_0x04004230: + symbol: d_course_sherbet_land_vertex_0x04004230 + type: mk64:course_vtx + count: 40 + offset: 0x39ea + +d_course_sherbet_land_vertex_0x040043F0: + symbol: d_course_sherbet_land_vertex_0x040043F0 + type: mk64:course_vtx + count: 36 + offset: 0x3b72 + +d_course_sherbet_land_vertex_0x04004570: + symbol: d_course_sherbet_land_vertex_0x04004570 + type: mk64:course_vtx + count: 48 + offset: 0x3cc2 + +d_course_sherbet_land_vertex_0x04004750: + symbol: d_course_sherbet_land_vertex_0x04004750 + type: mk64:course_vtx + count: 34 + offset: 0x3e66 + +d_course_sherbet_land_vertex_0x040048B0: + symbol: d_course_sherbet_land_vertex_0x040048B0 + type: mk64:course_vtx + count: 39 + offset: 0x3f9a + +d_course_sherbet_land_vertex_0x04004A60: + symbol: d_course_sherbet_land_vertex_0x04004A60 + type: mk64:course_vtx + count: 24 + offset: 0x4114 + +d_course_sherbet_land_vertex_0x04004B80: + symbol: d_course_sherbet_land_vertex_0x04004B80 + type: mk64:course_vtx + count: 18 + offset: 0x4210 + +d_course_sherbet_land_vertex_0x04004C40: + symbol: d_course_sherbet_land_vertex_0x04004C40 + type: mk64:course_vtx + count: 50 + offset: 0x42b8 + +d_course_sherbet_land_vertex_0x04004E40: + symbol: d_course_sherbet_land_vertex_0x04004E40 + type: mk64:course_vtx + count: 21 + offset: 0x4478 + +d_course_sherbet_land_vertex_0x04004F30: + symbol: d_course_sherbet_land_vertex_0x04004F30 + type: mk64:course_vtx + count: 49 + offset: 0x454a + +d_course_sherbet_land_vertex_0x04005120: + symbol: d_course_sherbet_land_vertex_0x04005120 + type: mk64:course_vtx + count: 9 + offset: 0x46fc + +d_course_sherbet_land_vertex_0x040051B0: + symbol: d_course_sherbet_land_vertex_0x040051B0 + type: mk64:course_vtx + count: 36 + offset: 0x477a + +d_course_sherbet_land_vertex_0x04005330: + symbol: d_course_sherbet_land_vertex_0x04005330 + type: mk64:course_vtx + count: 18 + offset: 0x48ca + +d_course_sherbet_land_vertex_0x040053F0: + symbol: d_course_sherbet_land_vertex_0x040053F0 + type: mk64:course_vtx + count: 18 + offset: 0x4972 + +d_course_sherbet_land_vertex_0x040054B0: + symbol: d_course_sherbet_land_vertex_0x040054B0 + type: mk64:course_vtx + count: 22 + offset: 0x4a1a + +d_course_sherbet_land_vertex_0x040055B0: + symbol: d_course_sherbet_land_vertex_0x040055B0 + type: mk64:course_vtx + count: 50 + offset: 0x4afa + +d_course_sherbet_land_vertex_0x040057B0: + symbol: d_course_sherbet_land_vertex_0x040057B0 + type: mk64:course_vtx + count: 4 + offset: 0x4cba + +d_course_sherbet_land_vertex_0x040057F0: + symbol: d_course_sherbet_land_vertex_0x040057F0 + type: mk64:course_vtx + count: 19 + offset: 0x4cf2 + +d_course_sherbet_land_vertex_0x040058C0: + symbol: d_course_sherbet_land_vertex_0x040058C0 + type: mk64:course_vtx + count: 8 + offset: 0x4da8 + +d_course_sherbet_land_vertex_0x04005940: + symbol: d_course_sherbet_land_vertex_0x04005940 + type: mk64:course_vtx + count: 22 + offset: 0x4e18 + +d_course_sherbet_land_vertex_0x04005A40: + symbol: d_course_sherbet_land_vertex_0x04005A40 + type: mk64:course_vtx + count: 8 + offset: 0x4ef8 + +d_course_sherbet_land_vertex_0x04005AC0: + symbol: d_course_sherbet_land_vertex_0x04005AC0 + type: mk64:course_vtx + count: 18 + offset: 0x4f68 + +d_course_sherbet_land_vertex_0x04005B80: + symbol: d_course_sherbet_land_vertex_0x04005B80 + type: mk64:course_vtx + count: 18 + offset: 0x5010 + +d_course_sherbet_land_vertex_0x04005C40: + symbol: d_course_sherbet_land_vertex_0x04005C40 + type: mk64:course_vtx + count: 4 + offset: 0x50b8 + +d_course_sherbet_land_vertex_0x04005C80: + symbol: d_course_sherbet_land_vertex_0x04005C80 + type: mk64:course_vtx + count: 17 + offset: 0x50f0 + +d_course_sherbet_land_vertex_0x04005D30: + symbol: d_course_sherbet_land_vertex_0x04005D30 + type: mk64:course_vtx + count: 17 + offset: 0x518a + +d_course_sherbet_land_vertex_0x04005DE0: + symbol: d_course_sherbet_land_vertex_0x04005DE0 + type: mk64:course_vtx + count: 22 + offset: 0x5224 + +d_course_sherbet_land_vertex_0x04005EE0: + symbol: d_course_sherbet_land_vertex_0x04005EE0 + type: mk64:course_vtx + count: 16 + offset: 0x5304 + +d_course_sherbet_land_vertex_0x04005F80: + symbol: d_course_sherbet_land_vertex_0x04005F80 + type: mk64:course_vtx + count: 4 + offset: 0x5390 + +d_course_sherbet_land_vertex_0x04005FC0: + symbol: d_course_sherbet_land_vertex_0x04005FC0 + type: mk64:course_vtx + count: 8 + offset: 0x53c8 + +d_course_sherbet_land_vertex_0x04006040: + symbol: d_course_sherbet_land_vertex_0x04006040 + type: mk64:course_vtx + count: 19 + offset: 0x5438 + +d_course_sherbet_land_vertex_0x04006110: + symbol: d_course_sherbet_land_vertex_0x04006110 + type: mk64:course_vtx + count: 7 + offset: 0x54ee + +d_course_sherbet_land_vertex_0x04006180: + symbol: d_course_sherbet_land_vertex_0x04006180 + type: mk64:course_vtx + count: 16 + offset: 0x5550 + +d_course_sherbet_land_vertex_0x04006220: + symbol: d_course_sherbet_land_vertex_0x04006220 + type: mk64:course_vtx + count: 17 + offset: 0x55dc + +d_course_sherbet_land_vertex_0x040062D0: + symbol: d_course_sherbet_land_vertex_0x040062D0 + type: mk64:course_vtx + count: 16 + offset: 0x5676 + +d_course_sherbet_land_vertex_0x04006370: + symbol: d_course_sherbet_land_vertex_0x04006370 + type: mk64:course_vtx + count: 5 + offset: 0x5702 + +d_course_sherbet_land_vertex_0x040063C0: + symbol: d_course_sherbet_land_vertex_0x040063C0 + type: mk64:course_vtx + count: 9 + offset: 0x5748 + +d_course_sherbet_land_vertex_0x04006450: + symbol: d_course_sherbet_land_vertex_0x04006450 + type: mk64:course_vtx + count: 9 + offset: 0x57c6 + +d_course_sherbet_land_vertex_0x040064E0: + symbol: d_course_sherbet_land_vertex_0x040064E0 + type: mk64:course_vtx + count: 6 + offset: 0x5844 + +d_course_sherbet_land_vertex_0x04006540: + symbol: d_course_sherbet_land_vertex_0x04006540 + type: mk64:course_vtx + count: 5 + offset: 0x5898 + +d_course_sherbet_land_vertex_0x04006590: + symbol: d_course_sherbet_land_vertex_0x04006590 + type: mk64:course_vtx + count: 9 + offset: 0x58de + +d_course_sherbet_land_vertex_0x04006620: + symbol: d_course_sherbet_land_vertex_0x04006620 + type: mk64:course_vtx + count: 7 + offset: 0x595c + +d_course_sherbet_land_vertex_0x04006690: + symbol: d_course_sherbet_land_vertex_0x04006690 + type: mk64:course_vtx + count: 7 + offset: 0x59be + +d_course_sherbet_land_vertex_0x04006700: + symbol: d_course_sherbet_land_vertex_0x04006700 + type: mk64:course_vtx + count: 9 + offset: 0x5a20 + +d_course_sherbet_land_vertex_0x04006790: + symbol: d_course_sherbet_land_vertex_0x04006790 + type: mk64:course_vtx + count: 50 + offset: 0x5a9e + +d_course_sherbet_land_vertex_0x04006990: + symbol: d_course_sherbet_land_vertex_0x04006990 + type: mk64:course_vtx + count: 50 + offset: 0x5c5e + +d_course_sherbet_land_vertex_0x04006B90: + symbol: d_course_sherbet_land_vertex_0x04006B90 + type: mk64:course_vtx + count: 8 + offset: 0x5e1e + +d_course_sherbet_land_vertex_0x04006C10: + symbol: d_course_sherbet_land_vertex_0x04006C10 + type: mk64:course_vtx + count: 50 + offset: 0x5e8e + +d_course_sherbet_land_vertex_0x04006E10: + symbol: d_course_sherbet_land_vertex_0x04006E10 + type: mk64:course_vtx + count: 50 + offset: 0x604e + +d_course_sherbet_land_vertex_0x04007010: + symbol: d_course_sherbet_land_vertex_0x04007010 + type: mk64:course_vtx + count: 8 + offset: 0x620e + +d_course_sherbet_land_vertex_0x04007090: + symbol: d_course_sherbet_land_vertex_0x04007090 + type: mk64:course_vtx + count: 50 + offset: 0x627e + +d_course_sherbet_land_vertex_0x04007290: + symbol: d_course_sherbet_land_vertex_0x04007290 + type: mk64:course_vtx + count: 50 + offset: 0x643e + +d_course_sherbet_land_vertex_0x04007490: + symbol: d_course_sherbet_land_vertex_0x04007490 + type: mk64:course_vtx + count: 8 + offset: 0x65fe + +d_course_sherbet_land_vertex_0x04007510: + symbol: d_course_sherbet_land_vertex_0x04007510 + type: mk64:course_vtx + count: 50 + offset: 0x666e + +d_course_sherbet_land_vertex_0x04007710: + symbol: d_course_sherbet_land_vertex_0x04007710 + type: mk64:course_vtx + count: 50 + offset: 0x682e + +d_course_sherbet_land_vertex_0x04007910: + symbol: d_course_sherbet_land_vertex_0x04007910 + type: mk64:course_vtx + count: 8 + offset: 0x69ee + +d_course_sherbet_land_vertex_0x04007990: + symbol: d_course_sherbet_land_vertex_0x04007990 + type: mk64:course_vtx + count: 9 + offset: 0x6a5e + +d_course_sherbet_land_vertex_0x04007A20: + symbol: d_course_sherbet_land_vertex_0x04007A20 + type: mk64:course_vtx + count: 50 + offset: 0x6adc + +d_course_sherbet_land_vertex_0x04007C20: + symbol: d_course_sherbet_land_vertex_0x04007C20 + type: mk64:course_vtx + count: 50 + offset: 0x6c9c + +d_course_sherbet_land_vertex_0x04007E20: + symbol: d_course_sherbet_land_vertex_0x04007E20 + type: mk64:course_vtx + count: 50 + offset: 0x6e5c + +d_course_sherbet_land_vertex_0x04008020: + symbol: d_course_sherbet_land_vertex_0x04008020 + type: mk64:course_vtx + count: 50 + offset: 0x701c + +d_course_sherbet_land_vertex_0x04008220: + symbol: d_course_sherbet_land_vertex_0x04008220 + type: mk64:course_vtx + count: 50 + offset: 0x71dc + +d_course_sherbet_land_vertex_0x04008420: + symbol: d_course_sherbet_land_vertex_0x04008420 + type: mk64:course_vtx + count: 50 + offset: 0x739c + +d_course_sherbet_land_vertex_0x04008620: + symbol: d_course_sherbet_land_vertex_0x04008620 + type: mk64:course_vtx + count: 48 + offset: 0x755c + +d_course_sherbet_land_vertex_0x04008800: + symbol: d_course_sherbet_land_vertex_0x04008800 + type: mk64:course_vtx + count: 7 + offset: 0x7700 + +d_course_sherbet_land_vertex_0x04008870: + symbol: d_course_sherbet_land_vertex_0x04008870 + type: mk64:course_vtx + count: 22 + offset: 0x7762 + +d_course_sherbet_land_vertex_0x04008970: + symbol: d_course_sherbet_land_vertex_0x04008970 + type: mk64:course_vtx + count: 48 + offset: 0x7842 + +d_course_sherbet_land_vertex_0x04008B50: + symbol: d_course_sherbet_land_vertex_0x04008B50 + type: mk64:course_vtx + count: 7 + offset: 0x79e6 + +d_course_sherbet_land_vertex_0x04008BC0: + symbol: d_course_sherbet_land_vertex_0x04008BC0 + type: mk64:course_vtx + count: 24 + offset: 0x7a48 + +d_course_sherbet_land_vertex_0x04008CE0: + symbol: d_course_sherbet_land_vertex_0x04008CE0 + type: mk64:course_vtx + count: 40 + offset: 0x7b44 + +d_course_sherbet_land_vertex_0x04008EA0: + symbol: d_course_sherbet_land_vertex_0x04008EA0 + type: mk64:course_vtx + count: 36 + offset: 0x7ccc + +d_course_sherbet_land_vertex_0x04009020: + symbol: d_course_sherbet_land_vertex_0x04009020 + type: mk64:course_vtx + count: 48 + offset: 0x7e1c + +d_course_sherbet_land_vertex_0x04009200: + symbol: d_course_sherbet_land_vertex_0x04009200 + type: mk64:course_vtx + count: 34 + offset: 0x7fc0 + +d_course_sherbet_land_vertex_0x04009360: + symbol: d_course_sherbet_land_vertex_0x04009360 + type: mk64:course_vtx + count: 39 + offset: 0x80f4 + +d_course_sherbet_land_vertex_0x04009510: + symbol: d_course_sherbet_land_vertex_0x04009510 + type: mk64:course_vtx + count: 18 + offset: 0x826e + +d_course_sherbet_land_vertex_0x040095D0: + symbol: d_course_sherbet_land_vertex_0x040095D0 + type: mk64:course_vtx + count: 22 + offset: 0x8316 + +d_course_sherbet_land_vertex_0x040096D0: + symbol: d_course_sherbet_land_vertex_0x040096D0 + type: mk64:course_vtx + count: 18 + offset: 0x83f6 + +d_course_sherbet_land_vertex_0x04009790: + symbol: d_course_sherbet_land_vertex_0x04009790 + type: mk64:course_vtx + count: 49 + offset: 0x849e + +d_course_sherbet_land_vertex_0x04009980: + symbol: d_course_sherbet_land_vertex_0x04009980 + type: mk64:course_vtx + count: 24 + offset: 0x8650 + +d_course_sherbet_land_vertex_0x04009AA0: + symbol: d_course_sherbet_land_vertex_0x04009AA0 + type: mk64:course_vtx + count: 49 + offset: 0x874c + +d_course_sherbet_land_vertex_0x04009C90: + symbol: d_course_sherbet_land_vertex_0x04009C90 + type: mk64:course_vtx + count: 18 + offset: 0x88fe + +d_course_sherbet_land_vertex_0x04009D50: + symbol: d_course_sherbet_land_vertex_0x04009D50 + type: mk64:course_vtx + count: 36 + offset: 0x89a6 + +d_course_sherbet_land_vertex_0x04009ED0: + symbol: d_course_sherbet_land_vertex_0x04009ED0 + type: mk64:course_vtx + count: 18 + offset: 0x8af6 + +d_course_sherbet_land_vertex_0x04009F90: + symbol: d_course_sherbet_land_vertex_0x04009F90 + type: mk64:course_vtx + count: 22 + offset: 0x8b9e + +d_course_sherbet_land_vertex_0x0400A090: + symbol: d_course_sherbet_land_vertex_0x0400A090 + type: mk64:course_vtx + count: 50 + offset: 0x8c7e + +d_course_sherbet_land_vertex_0x0400A290: + symbol: d_course_sherbet_land_vertex_0x0400A290 + type: mk64:course_vtx + count: 4 + offset: 0x8e3e + +d_course_sherbet_land_vertex_0x0400A2D0: + symbol: d_course_sherbet_land_vertex_0x0400A2D0 + type: mk64:course_vtx + count: 19 + offset: 0x8e76 + +d_course_sherbet_land_vertex_0x0400A3A0: + symbol: d_course_sherbet_land_vertex_0x0400A3A0 + type: mk64:course_vtx + count: 8 + offset: 0x8f2c + +d_course_sherbet_land_vertex_0x0400A420: + symbol: d_course_sherbet_land_vertex_0x0400A420 + type: mk64:course_vtx + count: 22 + offset: 0x8f9c + +d_course_sherbet_land_vertex_0x0400A520: + symbol: d_course_sherbet_land_vertex_0x0400A520 + type: mk64:course_vtx + count: 8 + offset: 0x907c + +d_course_sherbet_land_vertex_0x0400A5A0: + symbol: d_course_sherbet_land_vertex_0x0400A5A0 + type: mk64:course_vtx + count: 18 + offset: 0x90ec + +d_course_sherbet_land_vertex_0x0400A660: + symbol: d_course_sherbet_land_vertex_0x0400A660 + type: mk64:course_vtx + count: 18 + offset: 0x9194 + +d_course_sherbet_land_vertex_0x0400A720: + symbol: d_course_sherbet_land_vertex_0x0400A720 + type: mk64:course_vtx + count: 4 + offset: 0x923c diff --git a/yamls/us/models/tracks/skyscraper/skyscraper_data.yml b/yamls/us/models/tracks/skyscraper/skyscraper_data.yml new file mode 100644 index 000000000..39017e54b --- /dev/null +++ b/yamls/us/models/tracks/skyscraper/skyscraper_data.yml @@ -0,0 +1,113 @@ +:config: + segments: + - [0x06, 0x885780] + - [0x07, 0x800000] + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_6457D8"] + - [0x05000800, "textures/other_textures/texture_6462C0"] + - [0x05001000, "textures/other_textures/texture_6864E8"] + - [0x05002000, "textures/other_textures/texture_686CF0"] + - [0x05003000, "textures/other_textures/texture_6875A8"] + - [0x05004000, "textures/other_textures/texture_687EE8"] + - [0x05005000, "textures/other_textures/texture_68876C"] + - [0x05006000, "textures/other_textures/texture_689230"] + - [0x05007000, "textures/other_textures/texture_689C00"] + - [0x05008000, "textures/other_textures/texture_68A484"] + - [0x05009000, "textures/other_textures/texture_68AC5C"] + - [0x0500A000, "textures/other_textures/texture_68B6A4"] + - [0x0500B000, "textures/other_textures/texture_68BE6C"] + - [0x0500C000, "textures/other_textures/texture_68C310"] + - [0x0500D000, "textures/other_textures/texture_64B8D8"] + - [0x0500D800, "textures/other_textures/texture_645660"] + - [0x0500E000, "textures/other_textures/number_yellow_blue_1"] + - [0x0500E800, "textures/other_textures/number_yellow_blue_2"] + - [0x0500F000, "textures/other_textures/number_yellow_blue_3"] + - [0x0500F800, "textures/other_textures/number_yellow_blue_4"] + - [0x05010000, "textures/other_textures/texture_668608"] + - [0x05010800, "textures/other_textures/texture_67B75C"] + - [0x05011000, "textures/other_textures/texture_6835F0"] + # Segment 7 + - [0x7000000, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_0"] + - [0x7000238, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_238"] + - [0x7000248, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_248"] + - [0x7000258, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_258"] + - [0x7000268, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_268"] + - [0x7000570, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_570"] + - [0x7000580, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_580"] + - [0x70006B8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_6B8"] + - [0x70006C8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_6C8"] + - [0x70008D8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_8D8"] + - [0x7000B70, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_B70"] + - [0x7000B88, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_B88"] + - [0x7000C60, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_C60"] + - [0x7000C70, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_C70"] + - [0x7000FE8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_FE8"] + - [0x7000FF8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_FF8"] + - [0x70010C8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_10C8"] + - [0x70010D8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_10D8"] + - [0x7001110, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_1110"] + - [0x7001120, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_1120"] + # Segment 4 + - [0x4000000, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000000"] + - [0x4000200, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000200"] + - [0x4000400, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000400"] + - [0x4000600, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000600"] + - [0x4000800, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000800"] + - [0x4000a00, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000A00"] + - [0x4000c00, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000C00"] + - [0x4000d00, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000D00"] + - [0x4000f00, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000F00"] + - [0x4001100, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001100"] + - [0x40012f0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040012F0"] + - [0x40014e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040014E0"] + - [0x4001520, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001520"] + - [0x4001560, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001560"] + - [0x40015a0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040015A0"] + - [0x40015e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040015E0"] + - [0x40017e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040017E0"] + - [0x4001960, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001960"] + - [0x4001b40, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001B40"] + - [0x4001d40, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001D40"] + - [0x4001e80, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001E80"] + - [0x4002080, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002080"] + - [0x4002280, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002280"] + - [0x4002480, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002480"] + - [0x4002680, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002680"] + - [0x4002880, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002880"] + - [0x4002960, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002960"] + - [0x4002b60, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002B60"] + - [0x4002d60, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002D60"] + - [0x4002f40, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002F40"] + - [0x4003140, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003140"] + - [0x4003340, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003340"] + - [0x4003520, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003520"] + - [0x4003680, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003680"] + - [0x4003880, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003880"] + - [0x40038e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040038E0"] + - [0x40039a0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040039A0"] + - [0x4003a20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003A20"] + - [0x4003aa0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003AA0"] + - [0x4003b20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003B20"] + - [0x4003c20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003C20"] + - [0x4003d20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003D20"] + - [0x4003de0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003DE0"] + - [0x4003f20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003F20"] + - [0x4003fe0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003FE0"] + - [0x4004060, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04004060"] + - [0x40040a0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040040A0"] + - [0x40040e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040040E0"] + - [0x40042e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040042E0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_skyscraper_dl: + symbol: d_course_skyscraper_dl + type: gfx + offset: 0x0 + otr_mode: index diff --git a/yamls/us/models/tracks/skyscraper/skyscraper_displaylists.yml b/yamls/us/models/tracks/skyscraper/skyscraper_displaylists.yml new file mode 100644 index 000000000..d1eab6001 --- /dev/null +++ b/yamls/us/models/tracks/skyscraper/skyscraper_displaylists.yml @@ -0,0 +1,190 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x954F08 + no_compression: true + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_6457D8"] + - [0x05000800, "textures/other_textures/texture_6462C0"] + - [0x05001000, "textures/other_textures/texture_6864E8"] + - [0x05002000, "textures/other_textures/texture_686CF0"] + - [0x05003000, "textures/other_textures/texture_6875A8"] + - [0x05004000, "textures/other_textures/texture_687EE8"] + - [0x05005000, "textures/other_textures/texture_68876C"] + - [0x05006000, "textures/other_textures/texture_689230"] + - [0x05007000, "textures/other_textures/texture_689C00"] + - [0x05008000, "textures/other_textures/texture_68A484"] + - [0x05009000, "textures/other_textures/texture_68AC5C"] + - [0x0500A000, "textures/other_textures/texture_68B6A4"] + - [0x0500B000, "textures/other_textures/texture_68BE6C"] + - [0x0500C000, "textures/other_textures/texture_68C310"] + - [0x0500D000, "textures/other_textures/texture_64B8D8"] + - [0x0500D800, "textures/other_textures/texture_645660"] + - [0x0500E000, "textures/other_textures/number_yellow_blue_1"] + - [0x0500E800, "textures/other_textures/number_yellow_blue_2"] + - [0x0500F000, "textures/other_textures/number_yellow_blue_3"] + - [0x0500F800, "textures/other_textures/number_yellow_blue_4"] + - [0x05010000, "textures/other_textures/texture_668608"] + - [0x05010800, "textures/other_textures/texture_67B75C"] + - [0x05011000, "textures/other_textures/texture_6835F0"] + # Segment 7 + - [0x7000000, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_0"] + - [0x7000238, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_238"] + - [0x7000248, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_248"] + - [0x7000258, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_258"] + - [0x7000268, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_268"] + - [0x7000570, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_570"] + - [0x7000580, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_580"] + - [0x70006B8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_6B8"] + - [0x70006C8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_6C8"] + - [0x70008D8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_8D8"] + - [0x7000B70, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_B70"] + - [0x7000B88, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_B88"] + - [0x7000C60, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_C60"] + - [0x7000C70, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_C70"] + - [0x7000FE8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_FE8"] + - [0x7000FF8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_FF8"] + - [0x70010C8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_10C8"] + - [0x70010D8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_10D8"] + - [0x7001110, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_1110"] + - [0x7001120, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_1120"] + # Segment 4 + - [0x4000000, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000000"] + - [0x4000200, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000200"] + - [0x4000400, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000400"] + - [0x4000600, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000600"] + - [0x4000800, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000800"] + - [0x4000a00, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000A00"] + - [0x4000c00, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000C00"] + - [0x4000d00, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000D00"] + - [0x4000f00, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04000F00"] + - [0x4001100, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001100"] + - [0x40012f0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040012F0"] + - [0x40014e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040014E0"] + - [0x4001520, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001520"] + - [0x4001560, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001560"] + - [0x40015a0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040015A0"] + - [0x40015e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040015E0"] + - [0x40017e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040017E0"] + - [0x4001960, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001960"] + - [0x4001b40, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001B40"] + - [0x4001d40, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001D40"] + - [0x4001e80, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04001E80"] + - [0x4002080, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002080"] + - [0x4002280, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002280"] + - [0x4002480, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002480"] + - [0x4002680, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002680"] + - [0x4002880, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002880"] + - [0x4002960, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002960"] + - [0x4002b60, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002B60"] + - [0x4002d60, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002D60"] + - [0x4002f40, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04002F40"] + - [0x4003140, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003140"] + - [0x4003340, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003340"] + - [0x4003520, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003520"] + - [0x4003680, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003680"] + - [0x4003880, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003880"] + - [0x40038e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040038E0"] + - [0x40039a0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040039A0"] + - [0x4003a20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003A20"] + - [0x4003aa0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003AA0"] + - [0x4003b20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003B20"] + - [0x4003c20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003C20"] + - [0x4003d20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003D20"] + - [0x4003de0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003DE0"] + - [0x4003f20, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003F20"] + - [0x4003fe0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04003FE0"] + - [0x4004060, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x04004060"] + - [0x40040a0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040040A0"] + - [0x40040e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040040E0"] + - [0x40042e0, "models/tracks/skyscraper/skyscraper_vertices/d_course_skyscraper_vertex_0x040042E0"] + segments: + - [0x0F, 0x954F08] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_skyscraper_packed_dl_0: + symbol: d_course_skyscraper_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_skyscraper_packed_dl_238: + symbol: d_course_skyscraper_packed_dl_238 + type: MK64:PACKED_GFX + offset: 0x124 +d_course_skyscraper_packed_dl_248: + symbol: d_course_skyscraper_packed_dl_248 + type: MK64:PACKED_GFX + offset: 0x128 +d_course_skyscraper_packed_dl_258: + symbol: d_course_skyscraper_packed_dl_258 + type: MK64:PACKED_GFX + offset: 0x12C +d_course_skyscraper_packed_dl_268: + symbol: d_course_skyscraper_packed_dl_268 + type: MK64:PACKED_GFX + offset: 0x130 +d_course_skyscraper_packed_dl_570: + symbol: d_course_skyscraper_packed_dl_570 + type: MK64:PACKED_GFX + offset: 0x24F +d_course_skyscraper_packed_dl_580: + symbol: d_course_skyscraper_packed_dl_580 + type: MK64:PACKED_GFX + offset: 0x253 +d_course_skyscraper_packed_dl_6B8: + symbol: d_course_skyscraper_packed_dl_6B8 + type: MK64:PACKED_GFX + offset: 0x2DF +d_course_skyscraper_packed_dl_6C8: + symbol: d_course_skyscraper_packed_dl_6C8 + type: MK64:PACKED_GFX + offset: 0x2E3 +d_course_skyscraper_packed_dl_8D8: + symbol: d_course_skyscraper_packed_dl_8D8 + type: MK64:PACKED_GFX + offset: 0x3F0 +d_course_skyscraper_packed_dl_B70: + symbol: d_course_skyscraper_packed_dl_B70 + type: MK64:PACKED_GFX + offset: 0x550 +d_course_skyscraper_packed_dl_B88: + symbol: d_course_skyscraper_packed_dl_B88 + type: MK64:PACKED_GFX + offset: 0x557 +d_course_skyscraper_packed_dl_C60: + symbol: d_course_skyscraper_packed_dl_C60 + type: MK64:PACKED_GFX + offset: 0x5A5 +d_course_skyscraper_packed_dl_C70: + symbol: d_course_skyscraper_packed_dl_C70 + type: MK64:PACKED_GFX + offset: 0x5A9 +d_course_skyscraper_packed_dl_FE8: + symbol: d_course_skyscraper_packed_dl_FE8 + type: MK64:PACKED_GFX + offset: 0x6A4 +d_course_skyscraper_packed_dl_FF8: + symbol: d_course_skyscraper_packed_dl_FF8 + type: MK64:PACKED_GFX + offset: 0x6A8 +d_course_skyscraper_packed_dl_10C8: + symbol: d_course_skyscraper_packed_dl_10C8 + type: MK64:PACKED_GFX + offset: 0x6F5 +d_course_skyscraper_packed_dl_10D8: + symbol: d_course_skyscraper_packed_dl_10D8 + type: MK64:PACKED_GFX + offset: 0x6F9 +d_course_skyscraper_packed_dl_1110: + symbol: d_course_skyscraper_packed_dl_1110 + type: MK64:PACKED_GFX + offset: 0x70C +d_course_skyscraper_packed_dl_1120: + symbol: d_course_skyscraper_packed_dl_1120 + type: MK64:PACKED_GFX + offset: 0x710 diff --git a/yamls/us/models/tracks/skyscraper/skyscraper_vertices.yml b/yamls/us/models/tracks/skyscraper/skyscraper_vertices.yml new file mode 100644 index 000000000..d8d29876b --- /dev/null +++ b/yamls/us/models/tracks/skyscraper/skyscraper_vertices.yml @@ -0,0 +1,304 @@ +:config: + segments: + - [0x0F, 0x953890] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_skyscraper_vertex_0x04000000: + symbol: d_course_skyscraper_vertex_0x04000000 + type: mk64:course_vtx + count: 50 + offset: 0x0 + +d_course_skyscraper_vertex_0x04000200: + symbol: d_course_skyscraper_vertex_0x04000200 + type: mk64:course_vtx + count: 50 + offset: 0x1c0 + +d_course_skyscraper_vertex_0x04000400: + symbol: d_course_skyscraper_vertex_0x04000400 + type: mk64:course_vtx + count: 50 + offset: 0x380 + +d_course_skyscraper_vertex_0x04000600: + symbol: d_course_skyscraper_vertex_0x04000600 + type: mk64:course_vtx + count: 50 + offset: 0x540 + +d_course_skyscraper_vertex_0x04000800: + symbol: d_course_skyscraper_vertex_0x04000800 + type: mk64:course_vtx + count: 50 + offset: 0x700 + +d_course_skyscraper_vertex_0x04000A00: + symbol: d_course_skyscraper_vertex_0x04000A00 + type: mk64:course_vtx + count: 50 + offset: 0x8c0 + +d_course_skyscraper_vertex_0x04000C00: + symbol: d_course_skyscraper_vertex_0x04000C00 + type: mk64:course_vtx + count: 22 + offset: 0xa80 + +d_course_skyscraper_vertex_0x04000D00: + symbol: d_course_skyscraper_vertex_0x04000D00 + type: mk64:course_vtx + count: 50 + offset: 0xb60 + +d_course_skyscraper_vertex_0x04000F00: + symbol: d_course_skyscraper_vertex_0x04000F00 + type: mk64:course_vtx + count: 50 + offset: 0xd20 + +d_course_skyscraper_vertex_0x04001100: + symbol: d_course_skyscraper_vertex_0x04001100 + type: mk64:course_vtx + count: 49 + offset: 0xee0 + +d_course_skyscraper_vertex_0x040012F0: + symbol: d_course_skyscraper_vertex_0x040012F0 + type: mk64:course_vtx + count: 49 + offset: 0x1092 + +d_course_skyscraper_vertex_0x040014E0: + symbol: d_course_skyscraper_vertex_0x040014E0 + type: mk64:course_vtx + count: 4 + offset: 0x1244 + +d_course_skyscraper_vertex_0x04001520: + symbol: d_course_skyscraper_vertex_0x04001520 + type: mk64:course_vtx + count: 4 + offset: 0x127c + +d_course_skyscraper_vertex_0x04001560: + symbol: d_course_skyscraper_vertex_0x04001560 + type: mk64:course_vtx + count: 4 + offset: 0x12b4 + +d_course_skyscraper_vertex_0x040015A0: + symbol: d_course_skyscraper_vertex_0x040015A0 + type: mk64:course_vtx + count: 4 + offset: 0x12ec + +d_course_skyscraper_vertex_0x040015E0: + symbol: d_course_skyscraper_vertex_0x040015E0 + type: mk64:course_vtx + count: 50 + offset: 0x1324 + +d_course_skyscraper_vertex_0x040017E0: + symbol: d_course_skyscraper_vertex_0x040017E0 + type: mk64:course_vtx + count: 36 + offset: 0x14e4 + +d_course_skyscraper_vertex_0x04001960: + symbol: d_course_skyscraper_vertex_0x04001960 + type: mk64:course_vtx + count: 48 + offset: 0x1634 + +d_course_skyscraper_vertex_0x04001B40: + symbol: d_course_skyscraper_vertex_0x04001B40 + type: mk64:course_vtx + count: 50 + offset: 0x17d8 + +d_course_skyscraper_vertex_0x04001D40: + symbol: d_course_skyscraper_vertex_0x04001D40 + type: mk64:course_vtx + count: 32 + offset: 0x1998 + +d_course_skyscraper_vertex_0x04001E80: + symbol: d_course_skyscraper_vertex_0x04001E80 + type: mk64:course_vtx + count: 50 + offset: 0x1ab0 + +d_course_skyscraper_vertex_0x04002080: + symbol: d_course_skyscraper_vertex_0x04002080 + type: mk64:course_vtx + count: 50 + offset: 0x1c70 + +d_course_skyscraper_vertex_0x04002280: + symbol: d_course_skyscraper_vertex_0x04002280 + type: mk64:course_vtx + count: 50 + offset: 0x1e30 + +d_course_skyscraper_vertex_0x04002480: + symbol: d_course_skyscraper_vertex_0x04002480 + type: mk64:course_vtx + count: 50 + offset: 0x1ff0 + +d_course_skyscraper_vertex_0x04002680: + symbol: d_course_skyscraper_vertex_0x04002680 + type: mk64:course_vtx + count: 50 + offset: 0x21b0 + +d_course_skyscraper_vertex_0x04002880: + symbol: d_course_skyscraper_vertex_0x04002880 + type: mk64:course_vtx + count: 20 + offset: 0x2370 + +d_course_skyscraper_vertex_0x04002960: + symbol: d_course_skyscraper_vertex_0x04002960 + type: mk64:course_vtx + count: 50 + offset: 0x2434 + +d_course_skyscraper_vertex_0x04002B60: + symbol: d_course_skyscraper_vertex_0x04002B60 + type: mk64:course_vtx + count: 50 + offset: 0x25f4 + +d_course_skyscraper_vertex_0x04002D60: + symbol: d_course_skyscraper_vertex_0x04002D60 + type: mk64:course_vtx + count: 48 + offset: 0x27b4 + +d_course_skyscraper_vertex_0x04002F40: + symbol: d_course_skyscraper_vertex_0x04002F40 + type: mk64:course_vtx + count: 50 + offset: 0x2958 + +d_course_skyscraper_vertex_0x04003140: + symbol: d_course_skyscraper_vertex_0x04003140 + type: mk64:course_vtx + count: 50 + offset: 0x2b18 + +d_course_skyscraper_vertex_0x04003340: + symbol: d_course_skyscraper_vertex_0x04003340 + type: mk64:course_vtx + count: 48 + offset: 0x2cd8 + +d_course_skyscraper_vertex_0x04003520: + symbol: d_course_skyscraper_vertex_0x04003520 + type: mk64:course_vtx + count: 34 + offset: 0x2e7c + +d_course_skyscraper_vertex_0x04003680: + symbol: d_course_skyscraper_vertex_0x04003680 + type: mk64:course_vtx + count: 50 + offset: 0x2fb0 + +d_course_skyscraper_vertex_0x04003880: + symbol: d_course_skyscraper_vertex_0x04003880 + type: mk64:course_vtx + count: 6 + offset: 0x3170 + +d_course_skyscraper_vertex_0x040038E0: + symbol: d_course_skyscraper_vertex_0x040038E0 + type: mk64:course_vtx + count: 18 + offset: 0x31c4 + +d_course_skyscraper_vertex_0x040039A0: + symbol: d_course_skyscraper_vertex_0x040039A0 + type: mk64:course_vtx + count: 8 + offset: 0x326c + +d_course_skyscraper_vertex_0x04003A20: + symbol: d_course_skyscraper_vertex_0x04003A20 + type: mk64:course_vtx + count: 8 + offset: 0x32dc + +d_course_skyscraper_vertex_0x04003AA0: + symbol: d_course_skyscraper_vertex_0x04003AA0 + type: mk64:course_vtx + count: 8 + offset: 0x334c + +d_course_skyscraper_vertex_0x04003B20: + symbol: d_course_skyscraper_vertex_0x04003B20 + type: mk64:course_vtx + count: 22 + offset: 0x33bc + +d_course_skyscraper_vertex_0x04003C20: + symbol: d_course_skyscraper_vertex_0x04003C20 + type: mk64:course_vtx + count: 22 + offset: 0x349c + +d_course_skyscraper_vertex_0x04003D20: + symbol: d_course_skyscraper_vertex_0x04003D20 + type: mk64:course_vtx + count: 18 + offset: 0x357c + +d_course_skyscraper_vertex_0x04003DE0: + symbol: d_course_skyscraper_vertex_0x04003DE0 + type: mk64:course_vtx + count: 32 + offset: 0x3624 + +d_course_skyscraper_vertex_0x04003F20: + symbol: d_course_skyscraper_vertex_0x04003F20 + type: mk64:course_vtx + count: 18 + offset: 0x373c + +d_course_skyscraper_vertex_0x04003FE0: + symbol: d_course_skyscraper_vertex_0x04003FE0 + type: mk64:course_vtx + count: 8 + offset: 0x37e4 + +d_course_skyscraper_vertex_0x04004060: + symbol: d_course_skyscraper_vertex_0x04004060 + type: mk64:course_vtx + count: 4 + offset: 0x3854 + +d_course_skyscraper_vertex_0x040040A0: + symbol: d_course_skyscraper_vertex_0x040040A0 + type: mk64:course_vtx + count: 4 + offset: 0x388c + +d_course_skyscraper_vertex_0x040040E0: + symbol: d_course_skyscraper_vertex_0x040040E0 + type: mk64:course_vtx + count: 50 + offset: 0x38c4 + +d_course_skyscraper_vertex_0x040042E0: + symbol: d_course_skyscraper_vertex_0x040042E0 + type: mk64:course_vtx + count: 22 + offset: 0x3a84 + diff --git a/yamls/us/models/tracks/toads_turnpike/toads_turnpike_data.yml b/yamls/us/models/tracks/toads_turnpike/toads_turnpike_data.yml new file mode 100644 index 000000000..619f7075a --- /dev/null +++ b/yamls/us/models/tracks/toads_turnpike/toads_turnpike_data.yml @@ -0,0 +1,1953 @@ +:config: + segments: + - [0x06, 0x857E80] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/toads_turnpike/toads_turnpike_data.yml" + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_645134"] + - [0x05000800, "textures/other_textures/texture_64FE68"] + - [0x05001800, "textures/other_textures/texture_6607C0"] + - [0x05002000, "textures/other_textures/texture_6608C8"] + - [0x05002800, "textures/other_textures/grass_11"] + - [0x05003000, "textures/other_textures/sign_nintendo_red_0"] + - [0x05004000, "textures/other_textures/sign_nintendo_red_1"] + - [0x05005000, "textures/other_textures/texture_671A88"] + - [0x05005800, "textures/other_textures/road_2"] + - [0x05006800, "textures/other_textures/road_3"] + - [0x05007800, "textures/other_textures/road_4"] + - [0x05008800, "textures/other_textures/road_finish_0"] + - [0x05009800, "textures/other_textures/sign_toad_yellow"] + - [0x0500A800, "textures/other_textures/sign_toad_green"] + - [0x0500B800, "textures/other_textures/sign_merging_lanes"] + - [0x0500C000, "textures/other_textures/texture_65127C"] + - [0x0500C800, "textures/other_textures/road_5"] + - [0x0500D800, "textures/other_textures/sign_toad_red"] + - [0x0500E800, "textures/other_textures/texture_668228"] + # Segment 7 + - [0x7000000, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_0"] + - [0x7000068, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_68"] + - [0x70000D8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D8"] + - [0x7000140, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_140"] + - [0x7000160, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_160"] + - [0x7000218, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_218"] + - [0x7000300, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_300"] + - [0x70003E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E8"] + - [0x70004C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4C0"] + - [0x7000540, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_540"] + - [0x7000618, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_618"] + - [0x70006E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6E8"] + - [0x7000768, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_768"] + - [0x70007E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_7E8"] + - [0x70008C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_8C0"] + - [0x7000940, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_940"] + - [0x7000A28, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_A28"] + - [0x7000AA8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_AA8"] + - [0x7000B48, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_B48"] + - [0x7000C30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_C30"] + - [0x7000D08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D08"] + - [0x7000D88, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D88"] + - [0x7000E08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_E08"] + - [0x7000EC0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_EC0"] + - [0x7000FA8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_FA8"] + - [0x7001050, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1050"] + - [0x7001068, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1068"] + - [0x7001078, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1078"] + - [0x70011B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_11B8"] + - [0x70013B0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_13B0"] + - [0x70015E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_15E8"] + - [0x7001780, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1780"] + - [0x70018C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_18C0"] + - [0x7001A58, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1A58"] + - [0x7001BB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1BB8"] + - [0x7001CB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1CB8"] + - [0x7001E30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1E30"] + - [0x7001F70, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1F70"] + - [0x7002050, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2050"] + - [0x70021E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_21E8"] + - [0x7002328, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2328"] + - [0x70024C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_24C0"] + - [0x7002600, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2600"] + - [0x7002798, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2798"] + - [0x70028D8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_28D8"] + - [0x70029B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_29B8"] + - [0x7002AF8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2AF8"] + - [0x7002D98, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2D98"] + - [0x7002E40, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2E40"] + - [0x7002EE0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2EE0"] + - [0x7002FA0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2FA0"] + - [0x7003060, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3060"] + - [0x7003118, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3118"] + - [0x70031E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_31E8"] + - [0x70032A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_32A0"] + - [0x70033A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_33A8"] + - [0x7003478, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3478"] + - [0x7003548, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3548"] + - [0x7003638, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3638"] + - [0x70036C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_36C0"] + - [0x7003780, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3780"] + - [0x7003850, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3850"] + - [0x70038E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_38E8"] + - [0x70039A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_39A8"] + - [0x7003AD0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3AD0"] + - [0x7003B58, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3B58"] + - [0x7003C28, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3C28"] + - [0x7003D00, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3D00"] + - [0x7003DE8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3DE8"] + - [0x7003E90, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E90"] + - [0x7003F80, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3F80"] + - [0x70040A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_40A8"] + - [0x70041D0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_41D0"] + - [0x70042E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_42E8"] + - [0x70043A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_43A8"] + - [0x70044C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_44C0"] + - [0x70045B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_45B8"] + - [0x7004678, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4678"] + - [0x7004738, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4738"] + - [0x7004850, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4850"] + - [0x7004910, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4910"] + - [0x7004A40, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4A40"] + - [0x7004B00, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4B00"] + - [0x7004BE0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4BE0"] + - [0x7004D10, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4D10"] + - [0x7004E30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4E30"] + - [0x7004EF0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4EF0"] + - [0x7004FB0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4FB0"] + - [0x70050A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_50A0"] + - [0x70051C8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_51C8"] + - [0x7005270, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5270"] + - [0x7005360, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5360"] + - [0x7005480, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5480"] + - [0x70055A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_55A0"] + - [0x70056B0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_56B0"] + - [0x7005770, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5770"] + - [0x7005880, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5880"] + - [0x7005958, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5958"] + - [0x7005AE8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5AE8"] + - [0x7005C80, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5C80"] + - [0x7005D90, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5D90"] + - [0x7005E50, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5E50"] + - [0x7005F78, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5F78"] + - [0x7006030, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6030"] + - [0x7006110, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6110"] + - [0x7006230, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6230"] + - [0x7006348, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6348"] + - [0x7006408, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6408"] + - [0x70064C8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_64C8"] + - [0x70065B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_65B8"] + - [0x70066E0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_66E0"] + - [0x7006788, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6788"] + - [0x7006848, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6848"] + - [0x7006908, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6908"] + - [0x7006AB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AB8"] + - [0x7006AD8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AD8"] + - [0x7006B08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B08"] + - [0x7006B18, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B18"] + # Segment 4 + - [0x4000000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000000"] + - [0x4000080, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000080"] + - [0x4000140, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000140"] + - [0x40001c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040001C0"] + - [0x40003c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040003C0"] + - [0x40005c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040005C0"] + - [0x4000640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000640"] + - [0x4000840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000840"] + - [0x4000a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000A40"] + - [0x4000c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000C40"] + - [0x4000e40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000E40"] + - [0x4001040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001040"] + - [0x4001240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001240"] + - [0x4001440, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001440"] + - [0x4001640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001640"] + - [0x40017c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040017C0"] + - [0x40019c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040019C0"] + - [0x4001ac0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001AC0"] + - [0x4001cc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001CC0"] + - [0x4001ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001EC0"] + - [0x4002040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002040"] + - [0x4002220, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002220"] + - [0x4002400, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002400"] + - [0x40024e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040024E0"] + - [0x40026e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040026E0"] + - [0x40027e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040027E0"] + - [0x40029c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040029C0"] + - [0x4002ac0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002AC0"] + - [0x4002cc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002CC0"] + - [0x4002ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002EC0"] + - [0x4003040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003040"] + - [0x4003240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003240"] + - [0x4003340, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003340"] + - [0x4003540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003540"] + - [0x4003740, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003740"] + - [0x4003940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003940"] + - [0x4003b40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003B40"] + - [0x4003c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003C40"] + - [0x4003e40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003E40"] + - [0x4004040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004040"] + - [0x4004240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004240"] + - [0x4004440, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004440"] + - [0x4004640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004640"] + - [0x4004840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004840"] + - [0x4004a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004A40"] + - [0x4004bc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004BC0"] + - [0x4004dc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004DC0"] + - [0x4004ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004EC0"] + - [0x40050c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040050C0"] + - [0x40051c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040051C0"] + - [0x40053c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040053C0"] + - [0x40055c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040055C0"] + - [0x4005640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005640"] + - [0x4005840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005840"] + - [0x4005a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005A40"] + - [0x4005c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005C40"] + - [0x4005e20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005E20"] + - [0x4006000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006000"] + - [0x40060a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040060A0"] + - [0x40062a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040062A0"] + - [0x4006480, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006480"] + - [0x4006660, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006660"] + - [0x40066c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040066C0"] + - [0x40067b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040067B0"] + - [0x4006830, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006830"] + - [0x4006a10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006A10"] + - [0x4006bf0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006BF0"] + - [0x4006dd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006DD0"] + - [0x4006f00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006F00"] + - [0x4006f80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006F80"] + - [0x4007000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007000"] + - [0x40071e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040071E0"] + - [0x40073e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040073E0"] + - [0x40075c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040075C0"] + - [0x40076b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040076B0"] + - [0x4007890, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007890"] + - [0x4007a70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007A70"] + - [0x4007b10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007B10"] + - [0x4007cf0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007CF0"] + - [0x4007ef0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007EF0"] + - [0x40080d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040080D0"] + - [0x40081c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040081C0"] + - [0x40083c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040083C0"] + - [0x40085a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040085A0"] + - [0x4008600, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008600"] + - [0x40086a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040086A0"] + - [0x40088a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040088A0"] + - [0x4008920, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008920"] + - [0x4008970, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008970"] + - [0x4008b70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008B70"] + - [0x4008d70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008D70"] + - [0x4008e30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008E30"] + - [0x4008ed0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008ED0"] + - [0x40090b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040090B0"] + - [0x4009290, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009290"] + - [0x4009330, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009330"] + - [0x4009510, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009510"] + - [0x4009560, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009560"] + - [0x4009740, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009740"] + - [0x4009940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009940"] + - [0x4009b20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009B20"] + - [0x4009c10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009C10"] + - [0x4009df0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009DF0"] + - [0x4009fd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009FD0"] + - [0x400a070, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A070"] + - [0x400a0f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A0F0"] + - [0x400a2d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A2D0"] + - [0x400a4b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A4B0"] + - [0x400a550, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A550"] + - [0x400a730, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A730"] + - [0x400a910, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A910"] + - [0x400a9b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A9B0"] + - [0x400ab90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AB90"] + - [0x400ad90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AD90"] + - [0x400af70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AF70"] + - [0x400b060, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B060"] + - [0x400b240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B240"] + - [0x400b420, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B420"] + - [0x400b4c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B4C0"] + - [0x400b6a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B6A0"] + - [0x400b6f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B6F0"] + - [0x400b8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B8D0"] + - [0x400bab0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BAB0"] + - [0x400bb50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BB50"] + - [0x400bb90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BB90"] + - [0x400bbd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BBD0"] + - [0x400bdb0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BDB0"] + - [0x400bf90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BF90"] + - [0x400c170, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C170"] + - [0x400c1b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C1B0"] + - [0x400c2a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C2A0"] + - [0x400c2e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C2E0"] + - [0x400c4c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C4C0"] + - [0x400c6a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C6A0"] + - [0x400c700, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C700"] + - [0x400c8e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C8E0"] + - [0x400c940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C940"] + - [0x400cb40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CB40"] + - [0x400cb80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CB80"] + - [0x400cc00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CC00"] + - [0x400cd80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CD80"] + - [0x400cf80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CF80"] + - [0x400cfc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CFC0"] + - [0x400d1c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D1C0"] + - [0x400d200, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D200"] + - [0x400d280, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D280"] + - [0x400d300, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D300"] + - [0x400d490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D490"] + - [0x400d500, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D500"] + - [0x400d680, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D680"] + - [0x400d6b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D6B0"] + - [0x400d890, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D890"] + - [0x400d8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D8D0"] + - [0x400da50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DA50"] + - [0x400dc50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DC50"] + - [0x400dcd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DCD0"] + - [0x400dd60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DD60"] + - [0x400dee0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DEE0"] + - [0x400e040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E040"] + - [0x400e240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E240"] + - [0x400e2a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E2A0"] + - [0x400e330, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E330"] + - [0x400e370, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E370"] + - [0x400e540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E540"] + - [0x400e6c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E6C0"] + - [0x400e750, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E750"] + - [0x400e8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E8D0"] + - [0x400e900, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E900"] + - [0x400eae0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EAE0"] + - [0x400ebe0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EBE0"] + - [0x400ed60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400ED60"] + - [0x400ef60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EF60"] + - [0x400f120, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F120"] + - [0x400f300, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F300"] + - [0x400f500, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F500"] + - [0x400f5a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F5A0"] + - [0x400f780, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F780"] + - [0x400f960, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F960"] + - [0x400fa20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FA20"] + - [0x400fc20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FC20"] + - [0x400fe00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FE00"] + - [0x400fe60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FE60"] + - [0x4010060, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010060"] + - [0x4010160, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010160"] + - [0x4010340, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010340"] + - [0x4010540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010540"] + - [0x40105c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040105C0"] + - [0x40107c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040107C0"] + - [0x40109c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040109C0"] + - [0x4010a00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010A00"] + - [0x4010c00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010C00"] + - [0x4010d00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010D00"] + - [0x4010f00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010F00"] + - [0x4011000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011000"] + - [0x4011200, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011200"] + - [0x4011400, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011400"] + - [0x4011480, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011480"] + - [0x4011680, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011680"] + - [0x4011780, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011780"] + - [0x4011980, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011980"] + - [0x4011b80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011B80"] + - [0x4011c70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011C70"] + - [0x4011e70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011E70"] + - [0x4011f70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011F70"] + - [0x4012150, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012150"] + - [0x40122f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040122F0"] + - [0x40124e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040124E0"] + - [0x40126e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040126E0"] + - [0x40127d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040127D0"] + - [0x40129c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040129C0"] + - [0x4012bb0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012BB0"] + - [0x4012c50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012C50"] + - [0x4012e50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012E50"] + - [0x4012f50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012F50"] + - [0x4013150, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013150"] + - [0x4013250, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013250"] + - [0x4013430, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013430"] + - [0x4013610, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013610"] + - [0x40137f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040137F0"] + - [0x40139d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040139D0"] + - [0x4013a90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013A90"] + - [0x4013c70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013C70"] + - [0x4013d90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013D90"] + - [0x4013f90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013F90"] + - [0x4014110, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014110"] + - [0x40142f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040142F0"] + - [0x4014490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014490"] + - [0x4014670, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014670"] + - [0x40147f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040147F0"] + - [0x40149f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040149F0"] + - [0x4014af0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014AF0"] + - [0x4014cd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014CD0"] + - [0x4014e50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014E50"] + - [0x4015050, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015050"] + - [0x4015110, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015110"] + - [0x40152d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040152D0"] + - [0x40153b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040153B0"] + - [0x4015490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015490"] + - [0x4015670, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015670"] + - [0x4015710, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015710"] + - [0x40157f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040157F0"] + - [0x40158d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040158D0"] + - [0x4015ad0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015AD0"] + - [0x4015c90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015C90"] + - [0x4015e90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015E90"] + - [0x4015f90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015F90"] + - [0x4016190, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016190"] + - [0x4016390, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016390"] + - [0x4016410, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016410"] + - [0x40165f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040165F0"] + - [0x40167f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040167F0"] + - [0x4016870, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016870"] + - [0x4016a70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016A70"] + - [0x4016bd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016BD0"] + - [0x4016dd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016DD0"] + - [0x4016fd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016FD0"] + - [0x4017010, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017010"] + - [0x4017210, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017210"] + - [0x4017310, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017310"] + - [0x4017510, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017510"] + - [0x40175d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040175D0"] + - [0x40177d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040177D0"] + - [0x4017950, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017950"] + - [0x4017b30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017B30"] + - [0x4017d30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017D30"] + - [0x4017df0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017DF0"] + - [0x4017ff0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017FF0"] + - [0x40180f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040180F0"] + - [0x40182f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040182F0"] + - [0x40183f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040183F0"] + - [0x40185e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040185E0"] + - [0x40187e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040187E0"] + - [0x40189e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040189E0"] + - [0x4018bc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04018BC0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_toads_turnpike_dl_0: + symbol: d_course_toads_turnpike_dl_0 + type: gfx + offset: 0x0 +d_course_toads_turnpike_dl_60: + symbol: d_course_toads_turnpike_dl_60 + type: gfx + offset: 0x60 +d_course_toads_turnpike_dl_80: + symbol: d_course_toads_turnpike_dl_80 + type: gfx + offset: 0x80 +d_course_toads_turnpike_dl_158: + symbol: d_course_toads_turnpike_dl_158 + type: gfx + offset: 0x158 +d_course_toads_turnpike_dl_1F8: + symbol: d_course_toads_turnpike_dl_1F8 + type: gfx + offset: 0x1F8 +d_course_toads_turnpike_dl_2D0: + symbol: d_course_toads_turnpike_dl_2D0 + type: gfx + offset: 0x2D0 +d_course_toads_turnpike_dl_380: + symbol: d_course_toads_turnpike_dl_380 + type: gfx + offset: 0x380 +d_course_toads_turnpike_dl_438: + symbol: d_course_toads_turnpike_dl_438 + type: gfx + offset: 0x438 +d_course_toads_turnpike_dl_4E8: + symbol: d_course_toads_turnpike_dl_4E8 + type: gfx + offset: 0x4E8 +d_course_toads_turnpike_dl_5B8: + symbol: d_course_toads_turnpike_dl_5B8 + type: gfx + offset: 0x5B8 +d_course_toads_turnpike_dl_668: + symbol: d_course_toads_turnpike_dl_668 + type: gfx + offset: 0x668 +d_course_toads_turnpike_dl_718: + symbol: d_course_toads_turnpike_dl_718 + type: gfx + offset: 0x718 +d_course_toads_turnpike_dl_7D8: + symbol: d_course_toads_turnpike_dl_7D8 + type: gfx + offset: 0x7D8 +d_course_toads_turnpike_dl_878: + symbol: d_course_toads_turnpike_dl_878 + type: gfx + offset: 0x878 +d_course_toads_turnpike_dl_948: + symbol: d_course_toads_turnpike_dl_948 + type: gfx + offset: 0x948 +d_course_toads_turnpike_dl_9F0: + symbol: d_course_toads_turnpike_dl_9F0 + type: gfx + offset: 0x9F0 +d_course_toads_turnpike_dl_AC8: + symbol: d_course_toads_turnpike_dl_AC8 + type: gfx + offset: 0xAC8 +d_course_toads_turnpike_dl_B88: + symbol: d_course_toads_turnpike_dl_B88 + type: gfx + offset: 0xB88 +d_course_toads_turnpike_dl_C70: + symbol: d_course_toads_turnpike_dl_C70 + type: gfx + offset: 0xC70 +d_course_toads_turnpike_dl_D00: + symbol: d_course_toads_turnpike_dl_D00 + type: gfx + offset: 0xD00 +d_course_toads_turnpike_dl_DD0: + symbol: d_course_toads_turnpike_dl_DD0 + type: gfx + offset: 0xDD0 +d_course_toads_turnpike_dl_E70: + symbol: d_course_toads_turnpike_dl_E70 + type: gfx + offset: 0xE70 +d_course_toads_turnpike_dl_F18: + symbol: d_course_toads_turnpike_dl_F18 + type: gfx + offset: 0xF18 +d_course_toads_turnpike_dl_FA8: + symbol: d_course_toads_turnpike_dl_FA8 + type: gfx + offset: 0xFA8 +d_course_toads_turnpike_dl_1070: + symbol: d_course_toads_turnpike_dl_1070 + type: gfx + offset: 0x1070 +d_course_toads_turnpike_dl_1118: + symbol: d_course_toads_turnpike_dl_1118 + type: gfx + offset: 0x1118 +d_course_toads_turnpike_dl_11C0: + symbol: d_course_toads_turnpike_dl_11C0 + type: gfx + offset: 0x11C0 +d_course_toads_turnpike_dl_1250: + symbol: d_course_toads_turnpike_dl_1250 + type: gfx + offset: 0x1250 +d_course_toads_turnpike_dl_1310: + symbol: d_course_toads_turnpike_dl_1310 + type: gfx + offset: 0x1310 +d_course_toads_turnpike_dl_13E0: + symbol: d_course_toads_turnpike_dl_13E0 + type: gfx + offset: 0x13E0 +d_course_toads_turnpike_dl_1468: + symbol: d_course_toads_turnpike_dl_1468 + type: gfx + offset: 0x1468 +d_course_toads_turnpike_dl_1510: + symbol: d_course_toads_turnpike_dl_1510 + type: gfx + offset: 0x1510 +d_course_toads_turnpike_dl_15A8: + symbol: d_course_toads_turnpike_dl_15A8 + type: gfx + offset: 0x15A8 +d_course_toads_turnpike_dl_1678: + symbol: d_course_toads_turnpike_dl_1678 + type: gfx + offset: 0x1678 +d_course_toads_turnpike_dl_1708: + symbol: d_course_toads_turnpike_dl_1708 + type: gfx + offset: 0x1708 +d_course_toads_turnpike_dl_17F8: + symbol: d_course_toads_turnpike_dl_17F8 + type: gfx + offset: 0x17F8 +d_course_toads_turnpike_dl_18C0: + symbol: d_course_toads_turnpike_dl_18C0 + type: gfx + offset: 0x18C0 +d_course_toads_turnpike_dl_19C0: + symbol: d_course_toads_turnpike_dl_19C0 + type: gfx + offset: 0x19C0 +d_course_toads_turnpike_dl_1A60: + symbol: d_course_toads_turnpike_dl_1A60 + type: gfx + offset: 0x1A60 +d_course_toads_turnpike_dl_1B50: + symbol: d_course_toads_turnpike_dl_1B50 + type: gfx + offset: 0x1B50 +d_course_toads_turnpike_dl_1C10: + symbol: d_course_toads_turnpike_dl_1C10 + type: gfx + offset: 0x1C10 +d_course_toads_turnpike_dl_1D18: + symbol: d_course_toads_turnpike_dl_1D18 + type: gfx + offset: 0x1D18 +d_course_toads_turnpike_dl_1DC0: + symbol: d_course_toads_turnpike_dl_1DC0 + type: gfx + offset: 0x1DC0 +d_course_toads_turnpike_dl_1E80: + symbol: d_course_toads_turnpike_dl_1E80 + type: gfx + offset: 0x1E80 +d_course_toads_turnpike_dl_1F40: + symbol: d_course_toads_turnpike_dl_1F40 + type: gfx + offset: 0x1F40 +d_course_toads_turnpike_dl_2030: + symbol: d_course_toads_turnpike_dl_2030 + type: gfx + offset: 0x2030 +d_course_toads_turnpike_dl_20F8: + symbol: d_course_toads_turnpike_dl_20F8 + type: gfx + offset: 0x20F8 +d_course_toads_turnpike_dl_21C8: + symbol: d_course_toads_turnpike_dl_21C8 + type: gfx + offset: 0x21C8 +d_course_toads_turnpike_dl_22A8: + symbol: d_course_toads_turnpike_dl_22A8 + type: gfx + offset: 0x22A8 +d_course_toads_turnpike_dl_2358: + symbol: d_course_toads_turnpike_dl_2358 + type: gfx + offset: 0x2358 +d_course_toads_turnpike_dl_2440: + symbol: d_course_toads_turnpike_dl_2440 + type: gfx + offset: 0x2440 +d_course_toads_turnpike_dl_2530: + symbol: d_course_toads_turnpike_dl_2530 + type: gfx + offset: 0x2530 +d_course_toads_turnpike_dl_2628: + symbol: d_course_toads_turnpike_dl_2628 + type: gfx + offset: 0x2628 +d_course_toads_turnpike_dl_26D8: + symbol: d_course_toads_turnpike_dl_26D8 + type: gfx + offset: 0x26D8 +d_course_toads_turnpike_dl_27D0: + symbol: d_course_toads_turnpike_dl_27D0 + type: gfx + offset: 0x27D0 +d_course_toads_turnpike_dl_2898: + symbol: d_course_toads_turnpike_dl_2898 + type: gfx + offset: 0x2898 +d_course_toads_turnpike_dl_2960: + symbol: d_course_toads_turnpike_dl_2960 + type: gfx + offset: 0x2960 +d_course_toads_turnpike_dl_2A00: + symbol: d_course_toads_turnpike_dl_2A00 + type: gfx + offset: 0x2A00 +d_course_toads_turnpike_dl_2AF0: + symbol: d_course_toads_turnpike_dl_2AF0 + type: gfx + offset: 0x2AF0 +d_course_toads_turnpike_dl_2B88: + symbol: d_course_toads_turnpike_dl_2B88 + type: gfx + offset: 0x2B88 +d_course_toads_turnpike_dl_2C38: + symbol: d_course_toads_turnpike_dl_2C38 + type: gfx + offset: 0x2C38 +d_course_toads_turnpike_dl_2CC0: + symbol: d_course_toads_turnpike_dl_2CC0 + type: gfx + offset: 0x2CC0 +d_course_toads_turnpike_dl_2DB8: + symbol: d_course_toads_turnpike_dl_2DB8 + type: gfx + offset: 0x2DB8 +d_course_toads_turnpike_dl_2E50: + symbol: d_course_toads_turnpike_dl_2E50 + type: gfx + offset: 0x2E50 +d_course_toads_turnpike_dl_2EF0: + symbol: d_course_toads_turnpike_dl_2EF0 + type: gfx + offset: 0x2EF0 +d_course_toads_turnpike_dl_2F78: + symbol: d_course_toads_turnpike_dl_2F78 + type: gfx + offset: 0x2F78 +d_course_toads_turnpike_dl_3030: + symbol: d_course_toads_turnpike_dl_3030 + type: gfx + offset: 0x3030 +d_course_toads_turnpike_dl_30F8: + symbol: d_course_toads_turnpike_dl_30F8 + type: gfx + offset: 0x30F8 +d_course_toads_turnpike_dl_3190: + symbol: d_course_toads_turnpike_dl_3190 + type: gfx + offset: 0x3190 +d_course_toads_turnpike_dl_3228: + symbol: d_course_toads_turnpike_dl_3228 + type: gfx + offset: 0x3228 +d_course_toads_turnpike_dl_32F0: + symbol: d_course_toads_turnpike_dl_32F0 + type: gfx + offset: 0x32F0 +d_course_toads_turnpike_dl_33A0: + symbol: d_course_toads_turnpike_dl_33A0 + type: gfx + offset: 0x33A0 +d_course_toads_turnpike_dl_3438: + symbol: d_course_toads_turnpike_dl_3438 + type: gfx + offset: 0x3438 +d_course_toads_turnpike_dl_34D0: + symbol: d_course_toads_turnpike_dl_34D0 + type: gfx + offset: 0x34D0 +d_course_toads_turnpike_dl_3570: + symbol: d_course_toads_turnpike_dl_3570 + type: gfx + offset: 0x3570 +d_course_toads_turnpike_dl_3618: + symbol: d_course_toads_turnpike_dl_3618 + type: gfx + offset: 0x3618 +d_course_toads_turnpike_dl_36A8: + symbol: d_course_toads_turnpike_dl_36A8 + type: gfx + offset: 0x36A8 +d_course_toads_turnpike_dl_3758: + symbol: d_course_toads_turnpike_dl_3758 + type: gfx + offset: 0x3758 +d_course_toads_turnpike_dl_37F0: + symbol: d_course_toads_turnpike_dl_37F0 + type: gfx + offset: 0x37F0 +d_course_toads_turnpike_dl_3910: + symbol: d_course_toads_turnpike_dl_3910 + type: gfx + offset: 0x3910 +d_course_toads_turnpike_dl_39C8: + symbol: d_course_toads_turnpike_dl_39C8 + type: gfx + offset: 0x39C8 +d_course_toads_turnpike_dl_3AD8: + symbol: d_course_toads_turnpike_dl_3AD8 + type: gfx + offset: 0x3AD8 +d_course_toads_turnpike_truck_model_lod0: + symbol: d_course_toads_turnpike_truck_model_lod0 + type: vtx + offset: 0x181B8 + count: 8 +d_course_toads_turnpike_truck_unknown_model1: + symbol: d_course_toads_turnpike_truck_unknown_model1 + type: vtx + offset: 0x18238 + count: 8 +d_course_toads_turnpike_truck_unknown_model2: + symbol: d_course_toads_turnpike_truck_unknown_model2 + type: vtx + offset: 0x182B8 + count: 12 +d_course_toads_turnpike_truck_unknown_model3: + symbol: d_course_toads_turnpike_truck_unknown_model3 + type: vtx + offset: 0x18378 + count: 12 +d_course_toads_turnpike_truck_unknown_model4: + symbol: d_course_toads_turnpike_truck_unknown_model4 + type: vtx + offset: 0x18438 + count: 28 +d_course_toads_turnpike_truck_unknown_model5: + symbol: d_course_toads_turnpike_truck_unknown_model5 + type: vtx + offset: 0x185F8 + count: 10 +d_course_toads_turnpike_truck_unknown_model6: + symbol: d_course_toads_turnpike_truck_unknown_model6 + type: vtx + offset: 0x18698 + count: 31 +d_course_toads_turnpike_truck_unknown_model7: + symbol: d_course_toads_turnpike_truck_unknown_model7 + type: vtx + offset: 0x18888 + count: 10 +d_course_toads_turnpike_truck_unknown_model8: + symbol: d_course_toads_turnpike_truck_unknown_model8 + type: vtx + offset: 0x18928 + count: 14 +d_course_toads_turnpike_truck_unknown_model9: + symbol: d_course_toads_turnpike_truck_unknown_model9 + type: vtx + offset: 0x18A08 + count: 4 +d_course_toads_turnpike_truck_unknown_model10: + symbol: d_course_toads_turnpike_truck_unknown_model10 + type: vtx + offset: 0x18A48 + count: 8 +d_course_toads_turnpike_truck_unknown_model11: + symbol: d_course_toads_turnpike_truck_unknown_model11 + type: vtx + offset: 0x18AC8 + count: 20 +d_course_toads_turnpike_truck_unknown_model12: + symbol: d_course_toads_turnpike_truck_unknown_model12 + type: vtx + offset: 0x18C08 + count: 15 +d_course_toads_turnpike_truck_unknown_model13: + symbol: d_course_toads_turnpike_truck_unknown_model13 + type: vtx + offset: 0x18CF8 + count: 12 +d_course_toads_turnpike_dl_18DB8: + symbol: d_course_toads_turnpike_dl_18DB8 + type: gfx + offset: 0x18DB8 +d_course_toads_turnpike_dl_18E38: + symbol: d_course_toads_turnpike_dl_18E38 + type: gfx + offset: 0x18E38 +d_course_toads_turnpike_dl_18EB8: + symbol: d_course_toads_turnpike_dl_18EB8 + type: gfx + offset: 0x18EB8 +d_course_toads_turnpike_dl_18F58: + symbol: d_course_toads_turnpike_dl_18F58 + type: gfx + offset: 0x18F58 +d_course_toads_turnpike_dl_18FF8: + symbol: d_course_toads_turnpike_dl_18FF8 + type: gfx + offset: 0x18FF8 +d_course_toads_turnpike_dl_19020: + symbol: d_course_toads_turnpike_dl_19020 + type: gfx + offset: 0x19020 +d_course_toads_turnpike_dl_19030: + symbol: d_course_toads_turnpike_dl_19030 + type: gfx + offset: 0x19030 +d_course_toads_turnpike_dl_190E8: + symbol: d_course_toads_turnpike_dl_190E8 + type: gfx + offset: 0x190E8 +d_course_toads_turnpike_dl_19168: + symbol: d_course_toads_turnpike_dl_19168 + type: gfx + offset: 0x19168 +d_course_toads_turnpike_dl_192B0: + symbol: d_course_toads_turnpike_dl_192B0 + type: gfx + offset: 0x192B0 +d_course_toads_turnpike_dl_19390: + symbol: d_course_toads_turnpike_dl_19390 + type: gfx + offset: 0x19390 +d_course_toads_turnpike_dl_19450: + symbol: d_course_toads_turnpike_dl_19450 + type: gfx + offset: 0x19450 +d_course_toads_turnpike_dl_194E0: + symbol: d_course_toads_turnpike_dl_194E0 + type: gfx + offset: 0x194E0 +d_course_toads_turnpike_dl_19518: + symbol: d_course_toads_turnpike_dl_19518 + type: gfx + offset: 0x19518 +d_course_toads_turnpike_truck_model_lod1: + symbol: d_course_toads_turnpike_truck_model_lod1 + type: vtx + offset: 0x19528 + count: 16 +d_course_toads_turnpike_truck_unknown_model14: + symbol: d_course_toads_turnpike_truck_unknown_model14 + type: vtx + offset: 0x19628 + count: 16 +d_course_toads_turnpike_truck_unknown_model15: + symbol: d_course_toads_turnpike_truck_unknown_model15 + type: vtx + offset: 0x19728 + count: 20 +d_course_toads_turnpike_truck_unknown_model16: + symbol: d_course_toads_turnpike_truck_unknown_model16 + type: vtx + offset: 0x19868 + count: 12 +d_course_toads_turnpike_truck_unknown_model17: + symbol: d_course_toads_turnpike_truck_unknown_model17 + type: vtx + offset: 0x19928 + count: 12 +d_course_toads_turnpike_truck_unknown_model18: + symbol: d_course_toads_turnpike_truck_unknown_model18 + type: vtx + offset: 0x199E8 + count: 27 +d_course_toads_turnpike_truck_unknown_model19: + symbol: d_course_toads_turnpike_truck_unknown_model19 + type: vtx + offset: 0x19B98 + count: 18 +d_course_toads_turnpike_truck_unknown_model20: + symbol: d_course_toads_turnpike_truck_unknown_model20 + type: vtx + offset: 0x19CB8 + count: 4 +d_course_toads_turnpike_dl_19CF8: + symbol: d_course_toads_turnpike_dl_19CF8 + type: gfx + offset: 0x19CF8 +d_course_toads_turnpike_dl_19D68: + symbol: d_course_toads_turnpike_dl_19D68 + type: gfx + offset: 0x19D68 +d_course_toads_turnpike_dl_19DD8: + symbol: d_course_toads_turnpike_dl_19DD8 + type: gfx + offset: 0x19DD8 +d_course_toads_turnpike_dl_19DF0: + symbol: d_course_toads_turnpike_dl_19DF0 + type: gfx + offset: 0x19DF0 +d_course_toads_turnpike_dl_19E00: + symbol: d_course_toads_turnpike_dl_19E00 + type: gfx + offset: 0x19E00 +d_course_toads_turnpike_dl_19E38: + symbol: d_course_toads_turnpike_dl_19E38 + type: gfx + offset: 0x19E38 +d_course_toads_turnpike_dl_19EA0: + symbol: d_course_toads_turnpike_dl_19EA0 + type: gfx + offset: 0x19EA0 +d_course_toads_turnpike_dl_19F08: + symbol: d_course_toads_turnpike_dl_19F08 + type: gfx + offset: 0x19F08 +d_course_toads_turnpike_dl_1A040: + symbol: d_course_toads_turnpike_dl_1A040 + type: gfx + offset: 0x1A040 +d_course_toads_turnpike_dl_1A068: + symbol: d_course_toads_turnpike_dl_1A068 + type: gfx + offset: 0x1A068 +d_course_toads_turnpike_truck_model_lod2: + symbol: d_course_toads_turnpike_truck_model_lod2 + type: vtx + offset: 0x1A078 + count: 16 +d_course_toads_turnpike_truck_unknown_model21: + symbol: d_course_toads_turnpike_truck_unknown_model21 + type: vtx + offset: 0x1A178 + count: 4 +d_course_toads_turnpike_truck_unknown_model22: + symbol: d_course_toads_turnpike_truck_unknown_model22 + type: vtx + offset: 0x1A1B8 + count: 12 +d_course_toads_turnpike_truck_unknown_model23: + symbol: d_course_toads_turnpike_truck_unknown_model23 + type: vtx + offset: 0x1A278 + count: 20 +d_course_toads_turnpike_truck_unknown_model24: + symbol: d_course_toads_turnpike_truck_unknown_model24 + type: vtx + offset: 0x1A3B8 + count: 16 +d_course_toads_turnpike_dl_1A4B8: + symbol: d_course_toads_turnpike_dl_1A4B8 + type: gfx + offset: 0x1A4B8 +d_course_toads_turnpike_dl_1A528: + symbol: d_course_toads_turnpike_dl_1A528 + type: gfx + offset: 0x1A528 +d_course_toads_turnpike_dl_1A5E0: + symbol: d_course_toads_turnpike_dl_1A5E0 + type: gfx + offset: 0x1A5E0 +d_course_toads_turnpike_dl_1A5F8: + symbol: d_course_toads_turnpike_dl_1A5F8 + type: gfx + offset: 0x1A5F8 +d_course_toads_turnpike_dl_1A608: + symbol: d_course_toads_turnpike_dl_1A608 + type: gfx + offset: 0x1A608 +d_course_toads_turnpike_dl_1A640: + symbol: d_course_toads_turnpike_dl_1A640 + type: gfx + offset: 0x1A640 +d_course_toads_turnpike_dl_1A6B0: + symbol: d_course_toads_turnpike_dl_1A6B0 + type: gfx + offset: 0x1A6B0 +d_course_toads_turnpike_dl_1A6C8: + symbol: d_course_toads_turnpike_dl_1A6C8 + type: gfx + offset: 0x1A6C8 +d_course_toads_turnpike_bus_model_lod0: + symbol: d_course_toads_turnpike_bus_model_lod0 + type: vtx + offset: 0x1A6D8 + count: 16 +d_course_toads_turnpike_bus_unknown_model1: + symbol: d_course_toads_turnpike_bus_unknown_model1 + type: vtx + offset: 0x1A7D8 + count: 8 +d_course_toads_turnpike_bus_unknown_model2: + symbol: d_course_toads_turnpike_bus_unknown_model2 + type: vtx + offset: 0x1A858 + count: 8 +d_course_toads_turnpike_bus_unknown_model3: + symbol: d_course_toads_turnpike_bus_unknown_model3 + type: vtx + offset: 0x1A8D8 + count: 8 +d_course_toads_turnpike_bus_unknown_model4: + symbol: d_course_toads_turnpike_bus_unknown_model4 + type: vtx + offset: 0x1A958 + count: 10 +d_course_toads_turnpike_bus_unknown_model5: + symbol: d_course_toads_turnpike_bus_unknown_model5 + type: vtx + offset: 0x1A9F8 + count: 6 +d_course_toads_turnpike_bus_unknown_model6: + symbol: d_course_toads_turnpike_bus_unknown_model6 + type: vtx + offset: 0x1AA58 + count: 4 +d_course_toads_turnpike_bus_unknown_model7: + symbol: d_course_toads_turnpike_bus_unknown_model7 + type: vtx + offset: 0x1AA98 + count: 20 +d_course_toads_turnpike_bus_unknown_model8: + symbol: d_course_toads_turnpike_bus_unknown_model8 + type: vtx + offset: 0x1ABD8 + count: 21 +d_course_toads_turnpike_bus_unknown_model9: + symbol: d_course_toads_turnpike_bus_unknown_model9 + type: vtx + offset: 0x1AD28 + count: 8 +d_course_toads_turnpike_bus_unknown_model10: + symbol: d_course_toads_turnpike_bus_unknown_model10 + type: vtx + offset: 0x1ADA8 + count: 32 +d_course_toads_turnpike_bus_unknown_model11: + symbol: d_course_toads_turnpike_bus_unknown_model11 + type: vtx + offset: 0x1AFA8 + count: 32 +d_course_toads_turnpike_bus_unknown_model12: + symbol: d_course_toads_turnpike_bus_unknown_model12 + type: vtx + offset: 0x1B1A8 + count: 10 +d_course_toads_turnpike_bus_unknown_model13: + symbol: d_course_toads_turnpike_bus_unknown_model13 + type: vtx + offset: 0x1B248 + count: 8 +d_course_toads_turnpike_bus_unknown_model14: + symbol: d_course_toads_turnpike_bus_unknown_model14 + type: vtx + offset: 0x1B2C8 + count: 24 +d_course_toads_turnpike_bus_unknown_model15: + symbol: d_course_toads_turnpike_bus_unknown_model15 + type: vtx + offset: 0x1B448 + count: 24 +d_course_toads_turnpike_dl_1B5C8: + symbol: d_course_toads_turnpike_dl_1B5C8 + type: gfx + offset: 0x1B5C8 +d_course_toads_turnpike_dl_1B658: + symbol: d_course_toads_turnpike_dl_1B658 + type: gfx + offset: 0x1B658 +d_course_toads_turnpike_dl_1B6D8: + symbol: d_course_toads_turnpike_dl_1B6D8 + type: gfx + offset: 0x1B6D8 +d_course_toads_turnpike_dl_1B758: + symbol: d_course_toads_turnpike_dl_1B758 + type: gfx + offset: 0x1B758 +d_course_toads_turnpike_dl_1B778: + symbol: d_course_toads_turnpike_dl_1B778 + type: gfx + offset: 0x1B778 +d_course_toads_turnpike_dl_1B788: + symbol: d_course_toads_turnpike_dl_1B788 + type: gfx + offset: 0x1B788 +d_course_toads_turnpike_dl_1B810: + symbol: d_course_toads_turnpike_dl_1B810 + type: gfx + offset: 0x1B810 +d_course_toads_turnpike_dl_1B8A0: + symbol: d_course_toads_turnpike_dl_1B8A0 + type: gfx + offset: 0x1B8A0 +d_course_toads_turnpike_dl_1BC78: + symbol: d_course_toads_turnpike_dl_1BC78 + type: gfx + offset: 0x1BC78 +d_course_toads_turnpike_dl_1BD48: + symbol: d_course_toads_turnpike_dl_1BD48 + type: gfx + offset: 0x1BD48 +d_course_toads_turnpike_dl_1BE18: + symbol: d_course_toads_turnpike_dl_1BE18 + type: gfx + offset: 0x1BE18 +d_course_toads_turnpike_dl_1BE48: + symbol: d_course_toads_turnpike_dl_1BE48 + type: gfx + offset: 0x1BE48 +d_course_toads_turnpike_bus_model_lod1: + symbol: d_course_toads_turnpike_bus_model_lod1 + type: vtx + offset: 0x1BE58 + count: 8 +d_course_toads_turnpike_bus_unknown_model16: + symbol: d_course_toads_turnpike_bus_unknown_model16 + type: vtx + offset: 0x1BED8 + count: 8 +d_course_toads_turnpike_bus_unknown_model17: + symbol: d_course_toads_turnpike_bus_unknown_model17 + type: vtx + offset: 0x1BF58 + count: 8 +d_course_toads_turnpike_bus_unknown_model18: + symbol: d_course_toads_turnpike_bus_unknown_model18 + type: vtx + offset: 0x1BFD8 + count: 8 +d_course_toads_turnpike_bus_unknown_model19: + symbol: d_course_toads_turnpike_bus_unknown_model19 + type: vtx + offset: 0x1C058 + count: 4 +d_course_toads_turnpike_bus_unknown_model20: + symbol: d_course_toads_turnpike_bus_unknown_model20 + type: vtx + offset: 0x1C098 + count: 4 +d_course_toads_turnpike_bus_unknown_model21: + symbol: d_course_toads_turnpike_bus_unknown_model21 + type: vtx + offset: 0x1C0D8 + count: 4 +d_course_toads_turnpike_bus_unknown_model22: + symbol: d_course_toads_turnpike_bus_unknown_model22 + type: vtx + offset: 0x1C118 + count: 6 +d_course_toads_turnpike_bus_unknown_model23: + symbol: d_course_toads_turnpike_bus_unknown_model23 + type: vtx + offset: 0x1C178 + count: 32 +d_course_toads_turnpike_bus_unknown_model24: + symbol: d_course_toads_turnpike_bus_unknown_model24 + type: vtx + offset: 0x1C378 + count: 31 +d_course_toads_turnpike_bus_unknown_model25: + symbol: d_course_toads_turnpike_bus_unknown_model25 + type: vtx + offset: 0x1C568 + count: 12 +d_course_toads_turnpike_dl_1C628: + symbol: d_course_toads_turnpike_dl_1C628 + type: gfx + offset: 0x1C628 +d_course_toads_turnpike_dl_1C688: + symbol: d_course_toads_turnpike_dl_1C688 + type: gfx + offset: 0x1C688 +d_course_toads_turnpike_dl_1C6E8: + symbol: d_course_toads_turnpike_dl_1C6E8 + type: gfx + offset: 0x1C6E8 +d_course_toads_turnpike_dl_1C700: + symbol: d_course_toads_turnpike_dl_1C700 + type: gfx + offset: 0x1C700 +d_course_toads_turnpike_dl_1C710: + symbol: d_course_toads_turnpike_dl_1C710 + type: gfx + offset: 0x1C710 +d_course_toads_turnpike_dl_1C770: + symbol: d_course_toads_turnpike_dl_1C770 + type: gfx + offset: 0x1C770 +d_course_toads_turnpike_dl_1C7D0: + symbol: d_course_toads_turnpike_dl_1C7D0 + type: gfx + offset: 0x1C7D0 +d_course_toads_turnpike_dl_1CA88: + symbol: d_course_toads_turnpike_dl_1CA88 + type: gfx + offset: 0x1CA88 +d_course_toads_turnpike_dl_1CAA8: + symbol: d_course_toads_turnpike_dl_1CAA8 + type: gfx + offset: 0x1CAA8 +d_course_toads_turnpike_bus_model_lod2: + symbol: d_course_toads_turnpike_bus_model_lod2 + type: vtx + offset: 0x1CAB8 + count: 8 +d_course_toads_turnpike_bus_unknown_model26: + symbol: d_course_toads_turnpike_bus_unknown_model26 + type: vtx + offset: 0x1CB38 + count: 8 +d_course_toads_turnpike_bus_unknown_model27: + symbol: d_course_toads_turnpike_bus_unknown_model27 + type: vtx + offset: 0x1CBB8 + count: 4 +d_course_toads_turnpike_bus_unknown_model28: + symbol: d_course_toads_turnpike_bus_unknown_model28 + type: vtx + offset: 0x1CBF8 + count: 4 +d_course_toads_turnpike_bus_unknown_model29: + symbol: d_course_toads_turnpike_bus_unknown_model29 + type: vtx + offset: 0x1CC38 + count: 4 +d_course_toads_turnpike_bus_unknown_model30: + symbol: d_course_toads_turnpike_bus_unknown_model30 + type: vtx + offset: 0x1CC78 + count: 8 +d_course_toads_turnpike_bus_unknown_model31: + symbol: d_course_toads_turnpike_bus_unknown_model31 + type: vtx + offset: 0x1CCF8 + count: 10 +d_course_toads_turnpike_dl_1CD98: + symbol: d_course_toads_turnpike_dl_1CD98 + type: gfx + offset: 0x1CD98 +d_course_toads_turnpike_dl_1CDF8: + symbol: d_course_toads_turnpike_dl_1CDF8 + type: gfx + offset: 0x1CDF8 +d_course_toads_turnpike_dl_1CE58: + symbol: d_course_toads_turnpike_dl_1CE58 + type: gfx + offset: 0x1CE58 +d_course_toads_turnpike_dl_1CE70: + symbol: d_course_toads_turnpike_dl_1CE70 + type: gfx + offset: 0x1CE70 +d_course_toads_turnpike_dl_1CE80: + symbol: d_course_toads_turnpike_dl_1CE80 + type: gfx + offset: 0x1CE80 +d_course_toads_turnpike_dl_1D008: + symbol: d_course_toads_turnpike_dl_1D008 + type: gfx + offset: 0x1D008 +d_course_toads_turnpike_dl_1D018: + symbol: d_course_toads_turnpike_dl_1D018 + type: gfx + offset: 0x1D018 +d_course_toads_turnpike_tanker_truck_model_lod0: + symbol: d_course_toads_turnpike_tanker_truck_model_lod0 + type: vtx + offset: 0x1D028 + count: 16 +d_course_toads_turnpike_tanker_truck_unknown_model1: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model1 + type: vtx + offset: 0x1D128 + count: 16 +d_course_toads_turnpike_tanker_truck_unknown_model2: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model2 + type: vtx + offset: 0x1D228 + count: 16 +d_course_toads_turnpike_tanker_truck_unknown_model3: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model3 + type: vtx + offset: 0x1D328 + count: 20 +d_course_toads_turnpike_tanker_truck_unknown_model4: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model4 + type: vtx + offset: 0x1D468 + count: 20 +d_course_toads_turnpike_tanker_truck_unknown_model5: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model5 + type: vtx + offset: 0x1D5A8 + count: 32 +d_course_toads_turnpike_tanker_truck_unknown_model6: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model6 + type: vtx + offset: 0x1D7A8 + count: 24 +d_course_toads_turnpike_tanker_truck_unknown_model7: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model7 + type: vtx + offset: 0x1D928 + count: 18 +d_course_toads_turnpike_tanker_truck_unknown_model8: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model8 + type: vtx + offset: 0x1DA48 + count: 12 +d_course_toads_turnpike_tanker_truck_unknown_model9: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model9 + type: vtx + offset: 0x1DB08 + count: 32 +d_course_toads_turnpike_tanker_truck_unknown_model10: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model10 + type: vtx + offset: 0x1DD08 + count: 4 +d_course_toads_turnpike_tanker_truck_unknown_model11: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model11 + type: vtx + offset: 0x1DD48 + count: 12 +d_course_toads_turnpike_tanker_truck_unknown_model12: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model12 + type: vtx + offset: 0x1DE08 + count: 24 +d_course_toads_turnpike_tanker_truck_unknown_model13: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model13 + type: vtx + offset: 0x1DF88 + count: 24 +d_course_toads_turnpike_tanker_truck_unknown_model14: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model14 + type: vtx + offset: 0x1E108 + count: 24 +d_course_toads_turnpike_dl_1E288: + symbol: d_course_toads_turnpike_dl_1E288 + type: gfx + offset: 0x1E288 +d_course_toads_turnpike_dl_1E318: + symbol: d_course_toads_turnpike_dl_1E318 + type: gfx + offset: 0x1E318 +d_course_toads_turnpike_dl_1E3A8: + symbol: d_course_toads_turnpike_dl_1E3A8 + type: gfx + offset: 0x1E3A8 +d_course_toads_turnpike_dl_1E438: + symbol: d_course_toads_turnpike_dl_1E438 + type: gfx + offset: 0x1E438 +d_course_toads_turnpike_dl_1E458: + symbol: d_course_toads_turnpike_dl_1E458 + type: gfx + offset: 0x1E458 +d_course_toads_turnpike_dl_1E468: + symbol: d_course_toads_turnpike_dl_1E468 + type: gfx + offset: 0x1E468 +d_course_toads_turnpike_dl_1E508: + symbol: d_course_toads_turnpike_dl_1E508 + type: gfx + offset: 0x1E508 +d_course_toads_turnpike_dl_1E810: + symbol: d_course_toads_turnpike_dl_1E810 + type: gfx + offset: 0x1E810 +d_course_toads_turnpike_dl_1E8A0: + symbol: d_course_toads_turnpike_dl_1E8A0 + type: gfx + offset: 0x1E8A0 +d_course_toads_turnpike_dl_1E970: + symbol: d_course_toads_turnpike_dl_1E970 + type: gfx + offset: 0x1E970 +d_course_toads_turnpike_dl_1EA40: + symbol: d_course_toads_turnpike_dl_1EA40 + type: gfx + offset: 0x1EA40 +d_course_toads_turnpike_dl_1EB10: + symbol: d_course_toads_turnpike_dl_1EB10 + type: gfx + offset: 0x1EB10 +d_course_toads_turnpike_dl_1EB48: + symbol: d_course_toads_turnpike_dl_1EB48 + type: gfx + offset: 0x1EB48 +d_course_toads_turnpike_tanker_truck_model_lod1: + symbol: d_course_toads_turnpike_tanker_truck_model_lod1 + type: vtx + offset: 0x1EB58 + count: 8 +d_course_toads_turnpike_tanker_truck_unknown_model15: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model15 + type: vtx + offset: 0x1EBD8 + count: 4 +d_course_toads_turnpike_tanker_truck_unknown_model16: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model16 + type: vtx + offset: 0x1EC18 + count: 8 +d_course_toads_turnpike_tanker_truck_unknown_model17: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model17 + type: vtx + offset: 0x1EC98 + count: 4 +d_course_toads_turnpike_tanker_truck_unknown_model18: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model18 + type: vtx + offset: 0x1ECD8 + count: 16 +d_course_toads_turnpike_tanker_truck_unknown_model19: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model19 + type: vtx + offset: 0x1EDD8 + count: 32 +d_course_toads_turnpike_tanker_truck_unknown_model20: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model20 + type: vtx + offset: 0x1EFD8 + count: 24 +d_course_toads_turnpike_tanker_truck_unknown_model21: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model21 + type: vtx + offset: 0x1F158 + count: 18 +d_course_toads_turnpike_tanker_truck_unknown_model22: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model22 + type: vtx + offset: 0x1F278 + count: 12 +d_course_toads_turnpike_tanker_truck_unknown_model23: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model23 + type: vtx + offset: 0x1F338 + count: 30 +d_course_toads_turnpike_tanker_truck_unknown_model24: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model24 + type: vtx + offset: 0x1F518 + count: 4 +d_course_toads_turnpike_tanker_truck_unknown_model25: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model25 + type: vtx + offset: 0x1F558 + count: 8 +d_course_toads_turnpike_tanker_truck_unknown_model26: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model26 + type: vtx + offset: 0x1F5D8 + count: 4 +d_course_toads_turnpike_tanker_truck_unknown_model27: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model27 + type: vtx + offset: 0x1F618 + count: 8 +d_course_toads_turnpike_tanker_truck_unknown_model28: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model28 + type: vtx + offset: 0x1F698 + count: 4 +d_course_toads_turnpike_tanker_truck_unknown_model29: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model29 + type: vtx + offset: 0x1F6D8 + count: 12 +d_course_toads_turnpike_tanker_truck_unknown_model30: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model30 + type: vtx + offset: 0x1F798 + count: 4 +d_course_toads_turnpike_dl_1F7D8: + symbol: d_course_toads_turnpike_dl_1F7D8 + type: gfx + offset: 0x1F7D8 +d_course_toads_turnpike_dl_1F850: + symbol: d_course_toads_turnpike_dl_1F850 + type: gfx + offset: 0x1F850 +d_course_toads_turnpike_dl_1F8C0: + symbol: d_course_toads_turnpike_dl_1F8C0 + type: gfx + offset: 0x1F8C0 +d_course_toads_turnpike_dl_1F938: + symbol: d_course_toads_turnpike_dl_1F938 + type: gfx + offset: 0x1F938 +d_course_toads_turnpike_dl_1F9A8: + symbol: d_course_toads_turnpike_dl_1F9A8 + type: gfx + offset: 0x1F9A8 +d_course_toads_turnpike_dl_1F9D0: + symbol: d_course_toads_turnpike_dl_1F9D0 + type: gfx + offset: 0x1F9D0 +d_course_toads_turnpike_dl_1F9E0: + symbol: d_course_toads_turnpike_dl_1F9E0 + type: gfx + offset: 0x1F9E0 +d_course_toads_turnpike_dl_1FCD8: + symbol: d_course_toads_turnpike_dl_1FCD8 + type: gfx + offset: 0x1FCD8 +d_course_toads_turnpike_dl_1FD58: + symbol: d_course_toads_turnpike_dl_1FD58 + type: gfx + offset: 0x1FD58 +d_course_toads_turnpike_dl_1FDD0: + symbol: d_course_toads_turnpike_dl_1FDD0 + type: gfx + offset: 0x1FDD0 +d_course_toads_turnpike_dl_1FE50: + symbol: d_course_toads_turnpike_dl_1FE50 + type: gfx + offset: 0x1FE50 +d_course_toads_turnpike_dl_1FEC8: + symbol: d_course_toads_turnpike_dl_1FEC8 + type: gfx + offset: 0x1FEC8 +d_course_toads_turnpike_dl_1FF50: + symbol: d_course_toads_turnpike_dl_1FF50 + type: gfx + offset: 0x1FF50 +d_course_toads_turnpike_dl_1FFC8: + symbol: d_course_toads_turnpike_dl_1FFC8 + type: gfx + offset: 0x1FFC8 +d_course_toads_turnpike_dl_20008: + symbol: d_course_toads_turnpike_dl_20008 + type: gfx + offset: 0x20008 +d_course_toads_turnpike_tanker_truck_model_lod2: + symbol: d_course_toads_turnpike_tanker_truck_model_lod2 + type: vtx + offset: 0x20018 + count: 14 +d_course_toads_turnpike_tanker_truck_unknown_model31: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model31 + type: vtx + offset: 0x200F8 + count: 12 +d_course_toads_turnpike_tanker_truck_unknown_model32: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model32 + type: vtx + offset: 0x201B8 + count: 21 +d_course_toads_turnpike_tanker_truck_unknown_model33: + symbol: d_course_toads_turnpike_tanker_truck_unknown_model33 + type: vtx + offset: 0x20308 + count: 4 +d_course_toads_turnpike_dl_20348: + symbol: d_course_toads_turnpike_dl_20348 + type: gfx + offset: 0x20348 +d_course_toads_turnpike_dl_20450: + symbol: d_course_toads_turnpike_dl_20450 + type: gfx + offset: 0x20450 +d_course_toads_turnpike_dl_204F8: + symbol: d_course_toads_turnpike_dl_204F8 + type: gfx + offset: 0x204F8 +d_course_toads_turnpike_dl_20510: + symbol: d_course_toads_turnpike_dl_20510 + type: gfx + offset: 0x20510 +d_course_toads_turnpike_dl_20520: + symbol: d_course_toads_turnpike_dl_20520 + type: gfx + offset: 0x20520 +d_course_toads_turnpike_dl_20598: + symbol: d_course_toads_turnpike_dl_20598 + type: gfx + offset: 0x20598 +d_course_toads_turnpike_dl_205A8: + symbol: d_course_toads_turnpike_dl_205A8 + type: gfx + offset: 0x205A8 +d_course_toads_turnpike_car_model_lod0: + symbol: d_course_toads_turnpike_car_model_lod0 + type: vtx + offset: 0x205B8 + count: 16 +d_course_toads_turnpike_car_unknown_model1: + symbol: d_course_toads_turnpike_car_unknown_model1 + type: vtx + offset: 0x206B8 + count: 16 +d_course_toads_turnpike_car_unknown_model2: + symbol: d_course_toads_turnpike_car_unknown_model2 + type: vtx + offset: 0x207B8 + count: 10 +d_course_toads_turnpike_car_unknown_model3: + symbol: d_course_toads_turnpike_car_unknown_model3 + type: vtx + offset: 0x20858 + count: 10 +d_course_toads_turnpike_car_unknown_model4: + symbol: d_course_toads_turnpike_car_unknown_model4 + type: vtx + offset: 0x208F8 + count: 24 +d_course_toads_turnpike_car_unknown_model5: + symbol: d_course_toads_turnpike_car_unknown_model5 + type: vtx + offset: 0x20A78 + count: 8 +d_course_toads_turnpike_car_unknown_model6: + symbol: d_course_toads_turnpike_car_unknown_model6 + type: vtx + offset: 0x20AF8 + count: 4 +d_course_toads_turnpike_car_unknown_model7: + symbol: d_course_toads_turnpike_car_unknown_model7 + type: vtx + offset: 0x20B38 + count: 32 +d_course_toads_turnpike_car_unknown_model8: + symbol: d_course_toads_turnpike_car_unknown_model8 + type: vtx + offset: 0x20D38 + count: 32 +d_course_toads_turnpike_car_unknown_model9: + symbol: d_course_toads_turnpike_car_unknown_model9 + type: vtx + offset: 0x20F38 + count: 32 +d_course_toads_turnpike_car_unknown_model10: + symbol: d_course_toads_turnpike_car_unknown_model10 + type: vtx + offset: 0x21138 + count: 23 +d_course_toads_turnpike_car_unknown_model11: + symbol: d_course_toads_turnpike_car_unknown_model11 + type: vtx + offset: 0x212A8 + count: 10 +d_course_toads_turnpike_car_unknown_model12: + symbol: d_course_toads_turnpike_car_unknown_model12 + type: vtx + offset: 0x21348 + count: 12 +d_course_toads_turnpike_car_unknown_model13: + symbol: d_course_toads_turnpike_car_unknown_model13 + type: vtx + offset: 0x21408 + count: 12 +d_course_toads_turnpike_car_unknown_model14: + symbol: d_course_toads_turnpike_car_unknown_model14 + type: vtx + offset: 0x214C8 + count: 12 +d_course_toads_turnpike_car_unknown_model15: + symbol: d_course_toads_turnpike_car_unknown_model15 + type: vtx + offset: 0x21588 + count: 12 +d_course_toads_turnpike_dl_21648: + symbol: d_course_toads_turnpike_dl_21648 + type: gfx + offset: 0x21648 +d_course_toads_turnpike_dl_216D8: + symbol: d_course_toads_turnpike_dl_216D8 + type: gfx + offset: 0x216D8 +d_course_toads_turnpike_dl_21768: + symbol: d_course_toads_turnpike_dl_21768 + type: gfx + offset: 0x21768 +d_course_toads_turnpike_dl_21780: + symbol: d_course_toads_turnpike_dl_21780 + type: gfx + offset: 0x21780 +d_course_toads_turnpike_dl_21790: + symbol: d_course_toads_turnpike_dl_21790 + type: gfx + offset: 0x21790 +d_course_toads_turnpike_dl_21820: + symbol: d_course_toads_turnpike_dl_21820 + type: gfx + offset: 0x21820 +d_course_toads_turnpike_dl_218B0: + symbol: d_course_toads_turnpike_dl_218B0 + type: gfx + offset: 0x218B0 +d_course_toads_turnpike_dl_21950: + symbol: d_course_toads_turnpike_dl_21950 + type: gfx + offset: 0x21950 +d_course_toads_turnpike_dl_21A28: + symbol: d_course_toads_turnpike_dl_21A28 + type: gfx + offset: 0x21A28 +d_course_toads_turnpike_dl_21C78: + symbol: d_course_toads_turnpike_dl_21C78 + type: gfx + offset: 0x21C78 +d_course_toads_turnpike_dl_21CD0: + symbol: d_course_toads_turnpike_dl_21CD0 + type: gfx + offset: 0x21CD0 +d_course_toads_turnpike_dl_21D28: + symbol: d_course_toads_turnpike_dl_21D28 + type: gfx + offset: 0x21D28 +d_course_toads_turnpike_dl_21D80: + symbol: d_course_toads_turnpike_dl_21D80 + type: gfx + offset: 0x21D80 +d_course_toads_turnpike_dl_21DD8: + symbol: d_course_toads_turnpike_dl_21DD8 + type: gfx + offset: 0x21DD8 +d_course_toads_turnpike_dl_21E28: + symbol: d_course_toads_turnpike_dl_21E28 + type: gfx + offset: 0x21E28 +d_course_toads_turnpike_car_model_lod1: + symbol: d_course_toads_turnpike_car_model_lod1 + type: vtx + offset: 0x21E38 + count: 16 +d_course_toads_turnpike_car_unknown_model16: + symbol: d_course_toads_turnpike_car_unknown_model16 + type: vtx + offset: 0x21F38 + count: 16 +d_course_toads_turnpike_car_unknown_model17: + symbol: d_course_toads_turnpike_car_unknown_model17 + type: vtx + offset: 0x22038 + count: 16 +d_course_toads_turnpike_car_unknown_model18: + symbol: d_course_toads_turnpike_car_unknown_model18 + type: vtx + offset: 0x22138 + count: 8 +d_course_toads_turnpike_car_unknown_model19: + symbol: d_course_toads_turnpike_car_unknown_model19 + type: vtx + offset: 0x221B8 + count: 8 +d_course_toads_turnpike_car_unknown_model20: + symbol: d_course_toads_turnpike_car_unknown_model20 + type: vtx + offset: 0x22238 + count: 24 +d_course_toads_turnpike_car_unknown_model21: + symbol: d_course_toads_turnpike_car_unknown_model21 + type: vtx + offset: 0x223B8 + count: 8 +d_course_toads_turnpike_car_unknown_model22: + symbol: d_course_toads_turnpike_car_unknown_model22 + type: vtx + offset: 0x22438 + count: 4 +d_course_toads_turnpike_car_unknown_model23: + symbol: d_course_toads_turnpike_car_unknown_model23 + type: vtx + offset: 0x22478 + count: 31 +d_course_toads_turnpike_car_unknown_model24: + symbol: d_course_toads_turnpike_car_unknown_model24 + type: vtx + offset: 0x22668 + count: 32 +d_course_toads_turnpike_car_unknown_model25: + symbol: d_course_toads_turnpike_car_unknown_model25 + type: vtx + offset: 0x22868 + count: 22 +d_course_toads_turnpike_car_unknown_model26: + symbol: d_course_toads_turnpike_car_unknown_model26 + type: vtx + offset: 0x229C8 + count: 10 +d_course_toads_turnpike_dl_22A68: + symbol: d_course_toads_turnpike_dl_22A68 + type: gfx + offset: 0x22A68 +d_course_toads_turnpike_dl_22AF8: + symbol: d_course_toads_turnpike_dl_22AF8 + type: gfx + offset: 0x22AF8 +d_course_toads_turnpike_dl_22B88: + symbol: d_course_toads_turnpike_dl_22B88 + type: gfx + offset: 0x22B88 +d_course_toads_turnpike_dl_22BA0: + symbol: d_course_toads_turnpike_dl_22BA0 + type: gfx + offset: 0x22BA0 +d_course_toads_turnpike_dl_22BB0: + symbol: d_course_toads_turnpike_dl_22BB0 + type: gfx + offset: 0x22BB0 +d_course_toads_turnpike_dl_22C50: + symbol: d_course_toads_turnpike_dl_22C50 + type: gfx + offset: 0x22C50 +d_course_toads_turnpike_dl_22C88: + symbol: d_course_toads_turnpike_dl_22C88 + type: gfx + offset: 0x22C88 +d_course_toads_turnpike_dl_22CC0: + symbol: d_course_toads_turnpike_dl_22CC0 + type: gfx + offset: 0x22CC0 +d_course_toads_turnpike_dl_22D60: + symbol: d_course_toads_turnpike_dl_22D60 + type: gfx + offset: 0x22D60 +d_course_toads_turnpike_dl_22E38: + symbol: d_course_toads_turnpike_dl_22E38 + type: gfx + offset: 0x22E38 +d_course_toads_turnpike_dl_23040: + symbol: d_course_toads_turnpike_dl_23040 + type: gfx + offset: 0x23040 +d_course_toads_turnpike_dl_23078: + symbol: d_course_toads_turnpike_dl_23078 + type: gfx + offset: 0x23078 +d_course_toads_turnpike_car_model_lod2: + symbol: d_course_toads_turnpike_car_model_lod2 + type: vtx + offset: 0x23088 + count: 8 +d_course_toads_turnpike_car_unknown_model27: + symbol: d_course_toads_turnpike_car_unknown_model27 + type: vtx + offset: 0x23108 + count: 8 +d_course_toads_turnpike_car_unknown_model28: + symbol: d_course_toads_turnpike_car_unknown_model28 + type: vtx + offset: 0x23188 + count: 4 +d_course_toads_turnpike_car_unknown_model29: + symbol: d_course_toads_turnpike_car_unknown_model29 + type: vtx + offset: 0x231C8 + count: 16 +d_course_toads_turnpike_car_unknown_model30: + symbol: d_course_toads_turnpike_car_unknown_model30 + type: vtx + offset: 0x232C8 + count: 8 +d_course_toads_turnpike_car_unknown_model31: + symbol: d_course_toads_turnpike_car_unknown_model31 + type: vtx + offset: 0x23348 + count: 27 +d_course_toads_turnpike_car_unknown_model32: + symbol: d_course_toads_turnpike_car_unknown_model32 + type: vtx + offset: 0x234F8 + count: 4 +d_course_toads_turnpike_dl_23538: + symbol: d_course_toads_turnpike_dl_23538 + type: gfx + offset: 0x23538 +d_course_toads_turnpike_dl_23600: + symbol: d_course_toads_turnpike_dl_23600 + type: gfx + offset: 0x23600 +d_course_toads_turnpike_dl_23678: + symbol: d_course_toads_turnpike_dl_23678 + type: gfx + offset: 0x23678 +d_course_toads_turnpike_dl_237D8: + symbol: d_course_toads_turnpike_dl_237D8 + type: gfx + offset: 0x237D8 +d_course_toads_turnpike_dl_237F8: + symbol: d_course_toads_turnpike_dl_237F8 + type: gfx + offset: 0x237F8 +d_course_toads_turnpike_dl_23808: + symbol: d_course_toads_turnpike_dl_23808 + type: gfx + offset: 0x23808 +d_course_toads_turnpike_dl_23838: + symbol: d_course_toads_turnpike_dl_23838 + type: gfx + offset: 0x23838 +d_course_toads_turnpike_dl_23848: + symbol: d_course_toads_turnpike_dl_23848 + type: gfx + offset: 0x23848 +d_course_toads_turnpike_dl_23858: + symbol: d_course_toads_turnpike_dl_23858 + type: gfx + offset: 0x23858 +d_course_toads_turnpike_dl_238A0: + symbol: d_course_toads_turnpike_dl_238A0 + type: gfx + offset: 0x238A0 +d_course_toads_turnpike_dl_238E8: + symbol: d_course_toads_turnpike_dl_238E8 + type: gfx + offset: 0x238E8 +d_course_toads_turnpike_dl_23930: + symbol: d_course_toads_turnpike_dl_23930 + type: gfx + offset: 0x23930 diff --git a/yamls/us/models/tracks/toads_turnpike/toads_turnpike_displaylists.yml b/yamls/us/models/tracks/toads_turnpike/toads_turnpike_displaylists.yml new file mode 100644 index 000000000..8255fbb78 --- /dev/null +++ b/yamls/us/models/tracks/toads_turnpike/toads_turnpike_displaylists.yml @@ -0,0 +1,901 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x925F50 + no_compression: true + segments: + - [0x0F, 0x925F50] + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_645134"] + - [0x05000800, "textures/other_textures/texture_64FE68"] + - [0x05001800, "textures/other_textures/texture_6607C0"] + - [0x05002000, "textures/other_textures/texture_6608C8"] + - [0x05002800, "textures/other_textures/grass_11"] + - [0x05003000, "textures/other_textures/sign_nintendo_red_0"] + - [0x05004000, "textures/other_textures/sign_nintendo_red_1"] + - [0x05005000, "textures/other_textures/texture_671A88"] + - [0x05005800, "textures/other_textures/road_2"] + - [0x05006800, "textures/other_textures/road_3"] + - [0x05007800, "textures/other_textures/road_4"] + - [0x05008800, "textures/other_textures/road_finish_0"] + - [0x05009800, "textures/other_textures/sign_toad_yellow"] + - [0x0500A800, "textures/other_textures/sign_toad_green"] + - [0x0500B800, "textures/other_textures/sign_merging_lanes"] + - [0x0500C000, "textures/other_textures/texture_65127C"] + - [0x0500C800, "textures/other_textures/road_5"] + - [0x0500D800, "textures/other_textures/sign_toad_red"] + - [0x0500E800, "textures/other_textures/texture_668228"] + # Segment 7 + - [0x7000000, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_0"] + - [0x7000068, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_68"] + - [0x70000D8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D8"] + - [0x7000140, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_140"] + - [0x7000160, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_160"] + - [0x7000218, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_218"] + - [0x7000300, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_300"] + - [0x70003E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E8"] + - [0x70004C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4C0"] + - [0x7000540, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_540"] + - [0x7000618, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_618"] + - [0x70006E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6E8"] + - [0x7000768, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_768"] + - [0x70007E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_7E8"] + - [0x70008C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_8C0"] + - [0x7000940, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_940"] + - [0x7000A28, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_A28"] + - [0x7000AA8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_AA8"] + - [0x7000B48, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_B48"] + - [0x7000C30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_C30"] + - [0x7000D08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D08"] + - [0x7000D88, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D88"] + - [0x7000E08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_E08"] + - [0x7000EC0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_EC0"] + - [0x7000FA8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_FA8"] + - [0x7001050, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1050"] + - [0x7001068, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1068"] + - [0x7001078, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1078"] + - [0x70011B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_11B8"] + - [0x70013B0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_13B0"] + - [0x70015E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_15E8"] + - [0x7001780, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1780"] + - [0x70018C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_18C0"] + - [0x7001A58, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1A58"] + - [0x7001BB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1BB8"] + - [0x7001CB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1CB8"] + - [0x7001E30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1E30"] + - [0x7001F70, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1F70"] + - [0x7002050, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2050"] + - [0x70021E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_21E8"] + - [0x7002328, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2328"] + - [0x70024C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_24C0"] + - [0x7002600, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2600"] + - [0x7002798, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2798"] + - [0x70028D8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_28D8"] + - [0x70029B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_29B8"] + - [0x7002AF8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2AF8"] + - [0x7002D98, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2D98"] + - [0x7002E40, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2E40"] + - [0x7002EE0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2EE0"] + - [0x7002FA0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2FA0"] + - [0x7003060, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3060"] + - [0x7003118, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3118"] + - [0x70031E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_31E8"] + - [0x70032A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_32A0"] + - [0x70033A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_33A8"] + - [0x7003478, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3478"] + - [0x7003548, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3548"] + - [0x7003638, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3638"] + - [0x70036C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_36C0"] + - [0x7003780, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3780"] + - [0x7003850, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3850"] + - [0x70038E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_38E8"] + - [0x70039A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_39A8"] + - [0x7003AD0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3AD0"] + - [0x7003B58, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3B58"] + - [0x7003C28, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3C28"] + - [0x7003D00, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3D00"] + - [0x7003DE8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3DE8"] + - [0x7003E90, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E90"] + - [0x7003F80, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3F80"] + - [0x70040A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_40A8"] + - [0x70041D0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_41D0"] + - [0x70042E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_42E8"] + - [0x70043A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_43A8"] + - [0x70044C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_44C0"] + - [0x70045B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_45B8"] + - [0x7004678, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4678"] + - [0x7004738, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4738"] + - [0x7004850, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4850"] + - [0x7004910, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4910"] + - [0x7004A40, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4A40"] + - [0x7004B00, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4B00"] + - [0x7004BE0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4BE0"] + - [0x7004D10, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4D10"] + - [0x7004E30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4E30"] + - [0x7004EF0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4EF0"] + - [0x7004FB0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4FB0"] + - [0x70050A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_50A0"] + - [0x70051C8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_51C8"] + - [0x7005270, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5270"] + - [0x7005360, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5360"] + - [0x7005480, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5480"] + - [0x70055A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_55A0"] + - [0x70056B0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_56B0"] + - [0x7005770, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5770"] + - [0x7005880, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5880"] + - [0x7005958, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5958"] + - [0x7005AE8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5AE8"] + - [0x7005C80, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5C80"] + - [0x7005D90, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5D90"] + - [0x7005E50, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5E50"] + - [0x7005F78, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5F78"] + - [0x7006030, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6030"] + - [0x7006110, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6110"] + - [0x7006230, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6230"] + - [0x7006348, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6348"] + - [0x7006408, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6408"] + - [0x70064C8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_64C8"] + - [0x70065B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_65B8"] + - [0x70066E0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_66E0"] + - [0x7006788, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6788"] + - [0x7006848, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6848"] + - [0x7006908, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6908"] + - [0x7006AB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AB8"] + - [0x7006AD8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AD8"] + - [0x7006B08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B08"] + - [0x7006B18, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B18"] + # Segment 4 + - [0x4000000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000000"] + - [0x4000080, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000080"] + - [0x4000140, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000140"] + - [0x40001c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040001C0"] + - [0x40003c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040003C0"] + - [0x40005c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040005C0"] + - [0x4000640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000640"] + - [0x4000840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000840"] + - [0x4000a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000A40"] + - [0x4000c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000C40"] + - [0x4000e40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000E40"] + - [0x4001040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001040"] + - [0x4001240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001240"] + - [0x4001440, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001440"] + - [0x4001640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001640"] + - [0x40017c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040017C0"] + - [0x40019c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040019C0"] + - [0x4001ac0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001AC0"] + - [0x4001cc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001CC0"] + - [0x4001ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001EC0"] + - [0x4002040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002040"] + - [0x4002220, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002220"] + - [0x4002400, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002400"] + - [0x40024e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040024E0"] + - [0x40026e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040026E0"] + - [0x40027e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040027E0"] + - [0x40029c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040029C0"] + - [0x4002ac0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002AC0"] + - [0x4002cc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002CC0"] + - [0x4002ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002EC0"] + - [0x4003040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003040"] + - [0x4003240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003240"] + - [0x4003340, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003340"] + - [0x4003540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003540"] + - [0x4003740, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003740"] + - [0x4003940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003940"] + - [0x4003b40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003B40"] + - [0x4003c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003C40"] + - [0x4003e40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003E40"] + - [0x4004040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004040"] + - [0x4004240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004240"] + - [0x4004440, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004440"] + - [0x4004640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004640"] + - [0x4004840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004840"] + - [0x4004a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004A40"] + - [0x4004bc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004BC0"] + - [0x4004dc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004DC0"] + - [0x4004ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004EC0"] + - [0x40050c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040050C0"] + - [0x40051c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040051C0"] + - [0x40053c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040053C0"] + - [0x40055c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040055C0"] + - [0x4005640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005640"] + - [0x4005840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005840"] + - [0x4005a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005A40"] + - [0x4005c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005C40"] + - [0x4005e20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005E20"] + - [0x4006000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006000"] + - [0x40060a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040060A0"] + - [0x40062a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040062A0"] + - [0x4006480, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006480"] + - [0x4006660, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006660"] + - [0x40066c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040066C0"] + - [0x40067b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040067B0"] + - [0x4006830, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006830"] + - [0x4006a10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006A10"] + - [0x4006bf0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006BF0"] + - [0x4006dd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006DD0"] + - [0x4006f00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006F00"] + - [0x4006f80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006F80"] + - [0x4007000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007000"] + - [0x40071e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040071E0"] + - [0x40073e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040073E0"] + - [0x40075c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040075C0"] + - [0x40076b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040076B0"] + - [0x4007890, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007890"] + - [0x4007a70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007A70"] + - [0x4007b10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007B10"] + - [0x4007cf0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007CF0"] + - [0x4007ef0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007EF0"] + - [0x40080d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040080D0"] + - [0x40081c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040081C0"] + - [0x40083c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040083C0"] + - [0x40085a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040085A0"] + - [0x4008600, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008600"] + - [0x40086a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040086A0"] + - [0x40088a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040088A0"] + - [0x4008920, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008920"] + - [0x4008970, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008970"] + - [0x4008b70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008B70"] + - [0x4008d70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008D70"] + - [0x4008e30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008E30"] + - [0x4008ed0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008ED0"] + - [0x40090b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040090B0"] + - [0x4009290, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009290"] + - [0x4009330, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009330"] + - [0x4009510, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009510"] + - [0x4009560, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009560"] + - [0x4009740, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009740"] + - [0x4009940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009940"] + - [0x4009b20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009B20"] + - [0x4009c10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009C10"] + - [0x4009df0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009DF0"] + - [0x4009fd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009FD0"] + - [0x400a070, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A070"] + - [0x400a0f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A0F0"] + - [0x400a2d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A2D0"] + - [0x400a4b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A4B0"] + - [0x400a550, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A550"] + - [0x400a730, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A730"] + - [0x400a910, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A910"] + - [0x400a9b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A9B0"] + - [0x400ab90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AB90"] + - [0x400ad90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AD90"] + - [0x400af70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AF70"] + - [0x400b060, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B060"] + - [0x400b240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B240"] + - [0x400b420, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B420"] + - [0x400b4c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B4C0"] + - [0x400b6a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B6A0"] + - [0x400b6f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B6F0"] + - [0x400b8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B8D0"] + - [0x400bab0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BAB0"] + - [0x400bb50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BB50"] + - [0x400bb90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BB90"] + - [0x400bbd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BBD0"] + - [0x400bdb0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BDB0"] + - [0x400bf90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BF90"] + - [0x400c170, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C170"] + - [0x400c1b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C1B0"] + - [0x400c2a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C2A0"] + - [0x400c2e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C2E0"] + - [0x400c4c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C4C0"] + - [0x400c6a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C6A0"] + - [0x400c700, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C700"] + - [0x400c8e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C8E0"] + - [0x400c940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C940"] + - [0x400cb40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CB40"] + - [0x400cb80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CB80"] + - [0x400cc00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CC00"] + - [0x400cd80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CD80"] + - [0x400cf80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CF80"] + - [0x400cfc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CFC0"] + - [0x400d1c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D1C0"] + - [0x400d200, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D200"] + - [0x400d280, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D280"] + - [0x400d300, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D300"] + - [0x400d490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D490"] + - [0x400d500, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D500"] + - [0x400d680, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D680"] + - [0x400d6b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D6B0"] + - [0x400d890, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D890"] + - [0x400d8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D8D0"] + - [0x400da50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DA50"] + - [0x400dc50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DC50"] + - [0x400dcd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DCD0"] + - [0x400dd60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DD60"] + - [0x400dee0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DEE0"] + - [0x400e040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E040"] + - [0x400e240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E240"] + - [0x400e2a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E2A0"] + - [0x400e330, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E330"] + - [0x400e370, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E370"] + - [0x400e540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E540"] + - [0x400e6c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E6C0"] + - [0x400e750, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E750"] + - [0x400e8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E8D0"] + - [0x400e900, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E900"] + - [0x400eae0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EAE0"] + - [0x400ebe0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EBE0"] + - [0x400ed60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400ED60"] + - [0x400ef60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EF60"] + - [0x400f120, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F120"] + - [0x400f300, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F300"] + - [0x400f500, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F500"] + - [0x400f5a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F5A0"] + - [0x400f780, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F780"] + - [0x400f960, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F960"] + - [0x400fa20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FA20"] + - [0x400fc20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FC20"] + - [0x400fe00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FE00"] + - [0x400fe60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FE60"] + - [0x4010060, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010060"] + - [0x4010160, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010160"] + - [0x4010340, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010340"] + - [0x4010540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010540"] + - [0x40105c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040105C0"] + - [0x40107c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040107C0"] + - [0x40109c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040109C0"] + - [0x4010a00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010A00"] + - [0x4010c00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010C00"] + - [0x4010d00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010D00"] + - [0x4010f00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010F00"] + - [0x4011000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011000"] + - [0x4011200, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011200"] + - [0x4011400, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011400"] + - [0x4011480, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011480"] + - [0x4011680, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011680"] + - [0x4011780, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011780"] + - [0x4011980, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011980"] + - [0x4011b80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011B80"] + - [0x4011c70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011C70"] + - [0x4011e70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011E70"] + - [0x4011f70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011F70"] + - [0x4012150, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012150"] + - [0x40122f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040122F0"] + - [0x40124e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040124E0"] + - [0x40126e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040126E0"] + - [0x40127d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040127D0"] + - [0x40129c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040129C0"] + - [0x4012bb0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012BB0"] + - [0x4012c50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012C50"] + - [0x4012e50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012E50"] + - [0x4012f50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012F50"] + - [0x4013150, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013150"] + - [0x4013250, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013250"] + - [0x4013430, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013430"] + - [0x4013610, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013610"] + - [0x40137f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040137F0"] + - [0x40139d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040139D0"] + - [0x4013a90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013A90"] + - [0x4013c70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013C70"] + - [0x4013d90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013D90"] + - [0x4013f90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013F90"] + - [0x4014110, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014110"] + - [0x40142f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040142F0"] + - [0x4014490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014490"] + - [0x4014670, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014670"] + - [0x40147f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040147F0"] + - [0x40149f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040149F0"] + - [0x4014af0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014AF0"] + - [0x4014cd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014CD0"] + - [0x4014e50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014E50"] + - [0x4015050, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015050"] + - [0x4015110, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015110"] + - [0x40152d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040152D0"] + - [0x40153b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040153B0"] + - [0x4015490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015490"] + - [0x4015670, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015670"] + - [0x4015710, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015710"] + - [0x40157f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040157F0"] + - [0x40158d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040158D0"] + - [0x4015ad0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015AD0"] + - [0x4015c90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015C90"] + - [0x4015e90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015E90"] + - [0x4015f90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015F90"] + - [0x4016190, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016190"] + - [0x4016390, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016390"] + - [0x4016410, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016410"] + - [0x40165f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040165F0"] + - [0x40167f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040167F0"] + - [0x4016870, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016870"] + - [0x4016a70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016A70"] + - [0x4016bd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016BD0"] + - [0x4016dd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016DD0"] + - [0x4016fd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016FD0"] + - [0x4017010, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017010"] + - [0x4017210, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017210"] + - [0x4017310, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017310"] + - [0x4017510, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017510"] + - [0x40175d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040175D0"] + - [0x40177d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040177D0"] + - [0x4017950, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017950"] + - [0x4017b30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017B30"] + - [0x4017d30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017D30"] + - [0x4017df0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017DF0"] + - [0x4017ff0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017FF0"] + - [0x40180f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040180F0"] + - [0x40182f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040182F0"] + - [0x40183f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040183F0"] + - [0x40185e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040185E0"] + - [0x40187e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040187E0"] + - [0x40189e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040189E0"] + - [0x4018bc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04018BC0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_toads_turnpike_packed_dl_0: + symbol: d_course_toads_turnpike_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_toads_turnpike_packed_dl_68: + symbol: d_course_toads_turnpike_packed_dl_68 + type: MK64:PACKED_GFX + offset: 0x16 +d_course_toads_turnpike_packed_dl_D8: + symbol: d_course_toads_turnpike_packed_dl_D8 + type: MK64:PACKED_GFX + offset: 0x31 +d_course_toads_turnpike_packed_dl_140: + symbol: d_course_toads_turnpike_packed_dl_140 + type: MK64:PACKED_GFX + offset: 0x47 +d_course_toads_turnpike_packed_dl_160: + symbol: d_course_toads_turnpike_packed_dl_160 + type: MK64:PACKED_GFX + offset: 0x51 +d_course_toads_turnpike_packed_dl_218: + symbol: d_course_toads_turnpike_packed_dl_218 + type: MK64:PACKED_GFX + offset: 0xB6 +d_course_toads_turnpike_packed_dl_300: + symbol: d_course_toads_turnpike_packed_dl_300 + type: MK64:PACKED_GFX + offset: 0x139 +d_course_toads_turnpike_packed_dl_3E8: + symbol: d_course_toads_turnpike_packed_dl_3E8 + type: MK64:PACKED_GFX + offset: 0x1BC +d_course_toads_turnpike_packed_dl_4C0: + symbol: d_course_toads_turnpike_packed_dl_4C0 + type: MK64:PACKED_GFX + offset: 0x235 +d_course_toads_turnpike_packed_dl_540: + symbol: d_course_toads_turnpike_packed_dl_540 + type: MK64:PACKED_GFX + offset: 0x279 +d_course_toads_turnpike_packed_dl_618: + symbol: d_course_toads_turnpike_packed_dl_618 + type: MK64:PACKED_GFX + offset: 0x2F2 +d_course_toads_turnpike_packed_dl_6E8: + symbol: d_course_toads_turnpike_packed_dl_6E8 + type: MK64:PACKED_GFX + offset: 0x366 +d_course_toads_turnpike_packed_dl_768: + symbol: d_course_toads_turnpike_packed_dl_768 + type: MK64:PACKED_GFX + offset: 0x3AA +d_course_toads_turnpike_packed_dl_7E8: + symbol: d_course_toads_turnpike_packed_dl_7E8 + type: MK64:PACKED_GFX + offset: 0x3EE +d_course_toads_turnpike_packed_dl_8C0: + symbol: d_course_toads_turnpike_packed_dl_8C0 + type: MK64:PACKED_GFX + offset: 0x467 +d_course_toads_turnpike_packed_dl_940: + symbol: d_course_toads_turnpike_packed_dl_940 + type: MK64:PACKED_GFX + offset: 0x4AB +d_course_toads_turnpike_packed_dl_A28: + symbol: d_course_toads_turnpike_packed_dl_A28 + type: MK64:PACKED_GFX + offset: 0x52E +d_course_toads_turnpike_packed_dl_AA8: + symbol: d_course_toads_turnpike_packed_dl_AA8 + type: MK64:PACKED_GFX + offset: 0x572 +d_course_toads_turnpike_packed_dl_B48: + symbol: d_course_toads_turnpike_packed_dl_B48 + type: MK64:PACKED_GFX + offset: 0x5CA +d_course_toads_turnpike_packed_dl_C30: + symbol: d_course_toads_turnpike_packed_dl_C30 + type: MK64:PACKED_GFX + offset: 0x64D +d_course_toads_turnpike_packed_dl_D08: + symbol: d_course_toads_turnpike_packed_dl_D08 + type: MK64:PACKED_GFX + offset: 0x6C6 +d_course_toads_turnpike_packed_dl_D88: + symbol: d_course_toads_turnpike_packed_dl_D88 + type: MK64:PACKED_GFX + offset: 0x70A +d_course_toads_turnpike_packed_dl_E08: + symbol: d_course_toads_turnpike_packed_dl_E08 + type: MK64:PACKED_GFX + offset: 0x74E +d_course_toads_turnpike_packed_dl_EC0: + symbol: d_course_toads_turnpike_packed_dl_EC0 + type: MK64:PACKED_GFX + offset: 0x7B3 +d_course_toads_turnpike_packed_dl_FA8: + symbol: d_course_toads_turnpike_packed_dl_FA8 + type: MK64:PACKED_GFX + offset: 0x836 +d_course_toads_turnpike_packed_dl_1050: + symbol: d_course_toads_turnpike_packed_dl_1050 + type: MK64:PACKED_GFX + offset: 0x873 +d_course_toads_turnpike_packed_dl_1068: + symbol: d_course_toads_turnpike_packed_dl_1068 + type: MK64:PACKED_GFX + offset: 0x87A +d_course_toads_turnpike_packed_dl_1078: + symbol: d_course_toads_turnpike_packed_dl_1078 + type: MK64:PACKED_GFX + offset: 0x87E +d_course_toads_turnpike_packed_dl_11B8: + symbol: d_course_toads_turnpike_packed_dl_11B8 + type: MK64:PACKED_GFX + offset: 0x8FE +d_course_toads_turnpike_packed_dl_13B0: + symbol: d_course_toads_turnpike_packed_dl_13B0 + type: MK64:PACKED_GFX + offset: 0x9CC +d_course_toads_turnpike_packed_dl_15E8: + symbol: d_course_toads_turnpike_packed_dl_15E8 + type: MK64:PACKED_GFX + offset: 0xAAD +d_course_toads_turnpike_packed_dl_1780: + symbol: d_course_toads_turnpike_packed_dl_1780 + type: MK64:PACKED_GFX + offset: 0xB64 +d_course_toads_turnpike_packed_dl_18C0: + symbol: d_course_toads_turnpike_packed_dl_18C0 + type: MK64:PACKED_GFX + offset: 0xBE4 +d_course_toads_turnpike_packed_dl_1A58: + symbol: d_course_toads_turnpike_packed_dl_1A58 + type: MK64:PACKED_GFX + offset: 0xC9B +d_course_toads_turnpike_packed_dl_1BB8: + symbol: d_course_toads_turnpike_packed_dl_1BB8 + type: MK64:PACKED_GFX + offset: 0xD2D +d_course_toads_turnpike_packed_dl_1CB8: + symbol: d_course_toads_turnpike_packed_dl_1CB8 + type: MK64:PACKED_GFX + offset: 0xD87 +d_course_toads_turnpike_packed_dl_1E30: + symbol: d_course_toads_turnpike_packed_dl_1E30 + type: MK64:PACKED_GFX + offset: 0xE28 +d_course_toads_turnpike_packed_dl_1F70: + symbol: d_course_toads_turnpike_packed_dl_1F70 + type: MK64:PACKED_GFX + offset: 0xEA8 +d_course_toads_turnpike_packed_dl_2050: + symbol: d_course_toads_turnpike_packed_dl_2050 + type: MK64:PACKED_GFX + offset: 0xEF0 +d_course_toads_turnpike_packed_dl_21E8: + symbol: d_course_toads_turnpike_packed_dl_21E8 + type: MK64:PACKED_GFX + offset: 0xFA7 +d_course_toads_turnpike_packed_dl_2328: + symbol: d_course_toads_turnpike_packed_dl_2328 + type: MK64:PACKED_GFX + offset: 0x1027 +d_course_toads_turnpike_packed_dl_24C0: + symbol: d_course_toads_turnpike_packed_dl_24C0 + type: MK64:PACKED_GFX + offset: 0x10BB +d_course_toads_turnpike_packed_dl_2600: + symbol: d_course_toads_turnpike_packed_dl_2600 + type: MK64:PACKED_GFX + offset: 0x113B +d_course_toads_turnpike_packed_dl_2798: + symbol: d_course_toads_turnpike_packed_dl_2798 + type: MK64:PACKED_GFX + offset: 0x11F2 +d_course_toads_turnpike_packed_dl_28D8: + symbol: d_course_toads_turnpike_packed_dl_28D8 + type: MK64:PACKED_GFX + offset: 0x1272 +d_course_toads_turnpike_packed_dl_29B8: + symbol: d_course_toads_turnpike_packed_dl_29B8 + type: MK64:PACKED_GFX + offset: 0x12BA +d_course_toads_turnpike_packed_dl_2AF8: + symbol: d_course_toads_turnpike_packed_dl_2AF8 + type: MK64:PACKED_GFX + offset: 0x133A +d_course_toads_turnpike_packed_dl_2D98: + symbol: d_course_toads_turnpike_packed_dl_2D98 + type: MK64:PACKED_GFX + offset: 0x1427 +d_course_toads_turnpike_packed_dl_2E40: + symbol: d_course_toads_turnpike_packed_dl_2E40 + type: MK64:PACKED_GFX + offset: 0x1464 +d_course_toads_turnpike_packed_dl_2EE0: + symbol: d_course_toads_turnpike_packed_dl_2EE0 + type: MK64:PACKED_GFX + offset: 0x149D +d_course_toads_turnpike_packed_dl_2FA0: + symbol: d_course_toads_turnpike_packed_dl_2FA0 + type: MK64:PACKED_GFX + offset: 0x14E8 +d_course_toads_turnpike_packed_dl_3060: + symbol: d_course_toads_turnpike_packed_dl_3060 + type: MK64:PACKED_GFX + offset: 0x1533 +d_course_toads_turnpike_packed_dl_3118: + symbol: d_course_toads_turnpike_packed_dl_3118 + type: MK64:PACKED_GFX + offset: 0x1579 +d_course_toads_turnpike_packed_dl_31E8: + symbol: d_course_toads_turnpike_packed_dl_31E8 + type: MK64:PACKED_GFX + offset: 0x15B9 +d_course_toads_turnpike_packed_dl_32A0: + symbol: d_course_toads_turnpike_packed_dl_32A0 + type: MK64:PACKED_GFX + offset: 0x15FF +d_course_toads_turnpike_packed_dl_33A8: + symbol: d_course_toads_turnpike_packed_dl_33A8 + type: MK64:PACKED_GFX + offset: 0x1654 +d_course_toads_turnpike_packed_dl_3478: + symbol: d_course_toads_turnpike_packed_dl_3478 + type: MK64:PACKED_GFX + offset: 0x1692 +d_course_toads_turnpike_packed_dl_3548: + symbol: d_course_toads_turnpike_packed_dl_3548 + type: MK64:PACKED_GFX + offset: 0x16D0 +d_course_toads_turnpike_packed_dl_3638: + symbol: d_course_toads_turnpike_packed_dl_3638 + type: MK64:PACKED_GFX + offset: 0x1720 +d_course_toads_turnpike_packed_dl_36C0: + symbol: d_course_toads_turnpike_packed_dl_36C0 + type: MK64:PACKED_GFX + offset: 0x174A +d_course_toads_turnpike_packed_dl_3780: + symbol: d_course_toads_turnpike_packed_dl_3780 + type: MK64:PACKED_GFX + offset: 0x1795 +d_course_toads_turnpike_packed_dl_3850: + symbol: d_course_toads_turnpike_packed_dl_3850 + type: MK64:PACKED_GFX + offset: 0x17D5 +d_course_toads_turnpike_packed_dl_38E8: + symbol: d_course_toads_turnpike_packed_dl_38E8 + type: MK64:PACKED_GFX + offset: 0x1809 +d_course_toads_turnpike_packed_dl_39A8: + symbol: d_course_toads_turnpike_packed_dl_39A8 + type: MK64:PACKED_GFX + offset: 0x1854 +d_course_toads_turnpike_packed_dl_3AD0: + symbol: d_course_toads_turnpike_packed_dl_3AD0 + type: MK64:PACKED_GFX + offset: 0x18B0 +d_course_toads_turnpike_packed_dl_3B58: + symbol: d_course_toads_turnpike_packed_dl_3B58 + type: MK64:PACKED_GFX + offset: 0x18DA +d_course_toads_turnpike_packed_dl_3C28: + symbol: d_course_toads_turnpike_packed_dl_3C28 + type: MK64:PACKED_GFX + offset: 0x1918 +d_course_toads_turnpike_packed_dl_3D00: + symbol: d_course_toads_turnpike_packed_dl_3D00 + type: MK64:PACKED_GFX + offset: 0x195B +d_course_toads_turnpike_packed_dl_3DE8: + symbol: d_course_toads_turnpike_packed_dl_3DE8 + type: MK64:PACKED_GFX + offset: 0x19AA +d_course_toads_turnpike_packed_dl_3E90: + symbol: d_course_toads_turnpike_packed_dl_3E90 + type: MK64:PACKED_GFX + offset: 0x19E7 +d_course_toads_turnpike_packed_dl_3F80: + symbol: d_course_toads_turnpike_packed_dl_3F80 + type: MK64:PACKED_GFX + offset: 0x1A50 +d_course_toads_turnpike_packed_dl_40A8: + symbol: d_course_toads_turnpike_packed_dl_40A8 + type: MK64:PACKED_GFX + offset: 0x1ADA +d_course_toads_turnpike_packed_dl_41D0: + symbol: d_course_toads_turnpike_packed_dl_41D0 + type: MK64:PACKED_GFX + offset: 0x1B64 +d_course_toads_turnpike_packed_dl_42E8: + symbol: d_course_toads_turnpike_packed_dl_42E8 + type: MK64:PACKED_GFX + offset: 0x1BE4 +d_course_toads_turnpike_packed_dl_43A8: + symbol: d_course_toads_turnpike_packed_dl_43A8 + type: MK64:PACKED_GFX + offset: 0x1C2F +d_course_toads_turnpike_packed_dl_44C0: + symbol: d_course_toads_turnpike_packed_dl_44C0 + type: MK64:PACKED_GFX + offset: 0x1CAF +d_course_toads_turnpike_packed_dl_45B8: + symbol: d_course_toads_turnpike_packed_dl_45B8 + type: MK64:PACKED_GFX + offset: 0x1D19 +d_course_toads_turnpike_packed_dl_4678: + symbol: d_course_toads_turnpike_packed_dl_4678 + type: MK64:PACKED_GFX + offset: 0x1D64 +d_course_toads_turnpike_packed_dl_4738: + symbol: d_course_toads_turnpike_packed_dl_4738 + type: MK64:PACKED_GFX + offset: 0x1DAF +d_course_toads_turnpike_packed_dl_4850: + symbol: d_course_toads_turnpike_packed_dl_4850 + type: MK64:PACKED_GFX + offset: 0x1E2F +d_course_toads_turnpike_packed_dl_4910: + symbol: d_course_toads_turnpike_packed_dl_4910 + type: MK64:PACKED_GFX + offset: 0x1E7A +d_course_toads_turnpike_packed_dl_4A40: + symbol: d_course_toads_turnpike_packed_dl_4A40 + type: MK64:PACKED_GFX + offset: 0x1F05 +d_course_toads_turnpike_packed_dl_4B00: + symbol: d_course_toads_turnpike_packed_dl_4B00 + type: MK64:PACKED_GFX + offset: 0x1F50 +d_course_toads_turnpike_packed_dl_4BE0: + symbol: d_course_toads_turnpike_packed_dl_4BE0 + type: MK64:PACKED_GFX + offset: 0x1FAF +d_course_toads_turnpike_packed_dl_4D10: + symbol: d_course_toads_turnpike_packed_dl_4D10 + type: MK64:PACKED_GFX + offset: 0x203A +d_course_toads_turnpike_packed_dl_4E30: + symbol: d_course_toads_turnpike_packed_dl_4E30 + type: MK64:PACKED_GFX + offset: 0x20BB +d_course_toads_turnpike_packed_dl_4EF0: + symbol: d_course_toads_turnpike_packed_dl_4EF0 + type: MK64:PACKED_GFX + offset: 0x2106 +d_course_toads_turnpike_packed_dl_4FB0: + symbol: d_course_toads_turnpike_packed_dl_4FB0 + type: MK64:PACKED_GFX + offset: 0x2151 +d_course_toads_turnpike_packed_dl_50A0: + symbol: d_course_toads_turnpike_packed_dl_50A0 + type: MK64:PACKED_GFX + offset: 0x21BA +d_course_toads_turnpike_packed_dl_51C8: + symbol: d_course_toads_turnpike_packed_dl_51C8 + type: MK64:PACKED_GFX + offset: 0x2244 +d_course_toads_turnpike_packed_dl_5270: + symbol: d_course_toads_turnpike_packed_dl_5270 + type: MK64:PACKED_GFX + offset: 0x2281 +d_course_toads_turnpike_packed_dl_5360: + symbol: d_course_toads_turnpike_packed_dl_5360 + type: MK64:PACKED_GFX + offset: 0x22EA +d_course_toads_turnpike_packed_dl_5480: + symbol: d_course_toads_turnpike_packed_dl_5480 + type: MK64:PACKED_GFX + offset: 0x2371 +d_course_toads_turnpike_packed_dl_55A0: + symbol: d_course_toads_turnpike_packed_dl_55A0 + type: MK64:PACKED_GFX + offset: 0x23F8 +d_course_toads_turnpike_packed_dl_56B0: + symbol: d_course_toads_turnpike_packed_dl_56B0 + type: MK64:PACKED_GFX + offset: 0x2475 +d_course_toads_turnpike_packed_dl_5770: + symbol: d_course_toads_turnpike_packed_dl_5770 + type: MK64:PACKED_GFX + offset: 0x24C0 +d_course_toads_turnpike_packed_dl_5880: + symbol: d_course_toads_turnpike_packed_dl_5880 + type: MK64:PACKED_GFX + offset: 0x253D +d_course_toads_turnpike_packed_dl_5958: + symbol: d_course_toads_turnpike_packed_dl_5958 + type: MK64:PACKED_GFX + offset: 0x2597 +d_course_toads_turnpike_packed_dl_5AE8: + symbol: d_course_toads_turnpike_packed_dl_5AE8 + type: MK64:PACKED_GFX + offset: 0x262C +d_course_toads_turnpike_packed_dl_5C80: + symbol: d_course_toads_turnpike_packed_dl_5C80 + type: MK64:PACKED_GFX + offset: 0x26C4 +d_course_toads_turnpike_packed_dl_5D90: + symbol: d_course_toads_turnpike_packed_dl_5D90 + type: MK64:PACKED_GFX + offset: 0x2741 +d_course_toads_turnpike_packed_dl_5E50: + symbol: d_course_toads_turnpike_packed_dl_5E50 + type: MK64:PACKED_GFX + offset: 0x278C +d_course_toads_turnpike_packed_dl_5F78: + symbol: d_course_toads_turnpike_packed_dl_5F78 + type: MK64:PACKED_GFX + offset: 0x2816 +d_course_toads_turnpike_packed_dl_6030: + symbol: d_course_toads_turnpike_packed_dl_6030 + type: MK64:PACKED_GFX + offset: 0x285E +d_course_toads_turnpike_packed_dl_6110: + symbol: d_course_toads_turnpike_packed_dl_6110 + type: MK64:PACKED_GFX + offset: 0x28BD +d_course_toads_turnpike_packed_dl_6230: + symbol: d_course_toads_turnpike_packed_dl_6230 + type: MK64:PACKED_GFX + offset: 0x2944 +d_course_toads_turnpike_packed_dl_6348: + symbol: d_course_toads_turnpike_packed_dl_6348 + type: MK64:PACKED_GFX + offset: 0x29C4 +d_course_toads_turnpike_packed_dl_6408: + symbol: d_course_toads_turnpike_packed_dl_6408 + type: MK64:PACKED_GFX + offset: 0x2A0F +d_course_toads_turnpike_packed_dl_64C8: + symbol: d_course_toads_turnpike_packed_dl_64C8 + type: MK64:PACKED_GFX + offset: 0x2A5A +d_course_toads_turnpike_packed_dl_65B8: + symbol: d_course_toads_turnpike_packed_dl_65B8 + type: MK64:PACKED_GFX + offset: 0x2AC3 +d_course_toads_turnpike_packed_dl_66E0: + symbol: d_course_toads_turnpike_packed_dl_66E0 + type: MK64:PACKED_GFX + offset: 0x2B4D +d_course_toads_turnpike_packed_dl_6788: + symbol: d_course_toads_turnpike_packed_dl_6788 + type: MK64:PACKED_GFX + offset: 0x2B8A +d_course_toads_turnpike_packed_dl_6848: + symbol: d_course_toads_turnpike_packed_dl_6848 + type: MK64:PACKED_GFX + offset: 0x2BD5 +d_course_toads_turnpike_packed_dl_6908: + symbol: d_course_toads_turnpike_packed_dl_6908 + type: MK64:PACKED_GFX + offset: 0x2C20 +d_course_toads_turnpike_packed_dl_6AB8: + symbol: d_course_toads_turnpike_packed_dl_6AB8 + type: MK64:PACKED_GFX + offset: 0x2CF7 +d_course_toads_turnpike_packed_dl_6AD8: + symbol: d_course_toads_turnpike_packed_dl_6AD8 + type: MK64:PACKED_GFX + offset: 0x2D01 +d_course_toads_turnpike_packed_dl_6B08: + symbol: d_course_toads_turnpike_packed_dl_6B08 + type: MK64:PACKED_GFX + offset: 0x2D11 +d_course_toads_turnpike_packed_dl_6B18: + symbol: d_course_toads_turnpike_packed_dl_6B18 + type: MK64:PACKED_GFX + offset: 0x2D15 diff --git a/yamls/us/models/tracks/toads_turnpike/toads_turnpike_offsets.yml b/yamls/us/models/tracks/toads_turnpike/toads_turnpike_offsets.yml new file mode 100644 index 000000000..bd22f8359 --- /dev/null +++ b/yamls/us/models/tracks/toads_turnpike/toads_turnpike_offsets.yml @@ -0,0 +1,482 @@ +:config: + segments: + - [0x09, 0x88E8D0] + - [0x06, 0x857E80] + - [0x0D, 0x132B50] + external_files: + - "yamls/us/models/common_data.yml" + - "yamls/us/textures/common_data.yml" + - "yamls/us/models/tracks/toads_turnpike/toads_turnpike_data.yml" + - "yamls/us/textures/tracks/toads_turnpike/toads_turnpike_data.yml" + no_compression: true + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_645134"] + - [0x05000800, "textures/other_textures/texture_64FE68"] + - [0x05001800, "textures/other_textures/texture_6607C0"] + - [0x05002000, "textures/other_textures/texture_6608C8"] + - [0x05002800, "textures/other_textures/grass_11"] + - [0x05003000, "textures/other_textures/sign_nintendo_red_0"] + - [0x05004000, "textures/other_textures/sign_nintendo_red_1"] + - [0x05005000, "textures/other_textures/texture_671A88"] + - [0x05005800, "textures/other_textures/road_2"] + - [0x05006800, "textures/other_textures/road_3"] + - [0x05007800, "textures/other_textures/road_4"] + - [0x05008800, "textures/other_textures/road_finish_0"] + - [0x05009800, "textures/other_textures/sign_toad_yellow"] + - [0x0500A800, "textures/other_textures/sign_toad_green"] + - [0x0500B800, "textures/other_textures/sign_merging_lanes"] + - [0x0500C000, "textures/other_textures/texture_65127C"] + - [0x0500C800, "textures/other_textures/road_5"] + - [0x0500D800, "textures/other_textures/sign_toad_red"] + - [0x0500E800, "textures/other_textures/texture_668228"] + # Segment 7 + - [0x7000000, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_0"] + - [0x7000068, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_68"] + - [0x70000D8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D8"] + - [0x7000140, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_140"] + - [0x7000160, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_160"] + - [0x7000218, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_218"] + - [0x7000300, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_300"] + - [0x70003E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E8"] + - [0x70004C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4C0"] + - [0x7000540, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_540"] + - [0x7000618, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_618"] + - [0x70006E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6E8"] + - [0x7000768, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_768"] + - [0x70007E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_7E8"] + - [0x70008C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_8C0"] + - [0x7000940, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_940"] + - [0x7000A28, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_A28"] + - [0x7000AA8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_AA8"] + - [0x7000B48, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_B48"] + - [0x7000C30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_C30"] + - [0x7000D08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D08"] + - [0x7000D88, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D88"] + - [0x7000E08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_E08"] + - [0x7000EC0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_EC0"] + - [0x7000FA8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_FA8"] + - [0x7001050, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1050"] + - [0x7001068, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1068"] + - [0x7001078, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1078"] + - [0x70011B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_11B8"] + - [0x70013B0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_13B0"] + - [0x70015E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_15E8"] + - [0x7001780, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1780"] + - [0x70018C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_18C0"] + - [0x7001A58, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1A58"] + - [0x7001BB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1BB8"] + - [0x7001CB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1CB8"] + - [0x7001E30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1E30"] + - [0x7001F70, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1F70"] + - [0x7002050, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2050"] + - [0x70021E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_21E8"] + - [0x7002328, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2328"] + - [0x70024C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_24C0"] + - [0x7002600, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2600"] + - [0x7002798, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2798"] + - [0x70028D8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_28D8"] + - [0x70029B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_29B8"] + - [0x7002AF8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2AF8"] + - [0x7002D98, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2D98"] + - [0x7002E40, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2E40"] + - [0x7002EE0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2EE0"] + - [0x7002FA0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2FA0"] + - [0x7003060, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3060"] + - [0x7003118, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3118"] + - [0x70031E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_31E8"] + - [0x70032A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_32A0"] + - [0x70033A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_33A8"] + - [0x7003478, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3478"] + - [0x7003548, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3548"] + - [0x7003638, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3638"] + - [0x70036C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_36C0"] + - [0x7003780, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3780"] + - [0x7003850, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3850"] + - [0x70038E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_38E8"] + - [0x70039A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_39A8"] + - [0x7003AD0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3AD0"] + - [0x7003B58, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3B58"] + - [0x7003C28, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3C28"] + - [0x7003D00, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3D00"] + - [0x7003DE8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3DE8"] + - [0x7003E90, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E90"] + - [0x7003F80, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3F80"] + - [0x70040A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_40A8"] + - [0x70041D0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_41D0"] + - [0x70042E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_42E8"] + - [0x70043A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_43A8"] + - [0x70044C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_44C0"] + - [0x70045B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_45B8"] + - [0x7004678, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4678"] + - [0x7004738, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4738"] + - [0x7004850, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4850"] + - [0x7004910, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4910"] + - [0x7004A40, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4A40"] + - [0x7004B00, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4B00"] + - [0x7004BE0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4BE0"] + - [0x7004D10, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4D10"] + - [0x7004E30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4E30"] + - [0x7004EF0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4EF0"] + - [0x7004FB0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4FB0"] + - [0x70050A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_50A0"] + - [0x70051C8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_51C8"] + - [0x7005270, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5270"] + - [0x7005360, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5360"] + - [0x7005480, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5480"] + - [0x70055A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_55A0"] + - [0x70056B0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_56B0"] + - [0x7005770, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5770"] + - [0x7005880, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5880"] + - [0x7005958, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5958"] + - [0x7005AE8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5AE8"] + - [0x7005C80, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5C80"] + - [0x7005D90, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5D90"] + - [0x7005E50, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5E50"] + - [0x7005F78, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5F78"] + - [0x7006030, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6030"] + - [0x7006110, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6110"] + - [0x7006230, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6230"] + - [0x7006348, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6348"] + - [0x7006408, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6408"] + - [0x70064C8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_64C8"] + - [0x70065B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_65B8"] + - [0x70066E0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_66E0"] + - [0x7006788, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6788"] + - [0x7006848, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6848"] + - [0x7006908, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6908"] + - [0x7006AB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AB8"] + - [0x7006AD8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AD8"] + - [0x7006B08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B08"] + - [0x7006B18, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B18"] + # Segment 4 + - [0x4000000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000000"] + - [0x4000080, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000080"] + - [0x4000140, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000140"] + - [0x40001c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040001C0"] + - [0x40003c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040003C0"] + - [0x40005c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040005C0"] + - [0x4000640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000640"] + - [0x4000840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000840"] + - [0x4000a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000A40"] + - [0x4000c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000C40"] + - [0x4000e40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04000E40"] + - [0x4001040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001040"] + - [0x4001240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001240"] + - [0x4001440, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001440"] + - [0x4001640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001640"] + - [0x40017c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040017C0"] + - [0x40019c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040019C0"] + - [0x4001ac0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001AC0"] + - [0x4001cc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001CC0"] + - [0x4001ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04001EC0"] + - [0x4002040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002040"] + - [0x4002220, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002220"] + - [0x4002400, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002400"] + - [0x40024e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040024E0"] + - [0x40026e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040026E0"] + - [0x40027e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040027E0"] + - [0x40029c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040029C0"] + - [0x4002ac0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002AC0"] + - [0x4002cc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002CC0"] + - [0x4002ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04002EC0"] + - [0x4003040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003040"] + - [0x4003240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003240"] + - [0x4003340, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003340"] + - [0x4003540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003540"] + - [0x4003740, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003740"] + - [0x4003940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003940"] + - [0x4003b40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003B40"] + - [0x4003c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003C40"] + - [0x4003e40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04003E40"] + - [0x4004040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004040"] + - [0x4004240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004240"] + - [0x4004440, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004440"] + - [0x4004640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004640"] + - [0x4004840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004840"] + - [0x4004a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004A40"] + - [0x4004bc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004BC0"] + - [0x4004dc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004DC0"] + - [0x4004ec0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04004EC0"] + - [0x40050c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040050C0"] + - [0x40051c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040051C0"] + - [0x40053c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040053C0"] + - [0x40055c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040055C0"] + - [0x4005640, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005640"] + - [0x4005840, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005840"] + - [0x4005a40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005A40"] + - [0x4005c40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005C40"] + - [0x4005e20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04005E20"] + - [0x4006000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006000"] + - [0x40060a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040060A0"] + - [0x40062a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040062A0"] + - [0x4006480, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006480"] + - [0x4006660, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006660"] + - [0x40066c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040066C0"] + - [0x40067b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040067B0"] + - [0x4006830, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006830"] + - [0x4006a10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006A10"] + - [0x4006bf0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006BF0"] + - [0x4006dd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006DD0"] + - [0x4006f00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006F00"] + - [0x4006f80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04006F80"] + - [0x4007000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007000"] + - [0x40071e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040071E0"] + - [0x40073e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040073E0"] + - [0x40075c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040075C0"] + - [0x40076b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040076B0"] + - [0x4007890, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007890"] + - [0x4007a70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007A70"] + - [0x4007b10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007B10"] + - [0x4007cf0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007CF0"] + - [0x4007ef0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04007EF0"] + - [0x40080d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040080D0"] + - [0x40081c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040081C0"] + - [0x40083c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040083C0"] + - [0x40085a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040085A0"] + - [0x4008600, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008600"] + - [0x40086a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040086A0"] + - [0x40088a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040088A0"] + - [0x4008920, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008920"] + - [0x4008970, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008970"] + - [0x4008b70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008B70"] + - [0x4008d70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008D70"] + - [0x4008e30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008E30"] + - [0x4008ed0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04008ED0"] + - [0x40090b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040090B0"] + - [0x4009290, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009290"] + - [0x4009330, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009330"] + - [0x4009510, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009510"] + - [0x4009560, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009560"] + - [0x4009740, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009740"] + - [0x4009940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009940"] + - [0x4009b20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009B20"] + - [0x4009c10, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009C10"] + - [0x4009df0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009DF0"] + - [0x4009fd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04009FD0"] + - [0x400a070, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A070"] + - [0x400a0f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A0F0"] + - [0x400a2d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A2D0"] + - [0x400a4b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A4B0"] + - [0x400a550, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A550"] + - [0x400a730, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A730"] + - [0x400a910, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A910"] + - [0x400a9b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400A9B0"] + - [0x400ab90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AB90"] + - [0x400ad90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AD90"] + - [0x400af70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400AF70"] + - [0x400b060, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B060"] + - [0x400b240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B240"] + - [0x400b420, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B420"] + - [0x400b4c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B4C0"] + - [0x400b6a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B6A0"] + - [0x400b6f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B6F0"] + - [0x400b8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400B8D0"] + - [0x400bab0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BAB0"] + - [0x400bb50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BB50"] + - [0x400bb90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BB90"] + - [0x400bbd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BBD0"] + - [0x400bdb0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BDB0"] + - [0x400bf90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400BF90"] + - [0x400c170, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C170"] + - [0x400c1b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C1B0"] + - [0x400c2a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C2A0"] + - [0x400c2e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C2E0"] + - [0x400c4c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C4C0"] + - [0x400c6a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C6A0"] + - [0x400c700, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C700"] + - [0x400c8e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C8E0"] + - [0x400c940, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400C940"] + - [0x400cb40, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CB40"] + - [0x400cb80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CB80"] + - [0x400cc00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CC00"] + - [0x400cd80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CD80"] + - [0x400cf80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CF80"] + - [0x400cfc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400CFC0"] + - [0x400d1c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D1C0"] + - [0x400d200, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D200"] + - [0x400d280, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D280"] + - [0x400d300, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D300"] + - [0x400d490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D490"] + - [0x400d500, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D500"] + - [0x400d680, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D680"] + - [0x400d6b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D6B0"] + - [0x400d890, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D890"] + - [0x400d8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400D8D0"] + - [0x400da50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DA50"] + - [0x400dc50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DC50"] + - [0x400dcd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DCD0"] + - [0x400dd60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DD60"] + - [0x400dee0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400DEE0"] + - [0x400e040, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E040"] + - [0x400e240, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E240"] + - [0x400e2a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E2A0"] + - [0x400e330, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E330"] + - [0x400e370, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E370"] + - [0x400e540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E540"] + - [0x400e6c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E6C0"] + - [0x400e750, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E750"] + - [0x400e8d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E8D0"] + - [0x400e900, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400E900"] + - [0x400eae0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EAE0"] + - [0x400ebe0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EBE0"] + - [0x400ed60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400ED60"] + - [0x400ef60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400EF60"] + - [0x400f120, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F120"] + - [0x400f300, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F300"] + - [0x400f500, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F500"] + - [0x400f5a0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F5A0"] + - [0x400f780, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F780"] + - [0x400f960, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400F960"] + - [0x400fa20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FA20"] + - [0x400fc20, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FC20"] + - [0x400fe00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FE00"] + - [0x400fe60, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x0400FE60"] + - [0x4010060, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010060"] + - [0x4010160, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010160"] + - [0x4010340, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010340"] + - [0x4010540, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010540"] + - [0x40105c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040105C0"] + - [0x40107c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040107C0"] + - [0x40109c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040109C0"] + - [0x4010a00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010A00"] + - [0x4010c00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010C00"] + - [0x4010d00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010D00"] + - [0x4010f00, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04010F00"] + - [0x4011000, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011000"] + - [0x4011200, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011200"] + - [0x4011400, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011400"] + - [0x4011480, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011480"] + - [0x4011680, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011680"] + - [0x4011780, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011780"] + - [0x4011980, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011980"] + - [0x4011b80, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011B80"] + - [0x4011c70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011C70"] + - [0x4011e70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011E70"] + - [0x4011f70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04011F70"] + - [0x4012150, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012150"] + - [0x40122f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040122F0"] + - [0x40124e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040124E0"] + - [0x40126e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040126E0"] + - [0x40127d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040127D0"] + - [0x40129c0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040129C0"] + - [0x4012bb0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012BB0"] + - [0x4012c50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012C50"] + - [0x4012e50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012E50"] + - [0x4012f50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04012F50"] + - [0x4013150, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013150"] + - [0x4013250, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013250"] + - [0x4013430, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013430"] + - [0x4013610, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013610"] + - [0x40137f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040137F0"] + - [0x40139d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040139D0"] + - [0x4013a90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013A90"] + - [0x4013c70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013C70"] + - [0x4013d90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013D90"] + - [0x4013f90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04013F90"] + - [0x4014110, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014110"] + - [0x40142f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040142F0"] + - [0x4014490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014490"] + - [0x4014670, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014670"] + - [0x40147f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040147F0"] + - [0x40149f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040149F0"] + - [0x4014af0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014AF0"] + - [0x4014cd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014CD0"] + - [0x4014e50, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04014E50"] + - [0x4015050, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015050"] + - [0x4015110, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015110"] + - [0x40152d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040152D0"] + - [0x40153b0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040153B0"] + - [0x4015490, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015490"] + - [0x4015670, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015670"] + - [0x4015710, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015710"] + - [0x40157f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040157F0"] + - [0x40158d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040158D0"] + - [0x4015ad0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015AD0"] + - [0x4015c90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015C90"] + - [0x4015e90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015E90"] + - [0x4015f90, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04015F90"] + - [0x4016190, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016190"] + - [0x4016390, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016390"] + - [0x4016410, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016410"] + - [0x40165f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040165F0"] + - [0x40167f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040167F0"] + - [0x4016870, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016870"] + - [0x4016a70, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016A70"] + - [0x4016bd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016BD0"] + - [0x4016dd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016DD0"] + - [0x4016fd0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04016FD0"] + - [0x4017010, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017010"] + - [0x4017210, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017210"] + - [0x4017310, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017310"] + - [0x4017510, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017510"] + - [0x40175d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040175D0"] + - [0x40177d0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040177D0"] + - [0x4017950, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017950"] + - [0x4017b30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017B30"] + - [0x4017d30, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017D30"] + - [0x4017df0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017DF0"] + - [0x4017ff0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04017FF0"] + - [0x40180f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040180F0"] + - [0x40182f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040182F0"] + - [0x40183f0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040183F0"] + - [0x40185e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040185E0"] + - [0x40187e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040187E0"] + - [0x40189e0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x040189E0"] + - [0x4018bc0, "models/tracks/toads_turnpike/toads_turnpike_vertices/d_course_toads_turnpike_vertex_0x04018BC0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +toads_turnpike_dl_0: + symbol: toads_turnpike_dl_0 + type: gfx + offset: 0x140 +toads_turnpike_dl_1: + symbol: toads_turnpike_dl_1 + type: gfx + offset: 0x178 +toads_turnpike_dl_2: + symbol: toads_turnpike_dl_2 + type: gfx + offset: 0x1B0 +toads_turnpike_dl_3: + symbol: toads_turnpike_dl_3 + type: gfx + offset: 0x1F0 +toads_turnpike_dl_4: + symbol: toads_turnpike_dl_4 + type: gfx + offset: 0x228 +toads_turnpike_dl_5: + symbol: toads_turnpike_dl_5 + type: gfx + offset: 0x260 +toads_turnpike_dl_6: + symbol: toads_turnpike_dl_6 + type: gfx + offset: 0x2A0 +toads_turnpike_dl_7: + symbol: toads_turnpike_dl_7 + type: gfx + offset: 0x2D8 +toads_turnpike_dl_8: + symbol: toads_turnpike_dl_8 + type: gfx + offset: 0x310 +toads_turnpike_dl_9: + symbol: toads_turnpike_dl_9 + type: gfx + offset: 0x350 +toads_turnpike_dl_10: + symbol: toads_turnpike_dl_10 + type: gfx + offset: 0x388 +toads_turnpike_dl_11: + symbol: toads_turnpike_dl_11 + type: gfx + offset: 0x3C0 + \ No newline at end of file diff --git a/yamls/us/models/tracks/toads_turnpike/toads_turnpike_vertices.yml b/yamls/us/models/tracks/toads_turnpike/toads_turnpike_vertices.yml new file mode 100644 index 000000000..f8386c927 --- /dev/null +++ b/yamls/us/models/tracks/toads_turnpike/toads_turnpike_vertices.yml @@ -0,0 +1,1653 @@ +:config: + segments: + - [0x0F, 0x91B980] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_toads_turnpike_vertex_0x04000000: + symbol: d_course_toads_turnpike_vertex_0x04000000 + type: mk64:course_vtx + count: 8 + offset: 0x0 + +d_course_toads_turnpike_vertex_0x04000080: + symbol: d_course_toads_turnpike_vertex_0x04000080 + type: mk64:course_vtx + count: 18 + offset: 0x70 + +d_course_toads_turnpike_vertex_0x04000140: + symbol: d_course_toads_turnpike_vertex_0x04000140 + type: mk64:course_vtx + count: 8 + offset: 0x118 + +d_course_toads_turnpike_vertex_0x040001C0: + symbol: d_course_toads_turnpike_vertex_0x040001C0 + type: mk64:course_vtx + count: 50 + offset: 0x188 + +d_course_toads_turnpike_vertex_0x040003C0: + symbol: d_course_toads_turnpike_vertex_0x040003C0 + type: mk64:course_vtx + count: 50 + offset: 0x348 + +d_course_toads_turnpike_vertex_0x040005C0: + symbol: d_course_toads_turnpike_vertex_0x040005C0 + type: mk64:course_vtx + count: 8 + offset: 0x508 + +d_course_toads_turnpike_vertex_0x04000640: + symbol: d_course_toads_turnpike_vertex_0x04000640 + type: mk64:course_vtx + count: 50 + offset: 0x578 + +d_course_toads_turnpike_vertex_0x04000840: + symbol: d_course_toads_turnpike_vertex_0x04000840 + type: mk64:course_vtx + count: 50 + offset: 0x738 + +d_course_toads_turnpike_vertex_0x04000A40: + symbol: d_course_toads_turnpike_vertex_0x04000A40 + type: mk64:course_vtx + count: 50 + offset: 0x8f8 + +d_course_toads_turnpike_vertex_0x04000C40: + symbol: d_course_toads_turnpike_vertex_0x04000C40 + type: mk64:course_vtx + count: 50 + offset: 0xab8 + +d_course_toads_turnpike_vertex_0x04000E40: + symbol: d_course_toads_turnpike_vertex_0x04000E40 + type: mk64:course_vtx + count: 50 + offset: 0xc78 + +d_course_toads_turnpike_vertex_0x04001040: + symbol: d_course_toads_turnpike_vertex_0x04001040 + type: mk64:course_vtx + count: 50 + offset: 0xe38 + +d_course_toads_turnpike_vertex_0x04001240: + symbol: d_course_toads_turnpike_vertex_0x04001240 + type: mk64:course_vtx + count: 50 + offset: 0xff8 + +d_course_toads_turnpike_vertex_0x04001440: + symbol: d_course_toads_turnpike_vertex_0x04001440 + type: mk64:course_vtx + count: 50 + offset: 0x11b8 + +d_course_toads_turnpike_vertex_0x04001640: + symbol: d_course_toads_turnpike_vertex_0x04001640 + type: mk64:course_vtx + count: 36 + offset: 0x1378 + +d_course_toads_turnpike_vertex_0x040017C0: + symbol: d_course_toads_turnpike_vertex_0x040017C0 + type: mk64:course_vtx + count: 50 + offset: 0x14c8 + +d_course_toads_turnpike_vertex_0x040019C0: + symbol: d_course_toads_turnpike_vertex_0x040019C0 + type: mk64:course_vtx + count: 22 + offset: 0x1688 + +d_course_toads_turnpike_vertex_0x04001AC0: + symbol: d_course_toads_turnpike_vertex_0x04001AC0 + type: mk64:course_vtx + count: 50 + offset: 0x1768 + +d_course_toads_turnpike_vertex_0x04001CC0: + symbol: d_course_toads_turnpike_vertex_0x04001CC0 + type: mk64:course_vtx + count: 50 + offset: 0x1928 + +d_course_toads_turnpike_vertex_0x04001EC0: + symbol: d_course_toads_turnpike_vertex_0x04001EC0 + type: mk64:course_vtx + count: 36 + offset: 0x1ae8 + +d_course_toads_turnpike_vertex_0x04002040: + symbol: d_course_toads_turnpike_vertex_0x04002040 + type: mk64:course_vtx + count: 48 + offset: 0x1c38 + +d_course_toads_turnpike_vertex_0x04002220: + symbol: d_course_toads_turnpike_vertex_0x04002220 + type: mk64:course_vtx + count: 48 + offset: 0x1ddc + +d_course_toads_turnpike_vertex_0x04002400: + symbol: d_course_toads_turnpike_vertex_0x04002400 + type: mk64:course_vtx + count: 20 + offset: 0x1f80 + +d_course_toads_turnpike_vertex_0x040024E0: + symbol: d_course_toads_turnpike_vertex_0x040024E0 + type: mk64:course_vtx + count: 50 + offset: 0x2044 + +d_course_toads_turnpike_vertex_0x040026E0: + symbol: d_course_toads_turnpike_vertex_0x040026E0 + type: mk64:course_vtx + count: 22 + offset: 0x2204 + +d_course_toads_turnpike_vertex_0x040027E0: + symbol: d_course_toads_turnpike_vertex_0x040027E0 + type: mk64:course_vtx + count: 48 + offset: 0x22e4 + +d_course_toads_turnpike_vertex_0x040029C0: + symbol: d_course_toads_turnpike_vertex_0x040029C0 + type: mk64:course_vtx + count: 22 + offset: 0x2488 + +d_course_toads_turnpike_vertex_0x04002AC0: + symbol: d_course_toads_turnpike_vertex_0x04002AC0 + type: mk64:course_vtx + count: 50 + offset: 0x2568 + +d_course_toads_turnpike_vertex_0x04002CC0: + symbol: d_course_toads_turnpike_vertex_0x04002CC0 + type: mk64:course_vtx + count: 50 + offset: 0x2728 + +d_course_toads_turnpike_vertex_0x04002EC0: + symbol: d_course_toads_turnpike_vertex_0x04002EC0 + type: mk64:course_vtx + count: 36 + offset: 0x28e8 + +d_course_toads_turnpike_vertex_0x04003040: + symbol: d_course_toads_turnpike_vertex_0x04003040 + type: mk64:course_vtx + count: 50 + offset: 0x2a38 + +d_course_toads_turnpike_vertex_0x04003240: + symbol: d_course_toads_turnpike_vertex_0x04003240 + type: mk64:course_vtx + count: 22 + offset: 0x2bf8 + +d_course_toads_turnpike_vertex_0x04003340: + symbol: d_course_toads_turnpike_vertex_0x04003340 + type: mk64:course_vtx + count: 50 + offset: 0x2cd8 + +d_course_toads_turnpike_vertex_0x04003540: + symbol: d_course_toads_turnpike_vertex_0x04003540 + type: mk64:course_vtx + count: 50 + offset: 0x2e98 + +d_course_toads_turnpike_vertex_0x04003740: + symbol: d_course_toads_turnpike_vertex_0x04003740 + type: mk64:course_vtx + count: 50 + offset: 0x3058 + +d_course_toads_turnpike_vertex_0x04003940: + symbol: d_course_toads_turnpike_vertex_0x04003940 + type: mk64:course_vtx + count: 50 + offset: 0x3218 + +d_course_toads_turnpike_vertex_0x04003B40: + symbol: d_course_toads_turnpike_vertex_0x04003B40 + type: mk64:course_vtx + count: 22 + offset: 0x33d8 + +d_course_toads_turnpike_vertex_0x04003C40: + symbol: d_course_toads_turnpike_vertex_0x04003C40 + type: mk64:course_vtx + count: 50 + offset: 0x34b8 + +d_course_toads_turnpike_vertex_0x04003E40: + symbol: d_course_toads_turnpike_vertex_0x04003E40 + type: mk64:course_vtx + count: 50 + offset: 0x3678 + +d_course_toads_turnpike_vertex_0x04004040: + symbol: d_course_toads_turnpike_vertex_0x04004040 + type: mk64:course_vtx + count: 50 + offset: 0x3838 + +d_course_toads_turnpike_vertex_0x04004240: + symbol: d_course_toads_turnpike_vertex_0x04004240 + type: mk64:course_vtx + count: 50 + offset: 0x39f8 + +d_course_toads_turnpike_vertex_0x04004440: + symbol: d_course_toads_turnpike_vertex_0x04004440 + type: mk64:course_vtx + count: 50 + offset: 0x3bb8 + +d_course_toads_turnpike_vertex_0x04004640: + symbol: d_course_toads_turnpike_vertex_0x04004640 + type: mk64:course_vtx + count: 50 + offset: 0x3d78 + +d_course_toads_turnpike_vertex_0x04004840: + symbol: d_course_toads_turnpike_vertex_0x04004840 + type: mk64:course_vtx + count: 50 + offset: 0x3f38 + +d_course_toads_turnpike_vertex_0x04004A40: + symbol: d_course_toads_turnpike_vertex_0x04004A40 + type: mk64:course_vtx + count: 36 + offset: 0x40f8 + +d_course_toads_turnpike_vertex_0x04004BC0: + symbol: d_course_toads_turnpike_vertex_0x04004BC0 + type: mk64:course_vtx + count: 50 + offset: 0x4248 + +d_course_toads_turnpike_vertex_0x04004DC0: + symbol: d_course_toads_turnpike_vertex_0x04004DC0 + type: mk64:course_vtx + count: 22 + offset: 0x4408 + +d_course_toads_turnpike_vertex_0x04004EC0: + symbol: d_course_toads_turnpike_vertex_0x04004EC0 + type: mk64:course_vtx + count: 50 + offset: 0x44e8 + +d_course_toads_turnpike_vertex_0x040050C0: + symbol: d_course_toads_turnpike_vertex_0x040050C0 + type: mk64:course_vtx + count: 22 + offset: 0x46a8 + +d_course_toads_turnpike_vertex_0x040051C0: + symbol: d_course_toads_turnpike_vertex_0x040051C0 + type: mk64:course_vtx + count: 50 + offset: 0x4788 + +d_course_toads_turnpike_vertex_0x040053C0: + symbol: d_course_toads_turnpike_vertex_0x040053C0 + type: mk64:course_vtx + count: 50 + offset: 0x4948 + +d_course_toads_turnpike_vertex_0x040055C0: + symbol: d_course_toads_turnpike_vertex_0x040055C0 + type: mk64:course_vtx + count: 8 + offset: 0x4b08 + +d_course_toads_turnpike_vertex_0x04005640: + symbol: d_course_toads_turnpike_vertex_0x04005640 + type: mk64:course_vtx + count: 50 + offset: 0x4b78 + +d_course_toads_turnpike_vertex_0x04005840: + symbol: d_course_toads_turnpike_vertex_0x04005840 + type: mk64:course_vtx + count: 50 + offset: 0x4d38 + +d_course_toads_turnpike_vertex_0x04005A40: + symbol: d_course_toads_turnpike_vertex_0x04005A40 + type: mk64:course_vtx + count: 50 + offset: 0x4ef8 + +d_course_toads_turnpike_vertex_0x04005C40: + symbol: d_course_toads_turnpike_vertex_0x04005C40 + type: mk64:course_vtx + count: 48 + offset: 0x50b8 + +d_course_toads_turnpike_vertex_0x04005E20: + symbol: d_course_toads_turnpike_vertex_0x04005E20 + type: mk64:course_vtx + count: 48 + offset: 0x525c + +d_course_toads_turnpike_vertex_0x04006000: + symbol: d_course_toads_turnpike_vertex_0x04006000 + type: mk64:course_vtx + count: 16 + offset: 0x5400 + +d_course_toads_turnpike_vertex_0x040060A0: + symbol: d_course_toads_turnpike_vertex_0x040060A0 + type: mk64:course_vtx + count: 50 + offset: 0x548c + +d_course_toads_turnpike_vertex_0x040062A0: + symbol: d_course_toads_turnpike_vertex_0x040062A0 + type: mk64:course_vtx + count: 48 + offset: 0x564c + +d_course_toads_turnpike_vertex_0x04006480: + symbol: d_course_toads_turnpike_vertex_0x04006480 + type: mk64:course_vtx + count: 48 + offset: 0x57f0 + +d_course_toads_turnpike_vertex_0x04006660: + symbol: d_course_toads_turnpike_vertex_0x04006660 + type: mk64:course_vtx + count: 6 + offset: 0x5994 + +d_course_toads_turnpike_vertex_0x040066C0: + symbol: d_course_toads_turnpike_vertex_0x040066C0 + type: mk64:course_vtx + count: 21 + offset: 0x59e8 + +d_course_toads_turnpike_vertex_0x040067B0: + symbol: d_course_toads_turnpike_vertex_0x040067B0 + type: mk64:course_vtx + count: 8 + offset: 0x5aba + +d_course_toads_turnpike_vertex_0x04006830: + symbol: d_course_toads_turnpike_vertex_0x04006830 + type: mk64:course_vtx + count: 48 + offset: 0x5b2a + +d_course_toads_turnpike_vertex_0x04006A10: + symbol: d_course_toads_turnpike_vertex_0x04006A10 + type: mk64:course_vtx + count: 48 + offset: 0x5cce + +d_course_toads_turnpike_vertex_0x04006BF0: + symbol: d_course_toads_turnpike_vertex_0x04006BF0 + type: mk64:course_vtx + count: 48 + offset: 0x5e72 + +d_course_toads_turnpike_vertex_0x04006DD0: + symbol: d_course_toads_turnpike_vertex_0x04006DD0 + type: mk64:course_vtx + count: 25 + offset: 0x6016 + +d_course_toads_turnpike_vertex_0x04006F00: + symbol: d_course_toads_turnpike_vertex_0x04006F00 + type: mk64:course_vtx + count: 8 + offset: 0x6120 + +d_course_toads_turnpike_vertex_0x04006F80: + symbol: d_course_toads_turnpike_vertex_0x04006F80 + type: mk64:course_vtx + count: 8 + offset: 0x6190 + +d_course_toads_turnpike_vertex_0x04007000: + symbol: d_course_toads_turnpike_vertex_0x04007000 + type: mk64:course_vtx + count: 48 + offset: 0x6200 + +d_course_toads_turnpike_vertex_0x040071E0: + symbol: d_course_toads_turnpike_vertex_0x040071E0 + type: mk64:course_vtx + count: 50 + offset: 0x63a4 + +d_course_toads_turnpike_vertex_0x040073E0: + symbol: d_course_toads_turnpike_vertex_0x040073E0 + type: mk64:course_vtx + count: 48 + offset: 0x6564 + +d_course_toads_turnpike_vertex_0x040075C0: + symbol: d_course_toads_turnpike_vertex_0x040075C0 + type: mk64:course_vtx + count: 21 + offset: 0x6708 + +d_course_toads_turnpike_vertex_0x040076B0: + symbol: d_course_toads_turnpike_vertex_0x040076B0 + type: mk64:course_vtx + count: 48 + offset: 0x67da + +d_course_toads_turnpike_vertex_0x04007890: + symbol: d_course_toads_turnpike_vertex_0x04007890 + type: mk64:course_vtx + count: 48 + offset: 0x697e + +d_course_toads_turnpike_vertex_0x04007A70: + symbol: d_course_toads_turnpike_vertex_0x04007A70 + type: mk64:course_vtx + count: 16 + offset: 0x6b22 + +d_course_toads_turnpike_vertex_0x04007B10: + symbol: d_course_toads_turnpike_vertex_0x04007B10 + type: mk64:course_vtx + count: 48 + offset: 0x6bae + +d_course_toads_turnpike_vertex_0x04007CF0: + symbol: d_course_toads_turnpike_vertex_0x04007CF0 + type: mk64:course_vtx + count: 50 + offset: 0x6d52 + +d_course_toads_turnpike_vertex_0x04007EF0: + symbol: d_course_toads_turnpike_vertex_0x04007EF0 + type: mk64:course_vtx + count: 48 + offset: 0x6f12 + +d_course_toads_turnpike_vertex_0x040080D0: + symbol: d_course_toads_turnpike_vertex_0x040080D0 + type: mk64:course_vtx + count: 21 + offset: 0x70b6 + +d_course_toads_turnpike_vertex_0x040081C0: + symbol: d_course_toads_turnpike_vertex_0x040081C0 + type: mk64:course_vtx + count: 50 + offset: 0x7188 + +d_course_toads_turnpike_vertex_0x040083C0: + symbol: d_course_toads_turnpike_vertex_0x040083C0 + type: mk64:course_vtx + count: 48 + offset: 0x7348 + +d_course_toads_turnpike_vertex_0x040085A0: + symbol: d_course_toads_turnpike_vertex_0x040085A0 + type: mk64:course_vtx + count: 6 + offset: 0x74ec + +d_course_toads_turnpike_vertex_0x04008600: + symbol: d_course_toads_turnpike_vertex_0x04008600 + type: mk64:course_vtx + count: 16 + offset: 0x7540 + +d_course_toads_turnpike_vertex_0x040086A0: + symbol: d_course_toads_turnpike_vertex_0x040086A0 + type: mk64:course_vtx + count: 50 + offset: 0x75cc + +d_course_toads_turnpike_vertex_0x040088A0: + symbol: d_course_toads_turnpike_vertex_0x040088A0 + type: mk64:course_vtx + count: 8 + offset: 0x778c + +d_course_toads_turnpike_vertex_0x04008920: + symbol: d_course_toads_turnpike_vertex_0x04008920 + type: mk64:course_vtx + count: 5 + offset: 0x77fc + +d_course_toads_turnpike_vertex_0x04008970: + symbol: d_course_toads_turnpike_vertex_0x04008970 + type: mk64:course_vtx + count: 50 + offset: 0x7842 + +d_course_toads_turnpike_vertex_0x04008B70: + symbol: d_course_toads_turnpike_vertex_0x04008B70 + type: mk64:course_vtx + count: 50 + offset: 0x7a02 + +d_course_toads_turnpike_vertex_0x04008D70: + symbol: d_course_toads_turnpike_vertex_0x04008D70 + type: mk64:course_vtx + count: 18 + offset: 0x7bc2 + +d_course_toads_turnpike_vertex_0x04008E30: + symbol: d_course_toads_turnpike_vertex_0x04008E30 + type: mk64:course_vtx + count: 16 + offset: 0x7c6a + +d_course_toads_turnpike_vertex_0x04008ED0: + symbol: d_course_toads_turnpike_vertex_0x04008ED0 + type: mk64:course_vtx + count: 48 + offset: 0x7cf6 + +d_course_toads_turnpike_vertex_0x040090B0: + symbol: d_course_toads_turnpike_vertex_0x040090B0 + type: mk64:course_vtx + count: 48 + offset: 0x7e9a + +d_course_toads_turnpike_vertex_0x04009290: + symbol: d_course_toads_turnpike_vertex_0x04009290 + type: mk64:course_vtx + count: 16 + offset: 0x803e + +d_course_toads_turnpike_vertex_0x04009330: + symbol: d_course_toads_turnpike_vertex_0x04009330 + type: mk64:course_vtx + count: 48 + offset: 0x80ca + +d_course_toads_turnpike_vertex_0x04009510: + symbol: d_course_toads_turnpike_vertex_0x04009510 + type: mk64:course_vtx + count: 5 + offset: 0x826e + +d_course_toads_turnpike_vertex_0x04009560: + symbol: d_course_toads_turnpike_vertex_0x04009560 + type: mk64:course_vtx + count: 48 + offset: 0x82b4 + +d_course_toads_turnpike_vertex_0x04009740: + symbol: d_course_toads_turnpike_vertex_0x04009740 + type: mk64:course_vtx + count: 50 + offset: 0x8458 + +d_course_toads_turnpike_vertex_0x04009940: + symbol: d_course_toads_turnpike_vertex_0x04009940 + type: mk64:course_vtx + count: 48 + offset: 0x8618 + +d_course_toads_turnpike_vertex_0x04009B20: + symbol: d_course_toads_turnpike_vertex_0x04009B20 + type: mk64:course_vtx + count: 21 + offset: 0x87bc + +d_course_toads_turnpike_vertex_0x04009C10: + symbol: d_course_toads_turnpike_vertex_0x04009C10 + type: mk64:course_vtx + count: 48 + offset: 0x888e + +d_course_toads_turnpike_vertex_0x04009DF0: + symbol: d_course_toads_turnpike_vertex_0x04009DF0 + type: mk64:course_vtx + count: 48 + offset: 0x8a32 + +d_course_toads_turnpike_vertex_0x04009FD0: + symbol: d_course_toads_turnpike_vertex_0x04009FD0 + type: mk64:course_vtx + count: 16 + offset: 0x8bd6 + +d_course_toads_turnpike_vertex_0x0400A070: + symbol: d_course_toads_turnpike_vertex_0x0400A070 + type: mk64:course_vtx + count: 8 + offset: 0x8c62 + +d_course_toads_turnpike_vertex_0x0400A0F0: + symbol: d_course_toads_turnpike_vertex_0x0400A0F0 + type: mk64:course_vtx + count: 48 + offset: 0x8cd2 + +d_course_toads_turnpike_vertex_0x0400A2D0: + symbol: d_course_toads_turnpike_vertex_0x0400A2D0 + type: mk64:course_vtx + count: 48 + offset: 0x8e76 + +d_course_toads_turnpike_vertex_0x0400A4B0: + symbol: d_course_toads_turnpike_vertex_0x0400A4B0 + type: mk64:course_vtx + count: 16 + offset: 0x901a + +d_course_toads_turnpike_vertex_0x0400A550: + symbol: d_course_toads_turnpike_vertex_0x0400A550 + type: mk64:course_vtx + count: 48 + offset: 0x90a6 + +d_course_toads_turnpike_vertex_0x0400A730: + symbol: d_course_toads_turnpike_vertex_0x0400A730 + type: mk64:course_vtx + count: 48 + offset: 0x924a + +d_course_toads_turnpike_vertex_0x0400A910: + symbol: d_course_toads_turnpike_vertex_0x0400A910 + type: mk64:course_vtx + count: 16 + offset: 0x93ee + +d_course_toads_turnpike_vertex_0x0400A9B0: + symbol: d_course_toads_turnpike_vertex_0x0400A9B0 + type: mk64:course_vtx + count: 48 + offset: 0x947a + +d_course_toads_turnpike_vertex_0x0400AB90: + symbol: d_course_toads_turnpike_vertex_0x0400AB90 + type: mk64:course_vtx + count: 50 + offset: 0x961e + +d_course_toads_turnpike_vertex_0x0400AD90: + symbol: d_course_toads_turnpike_vertex_0x0400AD90 + type: mk64:course_vtx + count: 48 + offset: 0x97de + +d_course_toads_turnpike_vertex_0x0400AF70: + symbol: d_course_toads_turnpike_vertex_0x0400AF70 + type: mk64:course_vtx + count: 21 + offset: 0x9982 + +d_course_toads_turnpike_vertex_0x0400B060: + symbol: d_course_toads_turnpike_vertex_0x0400B060 + type: mk64:course_vtx + count: 48 + offset: 0x9a54 + +d_course_toads_turnpike_vertex_0x0400B240: + symbol: d_course_toads_turnpike_vertex_0x0400B240 + type: mk64:course_vtx + count: 48 + offset: 0x9bf8 + +d_course_toads_turnpike_vertex_0x0400B420: + symbol: d_course_toads_turnpike_vertex_0x0400B420 + type: mk64:course_vtx + count: 16 + offset: 0x9d9c + +d_course_toads_turnpike_vertex_0x0400B4C0: + symbol: d_course_toads_turnpike_vertex_0x0400B4C0 + type: mk64:course_vtx + count: 48 + offset: 0x9e28 + +d_course_toads_turnpike_vertex_0x0400B6A0: + symbol: d_course_toads_turnpike_vertex_0x0400B6A0 + type: mk64:course_vtx + count: 5 + offset: 0x9fcc + +d_course_toads_turnpike_vertex_0x0400B6F0: + symbol: d_course_toads_turnpike_vertex_0x0400B6F0 + type: mk64:course_vtx + count: 48 + offset: 0xa012 + +d_course_toads_turnpike_vertex_0x0400B8D0: + symbol: d_course_toads_turnpike_vertex_0x0400B8D0 + type: mk64:course_vtx + count: 48 + offset: 0xa1b6 + +d_course_toads_turnpike_vertex_0x0400BAB0: + symbol: d_course_toads_turnpike_vertex_0x0400BAB0 + type: mk64:course_vtx + count: 16 + offset: 0xa35a + +d_course_toads_turnpike_vertex_0x0400BB50: + symbol: d_course_toads_turnpike_vertex_0x0400BB50 + type: mk64:course_vtx + count: 4 + offset: 0xa3e6 + +d_course_toads_turnpike_vertex_0x0400BB90: + symbol: d_course_toads_turnpike_vertex_0x0400BB90 + type: mk64:course_vtx + count: 4 + offset: 0xa41e + +d_course_toads_turnpike_vertex_0x0400BBD0: + symbol: d_course_toads_turnpike_vertex_0x0400BBD0 + type: mk64:course_vtx + count: 48 + offset: 0xa456 + +d_course_toads_turnpike_vertex_0x0400BDB0: + symbol: d_course_toads_turnpike_vertex_0x0400BDB0 + type: mk64:course_vtx + count: 48 + offset: 0xa5fa + +d_course_toads_turnpike_vertex_0x0400BF90: + symbol: d_course_toads_turnpike_vertex_0x0400BF90 + type: mk64:course_vtx + count: 48 + offset: 0xa79e + +d_course_toads_turnpike_vertex_0x0400C170: + symbol: d_course_toads_turnpike_vertex_0x0400C170 + type: mk64:course_vtx + count: 4 + offset: 0xa942 + +d_course_toads_turnpike_vertex_0x0400C1B0: + symbol: d_course_toads_turnpike_vertex_0x0400C1B0 + type: mk64:course_vtx + count: 21 + offset: 0xa97a + +d_course_toads_turnpike_vertex_0x0400C2A0: + symbol: d_course_toads_turnpike_vertex_0x0400C2A0 + type: mk64:course_vtx + count: 4 + offset: 0xaa4c + +d_course_toads_turnpike_vertex_0x0400C2E0: + symbol: d_course_toads_turnpike_vertex_0x0400C2E0 + type: mk64:course_vtx + count: 48 + offset: 0xaa84 + +d_course_toads_turnpike_vertex_0x0400C4C0: + symbol: d_course_toads_turnpike_vertex_0x0400C4C0 + type: mk64:course_vtx + count: 48 + offset: 0xac28 + +d_course_toads_turnpike_vertex_0x0400C6A0: + symbol: d_course_toads_turnpike_vertex_0x0400C6A0 + type: mk64:course_vtx + count: 6 + offset: 0xadcc + +d_course_toads_turnpike_vertex_0x0400C700: + symbol: d_course_toads_turnpike_vertex_0x0400C700 + type: mk64:course_vtx + count: 48 + offset: 0xae20 + +d_course_toads_turnpike_vertex_0x0400C8E0: + symbol: d_course_toads_turnpike_vertex_0x0400C8E0 + type: mk64:course_vtx + count: 6 + offset: 0xafc4 + +d_course_toads_turnpike_vertex_0x0400C940: + symbol: d_course_toads_turnpike_vertex_0x0400C940 + type: mk64:course_vtx + count: 50 + offset: 0xb018 + +d_course_toads_turnpike_vertex_0x0400CB40: + symbol: d_course_toads_turnpike_vertex_0x0400CB40 + type: mk64:course_vtx + count: 4 + offset: 0xb1d8 + +d_course_toads_turnpike_vertex_0x0400CB80: + symbol: d_course_toads_turnpike_vertex_0x0400CB80 + type: mk64:course_vtx + count: 8 + offset: 0xb210 + +d_course_toads_turnpike_vertex_0x0400CC00: + symbol: d_course_toads_turnpike_vertex_0x0400CC00 + type: mk64:course_vtx + count: 36 + offset: 0xb280 + +d_course_toads_turnpike_vertex_0x0400CD80: + symbol: d_course_toads_turnpike_vertex_0x0400CD80 + type: mk64:course_vtx + count: 50 + offset: 0xb3d0 + +d_course_toads_turnpike_vertex_0x0400CF80: + symbol: d_course_toads_turnpike_vertex_0x0400CF80 + type: mk64:course_vtx + count: 4 + offset: 0xb590 + +d_course_toads_turnpike_vertex_0x0400CFC0: + symbol: d_course_toads_turnpike_vertex_0x0400CFC0 + type: mk64:course_vtx + count: 50 + offset: 0xb5c8 + +d_course_toads_turnpike_vertex_0x0400D1C0: + symbol: d_course_toads_turnpike_vertex_0x0400D1C0 + type: mk64:course_vtx + count: 4 + offset: 0xb788 + +d_course_toads_turnpike_vertex_0x0400D200: + symbol: d_course_toads_turnpike_vertex_0x0400D200 + type: mk64:course_vtx + count: 8 + offset: 0xb7c0 + +d_course_toads_turnpike_vertex_0x0400D280: + symbol: d_course_toads_turnpike_vertex_0x0400D280 + type: mk64:course_vtx + count: 8 + offset: 0xb830 + +d_course_toads_turnpike_vertex_0x0400D300: + symbol: d_course_toads_turnpike_vertex_0x0400D300 + type: mk64:course_vtx + count: 37 + offset: 0xb8a0 + +d_course_toads_turnpike_vertex_0x0400D490: + symbol: d_course_toads_turnpike_vertex_0x0400D490 + type: mk64:course_vtx + count: 7 + offset: 0xb9fe + +d_course_toads_turnpike_vertex_0x0400D500: + symbol: d_course_toads_turnpike_vertex_0x0400D500 + type: mk64:course_vtx + count: 36 + offset: 0xba60 + +d_course_toads_turnpike_vertex_0x0400D680: + symbol: d_course_toads_turnpike_vertex_0x0400D680 + type: mk64:course_vtx + count: 3 + offset: 0xbbb0 + +d_course_toads_turnpike_vertex_0x0400D6B0: + symbol: d_course_toads_turnpike_vertex_0x0400D6B0 + type: mk64:course_vtx + count: 48 + offset: 0xbbda + +d_course_toads_turnpike_vertex_0x0400D890: + symbol: d_course_toads_turnpike_vertex_0x0400D890 + type: mk64:course_vtx + count: 4 + offset: 0xbd7e + +d_course_toads_turnpike_vertex_0x0400D8D0: + symbol: d_course_toads_turnpike_vertex_0x0400D8D0 + type: mk64:course_vtx + count: 36 + offset: 0xbdb6 + +d_course_toads_turnpike_vertex_0x0400DA50: + symbol: d_course_toads_turnpike_vertex_0x0400DA50 + type: mk64:course_vtx + count: 50 + offset: 0xbf06 + +d_course_toads_turnpike_vertex_0x0400DC50: + symbol: d_course_toads_turnpike_vertex_0x0400DC50 + type: mk64:course_vtx + count: 8 + offset: 0xc0c6 + +d_course_toads_turnpike_vertex_0x0400DCD0: + symbol: d_course_toads_turnpike_vertex_0x0400DCD0 + type: mk64:course_vtx + count: 9 + offset: 0xc136 + +d_course_toads_turnpike_vertex_0x0400DD60: + symbol: d_course_toads_turnpike_vertex_0x0400DD60 + type: mk64:course_vtx + count: 36 + offset: 0xc1b4 + +d_course_toads_turnpike_vertex_0x0400DEE0: + symbol: d_course_toads_turnpike_vertex_0x0400DEE0 + type: mk64:course_vtx + count: 34 + offset: 0xc304 + +d_course_toads_turnpike_vertex_0x0400E040: + symbol: d_course_toads_turnpike_vertex_0x0400E040 + type: mk64:course_vtx + count: 50 + offset: 0xc438 + +d_course_toads_turnpike_vertex_0x0400E240: + symbol: d_course_toads_turnpike_vertex_0x0400E240 + type: mk64:course_vtx + count: 6 + offset: 0xc5f8 + +d_course_toads_turnpike_vertex_0x0400E2A0: + symbol: d_course_toads_turnpike_vertex_0x0400E2A0 + type: mk64:course_vtx + count: 9 + offset: 0xc64c + +d_course_toads_turnpike_vertex_0x0400E330: + symbol: d_course_toads_turnpike_vertex_0x0400E330 + type: mk64:course_vtx + count: 4 + offset: 0xc6ca + +d_course_toads_turnpike_vertex_0x0400E370: + symbol: d_course_toads_turnpike_vertex_0x0400E370 + type: mk64:course_vtx + count: 41 + offset: 0xc702 + +d_course_toads_turnpike_vertex_0x0400E540: + symbol: d_course_toads_turnpike_vertex_0x0400E540 + type: mk64:course_vtx + count: 36 + offset: 0xc898 + +d_course_toads_turnpike_vertex_0x0400E6C0: + symbol: d_course_toads_turnpike_vertex_0x0400E6C0 + type: mk64:course_vtx + count: 9 + offset: 0xc9e8 + +d_course_toads_turnpike_vertex_0x0400E750: + symbol: d_course_toads_turnpike_vertex_0x0400E750 + type: mk64:course_vtx + count: 36 + offset: 0xca66 + +d_course_toads_turnpike_vertex_0x0400E8D0: + symbol: d_course_toads_turnpike_vertex_0x0400E8D0 + type: mk64:course_vtx + count: 3 + offset: 0xcbb6 + +d_course_toads_turnpike_vertex_0x0400E900: + symbol: d_course_toads_turnpike_vertex_0x0400E900 + type: mk64:course_vtx + count: 48 + offset: 0xcbe0 + +d_course_toads_turnpike_vertex_0x0400EAE0: + symbol: d_course_toads_turnpike_vertex_0x0400EAE0 + type: mk64:course_vtx + count: 22 + offset: 0xcd84 + +d_course_toads_turnpike_vertex_0x0400EBE0: + symbol: d_course_toads_turnpike_vertex_0x0400EBE0 + type: mk64:course_vtx + count: 36 + offset: 0xce64 + +d_course_toads_turnpike_vertex_0x0400ED60: + symbol: d_course_toads_turnpike_vertex_0x0400ED60 + type: mk64:course_vtx + count: 50 + offset: 0xcfb4 + +d_course_toads_turnpike_vertex_0x0400EF60: + symbol: d_course_toads_turnpike_vertex_0x0400EF60 + type: mk64:course_vtx + count: 40 + offset: 0xd174 + +d_course_toads_turnpike_vertex_0x0400F120: + symbol: d_course_toads_turnpike_vertex_0x0400F120 + type: mk64:course_vtx + count: 48 + offset: 0xd2fc + +d_course_toads_turnpike_vertex_0x0400F300: + symbol: d_course_toads_turnpike_vertex_0x0400F300 + type: mk64:course_vtx + count: 50 + offset: 0xd4a0 + +d_course_toads_turnpike_vertex_0x0400F500: + symbol: d_course_toads_turnpike_vertex_0x0400F500 + type: mk64:course_vtx + count: 16 + offset: 0xd660 + +d_course_toads_turnpike_vertex_0x0400F5A0: + symbol: d_course_toads_turnpike_vertex_0x0400F5A0 + type: mk64:course_vtx + count: 48 + offset: 0xd6ec + +d_course_toads_turnpike_vertex_0x0400F780: + symbol: d_course_toads_turnpike_vertex_0x0400F780 + type: mk64:course_vtx + count: 48 + offset: 0xd890 + +d_course_toads_turnpike_vertex_0x0400F960: + symbol: d_course_toads_turnpike_vertex_0x0400F960 + type: mk64:course_vtx + count: 18 + offset: 0xda34 + +d_course_toads_turnpike_vertex_0x0400FA20: + symbol: d_course_toads_turnpike_vertex_0x0400FA20 + type: mk64:course_vtx + count: 50 + offset: 0xdadc + +d_course_toads_turnpike_vertex_0x0400FC20: + symbol: d_course_toads_turnpike_vertex_0x0400FC20 + type: mk64:course_vtx + count: 48 + offset: 0xdc9c + +d_course_toads_turnpike_vertex_0x0400FE00: + symbol: d_course_toads_turnpike_vertex_0x0400FE00 + type: mk64:course_vtx + count: 6 + offset: 0xde40 + +d_course_toads_turnpike_vertex_0x0400FE60: + symbol: d_course_toads_turnpike_vertex_0x0400FE60 + type: mk64:course_vtx + count: 50 + offset: 0xde94 + +d_course_toads_turnpike_vertex_0x04010060: + symbol: d_course_toads_turnpike_vertex_0x04010060 + type: mk64:course_vtx + count: 22 + offset: 0xe054 + +d_course_toads_turnpike_vertex_0x04010160: + symbol: d_course_toads_turnpike_vertex_0x04010160 + type: mk64:course_vtx + count: 48 + offset: 0xe134 + +d_course_toads_turnpike_vertex_0x04010340: + symbol: d_course_toads_turnpike_vertex_0x04010340 + type: mk64:course_vtx + count: 50 + offset: 0xe2d8 + +d_course_toads_turnpike_vertex_0x04010540: + symbol: d_course_toads_turnpike_vertex_0x04010540 + type: mk64:course_vtx + count: 8 + offset: 0xe498 + +d_course_toads_turnpike_vertex_0x040105C0: + symbol: d_course_toads_turnpike_vertex_0x040105C0 + type: mk64:course_vtx + count: 50 + offset: 0xe508 + +d_course_toads_turnpike_vertex_0x040107C0: + symbol: d_course_toads_turnpike_vertex_0x040107C0 + type: mk64:course_vtx + count: 50 + offset: 0xe6c8 + +d_course_toads_turnpike_vertex_0x040109C0: + symbol: d_course_toads_turnpike_vertex_0x040109C0 + type: mk64:course_vtx + count: 4 + offset: 0xe888 + +d_course_toads_turnpike_vertex_0x04010A00: + symbol: d_course_toads_turnpike_vertex_0x04010A00 + type: mk64:course_vtx + count: 50 + offset: 0xe8c0 + +d_course_toads_turnpike_vertex_0x04010C00: + symbol: d_course_toads_turnpike_vertex_0x04010C00 + type: mk64:course_vtx + count: 22 + offset: 0xea80 + +d_course_toads_turnpike_vertex_0x04010D00: + symbol: d_course_toads_turnpike_vertex_0x04010D00 + type: mk64:course_vtx + count: 50 + offset: 0xeb60 + +d_course_toads_turnpike_vertex_0x04010F00: + symbol: d_course_toads_turnpike_vertex_0x04010F00 + type: mk64:course_vtx + count: 22 + offset: 0xed20 + +d_course_toads_turnpike_vertex_0x04011000: + symbol: d_course_toads_turnpike_vertex_0x04011000 + type: mk64:course_vtx + count: 50 + offset: 0xee00 + +d_course_toads_turnpike_vertex_0x04011200: + symbol: d_course_toads_turnpike_vertex_0x04011200 + type: mk64:course_vtx + count: 50 + offset: 0xefc0 + +d_course_toads_turnpike_vertex_0x04011400: + symbol: d_course_toads_turnpike_vertex_0x04011400 + type: mk64:course_vtx + count: 8 + offset: 0xf180 + +d_course_toads_turnpike_vertex_0x04011480: + symbol: d_course_toads_turnpike_vertex_0x04011480 + type: mk64:course_vtx + count: 50 + offset: 0xf1f0 + +d_course_toads_turnpike_vertex_0x04011680: + symbol: d_course_toads_turnpike_vertex_0x04011680 + type: mk64:course_vtx + count: 22 + offset: 0xf3b0 + +d_course_toads_turnpike_vertex_0x04011780: + symbol: d_course_toads_turnpike_vertex_0x04011780 + type: mk64:course_vtx + count: 50 + offset: 0xf490 + +d_course_toads_turnpike_vertex_0x04011980: + symbol: d_course_toads_turnpike_vertex_0x04011980 + type: mk64:course_vtx + count: 50 + offset: 0xf650 + +d_course_toads_turnpike_vertex_0x04011B80: + symbol: d_course_toads_turnpike_vertex_0x04011B80 + type: mk64:course_vtx + count: 21 + offset: 0xf810 + +d_course_toads_turnpike_vertex_0x04011C70: + symbol: d_course_toads_turnpike_vertex_0x04011C70 + type: mk64:course_vtx + count: 50 + offset: 0xf8e2 + +d_course_toads_turnpike_vertex_0x04011E70: + symbol: d_course_toads_turnpike_vertex_0x04011E70 + type: mk64:course_vtx + count: 22 + offset: 0xfaa2 + +d_course_toads_turnpike_vertex_0x04011F70: + symbol: d_course_toads_turnpike_vertex_0x04011F70 + type: mk64:course_vtx + count: 48 + offset: 0xfb82 + +d_course_toads_turnpike_vertex_0x04012150: + symbol: d_course_toads_turnpike_vertex_0x04012150 + type: mk64:course_vtx + count: 38 + offset: 0xfd26 + +d_course_toads_turnpike_vertex_0x040122F0: + symbol: d_course_toads_turnpike_vertex_0x040122F0 + type: mk64:course_vtx + count: 49 + offset: 0xfe92 + +d_course_toads_turnpike_vertex_0x040124E0: + symbol: d_course_toads_turnpike_vertex_0x040124E0 + type: mk64:course_vtx + count: 50 + offset: 0x10044 + +d_course_toads_turnpike_vertex_0x040126E0: + symbol: d_course_toads_turnpike_vertex_0x040126E0 + type: mk64:course_vtx + count: 21 + offset: 0x10204 + +d_course_toads_turnpike_vertex_0x040127D0: + symbol: d_course_toads_turnpike_vertex_0x040127D0 + type: mk64:course_vtx + count: 49 + offset: 0x102d6 + +d_course_toads_turnpike_vertex_0x040129C0: + symbol: d_course_toads_turnpike_vertex_0x040129C0 + type: mk64:course_vtx + count: 49 + offset: 0x10488 + +d_course_toads_turnpike_vertex_0x04012BB0: + symbol: d_course_toads_turnpike_vertex_0x04012BB0 + type: mk64:course_vtx + count: 16 + offset: 0x1063a + +d_course_toads_turnpike_vertex_0x04012C50: + symbol: d_course_toads_turnpike_vertex_0x04012C50 + type: mk64:course_vtx + count: 50 + offset: 0x106c6 + +d_course_toads_turnpike_vertex_0x04012E50: + symbol: d_course_toads_turnpike_vertex_0x04012E50 + type: mk64:course_vtx + count: 22 + offset: 0x10886 + +d_course_toads_turnpike_vertex_0x04012F50: + symbol: d_course_toads_turnpike_vertex_0x04012F50 + type: mk64:course_vtx + count: 50 + offset: 0x10966 + +d_course_toads_turnpike_vertex_0x04013150: + symbol: d_course_toads_turnpike_vertex_0x04013150 + type: mk64:course_vtx + count: 22 + offset: 0x10b26 + +d_course_toads_turnpike_vertex_0x04013250: + symbol: d_course_toads_turnpike_vertex_0x04013250 + type: mk64:course_vtx + count: 48 + offset: 0x10c06 + +d_course_toads_turnpike_vertex_0x04013430: + symbol: d_course_toads_turnpike_vertex_0x04013430 + type: mk64:course_vtx + count: 48 + offset: 0x10daa + +d_course_toads_turnpike_vertex_0x04013610: + symbol: d_course_toads_turnpike_vertex_0x04013610 + type: mk64:course_vtx + count: 48 + offset: 0x10f4e + +d_course_toads_turnpike_vertex_0x040137F0: + symbol: d_course_toads_turnpike_vertex_0x040137F0 + type: mk64:course_vtx + count: 48 + offset: 0x110f2 + +d_course_toads_turnpike_vertex_0x040139D0: + symbol: d_course_toads_turnpike_vertex_0x040139D0 + type: mk64:course_vtx + count: 18 + offset: 0x11296 + +d_course_toads_turnpike_vertex_0x04013A90: + symbol: d_course_toads_turnpike_vertex_0x04013A90 + type: mk64:course_vtx + count: 48 + offset: 0x1133e + +d_course_toads_turnpike_vertex_0x04013C70: + symbol: d_course_toads_turnpike_vertex_0x04013C70 + type: mk64:course_vtx + count: 24 + offset: 0x114e2 + +d_course_toads_turnpike_vertex_0x04013D90: + symbol: d_course_toads_turnpike_vertex_0x04013D90 + type: mk64:course_vtx + count: 50 + offset: 0x115de + +d_course_toads_turnpike_vertex_0x04013F90: + symbol: d_course_toads_turnpike_vertex_0x04013F90 + type: mk64:course_vtx + count: 36 + offset: 0x1179e + +d_course_toads_turnpike_vertex_0x04014110: + symbol: d_course_toads_turnpike_vertex_0x04014110 + type: mk64:course_vtx + count: 48 + offset: 0x118ee + +d_course_toads_turnpike_vertex_0x040142F0: + symbol: d_course_toads_turnpike_vertex_0x040142F0 + type: mk64:course_vtx + count: 38 + offset: 0x11a92 + +d_course_toads_turnpike_vertex_0x04014490: + symbol: d_course_toads_turnpike_vertex_0x04014490 + type: mk64:course_vtx + count: 48 + offset: 0x11bfe + +d_course_toads_turnpike_vertex_0x04014670: + symbol: d_course_toads_turnpike_vertex_0x04014670 + type: mk64:course_vtx + count: 36 + offset: 0x11da2 + +d_course_toads_turnpike_vertex_0x040147F0: + symbol: d_course_toads_turnpike_vertex_0x040147F0 + type: mk64:course_vtx + count: 50 + offset: 0x11ef2 + +d_course_toads_turnpike_vertex_0x040149F0: + symbol: d_course_toads_turnpike_vertex_0x040149F0 + type: mk64:course_vtx + count: 22 + offset: 0x120b2 + +d_course_toads_turnpike_vertex_0x04014AF0: + symbol: d_course_toads_turnpike_vertex_0x04014AF0 + type: mk64:course_vtx + count: 48 + offset: 0x12192 + +d_course_toads_turnpike_vertex_0x04014CD0: + symbol: d_course_toads_turnpike_vertex_0x04014CD0 + type: mk64:course_vtx + count: 36 + offset: 0x12336 + +d_course_toads_turnpike_vertex_0x04014E50: + symbol: d_course_toads_turnpike_vertex_0x04014E50 + type: mk64:course_vtx + count: 50 + offset: 0x12486 + +d_course_toads_turnpike_vertex_0x04015050: + symbol: d_course_toads_turnpike_vertex_0x04015050 + type: mk64:course_vtx + count: 18 + offset: 0x12646 + +d_course_toads_turnpike_vertex_0x04015110: + symbol: d_course_toads_turnpike_vertex_0x04015110 + type: mk64:course_vtx + count: 40 + offset: 0x126ee + +d_course_toads_turnpike_vertex_0x040152D0: + symbol: d_course_toads_turnpike_vertex_0x040152D0 + type: mk64:course_vtx + count: 20 + offset: 0x12876 + +d_course_toads_turnpike_vertex_0x040153B0: + symbol: d_course_toads_turnpike_vertex_0x040153B0 + type: mk64:course_vtx + count: 20 + offset: 0x1293a + +d_course_toads_turnpike_vertex_0x04015490: + symbol: d_course_toads_turnpike_vertex_0x04015490 + type: mk64:course_vtx + count: 48 + offset: 0x129fe + +d_course_toads_turnpike_vertex_0x04015670: + symbol: d_course_toads_turnpike_vertex_0x04015670 + type: mk64:course_vtx + count: 16 + offset: 0x12ba2 + +d_course_toads_turnpike_vertex_0x04015710: + symbol: d_course_toads_turnpike_vertex_0x04015710 + type: mk64:course_vtx + count: 20 + offset: 0x12c2e + +d_course_toads_turnpike_vertex_0x040157F0: + symbol: d_course_toads_turnpike_vertex_0x040157F0 + type: mk64:course_vtx + count: 20 + offset: 0x12cf2 + +d_course_toads_turnpike_vertex_0x040158D0: + symbol: d_course_toads_turnpike_vertex_0x040158D0 + type: mk64:course_vtx + count: 50 + offset: 0x12db6 + +d_course_toads_turnpike_vertex_0x04015AD0: + symbol: d_course_toads_turnpike_vertex_0x04015AD0 + type: mk64:course_vtx + count: 40 + offset: 0x12f76 + +d_course_toads_turnpike_vertex_0x04015C90: + symbol: d_course_toads_turnpike_vertex_0x04015C90 + type: mk64:course_vtx + count: 50 + offset: 0x130fe + +d_course_toads_turnpike_vertex_0x04015E90: + symbol: d_course_toads_turnpike_vertex_0x04015E90 + type: mk64:course_vtx + count: 22 + offset: 0x132be + +d_course_toads_turnpike_vertex_0x04015F90: + symbol: d_course_toads_turnpike_vertex_0x04015F90 + type: mk64:course_vtx + count: 50 + offset: 0x1339e + +d_course_toads_turnpike_vertex_0x04016190: + symbol: d_course_toads_turnpike_vertex_0x04016190 + type: mk64:course_vtx + count: 50 + offset: 0x1355e + +d_course_toads_turnpike_vertex_0x04016390: + symbol: d_course_toads_turnpike_vertex_0x04016390 + type: mk64:course_vtx + count: 8 + offset: 0x1371e + +d_course_toads_turnpike_vertex_0x04016410: + symbol: d_course_toads_turnpike_vertex_0x04016410 + type: mk64:course_vtx + count: 48 + offset: 0x1378e + +d_course_toads_turnpike_vertex_0x040165F0: + symbol: d_course_toads_turnpike_vertex_0x040165F0 + type: mk64:course_vtx + count: 50 + offset: 0x13932 + +d_course_toads_turnpike_vertex_0x040167F0: + symbol: d_course_toads_turnpike_vertex_0x040167F0 + type: mk64:course_vtx + count: 8 + offset: 0x13af2 + +d_course_toads_turnpike_vertex_0x04016870: + symbol: d_course_toads_turnpike_vertex_0x04016870 + type: mk64:course_vtx + count: 50 + offset: 0x13b62 + +d_course_toads_turnpike_vertex_0x04016A70: + symbol: d_course_toads_turnpike_vertex_0x04016A70 + type: mk64:course_vtx + count: 34 + offset: 0x13d22 + +d_course_toads_turnpike_vertex_0x04016BD0: + symbol: d_course_toads_turnpike_vertex_0x04016BD0 + type: mk64:course_vtx + count: 50 + offset: 0x13e56 + +d_course_toads_turnpike_vertex_0x04016DD0: + symbol: d_course_toads_turnpike_vertex_0x04016DD0 + type: mk64:course_vtx + count: 50 + offset: 0x14016 + +d_course_toads_turnpike_vertex_0x04016FD0: + symbol: d_course_toads_turnpike_vertex_0x04016FD0 + type: mk64:course_vtx + count: 4 + offset: 0x141d6 + +d_course_toads_turnpike_vertex_0x04017010: + symbol: d_course_toads_turnpike_vertex_0x04017010 + type: mk64:course_vtx + count: 50 + offset: 0x1420e + +d_course_toads_turnpike_vertex_0x04017210: + symbol: d_course_toads_turnpike_vertex_0x04017210 + type: mk64:course_vtx + count: 22 + offset: 0x143ce + +d_course_toads_turnpike_vertex_0x04017310: + symbol: d_course_toads_turnpike_vertex_0x04017310 + type: mk64:course_vtx + count: 50 + offset: 0x144ae + +d_course_toads_turnpike_vertex_0x04017510: + symbol: d_course_toads_turnpike_vertex_0x04017510 + type: mk64:course_vtx + count: 18 + offset: 0x1466e + +d_course_toads_turnpike_vertex_0x040175D0: + symbol: d_course_toads_turnpike_vertex_0x040175D0 + type: mk64:course_vtx + count: 50 + offset: 0x14716 + +d_course_toads_turnpike_vertex_0x040177D0: + symbol: d_course_toads_turnpike_vertex_0x040177D0 + type: mk64:course_vtx + count: 36 + offset: 0x148d6 + +d_course_toads_turnpike_vertex_0x04017950: + symbol: d_course_toads_turnpike_vertex_0x04017950 + type: mk64:course_vtx + count: 48 + offset: 0x14a26 + +d_course_toads_turnpike_vertex_0x04017B30: + symbol: d_course_toads_turnpike_vertex_0x04017B30 + type: mk64:course_vtx + count: 50 + offset: 0x14bca + +d_course_toads_turnpike_vertex_0x04017D30: + symbol: d_course_toads_turnpike_vertex_0x04017D30 + type: mk64:course_vtx + count: 18 + offset: 0x14d8a + +d_course_toads_turnpike_vertex_0x04017DF0: + symbol: d_course_toads_turnpike_vertex_0x04017DF0 + type: mk64:course_vtx + count: 50 + offset: 0x14e32 + +d_course_toads_turnpike_vertex_0x04017FF0: + symbol: d_course_toads_turnpike_vertex_0x04017FF0 + type: mk64:course_vtx + count: 22 + offset: 0x14ff2 + +d_course_toads_turnpike_vertex_0x040180F0: + symbol: d_course_toads_turnpike_vertex_0x040180F0 + type: mk64:course_vtx + count: 50 + offset: 0x150d2 + +d_course_toads_turnpike_vertex_0x040182F0: + symbol: d_course_toads_turnpike_vertex_0x040182F0 + type: mk64:course_vtx + count: 22 + offset: 0x15292 + +d_course_toads_turnpike_vertex_0x040183F0: + symbol: d_course_toads_turnpike_vertex_0x040183F0 + type: mk64:course_vtx + count: 49 + offset: 0x15372 + +d_course_toads_turnpike_vertex_0x040185E0: + symbol: d_course_toads_turnpike_vertex_0x040185E0 + type: mk64:course_vtx + count: 50 + offset: 0x15524 + +d_course_toads_turnpike_vertex_0x040187E0: + symbol: d_course_toads_turnpike_vertex_0x040187E0 + type: mk64:course_vtx + count: 50 + offset: 0x156e4 + +d_course_toads_turnpike_vertex_0x040189E0: + symbol: d_course_toads_turnpike_vertex_0x040189E0 + type: mk64:course_vtx + count: 48 + offset: 0x158a4 + +d_course_toads_turnpike_vertex_0x04018BC0: + symbol: d_course_toads_turnpike_vertex_0x04018BC0 + type: mk64:course_vtx + count: 39 + offset: 0x15a48 diff --git a/yamls/us/models/tracks/wario_stadium/wario_stadium_data.yml b/yamls/us/models/tracks/wario_stadium/wario_stadium_data.yml new file mode 100644 index 000000000..191c63022 --- /dev/null +++ b/yamls/us/models/tracks/wario_stadium/wario_stadium_data.yml @@ -0,0 +1,1140 @@ +:config: + segments: + - [0x06, 0x8804A0] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/wario_stadium/wario_stadium_data.yml" + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_67F15C"] + - [0x05000800, "textures/other_textures/texture_67F450"] + - [0x05001000, "textures/other_textures/sign_wario_face"] + - [0x05002000, "textures/other_textures/texture_670AC8"] + - [0x05003000, "textures/other_textures/checkerboard_black_white"] + - [0x05003800, "textures/other_textures/texture_64C11C"] + - [0x05004000, "textures/other_textures/texture_64C7B4"] + - [0x05004800, "textures/other_textures/texture_668228"] + - [0x05005000, "textures/other_textures/texture_668358"] + - [0x05005800, "textures/other_textures/texture_66AEB8"] + - [0x05006000, "textures/other_textures/texture_677A40"] + - [0x05006800, "textures/other_textures/texture_67E428"] + - [0x05007800, "textures/other_textures/texture_643A34"] + - [0x05008000, "textures/other_textures/texture_66EBF0"] + - [0x05008800, "textures/other_textures/texture_68272C"] + - [0x05009800, "textures/other_textures/texture_682928"] + - [0x0500A800, "textures/other_textures/texture_682B24"] + - [0x0500B800, "textures/other_textures/texture_682D20"] + - [0x0500C800, "textures/other_textures/texture_682F1C"] + - [0x0500D800, "textures/other_textures/texture_683118"] + # Segment 7 + - [0x7000000, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_0"] + - [0x7000060, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_60"] + - [0x70000C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_C0"] + - [0x7000120, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_120"] + - [0x7000180, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_180"] + - [0x70001E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1E0"] + - [0x7000240, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_240"] + - [0x70002A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2A0"] + - [0x7000300, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_300"] + - [0x7000360, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_360"] + - [0x70003B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B0"] + - [0x70003C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3C0"] + - [0x7000428, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_428"] + - [0x7000500, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_500"] + - [0x70005D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D8"] + - [0x7000638, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_638"] + - [0x70006F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6F8"] + - [0x70007C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7C0"] + - [0x7000880, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_880"] + - [0x70008F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8F0"] + - [0x7000960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_960"] + - [0x7000A20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A20"] + - [0x7000A88, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A88"] + - [0x7000AE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_AE8"] + - [0x7000B60, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_B60"] + - [0x7000BD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_BD8"] + - [0x7000C50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_C50"] + - [0x7000CC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_CC8"] + - [0x7000D50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_D50"] + - [0x7000DD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_DD0"] + - [0x7000E48, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_E48"] + - [0x7000EC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_EC0"] + - [0x7000F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F08"] + - [0x7000F20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F20"] + - [0x7000F38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F38"] + - [0x7000FA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_FA8"] + - [0x7001018, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1018"] + - [0x7001088, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1088"] + - [0x7001100, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1100"] + - [0x7001180, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1180"] + - [0x70011E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_11E0"] + - [0x7001290, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1290"] + - [0x7001348, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1348"] + - [0x70013D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_13D0"] + - [0x7001458, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1458"] + - [0x70014C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_14C8"] + - [0x7001540, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1540"] + - [0x70015C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_15C8"] + - [0x7001640, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1640"] + - [0x70016B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_16B0"] + - [0x7001710, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1710"] + - [0x7001778, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1778"] + - [0x70017F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_17F0"] + - [0x7001860, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1860"] + - [0x70018D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_18D8"] + - [0x7001948, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1948"] + - [0x70019D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_19D0"] + - [0x7001A50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1A50"] + - [0x7001B10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1B10"] + - [0x7001B70, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1B70"] + - [0x7001BD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1BD0"] + - [0x7001C40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1C40"] + - [0x7001D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1D20"] + - [0x7001DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1DE8"] + - [0x7001EA0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1EA0"] + - [0x7001F28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1F28"] + - [0x7001FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1FC8"] + - [0x70020A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_20A0"] + - [0x7002108, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2108"] + - [0x70021D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_21D8"] + - [0x7002238, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2238"] + - [0x7002298, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2298"] + - [0x7002318, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2318"] + - [0x7002390, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2390"] + - [0x7002400, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2400"] + - [0x70024D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_24D0"] + - [0x7002598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2598"] + - [0x7002658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2658"] + - [0x70026C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_26C8"] + - [0x7002780, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2780"] + - [0x7002848, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2848"] + - [0x7002908, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2908"] + - [0x70029B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_29B8"] + - [0x7002A28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2A28"] + - [0x7002AB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2AB0"] + - [0x7002BB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2BB0"] + - [0x7002C18, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2C18"] + - [0x7002C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2C80"] + - [0x7002CE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2CE8"] + - [0x7002DB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2DB0"] + - [0x7002E90, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2E90"] + - [0x7002F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2F08"] + - [0x7002F78, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2F78"] + - [0x7002FE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2FE8"] + - [0x7003070, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3070"] + - [0x70030E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_30E8"] + - [0x7003160, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3160"] + - [0x70031F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_31F0"] + - [0x7003260, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3260"] + - [0x70032D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_32D0"] + - [0x7003350, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3350"] + - [0x70033C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_33C0"] + - [0x7003438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3438"] + - [0x70034A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_34A0"] + - [0x7003518, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3518"] + - [0x7003598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3598"] + - [0x70035F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_35F8"] + - [0x7003660, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3660"] + - [0x70036D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_36D0"] + - [0x7003758, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3758"] + - [0x70037E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_37E0"] + - [0x7003848, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3848"] + - [0x70038F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_38F8"] + - [0x7003960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3960"] + - [0x70039D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_39D0"] + - [0x7003A30, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3A30"] + - [0x7003AA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3AA8"] + - [0x7003B08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B08"] + - [0x7003B68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B68"] + - [0x7003BD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3BD0"] + - [0x7003C40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3C40"] + - [0x7003CA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3CA8"] + - [0x7003D10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3D10"] + - [0x7003D80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3D80"] + - [0x7003DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3DE8"] + - [0x7003E50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3E50"] + - [0x7003EC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3EC0"] + - [0x7003F70, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3F70"] + - [0x7004038, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4038"] + - [0x7004098, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4098"] + - [0x7004168, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4168"] + - [0x7004218, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4218"] + - [0x70042C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_42C8"] + - [0x7004378, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4378"] + - [0x7004438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4438"] + - [0x70044E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_44E8"] + - [0x7004598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4598"] + - [0x7004658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4658"] + - [0x70046B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_46B8"] + - [0x7004768, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4768"] + - [0x70047D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_47D8"] + - [0x7004808, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4808"] + - [0x7004930, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4930"] + - [0x7004AA0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4AA0"] + - [0x7004BA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4BA8"] + - [0x7004D68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4D68"] + - [0x7004EB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4EB8"] + - [0x7004FB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4FB8"] + - [0x70050A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_50A0"] + - [0x7005208, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5208"] + - [0x70052F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_52F8"] + - [0x70053D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_53D0"] + - [0x7005508, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5508"] + - [0x7005590, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5590"] + - [0x7005670, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5670"] + - [0x70056E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_56E0"] + - [0x7005768, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5768"] + - [0x70057F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_57F8"] + - [0x7005888, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5888"] + - [0x7005938, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5938"] + - [0x70059C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_59C0"] + - [0x7005A38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5A38"] + - [0x7005AA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5AA8"] + - [0x7005B38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5B38"] + - [0x7005BB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5BB8"] + - [0x7005C30, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5C30"] + - [0x7005CB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5CB0"] + - [0x7005D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D20"] + - [0x7005D90, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D90"] + - [0x7005E00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5E00"] + - [0x7005E88, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5E88"] + - [0x7005F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5F08"] + - [0x7005FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5FC8"] + - [0x7006068, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6068"] + - [0x7006108, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6108"] + - [0x7006198, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6198"] + - [0x70062C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_62C8"] + - [0x7006390, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6390"] + - [0x7006418, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6418"] + - [0x70064E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_64E8"] + - [0x70065A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_65A0"] + - [0x7006658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6658"] + - [0x7006700, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6700"] + - [0x70067B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_67B8"] + - [0x7006878, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6878"] + - [0x70068F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_68F0"] + - [0x7006950, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6950"] + - [0x7006A10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6A10"] + - [0x7006AE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6AE8"] + - [0x7006BE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6BE0"] + - [0x7006C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6C80"] + - [0x7006D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6D20"] + - [0x7006DD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6DD8"] + - [0x7006EC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6EC8"] + - [0x7006FC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6FC0"] + - [0x7007090, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7090"] + - [0x7007220, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7220"] + - [0x7007338, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7338"] + - [0x70073F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_73F0"] + - [0x7007530, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7530"] + - [0x70075A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_75A8"] + - [0x7007630, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7630"] + - [0x70076E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_76E0"] + - [0x70077A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_77A8"] + - [0x7007838, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7838"] + - [0x7007960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7960"] + - [0x7007A40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7A40"] + - [0x7007B20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7B20"] + - [0x7007BE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7BE0"] + - [0x7007D00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7D00"] + - [0x7007DF8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7DF8"] + - [0x7007ED0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7ED0"] + - [0x7007FB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7FB0"] + - [0x7008030, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8030"] + - [0x70080E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_80E8"] + - [0x7008240, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8240"] + - [0x70082F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_82F8"] + - [0x70083A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_83A0"] + - [0x7008438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8438"] + - [0x7008510, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8510"] + - [0x70085F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_85F0"] + - [0x7008678, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8678"] + - [0x7008708, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8708"] + - [0x7008798, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8798"] + - [0x70088A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_88A0"] + - [0x7008A68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8A68"] + - [0x7008C28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8C28"] + - [0x7008D28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8D28"] + - [0x7008DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8DE8"] + - [0x7008EF0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8EF0"] + - [0x7008FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8FC8"] + - [0x7009090, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9090"] + - [0x7009120, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9120"] + - [0x70091E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_91E8"] + - [0x7009328, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9328"] + - [0x70093B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_93B0"] + - [0x7009430, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9430"] + - [0x7009590, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9590"] + - [0x7009668, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9668"] + - [0x7009760, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9760"] + - [0x7009820, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9820"] + - [0x70098A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_98A0"] + - [0x7009998, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9998"] + - [0x7009AD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9AD8"] + - [0x7009C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9C80"] + - [0x7009D00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9D00"] + - [0x7009D78, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9D78"] + - [0x7009E00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9E00"] + - [0x7009EE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9EE0"] + - [0x7009F18, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9F18"] + - [0x7009F28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9F28"] + - [0x700A0C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A0C8"] + - [0x700A0D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A0D8"] + - [0x700A148, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A148"] + - [0x700A1B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A1B8"] + - [0x700A228, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A228"] + - [0x700A248, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A248"] + - [0x700A448, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A448"] + - [0x700A458, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A458"] + - [0x700A4A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A4A8"] + - [0x700A4C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A4C0"] + # Segment 4 + - [0x4000000, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000000"] + - [0x4000040, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000040"] + - [0x4000080, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000080"] + - [0x40000c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040000C0"] + - [0x4000100, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000100"] + - [0x4000140, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000140"] + - [0x4000180, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000180"] + - [0x40001c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040001C0"] + - [0x4000200, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000200"] + - [0x4000240, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000240"] + - [0x4000290, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000290"] + - [0x4000410, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000410"] + - [0x4000450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000450"] + - [0x40005d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040005D0"] + - [0x4000610, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000610"] + - [0x4000650, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000650"] + - [0x4000710, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000710"] + - [0x4000750, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000750"] + - [0x4000810, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000810"] + - [0x4000860, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000860"] + - [0x4000920, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000920"] + - [0x4000960, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000960"] + - [0x4000a20, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000A20"] + - [0x4000ae0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000AE0"] + - [0x4000ba0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000BA0"] + - [0x4000be0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000BE0"] + - [0x4000c30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000C30"] + - [0x4000d30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000D30"] + - [0x4000e30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000E30"] + - [0x4000f00, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000F00"] + - [0x4000fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000FD0"] + - [0x40010e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040010E0"] + - [0x40011d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040011D0"] + - [0x40012d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040012D0"] + - [0x40013d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040013D0"] + - [0x4001490, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001490"] + - [0x4001550, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001550"] + - [0x4001610, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001610"] + - [0x4001710, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001710"] + - [0x4001820, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001820"] + - [0x4001860, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001860"] + - [0x4001a60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001A60"] + - [0x4001a90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001A90"] + - [0x4001b10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001B10"] + - [0x4001b50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001B50"] + - [0x4001c50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001C50"] + - [0x4001db0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001DB0"] + - [0x4001e70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001E70"] + - [0x4001f40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001F40"] + - [0x40020c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040020C0"] + - [0x40021e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040021E0"] + - [0x40022a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040022A0"] + - [0x40022e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040022E0"] + - [0x4002360, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002360"] + - [0x4002450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002450"] + - [0x4002530, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002530"] + - [0x4002630, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002630"] + - [0x40026f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040026F0"] + - [0x40027d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040027D0"] + - [0x4002910, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002910"] + - [0x4002ad0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002AD0"] + - [0x4002b10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002B10"] + - [0x4002b50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002B50"] + - [0x4002c10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002C10"] + - [0x4002cd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002CD0"] + - [0x4002e10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002E10"] + - [0x4002e90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002E90"] + - [0x4002f90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002F90"] + - [0x4003110, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003110"] + - [0x40032d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040032D0"] + - [0x40033d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040033D0"] + - [0x4003530, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003530"] + - [0x40035b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040035B0"] + - [0x4003790, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003790"] + - [0x40038f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040038F0"] + - [0x4003930, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003930"] + - [0x4003970, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003970"] + - [0x4003ab0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003AB0"] + - [0x4003b90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003B90"] + - [0x4003c50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003C50"] + - [0x4003d10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003D10"] + - [0x4003e90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003E90"] + - [0x4003fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003FD0"] + - [0x4004090, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004090"] + - [0x4004150, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004150"] + - [0x4004250, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004250"] + - [0x4004330, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004330"] + - [0x40043b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040043B0"] + - [0x40044b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040044B0"] + - [0x40044f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040044F0"] + - [0x40046b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040046B0"] + - [0x40047b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040047B0"] + - [0x4004860, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004860"] + - [0x40048a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040048A0"] + - [0x40049a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040049A0"] + - [0x4004a60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004A60"] + - [0x4004b60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004B60"] + - [0x4004ca0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004CA0"] + - [0x4004ea0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004EA0"] + - [0x4004ed0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004ED0"] + - [0x4004f50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004F50"] + - [0x4004fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004FD0"] + - [0x4005050, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005050"] + - [0x4005110, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005110"] + - [0x4005220, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005220"] + - [0x40052b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040052B0"] + - [0x4005320, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005320"] + - [0x40053a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040053A0"] + - [0x4005470, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005470"] + - [0x4005520, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005520"] + - [0x40055b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040055B0"] + - [0x4005680, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005680"] + - [0x4005700, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005700"] + - [0x4005770, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005770"] + - [0x4005810, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005810"] + - [0x4005890, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005890"] + - [0x4005910, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005910"] + - [0x4005970, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005970"] + - [0x40059f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040059F0"] + - [0x4005aa0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005AA0"] + - [0x4005ae0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005AE0"] + - [0x4005b30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005B30"] + - [0x4005ba0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005BA0"] + - [0x4005c60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005C60"] + - [0x4005d30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005D30"] + - [0x4005d80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005D80"] + - [0x4005dd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005DD0"] + - [0x4005e90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005E90"] + - [0x4005ed0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005ED0"] + - [0x4005fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005FD0"] + - [0x4006010, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006010"] + - [0x4006050, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006050"] + - [0x40060a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040060A0"] + - [0x4006160, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006160"] + - [0x40061d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040061D0"] + - [0x4006250, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006250"] + - [0x4006310, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006310"] + - [0x4006380, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006380"] + - [0x40063d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040063D0"] + - [0x4006410, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006410"] + - [0x4006450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006450"] + - [0x4006500, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006500"] + - [0x4006540, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006540"] + - [0x4006580, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006580"] + - [0x4006670, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006670"] + - [0x40066b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040066B0"] + - [0x40066f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040066F0"] + - [0x4006730, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006730"] + - [0x4006770, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006770"] + - [0x40067b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040067B0"] + - [0x40067f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040067F0"] + - [0x4006830, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006830"] + - [0x40068f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040068F0"] + - [0x4006930, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006930"] + - [0x4006970, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006970"] + - [0x40069b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040069B0"] + - [0x40069f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040069F0"] + - [0x4006a30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006A30"] + - [0x4006af0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006AF0"] + - [0x4006b30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006B30"] + - [0x4006b70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006B70"] + - [0x4006bb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006BB0"] + - [0x4006bf0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006BF0"] + - [0x4006d70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006D70"] + - [0x4006dc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006DC0"] + - [0x4006fc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006FC0"] + - [0x4007180, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007180"] + - [0x40071c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040071C0"] + - [0x40073c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040073C0"] + - [0x4007490, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007490"] + - [0x4007680, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007680"] + - [0x4007880, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007880"] + - [0x40079d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040079D0"] + - [0x4007a10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007A10"] + - [0x4007c00, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007C00"] + - [0x4007c80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007C80"] + - [0x4007cd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007CD0"] + - [0x4007e40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007E40"] + - [0x4007e90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007E90"] + - [0x4007f90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007F90"] + - [0x4007fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007FD0"] + - [0x40081d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040081D0"] + - [0x4008380, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008380"] + - [0x40083c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040083C0"] + - [0x4008440, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008440"] + - [0x4008580, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008580"] + - [0x4008600, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008600"] + - [0x40086c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040086C0"] + - [0x40088b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040088B0"] + - [0x4008990, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008990"] + - [0x40089d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040089D0"] + - [0x4008a90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008A90"] + - [0x4008b90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008B90"] + - [0x4008be0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008BE0"] + - [0x4008cb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008CB0"] + - [0x4008e50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008E50"] + - [0x4008f50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008F50"] + - [0x4009130, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009130"] + - [0x4009170, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009170"] + - [0x4009250, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009250"] + - [0x40092e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040092E0"] + - [0x4009350, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009350"] + - [0x4009510, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009510"] + - [0x40095e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040095E0"] + - [0x4009670, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009670"] + - [0x40097b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040097B0"] + - [0x4009820, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009820"] + - [0x4009890, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009890"] + - [0x4009a20, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009A20"] + - [0x4009ba0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009BA0"] + - [0x4009da0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009DA0"] + - [0x4009f20, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009F20"] + - [0x400a110, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A110"] + - [0x400a1a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A1A0"] + - [0x400a3a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A3A0"] + - [0x400a3d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A3D0"] + - [0x400a5c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A5C0"] + - [0x400a7b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A7B0"] + - [0x400a990, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A990"] + - [0x400ab90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AB90"] + - [0x400aca0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400ACA0"] + - [0x400ae90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AE90"] + - [0x400afc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AFC0"] + - [0x400b170, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B170"] + - [0x400b370, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B370"] + - [0x400b520, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B520"] + - [0x400b700, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B700"] + - [0x400b830, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B830"] + - [0x400ba30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BA30"] + - [0x400bb50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BB50"] + - [0x400bd30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BD30"] + - [0x400bda0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BDA0"] + - [0x400bf80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BF80"] + - [0x400c0f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C0F0"] + - [0x400c2f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C2F0"] + - [0x400c4b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C4B0"] + - [0x400c5f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C5F0"] + - [0x400c620, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C620"] + - [0x400c800, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C800"] + - [0x400c990, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C990"] + - [0x400cb80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CB80"] + - [0x400cd80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CD80"] + - [0x400ce10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CE10"] + - [0x400d010, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D010"] + - [0x400d210, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D210"] + - [0x400d350, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D350"] + - [0x400d550, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D550"] + - [0x400d590, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D590"] + - [0x400d790, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D790"] + - [0x400d7d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D7D0"] + - [0x400d890, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D890"] + - [0x400da70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DA70"] + - [0x400dab0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DAB0"] + - [0x400dbb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DBB0"] + - [0x400ddb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DDB0"] + - [0x400dfb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DFB0"] + - [0x400e0f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E0F0"] + - [0x400e2e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E2E0"] + - [0x400e4d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E4D0"] + - [0x400e6d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E6D0"] + - [0x400e7c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E7C0"] + - [0x400e940, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E940"] + - [0x400eb40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EB40"] + - [0x400ebc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EBC0"] + - [0x400edc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EDC0"] + - [0x400ef40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EF40"] + - [0x400f120, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F120"] + - [0x400f2c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F2C0"] + - [0x400f390, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F390"] + - [0x400f4d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F4D0"] + - [0x400f6b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F6B0"] + - [0x400f730, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F730"] + - [0x400f930, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F930"] + - [0x400fa50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FA50"] + - [0x400fc10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FC10"] + - [0x400fe10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FE10"] + - [0x4010010, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010010"] + - [0x40100d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040100D0"] + - [0x40102d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040102D0"] + - [0x4010390, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010390"] + - [0x4010450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010450"] + - [0x40105d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040105D0"] + - [0x40107c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040107C0"] + - [0x40107f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040107F0"] + - [0x4010870, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010870"] + - [0x4010a70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010A70"] + - [0x4010b40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010B40"] + - [0x4010b80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010B80"] + - [0x4010d80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010D80"] + - [0x4010e80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010E80"] + - [0x4010fe0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010FE0"] + - [0x40110b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040110B0"] + - [0x40110f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040110F0"] + - [0x40112f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040112F0"] + - [0x4011330, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011330"] + - [0x4011470, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011470"] + - [0x4011670, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011670"] + - [0x4011800, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011800"] + - [0x40119e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040119E0"] + - [0x4011b70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011B70"] + - [0x4011d70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011D70"] + - [0x4011f30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011F30"] + - [0x40120b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040120B0"] + - [0x4012170, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012170"] + - [0x4012310, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012310"] + - [0x4012470, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012470"] + - [0x40125f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040125F0"] + - [0x4012790, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012790"] + - [0x4012990, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012990"] + - [0x4012b30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012B30"] + - [0x4012d30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012D30"] + - [0x4012f30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012F30"] + - [0x4013120, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013120"] + - [0x4013320, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013320"] + - [0x4013520, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013520"] + - [0x40135c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040135C0"] + - [0x40137a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040137A0"] + - [0x40139a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040139A0"] + - [0x4013a60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013A60"] + - [0x4013aa0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013AA0"] + - [0x4013ca0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013CA0"] + - [0x4013e40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013E40"] + - [0x4014040, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014040"] + - [0x4014140, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014140"] + - [0x4014340, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014340"] + - [0x40143c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040143C0"] + - [0x4014580, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014580"] + - [0x4014770, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014770"] + - [0x4014860, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014860"] + - [0x4014a60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014A60"] + - [0x4014c50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014C50"] + - [0x4014cd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014CD0"] + - [0x4014e30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014E30"] + - [0x4014f10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014F10"] + - [0x4015100, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015100"] + - [0x4015300, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015300"] + - [0x40154f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040154F0"] + - [0x40155b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040155B0"] + - [0x40157b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040157B0"] + - [0x40158d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040158D0"] + - [0x4015ad0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015AD0"] + - [0x4015b80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015B80"] + - [0x4015cc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015CC0"] + - [0x4015ea0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015EA0"] + - [0x4015fa0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015FA0"] + - [0x4016190, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016190"] + - [0x4016390, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016390"] + - [0x4016470, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016470"] + - [0x4016650, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016650"] + - [0x4016830, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016830"] + - [0x4016a30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016A30"] + - [0x4016ab0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016AB0"] + - [0x4016b90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016B90"] + - [0x4016c50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016C50"] + - [0x4016db0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016DB0"] + - [0x4016e50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016E50"] + - [0x4017050, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017050"] + - [0x4017250, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017250"] + - [0x4017450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017450"] + - [0x4017570, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017570"] + - [0x4017630, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017630"] + - [0x40176f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040176F0"] + - [0x40177b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040177B0"] + - [0x40179b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040179B0"] + - [0x40179f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040179F0"] + - [0x4017a30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017A30"] + - [0x4017a70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017A70"] + - [0x4017ab0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017AB0"] + - [0x4017af0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017AF0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_wario_stadium_dl_0: + symbol: d_course_wario_stadium_dl_0 + type: gfx + offset: 0x0 +d_course_wario_stadium_dl_B8: + symbol: d_course_wario_stadium_dl_B8 + type: gfx + offset: 0xB8 +d_course_wario_stadium_dl_158: + symbol: d_course_wario_stadium_dl_158 + type: gfx + offset: 0x158 +d_course_wario_stadium_dl_1B8: + symbol: d_course_wario_stadium_dl_1B8 + type: gfx + offset: 0x1B8 +d_course_wario_stadium_dl_2A0: + symbol: d_course_wario_stadium_dl_2A0 + type: gfx + offset: 0x2A0 +d_course_wario_stadium_dl_350: + symbol: d_course_wario_stadium_dl_350 + type: gfx + offset: 0x350 +d_course_wario_stadium_dl_440: + symbol: d_course_wario_stadium_dl_440 + type: gfx + offset: 0x440 +d_course_wario_stadium_dl_4C0: + symbol: d_course_wario_stadium_dl_4C0 + type: gfx + offset: 0x4C0 +d_course_wario_stadium_dl_5E8: + symbol: d_course_wario_stadium_dl_5E8 + type: gfx + offset: 0x5E8 +d_course_wario_stadium_dl_668: + symbol: d_course_wario_stadium_dl_668 + type: gfx + offset: 0x668 +d_course_wario_stadium_dl_798: + symbol: d_course_wario_stadium_dl_798 + type: gfx + offset: 0x798 +d_course_wario_stadium_dl_830: + symbol: d_course_wario_stadium_dl_830 + type: gfx + offset: 0x830 +d_course_wario_stadium_dl_940: + symbol: d_course_wario_stadium_dl_940 + type: gfx + offset: 0x940 +d_course_wario_stadium_dl_990: + symbol: d_course_wario_stadium_dl_990 + type: gfx + offset: 0x990 +d_course_wario_stadium_dl_AB0: + symbol: d_course_wario_stadium_dl_AB0 + type: gfx + offset: 0xAB0 +d_course_wario_stadium_dl_B60: + symbol: d_course_wario_stadium_dl_B60 + type: gfx + offset: 0xB60 +d_course_wario_stadium_dl_C08: + symbol: d_course_wario_stadium_dl_C08 + type: gfx + offset: 0xC08 +d_course_wario_stadium_dl_C70: + symbol: d_course_wario_stadium_dl_C70 + type: gfx + offset: 0xC70 +d_course_wario_stadium_dl_D60: + symbol: d_course_wario_stadium_dl_D60 + type: gfx + offset: 0xD60 +d_course_wario_stadium_dl_E30: + symbol: d_course_wario_stadium_dl_E30 + type: gfx + offset: 0xE30 +d_course_wario_stadium_dl_ED0: + symbol: d_course_wario_stadium_dl_ED0 + type: gfx + offset: 0xED0 +d_course_wario_stadium_dl_F70: + symbol: d_course_wario_stadium_dl_F70 + type: gfx + offset: 0xF70 +d_course_wario_stadium_dl_1068: + symbol: d_course_wario_stadium_dl_1068 + type: gfx + offset: 0x1068 +d_course_wario_stadium_dl_1158: + symbol: d_course_wario_stadium_dl_1158 + type: gfx + offset: 0x1158 +d_course_wario_stadium_dl_11F8: + symbol: d_course_wario_stadium_dl_11F8 + type: gfx + offset: 0x11F8 +d_course_wario_stadium_dl_12E0: + symbol: d_course_wario_stadium_dl_12E0 + type: gfx + offset: 0x12E0 +d_course_wario_stadium_dl_13C0: + symbol: d_course_wario_stadium_dl_13C0 + type: gfx + offset: 0x13C0 +d_course_wario_stadium_dl_14A0: + symbol: d_course_wario_stadium_dl_14A0 + type: gfx + offset: 0x14A0 +d_course_wario_stadium_dl_1590: + symbol: d_course_wario_stadium_dl_1590 + type: gfx + offset: 0x1590 +d_course_wario_stadium_dl_1630: + symbol: d_course_wario_stadium_dl_1630 + type: gfx + offset: 0x1630 +d_course_wario_stadium_dl_1708: + symbol: d_course_wario_stadium_dl_1708 + type: gfx + offset: 0x1708 +d_course_wario_stadium_dl_17A8: + symbol: d_course_wario_stadium_dl_17A8 + type: gfx + offset: 0x17A8 +d_course_wario_stadium_dl_1868: + symbol: d_course_wario_stadium_dl_1868 + type: gfx + offset: 0x1868 +d_course_wario_stadium_dl_1908: + symbol: d_course_wario_stadium_dl_1908 + type: gfx + offset: 0x1908 +d_course_wario_stadium_dl_19E0: + symbol: d_course_wario_stadium_dl_19E0 + type: gfx + offset: 0x19E0 +d_course_wario_stadium_dl_1AB8: + symbol: d_course_wario_stadium_dl_1AB8 + type: gfx + offset: 0x1AB8 +d_course_wario_stadium_dl_1B48: + symbol: d_course_wario_stadium_dl_1B48 + type: gfx + offset: 0x1B48 +d_course_wario_stadium_dl_1BB0: + symbol: d_course_wario_stadium_dl_1BB0 + type: gfx + offset: 0x1BB0 +d_course_wario_stadium_dl_1CA8: + symbol: d_course_wario_stadium_dl_1CA8 + type: gfx + offset: 0x1CA8 +d_course_wario_stadium_dl_1D68: + symbol: d_course_wario_stadium_dl_1D68 + type: gfx + offset: 0x1D68 +d_course_wario_stadium_dl_1DF8: + symbol: d_course_wario_stadium_dl_1DF8 + type: gfx + offset: 0x1DF8 +d_course_wario_stadium_dl_1E70: + symbol: d_course_wario_stadium_dl_1E70 + type: gfx + offset: 0x1E70 +d_course_wario_stadium_dl_1FD8: + symbol: d_course_wario_stadium_dl_1FD8 + type: gfx + offset: 0x1FD8 +d_course_wario_stadium_dl_20A8: + symbol: d_course_wario_stadium_dl_20A8 + type: gfx + offset: 0x20A8 +d_course_wario_stadium_dl_21A8: + symbol: d_course_wario_stadium_dl_21A8 + type: gfx + offset: 0x21A8 +d_course_wario_stadium_dl_2218: + symbol: d_course_wario_stadium_dl_2218 + type: gfx + offset: 0x2218 +d_course_wario_stadium_dl_2308: + symbol: d_course_wario_stadium_dl_2308 + type: gfx + offset: 0x2308 +d_course_wario_stadium_dl_23B0: + symbol: d_course_wario_stadium_dl_23B0 + type: gfx + offset: 0x23B0 +d_course_wario_stadium_dl_2490: + symbol: d_course_wario_stadium_dl_2490 + type: gfx + offset: 0x2490 +d_course_wario_stadium_dl_2530: + symbol: d_course_wario_stadium_dl_2530 + type: gfx + offset: 0x2530 +d_course_wario_stadium_dl_2610: + symbol: d_course_wario_stadium_dl_2610 + type: gfx + offset: 0x2610 +d_course_wario_stadium_dl_2698: + symbol: d_course_wario_stadium_dl_2698 + type: gfx + offset: 0x2698 +d_course_wario_stadium_dl_2798: + symbol: d_course_wario_stadium_dl_2798 + type: gfx + offset: 0x2798 +d_course_wario_stadium_dl_2870: + symbol: d_course_wario_stadium_dl_2870 + type: gfx + offset: 0x2870 +d_course_wario_stadium_dl_2928: + symbol: d_course_wario_stadium_dl_2928 + type: gfx + offset: 0x2928 +d_course_wario_stadium_dl_29D0: + symbol: d_course_wario_stadium_dl_29D0 + type: gfx + offset: 0x29D0 +d_course_wario_stadium_dl_2AB0: + symbol: d_course_wario_stadium_dl_2AB0 + type: gfx + offset: 0x2AB0 +d_course_wario_stadium_dl_2B60: + symbol: d_course_wario_stadium_dl_2B60 + type: gfx + offset: 0x2B60 +d_course_wario_stadium_dl_2C30: + symbol: d_course_wario_stadium_dl_2C30 + type: gfx + offset: 0x2C30 +d_course_wario_stadium_dl_2CE0: + symbol: d_course_wario_stadium_dl_2CE0 + type: gfx + offset: 0x2CE0 +d_course_wario_stadium_dl_2DC0: + symbol: d_course_wario_stadium_dl_2DC0 + type: gfx + offset: 0x2DC0 +d_course_wario_stadium_dl_2E70: + symbol: d_course_wario_stadium_dl_2E70 + type: gfx + offset: 0x2E70 +d_course_wario_stadium_dl_2FB8: + symbol: d_course_wario_stadium_dl_2FB8 + type: gfx + offset: 0x2FB8 +d_course_wario_stadium_dl_3098: + symbol: d_course_wario_stadium_dl_3098 + type: gfx + offset: 0x3098 +d_course_wario_stadium_dl_31B0: + symbol: d_course_wario_stadium_dl_31B0 + type: gfx + offset: 0x31B0 +d_course_wario_stadium_dl_3260: + symbol: d_course_wario_stadium_dl_3260 + type: gfx + offset: 0x3260 +d_course_wario_stadium_dl_3368: + symbol: d_course_wario_stadium_dl_3368 + type: gfx + offset: 0x3368 +d_course_wario_stadium_dl_3450: + symbol: d_course_wario_stadium_dl_3450 + type: gfx + offset: 0x3450 +d_course_wario_stadium_dl_3550: + symbol: d_course_wario_stadium_dl_3550 + type: gfx + offset: 0x3550 +d_course_wario_stadium_dl_3600: + symbol: d_course_wario_stadium_dl_3600 + type: gfx + offset: 0x3600 +d_course_wario_stadium_dl_36D8: + symbol: d_course_wario_stadium_dl_36D8 + type: gfx + offset: 0x36D8 +d_course_wario_stadium_dl_37A8: + symbol: d_course_wario_stadium_dl_37A8 + type: gfx + offset: 0x37A8 +d_course_wario_stadium_dl_3890: + symbol: d_course_wario_stadium_dl_3890 + type: gfx + offset: 0x3890 +d_course_wario_stadium_dl_3980: + symbol: d_course_wario_stadium_dl_3980 + type: gfx + offset: 0x3980 +d_course_wario_stadium_dl_3A10: + symbol: d_course_wario_stadium_dl_3A10 + type: gfx + offset: 0x3A10 +d_course_wario_stadium_dl_3AD0: + symbol: d_course_wario_stadium_dl_3AD0 + type: gfx + offset: 0x3AD0 +d_course_wario_stadium_dl_3BB0: + symbol: d_course_wario_stadium_dl_3BB0 + type: gfx + offset: 0x3BB0 +d_course_wario_stadium_dl_3CF8: + symbol: d_course_wario_stadium_dl_3CF8 + type: gfx + offset: 0x3CF8 +d_course_wario_stadium_dl_3D90: + symbol: d_course_wario_stadium_dl_3D90 + type: gfx + offset: 0x3D90 +d_course_wario_stadium_dl_3E80: + symbol: d_course_wario_stadium_dl_3E80 + type: gfx + offset: 0x3E80 +d_course_wario_stadium_dl_3F78: + symbol: d_course_wario_stadium_dl_3F78 + type: gfx + offset: 0x3F78 +d_course_wario_stadium_dl_4060: + symbol: d_course_wario_stadium_dl_4060 + type: gfx + offset: 0x4060 +d_course_wario_stadium_dl_40F0: + symbol: d_course_wario_stadium_dl_40F0 + type: gfx + offset: 0x40F0 +d_course_wario_stadium_dl_41D0: + symbol: d_course_wario_stadium_dl_41D0 + type: gfx + offset: 0x41D0 +d_course_wario_stadium_dl_4270: + symbol: d_course_wario_stadium_dl_4270 + type: gfx + offset: 0x4270 +d_course_wario_stadium_dl_4340: + symbol: d_course_wario_stadium_dl_4340 + type: gfx + offset: 0x4340 +d_course_wario_stadium_dl_43E0: + symbol: d_course_wario_stadium_dl_43E0 + type: gfx + offset: 0x43E0 +d_course_wario_stadium_dl_44B0: + symbol: d_course_wario_stadium_dl_44B0 + type: gfx + offset: 0x44B0 +d_course_wario_stadium_dl_4550: + symbol: d_course_wario_stadium_dl_4550 + type: gfx + offset: 0x4550 +d_course_wario_stadium_dl_46E0: + symbol: d_course_wario_stadium_dl_46E0 + type: gfx + offset: 0x46E0 +d_course_wario_stadium_dl_47F0: + symbol: d_course_wario_stadium_dl_47F0 + type: gfx + offset: 0x47F0 +d_course_wario_stadium_dl_4948: + symbol: d_course_wario_stadium_dl_4948 + type: gfx + offset: 0x4948 +d_course_wario_stadium_dl_4A78: + symbol: d_course_wario_stadium_dl_4A78 + type: gfx + offset: 0x4A78 +d_course_wario_stadium_dl_4B30: + symbol: d_course_wario_stadium_dl_4B30 + type: gfx + offset: 0x4B30 +d_course_wario_stadium_dl_4BE8: + symbol: d_course_wario_stadium_dl_4BE8 + type: gfx + offset: 0x4BE8 +d_course_wario_stadium_dl_4C60: + symbol: d_course_wario_stadium_dl_4C60 + type: gfx + offset: 0x4C60 +d_course_wario_stadium_dl_4D40: + symbol: d_course_wario_stadium_dl_4D40 + type: gfx + offset: 0x4D40 +d_course_wario_stadium_dl_4E30: + symbol: d_course_wario_stadium_dl_4E30 + type: gfx + offset: 0x4E30 +d_course_wario_stadium_dl_4EF0: + symbol: d_course_wario_stadium_dl_4EF0 + type: gfx + offset: 0x4EF0 +d_course_wario_stadium_dl_4F80: + symbol: d_course_wario_stadium_dl_4F80 + type: gfx + offset: 0x4F80 +d_course_wario_stadium_dl_5090: + symbol: d_course_wario_stadium_dl_5090 + type: gfx + offset: 0x5090 +d_course_wario_stadium_dl_5168: + symbol: d_course_wario_stadium_dl_5168 + type: gfx + offset: 0x5168 +d_course_wario_stadium_dl_51E8: + symbol: d_course_wario_stadium_dl_51E8 + type: gfx + offset: 0x51E8 +d_course_wario_stadium_dl_5270: + symbol: d_course_wario_stadium_dl_5270 + type: gfx + offset: 0x5270 +d_course_wario_stadium_dl_5338: + symbol: d_course_wario_stadium_dl_5338 + type: gfx + offset: 0x5338 +d_course_wario_stadium_dl_5460: + symbol: d_course_wario_stadium_dl_5460 + type: gfx + offset: 0x5460 +d_course_wario_stadium_dl_54E8: + symbol: d_course_wario_stadium_dl_54E8 + type: gfx + offset: 0x54E8 +d_course_wario_stadium_dl_5588: + symbol: d_course_wario_stadium_dl_5588 + type: gfx + offset: 0x5588 +d_course_wario_stadium_sign_head_model1: + symbol: d_course_wario_stadium_sign_head_model1 + type: vtx + offset: 0x84D0 + count: 13 +d_course_wario_stadium_sign_head_model2: + symbol: d_course_wario_stadium_sign_head_model2 + type: vtx + offset: 0x85A0 + count: 17 +d_course_wario_stadium_sign_head_model3: + symbol: d_course_wario_stadium_sign_head_model3 + type: vtx + offset: 0x86B0 + count: 13 +d_course_wario_stadium_sign_head_model4: + symbol: d_course_wario_stadium_sign_head_model4 + type: vtx + offset: 0x8780 + count: 17 +d_course_wario_stadium_dl_C890: + symbol: d_course_wario_stadium_dl_C890 + type: gfx + offset: 0xC890 +d_course_wario_stadium_dl_CA50: + symbol: d_course_wario_stadium_dl_CA50 + type: gfx + offset: 0xCA50 +d_course_wario_stadium_dl_sign: + symbol: d_course_wario_stadium_dl_sign + type: gfx + offset: 0xCA60 +d_course_wario_stadium_dl_CA70: + symbol: d_course_wario_stadium_dl_CA70 + type: gfx + offset: 0xCA70 +d_course_wario_stadium_dl_CA78: + symbol: d_course_wario_stadium_dl_CA78 + type: gfx + offset: 0xCA78 diff --git a/yamls/us/models/tracks/wario_stadium/wario_stadium_displaylists.yml b/yamls/us/models/tracks/wario_stadium/wario_stadium_displaylists.yml new file mode 100644 index 000000000..1cbeed68d --- /dev/null +++ b/yamls/us/models/tracks/wario_stadium/wario_stadium_displaylists.yml @@ -0,0 +1,1712 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x94E28C + no_compression: true + manual_segments: + # Segment 5 + - [0x05000000, "textures/other_textures/texture_67F15C"] + - [0x05000800, "textures/other_textures/texture_67F450"] + - [0x05001000, "textures/other_textures/sign_wario_face"] + - [0x05002000, "textures/other_textures/texture_670AC8"] + - [0x05003000, "textures/other_textures/checkerboard_black_white"] + - [0x05003800, "textures/other_textures/texture_64C11C"] + - [0x05004000, "textures/other_textures/texture_64C7B4"] + - [0x05004800, "textures/other_textures/texture_668228"] + - [0x05005000, "textures/other_textures/texture_668358"] + - [0x05005800, "textures/other_textures/texture_66AEB8"] + - [0x05006000, "textures/other_textures/texture_677A40"] + - [0x05006800, "textures/other_textures/texture_67E428"] + - [0x05007800, "textures/other_textures/texture_643A34"] + - [0x05008000, "textures/other_textures/texture_66EBF0"] + - [0x05008800, "textures/other_textures/texture_68272C"] + - [0x05009800, "textures/other_textures/texture_682928"] + - [0x0500A800, "textures/other_textures/texture_682B24"] + - [0x0500B800, "textures/other_textures/texture_682D20"] + - [0x0500C800, "textures/other_textures/texture_682F1C"] + - [0x0500D800, "textures/other_textures/texture_683118"] + # Segment 7 + - [0x7000000, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_0"] + - [0x7000060, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_60"] + - [0x70000C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_C0"] + - [0x7000120, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_120"] + - [0x7000180, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_180"] + - [0x70001E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1E0"] + - [0x7000240, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_240"] + - [0x70002A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2A0"] + - [0x7000300, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_300"] + - [0x7000360, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_360"] + - [0x70003B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B0"] + - [0x70003C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3C0"] + - [0x7000428, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_428"] + - [0x7000500, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_500"] + - [0x70005D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D8"] + - [0x7000638, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_638"] + - [0x70006F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6F8"] + - [0x70007C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7C0"] + - [0x7000880, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_880"] + - [0x70008F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8F0"] + - [0x7000960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_960"] + - [0x7000A20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A20"] + - [0x7000A88, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A88"] + - [0x7000AE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_AE8"] + - [0x7000B60, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_B60"] + - [0x7000BD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_BD8"] + - [0x7000C50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_C50"] + - [0x7000CC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_CC8"] + - [0x7000D50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_D50"] + - [0x7000DD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_DD0"] + - [0x7000E48, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_E48"] + - [0x7000EC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_EC0"] + - [0x7000F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F08"] + - [0x7000F20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F20"] + - [0x7000F38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F38"] + - [0x7000FA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_FA8"] + - [0x7001018, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1018"] + - [0x7001088, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1088"] + - [0x7001100, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1100"] + - [0x7001180, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1180"] + - [0x70011E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_11E0"] + - [0x7001290, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1290"] + - [0x7001348, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1348"] + - [0x70013D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_13D0"] + - [0x7001458, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1458"] + - [0x70014C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_14C8"] + - [0x7001540, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1540"] + - [0x70015C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_15C8"] + - [0x7001640, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1640"] + - [0x70016B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_16B0"] + - [0x7001710, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1710"] + - [0x7001778, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1778"] + - [0x70017F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_17F0"] + - [0x7001860, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1860"] + - [0x70018D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_18D8"] + - [0x7001948, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1948"] + - [0x70019D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_19D0"] + - [0x7001A50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1A50"] + - [0x7001B10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1B10"] + - [0x7001B70, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1B70"] + - [0x7001BD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1BD0"] + - [0x7001C40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1C40"] + - [0x7001D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1D20"] + - [0x7001DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1DE8"] + - [0x7001EA0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1EA0"] + - [0x7001F28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1F28"] + - [0x7001FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1FC8"] + - [0x70020A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_20A0"] + - [0x7002108, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2108"] + - [0x70021D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_21D8"] + - [0x7002238, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2238"] + - [0x7002298, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2298"] + - [0x7002318, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2318"] + - [0x7002390, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2390"] + - [0x7002400, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2400"] + - [0x70024D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_24D0"] + - [0x7002598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2598"] + - [0x7002658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2658"] + - [0x70026C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_26C8"] + - [0x7002780, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2780"] + - [0x7002848, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2848"] + - [0x7002908, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2908"] + - [0x70029B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_29B8"] + - [0x7002A28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2A28"] + - [0x7002AB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2AB0"] + - [0x7002BB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2BB0"] + - [0x7002C18, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2C18"] + - [0x7002C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2C80"] + - [0x7002CE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2CE8"] + - [0x7002DB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2DB0"] + - [0x7002E90, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2E90"] + - [0x7002F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2F08"] + - [0x7002F78, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2F78"] + - [0x7002FE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2FE8"] + - [0x7003070, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3070"] + - [0x70030E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_30E8"] + - [0x7003160, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3160"] + - [0x70031F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_31F0"] + - [0x7003260, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3260"] + - [0x70032D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_32D0"] + - [0x7003350, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3350"] + - [0x70033C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_33C0"] + - [0x7003438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3438"] + - [0x70034A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_34A0"] + - [0x7003518, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3518"] + - [0x7003598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3598"] + - [0x70035F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_35F8"] + - [0x7003660, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3660"] + - [0x70036D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_36D0"] + - [0x7003758, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3758"] + - [0x70037E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_37E0"] + - [0x7003848, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3848"] + - [0x70038F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_38F8"] + - [0x7003960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3960"] + - [0x70039D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_39D0"] + - [0x7003A30, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3A30"] + - [0x7003AA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3AA8"] + - [0x7003B08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B08"] + - [0x7003B68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B68"] + - [0x7003BD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3BD0"] + - [0x7003C40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3C40"] + - [0x7003CA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3CA8"] + - [0x7003D10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3D10"] + - [0x7003D80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3D80"] + - [0x7003DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3DE8"] + - [0x7003E50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3E50"] + - [0x7003EC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3EC0"] + - [0x7003F70, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3F70"] + - [0x7004038, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4038"] + - [0x7004098, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4098"] + - [0x7004168, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4168"] + - [0x7004218, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4218"] + - [0x70042C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_42C8"] + - [0x7004378, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4378"] + - [0x7004438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4438"] + - [0x70044E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_44E8"] + - [0x7004598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4598"] + - [0x7004658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4658"] + - [0x70046B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_46B8"] + - [0x7004768, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4768"] + - [0x70047D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_47D8"] + - [0x7004808, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4808"] + - [0x7004930, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4930"] + - [0x7004AA0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4AA0"] + - [0x7004BA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4BA8"] + - [0x7004D68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4D68"] + - [0x7004EB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4EB8"] + - [0x7004FB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4FB8"] + - [0x70050A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_50A0"] + - [0x7005208, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5208"] + - [0x70052F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_52F8"] + - [0x70053D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_53D0"] + - [0x7005508, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5508"] + - [0x7005590, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5590"] + - [0x7005670, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5670"] + - [0x70056E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_56E0"] + - [0x7005768, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5768"] + - [0x70057F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_57F8"] + - [0x7005888, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5888"] + - [0x7005938, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5938"] + - [0x70059C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_59C0"] + - [0x7005A38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5A38"] + - [0x7005AA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5AA8"] + - [0x7005B38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5B38"] + - [0x7005BB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5BB8"] + - [0x7005C30, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5C30"] + - [0x7005CB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5CB0"] + - [0x7005D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D20"] + - [0x7005D90, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D90"] + - [0x7005E00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5E00"] + - [0x7005E88, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5E88"] + - [0x7005F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5F08"] + - [0x7005FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5FC8"] + - [0x7006068, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6068"] + - [0x7006108, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6108"] + - [0x7006198, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6198"] + - [0x70062C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_62C8"] + - [0x7006390, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6390"] + - [0x7006418, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6418"] + - [0x70064E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_64E8"] + - [0x70065A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_65A0"] + - [0x7006658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6658"] + - [0x7006700, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6700"] + - [0x70067B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_67B8"] + - [0x7006878, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6878"] + - [0x70068F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_68F0"] + - [0x7006950, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6950"] + - [0x7006A10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6A10"] + - [0x7006AE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6AE8"] + - [0x7006BE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6BE0"] + - [0x7006C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6C80"] + - [0x7006D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6D20"] + - [0x7006DD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6DD8"] + - [0x7006EC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6EC8"] + - [0x7006FC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6FC0"] + - [0x7007090, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7090"] + - [0x7007220, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7220"] + - [0x7007338, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7338"] + - [0x70073F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_73F0"] + - [0x7007530, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7530"] + - [0x70075A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_75A8"] + - [0x7007630, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7630"] + - [0x70076E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_76E0"] + - [0x70077A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_77A8"] + - [0x7007838, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7838"] + - [0x7007960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7960"] + - [0x7007A40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7A40"] + - [0x7007B20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7B20"] + - [0x7007BE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7BE0"] + - [0x7007D00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7D00"] + - [0x7007DF8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7DF8"] + - [0x7007ED0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7ED0"] + - [0x7007FB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7FB0"] + - [0x7008030, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8030"] + - [0x70080E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_80E8"] + - [0x7008240, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8240"] + - [0x70082F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_82F8"] + - [0x70083A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_83A0"] + - [0x7008438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8438"] + - [0x7008510, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8510"] + - [0x70085F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_85F0"] + - [0x7008678, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8678"] + - [0x7008708, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8708"] + - [0x7008798, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8798"] + - [0x70088A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_88A0"] + - [0x7008A68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8A68"] + - [0x7008C28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8C28"] + - [0x7008D28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8D28"] + - [0x7008DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8DE8"] + - [0x7008EF0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8EF0"] + - [0x7008FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8FC8"] + - [0x7009090, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9090"] + - [0x7009120, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9120"] + - [0x70091E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_91E8"] + - [0x7009328, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9328"] + - [0x70093B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_93B0"] + - [0x7009430, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9430"] + - [0x7009590, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9590"] + - [0x7009668, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9668"] + - [0x7009760, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9760"] + - [0x7009820, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9820"] + - [0x70098A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_98A0"] + - [0x7009998, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9998"] + - [0x7009AD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9AD8"] + - [0x7009C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9C80"] + - [0x7009D00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9D00"] + - [0x7009D78, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9D78"] + - [0x7009E00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9E00"] + - [0x7009EE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9EE0"] + - [0x7009F18, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9F18"] + - [0x7009F28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9F28"] + - [0x700A0C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A0C8"] + - [0x700A0D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A0D8"] + - [0x700A148, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A148"] + - [0x700A1B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A1B8"] + - [0x700A228, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A228"] + - [0x700A248, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A248"] + - [0x700A448, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A448"] + - [0x700A458, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A458"] + - [0x700A4A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A4A8"] + - [0x700A4C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A4C0"] + # Segment 4 + - [0x4000000, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000000"] + - [0x4000040, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000040"] + - [0x4000080, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000080"] + - [0x40000c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040000C0"] + - [0x4000100, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000100"] + - [0x4000140, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000140"] + - [0x4000180, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000180"] + - [0x40001c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040001C0"] + - [0x4000200, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000200"] + - [0x4000240, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000240"] + - [0x4000290, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000290"] + - [0x4000410, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000410"] + - [0x4000450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000450"] + - [0x40005d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040005D0"] + - [0x4000610, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000610"] + - [0x4000650, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000650"] + - [0x4000710, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000710"] + - [0x4000750, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000750"] + - [0x4000810, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000810"] + - [0x4000860, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000860"] + - [0x4000920, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000920"] + - [0x4000960, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000960"] + - [0x4000a20, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000A20"] + - [0x4000ae0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000AE0"] + - [0x4000ba0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000BA0"] + - [0x4000be0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000BE0"] + - [0x4000c30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000C30"] + - [0x4000d30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000D30"] + - [0x4000e30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000E30"] + - [0x4000f00, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000F00"] + - [0x4000fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04000FD0"] + - [0x40010e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040010E0"] + - [0x40011d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040011D0"] + - [0x40012d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040012D0"] + - [0x40013d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040013D0"] + - [0x4001490, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001490"] + - [0x4001550, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001550"] + - [0x4001610, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001610"] + - [0x4001710, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001710"] + - [0x4001820, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001820"] + - [0x4001860, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001860"] + - [0x4001a60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001A60"] + - [0x4001a90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001A90"] + - [0x4001b10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001B10"] + - [0x4001b50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001B50"] + - [0x4001c50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001C50"] + - [0x4001db0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001DB0"] + - [0x4001e70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001E70"] + - [0x4001f40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04001F40"] + - [0x40020c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040020C0"] + - [0x40021e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040021E0"] + - [0x40022a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040022A0"] + - [0x40022e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040022E0"] + - [0x4002360, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002360"] + - [0x4002450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002450"] + - [0x4002530, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002530"] + - [0x4002630, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002630"] + - [0x40026f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040026F0"] + - [0x40027d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040027D0"] + - [0x4002910, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002910"] + - [0x4002ad0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002AD0"] + - [0x4002b10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002B10"] + - [0x4002b50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002B50"] + - [0x4002c10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002C10"] + - [0x4002cd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002CD0"] + - [0x4002e10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002E10"] + - [0x4002e90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002E90"] + - [0x4002f90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04002F90"] + - [0x4003110, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003110"] + - [0x40032d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040032D0"] + - [0x40033d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040033D0"] + - [0x4003530, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003530"] + - [0x40035b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040035B0"] + - [0x4003790, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003790"] + - [0x40038f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040038F0"] + - [0x4003930, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003930"] + - [0x4003970, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003970"] + - [0x4003ab0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003AB0"] + - [0x4003b90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003B90"] + - [0x4003c50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003C50"] + - [0x4003d10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003D10"] + - [0x4003e90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003E90"] + - [0x4003fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04003FD0"] + - [0x4004090, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004090"] + - [0x4004150, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004150"] + - [0x4004250, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004250"] + - [0x4004330, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004330"] + - [0x40043b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040043B0"] + - [0x40044b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040044B0"] + - [0x40044f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040044F0"] + - [0x40046b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040046B0"] + - [0x40047b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040047B0"] + - [0x4004860, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004860"] + - [0x40048a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040048A0"] + - [0x40049a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040049A0"] + - [0x4004a60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004A60"] + - [0x4004b60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004B60"] + - [0x4004ca0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004CA0"] + - [0x4004ea0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004EA0"] + - [0x4004ed0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004ED0"] + - [0x4004f50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004F50"] + - [0x4004fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04004FD0"] + - [0x4005050, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005050"] + - [0x4005110, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005110"] + - [0x4005220, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005220"] + - [0x40052b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040052B0"] + - [0x4005320, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005320"] + - [0x40053a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040053A0"] + - [0x4005470, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005470"] + - [0x4005520, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005520"] + - [0x40055b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040055B0"] + - [0x4005680, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005680"] + - [0x4005700, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005700"] + - [0x4005770, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005770"] + - [0x4005810, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005810"] + - [0x4005890, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005890"] + - [0x4005910, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005910"] + - [0x4005970, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005970"] + - [0x40059f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040059F0"] + - [0x4005aa0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005AA0"] + - [0x4005ae0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005AE0"] + - [0x4005b30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005B30"] + - [0x4005ba0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005BA0"] + - [0x4005c60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005C60"] + - [0x4005d30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005D30"] + - [0x4005d80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005D80"] + - [0x4005dd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005DD0"] + - [0x4005e90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005E90"] + - [0x4005ed0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005ED0"] + - [0x4005fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04005FD0"] + - [0x4006010, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006010"] + - [0x4006050, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006050"] + - [0x40060a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040060A0"] + - [0x4006160, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006160"] + - [0x40061d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040061D0"] + - [0x4006250, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006250"] + - [0x4006310, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006310"] + - [0x4006380, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006380"] + - [0x40063d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040063D0"] + - [0x4006410, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006410"] + - [0x4006450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006450"] + - [0x4006500, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006500"] + - [0x4006540, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006540"] + - [0x4006580, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006580"] + - [0x4006670, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006670"] + - [0x40066b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040066B0"] + - [0x40066f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040066F0"] + - [0x4006730, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006730"] + - [0x4006770, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006770"] + - [0x40067b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040067B0"] + - [0x40067f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040067F0"] + - [0x4006830, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006830"] + - [0x40068f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040068F0"] + - [0x4006930, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006930"] + - [0x4006970, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006970"] + - [0x40069b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040069B0"] + - [0x40069f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040069F0"] + - [0x4006a30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006A30"] + - [0x4006af0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006AF0"] + - [0x4006b30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006B30"] + - [0x4006b70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006B70"] + - [0x4006bb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006BB0"] + - [0x4006bf0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006BF0"] + - [0x4006d70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006D70"] + - [0x4006dc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006DC0"] + - [0x4006fc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04006FC0"] + - [0x4007180, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007180"] + - [0x40071c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040071C0"] + - [0x40073c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040073C0"] + - [0x4007490, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007490"] + - [0x4007680, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007680"] + - [0x4007880, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007880"] + - [0x40079d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040079D0"] + - [0x4007a10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007A10"] + - [0x4007c00, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007C00"] + - [0x4007c80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007C80"] + - [0x4007cd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007CD0"] + - [0x4007e40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007E40"] + - [0x4007e90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007E90"] + - [0x4007f90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007F90"] + - [0x4007fd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04007FD0"] + - [0x40081d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040081D0"] + - [0x4008380, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008380"] + - [0x40083c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040083C0"] + - [0x4008440, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008440"] + - [0x4008580, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008580"] + - [0x4008600, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008600"] + - [0x40086c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040086C0"] + - [0x40088b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040088B0"] + - [0x4008990, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008990"] + - [0x40089d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040089D0"] + - [0x4008a90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008A90"] + - [0x4008b90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008B90"] + - [0x4008be0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008BE0"] + - [0x4008cb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008CB0"] + - [0x4008e50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008E50"] + - [0x4008f50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04008F50"] + - [0x4009130, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009130"] + - [0x4009170, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009170"] + - [0x4009250, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009250"] + - [0x40092e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040092E0"] + - [0x4009350, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009350"] + - [0x4009510, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009510"] + - [0x40095e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040095E0"] + - [0x4009670, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009670"] + - [0x40097b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040097B0"] + - [0x4009820, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009820"] + - [0x4009890, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009890"] + - [0x4009a20, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009A20"] + - [0x4009ba0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009BA0"] + - [0x4009da0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009DA0"] + - [0x4009f20, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04009F20"] + - [0x400a110, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A110"] + - [0x400a1a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A1A0"] + - [0x400a3a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A3A0"] + - [0x400a3d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A3D0"] + - [0x400a5c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A5C0"] + - [0x400a7b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A7B0"] + - [0x400a990, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400A990"] + - [0x400ab90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AB90"] + - [0x400aca0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400ACA0"] + - [0x400ae90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AE90"] + - [0x400afc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400AFC0"] + - [0x400b170, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B170"] + - [0x400b370, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B370"] + - [0x400b520, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B520"] + - [0x400b700, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B700"] + - [0x400b830, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400B830"] + - [0x400ba30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BA30"] + - [0x400bb50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BB50"] + - [0x400bd30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BD30"] + - [0x400bda0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BDA0"] + - [0x400bf80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400BF80"] + - [0x400c0f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C0F0"] + - [0x400c2f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C2F0"] + - [0x400c4b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C4B0"] + - [0x400c5f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C5F0"] + - [0x400c620, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C620"] + - [0x400c800, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C800"] + - [0x400c990, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400C990"] + - [0x400cb80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CB80"] + - [0x400cd80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CD80"] + - [0x400ce10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400CE10"] + - [0x400d010, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D010"] + - [0x400d210, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D210"] + - [0x400d350, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D350"] + - [0x400d550, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D550"] + - [0x400d590, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D590"] + - [0x400d790, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D790"] + - [0x400d7d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D7D0"] + - [0x400d890, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400D890"] + - [0x400da70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DA70"] + - [0x400dab0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DAB0"] + - [0x400dbb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DBB0"] + - [0x400ddb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DDB0"] + - [0x400dfb0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400DFB0"] + - [0x400e0f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E0F0"] + - [0x400e2e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E2E0"] + - [0x400e4d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E4D0"] + - [0x400e6d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E6D0"] + - [0x400e7c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E7C0"] + - [0x400e940, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400E940"] + - [0x400eb40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EB40"] + - [0x400ebc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EBC0"] + - [0x400edc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EDC0"] + - [0x400ef40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400EF40"] + - [0x400f120, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F120"] + - [0x400f2c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F2C0"] + - [0x400f390, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F390"] + - [0x400f4d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F4D0"] + - [0x400f6b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F6B0"] + - [0x400f730, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F730"] + - [0x400f930, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400F930"] + - [0x400fa50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FA50"] + - [0x400fc10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FC10"] + - [0x400fe10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x0400FE10"] + - [0x4010010, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010010"] + - [0x40100d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040100D0"] + - [0x40102d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040102D0"] + - [0x4010390, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010390"] + - [0x4010450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010450"] + - [0x40105d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040105D0"] + - [0x40107c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040107C0"] + - [0x40107f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040107F0"] + - [0x4010870, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010870"] + - [0x4010a70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010A70"] + - [0x4010b40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010B40"] + - [0x4010b80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010B80"] + - [0x4010d80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010D80"] + - [0x4010e80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010E80"] + - [0x4010fe0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04010FE0"] + - [0x40110b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040110B0"] + - [0x40110f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040110F0"] + - [0x40112f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040112F0"] + - [0x4011330, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011330"] + - [0x4011470, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011470"] + - [0x4011670, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011670"] + - [0x4011800, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011800"] + - [0x40119e0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040119E0"] + - [0x4011b70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011B70"] + - [0x4011d70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011D70"] + - [0x4011f30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04011F30"] + - [0x40120b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040120B0"] + - [0x4012170, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012170"] + - [0x4012310, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012310"] + - [0x4012470, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012470"] + - [0x40125f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040125F0"] + - [0x4012790, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012790"] + - [0x4012990, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012990"] + - [0x4012b30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012B30"] + - [0x4012d30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012D30"] + - [0x4012f30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04012F30"] + - [0x4013120, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013120"] + - [0x4013320, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013320"] + - [0x4013520, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013520"] + - [0x40135c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040135C0"] + - [0x40137a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040137A0"] + - [0x40139a0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040139A0"] + - [0x4013a60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013A60"] + - [0x4013aa0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013AA0"] + - [0x4013ca0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013CA0"] + - [0x4013e40, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04013E40"] + - [0x4014040, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014040"] + - [0x4014140, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014140"] + - [0x4014340, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014340"] + - [0x40143c0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040143C0"] + - [0x4014580, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014580"] + - [0x4014770, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014770"] + - [0x4014860, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014860"] + - [0x4014a60, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014A60"] + - [0x4014c50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014C50"] + - [0x4014cd0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014CD0"] + - [0x4014e30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014E30"] + - [0x4014f10, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04014F10"] + - [0x4015100, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015100"] + - [0x4015300, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015300"] + - [0x40154f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040154F0"] + - [0x40155b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040155B0"] + - [0x40157b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040157B0"] + - [0x40158d0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040158D0"] + - [0x4015ad0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015AD0"] + - [0x4015b80, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015B80"] + - [0x4015cc0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015CC0"] + - [0x4015ea0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015EA0"] + - [0x4015fa0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04015FA0"] + - [0x4016190, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016190"] + - [0x4016390, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016390"] + - [0x4016470, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016470"] + - [0x4016650, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016650"] + - [0x4016830, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016830"] + - [0x4016a30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016A30"] + - [0x4016ab0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016AB0"] + - [0x4016b90, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016B90"] + - [0x4016c50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016C50"] + - [0x4016db0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016DB0"] + - [0x4016e50, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04016E50"] + - [0x4017050, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017050"] + - [0x4017250, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017250"] + - [0x4017450, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017450"] + - [0x4017570, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017570"] + - [0x4017630, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017630"] + - [0x40176f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040176F0"] + - [0x40177b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040177B0"] + - [0x40179b0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040179B0"] + - [0x40179f0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x040179F0"] + - [0x4017a30, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017A30"] + - [0x4017a70, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017A70"] + - [0x4017ab0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017AB0"] + - [0x4017af0, "models/tracks/wario_stadium/wario_stadium_vertices/d_course_wario_stadium_vertex_0x04017AF0"] + segments: + - [0x0F, 0x94E28C] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_wario_stadium_packed_dl_0: + symbol: d_course_wario_stadium_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_wario_stadium_packed_dl_60: + symbol: d_course_wario_stadium_packed_dl_60 + type: MK64:PACKED_GFX + offset: 0x11 +d_course_wario_stadium_packed_dl_C0: + symbol: d_course_wario_stadium_packed_dl_C0 + type: MK64:PACKED_GFX + offset: 0x22 +d_course_wario_stadium_packed_dl_120: + symbol: d_course_wario_stadium_packed_dl_120 + type: MK64:PACKED_GFX + offset: 0x33 +d_course_wario_stadium_packed_dl_180: + symbol: d_course_wario_stadium_packed_dl_180 + type: MK64:PACKED_GFX + offset: 0x44 +d_course_wario_stadium_packed_dl_1E0: + symbol: d_course_wario_stadium_packed_dl_1E0 + type: MK64:PACKED_GFX + offset: 0x55 +d_course_wario_stadium_packed_dl_240: + symbol: d_course_wario_stadium_packed_dl_240 + type: MK64:PACKED_GFX + offset: 0x66 +d_course_wario_stadium_packed_dl_2A0: + symbol: d_course_wario_stadium_packed_dl_2A0 + type: MK64:PACKED_GFX + offset: 0x77 +d_course_wario_stadium_packed_dl_300: + symbol: d_course_wario_stadium_packed_dl_300 + type: MK64:PACKED_GFX + offset: 0x88 +d_course_wario_stadium_packed_dl_360: + symbol: d_course_wario_stadium_packed_dl_360 + type: MK64:PACKED_GFX + offset: 0x99 +d_course_wario_stadium_packed_dl_3B0: + symbol: d_course_wario_stadium_packed_dl_3B0 + type: MK64:PACKED_GFX + offset: 0xB5 +d_course_wario_stadium_packed_dl_3C0: + symbol: d_course_wario_stadium_packed_dl_3C0 + type: MK64:PACKED_GFX + offset: 0xB9 +d_course_wario_stadium_packed_dl_428: + symbol: d_course_wario_stadium_packed_dl_428 + type: MK64:PACKED_GFX + offset: 0xCD +d_course_wario_stadium_packed_dl_500: + symbol: d_course_wario_stadium_packed_dl_500 + type: MK64:PACKED_GFX + offset: 0x106 +d_course_wario_stadium_packed_dl_5D8: + symbol: d_course_wario_stadium_packed_dl_5D8 + type: MK64:PACKED_GFX + offset: 0x13F +d_course_wario_stadium_packed_dl_638: + symbol: d_course_wario_stadium_packed_dl_638 + type: MK64:PACKED_GFX + offset: 0x150 +d_course_wario_stadium_packed_dl_6F8: + symbol: d_course_wario_stadium_packed_dl_6F8 + type: MK64:PACKED_GFX + offset: 0x17A +d_course_wario_stadium_packed_dl_7C0: + symbol: d_course_wario_stadium_packed_dl_7C0 + type: MK64:PACKED_GFX + offset: 0x1A7 +d_course_wario_stadium_packed_dl_880: + symbol: d_course_wario_stadium_packed_dl_880 + type: MK64:PACKED_GFX + offset: 0x1D1 +d_course_wario_stadium_packed_dl_8F0: + symbol: d_course_wario_stadium_packed_dl_8F0 + type: MK64:PACKED_GFX + offset: 0x1EC +d_course_wario_stadium_packed_dl_960: + symbol: d_course_wario_stadium_packed_dl_960 + type: MK64:PACKED_GFX + offset: 0x207 +d_course_wario_stadium_packed_dl_A20: + symbol: d_course_wario_stadium_packed_dl_A20 + type: MK64:PACKED_GFX + offset: 0x231 +d_course_wario_stadium_packed_dl_A88: + symbol: d_course_wario_stadium_packed_dl_A88 + type: MK64:PACKED_GFX + offset: 0x245 +d_course_wario_stadium_packed_dl_AE8: + symbol: d_course_wario_stadium_packed_dl_AE8 + type: MK64:PACKED_GFX + offset: 0x267 +d_course_wario_stadium_packed_dl_B60: + symbol: d_course_wario_stadium_packed_dl_B60 + type: MK64:PACKED_GFX + offset: 0x287 +d_course_wario_stadium_packed_dl_BD8: + symbol: d_course_wario_stadium_packed_dl_BD8 + type: MK64:PACKED_GFX + offset: 0x2A7 +d_course_wario_stadium_packed_dl_C50: + symbol: d_course_wario_stadium_packed_dl_C50 + type: MK64:PACKED_GFX + offset: 0x2C5 +d_course_wario_stadium_packed_dl_CC8: + symbol: d_course_wario_stadium_packed_dl_CC8 + type: MK64:PACKED_GFX + offset: 0x2E3 +d_course_wario_stadium_packed_dl_D50: + symbol: d_course_wario_stadium_packed_dl_D50 + type: MK64:PACKED_GFX + offset: 0x30B +d_course_wario_stadium_packed_dl_DD0: + symbol: d_course_wario_stadium_packed_dl_DD0 + type: MK64:PACKED_GFX + offset: 0x32E +d_course_wario_stadium_packed_dl_E48: + symbol: d_course_wario_stadium_packed_dl_E48 + type: MK64:PACKED_GFX + offset: 0x34E +d_course_wario_stadium_packed_dl_EC0: + symbol: d_course_wario_stadium_packed_dl_EC0 + type: MK64:PACKED_GFX + offset: 0x36E +d_course_wario_stadium_packed_dl_F08: + symbol: d_course_wario_stadium_packed_dl_F08 + type: MK64:PACKED_GFX + offset: 0x387 +d_course_wario_stadium_packed_dl_F20: + symbol: d_course_wario_stadium_packed_dl_F20 + type: MK64:PACKED_GFX + offset: 0x38E +d_course_wario_stadium_packed_dl_F38: + symbol: d_course_wario_stadium_packed_dl_F38 + type: MK64:PACKED_GFX + offset: 0x395 +d_course_wario_stadium_packed_dl_FA8: + symbol: d_course_wario_stadium_packed_dl_FA8 + type: MK64:PACKED_GFX + offset: 0x3B0 +d_course_wario_stadium_packed_dl_1018: + symbol: d_course_wario_stadium_packed_dl_1018 + type: MK64:PACKED_GFX + offset: 0x3CB +d_course_wario_stadium_packed_dl_1088: + symbol: d_course_wario_stadium_packed_dl_1088 + type: MK64:PACKED_GFX + offset: 0x3E6 +d_course_wario_stadium_packed_dl_1100: + symbol: d_course_wario_stadium_packed_dl_1100 + type: MK64:PACKED_GFX + offset: 0x406 +d_course_wario_stadium_packed_dl_1180: + symbol: d_course_wario_stadium_packed_dl_1180 + type: MK64:PACKED_GFX + offset: 0x429 +d_course_wario_stadium_packed_dl_11E0: + symbol: d_course_wario_stadium_packed_dl_11E0 + type: MK64:PACKED_GFX + offset: 0x43A +d_course_wario_stadium_packed_dl_1290: + symbol: d_course_wario_stadium_packed_dl_1290 + type: MK64:PACKED_GFX + offset: 0x479 +d_course_wario_stadium_packed_dl_1348: + symbol: d_course_wario_stadium_packed_dl_1348 + type: MK64:PACKED_GFX + offset: 0x49E +d_course_wario_stadium_packed_dl_13D0: + symbol: d_course_wario_stadium_packed_dl_13D0 + type: MK64:PACKED_GFX + offset: 0x4C8 +d_course_wario_stadium_packed_dl_1458: + symbol: d_course_wario_stadium_packed_dl_1458 + type: MK64:PACKED_GFX + offset: 0x4F2 +d_course_wario_stadium_packed_dl_14C8: + symbol: d_course_wario_stadium_packed_dl_14C8 + type: MK64:PACKED_GFX + offset: 0x50D +d_course_wario_stadium_packed_dl_1540: + symbol: d_course_wario_stadium_packed_dl_1540 + type: MK64:PACKED_GFX + offset: 0x52B +d_course_wario_stadium_packed_dl_15C8: + symbol: d_course_wario_stadium_packed_dl_15C8 + type: MK64:PACKED_GFX + offset: 0x553 +d_course_wario_stadium_packed_dl_1640: + symbol: d_course_wario_stadium_packed_dl_1640 + type: MK64:PACKED_GFX + offset: 0x573 +d_course_wario_stadium_packed_dl_16B0: + symbol: d_course_wario_stadium_packed_dl_16B0 + type: MK64:PACKED_GFX + offset: 0x58E +d_course_wario_stadium_packed_dl_1710: + symbol: d_course_wario_stadium_packed_dl_1710 + type: MK64:PACKED_GFX + offset: 0x59F +d_course_wario_stadium_packed_dl_1778: + symbol: d_course_wario_stadium_packed_dl_1778 + type: MK64:PACKED_GFX + offset: 0x5B5 +d_course_wario_stadium_packed_dl_17F0: + symbol: d_course_wario_stadium_packed_dl_17F0 + type: MK64:PACKED_GFX + offset: 0x5D3 +d_course_wario_stadium_packed_dl_1860: + symbol: d_course_wario_stadium_packed_dl_1860 + type: MK64:PACKED_GFX + offset: 0x5EE +d_course_wario_stadium_packed_dl_18D8: + symbol: d_course_wario_stadium_packed_dl_18D8 + type: MK64:PACKED_GFX + offset: 0x60E +d_course_wario_stadium_packed_dl_1948: + symbol: d_course_wario_stadium_packed_dl_1948 + type: MK64:PACKED_GFX + offset: 0x629 +d_course_wario_stadium_packed_dl_19D0: + symbol: d_course_wario_stadium_packed_dl_19D0 + type: MK64:PACKED_GFX + offset: 0x653 +d_course_wario_stadium_packed_dl_1A50: + symbol: d_course_wario_stadium_packed_dl_1A50 + type: MK64:PACKED_GFX + offset: 0x678 +d_course_wario_stadium_packed_dl_1B10: + symbol: d_course_wario_stadium_packed_dl_1B10 + type: MK64:PACKED_GFX + offset: 0x6C5 +d_course_wario_stadium_packed_dl_1B70: + symbol: d_course_wario_stadium_packed_dl_1B70 + type: MK64:PACKED_GFX + offset: 0x6D6 +d_course_wario_stadium_packed_dl_1BD0: + symbol: d_course_wario_stadium_packed_dl_1BD0 + type: MK64:PACKED_GFX + offset: 0x6E7 +d_course_wario_stadium_packed_dl_1C40: + symbol: d_course_wario_stadium_packed_dl_1C40 + type: MK64:PACKED_GFX + offset: 0x702 +d_course_wario_stadium_packed_dl_1D20: + symbol: d_course_wario_stadium_packed_dl_1D20 + type: MK64:PACKED_GFX + offset: 0x754 +d_course_wario_stadium_packed_dl_1DE8: + symbol: d_course_wario_stadium_packed_dl_1DE8 + type: MK64:PACKED_GFX + offset: 0x78F +d_course_wario_stadium_packed_dl_1EA0: + symbol: d_course_wario_stadium_packed_dl_1EA0 + type: MK64:PACKED_GFX + offset: 0x7C0 +d_course_wario_stadium_packed_dl_1F28: + symbol: d_course_wario_stadium_packed_dl_1F28 + type: MK64:PACKED_GFX + offset: 0x7EA +d_course_wario_stadium_packed_dl_1FC8: + symbol: d_course_wario_stadium_packed_dl_1FC8 + type: MK64:PACKED_GFX + offset: 0x823 +d_course_wario_stadium_packed_dl_20A0: + symbol: d_course_wario_stadium_packed_dl_20A0 + type: MK64:PACKED_GFX + offset: 0x868 +d_course_wario_stadium_packed_dl_2108: + symbol: d_course_wario_stadium_packed_dl_2108 + type: MK64:PACKED_GFX + offset: 0x87E +d_course_wario_stadium_packed_dl_21D8: + symbol: d_course_wario_stadium_packed_dl_21D8 + type: MK64:PACKED_GFX + offset: 0x8D3 +d_course_wario_stadium_packed_dl_2238: + symbol: d_course_wario_stadium_packed_dl_2238 + type: MK64:PACKED_GFX + offset: 0x8E4 +d_course_wario_stadium_packed_dl_2298: + symbol: d_course_wario_stadium_packed_dl_2298 + type: MK64:PACKED_GFX + offset: 0x8F5 +d_course_wario_stadium_packed_dl_2318: + symbol: d_course_wario_stadium_packed_dl_2318 + type: MK64:PACKED_GFX + offset: 0x91A +d_course_wario_stadium_packed_dl_2390: + symbol: d_course_wario_stadium_packed_dl_2390 + type: MK64:PACKED_GFX + offset: 0x93A +d_course_wario_stadium_packed_dl_2400: + symbol: d_course_wario_stadium_packed_dl_2400 + type: MK64:PACKED_GFX + offset: 0x955 +d_course_wario_stadium_packed_dl_24D0: + symbol: d_course_wario_stadium_packed_dl_24D0 + type: MK64:PACKED_GFX + offset: 0x995 +d_course_wario_stadium_packed_dl_2598: + symbol: d_course_wario_stadium_packed_dl_2598 + type: MK64:PACKED_GFX + offset: 0x9D0 +d_course_wario_stadium_packed_dl_2658: + symbol: d_course_wario_stadium_packed_dl_2658 + type: MK64:PACKED_GFX + offset: 0xA06 +d_course_wario_stadium_packed_dl_26C8: + symbol: d_course_wario_stadium_packed_dl_26C8 + type: MK64:PACKED_GFX + offset: 0xA21 +d_course_wario_stadium_packed_dl_2780: + symbol: d_course_wario_stadium_packed_dl_2780 + type: MK64:PACKED_GFX + offset: 0xA52 +d_course_wario_stadium_packed_dl_2848: + symbol: d_course_wario_stadium_packed_dl_2848 + type: MK64:PACKED_GFX + offset: 0xA8D +d_course_wario_stadium_packed_dl_2908: + symbol: d_course_wario_stadium_packed_dl_2908 + type: MK64:PACKED_GFX + offset: 0xAC1 +d_course_wario_stadium_packed_dl_29B8: + symbol: d_course_wario_stadium_packed_dl_29B8 + type: MK64:PACKED_GFX + offset: 0xAED +d_course_wario_stadium_packed_dl_2A28: + symbol: d_course_wario_stadium_packed_dl_2A28 + type: MK64:PACKED_GFX + offset: 0xB08 +d_course_wario_stadium_packed_dl_2AB0: + symbol: d_course_wario_stadium_packed_dl_2AB0 + type: MK64:PACKED_GFX + offset: 0xB32 +d_course_wario_stadium_packed_dl_2BB0: + symbol: d_course_wario_stadium_packed_dl_2BB0 + type: MK64:PACKED_GFX + offset: 0xB8C +d_course_wario_stadium_packed_dl_2C18: + symbol: d_course_wario_stadium_packed_dl_2C18 + type: MK64:PACKED_GFX + offset: 0xBA2 +d_course_wario_stadium_packed_dl_2C80: + symbol: d_course_wario_stadium_packed_dl_2C80 + type: MK64:PACKED_GFX + offset: 0xBB8 +d_course_wario_stadium_packed_dl_2CE8: + symbol: d_course_wario_stadium_packed_dl_2CE8 + type: MK64:PACKED_GFX + offset: 0xBCE +d_course_wario_stadium_packed_dl_2DB0: + symbol: d_course_wario_stadium_packed_dl_2DB0 + type: MK64:PACKED_GFX + offset: 0xC07 +d_course_wario_stadium_packed_dl_2E90: + symbol: d_course_wario_stadium_packed_dl_2E90 + type: MK64:PACKED_GFX + offset: 0xC59 +d_course_wario_stadium_packed_dl_2F08: + symbol: d_course_wario_stadium_packed_dl_2F08 + type: MK64:PACKED_GFX + offset: 0xC77 +d_course_wario_stadium_packed_dl_2F78: + symbol: d_course_wario_stadium_packed_dl_2F78 + type: MK64:PACKED_GFX + offset: 0xC90 +d_course_wario_stadium_packed_dl_2FE8: + symbol: d_course_wario_stadium_packed_dl_2FE8 + type: MK64:PACKED_GFX + offset: 0xCAB +d_course_wario_stadium_packed_dl_3070: + symbol: d_course_wario_stadium_packed_dl_3070 + type: MK64:PACKED_GFX + offset: 0xCD5 +d_course_wario_stadium_packed_dl_30E8: + symbol: d_course_wario_stadium_packed_dl_30E8 + type: MK64:PACKED_GFX + offset: 0xCF3 +d_course_wario_stadium_packed_dl_3160: + symbol: d_course_wario_stadium_packed_dl_3160 + type: MK64:PACKED_GFX + offset: 0xD13 +d_course_wario_stadium_packed_dl_31F0: + symbol: d_course_wario_stadium_packed_dl_31F0 + type: MK64:PACKED_GFX + offset: 0xD42 +d_course_wario_stadium_packed_dl_3260: + symbol: d_course_wario_stadium_packed_dl_3260 + type: MK64:PACKED_GFX + offset: 0xD5D +d_course_wario_stadium_packed_dl_32D0: + symbol: d_course_wario_stadium_packed_dl_32D0 + type: MK64:PACKED_GFX + offset: 0xD76 +d_course_wario_stadium_packed_dl_3350: + symbol: d_course_wario_stadium_packed_dl_3350 + type: MK64:PACKED_GFX + offset: 0xD99 +d_course_wario_stadium_packed_dl_33C0: + symbol: d_course_wario_stadium_packed_dl_33C0 + type: MK64:PACKED_GFX + offset: 0xDB4 +d_course_wario_stadium_packed_dl_3438: + symbol: d_course_wario_stadium_packed_dl_3438 + type: MK64:PACKED_GFX + offset: 0xDD2 +d_course_wario_stadium_packed_dl_34A0: + symbol: d_course_wario_stadium_packed_dl_34A0 + type: MK64:PACKED_GFX + offset: 0xDE8 +d_course_wario_stadium_packed_dl_3518: + symbol: d_course_wario_stadium_packed_dl_3518 + type: MK64:PACKED_GFX + offset: 0xE06 +d_course_wario_stadium_packed_dl_3598: + symbol: d_course_wario_stadium_packed_dl_3598 + type: MK64:PACKED_GFX + offset: 0xE29 +d_course_wario_stadium_packed_dl_35F8: + symbol: d_course_wario_stadium_packed_dl_35F8 + type: MK64:PACKED_GFX + offset: 0xE3A +d_course_wario_stadium_packed_dl_3660: + symbol: d_course_wario_stadium_packed_dl_3660 + type: MK64:PACKED_GFX + offset: 0xE4E +d_course_wario_stadium_packed_dl_36D0: + symbol: d_course_wario_stadium_packed_dl_36D0 + type: MK64:PACKED_GFX + offset: 0xE69 +d_course_wario_stadium_packed_dl_3758: + symbol: d_course_wario_stadium_packed_dl_3758 + type: MK64:PACKED_GFX + offset: 0xE91 +d_course_wario_stadium_packed_dl_37E0: + symbol: d_course_wario_stadium_packed_dl_37E0 + type: MK64:PACKED_GFX + offset: 0xEB9 +d_course_wario_stadium_packed_dl_3848: + symbol: d_course_wario_stadium_packed_dl_3848 + type: MK64:PACKED_GFX + offset: 0xECD +d_course_wario_stadium_packed_dl_38F8: + symbol: d_course_wario_stadium_packed_dl_38F8 + type: MK64:PACKED_GFX + offset: 0xF0D +d_course_wario_stadium_packed_dl_3960: + symbol: d_course_wario_stadium_packed_dl_3960 + type: MK64:PACKED_GFX + offset: 0xF21 +d_course_wario_stadium_packed_dl_39D0: + symbol: d_course_wario_stadium_packed_dl_39D0 + type: MK64:PACKED_GFX + offset: 0xF3C +d_course_wario_stadium_packed_dl_3A30: + symbol: d_course_wario_stadium_packed_dl_3A30 + type: MK64:PACKED_GFX + offset: 0xF4D +d_course_wario_stadium_packed_dl_3AA8: + symbol: d_course_wario_stadium_packed_dl_3AA8 + type: MK64:PACKED_GFX + offset: 0xF6D +d_course_wario_stadium_packed_dl_3B08: + symbol: d_course_wario_stadium_packed_dl_3B08 + type: MK64:PACKED_GFX + offset: 0xF7E +d_course_wario_stadium_packed_dl_3B68: + symbol: d_course_wario_stadium_packed_dl_3B68 + type: MK64:PACKED_GFX + offset: 0xF8F +d_course_wario_stadium_packed_dl_3BD0: + symbol: d_course_wario_stadium_packed_dl_3BD0 + type: MK64:PACKED_GFX + offset: 0xFA3 +d_course_wario_stadium_packed_dl_3C40: + symbol: d_course_wario_stadium_packed_dl_3C40 + type: MK64:PACKED_GFX + offset: 0xFBE +d_course_wario_stadium_packed_dl_3CA8: + symbol: d_course_wario_stadium_packed_dl_3CA8 + type: MK64:PACKED_GFX + offset: 0xFD4 +d_course_wario_stadium_packed_dl_3D10: + symbol: d_course_wario_stadium_packed_dl_3D10 + type: MK64:PACKED_GFX + offset: 0xFEA +d_course_wario_stadium_packed_dl_3D80: + symbol: d_course_wario_stadium_packed_dl_3D80 + type: MK64:PACKED_GFX + offset: 0x1005 +d_course_wario_stadium_packed_dl_3DE8: + symbol: d_course_wario_stadium_packed_dl_3DE8 + type: MK64:PACKED_GFX + offset: 0x101B +d_course_wario_stadium_packed_dl_3E50: + symbol: d_course_wario_stadium_packed_dl_3E50 + type: MK64:PACKED_GFX + offset: 0x102F +d_course_wario_stadium_packed_dl_3EC0: + symbol: d_course_wario_stadium_packed_dl_3EC0 + type: MK64:PACKED_GFX + offset: 0x1057 +d_course_wario_stadium_packed_dl_3F70: + symbol: d_course_wario_stadium_packed_dl_3F70 + type: MK64:PACKED_GFX + offset: 0x1077 +d_course_wario_stadium_packed_dl_4038: + symbol: d_course_wario_stadium_packed_dl_4038 + type: MK64:PACKED_GFX + offset: 0x10A4 +d_course_wario_stadium_packed_dl_4098: + symbol: d_course_wario_stadium_packed_dl_4098 + type: MK64:PACKED_GFX + offset: 0x10B5 +d_course_wario_stadium_packed_dl_4168: + symbol: d_course_wario_stadium_packed_dl_4168 + type: MK64:PACKED_GFX + offset: 0x10E7 +d_course_wario_stadium_packed_dl_4218: + symbol: d_course_wario_stadium_packed_dl_4218 + type: MK64:PACKED_GFX + offset: 0x1107 +d_course_wario_stadium_packed_dl_42C8: + symbol: d_course_wario_stadium_packed_dl_42C8 + type: MK64:PACKED_GFX + offset: 0x1127 +d_course_wario_stadium_packed_dl_4378: + symbol: d_course_wario_stadium_packed_dl_4378 + type: MK64:PACKED_GFX + offset: 0x1147 +d_course_wario_stadium_packed_dl_4438: + symbol: d_course_wario_stadium_packed_dl_4438 + type: MK64:PACKED_GFX + offset: 0x1171 +d_course_wario_stadium_packed_dl_44E8: + symbol: d_course_wario_stadium_packed_dl_44E8 + type: MK64:PACKED_GFX + offset: 0x1191 +d_course_wario_stadium_packed_dl_4598: + symbol: d_course_wario_stadium_packed_dl_4598 + type: MK64:PACKED_GFX + offset: 0x11B1 +d_course_wario_stadium_packed_dl_4658: + symbol: d_course_wario_stadium_packed_dl_4658 + type: MK64:PACKED_GFX + offset: 0x11DB +d_course_wario_stadium_packed_dl_46B8: + symbol: d_course_wario_stadium_packed_dl_46B8 + type: MK64:PACKED_GFX + offset: 0x11EC +d_course_wario_stadium_packed_dl_4768: + symbol: d_course_wario_stadium_packed_dl_4768 + type: MK64:PACKED_GFX + offset: 0x120C +d_course_wario_stadium_packed_dl_47D8: + symbol: d_course_wario_stadium_packed_dl_47D8 + type: MK64:PACKED_GFX + offset: 0x1234 +d_course_wario_stadium_packed_dl_4808: + symbol: d_course_wario_stadium_packed_dl_4808 + type: MK64:PACKED_GFX + offset: 0x1244 +d_course_wario_stadium_packed_dl_4930: + symbol: d_course_wario_stadium_packed_dl_4930 + type: MK64:PACKED_GFX + offset: 0x12AD +d_course_wario_stadium_packed_dl_4AA0: + symbol: d_course_wario_stadium_packed_dl_4AA0 + type: MK64:PACKED_GFX + offset: 0x1341 +d_course_wario_stadium_packed_dl_4BA8: + symbol: d_course_wario_stadium_packed_dl_4BA8 + type: MK64:PACKED_GFX + offset: 0x13B9 +d_course_wario_stadium_packed_dl_4D68: + symbol: d_course_wario_stadium_packed_dl_4D68 + type: MK64:PACKED_GFX + offset: 0x147D +d_course_wario_stadium_packed_dl_4EB8: + symbol: d_course_wario_stadium_packed_dl_4EB8 + type: MK64:PACKED_GFX + offset: 0x14FD +d_course_wario_stadium_packed_dl_4FB8: + symbol: d_course_wario_stadium_packed_dl_4FB8 + type: MK64:PACKED_GFX + offset: 0x154D +d_course_wario_stadium_packed_dl_50A0: + symbol: d_course_wario_stadium_packed_dl_50A0 + type: MK64:PACKED_GFX + offset: 0x1590 +d_course_wario_stadium_packed_dl_5208: + symbol: d_course_wario_stadium_packed_dl_5208 + type: MK64:PACKED_GFX + offset: 0x161F +d_course_wario_stadium_packed_dl_52F8: + symbol: d_course_wario_stadium_packed_dl_52F8 + type: MK64:PACKED_GFX + offset: 0x1667 +d_course_wario_stadium_packed_dl_53D0: + symbol: d_course_wario_stadium_packed_dl_53D0 + type: MK64:PACKED_GFX + offset: 0x169E +d_course_wario_stadium_packed_dl_5508: + symbol: d_course_wario_stadium_packed_dl_5508 + type: MK64:PACKED_GFX + offset: 0x170F +d_course_wario_stadium_packed_dl_5590: + symbol: d_course_wario_stadium_packed_dl_5590 + type: MK64:PACKED_GFX + offset: 0x1739 +d_course_wario_stadium_packed_dl_5670: + symbol: d_course_wario_stadium_packed_dl_5670 + type: MK64:PACKED_GFX + offset: 0x1775 +d_course_wario_stadium_packed_dl_56E0: + symbol: d_course_wario_stadium_packed_dl_56E0 + type: MK64:PACKED_GFX + offset: 0x179D +d_course_wario_stadium_packed_dl_5768: + symbol: d_course_wario_stadium_packed_dl_5768 + type: MK64:PACKED_GFX + offset: 0x17C5 +d_course_wario_stadium_packed_dl_57F8: + symbol: d_course_wario_stadium_packed_dl_57F8 + type: MK64:PACKED_GFX + offset: 0x17F4 +d_course_wario_stadium_packed_dl_5888: + symbol: d_course_wario_stadium_packed_dl_5888 + type: MK64:PACKED_GFX + offset: 0x1823 +d_course_wario_stadium_packed_dl_5938: + symbol: d_course_wario_stadium_packed_dl_5938 + type: MK64:PACKED_GFX + offset: 0x1864 +d_course_wario_stadium_packed_dl_59C0: + symbol: d_course_wario_stadium_packed_dl_59C0 + type: MK64:PACKED_GFX + offset: 0x188E +d_course_wario_stadium_packed_dl_5A38: + symbol: d_course_wario_stadium_packed_dl_5A38 + type: MK64:PACKED_GFX + offset: 0x18AC +d_course_wario_stadium_packed_dl_5AA8: + symbol: d_course_wario_stadium_packed_dl_5AA8 + type: MK64:PACKED_GFX + offset: 0x18C5 +d_course_wario_stadium_packed_dl_5B38: + symbol: d_course_wario_stadium_packed_dl_5B38 + type: MK64:PACKED_GFX + offset: 0x18F4 +d_course_wario_stadium_packed_dl_5BB8: + symbol: d_course_wario_stadium_packed_dl_5BB8 + type: MK64:PACKED_GFX + offset: 0x1917 +d_course_wario_stadium_packed_dl_5C30: + symbol: d_course_wario_stadium_packed_dl_5C30 + type: MK64:PACKED_GFX + offset: 0x1935 +d_course_wario_stadium_packed_dl_5CB0: + symbol: d_course_wario_stadium_packed_dl_5CB0 + type: MK64:PACKED_GFX + offset: 0x195A +d_course_wario_stadium_packed_dl_5D20: + symbol: d_course_wario_stadium_packed_dl_5D20 + type: MK64:PACKED_GFX + offset: 0x1973 +d_course_wario_stadium_packed_dl_5D90: + symbol: d_course_wario_stadium_packed_dl_5D90 + type: MK64:PACKED_GFX + offset: 0x198C +d_course_wario_stadium_packed_dl_5E00: + symbol: d_course_wario_stadium_packed_dl_5E00 + type: MK64:PACKED_GFX + offset: 0x19B4 +d_course_wario_stadium_packed_dl_5E88: + symbol: d_course_wario_stadium_packed_dl_5E88 + type: MK64:PACKED_GFX + offset: 0x19DC +d_course_wario_stadium_packed_dl_5F08: + symbol: d_course_wario_stadium_packed_dl_5F08 + type: MK64:PACKED_GFX + offset: 0x1A01 +d_course_wario_stadium_packed_dl_5FC8: + symbol: d_course_wario_stadium_packed_dl_5FC8 + type: MK64:PACKED_GFX + offset: 0x1A4C +d_course_wario_stadium_packed_dl_6068: + symbol: d_course_wario_stadium_packed_dl_6068 + type: MK64:PACKED_GFX + offset: 0x1A7F +d_course_wario_stadium_packed_dl_6108: + symbol: d_course_wario_stadium_packed_dl_6108 + type: MK64:PACKED_GFX + offset: 0x1AB4 +d_course_wario_stadium_packed_dl_6198: + symbol: d_course_wario_stadium_packed_dl_6198 + type: MK64:PACKED_GFX + offset: 0x1AE3 +d_course_wario_stadium_packed_dl_62C8: + symbol: d_course_wario_stadium_packed_dl_62C8 + type: MK64:PACKED_GFX + offset: 0x1B6C +d_course_wario_stadium_packed_dl_6390: + symbol: d_course_wario_stadium_packed_dl_6390 + type: MK64:PACKED_GFX + offset: 0x1BB8 +d_course_wario_stadium_packed_dl_6418: + symbol: d_course_wario_stadium_packed_dl_6418 + type: MK64:PACKED_GFX + offset: 0x1BE0 +d_course_wario_stadium_packed_dl_64E8: + symbol: d_course_wario_stadium_packed_dl_64E8 + type: MK64:PACKED_GFX + offset: 0x1C33 +d_course_wario_stadium_packed_dl_65A0: + symbol: d_course_wario_stadium_packed_dl_65A0 + type: MK64:PACKED_GFX + offset: 0x1C77 +d_course_wario_stadium_packed_dl_6658: + symbol: d_course_wario_stadium_packed_dl_6658 + type: MK64:PACKED_GFX + offset: 0x1CB9 +d_course_wario_stadium_packed_dl_6700: + symbol: d_course_wario_stadium_packed_dl_6700 + type: MK64:PACKED_GFX + offset: 0x1CF3 +d_course_wario_stadium_packed_dl_67B8: + symbol: d_course_wario_stadium_packed_dl_67B8 + type: MK64:PACKED_GFX + offset: 0x1D37 +d_course_wario_stadium_packed_dl_6878: + symbol: d_course_wario_stadium_packed_dl_6878 + type: MK64:PACKED_GFX + offset: 0x1D82 +d_course_wario_stadium_packed_dl_68F0: + symbol: d_course_wario_stadium_packed_dl_68F0 + type: MK64:PACKED_GFX + offset: 0x1DA2 +d_course_wario_stadium_packed_dl_6950: + symbol: d_course_wario_stadium_packed_dl_6950 + type: MK64:PACKED_GFX + offset: 0x1DB1 +d_course_wario_stadium_packed_dl_6A10: + symbol: d_course_wario_stadium_packed_dl_6A10 + type: MK64:PACKED_GFX + offset: 0x1DFC +d_course_wario_stadium_packed_dl_6AE8: + symbol: d_course_wario_stadium_packed_dl_6AE8 + type: MK64:PACKED_GFX + offset: 0x1E52 +d_course_wario_stadium_packed_dl_6BE0: + symbol: d_course_wario_stadium_packed_dl_6BE0 + type: MK64:PACKED_GFX + offset: 0x1EBC +d_course_wario_stadium_packed_dl_6C80: + symbol: d_course_wario_stadium_packed_dl_6C80 + type: MK64:PACKED_GFX + offset: 0x1EF3 +d_course_wario_stadium_packed_dl_6D20: + symbol: d_course_wario_stadium_packed_dl_6D20 + type: MK64:PACKED_GFX + offset: 0x1F2A +d_course_wario_stadium_packed_dl_6DD8: + symbol: d_course_wario_stadium_packed_dl_6DD8 + type: MK64:PACKED_GFX + offset: 0x1F6D +d_course_wario_stadium_packed_dl_6EC8: + symbol: d_course_wario_stadium_packed_dl_6EC8 + type: MK64:PACKED_GFX + offset: 0x1FBF +d_course_wario_stadium_packed_dl_6FC0: + symbol: d_course_wario_stadium_packed_dl_6FC0 + type: MK64:PACKED_GFX + offset: 0x2018 +d_course_wario_stadium_packed_dl_7090: + symbol: d_course_wario_stadium_packed_dl_7090 + type: MK64:PACKED_GFX + offset: 0x206D +d_course_wario_stadium_packed_dl_7220: + symbol: d_course_wario_stadium_packed_dl_7220 + type: MK64:PACKED_GFX + offset: 0x2130 +d_course_wario_stadium_packed_dl_7338: + symbol: d_course_wario_stadium_packed_dl_7338 + type: MK64:PACKED_GFX + offset: 0x219B +d_course_wario_stadium_packed_dl_73F0: + symbol: d_course_wario_stadium_packed_dl_73F0 + type: MK64:PACKED_GFX + offset: 0x21E3 +d_course_wario_stadium_packed_dl_7530: + symbol: d_course_wario_stadium_packed_dl_7530 + type: MK64:PACKED_GFX + offset: 0x2267 +d_course_wario_stadium_packed_dl_75A8: + symbol: d_course_wario_stadium_packed_dl_75A8 + type: MK64:PACKED_GFX + offset: 0x2285 +d_course_wario_stadium_packed_dl_7630: + symbol: d_course_wario_stadium_packed_dl_7630 + type: MK64:PACKED_GFX + offset: 0x22AF +d_course_wario_stadium_packed_dl_76E0: + symbol: d_course_wario_stadium_packed_dl_76E0 + type: MK64:PACKED_GFX + offset: 0x22F0 +d_course_wario_stadium_packed_dl_77A8: + symbol: d_course_wario_stadium_packed_dl_77A8 + type: MK64:PACKED_GFX + offset: 0x2340 +d_course_wario_stadium_packed_dl_7838: + symbol: d_course_wario_stadium_packed_dl_7838 + type: MK64:PACKED_GFX + offset: 0x236F +d_course_wario_stadium_packed_dl_7960: + symbol: d_course_wario_stadium_packed_dl_7960 + type: MK64:PACKED_GFX + offset: 0x23E4 +d_course_wario_stadium_packed_dl_7A40: + symbol: d_course_wario_stadium_packed_dl_7A40 + type: MK64:PACKED_GFX + offset: 0x242E +d_course_wario_stadium_packed_dl_7B20: + symbol: d_course_wario_stadium_packed_dl_7B20 + type: MK64:PACKED_GFX + offset: 0x2478 +d_course_wario_stadium_packed_dl_7BE0: + symbol: d_course_wario_stadium_packed_dl_7BE0 + type: MK64:PACKED_GFX + offset: 0x24BF +d_course_wario_stadium_packed_dl_7D00: + symbol: d_course_wario_stadium_packed_dl_7D00 + type: MK64:PACKED_GFX + offset: 0x252D +d_course_wario_stadium_packed_dl_7DF8: + symbol: d_course_wario_stadium_packed_dl_7DF8 + type: MK64:PACKED_GFX + offset: 0x2584 +d_course_wario_stadium_packed_dl_7ED0: + symbol: d_course_wario_stadium_packed_dl_7ED0 + type: MK64:PACKED_GFX + offset: 0x25C7 +d_course_wario_stadium_packed_dl_7FB0: + symbol: d_course_wario_stadium_packed_dl_7FB0 + type: MK64:PACKED_GFX + offset: 0x260F +d_course_wario_stadium_packed_dl_8030: + symbol: d_course_wario_stadium_packed_dl_8030 + type: MK64:PACKED_GFX + offset: 0x2634 +d_course_wario_stadium_packed_dl_80E8: + symbol: d_course_wario_stadium_packed_dl_80E8 + type: MK64:PACKED_GFX + offset: 0x267C +d_course_wario_stadium_packed_dl_8240: + symbol: d_course_wario_stadium_packed_dl_8240 + type: MK64:PACKED_GFX + offset: 0x270B +d_course_wario_stadium_packed_dl_82F8: + symbol: d_course_wario_stadium_packed_dl_82F8 + type: MK64:PACKED_GFX + offset: 0x2753 +d_course_wario_stadium_packed_dl_83A0: + symbol: d_course_wario_stadium_packed_dl_83A0 + type: MK64:PACKED_GFX + offset: 0x2791 +d_course_wario_stadium_packed_dl_8438: + symbol: d_course_wario_stadium_packed_dl_8438 + type: MK64:PACKED_GFX + offset: 0x27C5 +d_course_wario_stadium_packed_dl_8510: + symbol: d_course_wario_stadium_packed_dl_8510 + type: MK64:PACKED_GFX + offset: 0x280A +d_course_wario_stadium_packed_dl_85F0: + symbol: d_course_wario_stadium_packed_dl_85F0 + type: MK64:PACKED_GFX + offset: 0x285C +d_course_wario_stadium_packed_dl_8678: + symbol: d_course_wario_stadium_packed_dl_8678 + type: MK64:PACKED_GFX + offset: 0x2886 +d_course_wario_stadium_packed_dl_8708: + symbol: d_course_wario_stadium_packed_dl_8708 + type: MK64:PACKED_GFX + offset: 0x28B5 +d_course_wario_stadium_packed_dl_8798: + symbol: d_course_wario_stadium_packed_dl_8798 + type: MK64:PACKED_GFX + offset: 0x28E4 +d_course_wario_stadium_packed_dl_88A0: + symbol: d_course_wario_stadium_packed_dl_88A0 + type: MK64:PACKED_GFX + offset: 0x295C +d_course_wario_stadium_packed_dl_8A68: + symbol: d_course_wario_stadium_packed_dl_8A68 + type: MK64:PACKED_GFX + offset: 0x2A48 +d_course_wario_stadium_packed_dl_8C28: + symbol: d_course_wario_stadium_packed_dl_8C28 + type: MK64:PACKED_GFX + offset: 0x2B31 +d_course_wario_stadium_packed_dl_8D28: + symbol: d_course_wario_stadium_packed_dl_8D28 + type: MK64:PACKED_GFX + offset: 0x2BA4 +d_course_wario_stadium_packed_dl_8DE8: + symbol: d_course_wario_stadium_packed_dl_8DE8 + type: MK64:PACKED_GFX + offset: 0x2BCE +d_course_wario_stadium_packed_dl_8EF0: + symbol: d_course_wario_stadium_packed_dl_8EF0 + type: MK64:PACKED_GFX + offset: 0x2C46 +d_course_wario_stadium_packed_dl_8FC8: + symbol: d_course_wario_stadium_packed_dl_8FC8 + type: MK64:PACKED_GFX + offset: 0x2CA0 +d_course_wario_stadium_packed_dl_9090: + symbol: d_course_wario_stadium_packed_dl_9090 + type: MK64:PACKED_GFX + offset: 0x2CF0 +d_course_wario_stadium_packed_dl_9120: + symbol: d_course_wario_stadium_packed_dl_9120 + type: MK64:PACKED_GFX + offset: 0x2D1F +d_course_wario_stadium_packed_dl_91E8: + symbol: d_course_wario_stadium_packed_dl_91E8 + type: MK64:PACKED_GFX + offset: 0x2D6B +d_course_wario_stadium_packed_dl_9328: + symbol: d_course_wario_stadium_packed_dl_9328 + type: MK64:PACKED_GFX + offset: 0x2E02 +d_course_wario_stadium_packed_dl_93B0: + symbol: d_course_wario_stadium_packed_dl_93B0 + type: MK64:PACKED_GFX + offset: 0x2E2C +d_course_wario_stadium_packed_dl_9430: + symbol: d_course_wario_stadium_packed_dl_9430 + type: MK64:PACKED_GFX + offset: 0x2E51 +d_course_wario_stadium_packed_dl_9590: + symbol: d_course_wario_stadium_packed_dl_9590 + type: MK64:PACKED_GFX + offset: 0x2EFE +d_course_wario_stadium_packed_dl_9668: + symbol: d_course_wario_stadium_packed_dl_9668 + type: MK64:PACKED_GFX + offset: 0x2F56 +d_course_wario_stadium_packed_dl_9760: + symbol: d_course_wario_stadium_packed_dl_9760 + type: MK64:PACKED_GFX + offset: 0x2FC4 +d_course_wario_stadium_packed_dl_9820: + symbol: d_course_wario_stadium_packed_dl_9820 + type: MK64:PACKED_GFX + offset: 0x300D +d_course_wario_stadium_packed_dl_98A0: + symbol: d_course_wario_stadium_packed_dl_98A0 + type: MK64:PACKED_GFX + offset: 0x3032 +d_course_wario_stadium_packed_dl_9998: + symbol: d_course_wario_stadium_packed_dl_9998 + type: MK64:PACKED_GFX + offset: 0x30A0 +d_course_wario_stadium_packed_dl_9AD8: + symbol: d_course_wario_stadium_packed_dl_9AD8 + type: MK64:PACKED_GFX + offset: 0x3135 +d_course_wario_stadium_packed_dl_9C80: + symbol: d_course_wario_stadium_packed_dl_9C80 + type: MK64:PACKED_GFX + offset: 0x320D +d_course_wario_stadium_packed_dl_9D00: + symbol: d_course_wario_stadium_packed_dl_9D00 + type: MK64:PACKED_GFX + offset: 0x3232 +d_course_wario_stadium_packed_dl_9D78: + symbol: d_course_wario_stadium_packed_dl_9D78 + type: MK64:PACKED_GFX + offset: 0x3252 +d_course_wario_stadium_packed_dl_9E00: + symbol: d_course_wario_stadium_packed_dl_9E00 + type: MK64:PACKED_GFX + offset: 0x327C +d_course_wario_stadium_packed_dl_9EE0: + symbol: d_course_wario_stadium_packed_dl_9EE0 + type: MK64:PACKED_GFX + offset: 0x32CE +d_course_wario_stadium_packed_dl_9F18: + symbol: d_course_wario_stadium_packed_dl_9F18 + type: MK64:PACKED_GFX + offset: 0x32E7 +d_course_wario_stadium_packed_dl_9F28: + symbol: d_course_wario_stadium_packed_dl_9F28 + type: MK64:PACKED_GFX + offset: 0x32EB +d_course_wario_stadium_packed_dl_A0C8: + symbol: d_course_wario_stadium_packed_dl_A0C8 + type: MK64:PACKED_GFX + offset: 0x33DF +d_course_wario_stadium_packed_dl_A0D8: + symbol: d_course_wario_stadium_packed_dl_A0D8 + type: MK64:PACKED_GFX + offset: 0x33E3 +d_course_wario_stadium_packed_dl_A148: + symbol: d_course_wario_stadium_packed_dl_A148 + type: MK64:PACKED_GFX + offset: 0x33FE +d_course_wario_stadium_packed_dl_A1B8: + symbol: d_course_wario_stadium_packed_dl_A1B8 + type: MK64:PACKED_GFX + offset: 0x3419 +d_course_wario_stadium_packed_dl_A228: + symbol: d_course_wario_stadium_packed_dl_A228 + type: MK64:PACKED_GFX + offset: 0x3434 +d_course_wario_stadium_packed_dl_A248: + symbol: d_course_wario_stadium_packed_dl_A248 + type: MK64:PACKED_GFX + offset: 0x343E +d_course_wario_stadium_packed_dl_A448: + symbol: d_course_wario_stadium_packed_dl_A448 + type: MK64:PACKED_GFX + offset: 0x34BD +d_course_wario_stadium_packed_dl_A458: + symbol: d_course_wario_stadium_packed_dl_A458 + type: MK64:PACKED_GFX + offset: 0x34C1 +d_course_wario_stadium_packed_dl_A4A8: + symbol: d_course_wario_stadium_packed_dl_A4A8 + type: MK64:PACKED_GFX + offset: 0x34DD +d_course_wario_stadium_packed_dl_A4C0: + symbol: d_course_wario_stadium_packed_dl_A4C0 + type: MK64:PACKED_GFX + offset: 0x34E4 diff --git a/yamls/us/models/tracks/wario_stadium/wario_stadium_vertices.yml b/yamls/us/models/tracks/wario_stadium/wario_stadium_vertices.yml new file mode 100644 index 000000000..afeeceb7e --- /dev/null +++ b/yamls/us/models/tracks/wario_stadium/wario_stadium_vertices.yml @@ -0,0 +1,2223 @@ +:config: + segments: + - [0x0F, 0x9438C0] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_wario_stadium_vertex_0x04000000: + symbol: d_course_wario_stadium_vertex_0x04000000 + type: mk64:course_vtx + count: 4 + offset: 0x0 + +d_course_wario_stadium_vertex_0x04000040: + symbol: d_course_wario_stadium_vertex_0x04000040 + type: mk64:course_vtx + count: 4 + offset: 0x38 + +d_course_wario_stadium_vertex_0x04000080: + symbol: d_course_wario_stadium_vertex_0x04000080 + type: mk64:course_vtx + count: 4 + offset: 0x70 + +d_course_wario_stadium_vertex_0x040000C0: + symbol: d_course_wario_stadium_vertex_0x040000C0 + type: mk64:course_vtx + count: 4 + offset: 0xa8 + +d_course_wario_stadium_vertex_0x04000100: + symbol: d_course_wario_stadium_vertex_0x04000100 + type: mk64:course_vtx + count: 4 + offset: 0xe0 + +d_course_wario_stadium_vertex_0x04000140: + symbol: d_course_wario_stadium_vertex_0x04000140 + type: mk64:course_vtx + count: 4 + offset: 0x118 + +d_course_wario_stadium_vertex_0x04000180: + symbol: d_course_wario_stadium_vertex_0x04000180 + type: mk64:course_vtx + count: 4 + offset: 0x150 + +d_course_wario_stadium_vertex_0x040001C0: + symbol: d_course_wario_stadium_vertex_0x040001C0 + type: mk64:course_vtx + count: 4 + offset: 0x188 + +d_course_wario_stadium_vertex_0x04000200: + symbol: d_course_wario_stadium_vertex_0x04000200 + type: mk64:course_vtx + count: 4 + offset: 0x1c0 + +d_course_wario_stadium_vertex_0x04000240: + symbol: d_course_wario_stadium_vertex_0x04000240 + type: mk64:course_vtx + count: 5 + offset: 0x1f8 + +d_course_wario_stadium_vertex_0x04000290: + symbol: d_course_wario_stadium_vertex_0x04000290 + type: mk64:course_vtx + count: 36 + offset: 0x23e + +d_course_wario_stadium_vertex_0x04000410: + symbol: d_course_wario_stadium_vertex_0x04000410 + type: mk64:course_vtx + count: 4 + offset: 0x38e + +d_course_wario_stadium_vertex_0x04000450: + symbol: d_course_wario_stadium_vertex_0x04000450 + type: mk64:course_vtx + count: 36 + offset: 0x3c6 + +d_course_wario_stadium_vertex_0x040005D0: + symbol: d_course_wario_stadium_vertex_0x040005D0 + type: mk64:course_vtx + count: 4 + offset: 0x516 + +d_course_wario_stadium_vertex_0x04000610: + symbol: d_course_wario_stadium_vertex_0x04000610 + type: mk64:course_vtx + count: 4 + offset: 0x54e + +d_course_wario_stadium_vertex_0x04000650: + symbol: d_course_wario_stadium_vertex_0x04000650 + type: mk64:course_vtx + count: 18 + offset: 0x586 + +d_course_wario_stadium_vertex_0x04000710: + symbol: d_course_wario_stadium_vertex_0x04000710 + type: mk64:course_vtx + count: 4 + offset: 0x62e + +d_course_wario_stadium_vertex_0x04000750: + symbol: d_course_wario_stadium_vertex_0x04000750 + type: mk64:course_vtx + count: 18 + offset: 0x666 + +d_course_wario_stadium_vertex_0x04000810: + symbol: d_course_wario_stadium_vertex_0x04000810 + type: mk64:course_vtx + count: 5 + offset: 0x70e + +d_course_wario_stadium_vertex_0x04000860: + symbol: d_course_wario_stadium_vertex_0x04000860 + type: mk64:course_vtx + count: 18 + offset: 0x754 + +d_course_wario_stadium_vertex_0x04000920: + symbol: d_course_wario_stadium_vertex_0x04000920 + type: mk64:course_vtx + count: 4 + offset: 0x7fc + +d_course_wario_stadium_vertex_0x04000960: + symbol: d_course_wario_stadium_vertex_0x04000960 + type: mk64:course_vtx + count: 18 + offset: 0x834 + +d_course_wario_stadium_vertex_0x04000A20: + symbol: d_course_wario_stadium_vertex_0x04000A20 + type: mk64:course_vtx + count: 18 + offset: 0x8dc + +d_course_wario_stadium_vertex_0x04000AE0: + symbol: d_course_wario_stadium_vertex_0x04000AE0 + type: mk64:course_vtx + count: 18 + offset: 0x984 + +d_course_wario_stadium_vertex_0x04000BA0: + symbol: d_course_wario_stadium_vertex_0x04000BA0 + type: mk64:course_vtx + count: 4 + offset: 0xa2c + +d_course_wario_stadium_vertex_0x04000BE0: + symbol: d_course_wario_stadium_vertex_0x04000BE0 + type: mk64:course_vtx + count: 5 + offset: 0xa64 + +d_course_wario_stadium_vertex_0x04000C30: + symbol: d_course_wario_stadium_vertex_0x04000C30 + type: mk64:course_vtx + count: 22 + offset: 0xaaa + +d_course_wario_stadium_vertex_0x04000D30: + symbol: d_course_wario_stadium_vertex_0x04000D30 + type: mk64:course_vtx + count: 22 + offset: 0xb8a + +d_course_wario_stadium_vertex_0x04000E30: + symbol: d_course_wario_stadium_vertex_0x04000E30 + type: mk64:course_vtx + count: 19 + offset: 0xc6a + +d_course_wario_stadium_vertex_0x04000F00: + symbol: d_course_wario_stadium_vertex_0x04000F00 + type: mk64:course_vtx + count: 19 + offset: 0xd20 + +d_course_wario_stadium_vertex_0x04000FD0: + symbol: d_course_wario_stadium_vertex_0x04000FD0 + type: mk64:course_vtx + count: 23 + offset: 0xdd6 + +d_course_wario_stadium_vertex_0x040010E0: + symbol: d_course_wario_stadium_vertex_0x040010E0 + type: mk64:course_vtx + count: 21 + offset: 0xec4 + +d_course_wario_stadium_vertex_0x040011D0: + symbol: d_course_wario_stadium_vertex_0x040011D0 + type: mk64:course_vtx + count: 22 + offset: 0xf96 + +d_course_wario_stadium_vertex_0x040012D0: + symbol: d_course_wario_stadium_vertex_0x040012D0 + type: mk64:course_vtx + count: 22 + offset: 0x1076 + +d_course_wario_stadium_vertex_0x040013D0: + symbol: d_course_wario_stadium_vertex_0x040013D0 + type: mk64:course_vtx + count: 18 + offset: 0x1156 + +d_course_wario_stadium_vertex_0x04001490: + symbol: d_course_wario_stadium_vertex_0x04001490 + type: mk64:course_vtx + count: 18 + offset: 0x11fe + +d_course_wario_stadium_vertex_0x04001550: + symbol: d_course_wario_stadium_vertex_0x04001550 + type: mk64:course_vtx + count: 18 + offset: 0x12a6 + +d_course_wario_stadium_vertex_0x04001610: + symbol: d_course_wario_stadium_vertex_0x04001610 + type: mk64:course_vtx + count: 22 + offset: 0x134e + +d_course_wario_stadium_vertex_0x04001710: + symbol: d_course_wario_stadium_vertex_0x04001710 + type: mk64:course_vtx + count: 23 + offset: 0x142e + +d_course_wario_stadium_vertex_0x04001820: + symbol: d_course_wario_stadium_vertex_0x04001820 + type: mk64:course_vtx + count: 4 + offset: 0x151c + +d_course_wario_stadium_vertex_0x04001860: + symbol: d_course_wario_stadium_vertex_0x04001860 + type: mk64:course_vtx + count: 50 + offset: 0x1554 + +d_course_wario_stadium_vertex_0x04001A60: + symbol: d_course_wario_stadium_vertex_0x04001A60 + type: mk64:course_vtx + count: 3 + offset: 0x1714 + +d_course_wario_stadium_vertex_0x04001A90: + symbol: d_course_wario_stadium_vertex_0x04001A90 + type: mk64:course_vtx + count: 8 + offset: 0x173e + +d_course_wario_stadium_vertex_0x04001B10: + symbol: d_course_wario_stadium_vertex_0x04001B10 + type: mk64:course_vtx + count: 4 + offset: 0x17ae + +d_course_wario_stadium_vertex_0x04001B50: + symbol: d_course_wario_stadium_vertex_0x04001B50 + type: mk64:course_vtx + count: 22 + offset: 0x17e6 + +d_course_wario_stadium_vertex_0x04001C50: + symbol: d_course_wario_stadium_vertex_0x04001C50 + type: mk64:course_vtx + count: 34 + offset: 0x18c6 + +d_course_wario_stadium_vertex_0x04001DB0: + symbol: d_course_wario_stadium_vertex_0x04001DB0 + type: mk64:course_vtx + count: 18 + offset: 0x19fa + +d_course_wario_stadium_vertex_0x04001E70: + symbol: d_course_wario_stadium_vertex_0x04001E70 + type: mk64:course_vtx + count: 19 + offset: 0x1aa2 + +d_course_wario_stadium_vertex_0x04001F40: + symbol: d_course_wario_stadium_vertex_0x04001F40 + type: mk64:course_vtx + count: 36 + offset: 0x1b58 + +d_course_wario_stadium_vertex_0x040020C0: + symbol: d_course_wario_stadium_vertex_0x040020C0 + type: mk64:course_vtx + count: 24 + offset: 0x1ca8 + +d_course_wario_stadium_vertex_0x040021E0: + symbol: d_course_wario_stadium_vertex_0x040021E0 + type: mk64:course_vtx + count: 18 + offset: 0x1da4 + +d_course_wario_stadium_vertex_0x040022A0: + symbol: d_course_wario_stadium_vertex_0x040022A0 + type: mk64:course_vtx + count: 4 + offset: 0x1e4c + +d_course_wario_stadium_vertex_0x040022E0: + symbol: d_course_wario_stadium_vertex_0x040022E0 + type: mk64:course_vtx + count: 8 + offset: 0x1e84 + +d_course_wario_stadium_vertex_0x04002360: + symbol: d_course_wario_stadium_vertex_0x04002360 + type: mk64:course_vtx + count: 21 + offset: 0x1ef4 + +d_course_wario_stadium_vertex_0x04002450: + symbol: d_course_wario_stadium_vertex_0x04002450 + type: mk64:course_vtx + count: 20 + offset: 0x1fc6 + +d_course_wario_stadium_vertex_0x04002530: + symbol: d_course_wario_stadium_vertex_0x04002530 + type: mk64:course_vtx + count: 22 + offset: 0x208a + +d_course_wario_stadium_vertex_0x04002630: + symbol: d_course_wario_stadium_vertex_0x04002630 + type: mk64:course_vtx + count: 18 + offset: 0x216a + +d_course_wario_stadium_vertex_0x040026F0: + symbol: d_course_wario_stadium_vertex_0x040026F0 + type: mk64:course_vtx + count: 20 + offset: 0x2212 + +d_course_wario_stadium_vertex_0x040027D0: + symbol: d_course_wario_stadium_vertex_0x040027D0 + type: mk64:course_vtx + count: 32 + offset: 0x22d6 + +d_course_wario_stadium_vertex_0x04002910: + symbol: d_course_wario_stadium_vertex_0x04002910 + type: mk64:course_vtx + count: 40 + offset: 0x23ee + +d_course_wario_stadium_vertex_0x04002AD0: + symbol: d_course_wario_stadium_vertex_0x04002AD0 + type: mk64:course_vtx + count: 4 + offset: 0x2576 + +d_course_wario_stadium_vertex_0x04002B10: + symbol: d_course_wario_stadium_vertex_0x04002B10 + type: mk64:course_vtx + count: 4 + offset: 0x25ae + +d_course_wario_stadium_vertex_0x04002B50: + symbol: d_course_wario_stadium_vertex_0x04002B50 + type: mk64:course_vtx + count: 18 + offset: 0x25e6 + +d_course_wario_stadium_vertex_0x04002C10: + symbol: d_course_wario_stadium_vertex_0x04002C10 + type: mk64:course_vtx + count: 18 + offset: 0x268e + +d_course_wario_stadium_vertex_0x04002CD0: + symbol: d_course_wario_stadium_vertex_0x04002CD0 + type: mk64:course_vtx + count: 32 + offset: 0x2736 + +d_course_wario_stadium_vertex_0x04002E10: + symbol: d_course_wario_stadium_vertex_0x04002E10 + type: mk64:course_vtx + count: 8 + offset: 0x284e + +d_course_wario_stadium_vertex_0x04002E90: + symbol: d_course_wario_stadium_vertex_0x04002E90 + type: mk64:course_vtx + count: 22 + offset: 0x28be + +d_course_wario_stadium_vertex_0x04002F90: + symbol: d_course_wario_stadium_vertex_0x04002F90 + type: mk64:course_vtx + count: 36 + offset: 0x299e + +d_course_wario_stadium_vertex_0x04003110: + symbol: d_course_wario_stadium_vertex_0x04003110 + type: mk64:course_vtx + count: 40 + offset: 0x2aee + +d_course_wario_stadium_vertex_0x040032D0: + symbol: d_course_wario_stadium_vertex_0x040032D0 + type: mk64:course_vtx + count: 22 + offset: 0x2c76 + +d_course_wario_stadium_vertex_0x040033D0: + symbol: d_course_wario_stadium_vertex_0x040033D0 + type: mk64:course_vtx + count: 34 + offset: 0x2d56 + +d_course_wario_stadium_vertex_0x04003530: + symbol: d_course_wario_stadium_vertex_0x04003530 + type: mk64:course_vtx + count: 8 + offset: 0x2e8a + +d_course_wario_stadium_vertex_0x040035B0: + symbol: d_course_wario_stadium_vertex_0x040035B0 + type: mk64:course_vtx + count: 48 + offset: 0x2efa + +d_course_wario_stadium_vertex_0x04003790: + symbol: d_course_wario_stadium_vertex_0x04003790 + type: mk64:course_vtx + count: 34 + offset: 0x309e + +d_course_wario_stadium_vertex_0x040038F0: + symbol: d_course_wario_stadium_vertex_0x040038F0 + type: mk64:course_vtx + count: 4 + offset: 0x31d2 + +d_course_wario_stadium_vertex_0x04003930: + symbol: d_course_wario_stadium_vertex_0x04003930 + type: mk64:course_vtx + count: 4 + offset: 0x320a + +d_course_wario_stadium_vertex_0x04003970: + symbol: d_course_wario_stadium_vertex_0x04003970 + type: mk64:course_vtx + count: 32 + offset: 0x3242 + +d_course_wario_stadium_vertex_0x04003AB0: + symbol: d_course_wario_stadium_vertex_0x04003AB0 + type: mk64:course_vtx + count: 20 + offset: 0x335a + +d_course_wario_stadium_vertex_0x04003B90: + symbol: d_course_wario_stadium_vertex_0x04003B90 + type: mk64:course_vtx + count: 18 + offset: 0x341e + +d_course_wario_stadium_vertex_0x04003C50: + symbol: d_course_wario_stadium_vertex_0x04003C50 + type: mk64:course_vtx + count: 18 + offset: 0x34c6 + +d_course_wario_stadium_vertex_0x04003D10: + symbol: d_course_wario_stadium_vertex_0x04003D10 + type: mk64:course_vtx + count: 36 + offset: 0x356e + +d_course_wario_stadium_vertex_0x04003E90: + symbol: d_course_wario_stadium_vertex_0x04003E90 + type: mk64:course_vtx + count: 32 + offset: 0x36be + +d_course_wario_stadium_vertex_0x04003FD0: + symbol: d_course_wario_stadium_vertex_0x04003FD0 + type: mk64:course_vtx + count: 18 + offset: 0x37d6 + +d_course_wario_stadium_vertex_0x04004090: + symbol: d_course_wario_stadium_vertex_0x04004090 + type: mk64:course_vtx + count: 18 + offset: 0x387e + +d_course_wario_stadium_vertex_0x04004150: + symbol: d_course_wario_stadium_vertex_0x04004150 + type: mk64:course_vtx + count: 22 + offset: 0x3926 + +d_course_wario_stadium_vertex_0x04004250: + symbol: d_course_wario_stadium_vertex_0x04004250 + type: mk64:course_vtx + count: 20 + offset: 0x3a06 + +d_course_wario_stadium_vertex_0x04004330: + symbol: d_course_wario_stadium_vertex_0x04004330 + type: mk64:course_vtx + count: 8 + offset: 0x3aca + +d_course_wario_stadium_vertex_0x040043B0: + symbol: d_course_wario_stadium_vertex_0x040043B0 + type: mk64:course_vtx + count: 22 + offset: 0x3b3a + +d_course_wario_stadium_vertex_0x040044B0: + symbol: d_course_wario_stadium_vertex_0x040044B0 + type: mk64:course_vtx + count: 4 + offset: 0x3c1a + +d_course_wario_stadium_vertex_0x040044F0: + symbol: d_course_wario_stadium_vertex_0x040044F0 + type: mk64:course_vtx + count: 40 + offset: 0x3c52 + +d_course_wario_stadium_vertex_0x040046B0: + symbol: d_course_wario_stadium_vertex_0x040046B0 + type: mk64:course_vtx + count: 22 + offset: 0x3dda + +d_course_wario_stadium_vertex_0x040047B0: + symbol: d_course_wario_stadium_vertex_0x040047B0 + type: mk64:course_vtx + count: 17 + offset: 0x3eba + +d_course_wario_stadium_vertex_0x04004860: + symbol: d_course_wario_stadium_vertex_0x04004860 + type: mk64:course_vtx + count: 4 + offset: 0x3f54 + +d_course_wario_stadium_vertex_0x040048A0: + symbol: d_course_wario_stadium_vertex_0x040048A0 + type: mk64:course_vtx + count: 22 + offset: 0x3f8c + +d_course_wario_stadium_vertex_0x040049A0: + symbol: d_course_wario_stadium_vertex_0x040049A0 + type: mk64:course_vtx + count: 18 + offset: 0x406c + +d_course_wario_stadium_vertex_0x04004A60: + symbol: d_course_wario_stadium_vertex_0x04004A60 + type: mk64:course_vtx + count: 22 + offset: 0x4114 + +d_course_wario_stadium_vertex_0x04004B60: + symbol: d_course_wario_stadium_vertex_0x04004B60 + type: mk64:course_vtx + count: 32 + offset: 0x41f4 + +d_course_wario_stadium_vertex_0x04004CA0: + symbol: d_course_wario_stadium_vertex_0x04004CA0 + type: mk64:course_vtx + count: 50 + offset: 0x430c + +d_course_wario_stadium_vertex_0x04004EA0: + symbol: d_course_wario_stadium_vertex_0x04004EA0 + type: mk64:course_vtx + count: 3 + offset: 0x44cc + +d_course_wario_stadium_vertex_0x04004ED0: + symbol: d_course_wario_stadium_vertex_0x04004ED0 + type: mk64:course_vtx + count: 8 + offset: 0x44f6 + +d_course_wario_stadium_vertex_0x04004F50: + symbol: d_course_wario_stadium_vertex_0x04004F50 + type: mk64:course_vtx + count: 8 + offset: 0x4566 + +d_course_wario_stadium_vertex_0x04004FD0: + symbol: d_course_wario_stadium_vertex_0x04004FD0 + type: mk64:course_vtx + count: 8 + offset: 0x45d6 + +d_course_wario_stadium_vertex_0x04005050: + symbol: d_course_wario_stadium_vertex_0x04005050 + type: mk64:course_vtx + count: 18 + offset: 0x4646 + +d_course_wario_stadium_vertex_0x04005110: + symbol: d_course_wario_stadium_vertex_0x04005110 + type: mk64:course_vtx + count: 23 + offset: 0x46ee + +d_course_wario_stadium_vertex_0x04005220: + symbol: d_course_wario_stadium_vertex_0x04005220 + type: mk64:course_vtx + count: 9 + offset: 0x47dc + +d_course_wario_stadium_vertex_0x040052B0: + symbol: d_course_wario_stadium_vertex_0x040052B0 + type: mk64:course_vtx + count: 7 + offset: 0x485a + +d_course_wario_stadium_vertex_0x04005320: + symbol: d_course_wario_stadium_vertex_0x04005320 + type: mk64:course_vtx + count: 8 + offset: 0x48bc + +d_course_wario_stadium_vertex_0x040053A0: + symbol: d_course_wario_stadium_vertex_0x040053A0 + type: mk64:course_vtx + count: 19 + offset: 0x492c + +d_course_wario_stadium_vertex_0x04005470: + symbol: d_course_wario_stadium_vertex_0x04005470 + type: mk64:course_vtx + count: 17 + offset: 0x49e2 + +d_course_wario_stadium_vertex_0x04005520: + symbol: d_course_wario_stadium_vertex_0x04005520 + type: mk64:course_vtx + count: 9 + offset: 0x4a7c + +d_course_wario_stadium_vertex_0x040055B0: + symbol: d_course_wario_stadium_vertex_0x040055B0 + type: mk64:course_vtx + count: 19 + offset: 0x4afa + +d_course_wario_stadium_vertex_0x04005680: + symbol: d_course_wario_stadium_vertex_0x04005680 + type: mk64:course_vtx + count: 8 + offset: 0x4bb0 + +d_course_wario_stadium_vertex_0x04005700: + symbol: d_course_wario_stadium_vertex_0x04005700 + type: mk64:course_vtx + count: 7 + offset: 0x4c20 + +d_course_wario_stadium_vertex_0x04005770: + symbol: d_course_wario_stadium_vertex_0x04005770 + type: mk64:course_vtx + count: 16 + offset: 0x4c82 + +d_course_wario_stadium_vertex_0x04005810: + symbol: d_course_wario_stadium_vertex_0x04005810 + type: mk64:course_vtx + count: 8 + offset: 0x4d0e + +d_course_wario_stadium_vertex_0x04005890: + symbol: d_course_wario_stadium_vertex_0x04005890 + type: mk64:course_vtx + count: 8 + offset: 0x4d7e + +d_course_wario_stadium_vertex_0x04005910: + symbol: d_course_wario_stadium_vertex_0x04005910 + type: mk64:course_vtx + count: 6 + offset: 0x4dee + +d_course_wario_stadium_vertex_0x04005970: + symbol: d_course_wario_stadium_vertex_0x04005970 + type: mk64:course_vtx + count: 8 + offset: 0x4e42 + +d_course_wario_stadium_vertex_0x040059F0: + symbol: d_course_wario_stadium_vertex_0x040059F0 + type: mk64:course_vtx + count: 17 + offset: 0x4eb2 + +d_course_wario_stadium_vertex_0x04005AA0: + symbol: d_course_wario_stadium_vertex_0x04005AA0 + type: mk64:course_vtx + count: 4 + offset: 0x4f4c + +d_course_wario_stadium_vertex_0x04005AE0: + symbol: d_course_wario_stadium_vertex_0x04005AE0 + type: mk64:course_vtx + count: 5 + offset: 0x4f84 + +d_course_wario_stadium_vertex_0x04005B30: + symbol: d_course_wario_stadium_vertex_0x04005B30 + type: mk64:course_vtx + count: 7 + offset: 0x4fca + +d_course_wario_stadium_vertex_0x04005BA0: + symbol: d_course_wario_stadium_vertex_0x04005BA0 + type: mk64:course_vtx + count: 18 + offset: 0x502c + +d_course_wario_stadium_vertex_0x04005C60: + symbol: d_course_wario_stadium_vertex_0x04005C60 + type: mk64:course_vtx + count: 19 + offset: 0x50d4 + +d_course_wario_stadium_vertex_0x04005D30: + symbol: d_course_wario_stadium_vertex_0x04005D30 + type: mk64:course_vtx + count: 5 + offset: 0x518a + +d_course_wario_stadium_vertex_0x04005D80: + symbol: d_course_wario_stadium_vertex_0x04005D80 + type: mk64:course_vtx + count: 5 + offset: 0x51d0 + +d_course_wario_stadium_vertex_0x04005DD0: + symbol: d_course_wario_stadium_vertex_0x04005DD0 + type: mk64:course_vtx + count: 18 + offset: 0x5216 + +d_course_wario_stadium_vertex_0x04005E90: + symbol: d_course_wario_stadium_vertex_0x04005E90 + type: mk64:course_vtx + count: 4 + offset: 0x52be + +d_course_wario_stadium_vertex_0x04005ED0: + symbol: d_course_wario_stadium_vertex_0x04005ED0 + type: mk64:course_vtx + count: 22 + offset: 0x52f6 + +d_course_wario_stadium_vertex_0x04005FD0: + symbol: d_course_wario_stadium_vertex_0x04005FD0 + type: mk64:course_vtx + count: 4 + offset: 0x53d6 + +d_course_wario_stadium_vertex_0x04006010: + symbol: d_course_wario_stadium_vertex_0x04006010 + type: mk64:course_vtx + count: 4 + offset: 0x540e + +d_course_wario_stadium_vertex_0x04006050: + symbol: d_course_wario_stadium_vertex_0x04006050 + type: mk64:course_vtx + count: 5 + offset: 0x5446 + +d_course_wario_stadium_vertex_0x040060A0: + symbol: d_course_wario_stadium_vertex_0x040060A0 + type: mk64:course_vtx + count: 18 + offset: 0x548c + +d_course_wario_stadium_vertex_0x04006160: + symbol: d_course_wario_stadium_vertex_0x04006160 + type: mk64:course_vtx + count: 7 + offset: 0x5534 + +d_course_wario_stadium_vertex_0x040061D0: + symbol: d_course_wario_stadium_vertex_0x040061D0 + type: mk64:course_vtx + count: 8 + offset: 0x5596 + +d_course_wario_stadium_vertex_0x04006250: + symbol: d_course_wario_stadium_vertex_0x04006250 + type: mk64:course_vtx + count: 18 + offset: 0x5606 + +d_course_wario_stadium_vertex_0x04006310: + symbol: d_course_wario_stadium_vertex_0x04006310 + type: mk64:course_vtx + count: 7 + offset: 0x56ae + +d_course_wario_stadium_vertex_0x04006380: + symbol: d_course_wario_stadium_vertex_0x04006380 + type: mk64:course_vtx + count: 5 + offset: 0x5710 + +d_course_wario_stadium_vertex_0x040063D0: + symbol: d_course_wario_stadium_vertex_0x040063D0 + type: mk64:course_vtx + count: 4 + offset: 0x5756 + +d_course_wario_stadium_vertex_0x04006410: + symbol: d_course_wario_stadium_vertex_0x04006410 + type: mk64:course_vtx + count: 4 + offset: 0x578e + +d_course_wario_stadium_vertex_0x04006450: + symbol: d_course_wario_stadium_vertex_0x04006450 + type: mk64:course_vtx + count: 17 + offset: 0x57c6 + +d_course_wario_stadium_vertex_0x04006500: + symbol: d_course_wario_stadium_vertex_0x04006500 + type: mk64:course_vtx + count: 4 + offset: 0x5860 + +d_course_wario_stadium_vertex_0x04006540: + symbol: d_course_wario_stadium_vertex_0x04006540 + type: mk64:course_vtx + count: 4 + offset: 0x5898 + +d_course_wario_stadium_vertex_0x04006580: + symbol: d_course_wario_stadium_vertex_0x04006580 + type: mk64:course_vtx + count: 21 + offset: 0x58d0 + +d_course_wario_stadium_vertex_0x04006670: + symbol: d_course_wario_stadium_vertex_0x04006670 + type: mk64:course_vtx + count: 4 + offset: 0x59a2 + +d_course_wario_stadium_vertex_0x040066B0: + symbol: d_course_wario_stadium_vertex_0x040066B0 + type: mk64:course_vtx + count: 4 + offset: 0x59da + +d_course_wario_stadium_vertex_0x040066F0: + symbol: d_course_wario_stadium_vertex_0x040066F0 + type: mk64:course_vtx + count: 4 + offset: 0x5a12 + +d_course_wario_stadium_vertex_0x04006730: + symbol: d_course_wario_stadium_vertex_0x04006730 + type: mk64:course_vtx + count: 4 + offset: 0x5a4a + +d_course_wario_stadium_vertex_0x04006770: + symbol: d_course_wario_stadium_vertex_0x04006770 + type: mk64:course_vtx + count: 4 + offset: 0x5a82 + +d_course_wario_stadium_vertex_0x040067B0: + symbol: d_course_wario_stadium_vertex_0x040067B0 + type: mk64:course_vtx + count: 4 + offset: 0x5aba + +d_course_wario_stadium_vertex_0x040067F0: + symbol: d_course_wario_stadium_vertex_0x040067F0 + type: mk64:course_vtx + count: 4 + offset: 0x5af2 + +d_course_wario_stadium_vertex_0x04006830: + symbol: d_course_wario_stadium_vertex_0x04006830 + type: mk64:course_vtx + count: 18 + offset: 0x5b2a + +d_course_wario_stadium_vertex_0x040068F0: + symbol: d_course_wario_stadium_vertex_0x040068F0 + type: mk64:course_vtx + count: 4 + offset: 0x5bd2 + +d_course_wario_stadium_vertex_0x04006930: + symbol: d_course_wario_stadium_vertex_0x04006930 + type: mk64:course_vtx + count: 4 + offset: 0x5c0a + +d_course_wario_stadium_vertex_0x04006970: + symbol: d_course_wario_stadium_vertex_0x04006970 + type: mk64:course_vtx + count: 4 + offset: 0x5c42 + +d_course_wario_stadium_vertex_0x040069B0: + symbol: d_course_wario_stadium_vertex_0x040069B0 + type: mk64:course_vtx + count: 4 + offset: 0x5c7a + +d_course_wario_stadium_vertex_0x040069F0: + symbol: d_course_wario_stadium_vertex_0x040069F0 + type: mk64:course_vtx + count: 4 + offset: 0x5cb2 + +d_course_wario_stadium_vertex_0x04006A30: + symbol: d_course_wario_stadium_vertex_0x04006A30 + type: mk64:course_vtx + count: 18 + offset: 0x5cea + +d_course_wario_stadium_vertex_0x04006AF0: + symbol: d_course_wario_stadium_vertex_0x04006AF0 + type: mk64:course_vtx + count: 4 + offset: 0x5d92 + +d_course_wario_stadium_vertex_0x04006B30: + symbol: d_course_wario_stadium_vertex_0x04006B30 + type: mk64:course_vtx + count: 4 + offset: 0x5dca + +d_course_wario_stadium_vertex_0x04006B70: + symbol: d_course_wario_stadium_vertex_0x04006B70 + type: mk64:course_vtx + count: 4 + offset: 0x5e02 + +d_course_wario_stadium_vertex_0x04006BB0: + symbol: d_course_wario_stadium_vertex_0x04006BB0 + type: mk64:course_vtx + count: 4 + offset: 0x5e3a + +d_course_wario_stadium_vertex_0x04006BF0: + symbol: d_course_wario_stadium_vertex_0x04006BF0 + type: mk64:course_vtx + count: 36 + offset: 0x5e72 + +d_course_wario_stadium_vertex_0x04006D70: + symbol: d_course_wario_stadium_vertex_0x04006D70 + type: mk64:course_vtx + count: 5 + offset: 0x5fc2 + +d_course_wario_stadium_vertex_0x04006DC0: + symbol: d_course_wario_stadium_vertex_0x04006DC0 + type: mk64:course_vtx + count: 50 + offset: 0x6008 + +d_course_wario_stadium_vertex_0x04006FC0: + symbol: d_course_wario_stadium_vertex_0x04006FC0 + type: mk64:course_vtx + count: 40 + offset: 0x61c8 + +d_course_wario_stadium_vertex_0x04007180: + symbol: d_course_wario_stadium_vertex_0x04007180 + type: mk64:course_vtx + count: 4 + offset: 0x6350 + +d_course_wario_stadium_vertex_0x040071C0: + symbol: d_course_wario_stadium_vertex_0x040071C0 + type: mk64:course_vtx + count: 50 + offset: 0x6388 + +d_course_wario_stadium_vertex_0x040073C0: + symbol: d_course_wario_stadium_vertex_0x040073C0 + type: mk64:course_vtx + count: 19 + offset: 0x6548 + +d_course_wario_stadium_vertex_0x04007490: + symbol: d_course_wario_stadium_vertex_0x04007490 + type: mk64:course_vtx + count: 49 + offset: 0x65fe + +d_course_wario_stadium_vertex_0x04007680: + symbol: d_course_wario_stadium_vertex_0x04007680 + type: mk64:course_vtx + count: 50 + offset: 0x67b0 + +d_course_wario_stadium_vertex_0x04007880: + symbol: d_course_wario_stadium_vertex_0x04007880 + type: mk64:course_vtx + count: 33 + offset: 0x6970 + +d_course_wario_stadium_vertex_0x040079D0: + symbol: d_course_wario_stadium_vertex_0x040079D0 + type: mk64:course_vtx + count: 4 + offset: 0x6a96 + +d_course_wario_stadium_vertex_0x04007A10: + symbol: d_course_wario_stadium_vertex_0x04007A10 + type: mk64:course_vtx + count: 49 + offset: 0x6ace + +d_course_wario_stadium_vertex_0x04007C00: + symbol: d_course_wario_stadium_vertex_0x04007C00 + type: mk64:course_vtx + count: 8 + offset: 0x6c80 + +d_course_wario_stadium_vertex_0x04007C80: + symbol: d_course_wario_stadium_vertex_0x04007C80 + type: mk64:course_vtx + count: 5 + offset: 0x6cf0 + +d_course_wario_stadium_vertex_0x04007CD0: + symbol: d_course_wario_stadium_vertex_0x04007CD0 + type: mk64:course_vtx + count: 35 + offset: 0x6d36 + +d_course_wario_stadium_vertex_0x04007E40: + symbol: d_course_wario_stadium_vertex_0x04007E40 + type: mk64:course_vtx + count: 5 + offset: 0x6e78 + +d_course_wario_stadium_vertex_0x04007E90: + symbol: d_course_wario_stadium_vertex_0x04007E90 + type: mk64:course_vtx + count: 22 + offset: 0x6ebe + +d_course_wario_stadium_vertex_0x04007F90: + symbol: d_course_wario_stadium_vertex_0x04007F90 + type: mk64:course_vtx + count: 4 + offset: 0x6f9e + +d_course_wario_stadium_vertex_0x04007FD0: + symbol: d_course_wario_stadium_vertex_0x04007FD0 + type: mk64:course_vtx + count: 50 + offset: 0x6fd6 + +d_course_wario_stadium_vertex_0x040081D0: + symbol: d_course_wario_stadium_vertex_0x040081D0 + type: mk64:course_vtx + count: 39 + offset: 0x7196 + +d_course_wario_stadium_vertex_0x04008380: + symbol: d_course_wario_stadium_vertex_0x04008380 + type: mk64:course_vtx + count: 4 + offset: 0x7310 + +d_course_wario_stadium_vertex_0x040083C0: + symbol: d_course_wario_stadium_vertex_0x040083C0 + type: mk64:course_vtx + count: 8 + offset: 0x7348 + +d_course_wario_stadium_vertex_0x04008440: + symbol: d_course_wario_stadium_vertex_0x04008440 + type: mk64:course_vtx + count: 32 + offset: 0x73b8 + +d_course_wario_stadium_vertex_0x04008580: + symbol: d_course_wario_stadium_vertex_0x04008580 + type: mk64:course_vtx + count: 8 + offset: 0x74d0 + +d_course_wario_stadium_vertex_0x04008600: + symbol: d_course_wario_stadium_vertex_0x04008600 + type: mk64:course_vtx + count: 18 + offset: 0x7540 + +d_course_wario_stadium_vertex_0x040086C0: + symbol: d_course_wario_stadium_vertex_0x040086C0 + type: mk64:course_vtx + count: 49 + offset: 0x75e8 + +d_course_wario_stadium_vertex_0x040088B0: + symbol: d_course_wario_stadium_vertex_0x040088B0 + type: mk64:course_vtx + count: 20 + offset: 0x779a + +d_course_wario_stadium_vertex_0x04008990: + symbol: d_course_wario_stadium_vertex_0x04008990 + type: mk64:course_vtx + count: 4 + offset: 0x785e + +d_course_wario_stadium_vertex_0x040089D0: + symbol: d_course_wario_stadium_vertex_0x040089D0 + type: mk64:course_vtx + count: 18 + offset: 0x7896 + +d_course_wario_stadium_vertex_0x04008A90: + symbol: d_course_wario_stadium_vertex_0x04008A90 + type: mk64:course_vtx + count: 22 + offset: 0x793e + +d_course_wario_stadium_vertex_0x04008B90: + symbol: d_course_wario_stadium_vertex_0x04008B90 + type: mk64:course_vtx + count: 5 + offset: 0x7a1e + +d_course_wario_stadium_vertex_0x04008BE0: + symbol: d_course_wario_stadium_vertex_0x04008BE0 + type: mk64:course_vtx + count: 19 + offset: 0x7a64 + +d_course_wario_stadium_vertex_0x04008CB0: + symbol: d_course_wario_stadium_vertex_0x04008CB0 + type: mk64:course_vtx + count: 38 + offset: 0x7b1a + +d_course_wario_stadium_vertex_0x04008E50: + symbol: d_course_wario_stadium_vertex_0x04008E50 + type: mk64:course_vtx + count: 22 + offset: 0x7c86 + +d_course_wario_stadium_vertex_0x04008F50: + symbol: d_course_wario_stadium_vertex_0x04008F50 + type: mk64:course_vtx + count: 48 + offset: 0x7d66 + +d_course_wario_stadium_vertex_0x04009130: + symbol: d_course_wario_stadium_vertex_0x04009130 + type: mk64:course_vtx + count: 4 + offset: 0x7f0a + +d_course_wario_stadium_vertex_0x04009170: + symbol: d_course_wario_stadium_vertex_0x04009170 + type: mk64:course_vtx + count: 20 + offset: 0x7f42 + +d_course_wario_stadium_vertex_0x04009250: + symbol: d_course_wario_stadium_vertex_0x04009250 + type: mk64:course_vtx + count: 9 + offset: 0x8006 + +d_course_wario_stadium_vertex_0x040092E0: + symbol: d_course_wario_stadium_vertex_0x040092E0 + type: mk64:course_vtx + count: 7 + offset: 0x8084 + +d_course_wario_stadium_vertex_0x04009350: + symbol: d_course_wario_stadium_vertex_0x04009350 + type: mk64:course_vtx + count: 40 + offset: 0x80e6 + +d_course_wario_stadium_vertex_0x04009510: + symbol: d_course_wario_stadium_vertex_0x04009510 + type: mk64:course_vtx + count: 19 + offset: 0x826e + +d_course_wario_stadium_vertex_0x040095E0: + symbol: d_course_wario_stadium_vertex_0x040095E0 + type: mk64:course_vtx + count: 9 + offset: 0x8324 + +d_course_wario_stadium_vertex_0x04009670: + symbol: d_course_wario_stadium_vertex_0x04009670 + type: mk64:course_vtx + count: 32 + offset: 0x83a2 + +d_course_wario_stadium_vertex_0x040097B0: + symbol: d_course_wario_stadium_vertex_0x040097B0 + type: mk64:course_vtx + count: 7 + offset: 0x84ba + +d_course_wario_stadium_vertex_0x04009820: + symbol: d_course_wario_stadium_vertex_0x04009820 + type: mk64:course_vtx + count: 7 + offset: 0x851c + +d_course_wario_stadium_vertex_0x04009890: + symbol: d_course_wario_stadium_vertex_0x04009890 + type: mk64:course_vtx + count: 37 + offset: 0x857e + +d_course_wario_stadium_vertex_0x04009A20: + symbol: d_course_wario_stadium_vertex_0x04009A20 + type: mk64:course_vtx + count: 36 + offset: 0x86dc + +d_course_wario_stadium_vertex_0x04009BA0: + symbol: d_course_wario_stadium_vertex_0x04009BA0 + type: mk64:course_vtx + count: 50 + offset: 0x882c + +d_course_wario_stadium_vertex_0x04009DA0: + symbol: d_course_wario_stadium_vertex_0x04009DA0 + type: mk64:course_vtx + count: 36 + offset: 0x89ec + +d_course_wario_stadium_vertex_0x04009F20: + symbol: d_course_wario_stadium_vertex_0x04009F20 + type: mk64:course_vtx + count: 49 + offset: 0x8b3c + +d_course_wario_stadium_vertex_0x0400A110: + symbol: d_course_wario_stadium_vertex_0x0400A110 + type: mk64:course_vtx + count: 9 + offset: 0x8cee + +d_course_wario_stadium_vertex_0x0400A1A0: + symbol: d_course_wario_stadium_vertex_0x0400A1A0 + type: mk64:course_vtx + count: 50 + offset: 0x8d6c + +d_course_wario_stadium_vertex_0x0400A3A0: + symbol: d_course_wario_stadium_vertex_0x0400A3A0 + type: mk64:course_vtx + count: 3 + offset: 0x8f2c + +d_course_wario_stadium_vertex_0x0400A3D0: + symbol: d_course_wario_stadium_vertex_0x0400A3D0 + type: mk64:course_vtx + count: 49 + offset: 0x8f56 + +d_course_wario_stadium_vertex_0x0400A5C0: + symbol: d_course_wario_stadium_vertex_0x0400A5C0 + type: mk64:course_vtx + count: 49 + offset: 0x9108 + +d_course_wario_stadium_vertex_0x0400A7B0: + symbol: d_course_wario_stadium_vertex_0x0400A7B0 + type: mk64:course_vtx + count: 48 + offset: 0x92ba + +d_course_wario_stadium_vertex_0x0400A990: + symbol: d_course_wario_stadium_vertex_0x0400A990 + type: mk64:course_vtx + count: 50 + offset: 0x945e + +d_course_wario_stadium_vertex_0x0400AB90: + symbol: d_course_wario_stadium_vertex_0x0400AB90 + type: mk64:course_vtx + count: 23 + offset: 0x961e + +d_course_wario_stadium_vertex_0x0400ACA0: + symbol: d_course_wario_stadium_vertex_0x0400ACA0 + type: mk64:course_vtx + count: 49 + offset: 0x970c + +d_course_wario_stadium_vertex_0x0400AE90: + symbol: d_course_wario_stadium_vertex_0x0400AE90 + type: mk64:course_vtx + count: 25 + offset: 0x98be + +d_course_wario_stadium_vertex_0x0400AFC0: + symbol: d_course_wario_stadium_vertex_0x0400AFC0 + type: mk64:course_vtx + count: 39 + offset: 0x99c8 + +d_course_wario_stadium_vertex_0x0400B170: + symbol: d_course_wario_stadium_vertex_0x0400B170 + type: mk64:course_vtx + count: 50 + offset: 0x9b42 + +d_course_wario_stadium_vertex_0x0400B370: + symbol: d_course_wario_stadium_vertex_0x0400B370 + type: mk64:course_vtx + count: 39 + offset: 0x9d02 + +d_course_wario_stadium_vertex_0x0400B520: + symbol: d_course_wario_stadium_vertex_0x0400B520 + type: mk64:course_vtx + count: 48 + offset: 0x9e7c + +d_course_wario_stadium_vertex_0x0400B700: + symbol: d_course_wario_stadium_vertex_0x0400B700 + type: mk64:course_vtx + count: 25 + offset: 0xa020 + +d_course_wario_stadium_vertex_0x0400B830: + symbol: d_course_wario_stadium_vertex_0x0400B830 + type: mk64:course_vtx + count: 50 + offset: 0xa12a + +d_course_wario_stadium_vertex_0x0400BA30: + symbol: d_course_wario_stadium_vertex_0x0400BA30 + type: mk64:course_vtx + count: 24 + offset: 0xa2ea + +d_course_wario_stadium_vertex_0x0400BB50: + symbol: d_course_wario_stadium_vertex_0x0400BB50 + type: mk64:course_vtx + count: 48 + offset: 0xa3e6 + +d_course_wario_stadium_vertex_0x0400BD30: + symbol: d_course_wario_stadium_vertex_0x0400BD30 + type: mk64:course_vtx + count: 7 + offset: 0xa58a + +d_course_wario_stadium_vertex_0x0400BDA0: + symbol: d_course_wario_stadium_vertex_0x0400BDA0 + type: mk64:course_vtx + count: 48 + offset: 0xa5ec + +d_course_wario_stadium_vertex_0x0400BF80: + symbol: d_course_wario_stadium_vertex_0x0400BF80 + type: mk64:course_vtx + count: 35 + offset: 0xa790 + +d_course_wario_stadium_vertex_0x0400C0F0: + symbol: d_course_wario_stadium_vertex_0x0400C0F0 + type: mk64:course_vtx + count: 50 + offset: 0xa8d2 + +d_course_wario_stadium_vertex_0x0400C2F0: + symbol: d_course_wario_stadium_vertex_0x0400C2F0 + type: mk64:course_vtx + count: 40 + offset: 0xaa92 + +d_course_wario_stadium_vertex_0x0400C4B0: + symbol: d_course_wario_stadium_vertex_0x0400C4B0 + type: mk64:course_vtx + count: 32 + offset: 0xac1a + +d_course_wario_stadium_vertex_0x0400C5F0: + symbol: d_course_wario_stadium_vertex_0x0400C5F0 + type: mk64:course_vtx + count: 3 + offset: 0xad32 + +d_course_wario_stadium_vertex_0x0400C620: + symbol: d_course_wario_stadium_vertex_0x0400C620 + type: mk64:course_vtx + count: 48 + offset: 0xad5c + +d_course_wario_stadium_vertex_0x0400C800: + symbol: d_course_wario_stadium_vertex_0x0400C800 + type: mk64:course_vtx + count: 37 + offset: 0xaf00 + +d_course_wario_stadium_vertex_0x0400C990: + symbol: d_course_wario_stadium_vertex_0x0400C990 + type: mk64:course_vtx + count: 49 + offset: 0xb05e + +d_course_wario_stadium_vertex_0x0400CB80: + symbol: d_course_wario_stadium_vertex_0x0400CB80 + type: mk64:course_vtx + count: 50 + offset: 0xb210 + +d_course_wario_stadium_vertex_0x0400CD80: + symbol: d_course_wario_stadium_vertex_0x0400CD80 + type: mk64:course_vtx + count: 9 + offset: 0xb3d0 + +d_course_wario_stadium_vertex_0x0400CE10: + symbol: d_course_wario_stadium_vertex_0x0400CE10 + type: mk64:course_vtx + count: 50 + offset: 0xb44e + +d_course_wario_stadium_vertex_0x0400D010: + symbol: d_course_wario_stadium_vertex_0x0400D010 + type: mk64:course_vtx + count: 50 + offset: 0xb60e + +d_course_wario_stadium_vertex_0x0400D210: + symbol: d_course_wario_stadium_vertex_0x0400D210 + type: mk64:course_vtx + count: 32 + offset: 0xb7ce + +d_course_wario_stadium_vertex_0x0400D350: + symbol: d_course_wario_stadium_vertex_0x0400D350 + type: mk64:course_vtx + count: 50 + offset: 0xb8e6 + +d_course_wario_stadium_vertex_0x0400D550: + symbol: d_course_wario_stadium_vertex_0x0400D550 + type: mk64:course_vtx + count: 4 + offset: 0xbaa6 + +d_course_wario_stadium_vertex_0x0400D590: + symbol: d_course_wario_stadium_vertex_0x0400D590 + type: mk64:course_vtx + count: 50 + offset: 0xbade + +d_course_wario_stadium_vertex_0x0400D790: + symbol: d_course_wario_stadium_vertex_0x0400D790 + type: mk64:course_vtx + count: 4 + offset: 0xbc9e + +d_course_wario_stadium_vertex_0x0400D7D0: + symbol: d_course_wario_stadium_vertex_0x0400D7D0 + type: mk64:course_vtx + count: 18 + offset: 0xbcd6 + +d_course_wario_stadium_vertex_0x0400D890: + symbol: d_course_wario_stadium_vertex_0x0400D890 + type: mk64:course_vtx + count: 48 + offset: 0xbd7e + +d_course_wario_stadium_vertex_0x0400DA70: + symbol: d_course_wario_stadium_vertex_0x0400DA70 + type: mk64:course_vtx + count: 4 + offset: 0xbf22 + +d_course_wario_stadium_vertex_0x0400DAB0: + symbol: d_course_wario_stadium_vertex_0x0400DAB0 + type: mk64:course_vtx + count: 22 + offset: 0xbf5a + +d_course_wario_stadium_vertex_0x0400DBB0: + symbol: d_course_wario_stadium_vertex_0x0400DBB0 + type: mk64:course_vtx + count: 50 + offset: 0xc03a + +d_course_wario_stadium_vertex_0x0400DDB0: + symbol: d_course_wario_stadium_vertex_0x0400DDB0 + type: mk64:course_vtx + count: 50 + offset: 0xc1fa + +d_course_wario_stadium_vertex_0x0400DFB0: + symbol: d_course_wario_stadium_vertex_0x0400DFB0 + type: mk64:course_vtx + count: 32 + offset: 0xc3ba + +d_course_wario_stadium_vertex_0x0400E0F0: + symbol: d_course_wario_stadium_vertex_0x0400E0F0 + type: mk64:course_vtx + count: 49 + offset: 0xc4d2 + +d_course_wario_stadium_vertex_0x0400E2E0: + symbol: d_course_wario_stadium_vertex_0x0400E2E0 + type: mk64:course_vtx + count: 49 + offset: 0xc684 + +d_course_wario_stadium_vertex_0x0400E4D0: + symbol: d_course_wario_stadium_vertex_0x0400E4D0 + type: mk64:course_vtx + count: 50 + offset: 0xc836 + +d_course_wario_stadium_vertex_0x0400E6D0: + symbol: d_course_wario_stadium_vertex_0x0400E6D0 + type: mk64:course_vtx + count: 21 + offset: 0xc9f6 + +d_course_wario_stadium_vertex_0x0400E7C0: + symbol: d_course_wario_stadium_vertex_0x0400E7C0 + type: mk64:course_vtx + count: 36 + offset: 0xcac8 + +d_course_wario_stadium_vertex_0x0400E940: + symbol: d_course_wario_stadium_vertex_0x0400E940 + type: mk64:course_vtx + count: 50 + offset: 0xcc18 + +d_course_wario_stadium_vertex_0x0400EB40: + symbol: d_course_wario_stadium_vertex_0x0400EB40 + type: mk64:course_vtx + count: 8 + offset: 0xcdd8 + +d_course_wario_stadium_vertex_0x0400EBC0: + symbol: d_course_wario_stadium_vertex_0x0400EBC0 + type: mk64:course_vtx + count: 50 + offset: 0xce48 + +d_course_wario_stadium_vertex_0x0400EDC0: + symbol: d_course_wario_stadium_vertex_0x0400EDC0 + type: mk64:course_vtx + count: 36 + offset: 0xd008 + +d_course_wario_stadium_vertex_0x0400EF40: + symbol: d_course_wario_stadium_vertex_0x0400EF40 + type: mk64:course_vtx + count: 48 + offset: 0xd158 + +d_course_wario_stadium_vertex_0x0400F120: + symbol: d_course_wario_stadium_vertex_0x0400F120 + type: mk64:course_vtx + count: 38 + offset: 0xd2fc + +d_course_wario_stadium_vertex_0x0400F2C0: + symbol: d_course_wario_stadium_vertex_0x0400F2C0 + type: mk64:course_vtx + count: 19 + offset: 0xd468 + +d_course_wario_stadium_vertex_0x0400F390: + symbol: d_course_wario_stadium_vertex_0x0400F390 + type: mk64:course_vtx + count: 32 + offset: 0xd51e + +d_course_wario_stadium_vertex_0x0400F4D0: + symbol: d_course_wario_stadium_vertex_0x0400F4D0 + type: mk64:course_vtx + count: 48 + offset: 0xd636 + +d_course_wario_stadium_vertex_0x0400F6B0: + symbol: d_course_wario_stadium_vertex_0x0400F6B0 + type: mk64:course_vtx + count: 8 + offset: 0xd7da + +d_course_wario_stadium_vertex_0x0400F730: + symbol: d_course_wario_stadium_vertex_0x0400F730 + type: mk64:course_vtx + count: 50 + offset: 0xd84a + +d_course_wario_stadium_vertex_0x0400F930: + symbol: d_course_wario_stadium_vertex_0x0400F930 + type: mk64:course_vtx + count: 24 + offset: 0xda0a + +d_course_wario_stadium_vertex_0x0400FA50: + symbol: d_course_wario_stadium_vertex_0x0400FA50 + type: mk64:course_vtx + count: 40 + offset: 0xdb06 + +d_course_wario_stadium_vertex_0x0400FC10: + symbol: d_course_wario_stadium_vertex_0x0400FC10 + type: mk64:course_vtx + count: 50 + offset: 0xdc8e + +d_course_wario_stadium_vertex_0x0400FE10: + symbol: d_course_wario_stadium_vertex_0x0400FE10 + type: mk64:course_vtx + count: 50 + offset: 0xde4e + +d_course_wario_stadium_vertex_0x04010010: + symbol: d_course_wario_stadium_vertex_0x04010010 + type: mk64:course_vtx + count: 18 + offset: 0xe00e + +d_course_wario_stadium_vertex_0x040100D0: + symbol: d_course_wario_stadium_vertex_0x040100D0 + type: mk64:course_vtx + count: 50 + offset: 0xe0b6 + +d_course_wario_stadium_vertex_0x040102D0: + symbol: d_course_wario_stadium_vertex_0x040102D0 + type: mk64:course_vtx + count: 18 + offset: 0xe276 + +d_course_wario_stadium_vertex_0x04010390: + symbol: d_course_wario_stadium_vertex_0x04010390 + type: mk64:course_vtx + count: 18 + offset: 0xe31e + +d_course_wario_stadium_vertex_0x04010450: + symbol: d_course_wario_stadium_vertex_0x04010450 + type: mk64:course_vtx + count: 36 + offset: 0xe3c6 + +d_course_wario_stadium_vertex_0x040105D0: + symbol: d_course_wario_stadium_vertex_0x040105D0 + type: mk64:course_vtx + count: 49 + offset: 0xe516 + +d_course_wario_stadium_vertex_0x040107C0: + symbol: d_course_wario_stadium_vertex_0x040107C0 + type: mk64:course_vtx + count: 3 + offset: 0xe6c8 + +d_course_wario_stadium_vertex_0x040107F0: + symbol: d_course_wario_stadium_vertex_0x040107F0 + type: mk64:course_vtx + count: 8 + offset: 0xe6f2 + +d_course_wario_stadium_vertex_0x04010870: + symbol: d_course_wario_stadium_vertex_0x04010870 + type: mk64:course_vtx + count: 50 + offset: 0xe762 + +d_course_wario_stadium_vertex_0x04010A70: + symbol: d_course_wario_stadium_vertex_0x04010A70 + type: mk64:course_vtx + count: 19 + offset: 0xe922 + +d_course_wario_stadium_vertex_0x04010B40: + symbol: d_course_wario_stadium_vertex_0x04010B40 + type: mk64:course_vtx + count: 4 + offset: 0xe9d8 + +d_course_wario_stadium_vertex_0x04010B80: + symbol: d_course_wario_stadium_vertex_0x04010B80 + type: mk64:course_vtx + count: 50 + offset: 0xea10 + +d_course_wario_stadium_vertex_0x04010D80: + symbol: d_course_wario_stadium_vertex_0x04010D80 + type: mk64:course_vtx + count: 22 + offset: 0xebd0 + +d_course_wario_stadium_vertex_0x04010E80: + symbol: d_course_wario_stadium_vertex_0x04010E80 + type: mk64:course_vtx + count: 34 + offset: 0xecb0 + +d_course_wario_stadium_vertex_0x04010FE0: + symbol: d_course_wario_stadium_vertex_0x04010FE0 + type: mk64:course_vtx + count: 19 + offset: 0xede4 + +d_course_wario_stadium_vertex_0x040110B0: + symbol: d_course_wario_stadium_vertex_0x040110B0 + type: mk64:course_vtx + count: 4 + offset: 0xee9a + +d_course_wario_stadium_vertex_0x040110F0: + symbol: d_course_wario_stadium_vertex_0x040110F0 + type: mk64:course_vtx + count: 50 + offset: 0xeed2 + +d_course_wario_stadium_vertex_0x040112F0: + symbol: d_course_wario_stadium_vertex_0x040112F0 + type: mk64:course_vtx + count: 4 + offset: 0xf092 + +d_course_wario_stadium_vertex_0x04011330: + symbol: d_course_wario_stadium_vertex_0x04011330 + type: mk64:course_vtx + count: 32 + offset: 0xf0ca + +d_course_wario_stadium_vertex_0x04011470: + symbol: d_course_wario_stadium_vertex_0x04011470 + type: mk64:course_vtx + count: 50 + offset: 0xf1e2 + +d_course_wario_stadium_vertex_0x04011670: + symbol: d_course_wario_stadium_vertex_0x04011670 + type: mk64:course_vtx + count: 37 + offset: 0xf3a2 + +d_course_wario_stadium_vertex_0x04011800: + symbol: d_course_wario_stadium_vertex_0x04011800 + type: mk64:course_vtx + count: 48 + offset: 0xf500 + +d_course_wario_stadium_vertex_0x040119E0: + symbol: d_course_wario_stadium_vertex_0x040119E0 + type: mk64:course_vtx + count: 37 + offset: 0xf6a4 + +d_course_wario_stadium_vertex_0x04011B70: + symbol: d_course_wario_stadium_vertex_0x04011B70 + type: mk64:course_vtx + count: 50 + offset: 0xf802 + +d_course_wario_stadium_vertex_0x04011D70: + symbol: d_course_wario_stadium_vertex_0x04011D70 + type: mk64:course_vtx + count: 40 + offset: 0xf9c2 + +d_course_wario_stadium_vertex_0x04011F30: + symbol: d_course_wario_stadium_vertex_0x04011F30 + type: mk64:course_vtx + count: 36 + offset: 0xfb4a + +d_course_wario_stadium_vertex_0x040120B0: + symbol: d_course_wario_stadium_vertex_0x040120B0 + type: mk64:course_vtx + count: 18 + offset: 0xfc9a + +d_course_wario_stadium_vertex_0x04012170: + symbol: d_course_wario_stadium_vertex_0x04012170 + type: mk64:course_vtx + count: 38 + offset: 0xfd42 + +d_course_wario_stadium_vertex_0x04012310: + symbol: d_course_wario_stadium_vertex_0x04012310 + type: mk64:course_vtx + count: 34 + offset: 0xfeae + +d_course_wario_stadium_vertex_0x04012470: + symbol: d_course_wario_stadium_vertex_0x04012470 + type: mk64:course_vtx + count: 36 + offset: 0xffe2 + +d_course_wario_stadium_vertex_0x040125F0: + symbol: d_course_wario_stadium_vertex_0x040125F0 + type: mk64:course_vtx + count: 38 + offset: 0x10132 + +d_course_wario_stadium_vertex_0x04012790: + symbol: d_course_wario_stadium_vertex_0x04012790 + type: mk64:course_vtx + count: 50 + offset: 0x1029e + +d_course_wario_stadium_vertex_0x04012990: + symbol: d_course_wario_stadium_vertex_0x04012990 + type: mk64:course_vtx + count: 38 + offset: 0x1045e + +d_course_wario_stadium_vertex_0x04012B30: + symbol: d_course_wario_stadium_vertex_0x04012B30 + type: mk64:course_vtx + count: 50 + offset: 0x105ca + +d_course_wario_stadium_vertex_0x04012D30: + symbol: d_course_wario_stadium_vertex_0x04012D30 + type: mk64:course_vtx + count: 50 + offset: 0x1078a + +d_course_wario_stadium_vertex_0x04012F30: + symbol: d_course_wario_stadium_vertex_0x04012F30 + type: mk64:course_vtx + count: 49 + offset: 0x1094a + +d_course_wario_stadium_vertex_0x04013120: + symbol: d_course_wario_stadium_vertex_0x04013120 + type: mk64:course_vtx + count: 50 + offset: 0x10afc + +d_course_wario_stadium_vertex_0x04013320: + symbol: d_course_wario_stadium_vertex_0x04013320 + type: mk64:course_vtx + count: 50 + offset: 0x10cbc + +d_course_wario_stadium_vertex_0x04013520: + symbol: d_course_wario_stadium_vertex_0x04013520 + type: mk64:course_vtx + count: 16 + offset: 0x10e7c + +d_course_wario_stadium_vertex_0x040135C0: + symbol: d_course_wario_stadium_vertex_0x040135C0 + type: mk64:course_vtx + count: 48 + offset: 0x10f08 + +d_course_wario_stadium_vertex_0x040137A0: + symbol: d_course_wario_stadium_vertex_0x040137A0 + type: mk64:course_vtx + count: 50 + offset: 0x110ac + +d_course_wario_stadium_vertex_0x040139A0: + symbol: d_course_wario_stadium_vertex_0x040139A0 + type: mk64:course_vtx + count: 18 + offset: 0x1126c + +d_course_wario_stadium_vertex_0x04013A60: + symbol: d_course_wario_stadium_vertex_0x04013A60 + type: mk64:course_vtx + count: 4 + offset: 0x11314 + +d_course_wario_stadium_vertex_0x04013AA0: + symbol: d_course_wario_stadium_vertex_0x04013AA0 + type: mk64:course_vtx + count: 50 + offset: 0x1134c + +d_course_wario_stadium_vertex_0x04013CA0: + symbol: d_course_wario_stadium_vertex_0x04013CA0 + type: mk64:course_vtx + count: 38 + offset: 0x1150c + +d_course_wario_stadium_vertex_0x04013E40: + symbol: d_course_wario_stadium_vertex_0x04013E40 + type: mk64:course_vtx + count: 50 + offset: 0x11678 + +d_course_wario_stadium_vertex_0x04014040: + symbol: d_course_wario_stadium_vertex_0x04014040 + type: mk64:course_vtx + count: 22 + offset: 0x11838 + +d_course_wario_stadium_vertex_0x04014140: + symbol: d_course_wario_stadium_vertex_0x04014140 + type: mk64:course_vtx + count: 50 + offset: 0x11918 + +d_course_wario_stadium_vertex_0x04014340: + symbol: d_course_wario_stadium_vertex_0x04014340 + type: mk64:course_vtx + count: 8 + offset: 0x11ad8 + +d_course_wario_stadium_vertex_0x040143C0: + symbol: d_course_wario_stadium_vertex_0x040143C0 + type: mk64:course_vtx + count: 40 + offset: 0x11b48 + +d_course_wario_stadium_vertex_0x04014580: + symbol: d_course_wario_stadium_vertex_0x04014580 + type: mk64:course_vtx + count: 49 + offset: 0x11cd0 + +d_course_wario_stadium_vertex_0x04014770: + symbol: d_course_wario_stadium_vertex_0x04014770 + type: mk64:course_vtx + count: 21 + offset: 0x11e82 + +d_course_wario_stadium_vertex_0x04014860: + symbol: d_course_wario_stadium_vertex_0x04014860 + type: mk64:course_vtx + count: 50 + offset: 0x11f54 + +d_course_wario_stadium_vertex_0x04014A60: + symbol: d_course_wario_stadium_vertex_0x04014A60 + type: mk64:course_vtx + count: 49 + offset: 0x12114 + +d_course_wario_stadium_vertex_0x04014C50: + symbol: d_course_wario_stadium_vertex_0x04014C50 + type: mk64:course_vtx + count: 8 + offset: 0x122c6 + +d_course_wario_stadium_vertex_0x04014CD0: + symbol: d_course_wario_stadium_vertex_0x04014CD0 + type: mk64:course_vtx + count: 34 + offset: 0x12336 + +d_course_wario_stadium_vertex_0x04014E30: + symbol: d_course_wario_stadium_vertex_0x04014E30 + type: mk64:course_vtx + count: 20 + offset: 0x1246a + +d_course_wario_stadium_vertex_0x04014F10: + symbol: d_course_wario_stadium_vertex_0x04014F10 + type: mk64:course_vtx + count: 49 + offset: 0x1252e + +d_course_wario_stadium_vertex_0x04015100: + symbol: d_course_wario_stadium_vertex_0x04015100 + type: mk64:course_vtx + count: 50 + offset: 0x126e0 + +d_course_wario_stadium_vertex_0x04015300: + symbol: d_course_wario_stadium_vertex_0x04015300 + type: mk64:course_vtx + count: 49 + offset: 0x128a0 + +d_course_wario_stadium_vertex_0x040154F0: + symbol: d_course_wario_stadium_vertex_0x040154F0 + type: mk64:course_vtx + count: 18 + offset: 0x12a52 + +d_course_wario_stadium_vertex_0x040155B0: + symbol: d_course_wario_stadium_vertex_0x040155B0 + type: mk64:course_vtx + count: 50 + offset: 0x12afa + +d_course_wario_stadium_vertex_0x040157B0: + symbol: d_course_wario_stadium_vertex_0x040157B0 + type: mk64:course_vtx + count: 24 + offset: 0x12cba + +d_course_wario_stadium_vertex_0x040158D0: + symbol: d_course_wario_stadium_vertex_0x040158D0 + type: mk64:course_vtx + count: 50 + offset: 0x12db6 + +d_course_wario_stadium_vertex_0x04015AD0: + symbol: d_course_wario_stadium_vertex_0x04015AD0 + type: mk64:course_vtx + count: 17 + offset: 0x12f76 + +d_course_wario_stadium_vertex_0x04015B80: + symbol: d_course_wario_stadium_vertex_0x04015B80 + type: mk64:course_vtx + count: 32 + offset: 0x13010 + +d_course_wario_stadium_vertex_0x04015CC0: + symbol: d_course_wario_stadium_vertex_0x04015CC0 + type: mk64:course_vtx + count: 48 + offset: 0x13128 + +d_course_wario_stadium_vertex_0x04015EA0: + symbol: d_course_wario_stadium_vertex_0x04015EA0 + type: mk64:course_vtx + count: 22 + offset: 0x132cc + +d_course_wario_stadium_vertex_0x04015FA0: + symbol: d_course_wario_stadium_vertex_0x04015FA0 + type: mk64:course_vtx + count: 49 + offset: 0x133ac + +d_course_wario_stadium_vertex_0x04016190: + symbol: d_course_wario_stadium_vertex_0x04016190 + type: mk64:course_vtx + count: 50 + offset: 0x1355e + +d_course_wario_stadium_vertex_0x04016390: + symbol: d_course_wario_stadium_vertex_0x04016390 + type: mk64:course_vtx + count: 20 + offset: 0x1371e + +d_course_wario_stadium_vertex_0x04016470: + symbol: d_course_wario_stadium_vertex_0x04016470 + type: mk64:course_vtx + count: 48 + offset: 0x137e2 + +d_course_wario_stadium_vertex_0x04016650: + symbol: d_course_wario_stadium_vertex_0x04016650 + type: mk64:course_vtx + count: 48 + offset: 0x13986 + +d_course_wario_stadium_vertex_0x04016830: + symbol: d_course_wario_stadium_vertex_0x04016830 + type: mk64:course_vtx + count: 50 + offset: 0x13b2a + +d_course_wario_stadium_vertex_0x04016A30: + symbol: d_course_wario_stadium_vertex_0x04016A30 + type: mk64:course_vtx + count: 8 + offset: 0x13cea + +d_course_wario_stadium_vertex_0x04016AB0: + symbol: d_course_wario_stadium_vertex_0x04016AB0 + type: mk64:course_vtx + count: 20 + offset: 0x13d5a + +d_course_wario_stadium_vertex_0x04016B90: + symbol: d_course_wario_stadium_vertex_0x04016B90 + type: mk64:course_vtx + count: 18 + offset: 0x13e1e + +d_course_wario_stadium_vertex_0x04016C50: + symbol: d_course_wario_stadium_vertex_0x04016C50 + type: mk64:course_vtx + count: 34 + offset: 0x13ec6 + +d_course_wario_stadium_vertex_0x04016DB0: + symbol: d_course_wario_stadium_vertex_0x04016DB0 + type: mk64:course_vtx + count: 16 + offset: 0x13ffa + +d_course_wario_stadium_vertex_0x04016E50: + symbol: d_course_wario_stadium_vertex_0x04016E50 + type: mk64:course_vtx + count: 50 + offset: 0x14086 + +d_course_wario_stadium_vertex_0x04017050: + symbol: d_course_wario_stadium_vertex_0x04017050 + type: mk64:course_vtx + count: 50 + offset: 0x14246 + +d_course_wario_stadium_vertex_0x04017250: + symbol: d_course_wario_stadium_vertex_0x04017250 + type: mk64:course_vtx + count: 50 + offset: 0x14406 + +d_course_wario_stadium_vertex_0x04017450: + symbol: d_course_wario_stadium_vertex_0x04017450 + type: mk64:course_vtx + count: 24 + offset: 0x145c6 + +d_course_wario_stadium_vertex_0x04017570: + symbol: d_course_wario_stadium_vertex_0x04017570 + type: mk64:course_vtx + count: 18 + offset: 0x146c2 + +d_course_wario_stadium_vertex_0x04017630: + symbol: d_course_wario_stadium_vertex_0x04017630 + type: mk64:course_vtx + count: 18 + offset: 0x1476a + +d_course_wario_stadium_vertex_0x040176F0: + symbol: d_course_wario_stadium_vertex_0x040176F0 + type: mk64:course_vtx + count: 18 + offset: 0x14812 + +d_course_wario_stadium_vertex_0x040177B0: + symbol: d_course_wario_stadium_vertex_0x040177B0 + type: mk64:course_vtx + count: 50 + offset: 0x148ba + +d_course_wario_stadium_vertex_0x040179B0: + symbol: d_course_wario_stadium_vertex_0x040179B0 + type: mk64:course_vtx + count: 4 + offset: 0x14a7a + +d_course_wario_stadium_vertex_0x040179F0: + symbol: d_course_wario_stadium_vertex_0x040179F0 + type: mk64:course_vtx + count: 4 + offset: 0x14ab2 + +d_course_wario_stadium_vertex_0x04017A30: + symbol: d_course_wario_stadium_vertex_0x04017A30 + type: mk64:course_vtx + count: 4 + offset: 0x14aea + +d_course_wario_stadium_vertex_0x04017A70: + symbol: d_course_wario_stadium_vertex_0x04017A70 + type: mk64:course_vtx + count: 4 + offset: 0x14b22 + +d_course_wario_stadium_vertex_0x04017AB0: + symbol: d_course_wario_stadium_vertex_0x04017AB0 + type: mk64:course_vtx + count: 4 + offset: 0x14b5a + +d_course_wario_stadium_vertex_0x04017AF0: + symbol: d_course_wario_stadium_vertex_0x04017AF0 + type: mk64:course_vtx + count: 4 + offset: 0x14b92 diff --git a/yamls/us/models/tracks/yoshi_valley/yoshi_valley_data.yml b/yamls/us/models/tracks/yoshi_valley/yoshi_valley_data.yml new file mode 100644 index 000000000..12e5d6a89 --- /dev/null +++ b/yamls/us/models/tracks/yoshi_valley/yoshi_valley_data.yml @@ -0,0 +1,1156 @@ +:config: + segments: + - [0x06, 0x835BA0] + - [0x07, 0x800000] + external_files: + - "yamls/us/textures/tracks/yoshi_valley/yoshi_valley_data.yml" + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees2"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_66EBF0"] + - [0x05000800, "textures/other_textures/wood_bridge_slats"] + - [0x05001800, "textures/other_textures/texture_65E2EC"] + - [0x05002000, "textures/other_textures/texture_6846DC"] + - [0x05002800, "textures/other_textures/fence_rope"] + - [0x05003000, "textures/other_textures/texture_685108"] + - [0x05003800, "textures/other_textures/texture_64CC20"] + - [0x05004800, "textures/other_textures/grass_4"] + - [0x05005000, "textures/other_textures/texture_6775EC"] + - [0x05006000, "textures/other_textures/texture_68E2D0"] + - [0x05006800, "textures/other_textures/checkerboard_black_white"] + - [0x05007000, "textures/other_textures/texture_643B3C"] + - [0x05007800, "textures/other_textures/sign_wood_red_arrow"] + - [0x05008800, "textures/other_textures/texture_68DEC0"] + # Segment 7 + - [0x7000000, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_0"] + - [0x70000A8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_A8"] + - [0x7000128, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_128"] + - [0x70001A8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1A8"] + - [0x7000240, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_240"] + - [0x7000308, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_308"] + - [0x7000388, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_388"] + - [0x7000408, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_408"] + - [0x7000490, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_490"] + - [0x7000520, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_520"] + - [0x7000598, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_598"] + - [0x7000628, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_628"] + - [0x70006A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A0"] + - [0x7000748, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_748"] + - [0x70007D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7D8"] + - [0x7000858, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_858"] + - [0x7000908, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_908"] + - [0x7000980, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_980"] + - [0x7000A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_A00"] + - [0x7000AB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_AB0"] + - [0x7000B40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_B40"] + - [0x7000BF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_BF8"] + - [0x7000C90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_C90"] + - [0x7000D20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_D20"] + - [0x7000DE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_DE0"] + - [0x7000E90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_E90"] + - [0x7000F40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_F40"] + - [0x7000FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_FF0"] + - [0x70010A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_10A0"] + - [0x70010C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_10C8"] + - [0x7001150, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1150"] + - [0x70011B8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_11B8"] + - [0x7001220, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1220"] + - [0x7001290, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1290"] + - [0x7001300, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1300"] + - [0x7001368, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1368"] + - [0x70013D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_13D8"] + - [0x7001418, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1418"] + - [0x7001580, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1580"] + - [0x70016E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_16E8"] + - [0x7001700, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1700"] + - [0x7001728, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1728"] + - [0x7001738, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1738"] + - [0x70017B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_17B0"] + - [0x7001830, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1830"] + - [0x70018C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_18C8"] + - [0x7001938, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1938"] + - [0x70019F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_19F8"] + - [0x7001A68, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1A68"] + - [0x7001AF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1AF0"] + - [0x7001BA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1BA0"] + - [0x7001C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1C18"] + - [0x7001CB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1CB0"] + - [0x7001D20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1D20"] + - [0x7001DE8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1DE8"] + - [0x7001E50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1E50"] + - [0x7001EB8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1EB8"] + - [0x7001F20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1F20"] + - [0x7001F80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1F80"] + - [0x7001FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1FF0"] + - [0x7002078, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2078"] + - [0x7002108, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2108"] + - [0x7002188, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2188"] + - [0x70021F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_21F8"] + - [0x7002270, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2270"] + - [0x70022F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_22F0"] + - [0x7002370, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2370"] + - [0x7002428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2428"] + - [0x7002498, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2498"] + - [0x7002510, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2510"] + - [0x70025A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_25A0"] + - [0x7002648, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2648"] + - [0x70026C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_26C8"] + - [0x7002758, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2758"] + - [0x70027F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_27F0"] + - [0x7002868, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2868"] + - [0x70028F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_28F8"] + - [0x7002988, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2988"] + - [0x7002A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2A00"] + - [0x7002A90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2A90"] + - [0x7002B08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2B08"] + - [0x7002BA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2BA0"] + - [0x7002C30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2C30"] + - [0x7002CD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2CD0"] + - [0x7002D50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2D50"] + - [0x7002DD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2DD0"] + - [0x7002E58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2E58"] + - [0x7002EE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2EE0"] + - [0x7002F90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2F90"] + - [0x7003010, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3010"] + - [0x7003190, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3190"] + - [0x7003200, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3200"] + - [0x7003268, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3268"] + - [0x70032E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_32E8"] + - [0x7003368, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3368"] + - [0x70033D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_33D8"] + - [0x7003498, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3498"] + - [0x7003580, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3580"] + - [0x7003630, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3630"] + - [0x7003698, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3698"] + - [0x7003710, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3710"] + - [0x70037B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_37B0"] + - [0x7003818, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3818"] + - [0x7003890, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3890"] + - [0x7003900, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3900"] + - [0x7003970, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3970"] + - [0x7003A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3A00"] + - [0x7003A80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3A80"] + - [0x7003B00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3B00"] + - [0x7003B78, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3B78"] + - [0x7003BF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3BF8"] + - [0x7003C70, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3C70"] + - [0x7003CD8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3CD8"] + - [0x7003D48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3D48"] + - [0x7003E08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3E08"] + - [0x7003F10, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3F10"] + - [0x7003FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3FF0"] + - [0x7004108, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4108"] + - [0x70041B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_41B0"] + - [0x7004258, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4258"] + - [0x7004358, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4358"] + - [0x7004428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4428"] + - [0x70044C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_44C8"] + - [0x7004588, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4588"] + - [0x70045F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_45F0"] + - [0x7004670, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4670"] + - [0x70046E0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_46E0"] + - [0x7004810, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4810"] + - [0x7004918, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4918"] + - [0x70049C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_49C0"] + - [0x7004A58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4A58"] + - [0x7004B20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4B20"] + - [0x7004C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4C18"] + - [0x7004CB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4CB0"] + - [0x7004D68, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4D68"] + - [0x7004E88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4E88"] + - [0x7004F48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4F48"] + - [0x7004FD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4FD0"] + - [0x7005058, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5058"] + - [0x70050E0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_50E0"] + - [0x7005158, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5158"] + - [0x70051D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_51D8"] + - [0x70052D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_52D8"] + - [0x70053C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_53C0"] + - [0x70054B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_54B0"] + - [0x7005548, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5548"] + - [0x70055C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_55C0"] + - [0x7005628, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5628"] + - [0x70056A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_56A0"] + - [0x7005710, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5710"] + - [0x7005788, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5788"] + - [0x7005800, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5800"] + - [0x7005880, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5880"] + - [0x70058F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_58F8"] + - [0x7005970, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5970"] + - [0x70059F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_59F0"] + - [0x7005A60, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5A60"] + - [0x7005AD8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5AD8"] + - [0x7005B48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5B48"] + - [0x7005BB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5BB0"] + - [0x7005C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5C18"] + - [0x7005C80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5C80"] + - [0x7005D00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5D00"] + - [0x7005D90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5D90"] + - [0x7005DF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5DF8"] + - [0x7005E60, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5E60"] + - [0x7005F10, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5F10"] + - [0x7005F88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5F88"] + - [0x7006008, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6008"] + - [0x7006070, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6070"] + - [0x7006100, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6100"] + - [0x7006178, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6178"] + - [0x70061E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_61E8"] + - [0x7006250, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6250"] + - [0x70062D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_62D0"] + - [0x7006338, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6338"] + - [0x70063A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_63A0"] + - [0x7006428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6428"] + - [0x7006490, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6490"] + - [0x70064F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_64F8"] + - [0x7006560, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6560"] + - [0x70065C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_65C0"] + - [0x7006638, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6638"] + - [0x70066B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_66B0"] + - [0x7006728, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6728"] + - [0x7006798, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6798"] + - [0x7006810, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6810"] + - [0x7006888, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6888"] + - [0x7006920, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6920"] + - [0x7006990, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6990"] + - [0x7006A08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A08"] + - [0x7006A98, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A98"] + - [0x7006B30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6B30"] + - [0x7006B98, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6B98"] + - [0x7006C40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6C40"] + - [0x7006CB8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6CB8"] + - [0x7006D40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6D40"] + - [0x7006DB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6DB0"] + - [0x7006E20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6E20"] + - [0x7006EA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6EA0"] + - [0x7006F30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6F30"] + - [0x7006FA8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6FA8"] + - [0x7007010, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7010"] + - [0x7007090, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7090"] + - [0x7007120, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7120"] + - [0x70071A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_71A0"] + - [0x7007210, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7210"] + - [0x7007290, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7290"] + - [0x7007300, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7300"] + - [0x7007458, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7458"] + - [0x70074D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_74D0"] + - [0x7007558, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7558"] + - [0x70075D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_75D0"] + - [0x70075F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_75F0"] + - [0x7007660, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7660"] + - [0x70076C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_76C8"] + - [0x7007740, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7740"] + - [0x70077C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_77C0"] + - [0x7007828, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7828"] + - [0x70078B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_78B0"] + - [0x7007928, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7928"] + - [0x7007998, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7998"] + - [0x7007A08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7A08"] + - [0x7007A70, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7A70"] + - [0x7007AE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7AE0"] + - [0x7007B50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7B50"] + - [0x7007BD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7BD0"] + - [0x7007C50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7C50"] + - [0x7007CC0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7CC0"] + - [0x7007D38, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7D38"] + - [0x7007DA8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7DA8"] + - [0x7007E20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7E20"] + - [0x7007E88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7E88"] + - [0x7007EF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7EF0"] + - [0x7007F58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7F58"] + - [0x7007FC8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7FC8"] + - [0x7008050, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8050"] + - [0x7008110, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8110"] + - [0x7008150, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8150"] + - [0x7008160, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8160"] + # Segment 4 + - [0x4000000, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000000"] + - [0x4000200, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000200"] + - [0x4000240, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000240"] + - [0x4000380, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000380"] + - [0x40004c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040004C0"] + - [0x40006c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040006C0"] + - [0x40008c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040008C0"] + - [0x4000a00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000A00"] + - [0x4000b40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000B40"] + - [0x4000c80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000C80"] + - [0x4000e00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000E00"] + - [0x4000fc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000FC0"] + - [0x40010c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040010C0"] + - [0x4001280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001280"] + - [0x4001380, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001380"] + - [0x4001580, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001580"] + - [0x40015c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040015C0"] + - [0x4001780, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001780"] + - [0x40018c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040018C0"] + - [0x4001ac0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001AC0"] + - [0x4001b40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001B40"] + - [0x4001c40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001C40"] + - [0x4001d80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001D80"] + - [0x4001f80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001F80"] + - [0x4002000, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002000"] + - [0x4002160, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002160"] + - [0x4002360, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002360"] + - [0x4002420, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002420"] + - [0x4002620, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002620"] + - [0x40027e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040027E0"] + - [0x4002820, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002820"] + - [0x4002860, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002860"] + - [0x40028a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040028A0"] + - [0x40028e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040028E0"] + - [0x4002920, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002920"] + - [0x4002960, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002960"] + - [0x40029a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040029A0"] + - [0x40029e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040029E0"] + - [0x4002b60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002B60"] + - [0x4002be0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002BE0"] + - [0x4002c60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002C60"] + - [0x4002d20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002D20"] + - [0x4002de0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002DE0"] + - [0x4002e60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002E60"] + - [0x4002f20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002F20"] + - [0x4003060, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003060"] + - [0x4003260, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003260"] + - [0x4003460, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003460"] + - [0x4003580, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003580"] + - [0x4003780, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003780"] + - [0x4003980, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003980"] + - [0x4003a10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003A10"] + - [0x4003ad0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003AD0"] + - [0x4003bf0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003BF0"] + - [0x4003c70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003C70"] + - [0x4003e30, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003E30"] + - [0x4003eb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003EB0"] + - [0x4003fc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003FC0"] + - [0x4004130, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004130"] + - [0x40041c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040041C0"] + - [0x4004300, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004300"] + - [0x4004380, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004380"] + - [0x4004550, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004550"] + - [0x40045b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040045B0"] + - [0x4004610, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004610"] + - [0x4004670, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004670"] + - [0x40046b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040046B0"] + - [0x4004730, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004730"] + - [0x4004840, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004840"] + - [0x4004940, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004940"] + - [0x4004a00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004A00"] + - [0x4004a70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004A70"] + - [0x4004b10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004B10"] + - [0x4004bd0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004BD0"] + - [0x4004c80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004C80"] + - [0x4004e30, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004E30"] + - [0x4004eb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004EB0"] + - [0x4004f50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004F50"] + - [0x4005070, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005070"] + - [0x40051c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040051C0"] + - [0x4005280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005280"] + - [0x4005370, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005370"] + - [0x40054b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040054B0"] + - [0x4005550, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005550"] + - [0x40056e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040056E0"] + - [0x4005840, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005840"] + - [0x40058e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040058E0"] + - [0x40059f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040059F0"] + - [0x4005a80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005A80"] + - [0x4005ba0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005BA0"] + - [0x4005c90, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005C90"] + - [0x4005dc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005DC0"] + - [0x4005e80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005E80"] + - [0x4005f60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005F60"] + - [0x4006020, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006020"] + - [0x40060e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040060E0"] + - [0x4006230, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006230"] + - [0x40062e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040062E0"] + - [0x4006370, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006370"] + - [0x40063f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040063F0"] + - [0x4006510, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006510"] + - [0x4006620, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006620"] + - [0x40066e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040066E0"] + - [0x4006760, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006760"] + - [0x4006870, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006870"] + - [0x40068b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040068B0"] + - [0x40068f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040068F0"] + - [0x40069d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040069D0"] + - [0x4006a10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006A10"] + - [0x4006aa0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006AA0"] + - [0x4006b20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006B20"] + - [0x4006c00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006C00"] + - [0x4006c40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006C40"] + - [0x4006cc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006CC0"] + - [0x4006d40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006D40"] + - [0x4006e40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006E40"] + - [0x4006ec0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006EC0"] + - [0x4006f50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006F50"] + - [0x40070f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040070F0"] + - [0x40071e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040071E0"] + - [0x40072d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040072D0"] + - [0x4007350, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007350"] + - [0x4007490, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007490"] + - [0x4007570, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007570"] + - [0x40075f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040075F0"] + - [0x4007660, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007660"] + - [0x40076a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040076A0"] + - [0x4007880, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007880"] + - [0x4007940, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007940"] + - [0x4007980, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007980"] + - [0x4007b50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007B50"] + - [0x4007bd0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007BD0"] + - [0x4007dc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007DC0"] + - [0x4007e80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007E80"] + - [0x4008060, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008060"] + - [0x4008200, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008200"] + - [0x40083e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040083E0"] + - [0x40085c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040085C0"] + - [0x40087c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040087C0"] + - [0x4008880, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008880"] + - [0x4008a10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008A10"] + - [0x4008ab0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008AB0"] + - [0x4008af0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008AF0"] + - [0x4008b70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008B70"] + - [0x4008cb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008CB0"] + - [0x4008d70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008D70"] + - [0x4008df0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008DF0"] + - [0x4008e30, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008E30"] + - [0x4009010, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009010"] + - [0x4009090, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009090"] + - [0x4009280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009280"] + - [0x40092e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040092E0"] + - [0x40094c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040094C0"] + - [0x4009630, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009630"] + - [0x4009830, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009830"] + - [0x40098d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040098D0"] + - [0x4009910, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009910"] + - [0x4009b10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009B10"] + - [0x4009b60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009B60"] + - [0x4009ce0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009CE0"] + - [0x4009eb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009EB0"] + - [0x4009ef0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009EF0"] + - [0x400a0f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A0F0"] + - [0x400a250, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A250"] + - [0x400a430, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A430"] + - [0x400a490, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A490"] + - [0x400a5b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A5B0"] + - [0x400a6d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A6D0"] + - [0x400a790, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A790"] + - [0x400a8b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A8B0"] + - [0x400a9f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A9F0"] + - [0x400abd0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400ABD0"] + - [0x400adb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400ADB0"] + - [0x400af90, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400AF90"] + - [0x400b0b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B0B0"] + - [0x400b1e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B1E0"] + - [0x400b280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B280"] + - [0x400b2e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B2E0"] + - [0x400b390, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B390"] + - [0x400b400, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B400"] + - [0x400b490, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B490"] + - [0x400b530, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B530"] + - [0x400b5d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B5D0"] + - [0x400b660, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B660"] + - [0x400b6e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B6E0"] + - [0x400b7b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B7B0"] + - [0x400b820, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B820"] + - [0x400b8c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B8C0"] + - [0x400b940, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B940"] + - [0x400b990, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B990"] + - [0x400ba10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BA10"] + - [0x400ba70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BA70"] + - [0x400bb20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BB20"] + - [0x400bc50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BC50"] + - [0x400bcf0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BCF0"] + - [0x400bd50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BD50"] + - [0x400bdf0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BDF0"] + - [0x400beb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BEB0"] + - [0x400bf10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BF10"] + - [0x400bff0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BFF0"] + - [0x400c090, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C090"] + - [0x400c110, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C110"] + - [0x400c170, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C170"] + - [0x400c220, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C220"] + - [0x400c280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C280"] + - [0x400c2e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C2E0"] + - [0x400c3b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C3B0"] + - [0x400c410, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C410"] + - [0x400c470, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C470"] + - [0x400c4d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C4D0"] + - [0x400c510, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C510"] + - [0x400c5a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C5A0"] + - [0x400c650, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C650"] + - [0x400c6e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C6E0"] + - [0x400c760, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C760"] + - [0x400c800, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C800"] + - [0x400c8a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C8A0"] + - [0x400c9c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C9C0"] + - [0x400ca30, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CA30"] + - [0x400cac0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CAC0"] + - [0x400cbe0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CBE0"] + - [0x400cd00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CD00"] + - [0x400cd60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CD60"] + - [0x400cef0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CEF0"] + - [0x400cf80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CF80"] + - [0x400d080, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D080"] + - [0x400d100, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D100"] + - [0x400d180, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D180"] + - [0x400d250, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D250"] + - [0x400d330, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D330"] + - [0x400d3d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D3D0"] + - [0x400d430, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D430"] + - [0x400d510, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D510"] + - [0x400d600, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D600"] + - [0x400d6b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D6B0"] + - [0x400d730, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D730"] + - [0x400d800, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D800"] + - [0x400d870, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D870"] + - [0x400d970, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D970"] + - [0x400dad0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DAD0"] + - [0x400dbd0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DBD0"] + - [0x400dc40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DC40"] + - [0x400dc90, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DC90"] + - [0x400dd20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DD20"] + - [0x400de00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DE00"] + - [0x400de60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DE60"] + - [0x400df60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DF60"] + - [0x400dff0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DFF0"] + - [0x400e070, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E070"] + - [0x400e0f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E0F0"] + - [0x400e150, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E150"] + - [0x400e1c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E1C0"] + - [0x400e230, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E230"] + - [0x400e300, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E300"] + - [0x400e3f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E3F0"] + - [0x400e460, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E460"] + - [0x400e500, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E500"] + - [0x400e580, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E580"] + - [0x400e610, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E610"] + - [0x400e660, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E660"] + - [0x400e6c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E6C0"] + - [0x400e720, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E720"] + - [0x400e7a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E7A0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_yoshi_valley_dl_0: + symbol: d_course_yoshi_valley_dl_0 + type: gfx + offset: 0x0 +d_course_yoshi_valley_dl_20: + symbol: d_course_yoshi_valley_dl_20 + type: gfx + offset: 0x20 +d_course_yoshi_valley_dl_40: + symbol: d_course_yoshi_valley_dl_40 + type: gfx + offset: 0x40 +d_course_yoshi_valley_dl_290: + symbol: d_course_yoshi_valley_dl_290 + type: gfx + offset: 0x290 +d_course_yoshi_valley_dl_3F0: + symbol: d_course_yoshi_valley_dl_3F0 + type: gfx + offset: 0x3F0 +d_course_yoshi_valley_dl_4E8: + symbol: d_course_yoshi_valley_dl_4E8 + type: gfx + offset: 0x4E8 +d_course_yoshi_valley_dl_7A0: + symbol: d_course_yoshi_valley_dl_7A0 + type: gfx + offset: 0x7A0 +d_course_yoshi_valley_dl_9C8: + symbol: d_course_yoshi_valley_dl_9C8 + type: gfx + offset: 0x9C8 +d_course_yoshi_valley_dl_BC0: + symbol: d_course_yoshi_valley_dl_BC0 + type: gfx + offset: 0xBC0 +d_course_yoshi_valley_dl_CC0: + symbol: d_course_yoshi_valley_dl_CC0 + type: gfx + offset: 0xCC0 +d_course_yoshi_valley_dl_FA0: + symbol: d_course_yoshi_valley_dl_FA0 + type: gfx + offset: 0xFA0 +d_course_yoshi_valley_dl_1178: + symbol: d_course_yoshi_valley_dl_1178 + type: gfx + offset: 0x1178 +d_course_yoshi_valley_dl_13F8: + symbol: d_course_yoshi_valley_dl_13F8 + type: gfx + offset: 0x13F8 +d_course_yoshi_valley_dl_14D0: + symbol: d_course_yoshi_valley_dl_14D0 + type: gfx + offset: 0x14D0 +d_course_yoshi_valley_dl_17A8: + symbol: d_course_yoshi_valley_dl_17A8 + type: gfx + offset: 0x17A8 +d_course_yoshi_valley_dl_1968: + symbol: d_course_yoshi_valley_dl_1968 + type: gfx + offset: 0x1968 +d_course_yoshi_valley_dl_1C38: + symbol: d_course_yoshi_valley_dl_1C38 + type: gfx + offset: 0x1C38 +d_course_yoshi_valley_dl_1D48: + symbol: d_course_yoshi_valley_dl_1D48 + type: gfx + offset: 0x1D48 +d_course_yoshi_valley_dl_2000: + symbol: d_course_yoshi_valley_dl_2000 + type: gfx + offset: 0x2000 +d_course_yoshi_valley_dl_21B0: + symbol: d_course_yoshi_valley_dl_21B0 + type: gfx + offset: 0x21B0 +d_course_yoshi_valley_dl_2408: + symbol: d_course_yoshi_valley_dl_2408 + type: gfx + offset: 0x2408 +d_course_yoshi_valley_dl_25E8: + symbol: d_course_yoshi_valley_dl_25E8 + type: gfx + offset: 0x25E8 +d_course_yoshi_valley_dl_2840: + symbol: d_course_yoshi_valley_dl_2840 + type: gfx + offset: 0x2840 +d_course_yoshi_valley_dl_2978: + symbol: d_course_yoshi_valley_dl_2978 + type: gfx + offset: 0x2978 +d_course_yoshi_valley_dl_2BC0: + symbol: d_course_yoshi_valley_dl_2BC0 + type: gfx + offset: 0x2BC0 +d_course_yoshi_valley_dl_2D70: + symbol: d_course_yoshi_valley_dl_2D70 + type: gfx + offset: 0x2D70 +d_course_yoshi_valley_dl_2F48: + symbol: d_course_yoshi_valley_dl_2F48 + type: gfx + offset: 0x2F48 +d_course_yoshi_valley_dl_3078: + symbol: d_course_yoshi_valley_dl_3078 + type: gfx + offset: 0x3078 +d_course_yoshi_valley_dl_3258: + symbol: d_course_yoshi_valley_dl_3258 + type: gfx + offset: 0x3258 +d_course_yoshi_valley_dl_3420: + symbol: d_course_yoshi_valley_dl_3420 + type: gfx + offset: 0x3420 +d_course_yoshi_valley_dl_3560: + symbol: d_course_yoshi_valley_dl_3560 + type: gfx + offset: 0x3560 +d_course_yoshi_valley_dl_36D0: + symbol: d_course_yoshi_valley_dl_36D0 + type: gfx + offset: 0x36D0 +d_course_yoshi_valley_dl_3880: + symbol: d_course_yoshi_valley_dl_3880 + type: gfx + offset: 0x3880 +d_course_yoshi_valley_dl_3A38: + symbol: d_course_yoshi_valley_dl_3A38 + type: gfx + offset: 0x3A38 +d_course_yoshi_valley_dl_3BA0: + symbol: d_course_yoshi_valley_dl_3BA0 + type: gfx + offset: 0x3BA0 +d_course_yoshi_valley_dl_3D20: + symbol: d_course_yoshi_valley_dl_3D20 + type: gfx + offset: 0x3D20 +d_course_yoshi_valley_dl_3E30: + symbol: d_course_yoshi_valley_dl_3E30 + type: gfx + offset: 0x3E30 +d_course_yoshi_valley_dl_3F88: + symbol: d_course_yoshi_valley_dl_3F88 + type: gfx + offset: 0x3F88 +d_course_yoshi_valley_dl_40B8: + symbol: d_course_yoshi_valley_dl_40B8 + type: gfx + offset: 0x40B8 +d_course_yoshi_valley_dl_4320: + symbol: d_course_yoshi_valley_dl_4320 + type: gfx + offset: 0x4320 +d_course_yoshi_valley_dl_44C8: + symbol: d_course_yoshi_valley_dl_44C8 + type: gfx + offset: 0x44C8 +d_course_yoshi_valley_dl_4718: + symbol: d_course_yoshi_valley_dl_4718 + type: gfx + offset: 0x4718 +d_course_yoshi_valley_dl_48C0: + symbol: d_course_yoshi_valley_dl_48C0 + type: gfx + offset: 0x48C0 +d_course_yoshi_valley_dl_4A98: + symbol: d_course_yoshi_valley_dl_4A98 + type: gfx + offset: 0x4A98 +d_course_yoshi_valley_dl_4C28: + symbol: d_course_yoshi_valley_dl_4C28 + type: gfx + offset: 0x4C28 +d_course_yoshi_valley_dl_4E60: + symbol: d_course_yoshi_valley_dl_4E60 + type: gfx + offset: 0x4E60 +d_course_yoshi_valley_dl_5018: + symbol: d_course_yoshi_valley_dl_5018 + type: gfx + offset: 0x5018 +d_course_yoshi_valley_dl_51D0: + symbol: d_course_yoshi_valley_dl_51D0 + type: gfx + offset: 0x51D0 +d_course_yoshi_valley_dl_53E0: + symbol: d_course_yoshi_valley_dl_53E0 + type: gfx + offset: 0x53E0 +d_course_yoshi_valley_dl_5638: + symbol: d_course_yoshi_valley_dl_5638 + type: gfx + offset: 0x5638 +d_course_yoshi_valley_dl_5778: + symbol: d_course_yoshi_valley_dl_5778 + type: gfx + offset: 0x5778 +d_course_yoshi_valley_dl_5890: + symbol: d_course_yoshi_valley_dl_5890 + type: gfx + offset: 0x5890 +d_course_yoshi_valley_dl_5A80: + symbol: d_course_yoshi_valley_dl_5A80 + type: gfx + offset: 0x5A80 +d_course_yoshi_valley_dl_5C70: + symbol: d_course_yoshi_valley_dl_5C70 + type: gfx + offset: 0x5C70 +d_course_yoshi_valley_dl_5D60: + symbol: d_course_yoshi_valley_dl_5D60 + type: gfx + offset: 0x5D60 +d_course_yoshi_valley_dl_5ED8: + symbol: d_course_yoshi_valley_dl_5ED8 + type: gfx + offset: 0x5ED8 +d_course_yoshi_valley_dl_6070: + symbol: d_course_yoshi_valley_dl_6070 + type: gfx + offset: 0x6070 +d_course_yoshi_valley_dl_6268: + symbol: d_course_yoshi_valley_dl_6268 + type: gfx + offset: 0x6268 +d_course_yoshi_valley_dl_6358: + symbol: d_course_yoshi_valley_dl_6358 + type: gfx + offset: 0x6358 +d_course_yoshi_valley_dl_6530: + symbol: d_course_yoshi_valley_dl_6530 + type: gfx + offset: 0x6530 +d_course_yoshi_valley_dl_66B0: + symbol: d_course_yoshi_valley_dl_66B0 + type: gfx + offset: 0x66B0 +d_course_yoshi_valley_dl_68C8: + symbol: d_course_yoshi_valley_dl_68C8 + type: gfx + offset: 0x68C8 +d_course_yoshi_valley_dl_69C0: + symbol: d_course_yoshi_valley_dl_69C0 + type: gfx + offset: 0x69C0 +d_course_yoshi_valley_dl_6BF0: + symbol: d_course_yoshi_valley_dl_6BF0 + type: gfx + offset: 0x6BF0 +d_course_yoshi_valley_dl_6D78: + symbol: d_course_yoshi_valley_dl_6D78 + type: gfx + offset: 0x6D78 +d_course_yoshi_valley_dl_6FB8: + symbol: d_course_yoshi_valley_dl_6FB8 + type: gfx + offset: 0x6FB8 +d_course_yoshi_valley_dl_7100: + symbol: d_course_yoshi_valley_dl_7100 + type: gfx + offset: 0x7100 +d_course_yoshi_valley_dl_7310: + symbol: d_course_yoshi_valley_dl_7310 + type: gfx + offset: 0x7310 +d_course_yoshi_valley_dl_7400: + symbol: d_course_yoshi_valley_dl_7400 + type: gfx + offset: 0x7400 +d_course_yoshi_valley_dl_75C8: + symbol: d_course_yoshi_valley_dl_75C8 + type: gfx + offset: 0x75C8 +d_course_yoshi_valley_dl_7770: + symbol: d_course_yoshi_valley_dl_7770 + type: gfx + offset: 0x7770 +d_course_yoshi_valley_dl_7938: + symbol: d_course_yoshi_valley_dl_7938 + type: gfx + offset: 0x7938 +d_course_yoshi_valley_dl_7A08: + symbol: d_course_yoshi_valley_dl_7A08 + type: gfx + offset: 0x7A08 +d_course_yoshi_valley_dl_7BB8: + symbol: d_course_yoshi_valley_dl_7BB8 + type: gfx + offset: 0x7BB8 +d_course_yoshi_valley_dl_7CE8: + symbol: d_course_yoshi_valley_dl_7CE8 + type: gfx + offset: 0x7CE8 +d_course_yoshi_valley_dl_7F80: + symbol: d_course_yoshi_valley_dl_7F80 + type: gfx + offset: 0x7F80 +d_course_yoshi_valley_dl_8030: + symbol: d_course_yoshi_valley_dl_8030 + type: gfx + offset: 0x8030 +d_course_yoshi_valley_dl_8218: + symbol: d_course_yoshi_valley_dl_8218 + type: gfx + offset: 0x8218 +d_course_yoshi_valley_dl_8420: + symbol: d_course_yoshi_valley_dl_8420 + type: gfx + offset: 0x8420 +d_course_yoshi_valley_dl_8710: + symbol: d_course_yoshi_valley_dl_8710 + type: gfx + offset: 0x8710 +d_course_yoshi_valley_dl_8830: + symbol: d_course_yoshi_valley_dl_8830 + type: gfx + offset: 0x8830 +d_course_yoshi_valley_dl_8958: + symbol: d_course_yoshi_valley_dl_8958 + type: gfx + offset: 0x8958 +d_course_yoshi_valley_dl_8C30: + symbol: d_course_yoshi_valley_dl_8C30 + type: gfx + offset: 0x8C30 +d_course_yoshi_valley_dl_8D58: + symbol: d_course_yoshi_valley_dl_8D58 + type: gfx + offset: 0x8D58 +d_course_yoshi_valley_dl_8FD8: + symbol: d_course_yoshi_valley_dl_8FD8 + type: gfx + offset: 0x8FD8 +d_course_yoshi_valley_dl_91D8: + symbol: d_course_yoshi_valley_dl_91D8 + type: gfx + offset: 0x91D8 +d_course_yoshi_valley_dl_9340: + symbol: d_course_yoshi_valley_dl_9340 + type: gfx + offset: 0x9340 +d_course_yoshi_valley_dl_9548: + symbol: d_course_yoshi_valley_dl_9548 + type: gfx + offset: 0x9548 +d_course_yoshi_valley_dl_9780: + symbol: d_course_yoshi_valley_dl_9780 + type: gfx + offset: 0x9780 +d_course_yoshi_valley_dl_9A00: + symbol: d_course_yoshi_valley_dl_9A00 + type: gfx + offset: 0x9A00 +d_course_yoshi_valley_dl_9BB0: + symbol: d_course_yoshi_valley_dl_9BB0 + type: gfx + offset: 0x9BB0 +d_course_yoshi_valley_dl_9DB8: + symbol: d_course_yoshi_valley_dl_9DB8 + type: gfx + offset: 0x9DB8 +d_course_yoshi_valley_dl_9F70: + symbol: d_course_yoshi_valley_dl_9F70 + type: gfx + offset: 0x9F70 +d_course_yoshi_valley_dl_A188: + symbol: d_course_yoshi_valley_dl_A188 + type: gfx + offset: 0xA188 +d_course_yoshi_valley_dl_A328: + symbol: d_course_yoshi_valley_dl_A328 + type: gfx + offset: 0xA328 +d_course_yoshi_valley_dl_A518: + symbol: d_course_yoshi_valley_dl_A518 + type: gfx + offset: 0xA518 +d_course_yoshi_valley_dl_A6B8: + symbol: d_course_yoshi_valley_dl_A6B8 + type: gfx + offset: 0xA6B8 +d_course_yoshi_valley_dl_A8A0: + symbol: d_course_yoshi_valley_dl_A8A0 + type: gfx + offset: 0xA8A0 +d_course_yoshi_valley_dl_AAC0: + symbol: d_course_yoshi_valley_dl_AAC0 + type: gfx + offset: 0xAAC0 +d_course_yoshi_valley_dl_ACF0: + symbol: d_course_yoshi_valley_dl_ACF0 + type: gfx + offset: 0xACF0 +d_course_yoshi_valley_dl_AE78: + symbol: d_course_yoshi_valley_dl_AE78 + type: gfx + offset: 0xAE78 +d_course_yoshi_valley_dl_AFF8: + symbol: d_course_yoshi_valley_dl_AFF8 + type: gfx + offset: 0xAFF8 +d_course_yoshi_valley_dl_B220: + symbol: d_course_yoshi_valley_dl_B220 + type: gfx + offset: 0xB220 +d_course_yoshi_valley_dl_B428: + symbol: d_course_yoshi_valley_dl_B428 + type: gfx + offset: 0xB428 +d_course_yoshi_valley_dl_B578: + symbol: d_course_yoshi_valley_dl_B578 + type: gfx + offset: 0xB578 +d_course_yoshi_valley_dl_B778: + symbol: d_course_yoshi_valley_dl_B778 + type: gfx + offset: 0xB778 +d_course_yoshi_valley_dl_B970: + symbol: d_course_yoshi_valley_dl_B970 + type: gfx + offset: 0xB970 +d_course_yoshi_valley_dl_BAF8: + symbol: d_course_yoshi_valley_dl_BAF8 + type: gfx + offset: 0xBAF8 +d_course_yoshi_valley_dl_BC98: + symbol: d_course_yoshi_valley_dl_BC98 + type: gfx + offset: 0xBC98 +d_course_yoshi_valley_dl_BE18: + symbol: d_course_yoshi_valley_dl_BE18 + type: gfx + offset: 0xBE18 +d_course_yoshi_valley_dl_BFC8: + symbol: d_course_yoshi_valley_dl_BFC8 + type: gfx + offset: 0xBFC8 +d_course_yoshi_valley_dl_C140: + symbol: d_course_yoshi_valley_dl_C140 + type: gfx + offset: 0xC140 +d_course_yoshi_valley_dl_C2D8: + symbol: d_course_yoshi_valley_dl_C2D8 + type: gfx + offset: 0xC2D8 +d_course_yoshi_valley_dl_C470: + symbol: d_course_yoshi_valley_dl_C470 + type: gfx + offset: 0xC470 +d_course_yoshi_valley_dl_C580: + symbol: d_course_yoshi_valley_dl_C580 + type: gfx + offset: 0xC580 +d_course_yoshi_valley_dl_C668: + symbol: d_course_yoshi_valley_dl_C668 + type: gfx + offset: 0xC668 +d_course_yoshi_valley_dl_C728: + symbol: d_course_yoshi_valley_dl_C728 + type: gfx + offset: 0xC728 +d_course_yoshi_valley_dl_C838: + symbol: d_course_yoshi_valley_dl_C838 + type: gfx + offset: 0xC838 +d_course_yoshi_valley_dl_C8F8: + symbol: d_course_yoshi_valley_dl_C8F8 + type: gfx + offset: 0xC8F8 +d_course_yoshi_valley_dl_CAD8: + symbol: d_course_yoshi_valley_dl_CAD8 + type: gfx + offset: 0xCAD8 +d_course_yoshi_valley_dl_CC80: + symbol: d_course_yoshi_valley_dl_CC80 + type: gfx + offset: 0xCC80 +d_course_yoshi_valley_dl_CEC8: + symbol: d_course_yoshi_valley_dl_CEC8 + type: gfx + offset: 0xCEC8 +d_course_yoshi_valley_dl_D018: + symbol: d_course_yoshi_valley_dl_D018 + type: gfx + offset: 0xD018 +d_course_yoshi_valley_dl_D1E8: + symbol: d_course_yoshi_valley_dl_D1E8 + type: gfx + offset: 0xD1E8 +d_course_yoshi_valley_dl_D3D0: + symbol: d_course_yoshi_valley_dl_D3D0 + type: gfx + offset: 0xD3D0 +d_course_yoshi_valley_dl_D540: + symbol: d_course_yoshi_valley_dl_D540 + type: gfx + offset: 0xD540 +d_course_yoshi_valley_flag_pole_model1: + symbol: d_course_yoshi_valley_flag_pole_model1 + type: vtx + offset: 0x141D0 + count: 5 +d_course_yoshi_valley_flag_pole_model2: + symbol: d_course_yoshi_valley_flag_pole_model2 + type: vtx + offset: 0x14220 + count: 10 +d_course_yoshi_valley_dl_142C0: + symbol: d_course_yoshi_valley_dl_142C0 + type: gfx + offset: 0x142C0 +d_course_yoshi_valley_flag_1_model1: + symbol: d_course_yoshi_valley_flag_1_model1 + type: vtx + offset: 0x14348 + count: 3 +d_course_yoshi_valley_flag_1_model2: + symbol: d_course_yoshi_valley_flag_1_model2 + type: vtx + offset: 0x14378 + count: 5 +d_course_yoshi_valley_dl_143C8: + symbol: d_course_yoshi_valley_dl_143C8 + type: gfx + offset: 0x143C8 +d_course_yoshi_valley_flag_2_model: + symbol: d_course_yoshi_valley_flag_2_model + type: vtx + offset: 0x14468 + count: 4 +d_course_yoshi_valley_dl_144A8: + symbol: d_course_yoshi_valley_dl_144A8 + type: gfx + offset: 0x144A8 +d_course_yoshi_valley_flag_3_model: + symbol: d_course_yoshi_valley_flag_3_model + type: vtx + offset: 0x144C0 + count: 4 +d_course_yoshi_valley_dl_14500: + symbol: d_course_yoshi_valley_dl_14500 + type: gfx + offset: 0x14500 +d_course_yoshi_valley_flag_4_model: + symbol: d_course_yoshi_valley_flag_4_model + type: vtx + offset: 0x14518 + count: 4 +d_course_yoshi_valley_dl_14558: + symbol: d_course_yoshi_valley_dl_14558 + type: gfx + offset: 0x14558 +d_course_yoshi_valley_flag_5_model: + symbol: d_course_yoshi_valley_flag_5_model + type: vtx + offset: 0x145A0 + count: 3 +d_course_yoshi_valley_dl_145D0: + symbol: d_course_yoshi_valley_dl_145D0 + type: gfx + offset: 0x145D0 +d_course_yoshi_valley_tree_model: + symbol: d_course_yoshi_valley_tree_model + type: vtx + offset: 0x15B08 + count: 4 +d_course_yoshi_valley_dl_tree: + symbol: d_course_yoshi_valley_dl_tree + type: gfx + offset: 0x15B48 +d_course_yoshi_valley_egg_model1: + symbol: d_course_yoshi_valley_egg_model1 + type: vtx + offset: 0x15BD8 + count: 31 +d_course_yoshi_valley_egg_model2: + symbol: d_course_yoshi_valley_egg_model2 + type: vtx + offset: 0x15DC8 + count: 31 +d_course_yoshi_valley_egg_model3: + symbol: d_course_yoshi_valley_egg_model3 + type: vtx + offset: 0x15FB8 + count: 32 +d_course_yoshi_valley_egg_model4: + symbol: d_course_yoshi_valley_egg_model4 + type: vtx + offset: 0x161B8 + count: 32 +d_course_yoshi_valley_egg_model5: + symbol: d_course_yoshi_valley_egg_model5 + type: vtx + offset: 0x163B8 + count: 26 +d_course_yoshi_valley_dl_16D70: + symbol: d_course_yoshi_valley_dl_16D70 + type: gfx + offset: 0x16D70 +d_course_yoshi_valley_egg_model_lod0: + symbol: d_course_yoshi_valley_egg_model_lod0 + type: vtx + offset: 0x16F68 + count: 4 +d_course_yoshi_valley_dl_egg_lod0: + symbol: d_course_yoshi_valley_dl_egg_lod0 + type: gfx + offset: 0x17FA8 +d_course_yoshi_valley_dl_18020: + symbol: d_course_yoshi_valley_dl_18020 + type: gfx + offset: 0x18020 diff --git a/yamls/us/models/tracks/yoshi_valley/yoshi_valley_displaylists.yml b/yamls/us/models/tracks/yoshi_valley/yoshi_valley_displaylists.yml new file mode 100644 index 000000000..128d7e165 --- /dev/null +++ b/yamls/us/models/tracks/yoshi_valley/yoshi_valley_displaylists.yml @@ -0,0 +1,1497 @@ +:config: + vram: + addr: 0x800E8700 # not used for anything + offset: 0x8CA2A0 + no_compression: true + segments: + - [0x0F, 0x8CA2A0] + manual_segments: + # Segment 3 + - [0x03009000, "textures/other_textures/gTextureTrees2"] + # Segment 5 + - [0x05000000, "textures/other_textures/texture_66EBF0"] + - [0x05000800, "textures/other_textures/wood_bridge_slats"] + - [0x05001800, "textures/other_textures/texture_65E2EC"] + - [0x05002000, "textures/other_textures/texture_6846DC"] + - [0x05002800, "textures/other_textures/fence_rope"] + - [0x05003000, "textures/other_textures/texture_685108"] + - [0x05003800, "textures/other_textures/texture_64CC20"] + - [0x05004800, "textures/other_textures/grass_4"] + - [0x05005000, "textures/other_textures/texture_6775EC"] + - [0x05006000, "textures/other_textures/texture_68E2D0"] + - [0x05006800, "textures/other_textures/checkerboard_black_white"] + - [0x05007000, "textures/other_textures/texture_643B3C"] + - [0x05007800, "textures/other_textures/sign_wood_red_arrow"] + - [0x05008800, "textures/other_textures/texture_68DEC0"] + # Segment 7 + - [0x7000000, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_0"] + - [0x70000A8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_A8"] + - [0x7000128, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_128"] + - [0x70001A8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1A8"] + - [0x7000240, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_240"] + - [0x7000308, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_308"] + - [0x7000388, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_388"] + - [0x7000408, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_408"] + - [0x7000490, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_490"] + - [0x7000520, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_520"] + - [0x7000598, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_598"] + - [0x7000628, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_628"] + - [0x70006A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A0"] + - [0x7000748, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_748"] + - [0x70007D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7D8"] + - [0x7000858, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_858"] + - [0x7000908, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_908"] + - [0x7000980, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_980"] + - [0x7000A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_A00"] + - [0x7000AB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_AB0"] + - [0x7000B40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_B40"] + - [0x7000BF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_BF8"] + - [0x7000C90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_C90"] + - [0x7000D20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_D20"] + - [0x7000DE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_DE0"] + - [0x7000E90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_E90"] + - [0x7000F40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_F40"] + - [0x7000FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_FF0"] + - [0x70010A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_10A0"] + - [0x70010C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_10C8"] + - [0x7001150, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1150"] + - [0x70011B8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_11B8"] + - [0x7001220, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1220"] + - [0x7001290, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1290"] + - [0x7001300, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1300"] + - [0x7001368, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1368"] + - [0x70013D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_13D8"] + - [0x7001418, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1418"] + - [0x7001580, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1580"] + - [0x70016E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_16E8"] + - [0x7001700, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1700"] + - [0x7001728, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1728"] + - [0x7001738, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1738"] + - [0x70017B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_17B0"] + - [0x7001830, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1830"] + - [0x70018C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_18C8"] + - [0x7001938, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1938"] + - [0x70019F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_19F8"] + - [0x7001A68, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1A68"] + - [0x7001AF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1AF0"] + - [0x7001BA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1BA0"] + - [0x7001C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1C18"] + - [0x7001CB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1CB0"] + - [0x7001D20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1D20"] + - [0x7001DE8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1DE8"] + - [0x7001E50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1E50"] + - [0x7001EB8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1EB8"] + - [0x7001F20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1F20"] + - [0x7001F80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1F80"] + - [0x7001FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1FF0"] + - [0x7002078, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2078"] + - [0x7002108, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2108"] + - [0x7002188, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2188"] + - [0x70021F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_21F8"] + - [0x7002270, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2270"] + - [0x70022F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_22F0"] + - [0x7002370, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2370"] + - [0x7002428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2428"] + - [0x7002498, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2498"] + - [0x7002510, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2510"] + - [0x70025A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_25A0"] + - [0x7002648, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2648"] + - [0x70026C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_26C8"] + - [0x7002758, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2758"] + - [0x70027F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_27F0"] + - [0x7002868, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2868"] + - [0x70028F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_28F8"] + - [0x7002988, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2988"] + - [0x7002A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2A00"] + - [0x7002A90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2A90"] + - [0x7002B08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2B08"] + - [0x7002BA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2BA0"] + - [0x7002C30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2C30"] + - [0x7002CD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2CD0"] + - [0x7002D50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2D50"] + - [0x7002DD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2DD0"] + - [0x7002E58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2E58"] + - [0x7002EE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2EE0"] + - [0x7002F90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2F90"] + - [0x7003010, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3010"] + - [0x7003190, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3190"] + - [0x7003200, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3200"] + - [0x7003268, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3268"] + - [0x70032E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_32E8"] + - [0x7003368, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3368"] + - [0x70033D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_33D8"] + - [0x7003498, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3498"] + - [0x7003580, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3580"] + - [0x7003630, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3630"] + - [0x7003698, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3698"] + - [0x7003710, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3710"] + - [0x70037B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_37B0"] + - [0x7003818, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3818"] + - [0x7003890, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3890"] + - [0x7003900, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3900"] + - [0x7003970, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3970"] + - [0x7003A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3A00"] + - [0x7003A80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3A80"] + - [0x7003B00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3B00"] + - [0x7003B78, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3B78"] + - [0x7003BF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3BF8"] + - [0x7003C70, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3C70"] + - [0x7003CD8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3CD8"] + - [0x7003D48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3D48"] + - [0x7003E08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3E08"] + - [0x7003F10, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3F10"] + - [0x7003FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3FF0"] + - [0x7004108, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4108"] + - [0x70041B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_41B0"] + - [0x7004258, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4258"] + - [0x7004358, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4358"] + - [0x7004428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4428"] + - [0x70044C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_44C8"] + - [0x7004588, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4588"] + - [0x70045F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_45F0"] + - [0x7004670, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4670"] + - [0x70046E0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_46E0"] + - [0x7004810, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4810"] + - [0x7004918, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4918"] + - [0x70049C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_49C0"] + - [0x7004A58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4A58"] + - [0x7004B20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4B20"] + - [0x7004C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4C18"] + - [0x7004CB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4CB0"] + - [0x7004D68, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4D68"] + - [0x7004E88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4E88"] + - [0x7004F48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4F48"] + - [0x7004FD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4FD0"] + - [0x7005058, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5058"] + - [0x70050E0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_50E0"] + - [0x7005158, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5158"] + - [0x70051D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_51D8"] + - [0x70052D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_52D8"] + - [0x70053C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_53C0"] + - [0x70054B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_54B0"] + - [0x7005548, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5548"] + - [0x70055C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_55C0"] + - [0x7005628, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5628"] + - [0x70056A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_56A0"] + - [0x7005710, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5710"] + - [0x7005788, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5788"] + - [0x7005800, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5800"] + - [0x7005880, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5880"] + - [0x70058F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_58F8"] + - [0x7005970, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5970"] + - [0x70059F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_59F0"] + - [0x7005A60, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5A60"] + - [0x7005AD8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5AD8"] + - [0x7005B48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5B48"] + - [0x7005BB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5BB0"] + - [0x7005C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5C18"] + - [0x7005C80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5C80"] + - [0x7005D00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5D00"] + - [0x7005D90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5D90"] + - [0x7005DF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5DF8"] + - [0x7005E60, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5E60"] + - [0x7005F10, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5F10"] + - [0x7005F88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5F88"] + - [0x7006008, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6008"] + - [0x7006070, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6070"] + - [0x7006100, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6100"] + - [0x7006178, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6178"] + - [0x70061E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_61E8"] + - [0x7006250, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6250"] + - [0x70062D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_62D0"] + - [0x7006338, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6338"] + - [0x70063A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_63A0"] + - [0x7006428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6428"] + - [0x7006490, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6490"] + - [0x70064F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_64F8"] + - [0x7006560, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6560"] + - [0x70065C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_65C0"] + - [0x7006638, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6638"] + - [0x70066B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_66B0"] + - [0x7006728, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6728"] + - [0x7006798, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6798"] + - [0x7006810, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6810"] + - [0x7006888, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6888"] + - [0x7006920, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6920"] + - [0x7006990, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6990"] + - [0x7006A08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A08"] + - [0x7006A98, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A98"] + - [0x7006B30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6B30"] + - [0x7006B98, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6B98"] + - [0x7006C40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6C40"] + - [0x7006CB8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6CB8"] + - [0x7006D40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6D40"] + - [0x7006DB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6DB0"] + - [0x7006E20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6E20"] + - [0x7006EA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6EA0"] + - [0x7006F30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6F30"] + - [0x7006FA8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6FA8"] + - [0x7007010, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7010"] + - [0x7007090, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7090"] + - [0x7007120, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7120"] + - [0x70071A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_71A0"] + - [0x7007210, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7210"] + - [0x7007290, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7290"] + - [0x7007300, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7300"] + - [0x7007458, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7458"] + - [0x70074D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_74D0"] + - [0x7007558, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7558"] + - [0x70075D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_75D0"] + - [0x70075F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_75F0"] + - [0x7007660, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7660"] + - [0x70076C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_76C8"] + - [0x7007740, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7740"] + - [0x70077C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_77C0"] + - [0x7007828, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7828"] + - [0x70078B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_78B0"] + - [0x7007928, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7928"] + - [0x7007998, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7998"] + - [0x7007A08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7A08"] + - [0x7007A70, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7A70"] + - [0x7007AE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7AE0"] + - [0x7007B50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7B50"] + - [0x7007BD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7BD0"] + - [0x7007C50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7C50"] + - [0x7007CC0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7CC0"] + - [0x7007D38, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7D38"] + - [0x7007DA8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7DA8"] + - [0x7007E20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7E20"] + - [0x7007E88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7E88"] + - [0x7007EF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7EF0"] + - [0x7007F58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7F58"] + - [0x7007FC8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7FC8"] + - [0x7008050, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8050"] + - [0x7008110, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8110"] + - [0x7008150, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8150"] + - [0x7008160, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8160"] + # Segment 4 + - [0x4000000, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000000"] + - [0x4000200, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000200"] + - [0x4000240, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000240"] + - [0x4000380, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000380"] + - [0x40004c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040004C0"] + - [0x40006c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040006C0"] + - [0x40008c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040008C0"] + - [0x4000a00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000A00"] + - [0x4000b40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000B40"] + - [0x4000c80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000C80"] + - [0x4000e00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000E00"] + - [0x4000fc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04000FC0"] + - [0x40010c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040010C0"] + - [0x4001280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001280"] + - [0x4001380, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001380"] + - [0x4001580, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001580"] + - [0x40015c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040015C0"] + - [0x4001780, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001780"] + - [0x40018c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040018C0"] + - [0x4001ac0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001AC0"] + - [0x4001b40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001B40"] + - [0x4001c40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001C40"] + - [0x4001d80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001D80"] + - [0x4001f80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04001F80"] + - [0x4002000, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002000"] + - [0x4002160, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002160"] + - [0x4002360, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002360"] + - [0x4002420, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002420"] + - [0x4002620, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002620"] + - [0x40027e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040027E0"] + - [0x4002820, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002820"] + - [0x4002860, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002860"] + - [0x40028a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040028A0"] + - [0x40028e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040028E0"] + - [0x4002920, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002920"] + - [0x4002960, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002960"] + - [0x40029a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040029A0"] + - [0x40029e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040029E0"] + - [0x4002b60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002B60"] + - [0x4002be0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002BE0"] + - [0x4002c60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002C60"] + - [0x4002d20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002D20"] + - [0x4002de0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002DE0"] + - [0x4002e60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002E60"] + - [0x4002f20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04002F20"] + - [0x4003060, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003060"] + - [0x4003260, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003260"] + - [0x4003460, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003460"] + - [0x4003580, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003580"] + - [0x4003780, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003780"] + - [0x4003980, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003980"] + - [0x4003a10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003A10"] + - [0x4003ad0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003AD0"] + - [0x4003bf0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003BF0"] + - [0x4003c70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003C70"] + - [0x4003e30, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003E30"] + - [0x4003eb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003EB0"] + - [0x4003fc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04003FC0"] + - [0x4004130, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004130"] + - [0x40041c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040041C0"] + - [0x4004300, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004300"] + - [0x4004380, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004380"] + - [0x4004550, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004550"] + - [0x40045b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040045B0"] + - [0x4004610, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004610"] + - [0x4004670, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004670"] + - [0x40046b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040046B0"] + - [0x4004730, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004730"] + - [0x4004840, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004840"] + - [0x4004940, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004940"] + - [0x4004a00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004A00"] + - [0x4004a70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004A70"] + - [0x4004b10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004B10"] + - [0x4004bd0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004BD0"] + - [0x4004c80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004C80"] + - [0x4004e30, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004E30"] + - [0x4004eb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004EB0"] + - [0x4004f50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04004F50"] + - [0x4005070, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005070"] + - [0x40051c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040051C0"] + - [0x4005280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005280"] + - [0x4005370, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005370"] + - [0x40054b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040054B0"] + - [0x4005550, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005550"] + - [0x40056e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040056E0"] + - [0x4005840, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005840"] + - [0x40058e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040058E0"] + - [0x40059f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040059F0"] + - [0x4005a80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005A80"] + - [0x4005ba0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005BA0"] + - [0x4005c90, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005C90"] + - [0x4005dc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005DC0"] + - [0x4005e80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005E80"] + - [0x4005f60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04005F60"] + - [0x4006020, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006020"] + - [0x40060e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040060E0"] + - [0x4006230, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006230"] + - [0x40062e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040062E0"] + - [0x4006370, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006370"] + - [0x40063f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040063F0"] + - [0x4006510, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006510"] + - [0x4006620, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006620"] + - [0x40066e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040066E0"] + - [0x4006760, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006760"] + - [0x4006870, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006870"] + - [0x40068b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040068B0"] + - [0x40068f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040068F0"] + - [0x40069d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040069D0"] + - [0x4006a10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006A10"] + - [0x4006aa0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006AA0"] + - [0x4006b20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006B20"] + - [0x4006c00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006C00"] + - [0x4006c40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006C40"] + - [0x4006cc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006CC0"] + - [0x4006d40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006D40"] + - [0x4006e40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006E40"] + - [0x4006ec0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006EC0"] + - [0x4006f50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04006F50"] + - [0x40070f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040070F0"] + - [0x40071e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040071E0"] + - [0x40072d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040072D0"] + - [0x4007350, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007350"] + - [0x4007490, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007490"] + - [0x4007570, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007570"] + - [0x40075f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040075F0"] + - [0x4007660, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007660"] + - [0x40076a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040076A0"] + - [0x4007880, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007880"] + - [0x4007940, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007940"] + - [0x4007980, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007980"] + - [0x4007b50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007B50"] + - [0x4007bd0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007BD0"] + - [0x4007dc0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007DC0"] + - [0x4007e80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04007E80"] + - [0x4008060, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008060"] + - [0x4008200, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008200"] + - [0x40083e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040083E0"] + - [0x40085c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040085C0"] + - [0x40087c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040087C0"] + - [0x4008880, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008880"] + - [0x4008a10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008A10"] + - [0x4008ab0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008AB0"] + - [0x4008af0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008AF0"] + - [0x4008b70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008B70"] + - [0x4008cb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008CB0"] + - [0x4008d70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008D70"] + - [0x4008df0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008DF0"] + - [0x4008e30, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04008E30"] + - [0x4009010, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009010"] + - [0x4009090, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009090"] + - [0x4009280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009280"] + - [0x40092e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040092E0"] + - [0x40094c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040094C0"] + - [0x4009630, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009630"] + - [0x4009830, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009830"] + - [0x40098d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x040098D0"] + - [0x4009910, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009910"] + - [0x4009b10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009B10"] + - [0x4009b60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009B60"] + - [0x4009ce0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009CE0"] + - [0x4009eb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009EB0"] + - [0x4009ef0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x04009EF0"] + - [0x400a0f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A0F0"] + - [0x400a250, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A250"] + - [0x400a430, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A430"] + - [0x400a490, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A490"] + - [0x400a5b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A5B0"] + - [0x400a6d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A6D0"] + - [0x400a790, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A790"] + - [0x400a8b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A8B0"] + - [0x400a9f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400A9F0"] + - [0x400abd0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400ABD0"] + - [0x400adb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400ADB0"] + - [0x400af90, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400AF90"] + - [0x400b0b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B0B0"] + - [0x400b1e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B1E0"] + - [0x400b280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B280"] + - [0x400b2e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B2E0"] + - [0x400b390, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B390"] + - [0x400b400, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B400"] + - [0x400b490, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B490"] + - [0x400b530, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B530"] + - [0x400b5d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B5D0"] + - [0x400b660, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B660"] + - [0x400b6e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B6E0"] + - [0x400b7b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B7B0"] + - [0x400b820, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B820"] + - [0x400b8c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B8C0"] + - [0x400b940, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B940"] + - [0x400b990, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400B990"] + - [0x400ba10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BA10"] + - [0x400ba70, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BA70"] + - [0x400bb20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BB20"] + - [0x400bc50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BC50"] + - [0x400bcf0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BCF0"] + - [0x400bd50, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BD50"] + - [0x400bdf0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BDF0"] + - [0x400beb0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BEB0"] + - [0x400bf10, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BF10"] + - [0x400bff0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400BFF0"] + - [0x400c090, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C090"] + - [0x400c110, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C110"] + - [0x400c170, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C170"] + - [0x400c220, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C220"] + - [0x400c280, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C280"] + - [0x400c2e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C2E0"] + - [0x400c3b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C3B0"] + - [0x400c410, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C410"] + - [0x400c470, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C470"] + - [0x400c4d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C4D0"] + - [0x400c510, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C510"] + - [0x400c5a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C5A0"] + - [0x400c650, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C650"] + - [0x400c6e0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C6E0"] + - [0x400c760, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C760"] + - [0x400c800, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C800"] + - [0x400c8a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C8A0"] + - [0x400c9c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400C9C0"] + - [0x400ca30, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CA30"] + - [0x400cac0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CAC0"] + - [0x400cbe0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CBE0"] + - [0x400cd00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CD00"] + - [0x400cd60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CD60"] + - [0x400cef0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CEF0"] + - [0x400cf80, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400CF80"] + - [0x400d080, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D080"] + - [0x400d100, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D100"] + - [0x400d180, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D180"] + - [0x400d250, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D250"] + - [0x400d330, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D330"] + - [0x400d3d0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D3D0"] + - [0x400d430, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D430"] + - [0x400d510, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D510"] + - [0x400d600, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D600"] + - [0x400d6b0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D6B0"] + - [0x400d730, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D730"] + - [0x400d800, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D800"] + - [0x400d870, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D870"] + - [0x400d970, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400D970"] + - [0x400dad0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DAD0"] + - [0x400dbd0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DBD0"] + - [0x400dc40, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DC40"] + - [0x400dc90, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DC90"] + - [0x400dd20, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DD20"] + - [0x400de00, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DE00"] + - [0x400de60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DE60"] + - [0x400df60, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DF60"] + - [0x400dff0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400DFF0"] + - [0x400e070, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E070"] + - [0x400e0f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E0F0"] + - [0x400e150, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E150"] + - [0x400e1c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E1C0"] + - [0x400e230, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E230"] + - [0x400e300, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E300"] + - [0x400e3f0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E3F0"] + - [0x400e460, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E460"] + - [0x400e500, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E500"] + - [0x400e580, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E580"] + - [0x400e610, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E610"] + - [0x400e660, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E660"] + - [0x400e6c0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E6C0"] + - [0x400e720, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E720"] + - [0x400e7a0, "models/tracks/yoshi_valley/yoshi_valley_vertices/d_course_yoshi_valley_vertex_0x0400E7A0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_yoshi_valley_packed_dl_0: + symbol: d_course_yoshi_valley_packed_dl_0 + type: MK64:PACKED_GFX + offset: 0x0 +d_course_yoshi_valley_packed_dl_A8: + symbol: d_course_yoshi_valley_packed_dl_A8 + type: MK64:PACKED_GFX + offset: 0x3C +d_course_yoshi_valley_packed_dl_128: + symbol: d_course_yoshi_valley_packed_dl_128 + type: MK64:PACKED_GFX + offset: 0x61 +d_course_yoshi_valley_packed_dl_1A8: + symbol: d_course_yoshi_valley_packed_dl_1A8 + type: MK64:PACKED_GFX + offset: 0x86 +d_course_yoshi_valley_packed_dl_240: + symbol: d_course_yoshi_valley_packed_dl_240 + type: MK64:PACKED_GFX + offset: 0xBA +d_course_yoshi_valley_packed_dl_308: + symbol: d_course_yoshi_valley_packed_dl_308 + type: MK64:PACKED_GFX + offset: 0x10A +d_course_yoshi_valley_packed_dl_388: + symbol: d_course_yoshi_valley_packed_dl_388 + type: MK64:PACKED_GFX + offset: 0x12F +d_course_yoshi_valley_packed_dl_408: + symbol: d_course_yoshi_valley_packed_dl_408 + type: MK64:PACKED_GFX + offset: 0x154 +d_course_yoshi_valley_packed_dl_490: + symbol: d_course_yoshi_valley_packed_dl_490 + type: MK64:PACKED_GFX + offset: 0x17E +d_course_yoshi_valley_packed_dl_520: + symbol: d_course_yoshi_valley_packed_dl_520 + type: MK64:PACKED_GFX + offset: 0x1AD +d_course_yoshi_valley_packed_dl_598: + symbol: d_course_yoshi_valley_packed_dl_598 + type: MK64:PACKED_GFX + offset: 0x1CD +d_course_yoshi_valley_packed_dl_628: + symbol: d_course_yoshi_valley_packed_dl_628 + type: MK64:PACKED_GFX + offset: 0x1FC +d_course_yoshi_valley_packed_dl_6A0: + symbol: d_course_yoshi_valley_packed_dl_6A0 + type: MK64:PACKED_GFX + offset: 0x21C +d_course_yoshi_valley_packed_dl_748: + symbol: d_course_yoshi_valley_packed_dl_748 + type: MK64:PACKED_GFX + offset: 0x258 +d_course_yoshi_valley_packed_dl_7D8: + symbol: d_course_yoshi_valley_packed_dl_7D8 + type: MK64:PACKED_GFX + offset: 0x287 +d_course_yoshi_valley_packed_dl_858: + symbol: d_course_yoshi_valley_packed_dl_858 + type: MK64:PACKED_GFX + offset: 0x2AC +d_course_yoshi_valley_packed_dl_908: + symbol: d_course_yoshi_valley_packed_dl_908 + type: MK64:PACKED_GFX + offset: 0x2ED +d_course_yoshi_valley_packed_dl_980: + symbol: d_course_yoshi_valley_packed_dl_980 + type: MK64:PACKED_GFX + offset: 0x30D +d_course_yoshi_valley_packed_dl_A00: + symbol: d_course_yoshi_valley_packed_dl_A00 + type: MK64:PACKED_GFX + offset: 0x332 +d_course_yoshi_valley_packed_dl_AB0: + symbol: d_course_yoshi_valley_packed_dl_AB0 + type: MK64:PACKED_GFX + offset: 0x373 +d_course_yoshi_valley_packed_dl_B40: + symbol: d_course_yoshi_valley_packed_dl_B40 + type: MK64:PACKED_GFX + offset: 0x3A2 +d_course_yoshi_valley_packed_dl_BF8: + symbol: d_course_yoshi_valley_packed_dl_BF8 + type: MK64:PACKED_GFX + offset: 0x3E8 +d_course_yoshi_valley_packed_dl_C90: + symbol: d_course_yoshi_valley_packed_dl_C90 + type: MK64:PACKED_GFX + offset: 0x41C +d_course_yoshi_valley_packed_dl_D20: + symbol: d_course_yoshi_valley_packed_dl_D20 + type: MK64:PACKED_GFX + offset: 0x44B +d_course_yoshi_valley_packed_dl_DE0: + symbol: d_course_yoshi_valley_packed_dl_DE0 + type: MK64:PACKED_GFX + offset: 0x491 +d_course_yoshi_valley_packed_dl_E90: + symbol: d_course_yoshi_valley_packed_dl_E90 + type: MK64:PACKED_GFX + offset: 0x4B1 +d_course_yoshi_valley_packed_dl_F40: + symbol: d_course_yoshi_valley_packed_dl_F40 + type: MK64:PACKED_GFX + offset: 0x4D1 +d_course_yoshi_valley_packed_dl_FF0: + symbol: d_course_yoshi_valley_packed_dl_FF0 + type: MK64:PACKED_GFX + offset: 0x4F1 +d_course_yoshi_valley_packed_dl_10A0: + symbol: d_course_yoshi_valley_packed_dl_10A0 + type: MK64:PACKED_GFX + offset: 0x511 +d_course_yoshi_valley_packed_dl_10C8: + symbol: d_course_yoshi_valley_packed_dl_10C8 + type: MK64:PACKED_GFX + offset: 0x51E +d_course_yoshi_valley_packed_dl_1150: + symbol: d_course_yoshi_valley_packed_dl_1150 + type: MK64:PACKED_GFX + offset: 0x548 +d_course_yoshi_valley_packed_dl_11B8: + symbol: d_course_yoshi_valley_packed_dl_11B8 + type: MK64:PACKED_GFX + offset: 0x55E +d_course_yoshi_valley_packed_dl_1220: + symbol: d_course_yoshi_valley_packed_dl_1220 + type: MK64:PACKED_GFX + offset: 0x574 +d_course_yoshi_valley_packed_dl_1290: + symbol: d_course_yoshi_valley_packed_dl_1290 + type: MK64:PACKED_GFX + offset: 0x58F +d_course_yoshi_valley_packed_dl_1300: + symbol: d_course_yoshi_valley_packed_dl_1300 + type: MK64:PACKED_GFX + offset: 0x5AA +d_course_yoshi_valley_packed_dl_1368: + symbol: d_course_yoshi_valley_packed_dl_1368 + type: MK64:PACKED_GFX + offset: 0x5C0 +d_course_yoshi_valley_packed_dl_13D8: + symbol: d_course_yoshi_valley_packed_dl_13D8 + type: MK64:PACKED_GFX + offset: 0x5DB +d_course_yoshi_valley_packed_dl_1418: + symbol: d_course_yoshi_valley_packed_dl_1418 + type: MK64:PACKED_GFX + offset: 0x5F1 +d_course_yoshi_valley_packed_dl_1580: + symbol: d_course_yoshi_valley_packed_dl_1580 + type: MK64:PACKED_GFX + offset: 0x682 +d_course_yoshi_valley_packed_dl_16E8: + symbol: d_course_yoshi_valley_packed_dl_16E8 + type: MK64:PACKED_GFX + offset: 0x713 +d_course_yoshi_valley_packed_dl_1700: + symbol: d_course_yoshi_valley_packed_dl_1700 + type: MK64:PACKED_GFX + offset: 0x71A +d_course_yoshi_valley_packed_dl_1728: + symbol: d_course_yoshi_valley_packed_dl_1728 + type: MK64:PACKED_GFX + offset: 0x727 +d_course_yoshi_valley_packed_dl_1738: + symbol: d_course_yoshi_valley_packed_dl_1738 + type: MK64:PACKED_GFX + offset: 0x72B +d_course_yoshi_valley_packed_dl_17B0: + symbol: d_course_yoshi_valley_packed_dl_17B0 + type: MK64:PACKED_GFX + offset: 0x749 +d_course_yoshi_valley_packed_dl_1830: + symbol: d_course_yoshi_valley_packed_dl_1830 + type: MK64:PACKED_GFX + offset: 0x76E +d_course_yoshi_valley_packed_dl_18C8: + symbol: d_course_yoshi_valley_packed_dl_18C8 + type: MK64:PACKED_GFX + offset: 0x7A2 +d_course_yoshi_valley_packed_dl_1938: + symbol: d_course_yoshi_valley_packed_dl_1938 + type: MK64:PACKED_GFX + offset: 0x7BD +d_course_yoshi_valley_packed_dl_19F8: + symbol: d_course_yoshi_valley_packed_dl_19F8 + type: MK64:PACKED_GFX + offset: 0x80A +d_course_yoshi_valley_packed_dl_1A68: + symbol: d_course_yoshi_valley_packed_dl_1A68 + type: MK64:PACKED_GFX + offset: 0x825 +d_course_yoshi_valley_packed_dl_1AF0: + symbol: d_course_yoshi_valley_packed_dl_1AF0 + type: MK64:PACKED_GFX + offset: 0x84D +d_course_yoshi_valley_packed_dl_1BA0: + symbol: d_course_yoshi_valley_packed_dl_1BA0 + type: MK64:PACKED_GFX + offset: 0x890 +d_course_yoshi_valley_packed_dl_1C18: + symbol: d_course_yoshi_valley_packed_dl_1C18 + type: MK64:PACKED_GFX + offset: 0x8AE +d_course_yoshi_valley_packed_dl_1CB0: + symbol: d_course_yoshi_valley_packed_dl_1CB0 + type: MK64:PACKED_GFX + offset: 0x8E2 +d_course_yoshi_valley_packed_dl_1D20: + symbol: d_course_yoshi_valley_packed_dl_1D20 + type: MK64:PACKED_GFX + offset: 0x8FD +d_course_yoshi_valley_packed_dl_1DE8: + symbol: d_course_yoshi_valley_packed_dl_1DE8 + type: MK64:PACKED_GFX + offset: 0x94D +d_course_yoshi_valley_packed_dl_1E50: + symbol: d_course_yoshi_valley_packed_dl_1E50 + type: MK64:PACKED_GFX + offset: 0x963 +d_course_yoshi_valley_packed_dl_1EB8: + symbol: d_course_yoshi_valley_packed_dl_1EB8 + type: MK64:PACKED_GFX + offset: 0x979 +d_course_yoshi_valley_packed_dl_1F20: + symbol: d_course_yoshi_valley_packed_dl_1F20 + type: MK64:PACKED_GFX + offset: 0x98F +d_course_yoshi_valley_packed_dl_1F80: + symbol: d_course_yoshi_valley_packed_dl_1F80 + type: MK64:PACKED_GFX + offset: 0x9A0 +d_course_yoshi_valley_packed_dl_1FF0: + symbol: d_course_yoshi_valley_packed_dl_1FF0 + type: MK64:PACKED_GFX + offset: 0x9BB +d_course_yoshi_valley_packed_dl_2078: + symbol: d_course_yoshi_valley_packed_dl_2078 + type: MK64:PACKED_GFX + offset: 0x9E3 +d_course_yoshi_valley_packed_dl_2108: + symbol: d_course_yoshi_valley_packed_dl_2108 + type: MK64:PACKED_GFX + offset: 0xA12 +d_course_yoshi_valley_packed_dl_2188: + symbol: d_course_yoshi_valley_packed_dl_2188 + type: MK64:PACKED_GFX + offset: 0xA37 +d_course_yoshi_valley_packed_dl_21F8: + symbol: d_course_yoshi_valley_packed_dl_21F8 + type: MK64:PACKED_GFX + offset: 0xA50 +d_course_yoshi_valley_packed_dl_2270: + symbol: d_course_yoshi_valley_packed_dl_2270 + type: MK64:PACKED_GFX + offset: 0xA70 +d_course_yoshi_valley_packed_dl_22F0: + symbol: d_course_yoshi_valley_packed_dl_22F0 + type: MK64:PACKED_GFX + offset: 0xA95 +d_course_yoshi_valley_packed_dl_2370: + symbol: d_course_yoshi_valley_packed_dl_2370 + type: MK64:PACKED_GFX + offset: 0xAB8 +d_course_yoshi_valley_packed_dl_2428: + symbol: d_course_yoshi_valley_packed_dl_2428 + type: MK64:PACKED_GFX + offset: 0xAFE +d_course_yoshi_valley_packed_dl_2498: + symbol: d_course_yoshi_valley_packed_dl_2498 + type: MK64:PACKED_GFX + offset: 0xB19 +d_course_yoshi_valley_packed_dl_2510: + symbol: d_course_yoshi_valley_packed_dl_2510 + type: MK64:PACKED_GFX + offset: 0xB39 +d_course_yoshi_valley_packed_dl_25A0: + symbol: d_course_yoshi_valley_packed_dl_25A0 + type: MK64:PACKED_GFX + offset: 0xB68 +d_course_yoshi_valley_packed_dl_2648: + symbol: d_course_yoshi_valley_packed_dl_2648 + type: MK64:PACKED_GFX + offset: 0xBA4 +d_course_yoshi_valley_packed_dl_26C8: + symbol: d_course_yoshi_valley_packed_dl_26C8 + type: MK64:PACKED_GFX + offset: 0xBC9 +d_course_yoshi_valley_packed_dl_2758: + symbol: d_course_yoshi_valley_packed_dl_2758 + type: MK64:PACKED_GFX + offset: 0xBF6 +d_course_yoshi_valley_packed_dl_27F0: + symbol: d_course_yoshi_valley_packed_dl_27F0 + type: MK64:PACKED_GFX + offset: 0xC2A +d_course_yoshi_valley_packed_dl_2868: + symbol: d_course_yoshi_valley_packed_dl_2868 + type: MK64:PACKED_GFX + offset: 0xC4A +d_course_yoshi_valley_packed_dl_28F8: + symbol: d_course_yoshi_valley_packed_dl_28F8 + type: MK64:PACKED_GFX + offset: 0xC77 +d_course_yoshi_valley_packed_dl_2988: + symbol: d_course_yoshi_valley_packed_dl_2988 + type: MK64:PACKED_GFX + offset: 0xCA6 +d_course_yoshi_valley_packed_dl_2A00: + symbol: d_course_yoshi_valley_packed_dl_2A00 + type: MK64:PACKED_GFX + offset: 0xCC6 +d_course_yoshi_valley_packed_dl_2A90: + symbol: d_course_yoshi_valley_packed_dl_2A90 + type: MK64:PACKED_GFX + offset: 0xCF3 +d_course_yoshi_valley_packed_dl_2B08: + symbol: d_course_yoshi_valley_packed_dl_2B08 + type: MK64:PACKED_GFX + offset: 0xD11 +d_course_yoshi_valley_packed_dl_2BA0: + symbol: d_course_yoshi_valley_packed_dl_2BA0 + type: MK64:PACKED_GFX + offset: 0xD45 +d_course_yoshi_valley_packed_dl_2C30: + symbol: d_course_yoshi_valley_packed_dl_2C30 + type: MK64:PACKED_GFX + offset: 0xD74 +d_course_yoshi_valley_packed_dl_2CD0: + symbol: d_course_yoshi_valley_packed_dl_2CD0 + type: MK64:PACKED_GFX + offset: 0xDAB +d_course_yoshi_valley_packed_dl_2D50: + symbol: d_course_yoshi_valley_packed_dl_2D50 + type: MK64:PACKED_GFX + offset: 0xDD0 +d_course_yoshi_valley_packed_dl_2DD0: + symbol: d_course_yoshi_valley_packed_dl_2DD0 + type: MK64:PACKED_GFX + offset: 0xDF5 +d_course_yoshi_valley_packed_dl_2E58: + symbol: d_course_yoshi_valley_packed_dl_2E58 + type: MK64:PACKED_GFX + offset: 0xE1D +d_course_yoshi_valley_packed_dl_2EE0: + symbol: d_course_yoshi_valley_packed_dl_2EE0 + type: MK64:PACKED_GFX + offset: 0xE45 +d_course_yoshi_valley_packed_dl_2F90: + symbol: d_course_yoshi_valley_packed_dl_2F90 + type: MK64:PACKED_GFX + offset: 0xE88 +d_course_yoshi_valley_packed_dl_3010: + symbol: d_course_yoshi_valley_packed_dl_3010 + type: MK64:PACKED_GFX + offset: 0xEAB +d_course_yoshi_valley_packed_dl_3190: + symbol: d_course_yoshi_valley_packed_dl_3190 + type: MK64:PACKED_GFX + offset: 0xF39 +d_course_yoshi_valley_packed_dl_3200: + symbol: d_course_yoshi_valley_packed_dl_3200 + type: MK64:PACKED_GFX + offset: 0xF52 +d_course_yoshi_valley_packed_dl_3268: + symbol: d_course_yoshi_valley_packed_dl_3268 + type: MK64:PACKED_GFX + offset: 0xF68 +d_course_yoshi_valley_packed_dl_32E8: + symbol: d_course_yoshi_valley_packed_dl_32E8 + type: MK64:PACKED_GFX + offset: 0xF8D +d_course_yoshi_valley_packed_dl_3368: + symbol: d_course_yoshi_valley_packed_dl_3368 + type: MK64:PACKED_GFX + offset: 0xFB0 +d_course_yoshi_valley_packed_dl_33D8: + symbol: d_course_yoshi_valley_packed_dl_33D8 + type: MK64:PACKED_GFX + offset: 0xFCB +d_course_yoshi_valley_packed_dl_3498: + symbol: d_course_yoshi_valley_packed_dl_3498 + type: MK64:PACKED_GFX + offset: 0xFFF +d_course_yoshi_valley_packed_dl_3580: + symbol: d_course_yoshi_valley_packed_dl_3580 + type: MK64:PACKED_GFX + offset: 0x1037 +d_course_yoshi_valley_packed_dl_3630: + symbol: d_course_yoshi_valley_packed_dl_3630 + type: MK64:PACKED_GFX + offset: 0x1061 +d_course_yoshi_valley_packed_dl_3698: + symbol: d_course_yoshi_valley_packed_dl_3698 + type: MK64:PACKED_GFX + offset: 0x1077 +d_course_yoshi_valley_packed_dl_3710: + symbol: d_course_yoshi_valley_packed_dl_3710 + type: MK64:PACKED_GFX + offset: 0x1097 +d_course_yoshi_valley_packed_dl_37B0: + symbol: d_course_yoshi_valley_packed_dl_37B0 + type: MK64:PACKED_GFX + offset: 0x10B9 +d_course_yoshi_valley_packed_dl_3818: + symbol: d_course_yoshi_valley_packed_dl_3818 + type: MK64:PACKED_GFX + offset: 0x10CF +d_course_yoshi_valley_packed_dl_3890: + symbol: d_course_yoshi_valley_packed_dl_3890 + type: MK64:PACKED_GFX + offset: 0x10EF +d_course_yoshi_valley_packed_dl_3900: + symbol: d_course_yoshi_valley_packed_dl_3900 + type: MK64:PACKED_GFX + offset: 0x110A +d_course_yoshi_valley_packed_dl_3970: + symbol: d_course_yoshi_valley_packed_dl_3970 + type: MK64:PACKED_GFX + offset: 0x1123 +d_course_yoshi_valley_packed_dl_3A00: + symbol: d_course_yoshi_valley_packed_dl_3A00 + type: MK64:PACKED_GFX + offset: 0x1152 +d_course_yoshi_valley_packed_dl_3A80: + symbol: d_course_yoshi_valley_packed_dl_3A80 + type: MK64:PACKED_GFX + offset: 0x1175 +d_course_yoshi_valley_packed_dl_3B00: + symbol: d_course_yoshi_valley_packed_dl_3B00 + type: MK64:PACKED_GFX + offset: 0x1198 +d_course_yoshi_valley_packed_dl_3B78: + symbol: d_course_yoshi_valley_packed_dl_3B78 + type: MK64:PACKED_GFX + offset: 0x11B6 +d_course_yoshi_valley_packed_dl_3BF8: + symbol: d_course_yoshi_valley_packed_dl_3BF8 + type: MK64:PACKED_GFX + offset: 0x11DB +d_course_yoshi_valley_packed_dl_3C70: + symbol: d_course_yoshi_valley_packed_dl_3C70 + type: MK64:PACKED_GFX + offset: 0x11FB +d_course_yoshi_valley_packed_dl_3CD8: + symbol: d_course_yoshi_valley_packed_dl_3CD8 + type: MK64:PACKED_GFX + offset: 0x1211 +d_course_yoshi_valley_packed_dl_3D48: + symbol: d_course_yoshi_valley_packed_dl_3D48 + type: MK64:PACKED_GFX + offset: 0x122A +d_course_yoshi_valley_packed_dl_3E08: + symbol: d_course_yoshi_valley_packed_dl_3E08 + type: MK64:PACKED_GFX + offset: 0x1270 +d_course_yoshi_valley_packed_dl_3F10: + symbol: d_course_yoshi_valley_packed_dl_3F10 + type: MK64:PACKED_GFX + offset: 0x12D1 +d_course_yoshi_valley_packed_dl_3FF0: + symbol: d_course_yoshi_valley_packed_dl_3FF0 + type: MK64:PACKED_GFX + offset: 0x1319 +d_course_yoshi_valley_packed_dl_4108: + symbol: d_course_yoshi_valley_packed_dl_4108 + type: MK64:PACKED_GFX + offset: 0x1384 +d_course_yoshi_valley_packed_dl_41B0: + symbol: d_course_yoshi_valley_packed_dl_41B0 + type: MK64:PACKED_GFX + offset: 0x13C2 +d_course_yoshi_valley_packed_dl_4258: + symbol: d_course_yoshi_valley_packed_dl_4258 + type: MK64:PACKED_GFX + offset: 0x13FE +d_course_yoshi_valley_packed_dl_4358: + symbol: d_course_yoshi_valley_packed_dl_4358 + type: MK64:PACKED_GFX + offset: 0x1471 +d_course_yoshi_valley_packed_dl_4428: + symbol: d_course_yoshi_valley_packed_dl_4428 + type: MK64:PACKED_GFX + offset: 0x14C4 +d_course_yoshi_valley_packed_dl_44C8: + symbol: d_course_yoshi_valley_packed_dl_44C8 + type: MK64:PACKED_GFX + offset: 0x14FB +d_course_yoshi_valley_packed_dl_4588: + symbol: d_course_yoshi_valley_packed_dl_4588 + type: MK64:PACKED_GFX + offset: 0x1525 +d_course_yoshi_valley_packed_dl_45F0: + symbol: d_course_yoshi_valley_packed_dl_45F0 + type: MK64:PACKED_GFX + offset: 0x153B +d_course_yoshi_valley_packed_dl_4670: + symbol: d_course_yoshi_valley_packed_dl_4670 + type: MK64:PACKED_GFX + offset: 0x1560 +d_course_yoshi_valley_packed_dl_46E0: + symbol: d_course_yoshi_valley_packed_dl_46E0 + type: MK64:PACKED_GFX + offset: 0x157B +d_course_yoshi_valley_packed_dl_4810: + symbol: d_course_yoshi_valley_packed_dl_4810 + type: MK64:PACKED_GFX + offset: 0x15E0 +d_course_yoshi_valley_packed_dl_4918: + symbol: d_course_yoshi_valley_packed_dl_4918 + type: MK64:PACKED_GFX + offset: 0x163F +d_course_yoshi_valley_packed_dl_49C0: + symbol: d_course_yoshi_valley_packed_dl_49C0 + type: MK64:PACKED_GFX + offset: 0x167D +d_course_yoshi_valley_packed_dl_4A58: + symbol: d_course_yoshi_valley_packed_dl_4A58 + type: MK64:PACKED_GFX + offset: 0x16AF +d_course_yoshi_valley_packed_dl_4B20: + symbol: d_course_yoshi_valley_packed_dl_4B20 + type: MK64:PACKED_GFX + offset: 0x16FF +d_course_yoshi_valley_packed_dl_4C18: + symbol: d_course_yoshi_valley_packed_dl_4C18 + type: MK64:PACKED_GFX + offset: 0x1754 +d_course_yoshi_valley_packed_dl_4CB0: + symbol: d_course_yoshi_valley_packed_dl_4CB0 + type: MK64:PACKED_GFX + offset: 0x1788 +d_course_yoshi_valley_packed_dl_4D68: + symbol: d_course_yoshi_valley_packed_dl_4D68 + type: MK64:PACKED_GFX + offset: 0x17CE +d_course_yoshi_valley_packed_dl_4E88: + symbol: d_course_yoshi_valley_packed_dl_4E88 + type: MK64:PACKED_GFX + offset: 0x183E +d_course_yoshi_valley_packed_dl_4F48: + symbol: d_course_yoshi_valley_packed_dl_4F48 + type: MK64:PACKED_GFX + offset: 0x1889 +d_course_yoshi_valley_packed_dl_4FD0: + symbol: d_course_yoshi_valley_packed_dl_4FD0 + type: MK64:PACKED_GFX + offset: 0x18B3 +d_course_yoshi_valley_packed_dl_5058: + symbol: d_course_yoshi_valley_packed_dl_5058 + type: MK64:PACKED_GFX + offset: 0x18DD +d_course_yoshi_valley_packed_dl_50E0: + symbol: d_course_yoshi_valley_packed_dl_50E0 + type: MK64:PACKED_GFX + offset: 0x1905 +d_course_yoshi_valley_packed_dl_5158: + symbol: d_course_yoshi_valley_packed_dl_5158 + type: MK64:PACKED_GFX + offset: 0x1925 +d_course_yoshi_valley_packed_dl_51D8: + symbol: d_course_yoshi_valley_packed_dl_51D8 + type: MK64:PACKED_GFX + offset: 0x194A +d_course_yoshi_valley_packed_dl_52D8: + symbol: d_course_yoshi_valley_packed_dl_52D8 + type: MK64:PACKED_GFX + offset: 0x19BD +d_course_yoshi_valley_packed_dl_53C0: + symbol: d_course_yoshi_valley_packed_dl_53C0 + type: MK64:PACKED_GFX + offset: 0x1A1F +d_course_yoshi_valley_packed_dl_54B0: + symbol: d_course_yoshi_valley_packed_dl_54B0 + type: MK64:PACKED_GFX + offset: 0x1A77 +d_course_yoshi_valley_packed_dl_5548: + symbol: d_course_yoshi_valley_packed_dl_5548 + type: MK64:PACKED_GFX + offset: 0x1AA9 +d_course_yoshi_valley_packed_dl_55C0: + symbol: d_course_yoshi_valley_packed_dl_55C0 + type: MK64:PACKED_GFX + offset: 0x1AC9 +d_course_yoshi_valley_packed_dl_5628: + symbol: d_course_yoshi_valley_packed_dl_5628 + type: MK64:PACKED_GFX + offset: 0x1ADF +d_course_yoshi_valley_packed_dl_56A0: + symbol: d_course_yoshi_valley_packed_dl_56A0 + type: MK64:PACKED_GFX + offset: 0x1AFF +d_course_yoshi_valley_packed_dl_5710: + symbol: d_course_yoshi_valley_packed_dl_5710 + type: MK64:PACKED_GFX + offset: 0x1B18 +d_course_yoshi_valley_packed_dl_5788: + symbol: d_course_yoshi_valley_packed_dl_5788 + type: MK64:PACKED_GFX + offset: 0x1B36 +d_course_yoshi_valley_packed_dl_5800: + symbol: d_course_yoshi_valley_packed_dl_5800 + type: MK64:PACKED_GFX + offset: 0x1B56 +d_course_yoshi_valley_packed_dl_5880: + symbol: d_course_yoshi_valley_packed_dl_5880 + type: MK64:PACKED_GFX + offset: 0x1B79 +d_course_yoshi_valley_packed_dl_58F8: + symbol: d_course_yoshi_valley_packed_dl_58F8 + type: MK64:PACKED_GFX + offset: 0x1B99 +d_course_yoshi_valley_packed_dl_5970: + symbol: d_course_yoshi_valley_packed_dl_5970 + type: MK64:PACKED_GFX + offset: 0x1BB7 +d_course_yoshi_valley_packed_dl_59F0: + symbol: d_course_yoshi_valley_packed_dl_59F0 + type: MK64:PACKED_GFX + offset: 0x1BDA +d_course_yoshi_valley_packed_dl_5A60: + symbol: d_course_yoshi_valley_packed_dl_5A60 + type: MK64:PACKED_GFX + offset: 0x1BF3 +d_course_yoshi_valley_packed_dl_5AD8: + symbol: d_course_yoshi_valley_packed_dl_5AD8 + type: MK64:PACKED_GFX + offset: 0x1C11 +d_course_yoshi_valley_packed_dl_5B48: + symbol: d_course_yoshi_valley_packed_dl_5B48 + type: MK64:PACKED_GFX + offset: 0x1C2C +d_course_yoshi_valley_packed_dl_5BB0: + symbol: d_course_yoshi_valley_packed_dl_5BB0 + type: MK64:PACKED_GFX + offset: 0x1C40 +d_course_yoshi_valley_packed_dl_5C18: + symbol: d_course_yoshi_valley_packed_dl_5C18 + type: MK64:PACKED_GFX + offset: 0x1C56 +d_course_yoshi_valley_packed_dl_5C80: + symbol: d_course_yoshi_valley_packed_dl_5C80 + type: MK64:PACKED_GFX + offset: 0x1C6C +d_course_yoshi_valley_packed_dl_5D00: + symbol: d_course_yoshi_valley_packed_dl_5D00 + type: MK64:PACKED_GFX + offset: 0x1C91 +d_course_yoshi_valley_packed_dl_5D90: + symbol: d_course_yoshi_valley_packed_dl_5D90 + type: MK64:PACKED_GFX + offset: 0x1CBE +d_course_yoshi_valley_packed_dl_5DF8: + symbol: d_course_yoshi_valley_packed_dl_5DF8 + type: MK64:PACKED_GFX + offset: 0x1CD4 +d_course_yoshi_valley_packed_dl_5E60: + symbol: d_course_yoshi_valley_packed_dl_5E60 + type: MK64:PACKED_GFX + offset: 0x1CEA +d_course_yoshi_valley_packed_dl_5F10: + symbol: d_course_yoshi_valley_packed_dl_5F10 + type: MK64:PACKED_GFX + offset: 0x1D2A +d_course_yoshi_valley_packed_dl_5F88: + symbol: d_course_yoshi_valley_packed_dl_5F88 + type: MK64:PACKED_GFX + offset: 0x1D4A +d_course_yoshi_valley_packed_dl_6008: + symbol: d_course_yoshi_valley_packed_dl_6008 + type: MK64:PACKED_GFX + offset: 0x1D6F +d_course_yoshi_valley_packed_dl_6070: + symbol: d_course_yoshi_valley_packed_dl_6070 + type: MK64:PACKED_GFX + offset: 0x1D85 +d_course_yoshi_valley_packed_dl_6100: + symbol: d_course_yoshi_valley_packed_dl_6100 + type: MK64:PACKED_GFX + offset: 0x1DB4 +d_course_yoshi_valley_packed_dl_6178: + symbol: d_course_yoshi_valley_packed_dl_6178 + type: MK64:PACKED_GFX + offset: 0x1DD4 +d_course_yoshi_valley_packed_dl_61E8: + symbol: d_course_yoshi_valley_packed_dl_61E8 + type: MK64:PACKED_GFX + offset: 0x1DEF +d_course_yoshi_valley_packed_dl_6250: + symbol: d_course_yoshi_valley_packed_dl_6250 + type: MK64:PACKED_GFX + offset: 0x1E05 +d_course_yoshi_valley_packed_dl_62D0: + symbol: d_course_yoshi_valley_packed_dl_62D0 + type: MK64:PACKED_GFX + offset: 0x1E28 +d_course_yoshi_valley_packed_dl_6338: + symbol: d_course_yoshi_valley_packed_dl_6338 + type: MK64:PACKED_GFX + offset: 0x1E3E +d_course_yoshi_valley_packed_dl_63A0: + symbol: d_course_yoshi_valley_packed_dl_63A0 + type: MK64:PACKED_GFX + offset: 0x1E54 +d_course_yoshi_valley_packed_dl_6428: + symbol: d_course_yoshi_valley_packed_dl_6428 + type: MK64:PACKED_GFX + offset: 0x1E7C +d_course_yoshi_valley_packed_dl_6490: + symbol: d_course_yoshi_valley_packed_dl_6490 + type: MK64:PACKED_GFX + offset: 0x1E92 +d_course_yoshi_valley_packed_dl_64F8: + symbol: d_course_yoshi_valley_packed_dl_64F8 + type: MK64:PACKED_GFX + offset: 0x1EA8 +d_course_yoshi_valley_packed_dl_6560: + symbol: d_course_yoshi_valley_packed_dl_6560 + type: MK64:PACKED_GFX + offset: 0x1EBE +d_course_yoshi_valley_packed_dl_65C0: + symbol: d_course_yoshi_valley_packed_dl_65C0 + type: MK64:PACKED_GFX + offset: 0x1ECF +d_course_yoshi_valley_packed_dl_6638: + symbol: d_course_yoshi_valley_packed_dl_6638 + type: MK64:PACKED_GFX + offset: 0x1EED +d_course_yoshi_valley_packed_dl_66B0: + symbol: d_course_yoshi_valley_packed_dl_66B0 + type: MK64:PACKED_GFX + offset: 0x1F0B +d_course_yoshi_valley_packed_dl_6728: + symbol: d_course_yoshi_valley_packed_dl_6728 + type: MK64:PACKED_GFX + offset: 0x1F29 +d_course_yoshi_valley_packed_dl_6798: + symbol: d_course_yoshi_valley_packed_dl_6798 + type: MK64:PACKED_GFX + offset: 0x1F44 +d_course_yoshi_valley_packed_dl_6810: + symbol: d_course_yoshi_valley_packed_dl_6810 + type: MK64:PACKED_GFX + offset: 0x1F64 +d_course_yoshi_valley_packed_dl_6888: + symbol: d_course_yoshi_valley_packed_dl_6888 + type: MK64:PACKED_GFX + offset: 0x1F84 +d_course_yoshi_valley_packed_dl_6920: + symbol: d_course_yoshi_valley_packed_dl_6920 + type: MK64:PACKED_GFX + offset: 0x1FB8 +d_course_yoshi_valley_packed_dl_6990: + symbol: d_course_yoshi_valley_packed_dl_6990 + type: MK64:PACKED_GFX + offset: 0x1FD1 +d_course_yoshi_valley_packed_dl_6A08: + symbol: d_course_yoshi_valley_packed_dl_6A08 + type: MK64:PACKED_GFX + offset: 0x1FEF +d_course_yoshi_valley_packed_dl_6A98: + symbol: d_course_yoshi_valley_packed_dl_6A98 + type: MK64:PACKED_GFX + offset: 0x201E +d_course_yoshi_valley_packed_dl_6B30: + symbol: d_course_yoshi_valley_packed_dl_6B30 + type: MK64:PACKED_GFX + offset: 0x2052 +d_course_yoshi_valley_packed_dl_6B98: + symbol: d_course_yoshi_valley_packed_dl_6B98 + type: MK64:PACKED_GFX + offset: 0x2068 +d_course_yoshi_valley_packed_dl_6C40: + symbol: d_course_yoshi_valley_packed_dl_6C40 + type: MK64:PACKED_GFX + offset: 0x20A4 +d_course_yoshi_valley_packed_dl_6CB8: + symbol: d_course_yoshi_valley_packed_dl_6CB8 + type: MK64:PACKED_GFX + offset: 0x20C2 +d_course_yoshi_valley_packed_dl_6D40: + symbol: d_course_yoshi_valley_packed_dl_6D40 + type: MK64:PACKED_GFX + offset: 0x20EC +d_course_yoshi_valley_packed_dl_6DB0: + symbol: d_course_yoshi_valley_packed_dl_6DB0 + type: MK64:PACKED_GFX + offset: 0x2107 +d_course_yoshi_valley_packed_dl_6E20: + symbol: d_course_yoshi_valley_packed_dl_6E20 + type: MK64:PACKED_GFX + offset: 0x2122 +d_course_yoshi_valley_packed_dl_6EA0: + symbol: d_course_yoshi_valley_packed_dl_6EA0 + type: MK64:PACKED_GFX + offset: 0x2145 +d_course_yoshi_valley_packed_dl_6F30: + symbol: d_course_yoshi_valley_packed_dl_6F30 + type: MK64:PACKED_GFX + offset: 0x2172 +d_course_yoshi_valley_packed_dl_6FA8: + symbol: d_course_yoshi_valley_packed_dl_6FA8 + type: MK64:PACKED_GFX + offset: 0x2192 +d_course_yoshi_valley_packed_dl_7010: + symbol: d_course_yoshi_valley_packed_dl_7010 + type: MK64:PACKED_GFX + offset: 0x21A8 +d_course_yoshi_valley_packed_dl_7090: + symbol: d_course_yoshi_valley_packed_dl_7090 + type: MK64:PACKED_GFX + offset: 0x21CD +d_course_yoshi_valley_packed_dl_7120: + symbol: d_course_yoshi_valley_packed_dl_7120 + type: MK64:PACKED_GFX + offset: 0x21FA +d_course_yoshi_valley_packed_dl_71A0: + symbol: d_course_yoshi_valley_packed_dl_71A0 + type: MK64:PACKED_GFX + offset: 0x221D +d_course_yoshi_valley_packed_dl_7210: + symbol: d_course_yoshi_valley_packed_dl_7210 + type: MK64:PACKED_GFX + offset: 0x2238 +d_course_yoshi_valley_packed_dl_7290: + symbol: d_course_yoshi_valley_packed_dl_7290 + type: MK64:PACKED_GFX + offset: 0x225B +d_course_yoshi_valley_packed_dl_7300: + symbol: d_course_yoshi_valley_packed_dl_7300 + type: MK64:PACKED_GFX + offset: 0x2274 +d_course_yoshi_valley_packed_dl_7458: + symbol: d_course_yoshi_valley_packed_dl_7458 + type: MK64:PACKED_GFX + offset: 0x22F3 +d_course_yoshi_valley_packed_dl_74D0: + symbol: d_course_yoshi_valley_packed_dl_74D0 + type: MK64:PACKED_GFX + offset: 0x2313 +d_course_yoshi_valley_packed_dl_7558: + symbol: d_course_yoshi_valley_packed_dl_7558 + type: MK64:PACKED_GFX + offset: 0x233D +d_course_yoshi_valley_packed_dl_75D0: + symbol: d_course_yoshi_valley_packed_dl_75D0 + type: MK64:PACKED_GFX + offset: 0x235D +d_course_yoshi_valley_packed_dl_75F0: + symbol: d_course_yoshi_valley_packed_dl_75F0 + type: MK64:PACKED_GFX + offset: 0x2367 +d_course_yoshi_valley_packed_dl_7660: + symbol: d_course_yoshi_valley_packed_dl_7660 + type: MK64:PACKED_GFX + offset: 0x2380 +d_course_yoshi_valley_packed_dl_76C8: + symbol: d_course_yoshi_valley_packed_dl_76C8 + type: MK64:PACKED_GFX + offset: 0x2394 +d_course_yoshi_valley_packed_dl_7740: + symbol: d_course_yoshi_valley_packed_dl_7740 + type: MK64:PACKED_GFX + offset: 0x23B2 +d_course_yoshi_valley_packed_dl_77C0: + symbol: d_course_yoshi_valley_packed_dl_77C0 + type: MK64:PACKED_GFX + offset: 0x23D7 +d_course_yoshi_valley_packed_dl_7828: + symbol: d_course_yoshi_valley_packed_dl_7828 + type: MK64:PACKED_GFX + offset: 0x23ED +d_course_yoshi_valley_packed_dl_78B0: + symbol: d_course_yoshi_valley_packed_dl_78B0 + type: MK64:PACKED_GFX + offset: 0x2417 +d_course_yoshi_valley_packed_dl_7928: + symbol: d_course_yoshi_valley_packed_dl_7928 + type: MK64:PACKED_GFX + offset: 0x2435 +d_course_yoshi_valley_packed_dl_7998: + symbol: d_course_yoshi_valley_packed_dl_7998 + type: MK64:PACKED_GFX + offset: 0x2450 +d_course_yoshi_valley_packed_dl_7A08: + symbol: d_course_yoshi_valley_packed_dl_7A08 + type: MK64:PACKED_GFX + offset: 0x246B +d_course_yoshi_valley_packed_dl_7A70: + symbol: d_course_yoshi_valley_packed_dl_7A70 + type: MK64:PACKED_GFX + offset: 0x2481 +d_course_yoshi_valley_packed_dl_7AE0: + symbol: d_course_yoshi_valley_packed_dl_7AE0 + type: MK64:PACKED_GFX + offset: 0x249A +d_course_yoshi_valley_packed_dl_7B50: + symbol: d_course_yoshi_valley_packed_dl_7B50 + type: MK64:PACKED_GFX + offset: 0x24B3 +d_course_yoshi_valley_packed_dl_7BD0: + symbol: d_course_yoshi_valley_packed_dl_7BD0 + type: MK64:PACKED_GFX + offset: 0x24D6 +d_course_yoshi_valley_packed_dl_7C50: + symbol: d_course_yoshi_valley_packed_dl_7C50 + type: MK64:PACKED_GFX + offset: 0x24F9 +d_course_yoshi_valley_packed_dl_7CC0: + symbol: d_course_yoshi_valley_packed_dl_7CC0 + type: MK64:PACKED_GFX + offset: 0x2512 +d_course_yoshi_valley_packed_dl_7D38: + symbol: d_course_yoshi_valley_packed_dl_7D38 + type: MK64:PACKED_GFX + offset: 0x2532 +d_course_yoshi_valley_packed_dl_7DA8: + symbol: d_course_yoshi_valley_packed_dl_7DA8 + type: MK64:PACKED_GFX + offset: 0x254D +d_course_yoshi_valley_packed_dl_7E20: + symbol: d_course_yoshi_valley_packed_dl_7E20 + type: MK64:PACKED_GFX + offset: 0x256B +d_course_yoshi_valley_packed_dl_7E88: + symbol: d_course_yoshi_valley_packed_dl_7E88 + type: MK64:PACKED_GFX + offset: 0x257F +d_course_yoshi_valley_packed_dl_7EF0: + symbol: d_course_yoshi_valley_packed_dl_7EF0 + type: MK64:PACKED_GFX + offset: 0x2595 +d_course_yoshi_valley_packed_dl_7F58: + symbol: d_course_yoshi_valley_packed_dl_7F58 + type: MK64:PACKED_GFX + offset: 0x25AB +d_course_yoshi_valley_packed_dl_7FC8: + symbol: d_course_yoshi_valley_packed_dl_7FC8 + type: MK64:PACKED_GFX + offset: 0x25C6 +d_course_yoshi_valley_packed_dl_8050: + symbol: d_course_yoshi_valley_packed_dl_8050 + type: MK64:PACKED_GFX + offset: 0x25F0 +d_course_yoshi_valley_packed_dl_8110: + symbol: d_course_yoshi_valley_packed_dl_8110 + type: MK64:PACKED_GFX + offset: 0x2636 +d_course_yoshi_valley_packed_dl_8150: + symbol: d_course_yoshi_valley_packed_dl_8150 + type: MK64:PACKED_GFX + offset: 0x264C +d_course_yoshi_valley_packed_dl_8160: + symbol: d_course_yoshi_valley_packed_dl_8160 + type: MK64:PACKED_GFX + offset: 0x2650 diff --git a/yamls/us/models/tracks/yoshi_valley/yoshi_valley_vertices.yml b/yamls/us/models/tracks/yoshi_valley/yoshi_valley_vertices.yml new file mode 100644 index 000000000..ca817dc43 --- /dev/null +++ b/yamls/us/models/tracks/yoshi_valley/yoshi_valley_vertices.yml @@ -0,0 +1,1587 @@ +:config: + segments: + - [0x0F, 0x8C2510] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +d_course_yoshi_valley_vertex_0x04000000: + symbol: d_course_yoshi_valley_vertex_0x04000000 + type: mk64:course_vtx + count: 50 + offset: 0x0 + +d_course_yoshi_valley_vertex_0x04000200: + symbol: d_course_yoshi_valley_vertex_0x04000200 + type: mk64:course_vtx + count: 4 + offset: 0x1c0 + +d_course_yoshi_valley_vertex_0x04000240: + symbol: d_course_yoshi_valley_vertex_0x04000240 + type: mk64:course_vtx + count: 32 + offset: 0x1f8 + +d_course_yoshi_valley_vertex_0x04000380: + symbol: d_course_yoshi_valley_vertex_0x04000380 + type: mk64:course_vtx + count: 32 + offset: 0x310 + +d_course_yoshi_valley_vertex_0x040004C0: + symbol: d_course_yoshi_valley_vertex_0x040004C0 + type: mk64:course_vtx + count: 50 + offset: 0x428 + +d_course_yoshi_valley_vertex_0x040006C0: + symbol: d_course_yoshi_valley_vertex_0x040006C0 + type: mk64:course_vtx + count: 50 + offset: 0x5e8 + +d_course_yoshi_valley_vertex_0x040008C0: + symbol: d_course_yoshi_valley_vertex_0x040008C0 + type: mk64:course_vtx + count: 32 + offset: 0x7a8 + +d_course_yoshi_valley_vertex_0x04000A00: + symbol: d_course_yoshi_valley_vertex_0x04000A00 + type: mk64:course_vtx + count: 32 + offset: 0x8c0 + +d_course_yoshi_valley_vertex_0x04000B40: + symbol: d_course_yoshi_valley_vertex_0x04000B40 + type: mk64:course_vtx + count: 32 + offset: 0x9d8 + +d_course_yoshi_valley_vertex_0x04000C80: + symbol: d_course_yoshi_valley_vertex_0x04000C80 + type: mk64:course_vtx + count: 36 + offset: 0xaf0 + +d_course_yoshi_valley_vertex_0x04000E00: + symbol: d_course_yoshi_valley_vertex_0x04000E00 + type: mk64:course_vtx + count: 40 + offset: 0xc40 + +d_course_yoshi_valley_vertex_0x04000FC0: + symbol: d_course_yoshi_valley_vertex_0x04000FC0 + type: mk64:course_vtx + count: 22 + offset: 0xdc8 + +d_course_yoshi_valley_vertex_0x040010C0: + symbol: d_course_yoshi_valley_vertex_0x040010C0 + type: mk64:course_vtx + count: 40 + offset: 0xea8 + +d_course_yoshi_valley_vertex_0x04001280: + symbol: d_course_yoshi_valley_vertex_0x04001280 + type: mk64:course_vtx + count: 22 + offset: 0x1030 + +d_course_yoshi_valley_vertex_0x04001380: + symbol: d_course_yoshi_valley_vertex_0x04001380 + type: mk64:course_vtx + count: 50 + offset: 0x1110 + +d_course_yoshi_valley_vertex_0x04001580: + symbol: d_course_yoshi_valley_vertex_0x04001580 + type: mk64:course_vtx + count: 4 + offset: 0x12d0 + +d_course_yoshi_valley_vertex_0x040015C0: + symbol: d_course_yoshi_valley_vertex_0x040015C0 + type: mk64:course_vtx + count: 40 + offset: 0x1308 + +d_course_yoshi_valley_vertex_0x04001780: + symbol: d_course_yoshi_valley_vertex_0x04001780 + type: mk64:course_vtx + count: 32 + offset: 0x1490 + +d_course_yoshi_valley_vertex_0x040018C0: + symbol: d_course_yoshi_valley_vertex_0x040018C0 + type: mk64:course_vtx + count: 50 + offset: 0x15a8 + +d_course_yoshi_valley_vertex_0x04001AC0: + symbol: d_course_yoshi_valley_vertex_0x04001AC0 + type: mk64:course_vtx + count: 8 + offset: 0x1768 + +d_course_yoshi_valley_vertex_0x04001B40: + symbol: d_course_yoshi_valley_vertex_0x04001B40 + type: mk64:course_vtx + count: 22 + offset: 0x17d8 + +d_course_yoshi_valley_vertex_0x04001C40: + symbol: d_course_yoshi_valley_vertex_0x04001C40 + type: mk64:course_vtx + count: 32 + offset: 0x18b8 + +d_course_yoshi_valley_vertex_0x04001D80: + symbol: d_course_yoshi_valley_vertex_0x04001D80 + type: mk64:course_vtx + count: 50 + offset: 0x19d0 + +d_course_yoshi_valley_vertex_0x04001F80: + symbol: d_course_yoshi_valley_vertex_0x04001F80 + type: mk64:course_vtx + count: 8 + offset: 0x1b90 + +d_course_yoshi_valley_vertex_0x04002000: + symbol: d_course_yoshi_valley_vertex_0x04002000 + type: mk64:course_vtx + count: 34 + offset: 0x1c00 + +d_course_yoshi_valley_vertex_0x04002160: + symbol: d_course_yoshi_valley_vertex_0x04002160 + type: mk64:course_vtx + count: 50 + offset: 0x1d34 + +d_course_yoshi_valley_vertex_0x04002360: + symbol: d_course_yoshi_valley_vertex_0x04002360 + type: mk64:course_vtx + count: 18 + offset: 0x1ef4 + +d_course_yoshi_valley_vertex_0x04002420: + symbol: d_course_yoshi_valley_vertex_0x04002420 + type: mk64:course_vtx + count: 50 + offset: 0x1f9c + +d_course_yoshi_valley_vertex_0x04002620: + symbol: d_course_yoshi_valley_vertex_0x04002620 + type: mk64:course_vtx + count: 40 + offset: 0x215c + +d_course_yoshi_valley_vertex_0x040027E0: + symbol: d_course_yoshi_valley_vertex_0x040027E0 + type: mk64:course_vtx + count: 4 + offset: 0x22e4 + +d_course_yoshi_valley_vertex_0x04002820: + symbol: d_course_yoshi_valley_vertex_0x04002820 + type: mk64:course_vtx + count: 4 + offset: 0x231c + +d_course_yoshi_valley_vertex_0x04002860: + symbol: d_course_yoshi_valley_vertex_0x04002860 + type: mk64:course_vtx + count: 4 + offset: 0x2354 + +d_course_yoshi_valley_vertex_0x040028A0: + symbol: d_course_yoshi_valley_vertex_0x040028A0 + type: mk64:course_vtx + count: 4 + offset: 0x238c + +d_course_yoshi_valley_vertex_0x040028E0: + symbol: d_course_yoshi_valley_vertex_0x040028E0 + type: mk64:course_vtx + count: 4 + offset: 0x23c4 + +d_course_yoshi_valley_vertex_0x04002920: + symbol: d_course_yoshi_valley_vertex_0x04002920 + type: mk64:course_vtx + count: 4 + offset: 0x23fc + +d_course_yoshi_valley_vertex_0x04002960: + symbol: d_course_yoshi_valley_vertex_0x04002960 + type: mk64:course_vtx + count: 4 + offset: 0x2434 + +d_course_yoshi_valley_vertex_0x040029A0: + symbol: d_course_yoshi_valley_vertex_0x040029A0 + type: mk64:course_vtx + count: 4 + offset: 0x246c + +d_course_yoshi_valley_vertex_0x040029E0: + symbol: d_course_yoshi_valley_vertex_0x040029E0 + type: mk64:course_vtx + count: 36 + offset: 0x24a4 + +d_course_yoshi_valley_vertex_0x04002B60: + symbol: d_course_yoshi_valley_vertex_0x04002B60 + type: mk64:course_vtx + count: 8 + offset: 0x25f4 + +d_course_yoshi_valley_vertex_0x04002BE0: + symbol: d_course_yoshi_valley_vertex_0x04002BE0 + type: mk64:course_vtx + count: 8 + offset: 0x2664 + +d_course_yoshi_valley_vertex_0x04002C60: + symbol: d_course_yoshi_valley_vertex_0x04002C60 + type: mk64:course_vtx + count: 18 + offset: 0x26d4 + +d_course_yoshi_valley_vertex_0x04002D20: + symbol: d_course_yoshi_valley_vertex_0x04002D20 + type: mk64:course_vtx + count: 18 + offset: 0x277c + +d_course_yoshi_valley_vertex_0x04002DE0: + symbol: d_course_yoshi_valley_vertex_0x04002DE0 + type: mk64:course_vtx + count: 8 + offset: 0x2824 + +d_course_yoshi_valley_vertex_0x04002E60: + symbol: d_course_yoshi_valley_vertex_0x04002E60 + type: mk64:course_vtx + count: 18 + offset: 0x2894 + +d_course_yoshi_valley_vertex_0x04002F20: + symbol: d_course_yoshi_valley_vertex_0x04002F20 + type: mk64:course_vtx + count: 32 + offset: 0x293c + +d_course_yoshi_valley_vertex_0x04003060: + symbol: d_course_yoshi_valley_vertex_0x04003060 + type: mk64:course_vtx + count: 50 + offset: 0x2a54 + +d_course_yoshi_valley_vertex_0x04003260: + symbol: d_course_yoshi_valley_vertex_0x04003260 + type: mk64:course_vtx + count: 50 + offset: 0x2c14 + +d_course_yoshi_valley_vertex_0x04003460: + symbol: d_course_yoshi_valley_vertex_0x04003460 + type: mk64:course_vtx + count: 24 + offset: 0x2dd4 + +d_course_yoshi_valley_vertex_0x04003580: + symbol: d_course_yoshi_valley_vertex_0x04003580 + type: mk64:course_vtx + count: 50 + offset: 0x2ed0 + +d_course_yoshi_valley_vertex_0x04003780: + symbol: d_course_yoshi_valley_vertex_0x04003780 + type: mk64:course_vtx + count: 50 + offset: 0x3090 + +d_course_yoshi_valley_vertex_0x04003980: + symbol: d_course_yoshi_valley_vertex_0x04003980 + type: mk64:course_vtx + count: 9 + offset: 0x3250 + +d_course_yoshi_valley_vertex_0x04003A10: + symbol: d_course_yoshi_valley_vertex_0x04003A10 + type: mk64:course_vtx + count: 18 + offset: 0x32ce + +d_course_yoshi_valley_vertex_0x04003AD0: + symbol: d_course_yoshi_valley_vertex_0x04003AD0 + type: mk64:course_vtx + count: 24 + offset: 0x3376 + +d_course_yoshi_valley_vertex_0x04003BF0: + symbol: d_course_yoshi_valley_vertex_0x04003BF0 + type: mk64:course_vtx + count: 8 + offset: 0x3472 + +d_course_yoshi_valley_vertex_0x04003C70: + symbol: d_course_yoshi_valley_vertex_0x04003C70 + type: mk64:course_vtx + count: 40 + offset: 0x34e2 + +d_course_yoshi_valley_vertex_0x04003E30: + symbol: d_course_yoshi_valley_vertex_0x04003E30 + type: mk64:course_vtx + count: 8 + offset: 0x366a + +d_course_yoshi_valley_vertex_0x04003EB0: + symbol: d_course_yoshi_valley_vertex_0x04003EB0 + type: mk64:course_vtx + count: 23 + offset: 0x36da + +d_course_yoshi_valley_vertex_0x04003FC0: + symbol: d_course_yoshi_valley_vertex_0x04003FC0 + type: mk64:course_vtx + count: 35 + offset: 0x37c8 + +d_course_yoshi_valley_vertex_0x04004130: + symbol: d_course_yoshi_valley_vertex_0x04004130 + type: mk64:course_vtx + count: 9 + offset: 0x390a + +d_course_yoshi_valley_vertex_0x040041C0: + symbol: d_course_yoshi_valley_vertex_0x040041C0 + type: mk64:course_vtx + count: 32 + offset: 0x3988 + +d_course_yoshi_valley_vertex_0x04004300: + symbol: d_course_yoshi_valley_vertex_0x04004300 + type: mk64:course_vtx + count: 8 + offset: 0x3aa0 + +d_course_yoshi_valley_vertex_0x04004380: + symbol: d_course_yoshi_valley_vertex_0x04004380 + type: mk64:course_vtx + count: 41 + offset: 0x3b10 + +d_course_yoshi_valley_vertex_0x04004550: + symbol: d_course_yoshi_valley_vertex_0x04004550 + type: mk64:course_vtx + count: 6 + offset: 0x3ca6 + +d_course_yoshi_valley_vertex_0x040045B0: + symbol: d_course_yoshi_valley_vertex_0x040045B0 + type: mk64:course_vtx + count: 6 + offset: 0x3cfa + +d_course_yoshi_valley_vertex_0x04004610: + symbol: d_course_yoshi_valley_vertex_0x04004610 + type: mk64:course_vtx + count: 6 + offset: 0x3d4e + +d_course_yoshi_valley_vertex_0x04004670: + symbol: d_course_yoshi_valley_vertex_0x04004670 + type: mk64:course_vtx + count: 4 + offset: 0x3da2 + +d_course_yoshi_valley_vertex_0x040046B0: + symbol: d_course_yoshi_valley_vertex_0x040046B0 + type: mk64:course_vtx + count: 8 + offset: 0x3dda + +d_course_yoshi_valley_vertex_0x04004730: + symbol: d_course_yoshi_valley_vertex_0x04004730 + type: mk64:course_vtx + count: 23 + offset: 0x3e4a + +d_course_yoshi_valley_vertex_0x04004840: + symbol: d_course_yoshi_valley_vertex_0x04004840 + type: mk64:course_vtx + count: 22 + offset: 0x3f38 + +d_course_yoshi_valley_vertex_0x04004940: + symbol: d_course_yoshi_valley_vertex_0x04004940 + type: mk64:course_vtx + count: 18 + offset: 0x4018 + +d_course_yoshi_valley_vertex_0x04004A00: + symbol: d_course_yoshi_valley_vertex_0x04004A00 + type: mk64:course_vtx + count: 7 + offset: 0x40c0 + +d_course_yoshi_valley_vertex_0x04004A70: + symbol: d_course_yoshi_valley_vertex_0x04004A70 + type: mk64:course_vtx + count: 16 + offset: 0x4122 + +d_course_yoshi_valley_vertex_0x04004B10: + symbol: d_course_yoshi_valley_vertex_0x04004B10 + type: mk64:course_vtx + count: 18 + offset: 0x41ae + +d_course_yoshi_valley_vertex_0x04004BD0: + symbol: d_course_yoshi_valley_vertex_0x04004BD0 + type: mk64:course_vtx + count: 17 + offset: 0x4256 + +d_course_yoshi_valley_vertex_0x04004C80: + symbol: d_course_yoshi_valley_vertex_0x04004C80 + type: mk64:course_vtx + count: 39 + offset: 0x42f0 + +d_course_yoshi_valley_vertex_0x04004E30: + symbol: d_course_yoshi_valley_vertex_0x04004E30 + type: mk64:course_vtx + count: 8 + offset: 0x446a + +d_course_yoshi_valley_vertex_0x04004EB0: + symbol: d_course_yoshi_valley_vertex_0x04004EB0 + type: mk64:course_vtx + count: 16 + offset: 0x44da + +d_course_yoshi_valley_vertex_0x04004F50: + symbol: d_course_yoshi_valley_vertex_0x04004F50 + type: mk64:course_vtx + count: 24 + offset: 0x4566 + +d_course_yoshi_valley_vertex_0x04005070: + symbol: d_course_yoshi_valley_vertex_0x04005070 + type: mk64:course_vtx + count: 33 + offset: 0x4662 + +d_course_yoshi_valley_vertex_0x040051C0: + symbol: d_course_yoshi_valley_vertex_0x040051C0 + type: mk64:course_vtx + count: 18 + offset: 0x4788 + +d_course_yoshi_valley_vertex_0x04005280: + symbol: d_course_yoshi_valley_vertex_0x04005280 + type: mk64:course_vtx + count: 21 + offset: 0x4830 + +d_course_yoshi_valley_vertex_0x04005370: + symbol: d_course_yoshi_valley_vertex_0x04005370 + type: mk64:course_vtx + count: 32 + offset: 0x4902 + +d_course_yoshi_valley_vertex_0x040054B0: + symbol: d_course_yoshi_valley_vertex_0x040054B0 + type: mk64:course_vtx + count: 16 + offset: 0x4a1a + +d_course_yoshi_valley_vertex_0x04005550: + symbol: d_course_yoshi_valley_vertex_0x04005550 + type: mk64:course_vtx + count: 37 + offset: 0x4aa6 + +d_course_yoshi_valley_vertex_0x040056E0: + symbol: d_course_yoshi_valley_vertex_0x040056E0 + type: mk64:course_vtx + count: 34 + offset: 0x4c04 + +d_course_yoshi_valley_vertex_0x04005840: + symbol: d_course_yoshi_valley_vertex_0x04005840 + type: mk64:course_vtx + count: 16 + offset: 0x4d38 + +d_course_yoshi_valley_vertex_0x040058E0: + symbol: d_course_yoshi_valley_vertex_0x040058E0 + type: mk64:course_vtx + count: 23 + offset: 0x4dc4 + +d_course_yoshi_valley_vertex_0x040059F0: + symbol: d_course_yoshi_valley_vertex_0x040059F0 + type: mk64:course_vtx + count: 9 + offset: 0x4eb2 + +d_course_yoshi_valley_vertex_0x04005A80: + symbol: d_course_yoshi_valley_vertex_0x04005A80 + type: mk64:course_vtx + count: 24 + offset: 0x4f30 + +d_course_yoshi_valley_vertex_0x04005BA0: + symbol: d_course_yoshi_valley_vertex_0x04005BA0 + type: mk64:course_vtx + count: 21 + offset: 0x502c + +d_course_yoshi_valley_vertex_0x04005C90: + symbol: d_course_yoshi_valley_vertex_0x04005C90 + type: mk64:course_vtx + count: 25 + offset: 0x50fe + +d_course_yoshi_valley_vertex_0x04005DC0: + symbol: d_course_yoshi_valley_vertex_0x04005DC0 + type: mk64:course_vtx + count: 18 + offset: 0x5208 + +d_course_yoshi_valley_vertex_0x04005E80: + symbol: d_course_yoshi_valley_vertex_0x04005E80 + type: mk64:course_vtx + count: 20 + offset: 0x52b0 + +d_course_yoshi_valley_vertex_0x04005F60: + symbol: d_course_yoshi_valley_vertex_0x04005F60 + type: mk64:course_vtx + count: 18 + offset: 0x5374 + +d_course_yoshi_valley_vertex_0x04006020: + symbol: d_course_yoshi_valley_vertex_0x04006020 + type: mk64:course_vtx + count: 18 + offset: 0x541c + +d_course_yoshi_valley_vertex_0x040060E0: + symbol: d_course_yoshi_valley_vertex_0x040060E0 + type: mk64:course_vtx + count: 33 + offset: 0x54c4 + +d_course_yoshi_valley_vertex_0x04006230: + symbol: d_course_yoshi_valley_vertex_0x04006230 + type: mk64:course_vtx + count: 17 + offset: 0x55ea + +d_course_yoshi_valley_vertex_0x040062E0: + symbol: d_course_yoshi_valley_vertex_0x040062E0 + type: mk64:course_vtx + count: 9 + offset: 0x5684 + +d_course_yoshi_valley_vertex_0x04006370: + symbol: d_course_yoshi_valley_vertex_0x04006370 + type: mk64:course_vtx + count: 8 + offset: 0x5702 + +d_course_yoshi_valley_vertex_0x040063F0: + symbol: d_course_yoshi_valley_vertex_0x040063F0 + type: mk64:course_vtx + count: 24 + offset: 0x5772 + +d_course_yoshi_valley_vertex_0x04006510: + symbol: d_course_yoshi_valley_vertex_0x04006510 + type: mk64:course_vtx + count: 23 + offset: 0x586e + +d_course_yoshi_valley_vertex_0x04006620: + symbol: d_course_yoshi_valley_vertex_0x04006620 + type: mk64:course_vtx + count: 18 + offset: 0x595c + +d_course_yoshi_valley_vertex_0x040066E0: + symbol: d_course_yoshi_valley_vertex_0x040066E0 + type: mk64:course_vtx + count: 8 + offset: 0x5a04 + +d_course_yoshi_valley_vertex_0x04006760: + symbol: d_course_yoshi_valley_vertex_0x04006760 + type: mk64:course_vtx + count: 23 + offset: 0x5a74 + +d_course_yoshi_valley_vertex_0x04006870: + symbol: d_course_yoshi_valley_vertex_0x04006870 + type: mk64:course_vtx + count: 4 + offset: 0x5b62 + +d_course_yoshi_valley_vertex_0x040068B0: + symbol: d_course_yoshi_valley_vertex_0x040068B0 + type: mk64:course_vtx + count: 4 + offset: 0x5b9a + +d_course_yoshi_valley_vertex_0x040068F0: + symbol: d_course_yoshi_valley_vertex_0x040068F0 + type: mk64:course_vtx + count: 20 + offset: 0x5bd2 + +d_course_yoshi_valley_vertex_0x040069D0: + symbol: d_course_yoshi_valley_vertex_0x040069D0 + type: mk64:course_vtx + count: 4 + offset: 0x5c96 + +d_course_yoshi_valley_vertex_0x04006A10: + symbol: d_course_yoshi_valley_vertex_0x04006A10 + type: mk64:course_vtx + count: 9 + offset: 0x5cce + +d_course_yoshi_valley_vertex_0x04006AA0: + symbol: d_course_yoshi_valley_vertex_0x04006AA0 + type: mk64:course_vtx + count: 8 + offset: 0x5d4c + +d_course_yoshi_valley_vertex_0x04006B20: + symbol: d_course_yoshi_valley_vertex_0x04006B20 + type: mk64:course_vtx + count: 20 + offset: 0x5dbc + +d_course_yoshi_valley_vertex_0x04006C00: + symbol: d_course_yoshi_valley_vertex_0x04006C00 + type: mk64:course_vtx + count: 4 + offset: 0x5e80 + +d_course_yoshi_valley_vertex_0x04006C40: + symbol: d_course_yoshi_valley_vertex_0x04006C40 + type: mk64:course_vtx + count: 8 + offset: 0x5eb8 + +d_course_yoshi_valley_vertex_0x04006CC0: + symbol: d_course_yoshi_valley_vertex_0x04006CC0 + type: mk64:course_vtx + count: 8 + offset: 0x5f28 + +d_course_yoshi_valley_vertex_0x04006D40: + symbol: d_course_yoshi_valley_vertex_0x04006D40 + type: mk64:course_vtx + count: 22 + offset: 0x5f98 + +d_course_yoshi_valley_vertex_0x04006E40: + symbol: d_course_yoshi_valley_vertex_0x04006E40 + type: mk64:course_vtx + count: 8 + offset: 0x6078 + +d_course_yoshi_valley_vertex_0x04006EC0: + symbol: d_course_yoshi_valley_vertex_0x04006EC0 + type: mk64:course_vtx + count: 9 + offset: 0x60e8 + +d_course_yoshi_valley_vertex_0x04006F50: + symbol: d_course_yoshi_valley_vertex_0x04006F50 + type: mk64:course_vtx + count: 38 + offset: 0x6166 + +d_course_yoshi_valley_vertex_0x040070F0: + symbol: d_course_yoshi_valley_vertex_0x040070F0 + type: mk64:course_vtx + count: 21 + offset: 0x62d2 + +d_course_yoshi_valley_vertex_0x040071E0: + symbol: d_course_yoshi_valley_vertex_0x040071E0 + type: mk64:course_vtx + count: 21 + offset: 0x63a4 + +d_course_yoshi_valley_vertex_0x040072D0: + symbol: d_course_yoshi_valley_vertex_0x040072D0 + type: mk64:course_vtx + count: 8 + offset: 0x6476 + +d_course_yoshi_valley_vertex_0x04007350: + symbol: d_course_yoshi_valley_vertex_0x04007350 + type: mk64:course_vtx + count: 32 + offset: 0x64e6 + +d_course_yoshi_valley_vertex_0x04007490: + symbol: d_course_yoshi_valley_vertex_0x04007490 + type: mk64:course_vtx + count: 20 + offset: 0x65fe + +d_course_yoshi_valley_vertex_0x04007570: + symbol: d_course_yoshi_valley_vertex_0x04007570 + type: mk64:course_vtx + count: 8 + offset: 0x66c2 + +d_course_yoshi_valley_vertex_0x040075F0: + symbol: d_course_yoshi_valley_vertex_0x040075F0 + type: mk64:course_vtx + count: 7 + offset: 0x6732 + +d_course_yoshi_valley_vertex_0x04007660: + symbol: d_course_yoshi_valley_vertex_0x04007660 + type: mk64:course_vtx + count: 4 + offset: 0x6794 + +d_course_yoshi_valley_vertex_0x040076A0: + symbol: d_course_yoshi_valley_vertex_0x040076A0 + type: mk64:course_vtx + count: 48 + offset: 0x67cc + +d_course_yoshi_valley_vertex_0x04007880: + symbol: d_course_yoshi_valley_vertex_0x04007880 + type: mk64:course_vtx + count: 18 + offset: 0x6970 + +d_course_yoshi_valley_vertex_0x04007940: + symbol: d_course_yoshi_valley_vertex_0x04007940 + type: mk64:course_vtx + count: 4 + offset: 0x6a18 + +d_course_yoshi_valley_vertex_0x04007980: + symbol: d_course_yoshi_valley_vertex_0x04007980 + type: mk64:course_vtx + count: 41 + offset: 0x6a50 + +d_course_yoshi_valley_vertex_0x04007B50: + symbol: d_course_yoshi_valley_vertex_0x04007B50 + type: mk64:course_vtx + count: 8 + offset: 0x6be6 + +d_course_yoshi_valley_vertex_0x04007BD0: + symbol: d_course_yoshi_valley_vertex_0x04007BD0 + type: mk64:course_vtx + count: 49 + offset: 0x6c56 + +d_course_yoshi_valley_vertex_0x04007DC0: + symbol: d_course_yoshi_valley_vertex_0x04007DC0 + type: mk64:course_vtx + count: 18 + offset: 0x6e08 + +d_course_yoshi_valley_vertex_0x04007E80: + symbol: d_course_yoshi_valley_vertex_0x04007E80 + type: mk64:course_vtx + count: 48 + offset: 0x6eb0 + +d_course_yoshi_valley_vertex_0x04008060: + symbol: d_course_yoshi_valley_vertex_0x04008060 + type: mk64:course_vtx + count: 38 + offset: 0x7054 + +d_course_yoshi_valley_vertex_0x04008200: + symbol: d_course_yoshi_valley_vertex_0x04008200 + type: mk64:course_vtx + count: 48 + offset: 0x71c0 + +d_course_yoshi_valley_vertex_0x040083E0: + symbol: d_course_yoshi_valley_vertex_0x040083E0 + type: mk64:course_vtx + count: 48 + offset: 0x7364 + +d_course_yoshi_valley_vertex_0x040085C0: + symbol: d_course_yoshi_valley_vertex_0x040085C0 + type: mk64:course_vtx + count: 50 + offset: 0x7508 + +d_course_yoshi_valley_vertex_0x040087C0: + symbol: d_course_yoshi_valley_vertex_0x040087C0 + type: mk64:course_vtx + count: 18 + offset: 0x76c8 + +d_course_yoshi_valley_vertex_0x04008880: + symbol: d_course_yoshi_valley_vertex_0x04008880 + type: mk64:course_vtx + count: 37 + offset: 0x7770 + +d_course_yoshi_valley_vertex_0x04008A10: + symbol: d_course_yoshi_valley_vertex_0x04008A10 + type: mk64:course_vtx + count: 16 + offset: 0x78ce + +d_course_yoshi_valley_vertex_0x04008AB0: + symbol: d_course_yoshi_valley_vertex_0x04008AB0 + type: mk64:course_vtx + count: 4 + offset: 0x795a + +d_course_yoshi_valley_vertex_0x04008AF0: + symbol: d_course_yoshi_valley_vertex_0x04008AF0 + type: mk64:course_vtx + count: 8 + offset: 0x7992 + +d_course_yoshi_valley_vertex_0x04008B70: + symbol: d_course_yoshi_valley_vertex_0x04008B70 + type: mk64:course_vtx + count: 32 + offset: 0x7a02 + +d_course_yoshi_valley_vertex_0x04008CB0: + symbol: d_course_yoshi_valley_vertex_0x04008CB0 + type: mk64:course_vtx + count: 18 + offset: 0x7b1a + +d_course_yoshi_valley_vertex_0x04008D70: + symbol: d_course_yoshi_valley_vertex_0x04008D70 + type: mk64:course_vtx + count: 8 + offset: 0x7bc2 + +d_course_yoshi_valley_vertex_0x04008DF0: + symbol: d_course_yoshi_valley_vertex_0x04008DF0 + type: mk64:course_vtx + count: 4 + offset: 0x7c32 + +d_course_yoshi_valley_vertex_0x04008E30: + symbol: d_course_yoshi_valley_vertex_0x04008E30 + type: mk64:course_vtx + count: 48 + offset: 0x7c6a + +d_course_yoshi_valley_vertex_0x04009010: + symbol: d_course_yoshi_valley_vertex_0x04009010 + type: mk64:course_vtx + count: 8 + offset: 0x7e0e + +d_course_yoshi_valley_vertex_0x04009090: + symbol: d_course_yoshi_valley_vertex_0x04009090 + type: mk64:course_vtx + count: 49 + offset: 0x7e7e + +d_course_yoshi_valley_vertex_0x04009280: + symbol: d_course_yoshi_valley_vertex_0x04009280 + type: mk64:course_vtx + count: 6 + offset: 0x8030 + +d_course_yoshi_valley_vertex_0x040092E0: + symbol: d_course_yoshi_valley_vertex_0x040092E0 + type: mk64:course_vtx + count: 48 + offset: 0x8084 + +d_course_yoshi_valley_vertex_0x040094C0: + symbol: d_course_yoshi_valley_vertex_0x040094C0 + type: mk64:course_vtx + count: 35 + offset: 0x8228 + +d_course_yoshi_valley_vertex_0x04009630: + symbol: d_course_yoshi_valley_vertex_0x04009630 + type: mk64:course_vtx + count: 50 + offset: 0x836a + +d_course_yoshi_valley_vertex_0x04009830: + symbol: d_course_yoshi_valley_vertex_0x04009830 + type: mk64:course_vtx + count: 16 + offset: 0x852a + +d_course_yoshi_valley_vertex_0x040098D0: + symbol: d_course_yoshi_valley_vertex_0x040098D0 + type: mk64:course_vtx + count: 4 + offset: 0x85b6 + +d_course_yoshi_valley_vertex_0x04009910: + symbol: d_course_yoshi_valley_vertex_0x04009910 + type: mk64:course_vtx + count: 50 + offset: 0x85ee + +d_course_yoshi_valley_vertex_0x04009B10: + symbol: d_course_yoshi_valley_vertex_0x04009B10 + type: mk64:course_vtx + count: 5 + offset: 0x87ae + +d_course_yoshi_valley_vertex_0x04009B60: + symbol: d_course_yoshi_valley_vertex_0x04009B60 + type: mk64:course_vtx + count: 36 + offset: 0x87f4 + +d_course_yoshi_valley_vertex_0x04009CE0: + symbol: d_course_yoshi_valley_vertex_0x04009CE0 + type: mk64:course_vtx + count: 41 + offset: 0x8944 + +d_course_yoshi_valley_vertex_0x04009EB0: + symbol: d_course_yoshi_valley_vertex_0x04009EB0 + type: mk64:course_vtx + count: 4 + offset: 0x8ada + +d_course_yoshi_valley_vertex_0x04009EF0: + symbol: d_course_yoshi_valley_vertex_0x04009EF0 + type: mk64:course_vtx + count: 50 + offset: 0x8b12 + +d_course_yoshi_valley_vertex_0x0400A0F0: + symbol: d_course_yoshi_valley_vertex_0x0400A0F0 + type: mk64:course_vtx + count: 34 + offset: 0x8cd2 + +d_course_yoshi_valley_vertex_0x0400A250: + symbol: d_course_yoshi_valley_vertex_0x0400A250 + type: mk64:course_vtx + count: 48 + offset: 0x8e06 + +d_course_yoshi_valley_vertex_0x0400A430: + symbol: d_course_yoshi_valley_vertex_0x0400A430 + type: mk64:course_vtx + count: 6 + offset: 0x8faa + +d_course_yoshi_valley_vertex_0x0400A490: + symbol: d_course_yoshi_valley_vertex_0x0400A490 + type: mk64:course_vtx + count: 24 + offset: 0x8ffe + +d_course_yoshi_valley_vertex_0x0400A5B0: + symbol: d_course_yoshi_valley_vertex_0x0400A5B0 + type: mk64:course_vtx + count: 24 + offset: 0x90fa + +d_course_yoshi_valley_vertex_0x0400A6D0: + symbol: d_course_yoshi_valley_vertex_0x0400A6D0 + type: mk64:course_vtx + count: 18 + offset: 0x91f6 + +d_course_yoshi_valley_vertex_0x0400A790: + symbol: d_course_yoshi_valley_vertex_0x0400A790 + type: mk64:course_vtx + count: 24 + offset: 0x929e + +d_course_yoshi_valley_vertex_0x0400A8B0: + symbol: d_course_yoshi_valley_vertex_0x0400A8B0 + type: mk64:course_vtx + count: 32 + offset: 0x939a + +d_course_yoshi_valley_vertex_0x0400A9F0: + symbol: d_course_yoshi_valley_vertex_0x0400A9F0 + type: mk64:course_vtx + count: 48 + offset: 0x94b2 + +d_course_yoshi_valley_vertex_0x0400ABD0: + symbol: d_course_yoshi_valley_vertex_0x0400ABD0 + type: mk64:course_vtx + count: 48 + offset: 0x9656 + +d_course_yoshi_valley_vertex_0x0400ADB0: + symbol: d_course_yoshi_valley_vertex_0x0400ADB0 + type: mk64:course_vtx + count: 48 + offset: 0x97fa + +d_course_yoshi_valley_vertex_0x0400AF90: + symbol: d_course_yoshi_valley_vertex_0x0400AF90 + type: mk64:course_vtx + count: 24 + offset: 0x999e + +d_course_yoshi_valley_vertex_0x0400B0B0: + symbol: d_course_yoshi_valley_vertex_0x0400B0B0 + type: mk64:course_vtx + count: 25 + offset: 0x9a9a + +d_course_yoshi_valley_vertex_0x0400B1E0: + symbol: d_course_yoshi_valley_vertex_0x0400B1E0 + type: mk64:course_vtx + count: 16 + offset: 0x9ba4 + +d_course_yoshi_valley_vertex_0x0400B280: + symbol: d_course_yoshi_valley_vertex_0x0400B280 + type: mk64:course_vtx + count: 6 + offset: 0x9c30 + +d_course_yoshi_valley_vertex_0x0400B2E0: + symbol: d_course_yoshi_valley_vertex_0x0400B2E0 + type: mk64:course_vtx + count: 17 + offset: 0x9c84 + +d_course_yoshi_valley_vertex_0x0400B390: + symbol: d_course_yoshi_valley_vertex_0x0400B390 + type: mk64:course_vtx + count: 7 + offset: 0x9d1e + +d_course_yoshi_valley_vertex_0x0400B400: + symbol: d_course_yoshi_valley_vertex_0x0400B400 + type: mk64:course_vtx + count: 9 + offset: 0x9d80 + +d_course_yoshi_valley_vertex_0x0400B490: + symbol: d_course_yoshi_valley_vertex_0x0400B490 + type: mk64:course_vtx + count: 16 + offset: 0x9dfe + +d_course_yoshi_valley_vertex_0x0400B530: + symbol: d_course_yoshi_valley_vertex_0x0400B530 + type: mk64:course_vtx + count: 16 + offset: 0x9e8a + +d_course_yoshi_valley_vertex_0x0400B5D0: + symbol: d_course_yoshi_valley_vertex_0x0400B5D0 + type: mk64:course_vtx + count: 9 + offset: 0x9f16 + +d_course_yoshi_valley_vertex_0x0400B660: + symbol: d_course_yoshi_valley_vertex_0x0400B660 + type: mk64:course_vtx + count: 8 + offset: 0x9f94 + +d_course_yoshi_valley_vertex_0x0400B6E0: + symbol: d_course_yoshi_valley_vertex_0x0400B6E0 + type: mk64:course_vtx + count: 19 + offset: 0xa004 + +d_course_yoshi_valley_vertex_0x0400B7B0: + symbol: d_course_yoshi_valley_vertex_0x0400B7B0 + type: mk64:course_vtx + count: 7 + offset: 0xa0ba + +d_course_yoshi_valley_vertex_0x0400B820: + symbol: d_course_yoshi_valley_vertex_0x0400B820 + type: mk64:course_vtx + count: 16 + offset: 0xa11c + +d_course_yoshi_valley_vertex_0x0400B8C0: + symbol: d_course_yoshi_valley_vertex_0x0400B8C0 + type: mk64:course_vtx + count: 8 + offset: 0xa1a8 + +d_course_yoshi_valley_vertex_0x0400B940: + symbol: d_course_yoshi_valley_vertex_0x0400B940 + type: mk64:course_vtx + count: 5 + offset: 0xa218 + +d_course_yoshi_valley_vertex_0x0400B990: + symbol: d_course_yoshi_valley_vertex_0x0400B990 + type: mk64:course_vtx + count: 8 + offset: 0xa25e + +d_course_yoshi_valley_vertex_0x0400BA10: + symbol: d_course_yoshi_valley_vertex_0x0400BA10 + type: mk64:course_vtx + count: 6 + offset: 0xa2ce + +d_course_yoshi_valley_vertex_0x0400BA70: + symbol: d_course_yoshi_valley_vertex_0x0400BA70 + type: mk64:course_vtx + count: 17 + offset: 0xa322 + +d_course_yoshi_valley_vertex_0x0400BB20: + symbol: d_course_yoshi_valley_vertex_0x0400BB20 + type: mk64:course_vtx + count: 25 + offset: 0xa3bc + +d_course_yoshi_valley_vertex_0x0400BC50: + symbol: d_course_yoshi_valley_vertex_0x0400BC50 + type: mk64:course_vtx + count: 16 + offset: 0xa4c6 + +d_course_yoshi_valley_vertex_0x0400BCF0: + symbol: d_course_yoshi_valley_vertex_0x0400BCF0 + type: mk64:course_vtx + count: 6 + offset: 0xa552 + +d_course_yoshi_valley_vertex_0x0400BD50: + symbol: d_course_yoshi_valley_vertex_0x0400BD50 + type: mk64:course_vtx + count: 16 + offset: 0xa5a6 + +d_course_yoshi_valley_vertex_0x0400BDF0: + symbol: d_course_yoshi_valley_vertex_0x0400BDF0 + type: mk64:course_vtx + count: 18 + offset: 0xa632 + +d_course_yoshi_valley_vertex_0x0400BEB0: + symbol: d_course_yoshi_valley_vertex_0x0400BEB0 + type: mk64:course_vtx + count: 6 + offset: 0xa6da + +d_course_yoshi_valley_vertex_0x0400BF10: + symbol: d_course_yoshi_valley_vertex_0x0400BF10 + type: mk64:course_vtx + count: 20 + offset: 0xa72e + +d_course_yoshi_valley_vertex_0x0400BFF0: + symbol: d_course_yoshi_valley_vertex_0x0400BFF0 + type: mk64:course_vtx + count: 16 + offset: 0xa7f2 + +d_course_yoshi_valley_vertex_0x0400C090: + symbol: d_course_yoshi_valley_vertex_0x0400C090 + type: mk64:course_vtx + count: 8 + offset: 0xa87e + +d_course_yoshi_valley_vertex_0x0400C110: + symbol: d_course_yoshi_valley_vertex_0x0400C110 + type: mk64:course_vtx + count: 6 + offset: 0xa8ee + +d_course_yoshi_valley_vertex_0x0400C170: + symbol: d_course_yoshi_valley_vertex_0x0400C170 + type: mk64:course_vtx + count: 17 + offset: 0xa942 + +d_course_yoshi_valley_vertex_0x0400C220: + symbol: d_course_yoshi_valley_vertex_0x0400C220 + type: mk64:course_vtx + count: 6 + offset: 0xa9dc + +d_course_yoshi_valley_vertex_0x0400C280: + symbol: d_course_yoshi_valley_vertex_0x0400C280 + type: mk64:course_vtx + count: 6 + offset: 0xaa30 + +d_course_yoshi_valley_vertex_0x0400C2E0: + symbol: d_course_yoshi_valley_vertex_0x0400C2E0 + type: mk64:course_vtx + count: 19 + offset: 0xaa84 + +d_course_yoshi_valley_vertex_0x0400C3B0: + symbol: d_course_yoshi_valley_vertex_0x0400C3B0 + type: mk64:course_vtx + count: 6 + offset: 0xab3a + +d_course_yoshi_valley_vertex_0x0400C410: + symbol: d_course_yoshi_valley_vertex_0x0400C410 + type: mk64:course_vtx + count: 6 + offset: 0xab8e + +d_course_yoshi_valley_vertex_0x0400C470: + symbol: d_course_yoshi_valley_vertex_0x0400C470 + type: mk64:course_vtx + count: 6 + offset: 0xabe2 + +d_course_yoshi_valley_vertex_0x0400C4D0: + symbol: d_course_yoshi_valley_vertex_0x0400C4D0 + type: mk64:course_vtx + count: 4 + offset: 0xac36 + +d_course_yoshi_valley_vertex_0x0400C510: + symbol: d_course_yoshi_valley_vertex_0x0400C510 + type: mk64:course_vtx + count: 9 + offset: 0xac6e + +d_course_yoshi_valley_vertex_0x0400C5A0: + symbol: d_course_yoshi_valley_vertex_0x0400C5A0 + type: mk64:course_vtx + count: 17 + offset: 0xacec + +d_course_yoshi_valley_vertex_0x0400C650: + symbol: d_course_yoshi_valley_vertex_0x0400C650 + type: mk64:course_vtx + count: 9 + offset: 0xad86 + +d_course_yoshi_valley_vertex_0x0400C6E0: + symbol: d_course_yoshi_valley_vertex_0x0400C6E0 + type: mk64:course_vtx + count: 8 + offset: 0xae04 + +d_course_yoshi_valley_vertex_0x0400C760: + symbol: d_course_yoshi_valley_vertex_0x0400C760 + type: mk64:course_vtx + count: 16 + offset: 0xae74 + +d_course_yoshi_valley_vertex_0x0400C800: + symbol: d_course_yoshi_valley_vertex_0x0400C800 + type: mk64:course_vtx + count: 16 + offset: 0xaf00 + +d_course_yoshi_valley_vertex_0x0400C8A0: + symbol: d_course_yoshi_valley_vertex_0x0400C8A0 + type: mk64:course_vtx + count: 24 + offset: 0xaf8c + +d_course_yoshi_valley_vertex_0x0400C9C0: + symbol: d_course_yoshi_valley_vertex_0x0400C9C0 + type: mk64:course_vtx + count: 7 + offset: 0xb088 + +d_course_yoshi_valley_vertex_0x0400CA30: + symbol: d_course_yoshi_valley_vertex_0x0400CA30 + type: mk64:course_vtx + count: 9 + offset: 0xb0ea + +d_course_yoshi_valley_vertex_0x0400CAC0: + symbol: d_course_yoshi_valley_vertex_0x0400CAC0 + type: mk64:course_vtx + count: 24 + offset: 0xb168 + +d_course_yoshi_valley_vertex_0x0400CBE0: + symbol: d_course_yoshi_valley_vertex_0x0400CBE0 + type: mk64:course_vtx + count: 24 + offset: 0xb264 + +d_course_yoshi_valley_vertex_0x0400CD00: + symbol: d_course_yoshi_valley_vertex_0x0400CD00 + type: mk64:course_vtx + count: 6 + offset: 0xb360 + +d_course_yoshi_valley_vertex_0x0400CD60: + symbol: d_course_yoshi_valley_vertex_0x0400CD60 + type: mk64:course_vtx + count: 37 + offset: 0xb3b4 + +d_course_yoshi_valley_vertex_0x0400CEF0: + symbol: d_course_yoshi_valley_vertex_0x0400CEF0 + type: mk64:course_vtx + count: 9 + offset: 0xb512 + +d_course_yoshi_valley_vertex_0x0400CF80: + symbol: d_course_yoshi_valley_vertex_0x0400CF80 + type: mk64:course_vtx + count: 22 + offset: 0xb590 + +d_course_yoshi_valley_vertex_0x0400D080: + symbol: d_course_yoshi_valley_vertex_0x0400D080 + type: mk64:course_vtx + count: 8 + offset: 0xb670 + +d_course_yoshi_valley_vertex_0x0400D100: + symbol: d_course_yoshi_valley_vertex_0x0400D100 + type: mk64:course_vtx + count: 8 + offset: 0xb6e0 + +d_course_yoshi_valley_vertex_0x0400D180: + symbol: d_course_yoshi_valley_vertex_0x0400D180 + type: mk64:course_vtx + count: 19 + offset: 0xb750 + +d_course_yoshi_valley_vertex_0x0400D250: + symbol: d_course_yoshi_valley_vertex_0x0400D250 + type: mk64:course_vtx + count: 20 + offset: 0xb806 + +d_course_yoshi_valley_vertex_0x0400D330: + symbol: d_course_yoshi_valley_vertex_0x0400D330 + type: mk64:course_vtx + count: 16 + offset: 0xb8ca + +d_course_yoshi_valley_vertex_0x0400D3D0: + symbol: d_course_yoshi_valley_vertex_0x0400D3D0 + type: mk64:course_vtx + count: 6 + offset: 0xb956 + +d_course_yoshi_valley_vertex_0x0400D430: + symbol: d_course_yoshi_valley_vertex_0x0400D430 + type: mk64:course_vtx + count: 20 + offset: 0xb9aa + +d_course_yoshi_valley_vertex_0x0400D510: + symbol: d_course_yoshi_valley_vertex_0x0400D510 + type: mk64:course_vtx + count: 21 + offset: 0xba6e + +d_course_yoshi_valley_vertex_0x0400D600: + symbol: d_course_yoshi_valley_vertex_0x0400D600 + type: mk64:course_vtx + count: 17 + offset: 0xbb40 + +d_course_yoshi_valley_vertex_0x0400D6B0: + symbol: d_course_yoshi_valley_vertex_0x0400D6B0 + type: mk64:course_vtx + count: 8 + offset: 0xbbda + +d_course_yoshi_valley_vertex_0x0400D730: + symbol: d_course_yoshi_valley_vertex_0x0400D730 + type: mk64:course_vtx + count: 19 + offset: 0xbc4a + +d_course_yoshi_valley_vertex_0x0400D800: + symbol: d_course_yoshi_valley_vertex_0x0400D800 + type: mk64:course_vtx + count: 7 + offset: 0xbd00 + +d_course_yoshi_valley_vertex_0x0400D870: + symbol: d_course_yoshi_valley_vertex_0x0400D870 + type: mk64:course_vtx + count: 22 + offset: 0xbd62 + +d_course_yoshi_valley_vertex_0x0400D970: + symbol: d_course_yoshi_valley_vertex_0x0400D970 + type: mk64:course_vtx + count: 34 + offset: 0xbe42 + +d_course_yoshi_valley_vertex_0x0400DAD0: + symbol: d_course_yoshi_valley_vertex_0x0400DAD0 + type: mk64:course_vtx + count: 22 + offset: 0xbf76 + +d_course_yoshi_valley_vertex_0x0400DBD0: + symbol: d_course_yoshi_valley_vertex_0x0400DBD0 + type: mk64:course_vtx + count: 7 + offset: 0xc056 + +d_course_yoshi_valley_vertex_0x0400DC40: + symbol: d_course_yoshi_valley_vertex_0x0400DC40 + type: mk64:course_vtx + count: 5 + offset: 0xc0b8 + +d_course_yoshi_valley_vertex_0x0400DC90: + symbol: d_course_yoshi_valley_vertex_0x0400DC90 + type: mk64:course_vtx + count: 9 + offset: 0xc0fe + +d_course_yoshi_valley_vertex_0x0400DD20: + symbol: d_course_yoshi_valley_vertex_0x0400DD20 + type: mk64:course_vtx + count: 20 + offset: 0xc17c + +d_course_yoshi_valley_vertex_0x0400DE00: + symbol: d_course_yoshi_valley_vertex_0x0400DE00 + type: mk64:course_vtx + count: 6 + offset: 0xc240 + +d_course_yoshi_valley_vertex_0x0400DE60: + symbol: d_course_yoshi_valley_vertex_0x0400DE60 + type: mk64:course_vtx + count: 22 + offset: 0xc294 + +d_course_yoshi_valley_vertex_0x0400DF60: + symbol: d_course_yoshi_valley_vertex_0x0400DF60 + type: mk64:course_vtx + count: 9 + offset: 0xc374 + +d_course_yoshi_valley_vertex_0x0400DFF0: + symbol: d_course_yoshi_valley_vertex_0x0400DFF0 + type: mk64:course_vtx + count: 8 + offset: 0xc3f2 + +d_course_yoshi_valley_vertex_0x0400E070: + symbol: d_course_yoshi_valley_vertex_0x0400E070 + type: mk64:course_vtx + count: 8 + offset: 0xc462 + +d_course_yoshi_valley_vertex_0x0400E0F0: + symbol: d_course_yoshi_valley_vertex_0x0400E0F0 + type: mk64:course_vtx + count: 6 + offset: 0xc4d2 + +d_course_yoshi_valley_vertex_0x0400E150: + symbol: d_course_yoshi_valley_vertex_0x0400E150 + type: mk64:course_vtx + count: 7 + offset: 0xc526 + +d_course_yoshi_valley_vertex_0x0400E1C0: + symbol: d_course_yoshi_valley_vertex_0x0400E1C0 + type: mk64:course_vtx + count: 7 + offset: 0xc588 + +d_course_yoshi_valley_vertex_0x0400E230: + symbol: d_course_yoshi_valley_vertex_0x0400E230 + type: mk64:course_vtx + count: 19 + offset: 0xc5ea + +d_course_yoshi_valley_vertex_0x0400E300: + symbol: d_course_yoshi_valley_vertex_0x0400E300 + type: mk64:course_vtx + count: 21 + offset: 0xc6a0 + +d_course_yoshi_valley_vertex_0x0400E3F0: + symbol: d_course_yoshi_valley_vertex_0x0400E3F0 + type: mk64:course_vtx + count: 7 + offset: 0xc772 + +d_course_yoshi_valley_vertex_0x0400E460: + symbol: d_course_yoshi_valley_vertex_0x0400E460 + type: mk64:course_vtx + count: 16 + offset: 0xc7d4 + +d_course_yoshi_valley_vertex_0x0400E500: + symbol: d_course_yoshi_valley_vertex_0x0400E500 + type: mk64:course_vtx + count: 8 + offset: 0xc860 + +d_course_yoshi_valley_vertex_0x0400E580: + symbol: d_course_yoshi_valley_vertex_0x0400E580 + type: mk64:course_vtx + count: 9 + offset: 0xc8d0 + +d_course_yoshi_valley_vertex_0x0400E610: + symbol: d_course_yoshi_valley_vertex_0x0400E610 + type: mk64:course_vtx + count: 5 + offset: 0xc94e + +d_course_yoshi_valley_vertex_0x0400E660: + symbol: d_course_yoshi_valley_vertex_0x0400E660 + type: mk64:course_vtx + count: 6 + offset: 0xc994 + +d_course_yoshi_valley_vertex_0x0400E6C0: + symbol: d_course_yoshi_valley_vertex_0x0400E6C0 + type: mk64:course_vtx + count: 6 + offset: 0xc9e8 + +d_course_yoshi_valley_vertex_0x0400E720: + symbol: d_course_yoshi_valley_vertex_0x0400E720 + type: mk64:course_vtx + count: 8 + offset: 0xca3c + +d_course_yoshi_valley_vertex_0x0400E7A0: + symbol: d_course_yoshi_valley_vertex_0x0400E7A0 + type: mk64:course_vtx + count: 20 + offset: 0xcaac diff --git a/yamls/us/moo_moo_farm_data.yml b/yamls/us/moo_moo_farm_data.yml deleted file mode 100644 index fc9f36a7b..000000000 --- a/yamls/us/moo_moo_farm_data.yml +++ /dev/null @@ -1,681 +0,0 @@ -:config: - segments: - - [0x06, 0x852E20] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true - tables: - d_course_moo_moo_farm_mole_frames: - range: [0xFE70, 0x13670] - mode: APPEND -d_course_moo_moo_farm_dl_0: - symbol: d_course_moo_moo_farm_dl_0 - type: gfx - offset: 0x0 - otr_mode: index -d_course_moo_moo_farm_dl_30: - symbol: d_course_moo_moo_farm_dl_30 - type: gfx - offset: 0x30 - otr_mode: index -d_course_moo_moo_farm_dl_48: - symbol: d_course_moo_moo_farm_dl_48 - type: gfx - offset: 0x48 - otr_mode: index -d_course_moo_moo_farm_dl_60: - symbol: d_course_moo_moo_farm_dl_60 - type: gfx - offset: 0x60 - otr_mode: index -d_course_moo_moo_farm_dl_78: - symbol: d_course_moo_moo_farm_dl_78 - type: gfx - offset: 0x78 - otr_mode: index -d_course_moo_moo_farm_dl_88: - symbol: d_course_moo_moo_farm_dl_88 - type: gfx - offset: 0x88 - otr_mode: index -d_course_moo_moo_farm_dl_338: - symbol: d_course_moo_moo_farm_dl_338 - type: gfx - offset: 0x338 - otr_mode: index -d_course_moo_moo_farm_dl_598: - symbol: d_course_moo_moo_farm_dl_598 - type: gfx - offset: 0x598 - otr_mode: index -d_course_moo_moo_farm_dl_8A0: - symbol: d_course_moo_moo_farm_dl_8A0 - type: gfx - offset: 0x8a0 - otr_mode: index -d_course_moo_moo_farm_dl_B00: - symbol: d_course_moo_moo_farm_dl_B00 - type: gfx - offset: 0xb00 - otr_mode: index -d_course_moo_moo_farm_dl_D70: - symbol: d_course_moo_moo_farm_dl_D70 - type: gfx - offset: 0xd70 - otr_mode: index -d_course_moo_moo_farm_dl_FE0: - symbol: d_course_moo_moo_farm_dl_FE0 - type: gfx - offset: 0xfe0 - otr_mode: index -d_course_moo_moo_farm_dl_12B8: - symbol: d_course_moo_moo_farm_dl_12B8 - type: gfx - offset: 0x12b8 - otr_mode: index -d_course_moo_moo_farm_dl_1530: - symbol: d_course_moo_moo_farm_dl_1530 - type: gfx - offset: 0x1530 - otr_mode: index -d_course_moo_moo_farm_dl_1790: - symbol: d_course_moo_moo_farm_dl_1790 - type: gfx - offset: 0x1790 - otr_mode: index -d_course_moo_moo_farm_dl_1A20: - symbol: d_course_moo_moo_farm_dl_1A20 - type: gfx - offset: 0x1a20 - otr_mode: index -d_course_moo_moo_farm_dl_1D00: - symbol: d_course_moo_moo_farm_dl_1D00 - type: gfx - offset: 0x1d00 - otr_mode: index -d_course_moo_moo_farm_dl_1F58: - symbol: d_course_moo_moo_farm_dl_1F58 - type: gfx - offset: 0x1f58 - otr_mode: index -d_course_moo_moo_farm_dl_2190: - symbol: d_course_moo_moo_farm_dl_2190 - type: gfx - offset: 0x2190 - otr_mode: index -d_course_moo_moo_farm_dl_2470: - symbol: d_course_moo_moo_farm_dl_2470 - type: gfx - offset: 0x2470 - otr_mode: index -d_course_moo_moo_farm_dl_27A8: - symbol: d_course_moo_moo_farm_dl_27A8 - type: gfx - offset: 0x27a8 - otr_mode: index -d_course_moo_moo_farm_dl_2A10: - symbol: d_course_moo_moo_farm_dl_2A10 - type: gfx - offset: 0x2a10 - otr_mode: index -d_course_moo_moo_farm_dl_2C38: - symbol: d_course_moo_moo_farm_dl_2C38 - type: gfx - offset: 0x2c38 - otr_mode: index -d_course_moo_moo_farm_dl_2F20: - symbol: d_course_moo_moo_farm_dl_2F20 - type: gfx - offset: 0x2f20 - otr_mode: index -d_course_moo_moo_farm_dl_3238: - symbol: d_course_moo_moo_farm_dl_3238 - type: gfx - offset: 0x3238 - otr_mode: index -d_course_moo_moo_farm_dl_34A0: - symbol: d_course_moo_moo_farm_dl_34A0 - type: gfx - offset: 0x34a0 - otr_mode: index -d_course_moo_moo_farm_dl_36B8: - symbol: d_course_moo_moo_farm_dl_36B8 - type: gfx - offset: 0x36b8 - otr_mode: index -d_course_moo_moo_farm_dl_39F8: - symbol: d_course_moo_moo_farm_dl_39F8 - type: gfx - offset: 0x39f8 - otr_mode: index -d_course_moo_moo_farm_dl_3CB0: - symbol: d_course_moo_moo_farm_dl_3CB0 - type: gfx - offset: 0x3cb0 - otr_mode: index -d_course_moo_moo_farm_dl_3EB8: - symbol: d_course_moo_moo_farm_dl_3EB8 - type: gfx - offset: 0x3eb8 - otr_mode: index -d_course_moo_moo_farm_dl_4098: - symbol: d_course_moo_moo_farm_dl_4098 - type: gfx - offset: 0x4098 - otr_mode: index -d_course_moo_moo_farm_dl_4428: - symbol: d_course_moo_moo_farm_dl_4428 - type: gfx - offset: 0x4428 - otr_mode: index -d_course_moo_moo_farm_dl_46D8: - symbol: d_course_moo_moo_farm_dl_46D8 - type: gfx - offset: 0x46d8 - otr_mode: index -d_course_moo_moo_farm_dl_4910: - symbol: d_course_moo_moo_farm_dl_4910 - type: gfx - offset: 0x4910 - otr_mode: index -d_course_moo_moo_farm_dl_4AD0: - symbol: d_course_moo_moo_farm_dl_4AD0 - type: gfx - offset: 0x4ad0 - otr_mode: index -d_course_moo_moo_farm_dl_4E00: - symbol: d_course_moo_moo_farm_dl_4E00 - type: gfx - offset: 0x4e00 - otr_mode: index -d_course_moo_moo_farm_dl_5040: - symbol: d_course_moo_moo_farm_dl_5040 - type: gfx - offset: 0x5040 - otr_mode: index -d_course_moo_moo_farm_dl_5290: - symbol: d_course_moo_moo_farm_dl_5290 - type: gfx - offset: 0x5290 - otr_mode: index -d_course_moo_moo_farm_dl_5458: - symbol: d_course_moo_moo_farm_dl_5458 - type: gfx - offset: 0x5458 - otr_mode: index -d_course_moo_moo_farm_dl_5758: - symbol: d_course_moo_moo_farm_dl_5758 - type: gfx - offset: 0x5758 - otr_mode: index -d_course_moo_moo_farm_dl_5990: - symbol: d_course_moo_moo_farm_dl_5990 - type: gfx - offset: 0x5990 - otr_mode: index -d_course_moo_moo_farm_dl_5BF8: - symbol: d_course_moo_moo_farm_dl_5BF8 - type: gfx - offset: 0x5bf8 - otr_mode: index -d_course_moo_moo_farm_dl_5DF0: - symbol: d_course_moo_moo_farm_dl_5DF0 - type: gfx - offset: 0x5df0 - otr_mode: index -d_course_moo_moo_farm_dl_60A8: - symbol: d_course_moo_moo_farm_dl_60A8 - type: gfx - offset: 0x60a8 - otr_mode: index -d_course_moo_moo_farm_dl_62D0: - symbol: d_course_moo_moo_farm_dl_62D0 - type: gfx - offset: 0x62d0 - otr_mode: index -d_course_moo_moo_farm_dl_6548: - symbol: d_course_moo_moo_farm_dl_6548 - type: gfx - offset: 0x6548 - otr_mode: index -d_course_moo_moo_farm_dl_6778: - symbol: d_course_moo_moo_farm_dl_6778 - type: gfx - offset: 0x6778 - otr_mode: index -d_course_moo_moo_farm_dl_6A70: - symbol: d_course_moo_moo_farm_dl_6A70 - type: gfx - offset: 0x6a70 - otr_mode: index -d_course_moo_moo_farm_dl_6CB8: - symbol: d_course_moo_moo_farm_dl_6CB8 - type: gfx - offset: 0x6cb8 - otr_mode: index -d_course_moo_moo_farm_dl_6FF0: - symbol: d_course_moo_moo_farm_dl_6FF0 - type: gfx - offset: 0x6ff0 - otr_mode: index -d_course_moo_moo_farm_dl_7218: - symbol: d_course_moo_moo_farm_dl_7218 - type: gfx - offset: 0x7218 - otr_mode: index -d_course_moo_moo_farm_dl_74C8: - symbol: d_course_moo_moo_farm_dl_74C8 - type: gfx - offset: 0x74c8 - otr_mode: index -d_course_moo_moo_farm_dl_7718: - symbol: d_course_moo_moo_farm_dl_7718 - type: gfx - offset: 0x7718 - otr_mode: index -d_course_moo_moo_farm_dl_7A80: - symbol: d_course_moo_moo_farm_dl_7A80 - type: gfx - offset: 0x7a80 - otr_mode: index -d_course_moo_moo_farm_dl_7CD8: - symbol: d_course_moo_moo_farm_dl_7CD8 - type: gfx - offset: 0x7cd8 - otr_mode: index -d_course_moo_moo_farm_dl_7F78: - symbol: d_course_moo_moo_farm_dl_7F78 - type: gfx - offset: 0x7f78 - otr_mode: index -d_course_moo_moo_farm_dl_81E8: - symbol: d_course_moo_moo_farm_dl_81E8 - type: gfx - offset: 0x81e8 - otr_mode: index -d_course_moo_moo_farm_dl_84D0: - symbol: d_course_moo_moo_farm_dl_84D0 - type: gfx - offset: 0x84d0 - otr_mode: index -d_course_moo_moo_farm_dl_8728: - symbol: d_course_moo_moo_farm_dl_8728 - type: gfx - offset: 0x8728 - otr_mode: index -d_course_moo_moo_farm_dl_89A0: - symbol: d_course_moo_moo_farm_dl_89A0 - type: gfx - offset: 0x89a0 - otr_mode: index -d_course_moo_moo_farm_dl_8C00: - symbol: d_course_moo_moo_farm_dl_8C00 - type: gfx - offset: 0x8c00 - otr_mode: index -d_course_moo_moo_farm_dl_8F18: - symbol: d_course_moo_moo_farm_dl_8F18 - type: gfx - offset: 0x8f18 - otr_mode: index -d_course_moo_moo_farm_dl_9178: - symbol: d_course_moo_moo_farm_dl_9178 - type: gfx - offset: 0x9178 - otr_mode: index -d_course_moo_moo_farm_dl_93D0: - symbol: d_course_moo_moo_farm_dl_93D0 - type: gfx - offset: 0x93d0 - otr_mode: index -d_course_moo_moo_farm_dl_9640: - symbol: d_course_moo_moo_farm_dl_9640 - type: gfx - offset: 0x9640 - otr_mode: index -d_course_moo_moo_farm_dl_9938: - symbol: d_course_moo_moo_farm_dl_9938 - type: gfx - offset: 0x9938 - otr_mode: index -d_course_moo_moo_farm_dl_9BB0: - symbol: d_course_moo_moo_farm_dl_9BB0 - type: gfx - offset: 0x9bb0 - otr_mode: index -d_course_moo_moo_farm_dl_9DF8: - symbol: d_course_moo_moo_farm_dl_9DF8 - type: gfx - offset: 0x9df8 - otr_mode: index -d_course_moo_moo_farm_dl_A010: - symbol: d_course_moo_moo_farm_dl_A010 - type: gfx - offset: 0xa010 - otr_mode: index -d_course_moo_moo_farm_dl_A2C0: - symbol: d_course_moo_moo_farm_dl_A2C0 - type: gfx - offset: 0xa2c0 - otr_mode: index -d_course_moo_moo_farm_dl_A568: - symbol: d_course_moo_moo_farm_dl_A568 - type: gfx - offset: 0xa568 - otr_mode: index -d_course_moo_moo_farm_dl_A7B0: - symbol: d_course_moo_moo_farm_dl_A7B0 - type: gfx - offset: 0xa7b0 - otr_mode: index -d_course_moo_moo_farm_dl_A9C8: - symbol: d_course_moo_moo_farm_dl_A9C8 - type: gfx - offset: 0xa9c8 - otr_mode: index -d_course_moo_moo_farm_dl_ACB0: - symbol: d_course_moo_moo_farm_dl_ACB0 - type: gfx - offset: 0xacb0 - otr_mode: index -d_course_moo_moo_farm_dl_B020: - symbol: d_course_moo_moo_farm_dl_B020 - type: gfx - offset: 0xb020 - otr_mode: index -d_course_moo_moo_farm_dl_B230: - symbol: d_course_moo_moo_farm_dl_B230 - type: gfx - offset: 0xb230 - otr_mode: index -d_course_moo_moo_farm_dl_B478: - symbol: d_course_moo_moo_farm_dl_B478 - type: gfx - offset: 0xb478 - otr_mode: index -d_course_moo_moo_farm_dl_B798: - symbol: d_course_moo_moo_farm_dl_B798 - type: gfx - offset: 0xb798 - otr_mode: index -d_course_moo_moo_farm_dl_BB00: - symbol: d_course_moo_moo_farm_dl_BB00 - type: gfx - offset: 0xbb00 - otr_mode: index -d_course_moo_moo_farm_dl_BCE8: - symbol: d_course_moo_moo_farm_dl_BCE8 - type: gfx - offset: 0xbce8 - otr_mode: index -d_course_moo_moo_farm_dl_BF10: - symbol: d_course_moo_moo_farm_dl_BF10 - type: gfx - offset: 0xbf10 - otr_mode: index -d_course_moo_moo_farm_dl_C180: - symbol: d_course_moo_moo_farm_dl_C180 - type: gfx - offset: 0xc180 - otr_mode: index -d_course_moo_moo_farm_dl_C4F8: - symbol: d_course_moo_moo_farm_dl_C4F8 - type: gfx - offset: 0xc4f8 - otr_mode: index -d_course_moo_moo_farm_dl_C6D8: - symbol: d_course_moo_moo_farm_dl_C6D8 - type: gfx - offset: 0xc6d8 - otr_mode: index -d_course_moo_moo_farm_dl_C950: - symbol: d_course_moo_moo_farm_dl_C950 - type: gfx - offset: 0xc950 - otr_mode: index -d_course_moo_moo_farm_dl_CBC8: - symbol: d_course_moo_moo_farm_dl_CBC8 - type: gfx - offset: 0xcbc8 - otr_mode: index -d_course_moo_moo_farm_dl_CF58: - symbol: d_course_moo_moo_farm_dl_CF58 - type: gfx - offset: 0xcf58 - otr_mode: index -d_course_moo_moo_farm_dl_D140: - symbol: d_course_moo_moo_farm_dl_D140 - type: gfx - offset: 0xd140 - otr_mode: index -d_course_moo_moo_farm_dl_D408: - symbol: d_course_moo_moo_farm_dl_D408 - type: gfx - offset: 0xd408 - otr_mode: index -d_course_moo_moo_farm_dl_D6B0: - symbol: d_course_moo_moo_farm_dl_D6B0 - type: gfx - offset: 0xd6b0 - otr_mode: index -d_course_moo_moo_farm_dl_DA50: - symbol: d_course_moo_moo_farm_dl_DA50 - type: gfx - offset: 0xda50 - otr_mode: index -d_course_moo_moo_farm_dl_DC70: - symbol: d_course_moo_moo_farm_dl_DC70 - type: gfx - offset: 0xdc70 - otr_mode: index -d_course_moo_moo_farm_dl_DF60: - symbol: d_course_moo_moo_farm_dl_DF60 - type: gfx - offset: 0xdf60 - otr_mode: index -d_course_moo_moo_farm_dl_E1D8: - symbol: d_course_moo_moo_farm_dl_E1D8 - type: gfx - offset: 0xe1d8 - otr_mode: index -d_course_moo_moo_farm_dl_E4B0: - symbol: d_course_moo_moo_farm_dl_E4B0 - type: gfx - offset: 0xe4b0 - otr_mode: index -d_course_moo_moo_farm_dl_E708: - symbol: d_course_moo_moo_farm_dl_E708 - type: gfx - offset: 0xe708 - otr_mode: index -d_course_moo_moo_farm_dl_EA18: - symbol: d_course_moo_moo_farm_dl_EA18 - type: gfx - offset: 0xea18 - otr_mode: index -d_course_moo_moo_farm_unknown_waypoints: - symbol: d_course_moo_moo_farm_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0xec80 - count: 45 -d_course_moo_moo_farm_track_waypoints: - symbol: d_course_moo_moo_farm_track_waypoints - type: mk64:TRACK_PATH - offset: 0xede8 - count: 465 -d_course_moo_moo_farm_mole_tlut: - symbol: d_course_moo_moo_farm_mole_tlut - type: texture - offset: 0xfc70 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -gTextureMole1: - symbol: gTextureMole1 - type: texture - offset: 0xfe70 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_moo_moo_farm_mole_tlut -gTextureMole2: - symbol: gTextureMole2 - type: texture - offset: 0x10670 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_moo_moo_farm_mole_tlut -gTextureMole3: - symbol: gTextureMole3 - type: texture - offset: 0x10E70 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_moo_moo_farm_mole_tlut -gTextureMole4: - symbol: gTextureMole4 - type: texture - offset: 0x11670 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_moo_moo_farm_mole_tlut -gTextureMole5: - symbol: gTextureMole5 - type: texture - offset: 0x11E70 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_moo_moo_farm_mole_tlut -gTextureMole6: - symbol: gTextureMole6 - type: texture - offset: 0x12670 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_moo_moo_farm_mole_tlut -gTextureMole7: - symbol: gTextureMole7 - type: texture - offset: 0x12E70 - width: 32 - height: 64 - format: ci8 - ctype: u8 - tlut_symbol: d_course_moo_moo_farm_mole_tlut -d_course_moo_moo_farm_mole_dirt: - symbol: d_course_moo_moo_farm_mole_dirt - type: texture - offset: 0x13670 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_course_moo_moo_farm_cow_tlut: - symbol: d_course_moo_moo_farm_cow_tlut - type: texture - offset: 0x13870 - width: 12 - height: 17 - format: rgba16 - ctype: u16 -d_course_moo_moo_farm_cow_model: - symbol: d_course_moo_moo_farm_cow_model - type: vtx - offset: 0x13a08 - count: 8 -d_course_moo_moo_farm_unknown_model1: - symbol: d_course_moo_moo_farm_unknown_model1 - type: vtx - offset: 0x13a88 - count: 8 -d_course_moo_moo_farm_unknown_model2: - symbol: d_course_moo_moo_farm_unknown_model2 - type: vtx - offset: 0x13b08 - count: 8 -d_course_moo_moo_farm_dl_13B88: - symbol: d_course_moo_moo_farm_dl_13B88 - type: gfx - offset: 0x13b88 -d_course_moo_moo_farm_dl_cow1: - symbol: d_course_moo_moo_farm_dl_cow1 - type: gfx - offset: 0x13c00 -d_course_moo_moo_farm_dl_cow2: - symbol: d_course_moo_moo_farm_dl_cow2 - type: gfx - offset: 0x13ca0 -d_course_moo_moo_farm_dl_cow3: - symbol: d_course_moo_moo_farm_dl_cow3 - type: gfx - offset: 0x13d20 -d_course_moo_moo_farm_dl_cow4: - symbol: d_course_moo_moo_farm_dl_cow4 - type: gfx - offset: 0x13da0 -d_course_moo_moo_farm_dl_cow5: - symbol: d_course_moo_moo_farm_dl_cow5 - type: gfx - offset: 0x13e20 -d_course_moo_moo_farm_tree_model: - symbol: d_course_moo_moo_farm_tree_model - type: vtx - offset: 0x13ea0 - count: 8 -d_course_moo_moo_farm_dl_tree: - symbol: d_course_moo_moo_farm_dl_tree - type: gfx - offset: 0x13f20 -d_course_moo_moo_farm_dl_13FF8: - symbol: d_course_moo_moo_farm_dl_13FF8 - type: gfx - offset: 0x13ff8 - otr_mode: index -d_course_moo_moo_farm_dl_14060: - symbol: d_course_moo_moo_farm_dl_14060 - type: gfx - offset: 0x14060 - otr_mode: index -d_course_moo_moo_farm_dl_14088: - symbol: d_course_moo_moo_farm_dl_14088 - type: gfx - offset: 0x14088 - otr_mode: index -d_course_moo_moo_farm_cow_spawn: - symbol: d_course_moo_moo_farm_cow_spawn - type: mk64:spawn_data - offset: 0x14200 - count: 38 -d_course_moo_moo_farm_tree_spawn: - symbol: d_course_moo_moo_farm_tree_spawn - type: mk64:spawn_data - offset: 0x14330 - count: 22 -d_course_moo_moo_farm_item_box_spawns: - symbol: d_course_moo_moo_farm_item_box_spawns - type: mk64:spawn_data - offset: 0x143e0 - count: 27 -d_course_moo_moo_farm_addr: - symbol: d_course_moo_moo_farm_addr - type: mk64:track_sections - offset: 0x144b8 - count: 77 diff --git a/yamls/us/moo_moo_farm_displaylists.yml b/yamls/us/moo_moo_farm_displaylists.yml deleted file mode 100644 index 8bcba0c88..000000000 --- a/yamls/us/moo_moo_farm_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x918ECC - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_moo_moo_farm_packed_dls: - symbol: d_course_moo_moo_farm_packed_dls - type: blob - offset: 0x918ECC - size: 0x2AA5 diff --git a/yamls/us/moo_moo_farm_vertices.yml b/yamls/us/moo_moo_farm_vertices.yml deleted file mode 100644 index 2aeddb5c3..000000000 --- a/yamls/us/moo_moo_farm_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x90B3E0] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_moo_moo_farm_vertex: - symbol: d_course_moo_moo_farm_vertex - type: mk64:course_vtx - count: 7972 - offset: 0x0 diff --git a/yamls/us/other/ceremony_data.yml b/yamls/us/other/ceremony_data.yml new file mode 100644 index 000000000..abc1f8d9d --- /dev/null +++ b/yamls/us/other/ceremony_data.yml @@ -0,0 +1,43 @@ +:config: + segments: + - [0x0B, 0x821D10] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + - '#include ' +light1: + symbol: light1 + type: lights + offset: 0x6BB8 +light2: + symbol: light2 + type: lights + offset: 0x7748 +light3: + symbol: light3 + type: lights + offset: 0x8058 +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/us/other/common_data.yml b/yamls/us/other/common_data.yml new file mode 100644 index 000000000..c35da4ba5 --- /dev/null +++ b/yamls/us/other/common_data.yml @@ -0,0 +1,122 @@ +:config: + segments: + - [0x0D, 0x132B50] + header: + code: + - "#include " + - "#include " + - "#include " + header: + - "#include " + - "#include " + - "#include " + - "#include " + tables: + 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_texture_minimap_kart_character: + range: [0x2CCD8, 0x2D058] + mode: APPEND +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_0D009188: + 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 diff --git a/yamls/us/other/startup_logo.yml b/yamls/us/other/startup_logo.yml new file mode 100644 index 000000000..f8f638b0e --- /dev/null +++ b/yamls/us/other/startup_logo.yml @@ -0,0 +1,14 @@ +:config: + segments: + - [0x06, 0x825800] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +lights: + symbol: lights + type: lights + offset: 0x9308 diff --git a/yamls/us/other/tracks/banshee_boardwalk/banshee_boardwalk_data.yml b/yamls/us/other/tracks/banshee_boardwalk/banshee_boardwalk_data.yml new file mode 100644 index 000000000..bea6e0f70 --- /dev/null +++ b/yamls/us/other/tracks/banshee_boardwalk/banshee_boardwalk_data.yml @@ -0,0 +1,232 @@ +:config: + segments: + - [0x06, 0x831DC0] + - [0x07, 0x800000] + manual_segments: + # segment 7 + - [0x7000000, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_0"] + - [0x7000060, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_60"] + - [0x7000070, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_70"] + - [0x7000120, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_120"] + - [0x70001D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1D0"] + - [0x7000280, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_280"] + - [0x7000330, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_330"] + - [0x70003E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E0"] + - [0x7000490, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_490"] + - [0x7000540, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_540"] + - [0x7000580, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_580"] + - [0x7000688, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_688"] + - [0x7000698, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_698"] + - [0x70006F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6F8"] + - [0x7000758, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_758"] + - [0x70007B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7B8"] + - [0x7000818, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_818"] + - [0x7000878, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_878"] + - [0x70008A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_8A8"] + - [0x7000930, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_930"] + - [0x70009B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_9B8"] + - [0x7000A50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_A50"] + - [0x7000AE8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_AE8"] + - [0x7000BC8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_BC8"] + - [0x7000C98, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_C98"] + - [0x7000D30, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_D30"] + - [0x7000DF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_DF0"] + - [0x7000EA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_EA0"] + - [0x7000F80, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_F80"] + - [0x7001008, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1008"] + - [0x7001108, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1108"] + - [0x70011D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_11D8"] + - [0x7001260, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1260"] + - [0x7001320, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1320"] + - [0x70013E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_13E0"] + - [0x7001478, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1478"] + - [0x7001560, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1560"] + - [0x7001610, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1610"] + - [0x7001748, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1748"] + - [0x70017F0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_17F0"] + - [0x7001820, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1820"] + - [0x7001830, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1830"] + - [0x70018E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_18E0"] + - [0x7001968, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1968"] + - [0x7001A00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1A00"] + - [0x7001A98, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1A98"] + - [0x7001AC0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1AC0"] + - [0x7001B58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1B58"] + - [0x7001BE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1BE0"] + - [0x7001BF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1BF8"] + - [0x7001C78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1C78"] + - [0x7001CF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1CF8"] + - [0x7001D10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1D10"] + - [0x7001DA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1DA0"] + - [0x7001DB0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1DB0"] + - [0x7001E50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1E50"] + - [0x7001EF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1EF0"] + - [0x7001FA8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_1FA8"] + - [0x7002058, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2058"] + - [0x7002100, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2100"] + - [0x70021D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_21D8"] + - [0x7002288, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2288"] + - [0x70022C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_22C8"] + - [0x7002398, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2398"] + - [0x7002440, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2440"] + - [0x7002520, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2520"] + - [0x7002608, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2608"] + - [0x70026E8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_26E8"] + - [0x70027D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_27D0"] + - [0x70028D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_28D0"] + - [0x70029A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_29A0"] + - [0x7002A70, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2A70"] + - [0x7002B78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2B78"] + - [0x7002C20, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2C20"] + - [0x7002D40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2D40"] + - [0x7002E40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2E40"] + - [0x7002F38, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_2F38"] + - [0x7003020, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3020"] + - [0x70030F0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_30F0"] + - [0x7003240, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3240"] + - [0x7003310, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3310"] + - [0x70033C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_33C8"] + - [0x70034A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_34A0"] + - [0x7003588, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3588"] + - [0x7003638, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3638"] + - [0x70036C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_36C8"] + - [0x7003740, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3740"] + - [0x70037C0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_37C0"] + - [0x7003830, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3830"] + - [0x7003930, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3930"] + - [0x7003AA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3AA0"] + - [0x7003BA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3BA0"] + - [0x7003C40, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3C40"] + - [0x7003D08, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3D08"] + - [0x7003D90, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3D90"] + - [0x7003E10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E10"] + - [0x7003E88, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3E88"] + - [0x7003F00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3F00"] + - [0x7003F78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_3F78"] + - [0x7004008, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4008"] + - [0x7004070, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4070"] + - [0x70040D0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_40D0"] + - [0x7004160, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4160"] + - [0x70041F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_41F8"] + - [0x70042A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_42A8"] + - [0x7004358, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4358"] + - [0x7004408, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4408"] + - [0x70044B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_44B8"] + - [0x7004568, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4568"] + - [0x7004618, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4618"] + - [0x70046C8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_46C8"] + - [0x7004798, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4798"] + - [0x7004848, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4848"] + - [0x70048F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_48F8"] + - [0x70049A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_49A8"] + - [0x7004A58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4A58"] + - [0x7004B08, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4B08"] + - [0x7004BA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4BA0"] + - [0x7004C50, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4C50"] + - [0x7004D00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4D00"] + - [0x7004DB0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4DB0"] + - [0x7004E60, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4E60"] + - [0x7004EF8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4EF8"] + - [0x7004FD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_4FD0"] + - [0x7005078, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5078"] + - [0x7005120, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5120"] + - [0x70051E0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_51E0"] + - [0x7005278, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5278"] + - [0x70052F8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_52F8"] + - [0x7005378, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5378"] + - [0x70053B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_53B8"] + - [0x7005498, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5498"] + - [0x70054A8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_54A8"] + - [0x7005520, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5520"] + - [0x7005598, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5598"] + - [0x7005610, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5610"] + - [0x7005688, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5688"] + - [0x7005700, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5700"] + - [0x7005778, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5778"] + - [0x7005820, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5820"] + - [0x7005898, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5898"] + - [0x7005910, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5910"] + - [0x7005988, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5988"] + - [0x7005A00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5A00"] + - [0x7005A78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5A78"] + - [0x7005AF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5AF0"] + - [0x7005B68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5B68"] + - [0x7005BE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5BE0"] + - [0x7005C58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5C58"] + - [0x7005CD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5CD0"] + - [0x7005D60, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5D60"] + - [0x7005DC8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5DC8"] + - [0x7005E30, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5E30"] + - [0x7005EA0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5EA0"] + - [0x7005F10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5F10"] + - [0x7005F78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5F78"] + - [0x7005FE8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_5FE8"] + - [0x7006058, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6058"] + - [0x7006098, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6098"] + - [0x7006310, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6310"] + - [0x7006320, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6320"] + - [0x70063B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_63B8"] + - [0x7006450, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6450"] + - [0x70064E8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_64E8"] + - [0x7006580, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6580"] + - [0x7006640, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6640"] + - [0x70066D8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_66D8"] + - [0x7006770, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6770"] + - [0x7006808, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6808"] + - [0x70068A0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_68A0"] + - [0x7006918, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6918"] + - [0x70069B0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_69B0"] + - [0x7006A10, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6A10"] + - [0x7006A88, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6A88"] + - [0x7006B00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6B00"] + - [0x7006B78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6B78"] + - [0x7006BF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6BF0"] + - [0x7006C68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6C68"] + - [0x7006D00, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6D00"] + - [0x7006D78, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6D78"] + - [0x7006DF0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6DF0"] + - [0x7006E68, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6E68"] + - [0x7006EE0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6EE0"] + - [0x7006F58, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6F58"] + - [0x7006FD0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_6FD0"] + - [0x7007048, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7048"] + - [0x70070C0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_70C0"] + - [0x7007138, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7138"] + - [0x70071B0, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_71B0"] + - [0x7007228, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7228"] + - [0x70072B8, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_72B8"] + - [0x7007338, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7338"] + - [0x7007348, "models/tracks/banshee_boardwalk/banshee_boardwalk_displaylists/d_course_banshee_boardwalk_packed_dl_7348"] + + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_banshee_boardwalk_bat: + range: [0x7DB8, 0x95B8] + mode: APPEND +d_course_banshee_boardwalk_unknown_waypoints: + symbol: d_course_banshee_boardwalk_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x4578 + count: 79 +d_course_banshee_boardwalk_track_waypoints: + symbol: d_course_banshee_boardwalk_track_waypoints + type: mk64:TRACK_PATH + offset: 0x47F0 + count: 658 +d_course_banshee_boardwalk_item_box_spawns: + symbol: d_course_banshee_boardwalk_item_box_spawns + type: mk64:spawn_data + offset: 0xB3D0 + count: 17 +d_course_banshee_boardwalk_track_sections: + symbol: d_course_banshee_boardwalk_track_sections + type: mk64:track_sections + offset: 0xB458 + count: 49 diff --git a/yamls/us/big_donut_data.yml b/yamls/us/other/tracks/big_donut/big_donut_data.yml similarity index 80% rename from yamls/us/big_donut_data.yml rename to yamls/us/other/tracks/big_donut/big_donut_data.yml index 56dd752fd..ef657e781 100644 --- a/yamls/us/big_donut_data.yml +++ b/yamls/us/other/tracks/big_donut/big_donut_data.yml @@ -10,11 +10,6 @@ - '#include ' - '#include ' references_packed_displaylists: true -d_course_big_donut_dl: - symbol: d_course_big_donut_dl - type: gfx - offset: 0x0 - otr_mode: index d_course_big_donut_item_box_spawns: symbol: d_course_big_donut_item_box_spawns type: mk64:spawn_data diff --git a/yamls/us/block_fort_data.yml b/yamls/us/other/tracks/block_fort/block_fort_data.yml similarity index 80% rename from yamls/us/block_fort_data.yml rename to yamls/us/other/tracks/block_fort/block_fort_data.yml index 57a762ed8..6c341af02 100644 --- a/yamls/us/block_fort_data.yml +++ b/yamls/us/other/tracks/block_fort/block_fort_data.yml @@ -10,11 +10,6 @@ - '#include ' - '#include ' references_packed_displaylists: true -d_course_block_fort_dl: - symbol: d_course_block_fort_dl - type: gfx - offset: 0x0 - otr_mode: index d_course_block_fort_item_box_spawns: symbol: d_course_block_fort_item_box_spawns type: mk64:spawn_data diff --git a/yamls/us/other/tracks/bowsers_castle/bowsers_castle_data.yml b/yamls/us/other/tracks/bowsers_castle/bowsers_castle_data.yml new file mode 100644 index 000000000..4b17fb773 --- /dev/null +++ b/yamls/us/other/tracks/bowsers_castle/bowsers_castle_data.yml @@ -0,0 +1,219 @@ +:config: + segments: + - [0x06, 0x82DF40] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_0"] + - [0x7000060, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_60"] + - [0x70000C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_C0"] + - [0x7000120, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_120"] + - [0x7000188, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_188"] + - [0x70001E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1E8"] + - [0x7000248, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_248"] + - [0x7000280, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_280"] + - [0x7000328, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_328"] + - [0x7000338, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_338"] + - [0x70003B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3B0"] + - [0x70003C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C0"] + - [0x7000428, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_428"] + - [0x7000438, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_438"] + - [0x7000460, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_460"] + - [0x7000470, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_470"] + - [0x7000A10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_A10"] + - [0x7000A20, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_A20"] + - [0x7000B80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_B80"] + - [0x7000D38, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_D38"] + - [0x70011F8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_11F8"] + - [0x7001218, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1218"] + - [0x7001350, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1350"] + - [0x7001360, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1360"] + - [0x7001448, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1448"] + - [0x7001530, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1530"] + - [0x7001618, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1618"] + - [0x7001700, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1700"] + - [0x70017E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_17E8"] + - [0x70018D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_18D0"] + - [0x70019B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_19B8"] + - [0x7001AA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1AA0"] + - [0x7001B88, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1B88"] + - [0x7001C70, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1C70"] + - [0x7001D58, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1D58"] + - [0x7001E40, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1E40"] + - [0x7001EA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1EA8"] + - [0x7001FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_1FA0"] + - [0x7002098, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2098"] + - [0x70020B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_20B0"] + - [0x7002128, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2128"] + - [0x7002188, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2188"] + - [0x7002228, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2228"] + - [0x7002290, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2290"] + - [0x7002310, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2310"] + - [0x7002378, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2378"] + - [0x70023E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_23E0"] + - [0x7002450, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2450"] + - [0x70024B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_24B0"] + - [0x7002528, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2528"] + - [0x7002598, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2598"] + - [0x7002610, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2610"] + - [0x7002698, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2698"] + - [0x7002708, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2708"] + - [0x7002770, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2770"] + - [0x70027E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_27E8"] + - [0x7002858, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2858"] + - [0x70028B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_28B8"] + - [0x7002920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2920"] + - [0x70029A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_29A0"] + - [0x7002A48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2A48"] + - [0x7002BA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2BA8"] + - [0x7002BB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_2BB8"] + - [0x70030C8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_30C8"] + - [0x70032F0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_32F0"] + - [0x7003308, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3308"] + - [0x7003568, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3568"] + - [0x7003578, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3578"] + - [0x7003920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3920"] + - [0x7003930, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3930"] + - [0x7003C70, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C70"] + - [0x7003C80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_3C80"] + - [0x7004198, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4198"] + - [0x70041A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_41A8"] + - [0x7004598, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4598"] + - [0x70048A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_48A8"] + - [0x7004BB0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4BB0"] + - [0x7004EB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_4EB8"] + - [0x70051B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_51B8"] + - [0x70051E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_51E8"] + - [0x7005270, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5270"] + - [0x7005300, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5300"] + - [0x7005378, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5378"] + - [0x70053E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_53E0"] + - [0x7005448, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5448"] + - [0x70054E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_54E8"] + - [0x7005560, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5560"] + - [0x70055E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_55E8"] + - [0x7005678, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5678"] + - [0x70056F0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_56F0"] + - [0x7005778, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5778"] + - [0x70057E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_57E8"] + - [0x7005850, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5850"] + - [0x7005A78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5A78"] + - [0x7005BB0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5BB0"] + - [0x7005BC8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5BC8"] + - [0x7005D88, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5D88"] + - [0x7005D98, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_5D98"] + - [0x7006200, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6200"] + - [0x70063B8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_63B8"] + - [0x70063D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_63D0"] + - [0x70064A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_64A8"] + - [0x7006580, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6580"] + - [0x7006658, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6658"] + - [0x7006678, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6678"] + - [0x70066E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_66E8"] + - [0x7006760, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6760"] + - [0x7006778, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6778"] + - [0x7006A80, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6A80"] + - [0x7006A90, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6A90"] + - [0x7006BC0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6BC0"] + - [0x7006CA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6CA0"] + - [0x7006CB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6CB8"] + - [0x7006D78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6D78"] + - [0x7006E48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6E48"] + - [0x7006F08, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6F08"] + - [0x7006FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_6FA0"] + - [0x7007038, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7038"] + - [0x70070D0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_70D0"] + - [0x7007180, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7180"] + - [0x7007288, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7288"] + - [0x7007340, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7340"] + - [0x7007418, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7418"] + - [0x7007520, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7520"] + - [0x70075E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_75E8"] + - [0x7007650, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7650"] + - [0x70076C0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_76C0"] + - [0x7007730, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7730"] + - [0x70077A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_77A0"] + - [0x7007820, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7820"] + - [0x7007898, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7898"] + - [0x7007908, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7908"] + - [0x7007998, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7998"] + - [0x7007A10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7A10"] + - [0x7007A78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7A78"] + - [0x7007AD8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7AD8"] + - [0x7007B50, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7B50"] + - [0x7007BB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7BB8"] + - [0x7007C30, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7C30"] + - [0x7007CC0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7CC0"] + - [0x7007D48, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7D48"] + - [0x7007DB8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7DB8"] + - [0x7007E28, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7E28"] + - [0x7007EA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7EA0"] + - [0x7007F20, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7F20"] + - [0x7007F98, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_7F98"] + - [0x7008008, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8008"] + - [0x7008078, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8078"] + - [0x70080E0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_80E0"] + - [0x7008148, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8148"] + - [0x70081B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_81B0"] + - [0x7008218, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8218"] + - [0x7008278, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8278"] + - [0x70082D8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_82D8"] + - [0x7008348, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8348"] + - [0x70083B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_83B0"] + - [0x70084A8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_84A8"] + - [0x70087E8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_87E8"] + - [0x7008BE0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8BE0"] + - [0x7008C78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8C78"] + - [0x7008D10, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8D10"] + - [0x7008DA8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8DA8"] + - [0x7008E40, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8E40"] + - [0x7008E78, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8E78"] + - [0x7008FA0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_8FA0"] + - [0x7009278, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9278"] + - [0x7009290, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9290"] + - [0x7009328, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9328"] + - [0x70093A0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_93A0"] + - [0x7009438, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9438"] + - [0x70094B0, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_94B0"] + - [0x70094D8, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_94D8"] + - [0x7009820, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9820"] + - [0x7009830, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9830"] + - [0x7009910, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9910"] + - [0x7009920, "models/tracks/bowsers_castle/bowsers_castle_displaylists/d_course_bowsers_castle_packed_dl_9920"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_bowsers_castle_thwomp_faces: + range: [0x7138, 0x8538] + mode: APPEND +d_course_bowsers_castle_unknown_waypoints: + symbol: d_course_bowsers_castle_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x4F90 + count: 72 +d_course_bowsers_castle_track_waypoints: + symbol: d_course_bowsers_castle_track_waypoints + type: mk64:TRACK_PATH + offset: 0x51D0 + count: 685 +d_course_bowsers_castle_tree_spawn: + symbol: d_course_bowsers_castle_tree_spawn + type: mk64:spawn_data + offset: 0x9290 + count: 28 +d_course_bowsers_castle_item_box_spawns: + symbol: d_course_bowsers_castle_item_box_spawns + type: mk64:spawn_data + offset: 0x9370 + count: 13 +d_course_bowsers_castle_addr: + symbol: d_course_bowsers_castle_addr + type: mk64:track_sections + offset: 0x93D8 + count: 37 diff --git a/yamls/us/other/tracks/choco_mountain/choco_mountain_data.yml b/yamls/us/other/tracks/choco_mountain/choco_mountain_data.yml new file mode 100644 index 000000000..3d6a2e299 --- /dev/null +++ b/yamls/us/other/tracks/choco_mountain/choco_mountain_data.yml @@ -0,0 +1,170 @@ +:config: + segments: + - [0x06, 0x82B620] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_0"] + - [0x7000098, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_98"] + - [0x7000178, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_178"] + - [0x7000280, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_280"] + - [0x7000340, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_340"] + - [0x70003C8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3C8"] + - [0x7000448, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_448"] + - [0x7000480, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_480"] + - [0x7000508, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_508"] + - [0x7000570, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_570"] + - [0x70005D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5D8"] + - [0x70005F8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5F8"] + - [0x7000718, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_718"] + - [0x7000728, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_728"] + - [0x7000748, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_748"] + - [0x7000758, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_758"] + - [0x7000828, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_828"] + - [0x7000838, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_838"] + - [0x70008E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_8E0"] + - [0x70008F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_8F0"] + - [0x70009B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_9B0"] + - [0x7000A60, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_A60"] + - [0x7000AF8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_AF8"] + - [0x7000B88, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_B88"] + - [0x7000C18, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_C18"] + - [0x7000CA0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_CA0"] + - [0x7000D38, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_D38"] + - [0x7000DD0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_DD0"] + - [0x7000EB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_EB8"] + - [0x7000F68, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_F68"] + - [0x7001018, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1018"] + - [0x7001100, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1100"] + - [0x7001200, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1200"] + - [0x70012A0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_12A0"] + - [0x7001338, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1338"] + - [0x70013E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_13E8"] + - [0x7001488, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1488"] + - [0x7001538, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1538"] + - [0x70015D0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_15D0"] + - [0x7001670, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1670"] + - [0x7001740, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1740"] + - [0x70017E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_17E0"] + - [0x70018E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_18E8"] + - [0x7001988, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1988"] + - [0x7001A48, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1A48"] + - [0x7001AC8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1AC8"] + - [0x7001BE0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1BE0"] + - [0x7001C98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1C98"] + - [0x7001DB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1DB8"] + - [0x7001E90, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1E90"] + - [0x7001FE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_1FE8"] + - [0x70020F8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_20F8"] + - [0x70021D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_21D8"] + - [0x7002278, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2278"] + - [0x7002380, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2380"] + - [0x7002458, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2458"] + - [0x7002530, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2530"] + - [0x7002600, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2600"] + - [0x70026C0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_26C0"] + - [0x7002760, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2760"] + - [0x70027F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_27F0"] + - [0x70028B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_28B0"] + - [0x70029E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_29E8"] + - [0x7002AE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2AE8"] + - [0x7002BD0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2BD0"] + - [0x7002CA8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2CA8"] + - [0x7002D68, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2D68"] + - [0x7002E38, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2E38"] + - [0x7002EE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2EE8"] + - [0x7002FE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_2FE8"] + - [0x70030A8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_30A8"] + - [0x7003188, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3188"] + - [0x7003200, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3200"] + - [0x70032F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_32F0"] + - [0x7003390, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3390"] + - [0x7003410, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3410"] + - [0x70034E0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_34E0"] + - [0x70035B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_35B0"] + - [0x7003670, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3670"] + - [0x7003708, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3708"] + - [0x70037B0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_37B0"] + - [0x70038B8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_38B8"] + - [0x7003998, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3998"] + - [0x7003A80, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3A80"] + - [0x7003B98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3B98"] + - [0x7003CF0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3CF0"] + - [0x7003DD8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3DD8"] + - [0x7003EE8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3EE8"] + - [0x7003FB8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_3FB8"] + - [0x7004148, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4148"] + - [0x7004608, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4608"] + - [0x7004618, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4618"] + - [0x7004690, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4690"] + - [0x70046F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_46F0"] + - [0x7004790, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4790"] + - [0x7004840, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4840"] + - [0x70048E8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_48E8"] + - [0x7004970, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4970"] + - [0x70049F0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_49F0"] + - [0x7004AB0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4AB0"] + - [0x7004B58, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4B58"] + - [0x7004C08, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4C08"] + - [0x7004CC8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4CC8"] + - [0x7004D90, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4D90"] + - [0x7004E40, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4E40"] + - [0x7004EB0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4EB0"] + - [0x7004F30, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4F30"] + - [0x7004FC0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_4FC0"] + - [0x7005070, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5070"] + - [0x7005148, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5148"] + - [0x70051D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_51D8"] + - [0x7005258, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5258"] + - [0x70052C8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_52C8"] + - [0x7005338, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5338"] + - [0x70053D8, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_53D8"] + - [0x7005490, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5490"] + - [0x7005558, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5558"] + - [0x7005688, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5688"] + - [0x7005778, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5778"] + - [0x7005868, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5868"] + - [0x7005888, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5888"] + - [0x7005910, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5910"] + - [0x70059A0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_59A0"] + - [0x7005A00, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A00"] + - [0x7005A70, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A70"] + - [0x7005A98, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5A98"] + - [0x7005AE0, "models/tracks/choco_mountain/choco_mountain_displaylists/d_course_choco_mountain_packed_dl_5AE0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_choco_mountain_unknown_waypoints: + symbol: d_course_choco_mountain_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x4480 + count: 110 +d_course_choco_mountain_track_waypoints: + symbol: d_course_choco_mountain_track_waypoints + type: mk64:TRACK_PATH + offset: 0x47f0 + count: 606 +d_course_choco_mountain_light: + symbol: d_course_choco_mountain_light + type: lights + offset: 0x5ae0 +d_course_choco_mountain_falling_rock_spawns: + symbol: d_course_choco_mountain_falling_rock_spawns + type: mk64:spawn_data + offset: 0x7230 + count: 4 +d_course_choco_mountain_item_box_spawns: + symbol: d_course_choco_mountain_item_box_spawns + type: mk64:spawn_data + offset: 0x7250 + count: 16 +d_course_choco_mountain_addr: + symbol: d_course_choco_mountain_addr + type: mk64:track_sections + offset: 0x72d0 + count: 71 diff --git a/yamls/us/other/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml b/yamls/us/other/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml new file mode 100644 index 000000000..bb4e9edff --- /dev/null +++ b/yamls/us/other/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml @@ -0,0 +1,263 @@ +:config: + segments: + - [0x06, 0x885A10] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_0"] + - [0x7000200, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_200"] + - [0x7000398, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_398"] + - [0x7000520, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_520"] + - [0x70006C8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C8"] + - [0x70007E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7E0"] + - [0x7000918, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_918"] + - [0x7000A40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_A40"] + - [0x7000B68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_B68"] + - [0x7000C90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_C90"] + - [0x7000EC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_EC8"] + - [0x7000FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_FD0"] + - [0x7001118, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1118"] + - [0x70012A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_12A8"] + - [0x7001430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1430"] + - [0x70015B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_15B0"] + - [0x70017D0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_17D0"] + - [0x7001970, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1970"] + - [0x7001B38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1B38"] + - [0x7001C98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1C98"] + - [0x7001EB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_1EB8"] + - [0x7002040, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2040"] + - [0x70020A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_20A0"] + - [0x7002100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2100"] + - [0x7002160, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2160"] + - [0x70021C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_21C0"] + - [0x7002378, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2378"] + - [0x70023F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_23F0"] + - [0x7002450, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2450"] + - [0x70024B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_24B0"] + - [0x7002510, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2510"] + - [0x7002570, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2570"] + - [0x7002788, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2788"] + - [0x7002890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2890"] + - [0x70029F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_29F0"] + - [0x7002B78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2B78"] + - [0x7002D00, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2D00"] + - [0x7002D60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2D60"] + - [0x7002DC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2DC8"] + - [0x7002E28, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2E28"] + - [0x7002E88, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2E88"] + - [0x7002FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_2FD0"] + - [0x7003058, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3058"] + - [0x70030C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_30C0"] + - [0x7003130, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3130"] + - [0x70031A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_31A0"] + - [0x7003228, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3228"] + - [0x70032A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_32A0"] + - [0x70032D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_32D8"] + - [0x7003348, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3348"] + - [0x70033A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_33A8"] + - [0x7003420, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3420"] + - [0x7003498, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3498"] + - [0x7003508, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3508"] + - [0x7003588, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3588"] + - [0x70035F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_35F0"] + - [0x7003660, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3660"] + - [0x70036A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_36A8"] + - [0x7003748, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3748"] + - [0x7003758, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3758"] + - [0x70037C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_37C0"] + - [0x7003A30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3A30"] + - [0x7003A48, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3A48"] + - [0x7003AD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3AD0"] + - [0x7003AE0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3AE0"] + - [0x7003B18, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3B18"] + - [0x7003B28, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3B28"] + - [0x7003BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3BA8"] + - [0x7003C50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3C50"] + - [0x7003D08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3D08"] + - [0x7003DA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3DA8"] + - [0x7003DD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3DD0"] + - [0x7003E40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3E40"] + - [0x7003EB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3EB0"] + - [0x7003F30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3F30"] + - [0x7003FA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3FA8"] + - [0x7003FD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_3FD0"] + - [0x7004230, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4230"] + - [0x7004300, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4300"] + - [0x7004548, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4548"] + - [0x7004760, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4760"] + - [0x7004788, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4788"] + - [0x7004858, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4858"] + - [0x7004948, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4948"] + - [0x7004A08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4A08"] + - [0x7004AB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4AB0"] + - [0x7004B90, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4B90"] + - [0x7004CA0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4CA0"] + - [0x7004D30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4D30"] + - [0x7004DB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4DB8"] + - [0x7004EB8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4EB8"] + - [0x7004FE8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_4FE8"] + - [0x70050A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_50A8"] + - [0x70051C8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_51C8"] + - [0x70052C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_52C0"] + - [0x7005420, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5420"] + - [0x70054D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_54D8"] + - [0x7005558, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5558"] + - [0x70055D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_55D8"] + - [0x7005648, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5648"] + - [0x70056B8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_56B8"] + - [0x7005768, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5768"] + - [0x7005800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5800"] + - [0x7005890, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5890"] + - [0x70058F8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_58F8"] + - [0x7005970, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5970"] + - [0x70059E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_59E0"] + - [0x7005A50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5A50"] + - [0x7005AB0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5AB0"] + - [0x7005B50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5B50"] + - [0x7005BE0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5BE0"] + - [0x7005C68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5C68"] + - [0x7005D68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5D68"] + - [0x7005DF0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5DF0"] + - [0x7005E70, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5E70"] + - [0x7005EF0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5EF0"] + - [0x7005F80, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_5F80"] + - [0x7006008, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6008"] + - [0x7006098, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6098"] + - [0x7006100, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6100"] + - [0x70061B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_61B0"] + - [0x7006240, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6240"] + - [0x7006368, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6368"] + - [0x7006430, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6430"] + - [0x70064C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_64C0"] + - [0x7006530, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6530"] + - [0x70065A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_65A8"] + - [0x7006620, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6620"] + - [0x70066B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_66B0"] + - [0x7006728, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6728"] + - [0x7006798, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6798"] + - [0x7006818, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6818"] + - [0x7006930, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6930"] + - [0x70069A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_69A0"] + - [0x7006A10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6A10"] + - [0x7006AA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6AA8"] + - [0x7006B48, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6B48"] + - [0x7006BD0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6BD0"] + - [0x7006C38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C38"] + - [0x7006C98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6C98"] + - [0x7006D08, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6D08"] + - [0x7006D68, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6D68"] + - [0x7006DD8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6DD8"] + - [0x7006E40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6E40"] + - [0x7006F10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6F10"] + - [0x7006F98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_6F98"] + - [0x7007048, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7048"] + - [0x70070C0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_70C0"] + - [0x7007170, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7170"] + - [0x70071E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_71E8"] + - [0x70072A8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_72A8"] + - [0x7007390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7390"] + - [0x7007400, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7400"] + - [0x7007488, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7488"] + - [0x7007538, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7538"] + - [0x70076A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_76A0"] + - [0x70077E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_77E8"] + - [0x7007920, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7920"] + - [0x7007A88, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7A88"] + - [0x7007B10, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7B10"] + - [0x7007C78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7C78"] + - [0x7007DA0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7DA0"] + - [0x7007E50, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7E50"] + - [0x7007F58, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7F58"] + - [0x7007FC8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_7FC8"] + - [0x70080A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_80A0"] + - [0x7008140, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8140"] + - [0x7008358, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8358"] + - [0x7008458, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8458"] + - [0x70085A0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_85A0"] + - [0x7008648, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8648"] + - [0x70086B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_86B0"] + - [0x7008760, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8760"] + - [0x7008800, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8800"] + - [0x70089B0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_89B0"] + - [0x7008A40, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8A40"] + - [0x7008BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8BA8"] + - [0x7008C60, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8C60"] + - [0x7008E78, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8E78"] + - [0x7008F30, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_8F30"] + - [0x7009000, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9000"] + - [0x7009128, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9128"] + - [0x7009250, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9250"] + - [0x7009268, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9268"] + - [0x70092D8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_92D8"] + - [0x70092E8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_92E8"] + - [0x7009390, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9390"] + - [0x7009418, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9418"] + - [0x70094D0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_94D0"] + - [0x7009588, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9588"] + - [0x7009630, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9630"] + - [0x70096F8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_96F8"] + - [0x7009790, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9790"] + - [0x7009838, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9838"] + - [0x7009880, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9880"] + - [0x70098E0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_98E0"] + - [0x70098F0, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_98F0"] + - [0x7009988, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9988"] + - [0x7009A20, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9A20"] + - [0x7009A38, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9A38"] + - [0x7009B98, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9B98"] + - [0x7009BA8, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9BA8"] + - [0x7009C18, "models/tracks/dks_jungle_parkway/dks_jungle_parkway_displaylists/d_course_dks_jungle_parkway_packed_dl_9C18"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_dks_jungle_parkway_unknown_waypoints: + symbol: d_course_dks_jungle_parkway_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x71F0 + count: 102 +d_course_dks_jungle_parkway_unknown_waypoints2: + symbol: d_course_dks_jungle_parkway_unknown_waypoints2 + type: mk64:TRACK_PATH + offset: 0x7520 + count: 32 +d_course_dks_jungle_parkway_track_waypoints: + symbol: d_course_dks_jungle_parkway_track_waypoints + type: mk64:TRACK_PATH + offset: 0x7620 + count: 787 +d_course_dks_jungle_parkway_unknown_light1: + symbol: d_course_dks_jungle_parkway_unknown_light1 + type: lights + offset: 0x9DE8 +d_course_dks_jungle_parkway_unknown_light2: + symbol: d_course_dks_jungle_parkway_unknown_light2 + type: lights + offset: 0x9E00 +d_course_dks_jungle_parkway_unknown_light3: + symbol: d_course_dks_jungle_parkway_unknown_light3 + type: lights + offset: 0x9E18 +d_course_dks_jungle_parkway_unknown_light4: + symbol: d_course_dks_jungle_parkway_unknown_light4 + type: lights + offset: 0x9E30 +d_course_dks_jungle_parkway_item_box_spawns: + symbol: d_course_dks_jungle_parkway_item_box_spawns + type: mk64:spawn_data + offset: 0x13EC0 + count: 23 +d_course_dks_jungle_parkway_tree_spawn: + symbol: d_course_dks_jungle_parkway_tree_spawn + type: mk64:unk_spawn_data + offset: 0x13F78 + count: 96 +d_course_dks_jungle_parkway_addr: + symbol: d_course_dks_jungle_parkway_addr + type: mk64:track_sections + offset: 0x14338 + count: 115 diff --git a/yamls/us/double_deck_data.yml b/yamls/us/other/tracks/double_deck/double_deck_data.yml similarity index 80% rename from yamls/us/double_deck_data.yml rename to yamls/us/other/tracks/double_deck/double_deck_data.yml index d22b1d7b2..c23726536 100644 --- a/yamls/us/double_deck_data.yml +++ b/yamls/us/other/tracks/double_deck/double_deck_data.yml @@ -10,11 +10,6 @@ - '#include ' - '#include ' references_packed_displaylists: true -d_course_double_deck_dl: - symbol: d_course_double_deck_dl - type: gfx - offset: 0x0 - otr_mode: index d_course_double_deck_item_box_spawns: symbol: d_course_double_deck_item_box_spawns type: mk64:spawn_data diff --git a/yamls/us/other/tracks/frappe_snowland/frappe_snowland_data.yml b/yamls/us/other/tracks/frappe_snowland/frappe_snowland_data.yml new file mode 100644 index 000000000..3702d8375 --- /dev/null +++ b/yamls/us/other/tracks/frappe_snowland/frappe_snowland_data.yml @@ -0,0 +1,181 @@ +:config: + segments: + - [0x06, 0x83F740] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_0"] + - [0x7000088, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_88"] + - [0x7000098, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_98"] + - [0x70000A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_A8"] + - [0x70000B8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B8"] + - [0x70001A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1A0"] + - [0x7000250, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_250"] + - [0x7000370, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_370"] + - [0x7000520, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_520"] + - [0x7000548, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_548"] + - [0x7000808, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_808"] + - [0x7000818, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_818"] + - [0x7000878, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_878"] + - [0x70008E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_8E0"] + - [0x7000960, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_960"] + - [0x70009D8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_9D8"] + - [0x7000A48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_A48"] + - [0x7000AB0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_AB0"] + - [0x7000B30, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B30"] + - [0x7000B70, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_B70"] + - [0x7000BF0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_BF0"] + - [0x7000CC0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_CC0"] + - [0x7000D28, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_D28"] + - [0x7000DA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_DA0"] + - [0x7000E18, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_E18"] + - [0x7000E98, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_E98"] + - [0x7000F08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_F08"] + - [0x7000FA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_FA0"] + - [0x7001018, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1018"] + - [0x7001080, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1080"] + - [0x70010E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_10E0"] + - [0x7001150, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1150"] + - [0x70011B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_11B0"] + - [0x7001218, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1218"] + - [0x7001288, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1288"] + - [0x70012E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_12E8"] + - [0x7001360, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1360"] + - [0x70013F0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_13F0"] + - [0x7001458, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1458"] + - [0x70014C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_14C8"] + - [0x7001538, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1538"] + - [0x70015B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_15B0"] + - [0x7001628, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1628"] + - [0x7001698, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1698"] + - [0x7001708, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1708"] + - [0x7001748, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1748"] + - [0x7001860, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1860"] + - [0x7001910, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1910"] + - [0x7001A08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1A08"] + - [0x7001B20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1B20"] + - [0x7001BE8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1BE8"] + - [0x7001C98, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1C98"] + - [0x7001D60, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1D60"] + - [0x7001E40, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1E40"] + - [0x7001F10, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_1F10"] + - [0x7002018, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2018"] + - [0x70020C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_20C8"] + - [0x7002160, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2160"] + - [0x7002210, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2210"] + - [0x70022C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_22C8"] + - [0x7002350, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2350"] + - [0x7002418, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2418"] + - [0x70024A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_24A0"] + - [0x7002548, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2548"] + - [0x70025D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_25D0"] + - [0x7002670, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2670"] + - [0x70026A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_26A8"] + - [0x7002710, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2710"] + - [0x70027A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_27A8"] + - [0x7002840, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2840"] + - [0x70028D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_28D0"] + - [0x7002960, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2960"] + - [0x70029E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_29E8"] + - [0x7002A90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2A90"] + - [0x7002AD0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2AD0"] + - [0x7002B38, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2B38"] + - [0x7002B48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_2B48"] + - [0x7003118, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3118"] + - [0x7003128, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3128"] + - [0x7003358, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3358"] + - [0x70035A8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_35A8"] + - [0x7003758, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3758"] + - [0x7003B20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3B20"] + - [0x7003B48, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3B48"] + - [0x7003BD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3BD8"] + - [0x7003CD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3CD8"] + - [0x7003D58, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3D58"] + - [0x7003DD8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3DD8"] + - [0x7003E68, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3E68"] + - [0x7003EF8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3EF8"] + - [0x7003F80, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_3F80"] + - [0x7004020, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4020"] + - [0x70040B0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_40B0"] + - [0x7004120, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4120"] + - [0x7004188, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4188"] + - [0x7004208, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4208"] + - [0x7004288, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4288"] + - [0x7004300, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4300"] + - [0x7004378, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4378"] + - [0x70043E8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_43E8"] + - [0x7004490, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4490"] + - [0x7004520, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4520"] + - [0x7004590, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4590"] + - [0x7004608, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4608"] + - [0x7004680, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4680"] + - [0x7004700, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4700"] + - [0x7004778, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4778"] + - [0x70047F8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_47F8"] + - [0x7004880, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4880"] + - [0x70048C0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_48C0"] + - [0x70049E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_49E0"] + - [0x7004BA0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4BA0"] + - [0x7004D18, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4D18"] + - [0x7004E40, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4E40"] + - [0x7004F00, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4F00"] + - [0x7004FF8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_4FF8"] + - [0x70050D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_50D0"] + - [0x70051C8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_51C8"] + - [0x7005330, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5330"] + - [0x70054A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_54A0"] + - [0x70055D0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_55D0"] + - [0x7005740, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5740"] + - [0x70058C0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_58C0"] + - [0x7005988, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5988"] + - [0x7005A20, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5A20"] + - [0x7005AC0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5AC0"] + - [0x7005B58, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5B58"] + - [0x7005BE0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5BE0"] + - [0x7005C70, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5C70"] + - [0x7005D90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5D90"] + - [0x7005E08, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5E08"] + - [0x7005EA8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5EA8"] + - [0x7005F90, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_5F90"] + - [0x7006088, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6088"] + - [0x70061A0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_61A0"] + - [0x7006268, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6268"] + - [0x70062F8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_62F8"] + - [0x70063D8, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_63D8"] + - [0x70065E0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_65E0"] + - [0x70065F0, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_65F0"] + - [0x7006638, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6638"] + - [0x7006650, "models/tracks/frappe_snowland/frappe_snowland_displaylists/d_course_frappe_snowland_packed_dl_6650"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_frappe_snowland_unknown_waypoints: + symbol: d_course_frappe_snowland_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x34A0 + count: 73 +d_course_frappe_snowland_track_waypoints: + symbol: d_course_frappe_snowland_track_waypoints + type: mk64:TRACK_PATH + offset: 0x36E8 + count: 647 +d_course_frappe_snowland_tree_spawns: + symbol: d_course_frappe_snowland_tree_spawns + type: mk64:spawn_data + offset: 0x7718 + count: 31 +d_course_frappe_snowland_item_box_spawns: + symbol: d_course_frappe_snowland_item_box_spawns + type: mk64:spawn_data + offset: 0x7810 + count: 16 +d_course_frappe_snowland_addr: + symbol: d_course_frappe_snowland_addr + type: mk64:track_sections + offset: 0x79A0 + count: 48 diff --git a/yamls/us/other/tracks/kalimari_desert/kalimari_desert_data.yml b/yamls/us/other/tracks/kalimari_desert/kalimari_desert_data.yml new file mode 100644 index 000000000..18b5c3208 --- /dev/null +++ b/yamls/us/other/tracks/kalimari_desert/kalimari_desert_data.yml @@ -0,0 +1,349 @@ +:config: + segments: + - [0x06, 0x8666a0] + - [0x07, 0x800000] + manual_segments: + - [0x7000000, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_0"] + - [0x7000068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_68"] + - [0x70000D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_D0"] + - [0x7000138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_138"] + - [0x70001A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1A0"] + - [0x7000208, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_208"] + - [0x7000270, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_270"] + - [0x70002A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2A8"] + - [0x7000358, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_358"] + - [0x70003E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E0"] + - [0x7000458, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_458"] + - [0x7000538, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_538"] + - [0x70005F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5F8"] + - [0x70006A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6A0"] + - [0x7000760, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_760"] + - [0x7000840, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_840"] + - [0x7000900, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_900"] + - [0x7000998, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_998"] + - [0x70009F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F0"] + - [0x7000A08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A08"] + - [0x7000A18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A18"] + - [0x7000A90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A90"] + - [0x7000AF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_AF8"] + - [0x7000B58, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_B58"] + - [0x7000BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_BC8"] + - [0x7000C30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_C30"] + - [0x7000C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_C98"] + - [0x7000CF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_CF8"] + - [0x7000D60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_D60"] + - [0x7000DC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_DC0"] + - [0x7000E20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_E20"] + - [0x7000E80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_E80"] + - [0x7000EE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_EE8"] + - [0x7000F48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_F48"] + - [0x7000FB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_FB8"] + - [0x7001028, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1028"] + - [0x7001098, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1098"] + - [0x7001110, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1110"] + - [0x7001178, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1178"] + - [0x70011E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_11E0"] + - [0x7001248, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1248"] + - [0x70012F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_12F0"] + - [0x70013D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_13D0"] + - [0x70014A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_14A0"] + - [0x7001580, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1580"] + - [0x7001650, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1650"] + - [0x7001678, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1678"] + - [0x7001710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1710"] + - [0x7001898, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1898"] + - [0x70019B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_19B8"] + - [0x7001A78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1A78"] + - [0x7001B18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1B18"] + - [0x7001B48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1B48"] + - [0x7001BE0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1BE0"] + - [0x7001C78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1C78"] + - [0x7001D10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1D10"] + - [0x7001DA8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1DA8"] + - [0x7001E40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1E40"] + - [0x7001ED8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1ED8"] + - [0x7001F10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1F10"] + - [0x7001F78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_1F78"] + - [0x7002000, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2000"] + - [0x7002068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2068"] + - [0x70020D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_20D0"] + - [0x7002130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2130"] + - [0x7002198, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2198"] + - [0x70021F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_21F8"] + - [0x7002260, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2260"] + - [0x70022D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_22D0"] + - [0x7002338, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2338"] + - [0x70023C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_23C0"] + - [0x7002430, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2430"] + - [0x70024B0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_24B0"] + - [0x7002528, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2528"] + - [0x7002598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2598"] + - [0x7002620, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2620"] + - [0x7002698, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2698"] + - [0x7002710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2710"] + - [0x7002778, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2778"] + - [0x7002808, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2808"] + - [0x7002878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2878"] + - [0x70028E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_28E8"] + - [0x7002960, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2960"] + - [0x70029F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_29F0"] + - [0x7002AB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2AB8"] + - [0x7002B20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2B20"] + - [0x7002B80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2B80"] + - [0x7002BE0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2BE0"] + - [0x7002C48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2C48"] + - [0x7002CB8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2CB8"] + - [0x7002D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2D20"] + - [0x7002D90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2D90"] + - [0x7002DF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2DF8"] + - [0x7002E60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2E60"] + - [0x7002EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2EC8"] + - [0x7002F30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2F30"] + - [0x7002FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_2FB0"] + - [0x7003018, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3018"] + - [0x7003080, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3080"] + - [0x70030E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_30E8"] + - [0x7003158, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3158"] + - [0x70031C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_31C0"] + - [0x7003228, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3228"] + - [0x7003298, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3298"] + - [0x7003300, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3300"] + - [0x7003368, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3368"] + - [0x70033D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_33D8"] + - [0x7003440, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3440"] + - [0x70034A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_34A8"] + - [0x7003508, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3508"] + - [0x7003568, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3568"] + - [0x70035D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_35D8"] + - [0x7003640, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3640"] + - [0x70036A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_36A0"] + - [0x7003710, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3710"] + - [0x7003780, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3780"] + - [0x70037F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_37F0"] + - [0x7003858, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3858"] + - [0x70038C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_38C8"] + - [0x7003930, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3930"] + - [0x70039A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_39A8"] + - [0x7003A10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3A10"] + - [0x7003A80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3A80"] + - [0x7003AE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3AE8"] + - [0x7003B48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3B48"] + - [0x7003BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3BC8"] + - [0x7003C30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3C30"] + - [0x7003C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3C98"] + - [0x7003D00, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3D00"] + - [0x7003D68, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3D68"] + - [0x7003DC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3DC8"] + - [0x7003E30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E30"] + - [0x7003E90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_3E90"] + - [0x7004018, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4018"] + - [0x70040D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_40D0"] + - [0x7004130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4130"] + - [0x70041E8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_41E8"] + - [0x7004260, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4260"] + - [0x7004350, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4350"] + - [0x7004438, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4438"] + - [0x70044F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_44F0"] + - [0x70045D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_45D8"] + - [0x70046C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_46C0"] + - [0x70047A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_47A8"] + - [0x7004878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4878"] + - [0x7004948, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4948"] + - [0x70049B0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_49B0"] + - [0x7004A10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4A10"] + - [0x7004AA8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4AA8"] + - [0x7004B08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4B08"] + - [0x7004B78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4B78"] + - [0x7004BD8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4BD8"] + - [0x7004C40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4C40"] + - [0x7004CB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4CB0"] + - [0x7004D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4D20"] + - [0x7004D90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4D90"] + - [0x7004DF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4DF8"] + - [0x7004E60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4E60"] + - [0x7004EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4EC8"] + - [0x7004F40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4F40"] + - [0x7004FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_4FB0"] + - [0x7005020, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5020"] + - [0x7005090, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5090"] + - [0x7005100, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5100"] + - [0x7005170, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5170"] + - [0x70051D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_51D0"] + - [0x7005238, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5238"] + - [0x70052E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_52E0"] + - [0x7005360, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5360"] + - [0x70053D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_53D0"] + - [0x7005450, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5450"] + - [0x70054C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_54C8"] + - [0x7005580, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5580"] + - [0x70055F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_55F0"] + - [0x70056A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_56A0"] + - [0x7005728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5728"] + - [0x70057D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_57D0"] + - [0x7005878, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5878"] + - [0x7005948, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5948"] + - [0x70059F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_59F0"] + - [0x7005A60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5A60"] + - [0x7005B00, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5B00"] + - [0x7005B88, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5B88"] + - [0x7005C20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5C20"] + - [0x7005C90, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5C90"] + - [0x7005D30, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5D30"] + - [0x7005DB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5DB0"] + - [0x7005E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5E38"] + - [0x7005EB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5EB0"] + - [0x7005F28, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5F28"] + - [0x7005FB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_5FB0"] + - [0x7006050, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6050"] + - [0x70060C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_60C8"] + - [0x7006130, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6130"] + - [0x70061D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_61D8"] + - [0x7006290, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6290"] + - [0x7006310, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6310"] + - [0x70063C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_63C0"] + - [0x7006490, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6490"] + - [0x7006530, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6530"] + - [0x70065F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_65F0"] + - [0x70066C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_66C8"] + - [0x7006780, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6780"] + - [0x7006820, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6820"] + - [0x70068E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_68E0"] + - [0x7006958, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6958"] + - [0x70069F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_69F8"] + - [0x7006A78, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6A78"] + - [0x7006B28, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6B28"] + - [0x7006BC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6BC0"] + - [0x7006C70, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6C70"] + - [0x7006CF0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6CF0"] + - [0x7006DA0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6DA0"] + - [0x7006E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6E38"] + - [0x7006EE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6EE8"] + - [0x7006F70, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_6F70"] + - [0x70070F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_70F8"] + - [0x70071C8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_71C8"] + - [0x70071D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_71D8"] + - [0x70072B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_72B8"] + - [0x70073A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_73A8"] + - [0x70074A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_74A8"] + - [0x7007598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7598"] + - [0x70075C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_75C0"] + - [0x70076C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_76C0"] + - [0x7007728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7728"] + - [0x70077F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_77F8"] + - [0x7007890, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7890"] + - [0x70079F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_79F8"] + - [0x7007BC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7BC8"] + - [0x7007CC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7CC8"] + - [0x7007E18, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7E18"] + - [0x7007F80, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_7F80"] + - [0x70080B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_80B8"] + - [0x70081A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_81A0"] + - [0x7008330, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8330"] + - [0x7008398, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8398"] + - [0x7008418, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8418"] + - [0x7008490, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8490"] + - [0x7008508, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8508"] + - [0x70085A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_85A0"] + - [0x7008610, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8610"] + - [0x7008690, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8690"] + - [0x7008728, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8728"] + - [0x7008798, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8798"] + - [0x7008808, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8808"] + - [0x7008888, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8888"] + - [0x7008920, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8920"] + - [0x7008990, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8990"] + - [0x7008A40, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8A40"] + - [0x7008AC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8AC8"] + - [0x7008B60, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8B60"] + - [0x7008C08, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8C08"] + - [0x7008C98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8C98"] + - [0x7008D20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8D20"] + - [0x7008D98, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8D98"] + - [0x7008E20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8E20"] + - [0x7008EC8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8EC8"] + - [0x7008F50, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8F50"] + - [0x7008FF8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_8FF8"] + - [0x7009068, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9068"] + - [0x70090D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_90D8"] + - [0x7009138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9138"] + - [0x70091A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_91A8"] + - [0x7009210, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9210"] + - [0x7009280, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9280"] + - [0x70092F8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_92F8"] + - [0x7009368, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9368"] + - [0x70093F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_93F0"] + - [0x7009480, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9480"] + - [0x7009510, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9510"] + - [0x7009598, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9598"] + - [0x7009630, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9630"] + - [0x70096A8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_96A8"] + - [0x7009740, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9740"] + - [0x70097B8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_97B8"] + - [0x7009820, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9820"] + - [0x70098E0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_98E0"] + - [0x7009958, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9958"] + - [0x70099D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_99D8"] + - [0x7009A68, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9A68"] + - [0x7009B10, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9B10"] + - [0x7009BD8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9BD8"] + - [0x7009C50, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9C50"] + - [0x7009CC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9CC0"] + - [0x7009D48, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9D48"] + - [0x7009DC0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9DC0"] + - [0x7009E38, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9E38"] + - [0x7009EB0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9EB0"] + - [0x7009F20, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F20"] + - [0x7009F88, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9F88"] + - [0x7009FE8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_9FE8"] + - [0x700A050, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A050"] + - [0x700A0C0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A0C0"] + - [0x700A138, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A138"] + - [0x700A1A0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A1A0"] + - [0x700A228, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A228"] + - [0x700A2D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A2D0"] + - [0x700A350, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A350"] + - [0x700A3D8, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A3D8"] + - [0x700A458, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A458"] + - [0x700A4D0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A4D0"] + - [0x700A548, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A548"] + - [0x700A5F0, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A5F0"] + - [0x700A670, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A670"] + - [0x700A680, "models/tracks/kalimari_desert/kalimari_desert_displaylists/d_course_kalimari_desert_packed_dl_A680"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_kalimari_desert_unknown_waypoints: + symbol: d_course_kalimari_desert_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x6ac8 + count: 51 +d_course_kalimari_desert_track_unknown_waypoints: + symbol: d_course_kalimari_desert_track_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x6c60 + count: 76 +d_course_kalimari_desert_track_waypoints: + symbol: d_course_kalimari_desert_track_waypoints + type: mk64:TRACK_PATH + offset: 0x6ec0 + count: 664 +d_course_kalimari_desert_item_box_spawns: + symbol: d_course_kalimari_desert_item_box_spawns + type: mk64:spawn_data + offset: 0x22e88 + count: 16 +d_course_kalimari_desert_cactus_spawn: + symbol: d_course_kalimari_desert_cactus_spawn + type: mk64:spawn_data + offset: 0x22f08 + count: 45 +d_course_kalimari_desert_addr: + symbol: d_course_kalimari_desert_addr + type: mk64:track_sections + offset: 0x23070 + count: 102 \ No newline at end of file diff --git a/yamls/us/other/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml b/yamls/us/other/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml new file mode 100644 index 000000000..c1169573e --- /dev/null +++ b/yamls/us/other/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml @@ -0,0 +1,378 @@ +:config: + segments: + - [0x06, 0x842E40] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_0"] + - [0x70000B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B0"] + - [0x7000160, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_160"] + - [0x7000210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_210"] + - [0x70002C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C0"] + - [0x70002E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E8"] + - [0x7000358, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_358"] + - [0x7000368, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_368"] + - [0x7000380, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_380"] + - [0x7000390, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_390"] + - [0x7000440, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_440"] + - [0x7000518, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_518"] + - [0x7000610, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_610"] + - [0x70006D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6D8"] + - [0x7000778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_778"] + - [0x7000858, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_858"] + - [0x7000928, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_928"] + - [0x7000A00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A00"] + - [0x7000AE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AE0"] + - [0x7000BD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_BD8"] + - [0x7000CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_CC0"] + - [0x7000D70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_D70"] + - [0x7000E60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_E60"] + - [0x7000F38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_F38"] + - [0x7001000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1000"] + - [0x70010B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_10B0"] + - [0x7001190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1190"] + - [0x7001210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1210"] + - [0x70012D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_12D0"] + - [0x70013D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_13D0"] + - [0x70014D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_14D0"] + - [0x7001590, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1590"] + - [0x7001668, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1668"] + - [0x70016F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_16F0"] + - [0x7001778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1778"] + - [0x7001850, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1850"] + - [0x7001940, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1940"] + - [0x7001A40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1A40"] + - [0x7001B58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1B58"] + - [0x7001C18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1C18"] + - [0x7001CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1CC0"] + - [0x7001DA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1DA8"] + - [0x7001E90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1E90"] + - [0x7001F78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_1F78"] + - [0x7002058, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2058"] + - [0x7002178, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2178"] + - [0x70021D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_21D8"] + - [0x7002240, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2240"] + - [0x70022B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_22B0"] + - [0x7002320, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2320"] + - [0x7002398, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2398"] + - [0x7002410, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2410"] + - [0x7002478, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2478"] + - [0x70024E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_24E8"] + - [0x7002560, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2560"] + - [0x70025C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_25C8"] + - [0x7002638, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2638"] + - [0x7002698, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2698"] + - [0x7002748, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2748"] + - [0x70027B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_27B0"] + - [0x7002818, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2818"] + - [0x7002888, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2888"] + - [0x70028F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_28F0"] + - [0x7002960, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2960"] + - [0x70029D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_29D0"] + - [0x7002A58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2A58"] + - [0x7002AC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2AC8"] + - [0x7002B30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2B30"] + - [0x7002BA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2BA8"] + - [0x7002C08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C08"] + - [0x7002C68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2C68"] + - [0x7002CC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2CC8"] + - [0x7002D40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2D40"] + - [0x7002DA8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2DA8"] + - [0x7002E18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E18"] + - [0x7002E98, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2E98"] + - [0x7002F00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2F00"] + - [0x7002F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2F60"] + - [0x7002FC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_2FC8"] + - [0x7003038, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3038"] + - [0x70030B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_30B0"] + - [0x70031D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_31D0"] + - [0x70032B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_32B0"] + - [0x7003390, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3390"] + - [0x7003470, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3470"] + - [0x7003550, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3550"] + - [0x7003630, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3630"] + - [0x70036F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_36F0"] + - [0x70037B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_37B0"] + - [0x70038B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_38B0"] + - [0x7003978, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3978"] + - [0x70039E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_39E8"] + - [0x7003AC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3AC8"] + - [0x7003B40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3B40"] + - [0x7003C38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3C38"] + - [0x7003D00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3D00"] + - [0x7003DE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3DE0"] + - [0x7003ED8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3ED8"] + - [0x7003F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_3F60"] + - [0x7004040, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4040"] + - [0x7004120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4120"] + - [0x7004200, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4200"] + - [0x70042E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_42E0"] + - [0x70043C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_43C0"] + - [0x7004490, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4490"] + - [0x70045C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_45C8"] + - [0x70046A8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_46A8"] + - [0x7004770, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4770"] + - [0x70047E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_47E0"] + - [0x70048B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_48B0"] + - [0x7004920, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4920"] + - [0x7004A08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4A08"] + - [0x7004AF0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4AF0"] + - [0x7004BD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4BD0"] + - [0x7004CC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4CC8"] + - [0x7004DD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4DD8"] + - [0x7004EA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4EA0"] + - [0x7004F68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_4F68"] + - [0x7005028, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5028"] + - [0x70050E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_50E8"] + - [0x70051A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_51A0"] + - [0x7005250, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5250"] + - [0x7005300, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5300"] + - [0x70053D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_53D8"] + - [0x7005488, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5488"] + - [0x70054E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_54E8"] + - [0x7005598, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5598"] + - [0x70055F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_55F8"] + - [0x70056C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_56C8"] + - [0x7005778, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5778"] + - [0x7005828, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5828"] + - [0x70058F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_58F8"] + - [0x7005970, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5970"] + - [0x7005A38, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5A38"] + - [0x7005B00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5B00"] + - [0x7005BB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5BB8"] + - [0x7005C88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5C88"] + - [0x7005D50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5D50"] + - [0x7005E08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5E08"] + - [0x7005EB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5EB0"] + - [0x7005F60, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_5F60"] + - [0x7006010, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6010"] + - [0x7006078, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6078"] + - [0x7006140, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6140"] + - [0x70061A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_61A0"] + - [0x7006268, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6268"] + - [0x7006330, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6330"] + - [0x70063F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_63F8"] + - [0x70064C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_64C8"] + - [0x70065D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_65D8"] + - [0x7006648, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6648"] + - [0x70066B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_66B0"] + - [0x7006718, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6718"] + - [0x70067A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_67A0"] + - [0x7006810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6810"] + - [0x70068C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_68C0"] + - [0x7006938, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6938"] + - [0x7006998, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6998"] + - [0x70069F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_69F8"] + - [0x7006A68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6A68"] + - [0x7006AD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6AD0"] + - [0x7006B30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6B30"] + - [0x7006BE8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6BE8"] + - [0x7006D70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6D70"] + - [0x7006DE8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6DE8"] + - [0x7006EB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6EB8"] + - [0x7006F30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6F30"] + - [0x7006FA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_6FA0"] + - [0x7007000, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7000"] + - [0x70070A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_70A0"] + - [0x7007120, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7120"] + - [0x7007188, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7188"] + - [0x70071F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_71F0"] + - [0x7007260, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7260"] + - [0x70072D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_72D0"] + - [0x7007358, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7358"] + - [0x7007430, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7430"] + - [0x7007538, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7538"] + - [0x7007608, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7608"] + - [0x70076A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_76A0"] + - [0x70076C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_76C0"] + - [0x7007740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7740"] + - [0x7007810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7810"] + - [0x70078E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_78E0"] + - [0x7007970, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7970"] + - [0x7007A98, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7A98"] + - [0x7007DB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7DB0"] + - [0x7007E48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7E48"] + - [0x7007EE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7EE0"] + - [0x7007F70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_7F70"] + - [0x7008028, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8028"] + - [0x70080F8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_80F8"] + - [0x7008200, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8200"] + - [0x70082D8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_82D8"] + - [0x7008360, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8360"] + - [0x7008468, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8468"] + - [0x7008510, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8510"] + - [0x70085C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_85C0"] + - [0x70086B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_86B0"] + - [0x7008740, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8740"] + - [0x70087E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_87E0"] + - [0x7008870, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8870"] + - [0x7008918, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8918"] + - [0x7008980, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8980"] + - [0x7008A90, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8A90"] + - [0x7008C18, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8C18"] + - [0x7008D08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8D08"] + - [0x7008DB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8DB0"] + - [0x7008E50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8E50"] + - [0x7008EE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8EE0"] + - [0x7008F58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8F58"] + - [0x7008FD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_8FD0"] + - [0x7009080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9080"] + - [0x7009188, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9188"] + - [0x7009228, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9228"] + - [0x70092C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_92C8"] + - [0x7009368, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9368"] + - [0x7009408, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9408"] + - [0x70094A8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_94A8"] + - [0x7009548, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9548"] + - [0x70095E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_95E8"] + - [0x7009688, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9688"] + - [0x70096D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_96D0"] + - [0x7009800, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9800"] + - [0x7009930, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9930"] + - [0x7009A30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9A30"] + - [0x7009B20, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B20"] + - [0x7009B48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B48"] + - [0x7009B78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B78"] + - [0x7009B88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9B88"] + - [0x7009CC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9CC0"] + - [0x7009CD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9CD0"] + - [0x7009D58, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9D58"] + - [0x7009E70, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9E70"] + - [0x7009E88, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9E88"] + - [0x7009EC0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9EC0"] + - [0x7009EF8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9EF8"] + - [0x7009F30, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9F30"] + - [0x7009F68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9F68"] + - [0x7009FA0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FA0"] + - [0x7009FC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FC8"] + - [0x7009FF0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_9FF0"] + - [0x700A020, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A020"] + - [0x700A080, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A080"] + - [0x700A0B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A0B0"] + - [0x700A0E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A0E8"] + - [0x700A128, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A128"] + - [0x700A158, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A158"] + - [0x700A190, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A190"] + - [0x700A1D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A1D0"] + - [0x700A210, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A210"] + - [0x700A240, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A240"] + - [0x700A278, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A278"] + - [0x700A2B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A2B0"] + - [0x700A2E8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A2E8"] + - [0x700A320, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A320"] + - [0x700A350, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A350"] + - [0x700A388, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A388"] + - [0x700A3C8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A3C8"] + - [0x700A400, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A400"] + - [0x700A438, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A438"] + - [0x700A470, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A470"] + - [0x700A4A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A4A0"] + - [0x700A4D0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A4D0"] + - [0x700A508, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A508"] + - [0x700A540, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A540"] + - [0x700A640, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A640"] + - [0x700A668, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A668"] + - [0x700A690, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A690"] + - [0x700A6B8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A6B8"] + - [0x700A6E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A6E0"] + - [0x700A708, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A708"] + - [0x700A738, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A738"] + - [0x700A760, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A760"] + - [0x700A798, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A798"] + - [0x700A7C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A7C0"] + - [0x700A7E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A7E0"] + - [0x700A810, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A810"] + - [0x700A838, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A838"] + - [0x700A868, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A868"] + - [0x700A890, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A890"] + - [0x700A8C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A8C0"] + - [0x700A8E0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A8E0"] + - [0x700A908, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A908"] + - [0x700A930, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A930"] + - [0x700A990, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A990"] + - [0x700A9F0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_A9F0"] + - [0x700AA48, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AA48"] + - [0x700AAB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AAB0"] + - [0x700AB08, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AB08"] + - [0x700AB68, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AB68"] + - [0x700ABD0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ABD0"] + - [0x700AC40, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AC40"] + - [0x700ACB0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ACB0"] + - [0x700ACD8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ACD8"] + - [0x700AD00, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD00"] + - [0x700AD28, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD28"] + - [0x700AD50, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD50"] + - [0x700AD78, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AD78"] + - [0x700ADB8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ADB8"] + - [0x700ADE0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_ADE0"] + - [0x700AEF8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AEF8"] + - [0x700AFC8, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_AFC8"] + - [0x700B0A0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B0A0"] + - [0x700B168, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B168"] + - [0x700B208, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B208"] + - [0x700B230, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B230"] + - [0x700B2B0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B2B0"] + - [0x700B2C0, "models/tracks/koopa_troopa_beach/koopa_troopa_beach_displaylists/d_course_koopa_troopa_beach_packed_dl_B2C0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_koopa_troopa_beach_crab_frames: + range: [0xD828, 0x13828] + mode: APPEND +d_course_koopa_troopa_beach_unknown_waypoints: + symbol: d_course_koopa_troopa_beach_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0xADE0 + count: 62 +d_course_koopa_troopa_beach_unknown_waypoints1: + symbol: d_course_koopa_troopa_beach_unknown_waypoints1 + type: mk64:TRACK_PATH + offset: 0xAFD0 + count: 59 +d_course_koopa_troopa_beach_track_waypoints: + symbol: d_course_koopa_troopa_beach_track_waypoints + type: mk64:TRACK_PATH + offset: 0xB1A8 + count: 609 +d_course_koopa_troopa_beach_track_waypoints_2: + symbol: d_course_koopa_troopa_beach_track_waypoints_2 + type: mk64:TRACK_PATH + offset: 0xC4B0 + count: 559 +d_course_koopa_troopa_beach_light1: + symbol: d_course_koopa_troopa_beach_light1 + type: lights + offset: 0x14BE8 +d_course_koopa_troopa_beach_light2: + symbol: d_course_koopa_troopa_beach_light2 + type: lights + offset: 0x16B78 +d_course_koopa_troopa_beach_light3: + symbol: d_course_koopa_troopa_beach_light3 + type: lights + offset: 0x18858 +d_course_koopa_troopa_beach_light4: + symbol: d_course_koopa_troopa_beach_light4 + type: lights + offset: 0x18BA8 +d_course_koopa_troopa_beach_item_box_spawns: + symbol: d_course_koopa_troopa_beach_item_box_spawns + type: mk64:spawn_data + offset: 0x18E78 + count: 31 +d_course_koopa_troopa_beach_tree_spawn: + symbol: d_course_koopa_troopa_beach_tree_spawn + type: mk64:spawn_data + offset: 0x18F70 + count: 13 +d_course_koopa_troopa_beach_addr: + symbol: d_course_koopa_troopa_beach_addr + type: mk64:track_sections + offset: 0x18FD8 + count: 106 diff --git a/yamls/us/other/tracks/luigi_raceway/luigi_raceway_data.yml b/yamls/us/other/tracks/luigi_raceway/luigi_raceway_data.yml new file mode 100644 index 000000000..7ffac8408 --- /dev/null +++ b/yamls/us/other/tracks/luigi_raceway/luigi_raceway_data.yml @@ -0,0 +1,402 @@ +:config: + segments: + - [0x06, 0x84E8E0] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_0"] + - [0x7000068, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_68"] + - [0x7000078, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_78"] + - [0x70000E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_E0"] + - [0x70000F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F0"] + - [0x7000108, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_108"] + - [0x7000118, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_118"] + - [0x7000190, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_190"] + - [0x7000208, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_208"] + - [0x7000280, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_280"] + - [0x70002F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2F8"] + - [0x7000370, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_370"] + - [0x70003E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3E8"] + - [0x7000450, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_450"] + - [0x70004B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4B8"] + - [0x7000528, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_528"] + - [0x70005A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5A0"] + - [0x7000610, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_610"] + - [0x7000688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_688"] + - [0x7000700, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_700"] + - [0x7000778, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_778"] + - [0x70007F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7F0"] + - [0x7000858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_858"] + - [0x70008D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D0"] + - [0x7000938, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_938"] + - [0x70009A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9A8"] + - [0x7000A20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A20"] + - [0x7000A98, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A98"] + - [0x7000B48, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B48"] + - [0x7000BD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BD0"] + - [0x7000C58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C58"] + - [0x7000CE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_CE0"] + - [0x7000D68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_D68"] + - [0x7000DF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_DF0"] + - [0x7000E78, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_E78"] + - [0x7000F00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F00"] + - [0x7000F88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_F88"] + - [0x7001000, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1000"] + - [0x7001088, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1088"] + - [0x7001110, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1110"] + - [0x70011B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_11B8"] + - [0x7001260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1260"] + - [0x7001308, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1308"] + - [0x70013B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_13B0"] + - [0x7001438, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1438"] + - [0x70014E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_14E0"] + - [0x7001558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1558"] + - [0x70015E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_15E0"] + - [0x7001688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1688"] + - [0x7001730, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1730"] + - [0x70017E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_17E0"] + - [0x7001848, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1848"] + - [0x70018B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_18B8"] + - [0x7001920, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1920"] + - [0x7001988, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1988"] + - [0x7001A28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1A28"] + - [0x7001AC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1AC8"] + - [0x7001B28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1B28"] + - [0x7001BD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1BD8"] + - [0x7001C90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1C90"] + - [0x7001D00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1D00"] + - [0x7001D68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1D68"] + - [0x7001E10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1E10"] + - [0x7001E70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1E70"] + - [0x7001F18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1F18"] + - [0x7001F90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1F90"] + - [0x7001FF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_1FF0"] + - [0x7002050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2050"] + - [0x70020C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_20C0"] + - [0x7002130, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2130"] + - [0x70021A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_21A8"] + - [0x7002210, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2210"] + - [0x7002280, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2280"] + - [0x70022F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_22F8"] + - [0x7002368, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2368"] + - [0x70023E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_23E0"] + - [0x7002458, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2458"] + - [0x70024E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_24E0"] + - [0x7002560, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2560"] + - [0x70025E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_25E8"] + - [0x7002658, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2658"] + - [0x70026B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_26B8"] + - [0x7002720, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2720"] + - [0x7002798, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2798"] + - [0x7002810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2810"] + - [0x7002888, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2888"] + - [0x7002900, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2900"] + - [0x7002978, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2978"] + - [0x70029F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_29F0"] + - [0x7002A68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2A68"] + - [0x7002AE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2AE0"] + - [0x7002B58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2B58"] + - [0x7002BC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2BC8"] + - [0x7002C40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2C40"] + - [0x7002CB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2CB8"] + - [0x7002D30, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2D30"] + - [0x7002DA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2DA8"] + - [0x7002E20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2E20"] + - [0x7002E90, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2E90"] + - [0x7002EF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2EF8"] + - [0x7002F60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_2F60"] + - [0x7003080, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3080"] + - [0x70030F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_30F8"] + - [0x7003170, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3170"] + - [0x70031E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_31E8"] + - [0x7003260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3260"] + - [0x70032D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_32D8"] + - [0x7003350, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3350"] + - [0x70033C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_33C8"] + - [0x7003448, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3448"] + - [0x70034C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_34C8"] + - [0x7003548, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3548"] + - [0x70035D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_35D0"] + - [0x7003678, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3678"] + - [0x70036F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_36F8"] + - [0x7003768, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3768"] + - [0x70037E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_37E0"] + - [0x7003858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3858"] + - [0x70038D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_38D0"] + - [0x7003948, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3948"] + - [0x70039C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_39C8"] + - [0x7003A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3A58"] + - [0x7003AD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3AD0"] + - [0x7003B38, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3B38"] + - [0x7003BD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3BD0"] + - [0x7003C40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3C40"] + - [0x7003CF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3CF0"] + - [0x7003D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3D60"] + - [0x7003DD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3DD8"] + - [0x7003EB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3EB8"] + - [0x7003FC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_3FC0"] + - [0x7004148, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4148"] + - [0x7004330, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4330"] + - [0x7004518, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4518"] + - [0x7004540, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4540"] + - [0x70045B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_45B8"] + - [0x70046A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_46A0"] + - [0x7004860, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4860"] + - [0x7004880, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4880"] + - [0x7004960, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4960"] + - [0x70049B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_49B8"] + - [0x7004A28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4A28"] + - [0x7004B10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4B10"] + - [0x7004C28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4C28"] + - [0x7004EE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4EE8"] + - [0x7004F20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_4F20"] + - [0x7005038, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5038"] + - [0x70051D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_51D8"] + - [0x70053E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_53E0"] + - [0x70055E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_55E8"] + - [0x7005788, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5788"] + - [0x70058A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_58A0"] + - [0x70059B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_59B8"] + - [0x7005AB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5AB8"] + - [0x7005BB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5BB8"] + - [0x7005CD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5CD0"] + - [0x7005ED8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_5ED8"] + - [0x70060E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_60E0"] + - [0x7006300, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6300"] + - [0x7006418, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6418"] + - [0x7006558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6558"] + - [0x70065D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_65D8"] + - [0x7006680, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6680"] + - [0x7006728, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6728"] + - [0x70067D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_67D0"] + - [0x7006878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6878"] + - [0x7006920, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6920"] + - [0x70069C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_69C0"] + - [0x7006A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6A58"] + - [0x7006B00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6B00"] + - [0x7006BF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6BF0"] + - [0x7006CA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6CA8"] + - [0x7006D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6D60"] + - [0x7006E18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6E18"] + - [0x7006EF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6EF0"] + - [0x7006FA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_6FA8"] + - [0x7007050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7050"] + - [0x70070F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_70F8"] + - [0x70071A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_71A0"] + - [0x7007248, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7248"] + - [0x70072F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_72F0"] + - [0x7007398, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7398"] + - [0x7007440, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7440"] + - [0x70074F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_74F0"] + - [0x70075A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_75A8"] + - [0x7007650, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7650"] + - [0x70076F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_76F8"] + - [0x70077B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_77B0"] + - [0x7007878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7878"] + - [0x7007940, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7940"] + - [0x70079E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_79E8"] + - [0x7007A88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7A88"] + - [0x7007B80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7B80"] + - [0x7007BF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7BF8"] + - [0x7007C80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7C80"] + - [0x7007CF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7CF0"] + - [0x7007D60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7D60"] + - [0x7007DD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7DD8"] + - [0x7007E50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7E50"] + - [0x7007EB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7EB8"] + - [0x7007EF8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7EF8"] + - [0x7007F68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7F68"] + - [0x7007FE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_7FE0"] + - [0x7008048, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8048"] + - [0x70080B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_80B0"] + - [0x7008128, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8128"] + - [0x7008190, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8190"] + - [0x7008200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8200"] + - [0x7008240, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8240"] + - [0x7008320, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8320"] + - [0x70083C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_83C8"] + - [0x70083E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_83E0"] + - [0x7008448, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8448"] + - [0x70084B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_84B0"] + - [0x70084C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_84C8"] + - [0x7008528, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8528"] + - [0x70085F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_85F8"] + - [0x7008768, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8768"] + - [0x7008788, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8788"] + - [0x70087F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_87F0"] + - [0x7008858, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8858"] + - [0x70088C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_88C0"] + - [0x7008928, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8928"] + - [0x7008990, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8990"] + - [0x70089F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_89F8"] + - [0x7008A58, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8A58"] + - [0x7008AB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8AB8"] + - [0x7008B18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8B18"] + - [0x7008B80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8B80"] + - [0x7008BE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8BE8"] + - [0x7008C50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8C50"] + - [0x7008CB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8CB8"] + - [0x7008D20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D20"] + - [0x7008D88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8D88"] + - [0x7008DE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8DE8"] + - [0x7008E50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8E50"] + - [0x7008EB0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8EB0"] + - [0x7008F18, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8F18"] + - [0x7008F80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8F80"] + - [0x7008FE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_8FE8"] + - [0x7009098, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9098"] + - [0x7009120, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9120"] + - [0x70091A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_91A8"] + - [0x7009230, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9230"] + - [0x70092B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_92B8"] + - [0x7009340, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9340"] + - [0x70093C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_93C8"] + - [0x7009440, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9440"] + - [0x70094B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_94B8"] + - [0x7009530, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9530"] + - [0x70095B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_95B8"] + - [0x7009640, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9640"] + - [0x70096C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_96C8"] + - [0x7009750, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9750"] + - [0x70097D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_97D8"] + - [0x7009860, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9860"] + - [0x70098D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_98D8"] + - [0x7009960, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9960"] + - [0x70099D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_99D8"] + - [0x7009A60, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9A60"] + - [0x7009AE8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9AE8"] + - [0x7009B70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9B70"] + - [0x7009C20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9C20"] + - [0x7009EC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9EC0"] + - [0x7009ED0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9ED0"] + - [0x7009F70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_9F70"] + - [0x700A010, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A010"] + - [0x700A028, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A028"] + - [0x700A088, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A088"] + - [0x700A0F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A0F0"] + - [0x700A150, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A150"] + - [0x700A1B0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A1B0"] + - [0x700A210, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A210"] + - [0x700A270, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A270"] + - [0x700A2A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A2A8"] + - [0x700A308, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A308"] + - [0x700A368, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A368"] + - [0x700A3C8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A3C8"] + - [0x700A430, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A430"] + - [0x700A490, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A490"] + - [0x700A4F8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A4F8"] + - [0x700A558, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A558"] + - [0x700A5C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A5C0"] + - [0x700A620, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A620"] + - [0x700A688, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A688"] + - [0x700A6E8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A6E8"] + - [0x700A748, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A748"] + - [0x700A7A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A7A8"] + - [0x700A810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A810"] + - [0x700A870, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A870"] + - [0x700A8D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A8D0"] + - [0x700A930, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A930"] + - [0x700A998, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_A998"] + - [0x700AA00, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AA00"] + - [0x700AA68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AA68"] + - [0x700AAD0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AAD0"] + - [0x700AB38, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AB38"] + - [0x700ABA0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ABA0"] + - [0x700AC08, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AC08"] + - [0x700AC70, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AC70"] + - [0x700ACD8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ACD8"] + - [0x700AD40, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AD40"] + - [0x700ADA8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_ADA8"] + - [0x700AE10, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AE10"] + - [0x700AE78, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AE78"] + - [0x700AEE0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AEE0"] + - [0x700AF48, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AF48"] + - [0x700AFB0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_AFB0"] + - [0x700B010, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B010"] + - [0x700B078, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B078"] + - [0x700B198, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B198"] + - [0x700B200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B200"] + - [0x700B268, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B268"] + - [0x700B2D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B2D0"] + - [0x700B338, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B338"] + - [0x700B3A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B3A0"] + - [0x700B408, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B408"] + - [0x700B470, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B470"] + - [0x700B4D0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B4D0"] + - [0x700B530, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B530"] + - [0x700B590, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B590"] + - [0x700B600, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B600"] + - [0x700B678, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B678"] + - [0x700B6D8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B6D8"] + - [0x700B740, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B740"] + - [0x700B7A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B7A8"] + - [0x700B810, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B810"] + - [0x700B878, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B878"] + - [0x700B8E0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B8E0"] + - [0x700B948, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B948"] + - [0x700B9B8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_B9B8"] + - [0x700BA20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BA20"] + - [0x700BA80, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BA80"] + - [0x700BAF0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BAF0"] + - [0x700BB50, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BB50"] + - [0x700BBC0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BBC0"] + - [0x700BC20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BC20"] + - [0x700BC88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BC88"] + - [0x700BD68, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BD68"] + - [0x700BDC8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BDC8"] + - [0x700BE28, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BE28"] + - [0x700BE88, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BE88"] + - [0x700BF20, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BF20"] + - [0x700BFB8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_BFB8"] + - [0x700C050, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C050"] + - [0x700C0F0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C0F0"] + - [0x700C1A0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C1A0"] + - [0x700C200, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C200"] + - [0x700C260, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C260"] + - [0x700C300, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C300"] + - [0x700C3A8, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C3A8"] + - [0x700C410, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C410"] + - [0x700C4C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C4C0"] + - [0x700C540, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C540"] + - [0x700C5C0, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C5C0"] + - [0x700C640, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C640"] + - [0x700C668, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C668"] + - [0x700C730, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C730"] + - [0x700C740, "models/tracks/luigi_raceway/luigi_raceway_displaylists/d_course_luigi_raceway_packed_dl_C740"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_luigi_raceway_unknown_waypoints: + symbol: d_course_luigi_raceway_unknown_waypoints + offset: 0xA540 + count: 50 + type: mk64:TRACK_PATH +d_course_luigi_raceway_track_waypoints: + symbol: d_course_luigi_raceway_track_waypoints + offset: 0xA6D0 + count: 632 + type: mk64:TRACK_PATH +d_course_luigi_raceway_light1: + symbol: d_course_luigi_raceway_light1 + type: lights + offset: 0xC3A0 +d_course_luigi_raceway_item_box_spawns: + symbol: d_course_luigi_raceway_item_box_spawns + type: mk64:spawn_data + count: 19 + offset: 0xFDE8 +d_course_luigi_raceway_tree_spawn: + symbol: d_course_luigi_raceway_tree_spawn + type: mk64:spawn_data + count: 21 + offset: 0xFE80 +d_course_luigi_raceway_addr: + symbol: d_course_luigi_raceway_addr + type: mk64:track_sections + offset: 0xFF28 + count: 113 diff --git a/yamls/us/other/tracks/mario_raceway/mario_raceway_data.yml b/yamls/us/other/tracks/mario_raceway/mario_raceway_data.yml new file mode 100644 index 000000000..b76ecd4e8 --- /dev/null +++ b/yamls/us/other/tracks/mario_raceway/mario_raceway_data.yml @@ -0,0 +1,218 @@ +:config: + segments: + - [0x06, 0x8284D0] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_0"] + - [0x7000070, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_70"] + - [0x70000E0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_E0"] + - [0x70000F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_F8"] + - [0x7000160, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_160"] + - [0x7000170, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_170"] + - [0x70001D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1D8"] + - [0x7000240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_240"] + - [0x7000258, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_258"] + - [0x70002C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2C0"] + - [0x7000328, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_328"] + - [0x70003D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3D8"] + - [0x7000450, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_450"] + - [0x7000478, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_478"] + - [0x70004A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4A0"] + - [0x70004B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4B0"] + - [0x7000588, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_588"] + - [0x70008E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_8E8"] + - [0x7000900, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_900"] + - [0x7000A08, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_A08"] + - [0x7000B10, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_B10"] + - [0x7000C18, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_C18"] + - [0x7000D20, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_D20"] + - [0x7000E28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_E28"] + - [0x7000F30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_F30"] + - [0x7001038, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1038"] + - [0x7001140, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1140"] + - [0x7001188, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1188"] + - [0x7001348, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1348"] + - [0x70013C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_13C0"] + - [0x7001438, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1438"] + - [0x70014A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_14A0"] + - [0x70014C8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_14C8"] + - [0x7001500, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1500"] + - [0x7001550, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1550"] + - [0x7001600, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1600"] + - [0x7001668, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1668"] + - [0x70016D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_16D8"] + - [0x7001770, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1770"] + - [0x70017D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_17D8"] + - [0x7001850, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1850"] + - [0x7001890, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1890"] + - [0x70018B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_18B8"] + - [0x70018E0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_18E0"] + - [0x7001950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1950"] + - [0x7001988, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1988"] + - [0x7001A08, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1A08"] + - [0x7001A80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1A80"] + - [0x7001AF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1AF8"] + - [0x7001B28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1B28"] + - [0x7001BB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1BB8"] + - [0x7001C48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1C48"] + - [0x7001CF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1CF8"] + - [0x7001DA8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1DA8"] + - [0x7001E30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1E30"] + - [0x7001EA8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1EA8"] + - [0x7001F30, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1F30"] + - [0x7001FB0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_1FB0"] + - [0x7002038, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2038"] + - [0x70020B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_20B0"] + - [0x7002138, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2138"] + - [0x70021C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_21C0"] + - [0x7002248, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2248"] + - [0x70022B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_22B8"] + - [0x7002340, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2340"] + - [0x70023B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_23B8"] + - [0x7002420, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2420"] + - [0x7002498, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2498"] + - [0x7002510, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2510"] + - [0x7002588, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2588"] + - [0x7002600, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2600"] + - [0x7002680, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2680"] + - [0x70026F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_26F8"] + - [0x7002760, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2760"] + - [0x70027E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_27E8"] + - [0x7002870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2870"] + - [0x70028F8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_28F8"] + - [0x70029B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_29B0"] + - [0x7002A28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2A28"] + - [0x7002B10, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2B10"] + - [0x7002B98, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2B98"] + - [0x7002D68, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2D68"] + - [0x7002D80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_2D80"] + - [0x7003050, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3050"] + - [0x7003060, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3060"] + - [0x7003150, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3150"] + - [0x7003240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3240"] + - [0x7003258, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3258"] + - [0x70032F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_32F0"] + - [0x7003388, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3388"] + - [0x7003460, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3460"] + - [0x7003508, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3508"] + - [0x7003530, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3530"] + - [0x70035A8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_35A8"] + - [0x7003630, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3630"] + - [0x70036B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_36B0"] + - [0x7003728, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3728"] + - [0x7003798, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3798"] + - [0x7003818, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3818"] + - [0x70038B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_38B8"] + - [0x7003950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3950"] + - [0x70039E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_39E8"] + - [0x7003AB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3AB8"] + - [0x7003BB0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3BB0"] + - [0x7003C28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3C28"] + - [0x7003CD8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3CD8"] + - [0x7003D50, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3D50"] + - [0x7003E00, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3E00"] + - [0x7003E78, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3E78"] + - [0x7003EF8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3EF8"] + - [0x7003F80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_3F80"] + - [0x7004028, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4028"] + - [0x70040D8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_40D8"] + - [0x7004188, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4188"] + - [0x7004210, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4210"] + - [0x7004290, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4290"] + - [0x7004348, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4348"] + - [0x70043C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_43C0"] + - [0x7004458, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4458"] + - [0x70044C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_44C0"] + - [0x7004540, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4540"] + - [0x70045B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_45B0"] + - [0x70046A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_46A0"] + - [0x7004780, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4780"] + - [0x7004870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4870"] + - [0x7004950, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4950"] + - [0x70049E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_49E8"] + - [0x7004A68, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4A68"] + - [0x7004AD8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4AD8"] + - [0x7004B50, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4B50"] + - [0x7004BB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4BB8"] + - [0x7004C28, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4C28"] + - [0x7004CB8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4CB8"] + - [0x7004D48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4D48"] + - [0x7004E20, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4E20"] + - [0x7004EE8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4EE8"] + - [0x7004F90, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_4F90"] + - [0x70050E8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_50E8"] + - [0x7005218, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5218"] + - [0x70052B8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_52B8"] + - [0x7005368, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5368"] + - [0x7005408, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5408"] + - [0x70054B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_54B0"] + - [0x7005550, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5550"] + - [0x7005608, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5608"] + - [0x70056F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_56F0"] + - [0x7005768, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5768"] + - [0x7005870, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5870"] + - [0x7005970, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5970"] + - [0x7005A48, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5A48"] + - [0x7005AE0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5AE0"] + - [0x7005BC8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5BC8"] + - [0x7005C80, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5C80"] + - [0x7005CE8, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5CE8"] + - [0x7005D70, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5D70"] + - [0x7005DF0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5DF0"] + - [0x7005E58, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5E58"] + - [0x7005ED0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5ED0"] + - [0x7005F88, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_5F88"] + - [0x7006068, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6068"] + - [0x70060F0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_60F0"] + - [0x7006198, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6198"] + - [0x7006240, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6240"] + - [0x70062A0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_62A0"] + - [0x7006308, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6308"] + - [0x70063B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_63B0"] + - [0x7006490, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6490"] + - [0x7006528, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6528"] + - [0x7006598, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6598"] + - [0x7006710, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6710"] + - [0x70068B0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_68B0"] + - [0x70068C0, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_68C0"] + - [0x7006928, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6928"] + - [0x7006938, "models/tracks/mario_raceway/mario_raceway_displaylists/d_course_mario_raceway_packed_dl_6938"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_mario_raceway_unknown_waypoints: + symbol: d_course_mario_raceway_unknown_waypoints + offset: 0x5568 + count: 73 + type: mk64:TRACK_PATH +d_course_mario_raceway_track_waypoints: + symbol: d_course_mario_raceway_track_waypoints + offset: 0x57B0 + count: 500 + type: mk64:TRACK_PATH +d_course_mario_raceway_item_box_spawns: + symbol: d_course_mario_raceway_item_box_spawns + type: mk64:spawn_data + count: 16 + offset: 0x9498 +d_course_mario_raceway_piranha_plant_spawns: + symbol: d_course_mario_raceway_piranha_plant_spawns + type: mk64:spawn_data + count: 11 + offset: 0x9518 +d_course_mario_raceway_tree_spawns: + symbol: d_course_mario_raceway_tree_spawns + type: mk64:spawn_data + count: 28 + offset: 0x9570 +d_course_mario_raceway_addr: + symbol: d_course_mario_raceway_addr + type: mk64:track_sections + offset: 0x9650 + count: 53 \ No newline at end of file diff --git a/yamls/us/other/tracks/moo_moo_farm/moo_moo_farm_data.yml b/yamls/us/other/tracks/moo_moo_farm/moo_moo_farm_data.yml new file mode 100644 index 000000000..451b6c6c2 --- /dev/null +++ b/yamls/us/other/tracks/moo_moo_farm/moo_moo_farm_data.yml @@ -0,0 +1,279 @@ +:config: + segments: + - [0x06, 0x852E20] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_0"] + - [0x7000028, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_28"] + - [0x7000058, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_58"] + - [0x7000088, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_88"] + - [0x70000C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C0"] + - [0x70000F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_F8"] + - [0x7000130, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_130"] + - [0x7000170, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_170"] + - [0x70001A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A0"] + - [0x70001E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1E0"] + - [0x7000220, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_220"] + - [0x7000258, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_258"] + - [0x7000290, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_290"] + - [0x70002B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2B0"] + - [0x70002E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2E8"] + - [0x7000318, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_318"] + - [0x7000350, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_350"] + - [0x7000388, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_388"] + - [0x70003C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3C8"] + - [0x7000400, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_400"] + - [0x7000430, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_430"] + - [0x7000468, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_468"] + - [0x70004A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4A0"] + - [0x70004D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D0"] + - [0x7000590, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_590"] + - [0x70005C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5C8"] + - [0x7000600, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_600"] + - [0x7000638, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_638"] + - [0x7000670, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_670"] + - [0x70006A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6A8"] + - [0x70006E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6E0"] + - [0x7000720, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_720"] + - [0x7000750, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_750"] + - [0x7000790, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_790"] + - [0x70007D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_7D0"] + - [0x7000808, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_808"] + - [0x7000840, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_840"] + - [0x7000870, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_870"] + - [0x7000898, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_898"] + - [0x70008D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_8D0"] + - [0x7000908, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_908"] + - [0x7000940, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_940"] + - [0x7000978, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_978"] + - [0x70009B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_9B0"] + - [0x70009E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_9E0"] + - [0x7000A18, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A18"] + - [0x7000A50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A50"] + - [0x7000A80, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_A80"] + - [0x7000B40, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_B40"] + - [0x7000C10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C10"] + - [0x7000C20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_C20"] + - [0x7000CA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_CA0"] + - [0x7000CB0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_CB0"] + - [0x7000E50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_E50"] + - [0x7000EB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_EB8"] + - [0x7000F20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_F20"] + - [0x70010C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_10C0"] + - [0x70010E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_10E8"] + - [0x7001118, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1118"] + - [0x7001128, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1128"] + - [0x7001168, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1168"] + - [0x70011B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_11B0"] + - [0x70011F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_11F0"] + - [0x7001230, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1230"] + - [0x7001270, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1270"] + - [0x70012E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_12E0"] + - [0x7001348, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1348"] + - [0x7001388, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1388"] + - [0x70013E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_13E0"] + - [0x7001430, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1430"] + - [0x7001478, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1478"] + - [0x70014B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_14B8"] + - [0x7001518, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1518"] + - [0x7001578, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1578"] + - [0x70015E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_15E0"] + - [0x7001640, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1640"] + - [0x70016B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_16B8"] + - [0x7001718, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1718"] + - [0x7001750, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1750"] + - [0x70017A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_17A8"] + - [0x70017D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_17D8"] + - [0x7001828, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1828"] + - [0x70018E0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_18E0"] + - [0x7001940, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1940"] + - [0x70019A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_19A0"] + - [0x7001A00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A00"] + - [0x7001A60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1A60"] + - [0x7001AA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1AA0"] + - [0x7001AD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1AD0"] + - [0x7001B38, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1B38"] + - [0x7001BA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1BA0"] + - [0x7001C40, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1C40"] + - [0x7001C98, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1C98"] + - [0x7001D00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1D00"] + - [0x7001D60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1D60"] + - [0x7001DD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1DD0"] + - [0x7001E58, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1E58"] + - [0x7001ED0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1ED0"] + - [0x7001F20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F20"] + - [0x7001F58, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F58"] + - [0x7001F90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1F90"] + - [0x7001FD0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_1FD0"] + - [0x7002008, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2008"] + - [0x7002040, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2040"] + - [0x7002080, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2080"] + - [0x70020C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_20C0"] + - [0x70020F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_20F8"] + - [0x7002160, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2160"] + - [0x70021D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_21D8"] + - [0x7002240, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2240"] + - [0x70022B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_22B0"] + - [0x7002338, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2338"] + - [0x70023C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_23C0"] + - [0x7002450, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2450"] + - [0x7002550, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2550"] + - [0x7002588, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2588"] + - [0x70025D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_25D0"] + - [0x7002618, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2618"] + - [0x7002658, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2658"] + - [0x7002690, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2690"] + - [0x70026C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_26C0"] + - [0x7002708, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2708"] + - [0x7002748, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2748"] + - [0x7002780, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2780"] + - [0x70027B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_27B8"] + - [0x70027F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_27F8"] + - [0x7002850, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2850"] + - [0x7002898, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2898"] + - [0x70028D8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_28D8"] + - [0x7002918, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2918"] + - [0x7002998, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2998"] + - [0x70029F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_29F0"] + - [0x7002A50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2A50"] + - [0x7002AB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2AB8"] + - [0x7002AF0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2AF0"] + - [0x7002B50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2B50"] + - [0x7002BA8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2BA8"] + - [0x7002C10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2C10"] + - [0x7002C68, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2C68"] + - [0x7002CD8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2CD8"] + - [0x7002D30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2D30"] + - [0x7002D90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2D90"] + - [0x7002DF0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2DF0"] + - [0x7002E60, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2E60"] + - [0x7002EA0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2EA0"] + - [0x7002F10, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2F10"] + - [0x7002F90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2F90"] + - [0x7002FF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_2FF8"] + - [0x7003030, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3030"] + - [0x70030A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_30A8"] + - [0x70030F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_30F0"] + - [0x7003138, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3138"] + - [0x7003190, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3190"] + - [0x70031C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_31C8"] + - [0x7003210, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3210"] + - [0x7003268, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3268"] + - [0x70032A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_32A0"] + - [0x7003310, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3310"] + - [0x7003350, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3350"] + - [0x7003380, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3380"] + - [0x70033C0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_33C0"] + - [0x70034B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_34B8"] + - [0x7003590, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3590"] + - [0x7003668, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3668"] + - [0x7003748, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3748"] + - [0x7003828, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3828"] + - [0x7003918, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3918"] + - [0x70039F8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_39F8"] + - [0x7003B88, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3B88"] + - [0x7003C48, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3C48"] + - [0x7003D50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3D50"] + - [0x7003E50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3E50"] + - [0x7003F30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_3F30"] + - [0x70040A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_40A8"] + - [0x70041B0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_41B0"] + - [0x70042B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_42B8"] + - [0x70043A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_43A0"] + - [0x7004480, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4480"] + - [0x70045D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_45D0"] + - [0x70046E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_46E8"] + - [0x70047C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_47C8"] + - [0x70048B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_48B8"] + - [0x70049A8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_49A8"] + - [0x7004A88, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4A88"] + - [0x7004B90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4B90"] + - [0x7004C50, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4C50"] + - [0x7004CB8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4CB8"] + - [0x7004D28, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D28"] + - [0x7004D90, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4D90"] + - [0x7004DF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4DF8"] + - [0x7004E20, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4E20"] + - [0x7004F00, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_4F00"] + - [0x7005018, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5018"] + - [0x7005030, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5030"] + - [0x70050D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_50D0"] + - [0x7005170, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5170"] + - [0x7005208, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5208"] + - [0x7005290, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5290"] + - [0x70052B8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_52B8"] + - [0x7005410, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5410"] + - [0x7005420, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5420"] + - [0x7005498, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5498"] + - [0x7005530, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5530"] + - [0x70055C8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_55C8"] + - [0x7005640, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5640"] + - [0x7005668, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5668"] + - [0x7005700, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5700"] + - [0x70057A0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_57A0"] + - [0x7005848, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5848"] + - [0x70058E8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_58E8"] + - [0x7005988, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5988"] + - [0x7005A30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5A30"] + - [0x7005B70, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5B70"] + - [0x7005BF8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5BF8"] + - [0x7005C98, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5C98"] + - [0x7005D30, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5D30"] + - [0x7005DC0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5DC0"] + - [0x7005F08, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5F08"] + - [0x7005FD8, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_5FD8"] + - [0x7006090, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6090"] + - [0x7006130, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6130"] + - [0x70061F0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_61F0"] + - [0x7006288, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6288"] + - [0x7006358, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6358"] + - [0x7006408, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6408"] + - [0x70064D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_64D0"] + - [0x7006578, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6578"] + - [0x7006618, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6618"] + - [0x70066D0, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_66D0"] + - [0x7006730, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6730"] + - [0x7006740, "models/tracks/moo_moo_farm/moo_moo_farm_displaylists/d_course_moo_moo_farm_packed_dl_6740"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_moo_moo_farm_mole_frames: + range: [0xFE70, 0x13670] + mode: APPEND +d_course_moo_moo_farm_unknown_waypoints: + symbol: d_course_moo_moo_farm_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0xec80 + count: 45 +d_course_moo_moo_farm_track_waypoints: + symbol: d_course_moo_moo_farm_track_waypoints + type: mk64:TRACK_PATH + offset: 0xede8 + count: 465 +d_course_moo_moo_farm_cow_spawn: + symbol: d_course_moo_moo_farm_cow_spawn + type: mk64:spawn_data + offset: 0x14200 + count: 38 +d_course_moo_moo_farm_tree_spawn: + symbol: d_course_moo_moo_farm_tree_spawn + type: mk64:spawn_data + offset: 0x14330 + count: 22 +d_course_moo_moo_farm_item_box_spawns: + symbol: d_course_moo_moo_farm_item_box_spawns + type: mk64:spawn_data + offset: 0x143e0 + count: 27 +d_course_moo_moo_farm_addr: + symbol: d_course_moo_moo_farm_addr + type: mk64:track_sections + offset: 0x144b8 + count: 77 diff --git a/yamls/us/other/tracks/rainbow_road/rainbow_road_data.yml b/yamls/us/other/tracks/rainbow_road/rainbow_road_data.yml new file mode 100644 index 000000000..841ced72b --- /dev/null +++ b/yamls/us/other/tracks/rainbow_road/rainbow_road_data.yml @@ -0,0 +1,75 @@ +:config: + segments: + - [0x06, 0x872A00] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_0"] + - [0x7000308, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_308"] + - [0x7000498, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_498"] + - [0x70005C8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_5C8"] + - [0x7000730, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_730"] + - [0x7000918, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_918"] + - [0x7000A48, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_A48"] + - [0x7000B90, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_B90"] + - [0x7000D88, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_D88"] + - [0x7000EA8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_EA8"] + - [0x7000FF0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_FF0"] + - [0x7001168, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1168"] + - [0x7001318, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1318"] + - [0x7001380, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1380"] + - [0x7001390, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1390"] + - [0x70013A0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_13A0"] + - [0x7001528, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1528"] + - [0x70015F8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_15F8"] + - [0x7001698, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1698"] + - [0x7001758, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1758"] + - [0x7001850, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1850"] + - [0x7001978, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1978"] + - [0x7001A20, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1A20"] + - [0x7001B28, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1B28"] + - [0x7001BC0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1BC0"] + - [0x7001C70, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1C70"] + - [0x7001D30, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1D30"] + - [0x7001E18, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1E18"] + - [0x7001E80, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1E80"] + - [0x7001FB8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1FB8"] + - [0x7001FC8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_1FC8"] + - [0x7002068, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2068"] + - [0x7002078, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2078"] + - [0x70020C0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20C0"] + - [0x70020D0, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20D0"] + - [0x70020F8, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_20F8"] + - [0x7002108, "models/tracks/rainbow_road/rainbow_road_displaylists/d_course_rainbow_road_packed_dl_2108"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_rainbow_road_unknown_waypoints: + symbol: d_course_rainbow_road_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x19D0 + count: 101 +d_course_rainbow_road_track_waypoints: + symbol: d_course_rainbow_road_track_waypoints + type: mk64:TRACK_PATH + offset: 0x1CF8 + count: 1761 +d_course_rainbow_road_light1: + symbol: d_course_rainbow_road_light1 + type: lights + offset: 0x12010 +d_course_rainbow_road_item_box_spawns: + symbol: d_course_rainbow_road_item_box_spawns + type: mk64:spawn_data + offset: 0x16338 + count: 33 +d_course_rainbow_road_addr: + symbol: d_course_rainbow_road_addr + type: mk64:track_sections + offset: 0x16440 + count: 15 \ No newline at end of file diff --git a/yamls/us/other/tracks/royal_raceway/royal_raceway_data.yml b/yamls/us/other/tracks/royal_raceway/royal_raceway_data.yml new file mode 100644 index 000000000..d959689b6 --- /dev/null +++ b/yamls/us/other/tracks/royal_raceway/royal_raceway_data.yml @@ -0,0 +1,368 @@ +:config: + segments: + - [0x06, 0x84ABD0] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_0"] + - [0x70000A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A8"] + - [0x7000130, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_130"] + - [0x70001A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1A8"] + - [0x70001C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1C8"] + - [0x7000230, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_230"] + - [0x70002A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2A8"] + - [0x7000320, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_320"] + - [0x7000340, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_340"] + - [0x70004D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4D0"] + - [0x70004E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4E0"] + - [0x7000548, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_548"] + - [0x7000558, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_558"] + - [0x70005D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5D8"] + - [0x7000650, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_650"] + - [0x7000668, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_668"] + - [0x70006D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D0"] + - [0x70006E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6E0"] + - [0x7000750, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_750"] + - [0x70007C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C0"] + - [0x7000840, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_840"] + - [0x7000860, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_860"] + - [0x70008A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8A0"] + - [0x70008B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B0"] + - [0x7000930, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_930"] + - [0x70009C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9C8"] + - [0x7000AB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AB8"] + - [0x7000B78, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B78"] + - [0x7000C38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_C38"] + - [0x7000C68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_C68"] + - [0x7000CE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_CE0"] + - [0x7000CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_CF0"] + - [0x7000E88, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_E88"] + - [0x7000E98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_E98"] + - [0x7000F88, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_F88"] + - [0x7001098, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1098"] + - [0x70011A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_11A8"] + - [0x70011C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_11C8"] + - [0x70012B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_12B0"] + - [0x7001438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1438"] + - [0x7001450, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1450"] + - [0x70014C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_14C8"] + - [0x7001548, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1548"] + - [0x70015D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_15D8"] + - [0x7001640, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1640"] + - [0x70016B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_16B8"] + - [0x7001720, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1720"] + - [0x7001788, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1788"] + - [0x70017F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_17F8"] + - [0x7001860, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1860"] + - [0x70018D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_18D8"] + - [0x7001940, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1940"] + - [0x70019B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_19B0"] + - [0x7001A30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1A30"] + - [0x7001AA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1AA0"] + - [0x7001B18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1B18"] + - [0x7001B98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1B98"] + - [0x7001C48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1C48"] + - [0x7001CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1CF0"] + - [0x7001D68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1D68"] + - [0x7001DF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1DF0"] + - [0x7001E60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1E60"] + - [0x7001EF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1EF0"] + - [0x7001F58, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1F58"] + - [0x7001FE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_1FE8"] + - [0x70020A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_20A0"] + - [0x7002110, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2110"] + - [0x70021B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_21B8"] + - [0x7002230, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2230"] + - [0x70022C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_22C0"] + - [0x7002370, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2370"] + - [0x70023F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_23F8"] + - [0x7002478, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2478"] + - [0x7002530, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2530"] + - [0x70025E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_25E0"] + - [0x70026B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_26B0"] + - [0x7002758, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2758"] + - [0x70027E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_27E0"] + - [0x7002870, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2870"] + - [0x70028D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_28D8"] + - [0x7002950, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2950"] + - [0x7002A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2A10"] + - [0x7002AC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2AC8"] + - [0x7002B38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2B38"] + - [0x7002BA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2BA0"] + - [0x7002C08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2C08"] + - [0x7002CF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2CF8"] + - [0x7002D80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2D80"] + - [0x7002E08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2E08"] + - [0x7002EE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2EE0"] + - [0x7002F70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_2F70"] + - [0x7003018, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3018"] + - [0x7003090, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3090"] + - [0x7003118, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3118"] + - [0x7003190, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3190"] + - [0x7003218, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3218"] + - [0x7003268, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3268"] + - [0x70032F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_32F0"] + - [0x7003368, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3368"] + - [0x70033D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_33D8"] + - [0x7003440, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3440"] + - [0x70034C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_34C0"] + - [0x7003540, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3540"] + - [0x7003628, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3628"] + - [0x70036B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_36B8"] + - [0x7003728, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3728"] + - [0x7003790, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3790"] + - [0x70037E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_37E8"] + - [0x7003908, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3908"] + - [0x7003978, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3978"] + - [0x7003B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3B50"] + - [0x7003B70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3B70"] + - [0x7003C18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3C18"] + - [0x7003CF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3CF0"] + - [0x7003DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3DC0"] + - [0x7003E50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3E50"] + - [0x7003F18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3F18"] + - [0x7003FA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_3FA8"] + - [0x7004078, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4078"] + - [0x7004118, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4118"] + - [0x70041A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_41A8"] + - [0x7004298, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4298"] + - [0x7004350, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4350"] + - [0x7004400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4400"] + - [0x70044B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_44B0"] + - [0x7004538, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4538"] + - [0x70045E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_45E0"] + - [0x70046E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_46E0"] + - [0x70047C0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_47C0"] + - [0x7004890, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4890"] + - [0x7004968, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4968"] + - [0x7004A08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4A08"] + - [0x7004A80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4A80"] + - [0x7004B30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4B30"] + - [0x7004BC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4BC8"] + - [0x7004CC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4CC8"] + - [0x7004DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4DC0"] + - [0x7004E90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4E90"] + - [0x7004F20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4F20"] + - [0x7004F98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_4F98"] + - [0x7005018, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5018"] + - [0x70050B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_50B0"] + - [0x7005138, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5138"] + - [0x70051E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_51E8"] + - [0x7005298, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5298"] + - [0x7005330, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5330"] + - [0x7005400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5400"] + - [0x70054A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_54A8"] + - [0x7005520, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5520"] + - [0x70055D0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_55D0"] + - [0x70056A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_56A0"] + - [0x7005740, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5740"] + - [0x70057F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_57F0"] + - [0x70058E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_58E8"] + - [0x7005990, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5990"] + - [0x7005A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5A10"] + - [0x7005AA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5AA8"] + - [0x7005B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5B50"] + - [0x7005C00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5C00"] + - [0x7005D18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5D18"] + - [0x7005DC8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5DC8"] + - [0x7005EF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_5EF8"] + - [0x7006008, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6008"] + - [0x70060D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_60D8"] + - [0x7006228, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6228"] + - [0x7006328, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6328"] + - [0x70067E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_67E8"] + - [0x7006808, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6808"] + - [0x7006880, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6880"] + - [0x70068E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_68E8"] + - [0x7006950, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6950"] + - [0x70069B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_69B0"] + - [0x7006A10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6A10"] + - [0x7006A80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6A80"] + - [0x7006B60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6B60"] + - [0x7006BE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6BE8"] + - [0x7006C58, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6C58"] + - [0x7006CC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6CC0"] + - [0x7006D18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D18"] + - [0x7006D98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6D98"] + - [0x7006E20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6E20"] + - [0x7006EB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6EB8"] + - [0x7006F28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6F28"] + - [0x7006FB0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_6FB0"] + - [0x7007020, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7020"] + - [0x70070B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_70B8"] + - [0x7007138, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7138"] + - [0x70071A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_71A0"] + - [0x7007278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7278"] + - [0x70072E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_72E8"] + - [0x7007360, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7360"] + - [0x70073E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_73E0"] + - [0x7007490, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7490"] + - [0x7007500, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7500"] + - [0x7007578, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7578"] + - [0x70075F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_75F8"] + - [0x7007680, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7680"] + - [0x7007718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7718"] + - [0x7007780, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7780"] + - [0x70077E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_77E8"] + - [0x7007868, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7868"] + - [0x70078E0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_78E0"] + - [0x7007980, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7980"] + - [0x7007A18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7A18"] + - [0x7007AE8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7AE8"] + - [0x7007B50, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7B50"] + - [0x7007BB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7BB8"] + - [0x7007C20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C20"] + - [0x7007C98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7C98"] + - [0x7007D10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7D10"] + - [0x7007D90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7D90"] + - [0x7007E08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7E08"] + - [0x7007E80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7E80"] + - [0x7007EF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7EF8"] + - [0x7007F70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7F70"] + - [0x7007FD0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_7FD0"] + - [0x7008040, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8040"] + - [0x70080C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_80C8"] + - [0x7008140, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8140"] + - [0x70081C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_81C8"] + - [0x7008278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8278"] + - [0x7008318, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8318"] + - [0x7008390, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8390"] + - [0x7008400, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8400"] + - [0x7008470, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8470"] + - [0x70084E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_84E8"] + - [0x7008580, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8580"] + - [0x7008618, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8618"] + - [0x70086B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_86B8"] + - [0x7008740, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8740"] + - [0x7008810, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8810"] + - [0x7008888, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8888"] + - [0x7008900, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8900"] + - [0x7008988, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8988"] + - [0x70089F0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_89F0"] + - [0x7008A60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8A60"] + - [0x7008AC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8AC0"] + - [0x7008B28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B28"] + - [0x7008B98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8B98"] + - [0x7008C00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8C00"] + - [0x7008C70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8C70"] + - [0x7008CD8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8CD8"] + - [0x7008D48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8D48"] + - [0x7008DC0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8DC0"] + - [0x7008E30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8E30"] + - [0x7008EA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8EA8"] + - [0x7008F28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8F28"] + - [0x7008F98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_8F98"] + - [0x7009008, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9008"] + - [0x7009080, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9080"] + - [0x70090F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_90F8"] + - [0x7009168, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9168"] + - [0x7009198, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9198"] + - [0x7009210, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9210"] + - [0x7009290, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9290"] + - [0x7009310, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9310"] + - [0x7009380, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9380"] + - [0x7009408, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9408"] + - [0x7009438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9438"] + - [0x70094B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_94B0"] + - [0x7009520, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9520"] + - [0x7009598, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9598"] + - [0x7009608, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9608"] + - [0x7009630, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9630"] + - [0x70096A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_96A8"] + - [0x7009718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9718"] + - [0x7009778, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9778"] + - [0x70097E8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_97E8"] + - [0x7009848, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9848"] + - [0x70098B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_98B8"] + - [0x7009918, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9918"] + - [0x7009988, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9988"] + - [0x7009A38, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9A38"] + - [0x7009A98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9A98"] + - [0x7009B08, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9B08"] + - [0x7009B68, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9B68"] + - [0x7009BD0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9BD0"] + - [0x7009C48, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9C48"] + - [0x7009CB8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9CB8"] + - [0x7009D20, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9D20"] + - [0x7009DA0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9DA0"] + - [0x7009E18, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9E18"] + - [0x7009E98, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9E98"] + - [0x7009F10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9F10"] + - [0x7009F80, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9F80"] + - [0x7009FF0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_9FF0"] + - [0x700A050, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A050"] + - [0x700A0B0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A0B0"] + - [0x700A128, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A128"] + - [0x700A1A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A1A0"] + - [0x700A210, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A210"] + - [0x700A278, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A278"] + - [0x700A2D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A2D8"] + - [0x700A3C8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A3C8"] + - [0x700A438, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A438"] + - [0x700A4B8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A4B8"] + - [0x700A538, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A538"] + - [0x700A5A0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A5A0"] + - [0x700A618, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A618"] + - [0x700A648, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A648"] + - [0x700A6A8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A6A8"] + - [0x700A718, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A718"] + - [0x700A730, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A730"] + - [0x700A7D8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A7D8"] + - [0x700A870, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A870"] + - [0x700A8F8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A8F8"] + - [0x700A970, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A970"] + - [0x700A998, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_A998"] + - [0x700AA10, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AA10"] + - [0x700AA90, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AA90"] + - [0x700AB28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AB28"] + - [0x700ABA8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_ABA8"] + - [0x700AC30, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AC30"] + - [0x700AC60, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AC60"] + - [0x700ACE0, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_ACE0"] + - [0x700AD78, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AD78"] + - [0x700AE00, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AE00"] + - [0x700AE70, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AE70"] + - [0x700AEF8, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AEF8"] + - [0x700AF28, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_AF28"] + - [0x700B030, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B030"] + - [0x700B040, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B040"] + - [0x700B120, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B120"] + - [0x700B130, "models/tracks/royal_raceway/royal_raceway_displaylists/d_course_royal_raceway_packed_dl_B130"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_royal_raceway_unknown_waypoints: + symbol: d_course_royal_raceway_unknown_waypoints + offset: 0xB5B8 + count: 78 + type: mk64:TRACK_PATH +d_course_royal_raceway_track_waypoints: + symbol: d_course_royal_raceway_track_waypoints + offset: 0xB828 + count: 903 + type: mk64:TRACK_PATH +d_course_royal_raceway_piranha_plant_spawn: + symbol: d_course_royal_raceway_piranha_plant_spawn + type: mk64:spawn_data + count: 17 + offset: 0xD9F0 +d_course_royal_raceway_tree_spawn: + symbol: d_course_royal_raceway_tree_spawn + type: mk64:spawn_data + count: 33 + offset: 0xDA80 +d_course_royal_raceway_item_box_spawns: + symbol: d_course_royal_raceway_item_box_spawns + type: mk64:spawn_data + count: 21 + offset: 0xDB88 +d_course_royal_raceway_addr: + symbol: d_course_royal_raceway_addr + type: mk64:track_sections + offset: 0xDC28 + count: 119 diff --git a/yamls/us/other/tracks/sherbet_land/sherbet_land_data.yml b/yamls/us/other/tracks/sherbet_land/sherbet_land_data.yml new file mode 100644 index 000000000..9aba86c4d --- /dev/null +++ b/yamls/us/other/tracks/sherbet_land/sherbet_land_data.yml @@ -0,0 +1,164 @@ +:config: + segments: + - [0x06, 0x86ECF0] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_0"] + - [0x70000C0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_C0"] + - [0x7000180, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_180"] + - [0x7000240, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_240"] + - [0x7000300, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_300"] + - [0x7000328, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_328"] + - [0x7000338, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_338"] + - [0x7000348, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_348"] + - [0x7000470, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_470"] + - [0x70005D0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_5D0"] + - [0x7000730, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_730"] + - [0x7000858, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_858"] + - [0x70009A0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_9A0"] + - [0x7000B00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_B00"] + - [0x7000C30, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_C30"] + - [0x7000D48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_D48"] + - [0x7000D90, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_D90"] + - [0x7000E00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_E00"] + - [0x7000EA0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_EA0"] + - [0x7000EB8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_EB8"] + - [0x7000F48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_F48"] + - [0x7000FD0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_FD0"] + - [0x7001050, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1050"] + - [0x70010C8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_10C8"] + - [0x7001148, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1148"] + - [0x70011B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_11B8"] + - [0x7001220, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1220"] + - [0x70012C8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_12C8"] + - [0x7001370, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1370"] + - [0x70013E8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_13E8"] + - [0x7001450, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1450"] + - [0x70014B0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_14B0"] + - [0x7001520, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1520"] + - [0x7001598, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1598"] + - [0x7001640, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1640"] + - [0x70016B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_16B8"] + - [0x7001720, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1720"] + - [0x7001798, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1798"] + - [0x7001800, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1800"] + - [0x7001870, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1870"] + - [0x70018E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_18E0"] + - [0x7001940, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1940"] + - [0x7001998, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1998"] + - [0x7001A18, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1A18"] + - [0x7001A98, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1A98"] + - [0x7001B20, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1B20"] + - [0x7001BE0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1BE0"] + - [0x7001C50, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1C50"] + - [0x7001CD8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1CD8"] + - [0x7001D48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1D48"] + - [0x7001DC0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1DC0"] + - [0x7001E40, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1E40"] + - [0x7001EB8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1EB8"] + - [0x7001F10, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1F10"] + - [0x7001F78, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1F78"] + - [0x7001FF0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_1FF0"] + - [0x7002068, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2068"] + - [0x70020D0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_20D0"] + - [0x7002138, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2138"] + - [0x70021B0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_21B0"] + - [0x7002220, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2220"] + - [0x7002290, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2290"] + - [0x7002308, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2308"] + - [0x7002358, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2358"] + - [0x7002450, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2450"] + - [0x7002548, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2548"] + - [0x7002640, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2640"] + - [0x7002738, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2738"] + - [0x7002760, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2760"] + - [0x7002798, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2798"] + - [0x70027A8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_27A8"] + - [0x7002B48, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2B48"] + - [0x7002B58, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2B58"] + - [0x7002BC8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2BC8"] + - [0x7002C68, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2C68"] + - [0x7002C80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2C80"] + - [0x7002CF0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2CF0"] + - [0x7002D80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2D80"] + - [0x7002E08, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2E08"] + - [0x7002E88, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2E88"] + - [0x7002F00, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2F00"] + - [0x7002F80, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2F80"] + - [0x7002FE8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_2FE8"] + - [0x7003058, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3058"] + - [0x70030C0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_30C0"] + - [0x7003170, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3170"] + - [0x7003218, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3218"] + - [0x7003290, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3290"] + - [0x70032F8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_32F8"] + - [0x7003368, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3368"] + - [0x70033E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_33E0"] + - [0x7003488, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3488"] + - [0x7003500, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3500"] + - [0x7003568, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3568"] + - [0x70035E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_35E0"] + - [0x7003648, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3648"] + - [0x70036B8, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_36B8"] + - [0x7003728, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3728"] + - [0x7003788, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3788"] + - [0x70037E0, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_37E0"] + - [0x7003848, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3848"] + - [0x7003858, "models/tracks/sherbet_land/sherbet_land_displaylists/d_course_sherbet_land_packed_dl_3858"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_sherbet_land_unknown_waypoints: + symbol: d_course_sherbet_land_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x4BF8 + count: 62 +d_course_sherbet_land_track_waypoints: + symbol: d_course_sherbet_land_track_waypoints + type: mk64:TRACK_PATH + offset: 0x4DE8 + count: 666 +d_course_sherbet_land_light1: + symbol: d_course_sherbet_land_light1 + type: lights + offset: 0x7240 +d_course_sherbet_land_light2: + symbol: d_course_sherbet_land_light2 + type: lights + offset: 0x7258 +d_course_sherbet_land_light3: + symbol: d_course_sherbet_land_light3 + type: lights + offset: 0x7270 +d_course_sherbet_land_light4: + symbol: d_course_sherbet_land_light4 + type: lights + offset: 0x7288 +d_course_sherbet_land_light5: + symbol: d_course_sherbet_land_light5 + type: lights + offset: 0x72A0 +d_course_sherbet_land_light6: + symbol: d_course_sherbet_land_light6 + type: lights + offset: 0x72B8 +d_course_sherbet_land_light7: + symbol: d_course_sherbet_land_light7 + type: lights + offset: 0x72D0 +d_course_sherbet_land_item_box_spawns: + symbol: d_course_sherbet_land_item_box_spawns + type: mk64:spawn_data + offset: 0x9B80 + count: 20 +d_course_sherbet_land_addr: + symbol: d_course_sherbet_land_addr + type: mk64:track_sections + offset: 0x9C20 + count: 24 diff --git a/yamls/us/other/tracks/skyscraper/skyscraper_data.yml b/yamls/us/other/tracks/skyscraper/skyscraper_data.yml new file mode 100644 index 000000000..8c6f09786 --- /dev/null +++ b/yamls/us/other/tracks/skyscraper/skyscraper_data.yml @@ -0,0 +1,39 @@ +:config: + segments: + - [0x06, 0x885780] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_0"] + - [0x7000238, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_238"] + - [0x7000248, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_248"] + - [0x7000258, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_258"] + - [0x7000268, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_268"] + - [0x7000570, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_570"] + - [0x7000580, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_580"] + - [0x70006B8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_6B8"] + - [0x70006C8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_6C8"] + - [0x70008D8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_8D8"] + - [0x7000B70, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_B70"] + - [0x7000B88, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_B88"] + - [0x7000C60, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_C60"] + - [0x7000C70, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_C70"] + - [0x7000FE8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_FE8"] + - [0x7000FF8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_FF8"] + - [0x70010C8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_10C8"] + - [0x70010D8, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_10D8"] + - [0x7001110, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_1110"] + - [0x7001120, "models/tracks/skyscraper/skyscraper_displaylists/d_course_skyscraper_packed_dl_1120"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_skyscraper_item_box_spawns: + symbol: d_course_skyscraper_item_box_spawns + type: mk64:spawn_data + count: 25 + offset: 0x80 diff --git a/yamls/us/other/tracks/toads_turnpike/toads_turnpike_data.yml b/yamls/us/other/tracks/toads_turnpike/toads_turnpike_data.yml new file mode 100644 index 000000000..4e3081ad1 --- /dev/null +++ b/yamls/us/other/tracks/toads_turnpike/toads_turnpike_data.yml @@ -0,0 +1,152 @@ +:config: + segments: + - [0x06, 0x857E80] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_0"] + - [0x7000068, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_68"] + - [0x70000D8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D8"] + - [0x7000140, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_140"] + - [0x7000160, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_160"] + - [0x7000218, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_218"] + - [0x7000300, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_300"] + - [0x70003E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E8"] + - [0x70004C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4C0"] + - [0x7000540, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_540"] + - [0x7000618, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_618"] + - [0x70006E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6E8"] + - [0x7000768, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_768"] + - [0x70007E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_7E8"] + - [0x70008C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_8C0"] + - [0x7000940, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_940"] + - [0x7000A28, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_A28"] + - [0x7000AA8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_AA8"] + - [0x7000B48, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_B48"] + - [0x7000C30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_C30"] + - [0x7000D08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D08"] + - [0x7000D88, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_D88"] + - [0x7000E08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_E08"] + - [0x7000EC0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_EC0"] + - [0x7000FA8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_FA8"] + - [0x7001050, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1050"] + - [0x7001068, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1068"] + - [0x7001078, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1078"] + - [0x70011B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_11B8"] + - [0x70013B0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_13B0"] + - [0x70015E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_15E8"] + - [0x7001780, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1780"] + - [0x70018C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_18C0"] + - [0x7001A58, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1A58"] + - [0x7001BB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1BB8"] + - [0x7001CB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1CB8"] + - [0x7001E30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1E30"] + - [0x7001F70, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_1F70"] + - [0x7002050, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2050"] + - [0x70021E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_21E8"] + - [0x7002328, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2328"] + - [0x70024C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_24C0"] + - [0x7002600, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2600"] + - [0x7002798, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2798"] + - [0x70028D8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_28D8"] + - [0x70029B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_29B8"] + - [0x7002AF8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2AF8"] + - [0x7002D98, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2D98"] + - [0x7002E40, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2E40"] + - [0x7002EE0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2EE0"] + - [0x7002FA0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_2FA0"] + - [0x7003060, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3060"] + - [0x7003118, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3118"] + - [0x70031E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_31E8"] + - [0x70032A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_32A0"] + - [0x70033A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_33A8"] + - [0x7003478, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3478"] + - [0x7003548, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3548"] + - [0x7003638, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3638"] + - [0x70036C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_36C0"] + - [0x7003780, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3780"] + - [0x7003850, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3850"] + - [0x70038E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_38E8"] + - [0x70039A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_39A8"] + - [0x7003AD0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3AD0"] + - [0x7003B58, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3B58"] + - [0x7003C28, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3C28"] + - [0x7003D00, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3D00"] + - [0x7003DE8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3DE8"] + - [0x7003E90, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3E90"] + - [0x7003F80, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_3F80"] + - [0x70040A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_40A8"] + - [0x70041D0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_41D0"] + - [0x70042E8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_42E8"] + - [0x70043A8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_43A8"] + - [0x70044C0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_44C0"] + - [0x70045B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_45B8"] + - [0x7004678, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4678"] + - [0x7004738, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4738"] + - [0x7004850, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4850"] + - [0x7004910, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4910"] + - [0x7004A40, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4A40"] + - [0x7004B00, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4B00"] + - [0x7004BE0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4BE0"] + - [0x7004D10, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4D10"] + - [0x7004E30, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4E30"] + - [0x7004EF0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4EF0"] + - [0x7004FB0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_4FB0"] + - [0x70050A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_50A0"] + - [0x70051C8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_51C8"] + - [0x7005270, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5270"] + - [0x7005360, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5360"] + - [0x7005480, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5480"] + - [0x70055A0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_55A0"] + - [0x70056B0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_56B0"] + - [0x7005770, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5770"] + - [0x7005880, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5880"] + - [0x7005958, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5958"] + - [0x7005AE8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5AE8"] + - [0x7005C80, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5C80"] + - [0x7005D90, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5D90"] + - [0x7005E50, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5E50"] + - [0x7005F78, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_5F78"] + - [0x7006030, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6030"] + - [0x7006110, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6110"] + - [0x7006230, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6230"] + - [0x7006348, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6348"] + - [0x7006408, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6408"] + - [0x70064C8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_64C8"] + - [0x70065B8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_65B8"] + - [0x70066E0, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_66E0"] + - [0x7006788, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6788"] + - [0x7006848, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6848"] + - [0x7006908, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6908"] + - [0x7006AB8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AB8"] + - [0x7006AD8, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6AD8"] + - [0x7006B08, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B08"] + - [0x7006B18, "models/tracks/toads_turnpike/toads_turnpike_displaylists/d_course_toads_turnpike_packed_dl_6B18"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_toads_turnpike_track_waypoints: + symbol: d_course_toads_turnpike_track_waypoints + type: mk64:TRACK_PATH + offset: 0x3D30 + count: 913 +d_course_toads_turnpike_item_box_spawns: + symbol: d_course_toads_turnpike_item_box_spawns + type: mk64:spawn_data + offset: 0x23AE0 + count: 17 +d_course_toads_turnpike_addr: + symbol: d_course_toads_turnpike_addr + type: mk64:track_sections + offset: 0x23B68 + count: 23 +d_course_toads_turnpike_unknown_waypoints: + symbol: d_course_toads_turnpike_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x3B80 + count: 54 diff --git a/yamls/us/other/tracks/wario_stadium/wario_stadium_data.yml b/yamls/us/other/tracks/wario_stadium/wario_stadium_data.yml new file mode 100644 index 000000000..d345d8373 --- /dev/null +++ b/yamls/us/other/tracks/wario_stadium/wario_stadium_data.yml @@ -0,0 +1,295 @@ +:config: + segments: + - [0x06, 0x8804A0] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_0"] + - [0x7000060, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_60"] + - [0x70000C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_C0"] + - [0x7000120, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_120"] + - [0x7000180, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_180"] + - [0x70001E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1E0"] + - [0x7000240, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_240"] + - [0x70002A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2A0"] + - [0x7000300, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_300"] + - [0x7000360, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_360"] + - [0x70003B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B0"] + - [0x70003C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3C0"] + - [0x7000428, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_428"] + - [0x7000500, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_500"] + - [0x70005D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D8"] + - [0x7000638, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_638"] + - [0x70006F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6F8"] + - [0x70007C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7C0"] + - [0x7000880, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_880"] + - [0x70008F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8F0"] + - [0x7000960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_960"] + - [0x7000A20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A20"] + - [0x7000A88, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A88"] + - [0x7000AE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_AE8"] + - [0x7000B60, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_B60"] + - [0x7000BD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_BD8"] + - [0x7000C50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_C50"] + - [0x7000CC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_CC8"] + - [0x7000D50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_D50"] + - [0x7000DD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_DD0"] + - [0x7000E48, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_E48"] + - [0x7000EC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_EC0"] + - [0x7000F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F08"] + - [0x7000F20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F20"] + - [0x7000F38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_F38"] + - [0x7000FA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_FA8"] + - [0x7001018, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1018"] + - [0x7001088, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1088"] + - [0x7001100, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1100"] + - [0x7001180, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1180"] + - [0x70011E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_11E0"] + - [0x7001290, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1290"] + - [0x7001348, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1348"] + - [0x70013D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_13D0"] + - [0x7001458, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1458"] + - [0x70014C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_14C8"] + - [0x7001540, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1540"] + - [0x70015C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_15C8"] + - [0x7001640, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1640"] + - [0x70016B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_16B0"] + - [0x7001710, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1710"] + - [0x7001778, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1778"] + - [0x70017F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_17F0"] + - [0x7001860, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1860"] + - [0x70018D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_18D8"] + - [0x7001948, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1948"] + - [0x70019D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_19D0"] + - [0x7001A50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1A50"] + - [0x7001B10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1B10"] + - [0x7001B70, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1B70"] + - [0x7001BD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1BD0"] + - [0x7001C40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1C40"] + - [0x7001D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1D20"] + - [0x7001DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1DE8"] + - [0x7001EA0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1EA0"] + - [0x7001F28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1F28"] + - [0x7001FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_1FC8"] + - [0x70020A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_20A0"] + - [0x7002108, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2108"] + - [0x70021D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_21D8"] + - [0x7002238, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2238"] + - [0x7002298, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2298"] + - [0x7002318, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2318"] + - [0x7002390, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2390"] + - [0x7002400, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2400"] + - [0x70024D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_24D0"] + - [0x7002598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2598"] + - [0x7002658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2658"] + - [0x70026C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_26C8"] + - [0x7002780, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2780"] + - [0x7002848, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2848"] + - [0x7002908, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2908"] + - [0x70029B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_29B8"] + - [0x7002A28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2A28"] + - [0x7002AB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2AB0"] + - [0x7002BB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2BB0"] + - [0x7002C18, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2C18"] + - [0x7002C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2C80"] + - [0x7002CE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2CE8"] + - [0x7002DB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2DB0"] + - [0x7002E90, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2E90"] + - [0x7002F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2F08"] + - [0x7002F78, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2F78"] + - [0x7002FE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_2FE8"] + - [0x7003070, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3070"] + - [0x70030E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_30E8"] + - [0x7003160, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3160"] + - [0x70031F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_31F0"] + - [0x7003260, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3260"] + - [0x70032D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_32D0"] + - [0x7003350, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3350"] + - [0x70033C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_33C0"] + - [0x7003438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3438"] + - [0x70034A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_34A0"] + - [0x7003518, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3518"] + - [0x7003598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3598"] + - [0x70035F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_35F8"] + - [0x7003660, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3660"] + - [0x70036D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_36D0"] + - [0x7003758, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3758"] + - [0x70037E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_37E0"] + - [0x7003848, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3848"] + - [0x70038F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_38F8"] + - [0x7003960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3960"] + - [0x70039D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_39D0"] + - [0x7003A30, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3A30"] + - [0x7003AA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3AA8"] + - [0x7003B08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B08"] + - [0x7003B68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3B68"] + - [0x7003BD0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3BD0"] + - [0x7003C40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3C40"] + - [0x7003CA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3CA8"] + - [0x7003D10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3D10"] + - [0x7003D80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3D80"] + - [0x7003DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3DE8"] + - [0x7003E50, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3E50"] + - [0x7003EC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3EC0"] + - [0x7003F70, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_3F70"] + - [0x7004038, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4038"] + - [0x7004098, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4098"] + - [0x7004168, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4168"] + - [0x7004218, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4218"] + - [0x70042C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_42C8"] + - [0x7004378, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4378"] + - [0x7004438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4438"] + - [0x70044E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_44E8"] + - [0x7004598, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4598"] + - [0x7004658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4658"] + - [0x70046B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_46B8"] + - [0x7004768, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4768"] + - [0x70047D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_47D8"] + - [0x7004808, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4808"] + - [0x7004930, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4930"] + - [0x7004AA0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4AA0"] + - [0x7004BA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4BA8"] + - [0x7004D68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4D68"] + - [0x7004EB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4EB8"] + - [0x7004FB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_4FB8"] + - [0x70050A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_50A0"] + - [0x7005208, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5208"] + - [0x70052F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_52F8"] + - [0x70053D0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_53D0"] + - [0x7005508, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5508"] + - [0x7005590, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5590"] + - [0x7005670, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5670"] + - [0x70056E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_56E0"] + - [0x7005768, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5768"] + - [0x70057F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_57F8"] + - [0x7005888, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5888"] + - [0x7005938, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5938"] + - [0x70059C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_59C0"] + - [0x7005A38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5A38"] + - [0x7005AA8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5AA8"] + - [0x7005B38, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5B38"] + - [0x7005BB8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5BB8"] + - [0x7005C30, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5C30"] + - [0x7005CB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5CB0"] + - [0x7005D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D20"] + - [0x7005D90, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5D90"] + - [0x7005E00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5E00"] + - [0x7005E88, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5E88"] + - [0x7005F08, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5F08"] + - [0x7005FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_5FC8"] + - [0x7006068, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6068"] + - [0x7006108, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6108"] + - [0x7006198, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6198"] + - [0x70062C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_62C8"] + - [0x7006390, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6390"] + - [0x7006418, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6418"] + - [0x70064E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_64E8"] + - [0x70065A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_65A0"] + - [0x7006658, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6658"] + - [0x7006700, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6700"] + - [0x70067B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_67B8"] + - [0x7006878, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6878"] + - [0x70068F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_68F0"] + - [0x7006950, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6950"] + - [0x7006A10, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6A10"] + - [0x7006AE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6AE8"] + - [0x7006BE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6BE0"] + - [0x7006C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6C80"] + - [0x7006D20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6D20"] + - [0x7006DD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6DD8"] + - [0x7006EC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6EC8"] + - [0x7006FC0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_6FC0"] + - [0x7007090, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7090"] + - [0x7007220, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7220"] + - [0x7007338, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7338"] + - [0x70073F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_73F0"] + - [0x7007530, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7530"] + - [0x70075A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_75A8"] + - [0x7007630, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7630"] + - [0x70076E0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_76E0"] + - [0x70077A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_77A8"] + - [0x7007838, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7838"] + - [0x7007960, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7960"] + - [0x7007A40, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7A40"] + - [0x7007B20, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7B20"] + - [0x7007BE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7BE0"] + - [0x7007D00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7D00"] + - [0x7007DF8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7DF8"] + - [0x7007ED0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7ED0"] + - [0x7007FB0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_7FB0"] + - [0x7008030, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8030"] + - [0x70080E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_80E8"] + - [0x7008240, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8240"] + - [0x70082F8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_82F8"] + - [0x70083A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_83A0"] + - [0x7008438, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8438"] + - [0x7008510, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8510"] + - [0x70085F0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_85F0"] + - [0x7008678, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8678"] + - [0x7008708, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8708"] + - [0x7008798, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8798"] + - [0x70088A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_88A0"] + - [0x7008A68, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8A68"] + - [0x7008C28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8C28"] + - [0x7008D28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8D28"] + - [0x7008DE8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8DE8"] + - [0x7008EF0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8EF0"] + - [0x7008FC8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_8FC8"] + - [0x7009090, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9090"] + - [0x7009120, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9120"] + - [0x70091E8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_91E8"] + - [0x7009328, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9328"] + - [0x70093B0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_93B0"] + - [0x7009430, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9430"] + - [0x7009590, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9590"] + - [0x7009668, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9668"] + - [0x7009760, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9760"] + - [0x7009820, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9820"] + - [0x70098A0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_98A0"] + - [0x7009998, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9998"] + - [0x7009AD8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9AD8"] + - [0x7009C80, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9C80"] + - [0x7009D00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9D00"] + - [0x7009D78, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9D78"] + - [0x7009E00, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9E00"] + - [0x7009EE0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9EE0"] + - [0x7009F18, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9F18"] + - [0x7009F28, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_9F28"] + - [0x700A0C8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A0C8"] + - [0x700A0D8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A0D8"] + - [0x700A148, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A148"] + - [0x700A1B8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A1B8"] + - [0x700A228, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A228"] + - [0x700A248, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A248"] + - [0x700A448, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A448"] + - [0x700A458, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A458"] + - [0x700A4A8, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A4A8"] + - [0x700A4C0, "models/tracks/wario_stadium/wario_stadium_displaylists/d_course_wario_stadium_packed_dl_A4C0"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_wario_stadium_unknown_waypoints: + symbol: d_course_wario_stadium_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0x56A0 + count: 77 +d_course_wario_stadium_track_waypoints: + symbol: d_course_wario_stadium_track_waypoints + type: mk64:TRACK_PATH + offset: 0x5908 + count: 1401 +d_course_wario_stadium_item_box_spawns: + symbol: d_course_wario_stadium_item_box_spawns + type: mk64:spawn_data + offset: 0xCB40 + count: 31 +d_course_wario_stadium_addr: + symbol: d_course_wario_stadium_addr + type: mk64:track_sections + offset: 0xCC38 + count: 32 diff --git a/yamls/us/other/tracks/yoshi_valley/yoshi_valley_data.yml b/yamls/us/other/tracks/yoshi_valley/yoshi_valley_data.yml new file mode 100644 index 000000000..64ec00e9c --- /dev/null +++ b/yamls/us/other/tracks/yoshi_valley/yoshi_valley_data.yml @@ -0,0 +1,333 @@ +:config: + segments: + - [0x06, 0x835BA0] + - [0x07, 0x800000] + manual_segments: + # Segment 7 + - [0x7000000, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_0"] + - [0x70000A8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_A8"] + - [0x7000128, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_128"] + - [0x70001A8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1A8"] + - [0x7000240, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_240"] + - [0x7000308, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_308"] + - [0x7000388, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_388"] + - [0x7000408, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_408"] + - [0x7000490, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_490"] + - [0x7000520, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_520"] + - [0x7000598, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_598"] + - [0x7000628, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_628"] + - [0x70006A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A0"] + - [0x7000748, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_748"] + - [0x70007D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7D8"] + - [0x7000858, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_858"] + - [0x7000908, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_908"] + - [0x7000980, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_980"] + - [0x7000A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_A00"] + - [0x7000AB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_AB0"] + - [0x7000B40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_B40"] + - [0x7000BF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_BF8"] + - [0x7000C90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_C90"] + - [0x7000D20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_D20"] + - [0x7000DE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_DE0"] + - [0x7000E90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_E90"] + - [0x7000F40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_F40"] + - [0x7000FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_FF0"] + - [0x70010A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_10A0"] + - [0x70010C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_10C8"] + - [0x7001150, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1150"] + - [0x70011B8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_11B8"] + - [0x7001220, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1220"] + - [0x7001290, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1290"] + - [0x7001300, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1300"] + - [0x7001368, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1368"] + - [0x70013D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_13D8"] + - [0x7001418, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1418"] + - [0x7001580, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1580"] + - [0x70016E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_16E8"] + - [0x7001700, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1700"] + - [0x7001728, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1728"] + - [0x7001738, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1738"] + - [0x70017B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_17B0"] + - [0x7001830, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1830"] + - [0x70018C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_18C8"] + - [0x7001938, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1938"] + - [0x70019F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_19F8"] + - [0x7001A68, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1A68"] + - [0x7001AF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1AF0"] + - [0x7001BA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1BA0"] + - [0x7001C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1C18"] + - [0x7001CB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1CB0"] + - [0x7001D20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1D20"] + - [0x7001DE8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1DE8"] + - [0x7001E50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1E50"] + - [0x7001EB8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1EB8"] + - [0x7001F20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1F20"] + - [0x7001F80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1F80"] + - [0x7001FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_1FF0"] + - [0x7002078, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2078"] + - [0x7002108, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2108"] + - [0x7002188, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2188"] + - [0x70021F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_21F8"] + - [0x7002270, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2270"] + - [0x70022F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_22F0"] + - [0x7002370, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2370"] + - [0x7002428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2428"] + - [0x7002498, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2498"] + - [0x7002510, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2510"] + - [0x70025A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_25A0"] + - [0x7002648, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2648"] + - [0x70026C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_26C8"] + - [0x7002758, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2758"] + - [0x70027F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_27F0"] + - [0x7002868, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2868"] + - [0x70028F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_28F8"] + - [0x7002988, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2988"] + - [0x7002A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2A00"] + - [0x7002A90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2A90"] + - [0x7002B08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2B08"] + - [0x7002BA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2BA0"] + - [0x7002C30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2C30"] + - [0x7002CD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2CD0"] + - [0x7002D50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2D50"] + - [0x7002DD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2DD0"] + - [0x7002E58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2E58"] + - [0x7002EE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2EE0"] + - [0x7002F90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_2F90"] + - [0x7003010, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3010"] + - [0x7003190, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3190"] + - [0x7003200, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3200"] + - [0x7003268, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3268"] + - [0x70032E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_32E8"] + - [0x7003368, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3368"] + - [0x70033D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_33D8"] + - [0x7003498, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3498"] + - [0x7003580, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3580"] + - [0x7003630, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3630"] + - [0x7003698, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3698"] + - [0x7003710, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3710"] + - [0x70037B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_37B0"] + - [0x7003818, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3818"] + - [0x7003890, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3890"] + - [0x7003900, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3900"] + - [0x7003970, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3970"] + - [0x7003A00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3A00"] + - [0x7003A80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3A80"] + - [0x7003B00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3B00"] + - [0x7003B78, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3B78"] + - [0x7003BF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3BF8"] + - [0x7003C70, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3C70"] + - [0x7003CD8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3CD8"] + - [0x7003D48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3D48"] + - [0x7003E08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3E08"] + - [0x7003F10, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3F10"] + - [0x7003FF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_3FF0"] + - [0x7004108, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4108"] + - [0x70041B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_41B0"] + - [0x7004258, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4258"] + - [0x7004358, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4358"] + - [0x7004428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4428"] + - [0x70044C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_44C8"] + - [0x7004588, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4588"] + - [0x70045F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_45F0"] + - [0x7004670, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4670"] + - [0x70046E0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_46E0"] + - [0x7004810, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4810"] + - [0x7004918, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4918"] + - [0x70049C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_49C0"] + - [0x7004A58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4A58"] + - [0x7004B20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4B20"] + - [0x7004C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4C18"] + - [0x7004CB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4CB0"] + - [0x7004D68, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4D68"] + - [0x7004E88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4E88"] + - [0x7004F48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4F48"] + - [0x7004FD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_4FD0"] + - [0x7005058, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5058"] + - [0x70050E0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_50E0"] + - [0x7005158, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5158"] + - [0x70051D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_51D8"] + - [0x70052D8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_52D8"] + - [0x70053C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_53C0"] + - [0x70054B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_54B0"] + - [0x7005548, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5548"] + - [0x70055C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_55C0"] + - [0x7005628, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5628"] + - [0x70056A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_56A0"] + - [0x7005710, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5710"] + - [0x7005788, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5788"] + - [0x7005800, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5800"] + - [0x7005880, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5880"] + - [0x70058F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_58F8"] + - [0x7005970, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5970"] + - [0x70059F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_59F0"] + - [0x7005A60, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5A60"] + - [0x7005AD8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5AD8"] + - [0x7005B48, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5B48"] + - [0x7005BB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5BB0"] + - [0x7005C18, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5C18"] + - [0x7005C80, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5C80"] + - [0x7005D00, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5D00"] + - [0x7005D90, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5D90"] + - [0x7005DF8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5DF8"] + - [0x7005E60, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5E60"] + - [0x7005F10, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5F10"] + - [0x7005F88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_5F88"] + - [0x7006008, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6008"] + - [0x7006070, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6070"] + - [0x7006100, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6100"] + - [0x7006178, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6178"] + - [0x70061E8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_61E8"] + - [0x7006250, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6250"] + - [0x70062D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_62D0"] + - [0x7006338, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6338"] + - [0x70063A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_63A0"] + - [0x7006428, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6428"] + - [0x7006490, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6490"] + - [0x70064F8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_64F8"] + - [0x7006560, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6560"] + - [0x70065C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_65C0"] + - [0x7006638, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6638"] + - [0x70066B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_66B0"] + - [0x7006728, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6728"] + - [0x7006798, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6798"] + - [0x7006810, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6810"] + - [0x7006888, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6888"] + - [0x7006920, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6920"] + - [0x7006990, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6990"] + - [0x7006A08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A08"] + - [0x7006A98, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6A98"] + - [0x7006B30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6B30"] + - [0x7006B98, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6B98"] + - [0x7006C40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6C40"] + - [0x7006CB8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6CB8"] + - [0x7006D40, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6D40"] + - [0x7006DB0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6DB0"] + - [0x7006E20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6E20"] + - [0x7006EA0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6EA0"] + - [0x7006F30, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6F30"] + - [0x7006FA8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_6FA8"] + - [0x7007010, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7010"] + - [0x7007090, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7090"] + - [0x7007120, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7120"] + - [0x70071A0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_71A0"] + - [0x7007210, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7210"] + - [0x7007290, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7290"] + - [0x7007300, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7300"] + - [0x7007458, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7458"] + - [0x70074D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_74D0"] + - [0x7007558, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7558"] + - [0x70075D0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_75D0"] + - [0x70075F0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_75F0"] + - [0x7007660, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7660"] + - [0x70076C8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_76C8"] + - [0x7007740, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7740"] + - [0x70077C0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_77C0"] + - [0x7007828, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7828"] + - [0x70078B0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_78B0"] + - [0x7007928, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7928"] + - [0x7007998, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7998"] + - [0x7007A08, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7A08"] + - [0x7007A70, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7A70"] + - [0x7007AE0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7AE0"] + - [0x7007B50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7B50"] + - [0x7007BD0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7BD0"] + - [0x7007C50, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7C50"] + - [0x7007CC0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7CC0"] + - [0x7007D38, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7D38"] + - [0x7007DA8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7DA8"] + - [0x7007E20, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7E20"] + - [0x7007E88, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7E88"] + - [0x7007EF0, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7EF0"] + - [0x7007F58, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7F58"] + - [0x7007FC8, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_7FC8"] + - [0x7008050, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8050"] + - [0x7008110, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8110"] + - [0x7008150, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8150"] + - [0x7008160, "models/tracks/yoshi_valley/yoshi_valley_displaylists/d_course_yoshi_valley_packed_dl_8160"] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_yoshi_valley_unknown_waypoints: + symbol: d_course_yoshi_valley_unknown_waypoints + type: mk64:TRACK_PATH + offset: 0xD780 + count: 73 +d_course_yoshi_valley_unknown_waypoints_2: + symbol: d_course_yoshi_valley_unknown_waypoints_2 + type: mk64:TRACK_PATH + offset: 0xD9C8 + count: 74 +d_course_yoshi_valley_unknown_waypoints_3: + symbol: d_course_yoshi_valley_unknown_waypoints_3 + type: mk64:TRACK_PATH + offset: 0xDC18 + count: 82 +d_course_yoshi_valley_unknown_waypoints_4: + symbol: d_course_yoshi_valley_unknown_waypoints_4 + type: mk64:TRACK_PATH + offset: 0xDEA8 + count: 85 +d_course_yoshi_valley_track_waypoints: + symbol: d_course_yoshi_valley_track_waypoints + type: mk64:TRACK_PATH + offset: 0xE150 + count: 678 +d_course_yoshi_valley_track_waypoints_2: + symbol: d_course_yoshi_valley_track_waypoints_2 + type: mk64:TRACK_PATH + offset: 0xF680 + count: 667 +d_course_yoshi_valley_track_waypoints_3: + symbol: d_course_yoshi_valley_track_waypoints_3 + type: mk64:TRACK_PATH + offset: 0x10B58 + count: 679 +d_course_yoshi_valley_track_waypoints_4: + symbol: d_course_yoshi_valley_track_waypoints_4 + type: mk64:TRACK_PATH + offset: 0x12090 + count: 793 +d_course_yoshi_valley_unknown_light1: + symbol: d_course_yoshi_valley_unknown_light1 + type: lights + offset: 0x13958 +d_course_yoshi_valley_unknown_light2: + symbol: d_course_yoshi_valley_unknown_light2 + type: lights + offset: 0x13970 +d_course_yoshi_valley_unknown_light3: + symbol: d_course_yoshi_valley_unknown_light3 + type: lights + offset: 0x13988 +d_course_yoshi_valley_unknown_light4: + symbol: d_course_yoshi_valley_unknown_light4 + type: lights + offset: 0x141A0 +d_course_yoshi_valley_unknown_light5: + symbol: d_course_yoshi_valley_unknown_light5 + type: lights + offset: 0x141B8 +d_course_yoshi_valley_lights4: + symbol: d_course_yoshi_valley_lights4 + type: lights + offset: 0x16558 +d_course_yoshi_valley_tree_spawn: + symbol: d_course_yoshi_valley_tree_spawn + type: mk64:spawn_data + offset: 0x180A0 + count: 14 +d_course_yoshi_valley_item_box_spawns: + symbol: d_course_yoshi_valley_item_box_spawns + type: mk64:spawn_data + offset: 0x18110 + count: 38 +d_course_yoshi_valley_addr: + symbol: d_course_yoshi_valley_addr + type: mk64:track_sections + offset: 0x18240 + count: 54 diff --git a/yamls/us/peach_kart.yml b/yamls/us/peach_kart.yml deleted file mode 100644 index 0265322a2..000000000 --- a/yamls/us/peach_kart.yml +++ /dev/null @@ -1,12803 +0,0 @@ -:config: - segments: - - [0x0F, 0x309F50] - no_compression: true - header: - code: - - '#include ' - - '#include ' - - '#include ' - header: - - '#include ' - - '#include ' - tables: - peach_kart_wheels: - range: [0x6FDE8, 0x93F68] - mode: APPEND -peach_kart_frame000: - symbol: gKartPeach000 - type: texture - offset: 0x0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame001: - symbol: gKartPeach001 - type: texture - offset: 0x4E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_001_wheel_0 -peach_kart_frame002: - symbol: gKartPeach002 - type: texture - offset: 0x9E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_002_wheel_0 -peach_kart_frame003: - symbol: gKartPeach003 - type: texture - offset: 0xEE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_003_wheel_0 -peach_kart_frame004: - symbol: gKartPeach004 - type: texture - offset: 0x1404 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_004_wheel_0 -peach_kart_frame005: - symbol: gKartPeach005 - type: texture - offset: 0x1924 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_005_wheel_0 -peach_kart_frame006: - symbol: gKartPeach006 - type: texture - offset: 0x1E44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_006_wheel_0 -peach_kart_frame007: - symbol: gKartPeach007 - type: texture - offset: 0x238C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_007_wheel_0 -peach_kart_frame008: - symbol: gKartPeach008 - type: texture - offset: 0x28E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_008_wheel_0 -peach_kart_frame009: - symbol: gKartPeach009 - type: texture - offset: 0x2E48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_009_wheel_0 -peach_kart_frame010: - symbol: gKartPeach010 - type: texture - offset: 0x33BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_010_wheel_0 -peach_kart_frame011: - symbol: gKartPeach011 - type: texture - offset: 0x392C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_011_wheel_0 -peach_kart_frame012: - symbol: gKartPeach012 - type: texture - offset: 0x3EB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_012_wheel_0 -peach_kart_frame013: - symbol: gKartPeach013 - type: texture - offset: 0x4438 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_013_wheel_0 -peach_kart_frame014: - symbol: gKartPeach014 - type: texture - offset: 0x49C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_014_wheel_0 -peach_kart_frame015: - symbol: gKartPeach015 - type: texture - offset: 0x4F4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_015_wheel_0 -peach_kart_frame016: - symbol: gKartPeach016 - type: texture - offset: 0x54D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_016_wheel_0 -peach_kart_frame017: - symbol: gKartPeach017 - type: texture - offset: 0x5A7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_017_wheel_0 -peach_kart_frame018: - symbol: gKartPeach018 - type: texture - offset: 0x6024 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_018_wheel_0 -peach_kart_frame019: - symbol: gKartPeach019 - type: texture - offset: 0x65C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_019_wheel_0 -peach_kart_frame020: - symbol: gKartPeach020 - type: texture - offset: 0x6B84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_020_wheel_0 -peach_kart_frame021: - symbol: gKartPeach021 - type: texture - offset: 0x7140 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_021_wheel_0 -peach_kart_frame022: - symbol: gKartPeach022 - type: texture - offset: 0x7604 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_022_wheel_0 -peach_kart_frame023: - symbol: gKartPeach023 - type: texture - offset: 0x7AEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_023_wheel_0 -peach_kart_frame024: - symbol: gKartPeach024 - type: texture - offset: 0x7FD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_024_wheel_0 -peach_kart_frame025: - symbol: gKartPeach025 - type: texture - offset: 0x84F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_025_wheel_0 -peach_kart_frame026: - symbol: gKartPeach026 - type: texture - offset: 0x8A1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_026_wheel_0 -peach_kart_frame027: - symbol: gKartPeach027 - type: texture - offset: 0x8F2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_027_wheel_0 -peach_kart_frame028: - symbol: gKartPeach028 - type: texture - offset: 0x946C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_028_wheel_0 -peach_kart_frame029: - symbol: gKartPeach029 - type: texture - offset: 0x99C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_029_wheel_0 -peach_kart_frame030: - symbol: gKartPeach030 - type: texture - offset: 0x9F38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_030_wheel_0 -peach_kart_frame031: - symbol: gKartPeach031 - type: texture - offset: 0xA4B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_031_wheel_0 -peach_kart_frame032: - symbol: gKartPeach032 - type: texture - offset: 0xAA40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_032_wheel_0 -peach_kart_frame033: - symbol: gKartPeach033 - type: texture - offset: 0xAFE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_033_wheel_0 -peach_kart_frame034: - symbol: gKartPeach034 - type: texture - offset: 0xB57C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_034_wheel_0 -peach_kart_frame035: - symbol: gKartPeach035 - type: texture - offset: 0xBB04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_035_wheel_0 -peach_kart_frame036: - symbol: gKartPeach036 - type: texture - offset: 0xC0A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_036_wheel_0 -peach_kart_frame037: - symbol: gKartPeach037 - type: texture - offset: 0xC64C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_037_wheel_0 -peach_kart_frame038: - symbol: gKartPeach038 - type: texture - offset: 0xCC0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_038_wheel_0 -peach_kart_frame039: - symbol: gKartPeach039 - type: texture - offset: 0xD1C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_039_wheel_0 -peach_kart_frame040: - symbol: gKartPeach040 - type: texture - offset: 0xD774 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_040_wheel_0 -peach_kart_frame041: - symbol: gKartPeach041 - type: texture - offset: 0xDD34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_041_wheel_0 -peach_kart_frame042: - symbol: gKartPeach042 - type: texture - offset: 0xE2FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_042_wheel_0 -peach_kart_frame043: - symbol: gKartPeach043 - type: texture - offset: 0xE7E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_043_wheel_0 -peach_kart_frame044: - symbol: gKartPeach044 - type: texture - offset: 0xECF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_044_wheel_0 -peach_kart_frame045: - symbol: gKartPeach045 - type: texture - offset: 0xF204 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_045_wheel_0 -peach_kart_frame046: - symbol: gKartPeach046 - type: texture - offset: 0xF72C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_046_wheel_0 -peach_kart_frame047: - symbol: gKartPeach047 - type: texture - offset: 0xFC54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_047_wheel_0 -peach_kart_frame048: - symbol: gKartPeach048 - type: texture - offset: 0x101B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_048_wheel_0 -peach_kart_frame049: - symbol: gKartPeach049 - type: texture - offset: 0x1071C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_049_wheel_0 -peach_kart_frame050: - symbol: gKartPeach050 - type: texture - offset: 0x10C9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_050_wheel_0 -peach_kart_frame051: - symbol: gKartPeach051 - type: texture - offset: 0x11214 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_051_wheel_0 -peach_kart_frame052: - symbol: gKartPeach052 - type: texture - offset: 0x117A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_052_wheel_0 -peach_kart_frame053: - symbol: gKartPeach053 - type: texture - offset: 0x11D28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_053_wheel_0 -peach_kart_frame054: - symbol: gKartPeach054 - type: texture - offset: 0x122C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_054_wheel_0 -peach_kart_frame055: - symbol: gKartPeach055 - type: texture - offset: 0x12870 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_055_wheel_0 -peach_kart_frame056: - symbol: gKartPeach056 - type: texture - offset: 0x12E1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_056_wheel_0 -peach_kart_frame057: - symbol: gKartPeach057 - type: texture - offset: 0x133B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_057_wheel_0 -peach_kart_frame058: - symbol: gKartPeach058 - type: texture - offset: 0x13974 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_058_wheel_0 -peach_kart_frame059: - symbol: gKartPeach059 - type: texture - offset: 0x13F24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_059_wheel_0 -peach_kart_frame060: - symbol: gKartPeach060 - type: texture - offset: 0x144F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_060_wheel_0 -peach_kart_frame061: - symbol: gKartPeach061 - type: texture - offset: 0x14ABC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_061_wheel_0 -peach_kart_frame062: - symbol: gKartPeach062 - type: texture - offset: 0x15094 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_062_wheel_0 -peach_kart_frame063: - symbol: gKartPeach063 - type: texture - offset: 0x15650 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_063_wheel_0 -peach_kart_frame064: - symbol: gKartPeach064 - type: texture - offset: 0x15B1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_064_wheel_0 -peach_kart_frame065: - symbol: gKartPeach065 - type: texture - offset: 0x16014 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_065_wheel_0 -peach_kart_frame066: - symbol: gKartPeach066 - type: texture - offset: 0x16524 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_066_wheel_0 -peach_kart_frame067: - symbol: gKartPeach067 - type: texture - offset: 0x16A64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_067_wheel_0 -peach_kart_frame068: - symbol: gKartPeach068 - type: texture - offset: 0x16F98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_068_wheel_0 -peach_kart_frame069: - symbol: gKartPeach069 - type: texture - offset: 0x17500 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_069_wheel_0 -peach_kart_frame070: - symbol: gKartPeach070 - type: texture - offset: 0x17A74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_070_wheel_0 -peach_kart_frame071: - symbol: gKartPeach071 - type: texture - offset: 0x17FE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_071_wheel_0 -peach_kart_frame072: - symbol: gKartPeach072 - type: texture - offset: 0x18554 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_072_wheel_0 -peach_kart_frame073: - symbol: gKartPeach073 - type: texture - offset: 0x18AE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_073_wheel_0 -peach_kart_frame074: - symbol: gKartPeach074 - type: texture - offset: 0x19088 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_074_wheel_0 -peach_kart_frame075: - symbol: gKartPeach075 - type: texture - offset: 0x1961C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_075_wheel_0 -peach_kart_frame076: - symbol: gKartPeach076 - type: texture - offset: 0x19BC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_076_wheel_0 -peach_kart_frame077: - symbol: gKartPeach077 - type: texture - offset: 0x1A16C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_077_wheel_0 -peach_kart_frame078: - symbol: gKartPeach078 - type: texture - offset: 0x1A718 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_078_wheel_0 -peach_kart_frame079: - symbol: gKartPeach079 - type: texture - offset: 0x1ACFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_079_wheel_0 -peach_kart_frame080: - symbol: gKartPeach080 - type: texture - offset: 0x1B2BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_080_wheel_0 -peach_kart_frame081: - symbol: gKartPeach081 - type: texture - offset: 0x1B88C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_081_wheel_0 -peach_kart_frame082: - symbol: gKartPeach082 - type: texture - offset: 0x1BE54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_082_wheel_0 -peach_kart_frame083: - symbol: gKartPeach083 - type: texture - offset: 0x1C404 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_083_wheel_0 -peach_kart_frame084: - symbol: gKartPeach084 - type: texture - offset: 0x1C9E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_084_wheel_0 -peach_kart_frame085: - symbol: gKartPeach085 - type: texture - offset: 0x1CED0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_085_wheel_0 -peach_kart_frame086: - symbol: gKartPeach086 - type: texture - offset: 0x1D3DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_086_wheel_0 -peach_kart_frame087: - symbol: gKartPeach087 - type: texture - offset: 0x1D8FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_087_wheel_0 -peach_kart_frame088: - symbol: gKartPeach088 - type: texture - offset: 0x1DE44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_088_wheel_0 -peach_kart_frame089: - symbol: gKartPeach089 - type: texture - offset: 0x1E38C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_089_wheel_0 -peach_kart_frame090: - symbol: gKartPeach090 - type: texture - offset: 0x1E8F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_090_wheel_0 -peach_kart_frame091: - symbol: gKartPeach091 - type: texture - offset: 0x1EE78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_091_wheel_0 -peach_kart_frame092: - symbol: gKartPeach092 - type: texture - offset: 0x1F40C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_092_wheel_0 -peach_kart_frame093: - symbol: gKartPeach093 - type: texture - offset: 0x1F984 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_093_wheel_0 -peach_kart_frame094: - symbol: gKartPeach094 - type: texture - offset: 0x1FF24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_094_wheel_0 -peach_kart_frame095: - symbol: gKartPeach095 - type: texture - offset: 0x204D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_095_wheel_0 -peach_kart_frame096: - symbol: gKartPeach096 - type: texture - offset: 0x20A74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_096_wheel_0 -peach_kart_frame097: - symbol: gKartPeach097 - type: texture - offset: 0x21020 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_097_wheel_0 -peach_kart_frame098: - symbol: gKartPeach098 - type: texture - offset: 0x215D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_098_wheel_0 -peach_kart_frame099: - symbol: gKartPeach099 - type: texture - offset: 0x21B80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_099_wheel_0 -peach_kart_frame100: - symbol: gKartPeach100 - type: texture - offset: 0x22158 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_100_wheel_0 -peach_kart_frame101: - symbol: gKartPeach101 - type: texture - offset: 0x22730 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_101_wheel_0 -peach_kart_frame102: - symbol: gKartPeach102 - type: texture - offset: 0x22D20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_102_wheel_0 -peach_kart_frame103: - symbol: gKartPeach103 - type: texture - offset: 0x232F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_103_wheel_0 -peach_kart_frame104: - symbol: gKartPeach104 - type: texture - offset: 0x238AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_104_wheel_0 -peach_kart_frame105: - symbol: gKartPeach105 - type: texture - offset: 0x23E6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_105_wheel_0 -peach_kart_frame106: - symbol: gKartPeach106 - type: texture - offset: 0x24360 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_106_wheel_0 -peach_kart_frame107: - symbol: gKartPeach107 - type: texture - offset: 0x24878 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_107_wheel_0 -peach_kart_frame108: - symbol: gKartPeach108 - type: texture - offset: 0x24DAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_108_wheel_0 -peach_kart_frame109: - symbol: gKartPeach109 - type: texture - offset: 0x25304 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_109_wheel_0 -peach_kart_frame110: - symbol: gKartPeach110 - type: texture - offset: 0x2587C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_110_wheel_0 -peach_kart_frame111: - symbol: gKartPeach111 - type: texture - offset: 0x25E00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_111_wheel_0 -peach_kart_frame112: - symbol: gKartPeach112 - type: texture - offset: 0x26398 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_112_wheel_0 -peach_kart_frame113: - symbol: gKartPeach113 - type: texture - offset: 0x26924 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_113_wheel_0 -peach_kart_frame114: - symbol: gKartPeach114 - type: texture - offset: 0x26ECC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_114_wheel_0 -peach_kart_frame115: - symbol: gKartPeach115 - type: texture - offset: 0x27474 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_115_wheel_0 -peach_kart_frame116: - symbol: gKartPeach116 - type: texture - offset: 0x27A20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_116_wheel_0 -peach_kart_frame117: - symbol: gKartPeach117 - type: texture - offset: 0x27FC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_117_wheel_0 -peach_kart_frame118: - symbol: gKartPeach118 - type: texture - offset: 0x28568 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_118_wheel_0 -peach_kart_frame119: - symbol: gKartPeach119 - type: texture - offset: 0x28B14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_119_wheel_0 -peach_kart_frame120: - symbol: gKartPeach120 - type: texture - offset: 0x290EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_120_wheel_0 -peach_kart_frame121: - symbol: gKartPeach121 - type: texture - offset: 0x296C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_121_wheel_0 -peach_kart_frame122: - symbol: gKartPeach122 - type: texture - offset: 0x29C98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_122_wheel_0 -peach_kart_frame123: - symbol: gKartPeach123 - type: texture - offset: 0x2A28C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_123_wheel_0 -peach_kart_frame124: - symbol: gKartPeach124 - type: texture - offset: 0x2A878 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_124_wheel_0 -peach_kart_frame125: - symbol: gKartPeach125 - type: texture - offset: 0x2AE5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_125_wheel_0 -peach_kart_frame126: - symbol: gKartPeach126 - type: texture - offset: 0x2B438 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_126_wheel_0 -peach_kart_frame127: - symbol: gKartPeach127 - type: texture - offset: 0x2B93C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_127_wheel_0 -peach_kart_frame128: - symbol: gKartPeach128 - type: texture - offset: 0x2BE44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_128_wheel_0 -peach_kart_frame129: - symbol: gKartPeach129 - type: texture - offset: 0x2C374 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_129_wheel_0 -peach_kart_frame130: - symbol: gKartPeach130 - type: texture - offset: 0x2C8C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_130_wheel_0 -peach_kart_frame131: - symbol: gKartPeach131 - type: texture - offset: 0x2CE3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_131_wheel_0 -peach_kart_frame132: - symbol: gKartPeach132 - type: texture - offset: 0x2D3C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_132_wheel_0 -peach_kart_frame133: - symbol: gKartPeach133 - type: texture - offset: 0x2D95C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_133_wheel_0 -peach_kart_frame134: - symbol: gKartPeach134 - type: texture - offset: 0x2DF08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_134_wheel_0 -peach_kart_frame135: - symbol: gKartPeach135 - type: texture - offset: 0x2E4B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_135_wheel_0 -peach_kart_frame136: - symbol: gKartPeach136 - type: texture - offset: 0x2EA60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_136_wheel_0 -peach_kart_frame137: - symbol: gKartPeach137 - type: texture - offset: 0x2F000 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_137_wheel_0 -peach_kart_frame138: - symbol: gKartPeach138 - type: texture - offset: 0x2F5A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_138_wheel_0 -peach_kart_frame139: - symbol: gKartPeach139 - type: texture - offset: 0x2FB54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_139_wheel_0 -peach_kart_frame140: - symbol: gKartPeach140 - type: texture - offset: 0x30108 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_140_wheel_0 -peach_kart_frame141: - symbol: gKartPeach141 - type: texture - offset: 0x306E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_141_wheel_0 -peach_kart_frame142: - symbol: gKartPeach142 - type: texture - offset: 0x30CC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_142_wheel_0 -peach_kart_frame143: - symbol: gKartPeach143 - type: texture - offset: 0x312B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_143_wheel_0 -peach_kart_frame144: - symbol: gKartPeach144 - type: texture - offset: 0x3189C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_144_wheel_0 -peach_kart_frame145: - symbol: gKartPeach145 - type: texture - offset: 0x31E84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_145_wheel_0 -peach_kart_frame146: - symbol: gKartPeach146 - type: texture - offset: 0x32470 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_146_wheel_0 -peach_kart_frame147: - symbol: gKartPeach147 - type: texture - offset: 0x32A40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_147_wheel_0 -peach_kart_frame148: - symbol: gKartPeach148 - type: texture - offset: 0x32F40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_148_wheel_0 -peach_kart_frame149: - symbol: gKartPeach149 - type: texture - offset: 0x33474 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_149_wheel_0 -peach_kart_frame150: - symbol: gKartPeach150 - type: texture - offset: 0x3399C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_150_wheel_0 -peach_kart_frame151: - symbol: gKartPeach151 - type: texture - offset: 0x33F04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_151_wheel_0 -peach_kart_frame152: - symbol: gKartPeach152 - type: texture - offset: 0x3448C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_152_wheel_0 -peach_kart_frame153: - symbol: gKartPeach153 - type: texture - offset: 0x34A34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_153_wheel_0 -peach_kart_frame154: - symbol: gKartPeach154 - type: texture - offset: 0x34FDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_154_wheel_0 -peach_kart_frame155: - symbol: gKartPeach155 - type: texture - offset: 0x35588 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_155_wheel_0 -peach_kart_frame156: - symbol: gKartPeach156 - type: texture - offset: 0x35B48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_156_wheel_0 -peach_kart_frame157: - symbol: gKartPeach157 - type: texture - offset: 0x360FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_157_wheel_0 -peach_kart_frame158: - symbol: gKartPeach158 - type: texture - offset: 0x366C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_158_wheel_0 -peach_kart_frame159: - symbol: gKartPeach159 - type: texture - offset: 0x36C70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_159_wheel_0 -peach_kart_frame160: - symbol: gKartPeach160 - type: texture - offset: 0x37248 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_160_wheel_0 -peach_kart_frame161: - symbol: gKartPeach161 - type: texture - offset: 0x3782C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_161_wheel_0 -peach_kart_frame162: - symbol: gKartPeach162 - type: texture - offset: 0x37E00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_162_wheel_0 -peach_kart_frame163: - symbol: gKartPeach163 - type: texture - offset: 0x383F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_163_wheel_0 -peach_kart_frame164: - symbol: gKartPeach164 - type: texture - offset: 0x389E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_164_wheel_0 -peach_kart_frame165: - symbol: gKartPeach165 - type: texture - offset: 0x38FC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_165_wheel_0 -peach_kart_frame166: - symbol: gKartPeach166 - type: texture - offset: 0x395B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_166_wheel_0 -peach_kart_frame167: - symbol: gKartPeach167 - type: texture - offset: 0x39BA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_167_wheel_0 -peach_kart_frame168: - symbol: gKartPeach168 - type: texture - offset: 0x3A18C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_168_wheel_0 -peach_kart_frame169: - symbol: gKartPeach169 - type: texture - offset: 0x3A690 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_169_wheel_0 -peach_kart_frame170: - symbol: gKartPeach170 - type: texture - offset: 0x3ABB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_170_wheel_0 -peach_kart_frame171: - symbol: gKartPeach171 - type: texture - offset: 0x3B0FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_171_wheel_0 -peach_kart_frame172: - symbol: gKartPeach172 - type: texture - offset: 0x3B658 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_172_wheel_0 -peach_kart_frame173: - symbol: gKartPeach173 - type: texture - offset: 0x3BBDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_173_wheel_0 -peach_kart_frame174: - symbol: gKartPeach174 - type: texture - offset: 0x3C184 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_174_wheel_0 -peach_kart_frame175: - symbol: gKartPeach175 - type: texture - offset: 0x3C748 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_175_wheel_0 -peach_kart_frame176: - symbol: gKartPeach176 - type: texture - offset: 0x3CD14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_176_wheel_0 -peach_kart_frame177: - symbol: gKartPeach177 - type: texture - offset: 0x3D2F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_177_wheel_0 -peach_kart_frame178: - symbol: gKartPeach178 - type: texture - offset: 0x3D8C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_178_wheel_0 -peach_kart_frame179: - symbol: gKartPeach179 - type: texture - offset: 0x3DEA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_179_wheel_0 -peach_kart_frame180: - symbol: gKartPeach180 - type: texture - offset: 0x3E488 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_180_wheel_0 -peach_kart_frame181: - symbol: gKartPeach181 - type: texture - offset: 0x3EA68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_181_wheel_0 -peach_kart_frame182: - symbol: gKartPeach182 - type: texture - offset: 0x3F040 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_182_wheel_0 -peach_kart_frame183: - symbol: gKartPeach183 - type: texture - offset: 0x3F640 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_183_wheel_0 -peach_kart_frame184: - symbol: gKartPeach184 - type: texture - offset: 0x3FC4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_184_wheel_0 -peach_kart_frame185: - symbol: gKartPeach185 - type: texture - offset: 0x40248 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_185_wheel_0 -peach_kart_frame186: - symbol: gKartPeach186 - type: texture - offset: 0x40840 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_186_wheel_0 -peach_kart_frame187: - symbol: gKartPeach187 - type: texture - offset: 0x40E28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_187_wheel_0 -peach_kart_frame188: - symbol: gKartPeach188 - type: texture - offset: 0x41424 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_188_wheel_0 -peach_kart_frame189: - symbol: gKartPeach189 - type: texture - offset: 0x41A10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_189_wheel_0 -peach_kart_frame190: - symbol: gKartPeach190 - type: texture - offset: 0x41F18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_190_wheel_0 -peach_kart_frame191: - symbol: gKartPeach191 - type: texture - offset: 0x42420 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_191_wheel_0 -peach_kart_frame192: - symbol: gKartPeach192 - type: texture - offset: 0x42958 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_192_wheel_0 -peach_kart_frame193: - symbol: gKartPeach193 - type: texture - offset: 0x42ECC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_193_wheel_0 -peach_kart_frame194: - symbol: gKartPeach194 - type: texture - offset: 0x43454 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_194_wheel_0 -peach_kart_frame195: - symbol: gKartPeach195 - type: texture - offset: 0x439F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_195_wheel_0 -peach_kart_frame196: - symbol: gKartPeach196 - type: texture - offset: 0x43FA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_196_wheel_0 -peach_kart_frame197: - symbol: gKartPeach197 - type: texture - offset: 0x44580 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_197_wheel_0 -peach_kart_frame198: - symbol: gKartPeach198 - type: texture - offset: 0x44B54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_198_wheel_0 -peach_kart_frame199: - symbol: gKartPeach199 - type: texture - offset: 0x4514C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_199_wheel_0 -peach_kart_frame200: - symbol: gKartPeach200 - type: texture - offset: 0x45764 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_200_wheel_0 -peach_kart_frame201: - symbol: gKartPeach201 - type: texture - offset: 0x45DA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_201_wheel_0 -peach_kart_frame202: - symbol: gKartPeach202 - type: texture - offset: 0x463C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_202_wheel_0 -peach_kart_frame203: - symbol: gKartPeach203 - type: texture - offset: 0x469D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_203_wheel_0 -peach_kart_frame204: - symbol: gKartPeach204 - type: texture - offset: 0x46FD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_204_wheel_0 -peach_kart_frame205: - symbol: gKartPeach205 - type: texture - offset: 0x475E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_205_wheel_0 -peach_kart_frame206: - symbol: gKartPeach206 - type: texture - offset: 0x47BE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_206_wheel_0 -peach_kart_frame207: - symbol: gKartPeach207 - type: texture - offset: 0x481CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_207_wheel_0 -peach_kart_frame208: - symbol: gKartPeach208 - type: texture - offset: 0x487D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_208_wheel_0 -peach_kart_frame209: - symbol: gKartPeach209 - type: texture - offset: 0x48DA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_209_wheel_0 -peach_kart_frame210: - symbol: gKartPeach210 - type: texture - offset: 0x492A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_210_wheel_0 -peach_kart_frame211: - symbol: gKartPeach211 - type: texture - offset: 0x497D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_211_wheel_0 -peach_kart_frame212: - symbol: gKartPeach212 - type: texture - offset: 0x49D40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_212_wheel_0 -peach_kart_frame213: - symbol: gKartPeach213 - type: texture - offset: 0x4A2C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_213_wheel_0 -peach_kart_frame214: - symbol: gKartPeach214 - type: texture - offset: 0x4A850 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_214_wheel_0 -peach_kart_frame215: - symbol: gKartPeach215 - type: texture - offset: 0x4ADF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_215_wheel_0 -peach_kart_frame216: - symbol: gKartPeach216 - type: texture - offset: 0x4B3BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_216_wheel_0 -peach_kart_frame217: - symbol: gKartPeach217 - type: texture - offset: 0x4B97C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_217_wheel_0 -peach_kart_frame218: - symbol: gKartPeach218 - type: texture - offset: 0x4BF60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_218_wheel_0 -peach_kart_frame219: - symbol: gKartPeach219 - type: texture - offset: 0x4C544 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_219_wheel_0 -peach_kart_frame220: - symbol: gKartPeach220 - type: texture - offset: 0x4CB38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_220_wheel_0 -peach_kart_frame221: - symbol: gKartPeach221 - type: texture - offset: 0x4D13C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_221_wheel_0 -peach_kart_frame222: - symbol: gKartPeach222 - type: texture - offset: 0x4D71C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_222_wheel_0 -peach_kart_frame223: - symbol: gKartPeach223 - type: texture - offset: 0x4DD04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_223_wheel_0 -peach_kart_frame224: - symbol: gKartPeach224 - type: texture - offset: 0x4E2DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_224_wheel_0 -peach_kart_frame225: - symbol: gKartPeach225 - type: texture - offset: 0x4E8CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_225_wheel_0 -peach_kart_frame226: - symbol: gKartPeach226 - type: texture - offset: 0x4EEA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_226_wheel_0 -peach_kart_frame227: - symbol: gKartPeach227 - type: texture - offset: 0x4F45C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_227_wheel_0 -peach_kart_frame228: - symbol: gKartPeach228 - type: texture - offset: 0x4FA18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_228_wheel_0 -peach_kart_frame229: - symbol: gKartPeach229 - type: texture - offset: 0x4FFB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_229_wheel_0 -peach_kart_frame230: - symbol: gKartPeach230 - type: texture - offset: 0x504D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_230_wheel_0 -peach_kart_frame231: - symbol: gKartPeach231 - type: texture - offset: 0x50A14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_231_wheel_0 -peach_kart_frame232: - symbol: gKartPeach232 - type: texture - offset: 0x50F9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_232_wheel_0 -peach_kart_frame233: - symbol: gKartPeach233 - type: texture - offset: 0x5152C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_233_wheel_0 -peach_kart_frame234: - symbol: gKartPeach234 - type: texture - offset: 0x51AF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_234_wheel_0 -peach_kart_frame235: - symbol: gKartPeach235 - type: texture - offset: 0x520A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_235_wheel_0 -peach_kart_frame236: - symbol: gKartPeach236 - type: texture - offset: 0x52668 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_236_wheel_0 -peach_kart_frame237: - symbol: gKartPeach237 - type: texture - offset: 0x52C2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_237_wheel_0 -peach_kart_frame238: - symbol: gKartPeach238 - type: texture - offset: 0x53214 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_238_wheel_0 -peach_kart_frame239: - symbol: gKartPeach239 - type: texture - offset: 0x53800 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_239_wheel_0 -peach_kart_frame240: - symbol: gKartPeach240 - type: texture - offset: 0x53DF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_240_wheel_0 -peach_kart_frame241: - symbol: gKartPeach241 - type: texture - offset: 0x543E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_241_wheel_0 -peach_kart_frame242: - symbol: gKartPeach242 - type: texture - offset: 0x549C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_242_wheel_0 -peach_kart_frame243: - symbol: gKartPeach243 - type: texture - offset: 0x54F90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_243_wheel_0 -peach_kart_frame244: - symbol: gKartPeach244 - type: texture - offset: 0x55548 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_244_wheel_0 -peach_kart_frame245: - symbol: gKartPeach245 - type: texture - offset: 0x55B18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_245_wheel_0 -peach_kart_frame246: - symbol: gKartPeach246 - type: texture - offset: 0x560D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_246_wheel_0 -peach_kart_frame247: - symbol: gKartPeach247 - type: texture - offset: 0x56670 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_247_wheel_0 -peach_kart_frame248: - symbol: gKartPeach248 - type: texture - offset: 0x56BE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_248_wheel_0 -peach_kart_frame249: - symbol: gKartPeach249 - type: texture - offset: 0x57138 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_249_wheel_0 -peach_kart_frame250: - symbol: gKartPeach250 - type: texture - offset: 0x57658 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_250_wheel_0 -peach_kart_frame251: - symbol: gKartPeach251 - type: texture - offset: 0x57BA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_251_wheel_0 -peach_kart_frame252: - symbol: gKartPeach252 - type: texture - offset: 0x58118 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_252_wheel_0 -peach_kart_frame253: - symbol: gKartPeach253 - type: texture - offset: 0x586AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_253_wheel_0 -peach_kart_frame254: - symbol: gKartPeach254 - type: texture - offset: 0x58C60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_254_wheel_0 -peach_kart_frame255: - symbol: gKartPeach255 - type: texture - offset: 0x59220 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_255_wheel_0 -peach_kart_frame256: - symbol: gKartPeach256 - type: texture - offset: 0x597EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_256_wheel_0 -peach_kart_frame257: - symbol: gKartPeach257 - type: texture - offset: 0x59DDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_257_wheel_0 -peach_kart_frame258: - symbol: gKartPeach258 - type: texture - offset: 0x5A3D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_258_wheel_0 -peach_kart_frame259: - symbol: gKartPeach259 - type: texture - offset: 0x5A9CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_259_wheel_0 -peach_kart_frame260: - symbol: gKartPeach260 - type: texture - offset: 0x5AFB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_260_wheel_0 -peach_kart_frame261: - symbol: gKartPeach261 - type: texture - offset: 0x5B5A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_261_wheel_0 -peach_kart_frame262: - symbol: gKartPeach262 - type: texture - offset: 0x5BB5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_262_wheel_0 -peach_kart_frame263: - symbol: gKartPeach263 - type: texture - offset: 0x5C110 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_263_wheel_0 -peach_kart_frame264: - symbol: gKartPeach264 - type: texture - offset: 0x5C698 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_264_wheel_0 -peach_kart_frame265: - symbol: gKartPeach265 - type: texture - offset: 0x5CC3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_265_wheel_0 -peach_kart_frame266: - symbol: gKartPeach266 - type: texture - offset: 0x5D1C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_266_wheel_0 -peach_kart_frame267: - symbol: gKartPeach267 - type: texture - offset: 0x5D718 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_267_wheel_0 -peach_kart_frame268: - symbol: gKartPeach268 - type: texture - offset: 0x5DC4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_268_wheel_0 -peach_kart_frame269: - symbol: gKartPeach269 - type: texture - offset: 0x5E178 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_269_wheel_0 -peach_kart_frame270: - symbol: gKartPeach270 - type: texture - offset: 0x5E6A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_270_wheel_0 -peach_kart_frame271: - symbol: gKartPeach271 - type: texture - offset: 0x5EC04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_271_wheel_0 -peach_kart_frame272: - symbol: gKartPeach272 - type: texture - offset: 0x5F190 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_272_wheel_0 -peach_kart_frame273: - symbol: gKartPeach273 - type: texture - offset: 0x5F72C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_273_wheel_0 -peach_kart_frame274: - symbol: gKartPeach274 - type: texture - offset: 0x5FCD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_274_wheel_0 -peach_kart_frame275: - symbol: gKartPeach275 - type: texture - offset: 0x602A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_275_wheel_0 -peach_kart_frame276: - symbol: gKartPeach276 - type: texture - offset: 0x60884 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_276_wheel_0 -peach_kart_frame277: - symbol: gKartPeach277 - type: texture - offset: 0x60E5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_277_wheel_0 -peach_kart_frame278: - symbol: gKartPeach278 - type: texture - offset: 0x61450 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_278_wheel_0 -peach_kart_frame279: - symbol: gKartPeach279 - type: texture - offset: 0x61A30 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_279_wheel_0 -peach_kart_frame280: - symbol: gKartPeach280 - type: texture - offset: 0x62020 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_280_wheel_0 -peach_kart_frame281: - symbol: gKartPeach281 - type: texture - offset: 0x625D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_281_wheel_0 -peach_kart_frame282: - symbol: gKartPeach282 - type: texture - offset: 0x62B6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_282_wheel_0 -peach_kart_frame283: - symbol: gKartPeach283 - type: texture - offset: 0x63100 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_283_wheel_0 -peach_kart_frame284: - symbol: gKartPeach284 - type: texture - offset: 0x63694 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_284_wheel_0 -peach_kart_frame285: - symbol: gKartPeach285 - type: texture - offset: 0x63C00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_285_wheel_0 -peach_kart_frame286: - symbol: gKartPeach286 - type: texture - offset: 0x64144 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_286_wheel_0 -peach_kart_frame287: - symbol: gKartPeach287 - type: texture - offset: 0x64668 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_287_wheel_0 -peach_kart_frame288: - symbol: gKartPeach288 - type: texture - offset: 0x64B64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_288_wheel_0 -peach_kart_frame289: - symbol: gKartPeach289 - type: texture - offset: 0x65040 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame290: - symbol: gKartPeach290 - type: texture - offset: 0x654D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame291: - symbol: gKartPeach291 - type: texture - offset: 0x659B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame292: - symbol: gKartPeach292 - type: texture - offset: 0x65F48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame293: - symbol: gKartPeach293 - type: texture - offset: 0x665AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame294: - symbol: gKartPeach294 - type: texture - offset: 0x66BE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame295: - symbol: gKartPeach295 - type: texture - offset: 0x67218 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame296: - symbol: gKartPeach296 - type: texture - offset: 0x6777C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame297: - symbol: gKartPeach297 - type: texture - offset: 0x67C7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame298: - symbol: gKartPeach298 - type: texture - offset: 0x68150 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame299: - symbol: gKartPeach299 - type: texture - offset: 0x686D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame300: - symbol: gKartPeach300 - type: texture - offset: 0x68C80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame301: - symbol: gKartPeach301 - type: texture - offset: 0x6922C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame302: - symbol: gKartPeach302 - type: texture - offset: 0x6979C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame303: - symbol: gKartPeach303 - type: texture - offset: 0x69CBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame304: - symbol: gKartPeach304 - type: texture - offset: 0x6A19C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame305: - symbol: gKartPeach305 - type: texture - offset: 0x6A694 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame306: - symbol: gKartPeach306 - type: texture - offset: 0x6AB34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame307: - symbol: gKartPeach307 - type: texture - offset: 0x6B0D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame308: - symbol: gKartPeach308 - type: texture - offset: 0x6B72C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame309: - symbol: gKartPeach309 - type: texture - offset: 0x6BDB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame310: - symbol: gKartPeach310 - type: texture - offset: 0x6C3A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame311: - symbol: gKartPeach311 - type: texture - offset: 0x6C984 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame312: - symbol: gKartPeach312 - type: texture - offset: 0x6CEC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame313: - symbol: gKartPeach313 - type: texture - offset: 0x6D388 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame314: - symbol: gKartPeach314 - type: texture - offset: 0x6D85C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame315: - symbol: gKartPeach315 - type: texture - offset: 0x6DDC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame316: - symbol: gKartPeach316 - type: texture - offset: 0x6E38C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame317: - symbol: gKartPeach317 - type: texture - offset: 0x6E91C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame318: - symbol: gKartPeach318 - type: texture - offset: 0x6EEA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame319: - symbol: gKartPeach319 - type: texture - offset: 0x6F400 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -peach_kart_frame320: - symbol: gKartPeach320 - type: texture - offset: 0x6F914 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: peach_kart_palette - tlut_wheel: kart_000_wheel_0 -kart_000_wheel_0: - symbol: gKartPeach000Wheel0 - type: texture - offset: 0x6FDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_1: - symbol: gKartPeach000Wheel1 - type: texture - offset: 0x6FE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_2: - symbol: gKartPeach000Wheel2 - type: texture - offset: 0x6FEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_3: - symbol: gKartPeach000Wheel3 - type: texture - offset: 0x6FF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_0: - symbol: gKartPeach001Wheel0 - type: texture - offset: 0x6FFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_1: - symbol: gKartPeach001Wheel1 - type: texture - offset: 0x70068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_2: - symbol: gKartPeach001Wheel2 - type: texture - offset: 0x700E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_3: - symbol: gKartPeach001Wheel3 - type: texture - offset: 0x70168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_0: - symbol: gKartPeach002Wheel0 - type: texture - offset: 0x701E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_1: - symbol: gKartPeach002Wheel1 - type: texture - offset: 0x70268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_2: - symbol: gKartPeach002Wheel2 - type: texture - offset: 0x702E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_3: - symbol: gKartPeach002Wheel3 - type: texture - offset: 0x70368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_0: - symbol: gKartPeach003Wheel0 - type: texture - offset: 0x703E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_1: - symbol: gKartPeach003Wheel1 - type: texture - offset: 0x70468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_2: - symbol: gKartPeach003Wheel2 - type: texture - offset: 0x704E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_3: - symbol: gKartPeach003Wheel3 - type: texture - offset: 0x70568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_0: - symbol: gKartPeach004Wheel0 - type: texture - offset: 0x705E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_1: - symbol: gKartPeach004Wheel1 - type: texture - offset: 0x70668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_2: - symbol: gKartPeach004Wheel2 - type: texture - offset: 0x706E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_3: - symbol: gKartPeach004Wheel3 - type: texture - offset: 0x70768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_0: - symbol: gKartPeach005Wheel0 - type: texture - offset: 0x707E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_1: - symbol: gKartPeach005Wheel1 - type: texture - offset: 0x70868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_2: - symbol: gKartPeach005Wheel2 - type: texture - offset: 0x708E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_3: - symbol: gKartPeach005Wheel3 - type: texture - offset: 0x70968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_0: - symbol: gKartPeach006Wheel0 - type: texture - offset: 0x709E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_1: - symbol: gKartPeach006Wheel1 - type: texture - offset: 0x70A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_2: - symbol: gKartPeach006Wheel2 - type: texture - offset: 0x70AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_3: - symbol: gKartPeach006Wheel3 - type: texture - offset: 0x70B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_0: - symbol: gKartPeach007Wheel0 - type: texture - offset: 0x70BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_1: - symbol: gKartPeach007Wheel1 - type: texture - offset: 0x70C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_2: - symbol: gKartPeach007Wheel2 - type: texture - offset: 0x70CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_3: - symbol: gKartPeach007Wheel3 - type: texture - offset: 0x70D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_0: - symbol: gKartPeach008Wheel0 - type: texture - offset: 0x70DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_1: - symbol: gKartPeach008Wheel1 - type: texture - offset: 0x70E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_2: - symbol: gKartPeach008Wheel2 - type: texture - offset: 0x70EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_3: - symbol: gKartPeach008Wheel3 - type: texture - offset: 0x70F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_0: - symbol: gKartPeach009Wheel0 - type: texture - offset: 0x70FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_1: - symbol: gKartPeach009Wheel1 - type: texture - offset: 0x71068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_2: - symbol: gKartPeach009Wheel2 - type: texture - offset: 0x710E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_3: - symbol: gKartPeach009Wheel3 - type: texture - offset: 0x71168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_0: - symbol: gKartPeach010Wheel0 - type: texture - offset: 0x711E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_1: - symbol: gKartPeach010Wheel1 - type: texture - offset: 0x71268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_2: - symbol: gKartPeach010Wheel2 - type: texture - offset: 0x712E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_3: - symbol: gKartPeach010Wheel3 - type: texture - offset: 0x71368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_0: - symbol: gKartPeach011Wheel0 - type: texture - offset: 0x713E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_1: - symbol: gKartPeach011Wheel1 - type: texture - offset: 0x71468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_2: - symbol: gKartPeach011Wheel2 - type: texture - offset: 0x714E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_3: - symbol: gKartPeach011Wheel3 - type: texture - offset: 0x71568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_0: - symbol: gKartPeach012Wheel0 - type: texture - offset: 0x715E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_1: - symbol: gKartPeach012Wheel1 - type: texture - offset: 0x71668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_2: - symbol: gKartPeach012Wheel2 - type: texture - offset: 0x716E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_3: - symbol: gKartPeach012Wheel3 - type: texture - offset: 0x71768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_0: - symbol: gKartPeach013Wheel0 - type: texture - offset: 0x717E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_1: - symbol: gKartPeach013Wheel1 - type: texture - offset: 0x71868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_2: - symbol: gKartPeach013Wheel2 - type: texture - offset: 0x718E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_3: - symbol: gKartPeach013Wheel3 - type: texture - offset: 0x71968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_0: - symbol: gKartPeach014Wheel0 - type: texture - offset: 0x719E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_1: - symbol: gKartPeach014Wheel1 - type: texture - offset: 0x71A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_2: - symbol: gKartPeach014Wheel2 - type: texture - offset: 0x71AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_3: - symbol: gKartPeach014Wheel3 - type: texture - offset: 0x71B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_0: - symbol: gKartPeach015Wheel0 - type: texture - offset: 0x71BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_1: - symbol: gKartPeach015Wheel1 - type: texture - offset: 0x71C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_2: - symbol: gKartPeach015Wheel2 - type: texture - offset: 0x71CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_3: - symbol: gKartPeach015Wheel3 - type: texture - offset: 0x71D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_0: - symbol: gKartPeach016Wheel0 - type: texture - offset: 0x71DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_1: - symbol: gKartPeach016Wheel1 - type: texture - offset: 0x71E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_2: - symbol: gKartPeach016Wheel2 - type: texture - offset: 0x71EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_3: - symbol: gKartPeach016Wheel3 - type: texture - offset: 0x71F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_0: - symbol: gKartPeach017Wheel0 - type: texture - offset: 0x71FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_1: - symbol: gKartPeach017Wheel1 - type: texture - offset: 0x72068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_2: - symbol: gKartPeach017Wheel2 - type: texture - offset: 0x720E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_3: - symbol: gKartPeach017Wheel3 - type: texture - offset: 0x72168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_0: - symbol: gKartPeach018Wheel0 - type: texture - offset: 0x721E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_1: - symbol: gKartPeach018Wheel1 - type: texture - offset: 0x72268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_2: - symbol: gKartPeach018Wheel2 - type: texture - offset: 0x722E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_3: - symbol: gKartPeach018Wheel3 - type: texture - offset: 0x72368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_0: - symbol: gKartPeach019Wheel0 - type: texture - offset: 0x723E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_1: - symbol: gKartPeach019Wheel1 - type: texture - offset: 0x72468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_2: - symbol: gKartPeach019Wheel2 - type: texture - offset: 0x724E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_3: - symbol: gKartPeach019Wheel3 - type: texture - offset: 0x72568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_0: - symbol: gKartPeach020Wheel0 - type: texture - offset: 0x725E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_1: - symbol: gKartPeach020Wheel1 - type: texture - offset: 0x72668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_2: - symbol: gKartPeach020Wheel2 - type: texture - offset: 0x726E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_3: - symbol: gKartPeach020Wheel3 - type: texture - offset: 0x72768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_0: - symbol: gKartPeach021Wheel0 - type: texture - offset: 0x727E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_1: - symbol: gKartPeach021Wheel1 - type: texture - offset: 0x72868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_2: - symbol: gKartPeach021Wheel2 - type: texture - offset: 0x728E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_3: - symbol: gKartPeach021Wheel3 - type: texture - offset: 0x72968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_0: - symbol: gKartPeach022Wheel0 - type: texture - offset: 0x729E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_1: - symbol: gKartPeach022Wheel1 - type: texture - offset: 0x72A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_2: - symbol: gKartPeach022Wheel2 - type: texture - offset: 0x72AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_3: - symbol: gKartPeach022Wheel3 - type: texture - offset: 0x72B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_0: - symbol: gKartPeach023Wheel0 - type: texture - offset: 0x72BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_1: - symbol: gKartPeach023Wheel1 - type: texture - offset: 0x72C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_2: - symbol: gKartPeach023Wheel2 - type: texture - offset: 0x72CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_3: - symbol: gKartPeach023Wheel3 - type: texture - offset: 0x72D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_0: - symbol: gKartPeach024Wheel0 - type: texture - offset: 0x72DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_1: - symbol: gKartPeach024Wheel1 - type: texture - offset: 0x72E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_2: - symbol: gKartPeach024Wheel2 - type: texture - offset: 0x72EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_3: - symbol: gKartPeach024Wheel3 - type: texture - offset: 0x72F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_0: - symbol: gKartPeach025Wheel0 - type: texture - offset: 0x72FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_1: - symbol: gKartPeach025Wheel1 - type: texture - offset: 0x73068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_2: - symbol: gKartPeach025Wheel2 - type: texture - offset: 0x730E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_3: - symbol: gKartPeach025Wheel3 - type: texture - offset: 0x73168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_0: - symbol: gKartPeach026Wheel0 - type: texture - offset: 0x731E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_1: - symbol: gKartPeach026Wheel1 - type: texture - offset: 0x73268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_2: - symbol: gKartPeach026Wheel2 - type: texture - offset: 0x732E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_3: - symbol: gKartPeach026Wheel3 - type: texture - offset: 0x73368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_0: - symbol: gKartPeach027Wheel0 - type: texture - offset: 0x733E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_1: - symbol: gKartPeach027Wheel1 - type: texture - offset: 0x73468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_2: - symbol: gKartPeach027Wheel2 - type: texture - offset: 0x734E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_3: - symbol: gKartPeach027Wheel3 - type: texture - offset: 0x73568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_0: - symbol: gKartPeach028Wheel0 - type: texture - offset: 0x735E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_1: - symbol: gKartPeach028Wheel1 - type: texture - offset: 0x73668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_2: - symbol: gKartPeach028Wheel2 - type: texture - offset: 0x736E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_3: - symbol: gKartPeach028Wheel3 - type: texture - offset: 0x73768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_0: - symbol: gKartPeach029Wheel0 - type: texture - offset: 0x737E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_1: - symbol: gKartPeach029Wheel1 - type: texture - offset: 0x73868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_2: - symbol: gKartPeach029Wheel2 - type: texture - offset: 0x738E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_3: - symbol: gKartPeach029Wheel3 - type: texture - offset: 0x73968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_0: - symbol: gKartPeach030Wheel0 - type: texture - offset: 0x739E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_1: - symbol: gKartPeach030Wheel1 - type: texture - offset: 0x73A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_2: - symbol: gKartPeach030Wheel2 - type: texture - offset: 0x73AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_3: - symbol: gKartPeach030Wheel3 - type: texture - offset: 0x73B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_0: - symbol: gKartPeach031Wheel0 - type: texture - offset: 0x73BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_1: - symbol: gKartPeach031Wheel1 - type: texture - offset: 0x73C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_2: - symbol: gKartPeach031Wheel2 - type: texture - offset: 0x73CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_3: - symbol: gKartPeach031Wheel3 - type: texture - offset: 0x73D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_0: - symbol: gKartPeach032Wheel0 - type: texture - offset: 0x73DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_1: - symbol: gKartPeach032Wheel1 - type: texture - offset: 0x73E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_2: - symbol: gKartPeach032Wheel2 - type: texture - offset: 0x73EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_3: - symbol: gKartPeach032Wheel3 - type: texture - offset: 0x73F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_0: - symbol: gKartPeach033Wheel0 - type: texture - offset: 0x73FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_1: - symbol: gKartPeach033Wheel1 - type: texture - offset: 0x74068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_2: - symbol: gKartPeach033Wheel2 - type: texture - offset: 0x740E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_3: - symbol: gKartPeach033Wheel3 - type: texture - offset: 0x74168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_0: - symbol: gKartPeach034Wheel0 - type: texture - offset: 0x741E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_1: - symbol: gKartPeach034Wheel1 - type: texture - offset: 0x74268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_2: - symbol: gKartPeach034Wheel2 - type: texture - offset: 0x742E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_3: - symbol: gKartPeach034Wheel3 - type: texture - offset: 0x74368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_0: - symbol: gKartPeach035Wheel0 - type: texture - offset: 0x743E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_1: - symbol: gKartPeach035Wheel1 - type: texture - offset: 0x74468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_2: - symbol: gKartPeach035Wheel2 - type: texture - offset: 0x744E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_3: - symbol: gKartPeach035Wheel3 - type: texture - offset: 0x74568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_0: - symbol: gKartPeach036Wheel0 - type: texture - offset: 0x745E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_1: - symbol: gKartPeach036Wheel1 - type: texture - offset: 0x74668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_2: - symbol: gKartPeach036Wheel2 - type: texture - offset: 0x746E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_3: - symbol: gKartPeach036Wheel3 - type: texture - offset: 0x74768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_0: - symbol: gKartPeach037Wheel0 - type: texture - offset: 0x747E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_1: - symbol: gKartPeach037Wheel1 - type: texture - offset: 0x74868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_2: - symbol: gKartPeach037Wheel2 - type: texture - offset: 0x748E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_3: - symbol: gKartPeach037Wheel3 - type: texture - offset: 0x74968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_0: - symbol: gKartPeach038Wheel0 - type: texture - offset: 0x749E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_1: - symbol: gKartPeach038Wheel1 - type: texture - offset: 0x74A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_2: - symbol: gKartPeach038Wheel2 - type: texture - offset: 0x74AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_3: - symbol: gKartPeach038Wheel3 - type: texture - offset: 0x74B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_0: - symbol: gKartPeach039Wheel0 - type: texture - offset: 0x74BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_1: - symbol: gKartPeach039Wheel1 - type: texture - offset: 0x74C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_2: - symbol: gKartPeach039Wheel2 - type: texture - offset: 0x74CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_3: - symbol: gKartPeach039Wheel3 - type: texture - offset: 0x74D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_0: - symbol: gKartPeach040Wheel0 - type: texture - offset: 0x74DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_1: - symbol: gKartPeach040Wheel1 - type: texture - offset: 0x74E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_2: - symbol: gKartPeach040Wheel2 - type: texture - offset: 0x74EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_3: - symbol: gKartPeach040Wheel3 - type: texture - offset: 0x74F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_0: - symbol: gKartPeach041Wheel0 - type: texture - offset: 0x74FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_1: - symbol: gKartPeach041Wheel1 - type: texture - offset: 0x75068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_2: - symbol: gKartPeach041Wheel2 - type: texture - offset: 0x750E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_3: - symbol: gKartPeach041Wheel3 - type: texture - offset: 0x75168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_0: - symbol: gKartPeach042Wheel0 - type: texture - offset: 0x751E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_1: - symbol: gKartPeach042Wheel1 - type: texture - offset: 0x75268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_2: - symbol: gKartPeach042Wheel2 - type: texture - offset: 0x752E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_3: - symbol: gKartPeach042Wheel3 - type: texture - offset: 0x75368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_0: - symbol: gKartPeach043Wheel0 - type: texture - offset: 0x753E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_1: - symbol: gKartPeach043Wheel1 - type: texture - offset: 0x75468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_2: - symbol: gKartPeach043Wheel2 - type: texture - offset: 0x754E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_3: - symbol: gKartPeach043Wheel3 - type: texture - offset: 0x75568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_0: - symbol: gKartPeach044Wheel0 - type: texture - offset: 0x755E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_1: - symbol: gKartPeach044Wheel1 - type: texture - offset: 0x75668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_2: - symbol: gKartPeach044Wheel2 - type: texture - offset: 0x756E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_3: - symbol: gKartPeach044Wheel3 - type: texture - offset: 0x75768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_0: - symbol: gKartPeach045Wheel0 - type: texture - offset: 0x757E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_1: - symbol: gKartPeach045Wheel1 - type: texture - offset: 0x75868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_2: - symbol: gKartPeach045Wheel2 - type: texture - offset: 0x758E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_3: - symbol: gKartPeach045Wheel3 - type: texture - offset: 0x75968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_0: - symbol: gKartPeach046Wheel0 - type: texture - offset: 0x759E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_1: - symbol: gKartPeach046Wheel1 - type: texture - offset: 0x75A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_2: - symbol: gKartPeach046Wheel2 - type: texture - offset: 0x75AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_3: - symbol: gKartPeach046Wheel3 - type: texture - offset: 0x75B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_0: - symbol: gKartPeach047Wheel0 - type: texture - offset: 0x75BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_1: - symbol: gKartPeach047Wheel1 - type: texture - offset: 0x75C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_2: - symbol: gKartPeach047Wheel2 - type: texture - offset: 0x75CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_3: - symbol: gKartPeach047Wheel3 - type: texture - offset: 0x75D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_0: - symbol: gKartPeach048Wheel0 - type: texture - offset: 0x75DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_1: - symbol: gKartPeach048Wheel1 - type: texture - offset: 0x75E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_2: - symbol: gKartPeach048Wheel2 - type: texture - offset: 0x75EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_3: - symbol: gKartPeach048Wheel3 - type: texture - offset: 0x75F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_0: - symbol: gKartPeach049Wheel0 - type: texture - offset: 0x75FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_1: - symbol: gKartPeach049Wheel1 - type: texture - offset: 0x76068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_2: - symbol: gKartPeach049Wheel2 - type: texture - offset: 0x760E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_3: - symbol: gKartPeach049Wheel3 - type: texture - offset: 0x76168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_0: - symbol: gKartPeach050Wheel0 - type: texture - offset: 0x761E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_1: - symbol: gKartPeach050Wheel1 - type: texture - offset: 0x76268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_2: - symbol: gKartPeach050Wheel2 - type: texture - offset: 0x762E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_3: - symbol: gKartPeach050Wheel3 - type: texture - offset: 0x76368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_0: - symbol: gKartPeach051Wheel0 - type: texture - offset: 0x763E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_1: - symbol: gKartPeach051Wheel1 - type: texture - offset: 0x76468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_2: - symbol: gKartPeach051Wheel2 - type: texture - offset: 0x764E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_3: - symbol: gKartPeach051Wheel3 - type: texture - offset: 0x76568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_0: - symbol: gKartPeach052Wheel0 - type: texture - offset: 0x765E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_1: - symbol: gKartPeach052Wheel1 - type: texture - offset: 0x76668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_2: - symbol: gKartPeach052Wheel2 - type: texture - offset: 0x766E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_3: - symbol: gKartPeach052Wheel3 - type: texture - offset: 0x76768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_0: - symbol: gKartPeach053Wheel0 - type: texture - offset: 0x767E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_1: - symbol: gKartPeach053Wheel1 - type: texture - offset: 0x76868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_2: - symbol: gKartPeach053Wheel2 - type: texture - offset: 0x768E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_3: - symbol: gKartPeach053Wheel3 - type: texture - offset: 0x76968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_0: - symbol: gKartPeach054Wheel0 - type: texture - offset: 0x769E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_1: - symbol: gKartPeach054Wheel1 - type: texture - offset: 0x76A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_2: - symbol: gKartPeach054Wheel2 - type: texture - offset: 0x76AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_3: - symbol: gKartPeach054Wheel3 - type: texture - offset: 0x76B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_0: - symbol: gKartPeach055Wheel0 - type: texture - offset: 0x76BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_1: - symbol: gKartPeach055Wheel1 - type: texture - offset: 0x76C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_2: - symbol: gKartPeach055Wheel2 - type: texture - offset: 0x76CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_3: - symbol: gKartPeach055Wheel3 - type: texture - offset: 0x76D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_0: - symbol: gKartPeach056Wheel0 - type: texture - offset: 0x76DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_1: - symbol: gKartPeach056Wheel1 - type: texture - offset: 0x76E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_2: - symbol: gKartPeach056Wheel2 - type: texture - offset: 0x76EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_3: - symbol: gKartPeach056Wheel3 - type: texture - offset: 0x76F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_0: - symbol: gKartPeach057Wheel0 - type: texture - offset: 0x76FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_1: - symbol: gKartPeach057Wheel1 - type: texture - offset: 0x77068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_2: - symbol: gKartPeach057Wheel2 - type: texture - offset: 0x770E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_3: - symbol: gKartPeach057Wheel3 - type: texture - offset: 0x77168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_0: - symbol: gKartPeach058Wheel0 - type: texture - offset: 0x771E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_1: - symbol: gKartPeach058Wheel1 - type: texture - offset: 0x77268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_2: - symbol: gKartPeach058Wheel2 - type: texture - offset: 0x772E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_3: - symbol: gKartPeach058Wheel3 - type: texture - offset: 0x77368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_0: - symbol: gKartPeach059Wheel0 - type: texture - offset: 0x773E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_1: - symbol: gKartPeach059Wheel1 - type: texture - offset: 0x77468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_2: - symbol: gKartPeach059Wheel2 - type: texture - offset: 0x774E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_3: - symbol: gKartPeach059Wheel3 - type: texture - offset: 0x77568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_0: - symbol: gKartPeach060Wheel0 - type: texture - offset: 0x775E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_1: - symbol: gKartPeach060Wheel1 - type: texture - offset: 0x77668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_2: - symbol: gKartPeach060Wheel2 - type: texture - offset: 0x776E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_3: - symbol: gKartPeach060Wheel3 - type: texture - offset: 0x77768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_0: - symbol: gKartPeach061Wheel0 - type: texture - offset: 0x777E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_1: - symbol: gKartPeach061Wheel1 - type: texture - offset: 0x77868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_2: - symbol: gKartPeach061Wheel2 - type: texture - offset: 0x778E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_3: - symbol: gKartPeach061Wheel3 - type: texture - offset: 0x77968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_0: - symbol: gKartPeach062Wheel0 - type: texture - offset: 0x779E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_1: - symbol: gKartPeach062Wheel1 - type: texture - offset: 0x77A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_2: - symbol: gKartPeach062Wheel2 - type: texture - offset: 0x77AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_3: - symbol: gKartPeach062Wheel3 - type: texture - offset: 0x77B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_0: - symbol: gKartPeach063Wheel0 - type: texture - offset: 0x77BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_1: - symbol: gKartPeach063Wheel1 - type: texture - offset: 0x77C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_2: - symbol: gKartPeach063Wheel2 - type: texture - offset: 0x77CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_3: - symbol: gKartPeach063Wheel3 - type: texture - offset: 0x77D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_0: - symbol: gKartPeach064Wheel0 - type: texture - offset: 0x77DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_1: - symbol: gKartPeach064Wheel1 - type: texture - offset: 0x77E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_2: - symbol: gKartPeach064Wheel2 - type: texture - offset: 0x77EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_3: - symbol: gKartPeach064Wheel3 - type: texture - offset: 0x77F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_0: - symbol: gKartPeach065Wheel0 - type: texture - offset: 0x77FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_1: - symbol: gKartPeach065Wheel1 - type: texture - offset: 0x78068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_2: - symbol: gKartPeach065Wheel2 - type: texture - offset: 0x780E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_3: - symbol: gKartPeach065Wheel3 - type: texture - offset: 0x78168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_0: - symbol: gKartPeach066Wheel0 - type: texture - offset: 0x781E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_1: - symbol: gKartPeach066Wheel1 - type: texture - offset: 0x78268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_2: - symbol: gKartPeach066Wheel2 - type: texture - offset: 0x782E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_3: - symbol: gKartPeach066Wheel3 - type: texture - offset: 0x78368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_0: - symbol: gKartPeach067Wheel0 - type: texture - offset: 0x783E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_1: - symbol: gKartPeach067Wheel1 - type: texture - offset: 0x78468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_2: - symbol: gKartPeach067Wheel2 - type: texture - offset: 0x784E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_3: - symbol: gKartPeach067Wheel3 - type: texture - offset: 0x78568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_0: - symbol: gKartPeach068Wheel0 - type: texture - offset: 0x785E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_1: - symbol: gKartPeach068Wheel1 - type: texture - offset: 0x78668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_2: - symbol: gKartPeach068Wheel2 - type: texture - offset: 0x786E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_3: - symbol: gKartPeach068Wheel3 - type: texture - offset: 0x78768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_0: - symbol: gKartPeach069Wheel0 - type: texture - offset: 0x787E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_1: - symbol: gKartPeach069Wheel1 - type: texture - offset: 0x78868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_2: - symbol: gKartPeach069Wheel2 - type: texture - offset: 0x788E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_3: - symbol: gKartPeach069Wheel3 - type: texture - offset: 0x78968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_0: - symbol: gKartPeach070Wheel0 - type: texture - offset: 0x789E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_1: - symbol: gKartPeach070Wheel1 - type: texture - offset: 0x78A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_2: - symbol: gKartPeach070Wheel2 - type: texture - offset: 0x78AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_3: - symbol: gKartPeach070Wheel3 - type: texture - offset: 0x78B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_0: - symbol: gKartPeach071Wheel0 - type: texture - offset: 0x78BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_1: - symbol: gKartPeach071Wheel1 - type: texture - offset: 0x78C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_2: - symbol: gKartPeach071Wheel2 - type: texture - offset: 0x78CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_3: - symbol: gKartPeach071Wheel3 - type: texture - offset: 0x78D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_0: - symbol: gKartPeach072Wheel0 - type: texture - offset: 0x78DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_1: - symbol: gKartPeach072Wheel1 - type: texture - offset: 0x78E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_2: - symbol: gKartPeach072Wheel2 - type: texture - offset: 0x78EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_3: - symbol: gKartPeach072Wheel3 - type: texture - offset: 0x78F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_0: - symbol: gKartPeach073Wheel0 - type: texture - offset: 0x78FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_1: - symbol: gKartPeach073Wheel1 - type: texture - offset: 0x79068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_2: - symbol: gKartPeach073Wheel2 - type: texture - offset: 0x790E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_3: - symbol: gKartPeach073Wheel3 - type: texture - offset: 0x79168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_0: - symbol: gKartPeach074Wheel0 - type: texture - offset: 0x791E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_1: - symbol: gKartPeach074Wheel1 - type: texture - offset: 0x79268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_2: - symbol: gKartPeach074Wheel2 - type: texture - offset: 0x792E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_3: - symbol: gKartPeach074Wheel3 - type: texture - offset: 0x79368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_0: - symbol: gKartPeach075Wheel0 - type: texture - offset: 0x793E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_1: - symbol: gKartPeach075Wheel1 - type: texture - offset: 0x79468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_2: - symbol: gKartPeach075Wheel2 - type: texture - offset: 0x794E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_3: - symbol: gKartPeach075Wheel3 - type: texture - offset: 0x79568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_0: - symbol: gKartPeach076Wheel0 - type: texture - offset: 0x795E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_1: - symbol: gKartPeach076Wheel1 - type: texture - offset: 0x79668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_2: - symbol: gKartPeach076Wheel2 - type: texture - offset: 0x796E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_3: - symbol: gKartPeach076Wheel3 - type: texture - offset: 0x79768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_0: - symbol: gKartPeach077Wheel0 - type: texture - offset: 0x797E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_1: - symbol: gKartPeach077Wheel1 - type: texture - offset: 0x79868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_2: - symbol: gKartPeach077Wheel2 - type: texture - offset: 0x798E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_3: - symbol: gKartPeach077Wheel3 - type: texture - offset: 0x79968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_0: - symbol: gKartPeach078Wheel0 - type: texture - offset: 0x799E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_1: - symbol: gKartPeach078Wheel1 - type: texture - offset: 0x79A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_2: - symbol: gKartPeach078Wheel2 - type: texture - offset: 0x79AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_3: - symbol: gKartPeach078Wheel3 - type: texture - offset: 0x79B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_0: - symbol: gKartPeach079Wheel0 - type: texture - offset: 0x79BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_1: - symbol: gKartPeach079Wheel1 - type: texture - offset: 0x79C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_2: - symbol: gKartPeach079Wheel2 - type: texture - offset: 0x79CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_3: - symbol: gKartPeach079Wheel3 - type: texture - offset: 0x79D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_0: - symbol: gKartPeach080Wheel0 - type: texture - offset: 0x79DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_1: - symbol: gKartPeach080Wheel1 - type: texture - offset: 0x79E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_2: - symbol: gKartPeach080Wheel2 - type: texture - offset: 0x79EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_3: - symbol: gKartPeach080Wheel3 - type: texture - offset: 0x79F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_0: - symbol: gKartPeach081Wheel0 - type: texture - offset: 0x79FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_1: - symbol: gKartPeach081Wheel1 - type: texture - offset: 0x7A068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_2: - symbol: gKartPeach081Wheel2 - type: texture - offset: 0x7A0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_3: - symbol: gKartPeach081Wheel3 - type: texture - offset: 0x7A168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_0: - symbol: gKartPeach082Wheel0 - type: texture - offset: 0x7A1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_1: - symbol: gKartPeach082Wheel1 - type: texture - offset: 0x7A268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_2: - symbol: gKartPeach082Wheel2 - type: texture - offset: 0x7A2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_3: - symbol: gKartPeach082Wheel3 - type: texture - offset: 0x7A368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_0: - symbol: gKartPeach083Wheel0 - type: texture - offset: 0x7A3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_1: - symbol: gKartPeach083Wheel1 - type: texture - offset: 0x7A468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_2: - symbol: gKartPeach083Wheel2 - type: texture - offset: 0x7A4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_3: - symbol: gKartPeach083Wheel3 - type: texture - offset: 0x7A568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_0: - symbol: gKartPeach084Wheel0 - type: texture - offset: 0x7A5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_1: - symbol: gKartPeach084Wheel1 - type: texture - offset: 0x7A668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_2: - symbol: gKartPeach084Wheel2 - type: texture - offset: 0x7A6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_3: - symbol: gKartPeach084Wheel3 - type: texture - offset: 0x7A768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_0: - symbol: gKartPeach085Wheel0 - type: texture - offset: 0x7A7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_1: - symbol: gKartPeach085Wheel1 - type: texture - offset: 0x7A868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_2: - symbol: gKartPeach085Wheel2 - type: texture - offset: 0x7A8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_3: - symbol: gKartPeach085Wheel3 - type: texture - offset: 0x7A968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_0: - symbol: gKartPeach086Wheel0 - type: texture - offset: 0x7A9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_1: - symbol: gKartPeach086Wheel1 - type: texture - offset: 0x7AA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_2: - symbol: gKartPeach086Wheel2 - type: texture - offset: 0x7AAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_3: - symbol: gKartPeach086Wheel3 - type: texture - offset: 0x7AB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_0: - symbol: gKartPeach087Wheel0 - type: texture - offset: 0x7ABE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_1: - symbol: gKartPeach087Wheel1 - type: texture - offset: 0x7AC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_2: - symbol: gKartPeach087Wheel2 - type: texture - offset: 0x7ACE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_3: - symbol: gKartPeach087Wheel3 - type: texture - offset: 0x7AD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_0: - symbol: gKartPeach088Wheel0 - type: texture - offset: 0x7ADE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_1: - symbol: gKartPeach088Wheel1 - type: texture - offset: 0x7AE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_2: - symbol: gKartPeach088Wheel2 - type: texture - offset: 0x7AEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_3: - symbol: gKartPeach088Wheel3 - type: texture - offset: 0x7AF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_0: - symbol: gKartPeach089Wheel0 - type: texture - offset: 0x7AFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_1: - symbol: gKartPeach089Wheel1 - type: texture - offset: 0x7B068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_2: - symbol: gKartPeach089Wheel2 - type: texture - offset: 0x7B0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_3: - symbol: gKartPeach089Wheel3 - type: texture - offset: 0x7B168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_0: - symbol: gKartPeach090Wheel0 - type: texture - offset: 0x7B1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_1: - symbol: gKartPeach090Wheel1 - type: texture - offset: 0x7B268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_2: - symbol: gKartPeach090Wheel2 - type: texture - offset: 0x7B2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_3: - symbol: gKartPeach090Wheel3 - type: texture - offset: 0x7B368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_0: - symbol: gKartPeach091Wheel0 - type: texture - offset: 0x7B3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_1: - symbol: gKartPeach091Wheel1 - type: texture - offset: 0x7B468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_2: - symbol: gKartPeach091Wheel2 - type: texture - offset: 0x7B4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_3: - symbol: gKartPeach091Wheel3 - type: texture - offset: 0x7B568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_0: - symbol: gKartPeach092Wheel0 - type: texture - offset: 0x7B5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_1: - symbol: gKartPeach092Wheel1 - type: texture - offset: 0x7B668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_2: - symbol: gKartPeach092Wheel2 - type: texture - offset: 0x7B6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_3: - symbol: gKartPeach092Wheel3 - type: texture - offset: 0x7B768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_0: - symbol: gKartPeach093Wheel0 - type: texture - offset: 0x7B7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_1: - symbol: gKartPeach093Wheel1 - type: texture - offset: 0x7B868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_2: - symbol: gKartPeach093Wheel2 - type: texture - offset: 0x7B8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_3: - symbol: gKartPeach093Wheel3 - type: texture - offset: 0x7B968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_0: - symbol: gKartPeach094Wheel0 - type: texture - offset: 0x7B9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_1: - symbol: gKartPeach094Wheel1 - type: texture - offset: 0x7BA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_2: - symbol: gKartPeach094Wheel2 - type: texture - offset: 0x7BAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_3: - symbol: gKartPeach094Wheel3 - type: texture - offset: 0x7BB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_0: - symbol: gKartPeach095Wheel0 - type: texture - offset: 0x7BBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_1: - symbol: gKartPeach095Wheel1 - type: texture - offset: 0x7BC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_2: - symbol: gKartPeach095Wheel2 - type: texture - offset: 0x7BCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_3: - symbol: gKartPeach095Wheel3 - type: texture - offset: 0x7BD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_0: - symbol: gKartPeach096Wheel0 - type: texture - offset: 0x7BDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_1: - symbol: gKartPeach096Wheel1 - type: texture - offset: 0x7BE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_2: - symbol: gKartPeach096Wheel2 - type: texture - offset: 0x7BEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_3: - symbol: gKartPeach096Wheel3 - type: texture - offset: 0x7BF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_0: - symbol: gKartPeach097Wheel0 - type: texture - offset: 0x7BFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_1: - symbol: gKartPeach097Wheel1 - type: texture - offset: 0x7C068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_2: - symbol: gKartPeach097Wheel2 - type: texture - offset: 0x7C0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_3: - symbol: gKartPeach097Wheel3 - type: texture - offset: 0x7C168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_0: - symbol: gKartPeach098Wheel0 - type: texture - offset: 0x7C1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_1: - symbol: gKartPeach098Wheel1 - type: texture - offset: 0x7C268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_2: - symbol: gKartPeach098Wheel2 - type: texture - offset: 0x7C2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_3: - symbol: gKartPeach098Wheel3 - type: texture - offset: 0x7C368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_0: - symbol: gKartPeach099Wheel0 - type: texture - offset: 0x7C3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_1: - symbol: gKartPeach099Wheel1 - type: texture - offset: 0x7C468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_2: - symbol: gKartPeach099Wheel2 - type: texture - offset: 0x7C4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_3: - symbol: gKartPeach099Wheel3 - type: texture - offset: 0x7C568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_0: - symbol: gKartPeach100Wheel0 - type: texture - offset: 0x7C5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_1: - symbol: gKartPeach100Wheel1 - type: texture - offset: 0x7C668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_2: - symbol: gKartPeach100Wheel2 - type: texture - offset: 0x7C6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_3: - symbol: gKartPeach100Wheel3 - type: texture - offset: 0x7C768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_0: - symbol: gKartPeach101Wheel0 - type: texture - offset: 0x7C7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_1: - symbol: gKartPeach101Wheel1 - type: texture - offset: 0x7C868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_2: - symbol: gKartPeach101Wheel2 - type: texture - offset: 0x7C8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_3: - symbol: gKartPeach101Wheel3 - type: texture - offset: 0x7C968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_0: - symbol: gKartPeach102Wheel0 - type: texture - offset: 0x7C9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_1: - symbol: gKartPeach102Wheel1 - type: texture - offset: 0x7CA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_2: - symbol: gKartPeach102Wheel2 - type: texture - offset: 0x7CAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_3: - symbol: gKartPeach102Wheel3 - type: texture - offset: 0x7CB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_0: - symbol: gKartPeach103Wheel0 - type: texture - offset: 0x7CBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_1: - symbol: gKartPeach103Wheel1 - type: texture - offset: 0x7CC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_2: - symbol: gKartPeach103Wheel2 - type: texture - offset: 0x7CCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_3: - symbol: gKartPeach103Wheel3 - type: texture - offset: 0x7CD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_0: - symbol: gKartPeach104Wheel0 - type: texture - offset: 0x7CDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_1: - symbol: gKartPeach104Wheel1 - type: texture - offset: 0x7CE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_2: - symbol: gKartPeach104Wheel2 - type: texture - offset: 0x7CEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_3: - symbol: gKartPeach104Wheel3 - type: texture - offset: 0x7CF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_0: - symbol: gKartPeach105Wheel0 - type: texture - offset: 0x7CFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_1: - symbol: gKartPeach105Wheel1 - type: texture - offset: 0x7D068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_2: - symbol: gKartPeach105Wheel2 - type: texture - offset: 0x7D0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_3: - symbol: gKartPeach105Wheel3 - type: texture - offset: 0x7D168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_0: - symbol: gKartPeach106Wheel0 - type: texture - offset: 0x7D1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_1: - symbol: gKartPeach106Wheel1 - type: texture - offset: 0x7D268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_2: - symbol: gKartPeach106Wheel2 - type: texture - offset: 0x7D2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_3: - symbol: gKartPeach106Wheel3 - type: texture - offset: 0x7D368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_0: - symbol: gKartPeach107Wheel0 - type: texture - offset: 0x7D3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_1: - symbol: gKartPeach107Wheel1 - type: texture - offset: 0x7D468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_2: - symbol: gKartPeach107Wheel2 - type: texture - offset: 0x7D4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_3: - symbol: gKartPeach107Wheel3 - type: texture - offset: 0x7D568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_0: - symbol: gKartPeach108Wheel0 - type: texture - offset: 0x7D5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_1: - symbol: gKartPeach108Wheel1 - type: texture - offset: 0x7D668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_2: - symbol: gKartPeach108Wheel2 - type: texture - offset: 0x7D6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_3: - symbol: gKartPeach108Wheel3 - type: texture - offset: 0x7D768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_0: - symbol: gKartPeach109Wheel0 - type: texture - offset: 0x7D7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_1: - symbol: gKartPeach109Wheel1 - type: texture - offset: 0x7D868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_2: - symbol: gKartPeach109Wheel2 - type: texture - offset: 0x7D8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_3: - symbol: gKartPeach109Wheel3 - type: texture - offset: 0x7D968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_0: - symbol: gKartPeach110Wheel0 - type: texture - offset: 0x7D9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_1: - symbol: gKartPeach110Wheel1 - type: texture - offset: 0x7DA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_2: - symbol: gKartPeach110Wheel2 - type: texture - offset: 0x7DAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_3: - symbol: gKartPeach110Wheel3 - type: texture - offset: 0x7DB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_0: - symbol: gKartPeach111Wheel0 - type: texture - offset: 0x7DBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_1: - symbol: gKartPeach111Wheel1 - type: texture - offset: 0x7DC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_2: - symbol: gKartPeach111Wheel2 - type: texture - offset: 0x7DCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_3: - symbol: gKartPeach111Wheel3 - type: texture - offset: 0x7DD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_0: - symbol: gKartPeach112Wheel0 - type: texture - offset: 0x7DDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_1: - symbol: gKartPeach112Wheel1 - type: texture - offset: 0x7DE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_2: - symbol: gKartPeach112Wheel2 - type: texture - offset: 0x7DEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_3: - symbol: gKartPeach112Wheel3 - type: texture - offset: 0x7DF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_0: - symbol: gKartPeach113Wheel0 - type: texture - offset: 0x7DFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_1: - symbol: gKartPeach113Wheel1 - type: texture - offset: 0x7E068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_2: - symbol: gKartPeach113Wheel2 - type: texture - offset: 0x7E0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_3: - symbol: gKartPeach113Wheel3 - type: texture - offset: 0x7E168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_0: - symbol: gKartPeach114Wheel0 - type: texture - offset: 0x7E1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_1: - symbol: gKartPeach114Wheel1 - type: texture - offset: 0x7E268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_2: - symbol: gKartPeach114Wheel2 - type: texture - offset: 0x7E2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_3: - symbol: gKartPeach114Wheel3 - type: texture - offset: 0x7E368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_0: - symbol: gKartPeach115Wheel0 - type: texture - offset: 0x7E3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_1: - symbol: gKartPeach115Wheel1 - type: texture - offset: 0x7E468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_2: - symbol: gKartPeach115Wheel2 - type: texture - offset: 0x7E4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_3: - symbol: gKartPeach115Wheel3 - type: texture - offset: 0x7E568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_0: - symbol: gKartPeach116Wheel0 - type: texture - offset: 0x7E5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_1: - symbol: gKartPeach116Wheel1 - type: texture - offset: 0x7E668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_2: - symbol: gKartPeach116Wheel2 - type: texture - offset: 0x7E6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_3: - symbol: gKartPeach116Wheel3 - type: texture - offset: 0x7E768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_0: - symbol: gKartPeach117Wheel0 - type: texture - offset: 0x7E7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_1: - symbol: gKartPeach117Wheel1 - type: texture - offset: 0x7E868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_2: - symbol: gKartPeach117Wheel2 - type: texture - offset: 0x7E8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_3: - symbol: gKartPeach117Wheel3 - type: texture - offset: 0x7E968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_0: - symbol: gKartPeach118Wheel0 - type: texture - offset: 0x7E9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_1: - symbol: gKartPeach118Wheel1 - type: texture - offset: 0x7EA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_2: - symbol: gKartPeach118Wheel2 - type: texture - offset: 0x7EAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_3: - symbol: gKartPeach118Wheel3 - type: texture - offset: 0x7EB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_0: - symbol: gKartPeach119Wheel0 - type: texture - offset: 0x7EBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_1: - symbol: gKartPeach119Wheel1 - type: texture - offset: 0x7EC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_2: - symbol: gKartPeach119Wheel2 - type: texture - offset: 0x7ECE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_3: - symbol: gKartPeach119Wheel3 - type: texture - offset: 0x7ED68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_0: - symbol: gKartPeach120Wheel0 - type: texture - offset: 0x7EDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_1: - symbol: gKartPeach120Wheel1 - type: texture - offset: 0x7EE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_2: - symbol: gKartPeach120Wheel2 - type: texture - offset: 0x7EEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_3: - symbol: gKartPeach120Wheel3 - type: texture - offset: 0x7EF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_0: - symbol: gKartPeach121Wheel0 - type: texture - offset: 0x7EFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_1: - symbol: gKartPeach121Wheel1 - type: texture - offset: 0x7F068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_2: - symbol: gKartPeach121Wheel2 - type: texture - offset: 0x7F0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_3: - symbol: gKartPeach121Wheel3 - type: texture - offset: 0x7F168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_0: - symbol: gKartPeach122Wheel0 - type: texture - offset: 0x7F1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_1: - symbol: gKartPeach122Wheel1 - type: texture - offset: 0x7F268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_2: - symbol: gKartPeach122Wheel2 - type: texture - offset: 0x7F2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_3: - symbol: gKartPeach122Wheel3 - type: texture - offset: 0x7F368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_0: - symbol: gKartPeach123Wheel0 - type: texture - offset: 0x7F3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_1: - symbol: gKartPeach123Wheel1 - type: texture - offset: 0x7F468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_2: - symbol: gKartPeach123Wheel2 - type: texture - offset: 0x7F4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_3: - symbol: gKartPeach123Wheel3 - type: texture - offset: 0x7F568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_0: - symbol: gKartPeach124Wheel0 - type: texture - offset: 0x7F5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_1: - symbol: gKartPeach124Wheel1 - type: texture - offset: 0x7F668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_2: - symbol: gKartPeach124Wheel2 - type: texture - offset: 0x7F6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_3: - symbol: gKartPeach124Wheel3 - type: texture - offset: 0x7F768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_0: - symbol: gKartPeach125Wheel0 - type: texture - offset: 0x7F7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_1: - symbol: gKartPeach125Wheel1 - type: texture - offset: 0x7F868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_2: - symbol: gKartPeach125Wheel2 - type: texture - offset: 0x7F8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_3: - symbol: gKartPeach125Wheel3 - type: texture - offset: 0x7F968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_0: - symbol: gKartPeach126Wheel0 - type: texture - offset: 0x7F9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_1: - symbol: gKartPeach126Wheel1 - type: texture - offset: 0x7FA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_2: - symbol: gKartPeach126Wheel2 - type: texture - offset: 0x7FAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_3: - symbol: gKartPeach126Wheel3 - type: texture - offset: 0x7FB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_0: - symbol: gKartPeach127Wheel0 - type: texture - offset: 0x7FBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_1: - symbol: gKartPeach127Wheel1 - type: texture - offset: 0x7FC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_2: - symbol: gKartPeach127Wheel2 - type: texture - offset: 0x7FCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_3: - symbol: gKartPeach127Wheel3 - type: texture - offset: 0x7FD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_0: - symbol: gKartPeach128Wheel0 - type: texture - offset: 0x7FDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_1: - symbol: gKartPeach128Wheel1 - type: texture - offset: 0x7FE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_2: - symbol: gKartPeach128Wheel2 - type: texture - offset: 0x7FEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_3: - symbol: gKartPeach128Wheel3 - type: texture - offset: 0x7FF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_0: - symbol: gKartPeach129Wheel0 - type: texture - offset: 0x7FFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_1: - symbol: gKartPeach129Wheel1 - type: texture - offset: 0x80068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_2: - symbol: gKartPeach129Wheel2 - type: texture - offset: 0x800E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_3: - symbol: gKartPeach129Wheel3 - type: texture - offset: 0x80168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_0: - symbol: gKartPeach130Wheel0 - type: texture - offset: 0x801E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_1: - symbol: gKartPeach130Wheel1 - type: texture - offset: 0x80268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_2: - symbol: gKartPeach130Wheel2 - type: texture - offset: 0x802E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_3: - symbol: gKartPeach130Wheel3 - type: texture - offset: 0x80368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_0: - symbol: gKartPeach131Wheel0 - type: texture - offset: 0x803E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_1: - symbol: gKartPeach131Wheel1 - type: texture - offset: 0x80468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_2: - symbol: gKartPeach131Wheel2 - type: texture - offset: 0x804E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_3: - symbol: gKartPeach131Wheel3 - type: texture - offset: 0x80568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_0: - symbol: gKartPeach132Wheel0 - type: texture - offset: 0x805E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_1: - symbol: gKartPeach132Wheel1 - type: texture - offset: 0x80668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_2: - symbol: gKartPeach132Wheel2 - type: texture - offset: 0x806E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_3: - symbol: gKartPeach132Wheel3 - type: texture - offset: 0x80768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_0: - symbol: gKartPeach133Wheel0 - type: texture - offset: 0x807E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_1: - symbol: gKartPeach133Wheel1 - type: texture - offset: 0x80868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_2: - symbol: gKartPeach133Wheel2 - type: texture - offset: 0x808E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_3: - symbol: gKartPeach133Wheel3 - type: texture - offset: 0x80968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_0: - symbol: gKartPeach134Wheel0 - type: texture - offset: 0x809E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_1: - symbol: gKartPeach134Wheel1 - type: texture - offset: 0x80A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_2: - symbol: gKartPeach134Wheel2 - type: texture - offset: 0x80AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_3: - symbol: gKartPeach134Wheel3 - type: texture - offset: 0x80B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_0: - symbol: gKartPeach135Wheel0 - type: texture - offset: 0x80BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_1: - symbol: gKartPeach135Wheel1 - type: texture - offset: 0x80C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_2: - symbol: gKartPeach135Wheel2 - type: texture - offset: 0x80CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_3: - symbol: gKartPeach135Wheel3 - type: texture - offset: 0x80D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_0: - symbol: gKartPeach136Wheel0 - type: texture - offset: 0x80DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_1: - symbol: gKartPeach136Wheel1 - type: texture - offset: 0x80E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_2: - symbol: gKartPeach136Wheel2 - type: texture - offset: 0x80EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_3: - symbol: gKartPeach136Wheel3 - type: texture - offset: 0x80F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_0: - symbol: gKartPeach137Wheel0 - type: texture - offset: 0x80FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_1: - symbol: gKartPeach137Wheel1 - type: texture - offset: 0x81068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_2: - symbol: gKartPeach137Wheel2 - type: texture - offset: 0x810E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_3: - symbol: gKartPeach137Wheel3 - type: texture - offset: 0x81168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_0: - symbol: gKartPeach138Wheel0 - type: texture - offset: 0x811E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_1: - symbol: gKartPeach138Wheel1 - type: texture - offset: 0x81268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_2: - symbol: gKartPeach138Wheel2 - type: texture - offset: 0x812E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_3: - symbol: gKartPeach138Wheel3 - type: texture - offset: 0x81368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_0: - symbol: gKartPeach139Wheel0 - type: texture - offset: 0x813E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_1: - symbol: gKartPeach139Wheel1 - type: texture - offset: 0x81468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_2: - symbol: gKartPeach139Wheel2 - type: texture - offset: 0x814E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_3: - symbol: gKartPeach139Wheel3 - type: texture - offset: 0x81568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_0: - symbol: gKartPeach140Wheel0 - type: texture - offset: 0x815E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_1: - symbol: gKartPeach140Wheel1 - type: texture - offset: 0x81668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_2: - symbol: gKartPeach140Wheel2 - type: texture - offset: 0x816E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_3: - symbol: gKartPeach140Wheel3 - type: texture - offset: 0x81768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_0: - symbol: gKartPeach141Wheel0 - type: texture - offset: 0x817E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_1: - symbol: gKartPeach141Wheel1 - type: texture - offset: 0x81868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_2: - symbol: gKartPeach141Wheel2 - type: texture - offset: 0x818E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_3: - symbol: gKartPeach141Wheel3 - type: texture - offset: 0x81968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_0: - symbol: gKartPeach142Wheel0 - type: texture - offset: 0x819E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_1: - symbol: gKartPeach142Wheel1 - type: texture - offset: 0x81A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_2: - symbol: gKartPeach142Wheel2 - type: texture - offset: 0x81AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_3: - symbol: gKartPeach142Wheel3 - type: texture - offset: 0x81B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_0: - symbol: gKartPeach143Wheel0 - type: texture - offset: 0x81BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_1: - symbol: gKartPeach143Wheel1 - type: texture - offset: 0x81C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_2: - symbol: gKartPeach143Wheel2 - type: texture - offset: 0x81CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_3: - symbol: gKartPeach143Wheel3 - type: texture - offset: 0x81D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_0: - symbol: gKartPeach144Wheel0 - type: texture - offset: 0x81DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_1: - symbol: gKartPeach144Wheel1 - type: texture - offset: 0x81E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_2: - symbol: gKartPeach144Wheel2 - type: texture - offset: 0x81EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_3: - symbol: gKartPeach144Wheel3 - type: texture - offset: 0x81F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_0: - symbol: gKartPeach145Wheel0 - type: texture - offset: 0x81FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_1: - symbol: gKartPeach145Wheel1 - type: texture - offset: 0x82068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_2: - symbol: gKartPeach145Wheel2 - type: texture - offset: 0x820E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_3: - symbol: gKartPeach145Wheel3 - type: texture - offset: 0x82168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_0: - symbol: gKartPeach146Wheel0 - type: texture - offset: 0x821E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_1: - symbol: gKartPeach146Wheel1 - type: texture - offset: 0x82268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_2: - symbol: gKartPeach146Wheel2 - type: texture - offset: 0x822E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_3: - symbol: gKartPeach146Wheel3 - type: texture - offset: 0x82368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_0: - symbol: gKartPeach147Wheel0 - type: texture - offset: 0x823E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_1: - symbol: gKartPeach147Wheel1 - type: texture - offset: 0x82468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_2: - symbol: gKartPeach147Wheel2 - type: texture - offset: 0x824E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_3: - symbol: gKartPeach147Wheel3 - type: texture - offset: 0x82568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_0: - symbol: gKartPeach148Wheel0 - type: texture - offset: 0x825E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_1: - symbol: gKartPeach148Wheel1 - type: texture - offset: 0x82668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_2: - symbol: gKartPeach148Wheel2 - type: texture - offset: 0x826E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_3: - symbol: gKartPeach148Wheel3 - type: texture - offset: 0x82768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_0: - symbol: gKartPeach149Wheel0 - type: texture - offset: 0x827E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_1: - symbol: gKartPeach149Wheel1 - type: texture - offset: 0x82868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_2: - symbol: gKartPeach149Wheel2 - type: texture - offset: 0x828E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_3: - symbol: gKartPeach149Wheel3 - type: texture - offset: 0x82968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_0: - symbol: gKartPeach150Wheel0 - type: texture - offset: 0x829E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_1: - symbol: gKartPeach150Wheel1 - type: texture - offset: 0x82A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_2: - symbol: gKartPeach150Wheel2 - type: texture - offset: 0x82AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_3: - symbol: gKartPeach150Wheel3 - type: texture - offset: 0x82B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_0: - symbol: gKartPeach151Wheel0 - type: texture - offset: 0x82BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_1: - symbol: gKartPeach151Wheel1 - type: texture - offset: 0x82C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_2: - symbol: gKartPeach151Wheel2 - type: texture - offset: 0x82CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_3: - symbol: gKartPeach151Wheel3 - type: texture - offset: 0x82D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_0: - symbol: gKartPeach152Wheel0 - type: texture - offset: 0x82DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_1: - symbol: gKartPeach152Wheel1 - type: texture - offset: 0x82E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_2: - symbol: gKartPeach152Wheel2 - type: texture - offset: 0x82EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_3: - symbol: gKartPeach152Wheel3 - type: texture - offset: 0x82F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_0: - symbol: gKartPeach153Wheel0 - type: texture - offset: 0x82FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_1: - symbol: gKartPeach153Wheel1 - type: texture - offset: 0x83068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_2: - symbol: gKartPeach153Wheel2 - type: texture - offset: 0x830E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_3: - symbol: gKartPeach153Wheel3 - type: texture - offset: 0x83168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_0: - symbol: gKartPeach154Wheel0 - type: texture - offset: 0x831E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_1: - symbol: gKartPeach154Wheel1 - type: texture - offset: 0x83268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_2: - symbol: gKartPeach154Wheel2 - type: texture - offset: 0x832E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_3: - symbol: gKartPeach154Wheel3 - type: texture - offset: 0x83368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_0: - symbol: gKartPeach155Wheel0 - type: texture - offset: 0x833E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_1: - symbol: gKartPeach155Wheel1 - type: texture - offset: 0x83468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_2: - symbol: gKartPeach155Wheel2 - type: texture - offset: 0x834E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_3: - symbol: gKartPeach155Wheel3 - type: texture - offset: 0x83568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_0: - symbol: gKartPeach156Wheel0 - type: texture - offset: 0x835E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_1: - symbol: gKartPeach156Wheel1 - type: texture - offset: 0x83668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_2: - symbol: gKartPeach156Wheel2 - type: texture - offset: 0x836E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_3: - symbol: gKartPeach156Wheel3 - type: texture - offset: 0x83768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_0: - symbol: gKartPeach157Wheel0 - type: texture - offset: 0x837E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_1: - symbol: gKartPeach157Wheel1 - type: texture - offset: 0x83868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_2: - symbol: gKartPeach157Wheel2 - type: texture - offset: 0x838E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_3: - symbol: gKartPeach157Wheel3 - type: texture - offset: 0x83968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_0: - symbol: gKartPeach158Wheel0 - type: texture - offset: 0x839E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_1: - symbol: gKartPeach158Wheel1 - type: texture - offset: 0x83A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_2: - symbol: gKartPeach158Wheel2 - type: texture - offset: 0x83AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_3: - symbol: gKartPeach158Wheel3 - type: texture - offset: 0x83B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_0: - symbol: gKartPeach159Wheel0 - type: texture - offset: 0x83BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_1: - symbol: gKartPeach159Wheel1 - type: texture - offset: 0x83C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_2: - symbol: gKartPeach159Wheel2 - type: texture - offset: 0x83CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_3: - symbol: gKartPeach159Wheel3 - type: texture - offset: 0x83D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_0: - symbol: gKartPeach160Wheel0 - type: texture - offset: 0x83DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_1: - symbol: gKartPeach160Wheel1 - type: texture - offset: 0x83E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_2: - symbol: gKartPeach160Wheel2 - type: texture - offset: 0x83EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_3: - symbol: gKartPeach160Wheel3 - type: texture - offset: 0x83F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_0: - symbol: gKartPeach161Wheel0 - type: texture - offset: 0x83FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_1: - symbol: gKartPeach161Wheel1 - type: texture - offset: 0x84068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_2: - symbol: gKartPeach161Wheel2 - type: texture - offset: 0x840E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_3: - symbol: gKartPeach161Wheel3 - type: texture - offset: 0x84168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_0: - symbol: gKartPeach162Wheel0 - type: texture - offset: 0x841E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_1: - symbol: gKartPeach162Wheel1 - type: texture - offset: 0x84268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_2: - symbol: gKartPeach162Wheel2 - type: texture - offset: 0x842E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_3: - symbol: gKartPeach162Wheel3 - type: texture - offset: 0x84368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_0: - symbol: gKartPeach163Wheel0 - type: texture - offset: 0x843E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_1: - symbol: gKartPeach163Wheel1 - type: texture - offset: 0x84468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_2: - symbol: gKartPeach163Wheel2 - type: texture - offset: 0x844E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_3: - symbol: gKartPeach163Wheel3 - type: texture - offset: 0x84568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_0: - symbol: gKartPeach164Wheel0 - type: texture - offset: 0x845E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_1: - symbol: gKartPeach164Wheel1 - type: texture - offset: 0x84668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_2: - symbol: gKartPeach164Wheel2 - type: texture - offset: 0x846E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_3: - symbol: gKartPeach164Wheel3 - type: texture - offset: 0x84768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_0: - symbol: gKartPeach165Wheel0 - type: texture - offset: 0x847E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_1: - symbol: gKartPeach165Wheel1 - type: texture - offset: 0x84868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_2: - symbol: gKartPeach165Wheel2 - type: texture - offset: 0x848E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_3: - symbol: gKartPeach165Wheel3 - type: texture - offset: 0x84968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_0: - symbol: gKartPeach166Wheel0 - type: texture - offset: 0x849E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_1: - symbol: gKartPeach166Wheel1 - type: texture - offset: 0x84A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_2: - symbol: gKartPeach166Wheel2 - type: texture - offset: 0x84AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_3: - symbol: gKartPeach166Wheel3 - type: texture - offset: 0x84B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_0: - symbol: gKartPeach167Wheel0 - type: texture - offset: 0x84BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_1: - symbol: gKartPeach167Wheel1 - type: texture - offset: 0x84C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_2: - symbol: gKartPeach167Wheel2 - type: texture - offset: 0x84CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_3: - symbol: gKartPeach167Wheel3 - type: texture - offset: 0x84D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_0: - symbol: gKartPeach168Wheel0 - type: texture - offset: 0x84DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_1: - symbol: gKartPeach168Wheel1 - type: texture - offset: 0x84E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_2: - symbol: gKartPeach168Wheel2 - type: texture - offset: 0x84EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_3: - symbol: gKartPeach168Wheel3 - type: texture - offset: 0x84F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_0: - symbol: gKartPeach169Wheel0 - type: texture - offset: 0x84FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_1: - symbol: gKartPeach169Wheel1 - type: texture - offset: 0x85068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_2: - symbol: gKartPeach169Wheel2 - type: texture - offset: 0x850E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_3: - symbol: gKartPeach169Wheel3 - type: texture - offset: 0x85168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_0: - symbol: gKartPeach170Wheel0 - type: texture - offset: 0x851E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_1: - symbol: gKartPeach170Wheel1 - type: texture - offset: 0x85268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_2: - symbol: gKartPeach170Wheel2 - type: texture - offset: 0x852E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_3: - symbol: gKartPeach170Wheel3 - type: texture - offset: 0x85368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_0: - symbol: gKartPeach171Wheel0 - type: texture - offset: 0x853E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_1: - symbol: gKartPeach171Wheel1 - type: texture - offset: 0x85468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_2: - symbol: gKartPeach171Wheel2 - type: texture - offset: 0x854E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_3: - symbol: gKartPeach171Wheel3 - type: texture - offset: 0x85568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_0: - symbol: gKartPeach172Wheel0 - type: texture - offset: 0x855E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_1: - symbol: gKartPeach172Wheel1 - type: texture - offset: 0x85668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_2: - symbol: gKartPeach172Wheel2 - type: texture - offset: 0x856E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_3: - symbol: gKartPeach172Wheel3 - type: texture - offset: 0x85768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_0: - symbol: gKartPeach173Wheel0 - type: texture - offset: 0x857E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_1: - symbol: gKartPeach173Wheel1 - type: texture - offset: 0x85868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_2: - symbol: gKartPeach173Wheel2 - type: texture - offset: 0x858E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_3: - symbol: gKartPeach173Wheel3 - type: texture - offset: 0x85968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_0: - symbol: gKartPeach174Wheel0 - type: texture - offset: 0x859E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_1: - symbol: gKartPeach174Wheel1 - type: texture - offset: 0x85A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_2: - symbol: gKartPeach174Wheel2 - type: texture - offset: 0x85AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_3: - symbol: gKartPeach174Wheel3 - type: texture - offset: 0x85B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_0: - symbol: gKartPeach175Wheel0 - type: texture - offset: 0x85BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_1: - symbol: gKartPeach175Wheel1 - type: texture - offset: 0x85C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_2: - symbol: gKartPeach175Wheel2 - type: texture - offset: 0x85CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_3: - symbol: gKartPeach175Wheel3 - type: texture - offset: 0x85D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_0: - symbol: gKartPeach176Wheel0 - type: texture - offset: 0x85DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_1: - symbol: gKartPeach176Wheel1 - type: texture - offset: 0x85E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_2: - symbol: gKartPeach176Wheel2 - type: texture - offset: 0x85EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_3: - symbol: gKartPeach176Wheel3 - type: texture - offset: 0x85F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_0: - symbol: gKartPeach177Wheel0 - type: texture - offset: 0x85FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_1: - symbol: gKartPeach177Wheel1 - type: texture - offset: 0x86068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_2: - symbol: gKartPeach177Wheel2 - type: texture - offset: 0x860E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_3: - symbol: gKartPeach177Wheel3 - type: texture - offset: 0x86168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_0: - symbol: gKartPeach178Wheel0 - type: texture - offset: 0x861E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_1: - symbol: gKartPeach178Wheel1 - type: texture - offset: 0x86268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_2: - symbol: gKartPeach178Wheel2 - type: texture - offset: 0x862E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_3: - symbol: gKartPeach178Wheel3 - type: texture - offset: 0x86368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_0: - symbol: gKartPeach179Wheel0 - type: texture - offset: 0x863E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_1: - symbol: gKartPeach179Wheel1 - type: texture - offset: 0x86468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_2: - symbol: gKartPeach179Wheel2 - type: texture - offset: 0x864E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_3: - symbol: gKartPeach179Wheel3 - type: texture - offset: 0x86568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_0: - symbol: gKartPeach180Wheel0 - type: texture - offset: 0x865E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_1: - symbol: gKartPeach180Wheel1 - type: texture - offset: 0x86668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_2: - symbol: gKartPeach180Wheel2 - type: texture - offset: 0x866E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_3: - symbol: gKartPeach180Wheel3 - type: texture - offset: 0x86768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_0: - symbol: gKartPeach181Wheel0 - type: texture - offset: 0x867E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_1: - symbol: gKartPeach181Wheel1 - type: texture - offset: 0x86868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_2: - symbol: gKartPeach181Wheel2 - type: texture - offset: 0x868E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_3: - symbol: gKartPeach181Wheel3 - type: texture - offset: 0x86968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_0: - symbol: gKartPeach182Wheel0 - type: texture - offset: 0x869E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_1: - symbol: gKartPeach182Wheel1 - type: texture - offset: 0x86A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_2: - symbol: gKartPeach182Wheel2 - type: texture - offset: 0x86AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_3: - symbol: gKartPeach182Wheel3 - type: texture - offset: 0x86B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_0: - symbol: gKartPeach183Wheel0 - type: texture - offset: 0x86BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_1: - symbol: gKartPeach183Wheel1 - type: texture - offset: 0x86C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_2: - symbol: gKartPeach183Wheel2 - type: texture - offset: 0x86CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_3: - symbol: gKartPeach183Wheel3 - type: texture - offset: 0x86D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_0: - symbol: gKartPeach184Wheel0 - type: texture - offset: 0x86DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_1: - symbol: gKartPeach184Wheel1 - type: texture - offset: 0x86E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_2: - symbol: gKartPeach184Wheel2 - type: texture - offset: 0x86EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_3: - symbol: gKartPeach184Wheel3 - type: texture - offset: 0x86F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_0: - symbol: gKartPeach185Wheel0 - type: texture - offset: 0x86FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_1: - symbol: gKartPeach185Wheel1 - type: texture - offset: 0x87068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_2: - symbol: gKartPeach185Wheel2 - type: texture - offset: 0x870E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_3: - symbol: gKartPeach185Wheel3 - type: texture - offset: 0x87168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_0: - symbol: gKartPeach186Wheel0 - type: texture - offset: 0x871E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_1: - symbol: gKartPeach186Wheel1 - type: texture - offset: 0x87268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_2: - symbol: gKartPeach186Wheel2 - type: texture - offset: 0x872E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_3: - symbol: gKartPeach186Wheel3 - type: texture - offset: 0x87368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_0: - symbol: gKartPeach187Wheel0 - type: texture - offset: 0x873E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_1: - symbol: gKartPeach187Wheel1 - type: texture - offset: 0x87468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_2: - symbol: gKartPeach187Wheel2 - type: texture - offset: 0x874E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_3: - symbol: gKartPeach187Wheel3 - type: texture - offset: 0x87568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_0: - symbol: gKartPeach188Wheel0 - type: texture - offset: 0x875E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_1: - symbol: gKartPeach188Wheel1 - type: texture - offset: 0x87668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_2: - symbol: gKartPeach188Wheel2 - type: texture - offset: 0x876E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_3: - symbol: gKartPeach188Wheel3 - type: texture - offset: 0x87768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_0: - symbol: gKartPeach189Wheel0 - type: texture - offset: 0x877E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_1: - symbol: gKartPeach189Wheel1 - type: texture - offset: 0x87868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_2: - symbol: gKartPeach189Wheel2 - type: texture - offset: 0x878E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_3: - symbol: gKartPeach189Wheel3 - type: texture - offset: 0x87968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_0: - symbol: gKartPeach190Wheel0 - type: texture - offset: 0x879E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_1: - symbol: gKartPeach190Wheel1 - type: texture - offset: 0x87A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_2: - symbol: gKartPeach190Wheel2 - type: texture - offset: 0x87AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_3: - symbol: gKartPeach190Wheel3 - type: texture - offset: 0x87B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_0: - symbol: gKartPeach191Wheel0 - type: texture - offset: 0x87BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_1: - symbol: gKartPeach191Wheel1 - type: texture - offset: 0x87C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_2: - symbol: gKartPeach191Wheel2 - type: texture - offset: 0x87CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_3: - symbol: gKartPeach191Wheel3 - type: texture - offset: 0x87D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_0: - symbol: gKartPeach192Wheel0 - type: texture - offset: 0x87DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_1: - symbol: gKartPeach192Wheel1 - type: texture - offset: 0x87E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_2: - symbol: gKartPeach192Wheel2 - type: texture - offset: 0x87EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_3: - symbol: gKartPeach192Wheel3 - type: texture - offset: 0x87F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_0: - symbol: gKartPeach193Wheel0 - type: texture - offset: 0x87FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_1: - symbol: gKartPeach193Wheel1 - type: texture - offset: 0x88068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_2: - symbol: gKartPeach193Wheel2 - type: texture - offset: 0x880E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_3: - symbol: gKartPeach193Wheel3 - type: texture - offset: 0x88168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_0: - symbol: gKartPeach194Wheel0 - type: texture - offset: 0x881E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_1: - symbol: gKartPeach194Wheel1 - type: texture - offset: 0x88268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_2: - symbol: gKartPeach194Wheel2 - type: texture - offset: 0x882E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_3: - symbol: gKartPeach194Wheel3 - type: texture - offset: 0x88368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_0: - symbol: gKartPeach195Wheel0 - type: texture - offset: 0x883E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_1: - symbol: gKartPeach195Wheel1 - type: texture - offset: 0x88468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_2: - symbol: gKartPeach195Wheel2 - type: texture - offset: 0x884E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_3: - symbol: gKartPeach195Wheel3 - type: texture - offset: 0x88568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_0: - symbol: gKartPeach196Wheel0 - type: texture - offset: 0x885E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_1: - symbol: gKartPeach196Wheel1 - type: texture - offset: 0x88668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_2: - symbol: gKartPeach196Wheel2 - type: texture - offset: 0x886E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_3: - symbol: gKartPeach196Wheel3 - type: texture - offset: 0x88768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_0: - symbol: gKartPeach197Wheel0 - type: texture - offset: 0x887E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_1: - symbol: gKartPeach197Wheel1 - type: texture - offset: 0x88868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_2: - symbol: gKartPeach197Wheel2 - type: texture - offset: 0x888E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_3: - symbol: gKartPeach197Wheel3 - type: texture - offset: 0x88968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_0: - symbol: gKartPeach198Wheel0 - type: texture - offset: 0x889E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_1: - symbol: gKartPeach198Wheel1 - type: texture - offset: 0x88A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_2: - symbol: gKartPeach198Wheel2 - type: texture - offset: 0x88AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_3: - symbol: gKartPeach198Wheel3 - type: texture - offset: 0x88B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_0: - symbol: gKartPeach199Wheel0 - type: texture - offset: 0x88BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_1: - symbol: gKartPeach199Wheel1 - type: texture - offset: 0x88C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_2: - symbol: gKartPeach199Wheel2 - type: texture - offset: 0x88CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_3: - symbol: gKartPeach199Wheel3 - type: texture - offset: 0x88D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_0: - symbol: gKartPeach200Wheel0 - type: texture - offset: 0x88DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_1: - symbol: gKartPeach200Wheel1 - type: texture - offset: 0x88E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_2: - symbol: gKartPeach200Wheel2 - type: texture - offset: 0x88EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_3: - symbol: gKartPeach200Wheel3 - type: texture - offset: 0x88F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_0: - symbol: gKartPeach201Wheel0 - type: texture - offset: 0x88FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_1: - symbol: gKartPeach201Wheel1 - type: texture - offset: 0x89068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_2: - symbol: gKartPeach201Wheel2 - type: texture - offset: 0x890E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_3: - symbol: gKartPeach201Wheel3 - type: texture - offset: 0x89168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_0: - symbol: gKartPeach202Wheel0 - type: texture - offset: 0x891E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_1: - symbol: gKartPeach202Wheel1 - type: texture - offset: 0x89268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_2: - symbol: gKartPeach202Wheel2 - type: texture - offset: 0x892E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_3: - symbol: gKartPeach202Wheel3 - type: texture - offset: 0x89368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_0: - symbol: gKartPeach203Wheel0 - type: texture - offset: 0x893E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_1: - symbol: gKartPeach203Wheel1 - type: texture - offset: 0x89468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_2: - symbol: gKartPeach203Wheel2 - type: texture - offset: 0x894E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_3: - symbol: gKartPeach203Wheel3 - type: texture - offset: 0x89568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_0: - symbol: gKartPeach204Wheel0 - type: texture - offset: 0x895E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_1: - symbol: gKartPeach204Wheel1 - type: texture - offset: 0x89668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_2: - symbol: gKartPeach204Wheel2 - type: texture - offset: 0x896E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_3: - symbol: gKartPeach204Wheel3 - type: texture - offset: 0x89768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_0: - symbol: gKartPeach205Wheel0 - type: texture - offset: 0x897E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_1: - symbol: gKartPeach205Wheel1 - type: texture - offset: 0x89868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_2: - symbol: gKartPeach205Wheel2 - type: texture - offset: 0x898E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_3: - symbol: gKartPeach205Wheel3 - type: texture - offset: 0x89968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_0: - symbol: gKartPeach206Wheel0 - type: texture - offset: 0x899E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_1: - symbol: gKartPeach206Wheel1 - type: texture - offset: 0x89A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_2: - symbol: gKartPeach206Wheel2 - type: texture - offset: 0x89AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_3: - symbol: gKartPeach206Wheel3 - type: texture - offset: 0x89B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_0: - symbol: gKartPeach207Wheel0 - type: texture - offset: 0x89BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_1: - symbol: gKartPeach207Wheel1 - type: texture - offset: 0x89C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_2: - symbol: gKartPeach207Wheel2 - type: texture - offset: 0x89CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_3: - symbol: gKartPeach207Wheel3 - type: texture - offset: 0x89D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_0: - symbol: gKartPeach208Wheel0 - type: texture - offset: 0x89DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_1: - symbol: gKartPeach208Wheel1 - type: texture - offset: 0x89E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_2: - symbol: gKartPeach208Wheel2 - type: texture - offset: 0x89EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_3: - symbol: gKartPeach208Wheel3 - type: texture - offset: 0x89F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_0: - symbol: gKartPeach209Wheel0 - type: texture - offset: 0x89FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_1: - symbol: gKartPeach209Wheel1 - type: texture - offset: 0x8A068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_2: - symbol: gKartPeach209Wheel2 - type: texture - offset: 0x8A0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_3: - symbol: gKartPeach209Wheel3 - type: texture - offset: 0x8A168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_0: - symbol: gKartPeach210Wheel0 - type: texture - offset: 0x8A1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_1: - symbol: gKartPeach210Wheel1 - type: texture - offset: 0x8A268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_2: - symbol: gKartPeach210Wheel2 - type: texture - offset: 0x8A2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_3: - symbol: gKartPeach210Wheel3 - type: texture - offset: 0x8A368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_0: - symbol: gKartPeach211Wheel0 - type: texture - offset: 0x8A3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_1: - symbol: gKartPeach211Wheel1 - type: texture - offset: 0x8A468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_2: - symbol: gKartPeach211Wheel2 - type: texture - offset: 0x8A4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_3: - symbol: gKartPeach211Wheel3 - type: texture - offset: 0x8A568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_0: - symbol: gKartPeach212Wheel0 - type: texture - offset: 0x8A5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_1: - symbol: gKartPeach212Wheel1 - type: texture - offset: 0x8A668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_2: - symbol: gKartPeach212Wheel2 - type: texture - offset: 0x8A6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_3: - symbol: gKartPeach212Wheel3 - type: texture - offset: 0x8A768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_0: - symbol: gKartPeach213Wheel0 - type: texture - offset: 0x8A7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_1: - symbol: gKartPeach213Wheel1 - type: texture - offset: 0x8A868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_2: - symbol: gKartPeach213Wheel2 - type: texture - offset: 0x8A8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_3: - symbol: gKartPeach213Wheel3 - type: texture - offset: 0x8A968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_0: - symbol: gKartPeach214Wheel0 - type: texture - offset: 0x8A9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_1: - symbol: gKartPeach214Wheel1 - type: texture - offset: 0x8AA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_2: - symbol: gKartPeach214Wheel2 - type: texture - offset: 0x8AAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_3: - symbol: gKartPeach214Wheel3 - type: texture - offset: 0x8AB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_0: - symbol: gKartPeach215Wheel0 - type: texture - offset: 0x8ABE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_1: - symbol: gKartPeach215Wheel1 - type: texture - offset: 0x8AC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_2: - symbol: gKartPeach215Wheel2 - type: texture - offset: 0x8ACE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_3: - symbol: gKartPeach215Wheel3 - type: texture - offset: 0x8AD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_0: - symbol: gKartPeach216Wheel0 - type: texture - offset: 0x8ADE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_1: - symbol: gKartPeach216Wheel1 - type: texture - offset: 0x8AE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_2: - symbol: gKartPeach216Wheel2 - type: texture - offset: 0x8AEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_3: - symbol: gKartPeach216Wheel3 - type: texture - offset: 0x8AF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_0: - symbol: gKartPeach217Wheel0 - type: texture - offset: 0x8AFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_1: - symbol: gKartPeach217Wheel1 - type: texture - offset: 0x8B068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_2: - symbol: gKartPeach217Wheel2 - type: texture - offset: 0x8B0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_3: - symbol: gKartPeach217Wheel3 - type: texture - offset: 0x8B168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_0: - symbol: gKartPeach218Wheel0 - type: texture - offset: 0x8B1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_1: - symbol: gKartPeach218Wheel1 - type: texture - offset: 0x8B268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_2: - symbol: gKartPeach218Wheel2 - type: texture - offset: 0x8B2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_3: - symbol: gKartPeach218Wheel3 - type: texture - offset: 0x8B368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_0: - symbol: gKartPeach219Wheel0 - type: texture - offset: 0x8B3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_1: - symbol: gKartPeach219Wheel1 - type: texture - offset: 0x8B468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_2: - symbol: gKartPeach219Wheel2 - type: texture - offset: 0x8B4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_3: - symbol: gKartPeach219Wheel3 - type: texture - offset: 0x8B568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_0: - symbol: gKartPeach220Wheel0 - type: texture - offset: 0x8B5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_1: - symbol: gKartPeach220Wheel1 - type: texture - offset: 0x8B668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_2: - symbol: gKartPeach220Wheel2 - type: texture - offset: 0x8B6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_3: - symbol: gKartPeach220Wheel3 - type: texture - offset: 0x8B768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_0: - symbol: gKartPeach221Wheel0 - type: texture - offset: 0x8B7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_1: - symbol: gKartPeach221Wheel1 - type: texture - offset: 0x8B868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_2: - symbol: gKartPeach221Wheel2 - type: texture - offset: 0x8B8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_3: - symbol: gKartPeach221Wheel3 - type: texture - offset: 0x8B968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_0: - symbol: gKartPeach222Wheel0 - type: texture - offset: 0x8B9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_1: - symbol: gKartPeach222Wheel1 - type: texture - offset: 0x8BA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_2: - symbol: gKartPeach222Wheel2 - type: texture - offset: 0x8BAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_3: - symbol: gKartPeach222Wheel3 - type: texture - offset: 0x8BB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_0: - symbol: gKartPeach223Wheel0 - type: texture - offset: 0x8BBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_1: - symbol: gKartPeach223Wheel1 - type: texture - offset: 0x8BC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_2: - symbol: gKartPeach223Wheel2 - type: texture - offset: 0x8BCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_3: - symbol: gKartPeach223Wheel3 - type: texture - offset: 0x8BD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_0: - symbol: gKartPeach224Wheel0 - type: texture - offset: 0x8BDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_1: - symbol: gKartPeach224Wheel1 - type: texture - offset: 0x8BE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_2: - symbol: gKartPeach224Wheel2 - type: texture - offset: 0x8BEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_3: - symbol: gKartPeach224Wheel3 - type: texture - offset: 0x8BF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_0: - symbol: gKartPeach225Wheel0 - type: texture - offset: 0x8BFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_1: - symbol: gKartPeach225Wheel1 - type: texture - offset: 0x8C068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_2: - symbol: gKartPeach225Wheel2 - type: texture - offset: 0x8C0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_3: - symbol: gKartPeach225Wheel3 - type: texture - offset: 0x8C168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_0: - symbol: gKartPeach226Wheel0 - type: texture - offset: 0x8C1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_1: - symbol: gKartPeach226Wheel1 - type: texture - offset: 0x8C268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_2: - symbol: gKartPeach226Wheel2 - type: texture - offset: 0x8C2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_3: - symbol: gKartPeach226Wheel3 - type: texture - offset: 0x8C368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_0: - symbol: gKartPeach227Wheel0 - type: texture - offset: 0x8C3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_1: - symbol: gKartPeach227Wheel1 - type: texture - offset: 0x8C468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_2: - symbol: gKartPeach227Wheel2 - type: texture - offset: 0x8C4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_3: - symbol: gKartPeach227Wheel3 - type: texture - offset: 0x8C568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_0: - symbol: gKartPeach228Wheel0 - type: texture - offset: 0x8C5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_1: - symbol: gKartPeach228Wheel1 - type: texture - offset: 0x8C668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_2: - symbol: gKartPeach228Wheel2 - type: texture - offset: 0x8C6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_3: - symbol: gKartPeach228Wheel3 - type: texture - offset: 0x8C768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_0: - symbol: gKartPeach229Wheel0 - type: texture - offset: 0x8C7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_1: - symbol: gKartPeach229Wheel1 - type: texture - offset: 0x8C868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_2: - symbol: gKartPeach229Wheel2 - type: texture - offset: 0x8C8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_3: - symbol: gKartPeach229Wheel3 - type: texture - offset: 0x8C968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_0: - symbol: gKartPeach230Wheel0 - type: texture - offset: 0x8C9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_1: - symbol: gKartPeach230Wheel1 - type: texture - offset: 0x8CA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_2: - symbol: gKartPeach230Wheel2 - type: texture - offset: 0x8CAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_3: - symbol: gKartPeach230Wheel3 - type: texture - offset: 0x8CB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_0: - symbol: gKartPeach231Wheel0 - type: texture - offset: 0x8CBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_1: - symbol: gKartPeach231Wheel1 - type: texture - offset: 0x8CC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_2: - symbol: gKartPeach231Wheel2 - type: texture - offset: 0x8CCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_3: - symbol: gKartPeach231Wheel3 - type: texture - offset: 0x8CD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_0: - symbol: gKartPeach232Wheel0 - type: texture - offset: 0x8CDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_1: - symbol: gKartPeach232Wheel1 - type: texture - offset: 0x8CE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_2: - symbol: gKartPeach232Wheel2 - type: texture - offset: 0x8CEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_3: - symbol: gKartPeach232Wheel3 - type: texture - offset: 0x8CF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_0: - symbol: gKartPeach233Wheel0 - type: texture - offset: 0x8CFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_1: - symbol: gKartPeach233Wheel1 - type: texture - offset: 0x8D068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_2: - symbol: gKartPeach233Wheel2 - type: texture - offset: 0x8D0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_3: - symbol: gKartPeach233Wheel3 - type: texture - offset: 0x8D168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_0: - symbol: gKartPeach234Wheel0 - type: texture - offset: 0x8D1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_1: - symbol: gKartPeach234Wheel1 - type: texture - offset: 0x8D268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_2: - symbol: gKartPeach234Wheel2 - type: texture - offset: 0x8D2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_3: - symbol: gKartPeach234Wheel3 - type: texture - offset: 0x8D368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_0: - symbol: gKartPeach235Wheel0 - type: texture - offset: 0x8D3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_1: - symbol: gKartPeach235Wheel1 - type: texture - offset: 0x8D468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_2: - symbol: gKartPeach235Wheel2 - type: texture - offset: 0x8D4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_3: - symbol: gKartPeach235Wheel3 - type: texture - offset: 0x8D568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_0: - symbol: gKartPeach236Wheel0 - type: texture - offset: 0x8D5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_1: - symbol: gKartPeach236Wheel1 - type: texture - offset: 0x8D668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_2: - symbol: gKartPeach236Wheel2 - type: texture - offset: 0x8D6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_3: - symbol: gKartPeach236Wheel3 - type: texture - offset: 0x8D768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_0: - symbol: gKartPeach237Wheel0 - type: texture - offset: 0x8D7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_1: - symbol: gKartPeach237Wheel1 - type: texture - offset: 0x8D868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_2: - symbol: gKartPeach237Wheel2 - type: texture - offset: 0x8D8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_3: - symbol: gKartPeach237Wheel3 - type: texture - offset: 0x8D968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_0: - symbol: gKartPeach238Wheel0 - type: texture - offset: 0x8D9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_1: - symbol: gKartPeach238Wheel1 - type: texture - offset: 0x8DA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_2: - symbol: gKartPeach238Wheel2 - type: texture - offset: 0x8DAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_3: - symbol: gKartPeach238Wheel3 - type: texture - offset: 0x8DB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_0: - symbol: gKartPeach239Wheel0 - type: texture - offset: 0x8DBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_1: - symbol: gKartPeach239Wheel1 - type: texture - offset: 0x8DC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_2: - symbol: gKartPeach239Wheel2 - type: texture - offset: 0x8DCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_3: - symbol: gKartPeach239Wheel3 - type: texture - offset: 0x8DD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_0: - symbol: gKartPeach240Wheel0 - type: texture - offset: 0x8DDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_1: - symbol: gKartPeach240Wheel1 - type: texture - offset: 0x8DE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_2: - symbol: gKartPeach240Wheel2 - type: texture - offset: 0x8DEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_3: - symbol: gKartPeach240Wheel3 - type: texture - offset: 0x8DF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_0: - symbol: gKartPeach241Wheel0 - type: texture - offset: 0x8DFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_1: - symbol: gKartPeach241Wheel1 - type: texture - offset: 0x8E068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_2: - symbol: gKartPeach241Wheel2 - type: texture - offset: 0x8E0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_3: - symbol: gKartPeach241Wheel3 - type: texture - offset: 0x8E168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_0: - symbol: gKartPeach242Wheel0 - type: texture - offset: 0x8E1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_1: - symbol: gKartPeach242Wheel1 - type: texture - offset: 0x8E268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_2: - symbol: gKartPeach242Wheel2 - type: texture - offset: 0x8E2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_3: - symbol: gKartPeach242Wheel3 - type: texture - offset: 0x8E368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_0: - symbol: gKartPeach243Wheel0 - type: texture - offset: 0x8E3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_1: - symbol: gKartPeach243Wheel1 - type: texture - offset: 0x8E468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_2: - symbol: gKartPeach243Wheel2 - type: texture - offset: 0x8E4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_3: - symbol: gKartPeach243Wheel3 - type: texture - offset: 0x8E568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_0: - symbol: gKartPeach244Wheel0 - type: texture - offset: 0x8E5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_1: - symbol: gKartPeach244Wheel1 - type: texture - offset: 0x8E668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_2: - symbol: gKartPeach244Wheel2 - type: texture - offset: 0x8E6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_3: - symbol: gKartPeach244Wheel3 - type: texture - offset: 0x8E768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_0: - symbol: gKartPeach245Wheel0 - type: texture - offset: 0x8E7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_1: - symbol: gKartPeach245Wheel1 - type: texture - offset: 0x8E868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_2: - symbol: gKartPeach245Wheel2 - type: texture - offset: 0x8E8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_3: - symbol: gKartPeach245Wheel3 - type: texture - offset: 0x8E968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_0: - symbol: gKartPeach246Wheel0 - type: texture - offset: 0x8E9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_1: - symbol: gKartPeach246Wheel1 - type: texture - offset: 0x8EA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_2: - symbol: gKartPeach246Wheel2 - type: texture - offset: 0x8EAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_3: - symbol: gKartPeach246Wheel3 - type: texture - offset: 0x8EB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_0: - symbol: gKartPeach247Wheel0 - type: texture - offset: 0x8EBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_1: - symbol: gKartPeach247Wheel1 - type: texture - offset: 0x8EC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_2: - symbol: gKartPeach247Wheel2 - type: texture - offset: 0x8ECE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_3: - symbol: gKartPeach247Wheel3 - type: texture - offset: 0x8ED68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_0: - symbol: gKartPeach248Wheel0 - type: texture - offset: 0x8EDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_1: - symbol: gKartPeach248Wheel1 - type: texture - offset: 0x8EE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_2: - symbol: gKartPeach248Wheel2 - type: texture - offset: 0x8EEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_3: - symbol: gKartPeach248Wheel3 - type: texture - offset: 0x8EF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_0: - symbol: gKartPeach249Wheel0 - type: texture - offset: 0x8EFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_1: - symbol: gKartPeach249Wheel1 - type: texture - offset: 0x8F068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_2: - symbol: gKartPeach249Wheel2 - type: texture - offset: 0x8F0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_3: - symbol: gKartPeach249Wheel3 - type: texture - offset: 0x8F168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_0: - symbol: gKartPeach250Wheel0 - type: texture - offset: 0x8F1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_1: - symbol: gKartPeach250Wheel1 - type: texture - offset: 0x8F268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_2: - symbol: gKartPeach250Wheel2 - type: texture - offset: 0x8F2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_3: - symbol: gKartPeach250Wheel3 - type: texture - offset: 0x8F368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_0: - symbol: gKartPeach251Wheel0 - type: texture - offset: 0x8F3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_1: - symbol: gKartPeach251Wheel1 - type: texture - offset: 0x8F468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_2: - symbol: gKartPeach251Wheel2 - type: texture - offset: 0x8F4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_3: - symbol: gKartPeach251Wheel3 - type: texture - offset: 0x8F568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_0: - symbol: gKartPeach252Wheel0 - type: texture - offset: 0x8F5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_1: - symbol: gKartPeach252Wheel1 - type: texture - offset: 0x8F668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_2: - symbol: gKartPeach252Wheel2 - type: texture - offset: 0x8F6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_3: - symbol: gKartPeach252Wheel3 - type: texture - offset: 0x8F768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_0: - symbol: gKartPeach253Wheel0 - type: texture - offset: 0x8F7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_1: - symbol: gKartPeach253Wheel1 - type: texture - offset: 0x8F868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_2: - symbol: gKartPeach253Wheel2 - type: texture - offset: 0x8F8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_3: - symbol: gKartPeach253Wheel3 - type: texture - offset: 0x8F968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_0: - symbol: gKartPeach254Wheel0 - type: texture - offset: 0x8F9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_1: - symbol: gKartPeach254Wheel1 - type: texture - offset: 0x8FA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_2: - symbol: gKartPeach254Wheel2 - type: texture - offset: 0x8FAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_3: - symbol: gKartPeach254Wheel3 - type: texture - offset: 0x8FB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_0: - symbol: gKartPeach255Wheel0 - type: texture - offset: 0x8FBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_1: - symbol: gKartPeach255Wheel1 - type: texture - offset: 0x8FC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_2: - symbol: gKartPeach255Wheel2 - type: texture - offset: 0x8FCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_3: - symbol: gKartPeach255Wheel3 - type: texture - offset: 0x8FD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_0: - symbol: gKartPeach256Wheel0 - type: texture - offset: 0x8FDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_1: - symbol: gKartPeach256Wheel1 - type: texture - offset: 0x8FE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_2: - symbol: gKartPeach256Wheel2 - type: texture - offset: 0x8FEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_3: - symbol: gKartPeach256Wheel3 - type: texture - offset: 0x8FF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_0: - symbol: gKartPeach257Wheel0 - type: texture - offset: 0x8FFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_1: - symbol: gKartPeach257Wheel1 - type: texture - offset: 0x90068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_2: - symbol: gKartPeach257Wheel2 - type: texture - offset: 0x900E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_3: - symbol: gKartPeach257Wheel3 - type: texture - offset: 0x90168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_0: - symbol: gKartPeach258Wheel0 - type: texture - offset: 0x901E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_1: - symbol: gKartPeach258Wheel1 - type: texture - offset: 0x90268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_2: - symbol: gKartPeach258Wheel2 - type: texture - offset: 0x902E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_3: - symbol: gKartPeach258Wheel3 - type: texture - offset: 0x90368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_0: - symbol: gKartPeach259Wheel0 - type: texture - offset: 0x903E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_1: - symbol: gKartPeach259Wheel1 - type: texture - offset: 0x90468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_2: - symbol: gKartPeach259Wheel2 - type: texture - offset: 0x904E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_3: - symbol: gKartPeach259Wheel3 - type: texture - offset: 0x90568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_0: - symbol: gKartPeach260Wheel0 - type: texture - offset: 0x905E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_1: - symbol: gKartPeach260Wheel1 - type: texture - offset: 0x90668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_2: - symbol: gKartPeach260Wheel2 - type: texture - offset: 0x906E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_3: - symbol: gKartPeach260Wheel3 - type: texture - offset: 0x90768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_0: - symbol: gKartPeach261Wheel0 - type: texture - offset: 0x907E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_1: - symbol: gKartPeach261Wheel1 - type: texture - offset: 0x90868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_2: - symbol: gKartPeach261Wheel2 - type: texture - offset: 0x908E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_3: - symbol: gKartPeach261Wheel3 - type: texture - offset: 0x90968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_0: - symbol: gKartPeach262Wheel0 - type: texture - offset: 0x909E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_1: - symbol: gKartPeach262Wheel1 - type: texture - offset: 0x90A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_2: - symbol: gKartPeach262Wheel2 - type: texture - offset: 0x90AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_3: - symbol: gKartPeach262Wheel3 - type: texture - offset: 0x90B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_0: - symbol: gKartPeach263Wheel0 - type: texture - offset: 0x90BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_1: - symbol: gKartPeach263Wheel1 - type: texture - offset: 0x90C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_2: - symbol: gKartPeach263Wheel2 - type: texture - offset: 0x90CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_3: - symbol: gKartPeach263Wheel3 - type: texture - offset: 0x90D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_0: - symbol: gKartPeach264Wheel0 - type: texture - offset: 0x90DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_1: - symbol: gKartPeach264Wheel1 - type: texture - offset: 0x90E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_2: - symbol: gKartPeach264Wheel2 - type: texture - offset: 0x90EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_3: - symbol: gKartPeach264Wheel3 - type: texture - offset: 0x90F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_0: - symbol: gKartPeach265Wheel0 - type: texture - offset: 0x90FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_1: - symbol: gKartPeach265Wheel1 - type: texture - offset: 0x91068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_2: - symbol: gKartPeach265Wheel2 - type: texture - offset: 0x910E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_3: - symbol: gKartPeach265Wheel3 - type: texture - offset: 0x91168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_0: - symbol: gKartPeach266Wheel0 - type: texture - offset: 0x911E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_1: - symbol: gKartPeach266Wheel1 - type: texture - offset: 0x91268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_2: - symbol: gKartPeach266Wheel2 - type: texture - offset: 0x912E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_3: - symbol: gKartPeach266Wheel3 - type: texture - offset: 0x91368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_0: - symbol: gKartPeach267Wheel0 - type: texture - offset: 0x913E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_1: - symbol: gKartPeach267Wheel1 - type: texture - offset: 0x91468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_2: - symbol: gKartPeach267Wheel2 - type: texture - offset: 0x914E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_3: - symbol: gKartPeach267Wheel3 - type: texture - offset: 0x91568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_0: - symbol: gKartPeach268Wheel0 - type: texture - offset: 0x915E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_1: - symbol: gKartPeach268Wheel1 - type: texture - offset: 0x91668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_2: - symbol: gKartPeach268Wheel2 - type: texture - offset: 0x916E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_3: - symbol: gKartPeach268Wheel3 - type: texture - offset: 0x91768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_0: - symbol: gKartPeach269Wheel0 - type: texture - offset: 0x917E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_1: - symbol: gKartPeach269Wheel1 - type: texture - offset: 0x91868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_2: - symbol: gKartPeach269Wheel2 - type: texture - offset: 0x918E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_3: - symbol: gKartPeach269Wheel3 - type: texture - offset: 0x91968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_0: - symbol: gKartPeach270Wheel0 - type: texture - offset: 0x919E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_1: - symbol: gKartPeach270Wheel1 - type: texture - offset: 0x91A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_2: - symbol: gKartPeach270Wheel2 - type: texture - offset: 0x91AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_3: - symbol: gKartPeach270Wheel3 - type: texture - offset: 0x91B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_0: - symbol: gKartPeach271Wheel0 - type: texture - offset: 0x91BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_1: - symbol: gKartPeach271Wheel1 - type: texture - offset: 0x91C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_2: - symbol: gKartPeach271Wheel2 - type: texture - offset: 0x91CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_3: - symbol: gKartPeach271Wheel3 - type: texture - offset: 0x91D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_0: - symbol: gKartPeach272Wheel0 - type: texture - offset: 0x91DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_1: - symbol: gKartPeach272Wheel1 - type: texture - offset: 0x91E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_2: - symbol: gKartPeach272Wheel2 - type: texture - offset: 0x91EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_3: - symbol: gKartPeach272Wheel3 - type: texture - offset: 0x91F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_0: - symbol: gKartPeach273Wheel0 - type: texture - offset: 0x91FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_1: - symbol: gKartPeach273Wheel1 - type: texture - offset: 0x92068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_2: - symbol: gKartPeach273Wheel2 - type: texture - offset: 0x920E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_3: - symbol: gKartPeach273Wheel3 - type: texture - offset: 0x92168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_0: - symbol: gKartPeach274Wheel0 - type: texture - offset: 0x921E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_1: - symbol: gKartPeach274Wheel1 - type: texture - offset: 0x92268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_2: - symbol: gKartPeach274Wheel2 - type: texture - offset: 0x922E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_3: - symbol: gKartPeach274Wheel3 - type: texture - offset: 0x92368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_0: - symbol: gKartPeach275Wheel0 - type: texture - offset: 0x923E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_1: - symbol: gKartPeach275Wheel1 - type: texture - offset: 0x92468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_2: - symbol: gKartPeach275Wheel2 - type: texture - offset: 0x924E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_3: - symbol: gKartPeach275Wheel3 - type: texture - offset: 0x92568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_0: - symbol: gKartPeach276Wheel0 - type: texture - offset: 0x925E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_1: - symbol: gKartPeach276Wheel1 - type: texture - offset: 0x92668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_2: - symbol: gKartPeach276Wheel2 - type: texture - offset: 0x926E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_3: - symbol: gKartPeach276Wheel3 - type: texture - offset: 0x92768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_0: - symbol: gKartPeach277Wheel0 - type: texture - offset: 0x927E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_1: - symbol: gKartPeach277Wheel1 - type: texture - offset: 0x92868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_2: - symbol: gKartPeach277Wheel2 - type: texture - offset: 0x928E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_3: - symbol: gKartPeach277Wheel3 - type: texture - offset: 0x92968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_0: - symbol: gKartPeach278Wheel0 - type: texture - offset: 0x929E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_1: - symbol: gKartPeach278Wheel1 - type: texture - offset: 0x92A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_2: - symbol: gKartPeach278Wheel2 - type: texture - offset: 0x92AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_3: - symbol: gKartPeach278Wheel3 - type: texture - offset: 0x92B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_0: - symbol: gKartPeach279Wheel0 - type: texture - offset: 0x92BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_1: - symbol: gKartPeach279Wheel1 - type: texture - offset: 0x92C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_2: - symbol: gKartPeach279Wheel2 - type: texture - offset: 0x92CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_3: - symbol: gKartPeach279Wheel3 - type: texture - offset: 0x92D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_0: - symbol: gKartPeach280Wheel0 - type: texture - offset: 0x92DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_1: - symbol: gKartPeach280Wheel1 - type: texture - offset: 0x92E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_2: - symbol: gKartPeach280Wheel2 - type: texture - offset: 0x92EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_3: - symbol: gKartPeach280Wheel3 - type: texture - offset: 0x92F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_0: - symbol: gKartPeach281Wheel0 - type: texture - offset: 0x92FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_1: - symbol: gKartPeach281Wheel1 - type: texture - offset: 0x93068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_2: - symbol: gKartPeach281Wheel2 - type: texture - offset: 0x930E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_3: - symbol: gKartPeach281Wheel3 - type: texture - offset: 0x93168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_0: - symbol: gKartPeach282Wheel0 - type: texture - offset: 0x931E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_1: - symbol: gKartPeach282Wheel1 - type: texture - offset: 0x93268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_2: - symbol: gKartPeach282Wheel2 - type: texture - offset: 0x932E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_3: - symbol: gKartPeach282Wheel3 - type: texture - offset: 0x93368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_0: - symbol: gKartPeach283Wheel0 - type: texture - offset: 0x933E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_1: - symbol: gKartPeach283Wheel1 - type: texture - offset: 0x93468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_2: - symbol: gKartPeach283Wheel2 - type: texture - offset: 0x934E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_3: - symbol: gKartPeach283Wheel3 - type: texture - offset: 0x93568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_0: - symbol: gKartPeach284Wheel0 - type: texture - offset: 0x935E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_1: - symbol: gKartPeach284Wheel1 - type: texture - offset: 0x93668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_2: - symbol: gKartPeach284Wheel2 - type: texture - offset: 0x936E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_3: - symbol: gKartPeach284Wheel3 - type: texture - offset: 0x93768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_0: - symbol: gKartPeach285Wheel0 - type: texture - offset: 0x937E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_1: - symbol: gKartPeach285Wheel1 - type: texture - offset: 0x93868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_2: - symbol: gKartPeach285Wheel2 - type: texture - offset: 0x938E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_3: - symbol: gKartPeach285Wheel3 - type: texture - offset: 0x93968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_0: - symbol: gKartPeach286Wheel0 - type: texture - offset: 0x939E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_1: - symbol: gKartPeach286Wheel1 - type: texture - offset: 0x93A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_2: - symbol: gKartPeach286Wheel2 - type: texture - offset: 0x93AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_3: - symbol: gKartPeach286Wheel3 - type: texture - offset: 0x93B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_0: - symbol: gKartPeach287Wheel0 - type: texture - offset: 0x93BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_1: - symbol: gKartPeach287Wheel1 - type: texture - offset: 0x93C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_2: - symbol: gKartPeach287Wheel2 - type: texture - offset: 0x93CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_3: - symbol: gKartPeach287Wheel3 - type: texture - offset: 0x93D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_0: - symbol: gKartPeach288Wheel0 - type: texture - offset: 0x93DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_1: - symbol: gKartPeach288Wheel1 - type: texture - offset: 0x93E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_2: - symbol: gKartPeach288Wheel2 - type: texture - offset: 0x93EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_3: - symbol: gKartPeach288Wheel3 - type: texture - offset: 0x93F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -peach_kart_palette: - symbol: gKartPeachPalette - type: texture - offset: 0x93FE8 - ctype: u16 - width: 16 - height: 12 - format: RGBA16 diff --git a/yamls/us/rainbow_road_displaylists.yml b/yamls/us/rainbow_road_displaylists.yml deleted file mode 100644 index 305255d5f..000000000 --- a/yamls/us/rainbow_road_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x9426BC - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_rainbow_road_packed_dls: - symbol: d_course_rainbow_road_packed_dls - type: blob - offset: 0x9426BC - size: 0x1202 diff --git a/yamls/us/rainbow_road_vertices.yml b/yamls/us/rainbow_road_vertices.yml deleted file mode 100644 index a13ca66aa..000000000 --- a/yamls/us/rainbow_road_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x93CC60] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_rainbow_road_vertex: - symbol: d_course_rainbow_road_vertex - type: mk64:course_vtx - count: 3111 - offset: 0x0 diff --git a/yamls/us/royal_raceway_data.yml b/yamls/us/royal_raceway_data.yml deleted file mode 100644 index 116bd8ea0..000000000 --- a/yamls/us/royal_raceway_data.yml +++ /dev/null @@ -1,743 +0,0 @@ -:config: - segments: - - [0x06, 0x84ABD0] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_royal_raceway_dl_0: - symbol: d_course_royal_raceway_dl_0 - type: gfx - offset: 0x0 - otr_mode: index -d_course_royal_raceway_dl_258: - symbol: d_course_royal_raceway_dl_258 - type: gfx - offset: 0x258 - otr_mode: index -d_course_royal_raceway_dl_360: - symbol: d_course_royal_raceway_dl_360 - type: gfx - offset: 0x360 - otr_mode: index -d_course_royal_raceway_dl_470: - symbol: d_course_royal_raceway_dl_470 - type: gfx - offset: 0x470 - otr_mode: index -d_course_royal_raceway_dl_6D0: - symbol: d_course_royal_raceway_dl_6D0 - type: gfx - offset: 0x6D0 - otr_mode: index -d_course_royal_raceway_dl_8E0: - symbol: d_course_royal_raceway_dl_8E0 - type: gfx - offset: 0x8E0 - otr_mode: index -d_course_royal_raceway_dl_A48: - symbol: d_course_royal_raceway_dl_A48 - type: gfx - offset: 0xA48 - otr_mode: index -d_course_royal_raceway_dl_B40: - symbol: d_course_royal_raceway_dl_B40 - type: gfx - offset: 0xB40 - otr_mode: index -d_course_royal_raceway_dl_DA0: - symbol: d_course_royal_raceway_dl_DA0 - type: gfx - offset: 0xDA0 - otr_mode: index -d_course_royal_raceway_dl_F40: - symbol: d_course_royal_raceway_dl_F40 - type: gfx - offset: 0xF40 - otr_mode: index -d_course_royal_raceway_dl_1180: - symbol: d_course_royal_raceway_dl_1180 - type: gfx - offset: 0x1180 - otr_mode: index -d_course_royal_raceway_dl_12C0: - symbol: d_course_royal_raceway_dl_12C0 - type: gfx - offset: 0x12C0 - otr_mode: index -d_course_royal_raceway_dl_1538: - symbol: d_course_royal_raceway_dl_1538 - type: gfx - offset: 0x1538 - otr_mode: index -d_course_royal_raceway_dl_1610: - symbol: d_course_royal_raceway_dl_1610 - type: gfx - offset: 0x1610 - otr_mode: index -d_course_royal_raceway_dl_1850: - symbol: d_course_royal_raceway_dl_1850 - type: gfx - offset: 0x1850 - otr_mode: index -d_course_royal_raceway_dl_19B0: - symbol: d_course_royal_raceway_dl_19B0 - type: gfx - offset: 0x19B0 - otr_mode: index -d_course_royal_raceway_dl_1BB8: - symbol: d_course_royal_raceway_dl_1BB8 - type: gfx - offset: 0x1BB8 - otr_mode: index -d_course_royal_raceway_dl_1C40: - symbol: d_course_royal_raceway_dl_1C40 - type: gfx - offset: 0x1C40 - otr_mode: index -d_course_royal_raceway_dl_1E88: - symbol: d_course_royal_raceway_dl_1E88 - type: gfx - offset: 0x1E88 - otr_mode: index -d_course_royal_raceway_dl_2018: - symbol: d_course_royal_raceway_dl_2018 - type: gfx - offset: 0x2018 - otr_mode: index -d_course_royal_raceway_dl_21A8: - symbol: d_course_royal_raceway_dl_21A8 - type: gfx - offset: 0x21A8 - otr_mode: index -d_course_royal_raceway_dl_2210: - symbol: d_course_royal_raceway_dl_2210 - type: gfx - offset: 0x2210 - otr_mode: index -d_course_royal_raceway_dl_2428: - symbol: d_course_royal_raceway_dl_2428 - type: gfx - offset: 0x2428 - otr_mode: index -d_course_royal_raceway_dl_25F0: - symbol: d_course_royal_raceway_dl_25F0 - type: gfx - offset: 0x25F0 - otr_mode: index -d_course_royal_raceway_dl_26F0: - symbol: d_course_royal_raceway_dl_26F0 - type: gfx - offset: 0x26F0 - otr_mode: index -d_course_royal_raceway_dl_27B8: - symbol: d_course_royal_raceway_dl_27B8 - type: gfx - offset: 0x27B8 - otr_mode: index -d_course_royal_raceway_dl_29A0: - symbol: d_course_royal_raceway_dl_29A0 - type: gfx - offset: 0x29A0 - otr_mode: index -d_course_royal_raceway_dl_2B78: - symbol: d_course_royal_raceway_dl_2B78 - type: gfx - offset: 0x2B78 - otr_mode: index -d_course_royal_raceway_dl_2C20: - symbol: d_course_royal_raceway_dl_2C20 - type: gfx - offset: 0x2C20 - otr_mode: index -d_course_royal_raceway_dl_2DD0: - symbol: d_course_royal_raceway_dl_2DD0 - type: gfx - offset: 0x2DD0 - otr_mode: index -d_course_royal_raceway_dl_2FE0: - symbol: d_course_royal_raceway_dl_2FE0 - type: gfx - offset: 0x2FE0 - otr_mode: index -d_course_royal_raceway_dl_31F8: - symbol: d_course_royal_raceway_dl_31F8 - type: gfx - offset: 0x31F8 - otr_mode: index -d_course_royal_raceway_dl_33B0: - symbol: d_course_royal_raceway_dl_33B0 - type: gfx - offset: 0x33B0 - otr_mode: index -d_course_royal_raceway_dl_3580: - symbol: d_course_royal_raceway_dl_3580 - type: gfx - offset: 0x3580 - otr_mode: index -d_course_royal_raceway_dl_3748: - symbol: d_course_royal_raceway_dl_3748 - type: gfx - offset: 0x3748 - otr_mode: index -d_course_royal_raceway_dl_3960: - symbol: d_course_royal_raceway_dl_3960 - type: gfx - offset: 0x3960 - otr_mode: index -d_course_royal_raceway_dl_3AD8: - symbol: d_course_royal_raceway_dl_3AD8 - type: gfx - offset: 0x3AD8 - otr_mode: index -d_course_royal_raceway_dl_3BA8: - symbol: d_course_royal_raceway_dl_3BA8 - type: gfx - offset: 0x3BA8 - otr_mode: index -d_course_royal_raceway_dl_3D38: - symbol: d_course_royal_raceway_dl_3D38 - type: gfx - offset: 0x3D38 - otr_mode: index -d_course_royal_raceway_dl_3ED8: - symbol: d_course_royal_raceway_dl_3ED8 - type: gfx - offset: 0x3ED8 - otr_mode: index -d_course_royal_raceway_dl_3FA0: - symbol: d_course_royal_raceway_dl_3FA0 - type: gfx - offset: 0x3FA0 - otr_mode: index -d_course_royal_raceway_dl_4048: - symbol: d_course_royal_raceway_dl_4048 - type: gfx - offset: 0x4048 - otr_mode: index -d_course_royal_raceway_dl_41D8: - symbol: d_course_royal_raceway_dl_41D8 - type: gfx - offset: 0x41D8 - otr_mode: index -d_course_royal_raceway_dl_4380: - symbol: d_course_royal_raceway_dl_4380 - type: gfx - offset: 0x4380 - otr_mode: index -d_course_royal_raceway_dl_4438: - symbol: d_course_royal_raceway_dl_4438 - type: gfx - offset: 0x4438 - otr_mode: index -d_course_royal_raceway_dl_44C0: - symbol: d_course_royal_raceway_dl_44C0 - type: gfx - offset: 0x44C0 - otr_mode: index -d_course_royal_raceway_dl_45A0: - symbol: d_course_royal_raceway_dl_45A0 - type: gfx - offset: 0x45A0 - otr_mode: index -d_course_royal_raceway_dl_46A0: - symbol: d_course_royal_raceway_dl_46A0 - type: gfx - offset: 0x46A0 - otr_mode: index -d_course_royal_raceway_dl_4750: - symbol: d_course_royal_raceway_dl_4750 - type: gfx - offset: 0x4750 - otr_mode: index -d_course_royal_raceway_dl_4800: - symbol: d_course_royal_raceway_dl_4800 - type: gfx - offset: 0x4800 - otr_mode: index -d_course_royal_raceway_dl_4930: - symbol: d_course_royal_raceway_dl_4930 - type: gfx - offset: 0x4930 - otr_mode: index -d_course_royal_raceway_dl_4A38: - symbol: d_course_royal_raceway_dl_4A38 - type: gfx - offset: 0x4A38 - otr_mode: index -d_course_royal_raceway_dl_4AE0: - symbol: d_course_royal_raceway_dl_4AE0 - type: gfx - offset: 0x4AE0 - otr_mode: index -d_course_royal_raceway_dl_4BA8: - symbol: d_course_royal_raceway_dl_4BA8 - type: gfx - offset: 0x4BA8 - otr_mode: index -d_course_royal_raceway_dl_4D00: - symbol: d_course_royal_raceway_dl_4D00 - type: gfx - offset: 0x4D00 - otr_mode: index -d_course_royal_raceway_dl_4DF8: - symbol: d_course_royal_raceway_dl_4DF8 - type: gfx - offset: 0x4DF8 - otr_mode: index -d_course_royal_raceway_dl_4EC0: - symbol: d_course_royal_raceway_dl_4EC0 - type: gfx - offset: 0x4EC0 - otr_mode: index -d_course_royal_raceway_dl_4F80: - symbol: d_course_royal_raceway_dl_4F80 - type: gfx - offset: 0x4F80 - otr_mode: index -d_course_royal_raceway_dl_50F0: - symbol: d_course_royal_raceway_dl_50F0 - type: gfx - offset: 0x50F0 - otr_mode: index -d_course_royal_raceway_dl_51D0: - symbol: d_course_royal_raceway_dl_51D0 - type: gfx - offset: 0x51D0 - otr_mode: index -d_course_royal_raceway_dl_52F0: - symbol: d_course_royal_raceway_dl_52F0 - type: gfx - offset: 0x52F0 - otr_mode: index -d_course_royal_raceway_dl_53B8: - symbol: d_course_royal_raceway_dl_53B8 - type: gfx - offset: 0x53B8 - otr_mode: index -d_course_royal_raceway_dl_54F8: - symbol: d_course_royal_raceway_dl_54F8 - type: gfx - offset: 0x54F8 - otr_mode: index -d_course_royal_raceway_dl_5598: - symbol: d_course_royal_raceway_dl_5598 - type: gfx - offset: 0x5598 - otr_mode: index -d_course_royal_raceway_dl_56C0: - symbol: d_course_royal_raceway_dl_56C0 - type: gfx - offset: 0x56C0 - otr_mode: index -d_course_royal_raceway_dl_5758: - symbol: d_course_royal_raceway_dl_5758 - type: gfx - offset: 0x5758 - otr_mode: index -d_course_royal_raceway_dl_5890: - symbol: d_course_royal_raceway_dl_5890 - type: gfx - offset: 0x5890 - otr_mode: index -d_course_royal_raceway_dl_5900: - symbol: d_course_royal_raceway_dl_5900 - type: gfx - offset: 0x5900 - otr_mode: index -d_course_royal_raceway_dl_5A40: - symbol: d_course_royal_raceway_dl_5A40 - type: gfx - offset: 0x5A40 - otr_mode: index -d_course_royal_raceway_dl_5B28: - symbol: d_course_royal_raceway_dl_5B28 - type: gfx - offset: 0x5B28 - otr_mode: index -d_course_royal_raceway_dl_5CA0: - symbol: d_course_royal_raceway_dl_5CA0 - type: gfx - offset: 0x5CA0 - otr_mode: index -d_course_royal_raceway_dl_5D08: - symbol: d_course_royal_raceway_dl_5D08 - type: gfx - offset: 0x5D08 - otr_mode: index -d_course_royal_raceway_dl_5EB8: - symbol: d_course_royal_raceway_dl_5EB8 - type: gfx - offset: 0x5EB8 - otr_mode: index -d_course_royal_raceway_dl_5FD8: - symbol: d_course_royal_raceway_dl_5FD8 - type: gfx - offset: 0x5FD8 - otr_mode: index -d_course_royal_raceway_dl_6118: - symbol: d_course_royal_raceway_dl_6118 - type: gfx - offset: 0x6118 - otr_mode: index -d_course_royal_raceway_dl_61B0: - symbol: d_course_royal_raceway_dl_61B0 - type: gfx - offset: 0x61B0 - otr_mode: index -d_course_royal_raceway_dl_6378: - symbol: d_course_royal_raceway_dl_6378 - type: gfx - offset: 0x6378 - otr_mode: index -d_course_royal_raceway_dl_6538: - symbol: d_course_royal_raceway_dl_6538 - type: gfx - offset: 0x6538 - otr_mode: index -d_course_royal_raceway_dl_6780: - symbol: d_course_royal_raceway_dl_6780 - type: gfx - offset: 0x6780 - otr_mode: index -d_course_royal_raceway_dl_68C8: - symbol: d_course_royal_raceway_dl_68C8 - type: gfx - offset: 0x68C8 - otr_mode: index -d_course_royal_raceway_dl_6BC0: - symbol: d_course_royal_raceway_dl_6BC0 - type: gfx - offset: 0x6BC0 - otr_mode: index -d_course_royal_raceway_dl_6E20: - symbol: d_course_royal_raceway_dl_6E20 - type: gfx - offset: 0x6E20 - otr_mode: index -d_course_royal_raceway_dl_70C0: - symbol: d_course_royal_raceway_dl_70C0 - type: gfx - offset: 0x70C0 - otr_mode: index -d_course_royal_raceway_dl_72B8: - symbol: d_course_royal_raceway_dl_72B8 - type: gfx - offset: 0x72B8 - otr_mode: index -d_course_royal_raceway_dl_75C0: - symbol: d_course_royal_raceway_dl_75C0 - type: gfx - offset: 0x75C0 - otr_mode: index -d_course_royal_raceway_dl_7778: - symbol: d_course_royal_raceway_dl_7778 - type: gfx - offset: 0x7778 - otr_mode: index -d_course_royal_raceway_dl_78E8: - symbol: d_course_royal_raceway_dl_78E8 - type: gfx - offset: 0x78E8 - otr_mode: index -d_course_royal_raceway_dl_7AD0: - symbol: d_course_royal_raceway_dl_7AD0 - type: gfx - offset: 0x7AD0 - otr_mode: index -d_course_royal_raceway_dl_7BD8: - symbol: d_course_royal_raceway_dl_7BD8 - type: gfx - offset: 0x7BD8 - otr_mode: index -d_course_royal_raceway_dl_7DB0: - symbol: d_course_royal_raceway_dl_7DB0 - type: gfx - offset: 0x7DB0 - otr_mode: index -d_course_royal_raceway_dl_7ED8: - symbol: d_course_royal_raceway_dl_7ED8 - type: gfx - offset: 0x7ED8 - otr_mode: index -d_course_royal_raceway_dl_8068: - symbol: d_course_royal_raceway_dl_8068 - type: gfx - offset: 0x8068 - otr_mode: index -d_course_royal_raceway_dl_81C0: - symbol: d_course_royal_raceway_dl_81C0 - type: gfx - offset: 0x81C0 - otr_mode: index -d_course_royal_raceway_dl_8398: - symbol: d_course_royal_raceway_dl_8398 - type: gfx - offset: 0x8398 - otr_mode: index -d_course_royal_raceway_dl_84A0: - symbol: d_course_royal_raceway_dl_84A0 - type: gfx - offset: 0x84A0 - otr_mode: index -d_course_royal_raceway_dl_8620: - symbol: d_course_royal_raceway_dl_8620 - type: gfx - offset: 0x8620 - otr_mode: index -d_course_royal_raceway_dl_8770: - symbol: d_course_royal_raceway_dl_8770 - type: gfx - offset: 0x8770 - otr_mode: index -d_course_royal_raceway_dl_8838: - symbol: d_course_royal_raceway_dl_8838 - type: gfx - offset: 0x8838 - otr_mode: index -d_course_royal_raceway_dl_88B0: - symbol: d_course_royal_raceway_dl_88B0 - type: gfx - offset: 0x88B0 - otr_mode: index -d_course_royal_raceway_dl_8930: - symbol: d_course_royal_raceway_dl_8930 - type: gfx - offset: 0x8930 - otr_mode: index -d_course_royal_raceway_dl_89F0: - symbol: d_course_royal_raceway_dl_89F0 - type: gfx - offset: 0x89F0 - otr_mode: index -d_course_royal_raceway_dl_8C58: - symbol: d_course_royal_raceway_dl_8C58 - type: gfx - offset: 0x8C58 - otr_mode: index -d_course_royal_raceway_dl_8CD8: - symbol: d_course_royal_raceway_dl_8CD8 - type: gfx - offset: 0x8CD8 - otr_mode: index -d_course_royal_raceway_dl_8EB8: - symbol: d_course_royal_raceway_dl_8EB8 - type: gfx - offset: 0x8EB8 - otr_mode: index -d_course_royal_raceway_dl_8FA8: - symbol: d_course_royal_raceway_dl_8FA8 - type: gfx - offset: 0x8FA8 - otr_mode: index -d_course_royal_raceway_dl_9218: - symbol: d_course_royal_raceway_dl_9218 - type: gfx - offset: 0x9218 - otr_mode: index -d_course_royal_raceway_dl_92D0: - symbol: d_course_royal_raceway_dl_92D0 - type: gfx - offset: 0x92D0 - otr_mode: index -d_course_royal_raceway_dl_94E8: - symbol: d_course_royal_raceway_dl_94E8 - type: gfx - offset: 0x94E8 - otr_mode: index -d_course_royal_raceway_dl_9678: - symbol: d_course_royal_raceway_dl_9678 - type: gfx - offset: 0x9678 - otr_mode: index -d_course_royal_raceway_dl_9900: - symbol: d_course_royal_raceway_dl_9900 - type: gfx - offset: 0x9900 - otr_mode: index -d_course_royal_raceway_dl_99A0: - symbol: d_course_royal_raceway_dl_99A0 - type: gfx - offset: 0x99A0 - otr_mode: index -d_course_royal_raceway_dl_9B30: - symbol: d_course_royal_raceway_dl_9B30 - type: gfx - offset: 0x9B30 - otr_mode: index -d_course_royal_raceway_dl_9D58: - symbol: d_course_royal_raceway_dl_9D58 - type: gfx - offset: 0x9D58 - otr_mode: index -d_course_royal_raceway_dl_9FE8: - symbol: d_course_royal_raceway_dl_9FE8 - type: gfx - offset: 0x9FE8 - otr_mode: index -d_course_royal_raceway_dl_A0A8: - symbol: d_course_royal_raceway_dl_A0A8 - type: gfx - offset: 0xA0A8 - otr_mode: index -d_course_royal_raceway_dl_A200: - symbol: d_course_royal_raceway_dl_A200 - type: gfx - offset: 0xA200 - otr_mode: index -d_course_royal_raceway_dl_A478: - symbol: d_course_royal_raceway_dl_A478 - type: gfx - offset: 0xA478 - otr_mode: index -d_course_royal_raceway_dl_A600: - symbol: d_course_royal_raceway_dl_A600 - type: gfx - offset: 0xA600 - otr_mode: index -d_course_royal_raceway_dl_A728: - symbol: d_course_royal_raceway_dl_A728 - type: gfx - offset: 0xA728 - otr_mode: index -d_course_royal_raceway_dl_A8A8: - symbol: d_course_royal_raceway_dl_A8A8 - type: gfx - offset: 0xA8A8 - otr_mode: index -d_course_royal_raceway_dl_A9D0: - symbol: d_course_royal_raceway_dl_A9D0 - type: gfx - offset: 0xA9D0 - otr_mode: index -d_course_royal_raceway_dl_AB28: - symbol: d_course_royal_raceway_dl_AB28 - type: gfx - offset: 0xAB28 - otr_mode: index -d_course_royal_raceway_dl_AC28: - symbol: d_course_royal_raceway_dl_AC28 - type: gfx - offset: 0xAC28 - otr_mode: index -d_course_royal_raceway_dl_AD90: - symbol: d_course_royal_raceway_dl_AD90 - type: gfx - offset: 0xAD90 - otr_mode: index -d_course_royal_raceway_dl_AE70: - symbol: d_course_royal_raceway_dl_AE70 - type: gfx - offset: 0xAE70 - otr_mode: index -d_course_royal_raceway_dl_AFB0: - symbol: d_course_royal_raceway_dl_AFB0 - type: gfx - offset: 0xAFB0 - otr_mode: index -d_course_royal_raceway_dl_B040: - symbol: d_course_royal_raceway_dl_B040 - type: gfx - offset: 0xB040 - otr_mode: index -d_course_royal_raceway_dl_B188: - symbol: d_course_royal_raceway_dl_B188 - type: gfx - offset: 0xB188 - otr_mode: index -d_course_royal_raceway_dl_B230: - symbol: d_course_royal_raceway_dl_B230 - type: gfx - offset: 0xB230 - otr_mode: index -d_course_royal_raceway_dl_B2E0: - symbol: d_course_royal_raceway_dl_B2E0 - type: gfx - offset: 0xB2E0 - otr_mode: index -d_course_royal_raceway_dl_B3E8: - symbol: d_course_royal_raceway_dl_B3E8 - type: gfx - offset: 0xB3E8 - otr_mode: index -d_course_royal_raceway_dl_B508: - symbol: d_course_royal_raceway_dl_B508 - type: gfx - offset: 0xB508 - otr_mode: index -d_course_royal_raceway_unknown_waypoints: - symbol: d_course_royal_raceway_unknown_waypoints - offset: 0xB5B8 - count: 78 - type: mk64:TRACK_PATH -d_course_royal_raceway_track_waypoints: - symbol: d_course_royal_raceway_track_waypoints - offset: 0xB828 - count: 903 - type: mk64:TRACK_PATH -d_course_royal_raceway_tree_model: - symbol: d_course_royal_raceway_tree_model - type: vtx - offset: 0xD460 - count: 4 -d_course_royal_raceway_dl_tree: - symbol: d_course_royal_raceway_dl_tree - type: gfx - offset: 0xD4A0 -d_royal_raceway_peaches_castle_tree_model: - symbol: d_royal_raceway_peaches_castle_tree_model - type: vtx - offset: 0xD538 - count: 4 -d_course_royal_raceway_dl_castle_tree: - symbol: d_course_royal_raceway_dl_castle_tree - type: gfx - offset: 0xD578 -d_course_royal_raceway_piranha_plant_tlut: - symbol: d_course_royal_raceway_piranha_plant_tlut - type: texture - offset: 0xD610 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_course_royal_raceway_piranha_plant_model: - symbol: d_course_royal_raceway_piranha_plant_model - type: vtx - offset: 0xD810 - count: 4 -d_course_royal_raceway_dl_piranha_plant: - symbol: d_course_royal_raceway_dl_piranha_plant - type: gfx - offset: 0xD850 - otr_mode: index -d_course_royal_raceway_dl_D8E8: - symbol: d_course_royal_raceway_dl_D8E8 - type: gfx - offset: 0xD8E8 - otr_mode: index -d_course_royal_raceway_piranha_plant_spawn: - symbol: d_course_royal_raceway_piranha_plant_spawn - type: mk64:spawn_data - count: 17 - offset: 0xD9F0 -d_course_royal_raceway_tree_spawn: - symbol: d_course_royal_raceway_tree_spawn - type: mk64:spawn_data - count: 33 - offset: 0xDA80 -d_course_royal_raceway_item_box_spawns: - symbol: d_course_royal_raceway_item_box_spawns - type: mk64:spawn_data - count: 21 - offset: 0xDB88 -d_course_royal_raceway_addr: - symbol: d_course_royal_raceway_addr - type: mk64:track_sections - offset: 0xDC28 - count: 119 diff --git a/yamls/us/royal_raceway_displaylists.yml b/yamls/us/royal_raceway_displaylists.yml deleted file mode 100644 index d04500dca..000000000 --- a/yamls/us/royal_raceway_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x8FAFF0 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_royal_raceway_packed_dls: - symbol: d_course_royal_raceway_packed_dls - type: blob - offset: 0x8FAFF0 - size: 0x3643 diff --git a/yamls/us/royal_raceway_vertices.yml b/yamls/us/royal_raceway_vertices.yml deleted file mode 100644 index 16005a74d..000000000 --- a/yamls/us/royal_raceway_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x8EC390] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_royal_raceway_vertex: - symbol: d_course_royal_raceway_vertex - type: mk64:course_vtx - count: 8306 - offset: 0x0 diff --git a/yamls/us/sherbet_land_data.yml b/yamls/us/sherbet_land_data.yml deleted file mode 100644 index 84186177f..000000000 --- a/yamls/us/sherbet_land_data.yml +++ /dev/null @@ -1,790 +0,0 @@ -:config: - segments: - - [0x06, 0x86ECF0] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_sherbet_land_dl_0: - symbol: d_course_sherbet_land_dl_0 - type: gfx - offset: 0x0 -d_course_sherbet_land_dl_C0: - symbol: d_course_sherbet_land_dl_C0 - type: gfx - offset: 0xC0 -d_course_sherbet_land_dl_158: - symbol: d_course_sherbet_land_dl_158 - type: gfx - offset: 0x158 -d_course_sherbet_land_dl_1A8: - symbol: d_course_sherbet_land_dl_1A8 - type: gfx - offset: 0x1A8 -d_course_sherbet_land_dl_280: - symbol: d_course_sherbet_land_dl_280 - type: gfx - offset: 0x280 -d_course_sherbet_land_dl_310: - symbol: d_course_sherbet_land_dl_310 - type: gfx - offset: 0x310 -d_course_sherbet_land_dl_3B8: - symbol: d_course_sherbet_land_dl_3B8 - type: gfx - offset: 0x3B8 -d_course_sherbet_land_dl_400: - symbol: d_course_sherbet_land_dl_400 - type: gfx - offset: 0x400 -d_course_sherbet_land_dl_4E8: - symbol: d_course_sherbet_land_dl_4E8 - type: gfx - offset: 0x4E8 -d_course_sherbet_land_dl_560: - symbol: d_course_sherbet_land_dl_560 - type: gfx - offset: 0x560 -d_course_sherbet_land_dl_638: - symbol: d_course_sherbet_land_dl_638 - type: gfx - offset: 0x638 -d_course_sherbet_land_dl_6A0: - symbol: d_course_sherbet_land_dl_6A0 - type: gfx - offset: 0x6A0 -d_course_sherbet_land_dl_768: - symbol: d_course_sherbet_land_dl_768 - type: gfx - offset: 0x768 -d_course_sherbet_land_dl_7A0: - symbol: d_course_sherbet_land_dl_7A0 - type: gfx - offset: 0x7A0 -d_course_sherbet_land_dl_880: - symbol: d_course_sherbet_land_dl_880 - type: gfx - offset: 0x880 -d_course_sherbet_land_dl_8E8: - symbol: d_course_sherbet_land_dl_8E8 - type: gfx - offset: 0x8E8 -d_course_sherbet_land_dl_9A0: - symbol: d_course_sherbet_land_dl_9A0 - type: gfx - offset: 0x9A0 -d_course_sherbet_land_dl_A28: - symbol: d_course_sherbet_land_dl_A28 - type: gfx - offset: 0xA28 -d_course_sherbet_land_dl_B08: - symbol: d_course_sherbet_land_dl_B08 - type: gfx - offset: 0xB08 -d_course_sherbet_land_dl_BC0: - symbol: d_course_sherbet_land_dl_BC0 - type: gfx - offset: 0xBC0 -d_course_sherbet_land_dl_C88: - symbol: d_course_sherbet_land_dl_C88 - type: gfx - offset: 0xC88 -d_course_sherbet_land_dl_D10: - symbol: d_course_sherbet_land_dl_D10 - type: gfx - offset: 0xD10 -d_course_sherbet_land_dl_DF0: - symbol: d_course_sherbet_land_dl_DF0 - type: gfx - offset: 0xDF0 -d_course_sherbet_land_dl_EC8: - symbol: d_course_sherbet_land_dl_EC8 - type: gfx - offset: 0xEC8 -d_course_sherbet_land_dl_F68: - symbol: d_course_sherbet_land_dl_F68 - type: gfx - offset: 0xF68 -d_course_sherbet_land_dl_1028: - symbol: d_course_sherbet_land_dl_1028 - type: gfx - offset: 0x1028 -d_course_sherbet_land_dl_10D8: - symbol: d_course_sherbet_land_dl_10D8 - type: gfx - offset: 0x10D8 -d_course_sherbet_land_dl_11C8: - symbol: d_course_sherbet_land_dl_11C8 - type: gfx - offset: 0x11C8 -d_course_sherbet_land_dl_1238: - symbol: d_course_sherbet_land_dl_1238 - type: gfx - offset: 0x1238 -d_course_sherbet_land_dl_12F0: - symbol: d_course_sherbet_land_dl_12F0 - type: gfx - offset: 0x12F0 -d_course_sherbet_land_dl_1368: - symbol: d_course_sherbet_land_dl_1368 - type: gfx - offset: 0x1368 -d_course_sherbet_land_dl_1440: - symbol: d_course_sherbet_land_dl_1440 - type: gfx - offset: 0x1440 -d_course_sherbet_land_dl_1480: - symbol: d_course_sherbet_land_dl_1480 - type: gfx - offset: 0x1480 -d_course_sherbet_land_dl_14C0: - symbol: d_course_sherbet_land_dl_14C0 - type: gfx - offset: 0x14C0 -d_course_sherbet_land_dl_1508: - symbol: d_course_sherbet_land_dl_1508 - type: gfx - offset: 0x1508 -d_course_sherbet_land_dl_1570: - symbol: d_course_sherbet_land_dl_1570 - type: gfx - offset: 0x1570 -d_course_sherbet_land_dl_1598: - symbol: d_course_sherbet_land_dl_1598 - type: gfx - offset: 0x1598 -d_course_sherbet_land_dl_15F0: - symbol: d_course_sherbet_land_dl_15F0 - type: gfx - offset: 0x15F0 -d_course_sherbet_land_dl_1638: - symbol: d_course_sherbet_land_dl_1638 - type: gfx - offset: 0x1638 -d_course_sherbet_land_dl_1698: - symbol: d_course_sherbet_land_dl_1698 - type: gfx - offset: 0x1698 -d_course_sherbet_land_dl_16C0: - symbol: d_course_sherbet_land_dl_16C0 - type: gfx - offset: 0x16C0 -d_course_sherbet_land_dl_1730: - symbol: d_course_sherbet_land_dl_1730 - type: gfx - offset: 0x1730 -d_course_sherbet_land_dl_1778: - symbol: d_course_sherbet_land_dl_1778 - type: gfx - offset: 0x1778 -d_course_sherbet_land_dl_17D8: - symbol: d_course_sherbet_land_dl_17D8 - type: gfx - offset: 0x17D8 -d_course_sherbet_land_dl_1828: - symbol: d_course_sherbet_land_dl_1828 - type: gfx - offset: 0x1828 -d_course_sherbet_land_dl_18A0: - symbol: d_course_sherbet_land_dl_18A0 - type: gfx - offset: 0x18A0 -d_course_sherbet_land_dl_18E8: - symbol: d_course_sherbet_land_dl_18E8 - type: gfx - offset: 0x18E8 -d_course_sherbet_land_dl_1920: - symbol: d_course_sherbet_land_dl_1920 - type: gfx - offset: 0x1920 -d_course_sherbet_land_dl_19A0: - symbol: d_course_sherbet_land_dl_19A0 - type: gfx - offset: 0x19A0 -d_course_sherbet_land_dl_19F0: - symbol: d_course_sherbet_land_dl_19F0 - type: gfx - offset: 0x19F0 -d_course_sherbet_land_dl_1A58: - symbol: d_course_sherbet_land_dl_1A58 - type: gfx - offset: 0x1A58 -d_course_sherbet_land_dl_1A90: - symbol: d_course_sherbet_land_dl_1A90 - type: gfx - offset: 0x1A90 -d_course_sherbet_land_dl_1AF8: - symbol: d_course_sherbet_land_dl_1AF8 - type: gfx - offset: 0x1AF8 -d_course_sherbet_land_dl_1B50: - symbol: d_course_sherbet_land_dl_1B50 - type: gfx - offset: 0x1B50 -d_course_sherbet_land_dl_1BA8: - symbol: d_course_sherbet_land_dl_1BA8 - type: gfx - offset: 0x1BA8 -d_course_sherbet_land_dl_1C20: - symbol: d_course_sherbet_land_dl_1C20 - type: gfx - offset: 0x1C20 -d_course_sherbet_land_dl_1C48: - symbol: d_course_sherbet_land_dl_1C48 - type: gfx - offset: 0x1C48 -d_course_sherbet_land_dl_1D08: - symbol: d_course_sherbet_land_dl_1D08 - type: gfx - offset: 0x1D08 -d_course_sherbet_land_dl_1D60: - symbol: d_course_sherbet_land_dl_1D60 - type: gfx - offset: 0x1D60 -d_course_sherbet_land_dl_1E10: - symbol: d_course_sherbet_land_dl_1E10 - type: gfx - offset: 0x1E10 -d_course_sherbet_land_dl_1E88: - symbol: d_course_sherbet_land_dl_1E88 - type: gfx - offset: 0x1E88 -d_course_sherbet_land_dl_1F70: - symbol: d_course_sherbet_land_dl_1F70 - type: gfx - offset: 0x1F70 -d_course_sherbet_land_dl_2010: - symbol: d_course_sherbet_land_dl_2010 - type: gfx - offset: 0x2010 -d_course_sherbet_land_dl_20D0: - symbol: d_course_sherbet_land_dl_20D0 - type: gfx - offset: 0x20D0 -d_course_sherbet_land_dl_2190: - symbol: d_course_sherbet_land_dl_2190 - type: gfx - offset: 0x2190 -d_course_sherbet_land_dl_2288: - symbol: d_course_sherbet_land_dl_2288 - type: gfx - offset: 0x2288 -d_course_sherbet_land_dl_22F8: - symbol: d_course_sherbet_land_dl_22F8 - type: gfx - offset: 0x22F8 -d_course_sherbet_land_dl_2370: - symbol: d_course_sherbet_land_dl_2370 - type: gfx - offset: 0x2370 -d_course_sherbet_land_dl_2438: - symbol: d_course_sherbet_land_dl_2438 - type: gfx - offset: 0x2438 -d_course_sherbet_land_dl_2530: - symbol: d_course_sherbet_land_dl_2530 - type: gfx - offset: 0x2530 -d_course_sherbet_land_dl_25A0: - symbol: d_course_sherbet_land_dl_25A0 - type: gfx - offset: 0x25A0 -d_course_sherbet_land_dl_25F8: - symbol: d_course_sherbet_land_dl_25F8 - type: gfx - offset: 0x25F8 -d_course_sherbet_land_dl_26D0: - symbol: d_course_sherbet_land_dl_26D0 - type: gfx - offset: 0x26D0 -d_course_sherbet_land_dl_27F0: - symbol: d_course_sherbet_land_dl_27F0 - type: gfx - offset: 0x27F0 -d_course_sherbet_land_dl_28A0: - symbol: d_course_sherbet_land_dl_28A0 - type: gfx - offset: 0x28A0 -d_course_sherbet_land_dl_2918: - symbol: d_course_sherbet_land_dl_2918 - type: gfx - offset: 0x2918 -d_course_sherbet_land_dl_2A38: - symbol: d_course_sherbet_land_dl_2A38 - type: gfx - offset: 0x2A38 -d_course_sherbet_land_dl_2B08: - symbol: d_course_sherbet_land_dl_2B08 - type: gfx - offset: 0x2B08 -d_course_sherbet_land_dl_2BE0: - symbol: d_course_sherbet_land_dl_2BE0 - type: gfx - offset: 0x2BE0 -d_course_sherbet_land_dl_2C58: - symbol: d_course_sherbet_land_dl_2C58 - type: gfx - offset: 0x2C58 -d_course_sherbet_land_dl_2D78: - symbol: d_course_sherbet_land_dl_2D78 - type: gfx - offset: 0x2D78 -d_course_sherbet_land_dl_2E28: - symbol: d_course_sherbet_land_dl_2E28 - type: gfx - offset: 0x2E28 -d_course_sherbet_land_dl_2F48: - symbol: d_course_sherbet_land_dl_2F48 - type: gfx - offset: 0x2F48 -d_course_sherbet_land_dl_2FE8: - symbol: d_course_sherbet_land_dl_2FE8 - type: gfx - offset: 0x2FE8 -d_course_sherbet_land_dl_30E0: - symbol: d_course_sherbet_land_dl_30E0 - type: gfx - offset: 0x30E0 -d_course_sherbet_land_dl_3150: - symbol: d_course_sherbet_land_dl_3150 - type: gfx - offset: 0x3150 -d_course_sherbet_land_dl_3260: - symbol: d_course_sherbet_land_dl_3260 - type: gfx - offset: 0x3260 -d_course_sherbet_land_dl_3320: - symbol: d_course_sherbet_land_dl_3320 - type: gfx - offset: 0x3320 -d_course_sherbet_land_dl_33E0: - symbol: d_course_sherbet_land_dl_33E0 - type: gfx - offset: 0x33E0 -d_course_sherbet_land_dl_3490: - symbol: d_course_sherbet_land_dl_3490 - type: gfx - offset: 0x3490 -d_course_sherbet_land_dl_35A8: - symbol: d_course_sherbet_land_dl_35A8 - type: gfx - offset: 0x35A8 -d_course_sherbet_land_dl_36A8: - symbol: d_course_sherbet_land_dl_36A8 - type: gfx - offset: 0x36A8 -d_course_sherbet_land_dl_3770: - symbol: d_course_sherbet_land_dl_3770 - type: gfx - offset: 0x3770 -d_course_sherbet_land_dl_3840: - symbol: d_course_sherbet_land_dl_3840 - type: gfx - offset: 0x3840 -d_course_sherbet_land_dl_3940: - symbol: d_course_sherbet_land_dl_3940 - type: gfx - offset: 0x3940 -d_course_sherbet_land_dl_3A50: - symbol: d_course_sherbet_land_dl_3A50 - type: gfx - offset: 0x3A50 -d_course_sherbet_land_dl_3AE0: - symbol: d_course_sherbet_land_dl_3AE0 - type: gfx - offset: 0x3AE0 -d_course_sherbet_land_dl_3BA8: - symbol: d_course_sherbet_land_dl_3BA8 - type: gfx - offset: 0x3BA8 -d_course_sherbet_land_dl_3C48: - symbol: d_course_sherbet_land_dl_3C48 - type: gfx - offset: 0x3C48 -d_course_sherbet_land_dl_3D40: - symbol: d_course_sherbet_land_dl_3D40 - type: gfx - offset: 0x3D40 -d_course_sherbet_land_dl_3D98: - symbol: d_course_sherbet_land_dl_3D98 - type: gfx - offset: 0x3D98 -d_course_sherbet_land_dl_3E58: - symbol: d_course_sherbet_land_dl_3E58 - type: gfx - offset: 0x3E58 -d_course_sherbet_land_dl_3EB8: - symbol: d_course_sherbet_land_dl_3EB8 - type: gfx - offset: 0x3EB8 -d_course_sherbet_land_dl_3FA0: - symbol: d_course_sherbet_land_dl_3FA0 - type: gfx - offset: 0x3FA0 -d_course_sherbet_land_dl_3FC0: - symbol: d_course_sherbet_land_dl_3FC0 - type: gfx - offset: 0x3FC0 -d_course_sherbet_land_dl_3FD8: - symbol: d_course_sherbet_land_dl_3FD8 - type: gfx - offset: 0x3FD8 -d_course_sherbet_land_dl_3FE8: - symbol: d_course_sherbet_land_dl_3FE8 - type: gfx - offset: 0x3FE8 -d_course_sherbet_land_dl_4000: - symbol: d_course_sherbet_land_dl_4000 - type: gfx - offset: 0x4000 -d_course_sherbet_land_dl_4010: - symbol: d_course_sherbet_land_dl_4010 - type: gfx - offset: 0x4010 -d_course_sherbet_land_dl_4018: - symbol: d_course_sherbet_land_dl_4018 - type: gfx - offset: 0x4018 -d_course_sherbet_land_dl_4020: - symbol: d_course_sherbet_land_dl_4020 - type: gfx - offset: 0x4020 -d_course_sherbet_land_dl_4028: - symbol: d_course_sherbet_land_dl_4028 - type: gfx - offset: 0x4028 -d_course_sherbet_land_dl_4030: - symbol: d_course_sherbet_land_dl_4030 - type: gfx - offset: 0x4030 -d_course_sherbet_land_dl_4038: - symbol: d_course_sherbet_land_dl_4038 - type: gfx - offset: 0x4038 -d_course_sherbet_land_dl_4040: - symbol: d_course_sherbet_land_dl_4040 - type: gfx - offset: 0x4040 -d_course_sherbet_land_dl_4048: - symbol: d_course_sherbet_land_dl_4048 - type: gfx - offset: 0x4048 -d_course_sherbet_land_dl_4050: - symbol: d_course_sherbet_land_dl_4050 - type: gfx - offset: 0x4050 -d_course_sherbet_land_dl_4058: - symbol: d_course_sherbet_land_dl_4058 - type: gfx - offset: 0x4058 -d_course_sherbet_land_dl_4060: - symbol: d_course_sherbet_land_dl_4060 - type: gfx - offset: 0x4060 -d_course_sherbet_land_dl_4068: - symbol: d_course_sherbet_land_dl_4068 - type: gfx - offset: 0x4068 -d_course_sherbet_land_dl_4070: - symbol: d_course_sherbet_land_dl_4070 - type: gfx - offset: 0x4070 -d_course_sherbet_land_dl_4078: - symbol: d_course_sherbet_land_dl_4078 - type: gfx - offset: 0x4078 -d_course_sherbet_land_dl_4080: - symbol: d_course_sherbet_land_dl_4080 - type: gfx - offset: 0x4080 -d_course_sherbet_land_dl_4088: - symbol: d_course_sherbet_land_dl_4088 - type: gfx - offset: 0x4088 -d_course_sherbet_land_dl_4090: - symbol: d_course_sherbet_land_dl_4090 - type: gfx - offset: 0x4090 -d_course_sherbet_land_dl_4098: - symbol: d_course_sherbet_land_dl_4098 - type: gfx - offset: 0x4098 -d_course_sherbet_land_dl_40A0: - symbol: d_course_sherbet_land_dl_40A0 - type: gfx - offset: 0x40A0 -d_course_sherbet_land_dl_40A8: - symbol: d_course_sherbet_land_dl_40A8 - type: gfx - offset: 0x40A8 -d_course_sherbet_land_dl_40B0: - symbol: d_course_sherbet_land_dl_40B0 - type: gfx - offset: 0x40B0 -d_course_sherbet_land_dl_4180: - symbol: d_course_sherbet_land_dl_4180 - type: gfx - offset: 0x4180 -d_course_sherbet_land_dl_41B8: - symbol: d_course_sherbet_land_dl_41B8 - type: gfx - offset: 0x41B8 -d_course_sherbet_land_dl_4280: - symbol: d_course_sherbet_land_dl_4280 - type: gfx - offset: 0x4280 -d_course_sherbet_land_dl_42E0: - symbol: d_course_sherbet_land_dl_42E0 - type: gfx - offset: 0x42E0 -d_course_sherbet_land_dl_43C8: - symbol: d_course_sherbet_land_dl_43C8 - type: gfx - offset: 0x43C8 -d_course_sherbet_land_dl_4470: - symbol: d_course_sherbet_land_dl_4470 - type: gfx - offset: 0x4470 -d_course_sherbet_land_dl_4570: - symbol: d_course_sherbet_land_dl_4570 - type: gfx - offset: 0x4570 -d_course_sherbet_land_dl_4618: - symbol: d_course_sherbet_land_dl_4618 - type: gfx - offset: 0x4618 -d_course_sherbet_land_dl_4710: - symbol: d_course_sherbet_land_dl_4710 - type: gfx - offset: 0x4710 -d_course_sherbet_land_dl_4798: - symbol: d_course_sherbet_land_dl_4798 - type: gfx - offset: 0x4798 -d_course_sherbet_land_dl_4868: - symbol: d_course_sherbet_land_dl_4868 - type: gfx - offset: 0x4868 -d_course_sherbet_land_dl_4930: - symbol: d_course_sherbet_land_dl_4930 - type: gfx - offset: 0x4930 -d_course_sherbet_land_dl_4A20: - symbol: d_course_sherbet_land_dl_4A20 - type: gfx - offset: 0x4A20 -d_course_sherbet_land_dl_4A98: - symbol: d_course_sherbet_land_dl_4A98 - type: gfx - offset: 0x4A98 -d_course_sherbet_land_dl_4B20: - symbol: d_course_sherbet_land_dl_4B20 - type: gfx - offset: 0x4B20 -d_course_sherbet_land_unknown_waypoints: - symbol: d_course_sherbet_land_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x4BF8 - count: 62 -d_course_sherbet_land_track_waypoints: - symbol: d_course_sherbet_land_track_waypoints - type: mk64:TRACK_PATH - offset: 0x4DE8 - count: 666 -d_course_sherbet_land_model1: - symbol: d_course_sherbet_land_model1 - type: vtx - offset: 0x62B8 - count: 30 -d_course_sherbet_land_model2: - symbol: d_course_sherbet_land_model2 - type: vtx - offset: 0x6498 - count: 30 -d_course_sherbet_land_model3: - symbol: d_course_sherbet_land_model3 - type: vtx - offset: 0x6678 - count: 30 -d_course_sherbet_land_model4: - symbol: d_course_sherbet_land_model4 - type: vtx - offset: 0x6858 - count: 9 -d_course_sherbet_land_ice: - symbol: d_course_sherbet_land_ice - type: texture - offset: 0x68E8 - width: 32 - height: 32 - format: ia16 - ctype: u8 -d_course_sherbet_land_dl_70E8: - symbol: d_course_sherbet_land_dl_70E8 - type: gfx - offset: 0x70E8 -d_course_sherbet_land_dl_7208: - symbol: d_course_sherbet_land_dl_7208 - type: gfx - offset: 0x7208 -d_course_sherbet_land_dl_ice_block: - symbol: d_course_sherbet_land_dl_ice_block - type: gfx - offset: 0x7218 -d_course_sherbet_land_dl_7228: - symbol: d_course_sherbet_land_dl_7228 - type: gfx - offset: 0x7228 -d_course_sherbet_land_light1: - symbol: d_course_sherbet_land_light1 - type: lights - offset: 0x7240 -d_course_sherbet_land_light2: - symbol: d_course_sherbet_land_light2 - type: lights - offset: 0x7258 -d_course_sherbet_land_light3: - symbol: d_course_sherbet_land_light3 - type: lights - offset: 0x7270 -d_course_sherbet_land_light4: - symbol: d_course_sherbet_land_light4 - type: lights - offset: 0x7288 -d_course_sherbet_land_light5: - symbol: d_course_sherbet_land_light5 - type: lights - offset: 0x72A0 -d_course_sherbet_land_light6: - symbol: d_course_sherbet_land_light6 - type: lights - offset: 0x72B8 -d_course_sherbet_land_light7: - symbol: d_course_sherbet_land_light7 - type: lights - offset: 0x72D0 -d_course_sherbet_land_penguin_beak: - symbol: d_course_sherbet_land_penguin_beak - type: texture - offset: 0x72E8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_sherbet_land_penguin_eye: - symbol: d_course_sherbet_land_penguin_eye - type: texture - offset: 0x7AE8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_sherbet_land_penguin_eyes_model: - symbol: d_course_sherbet_land_penguin_eyes_model - type: vtx - offset: 0x82E8 - count: 8 -d_course_sherbet_land_dl_8368: - symbol: d_course_sherbet_land_dl_8368 - type: gfx - offset: 0x8368 -d_course_sherbet_land_penguin_nose_model: - symbol: d_course_sherbet_land_penguin_nose_model - type: vtx - offset: 0x8398 - count: 4 -d_course_sherbet_land_dl_83D8: - symbol: d_course_sherbet_land_dl_83D8 - type: gfx - offset: 0x83D8 -d_course_sherbet_land_penguin_head_model1: - symbol: d_course_sherbet_land_penguin_head_model1 - type: vtx - offset: 0x8400 - count: 24 -d_course_sherbet_land_penguin_head_model2: - symbol: d_course_sherbet_land_penguin_head_model2 - type: vtx - offset: 0x8580 - count: 3 -d_course_sherbet_land_dl_85B0: - symbol: d_course_sherbet_land_dl_85B0 - type: gfx - offset: 0x85B0 -d_course_sherbet_land_penguin_arms_model: - symbol: d_course_sherbet_land_penguin_arms_model - type: vtx - offset: 0x8690 - count: 10 -d_course_sherbet_land_dl_8730: - symbol: d_course_sherbet_land_dl_8730 - type: gfx - offset: 0x8730 -d_course_sherbet_land_penguin_unknown_model: - symbol: d_course_sherbet_land_penguin_unknown_model - type: vtx - offset: 0x8768 - count: 10 -d_course_sherbet_land_dl_8808: - symbol: d_course_sherbet_land_dl_8808 - type: gfx - offset: 0x8808 -d_course_sherbet_land_dl_8810: - symbol: d_course_sherbet_land_dl_8810 - type: gfx - offset: 0x8810 -d_course_sherbet_land_penguin_right_foot_model: - symbol: d_course_sherbet_land_penguin_right_foot_model - type: vtx - offset: 0x8840 - count: 15 -d_course_sherbet_land_dl_8930: - symbol: d_course_sherbet_land_dl_8930 - type: gfx - offset: 0x8930 -d_course_sherbet_land_penguin_left_foot_model: - symbol: d_course_sherbet_land_penguin_left_foot_model - type: vtx - offset: 0x8988 - count: 15 -d_course_sherbet_land_dl_8A78: - symbol: d_course_sherbet_land_dl_8A78 - type: gfx - offset: 0x8A78 -d_course_sherbet_land_penguin_body_model1: - symbol: d_course_sherbet_land_penguin_body_model1 - type: vtx - offset: 0x8AD0 - count: 20 -d_course_sherbet_land_penguin_body_model2: - symbol: d_course_sherbet_land_penguin_body_model2 - type: vtx - offset: 0x8C10 - count: 15 -d_course_sherbet_land_dl_8D00: - symbol: d_course_sherbet_land_dl_8D00 - type: gfx - offset: 0x8D00 -d_course_sherbet_land_dl_8E00: - symbol: d_course_sherbet_land_dl_8E00 - type: gfx - offset: 0x8E00 -d_course_sherbet_land_dl_9AE8: - symbol: d_course_sherbet_land_dl_9AE8 - type: gfx - offset: 0x9AE8 -d_course_sherbet_land_item_box_spawns: - symbol: d_course_sherbet_land_item_box_spawns - type: mk64:spawn_data - offset: 0x9B80 - count: 20 -d_course_sherbet_land_addr: - symbol: d_course_sherbet_land_addr - type: mk64:track_sections - offset: 0x9C20 - count: 24 diff --git a/yamls/us/sherbet_land_displaylists.yml b/yamls/us/sherbet_land_displaylists.yml deleted file mode 100644 index 9a095d996..000000000 --- a/yamls/us/sherbet_land_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x93B9C8 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_sherbet_land_packed_dls: - symbol: d_course_sherbet_land_packed_dls - type: blob - offset: 0x93B9C8 - size: 0x1289 diff --git a/yamls/us/sherbet_land_vertices.yml b/yamls/us/sherbet_land_vertices.yml deleted file mode 100644 index 26437db2d..000000000 --- a/yamls/us/sherbet_land_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x936FD0] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_sherbet_land_vertex: - symbol: d_course_sherbet_land_vertex - type: mk64:course_vtx - count: 3111 - offset: 0x0 diff --git a/yamls/us/skyscraper_displaylists.yml b/yamls/us/skyscraper_displaylists.yml deleted file mode 100644 index c4f3a04c5..000000000 --- a/yamls/us/skyscraper_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x954F08 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_skyscraper_packed_dls: - symbol: d_course_skyscraper_packed_dls - type: blob - offset: 0x954F08 - size: 0x711 diff --git a/yamls/us/skyscraper_vertices.yml b/yamls/us/skyscraper_vertices.yml deleted file mode 100644 index 3682335e5..000000000 --- a/yamls/us/skyscraper_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x953890] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_skyscraper_vertex: - symbol: d_course_skyscraper_vertex - type: mk64:course_vtx - count: 1086 - offset: 0x0 diff --git a/yamls/us/boo_frames.yml b/yamls/us/textures/boo_frames.yml similarity index 98% rename from yamls/us/boo_frames.yml rename to yamls/us/textures/boo_frames.yml index 522659d86..83618a448 100644 --- a/yamls/us/boo_frames.yml +++ b/yamls/us/textures/boo_frames.yml @@ -3,7 +3,7 @@ - [0x0F, 0x712DC0] header: code: - - '#include ' + - '#include ' - '#include ' - '#include ' header: diff --git a/yamls/us/textures/ceremony_data.yml b/yamls/us/textures/ceremony_data.yml new file mode 100644 index 000000000..6dde7dce1 --- /dev/null +++ b/yamls/us/textures/ceremony_data.yml @@ -0,0 +1,65 @@ +:config: + segments: + - [0x0B, 0x821D10] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + - '#include ' +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 +ceremony_reflection_map_gold: + symbol: ceremony_reflection_map_gold + type: texture + ctype: u16 + offset: 0x5670 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +texture_podium1: + symbol: gTexturePodium1 + type: texture + ctype: u16 + offset: 0x6BD0 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +texture_podium2: + symbol: gTexturePodium2 + type: texture + ctype: u16 + offset: 0x7760 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +texture_podium3: + symbol: gTexturePodium3 + type: texture + ctype: u16 + offset: 0x8070 + size: 2048 + width: 32 + height: 32 + format: RGBA16 \ No newline at end of file diff --git a/yamls/us/common_data.yml b/yamls/us/textures/common_data.yml similarity index 69% rename from yamls/us/common_data.yml rename to yamls/us/textures/common_data.yml index 60ad277cd..9b0a574ed 100644 --- a/yamls/us/common_data.yml +++ b/yamls/us/textures/common_data.yml @@ -59,136 +59,6 @@ common_texture_particle_fire: width: 32 height: 64 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 @@ -198,78 +68,6 @@ common_texture_item_box_question_mark: 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 @@ -288,14 +86,6 @@ common_texture_flat_banana: 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 @@ -323,234 +113,6 @@ common_tlut_blue_shell: 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 @@ -581,409 +143,11 @@ common_texture_debug_font: type: texture offset: 0x6EF8 size: 0x800 - colors: 32 ctype: u16 + width: 128 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 -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_0D009188: - 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 + format: ci4 + tlut_symbol: common_tlut_debug_font common_texture_speedometer: symbol: common_texture_speedometer type: texture diff --git a/yamls/us/data_800E45C0.yml b/yamls/us/textures/data_800E45C0.yml similarity index 100% rename from yamls/us/data_800E45C0.yml rename to yamls/us/textures/data_800E45C0.yml diff --git a/yamls/us/textures/karts/bowser_kart.yml b/yamls/us/textures/karts/bowser_kart.yml new file mode 100644 index 000000000..609f5fd00 --- /dev/null +++ b/yamls/us/textures/karts/bowser_kart.yml @@ -0,0 +1,22340 @@ +:config: + segments: + - [0x0F, 0x57DE70] + no_compression: true + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + tables: + bowser_kart_wheels: + range: [0x9C088, 0xC0208] + mode: APPEND +bowser_kart_frame000_wheel0: + symbol: gKartBowser000Wheel0 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame000_wheel1: + symbol: gKartBowser000Wheel1 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_1 +bowser_kart_frame000_wheel2: + symbol: gKartBowser000Wheel2 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_2 +bowser_kart_frame000_wheel3: + symbol: gKartBowser000Wheel3 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_3 +bowser_kart_frame001_wheel0: + symbol: gKartBowser001Wheel0 + type: texture + offset: 0x658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_001_tlut_wheel_0 +bowser_kart_frame001_wheel1: + symbol: gKartBowser001Wheel1 + type: texture + offset: 0x658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_001_tlut_wheel_1 +bowser_kart_frame001_wheel2: + symbol: gKartBowser001Wheel2 + type: texture + offset: 0x658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_001_tlut_wheel_2 +bowser_kart_frame001_wheel3: + symbol: gKartBowser001Wheel3 + type: texture + offset: 0x658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_001_tlut_wheel_3 +bowser_kart_frame002_wheel0: + symbol: gKartBowser002Wheel0 + type: texture + offset: 0xCDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_002_tlut_wheel_0 +bowser_kart_frame002_wheel1: + symbol: gKartBowser002Wheel1 + type: texture + offset: 0xCDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_002_tlut_wheel_1 +bowser_kart_frame002_wheel2: + symbol: gKartBowser002Wheel2 + type: texture + offset: 0xCDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_002_tlut_wheel_2 +bowser_kart_frame002_wheel3: + symbol: gKartBowser002Wheel3 + type: texture + offset: 0xCDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_002_tlut_wheel_3 +bowser_kart_frame003_wheel0: + symbol: gKartBowser003Wheel0 + type: texture + offset: 0x135C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_003_tlut_wheel_0 +bowser_kart_frame003_wheel1: + symbol: gKartBowser003Wheel1 + type: texture + offset: 0x135C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_003_tlut_wheel_1 +bowser_kart_frame003_wheel2: + symbol: gKartBowser003Wheel2 + type: texture + offset: 0x135C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_003_tlut_wheel_2 +bowser_kart_frame003_wheel3: + symbol: gKartBowser003Wheel3 + type: texture + offset: 0x135C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_003_tlut_wheel_3 +bowser_kart_frame004_wheel0: + symbol: gKartBowser004Wheel0 + type: texture + offset: 0x19C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_004_tlut_wheel_0 +bowser_kart_frame004_wheel1: + symbol: gKartBowser004Wheel1 + type: texture + offset: 0x19C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_004_tlut_wheel_1 +bowser_kart_frame004_wheel2: + symbol: gKartBowser004Wheel2 + type: texture + offset: 0x19C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_004_tlut_wheel_2 +bowser_kart_frame004_wheel3: + symbol: gKartBowser004Wheel3 + type: texture + offset: 0x19C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_004_tlut_wheel_3 +bowser_kart_frame005_wheel0: + symbol: gKartBowser005Wheel0 + type: texture + offset: 0x2060 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_005_tlut_wheel_0 +bowser_kart_frame005_wheel1: + symbol: gKartBowser005Wheel1 + type: texture + offset: 0x2060 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_005_tlut_wheel_1 +bowser_kart_frame005_wheel2: + symbol: gKartBowser005Wheel2 + type: texture + offset: 0x2060 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_005_tlut_wheel_2 +bowser_kart_frame005_wheel3: + symbol: gKartBowser005Wheel3 + type: texture + offset: 0x2060 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_005_tlut_wheel_3 +bowser_kart_frame006_wheel0: + symbol: gKartBowser006Wheel0 + type: texture + offset: 0x2710 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_006_tlut_wheel_0 +bowser_kart_frame006_wheel1: + symbol: gKartBowser006Wheel1 + type: texture + offset: 0x2710 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_006_tlut_wheel_1 +bowser_kart_frame006_wheel2: + symbol: gKartBowser006Wheel2 + type: texture + offset: 0x2710 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_006_tlut_wheel_2 +bowser_kart_frame006_wheel3: + symbol: gKartBowser006Wheel3 + type: texture + offset: 0x2710 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_006_tlut_wheel_3 +bowser_kart_frame007_wheel0: + symbol: gKartBowser007Wheel0 + type: texture + offset: 0x2DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_007_tlut_wheel_0 +bowser_kart_frame007_wheel1: + symbol: gKartBowser007Wheel1 + type: texture + offset: 0x2DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_007_tlut_wheel_1 +bowser_kart_frame007_wheel2: + symbol: gKartBowser007Wheel2 + type: texture + offset: 0x2DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_007_tlut_wheel_2 +bowser_kart_frame007_wheel3: + symbol: gKartBowser007Wheel3 + type: texture + offset: 0x2DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_007_tlut_wheel_3 +bowser_kart_frame008_wheel0: + symbol: gKartBowser008Wheel0 + type: texture + offset: 0x3510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_008_tlut_wheel_0 +bowser_kart_frame008_wheel1: + symbol: gKartBowser008Wheel1 + type: texture + offset: 0x3510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_008_tlut_wheel_1 +bowser_kart_frame008_wheel2: + symbol: gKartBowser008Wheel2 + type: texture + offset: 0x3510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_008_tlut_wheel_2 +bowser_kart_frame008_wheel3: + symbol: gKartBowser008Wheel3 + type: texture + offset: 0x3510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_008_tlut_wheel_3 +bowser_kart_frame009_wheel0: + symbol: gKartBowser009Wheel0 + type: texture + offset: 0x3C3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_009_tlut_wheel_0 +bowser_kart_frame009_wheel1: + symbol: gKartBowser009Wheel1 + type: texture + offset: 0x3C3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_009_tlut_wheel_1 +bowser_kart_frame009_wheel2: + symbol: gKartBowser009Wheel2 + type: texture + offset: 0x3C3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_009_tlut_wheel_2 +bowser_kart_frame009_wheel3: + symbol: gKartBowser009Wheel3 + type: texture + offset: 0x3C3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_009_tlut_wheel_3 +bowser_kart_frame010_wheel0: + symbol: gKartBowser010Wheel0 + type: texture + offset: 0x4388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_010_tlut_wheel_0 +bowser_kart_frame010_wheel1: + symbol: gKartBowser010Wheel1 + type: texture + offset: 0x4388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_010_tlut_wheel_1 +bowser_kart_frame010_wheel2: + symbol: gKartBowser010Wheel2 + type: texture + offset: 0x4388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_010_tlut_wheel_2 +bowser_kart_frame010_wheel3: + symbol: gKartBowser010Wheel3 + type: texture + offset: 0x4388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_010_tlut_wheel_3 +bowser_kart_frame011_wheel0: + symbol: gKartBowser011Wheel0 + type: texture + offset: 0x4AF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_011_tlut_wheel_0 +bowser_kart_frame011_wheel1: + symbol: gKartBowser011Wheel1 + type: texture + offset: 0x4AF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_011_tlut_wheel_1 +bowser_kart_frame011_wheel2: + symbol: gKartBowser011Wheel2 + type: texture + offset: 0x4AF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_011_tlut_wheel_2 +bowser_kart_frame011_wheel3: + symbol: gKartBowser011Wheel3 + type: texture + offset: 0x4AF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_011_tlut_wheel_3 +bowser_kart_frame012_wheel0: + symbol: gKartBowser012Wheel0 + type: texture + offset: 0x526C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_012_tlut_wheel_0 +bowser_kart_frame012_wheel1: + symbol: gKartBowser012Wheel1 + type: texture + offset: 0x526C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_012_tlut_wheel_1 +bowser_kart_frame012_wheel2: + symbol: gKartBowser012Wheel2 + type: texture + offset: 0x526C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_012_tlut_wheel_2 +bowser_kart_frame012_wheel3: + symbol: gKartBowser012Wheel3 + type: texture + offset: 0x526C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_012_tlut_wheel_3 +bowser_kart_frame013_wheel0: + symbol: gKartBowser013Wheel0 + type: texture + offset: 0x59E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_013_tlut_wheel_0 +bowser_kart_frame013_wheel1: + symbol: gKartBowser013Wheel1 + type: texture + offset: 0x59E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_013_tlut_wheel_1 +bowser_kart_frame013_wheel2: + symbol: gKartBowser013Wheel2 + type: texture + offset: 0x59E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_013_tlut_wheel_2 +bowser_kart_frame013_wheel3: + symbol: gKartBowser013Wheel3 + type: texture + offset: 0x59E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_013_tlut_wheel_3 +bowser_kart_frame014_wheel0: + symbol: gKartBowser014Wheel0 + type: texture + offset: 0x6188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_014_tlut_wheel_0 +bowser_kart_frame014_wheel1: + symbol: gKartBowser014Wheel1 + type: texture + offset: 0x6188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_014_tlut_wheel_1 +bowser_kart_frame014_wheel2: + symbol: gKartBowser014Wheel2 + type: texture + offset: 0x6188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_014_tlut_wheel_2 +bowser_kart_frame014_wheel3: + symbol: gKartBowser014Wheel3 + type: texture + offset: 0x6188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_014_tlut_wheel_3 +bowser_kart_frame015_wheel0: + symbol: gKartBowser015Wheel0 + type: texture + offset: 0x693C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_015_tlut_wheel_0 +bowser_kart_frame015_wheel1: + symbol: gKartBowser015Wheel1 + type: texture + offset: 0x693C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_015_tlut_wheel_1 +bowser_kart_frame015_wheel2: + symbol: gKartBowser015Wheel2 + type: texture + offset: 0x693C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_015_tlut_wheel_2 +bowser_kart_frame015_wheel3: + symbol: gKartBowser015Wheel3 + type: texture + offset: 0x693C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_015_tlut_wheel_3 +bowser_kart_frame016_wheel0: + symbol: gKartBowser016Wheel0 + type: texture + offset: 0x70F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_016_tlut_wheel_0 +bowser_kart_frame016_wheel1: + symbol: gKartBowser016Wheel1 + type: texture + offset: 0x70F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_016_tlut_wheel_1 +bowser_kart_frame016_wheel2: + symbol: gKartBowser016Wheel2 + type: texture + offset: 0x70F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_016_tlut_wheel_2 +bowser_kart_frame016_wheel3: + symbol: gKartBowser016Wheel3 + type: texture + offset: 0x70F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_016_tlut_wheel_3 +bowser_kart_frame017_wheel0: + symbol: gKartBowser017Wheel0 + type: texture + offset: 0x78C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_017_tlut_wheel_0 +bowser_kart_frame017_wheel1: + symbol: gKartBowser017Wheel1 + type: texture + offset: 0x78C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_017_tlut_wheel_1 +bowser_kart_frame017_wheel2: + symbol: gKartBowser017Wheel2 + type: texture + offset: 0x78C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_017_tlut_wheel_2 +bowser_kart_frame017_wheel3: + symbol: gKartBowser017Wheel3 + type: texture + offset: 0x78C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_017_tlut_wheel_3 +bowser_kart_frame018_wheel0: + symbol: gKartBowser018Wheel0 + type: texture + offset: 0x8084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_018_tlut_wheel_0 +bowser_kart_frame018_wheel1: + symbol: gKartBowser018Wheel1 + type: texture + offset: 0x8084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_018_tlut_wheel_1 +bowser_kart_frame018_wheel2: + symbol: gKartBowser018Wheel2 + type: texture + offset: 0x8084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_018_tlut_wheel_2 +bowser_kart_frame018_wheel3: + symbol: gKartBowser018Wheel3 + type: texture + offset: 0x8084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_018_tlut_wheel_3 +bowser_kart_frame019_wheel0: + symbol: gKartBowser019Wheel0 + type: texture + offset: 0x8838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_019_tlut_wheel_0 +bowser_kart_frame019_wheel1: + symbol: gKartBowser019Wheel1 + type: texture + offset: 0x8838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_019_tlut_wheel_1 +bowser_kart_frame019_wheel2: + symbol: gKartBowser019Wheel2 + type: texture + offset: 0x8838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_019_tlut_wheel_2 +bowser_kart_frame019_wheel3: + symbol: gKartBowser019Wheel3 + type: texture + offset: 0x8838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_019_tlut_wheel_3 +bowser_kart_frame020_wheel0: + symbol: gKartBowser020Wheel0 + type: texture + offset: 0x9014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_020_tlut_wheel_0 +bowser_kart_frame020_wheel1: + symbol: gKartBowser020Wheel1 + type: texture + offset: 0x9014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_020_tlut_wheel_1 +bowser_kart_frame020_wheel2: + symbol: gKartBowser020Wheel2 + type: texture + offset: 0x9014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_020_tlut_wheel_2 +bowser_kart_frame020_wheel3: + symbol: gKartBowser020Wheel3 + type: texture + offset: 0x9014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_020_tlut_wheel_3 +bowser_kart_frame021_wheel0: + symbol: gKartBowser021Wheel0 + type: texture + offset: 0x97E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_021_tlut_wheel_0 +bowser_kart_frame021_wheel1: + symbol: gKartBowser021Wheel1 + type: texture + offset: 0x97E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_021_tlut_wheel_1 +bowser_kart_frame021_wheel2: + symbol: gKartBowser021Wheel2 + type: texture + offset: 0x97E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_021_tlut_wheel_2 +bowser_kart_frame021_wheel3: + symbol: gKartBowser021Wheel3 + type: texture + offset: 0x97E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_021_tlut_wheel_3 +bowser_kart_frame022_wheel0: + symbol: gKartBowser022Wheel0 + type: texture + offset: 0x9E5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_022_tlut_wheel_0 +bowser_kart_frame022_wheel1: + symbol: gKartBowser022Wheel1 + type: texture + offset: 0x9E5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_022_tlut_wheel_1 +bowser_kart_frame022_wheel2: + symbol: gKartBowser022Wheel2 + type: texture + offset: 0x9E5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_022_tlut_wheel_2 +bowser_kart_frame022_wheel3: + symbol: gKartBowser022Wheel3 + type: texture + offset: 0x9E5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_022_tlut_wheel_3 +bowser_kart_frame023_wheel0: + symbol: gKartBowser023Wheel0 + type: texture + offset: 0xA4FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_023_tlut_wheel_0 +bowser_kart_frame023_wheel1: + symbol: gKartBowser023Wheel1 + type: texture + offset: 0xA4FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_023_tlut_wheel_1 +bowser_kart_frame023_wheel2: + symbol: gKartBowser023Wheel2 + type: texture + offset: 0xA4FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_023_tlut_wheel_2 +bowser_kart_frame023_wheel3: + symbol: gKartBowser023Wheel3 + type: texture + offset: 0xA4FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_023_tlut_wheel_3 +bowser_kart_frame024_wheel0: + symbol: gKartBowser024Wheel0 + type: texture + offset: 0xAB84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_024_tlut_wheel_0 +bowser_kart_frame024_wheel1: + symbol: gKartBowser024Wheel1 + type: texture + offset: 0xAB84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_024_tlut_wheel_1 +bowser_kart_frame024_wheel2: + symbol: gKartBowser024Wheel2 + type: texture + offset: 0xAB84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_024_tlut_wheel_2 +bowser_kart_frame024_wheel3: + symbol: gKartBowser024Wheel3 + type: texture + offset: 0xAB84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_024_tlut_wheel_3 +bowser_kart_frame025_wheel0: + symbol: gKartBowser025Wheel0 + type: texture + offset: 0xB208 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_025_tlut_wheel_0 +bowser_kart_frame025_wheel1: + symbol: gKartBowser025Wheel1 + type: texture + offset: 0xB208 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_025_tlut_wheel_1 +bowser_kart_frame025_wheel2: + symbol: gKartBowser025Wheel2 + type: texture + offset: 0xB208 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_025_tlut_wheel_2 +bowser_kart_frame025_wheel3: + symbol: gKartBowser025Wheel3 + type: texture + offset: 0xB208 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_025_tlut_wheel_3 +bowser_kart_frame026_wheel0: + symbol: gKartBowser026Wheel0 + type: texture + offset: 0xB898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_026_tlut_wheel_0 +bowser_kart_frame026_wheel1: + symbol: gKartBowser026Wheel1 + type: texture + offset: 0xB898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_026_tlut_wheel_1 +bowser_kart_frame026_wheel2: + symbol: gKartBowser026Wheel2 + type: texture + offset: 0xB898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_026_tlut_wheel_2 +bowser_kart_frame026_wheel3: + symbol: gKartBowser026Wheel3 + type: texture + offset: 0xB898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_026_tlut_wheel_3 +bowser_kart_frame027_wheel0: + symbol: gKartBowser027Wheel0 + type: texture + offset: 0xBF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_027_tlut_wheel_0 +bowser_kart_frame027_wheel1: + symbol: gKartBowser027Wheel1 + type: texture + offset: 0xBF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_027_tlut_wheel_1 +bowser_kart_frame027_wheel2: + symbol: gKartBowser027Wheel2 + type: texture + offset: 0xBF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_027_tlut_wheel_2 +bowser_kart_frame027_wheel3: + symbol: gKartBowser027Wheel3 + type: texture + offset: 0xBF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_027_tlut_wheel_3 +bowser_kart_frame028_wheel0: + symbol: gKartBowser028Wheel0 + type: texture + offset: 0xC670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_028_tlut_wheel_0 +bowser_kart_frame028_wheel1: + symbol: gKartBowser028Wheel1 + type: texture + offset: 0xC670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_028_tlut_wheel_1 +bowser_kart_frame028_wheel2: + symbol: gKartBowser028Wheel2 + type: texture + offset: 0xC670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_028_tlut_wheel_2 +bowser_kart_frame028_wheel3: + symbol: gKartBowser028Wheel3 + type: texture + offset: 0xC670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_028_tlut_wheel_3 +bowser_kart_frame029_wheel0: + symbol: gKartBowser029Wheel0 + type: texture + offset: 0xCDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_029_tlut_wheel_0 +bowser_kart_frame029_wheel1: + symbol: gKartBowser029Wheel1 + type: texture + offset: 0xCDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_029_tlut_wheel_1 +bowser_kart_frame029_wheel2: + symbol: gKartBowser029Wheel2 + type: texture + offset: 0xCDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_029_tlut_wheel_2 +bowser_kart_frame029_wheel3: + symbol: gKartBowser029Wheel3 + type: texture + offset: 0xCDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_029_tlut_wheel_3 +bowser_kart_frame030_wheel0: + symbol: gKartBowser030Wheel0 + type: texture + offset: 0xD4EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_030_tlut_wheel_0 +bowser_kart_frame030_wheel1: + symbol: gKartBowser030Wheel1 + type: texture + offset: 0xD4EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_030_tlut_wheel_1 +bowser_kart_frame030_wheel2: + symbol: gKartBowser030Wheel2 + type: texture + offset: 0xD4EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_030_tlut_wheel_2 +bowser_kart_frame030_wheel3: + symbol: gKartBowser030Wheel3 + type: texture + offset: 0xD4EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_030_tlut_wheel_3 +bowser_kart_frame031_wheel0: + symbol: gKartBowser031Wheel0 + type: texture + offset: 0xDC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_031_tlut_wheel_0 +bowser_kart_frame031_wheel1: + symbol: gKartBowser031Wheel1 + type: texture + offset: 0xDC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_031_tlut_wheel_1 +bowser_kart_frame031_wheel2: + symbol: gKartBowser031Wheel2 + type: texture + offset: 0xDC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_031_tlut_wheel_2 +bowser_kart_frame031_wheel3: + symbol: gKartBowser031Wheel3 + type: texture + offset: 0xDC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_031_tlut_wheel_3 +bowser_kart_frame032_wheel0: + symbol: gKartBowser032Wheel0 + type: texture + offset: 0xE3DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_032_tlut_wheel_0 +bowser_kart_frame032_wheel1: + symbol: gKartBowser032Wheel1 + type: texture + offset: 0xE3DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_032_tlut_wheel_1 +bowser_kart_frame032_wheel2: + symbol: gKartBowser032Wheel2 + type: texture + offset: 0xE3DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_032_tlut_wheel_2 +bowser_kart_frame032_wheel3: + symbol: gKartBowser032Wheel3 + type: texture + offset: 0xE3DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_032_tlut_wheel_3 +bowser_kart_frame033_wheel0: + symbol: gKartBowser033Wheel0 + type: texture + offset: 0xEB6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_033_tlut_wheel_0 +bowser_kart_frame033_wheel1: + symbol: gKartBowser033Wheel1 + type: texture + offset: 0xEB6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_033_tlut_wheel_1 +bowser_kart_frame033_wheel2: + symbol: gKartBowser033Wheel2 + type: texture + offset: 0xEB6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_033_tlut_wheel_2 +bowser_kart_frame033_wheel3: + symbol: gKartBowser033Wheel3 + type: texture + offset: 0xEB6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_033_tlut_wheel_3 +bowser_kart_frame034_wheel0: + symbol: gKartBowser034Wheel0 + type: texture + offset: 0xF328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_034_tlut_wheel_0 +bowser_kart_frame034_wheel1: + symbol: gKartBowser034Wheel1 + type: texture + offset: 0xF328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_034_tlut_wheel_1 +bowser_kart_frame034_wheel2: + symbol: gKartBowser034Wheel2 + type: texture + offset: 0xF328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_034_tlut_wheel_2 +bowser_kart_frame034_wheel3: + symbol: gKartBowser034Wheel3 + type: texture + offset: 0xF328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_034_tlut_wheel_3 +bowser_kart_frame035_wheel0: + symbol: gKartBowser035Wheel0 + type: texture + offset: 0xFAEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_035_tlut_wheel_0 +bowser_kart_frame035_wheel1: + symbol: gKartBowser035Wheel1 + type: texture + offset: 0xFAEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_035_tlut_wheel_1 +bowser_kart_frame035_wheel2: + symbol: gKartBowser035Wheel2 + type: texture + offset: 0xFAEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_035_tlut_wheel_2 +bowser_kart_frame035_wheel3: + symbol: gKartBowser035Wheel3 + type: texture + offset: 0xFAEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_035_tlut_wheel_3 +bowser_kart_frame036_wheel0: + symbol: gKartBowser036Wheel0 + type: texture + offset: 0x102BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_036_tlut_wheel_0 +bowser_kart_frame036_wheel1: + symbol: gKartBowser036Wheel1 + type: texture + offset: 0x102BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_036_tlut_wheel_1 +bowser_kart_frame036_wheel2: + symbol: gKartBowser036Wheel2 + type: texture + offset: 0x102BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_036_tlut_wheel_2 +bowser_kart_frame036_wheel3: + symbol: gKartBowser036Wheel3 + type: texture + offset: 0x102BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_036_tlut_wheel_3 +bowser_kart_frame037_wheel0: + symbol: gKartBowser037Wheel0 + type: texture + offset: 0x10A80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_037_tlut_wheel_0 +bowser_kart_frame037_wheel1: + symbol: gKartBowser037Wheel1 + type: texture + offset: 0x10A80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_037_tlut_wheel_1 +bowser_kart_frame037_wheel2: + symbol: gKartBowser037Wheel2 + type: texture + offset: 0x10A80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_037_tlut_wheel_2 +bowser_kart_frame037_wheel3: + symbol: gKartBowser037Wheel3 + type: texture + offset: 0x10A80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_037_tlut_wheel_3 +bowser_kart_frame038_wheel0: + symbol: gKartBowser038Wheel0 + type: texture + offset: 0x11254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_038_tlut_wheel_0 +bowser_kart_frame038_wheel1: + symbol: gKartBowser038Wheel1 + type: texture + offset: 0x11254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_038_tlut_wheel_1 +bowser_kart_frame038_wheel2: + symbol: gKartBowser038Wheel2 + type: texture + offset: 0x11254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_038_tlut_wheel_2 +bowser_kart_frame038_wheel3: + symbol: gKartBowser038Wheel3 + type: texture + offset: 0x11254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_038_tlut_wheel_3 +bowser_kart_frame039_wheel0: + symbol: gKartBowser039Wheel0 + type: texture + offset: 0x11A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_039_tlut_wheel_0 +bowser_kart_frame039_wheel1: + symbol: gKartBowser039Wheel1 + type: texture + offset: 0x11A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_039_tlut_wheel_1 +bowser_kart_frame039_wheel2: + symbol: gKartBowser039Wheel2 + type: texture + offset: 0x11A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_039_tlut_wheel_2 +bowser_kart_frame039_wheel3: + symbol: gKartBowser039Wheel3 + type: texture + offset: 0x11A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_039_tlut_wheel_3 +bowser_kart_frame040_wheel0: + symbol: gKartBowser040Wheel0 + type: texture + offset: 0x12208 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_040_tlut_wheel_0 +bowser_kart_frame040_wheel1: + symbol: gKartBowser040Wheel1 + type: texture + offset: 0x12208 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_040_tlut_wheel_1 +bowser_kart_frame040_wheel2: + symbol: gKartBowser040Wheel2 + type: texture + offset: 0x12208 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_040_tlut_wheel_2 +bowser_kart_frame040_wheel3: + symbol: gKartBowser040Wheel3 + type: texture + offset: 0x12208 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_040_tlut_wheel_3 +bowser_kart_frame041_wheel0: + symbol: gKartBowser041Wheel0 + type: texture + offset: 0x129E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_041_tlut_wheel_0 +bowser_kart_frame041_wheel1: + symbol: gKartBowser041Wheel1 + type: texture + offset: 0x129E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_041_tlut_wheel_1 +bowser_kart_frame041_wheel2: + symbol: gKartBowser041Wheel2 + type: texture + offset: 0x129E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_041_tlut_wheel_2 +bowser_kart_frame041_wheel3: + symbol: gKartBowser041Wheel3 + type: texture + offset: 0x129E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_041_tlut_wheel_3 +bowser_kart_frame042_wheel0: + symbol: gKartBowser042Wheel0 + type: texture + offset: 0x131EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_042_tlut_wheel_0 +bowser_kart_frame042_wheel1: + symbol: gKartBowser042Wheel1 + type: texture + offset: 0x131EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_042_tlut_wheel_1 +bowser_kart_frame042_wheel2: + symbol: gKartBowser042Wheel2 + type: texture + offset: 0x131EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_042_tlut_wheel_2 +bowser_kart_frame042_wheel3: + symbol: gKartBowser042Wheel3 + type: texture + offset: 0x131EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_042_tlut_wheel_3 +bowser_kart_frame043_wheel0: + symbol: gKartBowser043Wheel0 + type: texture + offset: 0x1388C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_043_tlut_wheel_0 +bowser_kart_frame043_wheel1: + symbol: gKartBowser043Wheel1 + type: texture + offset: 0x1388C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_043_tlut_wheel_1 +bowser_kart_frame043_wheel2: + symbol: gKartBowser043Wheel2 + type: texture + offset: 0x1388C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_043_tlut_wheel_2 +bowser_kart_frame043_wheel3: + symbol: gKartBowser043Wheel3 + type: texture + offset: 0x1388C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_043_tlut_wheel_3 +bowser_kart_frame044_wheel0: + symbol: gKartBowser044Wheel0 + type: texture + offset: 0x13F48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_044_tlut_wheel_0 +bowser_kart_frame044_wheel1: + symbol: gKartBowser044Wheel1 + type: texture + offset: 0x13F48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_044_tlut_wheel_1 +bowser_kart_frame044_wheel2: + symbol: gKartBowser044Wheel2 + type: texture + offset: 0x13F48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_044_tlut_wheel_2 +bowser_kart_frame044_wheel3: + symbol: gKartBowser044Wheel3 + type: texture + offset: 0x13F48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_044_tlut_wheel_3 +bowser_kart_frame045_wheel0: + symbol: gKartBowser045Wheel0 + type: texture + offset: 0x145F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_045_tlut_wheel_0 +bowser_kart_frame045_wheel1: + symbol: gKartBowser045Wheel1 + type: texture + offset: 0x145F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_045_tlut_wheel_1 +bowser_kart_frame045_wheel2: + symbol: gKartBowser045Wheel2 + type: texture + offset: 0x145F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_045_tlut_wheel_2 +bowser_kart_frame045_wheel3: + symbol: gKartBowser045Wheel3 + type: texture + offset: 0x145F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_045_tlut_wheel_3 +bowser_kart_frame046_wheel0: + symbol: gKartBowser046Wheel0 + type: texture + offset: 0x14CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_046_tlut_wheel_0 +bowser_kart_frame046_wheel1: + symbol: gKartBowser046Wheel1 + type: texture + offset: 0x14CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_046_tlut_wheel_1 +bowser_kart_frame046_wheel2: + symbol: gKartBowser046Wheel2 + type: texture + offset: 0x14CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_046_tlut_wheel_2 +bowser_kart_frame046_wheel3: + symbol: gKartBowser046Wheel3 + type: texture + offset: 0x14CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_046_tlut_wheel_3 +bowser_kart_frame047_wheel0: + symbol: gKartBowser047Wheel0 + type: texture + offset: 0x15394 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_047_tlut_wheel_0 +bowser_kart_frame047_wheel1: + symbol: gKartBowser047Wheel1 + type: texture + offset: 0x15394 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_047_tlut_wheel_1 +bowser_kart_frame047_wheel2: + symbol: gKartBowser047Wheel2 + type: texture + offset: 0x15394 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_047_tlut_wheel_2 +bowser_kart_frame047_wheel3: + symbol: gKartBowser047Wheel3 + type: texture + offset: 0x15394 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_047_tlut_wheel_3 +bowser_kart_frame048_wheel0: + symbol: gKartBowser048Wheel0 + type: texture + offset: 0x15A7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_048_tlut_wheel_0 +bowser_kart_frame048_wheel1: + symbol: gKartBowser048Wheel1 + type: texture + offset: 0x15A7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_048_tlut_wheel_1 +bowser_kart_frame048_wheel2: + symbol: gKartBowser048Wheel2 + type: texture + offset: 0x15A7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_048_tlut_wheel_2 +bowser_kart_frame048_wheel3: + symbol: gKartBowser048Wheel3 + type: texture + offset: 0x15A7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_048_tlut_wheel_3 +bowser_kart_frame049_wheel0: + symbol: gKartBowser049Wheel0 + type: texture + offset: 0x161A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_049_tlut_wheel_0 +bowser_kart_frame049_wheel1: + symbol: gKartBowser049Wheel1 + type: texture + offset: 0x161A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_049_tlut_wheel_1 +bowser_kart_frame049_wheel2: + symbol: gKartBowser049Wheel2 + type: texture + offset: 0x161A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_049_tlut_wheel_2 +bowser_kart_frame049_wheel3: + symbol: gKartBowser049Wheel3 + type: texture + offset: 0x161A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_049_tlut_wheel_3 +bowser_kart_frame050_wheel0: + symbol: gKartBowser050Wheel0 + type: texture + offset: 0x16904 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_050_tlut_wheel_0 +bowser_kart_frame050_wheel1: + symbol: gKartBowser050Wheel1 + type: texture + offset: 0x16904 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_050_tlut_wheel_1 +bowser_kart_frame050_wheel2: + symbol: gKartBowser050Wheel2 + type: texture + offset: 0x16904 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_050_tlut_wheel_2 +bowser_kart_frame050_wheel3: + symbol: gKartBowser050Wheel3 + type: texture + offset: 0x16904 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_050_tlut_wheel_3 +bowser_kart_frame051_wheel0: + symbol: gKartBowser051Wheel0 + type: texture + offset: 0x17078 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_051_tlut_wheel_0 +bowser_kart_frame051_wheel1: + symbol: gKartBowser051Wheel1 + type: texture + offset: 0x17078 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_051_tlut_wheel_1 +bowser_kart_frame051_wheel2: + symbol: gKartBowser051Wheel2 + type: texture + offset: 0x17078 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_051_tlut_wheel_2 +bowser_kart_frame051_wheel3: + symbol: gKartBowser051Wheel3 + type: texture + offset: 0x17078 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_051_tlut_wheel_3 +bowser_kart_frame052_wheel0: + symbol: gKartBowser052Wheel0 + type: texture + offset: 0x17828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_052_tlut_wheel_0 +bowser_kart_frame052_wheel1: + symbol: gKartBowser052Wheel1 + type: texture + offset: 0x17828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_052_tlut_wheel_1 +bowser_kart_frame052_wheel2: + symbol: gKartBowser052Wheel2 + type: texture + offset: 0x17828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_052_tlut_wheel_2 +bowser_kart_frame052_wheel3: + symbol: gKartBowser052Wheel3 + type: texture + offset: 0x17828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_052_tlut_wheel_3 +bowser_kart_frame053_wheel0: + symbol: gKartBowser053Wheel0 + type: texture + offset: 0x17FCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_053_tlut_wheel_0 +bowser_kart_frame053_wheel1: + symbol: gKartBowser053Wheel1 + type: texture + offset: 0x17FCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_053_tlut_wheel_1 +bowser_kart_frame053_wheel2: + symbol: gKartBowser053Wheel2 + type: texture + offset: 0x17FCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_053_tlut_wheel_2 +bowser_kart_frame053_wheel3: + symbol: gKartBowser053Wheel3 + type: texture + offset: 0x17FCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_053_tlut_wheel_3 +bowser_kart_frame054_wheel0: + symbol: gKartBowser054Wheel0 + type: texture + offset: 0x18794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_054_tlut_wheel_0 +bowser_kart_frame054_wheel1: + symbol: gKartBowser054Wheel1 + type: texture + offset: 0x18794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_054_tlut_wheel_1 +bowser_kart_frame054_wheel2: + symbol: gKartBowser054Wheel2 + type: texture + offset: 0x18794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_054_tlut_wheel_2 +bowser_kart_frame054_wheel3: + symbol: gKartBowser054Wheel3 + type: texture + offset: 0x18794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_054_tlut_wheel_3 +bowser_kart_frame055_wheel0: + symbol: gKartBowser055Wheel0 + type: texture + offset: 0x18F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_055_tlut_wheel_0 +bowser_kart_frame055_wheel1: + symbol: gKartBowser055Wheel1 + type: texture + offset: 0x18F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_055_tlut_wheel_1 +bowser_kart_frame055_wheel2: + symbol: gKartBowser055Wheel2 + type: texture + offset: 0x18F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_055_tlut_wheel_2 +bowser_kart_frame055_wheel3: + symbol: gKartBowser055Wheel3 + type: texture + offset: 0x18F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_055_tlut_wheel_3 +bowser_kart_frame056_wheel0: + symbol: gKartBowser056Wheel0 + type: texture + offset: 0x19720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_056_tlut_wheel_0 +bowser_kart_frame056_wheel1: + symbol: gKartBowser056Wheel1 + type: texture + offset: 0x19720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_056_tlut_wheel_1 +bowser_kart_frame056_wheel2: + symbol: gKartBowser056Wheel2 + type: texture + offset: 0x19720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_056_tlut_wheel_2 +bowser_kart_frame056_wheel3: + symbol: gKartBowser056Wheel3 + type: texture + offset: 0x19720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_056_tlut_wheel_3 +bowser_kart_frame057_wheel0: + symbol: gKartBowser057Wheel0 + type: texture + offset: 0x19F10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_057_tlut_wheel_0 +bowser_kart_frame057_wheel1: + symbol: gKartBowser057Wheel1 + type: texture + offset: 0x19F10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_057_tlut_wheel_1 +bowser_kart_frame057_wheel2: + symbol: gKartBowser057Wheel2 + type: texture + offset: 0x19F10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_057_tlut_wheel_2 +bowser_kart_frame057_wheel3: + symbol: gKartBowser057Wheel3 + type: texture + offset: 0x19F10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_057_tlut_wheel_3 +bowser_kart_frame058_wheel0: + symbol: gKartBowser058Wheel0 + type: texture + offset: 0x1A6EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_058_tlut_wheel_0 +bowser_kart_frame058_wheel1: + symbol: gKartBowser058Wheel1 + type: texture + offset: 0x1A6EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_058_tlut_wheel_1 +bowser_kart_frame058_wheel2: + symbol: gKartBowser058Wheel2 + type: texture + offset: 0x1A6EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_058_tlut_wheel_2 +bowser_kart_frame058_wheel3: + symbol: gKartBowser058Wheel3 + type: texture + offset: 0x1A6EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_058_tlut_wheel_3 +bowser_kart_frame059_wheel0: + symbol: gKartBowser059Wheel0 + type: texture + offset: 0x1AED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_059_tlut_wheel_0 +bowser_kart_frame059_wheel1: + symbol: gKartBowser059Wheel1 + type: texture + offset: 0x1AED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_059_tlut_wheel_1 +bowser_kart_frame059_wheel2: + symbol: gKartBowser059Wheel2 + type: texture + offset: 0x1AED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_059_tlut_wheel_2 +bowser_kart_frame059_wheel3: + symbol: gKartBowser059Wheel3 + type: texture + offset: 0x1AED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_059_tlut_wheel_3 +bowser_kart_frame060_wheel0: + symbol: gKartBowser060Wheel0 + type: texture + offset: 0x1B6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_060_tlut_wheel_0 +bowser_kart_frame060_wheel1: + symbol: gKartBowser060Wheel1 + type: texture + offset: 0x1B6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_060_tlut_wheel_1 +bowser_kart_frame060_wheel2: + symbol: gKartBowser060Wheel2 + type: texture + offset: 0x1B6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_060_tlut_wheel_2 +bowser_kart_frame060_wheel3: + symbol: gKartBowser060Wheel3 + type: texture + offset: 0x1B6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_060_tlut_wheel_3 +bowser_kart_frame061_wheel0: + symbol: gKartBowser061Wheel0 + type: texture + offset: 0x1BEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_061_tlut_wheel_0 +bowser_kart_frame061_wheel1: + symbol: gKartBowser061Wheel1 + type: texture + offset: 0x1BEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_061_tlut_wheel_1 +bowser_kart_frame061_wheel2: + symbol: gKartBowser061Wheel2 + type: texture + offset: 0x1BEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_061_tlut_wheel_2 +bowser_kart_frame061_wheel3: + symbol: gKartBowser061Wheel3 + type: texture + offset: 0x1BEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_061_tlut_wheel_3 +bowser_kart_frame062_wheel0: + symbol: gKartBowser062Wheel0 + type: texture + offset: 0x1C6CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_062_tlut_wheel_0 +bowser_kart_frame062_wheel1: + symbol: gKartBowser062Wheel1 + type: texture + offset: 0x1C6CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_062_tlut_wheel_1 +bowser_kart_frame062_wheel2: + symbol: gKartBowser062Wheel2 + type: texture + offset: 0x1C6CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_062_tlut_wheel_2 +bowser_kart_frame062_wheel3: + symbol: gKartBowser062Wheel3 + type: texture + offset: 0x1C6CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_062_tlut_wheel_3 +bowser_kart_frame063_wheel0: + symbol: gKartBowser063Wheel0 + type: texture + offset: 0x1CEF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_063_tlut_wheel_0 +bowser_kart_frame063_wheel1: + symbol: gKartBowser063Wheel1 + type: texture + offset: 0x1CEF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_063_tlut_wheel_1 +bowser_kart_frame063_wheel2: + symbol: gKartBowser063Wheel2 + type: texture + offset: 0x1CEF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_063_tlut_wheel_2 +bowser_kart_frame063_wheel3: + symbol: gKartBowser063Wheel3 + type: texture + offset: 0x1CEF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_063_tlut_wheel_3 +bowser_kart_frame064_wheel0: + symbol: gKartBowser064Wheel0 + type: texture + offset: 0x1D5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_064_tlut_wheel_0 +bowser_kart_frame064_wheel1: + symbol: gKartBowser064Wheel1 + type: texture + offset: 0x1D5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_064_tlut_wheel_1 +bowser_kart_frame064_wheel2: + symbol: gKartBowser064Wheel2 + type: texture + offset: 0x1D5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_064_tlut_wheel_2 +bowser_kart_frame064_wheel3: + symbol: gKartBowser064Wheel3 + type: texture + offset: 0x1D5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_064_tlut_wheel_3 +bowser_kart_frame065_wheel0: + symbol: gKartBowser065Wheel0 + type: texture + offset: 0x1DC98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_065_tlut_wheel_0 +bowser_kart_frame065_wheel1: + symbol: gKartBowser065Wheel1 + type: texture + offset: 0x1DC98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_065_tlut_wheel_1 +bowser_kart_frame065_wheel2: + symbol: gKartBowser065Wheel2 + type: texture + offset: 0x1DC98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_065_tlut_wheel_2 +bowser_kart_frame065_wheel3: + symbol: gKartBowser065Wheel3 + type: texture + offset: 0x1DC98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_065_tlut_wheel_3 +bowser_kart_frame066_wheel0: + symbol: gKartBowser066Wheel0 + type: texture + offset: 0x1E398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_066_tlut_wheel_0 +bowser_kart_frame066_wheel1: + symbol: gKartBowser066Wheel1 + type: texture + offset: 0x1E398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_066_tlut_wheel_1 +bowser_kart_frame066_wheel2: + symbol: gKartBowser066Wheel2 + type: texture + offset: 0x1E398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_066_tlut_wheel_2 +bowser_kart_frame066_wheel3: + symbol: gKartBowser066Wheel3 + type: texture + offset: 0x1E398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_066_tlut_wheel_3 +bowser_kart_frame067_wheel0: + symbol: gKartBowser067Wheel0 + type: texture + offset: 0x1EA78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_067_tlut_wheel_0 +bowser_kart_frame067_wheel1: + symbol: gKartBowser067Wheel1 + type: texture + offset: 0x1EA78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_067_tlut_wheel_1 +bowser_kart_frame067_wheel2: + symbol: gKartBowser067Wheel2 + type: texture + offset: 0x1EA78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_067_tlut_wheel_2 +bowser_kart_frame067_wheel3: + symbol: gKartBowser067Wheel3 + type: texture + offset: 0x1EA78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_067_tlut_wheel_3 +bowser_kart_frame068_wheel0: + symbol: gKartBowser068Wheel0 + type: texture + offset: 0x1F14C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_068_tlut_wheel_0 +bowser_kart_frame068_wheel1: + symbol: gKartBowser068Wheel1 + type: texture + offset: 0x1F14C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_068_tlut_wheel_1 +bowser_kart_frame068_wheel2: + symbol: gKartBowser068Wheel2 + type: texture + offset: 0x1F14C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_068_tlut_wheel_2 +bowser_kart_frame068_wheel3: + symbol: gKartBowser068Wheel3 + type: texture + offset: 0x1F14C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_068_tlut_wheel_3 +bowser_kart_frame069_wheel0: + symbol: gKartBowser069Wheel0 + type: texture + offset: 0x1F86C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_069_tlut_wheel_0 +bowser_kart_frame069_wheel1: + symbol: gKartBowser069Wheel1 + type: texture + offset: 0x1F86C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_069_tlut_wheel_1 +bowser_kart_frame069_wheel2: + symbol: gKartBowser069Wheel2 + type: texture + offset: 0x1F86C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_069_tlut_wheel_2 +bowser_kart_frame069_wheel3: + symbol: gKartBowser069Wheel3 + type: texture + offset: 0x1F86C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_069_tlut_wheel_3 +bowser_kart_frame070_wheel0: + symbol: gKartBowser070Wheel0 + type: texture + offset: 0x1FFBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_070_tlut_wheel_0 +bowser_kart_frame070_wheel1: + symbol: gKartBowser070Wheel1 + type: texture + offset: 0x1FFBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_070_tlut_wheel_1 +bowser_kart_frame070_wheel2: + symbol: gKartBowser070Wheel2 + type: texture + offset: 0x1FFBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_070_tlut_wheel_2 +bowser_kart_frame070_wheel3: + symbol: gKartBowser070Wheel3 + type: texture + offset: 0x1FFBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_070_tlut_wheel_3 +bowser_kart_frame071_wheel0: + symbol: gKartBowser071Wheel0 + type: texture + offset: 0x20724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_071_tlut_wheel_0 +bowser_kart_frame071_wheel1: + symbol: gKartBowser071Wheel1 + type: texture + offset: 0x20724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_071_tlut_wheel_1 +bowser_kart_frame071_wheel2: + symbol: gKartBowser071Wheel2 + type: texture + offset: 0x20724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_071_tlut_wheel_2 +bowser_kart_frame071_wheel3: + symbol: gKartBowser071Wheel3 + type: texture + offset: 0x20724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_071_tlut_wheel_3 +bowser_kart_frame072_wheel0: + symbol: gKartBowser072Wheel0 + type: texture + offset: 0x20EA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_072_tlut_wheel_0 +bowser_kart_frame072_wheel1: + symbol: gKartBowser072Wheel1 + type: texture + offset: 0x20EA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_072_tlut_wheel_1 +bowser_kart_frame072_wheel2: + symbol: gKartBowser072Wheel2 + type: texture + offset: 0x20EA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_072_tlut_wheel_2 +bowser_kart_frame072_wheel3: + symbol: gKartBowser072Wheel3 + type: texture + offset: 0x20EA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_072_tlut_wheel_3 +bowser_kart_frame073_wheel0: + symbol: gKartBowser073Wheel0 + type: texture + offset: 0x21668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_073_tlut_wheel_0 +bowser_kart_frame073_wheel1: + symbol: gKartBowser073Wheel1 + type: texture + offset: 0x21668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_073_tlut_wheel_1 +bowser_kart_frame073_wheel2: + symbol: gKartBowser073Wheel2 + type: texture + offset: 0x21668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_073_tlut_wheel_2 +bowser_kart_frame073_wheel3: + symbol: gKartBowser073Wheel3 + type: texture + offset: 0x21668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_073_tlut_wheel_3 +bowser_kart_frame074_wheel0: + symbol: gKartBowser074Wheel0 + type: texture + offset: 0x21E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_074_tlut_wheel_0 +bowser_kart_frame074_wheel1: + symbol: gKartBowser074Wheel1 + type: texture + offset: 0x21E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_074_tlut_wheel_1 +bowser_kart_frame074_wheel2: + symbol: gKartBowser074Wheel2 + type: texture + offset: 0x21E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_074_tlut_wheel_2 +bowser_kart_frame074_wheel3: + symbol: gKartBowser074Wheel3 + type: texture + offset: 0x21E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_074_tlut_wheel_3 +bowser_kart_frame075_wheel0: + symbol: gKartBowser075Wheel0 + type: texture + offset: 0x225FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_075_tlut_wheel_0 +bowser_kart_frame075_wheel1: + symbol: gKartBowser075Wheel1 + type: texture + offset: 0x225FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_075_tlut_wheel_1 +bowser_kart_frame075_wheel2: + symbol: gKartBowser075Wheel2 + type: texture + offset: 0x225FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_075_tlut_wheel_2 +bowser_kart_frame075_wheel3: + symbol: gKartBowser075Wheel3 + type: texture + offset: 0x225FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_075_tlut_wheel_3 +bowser_kart_frame076_wheel0: + symbol: gKartBowser076Wheel0 + type: texture + offset: 0x22DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_076_tlut_wheel_0 +bowser_kart_frame076_wheel1: + symbol: gKartBowser076Wheel1 + type: texture + offset: 0x22DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_076_tlut_wheel_1 +bowser_kart_frame076_wheel2: + symbol: gKartBowser076Wheel2 + type: texture + offset: 0x22DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_076_tlut_wheel_2 +bowser_kart_frame076_wheel3: + symbol: gKartBowser076Wheel3 + type: texture + offset: 0x22DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_076_tlut_wheel_3 +bowser_kart_frame077_wheel0: + symbol: gKartBowser077Wheel0 + type: texture + offset: 0x235BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_077_tlut_wheel_0 +bowser_kart_frame077_wheel1: + symbol: gKartBowser077Wheel1 + type: texture + offset: 0x235BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_077_tlut_wheel_1 +bowser_kart_frame077_wheel2: + symbol: gKartBowser077Wheel2 + type: texture + offset: 0x235BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_077_tlut_wheel_2 +bowser_kart_frame077_wheel3: + symbol: gKartBowser077Wheel3 + type: texture + offset: 0x235BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_077_tlut_wheel_3 +bowser_kart_frame078_wheel0: + symbol: gKartBowser078Wheel0 + type: texture + offset: 0x23DBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_078_tlut_wheel_0 +bowser_kart_frame078_wheel1: + symbol: gKartBowser078Wheel1 + type: texture + offset: 0x23DBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_078_tlut_wheel_1 +bowser_kart_frame078_wheel2: + symbol: gKartBowser078Wheel2 + type: texture + offset: 0x23DBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_078_tlut_wheel_2 +bowser_kart_frame078_wheel3: + symbol: gKartBowser078Wheel3 + type: texture + offset: 0x23DBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_078_tlut_wheel_3 +bowser_kart_frame079_wheel0: + symbol: gKartBowser079Wheel0 + type: texture + offset: 0x245D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_079_tlut_wheel_0 +bowser_kart_frame079_wheel1: + symbol: gKartBowser079Wheel1 + type: texture + offset: 0x245D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_079_tlut_wheel_1 +bowser_kart_frame079_wheel2: + symbol: gKartBowser079Wheel2 + type: texture + offset: 0x245D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_079_tlut_wheel_2 +bowser_kart_frame079_wheel3: + symbol: gKartBowser079Wheel3 + type: texture + offset: 0x245D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_079_tlut_wheel_3 +bowser_kart_frame080_wheel0: + symbol: gKartBowser080Wheel0 + type: texture + offset: 0x24DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_080_tlut_wheel_0 +bowser_kart_frame080_wheel1: + symbol: gKartBowser080Wheel1 + type: texture + offset: 0x24DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_080_tlut_wheel_1 +bowser_kart_frame080_wheel2: + symbol: gKartBowser080Wheel2 + type: texture + offset: 0x24DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_080_tlut_wheel_2 +bowser_kart_frame080_wheel3: + symbol: gKartBowser080Wheel3 + type: texture + offset: 0x24DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_080_tlut_wheel_3 +bowser_kart_frame081_wheel0: + symbol: gKartBowser081Wheel0 + type: texture + offset: 0x255F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_081_tlut_wheel_0 +bowser_kart_frame081_wheel1: + symbol: gKartBowser081Wheel1 + type: texture + offset: 0x255F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_081_tlut_wheel_1 +bowser_kart_frame081_wheel2: + symbol: gKartBowser081Wheel2 + type: texture + offset: 0x255F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_081_tlut_wheel_2 +bowser_kart_frame081_wheel3: + symbol: gKartBowser081Wheel3 + type: texture + offset: 0x255F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_081_tlut_wheel_3 +bowser_kart_frame082_wheel0: + symbol: gKartBowser082Wheel0 + type: texture + offset: 0x25E04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_082_tlut_wheel_0 +bowser_kart_frame082_wheel1: + symbol: gKartBowser082Wheel1 + type: texture + offset: 0x25E04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_082_tlut_wheel_1 +bowser_kart_frame082_wheel2: + symbol: gKartBowser082Wheel2 + type: texture + offset: 0x25E04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_082_tlut_wheel_2 +bowser_kart_frame082_wheel3: + symbol: gKartBowser082Wheel3 + type: texture + offset: 0x25E04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_082_tlut_wheel_3 +bowser_kart_frame083_wheel0: + symbol: gKartBowser083Wheel0 + type: texture + offset: 0x26624 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_083_tlut_wheel_0 +bowser_kart_frame083_wheel1: + symbol: gKartBowser083Wheel1 + type: texture + offset: 0x26624 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_083_tlut_wheel_1 +bowser_kart_frame083_wheel2: + symbol: gKartBowser083Wheel2 + type: texture + offset: 0x26624 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_083_tlut_wheel_2 +bowser_kart_frame083_wheel3: + symbol: gKartBowser083Wheel3 + type: texture + offset: 0x26624 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_083_tlut_wheel_3 +bowser_kart_frame084_wheel0: + symbol: gKartBowser084Wheel0 + type: texture + offset: 0x26E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_084_tlut_wheel_0 +bowser_kart_frame084_wheel1: + symbol: gKartBowser084Wheel1 + type: texture + offset: 0x26E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_084_tlut_wheel_1 +bowser_kart_frame084_wheel2: + symbol: gKartBowser084Wheel2 + type: texture + offset: 0x26E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_084_tlut_wheel_2 +bowser_kart_frame084_wheel3: + symbol: gKartBowser084Wheel3 + type: texture + offset: 0x26E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_084_tlut_wheel_3 +bowser_kart_frame085_wheel0: + symbol: gKartBowser085Wheel0 + type: texture + offset: 0x27524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_085_tlut_wheel_0 +bowser_kart_frame085_wheel1: + symbol: gKartBowser085Wheel1 + type: texture + offset: 0x27524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_085_tlut_wheel_1 +bowser_kart_frame085_wheel2: + symbol: gKartBowser085Wheel2 + type: texture + offset: 0x27524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_085_tlut_wheel_2 +bowser_kart_frame085_wheel3: + symbol: gKartBowser085Wheel3 + type: texture + offset: 0x27524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_085_tlut_wheel_3 +bowser_kart_frame086_wheel0: + symbol: gKartBowser086Wheel0 + type: texture + offset: 0x27C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_086_tlut_wheel_0 +bowser_kart_frame086_wheel1: + symbol: gKartBowser086Wheel1 + type: texture + offset: 0x27C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_086_tlut_wheel_1 +bowser_kart_frame086_wheel2: + symbol: gKartBowser086Wheel2 + type: texture + offset: 0x27C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_086_tlut_wheel_2 +bowser_kart_frame086_wheel3: + symbol: gKartBowser086Wheel3 + type: texture + offset: 0x27C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_086_tlut_wheel_3 +bowser_kart_frame087_wheel0: + symbol: gKartBowser087Wheel0 + type: texture + offset: 0x28308 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_087_tlut_wheel_0 +bowser_kart_frame087_wheel1: + symbol: gKartBowser087Wheel1 + type: texture + offset: 0x28308 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_087_tlut_wheel_1 +bowser_kart_frame087_wheel2: + symbol: gKartBowser087Wheel2 + type: texture + offset: 0x28308 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_087_tlut_wheel_2 +bowser_kart_frame087_wheel3: + symbol: gKartBowser087Wheel3 + type: texture + offset: 0x28308 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_087_tlut_wheel_3 +bowser_kart_frame088_wheel0: + symbol: gKartBowser088Wheel0 + type: texture + offset: 0x289F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_088_tlut_wheel_0 +bowser_kart_frame088_wheel1: + symbol: gKartBowser088Wheel1 + type: texture + offset: 0x289F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_088_tlut_wheel_1 +bowser_kart_frame088_wheel2: + symbol: gKartBowser088Wheel2 + type: texture + offset: 0x289F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_088_tlut_wheel_2 +bowser_kart_frame088_wheel3: + symbol: gKartBowser088Wheel3 + type: texture + offset: 0x289F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_088_tlut_wheel_3 +bowser_kart_frame089_wheel0: + symbol: gKartBowser089Wheel0 + type: texture + offset: 0x29108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_089_tlut_wheel_0 +bowser_kart_frame089_wheel1: + symbol: gKartBowser089Wheel1 + type: texture + offset: 0x29108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_089_tlut_wheel_1 +bowser_kart_frame089_wheel2: + symbol: gKartBowser089Wheel2 + type: texture + offset: 0x29108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_089_tlut_wheel_2 +bowser_kart_frame089_wheel3: + symbol: gKartBowser089Wheel3 + type: texture + offset: 0x29108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_089_tlut_wheel_3 +bowser_kart_frame090_wheel0: + symbol: gKartBowser090Wheel0 + type: texture + offset: 0x29840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_090_tlut_wheel_0 +bowser_kart_frame090_wheel1: + symbol: gKartBowser090Wheel1 + type: texture + offset: 0x29840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_090_tlut_wheel_1 +bowser_kart_frame090_wheel2: + symbol: gKartBowser090Wheel2 + type: texture + offset: 0x29840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_090_tlut_wheel_2 +bowser_kart_frame090_wheel3: + symbol: gKartBowser090Wheel3 + type: texture + offset: 0x29840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_090_tlut_wheel_3 +bowser_kart_frame091_wheel0: + symbol: gKartBowser091Wheel0 + type: texture + offset: 0x29FA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_091_tlut_wheel_0 +bowser_kart_frame091_wheel1: + symbol: gKartBowser091Wheel1 + type: texture + offset: 0x29FA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_091_tlut_wheel_1 +bowser_kart_frame091_wheel2: + symbol: gKartBowser091Wheel2 + type: texture + offset: 0x29FA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_091_tlut_wheel_2 +bowser_kart_frame091_wheel3: + symbol: gKartBowser091Wheel3 + type: texture + offset: 0x29FA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_091_tlut_wheel_3 +bowser_kart_frame092_wheel0: + symbol: gKartBowser092Wheel0 + type: texture + offset: 0x2A734 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_092_tlut_wheel_0 +bowser_kart_frame092_wheel1: + symbol: gKartBowser092Wheel1 + type: texture + offset: 0x2A734 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_092_tlut_wheel_1 +bowser_kart_frame092_wheel2: + symbol: gKartBowser092Wheel2 + type: texture + offset: 0x2A734 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_092_tlut_wheel_2 +bowser_kart_frame092_wheel3: + symbol: gKartBowser092Wheel3 + type: texture + offset: 0x2A734 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_092_tlut_wheel_3 +bowser_kart_frame093_wheel0: + symbol: gKartBowser093Wheel0 + type: texture + offset: 0x2AEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_093_tlut_wheel_0 +bowser_kart_frame093_wheel1: + symbol: gKartBowser093Wheel1 + type: texture + offset: 0x2AEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_093_tlut_wheel_1 +bowser_kart_frame093_wheel2: + symbol: gKartBowser093Wheel2 + type: texture + offset: 0x2AEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_093_tlut_wheel_2 +bowser_kart_frame093_wheel3: + symbol: gKartBowser093Wheel3 + type: texture + offset: 0x2AEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_093_tlut_wheel_3 +bowser_kart_frame094_wheel0: + symbol: gKartBowser094Wheel0 + type: texture + offset: 0x2B6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_094_tlut_wheel_0 +bowser_kart_frame094_wheel1: + symbol: gKartBowser094Wheel1 + type: texture + offset: 0x2B6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_094_tlut_wheel_1 +bowser_kart_frame094_wheel2: + symbol: gKartBowser094Wheel2 + type: texture + offset: 0x2B6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_094_tlut_wheel_2 +bowser_kart_frame094_wheel3: + symbol: gKartBowser094Wheel3 + type: texture + offset: 0x2B6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_094_tlut_wheel_3 +bowser_kart_frame095_wheel0: + symbol: gKartBowser095Wheel0 + type: texture + offset: 0x2BE9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_095_tlut_wheel_0 +bowser_kart_frame095_wheel1: + symbol: gKartBowser095Wheel1 + type: texture + offset: 0x2BE9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_095_tlut_wheel_1 +bowser_kart_frame095_wheel2: + symbol: gKartBowser095Wheel2 + type: texture + offset: 0x2BE9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_095_tlut_wheel_2 +bowser_kart_frame095_wheel3: + symbol: gKartBowser095Wheel3 + type: texture + offset: 0x2BE9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_095_tlut_wheel_3 +bowser_kart_frame096_wheel0: + symbol: gKartBowser096Wheel0 + type: texture + offset: 0x2C690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_096_tlut_wheel_0 +bowser_kart_frame096_wheel1: + symbol: gKartBowser096Wheel1 + type: texture + offset: 0x2C690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_096_tlut_wheel_1 +bowser_kart_frame096_wheel2: + symbol: gKartBowser096Wheel2 + type: texture + offset: 0x2C690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_096_tlut_wheel_2 +bowser_kart_frame096_wheel3: + symbol: gKartBowser096Wheel3 + type: texture + offset: 0x2C690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_096_tlut_wheel_3 +bowser_kart_frame097_wheel0: + symbol: gKartBowser097Wheel0 + type: texture + offset: 0x2CE94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_097_tlut_wheel_0 +bowser_kart_frame097_wheel1: + symbol: gKartBowser097Wheel1 + type: texture + offset: 0x2CE94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_097_tlut_wheel_1 +bowser_kart_frame097_wheel2: + symbol: gKartBowser097Wheel2 + type: texture + offset: 0x2CE94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_097_tlut_wheel_2 +bowser_kart_frame097_wheel3: + symbol: gKartBowser097Wheel3 + type: texture + offset: 0x2CE94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_097_tlut_wheel_3 +bowser_kart_frame098_wheel0: + symbol: gKartBowser098Wheel0 + type: texture + offset: 0x2D6A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_098_tlut_wheel_0 +bowser_kart_frame098_wheel1: + symbol: gKartBowser098Wheel1 + type: texture + offset: 0x2D6A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_098_tlut_wheel_1 +bowser_kart_frame098_wheel2: + symbol: gKartBowser098Wheel2 + type: texture + offset: 0x2D6A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_098_tlut_wheel_2 +bowser_kart_frame098_wheel3: + symbol: gKartBowser098Wheel3 + type: texture + offset: 0x2D6A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_098_tlut_wheel_3 +bowser_kart_frame099_wheel0: + symbol: gKartBowser099Wheel0 + type: texture + offset: 0x2DEBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_099_tlut_wheel_0 +bowser_kart_frame099_wheel1: + symbol: gKartBowser099Wheel1 + type: texture + offset: 0x2DEBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_099_tlut_wheel_1 +bowser_kart_frame099_wheel2: + symbol: gKartBowser099Wheel2 + type: texture + offset: 0x2DEBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_099_tlut_wheel_2 +bowser_kart_frame099_wheel3: + symbol: gKartBowser099Wheel3 + type: texture + offset: 0x2DEBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_099_tlut_wheel_3 +bowser_kart_frame100_wheel0: + symbol: gKartBowser100Wheel0 + type: texture + offset: 0x2E6D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_100_tlut_wheel_0 +bowser_kart_frame100_wheel1: + symbol: gKartBowser100Wheel1 + type: texture + offset: 0x2E6D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_100_tlut_wheel_1 +bowser_kart_frame100_wheel2: + symbol: gKartBowser100Wheel2 + type: texture + offset: 0x2E6D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_100_tlut_wheel_2 +bowser_kart_frame100_wheel3: + symbol: gKartBowser100Wheel3 + type: texture + offset: 0x2E6D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_100_tlut_wheel_3 +bowser_kart_frame101_wheel0: + symbol: gKartBowser101Wheel0 + type: texture + offset: 0x2EEEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_101_tlut_wheel_0 +bowser_kart_frame101_wheel1: + symbol: gKartBowser101Wheel1 + type: texture + offset: 0x2EEEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_101_tlut_wheel_1 +bowser_kart_frame101_wheel2: + symbol: gKartBowser101Wheel2 + type: texture + offset: 0x2EEEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_101_tlut_wheel_2 +bowser_kart_frame101_wheel3: + symbol: gKartBowser101Wheel3 + type: texture + offset: 0x2EEEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_101_tlut_wheel_3 +bowser_kart_frame102_wheel0: + symbol: gKartBowser102Wheel0 + type: texture + offset: 0x2F720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_102_tlut_wheel_0 +bowser_kart_frame102_wheel1: + symbol: gKartBowser102Wheel1 + type: texture + offset: 0x2F720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_102_tlut_wheel_1 +bowser_kart_frame102_wheel2: + symbol: gKartBowser102Wheel2 + type: texture + offset: 0x2F720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_102_tlut_wheel_2 +bowser_kart_frame102_wheel3: + symbol: gKartBowser102Wheel3 + type: texture + offset: 0x2F720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_102_tlut_wheel_3 +bowser_kart_frame103_wheel0: + symbol: gKartBowser103Wheel0 + type: texture + offset: 0x2FF54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_103_tlut_wheel_0 +bowser_kart_frame103_wheel1: + symbol: gKartBowser103Wheel1 + type: texture + offset: 0x2FF54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_103_tlut_wheel_1 +bowser_kart_frame103_wheel2: + symbol: gKartBowser103Wheel2 + type: texture + offset: 0x2FF54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_103_tlut_wheel_2 +bowser_kart_frame103_wheel3: + symbol: gKartBowser103Wheel3 + type: texture + offset: 0x2FF54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_103_tlut_wheel_3 +bowser_kart_frame104_wheel0: + symbol: gKartBowser104Wheel0 + type: texture + offset: 0x30788 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_104_tlut_wheel_0 +bowser_kart_frame104_wheel1: + symbol: gKartBowser104Wheel1 + type: texture + offset: 0x30788 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_104_tlut_wheel_1 +bowser_kart_frame104_wheel2: + symbol: gKartBowser104Wheel2 + type: texture + offset: 0x30788 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_104_tlut_wheel_2 +bowser_kart_frame104_wheel3: + symbol: gKartBowser104Wheel3 + type: texture + offset: 0x30788 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_104_tlut_wheel_3 +bowser_kart_frame105_wheel0: + symbol: gKartBowser105Wheel0 + type: texture + offset: 0x30FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_105_tlut_wheel_0 +bowser_kart_frame105_wheel1: + symbol: gKartBowser105Wheel1 + type: texture + offset: 0x30FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_105_tlut_wheel_1 +bowser_kart_frame105_wheel2: + symbol: gKartBowser105Wheel2 + type: texture + offset: 0x30FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_105_tlut_wheel_2 +bowser_kart_frame105_wheel3: + symbol: gKartBowser105Wheel3 + type: texture + offset: 0x30FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_105_tlut_wheel_3 +bowser_kart_frame106_wheel0: + symbol: gKartBowser106Wheel0 + type: texture + offset: 0x316B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_106_tlut_wheel_0 +bowser_kart_frame106_wheel1: + symbol: gKartBowser106Wheel1 + type: texture + offset: 0x316B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_106_tlut_wheel_1 +bowser_kart_frame106_wheel2: + symbol: gKartBowser106Wheel2 + type: texture + offset: 0x316B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_106_tlut_wheel_2 +bowser_kart_frame106_wheel3: + symbol: gKartBowser106Wheel3 + type: texture + offset: 0x316B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_106_tlut_wheel_3 +bowser_kart_frame107_wheel0: + symbol: gKartBowser107Wheel0 + type: texture + offset: 0x31DC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_107_tlut_wheel_0 +bowser_kart_frame107_wheel1: + symbol: gKartBowser107Wheel1 + type: texture + offset: 0x31DC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_107_tlut_wheel_1 +bowser_kart_frame107_wheel2: + symbol: gKartBowser107Wheel2 + type: texture + offset: 0x31DC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_107_tlut_wheel_2 +bowser_kart_frame107_wheel3: + symbol: gKartBowser107Wheel3 + type: texture + offset: 0x31DC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_107_tlut_wheel_3 +bowser_kart_frame108_wheel0: + symbol: gKartBowser108Wheel0 + type: texture + offset: 0x324D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_108_tlut_wheel_0 +bowser_kart_frame108_wheel1: + symbol: gKartBowser108Wheel1 + type: texture + offset: 0x324D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_108_tlut_wheel_1 +bowser_kart_frame108_wheel2: + symbol: gKartBowser108Wheel2 + type: texture + offset: 0x324D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_108_tlut_wheel_2 +bowser_kart_frame108_wheel3: + symbol: gKartBowser108Wheel3 + type: texture + offset: 0x324D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_108_tlut_wheel_3 +bowser_kart_frame109_wheel0: + symbol: gKartBowser109Wheel0 + type: texture + offset: 0x32BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_109_tlut_wheel_0 +bowser_kart_frame109_wheel1: + symbol: gKartBowser109Wheel1 + type: texture + offset: 0x32BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_109_tlut_wheel_1 +bowser_kart_frame109_wheel2: + symbol: gKartBowser109Wheel2 + type: texture + offset: 0x32BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_109_tlut_wheel_2 +bowser_kart_frame109_wheel3: + symbol: gKartBowser109Wheel3 + type: texture + offset: 0x32BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_109_tlut_wheel_3 +bowser_kart_frame110_wheel0: + symbol: gKartBowser110Wheel0 + type: texture + offset: 0x33320 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_110_tlut_wheel_0 +bowser_kart_frame110_wheel1: + symbol: gKartBowser110Wheel1 + type: texture + offset: 0x33320 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_110_tlut_wheel_1 +bowser_kart_frame110_wheel2: + symbol: gKartBowser110Wheel2 + type: texture + offset: 0x33320 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_110_tlut_wheel_2 +bowser_kart_frame110_wheel3: + symbol: gKartBowser110Wheel3 + type: texture + offset: 0x33320 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_110_tlut_wheel_3 +bowser_kart_frame111_wheel0: + symbol: gKartBowser111Wheel0 + type: texture + offset: 0x33A94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_111_tlut_wheel_0 +bowser_kart_frame111_wheel1: + symbol: gKartBowser111Wheel1 + type: texture + offset: 0x33A94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_111_tlut_wheel_1 +bowser_kart_frame111_wheel2: + symbol: gKartBowser111Wheel2 + type: texture + offset: 0x33A94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_111_tlut_wheel_2 +bowser_kart_frame111_wheel3: + symbol: gKartBowser111Wheel3 + type: texture + offset: 0x33A94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_111_tlut_wheel_3 +bowser_kart_frame112_wheel0: + symbol: gKartBowser112Wheel0 + type: texture + offset: 0x34224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_112_tlut_wheel_0 +bowser_kart_frame112_wheel1: + symbol: gKartBowser112Wheel1 + type: texture + offset: 0x34224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_112_tlut_wheel_1 +bowser_kart_frame112_wheel2: + symbol: gKartBowser112Wheel2 + type: texture + offset: 0x34224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_112_tlut_wheel_2 +bowser_kart_frame112_wheel3: + symbol: gKartBowser112Wheel3 + type: texture + offset: 0x34224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_112_tlut_wheel_3 +bowser_kart_frame113_wheel0: + symbol: gKartBowser113Wheel0 + type: texture + offset: 0x349D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_113_tlut_wheel_0 +bowser_kart_frame113_wheel1: + symbol: gKartBowser113Wheel1 + type: texture + offset: 0x349D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_113_tlut_wheel_1 +bowser_kart_frame113_wheel2: + symbol: gKartBowser113Wheel2 + type: texture + offset: 0x349D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_113_tlut_wheel_2 +bowser_kart_frame113_wheel3: + symbol: gKartBowser113Wheel3 + type: texture + offset: 0x349D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_113_tlut_wheel_3 +bowser_kart_frame114_wheel0: + symbol: gKartBowser114Wheel0 + type: texture + offset: 0x35198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_114_tlut_wheel_0 +bowser_kart_frame114_wheel1: + symbol: gKartBowser114Wheel1 + type: texture + offset: 0x35198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_114_tlut_wheel_1 +bowser_kart_frame114_wheel2: + symbol: gKartBowser114Wheel2 + type: texture + offset: 0x35198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_114_tlut_wheel_2 +bowser_kart_frame114_wheel3: + symbol: gKartBowser114Wheel3 + type: texture + offset: 0x35198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_114_tlut_wheel_3 +bowser_kart_frame115_wheel0: + symbol: gKartBowser115Wheel0 + type: texture + offset: 0x35970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_115_tlut_wheel_0 +bowser_kart_frame115_wheel1: + symbol: gKartBowser115Wheel1 + type: texture + offset: 0x35970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_115_tlut_wheel_1 +bowser_kart_frame115_wheel2: + symbol: gKartBowser115Wheel2 + type: texture + offset: 0x35970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_115_tlut_wheel_2 +bowser_kart_frame115_wheel3: + symbol: gKartBowser115Wheel3 + type: texture + offset: 0x35970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_115_tlut_wheel_3 +bowser_kart_frame116_wheel0: + symbol: gKartBowser116Wheel0 + type: texture + offset: 0x36150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_116_tlut_wheel_0 +bowser_kart_frame116_wheel1: + symbol: gKartBowser116Wheel1 + type: texture + offset: 0x36150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_116_tlut_wheel_1 +bowser_kart_frame116_wheel2: + symbol: gKartBowser116Wheel2 + type: texture + offset: 0x36150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_116_tlut_wheel_2 +bowser_kart_frame116_wheel3: + symbol: gKartBowser116Wheel3 + type: texture + offset: 0x36150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_116_tlut_wheel_3 +bowser_kart_frame117_wheel0: + symbol: gKartBowser117Wheel0 + type: texture + offset: 0x36970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_117_tlut_wheel_0 +bowser_kart_frame117_wheel1: + symbol: gKartBowser117Wheel1 + type: texture + offset: 0x36970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_117_tlut_wheel_1 +bowser_kart_frame117_wheel2: + symbol: gKartBowser117Wheel2 + type: texture + offset: 0x36970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_117_tlut_wheel_2 +bowser_kart_frame117_wheel3: + symbol: gKartBowser117Wheel3 + type: texture + offset: 0x36970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_117_tlut_wheel_3 +bowser_kart_frame118_wheel0: + symbol: gKartBowser118Wheel0 + type: texture + offset: 0x37174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_118_tlut_wheel_0 +bowser_kart_frame118_wheel1: + symbol: gKartBowser118Wheel1 + type: texture + offset: 0x37174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_118_tlut_wheel_1 +bowser_kart_frame118_wheel2: + symbol: gKartBowser118Wheel2 + type: texture + offset: 0x37174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_118_tlut_wheel_2 +bowser_kart_frame118_wheel3: + symbol: gKartBowser118Wheel3 + type: texture + offset: 0x37174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_118_tlut_wheel_3 +bowser_kart_frame119_wheel0: + symbol: gKartBowser119Wheel0 + type: texture + offset: 0x37998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_119_tlut_wheel_0 +bowser_kart_frame119_wheel1: + symbol: gKartBowser119Wheel1 + type: texture + offset: 0x37998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_119_tlut_wheel_1 +bowser_kart_frame119_wheel2: + symbol: gKartBowser119Wheel2 + type: texture + offset: 0x37998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_119_tlut_wheel_2 +bowser_kart_frame119_wheel3: + symbol: gKartBowser119Wheel3 + type: texture + offset: 0x37998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_119_tlut_wheel_3 +bowser_kart_frame120_wheel0: + symbol: gKartBowser120Wheel0 + type: texture + offset: 0x381D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_120_tlut_wheel_0 +bowser_kart_frame120_wheel1: + symbol: gKartBowser120Wheel1 + type: texture + offset: 0x381D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_120_tlut_wheel_1 +bowser_kart_frame120_wheel2: + symbol: gKartBowser120Wheel2 + type: texture + offset: 0x381D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_120_tlut_wheel_2 +bowser_kart_frame120_wheel3: + symbol: gKartBowser120Wheel3 + type: texture + offset: 0x381D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_120_tlut_wheel_3 +bowser_kart_frame121_wheel0: + symbol: gKartBowser121Wheel0 + type: texture + offset: 0x389F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_121_tlut_wheel_0 +bowser_kart_frame121_wheel1: + symbol: gKartBowser121Wheel1 + type: texture + offset: 0x389F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_121_tlut_wheel_1 +bowser_kart_frame121_wheel2: + symbol: gKartBowser121Wheel2 + type: texture + offset: 0x389F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_121_tlut_wheel_2 +bowser_kart_frame121_wheel3: + symbol: gKartBowser121Wheel3 + type: texture + offset: 0x389F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_121_tlut_wheel_3 +bowser_kart_frame122_wheel0: + symbol: gKartBowser122Wheel0 + type: texture + offset: 0x39234 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_122_tlut_wheel_0 +bowser_kart_frame122_wheel1: + symbol: gKartBowser122Wheel1 + type: texture + offset: 0x39234 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_122_tlut_wheel_1 +bowser_kart_frame122_wheel2: + symbol: gKartBowser122Wheel2 + type: texture + offset: 0x39234 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_122_tlut_wheel_2 +bowser_kart_frame122_wheel3: + symbol: gKartBowser122Wheel3 + type: texture + offset: 0x39234 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_122_tlut_wheel_3 +bowser_kart_frame123_wheel0: + symbol: gKartBowser123Wheel0 + type: texture + offset: 0x39A58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_123_tlut_wheel_0 +bowser_kart_frame123_wheel1: + symbol: gKartBowser123Wheel1 + type: texture + offset: 0x39A58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_123_tlut_wheel_1 +bowser_kart_frame123_wheel2: + symbol: gKartBowser123Wheel2 + type: texture + offset: 0x39A58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_123_tlut_wheel_2 +bowser_kart_frame123_wheel3: + symbol: gKartBowser123Wheel3 + type: texture + offset: 0x39A58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_123_tlut_wheel_3 +bowser_kart_frame124_wheel0: + symbol: gKartBowser124Wheel0 + type: texture + offset: 0x3A2A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_124_tlut_wheel_0 +bowser_kart_frame124_wheel1: + symbol: gKartBowser124Wheel1 + type: texture + offset: 0x3A2A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_124_tlut_wheel_1 +bowser_kart_frame124_wheel2: + symbol: gKartBowser124Wheel2 + type: texture + offset: 0x3A2A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_124_tlut_wheel_2 +bowser_kart_frame124_wheel3: + symbol: gKartBowser124Wheel3 + type: texture + offset: 0x3A2A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_124_tlut_wheel_3 +bowser_kart_frame125_wheel0: + symbol: gKartBowser125Wheel0 + type: texture + offset: 0x3AAC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_125_tlut_wheel_0 +bowser_kart_frame125_wheel1: + symbol: gKartBowser125Wheel1 + type: texture + offset: 0x3AAC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_125_tlut_wheel_1 +bowser_kart_frame125_wheel2: + symbol: gKartBowser125Wheel2 + type: texture + offset: 0x3AAC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_125_tlut_wheel_2 +bowser_kart_frame125_wheel3: + symbol: gKartBowser125Wheel3 + type: texture + offset: 0x3AAC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_125_tlut_wheel_3 +bowser_kart_frame126_wheel0: + symbol: gKartBowser126Wheel0 + type: texture + offset: 0x3B338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_126_tlut_wheel_0 +bowser_kart_frame126_wheel1: + symbol: gKartBowser126Wheel1 + type: texture + offset: 0x3B338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_126_tlut_wheel_1 +bowser_kart_frame126_wheel2: + symbol: gKartBowser126Wheel2 + type: texture + offset: 0x3B338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_126_tlut_wheel_2 +bowser_kart_frame126_wheel3: + symbol: gKartBowser126Wheel3 + type: texture + offset: 0x3B338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_126_tlut_wheel_3 +bowser_kart_frame127_wheel0: + symbol: gKartBowser127Wheel0 + type: texture + offset: 0x3BA44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_127_tlut_wheel_0 +bowser_kart_frame127_wheel1: + symbol: gKartBowser127Wheel1 + type: texture + offset: 0x3BA44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_127_tlut_wheel_1 +bowser_kart_frame127_wheel2: + symbol: gKartBowser127Wheel2 + type: texture + offset: 0x3BA44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_127_tlut_wheel_2 +bowser_kart_frame127_wheel3: + symbol: gKartBowser127Wheel3 + type: texture + offset: 0x3BA44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_127_tlut_wheel_3 +bowser_kart_frame128_wheel0: + symbol: gKartBowser128Wheel0 + type: texture + offset: 0x3C17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_128_tlut_wheel_0 +bowser_kart_frame128_wheel1: + symbol: gKartBowser128Wheel1 + type: texture + offset: 0x3C17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_128_tlut_wheel_1 +bowser_kart_frame128_wheel2: + symbol: gKartBowser128Wheel2 + type: texture + offset: 0x3C17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_128_tlut_wheel_2 +bowser_kart_frame128_wheel3: + symbol: gKartBowser128Wheel3 + type: texture + offset: 0x3C17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_128_tlut_wheel_3 +bowser_kart_frame129_wheel0: + symbol: gKartBowser129Wheel0 + type: texture + offset: 0x3C8A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_129_tlut_wheel_0 +bowser_kart_frame129_wheel1: + symbol: gKartBowser129Wheel1 + type: texture + offset: 0x3C8A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_129_tlut_wheel_1 +bowser_kart_frame129_wheel2: + symbol: gKartBowser129Wheel2 + type: texture + offset: 0x3C8A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_129_tlut_wheel_2 +bowser_kart_frame129_wheel3: + symbol: gKartBowser129Wheel3 + type: texture + offset: 0x3C8A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_129_tlut_wheel_3 +bowser_kart_frame130_wheel0: + symbol: gKartBowser130Wheel0 + type: texture + offset: 0x3CFE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_130_tlut_wheel_0 +bowser_kart_frame130_wheel1: + symbol: gKartBowser130Wheel1 + type: texture + offset: 0x3CFE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_130_tlut_wheel_1 +bowser_kart_frame130_wheel2: + symbol: gKartBowser130Wheel2 + type: texture + offset: 0x3CFE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_130_tlut_wheel_2 +bowser_kart_frame130_wheel3: + symbol: gKartBowser130Wheel3 + type: texture + offset: 0x3CFE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_130_tlut_wheel_3 +bowser_kart_frame131_wheel0: + symbol: gKartBowser131Wheel0 + type: texture + offset: 0x3D740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_131_tlut_wheel_0 +bowser_kart_frame131_wheel1: + symbol: gKartBowser131Wheel1 + type: texture + offset: 0x3D740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_131_tlut_wheel_1 +bowser_kart_frame131_wheel2: + symbol: gKartBowser131Wheel2 + type: texture + offset: 0x3D740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_131_tlut_wheel_2 +bowser_kart_frame131_wheel3: + symbol: gKartBowser131Wheel3 + type: texture + offset: 0x3D740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_131_tlut_wheel_3 +bowser_kart_frame132_wheel0: + symbol: gKartBowser132Wheel0 + type: texture + offset: 0x3DEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_132_tlut_wheel_0 +bowser_kart_frame132_wheel1: + symbol: gKartBowser132Wheel1 + type: texture + offset: 0x3DEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_132_tlut_wheel_1 +bowser_kart_frame132_wheel2: + symbol: gKartBowser132Wheel2 + type: texture + offset: 0x3DEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_132_tlut_wheel_2 +bowser_kart_frame132_wheel3: + symbol: gKartBowser132Wheel3 + type: texture + offset: 0x3DEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_132_tlut_wheel_3 +bowser_kart_frame133_wheel0: + symbol: gKartBowser133Wheel0 + type: texture + offset: 0x3E65C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_133_tlut_wheel_0 +bowser_kart_frame133_wheel1: + symbol: gKartBowser133Wheel1 + type: texture + offset: 0x3E65C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_133_tlut_wheel_1 +bowser_kart_frame133_wheel2: + symbol: gKartBowser133Wheel2 + type: texture + offset: 0x3E65C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_133_tlut_wheel_2 +bowser_kart_frame133_wheel3: + symbol: gKartBowser133Wheel3 + type: texture + offset: 0x3E65C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_133_tlut_wheel_3 +bowser_kart_frame134_wheel0: + symbol: gKartBowser134Wheel0 + type: texture + offset: 0x3EE24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_134_tlut_wheel_0 +bowser_kart_frame134_wheel1: + symbol: gKartBowser134Wheel1 + type: texture + offset: 0x3EE24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_134_tlut_wheel_1 +bowser_kart_frame134_wheel2: + symbol: gKartBowser134Wheel2 + type: texture + offset: 0x3EE24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_134_tlut_wheel_2 +bowser_kart_frame134_wheel3: + symbol: gKartBowser134Wheel3 + type: texture + offset: 0x3EE24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_134_tlut_wheel_3 +bowser_kart_frame135_wheel0: + symbol: gKartBowser135Wheel0 + type: texture + offset: 0x3F5F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_135_tlut_wheel_0 +bowser_kart_frame135_wheel1: + symbol: gKartBowser135Wheel1 + type: texture + offset: 0x3F5F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_135_tlut_wheel_1 +bowser_kart_frame135_wheel2: + symbol: gKartBowser135Wheel2 + type: texture + offset: 0x3F5F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_135_tlut_wheel_2 +bowser_kart_frame135_wheel3: + symbol: gKartBowser135Wheel3 + type: texture + offset: 0x3F5F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_135_tlut_wheel_3 +bowser_kart_frame136_wheel0: + symbol: gKartBowser136Wheel0 + type: texture + offset: 0x3FDEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_136_tlut_wheel_0 +bowser_kart_frame136_wheel1: + symbol: gKartBowser136Wheel1 + type: texture + offset: 0x3FDEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_136_tlut_wheel_1 +bowser_kart_frame136_wheel2: + symbol: gKartBowser136Wheel2 + type: texture + offset: 0x3FDEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_136_tlut_wheel_2 +bowser_kart_frame136_wheel3: + symbol: gKartBowser136Wheel3 + type: texture + offset: 0x3FDEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_136_tlut_wheel_3 +bowser_kart_frame137_wheel0: + symbol: gKartBowser137Wheel0 + type: texture + offset: 0x405E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_137_tlut_wheel_0 +bowser_kart_frame137_wheel1: + symbol: gKartBowser137Wheel1 + type: texture + offset: 0x405E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_137_tlut_wheel_1 +bowser_kart_frame137_wheel2: + symbol: gKartBowser137Wheel2 + type: texture + offset: 0x405E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_137_tlut_wheel_2 +bowser_kart_frame137_wheel3: + symbol: gKartBowser137Wheel3 + type: texture + offset: 0x405E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_137_tlut_wheel_3 +bowser_kart_frame138_wheel0: + symbol: gKartBowser138Wheel0 + type: texture + offset: 0x40E04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_138_tlut_wheel_0 +bowser_kart_frame138_wheel1: + symbol: gKartBowser138Wheel1 + type: texture + offset: 0x40E04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_138_tlut_wheel_1 +bowser_kart_frame138_wheel2: + symbol: gKartBowser138Wheel2 + type: texture + offset: 0x40E04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_138_tlut_wheel_2 +bowser_kart_frame138_wheel3: + symbol: gKartBowser138Wheel3 + type: texture + offset: 0x40E04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_138_tlut_wheel_3 +bowser_kart_frame139_wheel0: + symbol: gKartBowser139Wheel0 + type: texture + offset: 0x4163C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_139_tlut_wheel_0 +bowser_kart_frame139_wheel1: + symbol: gKartBowser139Wheel1 + type: texture + offset: 0x4163C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_139_tlut_wheel_1 +bowser_kart_frame139_wheel2: + symbol: gKartBowser139Wheel2 + type: texture + offset: 0x4163C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_139_tlut_wheel_2 +bowser_kart_frame139_wheel3: + symbol: gKartBowser139Wheel3 + type: texture + offset: 0x4163C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_139_tlut_wheel_3 +bowser_kart_frame140_wheel0: + symbol: gKartBowser140Wheel0 + type: texture + offset: 0x41E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_140_tlut_wheel_0 +bowser_kart_frame140_wheel1: + symbol: gKartBowser140Wheel1 + type: texture + offset: 0x41E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_140_tlut_wheel_1 +bowser_kart_frame140_wheel2: + symbol: gKartBowser140Wheel2 + type: texture + offset: 0x41E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_140_tlut_wheel_2 +bowser_kart_frame140_wheel3: + symbol: gKartBowser140Wheel3 + type: texture + offset: 0x41E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_140_tlut_wheel_3 +bowser_kart_frame141_wheel0: + symbol: gKartBowser141Wheel0 + type: texture + offset: 0x426C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_141_tlut_wheel_0 +bowser_kart_frame141_wheel1: + symbol: gKartBowser141Wheel1 + type: texture + offset: 0x426C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_141_tlut_wheel_1 +bowser_kart_frame141_wheel2: + symbol: gKartBowser141Wheel2 + type: texture + offset: 0x426C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_141_tlut_wheel_2 +bowser_kart_frame141_wheel3: + symbol: gKartBowser141Wheel3 + type: texture + offset: 0x426C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_141_tlut_wheel_3 +bowser_kart_frame142_wheel0: + symbol: gKartBowser142Wheel0 + type: texture + offset: 0x42F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_142_tlut_wheel_0 +bowser_kart_frame142_wheel1: + symbol: gKartBowser142Wheel1 + type: texture + offset: 0x42F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_142_tlut_wheel_1 +bowser_kart_frame142_wheel2: + symbol: gKartBowser142Wheel2 + type: texture + offset: 0x42F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_142_tlut_wheel_2 +bowser_kart_frame142_wheel3: + symbol: gKartBowser142Wheel3 + type: texture + offset: 0x42F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_142_tlut_wheel_3 +bowser_kart_frame143_wheel0: + symbol: gKartBowser143Wheel0 + type: texture + offset: 0x43744 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_143_tlut_wheel_0 +bowser_kart_frame143_wheel1: + symbol: gKartBowser143Wheel1 + type: texture + offset: 0x43744 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_143_tlut_wheel_1 +bowser_kart_frame143_wheel2: + symbol: gKartBowser143Wheel2 + type: texture + offset: 0x43744 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_143_tlut_wheel_2 +bowser_kart_frame143_wheel3: + symbol: gKartBowser143Wheel3 + type: texture + offset: 0x43744 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_143_tlut_wheel_3 +bowser_kart_frame144_wheel0: + symbol: gKartBowser144Wheel0 + type: texture + offset: 0x43F98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_144_tlut_wheel_0 +bowser_kart_frame144_wheel1: + symbol: gKartBowser144Wheel1 + type: texture + offset: 0x43F98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_144_tlut_wheel_1 +bowser_kart_frame144_wheel2: + symbol: gKartBowser144Wheel2 + type: texture + offset: 0x43F98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_144_tlut_wheel_2 +bowser_kart_frame144_wheel3: + symbol: gKartBowser144Wheel3 + type: texture + offset: 0x43F98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_144_tlut_wheel_3 +bowser_kart_frame145_wheel0: + symbol: gKartBowser145Wheel0 + type: texture + offset: 0x44800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_145_tlut_wheel_0 +bowser_kart_frame145_wheel1: + symbol: gKartBowser145Wheel1 + type: texture + offset: 0x44800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_145_tlut_wheel_1 +bowser_kart_frame145_wheel2: + symbol: gKartBowser145Wheel2 + type: texture + offset: 0x44800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_145_tlut_wheel_2 +bowser_kart_frame145_wheel3: + symbol: gKartBowser145Wheel3 + type: texture + offset: 0x44800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_145_tlut_wheel_3 +bowser_kart_frame146_wheel0: + symbol: gKartBowser146Wheel0 + type: texture + offset: 0x45050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_146_tlut_wheel_0 +bowser_kart_frame146_wheel1: + symbol: gKartBowser146Wheel1 + type: texture + offset: 0x45050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_146_tlut_wheel_1 +bowser_kart_frame146_wheel2: + symbol: gKartBowser146Wheel2 + type: texture + offset: 0x45050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_146_tlut_wheel_2 +bowser_kart_frame146_wheel3: + symbol: gKartBowser146Wheel3 + type: texture + offset: 0x45050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_146_tlut_wheel_3 +bowser_kart_frame147_wheel0: + symbol: gKartBowser147Wheel0 + type: texture + offset: 0x458CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_147_tlut_wheel_0 +bowser_kart_frame147_wheel1: + symbol: gKartBowser147Wheel1 + type: texture + offset: 0x458CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_147_tlut_wheel_1 +bowser_kart_frame147_wheel2: + symbol: gKartBowser147Wheel2 + type: texture + offset: 0x458CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_147_tlut_wheel_2 +bowser_kart_frame147_wheel3: + symbol: gKartBowser147Wheel3 + type: texture + offset: 0x458CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_147_tlut_wheel_3 +bowser_kart_frame148_wheel0: + symbol: gKartBowser148Wheel0 + type: texture + offset: 0x4600C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_148_tlut_wheel_0 +bowser_kart_frame148_wheel1: + symbol: gKartBowser148Wheel1 + type: texture + offset: 0x4600C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_148_tlut_wheel_1 +bowser_kart_frame148_wheel2: + symbol: gKartBowser148Wheel2 + type: texture + offset: 0x4600C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_148_tlut_wheel_2 +bowser_kart_frame148_wheel3: + symbol: gKartBowser148Wheel3 + type: texture + offset: 0x4600C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_148_tlut_wheel_3 +bowser_kart_frame149_wheel0: + symbol: gKartBowser149Wheel0 + type: texture + offset: 0x46754 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_149_tlut_wheel_0 +bowser_kart_frame149_wheel1: + symbol: gKartBowser149Wheel1 + type: texture + offset: 0x46754 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_149_tlut_wheel_1 +bowser_kart_frame149_wheel2: + symbol: gKartBowser149Wheel2 + type: texture + offset: 0x46754 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_149_tlut_wheel_2 +bowser_kart_frame149_wheel3: + symbol: gKartBowser149Wheel3 + type: texture + offset: 0x46754 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_149_tlut_wheel_3 +bowser_kart_frame150_wheel0: + symbol: gKartBowser150Wheel0 + type: texture + offset: 0x46EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_150_tlut_wheel_0 +bowser_kart_frame150_wheel1: + symbol: gKartBowser150Wheel1 + type: texture + offset: 0x46EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_150_tlut_wheel_1 +bowser_kart_frame150_wheel2: + symbol: gKartBowser150Wheel2 + type: texture + offset: 0x46EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_150_tlut_wheel_2 +bowser_kart_frame150_wheel3: + symbol: gKartBowser150Wheel3 + type: texture + offset: 0x46EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_150_tlut_wheel_3 +bowser_kart_frame151_wheel0: + symbol: gKartBowser151Wheel0 + type: texture + offset: 0x47614 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_151_tlut_wheel_0 +bowser_kart_frame151_wheel1: + symbol: gKartBowser151Wheel1 + type: texture + offset: 0x47614 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_151_tlut_wheel_1 +bowser_kart_frame151_wheel2: + symbol: gKartBowser151Wheel2 + type: texture + offset: 0x47614 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_151_tlut_wheel_2 +bowser_kart_frame151_wheel3: + symbol: gKartBowser151Wheel3 + type: texture + offset: 0x47614 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_151_tlut_wheel_3 +bowser_kart_frame152_wheel0: + symbol: gKartBowser152Wheel0 + type: texture + offset: 0x47D94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_152_tlut_wheel_0 +bowser_kart_frame152_wheel1: + symbol: gKartBowser152Wheel1 + type: texture + offset: 0x47D94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_152_tlut_wheel_1 +bowser_kart_frame152_wheel2: + symbol: gKartBowser152Wheel2 + type: texture + offset: 0x47D94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_152_tlut_wheel_2 +bowser_kart_frame152_wheel3: + symbol: gKartBowser152Wheel3 + type: texture + offset: 0x47D94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_152_tlut_wheel_3 +bowser_kart_frame153_wheel0: + symbol: gKartBowser153Wheel0 + type: texture + offset: 0x4854C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_153_tlut_wheel_0 +bowser_kart_frame153_wheel1: + symbol: gKartBowser153Wheel1 + type: texture + offset: 0x4854C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_153_tlut_wheel_1 +bowser_kart_frame153_wheel2: + symbol: gKartBowser153Wheel2 + type: texture + offset: 0x4854C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_153_tlut_wheel_2 +bowser_kart_frame153_wheel3: + symbol: gKartBowser153Wheel3 + type: texture + offset: 0x4854C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_153_tlut_wheel_3 +bowser_kart_frame154_wheel0: + symbol: gKartBowser154Wheel0 + type: texture + offset: 0x48D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_154_tlut_wheel_0 +bowser_kart_frame154_wheel1: + symbol: gKartBowser154Wheel1 + type: texture + offset: 0x48D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_154_tlut_wheel_1 +bowser_kart_frame154_wheel2: + symbol: gKartBowser154Wheel2 + type: texture + offset: 0x48D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_154_tlut_wheel_2 +bowser_kart_frame154_wheel3: + symbol: gKartBowser154Wheel3 + type: texture + offset: 0x48D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_154_tlut_wheel_3 +bowser_kart_frame155_wheel0: + symbol: gKartBowser155Wheel0 + type: texture + offset: 0x4951C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_155_tlut_wheel_0 +bowser_kart_frame155_wheel1: + symbol: gKartBowser155Wheel1 + type: texture + offset: 0x4951C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_155_tlut_wheel_1 +bowser_kart_frame155_wheel2: + symbol: gKartBowser155Wheel2 + type: texture + offset: 0x4951C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_155_tlut_wheel_2 +bowser_kart_frame155_wheel3: + symbol: gKartBowser155Wheel3 + type: texture + offset: 0x4951C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_155_tlut_wheel_3 +bowser_kart_frame156_wheel0: + symbol: gKartBowser156Wheel0 + type: texture + offset: 0x49D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_156_tlut_wheel_0 +bowser_kart_frame156_wheel1: + symbol: gKartBowser156Wheel1 + type: texture + offset: 0x49D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_156_tlut_wheel_1 +bowser_kart_frame156_wheel2: + symbol: gKartBowser156Wheel2 + type: texture + offset: 0x49D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_156_tlut_wheel_2 +bowser_kart_frame156_wheel3: + symbol: gKartBowser156Wheel3 + type: texture + offset: 0x49D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_156_tlut_wheel_3 +bowser_kart_frame157_wheel0: + symbol: gKartBowser157Wheel0 + type: texture + offset: 0x4A50C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_157_tlut_wheel_0 +bowser_kart_frame157_wheel1: + symbol: gKartBowser157Wheel1 + type: texture + offset: 0x4A50C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_157_tlut_wheel_1 +bowser_kart_frame157_wheel2: + symbol: gKartBowser157Wheel2 + type: texture + offset: 0x4A50C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_157_tlut_wheel_2 +bowser_kart_frame157_wheel3: + symbol: gKartBowser157Wheel3 + type: texture + offset: 0x4A50C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_157_tlut_wheel_3 +bowser_kart_frame158_wheel0: + symbol: gKartBowser158Wheel0 + type: texture + offset: 0x4AD0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_158_tlut_wheel_0 +bowser_kart_frame158_wheel1: + symbol: gKartBowser158Wheel1 + type: texture + offset: 0x4AD0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_158_tlut_wheel_1 +bowser_kart_frame158_wheel2: + symbol: gKartBowser158Wheel2 + type: texture + offset: 0x4AD0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_158_tlut_wheel_2 +bowser_kart_frame158_wheel3: + symbol: gKartBowser158Wheel3 + type: texture + offset: 0x4AD0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_158_tlut_wheel_3 +bowser_kart_frame159_wheel0: + symbol: gKartBowser159Wheel0 + type: texture + offset: 0x4B544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_159_tlut_wheel_0 +bowser_kart_frame159_wheel1: + symbol: gKartBowser159Wheel1 + type: texture + offset: 0x4B544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_159_tlut_wheel_1 +bowser_kart_frame159_wheel2: + symbol: gKartBowser159Wheel2 + type: texture + offset: 0x4B544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_159_tlut_wheel_2 +bowser_kart_frame159_wheel3: + symbol: gKartBowser159Wheel3 + type: texture + offset: 0x4B544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_159_tlut_wheel_3 +bowser_kart_frame160_wheel0: + symbol: gKartBowser160Wheel0 + type: texture + offset: 0x4BD80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_160_tlut_wheel_0 +bowser_kart_frame160_wheel1: + symbol: gKartBowser160Wheel1 + type: texture + offset: 0x4BD80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_160_tlut_wheel_1 +bowser_kart_frame160_wheel2: + symbol: gKartBowser160Wheel2 + type: texture + offset: 0x4BD80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_160_tlut_wheel_2 +bowser_kart_frame160_wheel3: + symbol: gKartBowser160Wheel3 + type: texture + offset: 0x4BD80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_160_tlut_wheel_3 +bowser_kart_frame161_wheel0: + symbol: gKartBowser161Wheel0 + type: texture + offset: 0x4C5F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_161_tlut_wheel_0 +bowser_kart_frame161_wheel1: + symbol: gKartBowser161Wheel1 + type: texture + offset: 0x4C5F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_161_tlut_wheel_1 +bowser_kart_frame161_wheel2: + symbol: gKartBowser161Wheel2 + type: texture + offset: 0x4C5F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_161_tlut_wheel_2 +bowser_kart_frame161_wheel3: + symbol: gKartBowser161Wheel3 + type: texture + offset: 0x4C5F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_161_tlut_wheel_3 +bowser_kart_frame162_wheel0: + symbol: gKartBowser162Wheel0 + type: texture + offset: 0x4CE5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_162_tlut_wheel_0 +bowser_kart_frame162_wheel1: + symbol: gKartBowser162Wheel1 + type: texture + offset: 0x4CE5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_162_tlut_wheel_1 +bowser_kart_frame162_wheel2: + symbol: gKartBowser162Wheel2 + type: texture + offset: 0x4CE5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_162_tlut_wheel_2 +bowser_kart_frame162_wheel3: + symbol: gKartBowser162Wheel3 + type: texture + offset: 0x4CE5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_162_tlut_wheel_3 +bowser_kart_frame163_wheel0: + symbol: gKartBowser163Wheel0 + type: texture + offset: 0x4D6A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_163_tlut_wheel_0 +bowser_kart_frame163_wheel1: + symbol: gKartBowser163Wheel1 + type: texture + offset: 0x4D6A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_163_tlut_wheel_1 +bowser_kart_frame163_wheel2: + symbol: gKartBowser163Wheel2 + type: texture + offset: 0x4D6A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_163_tlut_wheel_2 +bowser_kart_frame163_wheel3: + symbol: gKartBowser163Wheel3 + type: texture + offset: 0x4D6A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_163_tlut_wheel_3 +bowser_kart_frame164_wheel0: + symbol: gKartBowser164Wheel0 + type: texture + offset: 0x4DF14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_164_tlut_wheel_0 +bowser_kart_frame164_wheel1: + symbol: gKartBowser164Wheel1 + type: texture + offset: 0x4DF14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_164_tlut_wheel_1 +bowser_kart_frame164_wheel2: + symbol: gKartBowser164Wheel2 + type: texture + offset: 0x4DF14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_164_tlut_wheel_2 +bowser_kart_frame164_wheel3: + symbol: gKartBowser164Wheel3 + type: texture + offset: 0x4DF14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_164_tlut_wheel_3 +bowser_kart_frame165_wheel0: + symbol: gKartBowser165Wheel0 + type: texture + offset: 0x4E788 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_165_tlut_wheel_0 +bowser_kart_frame165_wheel1: + symbol: gKartBowser165Wheel1 + type: texture + offset: 0x4E788 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_165_tlut_wheel_1 +bowser_kart_frame165_wheel2: + symbol: gKartBowser165Wheel2 + type: texture + offset: 0x4E788 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_165_tlut_wheel_2 +bowser_kart_frame165_wheel3: + symbol: gKartBowser165Wheel3 + type: texture + offset: 0x4E788 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_165_tlut_wheel_3 +bowser_kart_frame166_wheel0: + symbol: gKartBowser166Wheel0 + type: texture + offset: 0x4F028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_166_tlut_wheel_0 +bowser_kart_frame166_wheel1: + symbol: gKartBowser166Wheel1 + type: texture + offset: 0x4F028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_166_tlut_wheel_1 +bowser_kart_frame166_wheel2: + symbol: gKartBowser166Wheel2 + type: texture + offset: 0x4F028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_166_tlut_wheel_2 +bowser_kart_frame166_wheel3: + symbol: gKartBowser166Wheel3 + type: texture + offset: 0x4F028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_166_tlut_wheel_3 +bowser_kart_frame167_wheel0: + symbol: gKartBowser167Wheel0 + type: texture + offset: 0x4F8B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_167_tlut_wheel_0 +bowser_kart_frame167_wheel1: + symbol: gKartBowser167Wheel1 + type: texture + offset: 0x4F8B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_167_tlut_wheel_1 +bowser_kart_frame167_wheel2: + symbol: gKartBowser167Wheel2 + type: texture + offset: 0x4F8B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_167_tlut_wheel_2 +bowser_kart_frame167_wheel3: + symbol: gKartBowser167Wheel3 + type: texture + offset: 0x4F8B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_167_tlut_wheel_3 +bowser_kart_frame168_wheel0: + symbol: gKartBowser168Wheel0 + type: texture + offset: 0x50148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_168_tlut_wheel_0 +bowser_kart_frame168_wheel1: + symbol: gKartBowser168Wheel1 + type: texture + offset: 0x50148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_168_tlut_wheel_1 +bowser_kart_frame168_wheel2: + symbol: gKartBowser168Wheel2 + type: texture + offset: 0x50148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_168_tlut_wheel_2 +bowser_kart_frame168_wheel3: + symbol: gKartBowser168Wheel3 + type: texture + offset: 0x50148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_168_tlut_wheel_3 +bowser_kart_frame169_wheel0: + symbol: gKartBowser169Wheel0 + type: texture + offset: 0x5089C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_169_tlut_wheel_0 +bowser_kart_frame169_wheel1: + symbol: gKartBowser169Wheel1 + type: texture + offset: 0x5089C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_169_tlut_wheel_1 +bowser_kart_frame169_wheel2: + symbol: gKartBowser169Wheel2 + type: texture + offset: 0x5089C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_169_tlut_wheel_2 +bowser_kart_frame169_wheel3: + symbol: gKartBowser169Wheel3 + type: texture + offset: 0x5089C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_169_tlut_wheel_3 +bowser_kart_frame170_wheel0: + symbol: gKartBowser170Wheel0 + type: texture + offset: 0x51014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_170_tlut_wheel_0 +bowser_kart_frame170_wheel1: + symbol: gKartBowser170Wheel1 + type: texture + offset: 0x51014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_170_tlut_wheel_1 +bowser_kart_frame170_wheel2: + symbol: gKartBowser170Wheel2 + type: texture + offset: 0x51014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_170_tlut_wheel_2 +bowser_kart_frame170_wheel3: + symbol: gKartBowser170Wheel3 + type: texture + offset: 0x51014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_170_tlut_wheel_3 +bowser_kart_frame171_wheel0: + symbol: gKartBowser171Wheel0 + type: texture + offset: 0x51790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_171_tlut_wheel_0 +bowser_kart_frame171_wheel1: + symbol: gKartBowser171Wheel1 + type: texture + offset: 0x51790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_171_tlut_wheel_1 +bowser_kart_frame171_wheel2: + symbol: gKartBowser171Wheel2 + type: texture + offset: 0x51790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_171_tlut_wheel_2 +bowser_kart_frame171_wheel3: + symbol: gKartBowser171Wheel3 + type: texture + offset: 0x51790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_171_tlut_wheel_3 +bowser_kart_frame172_wheel0: + symbol: gKartBowser172Wheel0 + type: texture + offset: 0x51F20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_172_tlut_wheel_0 +bowser_kart_frame172_wheel1: + symbol: gKartBowser172Wheel1 + type: texture + offset: 0x51F20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_172_tlut_wheel_1 +bowser_kart_frame172_wheel2: + symbol: gKartBowser172Wheel2 + type: texture + offset: 0x51F20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_172_tlut_wheel_2 +bowser_kart_frame172_wheel3: + symbol: gKartBowser172Wheel3 + type: texture + offset: 0x51F20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_172_tlut_wheel_3 +bowser_kart_frame173_wheel0: + symbol: gKartBowser173Wheel0 + type: texture + offset: 0x526F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_173_tlut_wheel_0 +bowser_kart_frame173_wheel1: + symbol: gKartBowser173Wheel1 + type: texture + offset: 0x526F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_173_tlut_wheel_1 +bowser_kart_frame173_wheel2: + symbol: gKartBowser173Wheel2 + type: texture + offset: 0x526F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_173_tlut_wheel_2 +bowser_kart_frame173_wheel3: + symbol: gKartBowser173Wheel3 + type: texture + offset: 0x526F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_173_tlut_wheel_3 +bowser_kart_frame174_wheel0: + symbol: gKartBowser174Wheel0 + type: texture + offset: 0x52EBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_174_tlut_wheel_0 +bowser_kart_frame174_wheel1: + symbol: gKartBowser174Wheel1 + type: texture + offset: 0x52EBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_174_tlut_wheel_1 +bowser_kart_frame174_wheel2: + symbol: gKartBowser174Wheel2 + type: texture + offset: 0x52EBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_174_tlut_wheel_2 +bowser_kart_frame174_wheel3: + symbol: gKartBowser174Wheel3 + type: texture + offset: 0x52EBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_174_tlut_wheel_3 +bowser_kart_frame175_wheel0: + symbol: gKartBowser175Wheel0 + type: texture + offset: 0x536AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_175_tlut_wheel_0 +bowser_kart_frame175_wheel1: + symbol: gKartBowser175Wheel1 + type: texture + offset: 0x536AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_175_tlut_wheel_1 +bowser_kart_frame175_wheel2: + symbol: gKartBowser175Wheel2 + type: texture + offset: 0x536AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_175_tlut_wheel_2 +bowser_kart_frame175_wheel3: + symbol: gKartBowser175Wheel3 + type: texture + offset: 0x536AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_175_tlut_wheel_3 +bowser_kart_frame176_wheel0: + symbol: gKartBowser176Wheel0 + type: texture + offset: 0x53EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_176_tlut_wheel_0 +bowser_kart_frame176_wheel1: + symbol: gKartBowser176Wheel1 + type: texture + offset: 0x53EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_176_tlut_wheel_1 +bowser_kart_frame176_wheel2: + symbol: gKartBowser176Wheel2 + type: texture + offset: 0x53EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_176_tlut_wheel_2 +bowser_kart_frame176_wheel3: + symbol: gKartBowser176Wheel3 + type: texture + offset: 0x53EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_176_tlut_wheel_3 +bowser_kart_frame177_wheel0: + symbol: gKartBowser177Wheel0 + type: texture + offset: 0x546BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_177_tlut_wheel_0 +bowser_kart_frame177_wheel1: + symbol: gKartBowser177Wheel1 + type: texture + offset: 0x546BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_177_tlut_wheel_1 +bowser_kart_frame177_wheel2: + symbol: gKartBowser177Wheel2 + type: texture + offset: 0x546BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_177_tlut_wheel_2 +bowser_kart_frame177_wheel3: + symbol: gKartBowser177Wheel3 + type: texture + offset: 0x546BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_177_tlut_wheel_3 +bowser_kart_frame178_wheel0: + symbol: gKartBowser178Wheel0 + type: texture + offset: 0x54EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_178_tlut_wheel_0 +bowser_kart_frame178_wheel1: + symbol: gKartBowser178Wheel1 + type: texture + offset: 0x54EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_178_tlut_wheel_1 +bowser_kart_frame178_wheel2: + symbol: gKartBowser178Wheel2 + type: texture + offset: 0x54EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_178_tlut_wheel_2 +bowser_kart_frame178_wheel3: + symbol: gKartBowser178Wheel3 + type: texture + offset: 0x54EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_178_tlut_wheel_3 +bowser_kart_frame179_wheel0: + symbol: gKartBowser179Wheel0 + type: texture + offset: 0x55718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_179_tlut_wheel_0 +bowser_kart_frame179_wheel1: + symbol: gKartBowser179Wheel1 + type: texture + offset: 0x55718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_179_tlut_wheel_1 +bowser_kart_frame179_wheel2: + symbol: gKartBowser179Wheel2 + type: texture + offset: 0x55718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_179_tlut_wheel_2 +bowser_kart_frame179_wheel3: + symbol: gKartBowser179Wheel3 + type: texture + offset: 0x55718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_179_tlut_wheel_3 +bowser_kart_frame180_wheel0: + symbol: gKartBowser180Wheel0 + type: texture + offset: 0x55F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_180_tlut_wheel_0 +bowser_kart_frame180_wheel1: + symbol: gKartBowser180Wheel1 + type: texture + offset: 0x55F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_180_tlut_wheel_1 +bowser_kart_frame180_wheel2: + symbol: gKartBowser180Wheel2 + type: texture + offset: 0x55F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_180_tlut_wheel_2 +bowser_kart_frame180_wheel3: + symbol: gKartBowser180Wheel3 + type: texture + offset: 0x55F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_180_tlut_wheel_3 +bowser_kart_frame181_wheel0: + symbol: gKartBowser181Wheel0 + type: texture + offset: 0x567C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_181_tlut_wheel_0 +bowser_kart_frame181_wheel1: + symbol: gKartBowser181Wheel1 + type: texture + offset: 0x567C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_181_tlut_wheel_1 +bowser_kart_frame181_wheel2: + symbol: gKartBowser181Wheel2 + type: texture + offset: 0x567C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_181_tlut_wheel_2 +bowser_kart_frame181_wheel3: + symbol: gKartBowser181Wheel3 + type: texture + offset: 0x567C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_181_tlut_wheel_3 +bowser_kart_frame182_wheel0: + symbol: gKartBowser182Wheel0 + type: texture + offset: 0x57038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_182_tlut_wheel_0 +bowser_kart_frame182_wheel1: + symbol: gKartBowser182Wheel1 + type: texture + offset: 0x57038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_182_tlut_wheel_1 +bowser_kart_frame182_wheel2: + symbol: gKartBowser182Wheel2 + type: texture + offset: 0x57038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_182_tlut_wheel_2 +bowser_kart_frame182_wheel3: + symbol: gKartBowser182Wheel3 + type: texture + offset: 0x57038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_182_tlut_wheel_3 +bowser_kart_frame183_wheel0: + symbol: gKartBowser183Wheel0 + type: texture + offset: 0x578CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_183_tlut_wheel_0 +bowser_kart_frame183_wheel1: + symbol: gKartBowser183Wheel1 + type: texture + offset: 0x578CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_183_tlut_wheel_1 +bowser_kart_frame183_wheel2: + symbol: gKartBowser183Wheel2 + type: texture + offset: 0x578CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_183_tlut_wheel_2 +bowser_kart_frame183_wheel3: + symbol: gKartBowser183Wheel3 + type: texture + offset: 0x578CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_183_tlut_wheel_3 +bowser_kart_frame184_wheel0: + symbol: gKartBowser184Wheel0 + type: texture + offset: 0x58158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_184_tlut_wheel_0 +bowser_kart_frame184_wheel1: + symbol: gKartBowser184Wheel1 + type: texture + offset: 0x58158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_184_tlut_wheel_1 +bowser_kart_frame184_wheel2: + symbol: gKartBowser184Wheel2 + type: texture + offset: 0x58158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_184_tlut_wheel_2 +bowser_kart_frame184_wheel3: + symbol: gKartBowser184Wheel3 + type: texture + offset: 0x58158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_184_tlut_wheel_3 +bowser_kart_frame185_wheel0: + symbol: gKartBowser185Wheel0 + type: texture + offset: 0x58A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_185_tlut_wheel_0 +bowser_kart_frame185_wheel1: + symbol: gKartBowser185Wheel1 + type: texture + offset: 0x58A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_185_tlut_wheel_1 +bowser_kart_frame185_wheel2: + symbol: gKartBowser185Wheel2 + type: texture + offset: 0x58A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_185_tlut_wheel_2 +bowser_kart_frame185_wheel3: + symbol: gKartBowser185Wheel3 + type: texture + offset: 0x58A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_185_tlut_wheel_3 +bowser_kart_frame186_wheel0: + symbol: gKartBowser186Wheel0 + type: texture + offset: 0x59288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_186_tlut_wheel_0 +bowser_kart_frame186_wheel1: + symbol: gKartBowser186Wheel1 + type: texture + offset: 0x59288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_186_tlut_wheel_1 +bowser_kart_frame186_wheel2: + symbol: gKartBowser186Wheel2 + type: texture + offset: 0x59288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_186_tlut_wheel_2 +bowser_kart_frame186_wheel3: + symbol: gKartBowser186Wheel3 + type: texture + offset: 0x59288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_186_tlut_wheel_3 +bowser_kart_frame187_wheel0: + symbol: gKartBowser187Wheel0 + type: texture + offset: 0x59B2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_187_tlut_wheel_0 +bowser_kart_frame187_wheel1: + symbol: gKartBowser187Wheel1 + type: texture + offset: 0x59B2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_187_tlut_wheel_1 +bowser_kart_frame187_wheel2: + symbol: gKartBowser187Wheel2 + type: texture + offset: 0x59B2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_187_tlut_wheel_2 +bowser_kart_frame187_wheel3: + symbol: gKartBowser187Wheel3 + type: texture + offset: 0x59B2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_187_tlut_wheel_3 +bowser_kart_frame188_wheel0: + symbol: gKartBowser188Wheel0 + type: texture + offset: 0x5A3C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_188_tlut_wheel_0 +bowser_kart_frame188_wheel1: + symbol: gKartBowser188Wheel1 + type: texture + offset: 0x5A3C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_188_tlut_wheel_1 +bowser_kart_frame188_wheel2: + symbol: gKartBowser188Wheel2 + type: texture + offset: 0x5A3C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_188_tlut_wheel_2 +bowser_kart_frame188_wheel3: + symbol: gKartBowser188Wheel3 + type: texture + offset: 0x5A3C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_188_tlut_wheel_3 +bowser_kart_frame189_wheel0: + symbol: gKartBowser189Wheel0 + type: texture + offset: 0x5AC78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_189_tlut_wheel_0 +bowser_kart_frame189_wheel1: + symbol: gKartBowser189Wheel1 + type: texture + offset: 0x5AC78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_189_tlut_wheel_1 +bowser_kart_frame189_wheel2: + symbol: gKartBowser189Wheel2 + type: texture + offset: 0x5AC78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_189_tlut_wheel_2 +bowser_kart_frame189_wheel3: + symbol: gKartBowser189Wheel3 + type: texture + offset: 0x5AC78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_189_tlut_wheel_3 +bowser_kart_frame190_wheel0: + symbol: gKartBowser190Wheel0 + type: texture + offset: 0x5B2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_190_tlut_wheel_0 +bowser_kart_frame190_wheel1: + symbol: gKartBowser190Wheel1 + type: texture + offset: 0x5B2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_190_tlut_wheel_1 +bowser_kart_frame190_wheel2: + symbol: gKartBowser190Wheel2 + type: texture + offset: 0x5B2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_190_tlut_wheel_2 +bowser_kart_frame190_wheel3: + symbol: gKartBowser190Wheel3 + type: texture + offset: 0x5B2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_190_tlut_wheel_3 +bowser_kart_frame191_wheel0: + symbol: gKartBowser191Wheel0 + type: texture + offset: 0x5B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_191_tlut_wheel_0 +bowser_kart_frame191_wheel1: + symbol: gKartBowser191Wheel1 + type: texture + offset: 0x5B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_191_tlut_wheel_1 +bowser_kart_frame191_wheel2: + symbol: gKartBowser191Wheel2 + type: texture + offset: 0x5B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_191_tlut_wheel_2 +bowser_kart_frame191_wheel3: + symbol: gKartBowser191Wheel3 + type: texture + offset: 0x5B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_191_tlut_wheel_3 +bowser_kart_frame192_wheel0: + symbol: gKartBowser192Wheel0 + type: texture + offset: 0x5C0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_192_tlut_wheel_0 +bowser_kart_frame192_wheel1: + symbol: gKartBowser192Wheel1 + type: texture + offset: 0x5C0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_192_tlut_wheel_1 +bowser_kart_frame192_wheel2: + symbol: gKartBowser192Wheel2 + type: texture + offset: 0x5C0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_192_tlut_wheel_2 +bowser_kart_frame192_wheel3: + symbol: gKartBowser192Wheel3 + type: texture + offset: 0x5C0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_192_tlut_wheel_3 +bowser_kart_frame193_wheel0: + symbol: gKartBowser193Wheel0 + type: texture + offset: 0x5C824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_193_tlut_wheel_0 +bowser_kart_frame193_wheel1: + symbol: gKartBowser193Wheel1 + type: texture + offset: 0x5C824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_193_tlut_wheel_1 +bowser_kart_frame193_wheel2: + symbol: gKartBowser193Wheel2 + type: texture + offset: 0x5C824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_193_tlut_wheel_2 +bowser_kart_frame193_wheel3: + symbol: gKartBowser193Wheel3 + type: texture + offset: 0x5C824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_193_tlut_wheel_3 +bowser_kart_frame194_wheel0: + symbol: gKartBowser194Wheel0 + type: texture + offset: 0x5CFB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_194_tlut_wheel_0 +bowser_kart_frame194_wheel1: + symbol: gKartBowser194Wheel1 + type: texture + offset: 0x5CFB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_194_tlut_wheel_1 +bowser_kart_frame194_wheel2: + symbol: gKartBowser194Wheel2 + type: texture + offset: 0x5CFB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_194_tlut_wheel_2 +bowser_kart_frame194_wheel3: + symbol: gKartBowser194Wheel3 + type: texture + offset: 0x5CFB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_194_tlut_wheel_3 +bowser_kart_frame195_wheel0: + symbol: gKartBowser195Wheel0 + type: texture + offset: 0x5D758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_195_tlut_wheel_0 +bowser_kart_frame195_wheel1: + symbol: gKartBowser195Wheel1 + type: texture + offset: 0x5D758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_195_tlut_wheel_1 +bowser_kart_frame195_wheel2: + symbol: gKartBowser195Wheel2 + type: texture + offset: 0x5D758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_195_tlut_wheel_2 +bowser_kart_frame195_wheel3: + symbol: gKartBowser195Wheel3 + type: texture + offset: 0x5D758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_195_tlut_wheel_3 +bowser_kart_frame196_wheel0: + symbol: gKartBowser196Wheel0 + type: texture + offset: 0x5DF3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_196_tlut_wheel_0 +bowser_kart_frame196_wheel1: + symbol: gKartBowser196Wheel1 + type: texture + offset: 0x5DF3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_196_tlut_wheel_1 +bowser_kart_frame196_wheel2: + symbol: gKartBowser196Wheel2 + type: texture + offset: 0x5DF3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_196_tlut_wheel_2 +bowser_kart_frame196_wheel3: + symbol: gKartBowser196Wheel3 + type: texture + offset: 0x5DF3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_196_tlut_wheel_3 +bowser_kart_frame197_wheel0: + symbol: gKartBowser197Wheel0 + type: texture + offset: 0x5E750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_197_tlut_wheel_0 +bowser_kart_frame197_wheel1: + symbol: gKartBowser197Wheel1 + type: texture + offset: 0x5E750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_197_tlut_wheel_1 +bowser_kart_frame197_wheel2: + symbol: gKartBowser197Wheel2 + type: texture + offset: 0x5E750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_197_tlut_wheel_2 +bowser_kart_frame197_wheel3: + symbol: gKartBowser197Wheel3 + type: texture + offset: 0x5E750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_197_tlut_wheel_3 +bowser_kart_frame198_wheel0: + symbol: gKartBowser198Wheel0 + type: texture + offset: 0x5EF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_198_tlut_wheel_0 +bowser_kart_frame198_wheel1: + symbol: gKartBowser198Wheel1 + type: texture + offset: 0x5EF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_198_tlut_wheel_1 +bowser_kart_frame198_wheel2: + symbol: gKartBowser198Wheel2 + type: texture + offset: 0x5EF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_198_tlut_wheel_2 +bowser_kart_frame198_wheel3: + symbol: gKartBowser198Wheel3 + type: texture + offset: 0x5EF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_198_tlut_wheel_3 +bowser_kart_frame199_wheel0: + symbol: gKartBowser199Wheel0 + type: texture + offset: 0x5F810 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_199_tlut_wheel_0 +bowser_kart_frame199_wheel1: + symbol: gKartBowser199Wheel1 + type: texture + offset: 0x5F810 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_199_tlut_wheel_1 +bowser_kart_frame199_wheel2: + symbol: gKartBowser199Wheel2 + type: texture + offset: 0x5F810 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_199_tlut_wheel_2 +bowser_kart_frame199_wheel3: + symbol: gKartBowser199Wheel3 + type: texture + offset: 0x5F810 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_199_tlut_wheel_3 +bowser_kart_frame200_wheel0: + symbol: gKartBowser200Wheel0 + type: texture + offset: 0x600B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_200_tlut_wheel_0 +bowser_kart_frame200_wheel1: + symbol: gKartBowser200Wheel1 + type: texture + offset: 0x600B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_200_tlut_wheel_1 +bowser_kart_frame200_wheel2: + symbol: gKartBowser200Wheel2 + type: texture + offset: 0x600B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_200_tlut_wheel_2 +bowser_kart_frame200_wheel3: + symbol: gKartBowser200Wheel3 + type: texture + offset: 0x600B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_200_tlut_wheel_3 +bowser_kart_frame201_wheel0: + symbol: gKartBowser201Wheel0 + type: texture + offset: 0x6098C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_201_tlut_wheel_0 +bowser_kart_frame201_wheel1: + symbol: gKartBowser201Wheel1 + type: texture + offset: 0x6098C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_201_tlut_wheel_1 +bowser_kart_frame201_wheel2: + symbol: gKartBowser201Wheel2 + type: texture + offset: 0x6098C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_201_tlut_wheel_2 +bowser_kart_frame201_wheel3: + symbol: gKartBowser201Wheel3 + type: texture + offset: 0x6098C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_201_tlut_wheel_3 +bowser_kart_frame202_wheel0: + symbol: gKartBowser202Wheel0 + type: texture + offset: 0x6125C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_202_tlut_wheel_0 +bowser_kart_frame202_wheel1: + symbol: gKartBowser202Wheel1 + type: texture + offset: 0x6125C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_202_tlut_wheel_1 +bowser_kart_frame202_wheel2: + symbol: gKartBowser202Wheel2 + type: texture + offset: 0x6125C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_202_tlut_wheel_2 +bowser_kart_frame202_wheel3: + symbol: gKartBowser202Wheel3 + type: texture + offset: 0x6125C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_202_tlut_wheel_3 +bowser_kart_frame203_wheel0: + symbol: gKartBowser203Wheel0 + type: texture + offset: 0x61B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_203_tlut_wheel_0 +bowser_kart_frame203_wheel1: + symbol: gKartBowser203Wheel1 + type: texture + offset: 0x61B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_203_tlut_wheel_1 +bowser_kart_frame203_wheel2: + symbol: gKartBowser203Wheel2 + type: texture + offset: 0x61B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_203_tlut_wheel_2 +bowser_kart_frame203_wheel3: + symbol: gKartBowser203Wheel3 + type: texture + offset: 0x61B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_203_tlut_wheel_3 +bowser_kart_frame204_wheel0: + symbol: gKartBowser204Wheel0 + type: texture + offset: 0x62418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_204_tlut_wheel_0 +bowser_kart_frame204_wheel1: + symbol: gKartBowser204Wheel1 + type: texture + offset: 0x62418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_204_tlut_wheel_1 +bowser_kart_frame204_wheel2: + symbol: gKartBowser204Wheel2 + type: texture + offset: 0x62418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_204_tlut_wheel_2 +bowser_kart_frame204_wheel3: + symbol: gKartBowser204Wheel3 + type: texture + offset: 0x62418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_204_tlut_wheel_3 +bowser_kart_frame205_wheel0: + symbol: gKartBowser205Wheel0 + type: texture + offset: 0x62CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_205_tlut_wheel_0 +bowser_kart_frame205_wheel1: + symbol: gKartBowser205Wheel1 + type: texture + offset: 0x62CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_205_tlut_wheel_1 +bowser_kart_frame205_wheel2: + symbol: gKartBowser205Wheel2 + type: texture + offset: 0x62CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_205_tlut_wheel_2 +bowser_kart_frame205_wheel3: + symbol: gKartBowser205Wheel3 + type: texture + offset: 0x62CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_205_tlut_wheel_3 +bowser_kart_frame206_wheel0: + symbol: gKartBowser206Wheel0 + type: texture + offset: 0x63538 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_206_tlut_wheel_0 +bowser_kart_frame206_wheel1: + symbol: gKartBowser206Wheel1 + type: texture + offset: 0x63538 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_206_tlut_wheel_1 +bowser_kart_frame206_wheel2: + symbol: gKartBowser206Wheel2 + type: texture + offset: 0x63538 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_206_tlut_wheel_2 +bowser_kart_frame206_wheel3: + symbol: gKartBowser206Wheel3 + type: texture + offset: 0x63538 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_206_tlut_wheel_3 +bowser_kart_frame207_wheel0: + symbol: gKartBowser207Wheel0 + type: texture + offset: 0x63D78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_207_tlut_wheel_0 +bowser_kart_frame207_wheel1: + symbol: gKartBowser207Wheel1 + type: texture + offset: 0x63D78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_207_tlut_wheel_1 +bowser_kart_frame207_wheel2: + symbol: gKartBowser207Wheel2 + type: texture + offset: 0x63D78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_207_tlut_wheel_2 +bowser_kart_frame207_wheel3: + symbol: gKartBowser207Wheel3 + type: texture + offset: 0x63D78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_207_tlut_wheel_3 +bowser_kart_frame208_wheel0: + symbol: gKartBowser208Wheel0 + type: texture + offset: 0x645C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_208_tlut_wheel_0 +bowser_kart_frame208_wheel1: + symbol: gKartBowser208Wheel1 + type: texture + offset: 0x645C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_208_tlut_wheel_1 +bowser_kart_frame208_wheel2: + symbol: gKartBowser208Wheel2 + type: texture + offset: 0x645C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_208_tlut_wheel_2 +bowser_kart_frame208_wheel3: + symbol: gKartBowser208Wheel3 + type: texture + offset: 0x645C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_208_tlut_wheel_3 +bowser_kart_frame209_wheel0: + symbol: gKartBowser209Wheel0 + type: texture + offset: 0x64DF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_209_tlut_wheel_0 +bowser_kart_frame209_wheel1: + symbol: gKartBowser209Wheel1 + type: texture + offset: 0x64DF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_209_tlut_wheel_1 +bowser_kart_frame209_wheel2: + symbol: gKartBowser209Wheel2 + type: texture + offset: 0x64DF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_209_tlut_wheel_2 +bowser_kart_frame209_wheel3: + symbol: gKartBowser209Wheel3 + type: texture + offset: 0x64DF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_209_tlut_wheel_3 +bowser_kart_frame210_wheel0: + symbol: gKartBowser210Wheel0 + type: texture + offset: 0x654B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_210_tlut_wheel_0 +bowser_kart_frame210_wheel1: + symbol: gKartBowser210Wheel1 + type: texture + offset: 0x654B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_210_tlut_wheel_1 +bowser_kart_frame210_wheel2: + symbol: gKartBowser210Wheel2 + type: texture + offset: 0x654B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_210_tlut_wheel_2 +bowser_kart_frame210_wheel3: + symbol: gKartBowser210Wheel3 + type: texture + offset: 0x654B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_210_tlut_wheel_3 +bowser_kart_frame211_wheel0: + symbol: gKartBowser211Wheel0 + type: texture + offset: 0x65BC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_211_tlut_wheel_0 +bowser_kart_frame211_wheel1: + symbol: gKartBowser211Wheel1 + type: texture + offset: 0x65BC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_211_tlut_wheel_1 +bowser_kart_frame211_wheel2: + symbol: gKartBowser211Wheel2 + type: texture + offset: 0x65BC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_211_tlut_wheel_2 +bowser_kart_frame211_wheel3: + symbol: gKartBowser211Wheel3 + type: texture + offset: 0x65BC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_211_tlut_wheel_3 +bowser_kart_frame212_wheel0: + symbol: gKartBowser212Wheel0 + type: texture + offset: 0x66344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_212_tlut_wheel_0 +bowser_kart_frame212_wheel1: + symbol: gKartBowser212Wheel1 + type: texture + offset: 0x66344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_212_tlut_wheel_1 +bowser_kart_frame212_wheel2: + symbol: gKartBowser212Wheel2 + type: texture + offset: 0x66344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_212_tlut_wheel_2 +bowser_kart_frame212_wheel3: + symbol: gKartBowser212Wheel3 + type: texture + offset: 0x66344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_212_tlut_wheel_3 +bowser_kart_frame213_wheel0: + symbol: gKartBowser213Wheel0 + type: texture + offset: 0x66AF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_213_tlut_wheel_0 +bowser_kart_frame213_wheel1: + symbol: gKartBowser213Wheel1 + type: texture + offset: 0x66AF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_213_tlut_wheel_1 +bowser_kart_frame213_wheel2: + symbol: gKartBowser213Wheel2 + type: texture + offset: 0x66AF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_213_tlut_wheel_2 +bowser_kart_frame213_wheel3: + symbol: gKartBowser213Wheel3 + type: texture + offset: 0x66AF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_213_tlut_wheel_3 +bowser_kart_frame214_wheel0: + symbol: gKartBowser214Wheel0 + type: texture + offset: 0x67298 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_214_tlut_wheel_0 +bowser_kart_frame214_wheel1: + symbol: gKartBowser214Wheel1 + type: texture + offset: 0x67298 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_214_tlut_wheel_1 +bowser_kart_frame214_wheel2: + symbol: gKartBowser214Wheel2 + type: texture + offset: 0x67298 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_214_tlut_wheel_2 +bowser_kart_frame214_wheel3: + symbol: gKartBowser214Wheel3 + type: texture + offset: 0x67298 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_214_tlut_wheel_3 +bowser_kart_frame215_wheel0: + symbol: gKartBowser215Wheel0 + type: texture + offset: 0x67A70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_215_tlut_wheel_0 +bowser_kart_frame215_wheel1: + symbol: gKartBowser215Wheel1 + type: texture + offset: 0x67A70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_215_tlut_wheel_1 +bowser_kart_frame215_wheel2: + symbol: gKartBowser215Wheel2 + type: texture + offset: 0x67A70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_215_tlut_wheel_2 +bowser_kart_frame215_wheel3: + symbol: gKartBowser215Wheel3 + type: texture + offset: 0x67A70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_215_tlut_wheel_3 +bowser_kart_frame216_wheel0: + symbol: gKartBowser216Wheel0 + type: texture + offset: 0x682A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_216_tlut_wheel_0 +bowser_kart_frame216_wheel1: + symbol: gKartBowser216Wheel1 + type: texture + offset: 0x682A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_216_tlut_wheel_1 +bowser_kart_frame216_wheel2: + symbol: gKartBowser216Wheel2 + type: texture + offset: 0x682A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_216_tlut_wheel_2 +bowser_kart_frame216_wheel3: + symbol: gKartBowser216Wheel3 + type: texture + offset: 0x682A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_216_tlut_wheel_3 +bowser_kart_frame217_wheel0: + symbol: gKartBowser217Wheel0 + type: texture + offset: 0x68AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_217_tlut_wheel_0 +bowser_kart_frame217_wheel1: + symbol: gKartBowser217Wheel1 + type: texture + offset: 0x68AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_217_tlut_wheel_1 +bowser_kart_frame217_wheel2: + symbol: gKartBowser217Wheel2 + type: texture + offset: 0x68AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_217_tlut_wheel_2 +bowser_kart_frame217_wheel3: + symbol: gKartBowser217Wheel3 + type: texture + offset: 0x68AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_217_tlut_wheel_3 +bowser_kart_frame218_wheel0: + symbol: gKartBowser218Wheel0 + type: texture + offset: 0x69354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_218_tlut_wheel_0 +bowser_kart_frame218_wheel1: + symbol: gKartBowser218Wheel1 + type: texture + offset: 0x69354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_218_tlut_wheel_1 +bowser_kart_frame218_wheel2: + symbol: gKartBowser218Wheel2 + type: texture + offset: 0x69354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_218_tlut_wheel_2 +bowser_kart_frame218_wheel3: + symbol: gKartBowser218Wheel3 + type: texture + offset: 0x69354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_218_tlut_wheel_3 +bowser_kart_frame219_wheel0: + symbol: gKartBowser219Wheel0 + type: texture + offset: 0x69BCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_219_tlut_wheel_0 +bowser_kart_frame219_wheel1: + symbol: gKartBowser219Wheel1 + type: texture + offset: 0x69BCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_219_tlut_wheel_1 +bowser_kart_frame219_wheel2: + symbol: gKartBowser219Wheel2 + type: texture + offset: 0x69BCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_219_tlut_wheel_2 +bowser_kart_frame219_wheel3: + symbol: gKartBowser219Wheel3 + type: texture + offset: 0x69BCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_219_tlut_wheel_3 +bowser_kart_frame220_wheel0: + symbol: gKartBowser220Wheel0 + type: texture + offset: 0x6A444 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_220_tlut_wheel_0 +bowser_kart_frame220_wheel1: + symbol: gKartBowser220Wheel1 + type: texture + offset: 0x6A444 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_220_tlut_wheel_1 +bowser_kart_frame220_wheel2: + symbol: gKartBowser220Wheel2 + type: texture + offset: 0x6A444 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_220_tlut_wheel_2 +bowser_kart_frame220_wheel3: + symbol: gKartBowser220Wheel3 + type: texture + offset: 0x6A444 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_220_tlut_wheel_3 +bowser_kart_frame221_wheel0: + symbol: gKartBowser221Wheel0 + type: texture + offset: 0x6AD00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_221_tlut_wheel_0 +bowser_kart_frame221_wheel1: + symbol: gKartBowser221Wheel1 + type: texture + offset: 0x6AD00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_221_tlut_wheel_1 +bowser_kart_frame221_wheel2: + symbol: gKartBowser221Wheel2 + type: texture + offset: 0x6AD00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_221_tlut_wheel_2 +bowser_kart_frame221_wheel3: + symbol: gKartBowser221Wheel3 + type: texture + offset: 0x6AD00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_221_tlut_wheel_3 +bowser_kart_frame222_wheel0: + symbol: gKartBowser222Wheel0 + type: texture + offset: 0x6B5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_222_tlut_wheel_0 +bowser_kart_frame222_wheel1: + symbol: gKartBowser222Wheel1 + type: texture + offset: 0x6B5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_222_tlut_wheel_1 +bowser_kart_frame222_wheel2: + symbol: gKartBowser222Wheel2 + type: texture + offset: 0x6B5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_222_tlut_wheel_2 +bowser_kart_frame222_wheel3: + symbol: gKartBowser222Wheel3 + type: texture + offset: 0x6B5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_222_tlut_wheel_3 +bowser_kart_frame223_wheel0: + symbol: gKartBowser223Wheel0 + type: texture + offset: 0x6BE60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_223_tlut_wheel_0 +bowser_kart_frame223_wheel1: + symbol: gKartBowser223Wheel1 + type: texture + offset: 0x6BE60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_223_tlut_wheel_1 +bowser_kart_frame223_wheel2: + symbol: gKartBowser223Wheel2 + type: texture + offset: 0x6BE60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_223_tlut_wheel_2 +bowser_kart_frame223_wheel3: + symbol: gKartBowser223Wheel3 + type: texture + offset: 0x6BE60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_223_tlut_wheel_3 +bowser_kart_frame224_wheel0: + symbol: gKartBowser224Wheel0 + type: texture + offset: 0x6C700 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_224_tlut_wheel_0 +bowser_kart_frame224_wheel1: + symbol: gKartBowser224Wheel1 + type: texture + offset: 0x6C700 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_224_tlut_wheel_1 +bowser_kart_frame224_wheel2: + symbol: gKartBowser224Wheel2 + type: texture + offset: 0x6C700 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_224_tlut_wheel_2 +bowser_kart_frame224_wheel3: + symbol: gKartBowser224Wheel3 + type: texture + offset: 0x6C700 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_224_tlut_wheel_3 +bowser_kart_frame225_wheel0: + symbol: gKartBowser225Wheel0 + type: texture + offset: 0x6CF80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_225_tlut_wheel_0 +bowser_kart_frame225_wheel1: + symbol: gKartBowser225Wheel1 + type: texture + offset: 0x6CF80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_225_tlut_wheel_1 +bowser_kart_frame225_wheel2: + symbol: gKartBowser225Wheel2 + type: texture + offset: 0x6CF80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_225_tlut_wheel_2 +bowser_kart_frame225_wheel3: + symbol: gKartBowser225Wheel3 + type: texture + offset: 0x6CF80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_225_tlut_wheel_3 +bowser_kart_frame226_wheel0: + symbol: gKartBowser226Wheel0 + type: texture + offset: 0x6D7B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_226_tlut_wheel_0 +bowser_kart_frame226_wheel1: + symbol: gKartBowser226Wheel1 + type: texture + offset: 0x6D7B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_226_tlut_wheel_1 +bowser_kart_frame226_wheel2: + symbol: gKartBowser226Wheel2 + type: texture + offset: 0x6D7B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_226_tlut_wheel_2 +bowser_kart_frame226_wheel3: + symbol: gKartBowser226Wheel3 + type: texture + offset: 0x6D7B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_226_tlut_wheel_3 +bowser_kart_frame227_wheel0: + symbol: gKartBowser227Wheel0 + type: texture + offset: 0x6DFCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_227_tlut_wheel_0 +bowser_kart_frame227_wheel1: + symbol: gKartBowser227Wheel1 + type: texture + offset: 0x6DFCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_227_tlut_wheel_1 +bowser_kart_frame227_wheel2: + symbol: gKartBowser227Wheel2 + type: texture + offset: 0x6DFCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_227_tlut_wheel_2 +bowser_kart_frame227_wheel3: + symbol: gKartBowser227Wheel3 + type: texture + offset: 0x6DFCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_227_tlut_wheel_3 +bowser_kart_frame228_wheel0: + symbol: gKartBowser228Wheel0 + type: texture + offset: 0x6E7E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_228_tlut_wheel_0 +bowser_kart_frame228_wheel1: + symbol: gKartBowser228Wheel1 + type: texture + offset: 0x6E7E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_228_tlut_wheel_1 +bowser_kart_frame228_wheel2: + symbol: gKartBowser228Wheel2 + type: texture + offset: 0x6E7E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_228_tlut_wheel_2 +bowser_kart_frame228_wheel3: + symbol: gKartBowser228Wheel3 + type: texture + offset: 0x6E7E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_228_tlut_wheel_3 +bowser_kart_frame229_wheel0: + symbol: gKartBowser229Wheel0 + type: texture + offset: 0x6EFC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_229_tlut_wheel_0 +bowser_kart_frame229_wheel1: + symbol: gKartBowser229Wheel1 + type: texture + offset: 0x6EFC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_229_tlut_wheel_1 +bowser_kart_frame229_wheel2: + symbol: gKartBowser229Wheel2 + type: texture + offset: 0x6EFC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_229_tlut_wheel_2 +bowser_kart_frame229_wheel3: + symbol: gKartBowser229Wheel3 + type: texture + offset: 0x6EFC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_229_tlut_wheel_3 +bowser_kart_frame230_wheel0: + symbol: gKartBowser230Wheel0 + type: texture + offset: 0x6F6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_230_tlut_wheel_0 +bowser_kart_frame230_wheel1: + symbol: gKartBowser230Wheel1 + type: texture + offset: 0x6F6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_230_tlut_wheel_1 +bowser_kart_frame230_wheel2: + symbol: gKartBowser230Wheel2 + type: texture + offset: 0x6F6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_230_tlut_wheel_2 +bowser_kart_frame230_wheel3: + symbol: gKartBowser230Wheel3 + type: texture + offset: 0x6F6B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_230_tlut_wheel_3 +bowser_kart_frame231_wheel0: + symbol: gKartBowser231Wheel0 + type: texture + offset: 0x6FE18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_231_tlut_wheel_0 +bowser_kart_frame231_wheel1: + symbol: gKartBowser231Wheel1 + type: texture + offset: 0x6FE18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_231_tlut_wheel_1 +bowser_kart_frame231_wheel2: + symbol: gKartBowser231Wheel2 + type: texture + offset: 0x6FE18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_231_tlut_wheel_2 +bowser_kart_frame231_wheel3: + symbol: gKartBowser231Wheel3 + type: texture + offset: 0x6FE18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_231_tlut_wheel_3 +bowser_kart_frame232_wheel0: + symbol: gKartBowser232Wheel0 + type: texture + offset: 0x705C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_232_tlut_wheel_0 +bowser_kart_frame232_wheel1: + symbol: gKartBowser232Wheel1 + type: texture + offset: 0x705C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_232_tlut_wheel_1 +bowser_kart_frame232_wheel2: + symbol: gKartBowser232Wheel2 + type: texture + offset: 0x705C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_232_tlut_wheel_2 +bowser_kart_frame232_wheel3: + symbol: gKartBowser232Wheel3 + type: texture + offset: 0x705C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_232_tlut_wheel_3 +bowser_kart_frame233_wheel0: + symbol: gKartBowser233Wheel0 + type: texture + offset: 0x70D94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_233_tlut_wheel_0 +bowser_kart_frame233_wheel1: + symbol: gKartBowser233Wheel1 + type: texture + offset: 0x70D94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_233_tlut_wheel_1 +bowser_kart_frame233_wheel2: + symbol: gKartBowser233Wheel2 + type: texture + offset: 0x70D94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_233_tlut_wheel_2 +bowser_kart_frame233_wheel3: + symbol: gKartBowser233Wheel3 + type: texture + offset: 0x70D94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_233_tlut_wheel_3 +bowser_kart_frame234_wheel0: + symbol: gKartBowser234Wheel0 + type: texture + offset: 0x71598 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_234_tlut_wheel_0 +bowser_kart_frame234_wheel1: + symbol: gKartBowser234Wheel1 + type: texture + offset: 0x71598 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_234_tlut_wheel_1 +bowser_kart_frame234_wheel2: + symbol: gKartBowser234Wheel2 + type: texture + offset: 0x71598 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_234_tlut_wheel_2 +bowser_kart_frame234_wheel3: + symbol: gKartBowser234Wheel3 + type: texture + offset: 0x71598 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_234_tlut_wheel_3 +bowser_kart_frame235_wheel0: + symbol: gKartBowser235Wheel0 + type: texture + offset: 0x71DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_235_tlut_wheel_0 +bowser_kart_frame235_wheel1: + symbol: gKartBowser235Wheel1 + type: texture + offset: 0x71DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_235_tlut_wheel_1 +bowser_kart_frame235_wheel2: + symbol: gKartBowser235Wheel2 + type: texture + offset: 0x71DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_235_tlut_wheel_2 +bowser_kart_frame235_wheel3: + symbol: gKartBowser235Wheel3 + type: texture + offset: 0x71DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_235_tlut_wheel_3 +bowser_kart_frame236_wheel0: + symbol: gKartBowser236Wheel0 + type: texture + offset: 0x72608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_236_tlut_wheel_0 +bowser_kart_frame236_wheel1: + symbol: gKartBowser236Wheel1 + type: texture + offset: 0x72608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_236_tlut_wheel_1 +bowser_kart_frame236_wheel2: + symbol: gKartBowser236Wheel2 + type: texture + offset: 0x72608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_236_tlut_wheel_2 +bowser_kart_frame236_wheel3: + symbol: gKartBowser236Wheel3 + type: texture + offset: 0x72608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_236_tlut_wheel_3 +bowser_kart_frame237_wheel0: + symbol: gKartBowser237Wheel0 + type: texture + offset: 0x72E64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_237_tlut_wheel_0 +bowser_kart_frame237_wheel1: + symbol: gKartBowser237Wheel1 + type: texture + offset: 0x72E64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_237_tlut_wheel_1 +bowser_kart_frame237_wheel2: + symbol: gKartBowser237Wheel2 + type: texture + offset: 0x72E64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_237_tlut_wheel_2 +bowser_kart_frame237_wheel3: + symbol: gKartBowser237Wheel3 + type: texture + offset: 0x72E64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_237_tlut_wheel_3 +bowser_kart_frame238_wheel0: + symbol: gKartBowser238Wheel0 + type: texture + offset: 0x736CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_238_tlut_wheel_0 +bowser_kart_frame238_wheel1: + symbol: gKartBowser238Wheel1 + type: texture + offset: 0x736CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_238_tlut_wheel_1 +bowser_kart_frame238_wheel2: + symbol: gKartBowser238Wheel2 + type: texture + offset: 0x736CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_238_tlut_wheel_2 +bowser_kart_frame238_wheel3: + symbol: gKartBowser238Wheel3 + type: texture + offset: 0x736CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_238_tlut_wheel_3 +bowser_kart_frame239_wheel0: + symbol: gKartBowser239Wheel0 + type: texture + offset: 0x73F4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_239_tlut_wheel_0 +bowser_kart_frame239_wheel1: + symbol: gKartBowser239Wheel1 + type: texture + offset: 0x73F4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_239_tlut_wheel_1 +bowser_kart_frame239_wheel2: + symbol: gKartBowser239Wheel2 + type: texture + offset: 0x73F4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_239_tlut_wheel_2 +bowser_kart_frame239_wheel3: + symbol: gKartBowser239Wheel3 + type: texture + offset: 0x73F4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_239_tlut_wheel_3 +bowser_kart_frame240_wheel0: + symbol: gKartBowser240Wheel0 + type: texture + offset: 0x747E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_240_tlut_wheel_0 +bowser_kart_frame240_wheel1: + symbol: gKartBowser240Wheel1 + type: texture + offset: 0x747E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_240_tlut_wheel_1 +bowser_kart_frame240_wheel2: + symbol: gKartBowser240Wheel2 + type: texture + offset: 0x747E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_240_tlut_wheel_2 +bowser_kart_frame240_wheel3: + symbol: gKartBowser240Wheel3 + type: texture + offset: 0x747E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_240_tlut_wheel_3 +bowser_kart_frame241_wheel0: + symbol: gKartBowser241Wheel0 + type: texture + offset: 0x75094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_241_tlut_wheel_0 +bowser_kart_frame241_wheel1: + symbol: gKartBowser241Wheel1 + type: texture + offset: 0x75094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_241_tlut_wheel_1 +bowser_kart_frame241_wheel2: + symbol: gKartBowser241Wheel2 + type: texture + offset: 0x75094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_241_tlut_wheel_2 +bowser_kart_frame241_wheel3: + symbol: gKartBowser241Wheel3 + type: texture + offset: 0x75094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_241_tlut_wheel_3 +bowser_kart_frame242_wheel0: + symbol: gKartBowser242Wheel0 + type: texture + offset: 0x758E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_242_tlut_wheel_0 +bowser_kart_frame242_wheel1: + symbol: gKartBowser242Wheel1 + type: texture + offset: 0x758E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_242_tlut_wheel_1 +bowser_kart_frame242_wheel2: + symbol: gKartBowser242Wheel2 + type: texture + offset: 0x758E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_242_tlut_wheel_2 +bowser_kart_frame242_wheel3: + symbol: gKartBowser242Wheel3 + type: texture + offset: 0x758E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_242_tlut_wheel_3 +bowser_kart_frame243_wheel0: + symbol: gKartBowser243Wheel0 + type: texture + offset: 0x76174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_243_tlut_wheel_0 +bowser_kart_frame243_wheel1: + symbol: gKartBowser243Wheel1 + type: texture + offset: 0x76174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_243_tlut_wheel_1 +bowser_kart_frame243_wheel2: + symbol: gKartBowser243Wheel2 + type: texture + offset: 0x76174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_243_tlut_wheel_2 +bowser_kart_frame243_wheel3: + symbol: gKartBowser243Wheel3 + type: texture + offset: 0x76174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_243_tlut_wheel_3 +bowser_kart_frame244_wheel0: + symbol: gKartBowser244Wheel0 + type: texture + offset: 0x769EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_244_tlut_wheel_0 +bowser_kart_frame244_wheel1: + symbol: gKartBowser244Wheel1 + type: texture + offset: 0x769EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_244_tlut_wheel_1 +bowser_kart_frame244_wheel2: + symbol: gKartBowser244Wheel2 + type: texture + offset: 0x769EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_244_tlut_wheel_2 +bowser_kart_frame244_wheel3: + symbol: gKartBowser244Wheel3 + type: texture + offset: 0x769EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_244_tlut_wheel_3 +bowser_kart_frame245_wheel0: + symbol: gKartBowser245Wheel0 + type: texture + offset: 0x77228 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_245_tlut_wheel_0 +bowser_kart_frame245_wheel1: + symbol: gKartBowser245Wheel1 + type: texture + offset: 0x77228 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_245_tlut_wheel_1 +bowser_kart_frame245_wheel2: + symbol: gKartBowser245Wheel2 + type: texture + offset: 0x77228 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_245_tlut_wheel_2 +bowser_kart_frame245_wheel3: + symbol: gKartBowser245Wheel3 + type: texture + offset: 0x77228 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_245_tlut_wheel_3 +bowser_kart_frame246_wheel0: + symbol: gKartBowser246Wheel0 + type: texture + offset: 0x77A28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_246_tlut_wheel_0 +bowser_kart_frame246_wheel1: + symbol: gKartBowser246Wheel1 + type: texture + offset: 0x77A28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_246_tlut_wheel_1 +bowser_kart_frame246_wheel2: + symbol: gKartBowser246Wheel2 + type: texture + offset: 0x77A28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_246_tlut_wheel_2 +bowser_kart_frame246_wheel3: + symbol: gKartBowser246Wheel3 + type: texture + offset: 0x77A28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_246_tlut_wheel_3 +bowser_kart_frame247_wheel0: + symbol: gKartBowser247Wheel0 + type: texture + offset: 0x78200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_247_tlut_wheel_0 +bowser_kart_frame247_wheel1: + symbol: gKartBowser247Wheel1 + type: texture + offset: 0x78200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_247_tlut_wheel_1 +bowser_kart_frame247_wheel2: + symbol: gKartBowser247Wheel2 + type: texture + offset: 0x78200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_247_tlut_wheel_2 +bowser_kart_frame247_wheel3: + symbol: gKartBowser247Wheel3 + type: texture + offset: 0x78200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_247_tlut_wheel_3 +bowser_kart_frame248_wheel0: + symbol: gKartBowser248Wheel0 + type: texture + offset: 0x789E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_248_tlut_wheel_0 +bowser_kart_frame248_wheel1: + symbol: gKartBowser248Wheel1 + type: texture + offset: 0x789E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_248_tlut_wheel_1 +bowser_kart_frame248_wheel2: + symbol: gKartBowser248Wheel2 + type: texture + offset: 0x789E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_248_tlut_wheel_2 +bowser_kart_frame248_wheel3: + symbol: gKartBowser248Wheel3 + type: texture + offset: 0x789E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_248_tlut_wheel_3 +bowser_kart_frame249_wheel0: + symbol: gKartBowser249Wheel0 + type: texture + offset: 0x7919C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_249_tlut_wheel_0 +bowser_kart_frame249_wheel1: + symbol: gKartBowser249Wheel1 + type: texture + offset: 0x7919C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_249_tlut_wheel_1 +bowser_kart_frame249_wheel2: + symbol: gKartBowser249Wheel2 + type: texture + offset: 0x7919C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_249_tlut_wheel_2 +bowser_kart_frame249_wheel3: + symbol: gKartBowser249Wheel3 + type: texture + offset: 0x7919C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_249_tlut_wheel_3 +bowser_kart_frame250_wheel0: + symbol: gKartBowser250Wheel0 + type: texture + offset: 0x798DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_250_tlut_wheel_0 +bowser_kart_frame250_wheel1: + symbol: gKartBowser250Wheel1 + type: texture + offset: 0x798DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_250_tlut_wheel_1 +bowser_kart_frame250_wheel2: + symbol: gKartBowser250Wheel2 + type: texture + offset: 0x798DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_250_tlut_wheel_2 +bowser_kart_frame250_wheel3: + symbol: gKartBowser250Wheel3 + type: texture + offset: 0x798DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_250_tlut_wheel_3 +bowser_kart_frame251_wheel0: + symbol: gKartBowser251Wheel0 + type: texture + offset: 0x7A06C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_251_tlut_wheel_0 +bowser_kart_frame251_wheel1: + symbol: gKartBowser251Wheel1 + type: texture + offset: 0x7A06C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_251_tlut_wheel_1 +bowser_kart_frame251_wheel2: + symbol: gKartBowser251Wheel2 + type: texture + offset: 0x7A06C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_251_tlut_wheel_2 +bowser_kart_frame251_wheel3: + symbol: gKartBowser251Wheel3 + type: texture + offset: 0x7A06C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_251_tlut_wheel_3 +bowser_kart_frame252_wheel0: + symbol: gKartBowser252Wheel0 + type: texture + offset: 0x7A830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_252_tlut_wheel_0 +bowser_kart_frame252_wheel1: + symbol: gKartBowser252Wheel1 + type: texture + offset: 0x7A830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_252_tlut_wheel_1 +bowser_kart_frame252_wheel2: + symbol: gKartBowser252Wheel2 + type: texture + offset: 0x7A830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_252_tlut_wheel_2 +bowser_kart_frame252_wheel3: + symbol: gKartBowser252Wheel3 + type: texture + offset: 0x7A830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_252_tlut_wheel_3 +bowser_kart_frame253_wheel0: + symbol: gKartBowser253Wheel0 + type: texture + offset: 0x7B028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_253_tlut_wheel_0 +bowser_kart_frame253_wheel1: + symbol: gKartBowser253Wheel1 + type: texture + offset: 0x7B028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_253_tlut_wheel_1 +bowser_kart_frame253_wheel2: + symbol: gKartBowser253Wheel2 + type: texture + offset: 0x7B028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_253_tlut_wheel_2 +bowser_kart_frame253_wheel3: + symbol: gKartBowser253Wheel3 + type: texture + offset: 0x7B028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_253_tlut_wheel_3 +bowser_kart_frame254_wheel0: + symbol: gKartBowser254Wheel0 + type: texture + offset: 0x7B83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_254_tlut_wheel_0 +bowser_kart_frame254_wheel1: + symbol: gKartBowser254Wheel1 + type: texture + offset: 0x7B83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_254_tlut_wheel_1 +bowser_kart_frame254_wheel2: + symbol: gKartBowser254Wheel2 + type: texture + offset: 0x7B83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_254_tlut_wheel_2 +bowser_kart_frame254_wheel3: + symbol: gKartBowser254Wheel3 + type: texture + offset: 0x7B83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_254_tlut_wheel_3 +bowser_kart_frame255_wheel0: + symbol: gKartBowser255Wheel0 + type: texture + offset: 0x7C07C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_255_tlut_wheel_0 +bowser_kart_frame255_wheel1: + symbol: gKartBowser255Wheel1 + type: texture + offset: 0x7C07C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_255_tlut_wheel_1 +bowser_kart_frame255_wheel2: + symbol: gKartBowser255Wheel2 + type: texture + offset: 0x7C07C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_255_tlut_wheel_2 +bowser_kart_frame255_wheel3: + symbol: gKartBowser255Wheel3 + type: texture + offset: 0x7C07C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_255_tlut_wheel_3 +bowser_kart_frame256_wheel0: + symbol: gKartBowser256Wheel0 + type: texture + offset: 0x7C8F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_256_tlut_wheel_0 +bowser_kart_frame256_wheel1: + symbol: gKartBowser256Wheel1 + type: texture + offset: 0x7C8F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_256_tlut_wheel_1 +bowser_kart_frame256_wheel2: + symbol: gKartBowser256Wheel2 + type: texture + offset: 0x7C8F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_256_tlut_wheel_2 +bowser_kart_frame256_wheel3: + symbol: gKartBowser256Wheel3 + type: texture + offset: 0x7C8F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_256_tlut_wheel_3 +bowser_kart_frame257_wheel0: + symbol: gKartBowser257Wheel0 + type: texture + offset: 0x7D178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_257_tlut_wheel_0 +bowser_kart_frame257_wheel1: + symbol: gKartBowser257Wheel1 + type: texture + offset: 0x7D178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_257_tlut_wheel_1 +bowser_kart_frame257_wheel2: + symbol: gKartBowser257Wheel2 + type: texture + offset: 0x7D178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_257_tlut_wheel_2 +bowser_kart_frame257_wheel3: + symbol: gKartBowser257Wheel3 + type: texture + offset: 0x7D178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_257_tlut_wheel_3 +bowser_kart_frame258_wheel0: + symbol: gKartBowser258Wheel0 + type: texture + offset: 0x7D9E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_258_tlut_wheel_0 +bowser_kart_frame258_wheel1: + symbol: gKartBowser258Wheel1 + type: texture + offset: 0x7D9E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_258_tlut_wheel_1 +bowser_kart_frame258_wheel2: + symbol: gKartBowser258Wheel2 + type: texture + offset: 0x7D9E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_258_tlut_wheel_2 +bowser_kart_frame258_wheel3: + symbol: gKartBowser258Wheel3 + type: texture + offset: 0x7D9E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_258_tlut_wheel_3 +bowser_kart_frame259_wheel0: + symbol: gKartBowser259Wheel0 + type: texture + offset: 0x7E27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_259_tlut_wheel_0 +bowser_kart_frame259_wheel1: + symbol: gKartBowser259Wheel1 + type: texture + offset: 0x7E27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_259_tlut_wheel_1 +bowser_kart_frame259_wheel2: + symbol: gKartBowser259Wheel2 + type: texture + offset: 0x7E27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_259_tlut_wheel_2 +bowser_kart_frame259_wheel3: + symbol: gKartBowser259Wheel3 + type: texture + offset: 0x7E27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_259_tlut_wheel_3 +bowser_kart_frame260_wheel0: + symbol: gKartBowser260Wheel0 + type: texture + offset: 0x7EB18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_260_tlut_wheel_0 +bowser_kart_frame260_wheel1: + symbol: gKartBowser260Wheel1 + type: texture + offset: 0x7EB18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_260_tlut_wheel_1 +bowser_kart_frame260_wheel2: + symbol: gKartBowser260Wheel2 + type: texture + offset: 0x7EB18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_260_tlut_wheel_2 +bowser_kart_frame260_wheel3: + symbol: gKartBowser260Wheel3 + type: texture + offset: 0x7EB18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_260_tlut_wheel_3 +bowser_kart_frame261_wheel0: + symbol: gKartBowser261Wheel0 + type: texture + offset: 0x7F3B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_261_tlut_wheel_0 +bowser_kart_frame261_wheel1: + symbol: gKartBowser261Wheel1 + type: texture + offset: 0x7F3B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_261_tlut_wheel_1 +bowser_kart_frame261_wheel2: + symbol: gKartBowser261Wheel2 + type: texture + offset: 0x7F3B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_261_tlut_wheel_2 +bowser_kart_frame261_wheel3: + symbol: gKartBowser261Wheel3 + type: texture + offset: 0x7F3B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_261_tlut_wheel_3 +bowser_kart_frame262_wheel0: + symbol: gKartBowser262Wheel0 + type: texture + offset: 0x7FC20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_262_tlut_wheel_0 +bowser_kart_frame262_wheel1: + symbol: gKartBowser262Wheel1 + type: texture + offset: 0x7FC20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_262_tlut_wheel_1 +bowser_kart_frame262_wheel2: + symbol: gKartBowser262Wheel2 + type: texture + offset: 0x7FC20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_262_tlut_wheel_2 +bowser_kart_frame262_wheel3: + symbol: gKartBowser262Wheel3 + type: texture + offset: 0x7FC20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_262_tlut_wheel_3 +bowser_kart_frame263_wheel0: + symbol: gKartBowser263Wheel0 + type: texture + offset: 0x80460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_263_tlut_wheel_0 +bowser_kart_frame263_wheel1: + symbol: gKartBowser263Wheel1 + type: texture + offset: 0x80460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_263_tlut_wheel_1 +bowser_kart_frame263_wheel2: + symbol: gKartBowser263Wheel2 + type: texture + offset: 0x80460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_263_tlut_wheel_2 +bowser_kart_frame263_wheel3: + symbol: gKartBowser263Wheel3 + type: texture + offset: 0x80460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_263_tlut_wheel_3 +bowser_kart_frame264_wheel0: + symbol: gKartBowser264Wheel0 + type: texture + offset: 0x80C8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_264_tlut_wheel_0 +bowser_kart_frame264_wheel1: + symbol: gKartBowser264Wheel1 + type: texture + offset: 0x80C8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_264_tlut_wheel_1 +bowser_kart_frame264_wheel2: + symbol: gKartBowser264Wheel2 + type: texture + offset: 0x80C8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_264_tlut_wheel_2 +bowser_kart_frame264_wheel3: + symbol: gKartBowser264Wheel3 + type: texture + offset: 0x80C8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_264_tlut_wheel_3 +bowser_kart_frame265_wheel0: + symbol: gKartBowser265Wheel0 + type: texture + offset: 0x81494 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_265_tlut_wheel_0 +bowser_kart_frame265_wheel1: + symbol: gKartBowser265Wheel1 + type: texture + offset: 0x81494 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_265_tlut_wheel_1 +bowser_kart_frame265_wheel2: + symbol: gKartBowser265Wheel2 + type: texture + offset: 0x81494 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_265_tlut_wheel_2 +bowser_kart_frame265_wheel3: + symbol: gKartBowser265Wheel3 + type: texture + offset: 0x81494 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_265_tlut_wheel_3 +bowser_kart_frame266_wheel0: + symbol: gKartBowser266Wheel0 + type: texture + offset: 0x81C68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_266_tlut_wheel_0 +bowser_kart_frame266_wheel1: + symbol: gKartBowser266Wheel1 + type: texture + offset: 0x81C68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_266_tlut_wheel_1 +bowser_kart_frame266_wheel2: + symbol: gKartBowser266Wheel2 + type: texture + offset: 0x81C68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_266_tlut_wheel_2 +bowser_kart_frame266_wheel3: + symbol: gKartBowser266Wheel3 + type: texture + offset: 0x81C68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_266_tlut_wheel_3 +bowser_kart_frame267_wheel0: + symbol: gKartBowser267Wheel0 + type: texture + offset: 0x8240C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_267_tlut_wheel_0 +bowser_kart_frame267_wheel1: + symbol: gKartBowser267Wheel1 + type: texture + offset: 0x8240C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_267_tlut_wheel_1 +bowser_kart_frame267_wheel2: + symbol: gKartBowser267Wheel2 + type: texture + offset: 0x8240C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_267_tlut_wheel_2 +bowser_kart_frame267_wheel3: + symbol: gKartBowser267Wheel3 + type: texture + offset: 0x8240C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_267_tlut_wheel_3 +bowser_kart_frame268_wheel0: + symbol: gKartBowser268Wheel0 + type: texture + offset: 0x82BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_268_tlut_wheel_0 +bowser_kart_frame268_wheel1: + symbol: gKartBowser268Wheel1 + type: texture + offset: 0x82BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_268_tlut_wheel_1 +bowser_kart_frame268_wheel2: + symbol: gKartBowser268Wheel2 + type: texture + offset: 0x82BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_268_tlut_wheel_2 +bowser_kart_frame268_wheel3: + symbol: gKartBowser268Wheel3 + type: texture + offset: 0x82BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_268_tlut_wheel_3 +bowser_kart_frame269_wheel0: + symbol: gKartBowser269Wheel0 + type: texture + offset: 0x83314 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_269_tlut_wheel_0 +bowser_kart_frame269_wheel1: + symbol: gKartBowser269Wheel1 + type: texture + offset: 0x83314 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_269_tlut_wheel_1 +bowser_kart_frame269_wheel2: + symbol: gKartBowser269Wheel2 + type: texture + offset: 0x83314 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_269_tlut_wheel_2 +bowser_kart_frame269_wheel3: + symbol: gKartBowser269Wheel3 + type: texture + offset: 0x83314 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_269_tlut_wheel_3 +bowser_kart_frame270_wheel0: + symbol: gKartBowser270Wheel0 + type: texture + offset: 0x83AC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_270_tlut_wheel_0 +bowser_kart_frame270_wheel1: + symbol: gKartBowser270Wheel1 + type: texture + offset: 0x83AC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_270_tlut_wheel_1 +bowser_kart_frame270_wheel2: + symbol: gKartBowser270Wheel2 + type: texture + offset: 0x83AC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_270_tlut_wheel_2 +bowser_kart_frame270_wheel3: + symbol: gKartBowser270Wheel3 + type: texture + offset: 0x83AC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_270_tlut_wheel_3 +bowser_kart_frame271_wheel0: + symbol: gKartBowser271Wheel0 + type: texture + offset: 0x84288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_271_tlut_wheel_0 +bowser_kart_frame271_wheel1: + symbol: gKartBowser271Wheel1 + type: texture + offset: 0x84288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_271_tlut_wheel_1 +bowser_kart_frame271_wheel2: + symbol: gKartBowser271Wheel2 + type: texture + offset: 0x84288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_271_tlut_wheel_2 +bowser_kart_frame271_wheel3: + symbol: gKartBowser271Wheel3 + type: texture + offset: 0x84288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_271_tlut_wheel_3 +bowser_kart_frame272_wheel0: + symbol: gKartBowser272Wheel0 + type: texture + offset: 0x84A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_272_tlut_wheel_0 +bowser_kart_frame272_wheel1: + symbol: gKartBowser272Wheel1 + type: texture + offset: 0x84A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_272_tlut_wheel_1 +bowser_kart_frame272_wheel2: + symbol: gKartBowser272Wheel2 + type: texture + offset: 0x84A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_272_tlut_wheel_2 +bowser_kart_frame272_wheel3: + symbol: gKartBowser272Wheel3 + type: texture + offset: 0x84A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_272_tlut_wheel_3 +bowser_kart_frame273_wheel0: + symbol: gKartBowser273Wheel0 + type: texture + offset: 0x85288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_273_tlut_wheel_0 +bowser_kart_frame273_wheel1: + symbol: gKartBowser273Wheel1 + type: texture + offset: 0x85288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_273_tlut_wheel_1 +bowser_kart_frame273_wheel2: + symbol: gKartBowser273Wheel2 + type: texture + offset: 0x85288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_273_tlut_wheel_2 +bowser_kart_frame273_wheel3: + symbol: gKartBowser273Wheel3 + type: texture + offset: 0x85288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_273_tlut_wheel_3 +bowser_kart_frame274_wheel0: + symbol: gKartBowser274Wheel0 + type: texture + offset: 0x85AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_274_tlut_wheel_0 +bowser_kart_frame274_wheel1: + symbol: gKartBowser274Wheel1 + type: texture + offset: 0x85AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_274_tlut_wheel_1 +bowser_kart_frame274_wheel2: + symbol: gKartBowser274Wheel2 + type: texture + offset: 0x85AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_274_tlut_wheel_2 +bowser_kart_frame274_wheel3: + symbol: gKartBowser274Wheel3 + type: texture + offset: 0x85AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_274_tlut_wheel_3 +bowser_kart_frame275_wheel0: + symbol: gKartBowser275Wheel0 + type: texture + offset: 0x86360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_275_tlut_wheel_0 +bowser_kart_frame275_wheel1: + symbol: gKartBowser275Wheel1 + type: texture + offset: 0x86360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_275_tlut_wheel_1 +bowser_kart_frame275_wheel2: + symbol: gKartBowser275Wheel2 + type: texture + offset: 0x86360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_275_tlut_wheel_2 +bowser_kart_frame275_wheel3: + symbol: gKartBowser275Wheel3 + type: texture + offset: 0x86360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_275_tlut_wheel_3 +bowser_kart_frame276_wheel0: + symbol: gKartBowser276Wheel0 + type: texture + offset: 0x86BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_276_tlut_wheel_0 +bowser_kart_frame276_wheel1: + symbol: gKartBowser276Wheel1 + type: texture + offset: 0x86BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_276_tlut_wheel_1 +bowser_kart_frame276_wheel2: + symbol: gKartBowser276Wheel2 + type: texture + offset: 0x86BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_276_tlut_wheel_2 +bowser_kart_frame276_wheel3: + symbol: gKartBowser276Wheel3 + type: texture + offset: 0x86BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_276_tlut_wheel_3 +bowser_kart_frame277_wheel0: + symbol: gKartBowser277Wheel0 + type: texture + offset: 0x874A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_277_tlut_wheel_0 +bowser_kart_frame277_wheel1: + symbol: gKartBowser277Wheel1 + type: texture + offset: 0x874A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_277_tlut_wheel_1 +bowser_kart_frame277_wheel2: + symbol: gKartBowser277Wheel2 + type: texture + offset: 0x874A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_277_tlut_wheel_2 +bowser_kart_frame277_wheel3: + symbol: gKartBowser277Wheel3 + type: texture + offset: 0x874A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_277_tlut_wheel_3 +bowser_kart_frame278_wheel0: + symbol: gKartBowser278Wheel0 + type: texture + offset: 0x87D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_278_tlut_wheel_0 +bowser_kart_frame278_wheel1: + symbol: gKartBowser278Wheel1 + type: texture + offset: 0x87D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_278_tlut_wheel_1 +bowser_kart_frame278_wheel2: + symbol: gKartBowser278Wheel2 + type: texture + offset: 0x87D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_278_tlut_wheel_2 +bowser_kart_frame278_wheel3: + symbol: gKartBowser278Wheel3 + type: texture + offset: 0x87D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_278_tlut_wheel_3 +bowser_kart_frame279_wheel0: + symbol: gKartBowser279Wheel0 + type: texture + offset: 0x885B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_279_tlut_wheel_0 +bowser_kart_frame279_wheel1: + symbol: gKartBowser279Wheel1 + type: texture + offset: 0x885B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_279_tlut_wheel_1 +bowser_kart_frame279_wheel2: + symbol: gKartBowser279Wheel2 + type: texture + offset: 0x885B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_279_tlut_wheel_2 +bowser_kart_frame279_wheel3: + symbol: gKartBowser279Wheel3 + type: texture + offset: 0x885B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_279_tlut_wheel_3 +bowser_kart_frame280_wheel0: + symbol: gKartBowser280Wheel0 + type: texture + offset: 0x88E20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_280_tlut_wheel_0 +bowser_kart_frame280_wheel1: + symbol: gKartBowser280Wheel1 + type: texture + offset: 0x88E20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_280_tlut_wheel_1 +bowser_kart_frame280_wheel2: + symbol: gKartBowser280Wheel2 + type: texture + offset: 0x88E20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_280_tlut_wheel_2 +bowser_kart_frame280_wheel3: + symbol: gKartBowser280Wheel3 + type: texture + offset: 0x88E20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_280_tlut_wheel_3 +bowser_kart_frame281_wheel0: + symbol: gKartBowser281Wheel0 + type: texture + offset: 0x89684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_281_tlut_wheel_0 +bowser_kart_frame281_wheel1: + symbol: gKartBowser281Wheel1 + type: texture + offset: 0x89684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_281_tlut_wheel_1 +bowser_kart_frame281_wheel2: + symbol: gKartBowser281Wheel2 + type: texture + offset: 0x89684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_281_tlut_wheel_2 +bowser_kart_frame281_wheel3: + symbol: gKartBowser281Wheel3 + type: texture + offset: 0x89684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_281_tlut_wheel_3 +bowser_kart_frame282_wheel0: + symbol: gKartBowser282Wheel0 + type: texture + offset: 0x89EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_282_tlut_wheel_0 +bowser_kart_frame282_wheel1: + symbol: gKartBowser282Wheel1 + type: texture + offset: 0x89EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_282_tlut_wheel_1 +bowser_kart_frame282_wheel2: + symbol: gKartBowser282Wheel2 + type: texture + offset: 0x89EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_282_tlut_wheel_2 +bowser_kart_frame282_wheel3: + symbol: gKartBowser282Wheel3 + type: texture + offset: 0x89EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_282_tlut_wheel_3 +bowser_kart_frame283_wheel0: + symbol: gKartBowser283Wheel0 + type: texture + offset: 0x8A6F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_283_tlut_wheel_0 +bowser_kart_frame283_wheel1: + symbol: gKartBowser283Wheel1 + type: texture + offset: 0x8A6F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_283_tlut_wheel_1 +bowser_kart_frame283_wheel2: + symbol: gKartBowser283Wheel2 + type: texture + offset: 0x8A6F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_283_tlut_wheel_2 +bowser_kart_frame283_wheel3: + symbol: gKartBowser283Wheel3 + type: texture + offset: 0x8A6F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_283_tlut_wheel_3 +bowser_kart_frame284_wheel0: + symbol: gKartBowser284Wheel0 + type: texture + offset: 0x8AEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_284_tlut_wheel_0 +bowser_kart_frame284_wheel1: + symbol: gKartBowser284Wheel1 + type: texture + offset: 0x8AEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_284_tlut_wheel_1 +bowser_kart_frame284_wheel2: + symbol: gKartBowser284Wheel2 + type: texture + offset: 0x8AEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_284_tlut_wheel_2 +bowser_kart_frame284_wheel3: + symbol: gKartBowser284Wheel3 + type: texture + offset: 0x8AEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_284_tlut_wheel_3 +bowser_kart_frame285_wheel0: + symbol: gKartBowser285Wheel0 + type: texture + offset: 0x8B66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_285_tlut_wheel_0 +bowser_kart_frame285_wheel1: + symbol: gKartBowser285Wheel1 + type: texture + offset: 0x8B66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_285_tlut_wheel_1 +bowser_kart_frame285_wheel2: + symbol: gKartBowser285Wheel2 + type: texture + offset: 0x8B66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_285_tlut_wheel_2 +bowser_kart_frame285_wheel3: + symbol: gKartBowser285Wheel3 + type: texture + offset: 0x8B66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_285_tlut_wheel_3 +bowser_kart_frame286_wheel0: + symbol: gKartBowser286Wheel0 + type: texture + offset: 0x8BDD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_286_tlut_wheel_0 +bowser_kart_frame286_wheel1: + symbol: gKartBowser286Wheel1 + type: texture + offset: 0x8BDD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_286_tlut_wheel_1 +bowser_kart_frame286_wheel2: + symbol: gKartBowser286Wheel2 + type: texture + offset: 0x8BDD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_286_tlut_wheel_2 +bowser_kart_frame286_wheel3: + symbol: gKartBowser286Wheel3 + type: texture + offset: 0x8BDD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_286_tlut_wheel_3 +bowser_kart_frame287_wheel0: + symbol: gKartBowser287Wheel0 + type: texture + offset: 0x8C510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_287_tlut_wheel_0 +bowser_kart_frame287_wheel1: + symbol: gKartBowser287Wheel1 + type: texture + offset: 0x8C510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_287_tlut_wheel_1 +bowser_kart_frame287_wheel2: + symbol: gKartBowser287Wheel2 + type: texture + offset: 0x8C510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_287_tlut_wheel_2 +bowser_kart_frame287_wheel3: + symbol: gKartBowser287Wheel3 + type: texture + offset: 0x8C510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_287_tlut_wheel_3 +bowser_kart_frame288_wheel0: + symbol: gKartBowser288Wheel0 + type: texture + offset: 0x8CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_288_tlut_wheel_0 +bowser_kart_frame288_wheel1: + symbol: gKartBowser288Wheel1 + type: texture + offset: 0x8CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_288_tlut_wheel_1 +bowser_kart_frame288_wheel2: + symbol: gKartBowser288Wheel2 + type: texture + offset: 0x8CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_288_tlut_wheel_2 +bowser_kart_frame288_wheel3: + symbol: gKartBowser288Wheel3 + type: texture + offset: 0x8CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_288_tlut_wheel_3 +bowser_kart_frame289: + symbol: gKartBowser289 + type: texture + offset: 0x8D338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame290: + symbol: gKartBowser290 + type: texture + offset: 0x8D99C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame291: + symbol: gKartBowser291 + type: texture + offset: 0x8E028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame292: + symbol: gKartBowser292 + type: texture + offset: 0x8E740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame293: + symbol: gKartBowser293 + type: texture + offset: 0x8EF00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame294: + symbol: gKartBowser294 + type: texture + offset: 0x8F600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame295: + symbol: gKartBowser295 + type: texture + offset: 0x8FDAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame296: + symbol: gKartBowser296 + type: texture + offset: 0x9058C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame297: + symbol: gKartBowser297 + type: texture + offset: 0x90D50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame298: + symbol: gKartBowser298 + type: texture + offset: 0x91460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame299: + symbol: gKartBowser299 + type: texture + offset: 0x91B94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame300: + symbol: gKartBowser300 + type: texture + offset: 0x922F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame301: + symbol: gKartBowser301 + type: texture + offset: 0x92A78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame302: + symbol: gKartBowser302 + type: texture + offset: 0x9322C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame303: + symbol: gKartBowser303 + type: texture + offset: 0x93A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame304: + symbol: gKartBowser304 + type: texture + offset: 0x9423C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame305: + symbol: gKartBowser305 + type: texture + offset: 0x94988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame306: + symbol: gKartBowser306 + type: texture + offset: 0x94F58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame307: + symbol: gKartBowser307 + type: texture + offset: 0x95660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame308: + symbol: gKartBowser308 + type: texture + offset: 0x95DF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame309: + symbol: gKartBowser309 + type: texture + offset: 0x965D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame310: + symbol: gKartBowser310 + type: texture + offset: 0x96D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame311: + symbol: gKartBowser311 + type: texture + offset: 0x974C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame312: + symbol: gKartBowser312 + type: texture + offset: 0x97CBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame313: + symbol: gKartBowser313 + type: texture + offset: 0x98454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame314: + symbol: gKartBowser314 + type: texture + offset: 0x98B6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame315: + symbol: gKartBowser315 + type: texture + offset: 0x9929C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame316: + symbol: gKartBowser316 + type: texture + offset: 0x999E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame317: + symbol: gKartBowser317 + type: texture + offset: 0x9A16C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame318: + symbol: gKartBowser318 + type: texture + offset: 0x9A8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame319: + symbol: gKartBowser319 + type: texture + offset: 0x9B0D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_frame320: + symbol: gKartBowser320 + type: texture + offset: 0x9B8C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: bowser_kart_palette + tlut_wheel: bowser_kart_000_tlut_wheel_0 +bowser_kart_000_tlut_wheel_0: + symbol: gKartBowser000TlutWheel0 + type: texture + offset: 0x9C088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_000_tlut_wheel_1: + symbol: gKartBowser000TlutWheel1 + type: texture + offset: 0x9C108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_000_tlut_wheel_2: + symbol: gKartBowser000TlutWheel2 + type: texture + offset: 0x9C188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_000_tlut_wheel_3: + symbol: gKartBowser000TlutWheel3 + type: texture + offset: 0x9C208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_001_tlut_wheel_0: + symbol: gKartBowser001TlutWheel0 + type: texture + offset: 0x9C288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_001_tlut_wheel_1: + symbol: gKartBowser001TlutWheel1 + type: texture + offset: 0x9C308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_001_tlut_wheel_2: + symbol: gKartBowser001TlutWheel2 + type: texture + offset: 0x9C388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_001_tlut_wheel_3: + symbol: gKartBowser001TlutWheel3 + type: texture + offset: 0x9C408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_002_tlut_wheel_0: + symbol: gKartBowser002TlutWheel0 + type: texture + offset: 0x9C488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_002_tlut_wheel_1: + symbol: gKartBowser002TlutWheel1 + type: texture + offset: 0x9C508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_002_tlut_wheel_2: + symbol: gKartBowser002TlutWheel2 + type: texture + offset: 0x9C588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_002_tlut_wheel_3: + symbol: gKartBowser002TlutWheel3 + type: texture + offset: 0x9C608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_003_tlut_wheel_0: + symbol: gKartBowser003TlutWheel0 + type: texture + offset: 0x9C688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_003_tlut_wheel_1: + symbol: gKartBowser003TlutWheel1 + type: texture + offset: 0x9C708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_003_tlut_wheel_2: + symbol: gKartBowser003TlutWheel2 + type: texture + offset: 0x9C788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_003_tlut_wheel_3: + symbol: gKartBowser003TlutWheel3 + type: texture + offset: 0x9C808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_004_tlut_wheel_0: + symbol: gKartBowser004TlutWheel0 + type: texture + offset: 0x9C888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_004_tlut_wheel_1: + symbol: gKartBowser004TlutWheel1 + type: texture + offset: 0x9C908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_004_tlut_wheel_2: + symbol: gKartBowser004TlutWheel2 + type: texture + offset: 0x9C988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_004_tlut_wheel_3: + symbol: gKartBowser004TlutWheel3 + type: texture + offset: 0x9CA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_005_tlut_wheel_0: + symbol: gKartBowser005TlutWheel0 + type: texture + offset: 0x9CA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_005_tlut_wheel_1: + symbol: gKartBowser005TlutWheel1 + type: texture + offset: 0x9CB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_005_tlut_wheel_2: + symbol: gKartBowser005TlutWheel2 + type: texture + offset: 0x9CB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_005_tlut_wheel_3: + symbol: gKartBowser005TlutWheel3 + type: texture + offset: 0x9CC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_006_tlut_wheel_0: + symbol: gKartBowser006TlutWheel0 + type: texture + offset: 0x9CC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_006_tlut_wheel_1: + symbol: gKartBowser006TlutWheel1 + type: texture + offset: 0x9CD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_006_tlut_wheel_2: + symbol: gKartBowser006TlutWheel2 + type: texture + offset: 0x9CD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_006_tlut_wheel_3: + symbol: gKartBowser006TlutWheel3 + type: texture + offset: 0x9CE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_007_tlut_wheel_0: + symbol: gKartBowser007TlutWheel0 + type: texture + offset: 0x9CE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_007_tlut_wheel_1: + symbol: gKartBowser007TlutWheel1 + type: texture + offset: 0x9CF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_007_tlut_wheel_2: + symbol: gKartBowser007TlutWheel2 + type: texture + offset: 0x9CF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_007_tlut_wheel_3: + symbol: gKartBowser007TlutWheel3 + type: texture + offset: 0x9D008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_008_tlut_wheel_0: + symbol: gKartBowser008TlutWheel0 + type: texture + offset: 0x9D088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_008_tlut_wheel_1: + symbol: gKartBowser008TlutWheel1 + type: texture + offset: 0x9D108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_008_tlut_wheel_2: + symbol: gKartBowser008TlutWheel2 + type: texture + offset: 0x9D188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_008_tlut_wheel_3: + symbol: gKartBowser008TlutWheel3 + type: texture + offset: 0x9D208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_009_tlut_wheel_0: + symbol: gKartBowser009TlutWheel0 + type: texture + offset: 0x9D288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_009_tlut_wheel_1: + symbol: gKartBowser009TlutWheel1 + type: texture + offset: 0x9D308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_009_tlut_wheel_2: + symbol: gKartBowser009TlutWheel2 + type: texture + offset: 0x9D388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_009_tlut_wheel_3: + symbol: gKartBowser009TlutWheel3 + type: texture + offset: 0x9D408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_010_tlut_wheel_0: + symbol: gKartBowser010TlutWheel0 + type: texture + offset: 0x9D488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_010_tlut_wheel_1: + symbol: gKartBowser010TlutWheel1 + type: texture + offset: 0x9D508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_010_tlut_wheel_2: + symbol: gKartBowser010TlutWheel2 + type: texture + offset: 0x9D588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_010_tlut_wheel_3: + symbol: gKartBowser010TlutWheel3 + type: texture + offset: 0x9D608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_011_tlut_wheel_0: + symbol: gKartBowser011TlutWheel0 + type: texture + offset: 0x9D688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_011_tlut_wheel_1: + symbol: gKartBowser011TlutWheel1 + type: texture + offset: 0x9D708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_011_tlut_wheel_2: + symbol: gKartBowser011TlutWheel2 + type: texture + offset: 0x9D788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_011_tlut_wheel_3: + symbol: gKartBowser011TlutWheel3 + type: texture + offset: 0x9D808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_012_tlut_wheel_0: + symbol: gKartBowser012TlutWheel0 + type: texture + offset: 0x9D888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_012_tlut_wheel_1: + symbol: gKartBowser012TlutWheel1 + type: texture + offset: 0x9D908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_012_tlut_wheel_2: + symbol: gKartBowser012TlutWheel2 + type: texture + offset: 0x9D988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_012_tlut_wheel_3: + symbol: gKartBowser012TlutWheel3 + type: texture + offset: 0x9DA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_013_tlut_wheel_0: + symbol: gKartBowser013TlutWheel0 + type: texture + offset: 0x9DA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_013_tlut_wheel_1: + symbol: gKartBowser013TlutWheel1 + type: texture + offset: 0x9DB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_013_tlut_wheel_2: + symbol: gKartBowser013TlutWheel2 + type: texture + offset: 0x9DB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_013_tlut_wheel_3: + symbol: gKartBowser013TlutWheel3 + type: texture + offset: 0x9DC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_014_tlut_wheel_0: + symbol: gKartBowser014TlutWheel0 + type: texture + offset: 0x9DC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_014_tlut_wheel_1: + symbol: gKartBowser014TlutWheel1 + type: texture + offset: 0x9DD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_014_tlut_wheel_2: + symbol: gKartBowser014TlutWheel2 + type: texture + offset: 0x9DD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_014_tlut_wheel_3: + symbol: gKartBowser014TlutWheel3 + type: texture + offset: 0x9DE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_015_tlut_wheel_0: + symbol: gKartBowser015TlutWheel0 + type: texture + offset: 0x9DE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_015_tlut_wheel_1: + symbol: gKartBowser015TlutWheel1 + type: texture + offset: 0x9DF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_015_tlut_wheel_2: + symbol: gKartBowser015TlutWheel2 + type: texture + offset: 0x9DF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_015_tlut_wheel_3: + symbol: gKartBowser015TlutWheel3 + type: texture + offset: 0x9E008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_016_tlut_wheel_0: + symbol: gKartBowser016TlutWheel0 + type: texture + offset: 0x9E088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_016_tlut_wheel_1: + symbol: gKartBowser016TlutWheel1 + type: texture + offset: 0x9E108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_016_tlut_wheel_2: + symbol: gKartBowser016TlutWheel2 + type: texture + offset: 0x9E188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_016_tlut_wheel_3: + symbol: gKartBowser016TlutWheel3 + type: texture + offset: 0x9E208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_017_tlut_wheel_0: + symbol: gKartBowser017TlutWheel0 + type: texture + offset: 0x9E288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_017_tlut_wheel_1: + symbol: gKartBowser017TlutWheel1 + type: texture + offset: 0x9E308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_017_tlut_wheel_2: + symbol: gKartBowser017TlutWheel2 + type: texture + offset: 0x9E388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_017_tlut_wheel_3: + symbol: gKartBowser017TlutWheel3 + type: texture + offset: 0x9E408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_018_tlut_wheel_0: + symbol: gKartBowser018TlutWheel0 + type: texture + offset: 0x9E488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_018_tlut_wheel_1: + symbol: gKartBowser018TlutWheel1 + type: texture + offset: 0x9E508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_018_tlut_wheel_2: + symbol: gKartBowser018TlutWheel2 + type: texture + offset: 0x9E588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_018_tlut_wheel_3: + symbol: gKartBowser018TlutWheel3 + type: texture + offset: 0x9E608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_019_tlut_wheel_0: + symbol: gKartBowser019TlutWheel0 + type: texture + offset: 0x9E688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_019_tlut_wheel_1: + symbol: gKartBowser019TlutWheel1 + type: texture + offset: 0x9E708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_019_tlut_wheel_2: + symbol: gKartBowser019TlutWheel2 + type: texture + offset: 0x9E788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_019_tlut_wheel_3: + symbol: gKartBowser019TlutWheel3 + type: texture + offset: 0x9E808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_020_tlut_wheel_0: + symbol: gKartBowser020TlutWheel0 + type: texture + offset: 0x9E888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_020_tlut_wheel_1: + symbol: gKartBowser020TlutWheel1 + type: texture + offset: 0x9E908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_020_tlut_wheel_2: + symbol: gKartBowser020TlutWheel2 + type: texture + offset: 0x9E988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_020_tlut_wheel_3: + symbol: gKartBowser020TlutWheel3 + type: texture + offset: 0x9EA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_021_tlut_wheel_0: + symbol: gKartBowser021TlutWheel0 + type: texture + offset: 0x9EA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_021_tlut_wheel_1: + symbol: gKartBowser021TlutWheel1 + type: texture + offset: 0x9EB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_021_tlut_wheel_2: + symbol: gKartBowser021TlutWheel2 + type: texture + offset: 0x9EB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_021_tlut_wheel_3: + symbol: gKartBowser021TlutWheel3 + type: texture + offset: 0x9EC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_022_tlut_wheel_0: + symbol: gKartBowser022TlutWheel0 + type: texture + offset: 0x9EC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_022_tlut_wheel_1: + symbol: gKartBowser022TlutWheel1 + type: texture + offset: 0x9ED08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_022_tlut_wheel_2: + symbol: gKartBowser022TlutWheel2 + type: texture + offset: 0x9ED88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_022_tlut_wheel_3: + symbol: gKartBowser022TlutWheel3 + type: texture + offset: 0x9EE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_023_tlut_wheel_0: + symbol: gKartBowser023TlutWheel0 + type: texture + offset: 0x9EE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_023_tlut_wheel_1: + symbol: gKartBowser023TlutWheel1 + type: texture + offset: 0x9EF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_023_tlut_wheel_2: + symbol: gKartBowser023TlutWheel2 + type: texture + offset: 0x9EF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_023_tlut_wheel_3: + symbol: gKartBowser023TlutWheel3 + type: texture + offset: 0x9F008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_024_tlut_wheel_0: + symbol: gKartBowser024TlutWheel0 + type: texture + offset: 0x9F088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_024_tlut_wheel_1: + symbol: gKartBowser024TlutWheel1 + type: texture + offset: 0x9F108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_024_tlut_wheel_2: + symbol: gKartBowser024TlutWheel2 + type: texture + offset: 0x9F188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_024_tlut_wheel_3: + symbol: gKartBowser024TlutWheel3 + type: texture + offset: 0x9F208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_025_tlut_wheel_0: + symbol: gKartBowser025TlutWheel0 + type: texture + offset: 0x9F288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_025_tlut_wheel_1: + symbol: gKartBowser025TlutWheel1 + type: texture + offset: 0x9F308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_025_tlut_wheel_2: + symbol: gKartBowser025TlutWheel2 + type: texture + offset: 0x9F388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_025_tlut_wheel_3: + symbol: gKartBowser025TlutWheel3 + type: texture + offset: 0x9F408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_026_tlut_wheel_0: + symbol: gKartBowser026TlutWheel0 + type: texture + offset: 0x9F488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_026_tlut_wheel_1: + symbol: gKartBowser026TlutWheel1 + type: texture + offset: 0x9F508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_026_tlut_wheel_2: + symbol: gKartBowser026TlutWheel2 + type: texture + offset: 0x9F588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_026_tlut_wheel_3: + symbol: gKartBowser026TlutWheel3 + type: texture + offset: 0x9F608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_027_tlut_wheel_0: + symbol: gKartBowser027TlutWheel0 + type: texture + offset: 0x9F688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_027_tlut_wheel_1: + symbol: gKartBowser027TlutWheel1 + type: texture + offset: 0x9F708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_027_tlut_wheel_2: + symbol: gKartBowser027TlutWheel2 + type: texture + offset: 0x9F788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_027_tlut_wheel_3: + symbol: gKartBowser027TlutWheel3 + type: texture + offset: 0x9F808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_028_tlut_wheel_0: + symbol: gKartBowser028TlutWheel0 + type: texture + offset: 0x9F888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_028_tlut_wheel_1: + symbol: gKartBowser028TlutWheel1 + type: texture + offset: 0x9F908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_028_tlut_wheel_2: + symbol: gKartBowser028TlutWheel2 + type: texture + offset: 0x9F988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_028_tlut_wheel_3: + symbol: gKartBowser028TlutWheel3 + type: texture + offset: 0x9FA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_029_tlut_wheel_0: + symbol: gKartBowser029TlutWheel0 + type: texture + offset: 0x9FA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_029_tlut_wheel_1: + symbol: gKartBowser029TlutWheel1 + type: texture + offset: 0x9FB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_029_tlut_wheel_2: + symbol: gKartBowser029TlutWheel2 + type: texture + offset: 0x9FB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_029_tlut_wheel_3: + symbol: gKartBowser029TlutWheel3 + type: texture + offset: 0x9FC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_030_tlut_wheel_0: + symbol: gKartBowser030TlutWheel0 + type: texture + offset: 0x9FC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_030_tlut_wheel_1: + symbol: gKartBowser030TlutWheel1 + type: texture + offset: 0x9FD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_030_tlut_wheel_2: + symbol: gKartBowser030TlutWheel2 + type: texture + offset: 0x9FD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_030_tlut_wheel_3: + symbol: gKartBowser030TlutWheel3 + type: texture + offset: 0x9FE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_031_tlut_wheel_0: + symbol: gKartBowser031TlutWheel0 + type: texture + offset: 0x9FE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_031_tlut_wheel_1: + symbol: gKartBowser031TlutWheel1 + type: texture + offset: 0x9FF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_031_tlut_wheel_2: + symbol: gKartBowser031TlutWheel2 + type: texture + offset: 0x9FF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_031_tlut_wheel_3: + symbol: gKartBowser031TlutWheel3 + type: texture + offset: 0xA0008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_032_tlut_wheel_0: + symbol: gKartBowser032TlutWheel0 + type: texture + offset: 0xA0088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_032_tlut_wheel_1: + symbol: gKartBowser032TlutWheel1 + type: texture + offset: 0xA0108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_032_tlut_wheel_2: + symbol: gKartBowser032TlutWheel2 + type: texture + offset: 0xA0188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_032_tlut_wheel_3: + symbol: gKartBowser032TlutWheel3 + type: texture + offset: 0xA0208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_033_tlut_wheel_0: + symbol: gKartBowser033TlutWheel0 + type: texture + offset: 0xA0288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_033_tlut_wheel_1: + symbol: gKartBowser033TlutWheel1 + type: texture + offset: 0xA0308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_033_tlut_wheel_2: + symbol: gKartBowser033TlutWheel2 + type: texture + offset: 0xA0388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_033_tlut_wheel_3: + symbol: gKartBowser033TlutWheel3 + type: texture + offset: 0xA0408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_034_tlut_wheel_0: + symbol: gKartBowser034TlutWheel0 + type: texture + offset: 0xA0488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_034_tlut_wheel_1: + symbol: gKartBowser034TlutWheel1 + type: texture + offset: 0xA0508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_034_tlut_wheel_2: + symbol: gKartBowser034TlutWheel2 + type: texture + offset: 0xA0588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_034_tlut_wheel_3: + symbol: gKartBowser034TlutWheel3 + type: texture + offset: 0xA0608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_035_tlut_wheel_0: + symbol: gKartBowser035TlutWheel0 + type: texture + offset: 0xA0688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_035_tlut_wheel_1: + symbol: gKartBowser035TlutWheel1 + type: texture + offset: 0xA0708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_035_tlut_wheel_2: + symbol: gKartBowser035TlutWheel2 + type: texture + offset: 0xA0788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_035_tlut_wheel_3: + symbol: gKartBowser035TlutWheel3 + type: texture + offset: 0xA0808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_036_tlut_wheel_0: + symbol: gKartBowser036TlutWheel0 + type: texture + offset: 0xA0888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_036_tlut_wheel_1: + symbol: gKartBowser036TlutWheel1 + type: texture + offset: 0xA0908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_036_tlut_wheel_2: + symbol: gKartBowser036TlutWheel2 + type: texture + offset: 0xA0988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_036_tlut_wheel_3: + symbol: gKartBowser036TlutWheel3 + type: texture + offset: 0xA0A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_037_tlut_wheel_0: + symbol: gKartBowser037TlutWheel0 + type: texture + offset: 0xA0A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_037_tlut_wheel_1: + symbol: gKartBowser037TlutWheel1 + type: texture + offset: 0xA0B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_037_tlut_wheel_2: + symbol: gKartBowser037TlutWheel2 + type: texture + offset: 0xA0B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_037_tlut_wheel_3: + symbol: gKartBowser037TlutWheel3 + type: texture + offset: 0xA0C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_038_tlut_wheel_0: + symbol: gKartBowser038TlutWheel0 + type: texture + offset: 0xA0C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_038_tlut_wheel_1: + symbol: gKartBowser038TlutWheel1 + type: texture + offset: 0xA0D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_038_tlut_wheel_2: + symbol: gKartBowser038TlutWheel2 + type: texture + offset: 0xA0D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_038_tlut_wheel_3: + symbol: gKartBowser038TlutWheel3 + type: texture + offset: 0xA0E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_039_tlut_wheel_0: + symbol: gKartBowser039TlutWheel0 + type: texture + offset: 0xA0E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_039_tlut_wheel_1: + symbol: gKartBowser039TlutWheel1 + type: texture + offset: 0xA0F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_039_tlut_wheel_2: + symbol: gKartBowser039TlutWheel2 + type: texture + offset: 0xA0F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_039_tlut_wheel_3: + symbol: gKartBowser039TlutWheel3 + type: texture + offset: 0xA1008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_040_tlut_wheel_0: + symbol: gKartBowser040TlutWheel0 + type: texture + offset: 0xA1088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_040_tlut_wheel_1: + symbol: gKartBowser040TlutWheel1 + type: texture + offset: 0xA1108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_040_tlut_wheel_2: + symbol: gKartBowser040TlutWheel2 + type: texture + offset: 0xA1188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_040_tlut_wheel_3: + symbol: gKartBowser040TlutWheel3 + type: texture + offset: 0xA1208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_041_tlut_wheel_0: + symbol: gKartBowser041TlutWheel0 + type: texture + offset: 0xA1288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_041_tlut_wheel_1: + symbol: gKartBowser041TlutWheel1 + type: texture + offset: 0xA1308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_041_tlut_wheel_2: + symbol: gKartBowser041TlutWheel2 + type: texture + offset: 0xA1388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_041_tlut_wheel_3: + symbol: gKartBowser041TlutWheel3 + type: texture + offset: 0xA1408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_042_tlut_wheel_0: + symbol: gKartBowser042TlutWheel0 + type: texture + offset: 0xA1488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_042_tlut_wheel_1: + symbol: gKartBowser042TlutWheel1 + type: texture + offset: 0xA1508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_042_tlut_wheel_2: + symbol: gKartBowser042TlutWheel2 + type: texture + offset: 0xA1588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_042_tlut_wheel_3: + symbol: gKartBowser042TlutWheel3 + type: texture + offset: 0xA1608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_043_tlut_wheel_0: + symbol: gKartBowser043TlutWheel0 + type: texture + offset: 0xA1688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_043_tlut_wheel_1: + symbol: gKartBowser043TlutWheel1 + type: texture + offset: 0xA1708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_043_tlut_wheel_2: + symbol: gKartBowser043TlutWheel2 + type: texture + offset: 0xA1788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_043_tlut_wheel_3: + symbol: gKartBowser043TlutWheel3 + type: texture + offset: 0xA1808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_044_tlut_wheel_0: + symbol: gKartBowser044TlutWheel0 + type: texture + offset: 0xA1888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_044_tlut_wheel_1: + symbol: gKartBowser044TlutWheel1 + type: texture + offset: 0xA1908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_044_tlut_wheel_2: + symbol: gKartBowser044TlutWheel2 + type: texture + offset: 0xA1988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_044_tlut_wheel_3: + symbol: gKartBowser044TlutWheel3 + type: texture + offset: 0xA1A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_045_tlut_wheel_0: + symbol: gKartBowser045TlutWheel0 + type: texture + offset: 0xA1A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_045_tlut_wheel_1: + symbol: gKartBowser045TlutWheel1 + type: texture + offset: 0xA1B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_045_tlut_wheel_2: + symbol: gKartBowser045TlutWheel2 + type: texture + offset: 0xA1B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_045_tlut_wheel_3: + symbol: gKartBowser045TlutWheel3 + type: texture + offset: 0xA1C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_046_tlut_wheel_0: + symbol: gKartBowser046TlutWheel0 + type: texture + offset: 0xA1C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_046_tlut_wheel_1: + symbol: gKartBowser046TlutWheel1 + type: texture + offset: 0xA1D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_046_tlut_wheel_2: + symbol: gKartBowser046TlutWheel2 + type: texture + offset: 0xA1D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_046_tlut_wheel_3: + symbol: gKartBowser046TlutWheel3 + type: texture + offset: 0xA1E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_047_tlut_wheel_0: + symbol: gKartBowser047TlutWheel0 + type: texture + offset: 0xA1E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_047_tlut_wheel_1: + symbol: gKartBowser047TlutWheel1 + type: texture + offset: 0xA1F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_047_tlut_wheel_2: + symbol: gKartBowser047TlutWheel2 + type: texture + offset: 0xA1F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_047_tlut_wheel_3: + symbol: gKartBowser047TlutWheel3 + type: texture + offset: 0xA2008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_048_tlut_wheel_0: + symbol: gKartBowser048TlutWheel0 + type: texture + offset: 0xA2088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_048_tlut_wheel_1: + symbol: gKartBowser048TlutWheel1 + type: texture + offset: 0xA2108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_048_tlut_wheel_2: + symbol: gKartBowser048TlutWheel2 + type: texture + offset: 0xA2188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_048_tlut_wheel_3: + symbol: gKartBowser048TlutWheel3 + type: texture + offset: 0xA2208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_049_tlut_wheel_0: + symbol: gKartBowser049TlutWheel0 + type: texture + offset: 0xA2288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_049_tlut_wheel_1: + symbol: gKartBowser049TlutWheel1 + type: texture + offset: 0xA2308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_049_tlut_wheel_2: + symbol: gKartBowser049TlutWheel2 + type: texture + offset: 0xA2388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_049_tlut_wheel_3: + symbol: gKartBowser049TlutWheel3 + type: texture + offset: 0xA2408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_050_tlut_wheel_0: + symbol: gKartBowser050TlutWheel0 + type: texture + offset: 0xA2488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_050_tlut_wheel_1: + symbol: gKartBowser050TlutWheel1 + type: texture + offset: 0xA2508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_050_tlut_wheel_2: + symbol: gKartBowser050TlutWheel2 + type: texture + offset: 0xA2588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_050_tlut_wheel_3: + symbol: gKartBowser050TlutWheel3 + type: texture + offset: 0xA2608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_051_tlut_wheel_0: + symbol: gKartBowser051TlutWheel0 + type: texture + offset: 0xA2688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_051_tlut_wheel_1: + symbol: gKartBowser051TlutWheel1 + type: texture + offset: 0xA2708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_051_tlut_wheel_2: + symbol: gKartBowser051TlutWheel2 + type: texture + offset: 0xA2788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_051_tlut_wheel_3: + symbol: gKartBowser051TlutWheel3 + type: texture + offset: 0xA2808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_052_tlut_wheel_0: + symbol: gKartBowser052TlutWheel0 + type: texture + offset: 0xA2888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_052_tlut_wheel_1: + symbol: gKartBowser052TlutWheel1 + type: texture + offset: 0xA2908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_052_tlut_wheel_2: + symbol: gKartBowser052TlutWheel2 + type: texture + offset: 0xA2988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_052_tlut_wheel_3: + symbol: gKartBowser052TlutWheel3 + type: texture + offset: 0xA2A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_053_tlut_wheel_0: + symbol: gKartBowser053TlutWheel0 + type: texture + offset: 0xA2A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_053_tlut_wheel_1: + symbol: gKartBowser053TlutWheel1 + type: texture + offset: 0xA2B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_053_tlut_wheel_2: + symbol: gKartBowser053TlutWheel2 + type: texture + offset: 0xA2B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_053_tlut_wheel_3: + symbol: gKartBowser053TlutWheel3 + type: texture + offset: 0xA2C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_054_tlut_wheel_0: + symbol: gKartBowser054TlutWheel0 + type: texture + offset: 0xA2C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_054_tlut_wheel_1: + symbol: gKartBowser054TlutWheel1 + type: texture + offset: 0xA2D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_054_tlut_wheel_2: + symbol: gKartBowser054TlutWheel2 + type: texture + offset: 0xA2D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_054_tlut_wheel_3: + symbol: gKartBowser054TlutWheel3 + type: texture + offset: 0xA2E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_055_tlut_wheel_0: + symbol: gKartBowser055TlutWheel0 + type: texture + offset: 0xA2E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_055_tlut_wheel_1: + symbol: gKartBowser055TlutWheel1 + type: texture + offset: 0xA2F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_055_tlut_wheel_2: + symbol: gKartBowser055TlutWheel2 + type: texture + offset: 0xA2F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_055_tlut_wheel_3: + symbol: gKartBowser055TlutWheel3 + type: texture + offset: 0xA3008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_056_tlut_wheel_0: + symbol: gKartBowser056TlutWheel0 + type: texture + offset: 0xA3088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_056_tlut_wheel_1: + symbol: gKartBowser056TlutWheel1 + type: texture + offset: 0xA3108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_056_tlut_wheel_2: + symbol: gKartBowser056TlutWheel2 + type: texture + offset: 0xA3188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_056_tlut_wheel_3: + symbol: gKartBowser056TlutWheel3 + type: texture + offset: 0xA3208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_057_tlut_wheel_0: + symbol: gKartBowser057TlutWheel0 + type: texture + offset: 0xA3288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_057_tlut_wheel_1: + symbol: gKartBowser057TlutWheel1 + type: texture + offset: 0xA3308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_057_tlut_wheel_2: + symbol: gKartBowser057TlutWheel2 + type: texture + offset: 0xA3388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_057_tlut_wheel_3: + symbol: gKartBowser057TlutWheel3 + type: texture + offset: 0xA3408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_058_tlut_wheel_0: + symbol: gKartBowser058TlutWheel0 + type: texture + offset: 0xA3488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_058_tlut_wheel_1: + symbol: gKartBowser058TlutWheel1 + type: texture + offset: 0xA3508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_058_tlut_wheel_2: + symbol: gKartBowser058TlutWheel2 + type: texture + offset: 0xA3588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_058_tlut_wheel_3: + symbol: gKartBowser058TlutWheel3 + type: texture + offset: 0xA3608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_059_tlut_wheel_0: + symbol: gKartBowser059TlutWheel0 + type: texture + offset: 0xA3688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_059_tlut_wheel_1: + symbol: gKartBowser059TlutWheel1 + type: texture + offset: 0xA3708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_059_tlut_wheel_2: + symbol: gKartBowser059TlutWheel2 + type: texture + offset: 0xA3788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_059_tlut_wheel_3: + symbol: gKartBowser059TlutWheel3 + type: texture + offset: 0xA3808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_060_tlut_wheel_0: + symbol: gKartBowser060TlutWheel0 + type: texture + offset: 0xA3888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_060_tlut_wheel_1: + symbol: gKartBowser060TlutWheel1 + type: texture + offset: 0xA3908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_060_tlut_wheel_2: + symbol: gKartBowser060TlutWheel2 + type: texture + offset: 0xA3988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_060_tlut_wheel_3: + symbol: gKartBowser060TlutWheel3 + type: texture + offset: 0xA3A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_061_tlut_wheel_0: + symbol: gKartBowser061TlutWheel0 + type: texture + offset: 0xA3A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_061_tlut_wheel_1: + symbol: gKartBowser061TlutWheel1 + type: texture + offset: 0xA3B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_061_tlut_wheel_2: + symbol: gKartBowser061TlutWheel2 + type: texture + offset: 0xA3B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_061_tlut_wheel_3: + symbol: gKartBowser061TlutWheel3 + type: texture + offset: 0xA3C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_062_tlut_wheel_0: + symbol: gKartBowser062TlutWheel0 + type: texture + offset: 0xA3C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_062_tlut_wheel_1: + symbol: gKartBowser062TlutWheel1 + type: texture + offset: 0xA3D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_062_tlut_wheel_2: + symbol: gKartBowser062TlutWheel2 + type: texture + offset: 0xA3D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_062_tlut_wheel_3: + symbol: gKartBowser062TlutWheel3 + type: texture + offset: 0xA3E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_063_tlut_wheel_0: + symbol: gKartBowser063TlutWheel0 + type: texture + offset: 0xA3E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_063_tlut_wheel_1: + symbol: gKartBowser063TlutWheel1 + type: texture + offset: 0xA3F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_063_tlut_wheel_2: + symbol: gKartBowser063TlutWheel2 + type: texture + offset: 0xA3F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_063_tlut_wheel_3: + symbol: gKartBowser063TlutWheel3 + type: texture + offset: 0xA4008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_064_tlut_wheel_0: + symbol: gKartBowser064TlutWheel0 + type: texture + offset: 0xA4088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_064_tlut_wheel_1: + symbol: gKartBowser064TlutWheel1 + type: texture + offset: 0xA4108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_064_tlut_wheel_2: + symbol: gKartBowser064TlutWheel2 + type: texture + offset: 0xA4188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_064_tlut_wheel_3: + symbol: gKartBowser064TlutWheel3 + type: texture + offset: 0xA4208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_065_tlut_wheel_0: + symbol: gKartBowser065TlutWheel0 + type: texture + offset: 0xA4288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_065_tlut_wheel_1: + symbol: gKartBowser065TlutWheel1 + type: texture + offset: 0xA4308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_065_tlut_wheel_2: + symbol: gKartBowser065TlutWheel2 + type: texture + offset: 0xA4388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_065_tlut_wheel_3: + symbol: gKartBowser065TlutWheel3 + type: texture + offset: 0xA4408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_066_tlut_wheel_0: + symbol: gKartBowser066TlutWheel0 + type: texture + offset: 0xA4488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_066_tlut_wheel_1: + symbol: gKartBowser066TlutWheel1 + type: texture + offset: 0xA4508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_066_tlut_wheel_2: + symbol: gKartBowser066TlutWheel2 + type: texture + offset: 0xA4588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_066_tlut_wheel_3: + symbol: gKartBowser066TlutWheel3 + type: texture + offset: 0xA4608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_067_tlut_wheel_0: + symbol: gKartBowser067TlutWheel0 + type: texture + offset: 0xA4688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_067_tlut_wheel_1: + symbol: gKartBowser067TlutWheel1 + type: texture + offset: 0xA4708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_067_tlut_wheel_2: + symbol: gKartBowser067TlutWheel2 + type: texture + offset: 0xA4788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_067_tlut_wheel_3: + symbol: gKartBowser067TlutWheel3 + type: texture + offset: 0xA4808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_068_tlut_wheel_0: + symbol: gKartBowser068TlutWheel0 + type: texture + offset: 0xA4888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_068_tlut_wheel_1: + symbol: gKartBowser068TlutWheel1 + type: texture + offset: 0xA4908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_068_tlut_wheel_2: + symbol: gKartBowser068TlutWheel2 + type: texture + offset: 0xA4988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_068_tlut_wheel_3: + symbol: gKartBowser068TlutWheel3 + type: texture + offset: 0xA4A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_069_tlut_wheel_0: + symbol: gKartBowser069TlutWheel0 + type: texture + offset: 0xA4A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_069_tlut_wheel_1: + symbol: gKartBowser069TlutWheel1 + type: texture + offset: 0xA4B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_069_tlut_wheel_2: + symbol: gKartBowser069TlutWheel2 + type: texture + offset: 0xA4B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_069_tlut_wheel_3: + symbol: gKartBowser069TlutWheel3 + type: texture + offset: 0xA4C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_070_tlut_wheel_0: + symbol: gKartBowser070TlutWheel0 + type: texture + offset: 0xA4C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_070_tlut_wheel_1: + symbol: gKartBowser070TlutWheel1 + type: texture + offset: 0xA4D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_070_tlut_wheel_2: + symbol: gKartBowser070TlutWheel2 + type: texture + offset: 0xA4D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_070_tlut_wheel_3: + symbol: gKartBowser070TlutWheel3 + type: texture + offset: 0xA4E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_071_tlut_wheel_0: + symbol: gKartBowser071TlutWheel0 + type: texture + offset: 0xA4E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_071_tlut_wheel_1: + symbol: gKartBowser071TlutWheel1 + type: texture + offset: 0xA4F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_071_tlut_wheel_2: + symbol: gKartBowser071TlutWheel2 + type: texture + offset: 0xA4F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_071_tlut_wheel_3: + symbol: gKartBowser071TlutWheel3 + type: texture + offset: 0xA5008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_072_tlut_wheel_0: + symbol: gKartBowser072TlutWheel0 + type: texture + offset: 0xA5088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_072_tlut_wheel_1: + symbol: gKartBowser072TlutWheel1 + type: texture + offset: 0xA5108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_072_tlut_wheel_2: + symbol: gKartBowser072TlutWheel2 + type: texture + offset: 0xA5188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_072_tlut_wheel_3: + symbol: gKartBowser072TlutWheel3 + type: texture + offset: 0xA5208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_073_tlut_wheel_0: + symbol: gKartBowser073TlutWheel0 + type: texture + offset: 0xA5288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_073_tlut_wheel_1: + symbol: gKartBowser073TlutWheel1 + type: texture + offset: 0xA5308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_073_tlut_wheel_2: + symbol: gKartBowser073TlutWheel2 + type: texture + offset: 0xA5388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_073_tlut_wheel_3: + symbol: gKartBowser073TlutWheel3 + type: texture + offset: 0xA5408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_074_tlut_wheel_0: + symbol: gKartBowser074TlutWheel0 + type: texture + offset: 0xA5488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_074_tlut_wheel_1: + symbol: gKartBowser074TlutWheel1 + type: texture + offset: 0xA5508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_074_tlut_wheel_2: + symbol: gKartBowser074TlutWheel2 + type: texture + offset: 0xA5588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_074_tlut_wheel_3: + symbol: gKartBowser074TlutWheel3 + type: texture + offset: 0xA5608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_075_tlut_wheel_0: + symbol: gKartBowser075TlutWheel0 + type: texture + offset: 0xA5688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_075_tlut_wheel_1: + symbol: gKartBowser075TlutWheel1 + type: texture + offset: 0xA5708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_075_tlut_wheel_2: + symbol: gKartBowser075TlutWheel2 + type: texture + offset: 0xA5788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_075_tlut_wheel_3: + symbol: gKartBowser075TlutWheel3 + type: texture + offset: 0xA5808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_076_tlut_wheel_0: + symbol: gKartBowser076TlutWheel0 + type: texture + offset: 0xA5888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_076_tlut_wheel_1: + symbol: gKartBowser076TlutWheel1 + type: texture + offset: 0xA5908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_076_tlut_wheel_2: + symbol: gKartBowser076TlutWheel2 + type: texture + offset: 0xA5988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_076_tlut_wheel_3: + symbol: gKartBowser076TlutWheel3 + type: texture + offset: 0xA5A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_077_tlut_wheel_0: + symbol: gKartBowser077TlutWheel0 + type: texture + offset: 0xA5A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_077_tlut_wheel_1: + symbol: gKartBowser077TlutWheel1 + type: texture + offset: 0xA5B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_077_tlut_wheel_2: + symbol: gKartBowser077TlutWheel2 + type: texture + offset: 0xA5B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_077_tlut_wheel_3: + symbol: gKartBowser077TlutWheel3 + type: texture + offset: 0xA5C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_078_tlut_wheel_0: + symbol: gKartBowser078TlutWheel0 + type: texture + offset: 0xA5C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_078_tlut_wheel_1: + symbol: gKartBowser078TlutWheel1 + type: texture + offset: 0xA5D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_078_tlut_wheel_2: + symbol: gKartBowser078TlutWheel2 + type: texture + offset: 0xA5D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_078_tlut_wheel_3: + symbol: gKartBowser078TlutWheel3 + type: texture + offset: 0xA5E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_079_tlut_wheel_0: + symbol: gKartBowser079TlutWheel0 + type: texture + offset: 0xA5E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_079_tlut_wheel_1: + symbol: gKartBowser079TlutWheel1 + type: texture + offset: 0xA5F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_079_tlut_wheel_2: + symbol: gKartBowser079TlutWheel2 + type: texture + offset: 0xA5F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_079_tlut_wheel_3: + symbol: gKartBowser079TlutWheel3 + type: texture + offset: 0xA6008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_080_tlut_wheel_0: + symbol: gKartBowser080TlutWheel0 + type: texture + offset: 0xA6088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_080_tlut_wheel_1: + symbol: gKartBowser080TlutWheel1 + type: texture + offset: 0xA6108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_080_tlut_wheel_2: + symbol: gKartBowser080TlutWheel2 + type: texture + offset: 0xA6188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_080_tlut_wheel_3: + symbol: gKartBowser080TlutWheel3 + type: texture + offset: 0xA6208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_081_tlut_wheel_0: + symbol: gKartBowser081TlutWheel0 + type: texture + offset: 0xA6288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_081_tlut_wheel_1: + symbol: gKartBowser081TlutWheel1 + type: texture + offset: 0xA6308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_081_tlut_wheel_2: + symbol: gKartBowser081TlutWheel2 + type: texture + offset: 0xA6388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_081_tlut_wheel_3: + symbol: gKartBowser081TlutWheel3 + type: texture + offset: 0xA6408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_082_tlut_wheel_0: + symbol: gKartBowser082TlutWheel0 + type: texture + offset: 0xA6488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_082_tlut_wheel_1: + symbol: gKartBowser082TlutWheel1 + type: texture + offset: 0xA6508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_082_tlut_wheel_2: + symbol: gKartBowser082TlutWheel2 + type: texture + offset: 0xA6588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_082_tlut_wheel_3: + symbol: gKartBowser082TlutWheel3 + type: texture + offset: 0xA6608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_083_tlut_wheel_0: + symbol: gKartBowser083TlutWheel0 + type: texture + offset: 0xA6688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_083_tlut_wheel_1: + symbol: gKartBowser083TlutWheel1 + type: texture + offset: 0xA6708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_083_tlut_wheel_2: + symbol: gKartBowser083TlutWheel2 + type: texture + offset: 0xA6788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_083_tlut_wheel_3: + symbol: gKartBowser083TlutWheel3 + type: texture + offset: 0xA6808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_084_tlut_wheel_0: + symbol: gKartBowser084TlutWheel0 + type: texture + offset: 0xA6888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_084_tlut_wheel_1: + symbol: gKartBowser084TlutWheel1 + type: texture + offset: 0xA6908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_084_tlut_wheel_2: + symbol: gKartBowser084TlutWheel2 + type: texture + offset: 0xA6988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_084_tlut_wheel_3: + symbol: gKartBowser084TlutWheel3 + type: texture + offset: 0xA6A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_085_tlut_wheel_0: + symbol: gKartBowser085TlutWheel0 + type: texture + offset: 0xA6A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_085_tlut_wheel_1: + symbol: gKartBowser085TlutWheel1 + type: texture + offset: 0xA6B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_085_tlut_wheel_2: + symbol: gKartBowser085TlutWheel2 + type: texture + offset: 0xA6B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_085_tlut_wheel_3: + symbol: gKartBowser085TlutWheel3 + type: texture + offset: 0xA6C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_086_tlut_wheel_0: + symbol: gKartBowser086TlutWheel0 + type: texture + offset: 0xA6C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_086_tlut_wheel_1: + symbol: gKartBowser086TlutWheel1 + type: texture + offset: 0xA6D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_086_tlut_wheel_2: + symbol: gKartBowser086TlutWheel2 + type: texture + offset: 0xA6D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_086_tlut_wheel_3: + symbol: gKartBowser086TlutWheel3 + type: texture + offset: 0xA6E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_087_tlut_wheel_0: + symbol: gKartBowser087TlutWheel0 + type: texture + offset: 0xA6E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_087_tlut_wheel_1: + symbol: gKartBowser087TlutWheel1 + type: texture + offset: 0xA6F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_087_tlut_wheel_2: + symbol: gKartBowser087TlutWheel2 + type: texture + offset: 0xA6F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_087_tlut_wheel_3: + symbol: gKartBowser087TlutWheel3 + type: texture + offset: 0xA7008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_088_tlut_wheel_0: + symbol: gKartBowser088TlutWheel0 + type: texture + offset: 0xA7088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_088_tlut_wheel_1: + symbol: gKartBowser088TlutWheel1 + type: texture + offset: 0xA7108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_088_tlut_wheel_2: + symbol: gKartBowser088TlutWheel2 + type: texture + offset: 0xA7188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_088_tlut_wheel_3: + symbol: gKartBowser088TlutWheel3 + type: texture + offset: 0xA7208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_089_tlut_wheel_0: + symbol: gKartBowser089TlutWheel0 + type: texture + offset: 0xA7288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_089_tlut_wheel_1: + symbol: gKartBowser089TlutWheel1 + type: texture + offset: 0xA7308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_089_tlut_wheel_2: + symbol: gKartBowser089TlutWheel2 + type: texture + offset: 0xA7388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_089_tlut_wheel_3: + symbol: gKartBowser089TlutWheel3 + type: texture + offset: 0xA7408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_090_tlut_wheel_0: + symbol: gKartBowser090TlutWheel0 + type: texture + offset: 0xA7488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_090_tlut_wheel_1: + symbol: gKartBowser090TlutWheel1 + type: texture + offset: 0xA7508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_090_tlut_wheel_2: + symbol: gKartBowser090TlutWheel2 + type: texture + offset: 0xA7588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_090_tlut_wheel_3: + symbol: gKartBowser090TlutWheel3 + type: texture + offset: 0xA7608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_091_tlut_wheel_0: + symbol: gKartBowser091TlutWheel0 + type: texture + offset: 0xA7688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_091_tlut_wheel_1: + symbol: gKartBowser091TlutWheel1 + type: texture + offset: 0xA7708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_091_tlut_wheel_2: + symbol: gKartBowser091TlutWheel2 + type: texture + offset: 0xA7788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_091_tlut_wheel_3: + symbol: gKartBowser091TlutWheel3 + type: texture + offset: 0xA7808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_092_tlut_wheel_0: + symbol: gKartBowser092TlutWheel0 + type: texture + offset: 0xA7888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_092_tlut_wheel_1: + symbol: gKartBowser092TlutWheel1 + type: texture + offset: 0xA7908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_092_tlut_wheel_2: + symbol: gKartBowser092TlutWheel2 + type: texture + offset: 0xA7988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_092_tlut_wheel_3: + symbol: gKartBowser092TlutWheel3 + type: texture + offset: 0xA7A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_093_tlut_wheel_0: + symbol: gKartBowser093TlutWheel0 + type: texture + offset: 0xA7A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_093_tlut_wheel_1: + symbol: gKartBowser093TlutWheel1 + type: texture + offset: 0xA7B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_093_tlut_wheel_2: + symbol: gKartBowser093TlutWheel2 + type: texture + offset: 0xA7B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_093_tlut_wheel_3: + symbol: gKartBowser093TlutWheel3 + type: texture + offset: 0xA7C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_094_tlut_wheel_0: + symbol: gKartBowser094TlutWheel0 + type: texture + offset: 0xA7C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_094_tlut_wheel_1: + symbol: gKartBowser094TlutWheel1 + type: texture + offset: 0xA7D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_094_tlut_wheel_2: + symbol: gKartBowser094TlutWheel2 + type: texture + offset: 0xA7D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_094_tlut_wheel_3: + symbol: gKartBowser094TlutWheel3 + type: texture + offset: 0xA7E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_095_tlut_wheel_0: + symbol: gKartBowser095TlutWheel0 + type: texture + offset: 0xA7E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_095_tlut_wheel_1: + symbol: gKartBowser095TlutWheel1 + type: texture + offset: 0xA7F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_095_tlut_wheel_2: + symbol: gKartBowser095TlutWheel2 + type: texture + offset: 0xA7F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_095_tlut_wheel_3: + symbol: gKartBowser095TlutWheel3 + type: texture + offset: 0xA8008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_096_tlut_wheel_0: + symbol: gKartBowser096TlutWheel0 + type: texture + offset: 0xA8088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_096_tlut_wheel_1: + symbol: gKartBowser096TlutWheel1 + type: texture + offset: 0xA8108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_096_tlut_wheel_2: + symbol: gKartBowser096TlutWheel2 + type: texture + offset: 0xA8188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_096_tlut_wheel_3: + symbol: gKartBowser096TlutWheel3 + type: texture + offset: 0xA8208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_097_tlut_wheel_0: + symbol: gKartBowser097TlutWheel0 + type: texture + offset: 0xA8288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_097_tlut_wheel_1: + symbol: gKartBowser097TlutWheel1 + type: texture + offset: 0xA8308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_097_tlut_wheel_2: + symbol: gKartBowser097TlutWheel2 + type: texture + offset: 0xA8388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_097_tlut_wheel_3: + symbol: gKartBowser097TlutWheel3 + type: texture + offset: 0xA8408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_098_tlut_wheel_0: + symbol: gKartBowser098TlutWheel0 + type: texture + offset: 0xA8488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_098_tlut_wheel_1: + symbol: gKartBowser098TlutWheel1 + type: texture + offset: 0xA8508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_098_tlut_wheel_2: + symbol: gKartBowser098TlutWheel2 + type: texture + offset: 0xA8588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_098_tlut_wheel_3: + symbol: gKartBowser098TlutWheel3 + type: texture + offset: 0xA8608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_099_tlut_wheel_0: + symbol: gKartBowser099TlutWheel0 + type: texture + offset: 0xA8688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_099_tlut_wheel_1: + symbol: gKartBowser099TlutWheel1 + type: texture + offset: 0xA8708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_099_tlut_wheel_2: + symbol: gKartBowser099TlutWheel2 + type: texture + offset: 0xA8788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_099_tlut_wheel_3: + symbol: gKartBowser099TlutWheel3 + type: texture + offset: 0xA8808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_100_tlut_wheel_0: + symbol: gKartBowser100TlutWheel0 + type: texture + offset: 0xA8888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_100_tlut_wheel_1: + symbol: gKartBowser100TlutWheel1 + type: texture + offset: 0xA8908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_100_tlut_wheel_2: + symbol: gKartBowser100TlutWheel2 + type: texture + offset: 0xA8988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_100_tlut_wheel_3: + symbol: gKartBowser100TlutWheel3 + type: texture + offset: 0xA8A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_101_tlut_wheel_0: + symbol: gKartBowser101TlutWheel0 + type: texture + offset: 0xA8A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_101_tlut_wheel_1: + symbol: gKartBowser101TlutWheel1 + type: texture + offset: 0xA8B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_101_tlut_wheel_2: + symbol: gKartBowser101TlutWheel2 + type: texture + offset: 0xA8B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_101_tlut_wheel_3: + symbol: gKartBowser101TlutWheel3 + type: texture + offset: 0xA8C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_102_tlut_wheel_0: + symbol: gKartBowser102TlutWheel0 + type: texture + offset: 0xA8C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_102_tlut_wheel_1: + symbol: gKartBowser102TlutWheel1 + type: texture + offset: 0xA8D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_102_tlut_wheel_2: + symbol: gKartBowser102TlutWheel2 + type: texture + offset: 0xA8D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_102_tlut_wheel_3: + symbol: gKartBowser102TlutWheel3 + type: texture + offset: 0xA8E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_103_tlut_wheel_0: + symbol: gKartBowser103TlutWheel0 + type: texture + offset: 0xA8E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_103_tlut_wheel_1: + symbol: gKartBowser103TlutWheel1 + type: texture + offset: 0xA8F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_103_tlut_wheel_2: + symbol: gKartBowser103TlutWheel2 + type: texture + offset: 0xA8F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_103_tlut_wheel_3: + symbol: gKartBowser103TlutWheel3 + type: texture + offset: 0xA9008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_104_tlut_wheel_0: + symbol: gKartBowser104TlutWheel0 + type: texture + offset: 0xA9088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_104_tlut_wheel_1: + symbol: gKartBowser104TlutWheel1 + type: texture + offset: 0xA9108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_104_tlut_wheel_2: + symbol: gKartBowser104TlutWheel2 + type: texture + offset: 0xA9188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_104_tlut_wheel_3: + symbol: gKartBowser104TlutWheel3 + type: texture + offset: 0xA9208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_105_tlut_wheel_0: + symbol: gKartBowser105TlutWheel0 + type: texture + offset: 0xA9288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_105_tlut_wheel_1: + symbol: gKartBowser105TlutWheel1 + type: texture + offset: 0xA9308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_105_tlut_wheel_2: + symbol: gKartBowser105TlutWheel2 + type: texture + offset: 0xA9388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_105_tlut_wheel_3: + symbol: gKartBowser105TlutWheel3 + type: texture + offset: 0xA9408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_106_tlut_wheel_0: + symbol: gKartBowser106TlutWheel0 + type: texture + offset: 0xA9488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_106_tlut_wheel_1: + symbol: gKartBowser106TlutWheel1 + type: texture + offset: 0xA9508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_106_tlut_wheel_2: + symbol: gKartBowser106TlutWheel2 + type: texture + offset: 0xA9588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_106_tlut_wheel_3: + symbol: gKartBowser106TlutWheel3 + type: texture + offset: 0xA9608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_107_tlut_wheel_0: + symbol: gKartBowser107TlutWheel0 + type: texture + offset: 0xA9688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_107_tlut_wheel_1: + symbol: gKartBowser107TlutWheel1 + type: texture + offset: 0xA9708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_107_tlut_wheel_2: + symbol: gKartBowser107TlutWheel2 + type: texture + offset: 0xA9788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_107_tlut_wheel_3: + symbol: gKartBowser107TlutWheel3 + type: texture + offset: 0xA9808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_108_tlut_wheel_0: + symbol: gKartBowser108TlutWheel0 + type: texture + offset: 0xA9888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_108_tlut_wheel_1: + symbol: gKartBowser108TlutWheel1 + type: texture + offset: 0xA9908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_108_tlut_wheel_2: + symbol: gKartBowser108TlutWheel2 + type: texture + offset: 0xA9988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_108_tlut_wheel_3: + symbol: gKartBowser108TlutWheel3 + type: texture + offset: 0xA9A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_109_tlut_wheel_0: + symbol: gKartBowser109TlutWheel0 + type: texture + offset: 0xA9A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_109_tlut_wheel_1: + symbol: gKartBowser109TlutWheel1 + type: texture + offset: 0xA9B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_109_tlut_wheel_2: + symbol: gKartBowser109TlutWheel2 + type: texture + offset: 0xA9B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_109_tlut_wheel_3: + symbol: gKartBowser109TlutWheel3 + type: texture + offset: 0xA9C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_110_tlut_wheel_0: + symbol: gKartBowser110TlutWheel0 + type: texture + offset: 0xA9C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_110_tlut_wheel_1: + symbol: gKartBowser110TlutWheel1 + type: texture + offset: 0xA9D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_110_tlut_wheel_2: + symbol: gKartBowser110TlutWheel2 + type: texture + offset: 0xA9D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_110_tlut_wheel_3: + symbol: gKartBowser110TlutWheel3 + type: texture + offset: 0xA9E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_111_tlut_wheel_0: + symbol: gKartBowser111TlutWheel0 + type: texture + offset: 0xA9E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_111_tlut_wheel_1: + symbol: gKartBowser111TlutWheel1 + type: texture + offset: 0xA9F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_111_tlut_wheel_2: + symbol: gKartBowser111TlutWheel2 + type: texture + offset: 0xA9F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_111_tlut_wheel_3: + symbol: gKartBowser111TlutWheel3 + type: texture + offset: 0xAA008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_112_tlut_wheel_0: + symbol: gKartBowser112TlutWheel0 + type: texture + offset: 0xAA088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_112_tlut_wheel_1: + symbol: gKartBowser112TlutWheel1 + type: texture + offset: 0xAA108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_112_tlut_wheel_2: + symbol: gKartBowser112TlutWheel2 + type: texture + offset: 0xAA188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_112_tlut_wheel_3: + symbol: gKartBowser112TlutWheel3 + type: texture + offset: 0xAA208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_113_tlut_wheel_0: + symbol: gKartBowser113TlutWheel0 + type: texture + offset: 0xAA288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_113_tlut_wheel_1: + symbol: gKartBowser113TlutWheel1 + type: texture + offset: 0xAA308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_113_tlut_wheel_2: + symbol: gKartBowser113TlutWheel2 + type: texture + offset: 0xAA388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_113_tlut_wheel_3: + symbol: gKartBowser113TlutWheel3 + type: texture + offset: 0xAA408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_114_tlut_wheel_0: + symbol: gKartBowser114TlutWheel0 + type: texture + offset: 0xAA488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_114_tlut_wheel_1: + symbol: gKartBowser114TlutWheel1 + type: texture + offset: 0xAA508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_114_tlut_wheel_2: + symbol: gKartBowser114TlutWheel2 + type: texture + offset: 0xAA588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_114_tlut_wheel_3: + symbol: gKartBowser114TlutWheel3 + type: texture + offset: 0xAA608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_115_tlut_wheel_0: + symbol: gKartBowser115TlutWheel0 + type: texture + offset: 0xAA688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_115_tlut_wheel_1: + symbol: gKartBowser115TlutWheel1 + type: texture + offset: 0xAA708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_115_tlut_wheel_2: + symbol: gKartBowser115TlutWheel2 + type: texture + offset: 0xAA788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_115_tlut_wheel_3: + symbol: gKartBowser115TlutWheel3 + type: texture + offset: 0xAA808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_116_tlut_wheel_0: + symbol: gKartBowser116TlutWheel0 + type: texture + offset: 0xAA888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_116_tlut_wheel_1: + symbol: gKartBowser116TlutWheel1 + type: texture + offset: 0xAA908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_116_tlut_wheel_2: + symbol: gKartBowser116TlutWheel2 + type: texture + offset: 0xAA988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_116_tlut_wheel_3: + symbol: gKartBowser116TlutWheel3 + type: texture + offset: 0xAAA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_117_tlut_wheel_0: + symbol: gKartBowser117TlutWheel0 + type: texture + offset: 0xAAA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_117_tlut_wheel_1: + symbol: gKartBowser117TlutWheel1 + type: texture + offset: 0xAAB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_117_tlut_wheel_2: + symbol: gKartBowser117TlutWheel2 + type: texture + offset: 0xAAB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_117_tlut_wheel_3: + symbol: gKartBowser117TlutWheel3 + type: texture + offset: 0xAAC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_118_tlut_wheel_0: + symbol: gKartBowser118TlutWheel0 + type: texture + offset: 0xAAC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_118_tlut_wheel_1: + symbol: gKartBowser118TlutWheel1 + type: texture + offset: 0xAAD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_118_tlut_wheel_2: + symbol: gKartBowser118TlutWheel2 + type: texture + offset: 0xAAD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_118_tlut_wheel_3: + symbol: gKartBowser118TlutWheel3 + type: texture + offset: 0xAAE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_119_tlut_wheel_0: + symbol: gKartBowser119TlutWheel0 + type: texture + offset: 0xAAE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_119_tlut_wheel_1: + symbol: gKartBowser119TlutWheel1 + type: texture + offset: 0xAAF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_119_tlut_wheel_2: + symbol: gKartBowser119TlutWheel2 + type: texture + offset: 0xAAF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_119_tlut_wheel_3: + symbol: gKartBowser119TlutWheel3 + type: texture + offset: 0xAB008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_120_tlut_wheel_0: + symbol: gKartBowser120TlutWheel0 + type: texture + offset: 0xAB088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_120_tlut_wheel_1: + symbol: gKartBowser120TlutWheel1 + type: texture + offset: 0xAB108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_120_tlut_wheel_2: + symbol: gKartBowser120TlutWheel2 + type: texture + offset: 0xAB188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_120_tlut_wheel_3: + symbol: gKartBowser120TlutWheel3 + type: texture + offset: 0xAB208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_121_tlut_wheel_0: + symbol: gKartBowser121TlutWheel0 + type: texture + offset: 0xAB288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_121_tlut_wheel_1: + symbol: gKartBowser121TlutWheel1 + type: texture + offset: 0xAB308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_121_tlut_wheel_2: + symbol: gKartBowser121TlutWheel2 + type: texture + offset: 0xAB388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_121_tlut_wheel_3: + symbol: gKartBowser121TlutWheel3 + type: texture + offset: 0xAB408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_122_tlut_wheel_0: + symbol: gKartBowser122TlutWheel0 + type: texture + offset: 0xAB488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_122_tlut_wheel_1: + symbol: gKartBowser122TlutWheel1 + type: texture + offset: 0xAB508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_122_tlut_wheel_2: + symbol: gKartBowser122TlutWheel2 + type: texture + offset: 0xAB588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_122_tlut_wheel_3: + symbol: gKartBowser122TlutWheel3 + type: texture + offset: 0xAB608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_123_tlut_wheel_0: + symbol: gKartBowser123TlutWheel0 + type: texture + offset: 0xAB688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_123_tlut_wheel_1: + symbol: gKartBowser123TlutWheel1 + type: texture + offset: 0xAB708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_123_tlut_wheel_2: + symbol: gKartBowser123TlutWheel2 + type: texture + offset: 0xAB788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_123_tlut_wheel_3: + symbol: gKartBowser123TlutWheel3 + type: texture + offset: 0xAB808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_124_tlut_wheel_0: + symbol: gKartBowser124TlutWheel0 + type: texture + offset: 0xAB888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_124_tlut_wheel_1: + symbol: gKartBowser124TlutWheel1 + type: texture + offset: 0xAB908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_124_tlut_wheel_2: + symbol: gKartBowser124TlutWheel2 + type: texture + offset: 0xAB988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_124_tlut_wheel_3: + symbol: gKartBowser124TlutWheel3 + type: texture + offset: 0xABA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_125_tlut_wheel_0: + symbol: gKartBowser125TlutWheel0 + type: texture + offset: 0xABA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_125_tlut_wheel_1: + symbol: gKartBowser125TlutWheel1 + type: texture + offset: 0xABB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_125_tlut_wheel_2: + symbol: gKartBowser125TlutWheel2 + type: texture + offset: 0xABB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_125_tlut_wheel_3: + symbol: gKartBowser125TlutWheel3 + type: texture + offset: 0xABC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_126_tlut_wheel_0: + symbol: gKartBowser126TlutWheel0 + type: texture + offset: 0xABC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_126_tlut_wheel_1: + symbol: gKartBowser126TlutWheel1 + type: texture + offset: 0xABD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_126_tlut_wheel_2: + symbol: gKartBowser126TlutWheel2 + type: texture + offset: 0xABD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_126_tlut_wheel_3: + symbol: gKartBowser126TlutWheel3 + type: texture + offset: 0xABE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_127_tlut_wheel_0: + symbol: gKartBowser127TlutWheel0 + type: texture + offset: 0xABE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_127_tlut_wheel_1: + symbol: gKartBowser127TlutWheel1 + type: texture + offset: 0xABF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_127_tlut_wheel_2: + symbol: gKartBowser127TlutWheel2 + type: texture + offset: 0xABF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_127_tlut_wheel_3: + symbol: gKartBowser127TlutWheel3 + type: texture + offset: 0xAC008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_128_tlut_wheel_0: + symbol: gKartBowser128TlutWheel0 + type: texture + offset: 0xAC088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_128_tlut_wheel_1: + symbol: gKartBowser128TlutWheel1 + type: texture + offset: 0xAC108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_128_tlut_wheel_2: + symbol: gKartBowser128TlutWheel2 + type: texture + offset: 0xAC188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_128_tlut_wheel_3: + symbol: gKartBowser128TlutWheel3 + type: texture + offset: 0xAC208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_129_tlut_wheel_0: + symbol: gKartBowser129TlutWheel0 + type: texture + offset: 0xAC288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_129_tlut_wheel_1: + symbol: gKartBowser129TlutWheel1 + type: texture + offset: 0xAC308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_129_tlut_wheel_2: + symbol: gKartBowser129TlutWheel2 + type: texture + offset: 0xAC388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_129_tlut_wheel_3: + symbol: gKartBowser129TlutWheel3 + type: texture + offset: 0xAC408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_130_tlut_wheel_0: + symbol: gKartBowser130TlutWheel0 + type: texture + offset: 0xAC488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_130_tlut_wheel_1: + symbol: gKartBowser130TlutWheel1 + type: texture + offset: 0xAC508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_130_tlut_wheel_2: + symbol: gKartBowser130TlutWheel2 + type: texture + offset: 0xAC588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_130_tlut_wheel_3: + symbol: gKartBowser130TlutWheel3 + type: texture + offset: 0xAC608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_131_tlut_wheel_0: + symbol: gKartBowser131TlutWheel0 + type: texture + offset: 0xAC688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_131_tlut_wheel_1: + symbol: gKartBowser131TlutWheel1 + type: texture + offset: 0xAC708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_131_tlut_wheel_2: + symbol: gKartBowser131TlutWheel2 + type: texture + offset: 0xAC788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_131_tlut_wheel_3: + symbol: gKartBowser131TlutWheel3 + type: texture + offset: 0xAC808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_132_tlut_wheel_0: + symbol: gKartBowser132TlutWheel0 + type: texture + offset: 0xAC888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_132_tlut_wheel_1: + symbol: gKartBowser132TlutWheel1 + type: texture + offset: 0xAC908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_132_tlut_wheel_2: + symbol: gKartBowser132TlutWheel2 + type: texture + offset: 0xAC988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_132_tlut_wheel_3: + symbol: gKartBowser132TlutWheel3 + type: texture + offset: 0xACA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_133_tlut_wheel_0: + symbol: gKartBowser133TlutWheel0 + type: texture + offset: 0xACA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_133_tlut_wheel_1: + symbol: gKartBowser133TlutWheel1 + type: texture + offset: 0xACB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_133_tlut_wheel_2: + symbol: gKartBowser133TlutWheel2 + type: texture + offset: 0xACB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_133_tlut_wheel_3: + symbol: gKartBowser133TlutWheel3 + type: texture + offset: 0xACC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_134_tlut_wheel_0: + symbol: gKartBowser134TlutWheel0 + type: texture + offset: 0xACC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_134_tlut_wheel_1: + symbol: gKartBowser134TlutWheel1 + type: texture + offset: 0xACD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_134_tlut_wheel_2: + symbol: gKartBowser134TlutWheel2 + type: texture + offset: 0xACD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_134_tlut_wheel_3: + symbol: gKartBowser134TlutWheel3 + type: texture + offset: 0xACE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_135_tlut_wheel_0: + symbol: gKartBowser135TlutWheel0 + type: texture + offset: 0xACE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_135_tlut_wheel_1: + symbol: gKartBowser135TlutWheel1 + type: texture + offset: 0xACF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_135_tlut_wheel_2: + symbol: gKartBowser135TlutWheel2 + type: texture + offset: 0xACF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_135_tlut_wheel_3: + symbol: gKartBowser135TlutWheel3 + type: texture + offset: 0xAD008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_136_tlut_wheel_0: + symbol: gKartBowser136TlutWheel0 + type: texture + offset: 0xAD088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_136_tlut_wheel_1: + symbol: gKartBowser136TlutWheel1 + type: texture + offset: 0xAD108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_136_tlut_wheel_2: + symbol: gKartBowser136TlutWheel2 + type: texture + offset: 0xAD188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_136_tlut_wheel_3: + symbol: gKartBowser136TlutWheel3 + type: texture + offset: 0xAD208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_137_tlut_wheel_0: + symbol: gKartBowser137TlutWheel0 + type: texture + offset: 0xAD288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_137_tlut_wheel_1: + symbol: gKartBowser137TlutWheel1 + type: texture + offset: 0xAD308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_137_tlut_wheel_2: + symbol: gKartBowser137TlutWheel2 + type: texture + offset: 0xAD388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_137_tlut_wheel_3: + symbol: gKartBowser137TlutWheel3 + type: texture + offset: 0xAD408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_138_tlut_wheel_0: + symbol: gKartBowser138TlutWheel0 + type: texture + offset: 0xAD488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_138_tlut_wheel_1: + symbol: gKartBowser138TlutWheel1 + type: texture + offset: 0xAD508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_138_tlut_wheel_2: + symbol: gKartBowser138TlutWheel2 + type: texture + offset: 0xAD588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_138_tlut_wheel_3: + symbol: gKartBowser138TlutWheel3 + type: texture + offset: 0xAD608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_139_tlut_wheel_0: + symbol: gKartBowser139TlutWheel0 + type: texture + offset: 0xAD688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_139_tlut_wheel_1: + symbol: gKartBowser139TlutWheel1 + type: texture + offset: 0xAD708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_139_tlut_wheel_2: + symbol: gKartBowser139TlutWheel2 + type: texture + offset: 0xAD788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_139_tlut_wheel_3: + symbol: gKartBowser139TlutWheel3 + type: texture + offset: 0xAD808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_140_tlut_wheel_0: + symbol: gKartBowser140TlutWheel0 + type: texture + offset: 0xAD888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_140_tlut_wheel_1: + symbol: gKartBowser140TlutWheel1 + type: texture + offset: 0xAD908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_140_tlut_wheel_2: + symbol: gKartBowser140TlutWheel2 + type: texture + offset: 0xAD988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_140_tlut_wheel_3: + symbol: gKartBowser140TlutWheel3 + type: texture + offset: 0xADA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_141_tlut_wheel_0: + symbol: gKartBowser141TlutWheel0 + type: texture + offset: 0xADA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_141_tlut_wheel_1: + symbol: gKartBowser141TlutWheel1 + type: texture + offset: 0xADB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_141_tlut_wheel_2: + symbol: gKartBowser141TlutWheel2 + type: texture + offset: 0xADB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_141_tlut_wheel_3: + symbol: gKartBowser141TlutWheel3 + type: texture + offset: 0xADC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_142_tlut_wheel_0: + symbol: gKartBowser142TlutWheel0 + type: texture + offset: 0xADC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_142_tlut_wheel_1: + symbol: gKartBowser142TlutWheel1 + type: texture + offset: 0xADD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_142_tlut_wheel_2: + symbol: gKartBowser142TlutWheel2 + type: texture + offset: 0xADD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_142_tlut_wheel_3: + symbol: gKartBowser142TlutWheel3 + type: texture + offset: 0xADE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_143_tlut_wheel_0: + symbol: gKartBowser143TlutWheel0 + type: texture + offset: 0xADE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_143_tlut_wheel_1: + symbol: gKartBowser143TlutWheel1 + type: texture + offset: 0xADF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_143_tlut_wheel_2: + symbol: gKartBowser143TlutWheel2 + type: texture + offset: 0xADF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_143_tlut_wheel_3: + symbol: gKartBowser143TlutWheel3 + type: texture + offset: 0xAE008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_144_tlut_wheel_0: + symbol: gKartBowser144TlutWheel0 + type: texture + offset: 0xAE088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_144_tlut_wheel_1: + symbol: gKartBowser144TlutWheel1 + type: texture + offset: 0xAE108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_144_tlut_wheel_2: + symbol: gKartBowser144TlutWheel2 + type: texture + offset: 0xAE188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_144_tlut_wheel_3: + symbol: gKartBowser144TlutWheel3 + type: texture + offset: 0xAE208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_145_tlut_wheel_0: + symbol: gKartBowser145TlutWheel0 + type: texture + offset: 0xAE288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_145_tlut_wheel_1: + symbol: gKartBowser145TlutWheel1 + type: texture + offset: 0xAE308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_145_tlut_wheel_2: + symbol: gKartBowser145TlutWheel2 + type: texture + offset: 0xAE388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_145_tlut_wheel_3: + symbol: gKartBowser145TlutWheel3 + type: texture + offset: 0xAE408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_146_tlut_wheel_0: + symbol: gKartBowser146TlutWheel0 + type: texture + offset: 0xAE488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_146_tlut_wheel_1: + symbol: gKartBowser146TlutWheel1 + type: texture + offset: 0xAE508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_146_tlut_wheel_2: + symbol: gKartBowser146TlutWheel2 + type: texture + offset: 0xAE588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_146_tlut_wheel_3: + symbol: gKartBowser146TlutWheel3 + type: texture + offset: 0xAE608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_147_tlut_wheel_0: + symbol: gKartBowser147TlutWheel0 + type: texture + offset: 0xAE688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_147_tlut_wheel_1: + symbol: gKartBowser147TlutWheel1 + type: texture + offset: 0xAE708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_147_tlut_wheel_2: + symbol: gKartBowser147TlutWheel2 + type: texture + offset: 0xAE788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_147_tlut_wheel_3: + symbol: gKartBowser147TlutWheel3 + type: texture + offset: 0xAE808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_148_tlut_wheel_0: + symbol: gKartBowser148TlutWheel0 + type: texture + offset: 0xAE888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_148_tlut_wheel_1: + symbol: gKartBowser148TlutWheel1 + type: texture + offset: 0xAE908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_148_tlut_wheel_2: + symbol: gKartBowser148TlutWheel2 + type: texture + offset: 0xAE988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_148_tlut_wheel_3: + symbol: gKartBowser148TlutWheel3 + type: texture + offset: 0xAEA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_149_tlut_wheel_0: + symbol: gKartBowser149TlutWheel0 + type: texture + offset: 0xAEA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_149_tlut_wheel_1: + symbol: gKartBowser149TlutWheel1 + type: texture + offset: 0xAEB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_149_tlut_wheel_2: + symbol: gKartBowser149TlutWheel2 + type: texture + offset: 0xAEB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_149_tlut_wheel_3: + symbol: gKartBowser149TlutWheel3 + type: texture + offset: 0xAEC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_150_tlut_wheel_0: + symbol: gKartBowser150TlutWheel0 + type: texture + offset: 0xAEC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_150_tlut_wheel_1: + symbol: gKartBowser150TlutWheel1 + type: texture + offset: 0xAED08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_150_tlut_wheel_2: + symbol: gKartBowser150TlutWheel2 + type: texture + offset: 0xAED88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_150_tlut_wheel_3: + symbol: gKartBowser150TlutWheel3 + type: texture + offset: 0xAEE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_151_tlut_wheel_0: + symbol: gKartBowser151TlutWheel0 + type: texture + offset: 0xAEE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_151_tlut_wheel_1: + symbol: gKartBowser151TlutWheel1 + type: texture + offset: 0xAEF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_151_tlut_wheel_2: + symbol: gKartBowser151TlutWheel2 + type: texture + offset: 0xAEF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_151_tlut_wheel_3: + symbol: gKartBowser151TlutWheel3 + type: texture + offset: 0xAF008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_152_tlut_wheel_0: + symbol: gKartBowser152TlutWheel0 + type: texture + offset: 0xAF088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_152_tlut_wheel_1: + symbol: gKartBowser152TlutWheel1 + type: texture + offset: 0xAF108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_152_tlut_wheel_2: + symbol: gKartBowser152TlutWheel2 + type: texture + offset: 0xAF188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_152_tlut_wheel_3: + symbol: gKartBowser152TlutWheel3 + type: texture + offset: 0xAF208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_153_tlut_wheel_0: + symbol: gKartBowser153TlutWheel0 + type: texture + offset: 0xAF288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_153_tlut_wheel_1: + symbol: gKartBowser153TlutWheel1 + type: texture + offset: 0xAF308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_153_tlut_wheel_2: + symbol: gKartBowser153TlutWheel2 + type: texture + offset: 0xAF388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_153_tlut_wheel_3: + symbol: gKartBowser153TlutWheel3 + type: texture + offset: 0xAF408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_154_tlut_wheel_0: + symbol: gKartBowser154TlutWheel0 + type: texture + offset: 0xAF488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_154_tlut_wheel_1: + symbol: gKartBowser154TlutWheel1 + type: texture + offset: 0xAF508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_154_tlut_wheel_2: + symbol: gKartBowser154TlutWheel2 + type: texture + offset: 0xAF588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_154_tlut_wheel_3: + symbol: gKartBowser154TlutWheel3 + type: texture + offset: 0xAF608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_155_tlut_wheel_0: + symbol: gKartBowser155TlutWheel0 + type: texture + offset: 0xAF688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_155_tlut_wheel_1: + symbol: gKartBowser155TlutWheel1 + type: texture + offset: 0xAF708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_155_tlut_wheel_2: + symbol: gKartBowser155TlutWheel2 + type: texture + offset: 0xAF788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_155_tlut_wheel_3: + symbol: gKartBowser155TlutWheel3 + type: texture + offset: 0xAF808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_156_tlut_wheel_0: + symbol: gKartBowser156TlutWheel0 + type: texture + offset: 0xAF888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_156_tlut_wheel_1: + symbol: gKartBowser156TlutWheel1 + type: texture + offset: 0xAF908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_156_tlut_wheel_2: + symbol: gKartBowser156TlutWheel2 + type: texture + offset: 0xAF988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_156_tlut_wheel_3: + symbol: gKartBowser156TlutWheel3 + type: texture + offset: 0xAFA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_157_tlut_wheel_0: + symbol: gKartBowser157TlutWheel0 + type: texture + offset: 0xAFA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_157_tlut_wheel_1: + symbol: gKartBowser157TlutWheel1 + type: texture + offset: 0xAFB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_157_tlut_wheel_2: + symbol: gKartBowser157TlutWheel2 + type: texture + offset: 0xAFB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_157_tlut_wheel_3: + symbol: gKartBowser157TlutWheel3 + type: texture + offset: 0xAFC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_158_tlut_wheel_0: + symbol: gKartBowser158TlutWheel0 + type: texture + offset: 0xAFC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_158_tlut_wheel_1: + symbol: gKartBowser158TlutWheel1 + type: texture + offset: 0xAFD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_158_tlut_wheel_2: + symbol: gKartBowser158TlutWheel2 + type: texture + offset: 0xAFD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_158_tlut_wheel_3: + symbol: gKartBowser158TlutWheel3 + type: texture + offset: 0xAFE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_159_tlut_wheel_0: + symbol: gKartBowser159TlutWheel0 + type: texture + offset: 0xAFE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_159_tlut_wheel_1: + symbol: gKartBowser159TlutWheel1 + type: texture + offset: 0xAFF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_159_tlut_wheel_2: + symbol: gKartBowser159TlutWheel2 + type: texture + offset: 0xAFF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_159_tlut_wheel_3: + symbol: gKartBowser159TlutWheel3 + type: texture + offset: 0xB0008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_160_tlut_wheel_0: + symbol: gKartBowser160TlutWheel0 + type: texture + offset: 0xB0088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_160_tlut_wheel_1: + symbol: gKartBowser160TlutWheel1 + type: texture + offset: 0xB0108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_160_tlut_wheel_2: + symbol: gKartBowser160TlutWheel2 + type: texture + offset: 0xB0188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_160_tlut_wheel_3: + symbol: gKartBowser160TlutWheel3 + type: texture + offset: 0xB0208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_161_tlut_wheel_0: + symbol: gKartBowser161TlutWheel0 + type: texture + offset: 0xB0288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_161_tlut_wheel_1: + symbol: gKartBowser161TlutWheel1 + type: texture + offset: 0xB0308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_161_tlut_wheel_2: + symbol: gKartBowser161TlutWheel2 + type: texture + offset: 0xB0388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_161_tlut_wheel_3: + symbol: gKartBowser161TlutWheel3 + type: texture + offset: 0xB0408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_162_tlut_wheel_0: + symbol: gKartBowser162TlutWheel0 + type: texture + offset: 0xB0488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_162_tlut_wheel_1: + symbol: gKartBowser162TlutWheel1 + type: texture + offset: 0xB0508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_162_tlut_wheel_2: + symbol: gKartBowser162TlutWheel2 + type: texture + offset: 0xB0588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_162_tlut_wheel_3: + symbol: gKartBowser162TlutWheel3 + type: texture + offset: 0xB0608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_163_tlut_wheel_0: + symbol: gKartBowser163TlutWheel0 + type: texture + offset: 0xB0688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_163_tlut_wheel_1: + symbol: gKartBowser163TlutWheel1 + type: texture + offset: 0xB0708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_163_tlut_wheel_2: + symbol: gKartBowser163TlutWheel2 + type: texture + offset: 0xB0788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_163_tlut_wheel_3: + symbol: gKartBowser163TlutWheel3 + type: texture + offset: 0xB0808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_164_tlut_wheel_0: + symbol: gKartBowser164TlutWheel0 + type: texture + offset: 0xB0888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_164_tlut_wheel_1: + symbol: gKartBowser164TlutWheel1 + type: texture + offset: 0xB0908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_164_tlut_wheel_2: + symbol: gKartBowser164TlutWheel2 + type: texture + offset: 0xB0988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_164_tlut_wheel_3: + symbol: gKartBowser164TlutWheel3 + type: texture + offset: 0xB0A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_165_tlut_wheel_0: + symbol: gKartBowser165TlutWheel0 + type: texture + offset: 0xB0A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_165_tlut_wheel_1: + symbol: gKartBowser165TlutWheel1 + type: texture + offset: 0xB0B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_165_tlut_wheel_2: + symbol: gKartBowser165TlutWheel2 + type: texture + offset: 0xB0B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_165_tlut_wheel_3: + symbol: gKartBowser165TlutWheel3 + type: texture + offset: 0xB0C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_166_tlut_wheel_0: + symbol: gKartBowser166TlutWheel0 + type: texture + offset: 0xB0C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_166_tlut_wheel_1: + symbol: gKartBowser166TlutWheel1 + type: texture + offset: 0xB0D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_166_tlut_wheel_2: + symbol: gKartBowser166TlutWheel2 + type: texture + offset: 0xB0D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_166_tlut_wheel_3: + symbol: gKartBowser166TlutWheel3 + type: texture + offset: 0xB0E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_167_tlut_wheel_0: + symbol: gKartBowser167TlutWheel0 + type: texture + offset: 0xB0E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_167_tlut_wheel_1: + symbol: gKartBowser167TlutWheel1 + type: texture + offset: 0xB0F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_167_tlut_wheel_2: + symbol: gKartBowser167TlutWheel2 + type: texture + offset: 0xB0F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_167_tlut_wheel_3: + symbol: gKartBowser167TlutWheel3 + type: texture + offset: 0xB1008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_168_tlut_wheel_0: + symbol: gKartBowser168TlutWheel0 + type: texture + offset: 0xB1088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_168_tlut_wheel_1: + symbol: gKartBowser168TlutWheel1 + type: texture + offset: 0xB1108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_168_tlut_wheel_2: + symbol: gKartBowser168TlutWheel2 + type: texture + offset: 0xB1188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_168_tlut_wheel_3: + symbol: gKartBowser168TlutWheel3 + type: texture + offset: 0xB1208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_169_tlut_wheel_0: + symbol: gKartBowser169TlutWheel0 + type: texture + offset: 0xB1288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_169_tlut_wheel_1: + symbol: gKartBowser169TlutWheel1 + type: texture + offset: 0xB1308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_169_tlut_wheel_2: + symbol: gKartBowser169TlutWheel2 + type: texture + offset: 0xB1388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_169_tlut_wheel_3: + symbol: gKartBowser169TlutWheel3 + type: texture + offset: 0xB1408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_170_tlut_wheel_0: + symbol: gKartBowser170TlutWheel0 + type: texture + offset: 0xB1488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_170_tlut_wheel_1: + symbol: gKartBowser170TlutWheel1 + type: texture + offset: 0xB1508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_170_tlut_wheel_2: + symbol: gKartBowser170TlutWheel2 + type: texture + offset: 0xB1588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_170_tlut_wheel_3: + symbol: gKartBowser170TlutWheel3 + type: texture + offset: 0xB1608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_171_tlut_wheel_0: + symbol: gKartBowser171TlutWheel0 + type: texture + offset: 0xB1688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_171_tlut_wheel_1: + symbol: gKartBowser171TlutWheel1 + type: texture + offset: 0xB1708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_171_tlut_wheel_2: + symbol: gKartBowser171TlutWheel2 + type: texture + offset: 0xB1788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_171_tlut_wheel_3: + symbol: gKartBowser171TlutWheel3 + type: texture + offset: 0xB1808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_172_tlut_wheel_0: + symbol: gKartBowser172TlutWheel0 + type: texture + offset: 0xB1888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_172_tlut_wheel_1: + symbol: gKartBowser172TlutWheel1 + type: texture + offset: 0xB1908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_172_tlut_wheel_2: + symbol: gKartBowser172TlutWheel2 + type: texture + offset: 0xB1988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_172_tlut_wheel_3: + symbol: gKartBowser172TlutWheel3 + type: texture + offset: 0xB1A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_173_tlut_wheel_0: + symbol: gKartBowser173TlutWheel0 + type: texture + offset: 0xB1A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_173_tlut_wheel_1: + symbol: gKartBowser173TlutWheel1 + type: texture + offset: 0xB1B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_173_tlut_wheel_2: + symbol: gKartBowser173TlutWheel2 + type: texture + offset: 0xB1B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_173_tlut_wheel_3: + symbol: gKartBowser173TlutWheel3 + type: texture + offset: 0xB1C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_174_tlut_wheel_0: + symbol: gKartBowser174TlutWheel0 + type: texture + offset: 0xB1C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_174_tlut_wheel_1: + symbol: gKartBowser174TlutWheel1 + type: texture + offset: 0xB1D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_174_tlut_wheel_2: + symbol: gKartBowser174TlutWheel2 + type: texture + offset: 0xB1D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_174_tlut_wheel_3: + symbol: gKartBowser174TlutWheel3 + type: texture + offset: 0xB1E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_175_tlut_wheel_0: + symbol: gKartBowser175TlutWheel0 + type: texture + offset: 0xB1E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_175_tlut_wheel_1: + symbol: gKartBowser175TlutWheel1 + type: texture + offset: 0xB1F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_175_tlut_wheel_2: + symbol: gKartBowser175TlutWheel2 + type: texture + offset: 0xB1F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_175_tlut_wheel_3: + symbol: gKartBowser175TlutWheel3 + type: texture + offset: 0xB2008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_176_tlut_wheel_0: + symbol: gKartBowser176TlutWheel0 + type: texture + offset: 0xB2088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_176_tlut_wheel_1: + symbol: gKartBowser176TlutWheel1 + type: texture + offset: 0xB2108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_176_tlut_wheel_2: + symbol: gKartBowser176TlutWheel2 + type: texture + offset: 0xB2188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_176_tlut_wheel_3: + symbol: gKartBowser176TlutWheel3 + type: texture + offset: 0xB2208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_177_tlut_wheel_0: + symbol: gKartBowser177TlutWheel0 + type: texture + offset: 0xB2288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_177_tlut_wheel_1: + symbol: gKartBowser177TlutWheel1 + type: texture + offset: 0xB2308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_177_tlut_wheel_2: + symbol: gKartBowser177TlutWheel2 + type: texture + offset: 0xB2388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_177_tlut_wheel_3: + symbol: gKartBowser177TlutWheel3 + type: texture + offset: 0xB2408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_178_tlut_wheel_0: + symbol: gKartBowser178TlutWheel0 + type: texture + offset: 0xB2488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_178_tlut_wheel_1: + symbol: gKartBowser178TlutWheel1 + type: texture + offset: 0xB2508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_178_tlut_wheel_2: + symbol: gKartBowser178TlutWheel2 + type: texture + offset: 0xB2588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_178_tlut_wheel_3: + symbol: gKartBowser178TlutWheel3 + type: texture + offset: 0xB2608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_179_tlut_wheel_0: + symbol: gKartBowser179TlutWheel0 + type: texture + offset: 0xB2688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_179_tlut_wheel_1: + symbol: gKartBowser179TlutWheel1 + type: texture + offset: 0xB2708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_179_tlut_wheel_2: + symbol: gKartBowser179TlutWheel2 + type: texture + offset: 0xB2788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_179_tlut_wheel_3: + symbol: gKartBowser179TlutWheel3 + type: texture + offset: 0xB2808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_180_tlut_wheel_0: + symbol: gKartBowser180TlutWheel0 + type: texture + offset: 0xB2888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_180_tlut_wheel_1: + symbol: gKartBowser180TlutWheel1 + type: texture + offset: 0xB2908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_180_tlut_wheel_2: + symbol: gKartBowser180TlutWheel2 + type: texture + offset: 0xB2988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_180_tlut_wheel_3: + symbol: gKartBowser180TlutWheel3 + type: texture + offset: 0xB2A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_181_tlut_wheel_0: + symbol: gKartBowser181TlutWheel0 + type: texture + offset: 0xB2A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_181_tlut_wheel_1: + symbol: gKartBowser181TlutWheel1 + type: texture + offset: 0xB2B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_181_tlut_wheel_2: + symbol: gKartBowser181TlutWheel2 + type: texture + offset: 0xB2B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_181_tlut_wheel_3: + symbol: gKartBowser181TlutWheel3 + type: texture + offset: 0xB2C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_182_tlut_wheel_0: + symbol: gKartBowser182TlutWheel0 + type: texture + offset: 0xB2C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_182_tlut_wheel_1: + symbol: gKartBowser182TlutWheel1 + type: texture + offset: 0xB2D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_182_tlut_wheel_2: + symbol: gKartBowser182TlutWheel2 + type: texture + offset: 0xB2D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_182_tlut_wheel_3: + symbol: gKartBowser182TlutWheel3 + type: texture + offset: 0xB2E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_183_tlut_wheel_0: + symbol: gKartBowser183TlutWheel0 + type: texture + offset: 0xB2E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_183_tlut_wheel_1: + symbol: gKartBowser183TlutWheel1 + type: texture + offset: 0xB2F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_183_tlut_wheel_2: + symbol: gKartBowser183TlutWheel2 + type: texture + offset: 0xB2F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_183_tlut_wheel_3: + symbol: gKartBowser183TlutWheel3 + type: texture + offset: 0xB3008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_184_tlut_wheel_0: + symbol: gKartBowser184TlutWheel0 + type: texture + offset: 0xB3088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_184_tlut_wheel_1: + symbol: gKartBowser184TlutWheel1 + type: texture + offset: 0xB3108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_184_tlut_wheel_2: + symbol: gKartBowser184TlutWheel2 + type: texture + offset: 0xB3188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_184_tlut_wheel_3: + symbol: gKartBowser184TlutWheel3 + type: texture + offset: 0xB3208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_185_tlut_wheel_0: + symbol: gKartBowser185TlutWheel0 + type: texture + offset: 0xB3288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_185_tlut_wheel_1: + symbol: gKartBowser185TlutWheel1 + type: texture + offset: 0xB3308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_185_tlut_wheel_2: + symbol: gKartBowser185TlutWheel2 + type: texture + offset: 0xB3388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_185_tlut_wheel_3: + symbol: gKartBowser185TlutWheel3 + type: texture + offset: 0xB3408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_186_tlut_wheel_0: + symbol: gKartBowser186TlutWheel0 + type: texture + offset: 0xB3488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_186_tlut_wheel_1: + symbol: gKartBowser186TlutWheel1 + type: texture + offset: 0xB3508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_186_tlut_wheel_2: + symbol: gKartBowser186TlutWheel2 + type: texture + offset: 0xB3588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_186_tlut_wheel_3: + symbol: gKartBowser186TlutWheel3 + type: texture + offset: 0xB3608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_187_tlut_wheel_0: + symbol: gKartBowser187TlutWheel0 + type: texture + offset: 0xB3688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_187_tlut_wheel_1: + symbol: gKartBowser187TlutWheel1 + type: texture + offset: 0xB3708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_187_tlut_wheel_2: + symbol: gKartBowser187TlutWheel2 + type: texture + offset: 0xB3788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_187_tlut_wheel_3: + symbol: gKartBowser187TlutWheel3 + type: texture + offset: 0xB3808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_188_tlut_wheel_0: + symbol: gKartBowser188TlutWheel0 + type: texture + offset: 0xB3888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_188_tlut_wheel_1: + symbol: gKartBowser188TlutWheel1 + type: texture + offset: 0xB3908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_188_tlut_wheel_2: + symbol: gKartBowser188TlutWheel2 + type: texture + offset: 0xB3988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_188_tlut_wheel_3: + symbol: gKartBowser188TlutWheel3 + type: texture + offset: 0xB3A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_189_tlut_wheel_0: + symbol: gKartBowser189TlutWheel0 + type: texture + offset: 0xB3A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_189_tlut_wheel_1: + symbol: gKartBowser189TlutWheel1 + type: texture + offset: 0xB3B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_189_tlut_wheel_2: + symbol: gKartBowser189TlutWheel2 + type: texture + offset: 0xB3B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_189_tlut_wheel_3: + symbol: gKartBowser189TlutWheel3 + type: texture + offset: 0xB3C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_190_tlut_wheel_0: + symbol: gKartBowser190TlutWheel0 + type: texture + offset: 0xB3C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_190_tlut_wheel_1: + symbol: gKartBowser190TlutWheel1 + type: texture + offset: 0xB3D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_190_tlut_wheel_2: + symbol: gKartBowser190TlutWheel2 + type: texture + offset: 0xB3D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_190_tlut_wheel_3: + symbol: gKartBowser190TlutWheel3 + type: texture + offset: 0xB3E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_191_tlut_wheel_0: + symbol: gKartBowser191TlutWheel0 + type: texture + offset: 0xB3E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_191_tlut_wheel_1: + symbol: gKartBowser191TlutWheel1 + type: texture + offset: 0xB3F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_191_tlut_wheel_2: + symbol: gKartBowser191TlutWheel2 + type: texture + offset: 0xB3F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_191_tlut_wheel_3: + symbol: gKartBowser191TlutWheel3 + type: texture + offset: 0xB4008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_192_tlut_wheel_0: + symbol: gKartBowser192TlutWheel0 + type: texture + offset: 0xB4088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_192_tlut_wheel_1: + symbol: gKartBowser192TlutWheel1 + type: texture + offset: 0xB4108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_192_tlut_wheel_2: + symbol: gKartBowser192TlutWheel2 + type: texture + offset: 0xB4188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_192_tlut_wheel_3: + symbol: gKartBowser192TlutWheel3 + type: texture + offset: 0xB4208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_193_tlut_wheel_0: + symbol: gKartBowser193TlutWheel0 + type: texture + offset: 0xB4288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_193_tlut_wheel_1: + symbol: gKartBowser193TlutWheel1 + type: texture + offset: 0xB4308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_193_tlut_wheel_2: + symbol: gKartBowser193TlutWheel2 + type: texture + offset: 0xB4388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_193_tlut_wheel_3: + symbol: gKartBowser193TlutWheel3 + type: texture + offset: 0xB4408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_194_tlut_wheel_0: + symbol: gKartBowser194TlutWheel0 + type: texture + offset: 0xB4488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_194_tlut_wheel_1: + symbol: gKartBowser194TlutWheel1 + type: texture + offset: 0xB4508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_194_tlut_wheel_2: + symbol: gKartBowser194TlutWheel2 + type: texture + offset: 0xB4588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_194_tlut_wheel_3: + symbol: gKartBowser194TlutWheel3 + type: texture + offset: 0xB4608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_195_tlut_wheel_0: + symbol: gKartBowser195TlutWheel0 + type: texture + offset: 0xB4688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_195_tlut_wheel_1: + symbol: gKartBowser195TlutWheel1 + type: texture + offset: 0xB4708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_195_tlut_wheel_2: + symbol: gKartBowser195TlutWheel2 + type: texture + offset: 0xB4788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_195_tlut_wheel_3: + symbol: gKartBowser195TlutWheel3 + type: texture + offset: 0xB4808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_196_tlut_wheel_0: + symbol: gKartBowser196TlutWheel0 + type: texture + offset: 0xB4888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_196_tlut_wheel_1: + symbol: gKartBowser196TlutWheel1 + type: texture + offset: 0xB4908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_196_tlut_wheel_2: + symbol: gKartBowser196TlutWheel2 + type: texture + offset: 0xB4988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_196_tlut_wheel_3: + symbol: gKartBowser196TlutWheel3 + type: texture + offset: 0xB4A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_197_tlut_wheel_0: + symbol: gKartBowser197TlutWheel0 + type: texture + offset: 0xB4A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_197_tlut_wheel_1: + symbol: gKartBowser197TlutWheel1 + type: texture + offset: 0xB4B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_197_tlut_wheel_2: + symbol: gKartBowser197TlutWheel2 + type: texture + offset: 0xB4B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_197_tlut_wheel_3: + symbol: gKartBowser197TlutWheel3 + type: texture + offset: 0xB4C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_198_tlut_wheel_0: + symbol: gKartBowser198TlutWheel0 + type: texture + offset: 0xB4C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_198_tlut_wheel_1: + symbol: gKartBowser198TlutWheel1 + type: texture + offset: 0xB4D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_198_tlut_wheel_2: + symbol: gKartBowser198TlutWheel2 + type: texture + offset: 0xB4D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_198_tlut_wheel_3: + symbol: gKartBowser198TlutWheel3 + type: texture + offset: 0xB4E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_199_tlut_wheel_0: + symbol: gKartBowser199TlutWheel0 + type: texture + offset: 0xB4E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_199_tlut_wheel_1: + symbol: gKartBowser199TlutWheel1 + type: texture + offset: 0xB4F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_199_tlut_wheel_2: + symbol: gKartBowser199TlutWheel2 + type: texture + offset: 0xB4F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_199_tlut_wheel_3: + symbol: gKartBowser199TlutWheel3 + type: texture + offset: 0xB5008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_200_tlut_wheel_0: + symbol: gKartBowser200TlutWheel0 + type: texture + offset: 0xB5088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_200_tlut_wheel_1: + symbol: gKartBowser200TlutWheel1 + type: texture + offset: 0xB5108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_200_tlut_wheel_2: + symbol: gKartBowser200TlutWheel2 + type: texture + offset: 0xB5188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_200_tlut_wheel_3: + symbol: gKartBowser200TlutWheel3 + type: texture + offset: 0xB5208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_201_tlut_wheel_0: + symbol: gKartBowser201TlutWheel0 + type: texture + offset: 0xB5288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_201_tlut_wheel_1: + symbol: gKartBowser201TlutWheel1 + type: texture + offset: 0xB5308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_201_tlut_wheel_2: + symbol: gKartBowser201TlutWheel2 + type: texture + offset: 0xB5388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_201_tlut_wheel_3: + symbol: gKartBowser201TlutWheel3 + type: texture + offset: 0xB5408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_202_tlut_wheel_0: + symbol: gKartBowser202TlutWheel0 + type: texture + offset: 0xB5488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_202_tlut_wheel_1: + symbol: gKartBowser202TlutWheel1 + type: texture + offset: 0xB5508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_202_tlut_wheel_2: + symbol: gKartBowser202TlutWheel2 + type: texture + offset: 0xB5588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_202_tlut_wheel_3: + symbol: gKartBowser202TlutWheel3 + type: texture + offset: 0xB5608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_203_tlut_wheel_0: + symbol: gKartBowser203TlutWheel0 + type: texture + offset: 0xB5688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_203_tlut_wheel_1: + symbol: gKartBowser203TlutWheel1 + type: texture + offset: 0xB5708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_203_tlut_wheel_2: + symbol: gKartBowser203TlutWheel2 + type: texture + offset: 0xB5788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_203_tlut_wheel_3: + symbol: gKartBowser203TlutWheel3 + type: texture + offset: 0xB5808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_204_tlut_wheel_0: + symbol: gKartBowser204TlutWheel0 + type: texture + offset: 0xB5888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_204_tlut_wheel_1: + symbol: gKartBowser204TlutWheel1 + type: texture + offset: 0xB5908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_204_tlut_wheel_2: + symbol: gKartBowser204TlutWheel2 + type: texture + offset: 0xB5988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_204_tlut_wheel_3: + symbol: gKartBowser204TlutWheel3 + type: texture + offset: 0xB5A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_205_tlut_wheel_0: + symbol: gKartBowser205TlutWheel0 + type: texture + offset: 0xB5A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_205_tlut_wheel_1: + symbol: gKartBowser205TlutWheel1 + type: texture + offset: 0xB5B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_205_tlut_wheel_2: + symbol: gKartBowser205TlutWheel2 + type: texture + offset: 0xB5B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_205_tlut_wheel_3: + symbol: gKartBowser205TlutWheel3 + type: texture + offset: 0xB5C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_206_tlut_wheel_0: + symbol: gKartBowser206TlutWheel0 + type: texture + offset: 0xB5C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_206_tlut_wheel_1: + symbol: gKartBowser206TlutWheel1 + type: texture + offset: 0xB5D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_206_tlut_wheel_2: + symbol: gKartBowser206TlutWheel2 + type: texture + offset: 0xB5D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_206_tlut_wheel_3: + symbol: gKartBowser206TlutWheel3 + type: texture + offset: 0xB5E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_207_tlut_wheel_0: + symbol: gKartBowser207TlutWheel0 + type: texture + offset: 0xB5E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_207_tlut_wheel_1: + symbol: gKartBowser207TlutWheel1 + type: texture + offset: 0xB5F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_207_tlut_wheel_2: + symbol: gKartBowser207TlutWheel2 + type: texture + offset: 0xB5F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_207_tlut_wheel_3: + symbol: gKartBowser207TlutWheel3 + type: texture + offset: 0xB6008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_208_tlut_wheel_0: + symbol: gKartBowser208TlutWheel0 + type: texture + offset: 0xB6088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_208_tlut_wheel_1: + symbol: gKartBowser208TlutWheel1 + type: texture + offset: 0xB6108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_208_tlut_wheel_2: + symbol: gKartBowser208TlutWheel2 + type: texture + offset: 0xB6188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_208_tlut_wheel_3: + symbol: gKartBowser208TlutWheel3 + type: texture + offset: 0xB6208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_209_tlut_wheel_0: + symbol: gKartBowser209TlutWheel0 + type: texture + offset: 0xB6288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_209_tlut_wheel_1: + symbol: gKartBowser209TlutWheel1 + type: texture + offset: 0xB6308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_209_tlut_wheel_2: + symbol: gKartBowser209TlutWheel2 + type: texture + offset: 0xB6388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_209_tlut_wheel_3: + symbol: gKartBowser209TlutWheel3 + type: texture + offset: 0xB6408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_210_tlut_wheel_0: + symbol: gKartBowser210TlutWheel0 + type: texture + offset: 0xB6488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_210_tlut_wheel_1: + symbol: gKartBowser210TlutWheel1 + type: texture + offset: 0xB6508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_210_tlut_wheel_2: + symbol: gKartBowser210TlutWheel2 + type: texture + offset: 0xB6588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_210_tlut_wheel_3: + symbol: gKartBowser210TlutWheel3 + type: texture + offset: 0xB6608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_211_tlut_wheel_0: + symbol: gKartBowser211TlutWheel0 + type: texture + offset: 0xB6688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_211_tlut_wheel_1: + symbol: gKartBowser211TlutWheel1 + type: texture + offset: 0xB6708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_211_tlut_wheel_2: + symbol: gKartBowser211TlutWheel2 + type: texture + offset: 0xB6788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_211_tlut_wheel_3: + symbol: gKartBowser211TlutWheel3 + type: texture + offset: 0xB6808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_212_tlut_wheel_0: + symbol: gKartBowser212TlutWheel0 + type: texture + offset: 0xB6888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_212_tlut_wheel_1: + symbol: gKartBowser212TlutWheel1 + type: texture + offset: 0xB6908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_212_tlut_wheel_2: + symbol: gKartBowser212TlutWheel2 + type: texture + offset: 0xB6988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_212_tlut_wheel_3: + symbol: gKartBowser212TlutWheel3 + type: texture + offset: 0xB6A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_213_tlut_wheel_0: + symbol: gKartBowser213TlutWheel0 + type: texture + offset: 0xB6A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_213_tlut_wheel_1: + symbol: gKartBowser213TlutWheel1 + type: texture + offset: 0xB6B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_213_tlut_wheel_2: + symbol: gKartBowser213TlutWheel2 + type: texture + offset: 0xB6B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_213_tlut_wheel_3: + symbol: gKartBowser213TlutWheel3 + type: texture + offset: 0xB6C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_214_tlut_wheel_0: + symbol: gKartBowser214TlutWheel0 + type: texture + offset: 0xB6C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_214_tlut_wheel_1: + symbol: gKartBowser214TlutWheel1 + type: texture + offset: 0xB6D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_214_tlut_wheel_2: + symbol: gKartBowser214TlutWheel2 + type: texture + offset: 0xB6D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_214_tlut_wheel_3: + symbol: gKartBowser214TlutWheel3 + type: texture + offset: 0xB6E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_215_tlut_wheel_0: + symbol: gKartBowser215TlutWheel0 + type: texture + offset: 0xB6E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_215_tlut_wheel_1: + symbol: gKartBowser215TlutWheel1 + type: texture + offset: 0xB6F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_215_tlut_wheel_2: + symbol: gKartBowser215TlutWheel2 + type: texture + offset: 0xB6F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_215_tlut_wheel_3: + symbol: gKartBowser215TlutWheel3 + type: texture + offset: 0xB7008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_216_tlut_wheel_0: + symbol: gKartBowser216TlutWheel0 + type: texture + offset: 0xB7088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_216_tlut_wheel_1: + symbol: gKartBowser216TlutWheel1 + type: texture + offset: 0xB7108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_216_tlut_wheel_2: + symbol: gKartBowser216TlutWheel2 + type: texture + offset: 0xB7188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_216_tlut_wheel_3: + symbol: gKartBowser216TlutWheel3 + type: texture + offset: 0xB7208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_217_tlut_wheel_0: + symbol: gKartBowser217TlutWheel0 + type: texture + offset: 0xB7288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_217_tlut_wheel_1: + symbol: gKartBowser217TlutWheel1 + type: texture + offset: 0xB7308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_217_tlut_wheel_2: + symbol: gKartBowser217TlutWheel2 + type: texture + offset: 0xB7388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_217_tlut_wheel_3: + symbol: gKartBowser217TlutWheel3 + type: texture + offset: 0xB7408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_218_tlut_wheel_0: + symbol: gKartBowser218TlutWheel0 + type: texture + offset: 0xB7488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_218_tlut_wheel_1: + symbol: gKartBowser218TlutWheel1 + type: texture + offset: 0xB7508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_218_tlut_wheel_2: + symbol: gKartBowser218TlutWheel2 + type: texture + offset: 0xB7588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_218_tlut_wheel_3: + symbol: gKartBowser218TlutWheel3 + type: texture + offset: 0xB7608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_219_tlut_wheel_0: + symbol: gKartBowser219TlutWheel0 + type: texture + offset: 0xB7688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_219_tlut_wheel_1: + symbol: gKartBowser219TlutWheel1 + type: texture + offset: 0xB7708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_219_tlut_wheel_2: + symbol: gKartBowser219TlutWheel2 + type: texture + offset: 0xB7788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_219_tlut_wheel_3: + symbol: gKartBowser219TlutWheel3 + type: texture + offset: 0xB7808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_220_tlut_wheel_0: + symbol: gKartBowser220TlutWheel0 + type: texture + offset: 0xB7888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_220_tlut_wheel_1: + symbol: gKartBowser220TlutWheel1 + type: texture + offset: 0xB7908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_220_tlut_wheel_2: + symbol: gKartBowser220TlutWheel2 + type: texture + offset: 0xB7988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_220_tlut_wheel_3: + symbol: gKartBowser220TlutWheel3 + type: texture + offset: 0xB7A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_221_tlut_wheel_0: + symbol: gKartBowser221TlutWheel0 + type: texture + offset: 0xB7A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_221_tlut_wheel_1: + symbol: gKartBowser221TlutWheel1 + type: texture + offset: 0xB7B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_221_tlut_wheel_2: + symbol: gKartBowser221TlutWheel2 + type: texture + offset: 0xB7B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_221_tlut_wheel_3: + symbol: gKartBowser221TlutWheel3 + type: texture + offset: 0xB7C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_222_tlut_wheel_0: + symbol: gKartBowser222TlutWheel0 + type: texture + offset: 0xB7C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_222_tlut_wheel_1: + symbol: gKartBowser222TlutWheel1 + type: texture + offset: 0xB7D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_222_tlut_wheel_2: + symbol: gKartBowser222TlutWheel2 + type: texture + offset: 0xB7D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_222_tlut_wheel_3: + symbol: gKartBowser222TlutWheel3 + type: texture + offset: 0xB7E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_223_tlut_wheel_0: + symbol: gKartBowser223TlutWheel0 + type: texture + offset: 0xB7E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_223_tlut_wheel_1: + symbol: gKartBowser223TlutWheel1 + type: texture + offset: 0xB7F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_223_tlut_wheel_2: + symbol: gKartBowser223TlutWheel2 + type: texture + offset: 0xB7F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_223_tlut_wheel_3: + symbol: gKartBowser223TlutWheel3 + type: texture + offset: 0xB8008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_224_tlut_wheel_0: + symbol: gKartBowser224TlutWheel0 + type: texture + offset: 0xB8088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_224_tlut_wheel_1: + symbol: gKartBowser224TlutWheel1 + type: texture + offset: 0xB8108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_224_tlut_wheel_2: + symbol: gKartBowser224TlutWheel2 + type: texture + offset: 0xB8188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_224_tlut_wheel_3: + symbol: gKartBowser224TlutWheel3 + type: texture + offset: 0xB8208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_225_tlut_wheel_0: + symbol: gKartBowser225TlutWheel0 + type: texture + offset: 0xB8288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_225_tlut_wheel_1: + symbol: gKartBowser225TlutWheel1 + type: texture + offset: 0xB8308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_225_tlut_wheel_2: + symbol: gKartBowser225TlutWheel2 + type: texture + offset: 0xB8388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_225_tlut_wheel_3: + symbol: gKartBowser225TlutWheel3 + type: texture + offset: 0xB8408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_226_tlut_wheel_0: + symbol: gKartBowser226TlutWheel0 + type: texture + offset: 0xB8488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_226_tlut_wheel_1: + symbol: gKartBowser226TlutWheel1 + type: texture + offset: 0xB8508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_226_tlut_wheel_2: + symbol: gKartBowser226TlutWheel2 + type: texture + offset: 0xB8588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_226_tlut_wheel_3: + symbol: gKartBowser226TlutWheel3 + type: texture + offset: 0xB8608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_227_tlut_wheel_0: + symbol: gKartBowser227TlutWheel0 + type: texture + offset: 0xB8688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_227_tlut_wheel_1: + symbol: gKartBowser227TlutWheel1 + type: texture + offset: 0xB8708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_227_tlut_wheel_2: + symbol: gKartBowser227TlutWheel2 + type: texture + offset: 0xB8788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_227_tlut_wheel_3: + symbol: gKartBowser227TlutWheel3 + type: texture + offset: 0xB8808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_228_tlut_wheel_0: + symbol: gKartBowser228TlutWheel0 + type: texture + offset: 0xB8888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_228_tlut_wheel_1: + symbol: gKartBowser228TlutWheel1 + type: texture + offset: 0xB8908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_228_tlut_wheel_2: + symbol: gKartBowser228TlutWheel2 + type: texture + offset: 0xB8988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_228_tlut_wheel_3: + symbol: gKartBowser228TlutWheel3 + type: texture + offset: 0xB8A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_229_tlut_wheel_0: + symbol: gKartBowser229TlutWheel0 + type: texture + offset: 0xB8A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_229_tlut_wheel_1: + symbol: gKartBowser229TlutWheel1 + type: texture + offset: 0xB8B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_229_tlut_wheel_2: + symbol: gKartBowser229TlutWheel2 + type: texture + offset: 0xB8B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_229_tlut_wheel_3: + symbol: gKartBowser229TlutWheel3 + type: texture + offset: 0xB8C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_230_tlut_wheel_0: + symbol: gKartBowser230TlutWheel0 + type: texture + offset: 0xB8C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_230_tlut_wheel_1: + symbol: gKartBowser230TlutWheel1 + type: texture + offset: 0xB8D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_230_tlut_wheel_2: + symbol: gKartBowser230TlutWheel2 + type: texture + offset: 0xB8D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_230_tlut_wheel_3: + symbol: gKartBowser230TlutWheel3 + type: texture + offset: 0xB8E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_231_tlut_wheel_0: + symbol: gKartBowser231TlutWheel0 + type: texture + offset: 0xB8E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_231_tlut_wheel_1: + symbol: gKartBowser231TlutWheel1 + type: texture + offset: 0xB8F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_231_tlut_wheel_2: + symbol: gKartBowser231TlutWheel2 + type: texture + offset: 0xB8F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_231_tlut_wheel_3: + symbol: gKartBowser231TlutWheel3 + type: texture + offset: 0xB9008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_232_tlut_wheel_0: + symbol: gKartBowser232TlutWheel0 + type: texture + offset: 0xB9088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_232_tlut_wheel_1: + symbol: gKartBowser232TlutWheel1 + type: texture + offset: 0xB9108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_232_tlut_wheel_2: + symbol: gKartBowser232TlutWheel2 + type: texture + offset: 0xB9188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_232_tlut_wheel_3: + symbol: gKartBowser232TlutWheel3 + type: texture + offset: 0xB9208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_233_tlut_wheel_0: + symbol: gKartBowser233TlutWheel0 + type: texture + offset: 0xB9288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_233_tlut_wheel_1: + symbol: gKartBowser233TlutWheel1 + type: texture + offset: 0xB9308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_233_tlut_wheel_2: + symbol: gKartBowser233TlutWheel2 + type: texture + offset: 0xB9388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_233_tlut_wheel_3: + symbol: gKartBowser233TlutWheel3 + type: texture + offset: 0xB9408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_234_tlut_wheel_0: + symbol: gKartBowser234TlutWheel0 + type: texture + offset: 0xB9488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_234_tlut_wheel_1: + symbol: gKartBowser234TlutWheel1 + type: texture + offset: 0xB9508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_234_tlut_wheel_2: + symbol: gKartBowser234TlutWheel2 + type: texture + offset: 0xB9588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_234_tlut_wheel_3: + symbol: gKartBowser234TlutWheel3 + type: texture + offset: 0xB9608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_235_tlut_wheel_0: + symbol: gKartBowser235TlutWheel0 + type: texture + offset: 0xB9688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_235_tlut_wheel_1: + symbol: gKartBowser235TlutWheel1 + type: texture + offset: 0xB9708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_235_tlut_wheel_2: + symbol: gKartBowser235TlutWheel2 + type: texture + offset: 0xB9788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_235_tlut_wheel_3: + symbol: gKartBowser235TlutWheel3 + type: texture + offset: 0xB9808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_236_tlut_wheel_0: + symbol: gKartBowser236TlutWheel0 + type: texture + offset: 0xB9888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_236_tlut_wheel_1: + symbol: gKartBowser236TlutWheel1 + type: texture + offset: 0xB9908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_236_tlut_wheel_2: + symbol: gKartBowser236TlutWheel2 + type: texture + offset: 0xB9988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_236_tlut_wheel_3: + symbol: gKartBowser236TlutWheel3 + type: texture + offset: 0xB9A08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_237_tlut_wheel_0: + symbol: gKartBowser237TlutWheel0 + type: texture + offset: 0xB9A88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_237_tlut_wheel_1: + symbol: gKartBowser237TlutWheel1 + type: texture + offset: 0xB9B08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_237_tlut_wheel_2: + symbol: gKartBowser237TlutWheel2 + type: texture + offset: 0xB9B88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_237_tlut_wheel_3: + symbol: gKartBowser237TlutWheel3 + type: texture + offset: 0xB9C08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_238_tlut_wheel_0: + symbol: gKartBowser238TlutWheel0 + type: texture + offset: 0xB9C88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_238_tlut_wheel_1: + symbol: gKartBowser238TlutWheel1 + type: texture + offset: 0xB9D08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_238_tlut_wheel_2: + symbol: gKartBowser238TlutWheel2 + type: texture + offset: 0xB9D88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_238_tlut_wheel_3: + symbol: gKartBowser238TlutWheel3 + type: texture + offset: 0xB9E08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_239_tlut_wheel_0: + symbol: gKartBowser239TlutWheel0 + type: texture + offset: 0xB9E88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_239_tlut_wheel_1: + symbol: gKartBowser239TlutWheel1 + type: texture + offset: 0xB9F08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_239_tlut_wheel_2: + symbol: gKartBowser239TlutWheel2 + type: texture + offset: 0xB9F88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_239_tlut_wheel_3: + symbol: gKartBowser239TlutWheel3 + type: texture + offset: 0xBA008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_240_tlut_wheel_0: + symbol: gKartBowser240TlutWheel0 + type: texture + offset: 0xBA088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_240_tlut_wheel_1: + symbol: gKartBowser240TlutWheel1 + type: texture + offset: 0xBA108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_240_tlut_wheel_2: + symbol: gKartBowser240TlutWheel2 + type: texture + offset: 0xBA188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_240_tlut_wheel_3: + symbol: gKartBowser240TlutWheel3 + type: texture + offset: 0xBA208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_241_tlut_wheel_0: + symbol: gKartBowser241TlutWheel0 + type: texture + offset: 0xBA288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_241_tlut_wheel_1: + symbol: gKartBowser241TlutWheel1 + type: texture + offset: 0xBA308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_241_tlut_wheel_2: + symbol: gKartBowser241TlutWheel2 + type: texture + offset: 0xBA388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_241_tlut_wheel_3: + symbol: gKartBowser241TlutWheel3 + type: texture + offset: 0xBA408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_242_tlut_wheel_0: + symbol: gKartBowser242TlutWheel0 + type: texture + offset: 0xBA488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_242_tlut_wheel_1: + symbol: gKartBowser242TlutWheel1 + type: texture + offset: 0xBA508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_242_tlut_wheel_2: + symbol: gKartBowser242TlutWheel2 + type: texture + offset: 0xBA588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_242_tlut_wheel_3: + symbol: gKartBowser242TlutWheel3 + type: texture + offset: 0xBA608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_243_tlut_wheel_0: + symbol: gKartBowser243TlutWheel0 + type: texture + offset: 0xBA688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_243_tlut_wheel_1: + symbol: gKartBowser243TlutWheel1 + type: texture + offset: 0xBA708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_243_tlut_wheel_2: + symbol: gKartBowser243TlutWheel2 + type: texture + offset: 0xBA788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_243_tlut_wheel_3: + symbol: gKartBowser243TlutWheel3 + type: texture + offset: 0xBA808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_244_tlut_wheel_0: + symbol: gKartBowser244TlutWheel0 + type: texture + offset: 0xBA888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_244_tlut_wheel_1: + symbol: gKartBowser244TlutWheel1 + type: texture + offset: 0xBA908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_244_tlut_wheel_2: + symbol: gKartBowser244TlutWheel2 + type: texture + offset: 0xBA988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_244_tlut_wheel_3: + symbol: gKartBowser244TlutWheel3 + type: texture + offset: 0xBAA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_245_tlut_wheel_0: + symbol: gKartBowser245TlutWheel0 + type: texture + offset: 0xBAA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_245_tlut_wheel_1: + symbol: gKartBowser245TlutWheel1 + type: texture + offset: 0xBAB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_245_tlut_wheel_2: + symbol: gKartBowser245TlutWheel2 + type: texture + offset: 0xBAB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_245_tlut_wheel_3: + symbol: gKartBowser245TlutWheel3 + type: texture + offset: 0xBAC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_246_tlut_wheel_0: + symbol: gKartBowser246TlutWheel0 + type: texture + offset: 0xBAC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_246_tlut_wheel_1: + symbol: gKartBowser246TlutWheel1 + type: texture + offset: 0xBAD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_246_tlut_wheel_2: + symbol: gKartBowser246TlutWheel2 + type: texture + offset: 0xBAD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_246_tlut_wheel_3: + symbol: gKartBowser246TlutWheel3 + type: texture + offset: 0xBAE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_247_tlut_wheel_0: + symbol: gKartBowser247TlutWheel0 + type: texture + offset: 0xBAE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_247_tlut_wheel_1: + symbol: gKartBowser247TlutWheel1 + type: texture + offset: 0xBAF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_247_tlut_wheel_2: + symbol: gKartBowser247TlutWheel2 + type: texture + offset: 0xBAF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_247_tlut_wheel_3: + symbol: gKartBowser247TlutWheel3 + type: texture + offset: 0xBB008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_248_tlut_wheel_0: + symbol: gKartBowser248TlutWheel0 + type: texture + offset: 0xBB088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_248_tlut_wheel_1: + symbol: gKartBowser248TlutWheel1 + type: texture + offset: 0xBB108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_248_tlut_wheel_2: + symbol: gKartBowser248TlutWheel2 + type: texture + offset: 0xBB188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_248_tlut_wheel_3: + symbol: gKartBowser248TlutWheel3 + type: texture + offset: 0xBB208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_249_tlut_wheel_0: + symbol: gKartBowser249TlutWheel0 + type: texture + offset: 0xBB288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_249_tlut_wheel_1: + symbol: gKartBowser249TlutWheel1 + type: texture + offset: 0xBB308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_249_tlut_wheel_2: + symbol: gKartBowser249TlutWheel2 + type: texture + offset: 0xBB388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_249_tlut_wheel_3: + symbol: gKartBowser249TlutWheel3 + type: texture + offset: 0xBB408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_250_tlut_wheel_0: + symbol: gKartBowser250TlutWheel0 + type: texture + offset: 0xBB488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_250_tlut_wheel_1: + symbol: gKartBowser250TlutWheel1 + type: texture + offset: 0xBB508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_250_tlut_wheel_2: + symbol: gKartBowser250TlutWheel2 + type: texture + offset: 0xBB588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_250_tlut_wheel_3: + symbol: gKartBowser250TlutWheel3 + type: texture + offset: 0xBB608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_251_tlut_wheel_0: + symbol: gKartBowser251TlutWheel0 + type: texture + offset: 0xBB688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_251_tlut_wheel_1: + symbol: gKartBowser251TlutWheel1 + type: texture + offset: 0xBB708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_251_tlut_wheel_2: + symbol: gKartBowser251TlutWheel2 + type: texture + offset: 0xBB788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_251_tlut_wheel_3: + symbol: gKartBowser251TlutWheel3 + type: texture + offset: 0xBB808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_252_tlut_wheel_0: + symbol: gKartBowser252TlutWheel0 + type: texture + offset: 0xBB888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_252_tlut_wheel_1: + symbol: gKartBowser252TlutWheel1 + type: texture + offset: 0xBB908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_252_tlut_wheel_2: + symbol: gKartBowser252TlutWheel2 + type: texture + offset: 0xBB988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_252_tlut_wheel_3: + symbol: gKartBowser252TlutWheel3 + type: texture + offset: 0xBBA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_253_tlut_wheel_0: + symbol: gKartBowser253TlutWheel0 + type: texture + offset: 0xBBA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_253_tlut_wheel_1: + symbol: gKartBowser253TlutWheel1 + type: texture + offset: 0xBBB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_253_tlut_wheel_2: + symbol: gKartBowser253TlutWheel2 + type: texture + offset: 0xBBB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_253_tlut_wheel_3: + symbol: gKartBowser253TlutWheel3 + type: texture + offset: 0xBBC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_254_tlut_wheel_0: + symbol: gKartBowser254TlutWheel0 + type: texture + offset: 0xBBC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_254_tlut_wheel_1: + symbol: gKartBowser254TlutWheel1 + type: texture + offset: 0xBBD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_254_tlut_wheel_2: + symbol: gKartBowser254TlutWheel2 + type: texture + offset: 0xBBD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_254_tlut_wheel_3: + symbol: gKartBowser254TlutWheel3 + type: texture + offset: 0xBBE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_255_tlut_wheel_0: + symbol: gKartBowser255TlutWheel0 + type: texture + offset: 0xBBE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_255_tlut_wheel_1: + symbol: gKartBowser255TlutWheel1 + type: texture + offset: 0xBBF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_255_tlut_wheel_2: + symbol: gKartBowser255TlutWheel2 + type: texture + offset: 0xBBF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_255_tlut_wheel_3: + symbol: gKartBowser255TlutWheel3 + type: texture + offset: 0xBC008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_256_tlut_wheel_0: + symbol: gKartBowser256TlutWheel0 + type: texture + offset: 0xBC088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_256_tlut_wheel_1: + symbol: gKartBowser256TlutWheel1 + type: texture + offset: 0xBC108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_256_tlut_wheel_2: + symbol: gKartBowser256TlutWheel2 + type: texture + offset: 0xBC188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_256_tlut_wheel_3: + symbol: gKartBowser256TlutWheel3 + type: texture + offset: 0xBC208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_257_tlut_wheel_0: + symbol: gKartBowser257TlutWheel0 + type: texture + offset: 0xBC288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_257_tlut_wheel_1: + symbol: gKartBowser257TlutWheel1 + type: texture + offset: 0xBC308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_257_tlut_wheel_2: + symbol: gKartBowser257TlutWheel2 + type: texture + offset: 0xBC388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_257_tlut_wheel_3: + symbol: gKartBowser257TlutWheel3 + type: texture + offset: 0xBC408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_258_tlut_wheel_0: + symbol: gKartBowser258TlutWheel0 + type: texture + offset: 0xBC488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_258_tlut_wheel_1: + symbol: gKartBowser258TlutWheel1 + type: texture + offset: 0xBC508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_258_tlut_wheel_2: + symbol: gKartBowser258TlutWheel2 + type: texture + offset: 0xBC588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_258_tlut_wheel_3: + symbol: gKartBowser258TlutWheel3 + type: texture + offset: 0xBC608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_259_tlut_wheel_0: + symbol: gKartBowser259TlutWheel0 + type: texture + offset: 0xBC688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_259_tlut_wheel_1: + symbol: gKartBowser259TlutWheel1 + type: texture + offset: 0xBC708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_259_tlut_wheel_2: + symbol: gKartBowser259TlutWheel2 + type: texture + offset: 0xBC788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_259_tlut_wheel_3: + symbol: gKartBowser259TlutWheel3 + type: texture + offset: 0xBC808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_260_tlut_wheel_0: + symbol: gKartBowser260TlutWheel0 + type: texture + offset: 0xBC888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_260_tlut_wheel_1: + symbol: gKartBowser260TlutWheel1 + type: texture + offset: 0xBC908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_260_tlut_wheel_2: + symbol: gKartBowser260TlutWheel2 + type: texture + offset: 0xBC988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_260_tlut_wheel_3: + symbol: gKartBowser260TlutWheel3 + type: texture + offset: 0xBCA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_261_tlut_wheel_0: + symbol: gKartBowser261TlutWheel0 + type: texture + offset: 0xBCA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_261_tlut_wheel_1: + symbol: gKartBowser261TlutWheel1 + type: texture + offset: 0xBCB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_261_tlut_wheel_2: + symbol: gKartBowser261TlutWheel2 + type: texture + offset: 0xBCB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_261_tlut_wheel_3: + symbol: gKartBowser261TlutWheel3 + type: texture + offset: 0xBCC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_262_tlut_wheel_0: + symbol: gKartBowser262TlutWheel0 + type: texture + offset: 0xBCC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_262_tlut_wheel_1: + symbol: gKartBowser262TlutWheel1 + type: texture + offset: 0xBCD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_262_tlut_wheel_2: + symbol: gKartBowser262TlutWheel2 + type: texture + offset: 0xBCD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_262_tlut_wheel_3: + symbol: gKartBowser262TlutWheel3 + type: texture + offset: 0xBCE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_263_tlut_wheel_0: + symbol: gKartBowser263TlutWheel0 + type: texture + offset: 0xBCE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_263_tlut_wheel_1: + symbol: gKartBowser263TlutWheel1 + type: texture + offset: 0xBCF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_263_tlut_wheel_2: + symbol: gKartBowser263TlutWheel2 + type: texture + offset: 0xBCF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_263_tlut_wheel_3: + symbol: gKartBowser263TlutWheel3 + type: texture + offset: 0xBD008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_264_tlut_wheel_0: + symbol: gKartBowser264TlutWheel0 + type: texture + offset: 0xBD088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_264_tlut_wheel_1: + symbol: gKartBowser264TlutWheel1 + type: texture + offset: 0xBD108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_264_tlut_wheel_2: + symbol: gKartBowser264TlutWheel2 + type: texture + offset: 0xBD188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_264_tlut_wheel_3: + symbol: gKartBowser264TlutWheel3 + type: texture + offset: 0xBD208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_265_tlut_wheel_0: + symbol: gKartBowser265TlutWheel0 + type: texture + offset: 0xBD288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_265_tlut_wheel_1: + symbol: gKartBowser265TlutWheel1 + type: texture + offset: 0xBD308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_265_tlut_wheel_2: + symbol: gKartBowser265TlutWheel2 + type: texture + offset: 0xBD388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_265_tlut_wheel_3: + symbol: gKartBowser265TlutWheel3 + type: texture + offset: 0xBD408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_266_tlut_wheel_0: + symbol: gKartBowser266TlutWheel0 + type: texture + offset: 0xBD488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_266_tlut_wheel_1: + symbol: gKartBowser266TlutWheel1 + type: texture + offset: 0xBD508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_266_tlut_wheel_2: + symbol: gKartBowser266TlutWheel2 + type: texture + offset: 0xBD588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_266_tlut_wheel_3: + symbol: gKartBowser266TlutWheel3 + type: texture + offset: 0xBD608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_267_tlut_wheel_0: + symbol: gKartBowser267TlutWheel0 + type: texture + offset: 0xBD688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_267_tlut_wheel_1: + symbol: gKartBowser267TlutWheel1 + type: texture + offset: 0xBD708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_267_tlut_wheel_2: + symbol: gKartBowser267TlutWheel2 + type: texture + offset: 0xBD788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_267_tlut_wheel_3: + symbol: gKartBowser267TlutWheel3 + type: texture + offset: 0xBD808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_268_tlut_wheel_0: + symbol: gKartBowser268TlutWheel0 + type: texture + offset: 0xBD888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_268_tlut_wheel_1: + symbol: gKartBowser268TlutWheel1 + type: texture + offset: 0xBD908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_268_tlut_wheel_2: + symbol: gKartBowser268TlutWheel2 + type: texture + offset: 0xBD988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_268_tlut_wheel_3: + symbol: gKartBowser268TlutWheel3 + type: texture + offset: 0xBDA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_269_tlut_wheel_0: + symbol: gKartBowser269TlutWheel0 + type: texture + offset: 0xBDA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_269_tlut_wheel_1: + symbol: gKartBowser269TlutWheel1 + type: texture + offset: 0xBDB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_269_tlut_wheel_2: + symbol: gKartBowser269TlutWheel2 + type: texture + offset: 0xBDB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_269_tlut_wheel_3: + symbol: gKartBowser269TlutWheel3 + type: texture + offset: 0xBDC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_270_tlut_wheel_0: + symbol: gKartBowser270TlutWheel0 + type: texture + offset: 0xBDC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_270_tlut_wheel_1: + symbol: gKartBowser270TlutWheel1 + type: texture + offset: 0xBDD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_270_tlut_wheel_2: + symbol: gKartBowser270TlutWheel2 + type: texture + offset: 0xBDD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_270_tlut_wheel_3: + symbol: gKartBowser270TlutWheel3 + type: texture + offset: 0xBDE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_271_tlut_wheel_0: + symbol: gKartBowser271TlutWheel0 + type: texture + offset: 0xBDE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_271_tlut_wheel_1: + symbol: gKartBowser271TlutWheel1 + type: texture + offset: 0xBDF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_271_tlut_wheel_2: + symbol: gKartBowser271TlutWheel2 + type: texture + offset: 0xBDF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_271_tlut_wheel_3: + symbol: gKartBowser271TlutWheel3 + type: texture + offset: 0xBE008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_272_tlut_wheel_0: + symbol: gKartBowser272TlutWheel0 + type: texture + offset: 0xBE088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_272_tlut_wheel_1: + symbol: gKartBowser272TlutWheel1 + type: texture + offset: 0xBE108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_272_tlut_wheel_2: + symbol: gKartBowser272TlutWheel2 + type: texture + offset: 0xBE188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_272_tlut_wheel_3: + symbol: gKartBowser272TlutWheel3 + type: texture + offset: 0xBE208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_273_tlut_wheel_0: + symbol: gKartBowser273TlutWheel0 + type: texture + offset: 0xBE288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_273_tlut_wheel_1: + symbol: gKartBowser273TlutWheel1 + type: texture + offset: 0xBE308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_273_tlut_wheel_2: + symbol: gKartBowser273TlutWheel2 + type: texture + offset: 0xBE388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_273_tlut_wheel_3: + symbol: gKartBowser273TlutWheel3 + type: texture + offset: 0xBE408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_274_tlut_wheel_0: + symbol: gKartBowser274TlutWheel0 + type: texture + offset: 0xBE488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_274_tlut_wheel_1: + symbol: gKartBowser274TlutWheel1 + type: texture + offset: 0xBE508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_274_tlut_wheel_2: + symbol: gKartBowser274TlutWheel2 + type: texture + offset: 0xBE588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_274_tlut_wheel_3: + symbol: gKartBowser274TlutWheel3 + type: texture + offset: 0xBE608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_275_tlut_wheel_0: + symbol: gKartBowser275TlutWheel0 + type: texture + offset: 0xBE688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_275_tlut_wheel_1: + symbol: gKartBowser275TlutWheel1 + type: texture + offset: 0xBE708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_275_tlut_wheel_2: + symbol: gKartBowser275TlutWheel2 + type: texture + offset: 0xBE788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_275_tlut_wheel_3: + symbol: gKartBowser275TlutWheel3 + type: texture + offset: 0xBE808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_276_tlut_wheel_0: + symbol: gKartBowser276TlutWheel0 + type: texture + offset: 0xBE888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_276_tlut_wheel_1: + symbol: gKartBowser276TlutWheel1 + type: texture + offset: 0xBE908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_276_tlut_wheel_2: + symbol: gKartBowser276TlutWheel2 + type: texture + offset: 0xBE988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_276_tlut_wheel_3: + symbol: gKartBowser276TlutWheel3 + type: texture + offset: 0xBEA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_277_tlut_wheel_0: + symbol: gKartBowser277TlutWheel0 + type: texture + offset: 0xBEA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_277_tlut_wheel_1: + symbol: gKartBowser277TlutWheel1 + type: texture + offset: 0xBEB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_277_tlut_wheel_2: + symbol: gKartBowser277TlutWheel2 + type: texture + offset: 0xBEB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_277_tlut_wheel_3: + symbol: gKartBowser277TlutWheel3 + type: texture + offset: 0xBEC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_278_tlut_wheel_0: + symbol: gKartBowser278TlutWheel0 + type: texture + offset: 0xBEC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_278_tlut_wheel_1: + symbol: gKartBowser278TlutWheel1 + type: texture + offset: 0xBED08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_278_tlut_wheel_2: + symbol: gKartBowser278TlutWheel2 + type: texture + offset: 0xBED88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_278_tlut_wheel_3: + symbol: gKartBowser278TlutWheel3 + type: texture + offset: 0xBEE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_279_tlut_wheel_0: + symbol: gKartBowser279TlutWheel0 + type: texture + offset: 0xBEE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_279_tlut_wheel_1: + symbol: gKartBowser279TlutWheel1 + type: texture + offset: 0xBEF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_279_tlut_wheel_2: + symbol: gKartBowser279TlutWheel2 + type: texture + offset: 0xBEF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_279_tlut_wheel_3: + symbol: gKartBowser279TlutWheel3 + type: texture + offset: 0xBF008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_280_tlut_wheel_0: + symbol: gKartBowser280TlutWheel0 + type: texture + offset: 0xBF088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_280_tlut_wheel_1: + symbol: gKartBowser280TlutWheel1 + type: texture + offset: 0xBF108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_280_tlut_wheel_2: + symbol: gKartBowser280TlutWheel2 + type: texture + offset: 0xBF188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_280_tlut_wheel_3: + symbol: gKartBowser280TlutWheel3 + type: texture + offset: 0xBF208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_281_tlut_wheel_0: + symbol: gKartBowser281TlutWheel0 + type: texture + offset: 0xBF288 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_281_tlut_wheel_1: + symbol: gKartBowser281TlutWheel1 + type: texture + offset: 0xBF308 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_281_tlut_wheel_2: + symbol: gKartBowser281TlutWheel2 + type: texture + offset: 0xBF388 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_281_tlut_wheel_3: + symbol: gKartBowser281TlutWheel3 + type: texture + offset: 0xBF408 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_282_tlut_wheel_0: + symbol: gKartBowser282TlutWheel0 + type: texture + offset: 0xBF488 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_282_tlut_wheel_1: + symbol: gKartBowser282TlutWheel1 + type: texture + offset: 0xBF508 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_282_tlut_wheel_2: + symbol: gKartBowser282TlutWheel2 + type: texture + offset: 0xBF588 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_282_tlut_wheel_3: + symbol: gKartBowser282TlutWheel3 + type: texture + offset: 0xBF608 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_283_tlut_wheel_0: + symbol: gKartBowser283TlutWheel0 + type: texture + offset: 0xBF688 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_283_tlut_wheel_1: + symbol: gKartBowser283TlutWheel1 + type: texture + offset: 0xBF708 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_283_tlut_wheel_2: + symbol: gKartBowser283TlutWheel2 + type: texture + offset: 0xBF788 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_283_tlut_wheel_3: + symbol: gKartBowser283TlutWheel3 + type: texture + offset: 0xBF808 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_284_tlut_wheel_0: + symbol: gKartBowser284TlutWheel0 + type: texture + offset: 0xBF888 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_284_tlut_wheel_1: + symbol: gKartBowser284TlutWheel1 + type: texture + offset: 0xBF908 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_284_tlut_wheel_2: + symbol: gKartBowser284TlutWheel2 + type: texture + offset: 0xBF988 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_284_tlut_wheel_3: + symbol: gKartBowser284TlutWheel3 + type: texture + offset: 0xBFA08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_285_tlut_wheel_0: + symbol: gKartBowser285TlutWheel0 + type: texture + offset: 0xBFA88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_285_tlut_wheel_1: + symbol: gKartBowser285TlutWheel1 + type: texture + offset: 0xBFB08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_285_tlut_wheel_2: + symbol: gKartBowser285TlutWheel2 + type: texture + offset: 0xBFB88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_285_tlut_wheel_3: + symbol: gKartBowser285TlutWheel3 + type: texture + offset: 0xBFC08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_286_tlut_wheel_0: + symbol: gKartBowser286TlutWheel0 + type: texture + offset: 0xBFC88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_286_tlut_wheel_1: + symbol: gKartBowser286TlutWheel1 + type: texture + offset: 0xBFD08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_286_tlut_wheel_2: + symbol: gKartBowser286TlutWheel2 + type: texture + offset: 0xBFD88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_286_tlut_wheel_3: + symbol: gKartBowser286TlutWheel3 + type: texture + offset: 0xBFE08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_287_tlut_wheel_0: + symbol: gKartBowser287TlutWheel0 + type: texture + offset: 0xBFE88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_287_tlut_wheel_1: + symbol: gKartBowser287TlutWheel1 + type: texture + offset: 0xBFF08 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_287_tlut_wheel_2: + symbol: gKartBowser287TlutWheel2 + type: texture + offset: 0xBFF88 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_287_tlut_wheel_3: + symbol: gKartBowser287TlutWheel3 + type: texture + offset: 0xC0008 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_288_tlut_wheel_0: + symbol: gKartBowser288TlutWheel0 + type: texture + offset: 0xC0088 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_288_tlut_wheel_1: + symbol: gKartBowser288TlutWheel1 + type: texture + offset: 0xC0108 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_288_tlut_wheel_2: + symbol: gKartBowser288TlutWheel2 + type: texture + offset: 0xC0188 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_288_tlut_wheel_3: + symbol: gKartBowser288TlutWheel3 + type: texture + offset: 0xC0208 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +bowser_kart_palette: + symbol: gKartBowserPalette + type: texture + offset: 0xC0288 + ctype: u16 + width: 16 + height: 12 + format: RGBA16 diff --git a/yamls/us/textures/karts/donkeykong_kart.yml b/yamls/us/textures/karts/donkeykong_kart.yml new file mode 100644 index 000000000..3fca4b244 --- /dev/null +++ b/yamls/us/textures/karts/donkeykong_kart.yml @@ -0,0 +1,22340 @@ +:config: + segments: + - [0x0F, 0x4CBE50] + no_compression: true + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + tables: + donkeykong_kart_wheels: + range: [0x8DC94, 0xB1E14] + mode: APPEND +donkeykong_kart_frame000_wheel0: + symbol: gKartDK000Wheel0 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame000_wheel1: + symbol: gKartDK000Wheel1 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_1 +donkeykong_kart_frame000_wheel2: + symbol: gKartDK000Wheel2 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_2 +donkeykong_kart_frame000_wheel3: + symbol: gKartDK000Wheel3 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_3 +donkeykong_kart_frame001_wheel0: + symbol: gKartDK001Wheel0 + type: texture + offset: 0x6C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_001_tlut_wheel_0 +donkeykong_kart_frame001_wheel1: + symbol: gKartDK001Wheel1 + type: texture + offset: 0x6C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_001_tlut_wheel_1 +donkeykong_kart_frame001_wheel2: + symbol: gKartDK001Wheel2 + type: texture + offset: 0x6C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_001_tlut_wheel_2 +donkeykong_kart_frame001_wheel3: + symbol: gKartDK001Wheel3 + type: texture + offset: 0x6C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_001_tlut_wheel_3 +donkeykong_kart_frame002_wheel0: + symbol: gKartDK002Wheel0 + type: texture + offset: 0xD7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_002_tlut_wheel_0 +donkeykong_kart_frame002_wheel1: + symbol: gKartDK002Wheel1 + type: texture + offset: 0xD7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_002_tlut_wheel_1 +donkeykong_kart_frame002_wheel2: + symbol: gKartDK002Wheel2 + type: texture + offset: 0xD7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_002_tlut_wheel_2 +donkeykong_kart_frame002_wheel3: + symbol: gKartDK002Wheel3 + type: texture + offset: 0xD7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_002_tlut_wheel_3 +donkeykong_kart_frame003_wheel0: + symbol: gKartDK003Wheel0 + type: texture + offset: 0x1420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_003_tlut_wheel_0 +donkeykong_kart_frame003_wheel1: + symbol: gKartDK003Wheel1 + type: texture + offset: 0x1420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_003_tlut_wheel_1 +donkeykong_kart_frame003_wheel2: + symbol: gKartDK003Wheel2 + type: texture + offset: 0x1420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_003_tlut_wheel_2 +donkeykong_kart_frame003_wheel3: + symbol: gKartDK003Wheel3 + type: texture + offset: 0x1420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_003_tlut_wheel_3 +donkeykong_kart_frame004_wheel0: + symbol: gKartDK004Wheel0 + type: texture + offset: 0x1AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_004_tlut_wheel_0 +donkeykong_kart_frame004_wheel1: + symbol: gKartDK004Wheel1 + type: texture + offset: 0x1AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_004_tlut_wheel_1 +donkeykong_kart_frame004_wheel2: + symbol: gKartDK004Wheel2 + type: texture + offset: 0x1AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_004_tlut_wheel_2 +donkeykong_kart_frame004_wheel3: + symbol: gKartDK004Wheel3 + type: texture + offset: 0x1AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_004_tlut_wheel_3 +donkeykong_kart_frame005_wheel0: + symbol: gKartDK005Wheel0 + type: texture + offset: 0x2140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_005_tlut_wheel_0 +donkeykong_kart_frame005_wheel1: + symbol: gKartDK005Wheel1 + type: texture + offset: 0x2140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_005_tlut_wheel_1 +donkeykong_kart_frame005_wheel2: + symbol: gKartDK005Wheel2 + type: texture + offset: 0x2140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_005_tlut_wheel_2 +donkeykong_kart_frame005_wheel3: + symbol: gKartDK005Wheel3 + type: texture + offset: 0x2140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_005_tlut_wheel_3 +donkeykong_kart_frame006_wheel0: + symbol: gKartDK006Wheel0 + type: texture + offset: 0x27E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_006_tlut_wheel_0 +donkeykong_kart_frame006_wheel1: + symbol: gKartDK006Wheel1 + type: texture + offset: 0x27E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_006_tlut_wheel_1 +donkeykong_kart_frame006_wheel2: + symbol: gKartDK006Wheel2 + type: texture + offset: 0x27E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_006_tlut_wheel_2 +donkeykong_kart_frame006_wheel3: + symbol: gKartDK006Wheel3 + type: texture + offset: 0x27E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_006_tlut_wheel_3 +donkeykong_kart_frame007_wheel0: + symbol: gKartDK007Wheel0 + type: texture + offset: 0x2E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_007_tlut_wheel_0 +donkeykong_kart_frame007_wheel1: + symbol: gKartDK007Wheel1 + type: texture + offset: 0x2E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_007_tlut_wheel_1 +donkeykong_kart_frame007_wheel2: + symbol: gKartDK007Wheel2 + type: texture + offset: 0x2E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_007_tlut_wheel_2 +donkeykong_kart_frame007_wheel3: + symbol: gKartDK007Wheel3 + type: texture + offset: 0x2E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_007_tlut_wheel_3 +donkeykong_kart_frame008_wheel0: + symbol: gKartDK008Wheel0 + type: texture + offset: 0x34F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_008_tlut_wheel_0 +donkeykong_kart_frame008_wheel1: + symbol: gKartDK008Wheel1 + type: texture + offset: 0x34F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_008_tlut_wheel_1 +donkeykong_kart_frame008_wheel2: + symbol: gKartDK008Wheel2 + type: texture + offset: 0x34F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_008_tlut_wheel_2 +donkeykong_kart_frame008_wheel3: + symbol: gKartDK008Wheel3 + type: texture + offset: 0x34F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_008_tlut_wheel_3 +donkeykong_kart_frame009_wheel0: + symbol: gKartDK009Wheel0 + type: texture + offset: 0x3B8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_009_tlut_wheel_0 +donkeykong_kart_frame009_wheel1: + symbol: gKartDK009Wheel1 + type: texture + offset: 0x3B8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_009_tlut_wheel_1 +donkeykong_kart_frame009_wheel2: + symbol: gKartDK009Wheel2 + type: texture + offset: 0x3B8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_009_tlut_wheel_2 +donkeykong_kart_frame009_wheel3: + symbol: gKartDK009Wheel3 + type: texture + offset: 0x3B8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_009_tlut_wheel_3 +donkeykong_kart_frame010_wheel0: + symbol: gKartDK010Wheel0 + type: texture + offset: 0x424C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_010_tlut_wheel_0 +donkeykong_kart_frame010_wheel1: + symbol: gKartDK010Wheel1 + type: texture + offset: 0x424C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_010_tlut_wheel_1 +donkeykong_kart_frame010_wheel2: + symbol: gKartDK010Wheel2 + type: texture + offset: 0x424C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_010_tlut_wheel_2 +donkeykong_kart_frame010_wheel3: + symbol: gKartDK010Wheel3 + type: texture + offset: 0x424C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_010_tlut_wheel_3 +donkeykong_kart_frame011_wheel0: + symbol: gKartDK011Wheel0 + type: texture + offset: 0x4914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_011_tlut_wheel_0 +donkeykong_kart_frame011_wheel1: + symbol: gKartDK011Wheel1 + type: texture + offset: 0x4914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_011_tlut_wheel_1 +donkeykong_kart_frame011_wheel2: + symbol: gKartDK011Wheel2 + type: texture + offset: 0x4914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_011_tlut_wheel_2 +donkeykong_kart_frame011_wheel3: + symbol: gKartDK011Wheel3 + type: texture + offset: 0x4914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_011_tlut_wheel_3 +donkeykong_kart_frame012_wheel0: + symbol: gKartDK012Wheel0 + type: texture + offset: 0x4FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_012_tlut_wheel_0 +donkeykong_kart_frame012_wheel1: + symbol: gKartDK012Wheel1 + type: texture + offset: 0x4FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_012_tlut_wheel_1 +donkeykong_kart_frame012_wheel2: + symbol: gKartDK012Wheel2 + type: texture + offset: 0x4FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_012_tlut_wheel_2 +donkeykong_kart_frame012_wheel3: + symbol: gKartDK012Wheel3 + type: texture + offset: 0x4FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_012_tlut_wheel_3 +donkeykong_kart_frame013_wheel0: + symbol: gKartDK013Wheel0 + type: texture + offset: 0x568C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_013_tlut_wheel_0 +donkeykong_kart_frame013_wheel1: + symbol: gKartDK013Wheel1 + type: texture + offset: 0x568C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_013_tlut_wheel_1 +donkeykong_kart_frame013_wheel2: + symbol: gKartDK013Wheel2 + type: texture + offset: 0x568C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_013_tlut_wheel_2 +donkeykong_kart_frame013_wheel3: + symbol: gKartDK013Wheel3 + type: texture + offset: 0x568C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_013_tlut_wheel_3 +donkeykong_kart_frame014_wheel0: + symbol: gKartDK014Wheel0 + type: texture + offset: 0x5D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_014_tlut_wheel_0 +donkeykong_kart_frame014_wheel1: + symbol: gKartDK014Wheel1 + type: texture + offset: 0x5D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_014_tlut_wheel_1 +donkeykong_kart_frame014_wheel2: + symbol: gKartDK014Wheel2 + type: texture + offset: 0x5D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_014_tlut_wheel_2 +donkeykong_kart_frame014_wheel3: + symbol: gKartDK014Wheel3 + type: texture + offset: 0x5D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_014_tlut_wheel_3 +donkeykong_kart_frame015_wheel0: + symbol: gKartDK015Wheel0 + type: texture + offset: 0x641C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_015_tlut_wheel_0 +donkeykong_kart_frame015_wheel1: + symbol: gKartDK015Wheel1 + type: texture + offset: 0x641C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_015_tlut_wheel_1 +donkeykong_kart_frame015_wheel2: + symbol: gKartDK015Wheel2 + type: texture + offset: 0x641C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_015_tlut_wheel_2 +donkeykong_kart_frame015_wheel3: + symbol: gKartDK015Wheel3 + type: texture + offset: 0x641C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_015_tlut_wheel_3 +donkeykong_kart_frame016_wheel0: + symbol: gKartDK016Wheel0 + type: texture + offset: 0x6B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_016_tlut_wheel_0 +donkeykong_kart_frame016_wheel1: + symbol: gKartDK016Wheel1 + type: texture + offset: 0x6B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_016_tlut_wheel_1 +donkeykong_kart_frame016_wheel2: + symbol: gKartDK016Wheel2 + type: texture + offset: 0x6B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_016_tlut_wheel_2 +donkeykong_kart_frame016_wheel3: + symbol: gKartDK016Wheel3 + type: texture + offset: 0x6B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_016_tlut_wheel_3 +donkeykong_kart_frame017_wheel0: + symbol: gKartDK017Wheel0 + type: texture + offset: 0x720C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_017_tlut_wheel_0 +donkeykong_kart_frame017_wheel1: + symbol: gKartDK017Wheel1 + type: texture + offset: 0x720C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_017_tlut_wheel_1 +donkeykong_kart_frame017_wheel2: + symbol: gKartDK017Wheel2 + type: texture + offset: 0x720C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_017_tlut_wheel_2 +donkeykong_kart_frame017_wheel3: + symbol: gKartDK017Wheel3 + type: texture + offset: 0x720C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_017_tlut_wheel_3 +donkeykong_kart_frame018_wheel0: + symbol: gKartDK018Wheel0 + type: texture + offset: 0x790C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_018_tlut_wheel_0 +donkeykong_kart_frame018_wheel1: + symbol: gKartDK018Wheel1 + type: texture + offset: 0x790C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_018_tlut_wheel_1 +donkeykong_kart_frame018_wheel2: + symbol: gKartDK018Wheel2 + type: texture + offset: 0x790C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_018_tlut_wheel_2 +donkeykong_kart_frame018_wheel3: + symbol: gKartDK018Wheel3 + type: texture + offset: 0x790C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_018_tlut_wheel_3 +donkeykong_kart_frame019_wheel0: + symbol: gKartDK019Wheel0 + type: texture + offset: 0x801C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_019_tlut_wheel_0 +donkeykong_kart_frame019_wheel1: + symbol: gKartDK019Wheel1 + type: texture + offset: 0x801C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_019_tlut_wheel_1 +donkeykong_kart_frame019_wheel2: + symbol: gKartDK019Wheel2 + type: texture + offset: 0x801C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_019_tlut_wheel_2 +donkeykong_kart_frame019_wheel3: + symbol: gKartDK019Wheel3 + type: texture + offset: 0x801C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_019_tlut_wheel_3 +donkeykong_kart_frame020_wheel0: + symbol: gKartDK020Wheel0 + type: texture + offset: 0x872C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_020_tlut_wheel_0 +donkeykong_kart_frame020_wheel1: + symbol: gKartDK020Wheel1 + type: texture + offset: 0x872C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_020_tlut_wheel_1 +donkeykong_kart_frame020_wheel2: + symbol: gKartDK020Wheel2 + type: texture + offset: 0x872C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_020_tlut_wheel_2 +donkeykong_kart_frame020_wheel3: + symbol: gKartDK020Wheel3 + type: texture + offset: 0x872C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_020_tlut_wheel_3 +donkeykong_kart_frame021_wheel0: + symbol: gKartDK021Wheel0 + type: texture + offset: 0x8E58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_021_tlut_wheel_0 +donkeykong_kart_frame021_wheel1: + symbol: gKartDK021Wheel1 + type: texture + offset: 0x8E58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_021_tlut_wheel_1 +donkeykong_kart_frame021_wheel2: + symbol: gKartDK021Wheel2 + type: texture + offset: 0x8E58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_021_tlut_wheel_2 +donkeykong_kart_frame021_wheel3: + symbol: gKartDK021Wheel3 + type: texture + offset: 0x8E58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_021_tlut_wheel_3 +donkeykong_kart_frame022_wheel0: + symbol: gKartDK022Wheel0 + type: texture + offset: 0x9548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_022_tlut_wheel_0 +donkeykong_kart_frame022_wheel1: + symbol: gKartDK022Wheel1 + type: texture + offset: 0x9548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_022_tlut_wheel_1 +donkeykong_kart_frame022_wheel2: + symbol: gKartDK022Wheel2 + type: texture + offset: 0x9548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_022_tlut_wheel_2 +donkeykong_kart_frame022_wheel3: + symbol: gKartDK022Wheel3 + type: texture + offset: 0x9548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_022_tlut_wheel_3 +donkeykong_kart_frame023_wheel0: + symbol: gKartDK023Wheel0 + type: texture + offset: 0x9C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_023_tlut_wheel_0 +donkeykong_kart_frame023_wheel1: + symbol: gKartDK023Wheel1 + type: texture + offset: 0x9C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_023_tlut_wheel_1 +donkeykong_kart_frame023_wheel2: + symbol: gKartDK023Wheel2 + type: texture + offset: 0x9C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_023_tlut_wheel_2 +donkeykong_kart_frame023_wheel3: + symbol: gKartDK023Wheel3 + type: texture + offset: 0x9C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_023_tlut_wheel_3 +donkeykong_kart_frame024_wheel0: + symbol: gKartDK024Wheel0 + type: texture + offset: 0xA2B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_024_tlut_wheel_0 +donkeykong_kart_frame024_wheel1: + symbol: gKartDK024Wheel1 + type: texture + offset: 0xA2B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_024_tlut_wheel_1 +donkeykong_kart_frame024_wheel2: + symbol: gKartDK024Wheel2 + type: texture + offset: 0xA2B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_024_tlut_wheel_2 +donkeykong_kart_frame024_wheel3: + symbol: gKartDK024Wheel3 + type: texture + offset: 0xA2B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_024_tlut_wheel_3 +donkeykong_kart_frame025_wheel0: + symbol: gKartDK025Wheel0 + type: texture + offset: 0xA968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_025_tlut_wheel_0 +donkeykong_kart_frame025_wheel1: + symbol: gKartDK025Wheel1 + type: texture + offset: 0xA968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_025_tlut_wheel_1 +donkeykong_kart_frame025_wheel2: + symbol: gKartDK025Wheel2 + type: texture + offset: 0xA968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_025_tlut_wheel_2 +donkeykong_kart_frame025_wheel3: + symbol: gKartDK025Wheel3 + type: texture + offset: 0xA968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_025_tlut_wheel_3 +donkeykong_kart_frame026_wheel0: + symbol: gKartDK026Wheel0 + type: texture + offset: 0xB010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_026_tlut_wheel_0 +donkeykong_kart_frame026_wheel1: + symbol: gKartDK026Wheel1 + type: texture + offset: 0xB010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_026_tlut_wheel_1 +donkeykong_kart_frame026_wheel2: + symbol: gKartDK026Wheel2 + type: texture + offset: 0xB010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_026_tlut_wheel_2 +donkeykong_kart_frame026_wheel3: + symbol: gKartDK026Wheel3 + type: texture + offset: 0xB010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_026_tlut_wheel_3 +donkeykong_kart_frame027_wheel0: + symbol: gKartDK027Wheel0 + type: texture + offset: 0xB6BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_027_tlut_wheel_0 +donkeykong_kart_frame027_wheel1: + symbol: gKartDK027Wheel1 + type: texture + offset: 0xB6BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_027_tlut_wheel_1 +donkeykong_kart_frame027_wheel2: + symbol: gKartDK027Wheel2 + type: texture + offset: 0xB6BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_027_tlut_wheel_2 +donkeykong_kart_frame027_wheel3: + symbol: gKartDK027Wheel3 + type: texture + offset: 0xB6BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_027_tlut_wheel_3 +donkeykong_kart_frame028_wheel0: + symbol: gKartDK028Wheel0 + type: texture + offset: 0xBD70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_028_tlut_wheel_0 +donkeykong_kart_frame028_wheel1: + symbol: gKartDK028Wheel1 + type: texture + offset: 0xBD70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_028_tlut_wheel_1 +donkeykong_kart_frame028_wheel2: + symbol: gKartDK028Wheel2 + type: texture + offset: 0xBD70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_028_tlut_wheel_2 +donkeykong_kart_frame028_wheel3: + symbol: gKartDK028Wheel3 + type: texture + offset: 0xBD70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_028_tlut_wheel_3 +donkeykong_kart_frame029_wheel0: + symbol: gKartDK029Wheel0 + type: texture + offset: 0xC430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_029_tlut_wheel_0 +donkeykong_kart_frame029_wheel1: + symbol: gKartDK029Wheel1 + type: texture + offset: 0xC430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_029_tlut_wheel_1 +donkeykong_kart_frame029_wheel2: + symbol: gKartDK029Wheel2 + type: texture + offset: 0xC430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_029_tlut_wheel_2 +donkeykong_kart_frame029_wheel3: + symbol: gKartDK029Wheel3 + type: texture + offset: 0xC430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_029_tlut_wheel_3 +donkeykong_kart_frame030_wheel0: + symbol: gKartDK030Wheel0 + type: texture + offset: 0xCB08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_030_tlut_wheel_0 +donkeykong_kart_frame030_wheel1: + symbol: gKartDK030Wheel1 + type: texture + offset: 0xCB08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_030_tlut_wheel_1 +donkeykong_kart_frame030_wheel2: + symbol: gKartDK030Wheel2 + type: texture + offset: 0xCB08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_030_tlut_wheel_2 +donkeykong_kart_frame030_wheel3: + symbol: gKartDK030Wheel3 + type: texture + offset: 0xCB08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_030_tlut_wheel_3 +donkeykong_kart_frame031_wheel0: + symbol: gKartDK031Wheel0 + type: texture + offset: 0xD1BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_031_tlut_wheel_0 +donkeykong_kart_frame031_wheel1: + symbol: gKartDK031Wheel1 + type: texture + offset: 0xD1BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_031_tlut_wheel_1 +donkeykong_kart_frame031_wheel2: + symbol: gKartDK031Wheel2 + type: texture + offset: 0xD1BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_031_tlut_wheel_2 +donkeykong_kart_frame031_wheel3: + symbol: gKartDK031Wheel3 + type: texture + offset: 0xD1BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_031_tlut_wheel_3 +donkeykong_kart_frame032_wheel0: + symbol: gKartDK032Wheel0 + type: texture + offset: 0xD87C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_032_tlut_wheel_0 +donkeykong_kart_frame032_wheel1: + symbol: gKartDK032Wheel1 + type: texture + offset: 0xD87C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_032_tlut_wheel_1 +donkeykong_kart_frame032_wheel2: + symbol: gKartDK032Wheel2 + type: texture + offset: 0xD87C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_032_tlut_wheel_2 +donkeykong_kart_frame032_wheel3: + symbol: gKartDK032Wheel3 + type: texture + offset: 0xD87C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_032_tlut_wheel_3 +donkeykong_kart_frame033_wheel0: + symbol: gKartDK033Wheel0 + type: texture + offset: 0xDF40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_033_tlut_wheel_0 +donkeykong_kart_frame033_wheel1: + symbol: gKartDK033Wheel1 + type: texture + offset: 0xDF40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_033_tlut_wheel_1 +donkeykong_kart_frame033_wheel2: + symbol: gKartDK033Wheel2 + type: texture + offset: 0xDF40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_033_tlut_wheel_2 +donkeykong_kart_frame033_wheel3: + symbol: gKartDK033Wheel3 + type: texture + offset: 0xDF40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_033_tlut_wheel_3 +donkeykong_kart_frame034_wheel0: + symbol: gKartDK034Wheel0 + type: texture + offset: 0xE60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_034_tlut_wheel_0 +donkeykong_kart_frame034_wheel1: + symbol: gKartDK034Wheel1 + type: texture + offset: 0xE60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_034_tlut_wheel_1 +donkeykong_kart_frame034_wheel2: + symbol: gKartDK034Wheel2 + type: texture + offset: 0xE60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_034_tlut_wheel_2 +donkeykong_kart_frame034_wheel3: + symbol: gKartDK034Wheel3 + type: texture + offset: 0xE60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_034_tlut_wheel_3 +donkeykong_kart_frame035_wheel0: + symbol: gKartDK035Wheel0 + type: texture + offset: 0xECF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_035_tlut_wheel_0 +donkeykong_kart_frame035_wheel1: + symbol: gKartDK035Wheel1 + type: texture + offset: 0xECF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_035_tlut_wheel_1 +donkeykong_kart_frame035_wheel2: + symbol: gKartDK035Wheel2 + type: texture + offset: 0xECF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_035_tlut_wheel_2 +donkeykong_kart_frame035_wheel3: + symbol: gKartDK035Wheel3 + type: texture + offset: 0xECF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_035_tlut_wheel_3 +donkeykong_kart_frame036_wheel0: + symbol: gKartDK036Wheel0 + type: texture + offset: 0xF3D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_036_tlut_wheel_0 +donkeykong_kart_frame036_wheel1: + symbol: gKartDK036Wheel1 + type: texture + offset: 0xF3D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_036_tlut_wheel_1 +donkeykong_kart_frame036_wheel2: + symbol: gKartDK036Wheel2 + type: texture + offset: 0xF3D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_036_tlut_wheel_2 +donkeykong_kart_frame036_wheel3: + symbol: gKartDK036Wheel3 + type: texture + offset: 0xF3D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_036_tlut_wheel_3 +donkeykong_kart_frame037_wheel0: + symbol: gKartDK037Wheel0 + type: texture + offset: 0xFAB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_037_tlut_wheel_0 +donkeykong_kart_frame037_wheel1: + symbol: gKartDK037Wheel1 + type: texture + offset: 0xFAB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_037_tlut_wheel_1 +donkeykong_kart_frame037_wheel2: + symbol: gKartDK037Wheel2 + type: texture + offset: 0xFAB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_037_tlut_wheel_2 +donkeykong_kart_frame037_wheel3: + symbol: gKartDK037Wheel3 + type: texture + offset: 0xFAB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_037_tlut_wheel_3 +donkeykong_kart_frame038_wheel0: + symbol: gKartDK038Wheel0 + type: texture + offset: 0x101BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_038_tlut_wheel_0 +donkeykong_kart_frame038_wheel1: + symbol: gKartDK038Wheel1 + type: texture + offset: 0x101BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_038_tlut_wheel_1 +donkeykong_kart_frame038_wheel2: + symbol: gKartDK038Wheel2 + type: texture + offset: 0x101BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_038_tlut_wheel_2 +donkeykong_kart_frame038_wheel3: + symbol: gKartDK038Wheel3 + type: texture + offset: 0x101BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_038_tlut_wheel_3 +donkeykong_kart_frame039_wheel0: + symbol: gKartDK039Wheel0 + type: texture + offset: 0x108D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_039_tlut_wheel_0 +donkeykong_kart_frame039_wheel1: + symbol: gKartDK039Wheel1 + type: texture + offset: 0x108D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_039_tlut_wheel_1 +donkeykong_kart_frame039_wheel2: + symbol: gKartDK039Wheel2 + type: texture + offset: 0x108D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_039_tlut_wheel_2 +donkeykong_kart_frame039_wheel3: + symbol: gKartDK039Wheel3 + type: texture + offset: 0x108D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_039_tlut_wheel_3 +donkeykong_kart_frame040_wheel0: + symbol: gKartDK040Wheel0 + type: texture + offset: 0x10FF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_040_tlut_wheel_0 +donkeykong_kart_frame040_wheel1: + symbol: gKartDK040Wheel1 + type: texture + offset: 0x10FF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_040_tlut_wheel_1 +donkeykong_kart_frame040_wheel2: + symbol: gKartDK040Wheel2 + type: texture + offset: 0x10FF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_040_tlut_wheel_2 +donkeykong_kart_frame040_wheel3: + symbol: gKartDK040Wheel3 + type: texture + offset: 0x10FF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_040_tlut_wheel_3 +donkeykong_kart_frame041_wheel0: + symbol: gKartDK041Wheel0 + type: texture + offset: 0x1171C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_041_tlut_wheel_0 +donkeykong_kart_frame041_wheel1: + symbol: gKartDK041Wheel1 + type: texture + offset: 0x1171C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_041_tlut_wheel_1 +donkeykong_kart_frame041_wheel2: + symbol: gKartDK041Wheel2 + type: texture + offset: 0x1171C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_041_tlut_wheel_2 +donkeykong_kart_frame041_wheel3: + symbol: gKartDK041Wheel3 + type: texture + offset: 0x1171C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_041_tlut_wheel_3 +donkeykong_kart_frame042_wheel0: + symbol: gKartDK042Wheel0 + type: texture + offset: 0x11E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_042_tlut_wheel_0 +donkeykong_kart_frame042_wheel1: + symbol: gKartDK042Wheel1 + type: texture + offset: 0x11E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_042_tlut_wheel_1 +donkeykong_kart_frame042_wheel2: + symbol: gKartDK042Wheel2 + type: texture + offset: 0x11E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_042_tlut_wheel_2 +donkeykong_kart_frame042_wheel3: + symbol: gKartDK042Wheel3 + type: texture + offset: 0x11E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_042_tlut_wheel_3 +donkeykong_kart_frame043_wheel0: + symbol: gKartDK043Wheel0 + type: texture + offset: 0x12538 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_043_tlut_wheel_0 +donkeykong_kart_frame043_wheel1: + symbol: gKartDK043Wheel1 + type: texture + offset: 0x12538 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_043_tlut_wheel_1 +donkeykong_kart_frame043_wheel2: + symbol: gKartDK043Wheel2 + type: texture + offset: 0x12538 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_043_tlut_wheel_2 +donkeykong_kart_frame043_wheel3: + symbol: gKartDK043Wheel3 + type: texture + offset: 0x12538 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_043_tlut_wheel_3 +donkeykong_kart_frame044_wheel0: + symbol: gKartDK044Wheel0 + type: texture + offset: 0x12C24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_044_tlut_wheel_0 +donkeykong_kart_frame044_wheel1: + symbol: gKartDK044Wheel1 + type: texture + offset: 0x12C24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_044_tlut_wheel_1 +donkeykong_kart_frame044_wheel2: + symbol: gKartDK044Wheel2 + type: texture + offset: 0x12C24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_044_tlut_wheel_2 +donkeykong_kart_frame044_wheel3: + symbol: gKartDK044Wheel3 + type: texture + offset: 0x12C24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_044_tlut_wheel_3 +donkeykong_kart_frame045_wheel0: + symbol: gKartDK045Wheel0 + type: texture + offset: 0x132F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_045_tlut_wheel_0 +donkeykong_kart_frame045_wheel1: + symbol: gKartDK045Wheel1 + type: texture + offset: 0x132F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_045_tlut_wheel_1 +donkeykong_kart_frame045_wheel2: + symbol: gKartDK045Wheel2 + type: texture + offset: 0x132F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_045_tlut_wheel_2 +donkeykong_kart_frame045_wheel3: + symbol: gKartDK045Wheel3 + type: texture + offset: 0x132F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_045_tlut_wheel_3 +donkeykong_kart_frame046_wheel0: + symbol: gKartDK046Wheel0 + type: texture + offset: 0x139CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_046_tlut_wheel_0 +donkeykong_kart_frame046_wheel1: + symbol: gKartDK046Wheel1 + type: texture + offset: 0x139CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_046_tlut_wheel_1 +donkeykong_kart_frame046_wheel2: + symbol: gKartDK046Wheel2 + type: texture + offset: 0x139CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_046_tlut_wheel_2 +donkeykong_kart_frame046_wheel3: + symbol: gKartDK046Wheel3 + type: texture + offset: 0x139CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_046_tlut_wheel_3 +donkeykong_kart_frame047_wheel0: + symbol: gKartDK047Wheel0 + type: texture + offset: 0x140AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_047_tlut_wheel_0 +donkeykong_kart_frame047_wheel1: + symbol: gKartDK047Wheel1 + type: texture + offset: 0x140AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_047_tlut_wheel_1 +donkeykong_kart_frame047_wheel2: + symbol: gKartDK047Wheel2 + type: texture + offset: 0x140AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_047_tlut_wheel_2 +donkeykong_kart_frame047_wheel3: + symbol: gKartDK047Wheel3 + type: texture + offset: 0x140AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_047_tlut_wheel_3 +donkeykong_kart_frame048_wheel0: + symbol: gKartDK048Wheel0 + type: texture + offset: 0x14780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_048_tlut_wheel_0 +donkeykong_kart_frame048_wheel1: + symbol: gKartDK048Wheel1 + type: texture + offset: 0x14780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_048_tlut_wheel_1 +donkeykong_kart_frame048_wheel2: + symbol: gKartDK048Wheel2 + type: texture + offset: 0x14780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_048_tlut_wheel_2 +donkeykong_kart_frame048_wheel3: + symbol: gKartDK048Wheel3 + type: texture + offset: 0x14780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_048_tlut_wheel_3 +donkeykong_kart_frame049_wheel0: + symbol: gKartDK049Wheel0 + type: texture + offset: 0x14E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_049_tlut_wheel_0 +donkeykong_kart_frame049_wheel1: + symbol: gKartDK049Wheel1 + type: texture + offset: 0x14E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_049_tlut_wheel_1 +donkeykong_kart_frame049_wheel2: + symbol: gKartDK049Wheel2 + type: texture + offset: 0x14E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_049_tlut_wheel_2 +donkeykong_kart_frame049_wheel3: + symbol: gKartDK049Wheel3 + type: texture + offset: 0x14E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_049_tlut_wheel_3 +donkeykong_kart_frame050_wheel0: + symbol: gKartDK050Wheel0 + type: texture + offset: 0x15510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_050_tlut_wheel_0 +donkeykong_kart_frame050_wheel1: + symbol: gKartDK050Wheel1 + type: texture + offset: 0x15510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_050_tlut_wheel_1 +donkeykong_kart_frame050_wheel2: + symbol: gKartDK050Wheel2 + type: texture + offset: 0x15510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_050_tlut_wheel_2 +donkeykong_kart_frame050_wheel3: + symbol: gKartDK050Wheel3 + type: texture + offset: 0x15510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_050_tlut_wheel_3 +donkeykong_kart_frame051_wheel0: + symbol: gKartDK051Wheel0 + type: texture + offset: 0x15BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_051_tlut_wheel_0 +donkeykong_kart_frame051_wheel1: + symbol: gKartDK051Wheel1 + type: texture + offset: 0x15BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_051_tlut_wheel_1 +donkeykong_kart_frame051_wheel2: + symbol: gKartDK051Wheel2 + type: texture + offset: 0x15BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_051_tlut_wheel_2 +donkeykong_kart_frame051_wheel3: + symbol: gKartDK051Wheel3 + type: texture + offset: 0x15BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_051_tlut_wheel_3 +donkeykong_kart_frame052_wheel0: + symbol: gKartDK052Wheel0 + type: texture + offset: 0x1629C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_052_tlut_wheel_0 +donkeykong_kart_frame052_wheel1: + symbol: gKartDK052Wheel1 + type: texture + offset: 0x1629C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_052_tlut_wheel_1 +donkeykong_kart_frame052_wheel2: + symbol: gKartDK052Wheel2 + type: texture + offset: 0x1629C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_052_tlut_wheel_2 +donkeykong_kart_frame052_wheel3: + symbol: gKartDK052Wheel3 + type: texture + offset: 0x1629C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_052_tlut_wheel_3 +donkeykong_kart_frame053_wheel0: + symbol: gKartDK053Wheel0 + type: texture + offset: 0x16978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_053_tlut_wheel_0 +donkeykong_kart_frame053_wheel1: + symbol: gKartDK053Wheel1 + type: texture + offset: 0x16978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_053_tlut_wheel_1 +donkeykong_kart_frame053_wheel2: + symbol: gKartDK053Wheel2 + type: texture + offset: 0x16978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_053_tlut_wheel_2 +donkeykong_kart_frame053_wheel3: + symbol: gKartDK053Wheel3 + type: texture + offset: 0x16978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_053_tlut_wheel_3 +donkeykong_kart_frame054_wheel0: + symbol: gKartDK054Wheel0 + type: texture + offset: 0x17040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_054_tlut_wheel_0 +donkeykong_kart_frame054_wheel1: + symbol: gKartDK054Wheel1 + type: texture + offset: 0x17040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_054_tlut_wheel_1 +donkeykong_kart_frame054_wheel2: + symbol: gKartDK054Wheel2 + type: texture + offset: 0x17040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_054_tlut_wheel_2 +donkeykong_kart_frame054_wheel3: + symbol: gKartDK054Wheel3 + type: texture + offset: 0x17040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_054_tlut_wheel_3 +donkeykong_kart_frame055_wheel0: + symbol: gKartDK055Wheel0 + type: texture + offset: 0x1770C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_055_tlut_wheel_0 +donkeykong_kart_frame055_wheel1: + symbol: gKartDK055Wheel1 + type: texture + offset: 0x1770C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_055_tlut_wheel_1 +donkeykong_kart_frame055_wheel2: + symbol: gKartDK055Wheel2 + type: texture + offset: 0x1770C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_055_tlut_wheel_2 +donkeykong_kart_frame055_wheel3: + symbol: gKartDK055Wheel3 + type: texture + offset: 0x1770C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_055_tlut_wheel_3 +donkeykong_kart_frame056_wheel0: + symbol: gKartDK056Wheel0 + type: texture + offset: 0x17DE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_056_tlut_wheel_0 +donkeykong_kart_frame056_wheel1: + symbol: gKartDK056Wheel1 + type: texture + offset: 0x17DE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_056_tlut_wheel_1 +donkeykong_kart_frame056_wheel2: + symbol: gKartDK056Wheel2 + type: texture + offset: 0x17DE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_056_tlut_wheel_2 +donkeykong_kart_frame056_wheel3: + symbol: gKartDK056Wheel3 + type: texture + offset: 0x17DE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_056_tlut_wheel_3 +donkeykong_kart_frame057_wheel0: + symbol: gKartDK057Wheel0 + type: texture + offset: 0x184D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_057_tlut_wheel_0 +donkeykong_kart_frame057_wheel1: + symbol: gKartDK057Wheel1 + type: texture + offset: 0x184D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_057_tlut_wheel_1 +donkeykong_kart_frame057_wheel2: + symbol: gKartDK057Wheel2 + type: texture + offset: 0x184D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_057_tlut_wheel_2 +donkeykong_kart_frame057_wheel3: + symbol: gKartDK057Wheel3 + type: texture + offset: 0x184D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_057_tlut_wheel_3 +donkeykong_kart_frame058_wheel0: + symbol: gKartDK058Wheel0 + type: texture + offset: 0x18BC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_058_tlut_wheel_0 +donkeykong_kart_frame058_wheel1: + symbol: gKartDK058Wheel1 + type: texture + offset: 0x18BC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_058_tlut_wheel_1 +donkeykong_kart_frame058_wheel2: + symbol: gKartDK058Wheel2 + type: texture + offset: 0x18BC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_058_tlut_wheel_2 +donkeykong_kart_frame058_wheel3: + symbol: gKartDK058Wheel3 + type: texture + offset: 0x18BC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_058_tlut_wheel_3 +donkeykong_kart_frame059_wheel0: + symbol: gKartDK059Wheel0 + type: texture + offset: 0x192CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_059_tlut_wheel_0 +donkeykong_kart_frame059_wheel1: + symbol: gKartDK059Wheel1 + type: texture + offset: 0x192CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_059_tlut_wheel_1 +donkeykong_kart_frame059_wheel2: + symbol: gKartDK059Wheel2 + type: texture + offset: 0x192CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_059_tlut_wheel_2 +donkeykong_kart_frame059_wheel3: + symbol: gKartDK059Wheel3 + type: texture + offset: 0x192CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_059_tlut_wheel_3 +donkeykong_kart_frame060_wheel0: + symbol: gKartDK060Wheel0 + type: texture + offset: 0x199D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_060_tlut_wheel_0 +donkeykong_kart_frame060_wheel1: + symbol: gKartDK060Wheel1 + type: texture + offset: 0x199D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_060_tlut_wheel_1 +donkeykong_kart_frame060_wheel2: + symbol: gKartDK060Wheel2 + type: texture + offset: 0x199D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_060_tlut_wheel_2 +donkeykong_kart_frame060_wheel3: + symbol: gKartDK060Wheel3 + type: texture + offset: 0x199D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_060_tlut_wheel_3 +donkeykong_kart_frame061_wheel0: + symbol: gKartDK061Wheel0 + type: texture + offset: 0x1A104 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_061_tlut_wheel_0 +donkeykong_kart_frame061_wheel1: + symbol: gKartDK061Wheel1 + type: texture + offset: 0x1A104 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_061_tlut_wheel_1 +donkeykong_kart_frame061_wheel2: + symbol: gKartDK061Wheel2 + type: texture + offset: 0x1A104 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_061_tlut_wheel_2 +donkeykong_kart_frame061_wheel3: + symbol: gKartDK061Wheel3 + type: texture + offset: 0x1A104 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_061_tlut_wheel_3 +donkeykong_kart_frame062_wheel0: + symbol: gKartDK062Wheel0 + type: texture + offset: 0x1A820 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_062_tlut_wheel_0 +donkeykong_kart_frame062_wheel1: + symbol: gKartDK062Wheel1 + type: texture + offset: 0x1A820 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_062_tlut_wheel_1 +donkeykong_kart_frame062_wheel2: + symbol: gKartDK062Wheel2 + type: texture + offset: 0x1A820 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_062_tlut_wheel_2 +donkeykong_kart_frame062_wheel3: + symbol: gKartDK062Wheel3 + type: texture + offset: 0x1A820 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_062_tlut_wheel_3 +donkeykong_kart_frame063_wheel0: + symbol: gKartDK063Wheel0 + type: texture + offset: 0x1AF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_063_tlut_wheel_0 +donkeykong_kart_frame063_wheel1: + symbol: gKartDK063Wheel1 + type: texture + offset: 0x1AF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_063_tlut_wheel_1 +donkeykong_kart_frame063_wheel2: + symbol: gKartDK063Wheel2 + type: texture + offset: 0x1AF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_063_tlut_wheel_2 +donkeykong_kart_frame063_wheel3: + symbol: gKartDK063Wheel3 + type: texture + offset: 0x1AF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_063_tlut_wheel_3 +donkeykong_kart_frame064_wheel0: + symbol: gKartDK064Wheel0 + type: texture + offset: 0x1B660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_064_tlut_wheel_0 +donkeykong_kart_frame064_wheel1: + symbol: gKartDK064Wheel1 + type: texture + offset: 0x1B660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_064_tlut_wheel_1 +donkeykong_kart_frame064_wheel2: + symbol: gKartDK064Wheel2 + type: texture + offset: 0x1B660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_064_tlut_wheel_2 +donkeykong_kart_frame064_wheel3: + symbol: gKartDK064Wheel3 + type: texture + offset: 0x1B660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_064_tlut_wheel_3 +donkeykong_kart_frame065_wheel0: + symbol: gKartDK065Wheel0 + type: texture + offset: 0x1BD70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_065_tlut_wheel_0 +donkeykong_kart_frame065_wheel1: + symbol: gKartDK065Wheel1 + type: texture + offset: 0x1BD70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_065_tlut_wheel_1 +donkeykong_kart_frame065_wheel2: + symbol: gKartDK065Wheel2 + type: texture + offset: 0x1BD70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_065_tlut_wheel_2 +donkeykong_kart_frame065_wheel3: + symbol: gKartDK065Wheel3 + type: texture + offset: 0x1BD70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_065_tlut_wheel_3 +donkeykong_kart_frame066_wheel0: + symbol: gKartDK066Wheel0 + type: texture + offset: 0x1C460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_066_tlut_wheel_0 +donkeykong_kart_frame066_wheel1: + symbol: gKartDK066Wheel1 + type: texture + offset: 0x1C460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_066_tlut_wheel_1 +donkeykong_kart_frame066_wheel2: + symbol: gKartDK066Wheel2 + type: texture + offset: 0x1C460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_066_tlut_wheel_2 +donkeykong_kart_frame066_wheel3: + symbol: gKartDK066Wheel3 + type: texture + offset: 0x1C460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_066_tlut_wheel_3 +donkeykong_kart_frame067_wheel0: + symbol: gKartDK067Wheel0 + type: texture + offset: 0x1CB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_067_tlut_wheel_0 +donkeykong_kart_frame067_wheel1: + symbol: gKartDK067Wheel1 + type: texture + offset: 0x1CB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_067_tlut_wheel_1 +donkeykong_kart_frame067_wheel2: + symbol: gKartDK067Wheel2 + type: texture + offset: 0x1CB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_067_tlut_wheel_2 +donkeykong_kart_frame067_wheel3: + symbol: gKartDK067Wheel3 + type: texture + offset: 0x1CB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_067_tlut_wheel_3 +donkeykong_kart_frame068_wheel0: + symbol: gKartDK068Wheel0 + type: texture + offset: 0x1D25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_068_tlut_wheel_0 +donkeykong_kart_frame068_wheel1: + symbol: gKartDK068Wheel1 + type: texture + offset: 0x1D25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_068_tlut_wheel_1 +donkeykong_kart_frame068_wheel2: + symbol: gKartDK068Wheel2 + type: texture + offset: 0x1D25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_068_tlut_wheel_2 +donkeykong_kart_frame068_wheel3: + symbol: gKartDK068Wheel3 + type: texture + offset: 0x1D25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_068_tlut_wheel_3 +donkeykong_kart_frame069_wheel0: + symbol: gKartDK069Wheel0 + type: texture + offset: 0x1D938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_069_tlut_wheel_0 +donkeykong_kart_frame069_wheel1: + symbol: gKartDK069Wheel1 + type: texture + offset: 0x1D938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_069_tlut_wheel_1 +donkeykong_kart_frame069_wheel2: + symbol: gKartDK069Wheel2 + type: texture + offset: 0x1D938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_069_tlut_wheel_2 +donkeykong_kart_frame069_wheel3: + symbol: gKartDK069Wheel3 + type: texture + offset: 0x1D938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_069_tlut_wheel_3 +donkeykong_kart_frame070_wheel0: + symbol: gKartDK070Wheel0 + type: texture + offset: 0x1E004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_070_tlut_wheel_0 +donkeykong_kart_frame070_wheel1: + symbol: gKartDK070Wheel1 + type: texture + offset: 0x1E004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_070_tlut_wheel_1 +donkeykong_kart_frame070_wheel2: + symbol: gKartDK070Wheel2 + type: texture + offset: 0x1E004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_070_tlut_wheel_2 +donkeykong_kart_frame070_wheel3: + symbol: gKartDK070Wheel3 + type: texture + offset: 0x1E004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_070_tlut_wheel_3 +donkeykong_kart_frame071_wheel0: + symbol: gKartDK071Wheel0 + type: texture + offset: 0x1E6E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_071_tlut_wheel_0 +donkeykong_kart_frame071_wheel1: + symbol: gKartDK071Wheel1 + type: texture + offset: 0x1E6E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_071_tlut_wheel_1 +donkeykong_kart_frame071_wheel2: + symbol: gKartDK071Wheel2 + type: texture + offset: 0x1E6E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_071_tlut_wheel_2 +donkeykong_kart_frame071_wheel3: + symbol: gKartDK071Wheel3 + type: texture + offset: 0x1E6E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_071_tlut_wheel_3 +donkeykong_kart_frame072_wheel0: + symbol: gKartDK072Wheel0 + type: texture + offset: 0x1EDB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_072_tlut_wheel_0 +donkeykong_kart_frame072_wheel1: + symbol: gKartDK072Wheel1 + type: texture + offset: 0x1EDB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_072_tlut_wheel_1 +donkeykong_kart_frame072_wheel2: + symbol: gKartDK072Wheel2 + type: texture + offset: 0x1EDB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_072_tlut_wheel_2 +donkeykong_kart_frame072_wheel3: + symbol: gKartDK072Wheel3 + type: texture + offset: 0x1EDB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_072_tlut_wheel_3 +donkeykong_kart_frame073_wheel0: + symbol: gKartDK073Wheel0 + type: texture + offset: 0x1F484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_073_tlut_wheel_0 +donkeykong_kart_frame073_wheel1: + symbol: gKartDK073Wheel1 + type: texture + offset: 0x1F484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_073_tlut_wheel_1 +donkeykong_kart_frame073_wheel2: + symbol: gKartDK073Wheel2 + type: texture + offset: 0x1F484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_073_tlut_wheel_2 +donkeykong_kart_frame073_wheel3: + symbol: gKartDK073Wheel3 + type: texture + offset: 0x1F484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_073_tlut_wheel_3 +donkeykong_kart_frame074_wheel0: + symbol: gKartDK074Wheel0 + type: texture + offset: 0x1FB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_074_tlut_wheel_0 +donkeykong_kart_frame074_wheel1: + symbol: gKartDK074Wheel1 + type: texture + offset: 0x1FB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_074_tlut_wheel_1 +donkeykong_kart_frame074_wheel2: + symbol: gKartDK074Wheel2 + type: texture + offset: 0x1FB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_074_tlut_wheel_2 +donkeykong_kart_frame074_wheel3: + symbol: gKartDK074Wheel3 + type: texture + offset: 0x1FB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_074_tlut_wheel_3 +donkeykong_kart_frame075_wheel0: + symbol: gKartDK075Wheel0 + type: texture + offset: 0x20230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_075_tlut_wheel_0 +donkeykong_kart_frame075_wheel1: + symbol: gKartDK075Wheel1 + type: texture + offset: 0x20230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_075_tlut_wheel_1 +donkeykong_kart_frame075_wheel2: + symbol: gKartDK075Wheel2 + type: texture + offset: 0x20230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_075_tlut_wheel_2 +donkeykong_kart_frame075_wheel3: + symbol: gKartDK075Wheel3 + type: texture + offset: 0x20230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_075_tlut_wheel_3 +donkeykong_kart_frame076_wheel0: + symbol: gKartDK076Wheel0 + type: texture + offset: 0x20908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_076_tlut_wheel_0 +donkeykong_kart_frame076_wheel1: + symbol: gKartDK076Wheel1 + type: texture + offset: 0x20908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_076_tlut_wheel_1 +donkeykong_kart_frame076_wheel2: + symbol: gKartDK076Wheel2 + type: texture + offset: 0x20908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_076_tlut_wheel_2 +donkeykong_kart_frame076_wheel3: + symbol: gKartDK076Wheel3 + type: texture + offset: 0x20908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_076_tlut_wheel_3 +donkeykong_kart_frame077_wheel0: + symbol: gKartDK077Wheel0 + type: texture + offset: 0x20FE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_077_tlut_wheel_0 +donkeykong_kart_frame077_wheel1: + symbol: gKartDK077Wheel1 + type: texture + offset: 0x20FE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_077_tlut_wheel_1 +donkeykong_kart_frame077_wheel2: + symbol: gKartDK077Wheel2 + type: texture + offset: 0x20FE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_077_tlut_wheel_2 +donkeykong_kart_frame077_wheel3: + symbol: gKartDK077Wheel3 + type: texture + offset: 0x20FE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_077_tlut_wheel_3 +donkeykong_kart_frame078_wheel0: + symbol: gKartDK078Wheel0 + type: texture + offset: 0x216D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_078_tlut_wheel_0 +donkeykong_kart_frame078_wheel1: + symbol: gKartDK078Wheel1 + type: texture + offset: 0x216D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_078_tlut_wheel_1 +donkeykong_kart_frame078_wheel2: + symbol: gKartDK078Wheel2 + type: texture + offset: 0x216D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_078_tlut_wheel_2 +donkeykong_kart_frame078_wheel3: + symbol: gKartDK078Wheel3 + type: texture + offset: 0x216D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_078_tlut_wheel_3 +donkeykong_kart_frame079_wheel0: + symbol: gKartDK079Wheel0 + type: texture + offset: 0x21DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_079_tlut_wheel_0 +donkeykong_kart_frame079_wheel1: + symbol: gKartDK079Wheel1 + type: texture + offset: 0x21DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_079_tlut_wheel_1 +donkeykong_kart_frame079_wheel2: + symbol: gKartDK079Wheel2 + type: texture + offset: 0x21DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_079_tlut_wheel_2 +donkeykong_kart_frame079_wheel3: + symbol: gKartDK079Wheel3 + type: texture + offset: 0x21DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_079_tlut_wheel_3 +donkeykong_kart_frame080_wheel0: + symbol: gKartDK080Wheel0 + type: texture + offset: 0x224FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_080_tlut_wheel_0 +donkeykong_kart_frame080_wheel1: + symbol: gKartDK080Wheel1 + type: texture + offset: 0x224FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_080_tlut_wheel_1 +donkeykong_kart_frame080_wheel2: + symbol: gKartDK080Wheel2 + type: texture + offset: 0x224FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_080_tlut_wheel_2 +donkeykong_kart_frame080_wheel3: + symbol: gKartDK080Wheel3 + type: texture + offset: 0x224FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_080_tlut_wheel_3 +donkeykong_kart_frame081_wheel0: + symbol: gKartDK081Wheel0 + type: texture + offset: 0x22C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_081_tlut_wheel_0 +donkeykong_kart_frame081_wheel1: + symbol: gKartDK081Wheel1 + type: texture + offset: 0x22C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_081_tlut_wheel_1 +donkeykong_kart_frame081_wheel2: + symbol: gKartDK081Wheel2 + type: texture + offset: 0x22C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_081_tlut_wheel_2 +donkeykong_kart_frame081_wheel3: + symbol: gKartDK081Wheel3 + type: texture + offset: 0x22C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_081_tlut_wheel_3 +donkeykong_kart_frame082_wheel0: + symbol: gKartDK082Wheel0 + type: texture + offset: 0x23360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_082_tlut_wheel_0 +donkeykong_kart_frame082_wheel1: + symbol: gKartDK082Wheel1 + type: texture + offset: 0x23360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_082_tlut_wheel_1 +donkeykong_kart_frame082_wheel2: + symbol: gKartDK082Wheel2 + type: texture + offset: 0x23360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_082_tlut_wheel_2 +donkeykong_kart_frame082_wheel3: + symbol: gKartDK082Wheel3 + type: texture + offset: 0x23360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_082_tlut_wheel_3 +donkeykong_kart_frame083_wheel0: + symbol: gKartDK083Wheel0 + type: texture + offset: 0x23A9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_083_tlut_wheel_0 +donkeykong_kart_frame083_wheel1: + symbol: gKartDK083Wheel1 + type: texture + offset: 0x23A9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_083_tlut_wheel_1 +donkeykong_kart_frame083_wheel2: + symbol: gKartDK083Wheel2 + type: texture + offset: 0x23A9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_083_tlut_wheel_2 +donkeykong_kart_frame083_wheel3: + symbol: gKartDK083Wheel3 + type: texture + offset: 0x23A9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_083_tlut_wheel_3 +donkeykong_kart_frame084_wheel0: + symbol: gKartDK084Wheel0 + type: texture + offset: 0x241DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_084_tlut_wheel_0 +donkeykong_kart_frame084_wheel1: + symbol: gKartDK084Wheel1 + type: texture + offset: 0x241DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_084_tlut_wheel_1 +donkeykong_kart_frame084_wheel2: + symbol: gKartDK084Wheel2 + type: texture + offset: 0x241DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_084_tlut_wheel_2 +donkeykong_kart_frame084_wheel3: + symbol: gKartDK084Wheel3 + type: texture + offset: 0x241DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_084_tlut_wheel_3 +donkeykong_kart_frame085_wheel0: + symbol: gKartDK085Wheel0 + type: texture + offset: 0x248D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_085_tlut_wheel_0 +donkeykong_kart_frame085_wheel1: + symbol: gKartDK085Wheel1 + type: texture + offset: 0x248D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_085_tlut_wheel_1 +donkeykong_kart_frame085_wheel2: + symbol: gKartDK085Wheel2 + type: texture + offset: 0x248D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_085_tlut_wheel_2 +donkeykong_kart_frame085_wheel3: + symbol: gKartDK085Wheel3 + type: texture + offset: 0x248D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_085_tlut_wheel_3 +donkeykong_kart_frame086_wheel0: + symbol: gKartDK086Wheel0 + type: texture + offset: 0x24FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_086_tlut_wheel_0 +donkeykong_kart_frame086_wheel1: + symbol: gKartDK086Wheel1 + type: texture + offset: 0x24FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_086_tlut_wheel_1 +donkeykong_kart_frame086_wheel2: + symbol: gKartDK086Wheel2 + type: texture + offset: 0x24FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_086_tlut_wheel_2 +donkeykong_kart_frame086_wheel3: + symbol: gKartDK086Wheel3 + type: texture + offset: 0x24FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_086_tlut_wheel_3 +donkeykong_kart_frame087_wheel0: + symbol: gKartDK087Wheel0 + type: texture + offset: 0x256C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_087_tlut_wheel_0 +donkeykong_kart_frame087_wheel1: + symbol: gKartDK087Wheel1 + type: texture + offset: 0x256C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_087_tlut_wheel_1 +donkeykong_kart_frame087_wheel2: + symbol: gKartDK087Wheel2 + type: texture + offset: 0x256C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_087_tlut_wheel_2 +donkeykong_kart_frame087_wheel3: + symbol: gKartDK087Wheel3 + type: texture + offset: 0x256C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_087_tlut_wheel_3 +donkeykong_kart_frame088_wheel0: + symbol: gKartDK088Wheel0 + type: texture + offset: 0x25DD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_088_tlut_wheel_0 +donkeykong_kart_frame088_wheel1: + symbol: gKartDK088Wheel1 + type: texture + offset: 0x25DD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_088_tlut_wheel_1 +donkeykong_kart_frame088_wheel2: + symbol: gKartDK088Wheel2 + type: texture + offset: 0x25DD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_088_tlut_wheel_2 +donkeykong_kart_frame088_wheel3: + symbol: gKartDK088Wheel3 + type: texture + offset: 0x25DD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_088_tlut_wheel_3 +donkeykong_kart_frame089_wheel0: + symbol: gKartDK089Wheel0 + type: texture + offset: 0x264C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_089_tlut_wheel_0 +donkeykong_kart_frame089_wheel1: + symbol: gKartDK089Wheel1 + type: texture + offset: 0x264C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_089_tlut_wheel_1 +donkeykong_kart_frame089_wheel2: + symbol: gKartDK089Wheel2 + type: texture + offset: 0x264C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_089_tlut_wheel_2 +donkeykong_kart_frame089_wheel3: + symbol: gKartDK089Wheel3 + type: texture + offset: 0x264C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_089_tlut_wheel_3 +donkeykong_kart_frame090_wheel0: + symbol: gKartDK090Wheel0 + type: texture + offset: 0x26BB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_090_tlut_wheel_0 +donkeykong_kart_frame090_wheel1: + symbol: gKartDK090Wheel1 + type: texture + offset: 0x26BB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_090_tlut_wheel_1 +donkeykong_kart_frame090_wheel2: + symbol: gKartDK090Wheel2 + type: texture + offset: 0x26BB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_090_tlut_wheel_2 +donkeykong_kart_frame090_wheel3: + symbol: gKartDK090Wheel3 + type: texture + offset: 0x26BB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_090_tlut_wheel_3 +donkeykong_kart_frame091_wheel0: + symbol: gKartDK091Wheel0 + type: texture + offset: 0x272AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_091_tlut_wheel_0 +donkeykong_kart_frame091_wheel1: + symbol: gKartDK091Wheel1 + type: texture + offset: 0x272AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_091_tlut_wheel_1 +donkeykong_kart_frame091_wheel2: + symbol: gKartDK091Wheel2 + type: texture + offset: 0x272AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_091_tlut_wheel_2 +donkeykong_kart_frame091_wheel3: + symbol: gKartDK091Wheel3 + type: texture + offset: 0x272AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_091_tlut_wheel_3 +donkeykong_kart_frame092_wheel0: + symbol: gKartDK092Wheel0 + type: texture + offset: 0x27998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_092_tlut_wheel_0 +donkeykong_kart_frame092_wheel1: + symbol: gKartDK092Wheel1 + type: texture + offset: 0x27998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_092_tlut_wheel_1 +donkeykong_kart_frame092_wheel2: + symbol: gKartDK092Wheel2 + type: texture + offset: 0x27998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_092_tlut_wheel_2 +donkeykong_kart_frame092_wheel3: + symbol: gKartDK092Wheel3 + type: texture + offset: 0x27998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_092_tlut_wheel_3 +donkeykong_kart_frame093_wheel0: + symbol: gKartDK093Wheel0 + type: texture + offset: 0x28074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_093_tlut_wheel_0 +donkeykong_kart_frame093_wheel1: + symbol: gKartDK093Wheel1 + type: texture + offset: 0x28074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_093_tlut_wheel_1 +donkeykong_kart_frame093_wheel2: + symbol: gKartDK093Wheel2 + type: texture + offset: 0x28074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_093_tlut_wheel_2 +donkeykong_kart_frame093_wheel3: + symbol: gKartDK093Wheel3 + type: texture + offset: 0x28074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_093_tlut_wheel_3 +donkeykong_kart_frame094_wheel0: + symbol: gKartDK094Wheel0 + type: texture + offset: 0x28758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_094_tlut_wheel_0 +donkeykong_kart_frame094_wheel1: + symbol: gKartDK094Wheel1 + type: texture + offset: 0x28758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_094_tlut_wheel_1 +donkeykong_kart_frame094_wheel2: + symbol: gKartDK094Wheel2 + type: texture + offset: 0x28758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_094_tlut_wheel_2 +donkeykong_kart_frame094_wheel3: + symbol: gKartDK094Wheel3 + type: texture + offset: 0x28758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_094_tlut_wheel_3 +donkeykong_kart_frame095_wheel0: + symbol: gKartDK095Wheel0 + type: texture + offset: 0x28E30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_095_tlut_wheel_0 +donkeykong_kart_frame095_wheel1: + symbol: gKartDK095Wheel1 + type: texture + offset: 0x28E30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_095_tlut_wheel_1 +donkeykong_kart_frame095_wheel2: + symbol: gKartDK095Wheel2 + type: texture + offset: 0x28E30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_095_tlut_wheel_2 +donkeykong_kart_frame095_wheel3: + symbol: gKartDK095Wheel3 + type: texture + offset: 0x28E30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_095_tlut_wheel_3 +donkeykong_kart_frame096_wheel0: + symbol: gKartDK096Wheel0 + type: texture + offset: 0x29514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_096_tlut_wheel_0 +donkeykong_kart_frame096_wheel1: + symbol: gKartDK096Wheel1 + type: texture + offset: 0x29514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_096_tlut_wheel_1 +donkeykong_kart_frame096_wheel2: + symbol: gKartDK096Wheel2 + type: texture + offset: 0x29514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_096_tlut_wheel_2 +donkeykong_kart_frame096_wheel3: + symbol: gKartDK096Wheel3 + type: texture + offset: 0x29514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_096_tlut_wheel_3 +donkeykong_kart_frame097_wheel0: + symbol: gKartDK097Wheel0 + type: texture + offset: 0x29BF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_097_tlut_wheel_0 +donkeykong_kart_frame097_wheel1: + symbol: gKartDK097Wheel1 + type: texture + offset: 0x29BF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_097_tlut_wheel_1 +donkeykong_kart_frame097_wheel2: + symbol: gKartDK097Wheel2 + type: texture + offset: 0x29BF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_097_tlut_wheel_2 +donkeykong_kart_frame097_wheel3: + symbol: gKartDK097Wheel3 + type: texture + offset: 0x29BF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_097_tlut_wheel_3 +donkeykong_kart_frame098_wheel0: + symbol: gKartDK098Wheel0 + type: texture + offset: 0x2A2EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_098_tlut_wheel_0 +donkeykong_kart_frame098_wheel1: + symbol: gKartDK098Wheel1 + type: texture + offset: 0x2A2EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_098_tlut_wheel_1 +donkeykong_kart_frame098_wheel2: + symbol: gKartDK098Wheel2 + type: texture + offset: 0x2A2EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_098_tlut_wheel_2 +donkeykong_kart_frame098_wheel3: + symbol: gKartDK098Wheel3 + type: texture + offset: 0x2A2EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_098_tlut_wheel_3 +donkeykong_kart_frame099_wheel0: + symbol: gKartDK099Wheel0 + type: texture + offset: 0x2A9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_099_tlut_wheel_0 +donkeykong_kart_frame099_wheel1: + symbol: gKartDK099Wheel1 + type: texture + offset: 0x2A9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_099_tlut_wheel_1 +donkeykong_kart_frame099_wheel2: + symbol: gKartDK099Wheel2 + type: texture + offset: 0x2A9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_099_tlut_wheel_2 +donkeykong_kart_frame099_wheel3: + symbol: gKartDK099Wheel3 + type: texture + offset: 0x2A9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_099_tlut_wheel_3 +donkeykong_kart_frame100_wheel0: + symbol: gKartDK100Wheel0 + type: texture + offset: 0x2B0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_100_tlut_wheel_0 +donkeykong_kart_frame100_wheel1: + symbol: gKartDK100Wheel1 + type: texture + offset: 0x2B0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_100_tlut_wheel_1 +donkeykong_kart_frame100_wheel2: + symbol: gKartDK100Wheel2 + type: texture + offset: 0x2B0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_100_tlut_wheel_2 +donkeykong_kart_frame100_wheel3: + symbol: gKartDK100Wheel3 + type: texture + offset: 0x2B0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_100_tlut_wheel_3 +donkeykong_kart_frame101_wheel0: + symbol: gKartDK101Wheel0 + type: texture + offset: 0x2B82C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_101_tlut_wheel_0 +donkeykong_kart_frame101_wheel1: + symbol: gKartDK101Wheel1 + type: texture + offset: 0x2B82C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_101_tlut_wheel_1 +donkeykong_kart_frame101_wheel2: + symbol: gKartDK101Wheel2 + type: texture + offset: 0x2B82C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_101_tlut_wheel_2 +donkeykong_kart_frame101_wheel3: + symbol: gKartDK101Wheel3 + type: texture + offset: 0x2B82C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_101_tlut_wheel_3 +donkeykong_kart_frame102_wheel0: + symbol: gKartDK102Wheel0 + type: texture + offset: 0x2BF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_102_tlut_wheel_0 +donkeykong_kart_frame102_wheel1: + symbol: gKartDK102Wheel1 + type: texture + offset: 0x2BF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_102_tlut_wheel_1 +donkeykong_kart_frame102_wheel2: + symbol: gKartDK102Wheel2 + type: texture + offset: 0x2BF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_102_tlut_wheel_2 +donkeykong_kart_frame102_wheel3: + symbol: gKartDK102Wheel3 + type: texture + offset: 0x2BF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_102_tlut_wheel_3 +donkeykong_kart_frame103_wheel0: + symbol: gKartDK103Wheel0 + type: texture + offset: 0x2C6AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_103_tlut_wheel_0 +donkeykong_kart_frame103_wheel1: + symbol: gKartDK103Wheel1 + type: texture + offset: 0x2C6AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_103_tlut_wheel_1 +donkeykong_kart_frame103_wheel2: + symbol: gKartDK103Wheel2 + type: texture + offset: 0x2C6AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_103_tlut_wheel_2 +donkeykong_kart_frame103_wheel3: + symbol: gKartDK103Wheel3 + type: texture + offset: 0x2C6AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_103_tlut_wheel_3 +donkeykong_kart_frame104_wheel0: + symbol: gKartDK104Wheel0 + type: texture + offset: 0x2CDE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_104_tlut_wheel_0 +donkeykong_kart_frame104_wheel1: + symbol: gKartDK104Wheel1 + type: texture + offset: 0x2CDE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_104_tlut_wheel_1 +donkeykong_kart_frame104_wheel2: + symbol: gKartDK104Wheel2 + type: texture + offset: 0x2CDE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_104_tlut_wheel_2 +donkeykong_kart_frame104_wheel3: + symbol: gKartDK104Wheel3 + type: texture + offset: 0x2CDE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_104_tlut_wheel_3 +donkeykong_kart_frame105_wheel0: + symbol: gKartDK105Wheel0 + type: texture + offset: 0x2D534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_105_tlut_wheel_0 +donkeykong_kart_frame105_wheel1: + symbol: gKartDK105Wheel1 + type: texture + offset: 0x2D534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_105_tlut_wheel_1 +donkeykong_kart_frame105_wheel2: + symbol: gKartDK105Wheel2 + type: texture + offset: 0x2D534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_105_tlut_wheel_2 +donkeykong_kart_frame105_wheel3: + symbol: gKartDK105Wheel3 + type: texture + offset: 0x2D534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_105_tlut_wheel_3 +donkeykong_kart_frame106_wheel0: + symbol: gKartDK106Wheel0 + type: texture + offset: 0x2DC40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_106_tlut_wheel_0 +donkeykong_kart_frame106_wheel1: + symbol: gKartDK106Wheel1 + type: texture + offset: 0x2DC40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_106_tlut_wheel_1 +donkeykong_kart_frame106_wheel2: + symbol: gKartDK106Wheel2 + type: texture + offset: 0x2DC40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_106_tlut_wheel_2 +donkeykong_kart_frame106_wheel3: + symbol: gKartDK106Wheel3 + type: texture + offset: 0x2DC40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_106_tlut_wheel_3 +donkeykong_kart_frame107_wheel0: + symbol: gKartDK107Wheel0 + type: texture + offset: 0x2E35C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_107_tlut_wheel_0 +donkeykong_kart_frame107_wheel1: + symbol: gKartDK107Wheel1 + type: texture + offset: 0x2E35C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_107_tlut_wheel_1 +donkeykong_kart_frame107_wheel2: + symbol: gKartDK107Wheel2 + type: texture + offset: 0x2E35C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_107_tlut_wheel_2 +donkeykong_kart_frame107_wheel3: + symbol: gKartDK107Wheel3 + type: texture + offset: 0x2E35C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_107_tlut_wheel_3 +donkeykong_kart_frame108_wheel0: + symbol: gKartDK108Wheel0 + type: texture + offset: 0x2EA7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_108_tlut_wheel_0 +donkeykong_kart_frame108_wheel1: + symbol: gKartDK108Wheel1 + type: texture + offset: 0x2EA7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_108_tlut_wheel_1 +donkeykong_kart_frame108_wheel2: + symbol: gKartDK108Wheel2 + type: texture + offset: 0x2EA7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_108_tlut_wheel_2 +donkeykong_kart_frame108_wheel3: + symbol: gKartDK108Wheel3 + type: texture + offset: 0x2EA7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_108_tlut_wheel_3 +donkeykong_kart_frame109_wheel0: + symbol: gKartDK109Wheel0 + type: texture + offset: 0x2F1A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_109_tlut_wheel_0 +donkeykong_kart_frame109_wheel1: + symbol: gKartDK109Wheel1 + type: texture + offset: 0x2F1A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_109_tlut_wheel_1 +donkeykong_kart_frame109_wheel2: + symbol: gKartDK109Wheel2 + type: texture + offset: 0x2F1A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_109_tlut_wheel_2 +donkeykong_kart_frame109_wheel3: + symbol: gKartDK109Wheel3 + type: texture + offset: 0x2F1A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_109_tlut_wheel_3 +donkeykong_kart_frame110_wheel0: + symbol: gKartDK110Wheel0 + type: texture + offset: 0x2F8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_110_tlut_wheel_0 +donkeykong_kart_frame110_wheel1: + symbol: gKartDK110Wheel1 + type: texture + offset: 0x2F8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_110_tlut_wheel_1 +donkeykong_kart_frame110_wheel2: + symbol: gKartDK110Wheel2 + type: texture + offset: 0x2F8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_110_tlut_wheel_2 +donkeykong_kart_frame110_wheel3: + symbol: gKartDK110Wheel3 + type: texture + offset: 0x2F8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_110_tlut_wheel_3 +donkeykong_kart_frame111_wheel0: + symbol: gKartDK111Wheel0 + type: texture + offset: 0x2FFD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_111_tlut_wheel_0 +donkeykong_kart_frame111_wheel1: + symbol: gKartDK111Wheel1 + type: texture + offset: 0x2FFD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_111_tlut_wheel_1 +donkeykong_kart_frame111_wheel2: + symbol: gKartDK111Wheel2 + type: texture + offset: 0x2FFD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_111_tlut_wheel_2 +donkeykong_kart_frame111_wheel3: + symbol: gKartDK111Wheel3 + type: texture + offset: 0x2FFD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_111_tlut_wheel_3 +donkeykong_kart_frame112_wheel0: + symbol: gKartDK112Wheel0 + type: texture + offset: 0x306D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_112_tlut_wheel_0 +donkeykong_kart_frame112_wheel1: + symbol: gKartDK112Wheel1 + type: texture + offset: 0x306D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_112_tlut_wheel_1 +donkeykong_kart_frame112_wheel2: + symbol: gKartDK112Wheel2 + type: texture + offset: 0x306D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_112_tlut_wheel_2 +donkeykong_kart_frame112_wheel3: + symbol: gKartDK112Wheel3 + type: texture + offset: 0x306D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_112_tlut_wheel_3 +donkeykong_kart_frame113_wheel0: + symbol: gKartDK113Wheel0 + type: texture + offset: 0x30DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_113_tlut_wheel_0 +donkeykong_kart_frame113_wheel1: + symbol: gKartDK113Wheel1 + type: texture + offset: 0x30DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_113_tlut_wheel_1 +donkeykong_kart_frame113_wheel2: + symbol: gKartDK113Wheel2 + type: texture + offset: 0x30DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_113_tlut_wheel_2 +donkeykong_kart_frame113_wheel3: + symbol: gKartDK113Wheel3 + type: texture + offset: 0x30DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_113_tlut_wheel_3 +donkeykong_kart_frame114_wheel0: + symbol: gKartDK114Wheel0 + type: texture + offset: 0x314C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_114_tlut_wheel_0 +donkeykong_kart_frame114_wheel1: + symbol: gKartDK114Wheel1 + type: texture + offset: 0x314C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_114_tlut_wheel_1 +donkeykong_kart_frame114_wheel2: + symbol: gKartDK114Wheel2 + type: texture + offset: 0x314C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_114_tlut_wheel_2 +donkeykong_kart_frame114_wheel3: + symbol: gKartDK114Wheel3 + type: texture + offset: 0x314C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_114_tlut_wheel_3 +donkeykong_kart_frame115_wheel0: + symbol: gKartDK115Wheel0 + type: texture + offset: 0x31BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_115_tlut_wheel_0 +donkeykong_kart_frame115_wheel1: + symbol: gKartDK115Wheel1 + type: texture + offset: 0x31BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_115_tlut_wheel_1 +donkeykong_kart_frame115_wheel2: + symbol: gKartDK115Wheel2 + type: texture + offset: 0x31BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_115_tlut_wheel_2 +donkeykong_kart_frame115_wheel3: + symbol: gKartDK115Wheel3 + type: texture + offset: 0x31BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_115_tlut_wheel_3 +donkeykong_kart_frame116_wheel0: + symbol: gKartDK116Wheel0 + type: texture + offset: 0x3228C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_116_tlut_wheel_0 +donkeykong_kart_frame116_wheel1: + symbol: gKartDK116Wheel1 + type: texture + offset: 0x3228C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_116_tlut_wheel_1 +donkeykong_kart_frame116_wheel2: + symbol: gKartDK116Wheel2 + type: texture + offset: 0x3228C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_116_tlut_wheel_2 +donkeykong_kart_frame116_wheel3: + symbol: gKartDK116Wheel3 + type: texture + offset: 0x3228C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_116_tlut_wheel_3 +donkeykong_kart_frame117_wheel0: + symbol: gKartDK117Wheel0 + type: texture + offset: 0x3296C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_117_tlut_wheel_0 +donkeykong_kart_frame117_wheel1: + symbol: gKartDK117Wheel1 + type: texture + offset: 0x3296C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_117_tlut_wheel_1 +donkeykong_kart_frame117_wheel2: + symbol: gKartDK117Wheel2 + type: texture + offset: 0x3296C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_117_tlut_wheel_2 +donkeykong_kart_frame117_wheel3: + symbol: gKartDK117Wheel3 + type: texture + offset: 0x3296C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_117_tlut_wheel_3 +donkeykong_kart_frame118_wheel0: + symbol: gKartDK118Wheel0 + type: texture + offset: 0x3306C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_118_tlut_wheel_0 +donkeykong_kart_frame118_wheel1: + symbol: gKartDK118Wheel1 + type: texture + offset: 0x3306C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_118_tlut_wheel_1 +donkeykong_kart_frame118_wheel2: + symbol: gKartDK118Wheel2 + type: texture + offset: 0x3306C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_118_tlut_wheel_2 +donkeykong_kart_frame118_wheel3: + symbol: gKartDK118Wheel3 + type: texture + offset: 0x3306C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_118_tlut_wheel_3 +donkeykong_kart_frame119_wheel0: + symbol: gKartDK119Wheel0 + type: texture + offset: 0x33764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_119_tlut_wheel_0 +donkeykong_kart_frame119_wheel1: + symbol: gKartDK119Wheel1 + type: texture + offset: 0x33764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_119_tlut_wheel_1 +donkeykong_kart_frame119_wheel2: + symbol: gKartDK119Wheel2 + type: texture + offset: 0x33764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_119_tlut_wheel_2 +donkeykong_kart_frame119_wheel3: + symbol: gKartDK119Wheel3 + type: texture + offset: 0x33764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_119_tlut_wheel_3 +donkeykong_kart_frame120_wheel0: + symbol: gKartDK120Wheel0 + type: texture + offset: 0x33E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_120_tlut_wheel_0 +donkeykong_kart_frame120_wheel1: + symbol: gKartDK120Wheel1 + type: texture + offset: 0x33E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_120_tlut_wheel_1 +donkeykong_kart_frame120_wheel2: + symbol: gKartDK120Wheel2 + type: texture + offset: 0x33E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_120_tlut_wheel_2 +donkeykong_kart_frame120_wheel3: + symbol: gKartDK120Wheel3 + type: texture + offset: 0x33E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_120_tlut_wheel_3 +donkeykong_kart_frame121_wheel0: + symbol: gKartDK121Wheel0 + type: texture + offset: 0x34584 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_121_tlut_wheel_0 +donkeykong_kart_frame121_wheel1: + symbol: gKartDK121Wheel1 + type: texture + offset: 0x34584 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_121_tlut_wheel_1 +donkeykong_kart_frame121_wheel2: + symbol: gKartDK121Wheel2 + type: texture + offset: 0x34584 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_121_tlut_wheel_2 +donkeykong_kart_frame121_wheel3: + symbol: gKartDK121Wheel3 + type: texture + offset: 0x34584 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_121_tlut_wheel_3 +donkeykong_kart_frame122_wheel0: + symbol: gKartDK122Wheel0 + type: texture + offset: 0x34CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_122_tlut_wheel_0 +donkeykong_kart_frame122_wheel1: + symbol: gKartDK122Wheel1 + type: texture + offset: 0x34CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_122_tlut_wheel_1 +donkeykong_kart_frame122_wheel2: + symbol: gKartDK122Wheel2 + type: texture + offset: 0x34CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_122_tlut_wheel_2 +donkeykong_kart_frame122_wheel3: + symbol: gKartDK122Wheel3 + type: texture + offset: 0x34CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_122_tlut_wheel_3 +donkeykong_kart_frame123_wheel0: + symbol: gKartDK123Wheel0 + type: texture + offset: 0x353D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_123_tlut_wheel_0 +donkeykong_kart_frame123_wheel1: + symbol: gKartDK123Wheel1 + type: texture + offset: 0x353D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_123_tlut_wheel_1 +donkeykong_kart_frame123_wheel2: + symbol: gKartDK123Wheel2 + type: texture + offset: 0x353D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_123_tlut_wheel_2 +donkeykong_kart_frame123_wheel3: + symbol: gKartDK123Wheel3 + type: texture + offset: 0x353D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_123_tlut_wheel_3 +donkeykong_kart_frame124_wheel0: + symbol: gKartDK124Wheel0 + type: texture + offset: 0x35B08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_124_tlut_wheel_0 +donkeykong_kart_frame124_wheel1: + symbol: gKartDK124Wheel1 + type: texture + offset: 0x35B08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_124_tlut_wheel_1 +donkeykong_kart_frame124_wheel2: + symbol: gKartDK124Wheel2 + type: texture + offset: 0x35B08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_124_tlut_wheel_2 +donkeykong_kart_frame124_wheel3: + symbol: gKartDK124Wheel3 + type: texture + offset: 0x35B08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_124_tlut_wheel_3 +donkeykong_kart_frame125_wheel0: + symbol: gKartDK125Wheel0 + type: texture + offset: 0x36240 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_125_tlut_wheel_0 +donkeykong_kart_frame125_wheel1: + symbol: gKartDK125Wheel1 + type: texture + offset: 0x36240 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_125_tlut_wheel_1 +donkeykong_kart_frame125_wheel2: + symbol: gKartDK125Wheel2 + type: texture + offset: 0x36240 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_125_tlut_wheel_2 +donkeykong_kart_frame125_wheel3: + symbol: gKartDK125Wheel3 + type: texture + offset: 0x36240 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_125_tlut_wheel_3 +donkeykong_kart_frame126_wheel0: + symbol: gKartDK126Wheel0 + type: texture + offset: 0x36998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_126_tlut_wheel_0 +donkeykong_kart_frame126_wheel1: + symbol: gKartDK126Wheel1 + type: texture + offset: 0x36998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_126_tlut_wheel_1 +donkeykong_kart_frame126_wheel2: + symbol: gKartDK126Wheel2 + type: texture + offset: 0x36998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_126_tlut_wheel_2 +donkeykong_kart_frame126_wheel3: + symbol: gKartDK126Wheel3 + type: texture + offset: 0x36998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_126_tlut_wheel_3 +donkeykong_kart_frame127_wheel0: + symbol: gKartDK127Wheel0 + type: texture + offset: 0x370CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_127_tlut_wheel_0 +donkeykong_kart_frame127_wheel1: + symbol: gKartDK127Wheel1 + type: texture + offset: 0x370CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_127_tlut_wheel_1 +donkeykong_kart_frame127_wheel2: + symbol: gKartDK127Wheel2 + type: texture + offset: 0x370CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_127_tlut_wheel_2 +donkeykong_kart_frame127_wheel3: + symbol: gKartDK127Wheel3 + type: texture + offset: 0x370CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_127_tlut_wheel_3 +donkeykong_kart_frame128_wheel0: + symbol: gKartDK128Wheel0 + type: texture + offset: 0x377F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_128_tlut_wheel_0 +donkeykong_kart_frame128_wheel1: + symbol: gKartDK128Wheel1 + type: texture + offset: 0x377F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_128_tlut_wheel_1 +donkeykong_kart_frame128_wheel2: + symbol: gKartDK128Wheel2 + type: texture + offset: 0x377F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_128_tlut_wheel_2 +donkeykong_kart_frame128_wheel3: + symbol: gKartDK128Wheel3 + type: texture + offset: 0x377F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_128_tlut_wheel_3 +donkeykong_kart_frame129_wheel0: + symbol: gKartDK129Wheel0 + type: texture + offset: 0x37F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_129_tlut_wheel_0 +donkeykong_kart_frame129_wheel1: + symbol: gKartDK129Wheel1 + type: texture + offset: 0x37F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_129_tlut_wheel_1 +donkeykong_kart_frame129_wheel2: + symbol: gKartDK129Wheel2 + type: texture + offset: 0x37F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_129_tlut_wheel_2 +donkeykong_kart_frame129_wheel3: + symbol: gKartDK129Wheel3 + type: texture + offset: 0x37F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_129_tlut_wheel_3 +donkeykong_kart_frame130_wheel0: + symbol: gKartDK130Wheel0 + type: texture + offset: 0x38658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_130_tlut_wheel_0 +donkeykong_kart_frame130_wheel1: + symbol: gKartDK130Wheel1 + type: texture + offset: 0x38658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_130_tlut_wheel_1 +donkeykong_kart_frame130_wheel2: + symbol: gKartDK130Wheel2 + type: texture + offset: 0x38658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_130_tlut_wheel_2 +donkeykong_kart_frame130_wheel3: + symbol: gKartDK130Wheel3 + type: texture + offset: 0x38658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_130_tlut_wheel_3 +donkeykong_kart_frame131_wheel0: + symbol: gKartDK131Wheel0 + type: texture + offset: 0x38D68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_131_tlut_wheel_0 +donkeykong_kart_frame131_wheel1: + symbol: gKartDK131Wheel1 + type: texture + offset: 0x38D68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_131_tlut_wheel_1 +donkeykong_kart_frame131_wheel2: + symbol: gKartDK131Wheel2 + type: texture + offset: 0x38D68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_131_tlut_wheel_2 +donkeykong_kart_frame131_wheel3: + symbol: gKartDK131Wheel3 + type: texture + offset: 0x38D68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_131_tlut_wheel_3 +donkeykong_kart_frame132_wheel0: + symbol: gKartDK132Wheel0 + type: texture + offset: 0x3946C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_132_tlut_wheel_0 +donkeykong_kart_frame132_wheel1: + symbol: gKartDK132Wheel1 + type: texture + offset: 0x3946C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_132_tlut_wheel_1 +donkeykong_kart_frame132_wheel2: + symbol: gKartDK132Wheel2 + type: texture + offset: 0x3946C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_132_tlut_wheel_2 +donkeykong_kart_frame132_wheel3: + symbol: gKartDK132Wheel3 + type: texture + offset: 0x3946C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_132_tlut_wheel_3 +donkeykong_kart_frame133_wheel0: + symbol: gKartDK133Wheel0 + type: texture + offset: 0x39B7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_133_tlut_wheel_0 +donkeykong_kart_frame133_wheel1: + symbol: gKartDK133Wheel1 + type: texture + offset: 0x39B7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_133_tlut_wheel_1 +donkeykong_kart_frame133_wheel2: + symbol: gKartDK133Wheel2 + type: texture + offset: 0x39B7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_133_tlut_wheel_2 +donkeykong_kart_frame133_wheel3: + symbol: gKartDK133Wheel3 + type: texture + offset: 0x39B7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_133_tlut_wheel_3 +donkeykong_kart_frame134_wheel0: + symbol: gKartDK134Wheel0 + type: texture + offset: 0x3A27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_134_tlut_wheel_0 +donkeykong_kart_frame134_wheel1: + symbol: gKartDK134Wheel1 + type: texture + offset: 0x3A27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_134_tlut_wheel_1 +donkeykong_kart_frame134_wheel2: + symbol: gKartDK134Wheel2 + type: texture + offset: 0x3A27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_134_tlut_wheel_2 +donkeykong_kart_frame134_wheel3: + symbol: gKartDK134Wheel3 + type: texture + offset: 0x3A27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_134_tlut_wheel_3 +donkeykong_kart_frame135_wheel0: + symbol: gKartDK135Wheel0 + type: texture + offset: 0x3A97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_135_tlut_wheel_0 +donkeykong_kart_frame135_wheel1: + symbol: gKartDK135Wheel1 + type: texture + offset: 0x3A97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_135_tlut_wheel_1 +donkeykong_kart_frame135_wheel2: + symbol: gKartDK135Wheel2 + type: texture + offset: 0x3A97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_135_tlut_wheel_2 +donkeykong_kart_frame135_wheel3: + symbol: gKartDK135Wheel3 + type: texture + offset: 0x3A97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_135_tlut_wheel_3 +donkeykong_kart_frame136_wheel0: + symbol: gKartDK136Wheel0 + type: texture + offset: 0x3B074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_136_tlut_wheel_0 +donkeykong_kart_frame136_wheel1: + symbol: gKartDK136Wheel1 + type: texture + offset: 0x3B074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_136_tlut_wheel_1 +donkeykong_kart_frame136_wheel2: + symbol: gKartDK136Wheel2 + type: texture + offset: 0x3B074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_136_tlut_wheel_2 +donkeykong_kart_frame136_wheel3: + symbol: gKartDK136Wheel3 + type: texture + offset: 0x3B074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_136_tlut_wheel_3 +donkeykong_kart_frame137_wheel0: + symbol: gKartDK137Wheel0 + type: texture + offset: 0x3B758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_137_tlut_wheel_0 +donkeykong_kart_frame137_wheel1: + symbol: gKartDK137Wheel1 + type: texture + offset: 0x3B758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_137_tlut_wheel_1 +donkeykong_kart_frame137_wheel2: + symbol: gKartDK137Wheel2 + type: texture + offset: 0x3B758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_137_tlut_wheel_2 +donkeykong_kart_frame137_wheel3: + symbol: gKartDK137Wheel3 + type: texture + offset: 0x3B758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_137_tlut_wheel_3 +donkeykong_kart_frame138_wheel0: + symbol: gKartDK138Wheel0 + type: texture + offset: 0x3BE38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_138_tlut_wheel_0 +donkeykong_kart_frame138_wheel1: + symbol: gKartDK138Wheel1 + type: texture + offset: 0x3BE38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_138_tlut_wheel_1 +donkeykong_kart_frame138_wheel2: + symbol: gKartDK138Wheel2 + type: texture + offset: 0x3BE38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_138_tlut_wheel_2 +donkeykong_kart_frame138_wheel3: + symbol: gKartDK138Wheel3 + type: texture + offset: 0x3BE38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_138_tlut_wheel_3 +donkeykong_kart_frame139_wheel0: + symbol: gKartDK139Wheel0 + type: texture + offset: 0x3C524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_139_tlut_wheel_0 +donkeykong_kart_frame139_wheel1: + symbol: gKartDK139Wheel1 + type: texture + offset: 0x3C524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_139_tlut_wheel_1 +donkeykong_kart_frame139_wheel2: + symbol: gKartDK139Wheel2 + type: texture + offset: 0x3C524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_139_tlut_wheel_2 +donkeykong_kart_frame139_wheel3: + symbol: gKartDK139Wheel3 + type: texture + offset: 0x3C524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_139_tlut_wheel_3 +donkeykong_kart_frame140_wheel0: + symbol: gKartDK140Wheel0 + type: texture + offset: 0x3CC14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_140_tlut_wheel_0 +donkeykong_kart_frame140_wheel1: + symbol: gKartDK140Wheel1 + type: texture + offset: 0x3CC14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_140_tlut_wheel_1 +donkeykong_kart_frame140_wheel2: + symbol: gKartDK140Wheel2 + type: texture + offset: 0x3CC14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_140_tlut_wheel_2 +donkeykong_kart_frame140_wheel3: + symbol: gKartDK140Wheel3 + type: texture + offset: 0x3CC14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_140_tlut_wheel_3 +donkeykong_kart_frame141_wheel0: + symbol: gKartDK141Wheel0 + type: texture + offset: 0x3D318 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_141_tlut_wheel_0 +donkeykong_kart_frame141_wheel1: + symbol: gKartDK141Wheel1 + type: texture + offset: 0x3D318 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_141_tlut_wheel_1 +donkeykong_kart_frame141_wheel2: + symbol: gKartDK141Wheel2 + type: texture + offset: 0x3D318 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_141_tlut_wheel_2 +donkeykong_kart_frame141_wheel3: + symbol: gKartDK141Wheel3 + type: texture + offset: 0x3D318 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_141_tlut_wheel_3 +donkeykong_kart_frame142_wheel0: + symbol: gKartDK142Wheel0 + type: texture + offset: 0x3DA3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_142_tlut_wheel_0 +donkeykong_kart_frame142_wheel1: + symbol: gKartDK142Wheel1 + type: texture + offset: 0x3DA3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_142_tlut_wheel_1 +donkeykong_kart_frame142_wheel2: + symbol: gKartDK142Wheel2 + type: texture + offset: 0x3DA3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_142_tlut_wheel_2 +donkeykong_kart_frame142_wheel3: + symbol: gKartDK142Wheel3 + type: texture + offset: 0x3DA3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_142_tlut_wheel_3 +donkeykong_kart_frame143_wheel0: + symbol: gKartDK143Wheel0 + type: texture + offset: 0x3E174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_143_tlut_wheel_0 +donkeykong_kart_frame143_wheel1: + symbol: gKartDK143Wheel1 + type: texture + offset: 0x3E174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_143_tlut_wheel_1 +donkeykong_kart_frame143_wheel2: + symbol: gKartDK143Wheel2 + type: texture + offset: 0x3E174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_143_tlut_wheel_2 +donkeykong_kart_frame143_wheel3: + symbol: gKartDK143Wheel3 + type: texture + offset: 0x3E174 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_143_tlut_wheel_3 +donkeykong_kart_frame144_wheel0: + symbol: gKartDK144Wheel0 + type: texture + offset: 0x3E8A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_144_tlut_wheel_0 +donkeykong_kart_frame144_wheel1: + symbol: gKartDK144Wheel1 + type: texture + offset: 0x3E8A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_144_tlut_wheel_1 +donkeykong_kart_frame144_wheel2: + symbol: gKartDK144Wheel2 + type: texture + offset: 0x3E8A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_144_tlut_wheel_2 +donkeykong_kart_frame144_wheel3: + symbol: gKartDK144Wheel3 + type: texture + offset: 0x3E8A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_144_tlut_wheel_3 +donkeykong_kart_frame145_wheel0: + symbol: gKartDK145Wheel0 + type: texture + offset: 0x3EFE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_145_tlut_wheel_0 +donkeykong_kart_frame145_wheel1: + symbol: gKartDK145Wheel1 + type: texture + offset: 0x3EFE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_145_tlut_wheel_1 +donkeykong_kart_frame145_wheel2: + symbol: gKartDK145Wheel2 + type: texture + offset: 0x3EFE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_145_tlut_wheel_2 +donkeykong_kart_frame145_wheel3: + symbol: gKartDK145Wheel3 + type: texture + offset: 0x3EFE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_145_tlut_wheel_3 +donkeykong_kart_frame146_wheel0: + symbol: gKartDK146Wheel0 + type: texture + offset: 0x3F728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_146_tlut_wheel_0 +donkeykong_kart_frame146_wheel1: + symbol: gKartDK146Wheel1 + type: texture + offset: 0x3F728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_146_tlut_wheel_1 +donkeykong_kart_frame146_wheel2: + symbol: gKartDK146Wheel2 + type: texture + offset: 0x3F728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_146_tlut_wheel_2 +donkeykong_kart_frame146_wheel3: + symbol: gKartDK146Wheel3 + type: texture + offset: 0x3F728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_146_tlut_wheel_3 +donkeykong_kart_frame147_wheel0: + symbol: gKartDK147Wheel0 + type: texture + offset: 0x3FE80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_147_tlut_wheel_0 +donkeykong_kart_frame147_wheel1: + symbol: gKartDK147Wheel1 + type: texture + offset: 0x3FE80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_147_tlut_wheel_1 +donkeykong_kart_frame147_wheel2: + symbol: gKartDK147Wheel2 + type: texture + offset: 0x3FE80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_147_tlut_wheel_2 +donkeykong_kart_frame147_wheel3: + symbol: gKartDK147Wheel3 + type: texture + offset: 0x3FE80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_147_tlut_wheel_3 +donkeykong_kart_frame148_wheel0: + symbol: gKartDK148Wheel0 + type: texture + offset: 0x405CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_148_tlut_wheel_0 +donkeykong_kart_frame148_wheel1: + symbol: gKartDK148Wheel1 + type: texture + offset: 0x405CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_148_tlut_wheel_1 +donkeykong_kart_frame148_wheel2: + symbol: gKartDK148Wheel2 + type: texture + offset: 0x405CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_148_tlut_wheel_2 +donkeykong_kart_frame148_wheel3: + symbol: gKartDK148Wheel3 + type: texture + offset: 0x405CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_148_tlut_wheel_3 +donkeykong_kart_frame149_wheel0: + symbol: gKartDK149Wheel0 + type: texture + offset: 0x40D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_149_tlut_wheel_0 +donkeykong_kart_frame149_wheel1: + symbol: gKartDK149Wheel1 + type: texture + offset: 0x40D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_149_tlut_wheel_1 +donkeykong_kart_frame149_wheel2: + symbol: gKartDK149Wheel2 + type: texture + offset: 0x40D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_149_tlut_wheel_2 +donkeykong_kart_frame149_wheel3: + symbol: gKartDK149Wheel3 + type: texture + offset: 0x40D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_149_tlut_wheel_3 +donkeykong_kart_frame150_wheel0: + symbol: gKartDK150Wheel0 + type: texture + offset: 0x41440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_150_tlut_wheel_0 +donkeykong_kart_frame150_wheel1: + symbol: gKartDK150Wheel1 + type: texture + offset: 0x41440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_150_tlut_wheel_1 +donkeykong_kart_frame150_wheel2: + symbol: gKartDK150Wheel2 + type: texture + offset: 0x41440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_150_tlut_wheel_2 +donkeykong_kart_frame150_wheel3: + symbol: gKartDK150Wheel3 + type: texture + offset: 0x41440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_150_tlut_wheel_3 +donkeykong_kart_frame151_wheel0: + symbol: gKartDK151Wheel0 + type: texture + offset: 0x41B5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_151_tlut_wheel_0 +donkeykong_kart_frame151_wheel1: + symbol: gKartDK151Wheel1 + type: texture + offset: 0x41B5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_151_tlut_wheel_1 +donkeykong_kart_frame151_wheel2: + symbol: gKartDK151Wheel2 + type: texture + offset: 0x41B5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_151_tlut_wheel_2 +donkeykong_kart_frame151_wheel3: + symbol: gKartDK151Wheel3 + type: texture + offset: 0x41B5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_151_tlut_wheel_3 +donkeykong_kart_frame152_wheel0: + symbol: gKartDK152Wheel0 + type: texture + offset: 0x4227C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_152_tlut_wheel_0 +donkeykong_kart_frame152_wheel1: + symbol: gKartDK152Wheel1 + type: texture + offset: 0x4227C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_152_tlut_wheel_1 +donkeykong_kart_frame152_wheel2: + symbol: gKartDK152Wheel2 + type: texture + offset: 0x4227C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_152_tlut_wheel_2 +donkeykong_kart_frame152_wheel3: + symbol: gKartDK152Wheel3 + type: texture + offset: 0x4227C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_152_tlut_wheel_3 +donkeykong_kart_frame153_wheel0: + symbol: gKartDK153Wheel0 + type: texture + offset: 0x429A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_153_tlut_wheel_0 +donkeykong_kart_frame153_wheel1: + symbol: gKartDK153Wheel1 + type: texture + offset: 0x429A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_153_tlut_wheel_1 +donkeykong_kart_frame153_wheel2: + symbol: gKartDK153Wheel2 + type: texture + offset: 0x429A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_153_tlut_wheel_2 +donkeykong_kart_frame153_wheel3: + symbol: gKartDK153Wheel3 + type: texture + offset: 0x429A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_153_tlut_wheel_3 +donkeykong_kart_frame154_wheel0: + symbol: gKartDK154Wheel0 + type: texture + offset: 0x430D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_154_tlut_wheel_0 +donkeykong_kart_frame154_wheel1: + symbol: gKartDK154Wheel1 + type: texture + offset: 0x430D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_154_tlut_wheel_1 +donkeykong_kart_frame154_wheel2: + symbol: gKartDK154Wheel2 + type: texture + offset: 0x430D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_154_tlut_wheel_2 +donkeykong_kart_frame154_wheel3: + symbol: gKartDK154Wheel3 + type: texture + offset: 0x430D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_154_tlut_wheel_3 +donkeykong_kart_frame155_wheel0: + symbol: gKartDK155Wheel0 + type: texture + offset: 0x437F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_155_tlut_wheel_0 +donkeykong_kart_frame155_wheel1: + symbol: gKartDK155Wheel1 + type: texture + offset: 0x437F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_155_tlut_wheel_1 +donkeykong_kart_frame155_wheel2: + symbol: gKartDK155Wheel2 + type: texture + offset: 0x437F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_155_tlut_wheel_2 +donkeykong_kart_frame155_wheel3: + symbol: gKartDK155Wheel3 + type: texture + offset: 0x437F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_155_tlut_wheel_3 +donkeykong_kart_frame156_wheel0: + symbol: gKartDK156Wheel0 + type: texture + offset: 0x43EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_156_tlut_wheel_0 +donkeykong_kart_frame156_wheel1: + symbol: gKartDK156Wheel1 + type: texture + offset: 0x43EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_156_tlut_wheel_1 +donkeykong_kart_frame156_wheel2: + symbol: gKartDK156Wheel2 + type: texture + offset: 0x43EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_156_tlut_wheel_2 +donkeykong_kart_frame156_wheel3: + symbol: gKartDK156Wheel3 + type: texture + offset: 0x43EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_156_tlut_wheel_3 +donkeykong_kart_frame157_wheel0: + symbol: gKartDK157Wheel0 + type: texture + offset: 0x445E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_157_tlut_wheel_0 +donkeykong_kart_frame157_wheel1: + symbol: gKartDK157Wheel1 + type: texture + offset: 0x445E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_157_tlut_wheel_1 +donkeykong_kart_frame157_wheel2: + symbol: gKartDK157Wheel2 + type: texture + offset: 0x445E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_157_tlut_wheel_2 +donkeykong_kart_frame157_wheel3: + symbol: gKartDK157Wheel3 + type: texture + offset: 0x445E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_157_tlut_wheel_3 +donkeykong_kart_frame158_wheel0: + symbol: gKartDK158Wheel0 + type: texture + offset: 0x44CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_158_tlut_wheel_0 +donkeykong_kart_frame158_wheel1: + symbol: gKartDK158Wheel1 + type: texture + offset: 0x44CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_158_tlut_wheel_1 +donkeykong_kart_frame158_wheel2: + symbol: gKartDK158Wheel2 + type: texture + offset: 0x44CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_158_tlut_wheel_2 +donkeykong_kart_frame158_wheel3: + symbol: gKartDK158Wheel3 + type: texture + offset: 0x44CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_158_tlut_wheel_3 +donkeykong_kart_frame159_wheel0: + symbol: gKartDK159Wheel0 + type: texture + offset: 0x453D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_159_tlut_wheel_0 +donkeykong_kart_frame159_wheel1: + symbol: gKartDK159Wheel1 + type: texture + offset: 0x453D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_159_tlut_wheel_1 +donkeykong_kart_frame159_wheel2: + symbol: gKartDK159Wheel2 + type: texture + offset: 0x453D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_159_tlut_wheel_2 +donkeykong_kart_frame159_wheel3: + symbol: gKartDK159Wheel3 + type: texture + offset: 0x453D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_159_tlut_wheel_3 +donkeykong_kart_frame160_wheel0: + symbol: gKartDK160Wheel0 + type: texture + offset: 0x45AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_160_tlut_wheel_0 +donkeykong_kart_frame160_wheel1: + symbol: gKartDK160Wheel1 + type: texture + offset: 0x45AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_160_tlut_wheel_1 +donkeykong_kart_frame160_wheel2: + symbol: gKartDK160Wheel2 + type: texture + offset: 0x45AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_160_tlut_wheel_2 +donkeykong_kart_frame160_wheel3: + symbol: gKartDK160Wheel3 + type: texture + offset: 0x45AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_160_tlut_wheel_3 +donkeykong_kart_frame161_wheel0: + symbol: gKartDK161Wheel0 + type: texture + offset: 0x461D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_161_tlut_wheel_0 +donkeykong_kart_frame161_wheel1: + symbol: gKartDK161Wheel1 + type: texture + offset: 0x461D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_161_tlut_wheel_1 +donkeykong_kart_frame161_wheel2: + symbol: gKartDK161Wheel2 + type: texture + offset: 0x461D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_161_tlut_wheel_2 +donkeykong_kart_frame161_wheel3: + symbol: gKartDK161Wheel3 + type: texture + offset: 0x461D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_161_tlut_wheel_3 +donkeykong_kart_frame162_wheel0: + symbol: gKartDK162Wheel0 + type: texture + offset: 0x468F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_162_tlut_wheel_0 +donkeykong_kart_frame162_wheel1: + symbol: gKartDK162Wheel1 + type: texture + offset: 0x468F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_162_tlut_wheel_1 +donkeykong_kart_frame162_wheel2: + symbol: gKartDK162Wheel2 + type: texture + offset: 0x468F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_162_tlut_wheel_2 +donkeykong_kart_frame162_wheel3: + symbol: gKartDK162Wheel3 + type: texture + offset: 0x468F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_162_tlut_wheel_3 +donkeykong_kart_frame163_wheel0: + symbol: gKartDK163Wheel0 + type: texture + offset: 0x47024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_163_tlut_wheel_0 +donkeykong_kart_frame163_wheel1: + symbol: gKartDK163Wheel1 + type: texture + offset: 0x47024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_163_tlut_wheel_1 +donkeykong_kart_frame163_wheel2: + symbol: gKartDK163Wheel2 + type: texture + offset: 0x47024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_163_tlut_wheel_2 +donkeykong_kart_frame163_wheel3: + symbol: gKartDK163Wheel3 + type: texture + offset: 0x47024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_163_tlut_wheel_3 +donkeykong_kart_frame164_wheel0: + symbol: gKartDK164Wheel0 + type: texture + offset: 0x47754 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_164_tlut_wheel_0 +donkeykong_kart_frame164_wheel1: + symbol: gKartDK164Wheel1 + type: texture + offset: 0x47754 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_164_tlut_wheel_1 +donkeykong_kart_frame164_wheel2: + symbol: gKartDK164Wheel2 + type: texture + offset: 0x47754 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_164_tlut_wheel_2 +donkeykong_kart_frame164_wheel3: + symbol: gKartDK164Wheel3 + type: texture + offset: 0x47754 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_164_tlut_wheel_3 +donkeykong_kart_frame165_wheel0: + symbol: gKartDK165Wheel0 + type: texture + offset: 0x47E9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_165_tlut_wheel_0 +donkeykong_kart_frame165_wheel1: + symbol: gKartDK165Wheel1 + type: texture + offset: 0x47E9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_165_tlut_wheel_1 +donkeykong_kart_frame165_wheel2: + symbol: gKartDK165Wheel2 + type: texture + offset: 0x47E9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_165_tlut_wheel_2 +donkeykong_kart_frame165_wheel3: + symbol: gKartDK165Wheel3 + type: texture + offset: 0x47E9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_165_tlut_wheel_3 +donkeykong_kart_frame166_wheel0: + symbol: gKartDK166Wheel0 + type: texture + offset: 0x48600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_166_tlut_wheel_0 +donkeykong_kart_frame166_wheel1: + symbol: gKartDK166Wheel1 + type: texture + offset: 0x48600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_166_tlut_wheel_1 +donkeykong_kart_frame166_wheel2: + symbol: gKartDK166Wheel2 + type: texture + offset: 0x48600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_166_tlut_wheel_2 +donkeykong_kart_frame166_wheel3: + symbol: gKartDK166Wheel3 + type: texture + offset: 0x48600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_166_tlut_wheel_3 +donkeykong_kart_frame167_wheel0: + symbol: gKartDK167Wheel0 + type: texture + offset: 0x48D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_167_tlut_wheel_0 +donkeykong_kart_frame167_wheel1: + symbol: gKartDK167Wheel1 + type: texture + offset: 0x48D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_167_tlut_wheel_1 +donkeykong_kart_frame167_wheel2: + symbol: gKartDK167Wheel2 + type: texture + offset: 0x48D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_167_tlut_wheel_2 +donkeykong_kart_frame167_wheel3: + symbol: gKartDK167Wheel3 + type: texture + offset: 0x48D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_167_tlut_wheel_3 +donkeykong_kart_frame168_wheel0: + symbol: gKartDK168Wheel0 + type: texture + offset: 0x494B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_168_tlut_wheel_0 +donkeykong_kart_frame168_wheel1: + symbol: gKartDK168Wheel1 + type: texture + offset: 0x494B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_168_tlut_wheel_1 +donkeykong_kart_frame168_wheel2: + symbol: gKartDK168Wheel2 + type: texture + offset: 0x494B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_168_tlut_wheel_2 +donkeykong_kart_frame168_wheel3: + symbol: gKartDK168Wheel3 + type: texture + offset: 0x494B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_168_tlut_wheel_3 +donkeykong_kart_frame169_wheel0: + symbol: gKartDK169Wheel0 + type: texture + offset: 0x49BF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_169_tlut_wheel_0 +donkeykong_kart_frame169_wheel1: + symbol: gKartDK169Wheel1 + type: texture + offset: 0x49BF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_169_tlut_wheel_1 +donkeykong_kart_frame169_wheel2: + symbol: gKartDK169Wheel2 + type: texture + offset: 0x49BF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_169_tlut_wheel_2 +donkeykong_kart_frame169_wheel3: + symbol: gKartDK169Wheel3 + type: texture + offset: 0x49BF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_169_tlut_wheel_3 +donkeykong_kart_frame170_wheel0: + symbol: gKartDK170Wheel0 + type: texture + offset: 0x4A344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_170_tlut_wheel_0 +donkeykong_kart_frame170_wheel1: + symbol: gKartDK170Wheel1 + type: texture + offset: 0x4A344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_170_tlut_wheel_1 +donkeykong_kart_frame170_wheel2: + symbol: gKartDK170Wheel2 + type: texture + offset: 0x4A344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_170_tlut_wheel_2 +donkeykong_kart_frame170_wheel3: + symbol: gKartDK170Wheel3 + type: texture + offset: 0x4A344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_170_tlut_wheel_3 +donkeykong_kart_frame171_wheel0: + symbol: gKartDK171Wheel0 + type: texture + offset: 0x4AA84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_171_tlut_wheel_0 +donkeykong_kart_frame171_wheel1: + symbol: gKartDK171Wheel1 + type: texture + offset: 0x4AA84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_171_tlut_wheel_1 +donkeykong_kart_frame171_wheel2: + symbol: gKartDK171Wheel2 + type: texture + offset: 0x4AA84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_171_tlut_wheel_2 +donkeykong_kart_frame171_wheel3: + symbol: gKartDK171Wheel3 + type: texture + offset: 0x4AA84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_171_tlut_wheel_3 +donkeykong_kart_frame172_wheel0: + symbol: gKartDK172Wheel0 + type: texture + offset: 0x4B1BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_172_tlut_wheel_0 +donkeykong_kart_frame172_wheel1: + symbol: gKartDK172Wheel1 + type: texture + offset: 0x4B1BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_172_tlut_wheel_1 +donkeykong_kart_frame172_wheel2: + symbol: gKartDK172Wheel2 + type: texture + offset: 0x4B1BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_172_tlut_wheel_2 +donkeykong_kart_frame172_wheel3: + symbol: gKartDK172Wheel3 + type: texture + offset: 0x4B1BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_172_tlut_wheel_3 +donkeykong_kart_frame173_wheel0: + symbol: gKartDK173Wheel0 + type: texture + offset: 0x4B8D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_173_tlut_wheel_0 +donkeykong_kart_frame173_wheel1: + symbol: gKartDK173Wheel1 + type: texture + offset: 0x4B8D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_173_tlut_wheel_1 +donkeykong_kart_frame173_wheel2: + symbol: gKartDK173Wheel2 + type: texture + offset: 0x4B8D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_173_tlut_wheel_2 +donkeykong_kart_frame173_wheel3: + symbol: gKartDK173Wheel3 + type: texture + offset: 0x4B8D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_173_tlut_wheel_3 +donkeykong_kart_frame174_wheel0: + symbol: gKartDK174Wheel0 + type: texture + offset: 0x4BFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_174_tlut_wheel_0 +donkeykong_kart_frame174_wheel1: + symbol: gKartDK174Wheel1 + type: texture + offset: 0x4BFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_174_tlut_wheel_1 +donkeykong_kart_frame174_wheel2: + symbol: gKartDK174Wheel2 + type: texture + offset: 0x4BFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_174_tlut_wheel_2 +donkeykong_kart_frame174_wheel3: + symbol: gKartDK174Wheel3 + type: texture + offset: 0x4BFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_174_tlut_wheel_3 +donkeykong_kart_frame175_wheel0: + symbol: gKartDK175Wheel0 + type: texture + offset: 0x4C718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_175_tlut_wheel_0 +donkeykong_kart_frame175_wheel1: + symbol: gKartDK175Wheel1 + type: texture + offset: 0x4C718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_175_tlut_wheel_1 +donkeykong_kart_frame175_wheel2: + symbol: gKartDK175Wheel2 + type: texture + offset: 0x4C718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_175_tlut_wheel_2 +donkeykong_kart_frame175_wheel3: + symbol: gKartDK175Wheel3 + type: texture + offset: 0x4C718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_175_tlut_wheel_3 +donkeykong_kart_frame176_wheel0: + symbol: gKartDK176Wheel0 + type: texture + offset: 0x4CE20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_176_tlut_wheel_0 +donkeykong_kart_frame176_wheel1: + symbol: gKartDK176Wheel1 + type: texture + offset: 0x4CE20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_176_tlut_wheel_1 +donkeykong_kart_frame176_wheel2: + symbol: gKartDK176Wheel2 + type: texture + offset: 0x4CE20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_176_tlut_wheel_2 +donkeykong_kart_frame176_wheel3: + symbol: gKartDK176Wheel3 + type: texture + offset: 0x4CE20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_176_tlut_wheel_3 +donkeykong_kart_frame177_wheel0: + symbol: gKartDK177Wheel0 + type: texture + offset: 0x4D510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_177_tlut_wheel_0 +donkeykong_kart_frame177_wheel1: + symbol: gKartDK177Wheel1 + type: texture + offset: 0x4D510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_177_tlut_wheel_1 +donkeykong_kart_frame177_wheel2: + symbol: gKartDK177Wheel2 + type: texture + offset: 0x4D510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_177_tlut_wheel_2 +donkeykong_kart_frame177_wheel3: + symbol: gKartDK177Wheel3 + type: texture + offset: 0x4D510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_177_tlut_wheel_3 +donkeykong_kart_frame178_wheel0: + symbol: gKartDK178Wheel0 + type: texture + offset: 0x4DC08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_178_tlut_wheel_0 +donkeykong_kart_frame178_wheel1: + symbol: gKartDK178Wheel1 + type: texture + offset: 0x4DC08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_178_tlut_wheel_1 +donkeykong_kart_frame178_wheel2: + symbol: gKartDK178Wheel2 + type: texture + offset: 0x4DC08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_178_tlut_wheel_2 +donkeykong_kart_frame178_wheel3: + symbol: gKartDK178Wheel3 + type: texture + offset: 0x4DC08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_178_tlut_wheel_3 +donkeykong_kart_frame179_wheel0: + symbol: gKartDK179Wheel0 + type: texture + offset: 0x4E304 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_179_tlut_wheel_0 +donkeykong_kart_frame179_wheel1: + symbol: gKartDK179Wheel1 + type: texture + offset: 0x4E304 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_179_tlut_wheel_1 +donkeykong_kart_frame179_wheel2: + symbol: gKartDK179Wheel2 + type: texture + offset: 0x4E304 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_179_tlut_wheel_2 +donkeykong_kart_frame179_wheel3: + symbol: gKartDK179Wheel3 + type: texture + offset: 0x4E304 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_179_tlut_wheel_3 +donkeykong_kart_frame180_wheel0: + symbol: gKartDK180Wheel0 + type: texture + offset: 0x4E9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_180_tlut_wheel_0 +donkeykong_kart_frame180_wheel1: + symbol: gKartDK180Wheel1 + type: texture + offset: 0x4E9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_180_tlut_wheel_1 +donkeykong_kart_frame180_wheel2: + symbol: gKartDK180Wheel2 + type: texture + offset: 0x4E9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_180_tlut_wheel_2 +donkeykong_kart_frame180_wheel3: + symbol: gKartDK180Wheel3 + type: texture + offset: 0x4E9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_180_tlut_wheel_3 +donkeykong_kart_frame181_wheel0: + symbol: gKartDK181Wheel0 + type: texture + offset: 0x4F0F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_181_tlut_wheel_0 +donkeykong_kart_frame181_wheel1: + symbol: gKartDK181Wheel1 + type: texture + offset: 0x4F0F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_181_tlut_wheel_1 +donkeykong_kart_frame181_wheel2: + symbol: gKartDK181Wheel2 + type: texture + offset: 0x4F0F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_181_tlut_wheel_2 +donkeykong_kart_frame181_wheel3: + symbol: gKartDK181Wheel3 + type: texture + offset: 0x4F0F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_181_tlut_wheel_3 +donkeykong_kart_frame182_wheel0: + symbol: gKartDK182Wheel0 + type: texture + offset: 0x4F7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_182_tlut_wheel_0 +donkeykong_kart_frame182_wheel1: + symbol: gKartDK182Wheel1 + type: texture + offset: 0x4F7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_182_tlut_wheel_1 +donkeykong_kart_frame182_wheel2: + symbol: gKartDK182Wheel2 + type: texture + offset: 0x4F7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_182_tlut_wheel_2 +donkeykong_kart_frame182_wheel3: + symbol: gKartDK182Wheel3 + type: texture + offset: 0x4F7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_182_tlut_wheel_3 +donkeykong_kart_frame183_wheel0: + symbol: gKartDK183Wheel0 + type: texture + offset: 0x4FF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_183_tlut_wheel_0 +donkeykong_kart_frame183_wheel1: + symbol: gKartDK183Wheel1 + type: texture + offset: 0x4FF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_183_tlut_wheel_1 +donkeykong_kart_frame183_wheel2: + symbol: gKartDK183Wheel2 + type: texture + offset: 0x4FF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_183_tlut_wheel_2 +donkeykong_kart_frame183_wheel3: + symbol: gKartDK183Wheel3 + type: texture + offset: 0x4FF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_183_tlut_wheel_3 +donkeykong_kart_frame184_wheel0: + symbol: gKartDK184Wheel0 + type: texture + offset: 0x50634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_184_tlut_wheel_0 +donkeykong_kart_frame184_wheel1: + symbol: gKartDK184Wheel1 + type: texture + offset: 0x50634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_184_tlut_wheel_1 +donkeykong_kart_frame184_wheel2: + symbol: gKartDK184Wheel2 + type: texture + offset: 0x50634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_184_tlut_wheel_2 +donkeykong_kart_frame184_wheel3: + symbol: gKartDK184Wheel3 + type: texture + offset: 0x50634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_184_tlut_wheel_3 +donkeykong_kart_frame185_wheel0: + symbol: gKartDK185Wheel0 + type: texture + offset: 0x50D8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_185_tlut_wheel_0 +donkeykong_kart_frame185_wheel1: + symbol: gKartDK185Wheel1 + type: texture + offset: 0x50D8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_185_tlut_wheel_1 +donkeykong_kart_frame185_wheel2: + symbol: gKartDK185Wheel2 + type: texture + offset: 0x50D8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_185_tlut_wheel_2 +donkeykong_kart_frame185_wheel3: + symbol: gKartDK185Wheel3 + type: texture + offset: 0x50D8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_185_tlut_wheel_3 +donkeykong_kart_frame186_wheel0: + symbol: gKartDK186Wheel0 + type: texture + offset: 0x514E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_186_tlut_wheel_0 +donkeykong_kart_frame186_wheel1: + symbol: gKartDK186Wheel1 + type: texture + offset: 0x514E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_186_tlut_wheel_1 +donkeykong_kart_frame186_wheel2: + symbol: gKartDK186Wheel2 + type: texture + offset: 0x514E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_186_tlut_wheel_2 +donkeykong_kart_frame186_wheel3: + symbol: gKartDK186Wheel3 + type: texture + offset: 0x514E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_186_tlut_wheel_3 +donkeykong_kart_frame187_wheel0: + symbol: gKartDK187Wheel0 + type: texture + offset: 0x51C50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_187_tlut_wheel_0 +donkeykong_kart_frame187_wheel1: + symbol: gKartDK187Wheel1 + type: texture + offset: 0x51C50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_187_tlut_wheel_1 +donkeykong_kart_frame187_wheel2: + symbol: gKartDK187Wheel2 + type: texture + offset: 0x51C50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_187_tlut_wheel_2 +donkeykong_kart_frame187_wheel3: + symbol: gKartDK187Wheel3 + type: texture + offset: 0x51C50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_187_tlut_wheel_3 +donkeykong_kart_frame188_wheel0: + symbol: gKartDK188Wheel0 + type: texture + offset: 0x523D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_188_tlut_wheel_0 +donkeykong_kart_frame188_wheel1: + symbol: gKartDK188Wheel1 + type: texture + offset: 0x523D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_188_tlut_wheel_1 +donkeykong_kart_frame188_wheel2: + symbol: gKartDK188Wheel2 + type: texture + offset: 0x523D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_188_tlut_wheel_2 +donkeykong_kart_frame188_wheel3: + symbol: gKartDK188Wheel3 + type: texture + offset: 0x523D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_188_tlut_wheel_3 +donkeykong_kart_frame189_wheel0: + symbol: gKartDK189Wheel0 + type: texture + offset: 0x52B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_189_tlut_wheel_0 +donkeykong_kart_frame189_wheel1: + symbol: gKartDK189Wheel1 + type: texture + offset: 0x52B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_189_tlut_wheel_1 +donkeykong_kart_frame189_wheel2: + symbol: gKartDK189Wheel2 + type: texture + offset: 0x52B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_189_tlut_wheel_2 +donkeykong_kart_frame189_wheel3: + symbol: gKartDK189Wheel3 + type: texture + offset: 0x52B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_189_tlut_wheel_3 +donkeykong_kart_frame190_wheel0: + symbol: gKartDK190Wheel0 + type: texture + offset: 0x53218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_190_tlut_wheel_0 +donkeykong_kart_frame190_wheel1: + symbol: gKartDK190Wheel1 + type: texture + offset: 0x53218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_190_tlut_wheel_1 +donkeykong_kart_frame190_wheel2: + symbol: gKartDK190Wheel2 + type: texture + offset: 0x53218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_190_tlut_wheel_2 +donkeykong_kart_frame190_wheel3: + symbol: gKartDK190Wheel3 + type: texture + offset: 0x53218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_190_tlut_wheel_3 +donkeykong_kart_frame191_wheel0: + symbol: gKartDK191Wheel0 + type: texture + offset: 0x53908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_191_tlut_wheel_0 +donkeykong_kart_frame191_wheel1: + symbol: gKartDK191Wheel1 + type: texture + offset: 0x53908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_191_tlut_wheel_1 +donkeykong_kart_frame191_wheel2: + symbol: gKartDK191Wheel2 + type: texture + offset: 0x53908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_191_tlut_wheel_2 +donkeykong_kart_frame191_wheel3: + symbol: gKartDK191Wheel3 + type: texture + offset: 0x53908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_191_tlut_wheel_3 +donkeykong_kart_frame192_wheel0: + symbol: gKartDK192Wheel0 + type: texture + offset: 0x54008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_192_tlut_wheel_0 +donkeykong_kart_frame192_wheel1: + symbol: gKartDK192Wheel1 + type: texture + offset: 0x54008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_192_tlut_wheel_1 +donkeykong_kart_frame192_wheel2: + symbol: gKartDK192Wheel2 + type: texture + offset: 0x54008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_192_tlut_wheel_2 +donkeykong_kart_frame192_wheel3: + symbol: gKartDK192Wheel3 + type: texture + offset: 0x54008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_192_tlut_wheel_3 +donkeykong_kart_frame193_wheel0: + symbol: gKartDK193Wheel0 + type: texture + offset: 0x54730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_193_tlut_wheel_0 +donkeykong_kart_frame193_wheel1: + symbol: gKartDK193Wheel1 + type: texture + offset: 0x54730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_193_tlut_wheel_1 +donkeykong_kart_frame193_wheel2: + symbol: gKartDK193Wheel2 + type: texture + offset: 0x54730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_193_tlut_wheel_2 +donkeykong_kart_frame193_wheel3: + symbol: gKartDK193Wheel3 + type: texture + offset: 0x54730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_193_tlut_wheel_3 +donkeykong_kart_frame194_wheel0: + symbol: gKartDK194Wheel0 + type: texture + offset: 0x54E4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_194_tlut_wheel_0 +donkeykong_kart_frame194_wheel1: + symbol: gKartDK194Wheel1 + type: texture + offset: 0x54E4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_194_tlut_wheel_1 +donkeykong_kart_frame194_wheel2: + symbol: gKartDK194Wheel2 + type: texture + offset: 0x54E4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_194_tlut_wheel_2 +donkeykong_kart_frame194_wheel3: + symbol: gKartDK194Wheel3 + type: texture + offset: 0x54E4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_194_tlut_wheel_3 +donkeykong_kart_frame195_wheel0: + symbol: gKartDK195Wheel0 + type: texture + offset: 0x55568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_195_tlut_wheel_0 +donkeykong_kart_frame195_wheel1: + symbol: gKartDK195Wheel1 + type: texture + offset: 0x55568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_195_tlut_wheel_1 +donkeykong_kart_frame195_wheel2: + symbol: gKartDK195Wheel2 + type: texture + offset: 0x55568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_195_tlut_wheel_2 +donkeykong_kart_frame195_wheel3: + symbol: gKartDK195Wheel3 + type: texture + offset: 0x55568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_195_tlut_wheel_3 +donkeykong_kart_frame196_wheel0: + symbol: gKartDK196Wheel0 + type: texture + offset: 0x55C88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_196_tlut_wheel_0 +donkeykong_kart_frame196_wheel1: + symbol: gKartDK196Wheel1 + type: texture + offset: 0x55C88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_196_tlut_wheel_1 +donkeykong_kart_frame196_wheel2: + symbol: gKartDK196Wheel2 + type: texture + offset: 0x55C88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_196_tlut_wheel_2 +donkeykong_kart_frame196_wheel3: + symbol: gKartDK196Wheel3 + type: texture + offset: 0x55C88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_196_tlut_wheel_3 +donkeykong_kart_frame197_wheel0: + symbol: gKartDK197Wheel0 + type: texture + offset: 0x563C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_197_tlut_wheel_0 +donkeykong_kart_frame197_wheel1: + symbol: gKartDK197Wheel1 + type: texture + offset: 0x563C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_197_tlut_wheel_1 +donkeykong_kart_frame197_wheel2: + symbol: gKartDK197Wheel2 + type: texture + offset: 0x563C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_197_tlut_wheel_2 +donkeykong_kart_frame197_wheel3: + symbol: gKartDK197Wheel3 + type: texture + offset: 0x563C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_197_tlut_wheel_3 +donkeykong_kart_frame198_wheel0: + symbol: gKartDK198Wheel0 + type: texture + offset: 0x56AE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_198_tlut_wheel_0 +donkeykong_kart_frame198_wheel1: + symbol: gKartDK198Wheel1 + type: texture + offset: 0x56AE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_198_tlut_wheel_1 +donkeykong_kart_frame198_wheel2: + symbol: gKartDK198Wheel2 + type: texture + offset: 0x56AE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_198_tlut_wheel_2 +donkeykong_kart_frame198_wheel3: + symbol: gKartDK198Wheel3 + type: texture + offset: 0x56AE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_198_tlut_wheel_3 +donkeykong_kart_frame199_wheel0: + symbol: gKartDK199Wheel0 + type: texture + offset: 0x57220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_199_tlut_wheel_0 +donkeykong_kart_frame199_wheel1: + symbol: gKartDK199Wheel1 + type: texture + offset: 0x57220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_199_tlut_wheel_1 +donkeykong_kart_frame199_wheel2: + symbol: gKartDK199Wheel2 + type: texture + offset: 0x57220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_199_tlut_wheel_2 +donkeykong_kart_frame199_wheel3: + symbol: gKartDK199Wheel3 + type: texture + offset: 0x57220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_199_tlut_wheel_3 +donkeykong_kart_frame200_wheel0: + symbol: gKartDK200Wheel0 + type: texture + offset: 0x57984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_200_tlut_wheel_0 +donkeykong_kart_frame200_wheel1: + symbol: gKartDK200Wheel1 + type: texture + offset: 0x57984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_200_tlut_wheel_1 +donkeykong_kart_frame200_wheel2: + symbol: gKartDK200Wheel2 + type: texture + offset: 0x57984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_200_tlut_wheel_2 +donkeykong_kart_frame200_wheel3: + symbol: gKartDK200Wheel3 + type: texture + offset: 0x57984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_200_tlut_wheel_3 +donkeykong_kart_frame201_wheel0: + symbol: gKartDK201Wheel0 + type: texture + offset: 0x58120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_201_tlut_wheel_0 +donkeykong_kart_frame201_wheel1: + symbol: gKartDK201Wheel1 + type: texture + offset: 0x58120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_201_tlut_wheel_1 +donkeykong_kart_frame201_wheel2: + symbol: gKartDK201Wheel2 + type: texture + offset: 0x58120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_201_tlut_wheel_2 +donkeykong_kart_frame201_wheel3: + symbol: gKartDK201Wheel3 + type: texture + offset: 0x58120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_201_tlut_wheel_3 +donkeykong_kart_frame202_wheel0: + symbol: gKartDK202Wheel0 + type: texture + offset: 0x588D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_202_tlut_wheel_0 +donkeykong_kart_frame202_wheel1: + symbol: gKartDK202Wheel1 + type: texture + offset: 0x588D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_202_tlut_wheel_1 +donkeykong_kart_frame202_wheel2: + symbol: gKartDK202Wheel2 + type: texture + offset: 0x588D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_202_tlut_wheel_2 +donkeykong_kart_frame202_wheel3: + symbol: gKartDK202Wheel3 + type: texture + offset: 0x588D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_202_tlut_wheel_3 +donkeykong_kart_frame203_wheel0: + symbol: gKartDK203Wheel0 + type: texture + offset: 0x590A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_203_tlut_wheel_0 +donkeykong_kart_frame203_wheel1: + symbol: gKartDK203Wheel1 + type: texture + offset: 0x590A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_203_tlut_wheel_1 +donkeykong_kart_frame203_wheel2: + symbol: gKartDK203Wheel2 + type: texture + offset: 0x590A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_203_tlut_wheel_2 +donkeykong_kart_frame203_wheel3: + symbol: gKartDK203Wheel3 + type: texture + offset: 0x590A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_203_tlut_wheel_3 +donkeykong_kart_frame204_wheel0: + symbol: gKartDK204Wheel0 + type: texture + offset: 0x5986C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_204_tlut_wheel_0 +donkeykong_kart_frame204_wheel1: + symbol: gKartDK204Wheel1 + type: texture + offset: 0x5986C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_204_tlut_wheel_1 +donkeykong_kart_frame204_wheel2: + symbol: gKartDK204Wheel2 + type: texture + offset: 0x5986C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_204_tlut_wheel_2 +donkeykong_kart_frame204_wheel3: + symbol: gKartDK204Wheel3 + type: texture + offset: 0x5986C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_204_tlut_wheel_3 +donkeykong_kart_frame205_wheel0: + symbol: gKartDK205Wheel0 + type: texture + offset: 0x5A01C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_205_tlut_wheel_0 +donkeykong_kart_frame205_wheel1: + symbol: gKartDK205Wheel1 + type: texture + offset: 0x5A01C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_205_tlut_wheel_1 +donkeykong_kart_frame205_wheel2: + symbol: gKartDK205Wheel2 + type: texture + offset: 0x5A01C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_205_tlut_wheel_2 +donkeykong_kart_frame205_wheel3: + symbol: gKartDK205Wheel3 + type: texture + offset: 0x5A01C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_205_tlut_wheel_3 +donkeykong_kart_frame206_wheel0: + symbol: gKartDK206Wheel0 + type: texture + offset: 0x5A800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_206_tlut_wheel_0 +donkeykong_kart_frame206_wheel1: + symbol: gKartDK206Wheel1 + type: texture + offset: 0x5A800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_206_tlut_wheel_1 +donkeykong_kart_frame206_wheel2: + symbol: gKartDK206Wheel2 + type: texture + offset: 0x5A800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_206_tlut_wheel_2 +donkeykong_kart_frame206_wheel3: + symbol: gKartDK206Wheel3 + type: texture + offset: 0x5A800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_206_tlut_wheel_3 +donkeykong_kart_frame207_wheel0: + symbol: gKartDK207Wheel0 + type: texture + offset: 0x5AFDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_207_tlut_wheel_0 +donkeykong_kart_frame207_wheel1: + symbol: gKartDK207Wheel1 + type: texture + offset: 0x5AFDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_207_tlut_wheel_1 +donkeykong_kart_frame207_wheel2: + symbol: gKartDK207Wheel2 + type: texture + offset: 0x5AFDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_207_tlut_wheel_2 +donkeykong_kart_frame207_wheel3: + symbol: gKartDK207Wheel3 + type: texture + offset: 0x5AFDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_207_tlut_wheel_3 +donkeykong_kart_frame208_wheel0: + symbol: gKartDK208Wheel0 + type: texture + offset: 0x5B790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_208_tlut_wheel_0 +donkeykong_kart_frame208_wheel1: + symbol: gKartDK208Wheel1 + type: texture + offset: 0x5B790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_208_tlut_wheel_1 +donkeykong_kart_frame208_wheel2: + symbol: gKartDK208Wheel2 + type: texture + offset: 0x5B790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_208_tlut_wheel_2 +donkeykong_kart_frame208_wheel3: + symbol: gKartDK208Wheel3 + type: texture + offset: 0x5B790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_208_tlut_wheel_3 +donkeykong_kart_frame209_wheel0: + symbol: gKartDK209Wheel0 + type: texture + offset: 0x5BF48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_209_tlut_wheel_0 +donkeykong_kart_frame209_wheel1: + symbol: gKartDK209Wheel1 + type: texture + offset: 0x5BF48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_209_tlut_wheel_1 +donkeykong_kart_frame209_wheel2: + symbol: gKartDK209Wheel2 + type: texture + offset: 0x5BF48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_209_tlut_wheel_2 +donkeykong_kart_frame209_wheel3: + symbol: gKartDK209Wheel3 + type: texture + offset: 0x5BF48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_209_tlut_wheel_3 +donkeykong_kart_frame210_wheel0: + symbol: gKartDK210Wheel0 + type: texture + offset: 0x5C640 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_210_tlut_wheel_0 +donkeykong_kart_frame210_wheel1: + symbol: gKartDK210Wheel1 + type: texture + offset: 0x5C640 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_210_tlut_wheel_1 +donkeykong_kart_frame210_wheel2: + symbol: gKartDK210Wheel2 + type: texture + offset: 0x5C640 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_210_tlut_wheel_2 +donkeykong_kart_frame210_wheel3: + symbol: gKartDK210Wheel3 + type: texture + offset: 0x5C640 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_210_tlut_wheel_3 +donkeykong_kart_frame211_wheel0: + symbol: gKartDK211Wheel0 + type: texture + offset: 0x5CD54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_211_tlut_wheel_0 +donkeykong_kart_frame211_wheel1: + symbol: gKartDK211Wheel1 + type: texture + offset: 0x5CD54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_211_tlut_wheel_1 +donkeykong_kart_frame211_wheel2: + symbol: gKartDK211Wheel2 + type: texture + offset: 0x5CD54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_211_tlut_wheel_2 +donkeykong_kart_frame211_wheel3: + symbol: gKartDK211Wheel3 + type: texture + offset: 0x5CD54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_211_tlut_wheel_3 +donkeykong_kart_frame212_wheel0: + symbol: gKartDK212Wheel0 + type: texture + offset: 0x5D49C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_212_tlut_wheel_0 +donkeykong_kart_frame212_wheel1: + symbol: gKartDK212Wheel1 + type: texture + offset: 0x5D49C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_212_tlut_wheel_1 +donkeykong_kart_frame212_wheel2: + symbol: gKartDK212Wheel2 + type: texture + offset: 0x5D49C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_212_tlut_wheel_2 +donkeykong_kart_frame212_wheel3: + symbol: gKartDK212Wheel3 + type: texture + offset: 0x5D49C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_212_tlut_wheel_3 +donkeykong_kart_frame213_wheel0: + symbol: gKartDK213Wheel0 + type: texture + offset: 0x5DBEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_213_tlut_wheel_0 +donkeykong_kart_frame213_wheel1: + symbol: gKartDK213Wheel1 + type: texture + offset: 0x5DBEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_213_tlut_wheel_1 +donkeykong_kart_frame213_wheel2: + symbol: gKartDK213Wheel2 + type: texture + offset: 0x5DBEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_213_tlut_wheel_2 +donkeykong_kart_frame213_wheel3: + symbol: gKartDK213Wheel3 + type: texture + offset: 0x5DBEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_213_tlut_wheel_3 +donkeykong_kart_frame214_wheel0: + symbol: gKartDK214Wheel0 + type: texture + offset: 0x5E300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_214_tlut_wheel_0 +donkeykong_kart_frame214_wheel1: + symbol: gKartDK214Wheel1 + type: texture + offset: 0x5E300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_214_tlut_wheel_1 +donkeykong_kart_frame214_wheel2: + symbol: gKartDK214Wheel2 + type: texture + offset: 0x5E300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_214_tlut_wheel_2 +donkeykong_kart_frame214_wheel3: + symbol: gKartDK214Wheel3 + type: texture + offset: 0x5E300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_214_tlut_wheel_3 +donkeykong_kart_frame215_wheel0: + symbol: gKartDK215Wheel0 + type: texture + offset: 0x5EA30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_215_tlut_wheel_0 +donkeykong_kart_frame215_wheel1: + symbol: gKartDK215Wheel1 + type: texture + offset: 0x5EA30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_215_tlut_wheel_1 +donkeykong_kart_frame215_wheel2: + symbol: gKartDK215Wheel2 + type: texture + offset: 0x5EA30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_215_tlut_wheel_2 +donkeykong_kart_frame215_wheel3: + symbol: gKartDK215Wheel3 + type: texture + offset: 0x5EA30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_215_tlut_wheel_3 +donkeykong_kart_frame216_wheel0: + symbol: gKartDK216Wheel0 + type: texture + offset: 0x5F17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_216_tlut_wheel_0 +donkeykong_kart_frame216_wheel1: + symbol: gKartDK216Wheel1 + type: texture + offset: 0x5F17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_216_tlut_wheel_1 +donkeykong_kart_frame216_wheel2: + symbol: gKartDK216Wheel2 + type: texture + offset: 0x5F17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_216_tlut_wheel_2 +donkeykong_kart_frame216_wheel3: + symbol: gKartDK216Wheel3 + type: texture + offset: 0x5F17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_216_tlut_wheel_3 +donkeykong_kart_frame217_wheel0: + symbol: gKartDK217Wheel0 + type: texture + offset: 0x5F8B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_217_tlut_wheel_0 +donkeykong_kart_frame217_wheel1: + symbol: gKartDK217Wheel1 + type: texture + offset: 0x5F8B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_217_tlut_wheel_1 +donkeykong_kart_frame217_wheel2: + symbol: gKartDK217Wheel2 + type: texture + offset: 0x5F8B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_217_tlut_wheel_2 +donkeykong_kart_frame217_wheel3: + symbol: gKartDK217Wheel3 + type: texture + offset: 0x5F8B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_217_tlut_wheel_3 +donkeykong_kart_frame218_wheel0: + symbol: gKartDK218Wheel0 + type: texture + offset: 0x5FFD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_218_tlut_wheel_0 +donkeykong_kart_frame218_wheel1: + symbol: gKartDK218Wheel1 + type: texture + offset: 0x5FFD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_218_tlut_wheel_1 +donkeykong_kart_frame218_wheel2: + symbol: gKartDK218Wheel2 + type: texture + offset: 0x5FFD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_218_tlut_wheel_2 +donkeykong_kart_frame218_wheel3: + symbol: gKartDK218Wheel3 + type: texture + offset: 0x5FFD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_218_tlut_wheel_3 +donkeykong_kart_frame219_wheel0: + symbol: gKartDK219Wheel0 + type: texture + offset: 0x60700 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_219_tlut_wheel_0 +donkeykong_kart_frame219_wheel1: + symbol: gKartDK219Wheel1 + type: texture + offset: 0x60700 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_219_tlut_wheel_1 +donkeykong_kart_frame219_wheel2: + symbol: gKartDK219Wheel2 + type: texture + offset: 0x60700 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_219_tlut_wheel_2 +donkeykong_kart_frame219_wheel3: + symbol: gKartDK219Wheel3 + type: texture + offset: 0x60700 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_219_tlut_wheel_3 +donkeykong_kart_frame220_wheel0: + symbol: gKartDK220Wheel0 + type: texture + offset: 0x60E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_220_tlut_wheel_0 +donkeykong_kart_frame220_wheel1: + symbol: gKartDK220Wheel1 + type: texture + offset: 0x60E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_220_tlut_wheel_1 +donkeykong_kart_frame220_wheel2: + symbol: gKartDK220Wheel2 + type: texture + offset: 0x60E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_220_tlut_wheel_2 +donkeykong_kart_frame220_wheel3: + symbol: gKartDK220Wheel3 + type: texture + offset: 0x60E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_220_tlut_wheel_3 +donkeykong_kart_frame221_wheel0: + symbol: gKartDK221Wheel0 + type: texture + offset: 0x61598 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_221_tlut_wheel_0 +donkeykong_kart_frame221_wheel1: + symbol: gKartDK221Wheel1 + type: texture + offset: 0x61598 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_221_tlut_wheel_1 +donkeykong_kart_frame221_wheel2: + symbol: gKartDK221Wheel2 + type: texture + offset: 0x61598 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_221_tlut_wheel_2 +donkeykong_kart_frame221_wheel3: + symbol: gKartDK221Wheel3 + type: texture + offset: 0x61598 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_221_tlut_wheel_3 +donkeykong_kart_frame222_wheel0: + symbol: gKartDK222Wheel0 + type: texture + offset: 0x61CFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_222_tlut_wheel_0 +donkeykong_kart_frame222_wheel1: + symbol: gKartDK222Wheel1 + type: texture + offset: 0x61CFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_222_tlut_wheel_1 +donkeykong_kart_frame222_wheel2: + symbol: gKartDK222Wheel2 + type: texture + offset: 0x61CFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_222_tlut_wheel_2 +donkeykong_kart_frame222_wheel3: + symbol: gKartDK222Wheel3 + type: texture + offset: 0x61CFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_222_tlut_wheel_3 +donkeykong_kart_frame223_wheel0: + symbol: gKartDK223Wheel0 + type: texture + offset: 0x62480 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_223_tlut_wheel_0 +donkeykong_kart_frame223_wheel1: + symbol: gKartDK223Wheel1 + type: texture + offset: 0x62480 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_223_tlut_wheel_1 +donkeykong_kart_frame223_wheel2: + symbol: gKartDK223Wheel2 + type: texture + offset: 0x62480 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_223_tlut_wheel_2 +donkeykong_kart_frame223_wheel3: + symbol: gKartDK223Wheel3 + type: texture + offset: 0x62480 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_223_tlut_wheel_3 +donkeykong_kart_frame224_wheel0: + symbol: gKartDK224Wheel0 + type: texture + offset: 0x62BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_224_tlut_wheel_0 +donkeykong_kart_frame224_wheel1: + symbol: gKartDK224Wheel1 + type: texture + offset: 0x62BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_224_tlut_wheel_1 +donkeykong_kart_frame224_wheel2: + symbol: gKartDK224Wheel2 + type: texture + offset: 0x62BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_224_tlut_wheel_2 +donkeykong_kart_frame224_wheel3: + symbol: gKartDK224Wheel3 + type: texture + offset: 0x62BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_224_tlut_wheel_3 +donkeykong_kart_frame225_wheel0: + symbol: gKartDK225Wheel0 + type: texture + offset: 0x6337C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_225_tlut_wheel_0 +donkeykong_kart_frame225_wheel1: + symbol: gKartDK225Wheel1 + type: texture + offset: 0x6337C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_225_tlut_wheel_1 +donkeykong_kart_frame225_wheel2: + symbol: gKartDK225Wheel2 + type: texture + offset: 0x6337C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_225_tlut_wheel_2 +donkeykong_kart_frame225_wheel3: + symbol: gKartDK225Wheel3 + type: texture + offset: 0x6337C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_225_tlut_wheel_3 +donkeykong_kart_frame226_wheel0: + symbol: gKartDK226Wheel0 + type: texture + offset: 0x63B0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_226_tlut_wheel_0 +donkeykong_kart_frame226_wheel1: + symbol: gKartDK226Wheel1 + type: texture + offset: 0x63B0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_226_tlut_wheel_1 +donkeykong_kart_frame226_wheel2: + symbol: gKartDK226Wheel2 + type: texture + offset: 0x63B0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_226_tlut_wheel_2 +donkeykong_kart_frame226_wheel3: + symbol: gKartDK226Wheel3 + type: texture + offset: 0x63B0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_226_tlut_wheel_3 +donkeykong_kart_frame227_wheel0: + symbol: gKartDK227Wheel0 + type: texture + offset: 0x6427C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_227_tlut_wheel_0 +donkeykong_kart_frame227_wheel1: + symbol: gKartDK227Wheel1 + type: texture + offset: 0x6427C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_227_tlut_wheel_1 +donkeykong_kart_frame227_wheel2: + symbol: gKartDK227Wheel2 + type: texture + offset: 0x6427C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_227_tlut_wheel_2 +donkeykong_kart_frame227_wheel3: + symbol: gKartDK227Wheel3 + type: texture + offset: 0x6427C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_227_tlut_wheel_3 +donkeykong_kart_frame228_wheel0: + symbol: gKartDK228Wheel0 + type: texture + offset: 0x649F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_228_tlut_wheel_0 +donkeykong_kart_frame228_wheel1: + symbol: gKartDK228Wheel1 + type: texture + offset: 0x649F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_228_tlut_wheel_1 +donkeykong_kart_frame228_wheel2: + symbol: gKartDK228Wheel2 + type: texture + offset: 0x649F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_228_tlut_wheel_2 +donkeykong_kart_frame228_wheel3: + symbol: gKartDK228Wheel3 + type: texture + offset: 0x649F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_228_tlut_wheel_3 +donkeykong_kart_frame229_wheel0: + symbol: gKartDK229Wheel0 + type: texture + offset: 0x6514C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_229_tlut_wheel_0 +donkeykong_kart_frame229_wheel1: + symbol: gKartDK229Wheel1 + type: texture + offset: 0x6514C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_229_tlut_wheel_1 +donkeykong_kart_frame229_wheel2: + symbol: gKartDK229Wheel2 + type: texture + offset: 0x6514C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_229_tlut_wheel_2 +donkeykong_kart_frame229_wheel3: + symbol: gKartDK229Wheel3 + type: texture + offset: 0x6514C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_229_tlut_wheel_3 +donkeykong_kart_frame230_wheel0: + symbol: gKartDK230Wheel0 + type: texture + offset: 0x65868 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_230_tlut_wheel_0 +donkeykong_kart_frame230_wheel1: + symbol: gKartDK230Wheel1 + type: texture + offset: 0x65868 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_230_tlut_wheel_1 +donkeykong_kart_frame230_wheel2: + symbol: gKartDK230Wheel2 + type: texture + offset: 0x65868 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_230_tlut_wheel_2 +donkeykong_kart_frame230_wheel3: + symbol: gKartDK230Wheel3 + type: texture + offset: 0x65868 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_230_tlut_wheel_3 +donkeykong_kart_frame231_wheel0: + symbol: gKartDK231Wheel0 + type: texture + offset: 0x65FCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_231_tlut_wheel_0 +donkeykong_kart_frame231_wheel1: + symbol: gKartDK231Wheel1 + type: texture + offset: 0x65FCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_231_tlut_wheel_1 +donkeykong_kart_frame231_wheel2: + symbol: gKartDK231Wheel2 + type: texture + offset: 0x65FCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_231_tlut_wheel_2 +donkeykong_kart_frame231_wheel3: + symbol: gKartDK231Wheel3 + type: texture + offset: 0x65FCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_231_tlut_wheel_3 +donkeykong_kart_frame232_wheel0: + symbol: gKartDK232Wheel0 + type: texture + offset: 0x66728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_232_tlut_wheel_0 +donkeykong_kart_frame232_wheel1: + symbol: gKartDK232Wheel1 + type: texture + offset: 0x66728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_232_tlut_wheel_1 +donkeykong_kart_frame232_wheel2: + symbol: gKartDK232Wheel2 + type: texture + offset: 0x66728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_232_tlut_wheel_2 +donkeykong_kart_frame232_wheel3: + symbol: gKartDK232Wheel3 + type: texture + offset: 0x66728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_232_tlut_wheel_3 +donkeykong_kart_frame233_wheel0: + symbol: gKartDK233Wheel0 + type: texture + offset: 0x66E88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_233_tlut_wheel_0 +donkeykong_kart_frame233_wheel1: + symbol: gKartDK233Wheel1 + type: texture + offset: 0x66E88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_233_tlut_wheel_1 +donkeykong_kart_frame233_wheel2: + symbol: gKartDK233Wheel2 + type: texture + offset: 0x66E88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_233_tlut_wheel_2 +donkeykong_kart_frame233_wheel3: + symbol: gKartDK233Wheel3 + type: texture + offset: 0x66E88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_233_tlut_wheel_3 +donkeykong_kart_frame234_wheel0: + symbol: gKartDK234Wheel0 + type: texture + offset: 0x675D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_234_tlut_wheel_0 +donkeykong_kart_frame234_wheel1: + symbol: gKartDK234Wheel1 + type: texture + offset: 0x675D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_234_tlut_wheel_1 +donkeykong_kart_frame234_wheel2: + symbol: gKartDK234Wheel2 + type: texture + offset: 0x675D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_234_tlut_wheel_2 +donkeykong_kart_frame234_wheel3: + symbol: gKartDK234Wheel3 + type: texture + offset: 0x675D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_234_tlut_wheel_3 +donkeykong_kart_frame235_wheel0: + symbol: gKartDK235Wheel0 + type: texture + offset: 0x67D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_235_tlut_wheel_0 +donkeykong_kart_frame235_wheel1: + symbol: gKartDK235Wheel1 + type: texture + offset: 0x67D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_235_tlut_wheel_1 +donkeykong_kart_frame235_wheel2: + symbol: gKartDK235Wheel2 + type: texture + offset: 0x67D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_235_tlut_wheel_2 +donkeykong_kart_frame235_wheel3: + symbol: gKartDK235Wheel3 + type: texture + offset: 0x67D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_235_tlut_wheel_3 +donkeykong_kart_frame236_wheel0: + symbol: gKartDK236Wheel0 + type: texture + offset: 0x68478 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_236_tlut_wheel_0 +donkeykong_kart_frame236_wheel1: + symbol: gKartDK236Wheel1 + type: texture + offset: 0x68478 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_236_tlut_wheel_1 +donkeykong_kart_frame236_wheel2: + symbol: gKartDK236Wheel2 + type: texture + offset: 0x68478 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_236_tlut_wheel_2 +donkeykong_kart_frame236_wheel3: + symbol: gKartDK236Wheel3 + type: texture + offset: 0x68478 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_236_tlut_wheel_3 +donkeykong_kart_frame237_wheel0: + symbol: gKartDK237Wheel0 + type: texture + offset: 0x68BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_237_tlut_wheel_0 +donkeykong_kart_frame237_wheel1: + symbol: gKartDK237Wheel1 + type: texture + offset: 0x68BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_237_tlut_wheel_1 +donkeykong_kart_frame237_wheel2: + symbol: gKartDK237Wheel2 + type: texture + offset: 0x68BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_237_tlut_wheel_2 +donkeykong_kart_frame237_wheel3: + symbol: gKartDK237Wheel3 + type: texture + offset: 0x68BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_237_tlut_wheel_3 +donkeykong_kart_frame238_wheel0: + symbol: gKartDK238Wheel0 + type: texture + offset: 0x692F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_238_tlut_wheel_0 +donkeykong_kart_frame238_wheel1: + symbol: gKartDK238Wheel1 + type: texture + offset: 0x692F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_238_tlut_wheel_1 +donkeykong_kart_frame238_wheel2: + symbol: gKartDK238Wheel2 + type: texture + offset: 0x692F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_238_tlut_wheel_2 +donkeykong_kart_frame238_wheel3: + symbol: gKartDK238Wheel3 + type: texture + offset: 0x692F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_238_tlut_wheel_3 +donkeykong_kart_frame239_wheel0: + symbol: gKartDK239Wheel0 + type: texture + offset: 0x69A1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_239_tlut_wheel_0 +donkeykong_kart_frame239_wheel1: + symbol: gKartDK239Wheel1 + type: texture + offset: 0x69A1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_239_tlut_wheel_1 +donkeykong_kart_frame239_wheel2: + symbol: gKartDK239Wheel2 + type: texture + offset: 0x69A1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_239_tlut_wheel_2 +donkeykong_kart_frame239_wheel3: + symbol: gKartDK239Wheel3 + type: texture + offset: 0x69A1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_239_tlut_wheel_3 +donkeykong_kart_frame240_wheel0: + symbol: gKartDK240Wheel0 + type: texture + offset: 0x6A148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_240_tlut_wheel_0 +donkeykong_kart_frame240_wheel1: + symbol: gKartDK240Wheel1 + type: texture + offset: 0x6A148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_240_tlut_wheel_1 +donkeykong_kart_frame240_wheel2: + symbol: gKartDK240Wheel2 + type: texture + offset: 0x6A148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_240_tlut_wheel_2 +donkeykong_kart_frame240_wheel3: + symbol: gKartDK240Wheel3 + type: texture + offset: 0x6A148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_240_tlut_wheel_3 +donkeykong_kart_frame241_wheel0: + symbol: gKartDK241Wheel0 + type: texture + offset: 0x6A8A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_241_tlut_wheel_0 +donkeykong_kart_frame241_wheel1: + symbol: gKartDK241Wheel1 + type: texture + offset: 0x6A8A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_241_tlut_wheel_1 +donkeykong_kart_frame241_wheel2: + symbol: gKartDK241Wheel2 + type: texture + offset: 0x6A8A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_241_tlut_wheel_2 +donkeykong_kart_frame241_wheel3: + symbol: gKartDK241Wheel3 + type: texture + offset: 0x6A8A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_241_tlut_wheel_3 +donkeykong_kart_frame242_wheel0: + symbol: gKartDK242Wheel0 + type: texture + offset: 0x6B00C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_242_tlut_wheel_0 +donkeykong_kart_frame242_wheel1: + symbol: gKartDK242Wheel1 + type: texture + offset: 0x6B00C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_242_tlut_wheel_1 +donkeykong_kart_frame242_wheel2: + symbol: gKartDK242Wheel2 + type: texture + offset: 0x6B00C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_242_tlut_wheel_2 +donkeykong_kart_frame242_wheel3: + symbol: gKartDK242Wheel3 + type: texture + offset: 0x6B00C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_242_tlut_wheel_3 +donkeykong_kart_frame243_wheel0: + symbol: gKartDK243Wheel0 + type: texture + offset: 0x6B76C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_243_tlut_wheel_0 +donkeykong_kart_frame243_wheel1: + symbol: gKartDK243Wheel1 + type: texture + offset: 0x6B76C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_243_tlut_wheel_1 +donkeykong_kart_frame243_wheel2: + symbol: gKartDK243Wheel2 + type: texture + offset: 0x6B76C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_243_tlut_wheel_2 +donkeykong_kart_frame243_wheel3: + symbol: gKartDK243Wheel3 + type: texture + offset: 0x6B76C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_243_tlut_wheel_3 +donkeykong_kart_frame244_wheel0: + symbol: gKartDK244Wheel0 + type: texture + offset: 0x6BED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_244_tlut_wheel_0 +donkeykong_kart_frame244_wheel1: + symbol: gKartDK244Wheel1 + type: texture + offset: 0x6BED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_244_tlut_wheel_1 +donkeykong_kart_frame244_wheel2: + symbol: gKartDK244Wheel2 + type: texture + offset: 0x6BED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_244_tlut_wheel_2 +donkeykong_kart_frame244_wheel3: + symbol: gKartDK244Wheel3 + type: texture + offset: 0x6BED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_244_tlut_wheel_3 +donkeykong_kart_frame245_wheel0: + symbol: gKartDK245Wheel0 + type: texture + offset: 0x6C61C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_245_tlut_wheel_0 +donkeykong_kart_frame245_wheel1: + symbol: gKartDK245Wheel1 + type: texture + offset: 0x6C61C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_245_tlut_wheel_1 +donkeykong_kart_frame245_wheel2: + symbol: gKartDK245Wheel2 + type: texture + offset: 0x6C61C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_245_tlut_wheel_2 +donkeykong_kart_frame245_wheel3: + symbol: gKartDK245Wheel3 + type: texture + offset: 0x6C61C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_245_tlut_wheel_3 +donkeykong_kart_frame246_wheel0: + symbol: gKartDK246Wheel0 + type: texture + offset: 0x6CD78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_246_tlut_wheel_0 +donkeykong_kart_frame246_wheel1: + symbol: gKartDK246Wheel1 + type: texture + offset: 0x6CD78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_246_tlut_wheel_1 +donkeykong_kart_frame246_wheel2: + symbol: gKartDK246Wheel2 + type: texture + offset: 0x6CD78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_246_tlut_wheel_2 +donkeykong_kart_frame246_wheel3: + symbol: gKartDK246Wheel3 + type: texture + offset: 0x6CD78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_246_tlut_wheel_3 +donkeykong_kart_frame247_wheel0: + symbol: gKartDK247Wheel0 + type: texture + offset: 0x6D4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_247_tlut_wheel_0 +donkeykong_kart_frame247_wheel1: + symbol: gKartDK247Wheel1 + type: texture + offset: 0x6D4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_247_tlut_wheel_1 +donkeykong_kart_frame247_wheel2: + symbol: gKartDK247Wheel2 + type: texture + offset: 0x6D4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_247_tlut_wheel_2 +donkeykong_kart_frame247_wheel3: + symbol: gKartDK247Wheel3 + type: texture + offset: 0x6D4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_247_tlut_wheel_3 +donkeykong_kart_frame248_wheel0: + symbol: gKartDK248Wheel0 + type: texture + offset: 0x6DBD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_248_tlut_wheel_0 +donkeykong_kart_frame248_wheel1: + symbol: gKartDK248Wheel1 + type: texture + offset: 0x6DBD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_248_tlut_wheel_1 +donkeykong_kart_frame248_wheel2: + symbol: gKartDK248Wheel2 + type: texture + offset: 0x6DBD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_248_tlut_wheel_2 +donkeykong_kart_frame248_wheel3: + symbol: gKartDK248Wheel3 + type: texture + offset: 0x6DBD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_248_tlut_wheel_3 +donkeykong_kart_frame249_wheel0: + symbol: gKartDK249Wheel0 + type: texture + offset: 0x6E2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_249_tlut_wheel_0 +donkeykong_kart_frame249_wheel1: + symbol: gKartDK249Wheel1 + type: texture + offset: 0x6E2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_249_tlut_wheel_1 +donkeykong_kart_frame249_wheel2: + symbol: gKartDK249Wheel2 + type: texture + offset: 0x6E2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_249_tlut_wheel_2 +donkeykong_kart_frame249_wheel3: + symbol: gKartDK249Wheel3 + type: texture + offset: 0x6E2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_249_tlut_wheel_3 +donkeykong_kart_frame250_wheel0: + symbol: gKartDK250Wheel0 + type: texture + offset: 0x6E9FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_250_tlut_wheel_0 +donkeykong_kart_frame250_wheel1: + symbol: gKartDK250Wheel1 + type: texture + offset: 0x6E9FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_250_tlut_wheel_1 +donkeykong_kart_frame250_wheel2: + symbol: gKartDK250Wheel2 + type: texture + offset: 0x6E9FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_250_tlut_wheel_2 +donkeykong_kart_frame250_wheel3: + symbol: gKartDK250Wheel3 + type: texture + offset: 0x6E9FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_250_tlut_wheel_3 +donkeykong_kart_frame251_wheel0: + symbol: gKartDK251Wheel0 + type: texture + offset: 0x6F154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_251_tlut_wheel_0 +donkeykong_kart_frame251_wheel1: + symbol: gKartDK251Wheel1 + type: texture + offset: 0x6F154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_251_tlut_wheel_1 +donkeykong_kart_frame251_wheel2: + symbol: gKartDK251Wheel2 + type: texture + offset: 0x6F154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_251_tlut_wheel_2 +donkeykong_kart_frame251_wheel3: + symbol: gKartDK251Wheel3 + type: texture + offset: 0x6F154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_251_tlut_wheel_3 +donkeykong_kart_frame252_wheel0: + symbol: gKartDK252Wheel0 + type: texture + offset: 0x6F8AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_252_tlut_wheel_0 +donkeykong_kart_frame252_wheel1: + symbol: gKartDK252Wheel1 + type: texture + offset: 0x6F8AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_252_tlut_wheel_1 +donkeykong_kart_frame252_wheel2: + symbol: gKartDK252Wheel2 + type: texture + offset: 0x6F8AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_252_tlut_wheel_2 +donkeykong_kart_frame252_wheel3: + symbol: gKartDK252Wheel3 + type: texture + offset: 0x6F8AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_252_tlut_wheel_3 +donkeykong_kart_frame253_wheel0: + symbol: gKartDK253Wheel0 + type: texture + offset: 0x6FFFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_253_tlut_wheel_0 +donkeykong_kart_frame253_wheel1: + symbol: gKartDK253Wheel1 + type: texture + offset: 0x6FFFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_253_tlut_wheel_1 +donkeykong_kart_frame253_wheel2: + symbol: gKartDK253Wheel2 + type: texture + offset: 0x6FFFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_253_tlut_wheel_2 +donkeykong_kart_frame253_wheel3: + symbol: gKartDK253Wheel3 + type: texture + offset: 0x6FFFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_253_tlut_wheel_3 +donkeykong_kart_frame254_wheel0: + symbol: gKartDK254Wheel0 + type: texture + offset: 0x70740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_254_tlut_wheel_0 +donkeykong_kart_frame254_wheel1: + symbol: gKartDK254Wheel1 + type: texture + offset: 0x70740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_254_tlut_wheel_1 +donkeykong_kart_frame254_wheel2: + symbol: gKartDK254Wheel2 + type: texture + offset: 0x70740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_254_tlut_wheel_2 +donkeykong_kart_frame254_wheel3: + symbol: gKartDK254Wheel3 + type: texture + offset: 0x70740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_254_tlut_wheel_3 +donkeykong_kart_frame255_wheel0: + symbol: gKartDK255Wheel0 + type: texture + offset: 0x70E98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_255_tlut_wheel_0 +donkeykong_kart_frame255_wheel1: + symbol: gKartDK255Wheel1 + type: texture + offset: 0x70E98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_255_tlut_wheel_1 +donkeykong_kart_frame255_wheel2: + symbol: gKartDK255Wheel2 + type: texture + offset: 0x70E98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_255_tlut_wheel_2 +donkeykong_kart_frame255_wheel3: + symbol: gKartDK255Wheel3 + type: texture + offset: 0x70E98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_255_tlut_wheel_3 +donkeykong_kart_frame256_wheel0: + symbol: gKartDK256Wheel0 + type: texture + offset: 0x715E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_256_tlut_wheel_0 +donkeykong_kart_frame256_wheel1: + symbol: gKartDK256Wheel1 + type: texture + offset: 0x715E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_256_tlut_wheel_1 +donkeykong_kart_frame256_wheel2: + symbol: gKartDK256Wheel2 + type: texture + offset: 0x715E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_256_tlut_wheel_2 +donkeykong_kart_frame256_wheel3: + symbol: gKartDK256Wheel3 + type: texture + offset: 0x715E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_256_tlut_wheel_3 +donkeykong_kart_frame257_wheel0: + symbol: gKartDK257Wheel0 + type: texture + offset: 0x71D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_257_tlut_wheel_0 +donkeykong_kart_frame257_wheel1: + symbol: gKartDK257Wheel1 + type: texture + offset: 0x71D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_257_tlut_wheel_1 +donkeykong_kart_frame257_wheel2: + symbol: gKartDK257Wheel2 + type: texture + offset: 0x71D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_257_tlut_wheel_2 +donkeykong_kart_frame257_wheel3: + symbol: gKartDK257Wheel3 + type: texture + offset: 0x71D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_257_tlut_wheel_3 +donkeykong_kart_frame258_wheel0: + symbol: gKartDK258Wheel0 + type: texture + offset: 0x72464 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_258_tlut_wheel_0 +donkeykong_kart_frame258_wheel1: + symbol: gKartDK258Wheel1 + type: texture + offset: 0x72464 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_258_tlut_wheel_1 +donkeykong_kart_frame258_wheel2: + symbol: gKartDK258Wheel2 + type: texture + offset: 0x72464 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_258_tlut_wheel_2 +donkeykong_kart_frame258_wheel3: + symbol: gKartDK258Wheel3 + type: texture + offset: 0x72464 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_258_tlut_wheel_3 +donkeykong_kart_frame259_wheel0: + symbol: gKartDK259Wheel0 + type: texture + offset: 0x72B9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_259_tlut_wheel_0 +donkeykong_kart_frame259_wheel1: + symbol: gKartDK259Wheel1 + type: texture + offset: 0x72B9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_259_tlut_wheel_1 +donkeykong_kart_frame259_wheel2: + symbol: gKartDK259Wheel2 + type: texture + offset: 0x72B9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_259_tlut_wheel_2 +donkeykong_kart_frame259_wheel3: + symbol: gKartDK259Wheel3 + type: texture + offset: 0x72B9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_259_tlut_wheel_3 +donkeykong_kart_frame260_wheel0: + symbol: gKartDK260Wheel0 + type: texture + offset: 0x732E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_260_tlut_wheel_0 +donkeykong_kart_frame260_wheel1: + symbol: gKartDK260Wheel1 + type: texture + offset: 0x732E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_260_tlut_wheel_1 +donkeykong_kart_frame260_wheel2: + symbol: gKartDK260Wheel2 + type: texture + offset: 0x732E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_260_tlut_wheel_2 +donkeykong_kart_frame260_wheel3: + symbol: gKartDK260Wheel3 + type: texture + offset: 0x732E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_260_tlut_wheel_3 +donkeykong_kart_frame261_wheel0: + symbol: gKartDK261Wheel0 + type: texture + offset: 0x73A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_261_tlut_wheel_0 +donkeykong_kart_frame261_wheel1: + symbol: gKartDK261Wheel1 + type: texture + offset: 0x73A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_261_tlut_wheel_1 +donkeykong_kart_frame261_wheel2: + symbol: gKartDK261Wheel2 + type: texture + offset: 0x73A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_261_tlut_wheel_2 +donkeykong_kart_frame261_wheel3: + symbol: gKartDK261Wheel3 + type: texture + offset: 0x73A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_261_tlut_wheel_3 +donkeykong_kart_frame262_wheel0: + symbol: gKartDK262Wheel0 + type: texture + offset: 0x74160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_262_tlut_wheel_0 +donkeykong_kart_frame262_wheel1: + symbol: gKartDK262Wheel1 + type: texture + offset: 0x74160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_262_tlut_wheel_1 +donkeykong_kart_frame262_wheel2: + symbol: gKartDK262Wheel2 + type: texture + offset: 0x74160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_262_tlut_wheel_2 +donkeykong_kart_frame262_wheel3: + symbol: gKartDK262Wheel3 + type: texture + offset: 0x74160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_262_tlut_wheel_3 +donkeykong_kart_frame263_wheel0: + symbol: gKartDK263Wheel0 + type: texture + offset: 0x7487C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_263_tlut_wheel_0 +donkeykong_kart_frame263_wheel1: + symbol: gKartDK263Wheel1 + type: texture + offset: 0x7487C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_263_tlut_wheel_1 +donkeykong_kart_frame263_wheel2: + symbol: gKartDK263Wheel2 + type: texture + offset: 0x7487C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_263_tlut_wheel_2 +donkeykong_kart_frame263_wheel3: + symbol: gKartDK263Wheel3 + type: texture + offset: 0x7487C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_263_tlut_wheel_3 +donkeykong_kart_frame264_wheel0: + symbol: gKartDK264Wheel0 + type: texture + offset: 0x74F88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_264_tlut_wheel_0 +donkeykong_kart_frame264_wheel1: + symbol: gKartDK264Wheel1 + type: texture + offset: 0x74F88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_264_tlut_wheel_1 +donkeykong_kart_frame264_wheel2: + symbol: gKartDK264Wheel2 + type: texture + offset: 0x74F88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_264_tlut_wheel_2 +donkeykong_kart_frame264_wheel3: + symbol: gKartDK264Wheel3 + type: texture + offset: 0x74F88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_264_tlut_wheel_3 +donkeykong_kart_frame265_wheel0: + symbol: gKartDK265Wheel0 + type: texture + offset: 0x756B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_265_tlut_wheel_0 +donkeykong_kart_frame265_wheel1: + symbol: gKartDK265Wheel1 + type: texture + offset: 0x756B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_265_tlut_wheel_1 +donkeykong_kart_frame265_wheel2: + symbol: gKartDK265Wheel2 + type: texture + offset: 0x756B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_265_tlut_wheel_2 +donkeykong_kart_frame265_wheel3: + symbol: gKartDK265Wheel3 + type: texture + offset: 0x756B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_265_tlut_wheel_3 +donkeykong_kart_frame266_wheel0: + symbol: gKartDK266Wheel0 + type: texture + offset: 0x75DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_266_tlut_wheel_0 +donkeykong_kart_frame266_wheel1: + symbol: gKartDK266Wheel1 + type: texture + offset: 0x75DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_266_tlut_wheel_1 +donkeykong_kart_frame266_wheel2: + symbol: gKartDK266Wheel2 + type: texture + offset: 0x75DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_266_tlut_wheel_2 +donkeykong_kart_frame266_wheel3: + symbol: gKartDK266Wheel3 + type: texture + offset: 0x75DD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_266_tlut_wheel_3 +donkeykong_kart_frame267_wheel0: + symbol: gKartDK267Wheel0 + type: texture + offset: 0x764C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_267_tlut_wheel_0 +donkeykong_kart_frame267_wheel1: + symbol: gKartDK267Wheel1 + type: texture + offset: 0x764C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_267_tlut_wheel_1 +donkeykong_kart_frame267_wheel2: + symbol: gKartDK267Wheel2 + type: texture + offset: 0x764C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_267_tlut_wheel_2 +donkeykong_kart_frame267_wheel3: + symbol: gKartDK267Wheel3 + type: texture + offset: 0x764C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_267_tlut_wheel_3 +donkeykong_kart_frame268_wheel0: + symbol: gKartDK268Wheel0 + type: texture + offset: 0x76BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_268_tlut_wheel_0 +donkeykong_kart_frame268_wheel1: + symbol: gKartDK268Wheel1 + type: texture + offset: 0x76BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_268_tlut_wheel_1 +donkeykong_kart_frame268_wheel2: + symbol: gKartDK268Wheel2 + type: texture + offset: 0x76BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_268_tlut_wheel_2 +donkeykong_kart_frame268_wheel3: + symbol: gKartDK268Wheel3 + type: texture + offset: 0x76BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_268_tlut_wheel_3 +donkeykong_kart_frame269_wheel0: + symbol: gKartDK269Wheel0 + type: texture + offset: 0x7726C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_269_tlut_wheel_0 +donkeykong_kart_frame269_wheel1: + symbol: gKartDK269Wheel1 + type: texture + offset: 0x7726C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_269_tlut_wheel_1 +donkeykong_kart_frame269_wheel2: + symbol: gKartDK269Wheel2 + type: texture + offset: 0x7726C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_269_tlut_wheel_2 +donkeykong_kart_frame269_wheel3: + symbol: gKartDK269Wheel3 + type: texture + offset: 0x7726C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_269_tlut_wheel_3 +donkeykong_kart_frame270_wheel0: + symbol: gKartDK270Wheel0 + type: texture + offset: 0x779A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_270_tlut_wheel_0 +donkeykong_kart_frame270_wheel1: + symbol: gKartDK270Wheel1 + type: texture + offset: 0x779A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_270_tlut_wheel_1 +donkeykong_kart_frame270_wheel2: + symbol: gKartDK270Wheel2 + type: texture + offset: 0x779A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_270_tlut_wheel_2 +donkeykong_kart_frame270_wheel3: + symbol: gKartDK270Wheel3 + type: texture + offset: 0x779A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_270_tlut_wheel_3 +donkeykong_kart_frame271_wheel0: + symbol: gKartDK271Wheel0 + type: texture + offset: 0x7811C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_271_tlut_wheel_0 +donkeykong_kart_frame271_wheel1: + symbol: gKartDK271Wheel1 + type: texture + offset: 0x7811C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_271_tlut_wheel_1 +donkeykong_kart_frame271_wheel2: + symbol: gKartDK271Wheel2 + type: texture + offset: 0x7811C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_271_tlut_wheel_2 +donkeykong_kart_frame271_wheel3: + symbol: gKartDK271Wheel3 + type: texture + offset: 0x7811C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_271_tlut_wheel_3 +donkeykong_kart_frame272_wheel0: + symbol: gKartDK272Wheel0 + type: texture + offset: 0x78884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_272_tlut_wheel_0 +donkeykong_kart_frame272_wheel1: + symbol: gKartDK272Wheel1 + type: texture + offset: 0x78884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_272_tlut_wheel_1 +donkeykong_kart_frame272_wheel2: + symbol: gKartDK272Wheel2 + type: texture + offset: 0x78884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_272_tlut_wheel_2 +donkeykong_kart_frame272_wheel3: + symbol: gKartDK272Wheel3 + type: texture + offset: 0x78884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_272_tlut_wheel_3 +donkeykong_kart_frame273_wheel0: + symbol: gKartDK273Wheel0 + type: texture + offset: 0x79010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_273_tlut_wheel_0 +donkeykong_kart_frame273_wheel1: + symbol: gKartDK273Wheel1 + type: texture + offset: 0x79010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_273_tlut_wheel_1 +donkeykong_kart_frame273_wheel2: + symbol: gKartDK273Wheel2 + type: texture + offset: 0x79010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_273_tlut_wheel_2 +donkeykong_kart_frame273_wheel3: + symbol: gKartDK273Wheel3 + type: texture + offset: 0x79010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_273_tlut_wheel_3 +donkeykong_kart_frame274_wheel0: + symbol: gKartDK274Wheel0 + type: texture + offset: 0x79774 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_274_tlut_wheel_0 +donkeykong_kart_frame274_wheel1: + symbol: gKartDK274Wheel1 + type: texture + offset: 0x79774 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_274_tlut_wheel_1 +donkeykong_kart_frame274_wheel2: + symbol: gKartDK274Wheel2 + type: texture + offset: 0x79774 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_274_tlut_wheel_2 +donkeykong_kart_frame274_wheel3: + symbol: gKartDK274Wheel3 + type: texture + offset: 0x79774 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_274_tlut_wheel_3 +donkeykong_kart_frame275_wheel0: + symbol: gKartDK275Wheel0 + type: texture + offset: 0x79EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_275_tlut_wheel_0 +donkeykong_kart_frame275_wheel1: + symbol: gKartDK275Wheel1 + type: texture + offset: 0x79EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_275_tlut_wheel_1 +donkeykong_kart_frame275_wheel2: + symbol: gKartDK275Wheel2 + type: texture + offset: 0x79EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_275_tlut_wheel_2 +donkeykong_kart_frame275_wheel3: + symbol: gKartDK275Wheel3 + type: texture + offset: 0x79EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_275_tlut_wheel_3 +donkeykong_kart_frame276_wheel0: + symbol: gKartDK276Wheel0 + type: texture + offset: 0x7A64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_276_tlut_wheel_0 +donkeykong_kart_frame276_wheel1: + symbol: gKartDK276Wheel1 + type: texture + offset: 0x7A64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_276_tlut_wheel_1 +donkeykong_kart_frame276_wheel2: + symbol: gKartDK276Wheel2 + type: texture + offset: 0x7A64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_276_tlut_wheel_2 +donkeykong_kart_frame276_wheel3: + symbol: gKartDK276Wheel3 + type: texture + offset: 0x7A64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_276_tlut_wheel_3 +donkeykong_kart_frame277_wheel0: + symbol: gKartDK277Wheel0 + type: texture + offset: 0x7ADAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_277_tlut_wheel_0 +donkeykong_kart_frame277_wheel1: + symbol: gKartDK277Wheel1 + type: texture + offset: 0x7ADAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_277_tlut_wheel_1 +donkeykong_kart_frame277_wheel2: + symbol: gKartDK277Wheel2 + type: texture + offset: 0x7ADAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_277_tlut_wheel_2 +donkeykong_kart_frame277_wheel3: + symbol: gKartDK277Wheel3 + type: texture + offset: 0x7ADAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_277_tlut_wheel_3 +donkeykong_kart_frame278_wheel0: + symbol: gKartDK278Wheel0 + type: texture + offset: 0x7B4F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_278_tlut_wheel_0 +donkeykong_kart_frame278_wheel1: + symbol: gKartDK278Wheel1 + type: texture + offset: 0x7B4F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_278_tlut_wheel_1 +donkeykong_kart_frame278_wheel2: + symbol: gKartDK278Wheel2 + type: texture + offset: 0x7B4F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_278_tlut_wheel_2 +donkeykong_kart_frame278_wheel3: + symbol: gKartDK278Wheel3 + type: texture + offset: 0x7B4F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_278_tlut_wheel_3 +donkeykong_kart_frame279_wheel0: + symbol: gKartDK279Wheel0 + type: texture + offset: 0x7BC24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_279_tlut_wheel_0 +donkeykong_kart_frame279_wheel1: + symbol: gKartDK279Wheel1 + type: texture + offset: 0x7BC24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_279_tlut_wheel_1 +donkeykong_kart_frame279_wheel2: + symbol: gKartDK279Wheel2 + type: texture + offset: 0x7BC24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_279_tlut_wheel_2 +donkeykong_kart_frame279_wheel3: + symbol: gKartDK279Wheel3 + type: texture + offset: 0x7BC24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_279_tlut_wheel_3 +donkeykong_kart_frame280_wheel0: + symbol: gKartDK280Wheel0 + type: texture + offset: 0x7C364 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_280_tlut_wheel_0 +donkeykong_kart_frame280_wheel1: + symbol: gKartDK280Wheel1 + type: texture + offset: 0x7C364 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_280_tlut_wheel_1 +donkeykong_kart_frame280_wheel2: + symbol: gKartDK280Wheel2 + type: texture + offset: 0x7C364 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_280_tlut_wheel_2 +donkeykong_kart_frame280_wheel3: + symbol: gKartDK280Wheel3 + type: texture + offset: 0x7C364 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_280_tlut_wheel_3 +donkeykong_kart_frame281_wheel0: + symbol: gKartDK281Wheel0 + type: texture + offset: 0x7CA94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_281_tlut_wheel_0 +donkeykong_kart_frame281_wheel1: + symbol: gKartDK281Wheel1 + type: texture + offset: 0x7CA94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_281_tlut_wheel_1 +donkeykong_kart_frame281_wheel2: + symbol: gKartDK281Wheel2 + type: texture + offset: 0x7CA94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_281_tlut_wheel_2 +donkeykong_kart_frame281_wheel3: + symbol: gKartDK281Wheel3 + type: texture + offset: 0x7CA94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_281_tlut_wheel_3 +donkeykong_kart_frame282_wheel0: + symbol: gKartDK282Wheel0 + type: texture + offset: 0x7D1B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_282_tlut_wheel_0 +donkeykong_kart_frame282_wheel1: + symbol: gKartDK282Wheel1 + type: texture + offset: 0x7D1B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_282_tlut_wheel_1 +donkeykong_kart_frame282_wheel2: + symbol: gKartDK282Wheel2 + type: texture + offset: 0x7D1B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_282_tlut_wheel_2 +donkeykong_kart_frame282_wheel3: + symbol: gKartDK282Wheel3 + type: texture + offset: 0x7D1B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_282_tlut_wheel_3 +donkeykong_kart_frame283_wheel0: + symbol: gKartDK283Wheel0 + type: texture + offset: 0x7D8B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_283_tlut_wheel_0 +donkeykong_kart_frame283_wheel1: + symbol: gKartDK283Wheel1 + type: texture + offset: 0x7D8B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_283_tlut_wheel_1 +donkeykong_kart_frame283_wheel2: + symbol: gKartDK283Wheel2 + type: texture + offset: 0x7D8B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_283_tlut_wheel_2 +donkeykong_kart_frame283_wheel3: + symbol: gKartDK283Wheel3 + type: texture + offset: 0x7D8B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_283_tlut_wheel_3 +donkeykong_kart_frame284_wheel0: + symbol: gKartDK284Wheel0 + type: texture + offset: 0x7DFA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_284_tlut_wheel_0 +donkeykong_kart_frame284_wheel1: + symbol: gKartDK284Wheel1 + type: texture + offset: 0x7DFA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_284_tlut_wheel_1 +donkeykong_kart_frame284_wheel2: + symbol: gKartDK284Wheel2 + type: texture + offset: 0x7DFA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_284_tlut_wheel_2 +donkeykong_kart_frame284_wheel3: + symbol: gKartDK284Wheel3 + type: texture + offset: 0x7DFA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_284_tlut_wheel_3 +donkeykong_kart_frame285_wheel0: + symbol: gKartDK285Wheel0 + type: texture + offset: 0x7E684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_285_tlut_wheel_0 +donkeykong_kart_frame285_wheel1: + symbol: gKartDK285Wheel1 + type: texture + offset: 0x7E684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_285_tlut_wheel_1 +donkeykong_kart_frame285_wheel2: + symbol: gKartDK285Wheel2 + type: texture + offset: 0x7E684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_285_tlut_wheel_2 +donkeykong_kart_frame285_wheel3: + symbol: gKartDK285Wheel3 + type: texture + offset: 0x7E684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_285_tlut_wheel_3 +donkeykong_kart_frame286_wheel0: + symbol: gKartDK286Wheel0 + type: texture + offset: 0x7ED34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_286_tlut_wheel_0 +donkeykong_kart_frame286_wheel1: + symbol: gKartDK286Wheel1 + type: texture + offset: 0x7ED34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_286_tlut_wheel_1 +donkeykong_kart_frame286_wheel2: + symbol: gKartDK286Wheel2 + type: texture + offset: 0x7ED34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_286_tlut_wheel_2 +donkeykong_kart_frame286_wheel3: + symbol: gKartDK286Wheel3 + type: texture + offset: 0x7ED34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_286_tlut_wheel_3 +donkeykong_kart_frame287_wheel0: + symbol: gKartDK287Wheel0 + type: texture + offset: 0x7F3B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_287_tlut_wheel_0 +donkeykong_kart_frame287_wheel1: + symbol: gKartDK287Wheel1 + type: texture + offset: 0x7F3B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_287_tlut_wheel_1 +donkeykong_kart_frame287_wheel2: + symbol: gKartDK287Wheel2 + type: texture + offset: 0x7F3B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_287_tlut_wheel_2 +donkeykong_kart_frame287_wheel3: + symbol: gKartDK287Wheel3 + type: texture + offset: 0x7F3B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_287_tlut_wheel_3 +donkeykong_kart_frame288_wheel0: + symbol: gKartDK288Wheel0 + type: texture + offset: 0x7FA0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_288_tlut_wheel_0 +donkeykong_kart_frame288_wheel1: + symbol: gKartDK288Wheel1 + type: texture + offset: 0x7FA0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_288_tlut_wheel_1 +donkeykong_kart_frame288_wheel2: + symbol: gKartDK288Wheel2 + type: texture + offset: 0x7FA0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_288_tlut_wheel_2 +donkeykong_kart_frame288_wheel3: + symbol: gKartDK288Wheel3 + type: texture + offset: 0x7FA0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_288_tlut_wheel_3 +donkeykong_kart_frame289: + symbol: gKartDK289 + type: texture + offset: 0x80058 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame290: + symbol: gKartDK290 + type: texture + offset: 0x80708 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame291: + symbol: gKartDK291 + type: texture + offset: 0x80DC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame292: + symbol: gKartDK292 + type: texture + offset: 0x8146C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame293: + symbol: gKartDK293 + type: texture + offset: 0x81B3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame294: + symbol: gKartDK294 + type: texture + offset: 0x82190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame295: + symbol: gKartDK295 + type: texture + offset: 0x82818 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame296: + symbol: gKartDK296 + type: texture + offset: 0x82F00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame297: + symbol: gKartDK297 + type: texture + offset: 0x83644 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame298: + symbol: gKartDK298 + type: texture + offset: 0x83D1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame299: + symbol: gKartDK299 + type: texture + offset: 0x84468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame300: + symbol: gKartDK300 + type: texture + offset: 0x84B4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame301: + symbol: gKartDK301 + type: texture + offset: 0x851E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame302: + symbol: gKartDK302 + type: texture + offset: 0x858B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame303: + symbol: gKartDK303 + type: texture + offset: 0x85FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame304: + symbol: gKartDK304 + type: texture + offset: 0x8673C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame305: + symbol: gKartDK305 + type: texture + offset: 0x86EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame306: + symbol: gKartDK306 + type: texture + offset: 0x874B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame307: + symbol: gKartDK307 + type: texture + offset: 0x87BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame308: + symbol: gKartDK308 + type: texture + offset: 0x88264 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame309: + symbol: gKartDK309 + type: texture + offset: 0x88908 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame310: + symbol: gKartDK310 + type: texture + offset: 0x88F94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame311: + symbol: gKartDK311 + type: texture + offset: 0x89600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame312: + symbol: gKartDK312 + type: texture + offset: 0x89D18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame313: + symbol: gKartDK313 + type: texture + offset: 0x8A434 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame314: + symbol: gKartDK314 + type: texture + offset: 0x8AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame315: + symbol: gKartDK315 + type: texture + offset: 0x8B284 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame316: + symbol: gKartDK316 + type: texture + offset: 0x8B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame317: + symbol: gKartDK317 + type: texture + offset: 0x8C03C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame318: + symbol: gKartDK318 + type: texture + offset: 0x8C704 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame319: + symbol: gKartDK319 + type: texture + offset: 0x8CDCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_frame320: + symbol: gKartDK320 + type: texture + offset: 0x8D524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: donkeykong_kart_palette + tlut_wheel: donkeykong_kart_000_tlut_wheel_0 +donkeykong_kart_000_tlut_wheel_0: + symbol: gKartDK000TlutWheel0 + type: texture + offset: 0x8DC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_000_tlut_wheel_1: + symbol: gKartDK000TlutWheel1 + type: texture + offset: 0x8DD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_000_tlut_wheel_2: + symbol: gKartDK000TlutWheel2 + type: texture + offset: 0x8DD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_000_tlut_wheel_3: + symbol: gKartDK000TlutWheel3 + type: texture + offset: 0x8DE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_001_tlut_wheel_0: + symbol: gKartDK001TlutWheel0 + type: texture + offset: 0x8DE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_001_tlut_wheel_1: + symbol: gKartDK001TlutWheel1 + type: texture + offset: 0x8DF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_001_tlut_wheel_2: + symbol: gKartDK001TlutWheel2 + type: texture + offset: 0x8DF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_001_tlut_wheel_3: + symbol: gKartDK001TlutWheel3 + type: texture + offset: 0x8E014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_002_tlut_wheel_0: + symbol: gKartDK002TlutWheel0 + type: texture + offset: 0x8E094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_002_tlut_wheel_1: + symbol: gKartDK002TlutWheel1 + type: texture + offset: 0x8E114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_002_tlut_wheel_2: + symbol: gKartDK002TlutWheel2 + type: texture + offset: 0x8E194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_002_tlut_wheel_3: + symbol: gKartDK002TlutWheel3 + type: texture + offset: 0x8E214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_003_tlut_wheel_0: + symbol: gKartDK003TlutWheel0 + type: texture + offset: 0x8E294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_003_tlut_wheel_1: + symbol: gKartDK003TlutWheel1 + type: texture + offset: 0x8E314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_003_tlut_wheel_2: + symbol: gKartDK003TlutWheel2 + type: texture + offset: 0x8E394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_003_tlut_wheel_3: + symbol: gKartDK003TlutWheel3 + type: texture + offset: 0x8E414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_004_tlut_wheel_0: + symbol: gKartDK004TlutWheel0 + type: texture + offset: 0x8E494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_004_tlut_wheel_1: + symbol: gKartDK004TlutWheel1 + type: texture + offset: 0x8E514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_004_tlut_wheel_2: + symbol: gKartDK004TlutWheel2 + type: texture + offset: 0x8E594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_004_tlut_wheel_3: + symbol: gKartDK004TlutWheel3 + type: texture + offset: 0x8E614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_005_tlut_wheel_0: + symbol: gKartDK005TlutWheel0 + type: texture + offset: 0x8E694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_005_tlut_wheel_1: + symbol: gKartDK005TlutWheel1 + type: texture + offset: 0x8E714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_005_tlut_wheel_2: + symbol: gKartDK005TlutWheel2 + type: texture + offset: 0x8E794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_005_tlut_wheel_3: + symbol: gKartDK005TlutWheel3 + type: texture + offset: 0x8E814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_006_tlut_wheel_0: + symbol: gKartDK006TlutWheel0 + type: texture + offset: 0x8E894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_006_tlut_wheel_1: + symbol: gKartDK006TlutWheel1 + type: texture + offset: 0x8E914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_006_tlut_wheel_2: + symbol: gKartDK006TlutWheel2 + type: texture + offset: 0x8E994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_006_tlut_wheel_3: + symbol: gKartDK006TlutWheel3 + type: texture + offset: 0x8EA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_007_tlut_wheel_0: + symbol: gKartDK007TlutWheel0 + type: texture + offset: 0x8EA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_007_tlut_wheel_1: + symbol: gKartDK007TlutWheel1 + type: texture + offset: 0x8EB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_007_tlut_wheel_2: + symbol: gKartDK007TlutWheel2 + type: texture + offset: 0x8EB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_007_tlut_wheel_3: + symbol: gKartDK007TlutWheel3 + type: texture + offset: 0x8EC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_008_tlut_wheel_0: + symbol: gKartDK008TlutWheel0 + type: texture + offset: 0x8EC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_008_tlut_wheel_1: + symbol: gKartDK008TlutWheel1 + type: texture + offset: 0x8ED14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_008_tlut_wheel_2: + symbol: gKartDK008TlutWheel2 + type: texture + offset: 0x8ED94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_008_tlut_wheel_3: + symbol: gKartDK008TlutWheel3 + type: texture + offset: 0x8EE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_009_tlut_wheel_0: + symbol: gKartDK009TlutWheel0 + type: texture + offset: 0x8EE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_009_tlut_wheel_1: + symbol: gKartDK009TlutWheel1 + type: texture + offset: 0x8EF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_009_tlut_wheel_2: + symbol: gKartDK009TlutWheel2 + type: texture + offset: 0x8EF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_009_tlut_wheel_3: + symbol: gKartDK009TlutWheel3 + type: texture + offset: 0x8F014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_010_tlut_wheel_0: + symbol: gKartDK010TlutWheel0 + type: texture + offset: 0x8F094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_010_tlut_wheel_1: + symbol: gKartDK010TlutWheel1 + type: texture + offset: 0x8F114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_010_tlut_wheel_2: + symbol: gKartDK010TlutWheel2 + type: texture + offset: 0x8F194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_010_tlut_wheel_3: + symbol: gKartDK010TlutWheel3 + type: texture + offset: 0x8F214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_011_tlut_wheel_0: + symbol: gKartDK011TlutWheel0 + type: texture + offset: 0x8F294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_011_tlut_wheel_1: + symbol: gKartDK011TlutWheel1 + type: texture + offset: 0x8F314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_011_tlut_wheel_2: + symbol: gKartDK011TlutWheel2 + type: texture + offset: 0x8F394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_011_tlut_wheel_3: + symbol: gKartDK011TlutWheel3 + type: texture + offset: 0x8F414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_012_tlut_wheel_0: + symbol: gKartDK012TlutWheel0 + type: texture + offset: 0x8F494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_012_tlut_wheel_1: + symbol: gKartDK012TlutWheel1 + type: texture + offset: 0x8F514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_012_tlut_wheel_2: + symbol: gKartDK012TlutWheel2 + type: texture + offset: 0x8F594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_012_tlut_wheel_3: + symbol: gKartDK012TlutWheel3 + type: texture + offset: 0x8F614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_013_tlut_wheel_0: + symbol: gKartDK013TlutWheel0 + type: texture + offset: 0x8F694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_013_tlut_wheel_1: + symbol: gKartDK013TlutWheel1 + type: texture + offset: 0x8F714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_013_tlut_wheel_2: + symbol: gKartDK013TlutWheel2 + type: texture + offset: 0x8F794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_013_tlut_wheel_3: + symbol: gKartDK013TlutWheel3 + type: texture + offset: 0x8F814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_014_tlut_wheel_0: + symbol: gKartDK014TlutWheel0 + type: texture + offset: 0x8F894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_014_tlut_wheel_1: + symbol: gKartDK014TlutWheel1 + type: texture + offset: 0x8F914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_014_tlut_wheel_2: + symbol: gKartDK014TlutWheel2 + type: texture + offset: 0x8F994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_014_tlut_wheel_3: + symbol: gKartDK014TlutWheel3 + type: texture + offset: 0x8FA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_015_tlut_wheel_0: + symbol: gKartDK015TlutWheel0 + type: texture + offset: 0x8FA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_015_tlut_wheel_1: + symbol: gKartDK015TlutWheel1 + type: texture + offset: 0x8FB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_015_tlut_wheel_2: + symbol: gKartDK015TlutWheel2 + type: texture + offset: 0x8FB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_015_tlut_wheel_3: + symbol: gKartDK015TlutWheel3 + type: texture + offset: 0x8FC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_016_tlut_wheel_0: + symbol: gKartDK016TlutWheel0 + type: texture + offset: 0x8FC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_016_tlut_wheel_1: + symbol: gKartDK016TlutWheel1 + type: texture + offset: 0x8FD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_016_tlut_wheel_2: + symbol: gKartDK016TlutWheel2 + type: texture + offset: 0x8FD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_016_tlut_wheel_3: + symbol: gKartDK016TlutWheel3 + type: texture + offset: 0x8FE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_017_tlut_wheel_0: + symbol: gKartDK017TlutWheel0 + type: texture + offset: 0x8FE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_017_tlut_wheel_1: + symbol: gKartDK017TlutWheel1 + type: texture + offset: 0x8FF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_017_tlut_wheel_2: + symbol: gKartDK017TlutWheel2 + type: texture + offset: 0x8FF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_017_tlut_wheel_3: + symbol: gKartDK017TlutWheel3 + type: texture + offset: 0x90014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_018_tlut_wheel_0: + symbol: gKartDK018TlutWheel0 + type: texture + offset: 0x90094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_018_tlut_wheel_1: + symbol: gKartDK018TlutWheel1 + type: texture + offset: 0x90114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_018_tlut_wheel_2: + symbol: gKartDK018TlutWheel2 + type: texture + offset: 0x90194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_018_tlut_wheel_3: + symbol: gKartDK018TlutWheel3 + type: texture + offset: 0x90214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_019_tlut_wheel_0: + symbol: gKartDK019TlutWheel0 + type: texture + offset: 0x90294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_019_tlut_wheel_1: + symbol: gKartDK019TlutWheel1 + type: texture + offset: 0x90314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_019_tlut_wheel_2: + symbol: gKartDK019TlutWheel2 + type: texture + offset: 0x90394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_019_tlut_wheel_3: + symbol: gKartDK019TlutWheel3 + type: texture + offset: 0x90414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_020_tlut_wheel_0: + symbol: gKartDK020TlutWheel0 + type: texture + offset: 0x90494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_020_tlut_wheel_1: + symbol: gKartDK020TlutWheel1 + type: texture + offset: 0x90514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_020_tlut_wheel_2: + symbol: gKartDK020TlutWheel2 + type: texture + offset: 0x90594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_020_tlut_wheel_3: + symbol: gKartDK020TlutWheel3 + type: texture + offset: 0x90614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_021_tlut_wheel_0: + symbol: gKartDK021TlutWheel0 + type: texture + offset: 0x90694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_021_tlut_wheel_1: + symbol: gKartDK021TlutWheel1 + type: texture + offset: 0x90714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_021_tlut_wheel_2: + symbol: gKartDK021TlutWheel2 + type: texture + offset: 0x90794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_021_tlut_wheel_3: + symbol: gKartDK021TlutWheel3 + type: texture + offset: 0x90814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_022_tlut_wheel_0: + symbol: gKartDK022TlutWheel0 + type: texture + offset: 0x90894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_022_tlut_wheel_1: + symbol: gKartDK022TlutWheel1 + type: texture + offset: 0x90914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_022_tlut_wheel_2: + symbol: gKartDK022TlutWheel2 + type: texture + offset: 0x90994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_022_tlut_wheel_3: + symbol: gKartDK022TlutWheel3 + type: texture + offset: 0x90A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_023_tlut_wheel_0: + symbol: gKartDK023TlutWheel0 + type: texture + offset: 0x90A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_023_tlut_wheel_1: + symbol: gKartDK023TlutWheel1 + type: texture + offset: 0x90B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_023_tlut_wheel_2: + symbol: gKartDK023TlutWheel2 + type: texture + offset: 0x90B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_023_tlut_wheel_3: + symbol: gKartDK023TlutWheel3 + type: texture + offset: 0x90C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_024_tlut_wheel_0: + symbol: gKartDK024TlutWheel0 + type: texture + offset: 0x90C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_024_tlut_wheel_1: + symbol: gKartDK024TlutWheel1 + type: texture + offset: 0x90D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_024_tlut_wheel_2: + symbol: gKartDK024TlutWheel2 + type: texture + offset: 0x90D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_024_tlut_wheel_3: + symbol: gKartDK024TlutWheel3 + type: texture + offset: 0x90E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_025_tlut_wheel_0: + symbol: gKartDK025TlutWheel0 + type: texture + offset: 0x90E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_025_tlut_wheel_1: + symbol: gKartDK025TlutWheel1 + type: texture + offset: 0x90F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_025_tlut_wheel_2: + symbol: gKartDK025TlutWheel2 + type: texture + offset: 0x90F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_025_tlut_wheel_3: + symbol: gKartDK025TlutWheel3 + type: texture + offset: 0x91014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_026_tlut_wheel_0: + symbol: gKartDK026TlutWheel0 + type: texture + offset: 0x91094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_026_tlut_wheel_1: + symbol: gKartDK026TlutWheel1 + type: texture + offset: 0x91114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_026_tlut_wheel_2: + symbol: gKartDK026TlutWheel2 + type: texture + offset: 0x91194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_026_tlut_wheel_3: + symbol: gKartDK026TlutWheel3 + type: texture + offset: 0x91214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_027_tlut_wheel_0: + symbol: gKartDK027TlutWheel0 + type: texture + offset: 0x91294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_027_tlut_wheel_1: + symbol: gKartDK027TlutWheel1 + type: texture + offset: 0x91314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_027_tlut_wheel_2: + symbol: gKartDK027TlutWheel2 + type: texture + offset: 0x91394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_027_tlut_wheel_3: + symbol: gKartDK027TlutWheel3 + type: texture + offset: 0x91414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_028_tlut_wheel_0: + symbol: gKartDK028TlutWheel0 + type: texture + offset: 0x91494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_028_tlut_wheel_1: + symbol: gKartDK028TlutWheel1 + type: texture + offset: 0x91514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_028_tlut_wheel_2: + symbol: gKartDK028TlutWheel2 + type: texture + offset: 0x91594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_028_tlut_wheel_3: + symbol: gKartDK028TlutWheel3 + type: texture + offset: 0x91614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_029_tlut_wheel_0: + symbol: gKartDK029TlutWheel0 + type: texture + offset: 0x91694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_029_tlut_wheel_1: + symbol: gKartDK029TlutWheel1 + type: texture + offset: 0x91714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_029_tlut_wheel_2: + symbol: gKartDK029TlutWheel2 + type: texture + offset: 0x91794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_029_tlut_wheel_3: + symbol: gKartDK029TlutWheel3 + type: texture + offset: 0x91814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_030_tlut_wheel_0: + symbol: gKartDK030TlutWheel0 + type: texture + offset: 0x91894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_030_tlut_wheel_1: + symbol: gKartDK030TlutWheel1 + type: texture + offset: 0x91914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_030_tlut_wheel_2: + symbol: gKartDK030TlutWheel2 + type: texture + offset: 0x91994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_030_tlut_wheel_3: + symbol: gKartDK030TlutWheel3 + type: texture + offset: 0x91A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_031_tlut_wheel_0: + symbol: gKartDK031TlutWheel0 + type: texture + offset: 0x91A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_031_tlut_wheel_1: + symbol: gKartDK031TlutWheel1 + type: texture + offset: 0x91B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_031_tlut_wheel_2: + symbol: gKartDK031TlutWheel2 + type: texture + offset: 0x91B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_031_tlut_wheel_3: + symbol: gKartDK031TlutWheel3 + type: texture + offset: 0x91C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_032_tlut_wheel_0: + symbol: gKartDK032TlutWheel0 + type: texture + offset: 0x91C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_032_tlut_wheel_1: + symbol: gKartDK032TlutWheel1 + type: texture + offset: 0x91D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_032_tlut_wheel_2: + symbol: gKartDK032TlutWheel2 + type: texture + offset: 0x91D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_032_tlut_wheel_3: + symbol: gKartDK032TlutWheel3 + type: texture + offset: 0x91E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_033_tlut_wheel_0: + symbol: gKartDK033TlutWheel0 + type: texture + offset: 0x91E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_033_tlut_wheel_1: + symbol: gKartDK033TlutWheel1 + type: texture + offset: 0x91F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_033_tlut_wheel_2: + symbol: gKartDK033TlutWheel2 + type: texture + offset: 0x91F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_033_tlut_wheel_3: + symbol: gKartDK033TlutWheel3 + type: texture + offset: 0x92014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_034_tlut_wheel_0: + symbol: gKartDK034TlutWheel0 + type: texture + offset: 0x92094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_034_tlut_wheel_1: + symbol: gKartDK034TlutWheel1 + type: texture + offset: 0x92114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_034_tlut_wheel_2: + symbol: gKartDK034TlutWheel2 + type: texture + offset: 0x92194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_034_tlut_wheel_3: + symbol: gKartDK034TlutWheel3 + type: texture + offset: 0x92214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_035_tlut_wheel_0: + symbol: gKartDK035TlutWheel0 + type: texture + offset: 0x92294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_035_tlut_wheel_1: + symbol: gKartDK035TlutWheel1 + type: texture + offset: 0x92314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_035_tlut_wheel_2: + symbol: gKartDK035TlutWheel2 + type: texture + offset: 0x92394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_035_tlut_wheel_3: + symbol: gKartDK035TlutWheel3 + type: texture + offset: 0x92414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_036_tlut_wheel_0: + symbol: gKartDK036TlutWheel0 + type: texture + offset: 0x92494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_036_tlut_wheel_1: + symbol: gKartDK036TlutWheel1 + type: texture + offset: 0x92514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_036_tlut_wheel_2: + symbol: gKartDK036TlutWheel2 + type: texture + offset: 0x92594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_036_tlut_wheel_3: + symbol: gKartDK036TlutWheel3 + type: texture + offset: 0x92614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_037_tlut_wheel_0: + symbol: gKartDK037TlutWheel0 + type: texture + offset: 0x92694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_037_tlut_wheel_1: + symbol: gKartDK037TlutWheel1 + type: texture + offset: 0x92714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_037_tlut_wheel_2: + symbol: gKartDK037TlutWheel2 + type: texture + offset: 0x92794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_037_tlut_wheel_3: + symbol: gKartDK037TlutWheel3 + type: texture + offset: 0x92814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_038_tlut_wheel_0: + symbol: gKartDK038TlutWheel0 + type: texture + offset: 0x92894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_038_tlut_wheel_1: + symbol: gKartDK038TlutWheel1 + type: texture + offset: 0x92914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_038_tlut_wheel_2: + symbol: gKartDK038TlutWheel2 + type: texture + offset: 0x92994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_038_tlut_wheel_3: + symbol: gKartDK038TlutWheel3 + type: texture + offset: 0x92A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_039_tlut_wheel_0: + symbol: gKartDK039TlutWheel0 + type: texture + offset: 0x92A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_039_tlut_wheel_1: + symbol: gKartDK039TlutWheel1 + type: texture + offset: 0x92B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_039_tlut_wheel_2: + symbol: gKartDK039TlutWheel2 + type: texture + offset: 0x92B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_039_tlut_wheel_3: + symbol: gKartDK039TlutWheel3 + type: texture + offset: 0x92C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_040_tlut_wheel_0: + symbol: gKartDK040TlutWheel0 + type: texture + offset: 0x92C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_040_tlut_wheel_1: + symbol: gKartDK040TlutWheel1 + type: texture + offset: 0x92D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_040_tlut_wheel_2: + symbol: gKartDK040TlutWheel2 + type: texture + offset: 0x92D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_040_tlut_wheel_3: + symbol: gKartDK040TlutWheel3 + type: texture + offset: 0x92E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_041_tlut_wheel_0: + symbol: gKartDK041TlutWheel0 + type: texture + offset: 0x92E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_041_tlut_wheel_1: + symbol: gKartDK041TlutWheel1 + type: texture + offset: 0x92F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_041_tlut_wheel_2: + symbol: gKartDK041TlutWheel2 + type: texture + offset: 0x92F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_041_tlut_wheel_3: + symbol: gKartDK041TlutWheel3 + type: texture + offset: 0x93014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_042_tlut_wheel_0: + symbol: gKartDK042TlutWheel0 + type: texture + offset: 0x93094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_042_tlut_wheel_1: + symbol: gKartDK042TlutWheel1 + type: texture + offset: 0x93114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_042_tlut_wheel_2: + symbol: gKartDK042TlutWheel2 + type: texture + offset: 0x93194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_042_tlut_wheel_3: + symbol: gKartDK042TlutWheel3 + type: texture + offset: 0x93214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_043_tlut_wheel_0: + symbol: gKartDK043TlutWheel0 + type: texture + offset: 0x93294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_043_tlut_wheel_1: + symbol: gKartDK043TlutWheel1 + type: texture + offset: 0x93314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_043_tlut_wheel_2: + symbol: gKartDK043TlutWheel2 + type: texture + offset: 0x93394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_043_tlut_wheel_3: + symbol: gKartDK043TlutWheel3 + type: texture + offset: 0x93414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_044_tlut_wheel_0: + symbol: gKartDK044TlutWheel0 + type: texture + offset: 0x93494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_044_tlut_wheel_1: + symbol: gKartDK044TlutWheel1 + type: texture + offset: 0x93514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_044_tlut_wheel_2: + symbol: gKartDK044TlutWheel2 + type: texture + offset: 0x93594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_044_tlut_wheel_3: + symbol: gKartDK044TlutWheel3 + type: texture + offset: 0x93614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_045_tlut_wheel_0: + symbol: gKartDK045TlutWheel0 + type: texture + offset: 0x93694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_045_tlut_wheel_1: + symbol: gKartDK045TlutWheel1 + type: texture + offset: 0x93714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_045_tlut_wheel_2: + symbol: gKartDK045TlutWheel2 + type: texture + offset: 0x93794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_045_tlut_wheel_3: + symbol: gKartDK045TlutWheel3 + type: texture + offset: 0x93814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_046_tlut_wheel_0: + symbol: gKartDK046TlutWheel0 + type: texture + offset: 0x93894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_046_tlut_wheel_1: + symbol: gKartDK046TlutWheel1 + type: texture + offset: 0x93914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_046_tlut_wheel_2: + symbol: gKartDK046TlutWheel2 + type: texture + offset: 0x93994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_046_tlut_wheel_3: + symbol: gKartDK046TlutWheel3 + type: texture + offset: 0x93A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_047_tlut_wheel_0: + symbol: gKartDK047TlutWheel0 + type: texture + offset: 0x93A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_047_tlut_wheel_1: + symbol: gKartDK047TlutWheel1 + type: texture + offset: 0x93B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_047_tlut_wheel_2: + symbol: gKartDK047TlutWheel2 + type: texture + offset: 0x93B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_047_tlut_wheel_3: + symbol: gKartDK047TlutWheel3 + type: texture + offset: 0x93C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_048_tlut_wheel_0: + symbol: gKartDK048TlutWheel0 + type: texture + offset: 0x93C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_048_tlut_wheel_1: + symbol: gKartDK048TlutWheel1 + type: texture + offset: 0x93D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_048_tlut_wheel_2: + symbol: gKartDK048TlutWheel2 + type: texture + offset: 0x93D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_048_tlut_wheel_3: + symbol: gKartDK048TlutWheel3 + type: texture + offset: 0x93E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_049_tlut_wheel_0: + symbol: gKartDK049TlutWheel0 + type: texture + offset: 0x93E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_049_tlut_wheel_1: + symbol: gKartDK049TlutWheel1 + type: texture + offset: 0x93F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_049_tlut_wheel_2: + symbol: gKartDK049TlutWheel2 + type: texture + offset: 0x93F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_049_tlut_wheel_3: + symbol: gKartDK049TlutWheel3 + type: texture + offset: 0x94014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_050_tlut_wheel_0: + symbol: gKartDK050TlutWheel0 + type: texture + offset: 0x94094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_050_tlut_wheel_1: + symbol: gKartDK050TlutWheel1 + type: texture + offset: 0x94114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_050_tlut_wheel_2: + symbol: gKartDK050TlutWheel2 + type: texture + offset: 0x94194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_050_tlut_wheel_3: + symbol: gKartDK050TlutWheel3 + type: texture + offset: 0x94214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_051_tlut_wheel_0: + symbol: gKartDK051TlutWheel0 + type: texture + offset: 0x94294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_051_tlut_wheel_1: + symbol: gKartDK051TlutWheel1 + type: texture + offset: 0x94314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_051_tlut_wheel_2: + symbol: gKartDK051TlutWheel2 + type: texture + offset: 0x94394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_051_tlut_wheel_3: + symbol: gKartDK051TlutWheel3 + type: texture + offset: 0x94414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_052_tlut_wheel_0: + symbol: gKartDK052TlutWheel0 + type: texture + offset: 0x94494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_052_tlut_wheel_1: + symbol: gKartDK052TlutWheel1 + type: texture + offset: 0x94514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_052_tlut_wheel_2: + symbol: gKartDK052TlutWheel2 + type: texture + offset: 0x94594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_052_tlut_wheel_3: + symbol: gKartDK052TlutWheel3 + type: texture + offset: 0x94614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_053_tlut_wheel_0: + symbol: gKartDK053TlutWheel0 + type: texture + offset: 0x94694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_053_tlut_wheel_1: + symbol: gKartDK053TlutWheel1 + type: texture + offset: 0x94714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_053_tlut_wheel_2: + symbol: gKartDK053TlutWheel2 + type: texture + offset: 0x94794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_053_tlut_wheel_3: + symbol: gKartDK053TlutWheel3 + type: texture + offset: 0x94814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_054_tlut_wheel_0: + symbol: gKartDK054TlutWheel0 + type: texture + offset: 0x94894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_054_tlut_wheel_1: + symbol: gKartDK054TlutWheel1 + type: texture + offset: 0x94914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_054_tlut_wheel_2: + symbol: gKartDK054TlutWheel2 + type: texture + offset: 0x94994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_054_tlut_wheel_3: + symbol: gKartDK054TlutWheel3 + type: texture + offset: 0x94A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_055_tlut_wheel_0: + symbol: gKartDK055TlutWheel0 + type: texture + offset: 0x94A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_055_tlut_wheel_1: + symbol: gKartDK055TlutWheel1 + type: texture + offset: 0x94B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_055_tlut_wheel_2: + symbol: gKartDK055TlutWheel2 + type: texture + offset: 0x94B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_055_tlut_wheel_3: + symbol: gKartDK055TlutWheel3 + type: texture + offset: 0x94C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_056_tlut_wheel_0: + symbol: gKartDK056TlutWheel0 + type: texture + offset: 0x94C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_056_tlut_wheel_1: + symbol: gKartDK056TlutWheel1 + type: texture + offset: 0x94D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_056_tlut_wheel_2: + symbol: gKartDK056TlutWheel2 + type: texture + offset: 0x94D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_056_tlut_wheel_3: + symbol: gKartDK056TlutWheel3 + type: texture + offset: 0x94E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_057_tlut_wheel_0: + symbol: gKartDK057TlutWheel0 + type: texture + offset: 0x94E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_057_tlut_wheel_1: + symbol: gKartDK057TlutWheel1 + type: texture + offset: 0x94F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_057_tlut_wheel_2: + symbol: gKartDK057TlutWheel2 + type: texture + offset: 0x94F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_057_tlut_wheel_3: + symbol: gKartDK057TlutWheel3 + type: texture + offset: 0x95014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_058_tlut_wheel_0: + symbol: gKartDK058TlutWheel0 + type: texture + offset: 0x95094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_058_tlut_wheel_1: + symbol: gKartDK058TlutWheel1 + type: texture + offset: 0x95114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_058_tlut_wheel_2: + symbol: gKartDK058TlutWheel2 + type: texture + offset: 0x95194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_058_tlut_wheel_3: + symbol: gKartDK058TlutWheel3 + type: texture + offset: 0x95214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_059_tlut_wheel_0: + symbol: gKartDK059TlutWheel0 + type: texture + offset: 0x95294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_059_tlut_wheel_1: + symbol: gKartDK059TlutWheel1 + type: texture + offset: 0x95314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_059_tlut_wheel_2: + symbol: gKartDK059TlutWheel2 + type: texture + offset: 0x95394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_059_tlut_wheel_3: + symbol: gKartDK059TlutWheel3 + type: texture + offset: 0x95414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_060_tlut_wheel_0: + symbol: gKartDK060TlutWheel0 + type: texture + offset: 0x95494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_060_tlut_wheel_1: + symbol: gKartDK060TlutWheel1 + type: texture + offset: 0x95514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_060_tlut_wheel_2: + symbol: gKartDK060TlutWheel2 + type: texture + offset: 0x95594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_060_tlut_wheel_3: + symbol: gKartDK060TlutWheel3 + type: texture + offset: 0x95614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_061_tlut_wheel_0: + symbol: gKartDK061TlutWheel0 + type: texture + offset: 0x95694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_061_tlut_wheel_1: + symbol: gKartDK061TlutWheel1 + type: texture + offset: 0x95714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_061_tlut_wheel_2: + symbol: gKartDK061TlutWheel2 + type: texture + offset: 0x95794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_061_tlut_wheel_3: + symbol: gKartDK061TlutWheel3 + type: texture + offset: 0x95814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_062_tlut_wheel_0: + symbol: gKartDK062TlutWheel0 + type: texture + offset: 0x95894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_062_tlut_wheel_1: + symbol: gKartDK062TlutWheel1 + type: texture + offset: 0x95914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_062_tlut_wheel_2: + symbol: gKartDK062TlutWheel2 + type: texture + offset: 0x95994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_062_tlut_wheel_3: + symbol: gKartDK062TlutWheel3 + type: texture + offset: 0x95A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_063_tlut_wheel_0: + symbol: gKartDK063TlutWheel0 + type: texture + offset: 0x95A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_063_tlut_wheel_1: + symbol: gKartDK063TlutWheel1 + type: texture + offset: 0x95B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_063_tlut_wheel_2: + symbol: gKartDK063TlutWheel2 + type: texture + offset: 0x95B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_063_tlut_wheel_3: + symbol: gKartDK063TlutWheel3 + type: texture + offset: 0x95C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_064_tlut_wheel_0: + symbol: gKartDK064TlutWheel0 + type: texture + offset: 0x95C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_064_tlut_wheel_1: + symbol: gKartDK064TlutWheel1 + type: texture + offset: 0x95D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_064_tlut_wheel_2: + symbol: gKartDK064TlutWheel2 + type: texture + offset: 0x95D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_064_tlut_wheel_3: + symbol: gKartDK064TlutWheel3 + type: texture + offset: 0x95E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_065_tlut_wheel_0: + symbol: gKartDK065TlutWheel0 + type: texture + offset: 0x95E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_065_tlut_wheel_1: + symbol: gKartDK065TlutWheel1 + type: texture + offset: 0x95F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_065_tlut_wheel_2: + symbol: gKartDK065TlutWheel2 + type: texture + offset: 0x95F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_065_tlut_wheel_3: + symbol: gKartDK065TlutWheel3 + type: texture + offset: 0x96014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_066_tlut_wheel_0: + symbol: gKartDK066TlutWheel0 + type: texture + offset: 0x96094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_066_tlut_wheel_1: + symbol: gKartDK066TlutWheel1 + type: texture + offset: 0x96114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_066_tlut_wheel_2: + symbol: gKartDK066TlutWheel2 + type: texture + offset: 0x96194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_066_tlut_wheel_3: + symbol: gKartDK066TlutWheel3 + type: texture + offset: 0x96214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_067_tlut_wheel_0: + symbol: gKartDK067TlutWheel0 + type: texture + offset: 0x96294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_067_tlut_wheel_1: + symbol: gKartDK067TlutWheel1 + type: texture + offset: 0x96314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_067_tlut_wheel_2: + symbol: gKartDK067TlutWheel2 + type: texture + offset: 0x96394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_067_tlut_wheel_3: + symbol: gKartDK067TlutWheel3 + type: texture + offset: 0x96414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_068_tlut_wheel_0: + symbol: gKartDK068TlutWheel0 + type: texture + offset: 0x96494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_068_tlut_wheel_1: + symbol: gKartDK068TlutWheel1 + type: texture + offset: 0x96514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_068_tlut_wheel_2: + symbol: gKartDK068TlutWheel2 + type: texture + offset: 0x96594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_068_tlut_wheel_3: + symbol: gKartDK068TlutWheel3 + type: texture + offset: 0x96614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_069_tlut_wheel_0: + symbol: gKartDK069TlutWheel0 + type: texture + offset: 0x96694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_069_tlut_wheel_1: + symbol: gKartDK069TlutWheel1 + type: texture + offset: 0x96714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_069_tlut_wheel_2: + symbol: gKartDK069TlutWheel2 + type: texture + offset: 0x96794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_069_tlut_wheel_3: + symbol: gKartDK069TlutWheel3 + type: texture + offset: 0x96814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_070_tlut_wheel_0: + symbol: gKartDK070TlutWheel0 + type: texture + offset: 0x96894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_070_tlut_wheel_1: + symbol: gKartDK070TlutWheel1 + type: texture + offset: 0x96914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_070_tlut_wheel_2: + symbol: gKartDK070TlutWheel2 + type: texture + offset: 0x96994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_070_tlut_wheel_3: + symbol: gKartDK070TlutWheel3 + type: texture + offset: 0x96A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_071_tlut_wheel_0: + symbol: gKartDK071TlutWheel0 + type: texture + offset: 0x96A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_071_tlut_wheel_1: + symbol: gKartDK071TlutWheel1 + type: texture + offset: 0x96B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_071_tlut_wheel_2: + symbol: gKartDK071TlutWheel2 + type: texture + offset: 0x96B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_071_tlut_wheel_3: + symbol: gKartDK071TlutWheel3 + type: texture + offset: 0x96C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_072_tlut_wheel_0: + symbol: gKartDK072TlutWheel0 + type: texture + offset: 0x96C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_072_tlut_wheel_1: + symbol: gKartDK072TlutWheel1 + type: texture + offset: 0x96D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_072_tlut_wheel_2: + symbol: gKartDK072TlutWheel2 + type: texture + offset: 0x96D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_072_tlut_wheel_3: + symbol: gKartDK072TlutWheel3 + type: texture + offset: 0x96E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_073_tlut_wheel_0: + symbol: gKartDK073TlutWheel0 + type: texture + offset: 0x96E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_073_tlut_wheel_1: + symbol: gKartDK073TlutWheel1 + type: texture + offset: 0x96F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_073_tlut_wheel_2: + symbol: gKartDK073TlutWheel2 + type: texture + offset: 0x96F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_073_tlut_wheel_3: + symbol: gKartDK073TlutWheel3 + type: texture + offset: 0x97014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_074_tlut_wheel_0: + symbol: gKartDK074TlutWheel0 + type: texture + offset: 0x97094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_074_tlut_wheel_1: + symbol: gKartDK074TlutWheel1 + type: texture + offset: 0x97114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_074_tlut_wheel_2: + symbol: gKartDK074TlutWheel2 + type: texture + offset: 0x97194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_074_tlut_wheel_3: + symbol: gKartDK074TlutWheel3 + type: texture + offset: 0x97214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_075_tlut_wheel_0: + symbol: gKartDK075TlutWheel0 + type: texture + offset: 0x97294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_075_tlut_wheel_1: + symbol: gKartDK075TlutWheel1 + type: texture + offset: 0x97314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_075_tlut_wheel_2: + symbol: gKartDK075TlutWheel2 + type: texture + offset: 0x97394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_075_tlut_wheel_3: + symbol: gKartDK075TlutWheel3 + type: texture + offset: 0x97414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_076_tlut_wheel_0: + symbol: gKartDK076TlutWheel0 + type: texture + offset: 0x97494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_076_tlut_wheel_1: + symbol: gKartDK076TlutWheel1 + type: texture + offset: 0x97514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_076_tlut_wheel_2: + symbol: gKartDK076TlutWheel2 + type: texture + offset: 0x97594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_076_tlut_wheel_3: + symbol: gKartDK076TlutWheel3 + type: texture + offset: 0x97614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_077_tlut_wheel_0: + symbol: gKartDK077TlutWheel0 + type: texture + offset: 0x97694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_077_tlut_wheel_1: + symbol: gKartDK077TlutWheel1 + type: texture + offset: 0x97714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_077_tlut_wheel_2: + symbol: gKartDK077TlutWheel2 + type: texture + offset: 0x97794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_077_tlut_wheel_3: + symbol: gKartDK077TlutWheel3 + type: texture + offset: 0x97814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_078_tlut_wheel_0: + symbol: gKartDK078TlutWheel0 + type: texture + offset: 0x97894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_078_tlut_wheel_1: + symbol: gKartDK078TlutWheel1 + type: texture + offset: 0x97914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_078_tlut_wheel_2: + symbol: gKartDK078TlutWheel2 + type: texture + offset: 0x97994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_078_tlut_wheel_3: + symbol: gKartDK078TlutWheel3 + type: texture + offset: 0x97A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_079_tlut_wheel_0: + symbol: gKartDK079TlutWheel0 + type: texture + offset: 0x97A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_079_tlut_wheel_1: + symbol: gKartDK079TlutWheel1 + type: texture + offset: 0x97B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_079_tlut_wheel_2: + symbol: gKartDK079TlutWheel2 + type: texture + offset: 0x97B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_079_tlut_wheel_3: + symbol: gKartDK079TlutWheel3 + type: texture + offset: 0x97C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_080_tlut_wheel_0: + symbol: gKartDK080TlutWheel0 + type: texture + offset: 0x97C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_080_tlut_wheel_1: + symbol: gKartDK080TlutWheel1 + type: texture + offset: 0x97D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_080_tlut_wheel_2: + symbol: gKartDK080TlutWheel2 + type: texture + offset: 0x97D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_080_tlut_wheel_3: + symbol: gKartDK080TlutWheel3 + type: texture + offset: 0x97E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_081_tlut_wheel_0: + symbol: gKartDK081TlutWheel0 + type: texture + offset: 0x97E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_081_tlut_wheel_1: + symbol: gKartDK081TlutWheel1 + type: texture + offset: 0x97F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_081_tlut_wheel_2: + symbol: gKartDK081TlutWheel2 + type: texture + offset: 0x97F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_081_tlut_wheel_3: + symbol: gKartDK081TlutWheel3 + type: texture + offset: 0x98014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_082_tlut_wheel_0: + symbol: gKartDK082TlutWheel0 + type: texture + offset: 0x98094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_082_tlut_wheel_1: + symbol: gKartDK082TlutWheel1 + type: texture + offset: 0x98114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_082_tlut_wheel_2: + symbol: gKartDK082TlutWheel2 + type: texture + offset: 0x98194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_082_tlut_wheel_3: + symbol: gKartDK082TlutWheel3 + type: texture + offset: 0x98214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_083_tlut_wheel_0: + symbol: gKartDK083TlutWheel0 + type: texture + offset: 0x98294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_083_tlut_wheel_1: + symbol: gKartDK083TlutWheel1 + type: texture + offset: 0x98314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_083_tlut_wheel_2: + symbol: gKartDK083TlutWheel2 + type: texture + offset: 0x98394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_083_tlut_wheel_3: + symbol: gKartDK083TlutWheel3 + type: texture + offset: 0x98414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_084_tlut_wheel_0: + symbol: gKartDK084TlutWheel0 + type: texture + offset: 0x98494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_084_tlut_wheel_1: + symbol: gKartDK084TlutWheel1 + type: texture + offset: 0x98514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_084_tlut_wheel_2: + symbol: gKartDK084TlutWheel2 + type: texture + offset: 0x98594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_084_tlut_wheel_3: + symbol: gKartDK084TlutWheel3 + type: texture + offset: 0x98614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_085_tlut_wheel_0: + symbol: gKartDK085TlutWheel0 + type: texture + offset: 0x98694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_085_tlut_wheel_1: + symbol: gKartDK085TlutWheel1 + type: texture + offset: 0x98714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_085_tlut_wheel_2: + symbol: gKartDK085TlutWheel2 + type: texture + offset: 0x98794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_085_tlut_wheel_3: + symbol: gKartDK085TlutWheel3 + type: texture + offset: 0x98814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_086_tlut_wheel_0: + symbol: gKartDK086TlutWheel0 + type: texture + offset: 0x98894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_086_tlut_wheel_1: + symbol: gKartDK086TlutWheel1 + type: texture + offset: 0x98914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_086_tlut_wheel_2: + symbol: gKartDK086TlutWheel2 + type: texture + offset: 0x98994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_086_tlut_wheel_3: + symbol: gKartDK086TlutWheel3 + type: texture + offset: 0x98A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_087_tlut_wheel_0: + symbol: gKartDK087TlutWheel0 + type: texture + offset: 0x98A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_087_tlut_wheel_1: + symbol: gKartDK087TlutWheel1 + type: texture + offset: 0x98B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_087_tlut_wheel_2: + symbol: gKartDK087TlutWheel2 + type: texture + offset: 0x98B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_087_tlut_wheel_3: + symbol: gKartDK087TlutWheel3 + type: texture + offset: 0x98C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_088_tlut_wheel_0: + symbol: gKartDK088TlutWheel0 + type: texture + offset: 0x98C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_088_tlut_wheel_1: + symbol: gKartDK088TlutWheel1 + type: texture + offset: 0x98D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_088_tlut_wheel_2: + symbol: gKartDK088TlutWheel2 + type: texture + offset: 0x98D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_088_tlut_wheel_3: + symbol: gKartDK088TlutWheel3 + type: texture + offset: 0x98E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_089_tlut_wheel_0: + symbol: gKartDK089TlutWheel0 + type: texture + offset: 0x98E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_089_tlut_wheel_1: + symbol: gKartDK089TlutWheel1 + type: texture + offset: 0x98F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_089_tlut_wheel_2: + symbol: gKartDK089TlutWheel2 + type: texture + offset: 0x98F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_089_tlut_wheel_3: + symbol: gKartDK089TlutWheel3 + type: texture + offset: 0x99014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_090_tlut_wheel_0: + symbol: gKartDK090TlutWheel0 + type: texture + offset: 0x99094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_090_tlut_wheel_1: + symbol: gKartDK090TlutWheel1 + type: texture + offset: 0x99114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_090_tlut_wheel_2: + symbol: gKartDK090TlutWheel2 + type: texture + offset: 0x99194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_090_tlut_wheel_3: + symbol: gKartDK090TlutWheel3 + type: texture + offset: 0x99214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_091_tlut_wheel_0: + symbol: gKartDK091TlutWheel0 + type: texture + offset: 0x99294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_091_tlut_wheel_1: + symbol: gKartDK091TlutWheel1 + type: texture + offset: 0x99314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_091_tlut_wheel_2: + symbol: gKartDK091TlutWheel2 + type: texture + offset: 0x99394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_091_tlut_wheel_3: + symbol: gKartDK091TlutWheel3 + type: texture + offset: 0x99414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_092_tlut_wheel_0: + symbol: gKartDK092TlutWheel0 + type: texture + offset: 0x99494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_092_tlut_wheel_1: + symbol: gKartDK092TlutWheel1 + type: texture + offset: 0x99514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_092_tlut_wheel_2: + symbol: gKartDK092TlutWheel2 + type: texture + offset: 0x99594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_092_tlut_wheel_3: + symbol: gKartDK092TlutWheel3 + type: texture + offset: 0x99614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_093_tlut_wheel_0: + symbol: gKartDK093TlutWheel0 + type: texture + offset: 0x99694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_093_tlut_wheel_1: + symbol: gKartDK093TlutWheel1 + type: texture + offset: 0x99714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_093_tlut_wheel_2: + symbol: gKartDK093TlutWheel2 + type: texture + offset: 0x99794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_093_tlut_wheel_3: + symbol: gKartDK093TlutWheel3 + type: texture + offset: 0x99814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_094_tlut_wheel_0: + symbol: gKartDK094TlutWheel0 + type: texture + offset: 0x99894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_094_tlut_wheel_1: + symbol: gKartDK094TlutWheel1 + type: texture + offset: 0x99914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_094_tlut_wheel_2: + symbol: gKartDK094TlutWheel2 + type: texture + offset: 0x99994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_094_tlut_wheel_3: + symbol: gKartDK094TlutWheel3 + type: texture + offset: 0x99A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_095_tlut_wheel_0: + symbol: gKartDK095TlutWheel0 + type: texture + offset: 0x99A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_095_tlut_wheel_1: + symbol: gKartDK095TlutWheel1 + type: texture + offset: 0x99B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_095_tlut_wheel_2: + symbol: gKartDK095TlutWheel2 + type: texture + offset: 0x99B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_095_tlut_wheel_3: + symbol: gKartDK095TlutWheel3 + type: texture + offset: 0x99C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_096_tlut_wheel_0: + symbol: gKartDK096TlutWheel0 + type: texture + offset: 0x99C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_096_tlut_wheel_1: + symbol: gKartDK096TlutWheel1 + type: texture + offset: 0x99D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_096_tlut_wheel_2: + symbol: gKartDK096TlutWheel2 + type: texture + offset: 0x99D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_096_tlut_wheel_3: + symbol: gKartDK096TlutWheel3 + type: texture + offset: 0x99E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_097_tlut_wheel_0: + symbol: gKartDK097TlutWheel0 + type: texture + offset: 0x99E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_097_tlut_wheel_1: + symbol: gKartDK097TlutWheel1 + type: texture + offset: 0x99F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_097_tlut_wheel_2: + symbol: gKartDK097TlutWheel2 + type: texture + offset: 0x99F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_097_tlut_wheel_3: + symbol: gKartDK097TlutWheel3 + type: texture + offset: 0x9A014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_098_tlut_wheel_0: + symbol: gKartDK098TlutWheel0 + type: texture + offset: 0x9A094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_098_tlut_wheel_1: + symbol: gKartDK098TlutWheel1 + type: texture + offset: 0x9A114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_098_tlut_wheel_2: + symbol: gKartDK098TlutWheel2 + type: texture + offset: 0x9A194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_098_tlut_wheel_3: + symbol: gKartDK098TlutWheel3 + type: texture + offset: 0x9A214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_099_tlut_wheel_0: + symbol: gKartDK099TlutWheel0 + type: texture + offset: 0x9A294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_099_tlut_wheel_1: + symbol: gKartDK099TlutWheel1 + type: texture + offset: 0x9A314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_099_tlut_wheel_2: + symbol: gKartDK099TlutWheel2 + type: texture + offset: 0x9A394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_099_tlut_wheel_3: + symbol: gKartDK099TlutWheel3 + type: texture + offset: 0x9A414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_100_tlut_wheel_0: + symbol: gKartDK100TlutWheel0 + type: texture + offset: 0x9A494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_100_tlut_wheel_1: + symbol: gKartDK100TlutWheel1 + type: texture + offset: 0x9A514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_100_tlut_wheel_2: + symbol: gKartDK100TlutWheel2 + type: texture + offset: 0x9A594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_100_tlut_wheel_3: + symbol: gKartDK100TlutWheel3 + type: texture + offset: 0x9A614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_101_tlut_wheel_0: + symbol: gKartDK101TlutWheel0 + type: texture + offset: 0x9A694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_101_tlut_wheel_1: + symbol: gKartDK101TlutWheel1 + type: texture + offset: 0x9A714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_101_tlut_wheel_2: + symbol: gKartDK101TlutWheel2 + type: texture + offset: 0x9A794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_101_tlut_wheel_3: + symbol: gKartDK101TlutWheel3 + type: texture + offset: 0x9A814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_102_tlut_wheel_0: + symbol: gKartDK102TlutWheel0 + type: texture + offset: 0x9A894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_102_tlut_wheel_1: + symbol: gKartDK102TlutWheel1 + type: texture + offset: 0x9A914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_102_tlut_wheel_2: + symbol: gKartDK102TlutWheel2 + type: texture + offset: 0x9A994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_102_tlut_wheel_3: + symbol: gKartDK102TlutWheel3 + type: texture + offset: 0x9AA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_103_tlut_wheel_0: + symbol: gKartDK103TlutWheel0 + type: texture + offset: 0x9AA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_103_tlut_wheel_1: + symbol: gKartDK103TlutWheel1 + type: texture + offset: 0x9AB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_103_tlut_wheel_2: + symbol: gKartDK103TlutWheel2 + type: texture + offset: 0x9AB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_103_tlut_wheel_3: + symbol: gKartDK103TlutWheel3 + type: texture + offset: 0x9AC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_104_tlut_wheel_0: + symbol: gKartDK104TlutWheel0 + type: texture + offset: 0x9AC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_104_tlut_wheel_1: + symbol: gKartDK104TlutWheel1 + type: texture + offset: 0x9AD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_104_tlut_wheel_2: + symbol: gKartDK104TlutWheel2 + type: texture + offset: 0x9AD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_104_tlut_wheel_3: + symbol: gKartDK104TlutWheel3 + type: texture + offset: 0x9AE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_105_tlut_wheel_0: + symbol: gKartDK105TlutWheel0 + type: texture + offset: 0x9AE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_105_tlut_wheel_1: + symbol: gKartDK105TlutWheel1 + type: texture + offset: 0x9AF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_105_tlut_wheel_2: + symbol: gKartDK105TlutWheel2 + type: texture + offset: 0x9AF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_105_tlut_wheel_3: + symbol: gKartDK105TlutWheel3 + type: texture + offset: 0x9B014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_106_tlut_wheel_0: + symbol: gKartDK106TlutWheel0 + type: texture + offset: 0x9B094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_106_tlut_wheel_1: + symbol: gKartDK106TlutWheel1 + type: texture + offset: 0x9B114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_106_tlut_wheel_2: + symbol: gKartDK106TlutWheel2 + type: texture + offset: 0x9B194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_106_tlut_wheel_3: + symbol: gKartDK106TlutWheel3 + type: texture + offset: 0x9B214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_107_tlut_wheel_0: + symbol: gKartDK107TlutWheel0 + type: texture + offset: 0x9B294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_107_tlut_wheel_1: + symbol: gKartDK107TlutWheel1 + type: texture + offset: 0x9B314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_107_tlut_wheel_2: + symbol: gKartDK107TlutWheel2 + type: texture + offset: 0x9B394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_107_tlut_wheel_3: + symbol: gKartDK107TlutWheel3 + type: texture + offset: 0x9B414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_108_tlut_wheel_0: + symbol: gKartDK108TlutWheel0 + type: texture + offset: 0x9B494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_108_tlut_wheel_1: + symbol: gKartDK108TlutWheel1 + type: texture + offset: 0x9B514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_108_tlut_wheel_2: + symbol: gKartDK108TlutWheel2 + type: texture + offset: 0x9B594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_108_tlut_wheel_3: + symbol: gKartDK108TlutWheel3 + type: texture + offset: 0x9B614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_109_tlut_wheel_0: + symbol: gKartDK109TlutWheel0 + type: texture + offset: 0x9B694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_109_tlut_wheel_1: + symbol: gKartDK109TlutWheel1 + type: texture + offset: 0x9B714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_109_tlut_wheel_2: + symbol: gKartDK109TlutWheel2 + type: texture + offset: 0x9B794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_109_tlut_wheel_3: + symbol: gKartDK109TlutWheel3 + type: texture + offset: 0x9B814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_110_tlut_wheel_0: + symbol: gKartDK110TlutWheel0 + type: texture + offset: 0x9B894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_110_tlut_wheel_1: + symbol: gKartDK110TlutWheel1 + type: texture + offset: 0x9B914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_110_tlut_wheel_2: + symbol: gKartDK110TlutWheel2 + type: texture + offset: 0x9B994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_110_tlut_wheel_3: + symbol: gKartDK110TlutWheel3 + type: texture + offset: 0x9BA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_111_tlut_wheel_0: + symbol: gKartDK111TlutWheel0 + type: texture + offset: 0x9BA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_111_tlut_wheel_1: + symbol: gKartDK111TlutWheel1 + type: texture + offset: 0x9BB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_111_tlut_wheel_2: + symbol: gKartDK111TlutWheel2 + type: texture + offset: 0x9BB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_111_tlut_wheel_3: + symbol: gKartDK111TlutWheel3 + type: texture + offset: 0x9BC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_112_tlut_wheel_0: + symbol: gKartDK112TlutWheel0 + type: texture + offset: 0x9BC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_112_tlut_wheel_1: + symbol: gKartDK112TlutWheel1 + type: texture + offset: 0x9BD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_112_tlut_wheel_2: + symbol: gKartDK112TlutWheel2 + type: texture + offset: 0x9BD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_112_tlut_wheel_3: + symbol: gKartDK112TlutWheel3 + type: texture + offset: 0x9BE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_113_tlut_wheel_0: + symbol: gKartDK113TlutWheel0 + type: texture + offset: 0x9BE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_113_tlut_wheel_1: + symbol: gKartDK113TlutWheel1 + type: texture + offset: 0x9BF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_113_tlut_wheel_2: + symbol: gKartDK113TlutWheel2 + type: texture + offset: 0x9BF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_113_tlut_wheel_3: + symbol: gKartDK113TlutWheel3 + type: texture + offset: 0x9C014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_114_tlut_wheel_0: + symbol: gKartDK114TlutWheel0 + type: texture + offset: 0x9C094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_114_tlut_wheel_1: + symbol: gKartDK114TlutWheel1 + type: texture + offset: 0x9C114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_114_tlut_wheel_2: + symbol: gKartDK114TlutWheel2 + type: texture + offset: 0x9C194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_114_tlut_wheel_3: + symbol: gKartDK114TlutWheel3 + type: texture + offset: 0x9C214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_115_tlut_wheel_0: + symbol: gKartDK115TlutWheel0 + type: texture + offset: 0x9C294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_115_tlut_wheel_1: + symbol: gKartDK115TlutWheel1 + type: texture + offset: 0x9C314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_115_tlut_wheel_2: + symbol: gKartDK115TlutWheel2 + type: texture + offset: 0x9C394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_115_tlut_wheel_3: + symbol: gKartDK115TlutWheel3 + type: texture + offset: 0x9C414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_116_tlut_wheel_0: + symbol: gKartDK116TlutWheel0 + type: texture + offset: 0x9C494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_116_tlut_wheel_1: + symbol: gKartDK116TlutWheel1 + type: texture + offset: 0x9C514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_116_tlut_wheel_2: + symbol: gKartDK116TlutWheel2 + type: texture + offset: 0x9C594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_116_tlut_wheel_3: + symbol: gKartDK116TlutWheel3 + type: texture + offset: 0x9C614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_117_tlut_wheel_0: + symbol: gKartDK117TlutWheel0 + type: texture + offset: 0x9C694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_117_tlut_wheel_1: + symbol: gKartDK117TlutWheel1 + type: texture + offset: 0x9C714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_117_tlut_wheel_2: + symbol: gKartDK117TlutWheel2 + type: texture + offset: 0x9C794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_117_tlut_wheel_3: + symbol: gKartDK117TlutWheel3 + type: texture + offset: 0x9C814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_118_tlut_wheel_0: + symbol: gKartDK118TlutWheel0 + type: texture + offset: 0x9C894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_118_tlut_wheel_1: + symbol: gKartDK118TlutWheel1 + type: texture + offset: 0x9C914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_118_tlut_wheel_2: + symbol: gKartDK118TlutWheel2 + type: texture + offset: 0x9C994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_118_tlut_wheel_3: + symbol: gKartDK118TlutWheel3 + type: texture + offset: 0x9CA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_119_tlut_wheel_0: + symbol: gKartDK119TlutWheel0 + type: texture + offset: 0x9CA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_119_tlut_wheel_1: + symbol: gKartDK119TlutWheel1 + type: texture + offset: 0x9CB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_119_tlut_wheel_2: + symbol: gKartDK119TlutWheel2 + type: texture + offset: 0x9CB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_119_tlut_wheel_3: + symbol: gKartDK119TlutWheel3 + type: texture + offset: 0x9CC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_120_tlut_wheel_0: + symbol: gKartDK120TlutWheel0 + type: texture + offset: 0x9CC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_120_tlut_wheel_1: + symbol: gKartDK120TlutWheel1 + type: texture + offset: 0x9CD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_120_tlut_wheel_2: + symbol: gKartDK120TlutWheel2 + type: texture + offset: 0x9CD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_120_tlut_wheel_3: + symbol: gKartDK120TlutWheel3 + type: texture + offset: 0x9CE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_121_tlut_wheel_0: + symbol: gKartDK121TlutWheel0 + type: texture + offset: 0x9CE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_121_tlut_wheel_1: + symbol: gKartDK121TlutWheel1 + type: texture + offset: 0x9CF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_121_tlut_wheel_2: + symbol: gKartDK121TlutWheel2 + type: texture + offset: 0x9CF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_121_tlut_wheel_3: + symbol: gKartDK121TlutWheel3 + type: texture + offset: 0x9D014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_122_tlut_wheel_0: + symbol: gKartDK122TlutWheel0 + type: texture + offset: 0x9D094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_122_tlut_wheel_1: + symbol: gKartDK122TlutWheel1 + type: texture + offset: 0x9D114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_122_tlut_wheel_2: + symbol: gKartDK122TlutWheel2 + type: texture + offset: 0x9D194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_122_tlut_wheel_3: + symbol: gKartDK122TlutWheel3 + type: texture + offset: 0x9D214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_123_tlut_wheel_0: + symbol: gKartDK123TlutWheel0 + type: texture + offset: 0x9D294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_123_tlut_wheel_1: + symbol: gKartDK123TlutWheel1 + type: texture + offset: 0x9D314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_123_tlut_wheel_2: + symbol: gKartDK123TlutWheel2 + type: texture + offset: 0x9D394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_123_tlut_wheel_3: + symbol: gKartDK123TlutWheel3 + type: texture + offset: 0x9D414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_124_tlut_wheel_0: + symbol: gKartDK124TlutWheel0 + type: texture + offset: 0x9D494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_124_tlut_wheel_1: + symbol: gKartDK124TlutWheel1 + type: texture + offset: 0x9D514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_124_tlut_wheel_2: + symbol: gKartDK124TlutWheel2 + type: texture + offset: 0x9D594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_124_tlut_wheel_3: + symbol: gKartDK124TlutWheel3 + type: texture + offset: 0x9D614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_125_tlut_wheel_0: + symbol: gKartDK125TlutWheel0 + type: texture + offset: 0x9D694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_125_tlut_wheel_1: + symbol: gKartDK125TlutWheel1 + type: texture + offset: 0x9D714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_125_tlut_wheel_2: + symbol: gKartDK125TlutWheel2 + type: texture + offset: 0x9D794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_125_tlut_wheel_3: + symbol: gKartDK125TlutWheel3 + type: texture + offset: 0x9D814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_126_tlut_wheel_0: + symbol: gKartDK126TlutWheel0 + type: texture + offset: 0x9D894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_126_tlut_wheel_1: + symbol: gKartDK126TlutWheel1 + type: texture + offset: 0x9D914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_126_tlut_wheel_2: + symbol: gKartDK126TlutWheel2 + type: texture + offset: 0x9D994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_126_tlut_wheel_3: + symbol: gKartDK126TlutWheel3 + type: texture + offset: 0x9DA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_127_tlut_wheel_0: + symbol: gKartDK127TlutWheel0 + type: texture + offset: 0x9DA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_127_tlut_wheel_1: + symbol: gKartDK127TlutWheel1 + type: texture + offset: 0x9DB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_127_tlut_wheel_2: + symbol: gKartDK127TlutWheel2 + type: texture + offset: 0x9DB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_127_tlut_wheel_3: + symbol: gKartDK127TlutWheel3 + type: texture + offset: 0x9DC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_128_tlut_wheel_0: + symbol: gKartDK128TlutWheel0 + type: texture + offset: 0x9DC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_128_tlut_wheel_1: + symbol: gKartDK128TlutWheel1 + type: texture + offset: 0x9DD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_128_tlut_wheel_2: + symbol: gKartDK128TlutWheel2 + type: texture + offset: 0x9DD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_128_tlut_wheel_3: + symbol: gKartDK128TlutWheel3 + type: texture + offset: 0x9DE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_129_tlut_wheel_0: + symbol: gKartDK129TlutWheel0 + type: texture + offset: 0x9DE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_129_tlut_wheel_1: + symbol: gKartDK129TlutWheel1 + type: texture + offset: 0x9DF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_129_tlut_wheel_2: + symbol: gKartDK129TlutWheel2 + type: texture + offset: 0x9DF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_129_tlut_wheel_3: + symbol: gKartDK129TlutWheel3 + type: texture + offset: 0x9E014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_130_tlut_wheel_0: + symbol: gKartDK130TlutWheel0 + type: texture + offset: 0x9E094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_130_tlut_wheel_1: + symbol: gKartDK130TlutWheel1 + type: texture + offset: 0x9E114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_130_tlut_wheel_2: + symbol: gKartDK130TlutWheel2 + type: texture + offset: 0x9E194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_130_tlut_wheel_3: + symbol: gKartDK130TlutWheel3 + type: texture + offset: 0x9E214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_131_tlut_wheel_0: + symbol: gKartDK131TlutWheel0 + type: texture + offset: 0x9E294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_131_tlut_wheel_1: + symbol: gKartDK131TlutWheel1 + type: texture + offset: 0x9E314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_131_tlut_wheel_2: + symbol: gKartDK131TlutWheel2 + type: texture + offset: 0x9E394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_131_tlut_wheel_3: + symbol: gKartDK131TlutWheel3 + type: texture + offset: 0x9E414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_132_tlut_wheel_0: + symbol: gKartDK132TlutWheel0 + type: texture + offset: 0x9E494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_132_tlut_wheel_1: + symbol: gKartDK132TlutWheel1 + type: texture + offset: 0x9E514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_132_tlut_wheel_2: + symbol: gKartDK132TlutWheel2 + type: texture + offset: 0x9E594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_132_tlut_wheel_3: + symbol: gKartDK132TlutWheel3 + type: texture + offset: 0x9E614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_133_tlut_wheel_0: + symbol: gKartDK133TlutWheel0 + type: texture + offset: 0x9E694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_133_tlut_wheel_1: + symbol: gKartDK133TlutWheel1 + type: texture + offset: 0x9E714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_133_tlut_wheel_2: + symbol: gKartDK133TlutWheel2 + type: texture + offset: 0x9E794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_133_tlut_wheel_3: + symbol: gKartDK133TlutWheel3 + type: texture + offset: 0x9E814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_134_tlut_wheel_0: + symbol: gKartDK134TlutWheel0 + type: texture + offset: 0x9E894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_134_tlut_wheel_1: + symbol: gKartDK134TlutWheel1 + type: texture + offset: 0x9E914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_134_tlut_wheel_2: + symbol: gKartDK134TlutWheel2 + type: texture + offset: 0x9E994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_134_tlut_wheel_3: + symbol: gKartDK134TlutWheel3 + type: texture + offset: 0x9EA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_135_tlut_wheel_0: + symbol: gKartDK135TlutWheel0 + type: texture + offset: 0x9EA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_135_tlut_wheel_1: + symbol: gKartDK135TlutWheel1 + type: texture + offset: 0x9EB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_135_tlut_wheel_2: + symbol: gKartDK135TlutWheel2 + type: texture + offset: 0x9EB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_135_tlut_wheel_3: + symbol: gKartDK135TlutWheel3 + type: texture + offset: 0x9EC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_136_tlut_wheel_0: + symbol: gKartDK136TlutWheel0 + type: texture + offset: 0x9EC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_136_tlut_wheel_1: + symbol: gKartDK136TlutWheel1 + type: texture + offset: 0x9ED14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_136_tlut_wheel_2: + symbol: gKartDK136TlutWheel2 + type: texture + offset: 0x9ED94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_136_tlut_wheel_3: + symbol: gKartDK136TlutWheel3 + type: texture + offset: 0x9EE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_137_tlut_wheel_0: + symbol: gKartDK137TlutWheel0 + type: texture + offset: 0x9EE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_137_tlut_wheel_1: + symbol: gKartDK137TlutWheel1 + type: texture + offset: 0x9EF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_137_tlut_wheel_2: + symbol: gKartDK137TlutWheel2 + type: texture + offset: 0x9EF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_137_tlut_wheel_3: + symbol: gKartDK137TlutWheel3 + type: texture + offset: 0x9F014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_138_tlut_wheel_0: + symbol: gKartDK138TlutWheel0 + type: texture + offset: 0x9F094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_138_tlut_wheel_1: + symbol: gKartDK138TlutWheel1 + type: texture + offset: 0x9F114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_138_tlut_wheel_2: + symbol: gKartDK138TlutWheel2 + type: texture + offset: 0x9F194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_138_tlut_wheel_3: + symbol: gKartDK138TlutWheel3 + type: texture + offset: 0x9F214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_139_tlut_wheel_0: + symbol: gKartDK139TlutWheel0 + type: texture + offset: 0x9F294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_139_tlut_wheel_1: + symbol: gKartDK139TlutWheel1 + type: texture + offset: 0x9F314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_139_tlut_wheel_2: + symbol: gKartDK139TlutWheel2 + type: texture + offset: 0x9F394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_139_tlut_wheel_3: + symbol: gKartDK139TlutWheel3 + type: texture + offset: 0x9F414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_140_tlut_wheel_0: + symbol: gKartDK140TlutWheel0 + type: texture + offset: 0x9F494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_140_tlut_wheel_1: + symbol: gKartDK140TlutWheel1 + type: texture + offset: 0x9F514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_140_tlut_wheel_2: + symbol: gKartDK140TlutWheel2 + type: texture + offset: 0x9F594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_140_tlut_wheel_3: + symbol: gKartDK140TlutWheel3 + type: texture + offset: 0x9F614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_141_tlut_wheel_0: + symbol: gKartDK141TlutWheel0 + type: texture + offset: 0x9F694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_141_tlut_wheel_1: + symbol: gKartDK141TlutWheel1 + type: texture + offset: 0x9F714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_141_tlut_wheel_2: + symbol: gKartDK141TlutWheel2 + type: texture + offset: 0x9F794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_141_tlut_wheel_3: + symbol: gKartDK141TlutWheel3 + type: texture + offset: 0x9F814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_142_tlut_wheel_0: + symbol: gKartDK142TlutWheel0 + type: texture + offset: 0x9F894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_142_tlut_wheel_1: + symbol: gKartDK142TlutWheel1 + type: texture + offset: 0x9F914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_142_tlut_wheel_2: + symbol: gKartDK142TlutWheel2 + type: texture + offset: 0x9F994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_142_tlut_wheel_3: + symbol: gKartDK142TlutWheel3 + type: texture + offset: 0x9FA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_143_tlut_wheel_0: + symbol: gKartDK143TlutWheel0 + type: texture + offset: 0x9FA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_143_tlut_wheel_1: + symbol: gKartDK143TlutWheel1 + type: texture + offset: 0x9FB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_143_tlut_wheel_2: + symbol: gKartDK143TlutWheel2 + type: texture + offset: 0x9FB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_143_tlut_wheel_3: + symbol: gKartDK143TlutWheel3 + type: texture + offset: 0x9FC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_144_tlut_wheel_0: + symbol: gKartDK144TlutWheel0 + type: texture + offset: 0x9FC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_144_tlut_wheel_1: + symbol: gKartDK144TlutWheel1 + type: texture + offset: 0x9FD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_144_tlut_wheel_2: + symbol: gKartDK144TlutWheel2 + type: texture + offset: 0x9FD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_144_tlut_wheel_3: + symbol: gKartDK144TlutWheel3 + type: texture + offset: 0x9FE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_145_tlut_wheel_0: + symbol: gKartDK145TlutWheel0 + type: texture + offset: 0x9FE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_145_tlut_wheel_1: + symbol: gKartDK145TlutWheel1 + type: texture + offset: 0x9FF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_145_tlut_wheel_2: + symbol: gKartDK145TlutWheel2 + type: texture + offset: 0x9FF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_145_tlut_wheel_3: + symbol: gKartDK145TlutWheel3 + type: texture + offset: 0xA0014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_146_tlut_wheel_0: + symbol: gKartDK146TlutWheel0 + type: texture + offset: 0xA0094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_146_tlut_wheel_1: + symbol: gKartDK146TlutWheel1 + type: texture + offset: 0xA0114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_146_tlut_wheel_2: + symbol: gKartDK146TlutWheel2 + type: texture + offset: 0xA0194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_146_tlut_wheel_3: + symbol: gKartDK146TlutWheel3 + type: texture + offset: 0xA0214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_147_tlut_wheel_0: + symbol: gKartDK147TlutWheel0 + type: texture + offset: 0xA0294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_147_tlut_wheel_1: + symbol: gKartDK147TlutWheel1 + type: texture + offset: 0xA0314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_147_tlut_wheel_2: + symbol: gKartDK147TlutWheel2 + type: texture + offset: 0xA0394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_147_tlut_wheel_3: + symbol: gKartDK147TlutWheel3 + type: texture + offset: 0xA0414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_148_tlut_wheel_0: + symbol: gKartDK148TlutWheel0 + type: texture + offset: 0xA0494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_148_tlut_wheel_1: + symbol: gKartDK148TlutWheel1 + type: texture + offset: 0xA0514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_148_tlut_wheel_2: + symbol: gKartDK148TlutWheel2 + type: texture + offset: 0xA0594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_148_tlut_wheel_3: + symbol: gKartDK148TlutWheel3 + type: texture + offset: 0xA0614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_149_tlut_wheel_0: + symbol: gKartDK149TlutWheel0 + type: texture + offset: 0xA0694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_149_tlut_wheel_1: + symbol: gKartDK149TlutWheel1 + type: texture + offset: 0xA0714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_149_tlut_wheel_2: + symbol: gKartDK149TlutWheel2 + type: texture + offset: 0xA0794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_149_tlut_wheel_3: + symbol: gKartDK149TlutWheel3 + type: texture + offset: 0xA0814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_150_tlut_wheel_0: + symbol: gKartDK150TlutWheel0 + type: texture + offset: 0xA0894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_150_tlut_wheel_1: + symbol: gKartDK150TlutWheel1 + type: texture + offset: 0xA0914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_150_tlut_wheel_2: + symbol: gKartDK150TlutWheel2 + type: texture + offset: 0xA0994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_150_tlut_wheel_3: + symbol: gKartDK150TlutWheel3 + type: texture + offset: 0xA0A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_151_tlut_wheel_0: + symbol: gKartDK151TlutWheel0 + type: texture + offset: 0xA0A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_151_tlut_wheel_1: + symbol: gKartDK151TlutWheel1 + type: texture + offset: 0xA0B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_151_tlut_wheel_2: + symbol: gKartDK151TlutWheel2 + type: texture + offset: 0xA0B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_151_tlut_wheel_3: + symbol: gKartDK151TlutWheel3 + type: texture + offset: 0xA0C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_152_tlut_wheel_0: + symbol: gKartDK152TlutWheel0 + type: texture + offset: 0xA0C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_152_tlut_wheel_1: + symbol: gKartDK152TlutWheel1 + type: texture + offset: 0xA0D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_152_tlut_wheel_2: + symbol: gKartDK152TlutWheel2 + type: texture + offset: 0xA0D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_152_tlut_wheel_3: + symbol: gKartDK152TlutWheel3 + type: texture + offset: 0xA0E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_153_tlut_wheel_0: + symbol: gKartDK153TlutWheel0 + type: texture + offset: 0xA0E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_153_tlut_wheel_1: + symbol: gKartDK153TlutWheel1 + type: texture + offset: 0xA0F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_153_tlut_wheel_2: + symbol: gKartDK153TlutWheel2 + type: texture + offset: 0xA0F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_153_tlut_wheel_3: + symbol: gKartDK153TlutWheel3 + type: texture + offset: 0xA1014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_154_tlut_wheel_0: + symbol: gKartDK154TlutWheel0 + type: texture + offset: 0xA1094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_154_tlut_wheel_1: + symbol: gKartDK154TlutWheel1 + type: texture + offset: 0xA1114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_154_tlut_wheel_2: + symbol: gKartDK154TlutWheel2 + type: texture + offset: 0xA1194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_154_tlut_wheel_3: + symbol: gKartDK154TlutWheel3 + type: texture + offset: 0xA1214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_155_tlut_wheel_0: + symbol: gKartDK155TlutWheel0 + type: texture + offset: 0xA1294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_155_tlut_wheel_1: + symbol: gKartDK155TlutWheel1 + type: texture + offset: 0xA1314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_155_tlut_wheel_2: + symbol: gKartDK155TlutWheel2 + type: texture + offset: 0xA1394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_155_tlut_wheel_3: + symbol: gKartDK155TlutWheel3 + type: texture + offset: 0xA1414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_156_tlut_wheel_0: + symbol: gKartDK156TlutWheel0 + type: texture + offset: 0xA1494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_156_tlut_wheel_1: + symbol: gKartDK156TlutWheel1 + type: texture + offset: 0xA1514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_156_tlut_wheel_2: + symbol: gKartDK156TlutWheel2 + type: texture + offset: 0xA1594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_156_tlut_wheel_3: + symbol: gKartDK156TlutWheel3 + type: texture + offset: 0xA1614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_157_tlut_wheel_0: + symbol: gKartDK157TlutWheel0 + type: texture + offset: 0xA1694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_157_tlut_wheel_1: + symbol: gKartDK157TlutWheel1 + type: texture + offset: 0xA1714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_157_tlut_wheel_2: + symbol: gKartDK157TlutWheel2 + type: texture + offset: 0xA1794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_157_tlut_wheel_3: + symbol: gKartDK157TlutWheel3 + type: texture + offset: 0xA1814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_158_tlut_wheel_0: + symbol: gKartDK158TlutWheel0 + type: texture + offset: 0xA1894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_158_tlut_wheel_1: + symbol: gKartDK158TlutWheel1 + type: texture + offset: 0xA1914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_158_tlut_wheel_2: + symbol: gKartDK158TlutWheel2 + type: texture + offset: 0xA1994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_158_tlut_wheel_3: + symbol: gKartDK158TlutWheel3 + type: texture + offset: 0xA1A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_159_tlut_wheel_0: + symbol: gKartDK159TlutWheel0 + type: texture + offset: 0xA1A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_159_tlut_wheel_1: + symbol: gKartDK159TlutWheel1 + type: texture + offset: 0xA1B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_159_tlut_wheel_2: + symbol: gKartDK159TlutWheel2 + type: texture + offset: 0xA1B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_159_tlut_wheel_3: + symbol: gKartDK159TlutWheel3 + type: texture + offset: 0xA1C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_160_tlut_wheel_0: + symbol: gKartDK160TlutWheel0 + type: texture + offset: 0xA1C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_160_tlut_wheel_1: + symbol: gKartDK160TlutWheel1 + type: texture + offset: 0xA1D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_160_tlut_wheel_2: + symbol: gKartDK160TlutWheel2 + type: texture + offset: 0xA1D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_160_tlut_wheel_3: + symbol: gKartDK160TlutWheel3 + type: texture + offset: 0xA1E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_161_tlut_wheel_0: + symbol: gKartDK161TlutWheel0 + type: texture + offset: 0xA1E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_161_tlut_wheel_1: + symbol: gKartDK161TlutWheel1 + type: texture + offset: 0xA1F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_161_tlut_wheel_2: + symbol: gKartDK161TlutWheel2 + type: texture + offset: 0xA1F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_161_tlut_wheel_3: + symbol: gKartDK161TlutWheel3 + type: texture + offset: 0xA2014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_162_tlut_wheel_0: + symbol: gKartDK162TlutWheel0 + type: texture + offset: 0xA2094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_162_tlut_wheel_1: + symbol: gKartDK162TlutWheel1 + type: texture + offset: 0xA2114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_162_tlut_wheel_2: + symbol: gKartDK162TlutWheel2 + type: texture + offset: 0xA2194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_162_tlut_wheel_3: + symbol: gKartDK162TlutWheel3 + type: texture + offset: 0xA2214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_163_tlut_wheel_0: + symbol: gKartDK163TlutWheel0 + type: texture + offset: 0xA2294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_163_tlut_wheel_1: + symbol: gKartDK163TlutWheel1 + type: texture + offset: 0xA2314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_163_tlut_wheel_2: + symbol: gKartDK163TlutWheel2 + type: texture + offset: 0xA2394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_163_tlut_wheel_3: + symbol: gKartDK163TlutWheel3 + type: texture + offset: 0xA2414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_164_tlut_wheel_0: + symbol: gKartDK164TlutWheel0 + type: texture + offset: 0xA2494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_164_tlut_wheel_1: + symbol: gKartDK164TlutWheel1 + type: texture + offset: 0xA2514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_164_tlut_wheel_2: + symbol: gKartDK164TlutWheel2 + type: texture + offset: 0xA2594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_164_tlut_wheel_3: + symbol: gKartDK164TlutWheel3 + type: texture + offset: 0xA2614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_165_tlut_wheel_0: + symbol: gKartDK165TlutWheel0 + type: texture + offset: 0xA2694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_165_tlut_wheel_1: + symbol: gKartDK165TlutWheel1 + type: texture + offset: 0xA2714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_165_tlut_wheel_2: + symbol: gKartDK165TlutWheel2 + type: texture + offset: 0xA2794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_165_tlut_wheel_3: + symbol: gKartDK165TlutWheel3 + type: texture + offset: 0xA2814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_166_tlut_wheel_0: + symbol: gKartDK166TlutWheel0 + type: texture + offset: 0xA2894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_166_tlut_wheel_1: + symbol: gKartDK166TlutWheel1 + type: texture + offset: 0xA2914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_166_tlut_wheel_2: + symbol: gKartDK166TlutWheel2 + type: texture + offset: 0xA2994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_166_tlut_wheel_3: + symbol: gKartDK166TlutWheel3 + type: texture + offset: 0xA2A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_167_tlut_wheel_0: + symbol: gKartDK167TlutWheel0 + type: texture + offset: 0xA2A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_167_tlut_wheel_1: + symbol: gKartDK167TlutWheel1 + type: texture + offset: 0xA2B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_167_tlut_wheel_2: + symbol: gKartDK167TlutWheel2 + type: texture + offset: 0xA2B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_167_tlut_wheel_3: + symbol: gKartDK167TlutWheel3 + type: texture + offset: 0xA2C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_168_tlut_wheel_0: + symbol: gKartDK168TlutWheel0 + type: texture + offset: 0xA2C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_168_tlut_wheel_1: + symbol: gKartDK168TlutWheel1 + type: texture + offset: 0xA2D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_168_tlut_wheel_2: + symbol: gKartDK168TlutWheel2 + type: texture + offset: 0xA2D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_168_tlut_wheel_3: + symbol: gKartDK168TlutWheel3 + type: texture + offset: 0xA2E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_169_tlut_wheel_0: + symbol: gKartDK169TlutWheel0 + type: texture + offset: 0xA2E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_169_tlut_wheel_1: + symbol: gKartDK169TlutWheel1 + type: texture + offset: 0xA2F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_169_tlut_wheel_2: + symbol: gKartDK169TlutWheel2 + type: texture + offset: 0xA2F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_169_tlut_wheel_3: + symbol: gKartDK169TlutWheel3 + type: texture + offset: 0xA3014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_170_tlut_wheel_0: + symbol: gKartDK170TlutWheel0 + type: texture + offset: 0xA3094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_170_tlut_wheel_1: + symbol: gKartDK170TlutWheel1 + type: texture + offset: 0xA3114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_170_tlut_wheel_2: + symbol: gKartDK170TlutWheel2 + type: texture + offset: 0xA3194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_170_tlut_wheel_3: + symbol: gKartDK170TlutWheel3 + type: texture + offset: 0xA3214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_171_tlut_wheel_0: + symbol: gKartDK171TlutWheel0 + type: texture + offset: 0xA3294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_171_tlut_wheel_1: + symbol: gKartDK171TlutWheel1 + type: texture + offset: 0xA3314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_171_tlut_wheel_2: + symbol: gKartDK171TlutWheel2 + type: texture + offset: 0xA3394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_171_tlut_wheel_3: + symbol: gKartDK171TlutWheel3 + type: texture + offset: 0xA3414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_172_tlut_wheel_0: + symbol: gKartDK172TlutWheel0 + type: texture + offset: 0xA3494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_172_tlut_wheel_1: + symbol: gKartDK172TlutWheel1 + type: texture + offset: 0xA3514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_172_tlut_wheel_2: + symbol: gKartDK172TlutWheel2 + type: texture + offset: 0xA3594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_172_tlut_wheel_3: + symbol: gKartDK172TlutWheel3 + type: texture + offset: 0xA3614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_173_tlut_wheel_0: + symbol: gKartDK173TlutWheel0 + type: texture + offset: 0xA3694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_173_tlut_wheel_1: + symbol: gKartDK173TlutWheel1 + type: texture + offset: 0xA3714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_173_tlut_wheel_2: + symbol: gKartDK173TlutWheel2 + type: texture + offset: 0xA3794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_173_tlut_wheel_3: + symbol: gKartDK173TlutWheel3 + type: texture + offset: 0xA3814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_174_tlut_wheel_0: + symbol: gKartDK174TlutWheel0 + type: texture + offset: 0xA3894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_174_tlut_wheel_1: + symbol: gKartDK174TlutWheel1 + type: texture + offset: 0xA3914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_174_tlut_wheel_2: + symbol: gKartDK174TlutWheel2 + type: texture + offset: 0xA3994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_174_tlut_wheel_3: + symbol: gKartDK174TlutWheel3 + type: texture + offset: 0xA3A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_175_tlut_wheel_0: + symbol: gKartDK175TlutWheel0 + type: texture + offset: 0xA3A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_175_tlut_wheel_1: + symbol: gKartDK175TlutWheel1 + type: texture + offset: 0xA3B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_175_tlut_wheel_2: + symbol: gKartDK175TlutWheel2 + type: texture + offset: 0xA3B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_175_tlut_wheel_3: + symbol: gKartDK175TlutWheel3 + type: texture + offset: 0xA3C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_176_tlut_wheel_0: + symbol: gKartDK176TlutWheel0 + type: texture + offset: 0xA3C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_176_tlut_wheel_1: + symbol: gKartDK176TlutWheel1 + type: texture + offset: 0xA3D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_176_tlut_wheel_2: + symbol: gKartDK176TlutWheel2 + type: texture + offset: 0xA3D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_176_tlut_wheel_3: + symbol: gKartDK176TlutWheel3 + type: texture + offset: 0xA3E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_177_tlut_wheel_0: + symbol: gKartDK177TlutWheel0 + type: texture + offset: 0xA3E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_177_tlut_wheel_1: + symbol: gKartDK177TlutWheel1 + type: texture + offset: 0xA3F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_177_tlut_wheel_2: + symbol: gKartDK177TlutWheel2 + type: texture + offset: 0xA3F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_177_tlut_wheel_3: + symbol: gKartDK177TlutWheel3 + type: texture + offset: 0xA4014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_178_tlut_wheel_0: + symbol: gKartDK178TlutWheel0 + type: texture + offset: 0xA4094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_178_tlut_wheel_1: + symbol: gKartDK178TlutWheel1 + type: texture + offset: 0xA4114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_178_tlut_wheel_2: + symbol: gKartDK178TlutWheel2 + type: texture + offset: 0xA4194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_178_tlut_wheel_3: + symbol: gKartDK178TlutWheel3 + type: texture + offset: 0xA4214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_179_tlut_wheel_0: + symbol: gKartDK179TlutWheel0 + type: texture + offset: 0xA4294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_179_tlut_wheel_1: + symbol: gKartDK179TlutWheel1 + type: texture + offset: 0xA4314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_179_tlut_wheel_2: + symbol: gKartDK179TlutWheel2 + type: texture + offset: 0xA4394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_179_tlut_wheel_3: + symbol: gKartDK179TlutWheel3 + type: texture + offset: 0xA4414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_180_tlut_wheel_0: + symbol: gKartDK180TlutWheel0 + type: texture + offset: 0xA4494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_180_tlut_wheel_1: + symbol: gKartDK180TlutWheel1 + type: texture + offset: 0xA4514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_180_tlut_wheel_2: + symbol: gKartDK180TlutWheel2 + type: texture + offset: 0xA4594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_180_tlut_wheel_3: + symbol: gKartDK180TlutWheel3 + type: texture + offset: 0xA4614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_181_tlut_wheel_0: + symbol: gKartDK181TlutWheel0 + type: texture + offset: 0xA4694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_181_tlut_wheel_1: + symbol: gKartDK181TlutWheel1 + type: texture + offset: 0xA4714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_181_tlut_wheel_2: + symbol: gKartDK181TlutWheel2 + type: texture + offset: 0xA4794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_181_tlut_wheel_3: + symbol: gKartDK181TlutWheel3 + type: texture + offset: 0xA4814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_182_tlut_wheel_0: + symbol: gKartDK182TlutWheel0 + type: texture + offset: 0xA4894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_182_tlut_wheel_1: + symbol: gKartDK182TlutWheel1 + type: texture + offset: 0xA4914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_182_tlut_wheel_2: + symbol: gKartDK182TlutWheel2 + type: texture + offset: 0xA4994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_182_tlut_wheel_3: + symbol: gKartDK182TlutWheel3 + type: texture + offset: 0xA4A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_183_tlut_wheel_0: + symbol: gKartDK183TlutWheel0 + type: texture + offset: 0xA4A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_183_tlut_wheel_1: + symbol: gKartDK183TlutWheel1 + type: texture + offset: 0xA4B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_183_tlut_wheel_2: + symbol: gKartDK183TlutWheel2 + type: texture + offset: 0xA4B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_183_tlut_wheel_3: + symbol: gKartDK183TlutWheel3 + type: texture + offset: 0xA4C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_184_tlut_wheel_0: + symbol: gKartDK184TlutWheel0 + type: texture + offset: 0xA4C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_184_tlut_wheel_1: + symbol: gKartDK184TlutWheel1 + type: texture + offset: 0xA4D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_184_tlut_wheel_2: + symbol: gKartDK184TlutWheel2 + type: texture + offset: 0xA4D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_184_tlut_wheel_3: + symbol: gKartDK184TlutWheel3 + type: texture + offset: 0xA4E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_185_tlut_wheel_0: + symbol: gKartDK185TlutWheel0 + type: texture + offset: 0xA4E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_185_tlut_wheel_1: + symbol: gKartDK185TlutWheel1 + type: texture + offset: 0xA4F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_185_tlut_wheel_2: + symbol: gKartDK185TlutWheel2 + type: texture + offset: 0xA4F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_185_tlut_wheel_3: + symbol: gKartDK185TlutWheel3 + type: texture + offset: 0xA5014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_186_tlut_wheel_0: + symbol: gKartDK186TlutWheel0 + type: texture + offset: 0xA5094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_186_tlut_wheel_1: + symbol: gKartDK186TlutWheel1 + type: texture + offset: 0xA5114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_186_tlut_wheel_2: + symbol: gKartDK186TlutWheel2 + type: texture + offset: 0xA5194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_186_tlut_wheel_3: + symbol: gKartDK186TlutWheel3 + type: texture + offset: 0xA5214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_187_tlut_wheel_0: + symbol: gKartDK187TlutWheel0 + type: texture + offset: 0xA5294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_187_tlut_wheel_1: + symbol: gKartDK187TlutWheel1 + type: texture + offset: 0xA5314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_187_tlut_wheel_2: + symbol: gKartDK187TlutWheel2 + type: texture + offset: 0xA5394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_187_tlut_wheel_3: + symbol: gKartDK187TlutWheel3 + type: texture + offset: 0xA5414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_188_tlut_wheel_0: + symbol: gKartDK188TlutWheel0 + type: texture + offset: 0xA5494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_188_tlut_wheel_1: + symbol: gKartDK188TlutWheel1 + type: texture + offset: 0xA5514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_188_tlut_wheel_2: + symbol: gKartDK188TlutWheel2 + type: texture + offset: 0xA5594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_188_tlut_wheel_3: + symbol: gKartDK188TlutWheel3 + type: texture + offset: 0xA5614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_189_tlut_wheel_0: + symbol: gKartDK189TlutWheel0 + type: texture + offset: 0xA5694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_189_tlut_wheel_1: + symbol: gKartDK189TlutWheel1 + type: texture + offset: 0xA5714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_189_tlut_wheel_2: + symbol: gKartDK189TlutWheel2 + type: texture + offset: 0xA5794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_189_tlut_wheel_3: + symbol: gKartDK189TlutWheel3 + type: texture + offset: 0xA5814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_190_tlut_wheel_0: + symbol: gKartDK190TlutWheel0 + type: texture + offset: 0xA5894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_190_tlut_wheel_1: + symbol: gKartDK190TlutWheel1 + type: texture + offset: 0xA5914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_190_tlut_wheel_2: + symbol: gKartDK190TlutWheel2 + type: texture + offset: 0xA5994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_190_tlut_wheel_3: + symbol: gKartDK190TlutWheel3 + type: texture + offset: 0xA5A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_191_tlut_wheel_0: + symbol: gKartDK191TlutWheel0 + type: texture + offset: 0xA5A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_191_tlut_wheel_1: + symbol: gKartDK191TlutWheel1 + type: texture + offset: 0xA5B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_191_tlut_wheel_2: + symbol: gKartDK191TlutWheel2 + type: texture + offset: 0xA5B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_191_tlut_wheel_3: + symbol: gKartDK191TlutWheel3 + type: texture + offset: 0xA5C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_192_tlut_wheel_0: + symbol: gKartDK192TlutWheel0 + type: texture + offset: 0xA5C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_192_tlut_wheel_1: + symbol: gKartDK192TlutWheel1 + type: texture + offset: 0xA5D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_192_tlut_wheel_2: + symbol: gKartDK192TlutWheel2 + type: texture + offset: 0xA5D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_192_tlut_wheel_3: + symbol: gKartDK192TlutWheel3 + type: texture + offset: 0xA5E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_193_tlut_wheel_0: + symbol: gKartDK193TlutWheel0 + type: texture + offset: 0xA5E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_193_tlut_wheel_1: + symbol: gKartDK193TlutWheel1 + type: texture + offset: 0xA5F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_193_tlut_wheel_2: + symbol: gKartDK193TlutWheel2 + type: texture + offset: 0xA5F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_193_tlut_wheel_3: + symbol: gKartDK193TlutWheel3 + type: texture + offset: 0xA6014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_194_tlut_wheel_0: + symbol: gKartDK194TlutWheel0 + type: texture + offset: 0xA6094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_194_tlut_wheel_1: + symbol: gKartDK194TlutWheel1 + type: texture + offset: 0xA6114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_194_tlut_wheel_2: + symbol: gKartDK194TlutWheel2 + type: texture + offset: 0xA6194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_194_tlut_wheel_3: + symbol: gKartDK194TlutWheel3 + type: texture + offset: 0xA6214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_195_tlut_wheel_0: + symbol: gKartDK195TlutWheel0 + type: texture + offset: 0xA6294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_195_tlut_wheel_1: + symbol: gKartDK195TlutWheel1 + type: texture + offset: 0xA6314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_195_tlut_wheel_2: + symbol: gKartDK195TlutWheel2 + type: texture + offset: 0xA6394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_195_tlut_wheel_3: + symbol: gKartDK195TlutWheel3 + type: texture + offset: 0xA6414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_196_tlut_wheel_0: + symbol: gKartDK196TlutWheel0 + type: texture + offset: 0xA6494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_196_tlut_wheel_1: + symbol: gKartDK196TlutWheel1 + type: texture + offset: 0xA6514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_196_tlut_wheel_2: + symbol: gKartDK196TlutWheel2 + type: texture + offset: 0xA6594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_196_tlut_wheel_3: + symbol: gKartDK196TlutWheel3 + type: texture + offset: 0xA6614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_197_tlut_wheel_0: + symbol: gKartDK197TlutWheel0 + type: texture + offset: 0xA6694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_197_tlut_wheel_1: + symbol: gKartDK197TlutWheel1 + type: texture + offset: 0xA6714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_197_tlut_wheel_2: + symbol: gKartDK197TlutWheel2 + type: texture + offset: 0xA6794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_197_tlut_wheel_3: + symbol: gKartDK197TlutWheel3 + type: texture + offset: 0xA6814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_198_tlut_wheel_0: + symbol: gKartDK198TlutWheel0 + type: texture + offset: 0xA6894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_198_tlut_wheel_1: + symbol: gKartDK198TlutWheel1 + type: texture + offset: 0xA6914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_198_tlut_wheel_2: + symbol: gKartDK198TlutWheel2 + type: texture + offset: 0xA6994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_198_tlut_wheel_3: + symbol: gKartDK198TlutWheel3 + type: texture + offset: 0xA6A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_199_tlut_wheel_0: + symbol: gKartDK199TlutWheel0 + type: texture + offset: 0xA6A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_199_tlut_wheel_1: + symbol: gKartDK199TlutWheel1 + type: texture + offset: 0xA6B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_199_tlut_wheel_2: + symbol: gKartDK199TlutWheel2 + type: texture + offset: 0xA6B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_199_tlut_wheel_3: + symbol: gKartDK199TlutWheel3 + type: texture + offset: 0xA6C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_200_tlut_wheel_0: + symbol: gKartDK200TlutWheel0 + type: texture + offset: 0xA6C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_200_tlut_wheel_1: + symbol: gKartDK200TlutWheel1 + type: texture + offset: 0xA6D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_200_tlut_wheel_2: + symbol: gKartDK200TlutWheel2 + type: texture + offset: 0xA6D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_200_tlut_wheel_3: + symbol: gKartDK200TlutWheel3 + type: texture + offset: 0xA6E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_201_tlut_wheel_0: + symbol: gKartDK201TlutWheel0 + type: texture + offset: 0xA6E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_201_tlut_wheel_1: + symbol: gKartDK201TlutWheel1 + type: texture + offset: 0xA6F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_201_tlut_wheel_2: + symbol: gKartDK201TlutWheel2 + type: texture + offset: 0xA6F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_201_tlut_wheel_3: + symbol: gKartDK201TlutWheel3 + type: texture + offset: 0xA7014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_202_tlut_wheel_0: + symbol: gKartDK202TlutWheel0 + type: texture + offset: 0xA7094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_202_tlut_wheel_1: + symbol: gKartDK202TlutWheel1 + type: texture + offset: 0xA7114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_202_tlut_wheel_2: + symbol: gKartDK202TlutWheel2 + type: texture + offset: 0xA7194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_202_tlut_wheel_3: + symbol: gKartDK202TlutWheel3 + type: texture + offset: 0xA7214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_203_tlut_wheel_0: + symbol: gKartDK203TlutWheel0 + type: texture + offset: 0xA7294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_203_tlut_wheel_1: + symbol: gKartDK203TlutWheel1 + type: texture + offset: 0xA7314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_203_tlut_wheel_2: + symbol: gKartDK203TlutWheel2 + type: texture + offset: 0xA7394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_203_tlut_wheel_3: + symbol: gKartDK203TlutWheel3 + type: texture + offset: 0xA7414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_204_tlut_wheel_0: + symbol: gKartDK204TlutWheel0 + type: texture + offset: 0xA7494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_204_tlut_wheel_1: + symbol: gKartDK204TlutWheel1 + type: texture + offset: 0xA7514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_204_tlut_wheel_2: + symbol: gKartDK204TlutWheel2 + type: texture + offset: 0xA7594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_204_tlut_wheel_3: + symbol: gKartDK204TlutWheel3 + type: texture + offset: 0xA7614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_205_tlut_wheel_0: + symbol: gKartDK205TlutWheel0 + type: texture + offset: 0xA7694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_205_tlut_wheel_1: + symbol: gKartDK205TlutWheel1 + type: texture + offset: 0xA7714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_205_tlut_wheel_2: + symbol: gKartDK205TlutWheel2 + type: texture + offset: 0xA7794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_205_tlut_wheel_3: + symbol: gKartDK205TlutWheel3 + type: texture + offset: 0xA7814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_206_tlut_wheel_0: + symbol: gKartDK206TlutWheel0 + type: texture + offset: 0xA7894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_206_tlut_wheel_1: + symbol: gKartDK206TlutWheel1 + type: texture + offset: 0xA7914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_206_tlut_wheel_2: + symbol: gKartDK206TlutWheel2 + type: texture + offset: 0xA7994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_206_tlut_wheel_3: + symbol: gKartDK206TlutWheel3 + type: texture + offset: 0xA7A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_207_tlut_wheel_0: + symbol: gKartDK207TlutWheel0 + type: texture + offset: 0xA7A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_207_tlut_wheel_1: + symbol: gKartDK207TlutWheel1 + type: texture + offset: 0xA7B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_207_tlut_wheel_2: + symbol: gKartDK207TlutWheel2 + type: texture + offset: 0xA7B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_207_tlut_wheel_3: + symbol: gKartDK207TlutWheel3 + type: texture + offset: 0xA7C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_208_tlut_wheel_0: + symbol: gKartDK208TlutWheel0 + type: texture + offset: 0xA7C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_208_tlut_wheel_1: + symbol: gKartDK208TlutWheel1 + type: texture + offset: 0xA7D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_208_tlut_wheel_2: + symbol: gKartDK208TlutWheel2 + type: texture + offset: 0xA7D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_208_tlut_wheel_3: + symbol: gKartDK208TlutWheel3 + type: texture + offset: 0xA7E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_209_tlut_wheel_0: + symbol: gKartDK209TlutWheel0 + type: texture + offset: 0xA7E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_209_tlut_wheel_1: + symbol: gKartDK209TlutWheel1 + type: texture + offset: 0xA7F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_209_tlut_wheel_2: + symbol: gKartDK209TlutWheel2 + type: texture + offset: 0xA7F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_209_tlut_wheel_3: + symbol: gKartDK209TlutWheel3 + type: texture + offset: 0xA8014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_210_tlut_wheel_0: + symbol: gKartDK210TlutWheel0 + type: texture + offset: 0xA8094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_210_tlut_wheel_1: + symbol: gKartDK210TlutWheel1 + type: texture + offset: 0xA8114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_210_tlut_wheel_2: + symbol: gKartDK210TlutWheel2 + type: texture + offset: 0xA8194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_210_tlut_wheel_3: + symbol: gKartDK210TlutWheel3 + type: texture + offset: 0xA8214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_211_tlut_wheel_0: + symbol: gKartDK211TlutWheel0 + type: texture + offset: 0xA8294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_211_tlut_wheel_1: + symbol: gKartDK211TlutWheel1 + type: texture + offset: 0xA8314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_211_tlut_wheel_2: + symbol: gKartDK211TlutWheel2 + type: texture + offset: 0xA8394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_211_tlut_wheel_3: + symbol: gKartDK211TlutWheel3 + type: texture + offset: 0xA8414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_212_tlut_wheel_0: + symbol: gKartDK212TlutWheel0 + type: texture + offset: 0xA8494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_212_tlut_wheel_1: + symbol: gKartDK212TlutWheel1 + type: texture + offset: 0xA8514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_212_tlut_wheel_2: + symbol: gKartDK212TlutWheel2 + type: texture + offset: 0xA8594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_212_tlut_wheel_3: + symbol: gKartDK212TlutWheel3 + type: texture + offset: 0xA8614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_213_tlut_wheel_0: + symbol: gKartDK213TlutWheel0 + type: texture + offset: 0xA8694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_213_tlut_wheel_1: + symbol: gKartDK213TlutWheel1 + type: texture + offset: 0xA8714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_213_tlut_wheel_2: + symbol: gKartDK213TlutWheel2 + type: texture + offset: 0xA8794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_213_tlut_wheel_3: + symbol: gKartDK213TlutWheel3 + type: texture + offset: 0xA8814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_214_tlut_wheel_0: + symbol: gKartDK214TlutWheel0 + type: texture + offset: 0xA8894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_214_tlut_wheel_1: + symbol: gKartDK214TlutWheel1 + type: texture + offset: 0xA8914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_214_tlut_wheel_2: + symbol: gKartDK214TlutWheel2 + type: texture + offset: 0xA8994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_214_tlut_wheel_3: + symbol: gKartDK214TlutWheel3 + type: texture + offset: 0xA8A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_215_tlut_wheel_0: + symbol: gKartDK215TlutWheel0 + type: texture + offset: 0xA8A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_215_tlut_wheel_1: + symbol: gKartDK215TlutWheel1 + type: texture + offset: 0xA8B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_215_tlut_wheel_2: + symbol: gKartDK215TlutWheel2 + type: texture + offset: 0xA8B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_215_tlut_wheel_3: + symbol: gKartDK215TlutWheel3 + type: texture + offset: 0xA8C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_216_tlut_wheel_0: + symbol: gKartDK216TlutWheel0 + type: texture + offset: 0xA8C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_216_tlut_wheel_1: + symbol: gKartDK216TlutWheel1 + type: texture + offset: 0xA8D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_216_tlut_wheel_2: + symbol: gKartDK216TlutWheel2 + type: texture + offset: 0xA8D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_216_tlut_wheel_3: + symbol: gKartDK216TlutWheel3 + type: texture + offset: 0xA8E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_217_tlut_wheel_0: + symbol: gKartDK217TlutWheel0 + type: texture + offset: 0xA8E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_217_tlut_wheel_1: + symbol: gKartDK217TlutWheel1 + type: texture + offset: 0xA8F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_217_tlut_wheel_2: + symbol: gKartDK217TlutWheel2 + type: texture + offset: 0xA8F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_217_tlut_wheel_3: + symbol: gKartDK217TlutWheel3 + type: texture + offset: 0xA9014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_218_tlut_wheel_0: + symbol: gKartDK218TlutWheel0 + type: texture + offset: 0xA9094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_218_tlut_wheel_1: + symbol: gKartDK218TlutWheel1 + type: texture + offset: 0xA9114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_218_tlut_wheel_2: + symbol: gKartDK218TlutWheel2 + type: texture + offset: 0xA9194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_218_tlut_wheel_3: + symbol: gKartDK218TlutWheel3 + type: texture + offset: 0xA9214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_219_tlut_wheel_0: + symbol: gKartDK219TlutWheel0 + type: texture + offset: 0xA9294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_219_tlut_wheel_1: + symbol: gKartDK219TlutWheel1 + type: texture + offset: 0xA9314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_219_tlut_wheel_2: + symbol: gKartDK219TlutWheel2 + type: texture + offset: 0xA9394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_219_tlut_wheel_3: + symbol: gKartDK219TlutWheel3 + type: texture + offset: 0xA9414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_220_tlut_wheel_0: + symbol: gKartDK220TlutWheel0 + type: texture + offset: 0xA9494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_220_tlut_wheel_1: + symbol: gKartDK220TlutWheel1 + type: texture + offset: 0xA9514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_220_tlut_wheel_2: + symbol: gKartDK220TlutWheel2 + type: texture + offset: 0xA9594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_220_tlut_wheel_3: + symbol: gKartDK220TlutWheel3 + type: texture + offset: 0xA9614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_221_tlut_wheel_0: + symbol: gKartDK221TlutWheel0 + type: texture + offset: 0xA9694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_221_tlut_wheel_1: + symbol: gKartDK221TlutWheel1 + type: texture + offset: 0xA9714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_221_tlut_wheel_2: + symbol: gKartDK221TlutWheel2 + type: texture + offset: 0xA9794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_221_tlut_wheel_3: + symbol: gKartDK221TlutWheel3 + type: texture + offset: 0xA9814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_222_tlut_wheel_0: + symbol: gKartDK222TlutWheel0 + type: texture + offset: 0xA9894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_222_tlut_wheel_1: + symbol: gKartDK222TlutWheel1 + type: texture + offset: 0xA9914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_222_tlut_wheel_2: + symbol: gKartDK222TlutWheel2 + type: texture + offset: 0xA9994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_222_tlut_wheel_3: + symbol: gKartDK222TlutWheel3 + type: texture + offset: 0xA9A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_223_tlut_wheel_0: + symbol: gKartDK223TlutWheel0 + type: texture + offset: 0xA9A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_223_tlut_wheel_1: + symbol: gKartDK223TlutWheel1 + type: texture + offset: 0xA9B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_223_tlut_wheel_2: + symbol: gKartDK223TlutWheel2 + type: texture + offset: 0xA9B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_223_tlut_wheel_3: + symbol: gKartDK223TlutWheel3 + type: texture + offset: 0xA9C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_224_tlut_wheel_0: + symbol: gKartDK224TlutWheel0 + type: texture + offset: 0xA9C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_224_tlut_wheel_1: + symbol: gKartDK224TlutWheel1 + type: texture + offset: 0xA9D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_224_tlut_wheel_2: + symbol: gKartDK224TlutWheel2 + type: texture + offset: 0xA9D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_224_tlut_wheel_3: + symbol: gKartDK224TlutWheel3 + type: texture + offset: 0xA9E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_225_tlut_wheel_0: + symbol: gKartDK225TlutWheel0 + type: texture + offset: 0xA9E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_225_tlut_wheel_1: + symbol: gKartDK225TlutWheel1 + type: texture + offset: 0xA9F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_225_tlut_wheel_2: + symbol: gKartDK225TlutWheel2 + type: texture + offset: 0xA9F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_225_tlut_wheel_3: + symbol: gKartDK225TlutWheel3 + type: texture + offset: 0xAA014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_226_tlut_wheel_0: + symbol: gKartDK226TlutWheel0 + type: texture + offset: 0xAA094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_226_tlut_wheel_1: + symbol: gKartDK226TlutWheel1 + type: texture + offset: 0xAA114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_226_tlut_wheel_2: + symbol: gKartDK226TlutWheel2 + type: texture + offset: 0xAA194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_226_tlut_wheel_3: + symbol: gKartDK226TlutWheel3 + type: texture + offset: 0xAA214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_227_tlut_wheel_0: + symbol: gKartDK227TlutWheel0 + type: texture + offset: 0xAA294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_227_tlut_wheel_1: + symbol: gKartDK227TlutWheel1 + type: texture + offset: 0xAA314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_227_tlut_wheel_2: + symbol: gKartDK227TlutWheel2 + type: texture + offset: 0xAA394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_227_tlut_wheel_3: + symbol: gKartDK227TlutWheel3 + type: texture + offset: 0xAA414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_228_tlut_wheel_0: + symbol: gKartDK228TlutWheel0 + type: texture + offset: 0xAA494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_228_tlut_wheel_1: + symbol: gKartDK228TlutWheel1 + type: texture + offset: 0xAA514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_228_tlut_wheel_2: + symbol: gKartDK228TlutWheel2 + type: texture + offset: 0xAA594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_228_tlut_wheel_3: + symbol: gKartDK228TlutWheel3 + type: texture + offset: 0xAA614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_229_tlut_wheel_0: + symbol: gKartDK229TlutWheel0 + type: texture + offset: 0xAA694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_229_tlut_wheel_1: + symbol: gKartDK229TlutWheel1 + type: texture + offset: 0xAA714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_229_tlut_wheel_2: + symbol: gKartDK229TlutWheel2 + type: texture + offset: 0xAA794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_229_tlut_wheel_3: + symbol: gKartDK229TlutWheel3 + type: texture + offset: 0xAA814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_230_tlut_wheel_0: + symbol: gKartDK230TlutWheel0 + type: texture + offset: 0xAA894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_230_tlut_wheel_1: + symbol: gKartDK230TlutWheel1 + type: texture + offset: 0xAA914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_230_tlut_wheel_2: + symbol: gKartDK230TlutWheel2 + type: texture + offset: 0xAA994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_230_tlut_wheel_3: + symbol: gKartDK230TlutWheel3 + type: texture + offset: 0xAAA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_231_tlut_wheel_0: + symbol: gKartDK231TlutWheel0 + type: texture + offset: 0xAAA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_231_tlut_wheel_1: + symbol: gKartDK231TlutWheel1 + type: texture + offset: 0xAAB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_231_tlut_wheel_2: + symbol: gKartDK231TlutWheel2 + type: texture + offset: 0xAAB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_231_tlut_wheel_3: + symbol: gKartDK231TlutWheel3 + type: texture + offset: 0xAAC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_232_tlut_wheel_0: + symbol: gKartDK232TlutWheel0 + type: texture + offset: 0xAAC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_232_tlut_wheel_1: + symbol: gKartDK232TlutWheel1 + type: texture + offset: 0xAAD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_232_tlut_wheel_2: + symbol: gKartDK232TlutWheel2 + type: texture + offset: 0xAAD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_232_tlut_wheel_3: + symbol: gKartDK232TlutWheel3 + type: texture + offset: 0xAAE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_233_tlut_wheel_0: + symbol: gKartDK233TlutWheel0 + type: texture + offset: 0xAAE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_233_tlut_wheel_1: + symbol: gKartDK233TlutWheel1 + type: texture + offset: 0xAAF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_233_tlut_wheel_2: + symbol: gKartDK233TlutWheel2 + type: texture + offset: 0xAAF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_233_tlut_wheel_3: + symbol: gKartDK233TlutWheel3 + type: texture + offset: 0xAB014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_234_tlut_wheel_0: + symbol: gKartDK234TlutWheel0 + type: texture + offset: 0xAB094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_234_tlut_wheel_1: + symbol: gKartDK234TlutWheel1 + type: texture + offset: 0xAB114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_234_tlut_wheel_2: + symbol: gKartDK234TlutWheel2 + type: texture + offset: 0xAB194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_234_tlut_wheel_3: + symbol: gKartDK234TlutWheel3 + type: texture + offset: 0xAB214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_235_tlut_wheel_0: + symbol: gKartDK235TlutWheel0 + type: texture + offset: 0xAB294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_235_tlut_wheel_1: + symbol: gKartDK235TlutWheel1 + type: texture + offset: 0xAB314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_235_tlut_wheel_2: + symbol: gKartDK235TlutWheel2 + type: texture + offset: 0xAB394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_235_tlut_wheel_3: + symbol: gKartDK235TlutWheel3 + type: texture + offset: 0xAB414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_236_tlut_wheel_0: + symbol: gKartDK236TlutWheel0 + type: texture + offset: 0xAB494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_236_tlut_wheel_1: + symbol: gKartDK236TlutWheel1 + type: texture + offset: 0xAB514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_236_tlut_wheel_2: + symbol: gKartDK236TlutWheel2 + type: texture + offset: 0xAB594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_236_tlut_wheel_3: + symbol: gKartDK236TlutWheel3 + type: texture + offset: 0xAB614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_237_tlut_wheel_0: + symbol: gKartDK237TlutWheel0 + type: texture + offset: 0xAB694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_237_tlut_wheel_1: + symbol: gKartDK237TlutWheel1 + type: texture + offset: 0xAB714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_237_tlut_wheel_2: + symbol: gKartDK237TlutWheel2 + type: texture + offset: 0xAB794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_237_tlut_wheel_3: + symbol: gKartDK237TlutWheel3 + type: texture + offset: 0xAB814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_238_tlut_wheel_0: + symbol: gKartDK238TlutWheel0 + type: texture + offset: 0xAB894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_238_tlut_wheel_1: + symbol: gKartDK238TlutWheel1 + type: texture + offset: 0xAB914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_238_tlut_wheel_2: + symbol: gKartDK238TlutWheel2 + type: texture + offset: 0xAB994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_238_tlut_wheel_3: + symbol: gKartDK238TlutWheel3 + type: texture + offset: 0xABA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_239_tlut_wheel_0: + symbol: gKartDK239TlutWheel0 + type: texture + offset: 0xABA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_239_tlut_wheel_1: + symbol: gKartDK239TlutWheel1 + type: texture + offset: 0xABB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_239_tlut_wheel_2: + symbol: gKartDK239TlutWheel2 + type: texture + offset: 0xABB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_239_tlut_wheel_3: + symbol: gKartDK239TlutWheel3 + type: texture + offset: 0xABC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_240_tlut_wheel_0: + symbol: gKartDK240TlutWheel0 + type: texture + offset: 0xABC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_240_tlut_wheel_1: + symbol: gKartDK240TlutWheel1 + type: texture + offset: 0xABD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_240_tlut_wheel_2: + symbol: gKartDK240TlutWheel2 + type: texture + offset: 0xABD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_240_tlut_wheel_3: + symbol: gKartDK240TlutWheel3 + type: texture + offset: 0xABE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_241_tlut_wheel_0: + symbol: gKartDK241TlutWheel0 + type: texture + offset: 0xABE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_241_tlut_wheel_1: + symbol: gKartDK241TlutWheel1 + type: texture + offset: 0xABF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_241_tlut_wheel_2: + symbol: gKartDK241TlutWheel2 + type: texture + offset: 0xABF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_241_tlut_wheel_3: + symbol: gKartDK241TlutWheel3 + type: texture + offset: 0xAC014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_242_tlut_wheel_0: + symbol: gKartDK242TlutWheel0 + type: texture + offset: 0xAC094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_242_tlut_wheel_1: + symbol: gKartDK242TlutWheel1 + type: texture + offset: 0xAC114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_242_tlut_wheel_2: + symbol: gKartDK242TlutWheel2 + type: texture + offset: 0xAC194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_242_tlut_wheel_3: + symbol: gKartDK242TlutWheel3 + type: texture + offset: 0xAC214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_243_tlut_wheel_0: + symbol: gKartDK243TlutWheel0 + type: texture + offset: 0xAC294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_243_tlut_wheel_1: + symbol: gKartDK243TlutWheel1 + type: texture + offset: 0xAC314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_243_tlut_wheel_2: + symbol: gKartDK243TlutWheel2 + type: texture + offset: 0xAC394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_243_tlut_wheel_3: + symbol: gKartDK243TlutWheel3 + type: texture + offset: 0xAC414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_244_tlut_wheel_0: + symbol: gKartDK244TlutWheel0 + type: texture + offset: 0xAC494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_244_tlut_wheel_1: + symbol: gKartDK244TlutWheel1 + type: texture + offset: 0xAC514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_244_tlut_wheel_2: + symbol: gKartDK244TlutWheel2 + type: texture + offset: 0xAC594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_244_tlut_wheel_3: + symbol: gKartDK244TlutWheel3 + type: texture + offset: 0xAC614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_245_tlut_wheel_0: + symbol: gKartDK245TlutWheel0 + type: texture + offset: 0xAC694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_245_tlut_wheel_1: + symbol: gKartDK245TlutWheel1 + type: texture + offset: 0xAC714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_245_tlut_wheel_2: + symbol: gKartDK245TlutWheel2 + type: texture + offset: 0xAC794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_245_tlut_wheel_3: + symbol: gKartDK245TlutWheel3 + type: texture + offset: 0xAC814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_246_tlut_wheel_0: + symbol: gKartDK246TlutWheel0 + type: texture + offset: 0xAC894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_246_tlut_wheel_1: + symbol: gKartDK246TlutWheel1 + type: texture + offset: 0xAC914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_246_tlut_wheel_2: + symbol: gKartDK246TlutWheel2 + type: texture + offset: 0xAC994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_246_tlut_wheel_3: + symbol: gKartDK246TlutWheel3 + type: texture + offset: 0xACA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_247_tlut_wheel_0: + symbol: gKartDK247TlutWheel0 + type: texture + offset: 0xACA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_247_tlut_wheel_1: + symbol: gKartDK247TlutWheel1 + type: texture + offset: 0xACB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_247_tlut_wheel_2: + symbol: gKartDK247TlutWheel2 + type: texture + offset: 0xACB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_247_tlut_wheel_3: + symbol: gKartDK247TlutWheel3 + type: texture + offset: 0xACC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_248_tlut_wheel_0: + symbol: gKartDK248TlutWheel0 + type: texture + offset: 0xACC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_248_tlut_wheel_1: + symbol: gKartDK248TlutWheel1 + type: texture + offset: 0xACD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_248_tlut_wheel_2: + symbol: gKartDK248TlutWheel2 + type: texture + offset: 0xACD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_248_tlut_wheel_3: + symbol: gKartDK248TlutWheel3 + type: texture + offset: 0xACE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_249_tlut_wheel_0: + symbol: gKartDK249TlutWheel0 + type: texture + offset: 0xACE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_249_tlut_wheel_1: + symbol: gKartDK249TlutWheel1 + type: texture + offset: 0xACF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_249_tlut_wheel_2: + symbol: gKartDK249TlutWheel2 + type: texture + offset: 0xACF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_249_tlut_wheel_3: + symbol: gKartDK249TlutWheel3 + type: texture + offset: 0xAD014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_250_tlut_wheel_0: + symbol: gKartDK250TlutWheel0 + type: texture + offset: 0xAD094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_250_tlut_wheel_1: + symbol: gKartDK250TlutWheel1 + type: texture + offset: 0xAD114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_250_tlut_wheel_2: + symbol: gKartDK250TlutWheel2 + type: texture + offset: 0xAD194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_250_tlut_wheel_3: + symbol: gKartDK250TlutWheel3 + type: texture + offset: 0xAD214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_251_tlut_wheel_0: + symbol: gKartDK251TlutWheel0 + type: texture + offset: 0xAD294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_251_tlut_wheel_1: + symbol: gKartDK251TlutWheel1 + type: texture + offset: 0xAD314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_251_tlut_wheel_2: + symbol: gKartDK251TlutWheel2 + type: texture + offset: 0xAD394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_251_tlut_wheel_3: + symbol: gKartDK251TlutWheel3 + type: texture + offset: 0xAD414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_252_tlut_wheel_0: + symbol: gKartDK252TlutWheel0 + type: texture + offset: 0xAD494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_252_tlut_wheel_1: + symbol: gKartDK252TlutWheel1 + type: texture + offset: 0xAD514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_252_tlut_wheel_2: + symbol: gKartDK252TlutWheel2 + type: texture + offset: 0xAD594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_252_tlut_wheel_3: + symbol: gKartDK252TlutWheel3 + type: texture + offset: 0xAD614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_253_tlut_wheel_0: + symbol: gKartDK253TlutWheel0 + type: texture + offset: 0xAD694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_253_tlut_wheel_1: + symbol: gKartDK253TlutWheel1 + type: texture + offset: 0xAD714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_253_tlut_wheel_2: + symbol: gKartDK253TlutWheel2 + type: texture + offset: 0xAD794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_253_tlut_wheel_3: + symbol: gKartDK253TlutWheel3 + type: texture + offset: 0xAD814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_254_tlut_wheel_0: + symbol: gKartDK254TlutWheel0 + type: texture + offset: 0xAD894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_254_tlut_wheel_1: + symbol: gKartDK254TlutWheel1 + type: texture + offset: 0xAD914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_254_tlut_wheel_2: + symbol: gKartDK254TlutWheel2 + type: texture + offset: 0xAD994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_254_tlut_wheel_3: + symbol: gKartDK254TlutWheel3 + type: texture + offset: 0xADA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_255_tlut_wheel_0: + symbol: gKartDK255TlutWheel0 + type: texture + offset: 0xADA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_255_tlut_wheel_1: + symbol: gKartDK255TlutWheel1 + type: texture + offset: 0xADB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_255_tlut_wheel_2: + symbol: gKartDK255TlutWheel2 + type: texture + offset: 0xADB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_255_tlut_wheel_3: + symbol: gKartDK255TlutWheel3 + type: texture + offset: 0xADC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_256_tlut_wheel_0: + symbol: gKartDK256TlutWheel0 + type: texture + offset: 0xADC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_256_tlut_wheel_1: + symbol: gKartDK256TlutWheel1 + type: texture + offset: 0xADD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_256_tlut_wheel_2: + symbol: gKartDK256TlutWheel2 + type: texture + offset: 0xADD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_256_tlut_wheel_3: + symbol: gKartDK256TlutWheel3 + type: texture + offset: 0xADE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_257_tlut_wheel_0: + symbol: gKartDK257TlutWheel0 + type: texture + offset: 0xADE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_257_tlut_wheel_1: + symbol: gKartDK257TlutWheel1 + type: texture + offset: 0xADF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_257_tlut_wheel_2: + symbol: gKartDK257TlutWheel2 + type: texture + offset: 0xADF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_257_tlut_wheel_3: + symbol: gKartDK257TlutWheel3 + type: texture + offset: 0xAE014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_258_tlut_wheel_0: + symbol: gKartDK258TlutWheel0 + type: texture + offset: 0xAE094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_258_tlut_wheel_1: + symbol: gKartDK258TlutWheel1 + type: texture + offset: 0xAE114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_258_tlut_wheel_2: + symbol: gKartDK258TlutWheel2 + type: texture + offset: 0xAE194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_258_tlut_wheel_3: + symbol: gKartDK258TlutWheel3 + type: texture + offset: 0xAE214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_259_tlut_wheel_0: + symbol: gKartDK259TlutWheel0 + type: texture + offset: 0xAE294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_259_tlut_wheel_1: + symbol: gKartDK259TlutWheel1 + type: texture + offset: 0xAE314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_259_tlut_wheel_2: + symbol: gKartDK259TlutWheel2 + type: texture + offset: 0xAE394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_259_tlut_wheel_3: + symbol: gKartDK259TlutWheel3 + type: texture + offset: 0xAE414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_260_tlut_wheel_0: + symbol: gKartDK260TlutWheel0 + type: texture + offset: 0xAE494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_260_tlut_wheel_1: + symbol: gKartDK260TlutWheel1 + type: texture + offset: 0xAE514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_260_tlut_wheel_2: + symbol: gKartDK260TlutWheel2 + type: texture + offset: 0xAE594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_260_tlut_wheel_3: + symbol: gKartDK260TlutWheel3 + type: texture + offset: 0xAE614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_261_tlut_wheel_0: + symbol: gKartDK261TlutWheel0 + type: texture + offset: 0xAE694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_261_tlut_wheel_1: + symbol: gKartDK261TlutWheel1 + type: texture + offset: 0xAE714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_261_tlut_wheel_2: + symbol: gKartDK261TlutWheel2 + type: texture + offset: 0xAE794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_261_tlut_wheel_3: + symbol: gKartDK261TlutWheel3 + type: texture + offset: 0xAE814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_262_tlut_wheel_0: + symbol: gKartDK262TlutWheel0 + type: texture + offset: 0xAE894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_262_tlut_wheel_1: + symbol: gKartDK262TlutWheel1 + type: texture + offset: 0xAE914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_262_tlut_wheel_2: + symbol: gKartDK262TlutWheel2 + type: texture + offset: 0xAE994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_262_tlut_wheel_3: + symbol: gKartDK262TlutWheel3 + type: texture + offset: 0xAEA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_263_tlut_wheel_0: + symbol: gKartDK263TlutWheel0 + type: texture + offset: 0xAEA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_263_tlut_wheel_1: + symbol: gKartDK263TlutWheel1 + type: texture + offset: 0xAEB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_263_tlut_wheel_2: + symbol: gKartDK263TlutWheel2 + type: texture + offset: 0xAEB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_263_tlut_wheel_3: + symbol: gKartDK263TlutWheel3 + type: texture + offset: 0xAEC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_264_tlut_wheel_0: + symbol: gKartDK264TlutWheel0 + type: texture + offset: 0xAEC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_264_tlut_wheel_1: + symbol: gKartDK264TlutWheel1 + type: texture + offset: 0xAED14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_264_tlut_wheel_2: + symbol: gKartDK264TlutWheel2 + type: texture + offset: 0xAED94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_264_tlut_wheel_3: + symbol: gKartDK264TlutWheel3 + type: texture + offset: 0xAEE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_265_tlut_wheel_0: + symbol: gKartDK265TlutWheel0 + type: texture + offset: 0xAEE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_265_tlut_wheel_1: + symbol: gKartDK265TlutWheel1 + type: texture + offset: 0xAEF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_265_tlut_wheel_2: + symbol: gKartDK265TlutWheel2 + type: texture + offset: 0xAEF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_265_tlut_wheel_3: + symbol: gKartDK265TlutWheel3 + type: texture + offset: 0xAF014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_266_tlut_wheel_0: + symbol: gKartDK266TlutWheel0 + type: texture + offset: 0xAF094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_266_tlut_wheel_1: + symbol: gKartDK266TlutWheel1 + type: texture + offset: 0xAF114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_266_tlut_wheel_2: + symbol: gKartDK266TlutWheel2 + type: texture + offset: 0xAF194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_266_tlut_wheel_3: + symbol: gKartDK266TlutWheel3 + type: texture + offset: 0xAF214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_267_tlut_wheel_0: + symbol: gKartDK267TlutWheel0 + type: texture + offset: 0xAF294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_267_tlut_wheel_1: + symbol: gKartDK267TlutWheel1 + type: texture + offset: 0xAF314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_267_tlut_wheel_2: + symbol: gKartDK267TlutWheel2 + type: texture + offset: 0xAF394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_267_tlut_wheel_3: + symbol: gKartDK267TlutWheel3 + type: texture + offset: 0xAF414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_268_tlut_wheel_0: + symbol: gKartDK268TlutWheel0 + type: texture + offset: 0xAF494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_268_tlut_wheel_1: + symbol: gKartDK268TlutWheel1 + type: texture + offset: 0xAF514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_268_tlut_wheel_2: + symbol: gKartDK268TlutWheel2 + type: texture + offset: 0xAF594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_268_tlut_wheel_3: + symbol: gKartDK268TlutWheel3 + type: texture + offset: 0xAF614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_269_tlut_wheel_0: + symbol: gKartDK269TlutWheel0 + type: texture + offset: 0xAF694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_269_tlut_wheel_1: + symbol: gKartDK269TlutWheel1 + type: texture + offset: 0xAF714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_269_tlut_wheel_2: + symbol: gKartDK269TlutWheel2 + type: texture + offset: 0xAF794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_269_tlut_wheel_3: + symbol: gKartDK269TlutWheel3 + type: texture + offset: 0xAF814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_270_tlut_wheel_0: + symbol: gKartDK270TlutWheel0 + type: texture + offset: 0xAF894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_270_tlut_wheel_1: + symbol: gKartDK270TlutWheel1 + type: texture + offset: 0xAF914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_270_tlut_wheel_2: + symbol: gKartDK270TlutWheel2 + type: texture + offset: 0xAF994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_270_tlut_wheel_3: + symbol: gKartDK270TlutWheel3 + type: texture + offset: 0xAFA14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_271_tlut_wheel_0: + symbol: gKartDK271TlutWheel0 + type: texture + offset: 0xAFA94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_271_tlut_wheel_1: + symbol: gKartDK271TlutWheel1 + type: texture + offset: 0xAFB14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_271_tlut_wheel_2: + symbol: gKartDK271TlutWheel2 + type: texture + offset: 0xAFB94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_271_tlut_wheel_3: + symbol: gKartDK271TlutWheel3 + type: texture + offset: 0xAFC14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_272_tlut_wheel_0: + symbol: gKartDK272TlutWheel0 + type: texture + offset: 0xAFC94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_272_tlut_wheel_1: + symbol: gKartDK272TlutWheel1 + type: texture + offset: 0xAFD14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_272_tlut_wheel_2: + symbol: gKartDK272TlutWheel2 + type: texture + offset: 0xAFD94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_272_tlut_wheel_3: + symbol: gKartDK272TlutWheel3 + type: texture + offset: 0xAFE14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_273_tlut_wheel_0: + symbol: gKartDK273TlutWheel0 + type: texture + offset: 0xAFE94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_273_tlut_wheel_1: + symbol: gKartDK273TlutWheel1 + type: texture + offset: 0xAFF14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_273_tlut_wheel_2: + symbol: gKartDK273TlutWheel2 + type: texture + offset: 0xAFF94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_273_tlut_wheel_3: + symbol: gKartDK273TlutWheel3 + type: texture + offset: 0xB0014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_274_tlut_wheel_0: + symbol: gKartDK274TlutWheel0 + type: texture + offset: 0xB0094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_274_tlut_wheel_1: + symbol: gKartDK274TlutWheel1 + type: texture + offset: 0xB0114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_274_tlut_wheel_2: + symbol: gKartDK274TlutWheel2 + type: texture + offset: 0xB0194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_274_tlut_wheel_3: + symbol: gKartDK274TlutWheel3 + type: texture + offset: 0xB0214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_275_tlut_wheel_0: + symbol: gKartDK275TlutWheel0 + type: texture + offset: 0xB0294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_275_tlut_wheel_1: + symbol: gKartDK275TlutWheel1 + type: texture + offset: 0xB0314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_275_tlut_wheel_2: + symbol: gKartDK275TlutWheel2 + type: texture + offset: 0xB0394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_275_tlut_wheel_3: + symbol: gKartDK275TlutWheel3 + type: texture + offset: 0xB0414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_276_tlut_wheel_0: + symbol: gKartDK276TlutWheel0 + type: texture + offset: 0xB0494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_276_tlut_wheel_1: + symbol: gKartDK276TlutWheel1 + type: texture + offset: 0xB0514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_276_tlut_wheel_2: + symbol: gKartDK276TlutWheel2 + type: texture + offset: 0xB0594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_276_tlut_wheel_3: + symbol: gKartDK276TlutWheel3 + type: texture + offset: 0xB0614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_277_tlut_wheel_0: + symbol: gKartDK277TlutWheel0 + type: texture + offset: 0xB0694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_277_tlut_wheel_1: + symbol: gKartDK277TlutWheel1 + type: texture + offset: 0xB0714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_277_tlut_wheel_2: + symbol: gKartDK277TlutWheel2 + type: texture + offset: 0xB0794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_277_tlut_wheel_3: + symbol: gKartDK277TlutWheel3 + type: texture + offset: 0xB0814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_278_tlut_wheel_0: + symbol: gKartDK278TlutWheel0 + type: texture + offset: 0xB0894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_278_tlut_wheel_1: + symbol: gKartDK278TlutWheel1 + type: texture + offset: 0xB0914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_278_tlut_wheel_2: + symbol: gKartDK278TlutWheel2 + type: texture + offset: 0xB0994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_278_tlut_wheel_3: + symbol: gKartDK278TlutWheel3 + type: texture + offset: 0xB0A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_279_tlut_wheel_0: + symbol: gKartDK279TlutWheel0 + type: texture + offset: 0xB0A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_279_tlut_wheel_1: + symbol: gKartDK279TlutWheel1 + type: texture + offset: 0xB0B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_279_tlut_wheel_2: + symbol: gKartDK279TlutWheel2 + type: texture + offset: 0xB0B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_279_tlut_wheel_3: + symbol: gKartDK279TlutWheel3 + type: texture + offset: 0xB0C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_280_tlut_wheel_0: + symbol: gKartDK280TlutWheel0 + type: texture + offset: 0xB0C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_280_tlut_wheel_1: + symbol: gKartDK280TlutWheel1 + type: texture + offset: 0xB0D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_280_tlut_wheel_2: + symbol: gKartDK280TlutWheel2 + type: texture + offset: 0xB0D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_280_tlut_wheel_3: + symbol: gKartDK280TlutWheel3 + type: texture + offset: 0xB0E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_281_tlut_wheel_0: + symbol: gKartDK281TlutWheel0 + type: texture + offset: 0xB0E94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_281_tlut_wheel_1: + symbol: gKartDK281TlutWheel1 + type: texture + offset: 0xB0F14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_281_tlut_wheel_2: + symbol: gKartDK281TlutWheel2 + type: texture + offset: 0xB0F94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_281_tlut_wheel_3: + symbol: gKartDK281TlutWheel3 + type: texture + offset: 0xB1014 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_282_tlut_wheel_0: + symbol: gKartDK282TlutWheel0 + type: texture + offset: 0xB1094 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_282_tlut_wheel_1: + symbol: gKartDK282TlutWheel1 + type: texture + offset: 0xB1114 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_282_tlut_wheel_2: + symbol: gKartDK282TlutWheel2 + type: texture + offset: 0xB1194 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_282_tlut_wheel_3: + symbol: gKartDK282TlutWheel3 + type: texture + offset: 0xB1214 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_283_tlut_wheel_0: + symbol: gKartDK283TlutWheel0 + type: texture + offset: 0xB1294 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_283_tlut_wheel_1: + symbol: gKartDK283TlutWheel1 + type: texture + offset: 0xB1314 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_283_tlut_wheel_2: + symbol: gKartDK283TlutWheel2 + type: texture + offset: 0xB1394 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_283_tlut_wheel_3: + symbol: gKartDK283TlutWheel3 + type: texture + offset: 0xB1414 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_284_tlut_wheel_0: + symbol: gKartDK284TlutWheel0 + type: texture + offset: 0xB1494 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_284_tlut_wheel_1: + symbol: gKartDK284TlutWheel1 + type: texture + offset: 0xB1514 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_284_tlut_wheel_2: + symbol: gKartDK284TlutWheel2 + type: texture + offset: 0xB1594 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_284_tlut_wheel_3: + symbol: gKartDK284TlutWheel3 + type: texture + offset: 0xB1614 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_285_tlut_wheel_0: + symbol: gKartDK285TlutWheel0 + type: texture + offset: 0xB1694 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_285_tlut_wheel_1: + symbol: gKartDK285TlutWheel1 + type: texture + offset: 0xB1714 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_285_tlut_wheel_2: + symbol: gKartDK285TlutWheel2 + type: texture + offset: 0xB1794 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_285_tlut_wheel_3: + symbol: gKartDK285TlutWheel3 + type: texture + offset: 0xB1814 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_286_tlut_wheel_0: + symbol: gKartDK286TlutWheel0 + type: texture + offset: 0xB1894 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_286_tlut_wheel_1: + symbol: gKartDK286TlutWheel1 + type: texture + offset: 0xB1914 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_286_tlut_wheel_2: + symbol: gKartDK286TlutWheel2 + type: texture + offset: 0xB1994 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_286_tlut_wheel_3: + symbol: gKartDK286TlutWheel3 + type: texture + offset: 0xB1A14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_287_tlut_wheel_0: + symbol: gKartDK287TlutWheel0 + type: texture + offset: 0xB1A94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_287_tlut_wheel_1: + symbol: gKartDK287TlutWheel1 + type: texture + offset: 0xB1B14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_287_tlut_wheel_2: + symbol: gKartDK287TlutWheel2 + type: texture + offset: 0xB1B94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_287_tlut_wheel_3: + symbol: gKartDK287TlutWheel3 + type: texture + offset: 0xB1C14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_288_tlut_wheel_0: + symbol: gKartDK288TlutWheel0 + type: texture + offset: 0xB1C94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_288_tlut_wheel_1: + symbol: gKartDK288TlutWheel1 + type: texture + offset: 0xB1D14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_288_tlut_wheel_2: + symbol: gKartDK288TlutWheel2 + type: texture + offset: 0xB1D94 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_288_tlut_wheel_3: + symbol: gKartDK288TlutWheel3 + type: texture + offset: 0xB1E14 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +donkeykong_kart_palette: + symbol: gKartDKPalette + type: texture + offset: 0xB1E94 + ctype: u16 + width: 16 + height: 12 + format: RGBA16 diff --git a/yamls/us/textures/karts/luigi_kart.yml b/yamls/us/textures/karts/luigi_kart.yml new file mode 100644 index 000000000..788642771 --- /dev/null +++ b/yamls/us/textures/karts/luigi_kart.yml @@ -0,0 +1,22340 @@ +:config: + segments: + - [0x0F, 0x145470] + no_compression: true + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + tables: + luigi_kart_wheels: + range: [0x769FC, 0x9AB7C] + mode: APPEND +luigi_kart_frame000_wheel0: + symbol: gKartLuigi000Wheel0 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame000_wheel1: + symbol: gKartLuigi000Wheel1 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_1 +luigi_kart_frame000_wheel2: + symbol: gKartLuigi000Wheel2 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_2 +luigi_kart_frame000_wheel3: + symbol: gKartLuigi000Wheel3 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_3 +luigi_kart_frame001_wheel0: + symbol: gKartLuigi001Wheel0 + type: texture + offset: 0x4F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_001_tlut_wheel_0 +luigi_kart_frame001_wheel1: + symbol: gKartLuigi001Wheel1 + type: texture + offset: 0x4F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_001_tlut_wheel_1 +luigi_kart_frame001_wheel2: + symbol: gKartLuigi001Wheel2 + type: texture + offset: 0x4F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_001_tlut_wheel_2 +luigi_kart_frame001_wheel3: + symbol: gKartLuigi001Wheel3 + type: texture + offset: 0x4F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_001_tlut_wheel_3 +luigi_kart_frame002_wheel0: + symbol: gKartLuigi002Wheel0 + type: texture + offset: 0x9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_002_tlut_wheel_0 +luigi_kart_frame002_wheel1: + symbol: gKartLuigi002Wheel1 + type: texture + offset: 0x9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_002_tlut_wheel_1 +luigi_kart_frame002_wheel2: + symbol: gKartLuigi002Wheel2 + type: texture + offset: 0x9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_002_tlut_wheel_2 +luigi_kart_frame002_wheel3: + symbol: gKartLuigi002Wheel3 + type: texture + offset: 0x9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_002_tlut_wheel_3 +luigi_kart_frame003_wheel0: + symbol: gKartLuigi003Wheel0 + type: texture + offset: 0xEF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_003_tlut_wheel_0 +luigi_kart_frame003_wheel1: + symbol: gKartLuigi003Wheel1 + type: texture + offset: 0xEF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_003_tlut_wheel_1 +luigi_kart_frame003_wheel2: + symbol: gKartLuigi003Wheel2 + type: texture + offset: 0xEF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_003_tlut_wheel_2 +luigi_kart_frame003_wheel3: + symbol: gKartLuigi003Wheel3 + type: texture + offset: 0xEF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_003_tlut_wheel_3 +luigi_kart_frame004_wheel0: + symbol: gKartLuigi004Wheel0 + type: texture + offset: 0x1418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_004_tlut_wheel_0 +luigi_kart_frame004_wheel1: + symbol: gKartLuigi004Wheel1 + type: texture + offset: 0x1418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_004_tlut_wheel_1 +luigi_kart_frame004_wheel2: + symbol: gKartLuigi004Wheel2 + type: texture + offset: 0x1418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_004_tlut_wheel_2 +luigi_kart_frame004_wheel3: + symbol: gKartLuigi004Wheel3 + type: texture + offset: 0x1418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_004_tlut_wheel_3 +luigi_kart_frame005_wheel0: + symbol: gKartLuigi005Wheel0 + type: texture + offset: 0x1940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_005_tlut_wheel_0 +luigi_kart_frame005_wheel1: + symbol: gKartLuigi005Wheel1 + type: texture + offset: 0x1940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_005_tlut_wheel_1 +luigi_kart_frame005_wheel2: + symbol: gKartLuigi005Wheel2 + type: texture + offset: 0x1940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_005_tlut_wheel_2 +luigi_kart_frame005_wheel3: + symbol: gKartLuigi005Wheel3 + type: texture + offset: 0x1940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_005_tlut_wheel_3 +luigi_kart_frame006_wheel0: + symbol: gKartLuigi006Wheel0 + type: texture + offset: 0x1E7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_006_tlut_wheel_0 +luigi_kart_frame006_wheel1: + symbol: gKartLuigi006Wheel1 + type: texture + offset: 0x1E7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_006_tlut_wheel_1 +luigi_kart_frame006_wheel2: + symbol: gKartLuigi006Wheel2 + type: texture + offset: 0x1E7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_006_tlut_wheel_2 +luigi_kart_frame006_wheel3: + symbol: gKartLuigi006Wheel3 + type: texture + offset: 0x1E7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_006_tlut_wheel_3 +luigi_kart_frame007_wheel0: + symbol: gKartLuigi007Wheel0 + type: texture + offset: 0x23D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_007_tlut_wheel_0 +luigi_kart_frame007_wheel1: + symbol: gKartLuigi007Wheel1 + type: texture + offset: 0x23D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_007_tlut_wheel_1 +luigi_kart_frame007_wheel2: + symbol: gKartLuigi007Wheel2 + type: texture + offset: 0x23D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_007_tlut_wheel_2 +luigi_kart_frame007_wheel3: + symbol: gKartLuigi007Wheel3 + type: texture + offset: 0x23D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_007_tlut_wheel_3 +luigi_kart_frame008_wheel0: + symbol: gKartLuigi008Wheel0 + type: texture + offset: 0x2938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_008_tlut_wheel_0 +luigi_kart_frame008_wheel1: + symbol: gKartLuigi008Wheel1 + type: texture + offset: 0x2938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_008_tlut_wheel_1 +luigi_kart_frame008_wheel2: + symbol: gKartLuigi008Wheel2 + type: texture + offset: 0x2938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_008_tlut_wheel_2 +luigi_kart_frame008_wheel3: + symbol: gKartLuigi008Wheel3 + type: texture + offset: 0x2938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_008_tlut_wheel_3 +luigi_kart_frame009_wheel0: + symbol: gKartLuigi009Wheel0 + type: texture + offset: 0x2EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_009_tlut_wheel_0 +luigi_kart_frame009_wheel1: + symbol: gKartLuigi009Wheel1 + type: texture + offset: 0x2EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_009_tlut_wheel_1 +luigi_kart_frame009_wheel2: + symbol: gKartLuigi009Wheel2 + type: texture + offset: 0x2EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_009_tlut_wheel_2 +luigi_kart_frame009_wheel3: + symbol: gKartLuigi009Wheel3 + type: texture + offset: 0x2EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_009_tlut_wheel_3 +luigi_kart_frame010_wheel0: + symbol: gKartLuigi010Wheel0 + type: texture + offset: 0x3448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_010_tlut_wheel_0 +luigi_kart_frame010_wheel1: + symbol: gKartLuigi010Wheel1 + type: texture + offset: 0x3448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_010_tlut_wheel_1 +luigi_kart_frame010_wheel2: + symbol: gKartLuigi010Wheel2 + type: texture + offset: 0x3448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_010_tlut_wheel_2 +luigi_kart_frame010_wheel3: + symbol: gKartLuigi010Wheel3 + type: texture + offset: 0x3448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_010_tlut_wheel_3 +luigi_kart_frame011_wheel0: + symbol: gKartLuigi011Wheel0 + type: texture + offset: 0x39E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_011_tlut_wheel_0 +luigi_kart_frame011_wheel1: + symbol: gKartLuigi011Wheel1 + type: texture + offset: 0x39E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_011_tlut_wheel_1 +luigi_kart_frame011_wheel2: + symbol: gKartLuigi011Wheel2 + type: texture + offset: 0x39E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_011_tlut_wheel_2 +luigi_kart_frame011_wheel3: + symbol: gKartLuigi011Wheel3 + type: texture + offset: 0x39E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_011_tlut_wheel_3 +luigi_kart_frame012_wheel0: + symbol: gKartLuigi012Wheel0 + type: texture + offset: 0x3FB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_012_tlut_wheel_0 +luigi_kart_frame012_wheel1: + symbol: gKartLuigi012Wheel1 + type: texture + offset: 0x3FB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_012_tlut_wheel_1 +luigi_kart_frame012_wheel2: + symbol: gKartLuigi012Wheel2 + type: texture + offset: 0x3FB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_012_tlut_wheel_2 +luigi_kart_frame012_wheel3: + symbol: gKartLuigi012Wheel3 + type: texture + offset: 0x3FB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_012_tlut_wheel_3 +luigi_kart_frame013_wheel0: + symbol: gKartLuigi013Wheel0 + type: texture + offset: 0x4580 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_013_tlut_wheel_0 +luigi_kart_frame013_wheel1: + symbol: gKartLuigi013Wheel1 + type: texture + offset: 0x4580 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_013_tlut_wheel_1 +luigi_kart_frame013_wheel2: + symbol: gKartLuigi013Wheel2 + type: texture + offset: 0x4580 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_013_tlut_wheel_2 +luigi_kart_frame013_wheel3: + symbol: gKartLuigi013Wheel3 + type: texture + offset: 0x4580 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_013_tlut_wheel_3 +luigi_kart_frame014_wheel0: + symbol: gKartLuigi014Wheel0 + type: texture + offset: 0x4B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_014_tlut_wheel_0 +luigi_kart_frame014_wheel1: + symbol: gKartLuigi014Wheel1 + type: texture + offset: 0x4B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_014_tlut_wheel_1 +luigi_kart_frame014_wheel2: + symbol: gKartLuigi014Wheel2 + type: texture + offset: 0x4B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_014_tlut_wheel_2 +luigi_kart_frame014_wheel3: + symbol: gKartLuigi014Wheel3 + type: texture + offset: 0x4B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_014_tlut_wheel_3 +luigi_kart_frame015_wheel0: + symbol: gKartLuigi015Wheel0 + type: texture + offset: 0x5138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_015_tlut_wheel_0 +luigi_kart_frame015_wheel1: + symbol: gKartLuigi015Wheel1 + type: texture + offset: 0x5138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_015_tlut_wheel_1 +luigi_kart_frame015_wheel2: + symbol: gKartLuigi015Wheel2 + type: texture + offset: 0x5138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_015_tlut_wheel_2 +luigi_kart_frame015_wheel3: + symbol: gKartLuigi015Wheel3 + type: texture + offset: 0x5138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_015_tlut_wheel_3 +luigi_kart_frame016_wheel0: + symbol: gKartLuigi016Wheel0 + type: texture + offset: 0x5730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_016_tlut_wheel_0 +luigi_kart_frame016_wheel1: + symbol: gKartLuigi016Wheel1 + type: texture + offset: 0x5730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_016_tlut_wheel_1 +luigi_kart_frame016_wheel2: + symbol: gKartLuigi016Wheel2 + type: texture + offset: 0x5730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_016_tlut_wheel_2 +luigi_kart_frame016_wheel3: + symbol: gKartLuigi016Wheel3 + type: texture + offset: 0x5730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_016_tlut_wheel_3 +luigi_kart_frame017_wheel0: + symbol: gKartLuigi017Wheel0 + type: texture + offset: 0x5D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_017_tlut_wheel_0 +luigi_kart_frame017_wheel1: + symbol: gKartLuigi017Wheel1 + type: texture + offset: 0x5D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_017_tlut_wheel_1 +luigi_kart_frame017_wheel2: + symbol: gKartLuigi017Wheel2 + type: texture + offset: 0x5D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_017_tlut_wheel_2 +luigi_kart_frame017_wheel3: + symbol: gKartLuigi017Wheel3 + type: texture + offset: 0x5D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_017_tlut_wheel_3 +luigi_kart_frame018_wheel0: + symbol: gKartLuigi018Wheel0 + type: texture + offset: 0x6350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_018_tlut_wheel_0 +luigi_kart_frame018_wheel1: + symbol: gKartLuigi018Wheel1 + type: texture + offset: 0x6350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_018_tlut_wheel_1 +luigi_kart_frame018_wheel2: + symbol: gKartLuigi018Wheel2 + type: texture + offset: 0x6350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_018_tlut_wheel_2 +luigi_kart_frame018_wheel3: + symbol: gKartLuigi018Wheel3 + type: texture + offset: 0x6350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_018_tlut_wheel_3 +luigi_kart_frame019_wheel0: + symbol: gKartLuigi019Wheel0 + type: texture + offset: 0x6968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_019_tlut_wheel_0 +luigi_kart_frame019_wheel1: + symbol: gKartLuigi019Wheel1 + type: texture + offset: 0x6968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_019_tlut_wheel_1 +luigi_kart_frame019_wheel2: + symbol: gKartLuigi019Wheel2 + type: texture + offset: 0x6968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_019_tlut_wheel_2 +luigi_kart_frame019_wheel3: + symbol: gKartLuigi019Wheel3 + type: texture + offset: 0x6968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_019_tlut_wheel_3 +luigi_kart_frame020_wheel0: + symbol: gKartLuigi020Wheel0 + type: texture + offset: 0x6F70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_020_tlut_wheel_0 +luigi_kart_frame020_wheel1: + symbol: gKartLuigi020Wheel1 + type: texture + offset: 0x6F70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_020_tlut_wheel_1 +luigi_kart_frame020_wheel2: + symbol: gKartLuigi020Wheel2 + type: texture + offset: 0x6F70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_020_tlut_wheel_2 +luigi_kart_frame020_wheel3: + symbol: gKartLuigi020Wheel3 + type: texture + offset: 0x6F70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_020_tlut_wheel_3 +luigi_kart_frame021_wheel0: + symbol: gKartLuigi021Wheel0 + type: texture + offset: 0x7570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_021_tlut_wheel_0 +luigi_kart_frame021_wheel1: + symbol: gKartLuigi021Wheel1 + type: texture + offset: 0x7570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_021_tlut_wheel_1 +luigi_kart_frame021_wheel2: + symbol: gKartLuigi021Wheel2 + type: texture + offset: 0x7570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_021_tlut_wheel_2 +luigi_kart_frame021_wheel3: + symbol: gKartLuigi021Wheel3 + type: texture + offset: 0x7570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_021_tlut_wheel_3 +luigi_kart_frame022_wheel0: + symbol: gKartLuigi022Wheel0 + type: texture + offset: 0x7A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_022_tlut_wheel_0 +luigi_kart_frame022_wheel1: + symbol: gKartLuigi022Wheel1 + type: texture + offset: 0x7A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_022_tlut_wheel_1 +luigi_kart_frame022_wheel2: + symbol: gKartLuigi022Wheel2 + type: texture + offset: 0x7A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_022_tlut_wheel_2 +luigi_kart_frame022_wheel3: + symbol: gKartLuigi022Wheel3 + type: texture + offset: 0x7A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_022_tlut_wheel_3 +luigi_kart_frame023_wheel0: + symbol: gKartLuigi023Wheel0 + type: texture + offset: 0x7F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_023_tlut_wheel_0 +luigi_kart_frame023_wheel1: + symbol: gKartLuigi023Wheel1 + type: texture + offset: 0x7F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_023_tlut_wheel_1 +luigi_kart_frame023_wheel2: + symbol: gKartLuigi023Wheel2 + type: texture + offset: 0x7F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_023_tlut_wheel_2 +luigi_kart_frame023_wheel3: + symbol: gKartLuigi023Wheel3 + type: texture + offset: 0x7F60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_023_tlut_wheel_3 +luigi_kart_frame024_wheel0: + symbol: gKartLuigi024Wheel0 + type: texture + offset: 0x8460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_024_tlut_wheel_0 +luigi_kart_frame024_wheel1: + symbol: gKartLuigi024Wheel1 + type: texture + offset: 0x8460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_024_tlut_wheel_1 +luigi_kart_frame024_wheel2: + symbol: gKartLuigi024Wheel2 + type: texture + offset: 0x8460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_024_tlut_wheel_2 +luigi_kart_frame024_wheel3: + symbol: gKartLuigi024Wheel3 + type: texture + offset: 0x8460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_024_tlut_wheel_3 +luigi_kart_frame025_wheel0: + symbol: gKartLuigi025Wheel0 + type: texture + offset: 0x8988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_025_tlut_wheel_0 +luigi_kart_frame025_wheel1: + symbol: gKartLuigi025Wheel1 + type: texture + offset: 0x8988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_025_tlut_wheel_1 +luigi_kart_frame025_wheel2: + symbol: gKartLuigi025Wheel2 + type: texture + offset: 0x8988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_025_tlut_wheel_2 +luigi_kart_frame025_wheel3: + symbol: gKartLuigi025Wheel3 + type: texture + offset: 0x8988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_025_tlut_wheel_3 +luigi_kart_frame026_wheel0: + symbol: gKartLuigi026Wheel0 + type: texture + offset: 0x8EC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_026_tlut_wheel_0 +luigi_kart_frame026_wheel1: + symbol: gKartLuigi026Wheel1 + type: texture + offset: 0x8EC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_026_tlut_wheel_1 +luigi_kart_frame026_wheel2: + symbol: gKartLuigi026Wheel2 + type: texture + offset: 0x8EC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_026_tlut_wheel_2 +luigi_kart_frame026_wheel3: + symbol: gKartLuigi026Wheel3 + type: texture + offset: 0x8EC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_026_tlut_wheel_3 +luigi_kart_frame027_wheel0: + symbol: gKartLuigi027Wheel0 + type: texture + offset: 0x9408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_027_tlut_wheel_0 +luigi_kart_frame027_wheel1: + symbol: gKartLuigi027Wheel1 + type: texture + offset: 0x9408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_027_tlut_wheel_1 +luigi_kart_frame027_wheel2: + symbol: gKartLuigi027Wheel2 + type: texture + offset: 0x9408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_027_tlut_wheel_2 +luigi_kart_frame027_wheel3: + symbol: gKartLuigi027Wheel3 + type: texture + offset: 0x9408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_027_tlut_wheel_3 +luigi_kart_frame028_wheel0: + symbol: gKartLuigi028Wheel0 + type: texture + offset: 0x9978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_028_tlut_wheel_0 +luigi_kart_frame028_wheel1: + symbol: gKartLuigi028Wheel1 + type: texture + offset: 0x9978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_028_tlut_wheel_1 +luigi_kart_frame028_wheel2: + symbol: gKartLuigi028Wheel2 + type: texture + offset: 0x9978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_028_tlut_wheel_2 +luigi_kart_frame028_wheel3: + symbol: gKartLuigi028Wheel3 + type: texture + offset: 0x9978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_028_tlut_wheel_3 +luigi_kart_frame029_wheel0: + symbol: gKartLuigi029Wheel0 + type: texture + offset: 0x9EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_029_tlut_wheel_0 +luigi_kart_frame029_wheel1: + symbol: gKartLuigi029Wheel1 + type: texture + offset: 0x9EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_029_tlut_wheel_1 +luigi_kart_frame029_wheel2: + symbol: gKartLuigi029Wheel2 + type: texture + offset: 0x9EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_029_tlut_wheel_2 +luigi_kart_frame029_wheel3: + symbol: gKartLuigi029Wheel3 + type: texture + offset: 0x9EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_029_tlut_wheel_3 +luigi_kart_frame030_wheel0: + symbol: gKartLuigi030Wheel0 + type: texture + offset: 0xA490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_030_tlut_wheel_0 +luigi_kart_frame030_wheel1: + symbol: gKartLuigi030Wheel1 + type: texture + offset: 0xA490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_030_tlut_wheel_1 +luigi_kart_frame030_wheel2: + symbol: gKartLuigi030Wheel2 + type: texture + offset: 0xA490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_030_tlut_wheel_2 +luigi_kart_frame030_wheel3: + symbol: gKartLuigi030Wheel3 + type: texture + offset: 0xA490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_030_tlut_wheel_3 +luigi_kart_frame031_wheel0: + symbol: gKartLuigi031Wheel0 + type: texture + offset: 0xAA38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_031_tlut_wheel_0 +luigi_kart_frame031_wheel1: + symbol: gKartLuigi031Wheel1 + type: texture + offset: 0xAA38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_031_tlut_wheel_1 +luigi_kart_frame031_wheel2: + symbol: gKartLuigi031Wheel2 + type: texture + offset: 0xAA38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_031_tlut_wheel_2 +luigi_kart_frame031_wheel3: + symbol: gKartLuigi031Wheel3 + type: texture + offset: 0xAA38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_031_tlut_wheel_3 +luigi_kart_frame032_wheel0: + symbol: gKartLuigi032Wheel0 + type: texture + offset: 0xB000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_032_tlut_wheel_0 +luigi_kart_frame032_wheel1: + symbol: gKartLuigi032Wheel1 + type: texture + offset: 0xB000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_032_tlut_wheel_1 +luigi_kart_frame032_wheel2: + symbol: gKartLuigi032Wheel2 + type: texture + offset: 0xB000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_032_tlut_wheel_2 +luigi_kart_frame032_wheel3: + symbol: gKartLuigi032Wheel3 + type: texture + offset: 0xB000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_032_tlut_wheel_3 +luigi_kart_frame033_wheel0: + symbol: gKartLuigi033Wheel0 + type: texture + offset: 0xB5D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_033_tlut_wheel_0 +luigi_kart_frame033_wheel1: + symbol: gKartLuigi033Wheel1 + type: texture + offset: 0xB5D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_033_tlut_wheel_1 +luigi_kart_frame033_wheel2: + symbol: gKartLuigi033Wheel2 + type: texture + offset: 0xB5D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_033_tlut_wheel_2 +luigi_kart_frame033_wheel3: + symbol: gKartLuigi033Wheel3 + type: texture + offset: 0xB5D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_033_tlut_wheel_3 +luigi_kart_frame034_wheel0: + symbol: gKartLuigi034Wheel0 + type: texture + offset: 0xBBB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_034_tlut_wheel_0 +luigi_kart_frame034_wheel1: + symbol: gKartLuigi034Wheel1 + type: texture + offset: 0xBBB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_034_tlut_wheel_1 +luigi_kart_frame034_wheel2: + symbol: gKartLuigi034Wheel2 + type: texture + offset: 0xBBB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_034_tlut_wheel_2 +luigi_kart_frame034_wheel3: + symbol: gKartLuigi034Wheel3 + type: texture + offset: 0xBBB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_034_tlut_wheel_3 +luigi_kart_frame035_wheel0: + symbol: gKartLuigi035Wheel0 + type: texture + offset: 0xC1A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_035_tlut_wheel_0 +luigi_kart_frame035_wheel1: + symbol: gKartLuigi035Wheel1 + type: texture + offset: 0xC1A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_035_tlut_wheel_1 +luigi_kart_frame035_wheel2: + symbol: gKartLuigi035Wheel2 + type: texture + offset: 0xC1A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_035_tlut_wheel_2 +luigi_kart_frame035_wheel3: + symbol: gKartLuigi035Wheel3 + type: texture + offset: 0xC1A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_035_tlut_wheel_3 +luigi_kart_frame036_wheel0: + symbol: gKartLuigi036Wheel0 + type: texture + offset: 0xC7AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_036_tlut_wheel_0 +luigi_kart_frame036_wheel1: + symbol: gKartLuigi036Wheel1 + type: texture + offset: 0xC7AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_036_tlut_wheel_1 +luigi_kart_frame036_wheel2: + symbol: gKartLuigi036Wheel2 + type: texture + offset: 0xC7AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_036_tlut_wheel_2 +luigi_kart_frame036_wheel3: + symbol: gKartLuigi036Wheel3 + type: texture + offset: 0xC7AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_036_tlut_wheel_3 +luigi_kart_frame037_wheel0: + symbol: gKartLuigi037Wheel0 + type: texture + offset: 0xCDC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_037_tlut_wheel_0 +luigi_kart_frame037_wheel1: + symbol: gKartLuigi037Wheel1 + type: texture + offset: 0xCDC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_037_tlut_wheel_1 +luigi_kart_frame037_wheel2: + symbol: gKartLuigi037Wheel2 + type: texture + offset: 0xCDC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_037_tlut_wheel_2 +luigi_kart_frame037_wheel3: + symbol: gKartLuigi037Wheel3 + type: texture + offset: 0xCDC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_037_tlut_wheel_3 +luigi_kart_frame038_wheel0: + symbol: gKartLuigi038Wheel0 + type: texture + offset: 0xD3D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_038_tlut_wheel_0 +luigi_kart_frame038_wheel1: + symbol: gKartLuigi038Wheel1 + type: texture + offset: 0xD3D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_038_tlut_wheel_1 +luigi_kart_frame038_wheel2: + symbol: gKartLuigi038Wheel2 + type: texture + offset: 0xD3D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_038_tlut_wheel_2 +luigi_kart_frame038_wheel3: + symbol: gKartLuigi038Wheel3 + type: texture + offset: 0xD3D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_038_tlut_wheel_3 +luigi_kart_frame039_wheel0: + symbol: gKartLuigi039Wheel0 + type: texture + offset: 0xD9E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_039_tlut_wheel_0 +luigi_kart_frame039_wheel1: + symbol: gKartLuigi039Wheel1 + type: texture + offset: 0xD9E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_039_tlut_wheel_1 +luigi_kart_frame039_wheel2: + symbol: gKartLuigi039Wheel2 + type: texture + offset: 0xD9E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_039_tlut_wheel_2 +luigi_kart_frame039_wheel3: + symbol: gKartLuigi039Wheel3 + type: texture + offset: 0xD9E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_039_tlut_wheel_3 +luigi_kart_frame040_wheel0: + symbol: gKartLuigi040Wheel0 + type: texture + offset: 0xE008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_040_tlut_wheel_0 +luigi_kart_frame040_wheel1: + symbol: gKartLuigi040Wheel1 + type: texture + offset: 0xE008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_040_tlut_wheel_1 +luigi_kart_frame040_wheel2: + symbol: gKartLuigi040Wheel2 + type: texture + offset: 0xE008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_040_tlut_wheel_2 +luigi_kart_frame040_wheel3: + symbol: gKartLuigi040Wheel3 + type: texture + offset: 0xE008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_040_tlut_wheel_3 +luigi_kart_frame041_wheel0: + symbol: gKartLuigi041Wheel0 + type: texture + offset: 0xE60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_041_tlut_wheel_0 +luigi_kart_frame041_wheel1: + symbol: gKartLuigi041Wheel1 + type: texture + offset: 0xE60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_041_tlut_wheel_1 +luigi_kart_frame041_wheel2: + symbol: gKartLuigi041Wheel2 + type: texture + offset: 0xE60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_041_tlut_wheel_2 +luigi_kart_frame041_wheel3: + symbol: gKartLuigi041Wheel3 + type: texture + offset: 0xE60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_041_tlut_wheel_3 +luigi_kart_frame042_wheel0: + symbol: gKartLuigi042Wheel0 + type: texture + offset: 0xEC40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_042_tlut_wheel_0 +luigi_kart_frame042_wheel1: + symbol: gKartLuigi042Wheel1 + type: texture + offset: 0xEC40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_042_tlut_wheel_1 +luigi_kart_frame042_wheel2: + symbol: gKartLuigi042Wheel2 + type: texture + offset: 0xEC40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_042_tlut_wheel_2 +luigi_kart_frame042_wheel3: + symbol: gKartLuigi042Wheel3 + type: texture + offset: 0xEC40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_042_tlut_wheel_3 +luigi_kart_frame043_wheel0: + symbol: gKartLuigi043Wheel0 + type: texture + offset: 0xF128 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_043_tlut_wheel_0 +luigi_kart_frame043_wheel1: + symbol: gKartLuigi043Wheel1 + type: texture + offset: 0xF128 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_043_tlut_wheel_1 +luigi_kart_frame043_wheel2: + symbol: gKartLuigi043Wheel2 + type: texture + offset: 0xF128 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_043_tlut_wheel_2 +luigi_kart_frame043_wheel3: + symbol: gKartLuigi043Wheel3 + type: texture + offset: 0xF128 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_043_tlut_wheel_3 +luigi_kart_frame044_wheel0: + symbol: gKartLuigi044Wheel0 + type: texture + offset: 0xF62C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_044_tlut_wheel_0 +luigi_kart_frame044_wheel1: + symbol: gKartLuigi044Wheel1 + type: texture + offset: 0xF62C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_044_tlut_wheel_1 +luigi_kart_frame044_wheel2: + symbol: gKartLuigi044Wheel2 + type: texture + offset: 0xF62C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_044_tlut_wheel_2 +luigi_kart_frame044_wheel3: + symbol: gKartLuigi044Wheel3 + type: texture + offset: 0xF62C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_044_tlut_wheel_3 +luigi_kart_frame045_wheel0: + symbol: gKartLuigi045Wheel0 + type: texture + offset: 0xFB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_045_tlut_wheel_0 +luigi_kart_frame045_wheel1: + symbol: gKartLuigi045Wheel1 + type: texture + offset: 0xFB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_045_tlut_wheel_1 +luigi_kart_frame045_wheel2: + symbol: gKartLuigi045Wheel2 + type: texture + offset: 0xFB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_045_tlut_wheel_2 +luigi_kart_frame045_wheel3: + symbol: gKartLuigi045Wheel3 + type: texture + offset: 0xFB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_045_tlut_wheel_3 +luigi_kart_frame046_wheel0: + symbol: gKartLuigi046Wheel0 + type: texture + offset: 0x10098 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_046_tlut_wheel_0 +luigi_kart_frame046_wheel1: + symbol: gKartLuigi046Wheel1 + type: texture + offset: 0x10098 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_046_tlut_wheel_1 +luigi_kart_frame046_wheel2: + symbol: gKartLuigi046Wheel2 + type: texture + offset: 0x10098 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_046_tlut_wheel_2 +luigi_kart_frame046_wheel3: + symbol: gKartLuigi046Wheel3 + type: texture + offset: 0x10098 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_046_tlut_wheel_3 +luigi_kart_frame047_wheel0: + symbol: gKartLuigi047Wheel0 + type: texture + offset: 0x10618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_047_tlut_wheel_0 +luigi_kart_frame047_wheel1: + symbol: gKartLuigi047Wheel1 + type: texture + offset: 0x10618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_047_tlut_wheel_1 +luigi_kart_frame047_wheel2: + symbol: gKartLuigi047Wheel2 + type: texture + offset: 0x10618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_047_tlut_wheel_2 +luigi_kart_frame047_wheel3: + symbol: gKartLuigi047Wheel3 + type: texture + offset: 0x10618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_047_tlut_wheel_3 +luigi_kart_frame048_wheel0: + symbol: gKartLuigi048Wheel0 + type: texture + offset: 0x10B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_048_tlut_wheel_0 +luigi_kart_frame048_wheel1: + symbol: gKartLuigi048Wheel1 + type: texture + offset: 0x10B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_048_tlut_wheel_1 +luigi_kart_frame048_wheel2: + symbol: gKartLuigi048Wheel2 + type: texture + offset: 0x10B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_048_tlut_wheel_2 +luigi_kart_frame048_wheel3: + symbol: gKartLuigi048Wheel3 + type: texture + offset: 0x10B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_048_tlut_wheel_3 +luigi_kart_frame049_wheel0: + symbol: gKartLuigi049Wheel0 + type: texture + offset: 0x11100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_049_tlut_wheel_0 +luigi_kart_frame049_wheel1: + symbol: gKartLuigi049Wheel1 + type: texture + offset: 0x11100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_049_tlut_wheel_1 +luigi_kart_frame049_wheel2: + symbol: gKartLuigi049Wheel2 + type: texture + offset: 0x11100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_049_tlut_wheel_2 +luigi_kart_frame049_wheel3: + symbol: gKartLuigi049Wheel3 + type: texture + offset: 0x11100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_049_tlut_wheel_3 +luigi_kart_frame050_wheel0: + symbol: gKartLuigi050Wheel0 + type: texture + offset: 0x1169C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_050_tlut_wheel_0 +luigi_kart_frame050_wheel1: + symbol: gKartLuigi050Wheel1 + type: texture + offset: 0x1169C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_050_tlut_wheel_1 +luigi_kart_frame050_wheel2: + symbol: gKartLuigi050Wheel2 + type: texture + offset: 0x1169C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_050_tlut_wheel_2 +luigi_kart_frame050_wheel3: + symbol: gKartLuigi050Wheel3 + type: texture + offset: 0x1169C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_050_tlut_wheel_3 +luigi_kart_frame051_wheel0: + symbol: gKartLuigi051Wheel0 + type: texture + offset: 0x11C44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_051_tlut_wheel_0 +luigi_kart_frame051_wheel1: + symbol: gKartLuigi051Wheel1 + type: texture + offset: 0x11C44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_051_tlut_wheel_1 +luigi_kart_frame051_wheel2: + symbol: gKartLuigi051Wheel2 + type: texture + offset: 0x11C44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_051_tlut_wheel_2 +luigi_kart_frame051_wheel3: + symbol: gKartLuigi051Wheel3 + type: texture + offset: 0x11C44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_051_tlut_wheel_3 +luigi_kart_frame052_wheel0: + symbol: gKartLuigi052Wheel0 + type: texture + offset: 0x12200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_052_tlut_wheel_0 +luigi_kart_frame052_wheel1: + symbol: gKartLuigi052Wheel1 + type: texture + offset: 0x12200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_052_tlut_wheel_1 +luigi_kart_frame052_wheel2: + symbol: gKartLuigi052Wheel2 + type: texture + offset: 0x12200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_052_tlut_wheel_2 +luigi_kart_frame052_wheel3: + symbol: gKartLuigi052Wheel3 + type: texture + offset: 0x12200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_052_tlut_wheel_3 +luigi_kart_frame053_wheel0: + symbol: gKartLuigi053Wheel0 + type: texture + offset: 0x127E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_053_tlut_wheel_0 +luigi_kart_frame053_wheel1: + symbol: gKartLuigi053Wheel1 + type: texture + offset: 0x127E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_053_tlut_wheel_1 +luigi_kart_frame053_wheel2: + symbol: gKartLuigi053Wheel2 + type: texture + offset: 0x127E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_053_tlut_wheel_2 +luigi_kart_frame053_wheel3: + symbol: gKartLuigi053Wheel3 + type: texture + offset: 0x127E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_053_tlut_wheel_3 +luigi_kart_frame054_wheel0: + symbol: gKartLuigi054Wheel0 + type: texture + offset: 0x12DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_054_tlut_wheel_0 +luigi_kart_frame054_wheel1: + symbol: gKartLuigi054Wheel1 + type: texture + offset: 0x12DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_054_tlut_wheel_1 +luigi_kart_frame054_wheel2: + symbol: gKartLuigi054Wheel2 + type: texture + offset: 0x12DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_054_tlut_wheel_2 +luigi_kart_frame054_wheel3: + symbol: gKartLuigi054Wheel3 + type: texture + offset: 0x12DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_054_tlut_wheel_3 +luigi_kart_frame055_wheel0: + symbol: gKartLuigi055Wheel0 + type: texture + offset: 0x133B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_055_tlut_wheel_0 +luigi_kart_frame055_wheel1: + symbol: gKartLuigi055Wheel1 + type: texture + offset: 0x133B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_055_tlut_wheel_1 +luigi_kart_frame055_wheel2: + symbol: gKartLuigi055Wheel2 + type: texture + offset: 0x133B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_055_tlut_wheel_2 +luigi_kart_frame055_wheel3: + symbol: gKartLuigi055Wheel3 + type: texture + offset: 0x133B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_055_tlut_wheel_3 +luigi_kart_frame056_wheel0: + symbol: gKartLuigi056Wheel0 + type: texture + offset: 0x139C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_056_tlut_wheel_0 +luigi_kart_frame056_wheel1: + symbol: gKartLuigi056Wheel1 + type: texture + offset: 0x139C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_056_tlut_wheel_1 +luigi_kart_frame056_wheel2: + symbol: gKartLuigi056Wheel2 + type: texture + offset: 0x139C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_056_tlut_wheel_2 +luigi_kart_frame056_wheel3: + symbol: gKartLuigi056Wheel3 + type: texture + offset: 0x139C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_056_tlut_wheel_3 +luigi_kart_frame057_wheel0: + symbol: gKartLuigi057Wheel0 + type: texture + offset: 0x13FB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_057_tlut_wheel_0 +luigi_kart_frame057_wheel1: + symbol: gKartLuigi057Wheel1 + type: texture + offset: 0x13FB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_057_tlut_wheel_1 +luigi_kart_frame057_wheel2: + symbol: gKartLuigi057Wheel2 + type: texture + offset: 0x13FB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_057_tlut_wheel_2 +luigi_kart_frame057_wheel3: + symbol: gKartLuigi057Wheel3 + type: texture + offset: 0x13FB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_057_tlut_wheel_3 +luigi_kart_frame058_wheel0: + symbol: gKartLuigi058Wheel0 + type: texture + offset: 0x145C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_058_tlut_wheel_0 +luigi_kart_frame058_wheel1: + symbol: gKartLuigi058Wheel1 + type: texture + offset: 0x145C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_058_tlut_wheel_1 +luigi_kart_frame058_wheel2: + symbol: gKartLuigi058Wheel2 + type: texture + offset: 0x145C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_058_tlut_wheel_2 +luigi_kart_frame058_wheel3: + symbol: gKartLuigi058Wheel3 + type: texture + offset: 0x145C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_058_tlut_wheel_3 +luigi_kart_frame059_wheel0: + symbol: gKartLuigi059Wheel0 + type: texture + offset: 0x14BE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_059_tlut_wheel_0 +luigi_kart_frame059_wheel1: + symbol: gKartLuigi059Wheel1 + type: texture + offset: 0x14BE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_059_tlut_wheel_1 +luigi_kart_frame059_wheel2: + symbol: gKartLuigi059Wheel2 + type: texture + offset: 0x14BE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_059_tlut_wheel_2 +luigi_kart_frame059_wheel3: + symbol: gKartLuigi059Wheel3 + type: texture + offset: 0x14BE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_059_tlut_wheel_3 +luigi_kart_frame060_wheel0: + symbol: gKartLuigi060Wheel0 + type: texture + offset: 0x15220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_060_tlut_wheel_0 +luigi_kart_frame060_wheel1: + symbol: gKartLuigi060Wheel1 + type: texture + offset: 0x15220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_060_tlut_wheel_1 +luigi_kart_frame060_wheel2: + symbol: gKartLuigi060Wheel2 + type: texture + offset: 0x15220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_060_tlut_wheel_2 +luigi_kart_frame060_wheel3: + symbol: gKartLuigi060Wheel3 + type: texture + offset: 0x15220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_060_tlut_wheel_3 +luigi_kart_frame061_wheel0: + symbol: gKartLuigi061Wheel0 + type: texture + offset: 0x15850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_061_tlut_wheel_0 +luigi_kart_frame061_wheel1: + symbol: gKartLuigi061Wheel1 + type: texture + offset: 0x15850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_061_tlut_wheel_1 +luigi_kart_frame061_wheel2: + symbol: gKartLuigi061Wheel2 + type: texture + offset: 0x15850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_061_tlut_wheel_2 +luigi_kart_frame061_wheel3: + symbol: gKartLuigi061Wheel3 + type: texture + offset: 0x15850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_061_tlut_wheel_3 +luigi_kart_frame062_wheel0: + symbol: gKartLuigi062Wheel0 + type: texture + offset: 0x15E98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_062_tlut_wheel_0 +luigi_kart_frame062_wheel1: + symbol: gKartLuigi062Wheel1 + type: texture + offset: 0x15E98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_062_tlut_wheel_1 +luigi_kart_frame062_wheel2: + symbol: gKartLuigi062Wheel2 + type: texture + offset: 0x15E98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_062_tlut_wheel_2 +luigi_kart_frame062_wheel3: + symbol: gKartLuigi062Wheel3 + type: texture + offset: 0x15E98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_062_tlut_wheel_3 +luigi_kart_frame063_wheel0: + symbol: gKartLuigi063Wheel0 + type: texture + offset: 0x164D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_063_tlut_wheel_0 +luigi_kart_frame063_wheel1: + symbol: gKartLuigi063Wheel1 + type: texture + offset: 0x164D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_063_tlut_wheel_1 +luigi_kart_frame063_wheel2: + symbol: gKartLuigi063Wheel2 + type: texture + offset: 0x164D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_063_tlut_wheel_2 +luigi_kart_frame063_wheel3: + symbol: gKartLuigi063Wheel3 + type: texture + offset: 0x164D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_063_tlut_wheel_3 +luigi_kart_frame064_wheel0: + symbol: gKartLuigi064Wheel0 + type: texture + offset: 0x169E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_064_tlut_wheel_0 +luigi_kart_frame064_wheel1: + symbol: gKartLuigi064Wheel1 + type: texture + offset: 0x169E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_064_tlut_wheel_1 +luigi_kart_frame064_wheel2: + symbol: gKartLuigi064Wheel2 + type: texture + offset: 0x169E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_064_tlut_wheel_2 +luigi_kart_frame064_wheel3: + symbol: gKartLuigi064Wheel3 + type: texture + offset: 0x169E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_064_tlut_wheel_3 +luigi_kart_frame065_wheel0: + symbol: gKartLuigi065Wheel0 + type: texture + offset: 0x16EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_065_tlut_wheel_0 +luigi_kart_frame065_wheel1: + symbol: gKartLuigi065Wheel1 + type: texture + offset: 0x16EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_065_tlut_wheel_1 +luigi_kart_frame065_wheel2: + symbol: gKartLuigi065Wheel2 + type: texture + offset: 0x16EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_065_tlut_wheel_2 +luigi_kart_frame065_wheel3: + symbol: gKartLuigi065Wheel3 + type: texture + offset: 0x16EF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_065_tlut_wheel_3 +luigi_kart_frame066_wheel0: + symbol: gKartLuigi066Wheel0 + type: texture + offset: 0x17418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_066_tlut_wheel_0 +luigi_kart_frame066_wheel1: + symbol: gKartLuigi066Wheel1 + type: texture + offset: 0x17418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_066_tlut_wheel_1 +luigi_kart_frame066_wheel2: + symbol: gKartLuigi066Wheel2 + type: texture + offset: 0x17418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_066_tlut_wheel_2 +luigi_kart_frame066_wheel3: + symbol: gKartLuigi066Wheel3 + type: texture + offset: 0x17418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_066_tlut_wheel_3 +luigi_kart_frame067_wheel0: + symbol: gKartLuigi067Wheel0 + type: texture + offset: 0x17978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_067_tlut_wheel_0 +luigi_kart_frame067_wheel1: + symbol: gKartLuigi067Wheel1 + type: texture + offset: 0x17978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_067_tlut_wheel_1 +luigi_kart_frame067_wheel2: + symbol: gKartLuigi067Wheel2 + type: texture + offset: 0x17978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_067_tlut_wheel_2 +luigi_kart_frame067_wheel3: + symbol: gKartLuigi067Wheel3 + type: texture + offset: 0x17978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_067_tlut_wheel_3 +luigi_kart_frame068_wheel0: + symbol: gKartLuigi068Wheel0 + type: texture + offset: 0x17EE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_068_tlut_wheel_0 +luigi_kart_frame068_wheel1: + symbol: gKartLuigi068Wheel1 + type: texture + offset: 0x17EE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_068_tlut_wheel_1 +luigi_kart_frame068_wheel2: + symbol: gKartLuigi068Wheel2 + type: texture + offset: 0x17EE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_068_tlut_wheel_2 +luigi_kart_frame068_wheel3: + symbol: gKartLuigi068Wheel3 + type: texture + offset: 0x17EE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_068_tlut_wheel_3 +luigi_kart_frame069_wheel0: + symbol: gKartLuigi069Wheel0 + type: texture + offset: 0x1847C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_069_tlut_wheel_0 +luigi_kart_frame069_wheel1: + symbol: gKartLuigi069Wheel1 + type: texture + offset: 0x1847C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_069_tlut_wheel_1 +luigi_kart_frame069_wheel2: + symbol: gKartLuigi069Wheel2 + type: texture + offset: 0x1847C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_069_tlut_wheel_2 +luigi_kart_frame069_wheel3: + symbol: gKartLuigi069Wheel3 + type: texture + offset: 0x1847C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_069_tlut_wheel_3 +luigi_kart_frame070_wheel0: + symbol: gKartLuigi070Wheel0 + type: texture + offset: 0x18A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_070_tlut_wheel_0 +luigi_kart_frame070_wheel1: + symbol: gKartLuigi070Wheel1 + type: texture + offset: 0x18A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_070_tlut_wheel_1 +luigi_kart_frame070_wheel2: + symbol: gKartLuigi070Wheel2 + type: texture + offset: 0x18A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_070_tlut_wheel_2 +luigi_kart_frame070_wheel3: + symbol: gKartLuigi070Wheel3 + type: texture + offset: 0x18A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_070_tlut_wheel_3 +luigi_kart_frame071_wheel0: + symbol: gKartLuigi071Wheel0 + type: texture + offset: 0x18FB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_071_tlut_wheel_0 +luigi_kart_frame071_wheel1: + symbol: gKartLuigi071Wheel1 + type: texture + offset: 0x18FB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_071_tlut_wheel_1 +luigi_kart_frame071_wheel2: + symbol: gKartLuigi071Wheel2 + type: texture + offset: 0x18FB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_071_tlut_wheel_2 +luigi_kart_frame071_wheel3: + symbol: gKartLuigi071Wheel3 + type: texture + offset: 0x18FB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_071_tlut_wheel_3 +luigi_kart_frame072_wheel0: + symbol: gKartLuigi072Wheel0 + type: texture + offset: 0x1957C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_072_tlut_wheel_0 +luigi_kart_frame072_wheel1: + symbol: gKartLuigi072Wheel1 + type: texture + offset: 0x1957C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_072_tlut_wheel_1 +luigi_kart_frame072_wheel2: + symbol: gKartLuigi072Wheel2 + type: texture + offset: 0x1957C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_072_tlut_wheel_2 +luigi_kart_frame072_wheel3: + symbol: gKartLuigi072Wheel3 + type: texture + offset: 0x1957C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_072_tlut_wheel_3 +luigi_kart_frame073_wheel0: + symbol: gKartLuigi073Wheel0 + type: texture + offset: 0x19B50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_073_tlut_wheel_0 +luigi_kart_frame073_wheel1: + symbol: gKartLuigi073Wheel1 + type: texture + offset: 0x19B50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_073_tlut_wheel_1 +luigi_kart_frame073_wheel2: + symbol: gKartLuigi073Wheel2 + type: texture + offset: 0x19B50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_073_tlut_wheel_2 +luigi_kart_frame073_wheel3: + symbol: gKartLuigi073Wheel3 + type: texture + offset: 0x19B50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_073_tlut_wheel_3 +luigi_kart_frame074_wheel0: + symbol: gKartLuigi074Wheel0 + type: texture + offset: 0x1A140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_074_tlut_wheel_0 +luigi_kart_frame074_wheel1: + symbol: gKartLuigi074Wheel1 + type: texture + offset: 0x1A140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_074_tlut_wheel_1 +luigi_kart_frame074_wheel2: + symbol: gKartLuigi074Wheel2 + type: texture + offset: 0x1A140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_074_tlut_wheel_2 +luigi_kart_frame074_wheel3: + symbol: gKartLuigi074Wheel3 + type: texture + offset: 0x1A140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_074_tlut_wheel_3 +luigi_kart_frame075_wheel0: + symbol: gKartLuigi075Wheel0 + type: texture + offset: 0x1A734 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_075_tlut_wheel_0 +luigi_kart_frame075_wheel1: + symbol: gKartLuigi075Wheel1 + type: texture + offset: 0x1A734 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_075_tlut_wheel_1 +luigi_kart_frame075_wheel2: + symbol: gKartLuigi075Wheel2 + type: texture + offset: 0x1A734 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_075_tlut_wheel_2 +luigi_kart_frame075_wheel3: + symbol: gKartLuigi075Wheel3 + type: texture + offset: 0x1A734 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_075_tlut_wheel_3 +luigi_kart_frame076_wheel0: + symbol: gKartLuigi076Wheel0 + type: texture + offset: 0x1AD2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_076_tlut_wheel_0 +luigi_kart_frame076_wheel1: + symbol: gKartLuigi076Wheel1 + type: texture + offset: 0x1AD2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_076_tlut_wheel_1 +luigi_kart_frame076_wheel2: + symbol: gKartLuigi076Wheel2 + type: texture + offset: 0x1AD2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_076_tlut_wheel_2 +luigi_kart_frame076_wheel3: + symbol: gKartLuigi076Wheel3 + type: texture + offset: 0x1AD2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_076_tlut_wheel_3 +luigi_kart_frame077_wheel0: + symbol: gKartLuigi077Wheel0 + type: texture + offset: 0x1B33C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_077_tlut_wheel_0 +luigi_kart_frame077_wheel1: + symbol: gKartLuigi077Wheel1 + type: texture + offset: 0x1B33C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_077_tlut_wheel_1 +luigi_kart_frame077_wheel2: + symbol: gKartLuigi077Wheel2 + type: texture + offset: 0x1B33C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_077_tlut_wheel_2 +luigi_kart_frame077_wheel3: + symbol: gKartLuigi077Wheel3 + type: texture + offset: 0x1B33C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_077_tlut_wheel_3 +luigi_kart_frame078_wheel0: + symbol: gKartLuigi078Wheel0 + type: texture + offset: 0x1B95C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_078_tlut_wheel_0 +luigi_kart_frame078_wheel1: + symbol: gKartLuigi078Wheel1 + type: texture + offset: 0x1B95C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_078_tlut_wheel_1 +luigi_kart_frame078_wheel2: + symbol: gKartLuigi078Wheel2 + type: texture + offset: 0x1B95C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_078_tlut_wheel_2 +luigi_kart_frame078_wheel3: + symbol: gKartLuigi078Wheel3 + type: texture + offset: 0x1B95C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_078_tlut_wheel_3 +luigi_kart_frame079_wheel0: + symbol: gKartLuigi079Wheel0 + type: texture + offset: 0x1BF84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_079_tlut_wheel_0 +luigi_kart_frame079_wheel1: + symbol: gKartLuigi079Wheel1 + type: texture + offset: 0x1BF84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_079_tlut_wheel_1 +luigi_kart_frame079_wheel2: + symbol: gKartLuigi079Wheel2 + type: texture + offset: 0x1BF84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_079_tlut_wheel_2 +luigi_kart_frame079_wheel3: + symbol: gKartLuigi079Wheel3 + type: texture + offset: 0x1BF84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_079_tlut_wheel_3 +luigi_kart_frame080_wheel0: + symbol: gKartLuigi080Wheel0 + type: texture + offset: 0x1C5A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_080_tlut_wheel_0 +luigi_kart_frame080_wheel1: + symbol: gKartLuigi080Wheel1 + type: texture + offset: 0x1C5A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_080_tlut_wheel_1 +luigi_kart_frame080_wheel2: + symbol: gKartLuigi080Wheel2 + type: texture + offset: 0x1C5A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_080_tlut_wheel_2 +luigi_kart_frame080_wheel3: + symbol: gKartLuigi080Wheel3 + type: texture + offset: 0x1C5A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_080_tlut_wheel_3 +luigi_kart_frame081_wheel0: + symbol: gKartLuigi081Wheel0 + type: texture + offset: 0x1CBE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_081_tlut_wheel_0 +luigi_kart_frame081_wheel1: + symbol: gKartLuigi081Wheel1 + type: texture + offset: 0x1CBE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_081_tlut_wheel_1 +luigi_kart_frame081_wheel2: + symbol: gKartLuigi081Wheel2 + type: texture + offset: 0x1CBE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_081_tlut_wheel_2 +luigi_kart_frame081_wheel3: + symbol: gKartLuigi081Wheel3 + type: texture + offset: 0x1CBE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_081_tlut_wheel_3 +luigi_kart_frame082_wheel0: + symbol: gKartLuigi082Wheel0 + type: texture + offset: 0x1D224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_082_tlut_wheel_0 +luigi_kart_frame082_wheel1: + symbol: gKartLuigi082Wheel1 + type: texture + offset: 0x1D224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_082_tlut_wheel_1 +luigi_kart_frame082_wheel2: + symbol: gKartLuigi082Wheel2 + type: texture + offset: 0x1D224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_082_tlut_wheel_2 +luigi_kart_frame082_wheel3: + symbol: gKartLuigi082Wheel3 + type: texture + offset: 0x1D224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_082_tlut_wheel_3 +luigi_kart_frame083_wheel0: + symbol: gKartLuigi083Wheel0 + type: texture + offset: 0x1D85C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_083_tlut_wheel_0 +luigi_kart_frame083_wheel1: + symbol: gKartLuigi083Wheel1 + type: texture + offset: 0x1D85C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_083_tlut_wheel_1 +luigi_kart_frame083_wheel2: + symbol: gKartLuigi083Wheel2 + type: texture + offset: 0x1D85C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_083_tlut_wheel_2 +luigi_kart_frame083_wheel3: + symbol: gKartLuigi083Wheel3 + type: texture + offset: 0x1D85C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_083_tlut_wheel_3 +luigi_kart_frame084_wheel0: + symbol: gKartLuigi084Wheel0 + type: texture + offset: 0x1DE90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_084_tlut_wheel_0 +luigi_kart_frame084_wheel1: + symbol: gKartLuigi084Wheel1 + type: texture + offset: 0x1DE90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_084_tlut_wheel_1 +luigi_kart_frame084_wheel2: + symbol: gKartLuigi084Wheel2 + type: texture + offset: 0x1DE90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_084_tlut_wheel_2 +luigi_kart_frame084_wheel3: + symbol: gKartLuigi084Wheel3 + type: texture + offset: 0x1DE90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_084_tlut_wheel_3 +luigi_kart_frame085_wheel0: + symbol: gKartLuigi085Wheel0 + type: texture + offset: 0x1E39C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_085_tlut_wheel_0 +luigi_kart_frame085_wheel1: + symbol: gKartLuigi085Wheel1 + type: texture + offset: 0x1E39C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_085_tlut_wheel_1 +luigi_kart_frame085_wheel2: + symbol: gKartLuigi085Wheel2 + type: texture + offset: 0x1E39C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_085_tlut_wheel_2 +luigi_kart_frame085_wheel3: + symbol: gKartLuigi085Wheel3 + type: texture + offset: 0x1E39C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_085_tlut_wheel_3 +luigi_kart_frame086_wheel0: + symbol: gKartLuigi086Wheel0 + type: texture + offset: 0x1E8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_086_tlut_wheel_0 +luigi_kart_frame086_wheel1: + symbol: gKartLuigi086Wheel1 + type: texture + offset: 0x1E8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_086_tlut_wheel_1 +luigi_kart_frame086_wheel2: + symbol: gKartLuigi086Wheel2 + type: texture + offset: 0x1E8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_086_tlut_wheel_2 +luigi_kart_frame086_wheel3: + symbol: gKartLuigi086Wheel3 + type: texture + offset: 0x1E8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_086_tlut_wheel_3 +luigi_kart_frame087_wheel0: + symbol: gKartLuigi087Wheel0 + type: texture + offset: 0x1EE08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_087_tlut_wheel_0 +luigi_kart_frame087_wheel1: + symbol: gKartLuigi087Wheel1 + type: texture + offset: 0x1EE08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_087_tlut_wheel_1 +luigi_kart_frame087_wheel2: + symbol: gKartLuigi087Wheel2 + type: texture + offset: 0x1EE08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_087_tlut_wheel_2 +luigi_kart_frame087_wheel3: + symbol: gKartLuigi087Wheel3 + type: texture + offset: 0x1EE08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_087_tlut_wheel_3 +luigi_kart_frame088_wheel0: + symbol: gKartLuigi088Wheel0 + type: texture + offset: 0x1F35C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_088_tlut_wheel_0 +luigi_kart_frame088_wheel1: + symbol: gKartLuigi088Wheel1 + type: texture + offset: 0x1F35C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_088_tlut_wheel_1 +luigi_kart_frame088_wheel2: + symbol: gKartLuigi088Wheel2 + type: texture + offset: 0x1F35C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_088_tlut_wheel_2 +luigi_kart_frame088_wheel3: + symbol: gKartLuigi088Wheel3 + type: texture + offset: 0x1F35C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_088_tlut_wheel_3 +luigi_kart_frame089_wheel0: + symbol: gKartLuigi089Wheel0 + type: texture + offset: 0x1F8E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_089_tlut_wheel_0 +luigi_kart_frame089_wheel1: + symbol: gKartLuigi089Wheel1 + type: texture + offset: 0x1F8E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_089_tlut_wheel_1 +luigi_kart_frame089_wheel2: + symbol: gKartLuigi089Wheel2 + type: texture + offset: 0x1F8E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_089_tlut_wheel_2 +luigi_kart_frame089_wheel3: + symbol: gKartLuigi089Wheel3 + type: texture + offset: 0x1F8E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_089_tlut_wheel_3 +luigi_kart_frame090_wheel0: + symbol: gKartLuigi090Wheel0 + type: texture + offset: 0x1FE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_090_tlut_wheel_0 +luigi_kart_frame090_wheel1: + symbol: gKartLuigi090Wheel1 + type: texture + offset: 0x1FE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_090_tlut_wheel_1 +luigi_kart_frame090_wheel2: + symbol: gKartLuigi090Wheel2 + type: texture + offset: 0x1FE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_090_tlut_wheel_2 +luigi_kart_frame090_wheel3: + symbol: gKartLuigi090Wheel3 + type: texture + offset: 0x1FE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_090_tlut_wheel_3 +luigi_kart_frame091_wheel0: + symbol: gKartLuigi091Wheel0 + type: texture + offset: 0x20408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_091_tlut_wheel_0 +luigi_kart_frame091_wheel1: + symbol: gKartLuigi091Wheel1 + type: texture + offset: 0x20408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_091_tlut_wheel_1 +luigi_kart_frame091_wheel2: + symbol: gKartLuigi091Wheel2 + type: texture + offset: 0x20408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_091_tlut_wheel_2 +luigi_kart_frame091_wheel3: + symbol: gKartLuigi091Wheel3 + type: texture + offset: 0x20408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_091_tlut_wheel_3 +luigi_kart_frame092_wheel0: + symbol: gKartLuigi092Wheel0 + type: texture + offset: 0x209B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_092_tlut_wheel_0 +luigi_kart_frame092_wheel1: + symbol: gKartLuigi092Wheel1 + type: texture + offset: 0x209B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_092_tlut_wheel_1 +luigi_kart_frame092_wheel2: + symbol: gKartLuigi092Wheel2 + type: texture + offset: 0x209B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_092_tlut_wheel_2 +luigi_kart_frame092_wheel3: + symbol: gKartLuigi092Wheel3 + type: texture + offset: 0x209B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_092_tlut_wheel_3 +luigi_kart_frame093_wheel0: + symbol: gKartLuigi093Wheel0 + type: texture + offset: 0x20F80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_093_tlut_wheel_0 +luigi_kart_frame093_wheel1: + symbol: gKartLuigi093Wheel1 + type: texture + offset: 0x20F80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_093_tlut_wheel_1 +luigi_kart_frame093_wheel2: + symbol: gKartLuigi093Wheel2 + type: texture + offset: 0x20F80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_093_tlut_wheel_2 +luigi_kart_frame093_wheel3: + symbol: gKartLuigi093Wheel3 + type: texture + offset: 0x20F80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_093_tlut_wheel_3 +luigi_kart_frame094_wheel0: + symbol: gKartLuigi094Wheel0 + type: texture + offset: 0x2155C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_094_tlut_wheel_0 +luigi_kart_frame094_wheel1: + symbol: gKartLuigi094Wheel1 + type: texture + offset: 0x2155C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_094_tlut_wheel_1 +luigi_kart_frame094_wheel2: + symbol: gKartLuigi094Wheel2 + type: texture + offset: 0x2155C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_094_tlut_wheel_2 +luigi_kart_frame094_wheel3: + symbol: gKartLuigi094Wheel3 + type: texture + offset: 0x2155C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_094_tlut_wheel_3 +luigi_kart_frame095_wheel0: + symbol: gKartLuigi095Wheel0 + type: texture + offset: 0x21B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_095_tlut_wheel_0 +luigi_kart_frame095_wheel1: + symbol: gKartLuigi095Wheel1 + type: texture + offset: 0x21B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_095_tlut_wheel_1 +luigi_kart_frame095_wheel2: + symbol: gKartLuigi095Wheel2 + type: texture + offset: 0x21B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_095_tlut_wheel_2 +luigi_kart_frame095_wheel3: + symbol: gKartLuigi095Wheel3 + type: texture + offset: 0x21B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_095_tlut_wheel_3 +luigi_kart_frame096_wheel0: + symbol: gKartLuigi096Wheel0 + type: texture + offset: 0x22140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_096_tlut_wheel_0 +luigi_kart_frame096_wheel1: + symbol: gKartLuigi096Wheel1 + type: texture + offset: 0x22140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_096_tlut_wheel_1 +luigi_kart_frame096_wheel2: + symbol: gKartLuigi096Wheel2 + type: texture + offset: 0x22140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_096_tlut_wheel_2 +luigi_kart_frame096_wheel3: + symbol: gKartLuigi096Wheel3 + type: texture + offset: 0x22140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_096_tlut_wheel_3 +luigi_kart_frame097_wheel0: + symbol: gKartLuigi097Wheel0 + type: texture + offset: 0x22750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_097_tlut_wheel_0 +luigi_kart_frame097_wheel1: + symbol: gKartLuigi097Wheel1 + type: texture + offset: 0x22750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_097_tlut_wheel_1 +luigi_kart_frame097_wheel2: + symbol: gKartLuigi097Wheel2 + type: texture + offset: 0x22750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_097_tlut_wheel_2 +luigi_kart_frame097_wheel3: + symbol: gKartLuigi097Wheel3 + type: texture + offset: 0x22750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_097_tlut_wheel_3 +luigi_kart_frame098_wheel0: + symbol: gKartLuigi098Wheel0 + type: texture + offset: 0x22D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_098_tlut_wheel_0 +luigi_kart_frame098_wheel1: + symbol: gKartLuigi098Wheel1 + type: texture + offset: 0x22D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_098_tlut_wheel_1 +luigi_kart_frame098_wheel2: + symbol: gKartLuigi098Wheel2 + type: texture + offset: 0x22D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_098_tlut_wheel_2 +luigi_kart_frame098_wheel3: + symbol: gKartLuigi098Wheel3 + type: texture + offset: 0x22D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_098_tlut_wheel_3 +luigi_kart_frame099_wheel0: + symbol: gKartLuigi099Wheel0 + type: texture + offset: 0x23384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_099_tlut_wheel_0 +luigi_kart_frame099_wheel1: + symbol: gKartLuigi099Wheel1 + type: texture + offset: 0x23384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_099_tlut_wheel_1 +luigi_kart_frame099_wheel2: + symbol: gKartLuigi099Wheel2 + type: texture + offset: 0x23384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_099_tlut_wheel_2 +luigi_kart_frame099_wheel3: + symbol: gKartLuigi099Wheel3 + type: texture + offset: 0x23384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_099_tlut_wheel_3 +luigi_kart_frame100_wheel0: + symbol: gKartLuigi100Wheel0 + type: texture + offset: 0x239C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_100_tlut_wheel_0 +luigi_kart_frame100_wheel1: + symbol: gKartLuigi100Wheel1 + type: texture + offset: 0x239C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_100_tlut_wheel_1 +luigi_kart_frame100_wheel2: + symbol: gKartLuigi100Wheel2 + type: texture + offset: 0x239C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_100_tlut_wheel_2 +luigi_kart_frame100_wheel3: + symbol: gKartLuigi100Wheel3 + type: texture + offset: 0x239C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_100_tlut_wheel_3 +luigi_kart_frame101_wheel0: + symbol: gKartLuigi101Wheel0 + type: texture + offset: 0x2401C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_101_tlut_wheel_0 +luigi_kart_frame101_wheel1: + symbol: gKartLuigi101Wheel1 + type: texture + offset: 0x2401C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_101_tlut_wheel_1 +luigi_kart_frame101_wheel2: + symbol: gKartLuigi101Wheel2 + type: texture + offset: 0x2401C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_101_tlut_wheel_2 +luigi_kart_frame101_wheel3: + symbol: gKartLuigi101Wheel3 + type: texture + offset: 0x2401C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_101_tlut_wheel_3 +luigi_kart_frame102_wheel0: + symbol: gKartLuigi102Wheel0 + type: texture + offset: 0x24664 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_102_tlut_wheel_0 +luigi_kart_frame102_wheel1: + symbol: gKartLuigi102Wheel1 + type: texture + offset: 0x24664 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_102_tlut_wheel_1 +luigi_kart_frame102_wheel2: + symbol: gKartLuigi102Wheel2 + type: texture + offset: 0x24664 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_102_tlut_wheel_2 +luigi_kart_frame102_wheel3: + symbol: gKartLuigi102Wheel3 + type: texture + offset: 0x24664 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_102_tlut_wheel_3 +luigi_kart_frame103_wheel0: + symbol: gKartLuigi103Wheel0 + type: texture + offset: 0x24CB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_103_tlut_wheel_0 +luigi_kart_frame103_wheel1: + symbol: gKartLuigi103Wheel1 + type: texture + offset: 0x24CB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_103_tlut_wheel_1 +luigi_kart_frame103_wheel2: + symbol: gKartLuigi103Wheel2 + type: texture + offset: 0x24CB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_103_tlut_wheel_2 +luigi_kart_frame103_wheel3: + symbol: gKartLuigi103Wheel3 + type: texture + offset: 0x24CB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_103_tlut_wheel_3 +luigi_kart_frame104_wheel0: + symbol: gKartLuigi104Wheel0 + type: texture + offset: 0x252F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_104_tlut_wheel_0 +luigi_kart_frame104_wheel1: + symbol: gKartLuigi104Wheel1 + type: texture + offset: 0x252F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_104_tlut_wheel_1 +luigi_kart_frame104_wheel2: + symbol: gKartLuigi104Wheel2 + type: texture + offset: 0x252F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_104_tlut_wheel_2 +luigi_kart_frame104_wheel3: + symbol: gKartLuigi104Wheel3 + type: texture + offset: 0x252F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_104_tlut_wheel_3 +luigi_kart_frame105_wheel0: + symbol: gKartLuigi105Wheel0 + type: texture + offset: 0x25930 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_105_tlut_wheel_0 +luigi_kart_frame105_wheel1: + symbol: gKartLuigi105Wheel1 + type: texture + offset: 0x25930 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_105_tlut_wheel_1 +luigi_kart_frame105_wheel2: + symbol: gKartLuigi105Wheel2 + type: texture + offset: 0x25930 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_105_tlut_wheel_2 +luigi_kart_frame105_wheel3: + symbol: gKartLuigi105Wheel3 + type: texture + offset: 0x25930 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_105_tlut_wheel_3 +luigi_kart_frame106_wheel0: + symbol: gKartLuigi106Wheel0 + type: texture + offset: 0x25E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_106_tlut_wheel_0 +luigi_kart_frame106_wheel1: + symbol: gKartLuigi106Wheel1 + type: texture + offset: 0x25E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_106_tlut_wheel_1 +luigi_kart_frame106_wheel2: + symbol: gKartLuigi106Wheel2 + type: texture + offset: 0x25E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_106_tlut_wheel_2 +luigi_kart_frame106_wheel3: + symbol: gKartLuigi106Wheel3 + type: texture + offset: 0x25E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_106_tlut_wheel_3 +luigi_kart_frame107_wheel0: + symbol: gKartLuigi107Wheel0 + type: texture + offset: 0x26384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_107_tlut_wheel_0 +luigi_kart_frame107_wheel1: + symbol: gKartLuigi107Wheel1 + type: texture + offset: 0x26384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_107_tlut_wheel_1 +luigi_kart_frame107_wheel2: + symbol: gKartLuigi107Wheel2 + type: texture + offset: 0x26384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_107_tlut_wheel_2 +luigi_kart_frame107_wheel3: + symbol: gKartLuigi107Wheel3 + type: texture + offset: 0x26384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_107_tlut_wheel_3 +luigi_kart_frame108_wheel0: + symbol: gKartLuigi108Wheel0 + type: texture + offset: 0x268EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_108_tlut_wheel_0 +luigi_kart_frame108_wheel1: + symbol: gKartLuigi108Wheel1 + type: texture + offset: 0x268EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_108_tlut_wheel_1 +luigi_kart_frame108_wheel2: + symbol: gKartLuigi108Wheel2 + type: texture + offset: 0x268EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_108_tlut_wheel_2 +luigi_kart_frame108_wheel3: + symbol: gKartLuigi108Wheel3 + type: texture + offset: 0x268EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_108_tlut_wheel_3 +luigi_kart_frame109_wheel0: + symbol: gKartLuigi109Wheel0 + type: texture + offset: 0x26E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_109_tlut_wheel_0 +luigi_kart_frame109_wheel1: + symbol: gKartLuigi109Wheel1 + type: texture + offset: 0x26E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_109_tlut_wheel_1 +luigi_kart_frame109_wheel2: + symbol: gKartLuigi109Wheel2 + type: texture + offset: 0x26E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_109_tlut_wheel_2 +luigi_kart_frame109_wheel3: + symbol: gKartLuigi109Wheel3 + type: texture + offset: 0x26E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_109_tlut_wheel_3 +luigi_kart_frame110_wheel0: + symbol: gKartLuigi110Wheel0 + type: texture + offset: 0x273EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_110_tlut_wheel_0 +luigi_kart_frame110_wheel1: + symbol: gKartLuigi110Wheel1 + type: texture + offset: 0x273EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_110_tlut_wheel_1 +luigi_kart_frame110_wheel2: + symbol: gKartLuigi110Wheel2 + type: texture + offset: 0x273EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_110_tlut_wheel_2 +luigi_kart_frame110_wheel3: + symbol: gKartLuigi110Wheel3 + type: texture + offset: 0x273EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_110_tlut_wheel_3 +luigi_kart_frame111_wheel0: + symbol: gKartLuigi111Wheel0 + type: texture + offset: 0x27980 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_111_tlut_wheel_0 +luigi_kart_frame111_wheel1: + symbol: gKartLuigi111Wheel1 + type: texture + offset: 0x27980 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_111_tlut_wheel_1 +luigi_kart_frame111_wheel2: + symbol: gKartLuigi111Wheel2 + type: texture + offset: 0x27980 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_111_tlut_wheel_2 +luigi_kart_frame111_wheel3: + symbol: gKartLuigi111Wheel3 + type: texture + offset: 0x27980 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_111_tlut_wheel_3 +luigi_kart_frame112_wheel0: + symbol: gKartLuigi112Wheel0 + type: texture + offset: 0x27F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_112_tlut_wheel_0 +luigi_kart_frame112_wheel1: + symbol: gKartLuigi112Wheel1 + type: texture + offset: 0x27F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_112_tlut_wheel_1 +luigi_kart_frame112_wheel2: + symbol: gKartLuigi112Wheel2 + type: texture + offset: 0x27F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_112_tlut_wheel_2 +luigi_kart_frame112_wheel3: + symbol: gKartLuigi112Wheel3 + type: texture + offset: 0x27F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_112_tlut_wheel_3 +luigi_kart_frame113_wheel0: + symbol: gKartLuigi113Wheel0 + type: texture + offset: 0x284DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_113_tlut_wheel_0 +luigi_kart_frame113_wheel1: + symbol: gKartLuigi113Wheel1 + type: texture + offset: 0x284DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_113_tlut_wheel_1 +luigi_kart_frame113_wheel2: + symbol: gKartLuigi113Wheel2 + type: texture + offset: 0x284DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_113_tlut_wheel_2 +luigi_kart_frame113_wheel3: + symbol: gKartLuigi113Wheel3 + type: texture + offset: 0x284DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_113_tlut_wheel_3 +luigi_kart_frame114_wheel0: + symbol: gKartLuigi114Wheel0 + type: texture + offset: 0x28AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_114_tlut_wheel_0 +luigi_kart_frame114_wheel1: + symbol: gKartLuigi114Wheel1 + type: texture + offset: 0x28AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_114_tlut_wheel_1 +luigi_kart_frame114_wheel2: + symbol: gKartLuigi114Wheel2 + type: texture + offset: 0x28AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_114_tlut_wheel_2 +luigi_kart_frame114_wheel3: + symbol: gKartLuigi114Wheel3 + type: texture + offset: 0x28AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_114_tlut_wheel_3 +luigi_kart_frame115_wheel0: + symbol: gKartLuigi115Wheel0 + type: texture + offset: 0x290AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_115_tlut_wheel_0 +luigi_kart_frame115_wheel1: + symbol: gKartLuigi115Wheel1 + type: texture + offset: 0x290AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_115_tlut_wheel_1 +luigi_kart_frame115_wheel2: + symbol: gKartLuigi115Wheel2 + type: texture + offset: 0x290AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_115_tlut_wheel_2 +luigi_kart_frame115_wheel3: + symbol: gKartLuigi115Wheel3 + type: texture + offset: 0x290AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_115_tlut_wheel_3 +luigi_kart_frame116_wheel0: + symbol: gKartLuigi116Wheel0 + type: texture + offset: 0x29694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_116_tlut_wheel_0 +luigi_kart_frame116_wheel1: + symbol: gKartLuigi116Wheel1 + type: texture + offset: 0x29694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_116_tlut_wheel_1 +luigi_kart_frame116_wheel2: + symbol: gKartLuigi116Wheel2 + type: texture + offset: 0x29694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_116_tlut_wheel_2 +luigi_kart_frame116_wheel3: + symbol: gKartLuigi116Wheel3 + type: texture + offset: 0x29694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_116_tlut_wheel_3 +luigi_kart_frame117_wheel0: + symbol: gKartLuigi117Wheel0 + type: texture + offset: 0x29CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_117_tlut_wheel_0 +luigi_kart_frame117_wheel1: + symbol: gKartLuigi117Wheel1 + type: texture + offset: 0x29CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_117_tlut_wheel_1 +luigi_kart_frame117_wheel2: + symbol: gKartLuigi117Wheel2 + type: texture + offset: 0x29CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_117_tlut_wheel_2 +luigi_kart_frame117_wheel3: + symbol: gKartLuigi117Wheel3 + type: texture + offset: 0x29CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_117_tlut_wheel_3 +luigi_kart_frame118_wheel0: + symbol: gKartLuigi118Wheel0 + type: texture + offset: 0x2A2B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_118_tlut_wheel_0 +luigi_kart_frame118_wheel1: + symbol: gKartLuigi118Wheel1 + type: texture + offset: 0x2A2B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_118_tlut_wheel_1 +luigi_kart_frame118_wheel2: + symbol: gKartLuigi118Wheel2 + type: texture + offset: 0x2A2B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_118_tlut_wheel_2 +luigi_kart_frame118_wheel3: + symbol: gKartLuigi118Wheel3 + type: texture + offset: 0x2A2B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_118_tlut_wheel_3 +luigi_kart_frame119_wheel0: + symbol: gKartLuigi119Wheel0 + type: texture + offset: 0x2A8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_119_tlut_wheel_0 +luigi_kart_frame119_wheel1: + symbol: gKartLuigi119Wheel1 + type: texture + offset: 0x2A8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_119_tlut_wheel_1 +luigi_kart_frame119_wheel2: + symbol: gKartLuigi119Wheel2 + type: texture + offset: 0x2A8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_119_tlut_wheel_2 +luigi_kart_frame119_wheel3: + symbol: gKartLuigi119Wheel3 + type: texture + offset: 0x2A8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_119_tlut_wheel_3 +luigi_kart_frame120_wheel0: + symbol: gKartLuigi120Wheel0 + type: texture + offset: 0x2AEF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_120_tlut_wheel_0 +luigi_kart_frame120_wheel1: + symbol: gKartLuigi120Wheel1 + type: texture + offset: 0x2AEF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_120_tlut_wheel_1 +luigi_kart_frame120_wheel2: + symbol: gKartLuigi120Wheel2 + type: texture + offset: 0x2AEF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_120_tlut_wheel_2 +luigi_kart_frame120_wheel3: + symbol: gKartLuigi120Wheel3 + type: texture + offset: 0x2AEF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_120_tlut_wheel_3 +luigi_kart_frame121_wheel0: + symbol: gKartLuigi121Wheel0 + type: texture + offset: 0x2B534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_121_tlut_wheel_0 +luigi_kart_frame121_wheel1: + symbol: gKartLuigi121Wheel1 + type: texture + offset: 0x2B534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_121_tlut_wheel_1 +luigi_kart_frame121_wheel2: + symbol: gKartLuigi121Wheel2 + type: texture + offset: 0x2B534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_121_tlut_wheel_2 +luigi_kart_frame121_wheel3: + symbol: gKartLuigi121Wheel3 + type: texture + offset: 0x2B534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_121_tlut_wheel_3 +luigi_kart_frame122_wheel0: + symbol: gKartLuigi122Wheel0 + type: texture + offset: 0x2BB8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_122_tlut_wheel_0 +luigi_kart_frame122_wheel1: + symbol: gKartLuigi122Wheel1 + type: texture + offset: 0x2BB8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_122_tlut_wheel_1 +luigi_kart_frame122_wheel2: + symbol: gKartLuigi122Wheel2 + type: texture + offset: 0x2BB8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_122_tlut_wheel_2 +luigi_kart_frame122_wheel3: + symbol: gKartLuigi122Wheel3 + type: texture + offset: 0x2BB8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_122_tlut_wheel_3 +luigi_kart_frame123_wheel0: + symbol: gKartLuigi123Wheel0 + type: texture + offset: 0x2C1D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_123_tlut_wheel_0 +luigi_kart_frame123_wheel1: + symbol: gKartLuigi123Wheel1 + type: texture + offset: 0x2C1D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_123_tlut_wheel_1 +luigi_kart_frame123_wheel2: + symbol: gKartLuigi123Wheel2 + type: texture + offset: 0x2C1D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_123_tlut_wheel_2 +luigi_kart_frame123_wheel3: + symbol: gKartLuigi123Wheel3 + type: texture + offset: 0x2C1D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_123_tlut_wheel_3 +luigi_kart_frame124_wheel0: + symbol: gKartLuigi124Wheel0 + type: texture + offset: 0x2C82C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_124_tlut_wheel_0 +luigi_kart_frame124_wheel1: + symbol: gKartLuigi124Wheel1 + type: texture + offset: 0x2C82C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_124_tlut_wheel_1 +luigi_kart_frame124_wheel2: + symbol: gKartLuigi124Wheel2 + type: texture + offset: 0x2C82C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_124_tlut_wheel_2 +luigi_kart_frame124_wheel3: + symbol: gKartLuigi124Wheel3 + type: texture + offset: 0x2C82C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_124_tlut_wheel_3 +luigi_kart_frame125_wheel0: + symbol: gKartLuigi125Wheel0 + type: texture + offset: 0x2CE84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_125_tlut_wheel_0 +luigi_kart_frame125_wheel1: + symbol: gKartLuigi125Wheel1 + type: texture + offset: 0x2CE84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_125_tlut_wheel_1 +luigi_kart_frame125_wheel2: + symbol: gKartLuigi125Wheel2 + type: texture + offset: 0x2CE84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_125_tlut_wheel_2 +luigi_kart_frame125_wheel3: + symbol: gKartLuigi125Wheel3 + type: texture + offset: 0x2CE84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_125_tlut_wheel_3 +luigi_kart_frame126_wheel0: + symbol: gKartLuigi126Wheel0 + type: texture + offset: 0x2D4CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_126_tlut_wheel_0 +luigi_kart_frame126_wheel1: + symbol: gKartLuigi126Wheel1 + type: texture + offset: 0x2D4CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_126_tlut_wheel_1 +luigi_kart_frame126_wheel2: + symbol: gKartLuigi126Wheel2 + type: texture + offset: 0x2D4CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_126_tlut_wheel_2 +luigi_kart_frame126_wheel3: + symbol: gKartLuigi126Wheel3 + type: texture + offset: 0x2D4CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_126_tlut_wheel_3 +luigi_kart_frame127_wheel0: + symbol: gKartLuigi127Wheel0 + type: texture + offset: 0x2DA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_127_tlut_wheel_0 +luigi_kart_frame127_wheel1: + symbol: gKartLuigi127Wheel1 + type: texture + offset: 0x2DA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_127_tlut_wheel_1 +luigi_kart_frame127_wheel2: + symbol: gKartLuigi127Wheel2 + type: texture + offset: 0x2DA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_127_tlut_wheel_2 +luigi_kart_frame127_wheel3: + symbol: gKartLuigi127Wheel3 + type: texture + offset: 0x2DA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_127_tlut_wheel_3 +luigi_kart_frame128_wheel0: + symbol: gKartLuigi128Wheel0 + type: texture + offset: 0x2DF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_128_tlut_wheel_0 +luigi_kart_frame128_wheel1: + symbol: gKartLuigi128Wheel1 + type: texture + offset: 0x2DF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_128_tlut_wheel_1 +luigi_kart_frame128_wheel2: + symbol: gKartLuigi128Wheel2 + type: texture + offset: 0x2DF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_128_tlut_wheel_2 +luigi_kart_frame128_wheel3: + symbol: gKartLuigi128Wheel3 + type: texture + offset: 0x2DF58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_128_tlut_wheel_3 +luigi_kart_frame129_wheel0: + symbol: gKartLuigi129Wheel0 + type: texture + offset: 0x2E4E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_129_tlut_wheel_0 +luigi_kart_frame129_wheel1: + symbol: gKartLuigi129Wheel1 + type: texture + offset: 0x2E4E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_129_tlut_wheel_1 +luigi_kart_frame129_wheel2: + symbol: gKartLuigi129Wheel2 + type: texture + offset: 0x2E4E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_129_tlut_wheel_2 +luigi_kart_frame129_wheel3: + symbol: gKartLuigi129Wheel3 + type: texture + offset: 0x2E4E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_129_tlut_wheel_3 +luigi_kart_frame130_wheel0: + symbol: gKartLuigi130Wheel0 + type: texture + offset: 0x2EA40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_130_tlut_wheel_0 +luigi_kart_frame130_wheel1: + symbol: gKartLuigi130Wheel1 + type: texture + offset: 0x2EA40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_130_tlut_wheel_1 +luigi_kart_frame130_wheel2: + symbol: gKartLuigi130Wheel2 + type: texture + offset: 0x2EA40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_130_tlut_wheel_2 +luigi_kart_frame130_wheel3: + symbol: gKartLuigi130Wheel3 + type: texture + offset: 0x2EA40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_130_tlut_wheel_3 +luigi_kart_frame131_wheel0: + symbol: gKartLuigi131Wheel0 + type: texture + offset: 0x2EFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_131_tlut_wheel_0 +luigi_kart_frame131_wheel1: + symbol: gKartLuigi131Wheel1 + type: texture + offset: 0x2EFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_131_tlut_wheel_1 +luigi_kart_frame131_wheel2: + symbol: gKartLuigi131Wheel2 + type: texture + offset: 0x2EFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_131_tlut_wheel_2 +luigi_kart_frame131_wheel3: + symbol: gKartLuigi131Wheel3 + type: texture + offset: 0x2EFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_131_tlut_wheel_3 +luigi_kart_frame132_wheel0: + symbol: gKartLuigi132Wheel0 + type: texture + offset: 0x2F594 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_132_tlut_wheel_0 +luigi_kart_frame132_wheel1: + symbol: gKartLuigi132Wheel1 + type: texture + offset: 0x2F594 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_132_tlut_wheel_1 +luigi_kart_frame132_wheel2: + symbol: gKartLuigi132Wheel2 + type: texture + offset: 0x2F594 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_132_tlut_wheel_2 +luigi_kart_frame132_wheel3: + symbol: gKartLuigi132Wheel3 + type: texture + offset: 0x2F594 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_132_tlut_wheel_3 +luigi_kart_frame133_wheel0: + symbol: gKartLuigi133Wheel0 + type: texture + offset: 0x2FB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_133_tlut_wheel_0 +luigi_kart_frame133_wheel1: + symbol: gKartLuigi133Wheel1 + type: texture + offset: 0x2FB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_133_tlut_wheel_1 +luigi_kart_frame133_wheel2: + symbol: gKartLuigi133Wheel2 + type: texture + offset: 0x2FB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_133_tlut_wheel_2 +luigi_kart_frame133_wheel3: + symbol: gKartLuigi133Wheel3 + type: texture + offset: 0x2FB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_133_tlut_wheel_3 +luigi_kart_frame134_wheel0: + symbol: gKartLuigi134Wheel0 + type: texture + offset: 0x3010C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_134_tlut_wheel_0 +luigi_kart_frame134_wheel1: + symbol: gKartLuigi134Wheel1 + type: texture + offset: 0x3010C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_134_tlut_wheel_1 +luigi_kart_frame134_wheel2: + symbol: gKartLuigi134Wheel2 + type: texture + offset: 0x3010C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_134_tlut_wheel_2 +luigi_kart_frame134_wheel3: + symbol: gKartLuigi134Wheel3 + type: texture + offset: 0x3010C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_134_tlut_wheel_3 +luigi_kart_frame135_wheel0: + symbol: gKartLuigi135Wheel0 + type: texture + offset: 0x306D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_135_tlut_wheel_0 +luigi_kart_frame135_wheel1: + symbol: gKartLuigi135Wheel1 + type: texture + offset: 0x306D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_135_tlut_wheel_1 +luigi_kart_frame135_wheel2: + symbol: gKartLuigi135Wheel2 + type: texture + offset: 0x306D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_135_tlut_wheel_2 +luigi_kart_frame135_wheel3: + symbol: gKartLuigi135Wheel3 + type: texture + offset: 0x306D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_135_tlut_wheel_3 +luigi_kart_frame136_wheel0: + symbol: gKartLuigi136Wheel0 + type: texture + offset: 0x30CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_136_tlut_wheel_0 +luigi_kart_frame136_wheel1: + symbol: gKartLuigi136Wheel1 + type: texture + offset: 0x30CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_136_tlut_wheel_1 +luigi_kart_frame136_wheel2: + symbol: gKartLuigi136Wheel2 + type: texture + offset: 0x30CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_136_tlut_wheel_2 +luigi_kart_frame136_wheel3: + symbol: gKartLuigi136Wheel3 + type: texture + offset: 0x30CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_136_tlut_wheel_3 +luigi_kart_frame137_wheel0: + symbol: gKartLuigi137Wheel0 + type: texture + offset: 0x312AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_137_tlut_wheel_0 +luigi_kart_frame137_wheel1: + symbol: gKartLuigi137Wheel1 + type: texture + offset: 0x312AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_137_tlut_wheel_1 +luigi_kart_frame137_wheel2: + symbol: gKartLuigi137Wheel2 + type: texture + offset: 0x312AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_137_tlut_wheel_2 +luigi_kart_frame137_wheel3: + symbol: gKartLuigi137Wheel3 + type: texture + offset: 0x312AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_137_tlut_wheel_3 +luigi_kart_frame138_wheel0: + symbol: gKartLuigi138Wheel0 + type: texture + offset: 0x318B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_138_tlut_wheel_0 +luigi_kart_frame138_wheel1: + symbol: gKartLuigi138Wheel1 + type: texture + offset: 0x318B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_138_tlut_wheel_1 +luigi_kart_frame138_wheel2: + symbol: gKartLuigi138Wheel2 + type: texture + offset: 0x318B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_138_tlut_wheel_2 +luigi_kart_frame138_wheel3: + symbol: gKartLuigi138Wheel3 + type: texture + offset: 0x318B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_138_tlut_wheel_3 +luigi_kart_frame139_wheel0: + symbol: gKartLuigi139Wheel0 + type: texture + offset: 0x31ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_139_tlut_wheel_0 +luigi_kart_frame139_wheel1: + symbol: gKartLuigi139Wheel1 + type: texture + offset: 0x31ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_139_tlut_wheel_1 +luigi_kart_frame139_wheel2: + symbol: gKartLuigi139Wheel2 + type: texture + offset: 0x31ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_139_tlut_wheel_2 +luigi_kart_frame139_wheel3: + symbol: gKartLuigi139Wheel3 + type: texture + offset: 0x31ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_139_tlut_wheel_3 +luigi_kart_frame140_wheel0: + symbol: gKartLuigi140Wheel0 + type: texture + offset: 0x324F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_140_tlut_wheel_0 +luigi_kart_frame140_wheel1: + symbol: gKartLuigi140Wheel1 + type: texture + offset: 0x324F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_140_tlut_wheel_1 +luigi_kart_frame140_wheel2: + symbol: gKartLuigi140Wheel2 + type: texture + offset: 0x324F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_140_tlut_wheel_2 +luigi_kart_frame140_wheel3: + symbol: gKartLuigi140Wheel3 + type: texture + offset: 0x324F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_140_tlut_wheel_3 +luigi_kart_frame141_wheel0: + symbol: gKartLuigi141Wheel0 + type: texture + offset: 0x32B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_141_tlut_wheel_0 +luigi_kart_frame141_wheel1: + symbol: gKartLuigi141Wheel1 + type: texture + offset: 0x32B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_141_tlut_wheel_1 +luigi_kart_frame141_wheel2: + symbol: gKartLuigi141Wheel2 + type: texture + offset: 0x32B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_141_tlut_wheel_2 +luigi_kart_frame141_wheel3: + symbol: gKartLuigi141Wheel3 + type: texture + offset: 0x32B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_141_tlut_wheel_3 +luigi_kart_frame142_wheel0: + symbol: gKartLuigi142Wheel0 + type: texture + offset: 0x33188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_142_tlut_wheel_0 +luigi_kart_frame142_wheel1: + symbol: gKartLuigi142Wheel1 + type: texture + offset: 0x33188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_142_tlut_wheel_1 +luigi_kart_frame142_wheel2: + symbol: gKartLuigi142Wheel2 + type: texture + offset: 0x33188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_142_tlut_wheel_2 +luigi_kart_frame142_wheel3: + symbol: gKartLuigi142Wheel3 + type: texture + offset: 0x33188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_142_tlut_wheel_3 +luigi_kart_frame143_wheel0: + symbol: gKartLuigi143Wheel0 + type: texture + offset: 0x337E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_143_tlut_wheel_0 +luigi_kart_frame143_wheel1: + symbol: gKartLuigi143Wheel1 + type: texture + offset: 0x337E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_143_tlut_wheel_1 +luigi_kart_frame143_wheel2: + symbol: gKartLuigi143Wheel2 + type: texture + offset: 0x337E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_143_tlut_wheel_2 +luigi_kart_frame143_wheel3: + symbol: gKartLuigi143Wheel3 + type: texture + offset: 0x337E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_143_tlut_wheel_3 +luigi_kart_frame144_wheel0: + symbol: gKartLuigi144Wheel0 + type: texture + offset: 0x33E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_144_tlut_wheel_0 +luigi_kart_frame144_wheel1: + symbol: gKartLuigi144Wheel1 + type: texture + offset: 0x33E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_144_tlut_wheel_1 +luigi_kart_frame144_wheel2: + symbol: gKartLuigi144Wheel2 + type: texture + offset: 0x33E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_144_tlut_wheel_2 +luigi_kart_frame144_wheel3: + symbol: gKartLuigi144Wheel3 + type: texture + offset: 0x33E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_144_tlut_wheel_3 +luigi_kart_frame145_wheel0: + symbol: gKartLuigi145Wheel0 + type: texture + offset: 0x344B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_145_tlut_wheel_0 +luigi_kart_frame145_wheel1: + symbol: gKartLuigi145Wheel1 + type: texture + offset: 0x344B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_145_tlut_wheel_1 +luigi_kart_frame145_wheel2: + symbol: gKartLuigi145Wheel2 + type: texture + offset: 0x344B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_145_tlut_wheel_2 +luigi_kart_frame145_wheel3: + symbol: gKartLuigi145Wheel3 + type: texture + offset: 0x344B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_145_tlut_wheel_3 +luigi_kart_frame146_wheel0: + symbol: gKartLuigi146Wheel0 + type: texture + offset: 0x34B10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_146_tlut_wheel_0 +luigi_kart_frame146_wheel1: + symbol: gKartLuigi146Wheel1 + type: texture + offset: 0x34B10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_146_tlut_wheel_1 +luigi_kart_frame146_wheel2: + symbol: gKartLuigi146Wheel2 + type: texture + offset: 0x34B10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_146_tlut_wheel_2 +luigi_kart_frame146_wheel3: + symbol: gKartLuigi146Wheel3 + type: texture + offset: 0x34B10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_146_tlut_wheel_3 +luigi_kart_frame147_wheel0: + symbol: gKartLuigi147Wheel0 + type: texture + offset: 0x35184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_147_tlut_wheel_0 +luigi_kart_frame147_wheel1: + symbol: gKartLuigi147Wheel1 + type: texture + offset: 0x35184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_147_tlut_wheel_1 +luigi_kart_frame147_wheel2: + symbol: gKartLuigi147Wheel2 + type: texture + offset: 0x35184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_147_tlut_wheel_2 +luigi_kart_frame147_wheel3: + symbol: gKartLuigi147Wheel3 + type: texture + offset: 0x35184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_147_tlut_wheel_3 +luigi_kart_frame148_wheel0: + symbol: gKartLuigi148Wheel0 + type: texture + offset: 0x356D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_148_tlut_wheel_0 +luigi_kart_frame148_wheel1: + symbol: gKartLuigi148Wheel1 + type: texture + offset: 0x356D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_148_tlut_wheel_1 +luigi_kart_frame148_wheel2: + symbol: gKartLuigi148Wheel2 + type: texture + offset: 0x356D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_148_tlut_wheel_2 +luigi_kart_frame148_wheel3: + symbol: gKartLuigi148Wheel3 + type: texture + offset: 0x356D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_148_tlut_wheel_3 +luigi_kart_frame149_wheel0: + symbol: gKartLuigi149Wheel0 + type: texture + offset: 0x35C3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_149_tlut_wheel_0 +luigi_kart_frame149_wheel1: + symbol: gKartLuigi149Wheel1 + type: texture + offset: 0x35C3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_149_tlut_wheel_1 +luigi_kart_frame149_wheel2: + symbol: gKartLuigi149Wheel2 + type: texture + offset: 0x35C3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_149_tlut_wheel_2 +luigi_kart_frame149_wheel3: + symbol: gKartLuigi149Wheel3 + type: texture + offset: 0x35C3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_149_tlut_wheel_3 +luigi_kart_frame150_wheel0: + symbol: gKartLuigi150Wheel0 + type: texture + offset: 0x361B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_150_tlut_wheel_0 +luigi_kart_frame150_wheel1: + symbol: gKartLuigi150Wheel1 + type: texture + offset: 0x361B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_150_tlut_wheel_1 +luigi_kart_frame150_wheel2: + symbol: gKartLuigi150Wheel2 + type: texture + offset: 0x361B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_150_tlut_wheel_2 +luigi_kart_frame150_wheel3: + symbol: gKartLuigi150Wheel3 + type: texture + offset: 0x361B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_150_tlut_wheel_3 +luigi_kart_frame151_wheel0: + symbol: gKartLuigi151Wheel0 + type: texture + offset: 0x36748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_151_tlut_wheel_0 +luigi_kart_frame151_wheel1: + symbol: gKartLuigi151Wheel1 + type: texture + offset: 0x36748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_151_tlut_wheel_1 +luigi_kart_frame151_wheel2: + symbol: gKartLuigi151Wheel2 + type: texture + offset: 0x36748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_151_tlut_wheel_2 +luigi_kart_frame151_wheel3: + symbol: gKartLuigi151Wheel3 + type: texture + offset: 0x36748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_151_tlut_wheel_3 +luigi_kart_frame152_wheel0: + symbol: gKartLuigi152Wheel0 + type: texture + offset: 0x36D04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_152_tlut_wheel_0 +luigi_kart_frame152_wheel1: + symbol: gKartLuigi152Wheel1 + type: texture + offset: 0x36D04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_152_tlut_wheel_1 +luigi_kart_frame152_wheel2: + symbol: gKartLuigi152Wheel2 + type: texture + offset: 0x36D04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_152_tlut_wheel_2 +luigi_kart_frame152_wheel3: + symbol: gKartLuigi152Wheel3 + type: texture + offset: 0x36D04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_152_tlut_wheel_3 +luigi_kart_frame153_wheel0: + symbol: gKartLuigi153Wheel0 + type: texture + offset: 0x372D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_153_tlut_wheel_0 +luigi_kart_frame153_wheel1: + symbol: gKartLuigi153Wheel1 + type: texture + offset: 0x372D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_153_tlut_wheel_1 +luigi_kart_frame153_wheel2: + symbol: gKartLuigi153Wheel2 + type: texture + offset: 0x372D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_153_tlut_wheel_2 +luigi_kart_frame153_wheel3: + symbol: gKartLuigi153Wheel3 + type: texture + offset: 0x372D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_153_tlut_wheel_3 +luigi_kart_frame154_wheel0: + symbol: gKartLuigi154Wheel0 + type: texture + offset: 0x378A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_154_tlut_wheel_0 +luigi_kart_frame154_wheel1: + symbol: gKartLuigi154Wheel1 + type: texture + offset: 0x378A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_154_tlut_wheel_1 +luigi_kart_frame154_wheel2: + symbol: gKartLuigi154Wheel2 + type: texture + offset: 0x378A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_154_tlut_wheel_2 +luigi_kart_frame154_wheel3: + symbol: gKartLuigi154Wheel3 + type: texture + offset: 0x378A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_154_tlut_wheel_3 +luigi_kart_frame155_wheel0: + symbol: gKartLuigi155Wheel0 + type: texture + offset: 0x37E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_155_tlut_wheel_0 +luigi_kart_frame155_wheel1: + symbol: gKartLuigi155Wheel1 + type: texture + offset: 0x37E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_155_tlut_wheel_1 +luigi_kart_frame155_wheel2: + symbol: gKartLuigi155Wheel2 + type: texture + offset: 0x37E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_155_tlut_wheel_2 +luigi_kart_frame155_wheel3: + symbol: gKartLuigi155Wheel3 + type: texture + offset: 0x37E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_155_tlut_wheel_3 +luigi_kart_frame156_wheel0: + symbol: gKartLuigi156Wheel0 + type: texture + offset: 0x38460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_156_tlut_wheel_0 +luigi_kart_frame156_wheel1: + symbol: gKartLuigi156Wheel1 + type: texture + offset: 0x38460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_156_tlut_wheel_1 +luigi_kart_frame156_wheel2: + symbol: gKartLuigi156Wheel2 + type: texture + offset: 0x38460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_156_tlut_wheel_2 +luigi_kart_frame156_wheel3: + symbol: gKartLuigi156Wheel3 + type: texture + offset: 0x38460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_156_tlut_wheel_3 +luigi_kart_frame157_wheel0: + symbol: gKartLuigi157Wheel0 + type: texture + offset: 0x38A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_157_tlut_wheel_0 +luigi_kart_frame157_wheel1: + symbol: gKartLuigi157Wheel1 + type: texture + offset: 0x38A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_157_tlut_wheel_1 +luigi_kart_frame157_wheel2: + symbol: gKartLuigi157Wheel2 + type: texture + offset: 0x38A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_157_tlut_wheel_2 +luigi_kart_frame157_wheel3: + symbol: gKartLuigi157Wheel3 + type: texture + offset: 0x38A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_157_tlut_wheel_3 +luigi_kart_frame158_wheel0: + symbol: gKartLuigi158Wheel0 + type: texture + offset: 0x39068 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_158_tlut_wheel_0 +luigi_kart_frame158_wheel1: + symbol: gKartLuigi158Wheel1 + type: texture + offset: 0x39068 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_158_tlut_wheel_1 +luigi_kart_frame158_wheel2: + symbol: gKartLuigi158Wheel2 + type: texture + offset: 0x39068 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_158_tlut_wheel_2 +luigi_kart_frame158_wheel3: + symbol: gKartLuigi158Wheel3 + type: texture + offset: 0x39068 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_158_tlut_wheel_3 +luigi_kart_frame159_wheel0: + symbol: gKartLuigi159Wheel0 + type: texture + offset: 0x3966C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_159_tlut_wheel_0 +luigi_kart_frame159_wheel1: + symbol: gKartLuigi159Wheel1 + type: texture + offset: 0x3966C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_159_tlut_wheel_1 +luigi_kart_frame159_wheel2: + symbol: gKartLuigi159Wheel2 + type: texture + offset: 0x3966C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_159_tlut_wheel_2 +luigi_kart_frame159_wheel3: + symbol: gKartLuigi159Wheel3 + type: texture + offset: 0x3966C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_159_tlut_wheel_3 +luigi_kart_frame160_wheel0: + symbol: gKartLuigi160Wheel0 + type: texture + offset: 0x39C8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_160_tlut_wheel_0 +luigi_kart_frame160_wheel1: + symbol: gKartLuigi160Wheel1 + type: texture + offset: 0x39C8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_160_tlut_wheel_1 +luigi_kart_frame160_wheel2: + symbol: gKartLuigi160Wheel2 + type: texture + offset: 0x39C8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_160_tlut_wheel_2 +luigi_kart_frame160_wheel3: + symbol: gKartLuigi160Wheel3 + type: texture + offset: 0x39C8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_160_tlut_wheel_3 +luigi_kart_frame161_wheel0: + symbol: gKartLuigi161Wheel0 + type: texture + offset: 0x3A2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_161_tlut_wheel_0 +luigi_kart_frame161_wheel1: + symbol: gKartLuigi161Wheel1 + type: texture + offset: 0x3A2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_161_tlut_wheel_1 +luigi_kart_frame161_wheel2: + symbol: gKartLuigi161Wheel2 + type: texture + offset: 0x3A2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_161_tlut_wheel_2 +luigi_kart_frame161_wheel3: + symbol: gKartLuigi161Wheel3 + type: texture + offset: 0x3A2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_161_tlut_wheel_3 +luigi_kart_frame162_wheel0: + symbol: gKartLuigi162Wheel0 + type: texture + offset: 0x3A930 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_162_tlut_wheel_0 +luigi_kart_frame162_wheel1: + symbol: gKartLuigi162Wheel1 + type: texture + offset: 0x3A930 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_162_tlut_wheel_1 +luigi_kart_frame162_wheel2: + symbol: gKartLuigi162Wheel2 + type: texture + offset: 0x3A930 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_162_tlut_wheel_2 +luigi_kart_frame162_wheel3: + symbol: gKartLuigi162Wheel3 + type: texture + offset: 0x3A930 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_162_tlut_wheel_3 +luigi_kart_frame163_wheel0: + symbol: gKartLuigi163Wheel0 + type: texture + offset: 0x3AF90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_163_tlut_wheel_0 +luigi_kart_frame163_wheel1: + symbol: gKartLuigi163Wheel1 + type: texture + offset: 0x3AF90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_163_tlut_wheel_1 +luigi_kart_frame163_wheel2: + symbol: gKartLuigi163Wheel2 + type: texture + offset: 0x3AF90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_163_tlut_wheel_2 +luigi_kart_frame163_wheel3: + symbol: gKartLuigi163Wheel3 + type: texture + offset: 0x3AF90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_163_tlut_wheel_3 +luigi_kart_frame164_wheel0: + symbol: gKartLuigi164Wheel0 + type: texture + offset: 0x3B600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_164_tlut_wheel_0 +luigi_kart_frame164_wheel1: + symbol: gKartLuigi164Wheel1 + type: texture + offset: 0x3B600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_164_tlut_wheel_1 +luigi_kart_frame164_wheel2: + symbol: gKartLuigi164Wheel2 + type: texture + offset: 0x3B600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_164_tlut_wheel_2 +luigi_kart_frame164_wheel3: + symbol: gKartLuigi164Wheel3 + type: texture + offset: 0x3B600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_164_tlut_wheel_3 +luigi_kart_frame165_wheel0: + symbol: gKartLuigi165Wheel0 + type: texture + offset: 0x3BC7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_165_tlut_wheel_0 +luigi_kart_frame165_wheel1: + symbol: gKartLuigi165Wheel1 + type: texture + offset: 0x3BC7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_165_tlut_wheel_1 +luigi_kart_frame165_wheel2: + symbol: gKartLuigi165Wheel2 + type: texture + offset: 0x3BC7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_165_tlut_wheel_2 +luigi_kart_frame165_wheel3: + symbol: gKartLuigi165Wheel3 + type: texture + offset: 0x3BC7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_165_tlut_wheel_3 +luigi_kart_frame166_wheel0: + symbol: gKartLuigi166Wheel0 + type: texture + offset: 0x3C2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_166_tlut_wheel_0 +luigi_kart_frame166_wheel1: + symbol: gKartLuigi166Wheel1 + type: texture + offset: 0x3C2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_166_tlut_wheel_1 +luigi_kart_frame166_wheel2: + symbol: gKartLuigi166Wheel2 + type: texture + offset: 0x3C2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_166_tlut_wheel_2 +luigi_kart_frame166_wheel3: + symbol: gKartLuigi166Wheel3 + type: texture + offset: 0x3C2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_166_tlut_wheel_3 +luigi_kart_frame167_wheel0: + symbol: gKartLuigi167Wheel0 + type: texture + offset: 0x3C96C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_167_tlut_wheel_0 +luigi_kart_frame167_wheel1: + symbol: gKartLuigi167Wheel1 + type: texture + offset: 0x3C96C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_167_tlut_wheel_1 +luigi_kart_frame167_wheel2: + symbol: gKartLuigi167Wheel2 + type: texture + offset: 0x3C96C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_167_tlut_wheel_2 +luigi_kart_frame167_wheel3: + symbol: gKartLuigi167Wheel3 + type: texture + offset: 0x3C96C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_167_tlut_wheel_3 +luigi_kart_frame168_wheel0: + symbol: gKartLuigi168Wheel0 + type: texture + offset: 0x3CFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_168_tlut_wheel_0 +luigi_kart_frame168_wheel1: + symbol: gKartLuigi168Wheel1 + type: texture + offset: 0x3CFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_168_tlut_wheel_1 +luigi_kart_frame168_wheel2: + symbol: gKartLuigi168Wheel2 + type: texture + offset: 0x3CFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_168_tlut_wheel_2 +luigi_kart_frame168_wheel3: + symbol: gKartLuigi168Wheel3 + type: texture + offset: 0x3CFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_168_tlut_wheel_3 +luigi_kart_frame169_wheel0: + symbol: gKartLuigi169Wheel0 + type: texture + offset: 0x3D560 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_169_tlut_wheel_0 +luigi_kart_frame169_wheel1: + symbol: gKartLuigi169Wheel1 + type: texture + offset: 0x3D560 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_169_tlut_wheel_1 +luigi_kart_frame169_wheel2: + symbol: gKartLuigi169Wheel2 + type: texture + offset: 0x3D560 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_169_tlut_wheel_2 +luigi_kart_frame169_wheel3: + symbol: gKartLuigi169Wheel3 + type: texture + offset: 0x3D560 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_169_tlut_wheel_3 +luigi_kart_frame170_wheel0: + symbol: gKartLuigi170Wheel0 + type: texture + offset: 0x3DB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_170_tlut_wheel_0 +luigi_kart_frame170_wheel1: + symbol: gKartLuigi170Wheel1 + type: texture + offset: 0x3DB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_170_tlut_wheel_1 +luigi_kart_frame170_wheel2: + symbol: gKartLuigi170Wheel2 + type: texture + offset: 0x3DB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_170_tlut_wheel_2 +luigi_kart_frame170_wheel3: + symbol: gKartLuigi170Wheel3 + type: texture + offset: 0x3DB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_170_tlut_wheel_3 +luigi_kart_frame171_wheel0: + symbol: gKartLuigi171Wheel0 + type: texture + offset: 0x3E0C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_171_tlut_wheel_0 +luigi_kart_frame171_wheel1: + symbol: gKartLuigi171Wheel1 + type: texture + offset: 0x3E0C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_171_tlut_wheel_1 +luigi_kart_frame171_wheel2: + symbol: gKartLuigi171Wheel2 + type: texture + offset: 0x3E0C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_171_tlut_wheel_2 +luigi_kart_frame171_wheel3: + symbol: gKartLuigi171Wheel3 + type: texture + offset: 0x3E0C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_171_tlut_wheel_3 +luigi_kart_frame172_wheel0: + symbol: gKartLuigi172Wheel0 + type: texture + offset: 0x3E67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_172_tlut_wheel_0 +luigi_kart_frame172_wheel1: + symbol: gKartLuigi172Wheel1 + type: texture + offset: 0x3E67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_172_tlut_wheel_1 +luigi_kart_frame172_wheel2: + symbol: gKartLuigi172Wheel2 + type: texture + offset: 0x3E67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_172_tlut_wheel_2 +luigi_kart_frame172_wheel3: + symbol: gKartLuigi172Wheel3 + type: texture + offset: 0x3E67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_172_tlut_wheel_3 +luigi_kart_frame173_wheel0: + symbol: gKartLuigi173Wheel0 + type: texture + offset: 0x3EC1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_173_tlut_wheel_0 +luigi_kart_frame173_wheel1: + symbol: gKartLuigi173Wheel1 + type: texture + offset: 0x3EC1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_173_tlut_wheel_1 +luigi_kart_frame173_wheel2: + symbol: gKartLuigi173Wheel2 + type: texture + offset: 0x3EC1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_173_tlut_wheel_2 +luigi_kart_frame173_wheel3: + symbol: gKartLuigi173Wheel3 + type: texture + offset: 0x3EC1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_173_tlut_wheel_3 +luigi_kart_frame174_wheel0: + symbol: gKartLuigi174Wheel0 + type: texture + offset: 0x3F200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_174_tlut_wheel_0 +luigi_kart_frame174_wheel1: + symbol: gKartLuigi174Wheel1 + type: texture + offset: 0x3F200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_174_tlut_wheel_1 +luigi_kart_frame174_wheel2: + symbol: gKartLuigi174Wheel2 + type: texture + offset: 0x3F200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_174_tlut_wheel_2 +luigi_kart_frame174_wheel3: + symbol: gKartLuigi174Wheel3 + type: texture + offset: 0x3F200 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_174_tlut_wheel_3 +luigi_kart_frame175_wheel0: + symbol: gKartLuigi175Wheel0 + type: texture + offset: 0x3F7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_175_tlut_wheel_0 +luigi_kart_frame175_wheel1: + symbol: gKartLuigi175Wheel1 + type: texture + offset: 0x3F7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_175_tlut_wheel_1 +luigi_kart_frame175_wheel2: + symbol: gKartLuigi175Wheel2 + type: texture + offset: 0x3F7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_175_tlut_wheel_2 +luigi_kart_frame175_wheel3: + symbol: gKartLuigi175Wheel3 + type: texture + offset: 0x3F7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_175_tlut_wheel_3 +luigi_kart_frame176_wheel0: + symbol: gKartLuigi176Wheel0 + type: texture + offset: 0x3FDA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_176_tlut_wheel_0 +luigi_kart_frame176_wheel1: + symbol: gKartLuigi176Wheel1 + type: texture + offset: 0x3FDA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_176_tlut_wheel_1 +luigi_kart_frame176_wheel2: + symbol: gKartLuigi176Wheel2 + type: texture + offset: 0x3FDA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_176_tlut_wheel_2 +luigi_kart_frame176_wheel3: + symbol: gKartLuigi176Wheel3 + type: texture + offset: 0x3FDA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_176_tlut_wheel_3 +luigi_kart_frame177_wheel0: + symbol: gKartLuigi177Wheel0 + type: texture + offset: 0x40398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_177_tlut_wheel_0 +luigi_kart_frame177_wheel1: + symbol: gKartLuigi177Wheel1 + type: texture + offset: 0x40398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_177_tlut_wheel_1 +luigi_kart_frame177_wheel2: + symbol: gKartLuigi177Wheel2 + type: texture + offset: 0x40398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_177_tlut_wheel_2 +luigi_kart_frame177_wheel3: + symbol: gKartLuigi177Wheel3 + type: texture + offset: 0x40398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_177_tlut_wheel_3 +luigi_kart_frame178_wheel0: + symbol: gKartLuigi178Wheel0 + type: texture + offset: 0x409B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_178_tlut_wheel_0 +luigi_kart_frame178_wheel1: + symbol: gKartLuigi178Wheel1 + type: texture + offset: 0x409B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_178_tlut_wheel_1 +luigi_kart_frame178_wheel2: + symbol: gKartLuigi178Wheel2 + type: texture + offset: 0x409B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_178_tlut_wheel_2 +luigi_kart_frame178_wheel3: + symbol: gKartLuigi178Wheel3 + type: texture + offset: 0x409B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_178_tlut_wheel_3 +luigi_kart_frame179_wheel0: + symbol: gKartLuigi179Wheel0 + type: texture + offset: 0x40FC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_179_tlut_wheel_0 +luigi_kart_frame179_wheel1: + symbol: gKartLuigi179Wheel1 + type: texture + offset: 0x40FC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_179_tlut_wheel_1 +luigi_kart_frame179_wheel2: + symbol: gKartLuigi179Wheel2 + type: texture + offset: 0x40FC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_179_tlut_wheel_2 +luigi_kart_frame179_wheel3: + symbol: gKartLuigi179Wheel3 + type: texture + offset: 0x40FC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_179_tlut_wheel_3 +luigi_kart_frame180_wheel0: + symbol: gKartLuigi180Wheel0 + type: texture + offset: 0x415E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_180_tlut_wheel_0 +luigi_kart_frame180_wheel1: + symbol: gKartLuigi180Wheel1 + type: texture + offset: 0x415E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_180_tlut_wheel_1 +luigi_kart_frame180_wheel2: + symbol: gKartLuigi180Wheel2 + type: texture + offset: 0x415E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_180_tlut_wheel_2 +luigi_kart_frame180_wheel3: + symbol: gKartLuigi180Wheel3 + type: texture + offset: 0x415E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_180_tlut_wheel_3 +luigi_kart_frame181_wheel0: + symbol: gKartLuigi181Wheel0 + type: texture + offset: 0x41C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_181_tlut_wheel_0 +luigi_kart_frame181_wheel1: + symbol: gKartLuigi181Wheel1 + type: texture + offset: 0x41C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_181_tlut_wheel_1 +luigi_kart_frame181_wheel2: + symbol: gKartLuigi181Wheel2 + type: texture + offset: 0x41C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_181_tlut_wheel_2 +luigi_kart_frame181_wheel3: + symbol: gKartLuigi181Wheel3 + type: texture + offset: 0x41C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_181_tlut_wheel_3 +luigi_kart_frame182_wheel0: + symbol: gKartLuigi182Wheel0 + type: texture + offset: 0x42240 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_182_tlut_wheel_0 +luigi_kart_frame182_wheel1: + symbol: gKartLuigi182Wheel1 + type: texture + offset: 0x42240 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_182_tlut_wheel_1 +luigi_kart_frame182_wheel2: + symbol: gKartLuigi182Wheel2 + type: texture + offset: 0x42240 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_182_tlut_wheel_2 +luigi_kart_frame182_wheel3: + symbol: gKartLuigi182Wheel3 + type: texture + offset: 0x42240 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_182_tlut_wheel_3 +luigi_kart_frame183_wheel0: + symbol: gKartLuigi183Wheel0 + type: texture + offset: 0x42884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_183_tlut_wheel_0 +luigi_kart_frame183_wheel1: + symbol: gKartLuigi183Wheel1 + type: texture + offset: 0x42884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_183_tlut_wheel_1 +luigi_kart_frame183_wheel2: + symbol: gKartLuigi183Wheel2 + type: texture + offset: 0x42884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_183_tlut_wheel_2 +luigi_kart_frame183_wheel3: + symbol: gKartLuigi183Wheel3 + type: texture + offset: 0x42884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_183_tlut_wheel_3 +luigi_kart_frame184_wheel0: + symbol: gKartLuigi184Wheel0 + type: texture + offset: 0x42ED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_184_tlut_wheel_0 +luigi_kart_frame184_wheel1: + symbol: gKartLuigi184Wheel1 + type: texture + offset: 0x42ED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_184_tlut_wheel_1 +luigi_kart_frame184_wheel2: + symbol: gKartLuigi184Wheel2 + type: texture + offset: 0x42ED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_184_tlut_wheel_2 +luigi_kart_frame184_wheel3: + symbol: gKartLuigi184Wheel3 + type: texture + offset: 0x42ED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_184_tlut_wheel_3 +luigi_kart_frame185_wheel0: + symbol: gKartLuigi185Wheel0 + type: texture + offset: 0x43534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_185_tlut_wheel_0 +luigi_kart_frame185_wheel1: + symbol: gKartLuigi185Wheel1 + type: texture + offset: 0x43534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_185_tlut_wheel_1 +luigi_kart_frame185_wheel2: + symbol: gKartLuigi185Wheel2 + type: texture + offset: 0x43534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_185_tlut_wheel_2 +luigi_kart_frame185_wheel3: + symbol: gKartLuigi185Wheel3 + type: texture + offset: 0x43534 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_185_tlut_wheel_3 +luigi_kart_frame186_wheel0: + symbol: gKartLuigi186Wheel0 + type: texture + offset: 0x43BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_186_tlut_wheel_0 +luigi_kart_frame186_wheel1: + symbol: gKartLuigi186Wheel1 + type: texture + offset: 0x43BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_186_tlut_wheel_1 +luigi_kart_frame186_wheel2: + symbol: gKartLuigi186Wheel2 + type: texture + offset: 0x43BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_186_tlut_wheel_2 +luigi_kart_frame186_wheel3: + symbol: gKartLuigi186Wheel3 + type: texture + offset: 0x43BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_186_tlut_wheel_3 +luigi_kart_frame187_wheel0: + symbol: gKartLuigi187Wheel0 + type: texture + offset: 0x44250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_187_tlut_wheel_0 +luigi_kart_frame187_wheel1: + symbol: gKartLuigi187Wheel1 + type: texture + offset: 0x44250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_187_tlut_wheel_1 +luigi_kart_frame187_wheel2: + symbol: gKartLuigi187Wheel2 + type: texture + offset: 0x44250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_187_tlut_wheel_2 +luigi_kart_frame187_wheel3: + symbol: gKartLuigi187Wheel3 + type: texture + offset: 0x44250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_187_tlut_wheel_3 +luigi_kart_frame188_wheel0: + symbol: gKartLuigi188Wheel0 + type: texture + offset: 0x448B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_188_tlut_wheel_0 +luigi_kart_frame188_wheel1: + symbol: gKartLuigi188Wheel1 + type: texture + offset: 0x448B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_188_tlut_wheel_1 +luigi_kart_frame188_wheel2: + symbol: gKartLuigi188Wheel2 + type: texture + offset: 0x448B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_188_tlut_wheel_2 +luigi_kart_frame188_wheel3: + symbol: gKartLuigi188Wheel3 + type: texture + offset: 0x448B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_188_tlut_wheel_3 +luigi_kart_frame189_wheel0: + symbol: gKartLuigi189Wheel0 + type: texture + offset: 0x44F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_189_tlut_wheel_0 +luigi_kart_frame189_wheel1: + symbol: gKartLuigi189Wheel1 + type: texture + offset: 0x44F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_189_tlut_wheel_1 +luigi_kart_frame189_wheel2: + symbol: gKartLuigi189Wheel2 + type: texture + offset: 0x44F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_189_tlut_wheel_2 +luigi_kart_frame189_wheel3: + symbol: gKartLuigi189Wheel3 + type: texture + offset: 0x44F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_189_tlut_wheel_3 +luigi_kart_frame190_wheel0: + symbol: gKartLuigi190Wheel0 + type: texture + offset: 0x4544C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_190_tlut_wheel_0 +luigi_kart_frame190_wheel1: + symbol: gKartLuigi190Wheel1 + type: texture + offset: 0x4544C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_190_tlut_wheel_1 +luigi_kart_frame190_wheel2: + symbol: gKartLuigi190Wheel2 + type: texture + offset: 0x4544C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_190_tlut_wheel_2 +luigi_kart_frame190_wheel3: + symbol: gKartLuigi190Wheel3 + type: texture + offset: 0x4544C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_190_tlut_wheel_3 +luigi_kart_frame191_wheel0: + symbol: gKartLuigi191Wheel0 + type: texture + offset: 0x459A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_191_tlut_wheel_0 +luigi_kart_frame191_wheel1: + symbol: gKartLuigi191Wheel1 + type: texture + offset: 0x459A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_191_tlut_wheel_1 +luigi_kart_frame191_wheel2: + symbol: gKartLuigi191Wheel2 + type: texture + offset: 0x459A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_191_tlut_wheel_2 +luigi_kart_frame191_wheel3: + symbol: gKartLuigi191Wheel3 + type: texture + offset: 0x459A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_191_tlut_wheel_3 +luigi_kart_frame192_wheel0: + symbol: gKartLuigi192Wheel0 + type: texture + offset: 0x45F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_192_tlut_wheel_0 +luigi_kart_frame192_wheel1: + symbol: gKartLuigi192Wheel1 + type: texture + offset: 0x45F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_192_tlut_wheel_1 +luigi_kart_frame192_wheel2: + symbol: gKartLuigi192Wheel2 + type: texture + offset: 0x45F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_192_tlut_wheel_2 +luigi_kart_frame192_wheel3: + symbol: gKartLuigi192Wheel3 + type: texture + offset: 0x45F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_192_tlut_wheel_3 +luigi_kart_frame193_wheel0: + symbol: gKartLuigi193Wheel0 + type: texture + offset: 0x464E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_193_tlut_wheel_0 +luigi_kart_frame193_wheel1: + symbol: gKartLuigi193Wheel1 + type: texture + offset: 0x464E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_193_tlut_wheel_1 +luigi_kart_frame193_wheel2: + symbol: gKartLuigi193Wheel2 + type: texture + offset: 0x464E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_193_tlut_wheel_2 +luigi_kart_frame193_wheel3: + symbol: gKartLuigi193Wheel3 + type: texture + offset: 0x464E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_193_tlut_wheel_3 +luigi_kart_frame194_wheel0: + symbol: gKartLuigi194Wheel0 + type: texture + offset: 0x46AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_194_tlut_wheel_0 +luigi_kart_frame194_wheel1: + symbol: gKartLuigi194Wheel1 + type: texture + offset: 0x46AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_194_tlut_wheel_1 +luigi_kart_frame194_wheel2: + symbol: gKartLuigi194Wheel2 + type: texture + offset: 0x46AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_194_tlut_wheel_2 +luigi_kart_frame194_wheel3: + symbol: gKartLuigi194Wheel3 + type: texture + offset: 0x46AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_194_tlut_wheel_3 +luigi_kart_frame195_wheel0: + symbol: gKartLuigi195Wheel0 + type: texture + offset: 0x470C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_195_tlut_wheel_0 +luigi_kart_frame195_wheel1: + symbol: gKartLuigi195Wheel1 + type: texture + offset: 0x470C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_195_tlut_wheel_1 +luigi_kart_frame195_wheel2: + symbol: gKartLuigi195Wheel2 + type: texture + offset: 0x470C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_195_tlut_wheel_2 +luigi_kart_frame195_wheel3: + symbol: gKartLuigi195Wheel3 + type: texture + offset: 0x470C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_195_tlut_wheel_3 +luigi_kart_frame196_wheel0: + symbol: gKartLuigi196Wheel0 + type: texture + offset: 0x476E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_196_tlut_wheel_0 +luigi_kart_frame196_wheel1: + symbol: gKartLuigi196Wheel1 + type: texture + offset: 0x476E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_196_tlut_wheel_1 +luigi_kart_frame196_wheel2: + symbol: gKartLuigi196Wheel2 + type: texture + offset: 0x476E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_196_tlut_wheel_2 +luigi_kart_frame196_wheel3: + symbol: gKartLuigi196Wheel3 + type: texture + offset: 0x476E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_196_tlut_wheel_3 +luigi_kart_frame197_wheel0: + symbol: gKartLuigi197Wheel0 + type: texture + offset: 0x47D14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_197_tlut_wheel_0 +luigi_kart_frame197_wheel1: + symbol: gKartLuigi197Wheel1 + type: texture + offset: 0x47D14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_197_tlut_wheel_1 +luigi_kart_frame197_wheel2: + symbol: gKartLuigi197Wheel2 + type: texture + offset: 0x47D14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_197_tlut_wheel_2 +luigi_kart_frame197_wheel3: + symbol: gKartLuigi197Wheel3 + type: texture + offset: 0x47D14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_197_tlut_wheel_3 +luigi_kart_frame198_wheel0: + symbol: gKartLuigi198Wheel0 + type: texture + offset: 0x48370 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_198_tlut_wheel_0 +luigi_kart_frame198_wheel1: + symbol: gKartLuigi198Wheel1 + type: texture + offset: 0x48370 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_198_tlut_wheel_1 +luigi_kart_frame198_wheel2: + symbol: gKartLuigi198Wheel2 + type: texture + offset: 0x48370 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_198_tlut_wheel_2 +luigi_kart_frame198_wheel3: + symbol: gKartLuigi198Wheel3 + type: texture + offset: 0x48370 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_198_tlut_wheel_3 +luigi_kart_frame199_wheel0: + symbol: gKartLuigi199Wheel0 + type: texture + offset: 0x489DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_199_tlut_wheel_0 +luigi_kart_frame199_wheel1: + symbol: gKartLuigi199Wheel1 + type: texture + offset: 0x489DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_199_tlut_wheel_1 +luigi_kart_frame199_wheel2: + symbol: gKartLuigi199Wheel2 + type: texture + offset: 0x489DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_199_tlut_wheel_2 +luigi_kart_frame199_wheel3: + symbol: gKartLuigi199Wheel3 + type: texture + offset: 0x489DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_199_tlut_wheel_3 +luigi_kart_frame200_wheel0: + symbol: gKartLuigi200Wheel0 + type: texture + offset: 0x49064 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_200_tlut_wheel_0 +luigi_kart_frame200_wheel1: + symbol: gKartLuigi200Wheel1 + type: texture + offset: 0x49064 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_200_tlut_wheel_1 +luigi_kart_frame200_wheel2: + symbol: gKartLuigi200Wheel2 + type: texture + offset: 0x49064 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_200_tlut_wheel_2 +luigi_kart_frame200_wheel3: + symbol: gKartLuigi200Wheel3 + type: texture + offset: 0x49064 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_200_tlut_wheel_3 +luigi_kart_frame201_wheel0: + symbol: gKartLuigi201Wheel0 + type: texture + offset: 0x4970C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_201_tlut_wheel_0 +luigi_kart_frame201_wheel1: + symbol: gKartLuigi201Wheel1 + type: texture + offset: 0x4970C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_201_tlut_wheel_1 +luigi_kart_frame201_wheel2: + symbol: gKartLuigi201Wheel2 + type: texture + offset: 0x4970C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_201_tlut_wheel_2 +luigi_kart_frame201_wheel3: + symbol: gKartLuigi201Wheel3 + type: texture + offset: 0x4970C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_201_tlut_wheel_3 +luigi_kart_frame202_wheel0: + symbol: gKartLuigi202Wheel0 + type: texture + offset: 0x49DC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_202_tlut_wheel_0 +luigi_kart_frame202_wheel1: + symbol: gKartLuigi202Wheel1 + type: texture + offset: 0x49DC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_202_tlut_wheel_1 +luigi_kart_frame202_wheel2: + symbol: gKartLuigi202Wheel2 + type: texture + offset: 0x49DC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_202_tlut_wheel_2 +luigi_kart_frame202_wheel3: + symbol: gKartLuigi202Wheel3 + type: texture + offset: 0x49DC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_202_tlut_wheel_3 +luigi_kart_frame203_wheel0: + symbol: gKartLuigi203Wheel0 + type: texture + offset: 0x4A478 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_203_tlut_wheel_0 +luigi_kart_frame203_wheel1: + symbol: gKartLuigi203Wheel1 + type: texture + offset: 0x4A478 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_203_tlut_wheel_1 +luigi_kart_frame203_wheel2: + symbol: gKartLuigi203Wheel2 + type: texture + offset: 0x4A478 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_203_tlut_wheel_2 +luigi_kart_frame203_wheel3: + symbol: gKartLuigi203Wheel3 + type: texture + offset: 0x4A478 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_203_tlut_wheel_3 +luigi_kart_frame204_wheel0: + symbol: gKartLuigi204Wheel0 + type: texture + offset: 0x4AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_204_tlut_wheel_0 +luigi_kart_frame204_wheel1: + symbol: gKartLuigi204Wheel1 + type: texture + offset: 0x4AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_204_tlut_wheel_1 +luigi_kart_frame204_wheel2: + symbol: gKartLuigi204Wheel2 + type: texture + offset: 0x4AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_204_tlut_wheel_2 +luigi_kart_frame204_wheel3: + symbol: gKartLuigi204Wheel3 + type: texture + offset: 0x4AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_204_tlut_wheel_3 +luigi_kart_frame205_wheel0: + symbol: gKartLuigi205Wheel0 + type: texture + offset: 0x4B1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_205_tlut_wheel_0 +luigi_kart_frame205_wheel1: + symbol: gKartLuigi205Wheel1 + type: texture + offset: 0x4B1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_205_tlut_wheel_1 +luigi_kart_frame205_wheel2: + symbol: gKartLuigi205Wheel2 + type: texture + offset: 0x4B1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_205_tlut_wheel_2 +luigi_kart_frame205_wheel3: + symbol: gKartLuigi205Wheel3 + type: texture + offset: 0x4B1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_205_tlut_wheel_3 +luigi_kart_frame206_wheel0: + symbol: gKartLuigi206Wheel0 + type: texture + offset: 0x4B848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_206_tlut_wheel_0 +luigi_kart_frame206_wheel1: + symbol: gKartLuigi206Wheel1 + type: texture + offset: 0x4B848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_206_tlut_wheel_1 +luigi_kart_frame206_wheel2: + symbol: gKartLuigi206Wheel2 + type: texture + offset: 0x4B848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_206_tlut_wheel_2 +luigi_kart_frame206_wheel3: + symbol: gKartLuigi206Wheel3 + type: texture + offset: 0x4B848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_206_tlut_wheel_3 +luigi_kart_frame207_wheel0: + symbol: gKartLuigi207Wheel0 + type: texture + offset: 0x4BEB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_207_tlut_wheel_0 +luigi_kart_frame207_wheel1: + symbol: gKartLuigi207Wheel1 + type: texture + offset: 0x4BEB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_207_tlut_wheel_1 +luigi_kart_frame207_wheel2: + symbol: gKartLuigi207Wheel2 + type: texture + offset: 0x4BEB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_207_tlut_wheel_2 +luigi_kart_frame207_wheel3: + symbol: gKartLuigi207Wheel3 + type: texture + offset: 0x4BEB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_207_tlut_wheel_3 +luigi_kart_frame208_wheel0: + symbol: gKartLuigi208Wheel0 + type: texture + offset: 0x4C508 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_208_tlut_wheel_0 +luigi_kart_frame208_wheel1: + symbol: gKartLuigi208Wheel1 + type: texture + offset: 0x4C508 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_208_tlut_wheel_1 +luigi_kart_frame208_wheel2: + symbol: gKartLuigi208Wheel2 + type: texture + offset: 0x4C508 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_208_tlut_wheel_2 +luigi_kart_frame208_wheel3: + symbol: gKartLuigi208Wheel3 + type: texture + offset: 0x4C508 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_208_tlut_wheel_3 +luigi_kart_frame209_wheel0: + symbol: gKartLuigi209Wheel0 + type: texture + offset: 0x4CB24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_209_tlut_wheel_0 +luigi_kart_frame209_wheel1: + symbol: gKartLuigi209Wheel1 + type: texture + offset: 0x4CB24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_209_tlut_wheel_1 +luigi_kart_frame209_wheel2: + symbol: gKartLuigi209Wheel2 + type: texture + offset: 0x4CB24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_209_tlut_wheel_2 +luigi_kart_frame209_wheel3: + symbol: gKartLuigi209Wheel3 + type: texture + offset: 0x4CB24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_209_tlut_wheel_3 +luigi_kart_frame210_wheel0: + symbol: gKartLuigi210Wheel0 + type: texture + offset: 0x4D06C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_210_tlut_wheel_0 +luigi_kart_frame210_wheel1: + symbol: gKartLuigi210Wheel1 + type: texture + offset: 0x4D06C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_210_tlut_wheel_1 +luigi_kart_frame210_wheel2: + symbol: gKartLuigi210Wheel2 + type: texture + offset: 0x4D06C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_210_tlut_wheel_2 +luigi_kart_frame210_wheel3: + symbol: gKartLuigi210Wheel3 + type: texture + offset: 0x4D06C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_210_tlut_wheel_3 +luigi_kart_frame211_wheel0: + symbol: gKartLuigi211Wheel0 + type: texture + offset: 0x4D5E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_211_tlut_wheel_0 +luigi_kart_frame211_wheel1: + symbol: gKartLuigi211Wheel1 + type: texture + offset: 0x4D5E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_211_tlut_wheel_1 +luigi_kart_frame211_wheel2: + symbol: gKartLuigi211Wheel2 + type: texture + offset: 0x4D5E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_211_tlut_wheel_2 +luigi_kart_frame211_wheel3: + symbol: gKartLuigi211Wheel3 + type: texture + offset: 0x4D5E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_211_tlut_wheel_3 +luigi_kart_frame212_wheel0: + symbol: gKartLuigi212Wheel0 + type: texture + offset: 0x4DBA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_212_tlut_wheel_0 +luigi_kart_frame212_wheel1: + symbol: gKartLuigi212Wheel1 + type: texture + offset: 0x4DBA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_212_tlut_wheel_1 +luigi_kart_frame212_wheel2: + symbol: gKartLuigi212Wheel2 + type: texture + offset: 0x4DBA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_212_tlut_wheel_2 +luigi_kart_frame212_wheel3: + symbol: gKartLuigi212Wheel3 + type: texture + offset: 0x4DBA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_212_tlut_wheel_3 +luigi_kart_frame213_wheel0: + symbol: gKartLuigi213Wheel0 + type: texture + offset: 0x4E178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_213_tlut_wheel_0 +luigi_kart_frame213_wheel1: + symbol: gKartLuigi213Wheel1 + type: texture + offset: 0x4E178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_213_tlut_wheel_1 +luigi_kart_frame213_wheel2: + symbol: gKartLuigi213Wheel2 + type: texture + offset: 0x4E178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_213_tlut_wheel_2 +luigi_kart_frame213_wheel3: + symbol: gKartLuigi213Wheel3 + type: texture + offset: 0x4E178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_213_tlut_wheel_3 +luigi_kart_frame214_wheel0: + symbol: gKartLuigi214Wheel0 + type: texture + offset: 0x4E778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_214_tlut_wheel_0 +luigi_kart_frame214_wheel1: + symbol: gKartLuigi214Wheel1 + type: texture + offset: 0x4E778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_214_tlut_wheel_1 +luigi_kart_frame214_wheel2: + symbol: gKartLuigi214Wheel2 + type: texture + offset: 0x4E778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_214_tlut_wheel_2 +luigi_kart_frame214_wheel3: + symbol: gKartLuigi214Wheel3 + type: texture + offset: 0x4E778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_214_tlut_wheel_3 +luigi_kart_frame215_wheel0: + symbol: gKartLuigi215Wheel0 + type: texture + offset: 0x4ED90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_215_tlut_wheel_0 +luigi_kart_frame215_wheel1: + symbol: gKartLuigi215Wheel1 + type: texture + offset: 0x4ED90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_215_tlut_wheel_1 +luigi_kart_frame215_wheel2: + symbol: gKartLuigi215Wheel2 + type: texture + offset: 0x4ED90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_215_tlut_wheel_2 +luigi_kart_frame215_wheel3: + symbol: gKartLuigi215Wheel3 + type: texture + offset: 0x4ED90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_215_tlut_wheel_3 +luigi_kart_frame216_wheel0: + symbol: gKartLuigi216Wheel0 + type: texture + offset: 0x4F3D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_216_tlut_wheel_0 +luigi_kart_frame216_wheel1: + symbol: gKartLuigi216Wheel1 + type: texture + offset: 0x4F3D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_216_tlut_wheel_1 +luigi_kart_frame216_wheel2: + symbol: gKartLuigi216Wheel2 + type: texture + offset: 0x4F3D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_216_tlut_wheel_2 +luigi_kart_frame216_wheel3: + symbol: gKartLuigi216Wheel3 + type: texture + offset: 0x4F3D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_216_tlut_wheel_3 +luigi_kart_frame217_wheel0: + symbol: gKartLuigi217Wheel0 + type: texture + offset: 0x4FA2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_217_tlut_wheel_0 +luigi_kart_frame217_wheel1: + symbol: gKartLuigi217Wheel1 + type: texture + offset: 0x4FA2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_217_tlut_wheel_1 +luigi_kart_frame217_wheel2: + symbol: gKartLuigi217Wheel2 + type: texture + offset: 0x4FA2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_217_tlut_wheel_2 +luigi_kart_frame217_wheel3: + symbol: gKartLuigi217Wheel3 + type: texture + offset: 0x4FA2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_217_tlut_wheel_3 +luigi_kart_frame218_wheel0: + symbol: gKartLuigi218Wheel0 + type: texture + offset: 0x50080 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_218_tlut_wheel_0 +luigi_kart_frame218_wheel1: + symbol: gKartLuigi218Wheel1 + type: texture + offset: 0x50080 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_218_tlut_wheel_1 +luigi_kart_frame218_wheel2: + symbol: gKartLuigi218Wheel2 + type: texture + offset: 0x50080 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_218_tlut_wheel_2 +luigi_kart_frame218_wheel3: + symbol: gKartLuigi218Wheel3 + type: texture + offset: 0x50080 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_218_tlut_wheel_3 +luigi_kart_frame219_wheel0: + symbol: gKartLuigi219Wheel0 + type: texture + offset: 0x506DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_219_tlut_wheel_0 +luigi_kart_frame219_wheel1: + symbol: gKartLuigi219Wheel1 + type: texture + offset: 0x506DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_219_tlut_wheel_1 +luigi_kart_frame219_wheel2: + symbol: gKartLuigi219Wheel2 + type: texture + offset: 0x506DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_219_tlut_wheel_2 +luigi_kart_frame219_wheel3: + symbol: gKartLuigi219Wheel3 + type: texture + offset: 0x506DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_219_tlut_wheel_3 +luigi_kart_frame220_wheel0: + symbol: gKartLuigi220Wheel0 + type: texture + offset: 0x50D4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_220_tlut_wheel_0 +luigi_kart_frame220_wheel1: + symbol: gKartLuigi220Wheel1 + type: texture + offset: 0x50D4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_220_tlut_wheel_1 +luigi_kart_frame220_wheel2: + symbol: gKartLuigi220Wheel2 + type: texture + offset: 0x50D4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_220_tlut_wheel_2 +luigi_kart_frame220_wheel3: + symbol: gKartLuigi220Wheel3 + type: texture + offset: 0x50D4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_220_tlut_wheel_3 +luigi_kart_frame221_wheel0: + symbol: gKartLuigi221Wheel0 + type: texture + offset: 0x513D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_221_tlut_wheel_0 +luigi_kart_frame221_wheel1: + symbol: gKartLuigi221Wheel1 + type: texture + offset: 0x513D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_221_tlut_wheel_1 +luigi_kart_frame221_wheel2: + symbol: gKartLuigi221Wheel2 + type: texture + offset: 0x513D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_221_tlut_wheel_2 +luigi_kart_frame221_wheel3: + symbol: gKartLuigi221Wheel3 + type: texture + offset: 0x513D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_221_tlut_wheel_3 +luigi_kart_frame222_wheel0: + symbol: gKartLuigi222Wheel0 + type: texture + offset: 0x51A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_222_tlut_wheel_0 +luigi_kart_frame222_wheel1: + symbol: gKartLuigi222Wheel1 + type: texture + offset: 0x51A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_222_tlut_wheel_1 +luigi_kart_frame222_wheel2: + symbol: gKartLuigi222Wheel2 + type: texture + offset: 0x51A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_222_tlut_wheel_2 +luigi_kart_frame222_wheel3: + symbol: gKartLuigi222Wheel3 + type: texture + offset: 0x51A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_222_tlut_wheel_3 +luigi_kart_frame223_wheel0: + symbol: gKartLuigi223Wheel0 + type: texture + offset: 0x520F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_223_tlut_wheel_0 +luigi_kart_frame223_wheel1: + symbol: gKartLuigi223Wheel1 + type: texture + offset: 0x520F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_223_tlut_wheel_1 +luigi_kart_frame223_wheel2: + symbol: gKartLuigi223Wheel2 + type: texture + offset: 0x520F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_223_tlut_wheel_2 +luigi_kart_frame223_wheel3: + symbol: gKartLuigi223Wheel3 + type: texture + offset: 0x520F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_223_tlut_wheel_3 +luigi_kart_frame224_wheel0: + symbol: gKartLuigi224Wheel0 + type: texture + offset: 0x52764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_224_tlut_wheel_0 +luigi_kart_frame224_wheel1: + symbol: gKartLuigi224Wheel1 + type: texture + offset: 0x52764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_224_tlut_wheel_1 +luigi_kart_frame224_wheel2: + symbol: gKartLuigi224Wheel2 + type: texture + offset: 0x52764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_224_tlut_wheel_2 +luigi_kart_frame224_wheel3: + symbol: gKartLuigi224Wheel3 + type: texture + offset: 0x52764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_224_tlut_wheel_3 +luigi_kart_frame225_wheel0: + symbol: gKartLuigi225Wheel0 + type: texture + offset: 0x52DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_225_tlut_wheel_0 +luigi_kart_frame225_wheel1: + symbol: gKartLuigi225Wheel1 + type: texture + offset: 0x52DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_225_tlut_wheel_1 +luigi_kart_frame225_wheel2: + symbol: gKartLuigi225Wheel2 + type: texture + offset: 0x52DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_225_tlut_wheel_2 +luigi_kart_frame225_wheel3: + symbol: gKartLuigi225Wheel3 + type: texture + offset: 0x52DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_225_tlut_wheel_3 +luigi_kart_frame226_wheel0: + symbol: gKartLuigi226Wheel0 + type: texture + offset: 0x53440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_226_tlut_wheel_0 +luigi_kart_frame226_wheel1: + symbol: gKartLuigi226Wheel1 + type: texture + offset: 0x53440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_226_tlut_wheel_1 +luigi_kart_frame226_wheel2: + symbol: gKartLuigi226Wheel2 + type: texture + offset: 0x53440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_226_tlut_wheel_2 +luigi_kart_frame226_wheel3: + symbol: gKartLuigi226Wheel3 + type: texture + offset: 0x53440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_226_tlut_wheel_3 +luigi_kart_frame227_wheel0: + symbol: gKartLuigi227Wheel0 + type: texture + offset: 0x53A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_227_tlut_wheel_0 +luigi_kart_frame227_wheel1: + symbol: gKartLuigi227Wheel1 + type: texture + offset: 0x53A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_227_tlut_wheel_1 +luigi_kart_frame227_wheel2: + symbol: gKartLuigi227Wheel2 + type: texture + offset: 0x53A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_227_tlut_wheel_2 +luigi_kart_frame227_wheel3: + symbol: gKartLuigi227Wheel3 + type: texture + offset: 0x53A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_227_tlut_wheel_3 +luigi_kart_frame228_wheel0: + symbol: gKartLuigi228Wheel0 + type: texture + offset: 0x54058 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_228_tlut_wheel_0 +luigi_kart_frame228_wheel1: + symbol: gKartLuigi228Wheel1 + type: texture + offset: 0x54058 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_228_tlut_wheel_1 +luigi_kart_frame228_wheel2: + symbol: gKartLuigi228Wheel2 + type: texture + offset: 0x54058 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_228_tlut_wheel_2 +luigi_kart_frame228_wheel3: + symbol: gKartLuigi228Wheel3 + type: texture + offset: 0x54058 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_228_tlut_wheel_3 +luigi_kart_frame229_wheel0: + symbol: gKartLuigi229Wheel0 + type: texture + offset: 0x54604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_229_tlut_wheel_0 +luigi_kart_frame229_wheel1: + symbol: gKartLuigi229Wheel1 + type: texture + offset: 0x54604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_229_tlut_wheel_1 +luigi_kart_frame229_wheel2: + symbol: gKartLuigi229Wheel2 + type: texture + offset: 0x54604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_229_tlut_wheel_2 +luigi_kart_frame229_wheel3: + symbol: gKartLuigi229Wheel3 + type: texture + offset: 0x54604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_229_tlut_wheel_3 +luigi_kart_frame230_wheel0: + symbol: gKartLuigi230Wheel0 + type: texture + offset: 0x54B58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_230_tlut_wheel_0 +luigi_kart_frame230_wheel1: + symbol: gKartLuigi230Wheel1 + type: texture + offset: 0x54B58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_230_tlut_wheel_1 +luigi_kart_frame230_wheel2: + symbol: gKartLuigi230Wheel2 + type: texture + offset: 0x54B58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_230_tlut_wheel_2 +luigi_kart_frame230_wheel3: + symbol: gKartLuigi230Wheel3 + type: texture + offset: 0x54B58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_230_tlut_wheel_3 +luigi_kart_frame231_wheel0: + symbol: gKartLuigi231Wheel0 + type: texture + offset: 0x550F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_231_tlut_wheel_0 +luigi_kart_frame231_wheel1: + symbol: gKartLuigi231Wheel1 + type: texture + offset: 0x550F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_231_tlut_wheel_1 +luigi_kart_frame231_wheel2: + symbol: gKartLuigi231Wheel2 + type: texture + offset: 0x550F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_231_tlut_wheel_2 +luigi_kart_frame231_wheel3: + symbol: gKartLuigi231Wheel3 + type: texture + offset: 0x550F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_231_tlut_wheel_3 +luigi_kart_frame232_wheel0: + symbol: gKartLuigi232Wheel0 + type: texture + offset: 0x556DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_232_tlut_wheel_0 +luigi_kart_frame232_wheel1: + symbol: gKartLuigi232Wheel1 + type: texture + offset: 0x556DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_232_tlut_wheel_1 +luigi_kart_frame232_wheel2: + symbol: gKartLuigi232Wheel2 + type: texture + offset: 0x556DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_232_tlut_wheel_2 +luigi_kart_frame232_wheel3: + symbol: gKartLuigi232Wheel3 + type: texture + offset: 0x556DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_232_tlut_wheel_3 +luigi_kart_frame233_wheel0: + symbol: gKartLuigi233Wheel0 + type: texture + offset: 0x55CE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_233_tlut_wheel_0 +luigi_kart_frame233_wheel1: + symbol: gKartLuigi233Wheel1 + type: texture + offset: 0x55CE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_233_tlut_wheel_1 +luigi_kart_frame233_wheel2: + symbol: gKartLuigi233Wheel2 + type: texture + offset: 0x55CE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_233_tlut_wheel_2 +luigi_kart_frame233_wheel3: + symbol: gKartLuigi233Wheel3 + type: texture + offset: 0x55CE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_233_tlut_wheel_3 +luigi_kart_frame234_wheel0: + symbol: gKartLuigi234Wheel0 + type: texture + offset: 0x56310 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_234_tlut_wheel_0 +luigi_kart_frame234_wheel1: + symbol: gKartLuigi234Wheel1 + type: texture + offset: 0x56310 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_234_tlut_wheel_1 +luigi_kart_frame234_wheel2: + symbol: gKartLuigi234Wheel2 + type: texture + offset: 0x56310 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_234_tlut_wheel_2 +luigi_kart_frame234_wheel3: + symbol: gKartLuigi234Wheel3 + type: texture + offset: 0x56310 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_234_tlut_wheel_3 +luigi_kart_frame235_wheel0: + symbol: gKartLuigi235Wheel0 + type: texture + offset: 0x56950 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_235_tlut_wheel_0 +luigi_kart_frame235_wheel1: + symbol: gKartLuigi235Wheel1 + type: texture + offset: 0x56950 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_235_tlut_wheel_1 +luigi_kart_frame235_wheel2: + symbol: gKartLuigi235Wheel2 + type: texture + offset: 0x56950 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_235_tlut_wheel_2 +luigi_kart_frame235_wheel3: + symbol: gKartLuigi235Wheel3 + type: texture + offset: 0x56950 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_235_tlut_wheel_3 +luigi_kart_frame236_wheel0: + symbol: gKartLuigi236Wheel0 + type: texture + offset: 0x56FA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_236_tlut_wheel_0 +luigi_kart_frame236_wheel1: + symbol: gKartLuigi236Wheel1 + type: texture + offset: 0x56FA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_236_tlut_wheel_1 +luigi_kart_frame236_wheel2: + symbol: gKartLuigi236Wheel2 + type: texture + offset: 0x56FA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_236_tlut_wheel_2 +luigi_kart_frame236_wheel3: + symbol: gKartLuigi236Wheel3 + type: texture + offset: 0x56FA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_236_tlut_wheel_3 +luigi_kart_frame237_wheel0: + symbol: gKartLuigi237Wheel0 + type: texture + offset: 0x57604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_237_tlut_wheel_0 +luigi_kart_frame237_wheel1: + symbol: gKartLuigi237Wheel1 + type: texture + offset: 0x57604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_237_tlut_wheel_1 +luigi_kart_frame237_wheel2: + symbol: gKartLuigi237Wheel2 + type: texture + offset: 0x57604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_237_tlut_wheel_2 +luigi_kart_frame237_wheel3: + symbol: gKartLuigi237Wheel3 + type: texture + offset: 0x57604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_237_tlut_wheel_3 +luigi_kart_frame238_wheel0: + symbol: gKartLuigi238Wheel0 + type: texture + offset: 0x57C6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_238_tlut_wheel_0 +luigi_kart_frame238_wheel1: + symbol: gKartLuigi238Wheel1 + type: texture + offset: 0x57C6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_238_tlut_wheel_1 +luigi_kart_frame238_wheel2: + symbol: gKartLuigi238Wheel2 + type: texture + offset: 0x57C6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_238_tlut_wheel_2 +luigi_kart_frame238_wheel3: + symbol: gKartLuigi238Wheel3 + type: texture + offset: 0x57C6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_238_tlut_wheel_3 +luigi_kart_frame239_wheel0: + symbol: gKartLuigi239Wheel0 + type: texture + offset: 0x582C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_239_tlut_wheel_0 +luigi_kart_frame239_wheel1: + symbol: gKartLuigi239Wheel1 + type: texture + offset: 0x582C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_239_tlut_wheel_1 +luigi_kart_frame239_wheel2: + symbol: gKartLuigi239Wheel2 + type: texture + offset: 0x582C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_239_tlut_wheel_2 +luigi_kart_frame239_wheel3: + symbol: gKartLuigi239Wheel3 + type: texture + offset: 0x582C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_239_tlut_wheel_3 +luigi_kart_frame240_wheel0: + symbol: gKartLuigi240Wheel0 + type: texture + offset: 0x5893C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_240_tlut_wheel_0 +luigi_kart_frame240_wheel1: + symbol: gKartLuigi240Wheel1 + type: texture + offset: 0x5893C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_240_tlut_wheel_1 +luigi_kart_frame240_wheel2: + symbol: gKartLuigi240Wheel2 + type: texture + offset: 0x5893C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_240_tlut_wheel_2 +luigi_kart_frame240_wheel3: + symbol: gKartLuigi240Wheel3 + type: texture + offset: 0x5893C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_240_tlut_wheel_3 +luigi_kart_frame241_wheel0: + symbol: gKartLuigi241Wheel0 + type: texture + offset: 0x58FA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_241_tlut_wheel_0 +luigi_kart_frame241_wheel1: + symbol: gKartLuigi241Wheel1 + type: texture + offset: 0x58FA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_241_tlut_wheel_1 +luigi_kart_frame241_wheel2: + symbol: gKartLuigi241Wheel2 + type: texture + offset: 0x58FA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_241_tlut_wheel_2 +luigi_kart_frame241_wheel3: + symbol: gKartLuigi241Wheel3 + type: texture + offset: 0x58FA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_241_tlut_wheel_3 +luigi_kart_frame242_wheel0: + symbol: gKartLuigi242Wheel0 + type: texture + offset: 0x59608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_242_tlut_wheel_0 +luigi_kart_frame242_wheel1: + symbol: gKartLuigi242Wheel1 + type: texture + offset: 0x59608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_242_tlut_wheel_1 +luigi_kart_frame242_wheel2: + symbol: gKartLuigi242Wheel2 + type: texture + offset: 0x59608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_242_tlut_wheel_2 +luigi_kart_frame242_wheel3: + symbol: gKartLuigi242Wheel3 + type: texture + offset: 0x59608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_242_tlut_wheel_3 +luigi_kart_frame243_wheel0: + symbol: gKartLuigi243Wheel0 + type: texture + offset: 0x59C78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_243_tlut_wheel_0 +luigi_kart_frame243_wheel1: + symbol: gKartLuigi243Wheel1 + type: texture + offset: 0x59C78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_243_tlut_wheel_1 +luigi_kart_frame243_wheel2: + symbol: gKartLuigi243Wheel2 + type: texture + offset: 0x59C78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_243_tlut_wheel_2 +luigi_kart_frame243_wheel3: + symbol: gKartLuigi243Wheel3 + type: texture + offset: 0x59C78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_243_tlut_wheel_3 +luigi_kart_frame244_wheel0: + symbol: gKartLuigi244Wheel0 + type: texture + offset: 0x5A2A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_244_tlut_wheel_0 +luigi_kart_frame244_wheel1: + symbol: gKartLuigi244Wheel1 + type: texture + offset: 0x5A2A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_244_tlut_wheel_1 +luigi_kart_frame244_wheel2: + symbol: gKartLuigi244Wheel2 + type: texture + offset: 0x5A2A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_244_tlut_wheel_2 +luigi_kart_frame244_wheel3: + symbol: gKartLuigi244Wheel3 + type: texture + offset: 0x5A2A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_244_tlut_wheel_3 +luigi_kart_frame245_wheel0: + symbol: gKartLuigi245Wheel0 + type: texture + offset: 0x5A8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_245_tlut_wheel_0 +luigi_kart_frame245_wheel1: + symbol: gKartLuigi245Wheel1 + type: texture + offset: 0x5A8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_245_tlut_wheel_1 +luigi_kart_frame245_wheel2: + symbol: gKartLuigi245Wheel2 + type: texture + offset: 0x5A8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_245_tlut_wheel_2 +luigi_kart_frame245_wheel3: + symbol: gKartLuigi245Wheel3 + type: texture + offset: 0x5A8BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_245_tlut_wheel_3 +luigi_kart_frame246_wheel0: + symbol: gKartLuigi246Wheel0 + type: texture + offset: 0x5AEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_246_tlut_wheel_0 +luigi_kart_frame246_wheel1: + symbol: gKartLuigi246Wheel1 + type: texture + offset: 0x5AEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_246_tlut_wheel_1 +luigi_kart_frame246_wheel2: + symbol: gKartLuigi246Wheel2 + type: texture + offset: 0x5AEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_246_tlut_wheel_2 +luigi_kart_frame246_wheel3: + symbol: gKartLuigi246Wheel3 + type: texture + offset: 0x5AEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_246_tlut_wheel_3 +luigi_kart_frame247_wheel0: + symbol: gKartLuigi247Wheel0 + type: texture + offset: 0x5B4AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_247_tlut_wheel_0 +luigi_kart_frame247_wheel1: + symbol: gKartLuigi247Wheel1 + type: texture + offset: 0x5B4AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_247_tlut_wheel_1 +luigi_kart_frame247_wheel2: + symbol: gKartLuigi247Wheel2 + type: texture + offset: 0x5B4AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_247_tlut_wheel_2 +luigi_kart_frame247_wheel3: + symbol: gKartLuigi247Wheel3 + type: texture + offset: 0x5B4AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_247_tlut_wheel_3 +luigi_kart_frame248_wheel0: + symbol: gKartLuigi248Wheel0 + type: texture + offset: 0x5BA74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_248_tlut_wheel_0 +luigi_kart_frame248_wheel1: + symbol: gKartLuigi248Wheel1 + type: texture + offset: 0x5BA74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_248_tlut_wheel_1 +luigi_kart_frame248_wheel2: + symbol: gKartLuigi248Wheel2 + type: texture + offset: 0x5BA74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_248_tlut_wheel_2 +luigi_kart_frame248_wheel3: + symbol: gKartLuigi248Wheel3 + type: texture + offset: 0x5BA74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_248_tlut_wheel_3 +luigi_kart_frame249_wheel0: + symbol: gKartLuigi249Wheel0 + type: texture + offset: 0x5BFF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_249_tlut_wheel_0 +luigi_kart_frame249_wheel1: + symbol: gKartLuigi249Wheel1 + type: texture + offset: 0x5BFF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_249_tlut_wheel_1 +luigi_kart_frame249_wheel2: + symbol: gKartLuigi249Wheel2 + type: texture + offset: 0x5BFF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_249_tlut_wheel_2 +luigi_kart_frame249_wheel3: + symbol: gKartLuigi249Wheel3 + type: texture + offset: 0x5BFF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_249_tlut_wheel_3 +luigi_kart_frame250_wheel0: + symbol: gKartLuigi250Wheel0 + type: texture + offset: 0x5C570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_250_tlut_wheel_0 +luigi_kart_frame250_wheel1: + symbol: gKartLuigi250Wheel1 + type: texture + offset: 0x5C570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_250_tlut_wheel_1 +luigi_kart_frame250_wheel2: + symbol: gKartLuigi250Wheel2 + type: texture + offset: 0x5C570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_250_tlut_wheel_2 +luigi_kart_frame250_wheel3: + symbol: gKartLuigi250Wheel3 + type: texture + offset: 0x5C570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_250_tlut_wheel_3 +luigi_kart_frame251_wheel0: + symbol: gKartLuigi251Wheel0 + type: texture + offset: 0x5CB3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_251_tlut_wheel_0 +luigi_kart_frame251_wheel1: + symbol: gKartLuigi251Wheel1 + type: texture + offset: 0x5CB3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_251_tlut_wheel_1 +luigi_kart_frame251_wheel2: + symbol: gKartLuigi251Wheel2 + type: texture + offset: 0x5CB3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_251_tlut_wheel_2 +luigi_kart_frame251_wheel3: + symbol: gKartLuigi251Wheel3 + type: texture + offset: 0x5CB3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_251_tlut_wheel_3 +luigi_kart_frame252_wheel0: + symbol: gKartLuigi252Wheel0 + type: texture + offset: 0x5D12C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_252_tlut_wheel_0 +luigi_kart_frame252_wheel1: + symbol: gKartLuigi252Wheel1 + type: texture + offset: 0x5D12C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_252_tlut_wheel_1 +luigi_kart_frame252_wheel2: + symbol: gKartLuigi252Wheel2 + type: texture + offset: 0x5D12C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_252_tlut_wheel_2 +luigi_kart_frame252_wheel3: + symbol: gKartLuigi252Wheel3 + type: texture + offset: 0x5D12C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_252_tlut_wheel_3 +luigi_kart_frame253_wheel0: + symbol: gKartLuigi253Wheel0 + type: texture + offset: 0x5D750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_253_tlut_wheel_0 +luigi_kart_frame253_wheel1: + symbol: gKartLuigi253Wheel1 + type: texture + offset: 0x5D750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_253_tlut_wheel_1 +luigi_kart_frame253_wheel2: + symbol: gKartLuigi253Wheel2 + type: texture + offset: 0x5D750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_253_tlut_wheel_2 +luigi_kart_frame253_wheel3: + symbol: gKartLuigi253Wheel3 + type: texture + offset: 0x5D750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_253_tlut_wheel_3 +luigi_kart_frame254_wheel0: + symbol: gKartLuigi254Wheel0 + type: texture + offset: 0x5DD9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_254_tlut_wheel_0 +luigi_kart_frame254_wheel1: + symbol: gKartLuigi254Wheel1 + type: texture + offset: 0x5DD9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_254_tlut_wheel_1 +luigi_kart_frame254_wheel2: + symbol: gKartLuigi254Wheel2 + type: texture + offset: 0x5DD9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_254_tlut_wheel_2 +luigi_kart_frame254_wheel3: + symbol: gKartLuigi254Wheel3 + type: texture + offset: 0x5DD9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_254_tlut_wheel_3 +luigi_kart_frame255_wheel0: + symbol: gKartLuigi255Wheel0 + type: texture + offset: 0x5E3EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_255_tlut_wheel_0 +luigi_kart_frame255_wheel1: + symbol: gKartLuigi255Wheel1 + type: texture + offset: 0x5E3EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_255_tlut_wheel_1 +luigi_kart_frame255_wheel2: + symbol: gKartLuigi255Wheel2 + type: texture + offset: 0x5E3EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_255_tlut_wheel_2 +luigi_kart_frame255_wheel3: + symbol: gKartLuigi255Wheel3 + type: texture + offset: 0x5E3EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_255_tlut_wheel_3 +luigi_kart_frame256_wheel0: + symbol: gKartLuigi256Wheel0 + type: texture + offset: 0x5EA68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_256_tlut_wheel_0 +luigi_kart_frame256_wheel1: + symbol: gKartLuigi256Wheel1 + type: texture + offset: 0x5EA68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_256_tlut_wheel_1 +luigi_kart_frame256_wheel2: + symbol: gKartLuigi256Wheel2 + type: texture + offset: 0x5EA68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_256_tlut_wheel_2 +luigi_kart_frame256_wheel3: + symbol: gKartLuigi256Wheel3 + type: texture + offset: 0x5EA68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_256_tlut_wheel_3 +luigi_kart_frame257_wheel0: + symbol: gKartLuigi257Wheel0 + type: texture + offset: 0x5F0D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_257_tlut_wheel_0 +luigi_kart_frame257_wheel1: + symbol: gKartLuigi257Wheel1 + type: texture + offset: 0x5F0D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_257_tlut_wheel_1 +luigi_kart_frame257_wheel2: + symbol: gKartLuigi257Wheel2 + type: texture + offset: 0x5F0D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_257_tlut_wheel_2 +luigi_kart_frame257_wheel3: + symbol: gKartLuigi257Wheel3 + type: texture + offset: 0x5F0D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_257_tlut_wheel_3 +luigi_kart_frame258_wheel0: + symbol: gKartLuigi258Wheel0 + type: texture + offset: 0x5F73C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_258_tlut_wheel_0 +luigi_kart_frame258_wheel1: + symbol: gKartLuigi258Wheel1 + type: texture + offset: 0x5F73C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_258_tlut_wheel_1 +luigi_kart_frame258_wheel2: + symbol: gKartLuigi258Wheel2 + type: texture + offset: 0x5F73C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_258_tlut_wheel_2 +luigi_kart_frame258_wheel3: + symbol: gKartLuigi258Wheel3 + type: texture + offset: 0x5F73C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_258_tlut_wheel_3 +luigi_kart_frame259_wheel0: + symbol: gKartLuigi259Wheel0 + type: texture + offset: 0x5FDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_259_tlut_wheel_0 +luigi_kart_frame259_wheel1: + symbol: gKartLuigi259Wheel1 + type: texture + offset: 0x5FDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_259_tlut_wheel_1 +luigi_kart_frame259_wheel2: + symbol: gKartLuigi259Wheel2 + type: texture + offset: 0x5FDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_259_tlut_wheel_2 +luigi_kart_frame259_wheel3: + symbol: gKartLuigi259Wheel3 + type: texture + offset: 0x5FDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_259_tlut_wheel_3 +luigi_kart_frame260_wheel0: + symbol: gKartLuigi260Wheel0 + type: texture + offset: 0x603FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_260_tlut_wheel_0 +luigi_kart_frame260_wheel1: + symbol: gKartLuigi260Wheel1 + type: texture + offset: 0x603FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_260_tlut_wheel_1 +luigi_kart_frame260_wheel2: + symbol: gKartLuigi260Wheel2 + type: texture + offset: 0x603FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_260_tlut_wheel_2 +luigi_kart_frame260_wheel3: + symbol: gKartLuigi260Wheel3 + type: texture + offset: 0x603FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_260_tlut_wheel_3 +luigi_kart_frame261_wheel0: + symbol: gKartLuigi261Wheel0 + type: texture + offset: 0x60A4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_261_tlut_wheel_0 +luigi_kart_frame261_wheel1: + symbol: gKartLuigi261Wheel1 + type: texture + offset: 0x60A4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_261_tlut_wheel_1 +luigi_kart_frame261_wheel2: + symbol: gKartLuigi261Wheel2 + type: texture + offset: 0x60A4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_261_tlut_wheel_2 +luigi_kart_frame261_wheel3: + symbol: gKartLuigi261Wheel3 + type: texture + offset: 0x60A4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_261_tlut_wheel_3 +luigi_kart_frame262_wheel0: + symbol: gKartLuigi262Wheel0 + type: texture + offset: 0x61084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_262_tlut_wheel_0 +luigi_kart_frame262_wheel1: + symbol: gKartLuigi262Wheel1 + type: texture + offset: 0x61084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_262_tlut_wheel_1 +luigi_kart_frame262_wheel2: + symbol: gKartLuigi262Wheel2 + type: texture + offset: 0x61084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_262_tlut_wheel_2 +luigi_kart_frame262_wheel3: + symbol: gKartLuigi262Wheel3 + type: texture + offset: 0x61084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_262_tlut_wheel_3 +luigi_kart_frame263_wheel0: + symbol: gKartLuigi263Wheel0 + type: texture + offset: 0x616A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_263_tlut_wheel_0 +luigi_kart_frame263_wheel1: + symbol: gKartLuigi263Wheel1 + type: texture + offset: 0x616A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_263_tlut_wheel_1 +luigi_kart_frame263_wheel2: + symbol: gKartLuigi263Wheel2 + type: texture + offset: 0x616A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_263_tlut_wheel_2 +luigi_kart_frame263_wheel3: + symbol: gKartLuigi263Wheel3 + type: texture + offset: 0x616A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_263_tlut_wheel_3 +luigi_kart_frame264_wheel0: + symbol: gKartLuigi264Wheel0 + type: texture + offset: 0x61CA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_264_tlut_wheel_0 +luigi_kart_frame264_wheel1: + symbol: gKartLuigi264Wheel1 + type: texture + offset: 0x61CA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_264_tlut_wheel_1 +luigi_kart_frame264_wheel2: + symbol: gKartLuigi264Wheel2 + type: texture + offset: 0x61CA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_264_tlut_wheel_2 +luigi_kart_frame264_wheel3: + symbol: gKartLuigi264Wheel3 + type: texture + offset: 0x61CA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_264_tlut_wheel_3 +luigi_kart_frame265_wheel0: + symbol: gKartLuigi265Wheel0 + type: texture + offset: 0x622A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_265_tlut_wheel_0 +luigi_kart_frame265_wheel1: + symbol: gKartLuigi265Wheel1 + type: texture + offset: 0x622A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_265_tlut_wheel_1 +luigi_kart_frame265_wheel2: + symbol: gKartLuigi265Wheel2 + type: texture + offset: 0x622A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_265_tlut_wheel_2 +luigi_kart_frame265_wheel3: + symbol: gKartLuigi265Wheel3 + type: texture + offset: 0x622A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_265_tlut_wheel_3 +luigi_kart_frame266_wheel0: + symbol: gKartLuigi266Wheel0 + type: texture + offset: 0x62864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_266_tlut_wheel_0 +luigi_kart_frame266_wheel1: + symbol: gKartLuigi266Wheel1 + type: texture + offset: 0x62864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_266_tlut_wheel_1 +luigi_kart_frame266_wheel2: + symbol: gKartLuigi266Wheel2 + type: texture + offset: 0x62864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_266_tlut_wheel_2 +luigi_kart_frame266_wheel3: + symbol: gKartLuigi266Wheel3 + type: texture + offset: 0x62864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_266_tlut_wheel_3 +luigi_kart_frame267_wheel0: + symbol: gKartLuigi267Wheel0 + type: texture + offset: 0x62E10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_267_tlut_wheel_0 +luigi_kart_frame267_wheel1: + symbol: gKartLuigi267Wheel1 + type: texture + offset: 0x62E10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_267_tlut_wheel_1 +luigi_kart_frame267_wheel2: + symbol: gKartLuigi267Wheel2 + type: texture + offset: 0x62E10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_267_tlut_wheel_2 +luigi_kart_frame267_wheel3: + symbol: gKartLuigi267Wheel3 + type: texture + offset: 0x62E10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_267_tlut_wheel_3 +luigi_kart_frame268_wheel0: + symbol: gKartLuigi268Wheel0 + type: texture + offset: 0x63380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_268_tlut_wheel_0 +luigi_kart_frame268_wheel1: + symbol: gKartLuigi268Wheel1 + type: texture + offset: 0x63380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_268_tlut_wheel_1 +luigi_kart_frame268_wheel2: + symbol: gKartLuigi268Wheel2 + type: texture + offset: 0x63380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_268_tlut_wheel_2 +luigi_kart_frame268_wheel3: + symbol: gKartLuigi268Wheel3 + type: texture + offset: 0x63380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_268_tlut_wheel_3 +luigi_kart_frame269_wheel0: + symbol: gKartLuigi269Wheel0 + type: texture + offset: 0x638B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_269_tlut_wheel_0 +luigi_kart_frame269_wheel1: + symbol: gKartLuigi269Wheel1 + type: texture + offset: 0x638B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_269_tlut_wheel_1 +luigi_kart_frame269_wheel2: + symbol: gKartLuigi269Wheel2 + type: texture + offset: 0x638B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_269_tlut_wheel_2 +luigi_kart_frame269_wheel3: + symbol: gKartLuigi269Wheel3 + type: texture + offset: 0x638B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_269_tlut_wheel_3 +luigi_kart_frame270_wheel0: + symbol: gKartLuigi270Wheel0 + type: texture + offset: 0x63E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_270_tlut_wheel_0 +luigi_kart_frame270_wheel1: + symbol: gKartLuigi270Wheel1 + type: texture + offset: 0x63E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_270_tlut_wheel_1 +luigi_kart_frame270_wheel2: + symbol: gKartLuigi270Wheel2 + type: texture + offset: 0x63E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_270_tlut_wheel_2 +luigi_kart_frame270_wheel3: + symbol: gKartLuigi270Wheel3 + type: texture + offset: 0x63E50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_270_tlut_wheel_3 +luigi_kart_frame271_wheel0: + symbol: gKartLuigi271Wheel0 + type: texture + offset: 0x64430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_271_tlut_wheel_0 +luigi_kart_frame271_wheel1: + symbol: gKartLuigi271Wheel1 + type: texture + offset: 0x64430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_271_tlut_wheel_1 +luigi_kart_frame271_wheel2: + symbol: gKartLuigi271Wheel2 + type: texture + offset: 0x64430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_271_tlut_wheel_2 +luigi_kart_frame271_wheel3: + symbol: gKartLuigi271Wheel3 + type: texture + offset: 0x64430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_271_tlut_wheel_3 +luigi_kart_frame272_wheel0: + symbol: gKartLuigi272Wheel0 + type: texture + offset: 0x64A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_272_tlut_wheel_0 +luigi_kart_frame272_wheel1: + symbol: gKartLuigi272Wheel1 + type: texture + offset: 0x64A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_272_tlut_wheel_1 +luigi_kart_frame272_wheel2: + symbol: gKartLuigi272Wheel2 + type: texture + offset: 0x64A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_272_tlut_wheel_2 +luigi_kart_frame272_wheel3: + symbol: gKartLuigi272Wheel3 + type: texture + offset: 0x64A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_272_tlut_wheel_3 +luigi_kart_frame273_wheel0: + symbol: gKartLuigi273Wheel0 + type: texture + offset: 0x65084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_273_tlut_wheel_0 +luigi_kart_frame273_wheel1: + symbol: gKartLuigi273Wheel1 + type: texture + offset: 0x65084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_273_tlut_wheel_1 +luigi_kart_frame273_wheel2: + symbol: gKartLuigi273Wheel2 + type: texture + offset: 0x65084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_273_tlut_wheel_2 +luigi_kart_frame273_wheel3: + symbol: gKartLuigi273Wheel3 + type: texture + offset: 0x65084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_273_tlut_wheel_3 +luigi_kart_frame274_wheel0: + symbol: gKartLuigi274Wheel0 + type: texture + offset: 0x656D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_274_tlut_wheel_0 +luigi_kart_frame274_wheel1: + symbol: gKartLuigi274Wheel1 + type: texture + offset: 0x656D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_274_tlut_wheel_1 +luigi_kart_frame274_wheel2: + symbol: gKartLuigi274Wheel2 + type: texture + offset: 0x656D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_274_tlut_wheel_2 +luigi_kart_frame274_wheel3: + symbol: gKartLuigi274Wheel3 + type: texture + offset: 0x656D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_274_tlut_wheel_3 +luigi_kart_frame275_wheel0: + symbol: gKartLuigi275Wheel0 + type: texture + offset: 0x65D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_275_tlut_wheel_0 +luigi_kart_frame275_wheel1: + symbol: gKartLuigi275Wheel1 + type: texture + offset: 0x65D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_275_tlut_wheel_1 +luigi_kart_frame275_wheel2: + symbol: gKartLuigi275Wheel2 + type: texture + offset: 0x65D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_275_tlut_wheel_2 +luigi_kart_frame275_wheel3: + symbol: gKartLuigi275Wheel3 + type: texture + offset: 0x65D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_275_tlut_wheel_3 +luigi_kart_frame276_wheel0: + symbol: gKartLuigi276Wheel0 + type: texture + offset: 0x663C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_276_tlut_wheel_0 +luigi_kart_frame276_wheel1: + symbol: gKartLuigi276Wheel1 + type: texture + offset: 0x663C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_276_tlut_wheel_1 +luigi_kart_frame276_wheel2: + symbol: gKartLuigi276Wheel2 + type: texture + offset: 0x663C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_276_tlut_wheel_2 +luigi_kart_frame276_wheel3: + symbol: gKartLuigi276Wheel3 + type: texture + offset: 0x663C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_276_tlut_wheel_3 +luigi_kart_frame277_wheel0: + symbol: gKartLuigi277Wheel0 + type: texture + offset: 0x66A48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_277_tlut_wheel_0 +luigi_kart_frame277_wheel1: + symbol: gKartLuigi277Wheel1 + type: texture + offset: 0x66A48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_277_tlut_wheel_1 +luigi_kart_frame277_wheel2: + symbol: gKartLuigi277Wheel2 + type: texture + offset: 0x66A48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_277_tlut_wheel_2 +luigi_kart_frame277_wheel3: + symbol: gKartLuigi277Wheel3 + type: texture + offset: 0x66A48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_277_tlut_wheel_3 +luigi_kart_frame278_wheel0: + symbol: gKartLuigi278Wheel0 + type: texture + offset: 0x670A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_278_tlut_wheel_0 +luigi_kart_frame278_wheel1: + symbol: gKartLuigi278Wheel1 + type: texture + offset: 0x670A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_278_tlut_wheel_1 +luigi_kart_frame278_wheel2: + symbol: gKartLuigi278Wheel2 + type: texture + offset: 0x670A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_278_tlut_wheel_2 +luigi_kart_frame278_wheel3: + symbol: gKartLuigi278Wheel3 + type: texture + offset: 0x670A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_278_tlut_wheel_3 +luigi_kart_frame279_wheel0: + symbol: gKartLuigi279Wheel0 + type: texture + offset: 0x67714 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_279_tlut_wheel_0 +luigi_kart_frame279_wheel1: + symbol: gKartLuigi279Wheel1 + type: texture + offset: 0x67714 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_279_tlut_wheel_1 +luigi_kart_frame279_wheel2: + symbol: gKartLuigi279Wheel2 + type: texture + offset: 0x67714 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_279_tlut_wheel_2 +luigi_kart_frame279_wheel3: + symbol: gKartLuigi279Wheel3 + type: texture + offset: 0x67714 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_279_tlut_wheel_3 +luigi_kart_frame280_wheel0: + symbol: gKartLuigi280Wheel0 + type: texture + offset: 0x67D6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_280_tlut_wheel_0 +luigi_kart_frame280_wheel1: + symbol: gKartLuigi280Wheel1 + type: texture + offset: 0x67D6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_280_tlut_wheel_1 +luigi_kart_frame280_wheel2: + symbol: gKartLuigi280Wheel2 + type: texture + offset: 0x67D6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_280_tlut_wheel_2 +luigi_kart_frame280_wheel3: + symbol: gKartLuigi280Wheel3 + type: texture + offset: 0x67D6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_280_tlut_wheel_3 +luigi_kart_frame281_wheel0: + symbol: gKartLuigi281Wheel0 + type: texture + offset: 0x683B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_281_tlut_wheel_0 +luigi_kart_frame281_wheel1: + symbol: gKartLuigi281Wheel1 + type: texture + offset: 0x683B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_281_tlut_wheel_1 +luigi_kart_frame281_wheel2: + symbol: gKartLuigi281Wheel2 + type: texture + offset: 0x683B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_281_tlut_wheel_2 +luigi_kart_frame281_wheel3: + symbol: gKartLuigi281Wheel3 + type: texture + offset: 0x683B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_281_tlut_wheel_3 +luigi_kart_frame282_wheel0: + symbol: gKartLuigi282Wheel0 + type: texture + offset: 0x689C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_282_tlut_wheel_0 +luigi_kart_frame282_wheel1: + symbol: gKartLuigi282Wheel1 + type: texture + offset: 0x689C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_282_tlut_wheel_1 +luigi_kart_frame282_wheel2: + symbol: gKartLuigi282Wheel2 + type: texture + offset: 0x689C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_282_tlut_wheel_2 +luigi_kart_frame282_wheel3: + symbol: gKartLuigi282Wheel3 + type: texture + offset: 0x689C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_282_tlut_wheel_3 +luigi_kart_frame283_wheel0: + symbol: gKartLuigi283Wheel0 + type: texture + offset: 0x68FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_283_tlut_wheel_0 +luigi_kart_frame283_wheel1: + symbol: gKartLuigi283Wheel1 + type: texture + offset: 0x68FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_283_tlut_wheel_1 +luigi_kart_frame283_wheel2: + symbol: gKartLuigi283Wheel2 + type: texture + offset: 0x68FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_283_tlut_wheel_2 +luigi_kart_frame283_wheel3: + symbol: gKartLuigi283Wheel3 + type: texture + offset: 0x68FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_283_tlut_wheel_3 +luigi_kart_frame284_wheel0: + symbol: gKartLuigi284Wheel0 + type: texture + offset: 0x69590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_284_tlut_wheel_0 +luigi_kart_frame284_wheel1: + symbol: gKartLuigi284Wheel1 + type: texture + offset: 0x69590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_284_tlut_wheel_1 +luigi_kart_frame284_wheel2: + symbol: gKartLuigi284Wheel2 + type: texture + offset: 0x69590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_284_tlut_wheel_2 +luigi_kart_frame284_wheel3: + symbol: gKartLuigi284Wheel3 + type: texture + offset: 0x69590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_284_tlut_wheel_3 +luigi_kart_frame285_wheel0: + symbol: gKartLuigi285Wheel0 + type: texture + offset: 0x69B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_285_tlut_wheel_0 +luigi_kart_frame285_wheel1: + symbol: gKartLuigi285Wheel1 + type: texture + offset: 0x69B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_285_tlut_wheel_1 +luigi_kart_frame285_wheel2: + symbol: gKartLuigi285Wheel2 + type: texture + offset: 0x69B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_285_tlut_wheel_2 +luigi_kart_frame285_wheel3: + symbol: gKartLuigi285Wheel3 + type: texture + offset: 0x69B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_285_tlut_wheel_3 +luigi_kart_frame286_wheel0: + symbol: gKartLuigi286Wheel0 + type: texture + offset: 0x6A0B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_286_tlut_wheel_0 +luigi_kart_frame286_wheel1: + symbol: gKartLuigi286Wheel1 + type: texture + offset: 0x6A0B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_286_tlut_wheel_1 +luigi_kart_frame286_wheel2: + symbol: gKartLuigi286Wheel2 + type: texture + offset: 0x6A0B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_286_tlut_wheel_2 +luigi_kart_frame286_wheel3: + symbol: gKartLuigi286Wheel3 + type: texture + offset: 0x6A0B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_286_tlut_wheel_3 +luigi_kart_frame287_wheel0: + symbol: gKartLuigi287Wheel0 + type: texture + offset: 0x6A604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_287_tlut_wheel_0 +luigi_kart_frame287_wheel1: + symbol: gKartLuigi287Wheel1 + type: texture + offset: 0x6A604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_287_tlut_wheel_1 +luigi_kart_frame287_wheel2: + symbol: gKartLuigi287Wheel2 + type: texture + offset: 0x6A604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_287_tlut_wheel_2 +luigi_kart_frame287_wheel3: + symbol: gKartLuigi287Wheel3 + type: texture + offset: 0x6A604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_287_tlut_wheel_3 +luigi_kart_frame288_wheel0: + symbol: gKartLuigi288Wheel0 + type: texture + offset: 0x6AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_288_tlut_wheel_0 +luigi_kart_frame288_wheel1: + symbol: gKartLuigi288Wheel1 + type: texture + offset: 0x6AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_288_tlut_wheel_1 +luigi_kart_frame288_wheel2: + symbol: gKartLuigi288Wheel2 + type: texture + offset: 0x6AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_288_tlut_wheel_2 +luigi_kart_frame288_wheel3: + symbol: gKartLuigi288Wheel3 + type: texture + offset: 0x6AB10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_288_tlut_wheel_3 +luigi_kart_frame289: + symbol: gKartLuigi289 + type: texture + offset: 0x6AFC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame290: + symbol: gKartLuigi290 + type: texture + offset: 0x6B4C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame291: + symbol: gKartLuigi291 + type: texture + offset: 0x6BA50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame292: + symbol: gKartLuigi292 + type: texture + offset: 0x6C030 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame293: + symbol: gKartLuigi293 + type: texture + offset: 0x6C6DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame294: + symbol: gKartLuigi294 + type: texture + offset: 0x6CD38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame295: + symbol: gKartLuigi295 + type: texture + offset: 0x6D390 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame296: + symbol: gKartLuigi296 + type: texture + offset: 0x6D9B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame297: + symbol: gKartLuigi297 + type: texture + offset: 0x6DF5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame298: + symbol: gKartLuigi298 + type: texture + offset: 0x6E48C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame299: + symbol: gKartLuigi299 + type: texture + offset: 0x6EA48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame300: + symbol: gKartLuigi300 + type: texture + offset: 0x6F028 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame301: + symbol: gKartLuigi301 + type: texture + offset: 0x6F5F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame302: + symbol: gKartLuigi302 + type: texture + offset: 0x6FBB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame303: + symbol: gKartLuigi303 + type: texture + offset: 0x70188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame304: + symbol: gKartLuigi304 + type: texture + offset: 0x70750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame305: + symbol: gKartLuigi305 + type: texture + offset: 0x70CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame306: + symbol: gKartLuigi306 + type: texture + offset: 0x71154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame307: + symbol: gKartLuigi307 + type: texture + offset: 0x71740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame308: + symbol: gKartLuigi308 + type: texture + offset: 0x71DCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame309: + symbol: gKartLuigi309 + type: texture + offset: 0x7247C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame310: + symbol: gKartLuigi310 + type: texture + offset: 0x72AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame311: + symbol: gKartLuigi311 + type: texture + offset: 0x73118 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame312: + symbol: gKartLuigi312 + type: texture + offset: 0x73730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame313: + symbol: gKartLuigi313 + type: texture + offset: 0x73C90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame314: + symbol: gKartLuigi314 + type: texture + offset: 0x741A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame315: + symbol: gKartLuigi315 + type: texture + offset: 0x74764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame316: + symbol: gKartLuigi316 + type: texture + offset: 0x74D3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame317: + symbol: gKartLuigi317 + type: texture + offset: 0x752F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame318: + symbol: gKartLuigi318 + type: texture + offset: 0x758A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame319: + symbol: gKartLuigi319 + type: texture + offset: 0x75E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_frame320: + symbol: gKartLuigi320 + type: texture + offset: 0x76448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: luigi_kart_palette + tlut_wheel: luigi_kart_000_tlut_wheel_0 +luigi_kart_000_tlut_wheel_0: + symbol: gKartLuigi000TlutWheel0 + type: texture + offset: 0x769FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_000_tlut_wheel_1: + symbol: gKartLuigi000TlutWheel1 + type: texture + offset: 0x76A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_000_tlut_wheel_2: + symbol: gKartLuigi000TlutWheel2 + type: texture + offset: 0x76AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_000_tlut_wheel_3: + symbol: gKartLuigi000TlutWheel3 + type: texture + offset: 0x76B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_001_tlut_wheel_0: + symbol: gKartLuigi001TlutWheel0 + type: texture + offset: 0x76BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_001_tlut_wheel_1: + symbol: gKartLuigi001TlutWheel1 + type: texture + offset: 0x76C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_001_tlut_wheel_2: + symbol: gKartLuigi001TlutWheel2 + type: texture + offset: 0x76CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_001_tlut_wheel_3: + symbol: gKartLuigi001TlutWheel3 + type: texture + offset: 0x76D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_002_tlut_wheel_0: + symbol: gKartLuigi002TlutWheel0 + type: texture + offset: 0x76DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_002_tlut_wheel_1: + symbol: gKartLuigi002TlutWheel1 + type: texture + offset: 0x76E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_002_tlut_wheel_2: + symbol: gKartLuigi002TlutWheel2 + type: texture + offset: 0x76EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_002_tlut_wheel_3: + symbol: gKartLuigi002TlutWheel3 + type: texture + offset: 0x76F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_003_tlut_wheel_0: + symbol: gKartLuigi003TlutWheel0 + type: texture + offset: 0x76FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_003_tlut_wheel_1: + symbol: gKartLuigi003TlutWheel1 + type: texture + offset: 0x7707C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_003_tlut_wheel_2: + symbol: gKartLuigi003TlutWheel2 + type: texture + offset: 0x770FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_003_tlut_wheel_3: + symbol: gKartLuigi003TlutWheel3 + type: texture + offset: 0x7717C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_004_tlut_wheel_0: + symbol: gKartLuigi004TlutWheel0 + type: texture + offset: 0x771FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_004_tlut_wheel_1: + symbol: gKartLuigi004TlutWheel1 + type: texture + offset: 0x7727C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_004_tlut_wheel_2: + symbol: gKartLuigi004TlutWheel2 + type: texture + offset: 0x772FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_004_tlut_wheel_3: + symbol: gKartLuigi004TlutWheel3 + type: texture + offset: 0x7737C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_005_tlut_wheel_0: + symbol: gKartLuigi005TlutWheel0 + type: texture + offset: 0x773FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_005_tlut_wheel_1: + symbol: gKartLuigi005TlutWheel1 + type: texture + offset: 0x7747C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_005_tlut_wheel_2: + symbol: gKartLuigi005TlutWheel2 + type: texture + offset: 0x774FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_005_tlut_wheel_3: + symbol: gKartLuigi005TlutWheel3 + type: texture + offset: 0x7757C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_006_tlut_wheel_0: + symbol: gKartLuigi006TlutWheel0 + type: texture + offset: 0x775FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_006_tlut_wheel_1: + symbol: gKartLuigi006TlutWheel1 + type: texture + offset: 0x7767C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_006_tlut_wheel_2: + symbol: gKartLuigi006TlutWheel2 + type: texture + offset: 0x776FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_006_tlut_wheel_3: + symbol: gKartLuigi006TlutWheel3 + type: texture + offset: 0x7777C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_007_tlut_wheel_0: + symbol: gKartLuigi007TlutWheel0 + type: texture + offset: 0x777FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_007_tlut_wheel_1: + symbol: gKartLuigi007TlutWheel1 + type: texture + offset: 0x7787C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_007_tlut_wheel_2: + symbol: gKartLuigi007TlutWheel2 + type: texture + offset: 0x778FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_007_tlut_wheel_3: + symbol: gKartLuigi007TlutWheel3 + type: texture + offset: 0x7797C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_008_tlut_wheel_0: + symbol: gKartLuigi008TlutWheel0 + type: texture + offset: 0x779FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_008_tlut_wheel_1: + symbol: gKartLuigi008TlutWheel1 + type: texture + offset: 0x77A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_008_tlut_wheel_2: + symbol: gKartLuigi008TlutWheel2 + type: texture + offset: 0x77AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_008_tlut_wheel_3: + symbol: gKartLuigi008TlutWheel3 + type: texture + offset: 0x77B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_009_tlut_wheel_0: + symbol: gKartLuigi009TlutWheel0 + type: texture + offset: 0x77BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_009_tlut_wheel_1: + symbol: gKartLuigi009TlutWheel1 + type: texture + offset: 0x77C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_009_tlut_wheel_2: + symbol: gKartLuigi009TlutWheel2 + type: texture + offset: 0x77CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_009_tlut_wheel_3: + symbol: gKartLuigi009TlutWheel3 + type: texture + offset: 0x77D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_010_tlut_wheel_0: + symbol: gKartLuigi010TlutWheel0 + type: texture + offset: 0x77DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_010_tlut_wheel_1: + symbol: gKartLuigi010TlutWheel1 + type: texture + offset: 0x77E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_010_tlut_wheel_2: + symbol: gKartLuigi010TlutWheel2 + type: texture + offset: 0x77EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_010_tlut_wheel_3: + symbol: gKartLuigi010TlutWheel3 + type: texture + offset: 0x77F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_011_tlut_wheel_0: + symbol: gKartLuigi011TlutWheel0 + type: texture + offset: 0x77FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_011_tlut_wheel_1: + symbol: gKartLuigi011TlutWheel1 + type: texture + offset: 0x7807C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_011_tlut_wheel_2: + symbol: gKartLuigi011TlutWheel2 + type: texture + offset: 0x780FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_011_tlut_wheel_3: + symbol: gKartLuigi011TlutWheel3 + type: texture + offset: 0x7817C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_012_tlut_wheel_0: + symbol: gKartLuigi012TlutWheel0 + type: texture + offset: 0x781FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_012_tlut_wheel_1: + symbol: gKartLuigi012TlutWheel1 + type: texture + offset: 0x7827C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_012_tlut_wheel_2: + symbol: gKartLuigi012TlutWheel2 + type: texture + offset: 0x782FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_012_tlut_wheel_3: + symbol: gKartLuigi012TlutWheel3 + type: texture + offset: 0x7837C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_013_tlut_wheel_0: + symbol: gKartLuigi013TlutWheel0 + type: texture + offset: 0x783FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_013_tlut_wheel_1: + symbol: gKartLuigi013TlutWheel1 + type: texture + offset: 0x7847C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_013_tlut_wheel_2: + symbol: gKartLuigi013TlutWheel2 + type: texture + offset: 0x784FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_013_tlut_wheel_3: + symbol: gKartLuigi013TlutWheel3 + type: texture + offset: 0x7857C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_014_tlut_wheel_0: + symbol: gKartLuigi014TlutWheel0 + type: texture + offset: 0x785FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_014_tlut_wheel_1: + symbol: gKartLuigi014TlutWheel1 + type: texture + offset: 0x7867C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_014_tlut_wheel_2: + symbol: gKartLuigi014TlutWheel2 + type: texture + offset: 0x786FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_014_tlut_wheel_3: + symbol: gKartLuigi014TlutWheel3 + type: texture + offset: 0x7877C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_015_tlut_wheel_0: + symbol: gKartLuigi015TlutWheel0 + type: texture + offset: 0x787FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_015_tlut_wheel_1: + symbol: gKartLuigi015TlutWheel1 + type: texture + offset: 0x7887C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_015_tlut_wheel_2: + symbol: gKartLuigi015TlutWheel2 + type: texture + offset: 0x788FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_015_tlut_wheel_3: + symbol: gKartLuigi015TlutWheel3 + type: texture + offset: 0x7897C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_016_tlut_wheel_0: + symbol: gKartLuigi016TlutWheel0 + type: texture + offset: 0x789FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_016_tlut_wheel_1: + symbol: gKartLuigi016TlutWheel1 + type: texture + offset: 0x78A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_016_tlut_wheel_2: + symbol: gKartLuigi016TlutWheel2 + type: texture + offset: 0x78AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_016_tlut_wheel_3: + symbol: gKartLuigi016TlutWheel3 + type: texture + offset: 0x78B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_017_tlut_wheel_0: + symbol: gKartLuigi017TlutWheel0 + type: texture + offset: 0x78BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_017_tlut_wheel_1: + symbol: gKartLuigi017TlutWheel1 + type: texture + offset: 0x78C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_017_tlut_wheel_2: + symbol: gKartLuigi017TlutWheel2 + type: texture + offset: 0x78CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_017_tlut_wheel_3: + symbol: gKartLuigi017TlutWheel3 + type: texture + offset: 0x78D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_018_tlut_wheel_0: + symbol: gKartLuigi018TlutWheel0 + type: texture + offset: 0x78DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_018_tlut_wheel_1: + symbol: gKartLuigi018TlutWheel1 + type: texture + offset: 0x78E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_018_tlut_wheel_2: + symbol: gKartLuigi018TlutWheel2 + type: texture + offset: 0x78EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_018_tlut_wheel_3: + symbol: gKartLuigi018TlutWheel3 + type: texture + offset: 0x78F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_019_tlut_wheel_0: + symbol: gKartLuigi019TlutWheel0 + type: texture + offset: 0x78FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_019_tlut_wheel_1: + symbol: gKartLuigi019TlutWheel1 + type: texture + offset: 0x7907C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_019_tlut_wheel_2: + symbol: gKartLuigi019TlutWheel2 + type: texture + offset: 0x790FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_019_tlut_wheel_3: + symbol: gKartLuigi019TlutWheel3 + type: texture + offset: 0x7917C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_020_tlut_wheel_0: + symbol: gKartLuigi020TlutWheel0 + type: texture + offset: 0x791FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_020_tlut_wheel_1: + symbol: gKartLuigi020TlutWheel1 + type: texture + offset: 0x7927C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_020_tlut_wheel_2: + symbol: gKartLuigi020TlutWheel2 + type: texture + offset: 0x792FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_020_tlut_wheel_3: + symbol: gKartLuigi020TlutWheel3 + type: texture + offset: 0x7937C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_021_tlut_wheel_0: + symbol: gKartLuigi021TlutWheel0 + type: texture + offset: 0x793FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_021_tlut_wheel_1: + symbol: gKartLuigi021TlutWheel1 + type: texture + offset: 0x7947C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_021_tlut_wheel_2: + symbol: gKartLuigi021TlutWheel2 + type: texture + offset: 0x794FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_021_tlut_wheel_3: + symbol: gKartLuigi021TlutWheel3 + type: texture + offset: 0x7957C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_022_tlut_wheel_0: + symbol: gKartLuigi022TlutWheel0 + type: texture + offset: 0x795FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_022_tlut_wheel_1: + symbol: gKartLuigi022TlutWheel1 + type: texture + offset: 0x7967C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_022_tlut_wheel_2: + symbol: gKartLuigi022TlutWheel2 + type: texture + offset: 0x796FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_022_tlut_wheel_3: + symbol: gKartLuigi022TlutWheel3 + type: texture + offset: 0x7977C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_023_tlut_wheel_0: + symbol: gKartLuigi023TlutWheel0 + type: texture + offset: 0x797FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_023_tlut_wheel_1: + symbol: gKartLuigi023TlutWheel1 + type: texture + offset: 0x7987C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_023_tlut_wheel_2: + symbol: gKartLuigi023TlutWheel2 + type: texture + offset: 0x798FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_023_tlut_wheel_3: + symbol: gKartLuigi023TlutWheel3 + type: texture + offset: 0x7997C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_024_tlut_wheel_0: + symbol: gKartLuigi024TlutWheel0 + type: texture + offset: 0x799FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_024_tlut_wheel_1: + symbol: gKartLuigi024TlutWheel1 + type: texture + offset: 0x79A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_024_tlut_wheel_2: + symbol: gKartLuigi024TlutWheel2 + type: texture + offset: 0x79AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_024_tlut_wheel_3: + symbol: gKartLuigi024TlutWheel3 + type: texture + offset: 0x79B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_025_tlut_wheel_0: + symbol: gKartLuigi025TlutWheel0 + type: texture + offset: 0x79BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_025_tlut_wheel_1: + symbol: gKartLuigi025TlutWheel1 + type: texture + offset: 0x79C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_025_tlut_wheel_2: + symbol: gKartLuigi025TlutWheel2 + type: texture + offset: 0x79CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_025_tlut_wheel_3: + symbol: gKartLuigi025TlutWheel3 + type: texture + offset: 0x79D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_026_tlut_wheel_0: + symbol: gKartLuigi026TlutWheel0 + type: texture + offset: 0x79DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_026_tlut_wheel_1: + symbol: gKartLuigi026TlutWheel1 + type: texture + offset: 0x79E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_026_tlut_wheel_2: + symbol: gKartLuigi026TlutWheel2 + type: texture + offset: 0x79EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_026_tlut_wheel_3: + symbol: gKartLuigi026TlutWheel3 + type: texture + offset: 0x79F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_027_tlut_wheel_0: + symbol: gKartLuigi027TlutWheel0 + type: texture + offset: 0x79FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_027_tlut_wheel_1: + symbol: gKartLuigi027TlutWheel1 + type: texture + offset: 0x7A07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_027_tlut_wheel_2: + symbol: gKartLuigi027TlutWheel2 + type: texture + offset: 0x7A0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_027_tlut_wheel_3: + symbol: gKartLuigi027TlutWheel3 + type: texture + offset: 0x7A17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_028_tlut_wheel_0: + symbol: gKartLuigi028TlutWheel0 + type: texture + offset: 0x7A1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_028_tlut_wheel_1: + symbol: gKartLuigi028TlutWheel1 + type: texture + offset: 0x7A27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_028_tlut_wheel_2: + symbol: gKartLuigi028TlutWheel2 + type: texture + offset: 0x7A2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_028_tlut_wheel_3: + symbol: gKartLuigi028TlutWheel3 + type: texture + offset: 0x7A37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_029_tlut_wheel_0: + symbol: gKartLuigi029TlutWheel0 + type: texture + offset: 0x7A3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_029_tlut_wheel_1: + symbol: gKartLuigi029TlutWheel1 + type: texture + offset: 0x7A47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_029_tlut_wheel_2: + symbol: gKartLuigi029TlutWheel2 + type: texture + offset: 0x7A4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_029_tlut_wheel_3: + symbol: gKartLuigi029TlutWheel3 + type: texture + offset: 0x7A57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_030_tlut_wheel_0: + symbol: gKartLuigi030TlutWheel0 + type: texture + offset: 0x7A5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_030_tlut_wheel_1: + symbol: gKartLuigi030TlutWheel1 + type: texture + offset: 0x7A67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_030_tlut_wheel_2: + symbol: gKartLuigi030TlutWheel2 + type: texture + offset: 0x7A6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_030_tlut_wheel_3: + symbol: gKartLuigi030TlutWheel3 + type: texture + offset: 0x7A77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_031_tlut_wheel_0: + symbol: gKartLuigi031TlutWheel0 + type: texture + offset: 0x7A7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_031_tlut_wheel_1: + symbol: gKartLuigi031TlutWheel1 + type: texture + offset: 0x7A87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_031_tlut_wheel_2: + symbol: gKartLuigi031TlutWheel2 + type: texture + offset: 0x7A8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_031_tlut_wheel_3: + symbol: gKartLuigi031TlutWheel3 + type: texture + offset: 0x7A97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_032_tlut_wheel_0: + symbol: gKartLuigi032TlutWheel0 + type: texture + offset: 0x7A9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_032_tlut_wheel_1: + symbol: gKartLuigi032TlutWheel1 + type: texture + offset: 0x7AA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_032_tlut_wheel_2: + symbol: gKartLuigi032TlutWheel2 + type: texture + offset: 0x7AAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_032_tlut_wheel_3: + symbol: gKartLuigi032TlutWheel3 + type: texture + offset: 0x7AB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_033_tlut_wheel_0: + symbol: gKartLuigi033TlutWheel0 + type: texture + offset: 0x7ABFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_033_tlut_wheel_1: + symbol: gKartLuigi033TlutWheel1 + type: texture + offset: 0x7AC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_033_tlut_wheel_2: + symbol: gKartLuigi033TlutWheel2 + type: texture + offset: 0x7ACFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_033_tlut_wheel_3: + symbol: gKartLuigi033TlutWheel3 + type: texture + offset: 0x7AD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_034_tlut_wheel_0: + symbol: gKartLuigi034TlutWheel0 + type: texture + offset: 0x7ADFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_034_tlut_wheel_1: + symbol: gKartLuigi034TlutWheel1 + type: texture + offset: 0x7AE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_034_tlut_wheel_2: + symbol: gKartLuigi034TlutWheel2 + type: texture + offset: 0x7AEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_034_tlut_wheel_3: + symbol: gKartLuigi034TlutWheel3 + type: texture + offset: 0x7AF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_035_tlut_wheel_0: + symbol: gKartLuigi035TlutWheel0 + type: texture + offset: 0x7AFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_035_tlut_wheel_1: + symbol: gKartLuigi035TlutWheel1 + type: texture + offset: 0x7B07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_035_tlut_wheel_2: + symbol: gKartLuigi035TlutWheel2 + type: texture + offset: 0x7B0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_035_tlut_wheel_3: + symbol: gKartLuigi035TlutWheel3 + type: texture + offset: 0x7B17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_036_tlut_wheel_0: + symbol: gKartLuigi036TlutWheel0 + type: texture + offset: 0x7B1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_036_tlut_wheel_1: + symbol: gKartLuigi036TlutWheel1 + type: texture + offset: 0x7B27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_036_tlut_wheel_2: + symbol: gKartLuigi036TlutWheel2 + type: texture + offset: 0x7B2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_036_tlut_wheel_3: + symbol: gKartLuigi036TlutWheel3 + type: texture + offset: 0x7B37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_037_tlut_wheel_0: + symbol: gKartLuigi037TlutWheel0 + type: texture + offset: 0x7B3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_037_tlut_wheel_1: + symbol: gKartLuigi037TlutWheel1 + type: texture + offset: 0x7B47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_037_tlut_wheel_2: + symbol: gKartLuigi037TlutWheel2 + type: texture + offset: 0x7B4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_037_tlut_wheel_3: + symbol: gKartLuigi037TlutWheel3 + type: texture + offset: 0x7B57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_038_tlut_wheel_0: + symbol: gKartLuigi038TlutWheel0 + type: texture + offset: 0x7B5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_038_tlut_wheel_1: + symbol: gKartLuigi038TlutWheel1 + type: texture + offset: 0x7B67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_038_tlut_wheel_2: + symbol: gKartLuigi038TlutWheel2 + type: texture + offset: 0x7B6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_038_tlut_wheel_3: + symbol: gKartLuigi038TlutWheel3 + type: texture + offset: 0x7B77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_039_tlut_wheel_0: + symbol: gKartLuigi039TlutWheel0 + type: texture + offset: 0x7B7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_039_tlut_wheel_1: + symbol: gKartLuigi039TlutWheel1 + type: texture + offset: 0x7B87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_039_tlut_wheel_2: + symbol: gKartLuigi039TlutWheel2 + type: texture + offset: 0x7B8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_039_tlut_wheel_3: + symbol: gKartLuigi039TlutWheel3 + type: texture + offset: 0x7B97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_040_tlut_wheel_0: + symbol: gKartLuigi040TlutWheel0 + type: texture + offset: 0x7B9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_040_tlut_wheel_1: + symbol: gKartLuigi040TlutWheel1 + type: texture + offset: 0x7BA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_040_tlut_wheel_2: + symbol: gKartLuigi040TlutWheel2 + type: texture + offset: 0x7BAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_040_tlut_wheel_3: + symbol: gKartLuigi040TlutWheel3 + type: texture + offset: 0x7BB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_041_tlut_wheel_0: + symbol: gKartLuigi041TlutWheel0 + type: texture + offset: 0x7BBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_041_tlut_wheel_1: + symbol: gKartLuigi041TlutWheel1 + type: texture + offset: 0x7BC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_041_tlut_wheel_2: + symbol: gKartLuigi041TlutWheel2 + type: texture + offset: 0x7BCFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_041_tlut_wheel_3: + symbol: gKartLuigi041TlutWheel3 + type: texture + offset: 0x7BD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_042_tlut_wheel_0: + symbol: gKartLuigi042TlutWheel0 + type: texture + offset: 0x7BDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_042_tlut_wheel_1: + symbol: gKartLuigi042TlutWheel1 + type: texture + offset: 0x7BE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_042_tlut_wheel_2: + symbol: gKartLuigi042TlutWheel2 + type: texture + offset: 0x7BEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_042_tlut_wheel_3: + symbol: gKartLuigi042TlutWheel3 + type: texture + offset: 0x7BF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_043_tlut_wheel_0: + symbol: gKartLuigi043TlutWheel0 + type: texture + offset: 0x7BFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_043_tlut_wheel_1: + symbol: gKartLuigi043TlutWheel1 + type: texture + offset: 0x7C07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_043_tlut_wheel_2: + symbol: gKartLuigi043TlutWheel2 + type: texture + offset: 0x7C0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_043_tlut_wheel_3: + symbol: gKartLuigi043TlutWheel3 + type: texture + offset: 0x7C17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_044_tlut_wheel_0: + symbol: gKartLuigi044TlutWheel0 + type: texture + offset: 0x7C1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_044_tlut_wheel_1: + symbol: gKartLuigi044TlutWheel1 + type: texture + offset: 0x7C27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_044_tlut_wheel_2: + symbol: gKartLuigi044TlutWheel2 + type: texture + offset: 0x7C2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_044_tlut_wheel_3: + symbol: gKartLuigi044TlutWheel3 + type: texture + offset: 0x7C37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_045_tlut_wheel_0: + symbol: gKartLuigi045TlutWheel0 + type: texture + offset: 0x7C3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_045_tlut_wheel_1: + symbol: gKartLuigi045TlutWheel1 + type: texture + offset: 0x7C47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_045_tlut_wheel_2: + symbol: gKartLuigi045TlutWheel2 + type: texture + offset: 0x7C4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_045_tlut_wheel_3: + symbol: gKartLuigi045TlutWheel3 + type: texture + offset: 0x7C57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_046_tlut_wheel_0: + symbol: gKartLuigi046TlutWheel0 + type: texture + offset: 0x7C5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_046_tlut_wheel_1: + symbol: gKartLuigi046TlutWheel1 + type: texture + offset: 0x7C67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_046_tlut_wheel_2: + symbol: gKartLuigi046TlutWheel2 + type: texture + offset: 0x7C6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_046_tlut_wheel_3: + symbol: gKartLuigi046TlutWheel3 + type: texture + offset: 0x7C77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_047_tlut_wheel_0: + symbol: gKartLuigi047TlutWheel0 + type: texture + offset: 0x7C7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_047_tlut_wheel_1: + symbol: gKartLuigi047TlutWheel1 + type: texture + offset: 0x7C87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_047_tlut_wheel_2: + symbol: gKartLuigi047TlutWheel2 + type: texture + offset: 0x7C8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_047_tlut_wheel_3: + symbol: gKartLuigi047TlutWheel3 + type: texture + offset: 0x7C97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_048_tlut_wheel_0: + symbol: gKartLuigi048TlutWheel0 + type: texture + offset: 0x7C9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_048_tlut_wheel_1: + symbol: gKartLuigi048TlutWheel1 + type: texture + offset: 0x7CA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_048_tlut_wheel_2: + symbol: gKartLuigi048TlutWheel2 + type: texture + offset: 0x7CAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_048_tlut_wheel_3: + symbol: gKartLuigi048TlutWheel3 + type: texture + offset: 0x7CB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_049_tlut_wheel_0: + symbol: gKartLuigi049TlutWheel0 + type: texture + offset: 0x7CBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_049_tlut_wheel_1: + symbol: gKartLuigi049TlutWheel1 + type: texture + offset: 0x7CC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_049_tlut_wheel_2: + symbol: gKartLuigi049TlutWheel2 + type: texture + offset: 0x7CCFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_049_tlut_wheel_3: + symbol: gKartLuigi049TlutWheel3 + type: texture + offset: 0x7CD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_050_tlut_wheel_0: + symbol: gKartLuigi050TlutWheel0 + type: texture + offset: 0x7CDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_050_tlut_wheel_1: + symbol: gKartLuigi050TlutWheel1 + type: texture + offset: 0x7CE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_050_tlut_wheel_2: + symbol: gKartLuigi050TlutWheel2 + type: texture + offset: 0x7CEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_050_tlut_wheel_3: + symbol: gKartLuigi050TlutWheel3 + type: texture + offset: 0x7CF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_051_tlut_wheel_0: + symbol: gKartLuigi051TlutWheel0 + type: texture + offset: 0x7CFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_051_tlut_wheel_1: + symbol: gKartLuigi051TlutWheel1 + type: texture + offset: 0x7D07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_051_tlut_wheel_2: + symbol: gKartLuigi051TlutWheel2 + type: texture + offset: 0x7D0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_051_tlut_wheel_3: + symbol: gKartLuigi051TlutWheel3 + type: texture + offset: 0x7D17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_052_tlut_wheel_0: + symbol: gKartLuigi052TlutWheel0 + type: texture + offset: 0x7D1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_052_tlut_wheel_1: + symbol: gKartLuigi052TlutWheel1 + type: texture + offset: 0x7D27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_052_tlut_wheel_2: + symbol: gKartLuigi052TlutWheel2 + type: texture + offset: 0x7D2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_052_tlut_wheel_3: + symbol: gKartLuigi052TlutWheel3 + type: texture + offset: 0x7D37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_053_tlut_wheel_0: + symbol: gKartLuigi053TlutWheel0 + type: texture + offset: 0x7D3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_053_tlut_wheel_1: + symbol: gKartLuigi053TlutWheel1 + type: texture + offset: 0x7D47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_053_tlut_wheel_2: + symbol: gKartLuigi053TlutWheel2 + type: texture + offset: 0x7D4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_053_tlut_wheel_3: + symbol: gKartLuigi053TlutWheel3 + type: texture + offset: 0x7D57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_054_tlut_wheel_0: + symbol: gKartLuigi054TlutWheel0 + type: texture + offset: 0x7D5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_054_tlut_wheel_1: + symbol: gKartLuigi054TlutWheel1 + type: texture + offset: 0x7D67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_054_tlut_wheel_2: + symbol: gKartLuigi054TlutWheel2 + type: texture + offset: 0x7D6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_054_tlut_wheel_3: + symbol: gKartLuigi054TlutWheel3 + type: texture + offset: 0x7D77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_055_tlut_wheel_0: + symbol: gKartLuigi055TlutWheel0 + type: texture + offset: 0x7D7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_055_tlut_wheel_1: + symbol: gKartLuigi055TlutWheel1 + type: texture + offset: 0x7D87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_055_tlut_wheel_2: + symbol: gKartLuigi055TlutWheel2 + type: texture + offset: 0x7D8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_055_tlut_wheel_3: + symbol: gKartLuigi055TlutWheel3 + type: texture + offset: 0x7D97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_056_tlut_wheel_0: + symbol: gKartLuigi056TlutWheel0 + type: texture + offset: 0x7D9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_056_tlut_wheel_1: + symbol: gKartLuigi056TlutWheel1 + type: texture + offset: 0x7DA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_056_tlut_wheel_2: + symbol: gKartLuigi056TlutWheel2 + type: texture + offset: 0x7DAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_056_tlut_wheel_3: + symbol: gKartLuigi056TlutWheel3 + type: texture + offset: 0x7DB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_057_tlut_wheel_0: + symbol: gKartLuigi057TlutWheel0 + type: texture + offset: 0x7DBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_057_tlut_wheel_1: + symbol: gKartLuigi057TlutWheel1 + type: texture + offset: 0x7DC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_057_tlut_wheel_2: + symbol: gKartLuigi057TlutWheel2 + type: texture + offset: 0x7DCFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_057_tlut_wheel_3: + symbol: gKartLuigi057TlutWheel3 + type: texture + offset: 0x7DD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_058_tlut_wheel_0: + symbol: gKartLuigi058TlutWheel0 + type: texture + offset: 0x7DDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_058_tlut_wheel_1: + symbol: gKartLuigi058TlutWheel1 + type: texture + offset: 0x7DE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_058_tlut_wheel_2: + symbol: gKartLuigi058TlutWheel2 + type: texture + offset: 0x7DEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_058_tlut_wheel_3: + symbol: gKartLuigi058TlutWheel3 + type: texture + offset: 0x7DF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_059_tlut_wheel_0: + symbol: gKartLuigi059TlutWheel0 + type: texture + offset: 0x7DFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_059_tlut_wheel_1: + symbol: gKartLuigi059TlutWheel1 + type: texture + offset: 0x7E07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_059_tlut_wheel_2: + symbol: gKartLuigi059TlutWheel2 + type: texture + offset: 0x7E0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_059_tlut_wheel_3: + symbol: gKartLuigi059TlutWheel3 + type: texture + offset: 0x7E17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_060_tlut_wheel_0: + symbol: gKartLuigi060TlutWheel0 + type: texture + offset: 0x7E1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_060_tlut_wheel_1: + symbol: gKartLuigi060TlutWheel1 + type: texture + offset: 0x7E27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_060_tlut_wheel_2: + symbol: gKartLuigi060TlutWheel2 + type: texture + offset: 0x7E2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_060_tlut_wheel_3: + symbol: gKartLuigi060TlutWheel3 + type: texture + offset: 0x7E37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_061_tlut_wheel_0: + symbol: gKartLuigi061TlutWheel0 + type: texture + offset: 0x7E3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_061_tlut_wheel_1: + symbol: gKartLuigi061TlutWheel1 + type: texture + offset: 0x7E47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_061_tlut_wheel_2: + symbol: gKartLuigi061TlutWheel2 + type: texture + offset: 0x7E4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_061_tlut_wheel_3: + symbol: gKartLuigi061TlutWheel3 + type: texture + offset: 0x7E57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_062_tlut_wheel_0: + symbol: gKartLuigi062TlutWheel0 + type: texture + offset: 0x7E5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_062_tlut_wheel_1: + symbol: gKartLuigi062TlutWheel1 + type: texture + offset: 0x7E67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_062_tlut_wheel_2: + symbol: gKartLuigi062TlutWheel2 + type: texture + offset: 0x7E6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_062_tlut_wheel_3: + symbol: gKartLuigi062TlutWheel3 + type: texture + offset: 0x7E77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_063_tlut_wheel_0: + symbol: gKartLuigi063TlutWheel0 + type: texture + offset: 0x7E7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_063_tlut_wheel_1: + symbol: gKartLuigi063TlutWheel1 + type: texture + offset: 0x7E87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_063_tlut_wheel_2: + symbol: gKartLuigi063TlutWheel2 + type: texture + offset: 0x7E8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_063_tlut_wheel_3: + symbol: gKartLuigi063TlutWheel3 + type: texture + offset: 0x7E97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_064_tlut_wheel_0: + symbol: gKartLuigi064TlutWheel0 + type: texture + offset: 0x7E9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_064_tlut_wheel_1: + symbol: gKartLuigi064TlutWheel1 + type: texture + offset: 0x7EA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_064_tlut_wheel_2: + symbol: gKartLuigi064TlutWheel2 + type: texture + offset: 0x7EAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_064_tlut_wheel_3: + symbol: gKartLuigi064TlutWheel3 + type: texture + offset: 0x7EB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_065_tlut_wheel_0: + symbol: gKartLuigi065TlutWheel0 + type: texture + offset: 0x7EBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_065_tlut_wheel_1: + symbol: gKartLuigi065TlutWheel1 + type: texture + offset: 0x7EC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_065_tlut_wheel_2: + symbol: gKartLuigi065TlutWheel2 + type: texture + offset: 0x7ECFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_065_tlut_wheel_3: + symbol: gKartLuigi065TlutWheel3 + type: texture + offset: 0x7ED7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_066_tlut_wheel_0: + symbol: gKartLuigi066TlutWheel0 + type: texture + offset: 0x7EDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_066_tlut_wheel_1: + symbol: gKartLuigi066TlutWheel1 + type: texture + offset: 0x7EE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_066_tlut_wheel_2: + symbol: gKartLuigi066TlutWheel2 + type: texture + offset: 0x7EEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_066_tlut_wheel_3: + symbol: gKartLuigi066TlutWheel3 + type: texture + offset: 0x7EF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_067_tlut_wheel_0: + symbol: gKartLuigi067TlutWheel0 + type: texture + offset: 0x7EFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_067_tlut_wheel_1: + symbol: gKartLuigi067TlutWheel1 + type: texture + offset: 0x7F07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_067_tlut_wheel_2: + symbol: gKartLuigi067TlutWheel2 + type: texture + offset: 0x7F0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_067_tlut_wheel_3: + symbol: gKartLuigi067TlutWheel3 + type: texture + offset: 0x7F17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_068_tlut_wheel_0: + symbol: gKartLuigi068TlutWheel0 + type: texture + offset: 0x7F1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_068_tlut_wheel_1: + symbol: gKartLuigi068TlutWheel1 + type: texture + offset: 0x7F27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_068_tlut_wheel_2: + symbol: gKartLuigi068TlutWheel2 + type: texture + offset: 0x7F2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_068_tlut_wheel_3: + symbol: gKartLuigi068TlutWheel3 + type: texture + offset: 0x7F37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_069_tlut_wheel_0: + symbol: gKartLuigi069TlutWheel0 + type: texture + offset: 0x7F3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_069_tlut_wheel_1: + symbol: gKartLuigi069TlutWheel1 + type: texture + offset: 0x7F47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_069_tlut_wheel_2: + symbol: gKartLuigi069TlutWheel2 + type: texture + offset: 0x7F4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_069_tlut_wheel_3: + symbol: gKartLuigi069TlutWheel3 + type: texture + offset: 0x7F57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_070_tlut_wheel_0: + symbol: gKartLuigi070TlutWheel0 + type: texture + offset: 0x7F5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_070_tlut_wheel_1: + symbol: gKartLuigi070TlutWheel1 + type: texture + offset: 0x7F67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_070_tlut_wheel_2: + symbol: gKartLuigi070TlutWheel2 + type: texture + offset: 0x7F6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_070_tlut_wheel_3: + symbol: gKartLuigi070TlutWheel3 + type: texture + offset: 0x7F77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_071_tlut_wheel_0: + symbol: gKartLuigi071TlutWheel0 + type: texture + offset: 0x7F7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_071_tlut_wheel_1: + symbol: gKartLuigi071TlutWheel1 + type: texture + offset: 0x7F87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_071_tlut_wheel_2: + symbol: gKartLuigi071TlutWheel2 + type: texture + offset: 0x7F8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_071_tlut_wheel_3: + symbol: gKartLuigi071TlutWheel3 + type: texture + offset: 0x7F97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_072_tlut_wheel_0: + symbol: gKartLuigi072TlutWheel0 + type: texture + offset: 0x7F9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_072_tlut_wheel_1: + symbol: gKartLuigi072TlutWheel1 + type: texture + offset: 0x7FA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_072_tlut_wheel_2: + symbol: gKartLuigi072TlutWheel2 + type: texture + offset: 0x7FAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_072_tlut_wheel_3: + symbol: gKartLuigi072TlutWheel3 + type: texture + offset: 0x7FB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_073_tlut_wheel_0: + symbol: gKartLuigi073TlutWheel0 + type: texture + offset: 0x7FBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_073_tlut_wheel_1: + symbol: gKartLuigi073TlutWheel1 + type: texture + offset: 0x7FC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_073_tlut_wheel_2: + symbol: gKartLuigi073TlutWheel2 + type: texture + offset: 0x7FCFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_073_tlut_wheel_3: + symbol: gKartLuigi073TlutWheel3 + type: texture + offset: 0x7FD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_074_tlut_wheel_0: + symbol: gKartLuigi074TlutWheel0 + type: texture + offset: 0x7FDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_074_tlut_wheel_1: + symbol: gKartLuigi074TlutWheel1 + type: texture + offset: 0x7FE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_074_tlut_wheel_2: + symbol: gKartLuigi074TlutWheel2 + type: texture + offset: 0x7FEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_074_tlut_wheel_3: + symbol: gKartLuigi074TlutWheel3 + type: texture + offset: 0x7FF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_075_tlut_wheel_0: + symbol: gKartLuigi075TlutWheel0 + type: texture + offset: 0x7FFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_075_tlut_wheel_1: + symbol: gKartLuigi075TlutWheel1 + type: texture + offset: 0x8007C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_075_tlut_wheel_2: + symbol: gKartLuigi075TlutWheel2 + type: texture + offset: 0x800FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_075_tlut_wheel_3: + symbol: gKartLuigi075TlutWheel3 + type: texture + offset: 0x8017C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_076_tlut_wheel_0: + symbol: gKartLuigi076TlutWheel0 + type: texture + offset: 0x801FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_076_tlut_wheel_1: + symbol: gKartLuigi076TlutWheel1 + type: texture + offset: 0x8027C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_076_tlut_wheel_2: + symbol: gKartLuigi076TlutWheel2 + type: texture + offset: 0x802FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_076_tlut_wheel_3: + symbol: gKartLuigi076TlutWheel3 + type: texture + offset: 0x8037C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_077_tlut_wheel_0: + symbol: gKartLuigi077TlutWheel0 + type: texture + offset: 0x803FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_077_tlut_wheel_1: + symbol: gKartLuigi077TlutWheel1 + type: texture + offset: 0x8047C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_077_tlut_wheel_2: + symbol: gKartLuigi077TlutWheel2 + type: texture + offset: 0x804FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_077_tlut_wheel_3: + symbol: gKartLuigi077TlutWheel3 + type: texture + offset: 0x8057C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_078_tlut_wheel_0: + symbol: gKartLuigi078TlutWheel0 + type: texture + offset: 0x805FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_078_tlut_wheel_1: + symbol: gKartLuigi078TlutWheel1 + type: texture + offset: 0x8067C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_078_tlut_wheel_2: + symbol: gKartLuigi078TlutWheel2 + type: texture + offset: 0x806FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_078_tlut_wheel_3: + symbol: gKartLuigi078TlutWheel3 + type: texture + offset: 0x8077C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_079_tlut_wheel_0: + symbol: gKartLuigi079TlutWheel0 + type: texture + offset: 0x807FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_079_tlut_wheel_1: + symbol: gKartLuigi079TlutWheel1 + type: texture + offset: 0x8087C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_079_tlut_wheel_2: + symbol: gKartLuigi079TlutWheel2 + type: texture + offset: 0x808FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_079_tlut_wheel_3: + symbol: gKartLuigi079TlutWheel3 + type: texture + offset: 0x8097C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_080_tlut_wheel_0: + symbol: gKartLuigi080TlutWheel0 + type: texture + offset: 0x809FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_080_tlut_wheel_1: + symbol: gKartLuigi080TlutWheel1 + type: texture + offset: 0x80A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_080_tlut_wheel_2: + symbol: gKartLuigi080TlutWheel2 + type: texture + offset: 0x80AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_080_tlut_wheel_3: + symbol: gKartLuigi080TlutWheel3 + type: texture + offset: 0x80B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_081_tlut_wheel_0: + symbol: gKartLuigi081TlutWheel0 + type: texture + offset: 0x80BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_081_tlut_wheel_1: + symbol: gKartLuigi081TlutWheel1 + type: texture + offset: 0x80C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_081_tlut_wheel_2: + symbol: gKartLuigi081TlutWheel2 + type: texture + offset: 0x80CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_081_tlut_wheel_3: + symbol: gKartLuigi081TlutWheel3 + type: texture + offset: 0x80D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_082_tlut_wheel_0: + symbol: gKartLuigi082TlutWheel0 + type: texture + offset: 0x80DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_082_tlut_wheel_1: + symbol: gKartLuigi082TlutWheel1 + type: texture + offset: 0x80E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_082_tlut_wheel_2: + symbol: gKartLuigi082TlutWheel2 + type: texture + offset: 0x80EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_082_tlut_wheel_3: + symbol: gKartLuigi082TlutWheel3 + type: texture + offset: 0x80F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_083_tlut_wheel_0: + symbol: gKartLuigi083TlutWheel0 + type: texture + offset: 0x80FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_083_tlut_wheel_1: + symbol: gKartLuigi083TlutWheel1 + type: texture + offset: 0x8107C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_083_tlut_wheel_2: + symbol: gKartLuigi083TlutWheel2 + type: texture + offset: 0x810FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_083_tlut_wheel_3: + symbol: gKartLuigi083TlutWheel3 + type: texture + offset: 0x8117C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_084_tlut_wheel_0: + symbol: gKartLuigi084TlutWheel0 + type: texture + offset: 0x811FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_084_tlut_wheel_1: + symbol: gKartLuigi084TlutWheel1 + type: texture + offset: 0x8127C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_084_tlut_wheel_2: + symbol: gKartLuigi084TlutWheel2 + type: texture + offset: 0x812FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_084_tlut_wheel_3: + symbol: gKartLuigi084TlutWheel3 + type: texture + offset: 0x8137C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_085_tlut_wheel_0: + symbol: gKartLuigi085TlutWheel0 + type: texture + offset: 0x813FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_085_tlut_wheel_1: + symbol: gKartLuigi085TlutWheel1 + type: texture + offset: 0x8147C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_085_tlut_wheel_2: + symbol: gKartLuigi085TlutWheel2 + type: texture + offset: 0x814FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_085_tlut_wheel_3: + symbol: gKartLuigi085TlutWheel3 + type: texture + offset: 0x8157C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_086_tlut_wheel_0: + symbol: gKartLuigi086TlutWheel0 + type: texture + offset: 0x815FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_086_tlut_wheel_1: + symbol: gKartLuigi086TlutWheel1 + type: texture + offset: 0x8167C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_086_tlut_wheel_2: + symbol: gKartLuigi086TlutWheel2 + type: texture + offset: 0x816FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_086_tlut_wheel_3: + symbol: gKartLuigi086TlutWheel3 + type: texture + offset: 0x8177C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_087_tlut_wheel_0: + symbol: gKartLuigi087TlutWheel0 + type: texture + offset: 0x817FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_087_tlut_wheel_1: + symbol: gKartLuigi087TlutWheel1 + type: texture + offset: 0x8187C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_087_tlut_wheel_2: + symbol: gKartLuigi087TlutWheel2 + type: texture + offset: 0x818FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_087_tlut_wheel_3: + symbol: gKartLuigi087TlutWheel3 + type: texture + offset: 0x8197C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_088_tlut_wheel_0: + symbol: gKartLuigi088TlutWheel0 + type: texture + offset: 0x819FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_088_tlut_wheel_1: + symbol: gKartLuigi088TlutWheel1 + type: texture + offset: 0x81A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_088_tlut_wheel_2: + symbol: gKartLuigi088TlutWheel2 + type: texture + offset: 0x81AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_088_tlut_wheel_3: + symbol: gKartLuigi088TlutWheel3 + type: texture + offset: 0x81B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_089_tlut_wheel_0: + symbol: gKartLuigi089TlutWheel0 + type: texture + offset: 0x81BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_089_tlut_wheel_1: + symbol: gKartLuigi089TlutWheel1 + type: texture + offset: 0x81C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_089_tlut_wheel_2: + symbol: gKartLuigi089TlutWheel2 + type: texture + offset: 0x81CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_089_tlut_wheel_3: + symbol: gKartLuigi089TlutWheel3 + type: texture + offset: 0x81D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_090_tlut_wheel_0: + symbol: gKartLuigi090TlutWheel0 + type: texture + offset: 0x81DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_090_tlut_wheel_1: + symbol: gKartLuigi090TlutWheel1 + type: texture + offset: 0x81E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_090_tlut_wheel_2: + symbol: gKartLuigi090TlutWheel2 + type: texture + offset: 0x81EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_090_tlut_wheel_3: + symbol: gKartLuigi090TlutWheel3 + type: texture + offset: 0x81F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_091_tlut_wheel_0: + symbol: gKartLuigi091TlutWheel0 + type: texture + offset: 0x81FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_091_tlut_wheel_1: + symbol: gKartLuigi091TlutWheel1 + type: texture + offset: 0x8207C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_091_tlut_wheel_2: + symbol: gKartLuigi091TlutWheel2 + type: texture + offset: 0x820FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_091_tlut_wheel_3: + symbol: gKartLuigi091TlutWheel3 + type: texture + offset: 0x8217C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_092_tlut_wheel_0: + symbol: gKartLuigi092TlutWheel0 + type: texture + offset: 0x821FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_092_tlut_wheel_1: + symbol: gKartLuigi092TlutWheel1 + type: texture + offset: 0x8227C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_092_tlut_wheel_2: + symbol: gKartLuigi092TlutWheel2 + type: texture + offset: 0x822FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_092_tlut_wheel_3: + symbol: gKartLuigi092TlutWheel3 + type: texture + offset: 0x8237C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_093_tlut_wheel_0: + symbol: gKartLuigi093TlutWheel0 + type: texture + offset: 0x823FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_093_tlut_wheel_1: + symbol: gKartLuigi093TlutWheel1 + type: texture + offset: 0x8247C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_093_tlut_wheel_2: + symbol: gKartLuigi093TlutWheel2 + type: texture + offset: 0x824FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_093_tlut_wheel_3: + symbol: gKartLuigi093TlutWheel3 + type: texture + offset: 0x8257C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_094_tlut_wheel_0: + symbol: gKartLuigi094TlutWheel0 + type: texture + offset: 0x825FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_094_tlut_wheel_1: + symbol: gKartLuigi094TlutWheel1 + type: texture + offset: 0x8267C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_094_tlut_wheel_2: + symbol: gKartLuigi094TlutWheel2 + type: texture + offset: 0x826FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_094_tlut_wheel_3: + symbol: gKartLuigi094TlutWheel3 + type: texture + offset: 0x8277C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_095_tlut_wheel_0: + symbol: gKartLuigi095TlutWheel0 + type: texture + offset: 0x827FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_095_tlut_wheel_1: + symbol: gKartLuigi095TlutWheel1 + type: texture + offset: 0x8287C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_095_tlut_wheel_2: + symbol: gKartLuigi095TlutWheel2 + type: texture + offset: 0x828FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_095_tlut_wheel_3: + symbol: gKartLuigi095TlutWheel3 + type: texture + offset: 0x8297C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_096_tlut_wheel_0: + symbol: gKartLuigi096TlutWheel0 + type: texture + offset: 0x829FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_096_tlut_wheel_1: + symbol: gKartLuigi096TlutWheel1 + type: texture + offset: 0x82A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_096_tlut_wheel_2: + symbol: gKartLuigi096TlutWheel2 + type: texture + offset: 0x82AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_096_tlut_wheel_3: + symbol: gKartLuigi096TlutWheel3 + type: texture + offset: 0x82B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_097_tlut_wheel_0: + symbol: gKartLuigi097TlutWheel0 + type: texture + offset: 0x82BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_097_tlut_wheel_1: + symbol: gKartLuigi097TlutWheel1 + type: texture + offset: 0x82C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_097_tlut_wheel_2: + symbol: gKartLuigi097TlutWheel2 + type: texture + offset: 0x82CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_097_tlut_wheel_3: + symbol: gKartLuigi097TlutWheel3 + type: texture + offset: 0x82D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_098_tlut_wheel_0: + symbol: gKartLuigi098TlutWheel0 + type: texture + offset: 0x82DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_098_tlut_wheel_1: + symbol: gKartLuigi098TlutWheel1 + type: texture + offset: 0x82E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_098_tlut_wheel_2: + symbol: gKartLuigi098TlutWheel2 + type: texture + offset: 0x82EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_098_tlut_wheel_3: + symbol: gKartLuigi098TlutWheel3 + type: texture + offset: 0x82F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_099_tlut_wheel_0: + symbol: gKartLuigi099TlutWheel0 + type: texture + offset: 0x82FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_099_tlut_wheel_1: + symbol: gKartLuigi099TlutWheel1 + type: texture + offset: 0x8307C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_099_tlut_wheel_2: + symbol: gKartLuigi099TlutWheel2 + type: texture + offset: 0x830FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_099_tlut_wheel_3: + symbol: gKartLuigi099TlutWheel3 + type: texture + offset: 0x8317C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_100_tlut_wheel_0: + symbol: gKartLuigi100TlutWheel0 + type: texture + offset: 0x831FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_100_tlut_wheel_1: + symbol: gKartLuigi100TlutWheel1 + type: texture + offset: 0x8327C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_100_tlut_wheel_2: + symbol: gKartLuigi100TlutWheel2 + type: texture + offset: 0x832FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_100_tlut_wheel_3: + symbol: gKartLuigi100TlutWheel3 + type: texture + offset: 0x8337C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_101_tlut_wheel_0: + symbol: gKartLuigi101TlutWheel0 + type: texture + offset: 0x833FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_101_tlut_wheel_1: + symbol: gKartLuigi101TlutWheel1 + type: texture + offset: 0x8347C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_101_tlut_wheel_2: + symbol: gKartLuigi101TlutWheel2 + type: texture + offset: 0x834FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_101_tlut_wheel_3: + symbol: gKartLuigi101TlutWheel3 + type: texture + offset: 0x8357C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_102_tlut_wheel_0: + symbol: gKartLuigi102TlutWheel0 + type: texture + offset: 0x835FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_102_tlut_wheel_1: + symbol: gKartLuigi102TlutWheel1 + type: texture + offset: 0x8367C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_102_tlut_wheel_2: + symbol: gKartLuigi102TlutWheel2 + type: texture + offset: 0x836FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_102_tlut_wheel_3: + symbol: gKartLuigi102TlutWheel3 + type: texture + offset: 0x8377C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_103_tlut_wheel_0: + symbol: gKartLuigi103TlutWheel0 + type: texture + offset: 0x837FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_103_tlut_wheel_1: + symbol: gKartLuigi103TlutWheel1 + type: texture + offset: 0x8387C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_103_tlut_wheel_2: + symbol: gKartLuigi103TlutWheel2 + type: texture + offset: 0x838FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_103_tlut_wheel_3: + symbol: gKartLuigi103TlutWheel3 + type: texture + offset: 0x8397C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_104_tlut_wheel_0: + symbol: gKartLuigi104TlutWheel0 + type: texture + offset: 0x839FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_104_tlut_wheel_1: + symbol: gKartLuigi104TlutWheel1 + type: texture + offset: 0x83A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_104_tlut_wheel_2: + symbol: gKartLuigi104TlutWheel2 + type: texture + offset: 0x83AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_104_tlut_wheel_3: + symbol: gKartLuigi104TlutWheel3 + type: texture + offset: 0x83B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_105_tlut_wheel_0: + symbol: gKartLuigi105TlutWheel0 + type: texture + offset: 0x83BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_105_tlut_wheel_1: + symbol: gKartLuigi105TlutWheel1 + type: texture + offset: 0x83C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_105_tlut_wheel_2: + symbol: gKartLuigi105TlutWheel2 + type: texture + offset: 0x83CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_105_tlut_wheel_3: + symbol: gKartLuigi105TlutWheel3 + type: texture + offset: 0x83D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_106_tlut_wheel_0: + symbol: gKartLuigi106TlutWheel0 + type: texture + offset: 0x83DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_106_tlut_wheel_1: + symbol: gKartLuigi106TlutWheel1 + type: texture + offset: 0x83E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_106_tlut_wheel_2: + symbol: gKartLuigi106TlutWheel2 + type: texture + offset: 0x83EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_106_tlut_wheel_3: + symbol: gKartLuigi106TlutWheel3 + type: texture + offset: 0x83F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_107_tlut_wheel_0: + symbol: gKartLuigi107TlutWheel0 + type: texture + offset: 0x83FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_107_tlut_wheel_1: + symbol: gKartLuigi107TlutWheel1 + type: texture + offset: 0x8407C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_107_tlut_wheel_2: + symbol: gKartLuigi107TlutWheel2 + type: texture + offset: 0x840FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_107_tlut_wheel_3: + symbol: gKartLuigi107TlutWheel3 + type: texture + offset: 0x8417C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_108_tlut_wheel_0: + symbol: gKartLuigi108TlutWheel0 + type: texture + offset: 0x841FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_108_tlut_wheel_1: + symbol: gKartLuigi108TlutWheel1 + type: texture + offset: 0x8427C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_108_tlut_wheel_2: + symbol: gKartLuigi108TlutWheel2 + type: texture + offset: 0x842FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_108_tlut_wheel_3: + symbol: gKartLuigi108TlutWheel3 + type: texture + offset: 0x8437C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_109_tlut_wheel_0: + symbol: gKartLuigi109TlutWheel0 + type: texture + offset: 0x843FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_109_tlut_wheel_1: + symbol: gKartLuigi109TlutWheel1 + type: texture + offset: 0x8447C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_109_tlut_wheel_2: + symbol: gKartLuigi109TlutWheel2 + type: texture + offset: 0x844FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_109_tlut_wheel_3: + symbol: gKartLuigi109TlutWheel3 + type: texture + offset: 0x8457C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_110_tlut_wheel_0: + symbol: gKartLuigi110TlutWheel0 + type: texture + offset: 0x845FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_110_tlut_wheel_1: + symbol: gKartLuigi110TlutWheel1 + type: texture + offset: 0x8467C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_110_tlut_wheel_2: + symbol: gKartLuigi110TlutWheel2 + type: texture + offset: 0x846FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_110_tlut_wheel_3: + symbol: gKartLuigi110TlutWheel3 + type: texture + offset: 0x8477C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_111_tlut_wheel_0: + symbol: gKartLuigi111TlutWheel0 + type: texture + offset: 0x847FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_111_tlut_wheel_1: + symbol: gKartLuigi111TlutWheel1 + type: texture + offset: 0x8487C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_111_tlut_wheel_2: + symbol: gKartLuigi111TlutWheel2 + type: texture + offset: 0x848FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_111_tlut_wheel_3: + symbol: gKartLuigi111TlutWheel3 + type: texture + offset: 0x8497C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_112_tlut_wheel_0: + symbol: gKartLuigi112TlutWheel0 + type: texture + offset: 0x849FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_112_tlut_wheel_1: + symbol: gKartLuigi112TlutWheel1 + type: texture + offset: 0x84A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_112_tlut_wheel_2: + symbol: gKartLuigi112TlutWheel2 + type: texture + offset: 0x84AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_112_tlut_wheel_3: + symbol: gKartLuigi112TlutWheel3 + type: texture + offset: 0x84B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_113_tlut_wheel_0: + symbol: gKartLuigi113TlutWheel0 + type: texture + offset: 0x84BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_113_tlut_wheel_1: + symbol: gKartLuigi113TlutWheel1 + type: texture + offset: 0x84C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_113_tlut_wheel_2: + symbol: gKartLuigi113TlutWheel2 + type: texture + offset: 0x84CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_113_tlut_wheel_3: + symbol: gKartLuigi113TlutWheel3 + type: texture + offset: 0x84D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_114_tlut_wheel_0: + symbol: gKartLuigi114TlutWheel0 + type: texture + offset: 0x84DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_114_tlut_wheel_1: + symbol: gKartLuigi114TlutWheel1 + type: texture + offset: 0x84E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_114_tlut_wheel_2: + symbol: gKartLuigi114TlutWheel2 + type: texture + offset: 0x84EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_114_tlut_wheel_3: + symbol: gKartLuigi114TlutWheel3 + type: texture + offset: 0x84F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_115_tlut_wheel_0: + symbol: gKartLuigi115TlutWheel0 + type: texture + offset: 0x84FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_115_tlut_wheel_1: + symbol: gKartLuigi115TlutWheel1 + type: texture + offset: 0x8507C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_115_tlut_wheel_2: + symbol: gKartLuigi115TlutWheel2 + type: texture + offset: 0x850FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_115_tlut_wheel_3: + symbol: gKartLuigi115TlutWheel3 + type: texture + offset: 0x8517C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_116_tlut_wheel_0: + symbol: gKartLuigi116TlutWheel0 + type: texture + offset: 0x851FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_116_tlut_wheel_1: + symbol: gKartLuigi116TlutWheel1 + type: texture + offset: 0x8527C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_116_tlut_wheel_2: + symbol: gKartLuigi116TlutWheel2 + type: texture + offset: 0x852FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_116_tlut_wheel_3: + symbol: gKartLuigi116TlutWheel3 + type: texture + offset: 0x8537C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_117_tlut_wheel_0: + symbol: gKartLuigi117TlutWheel0 + type: texture + offset: 0x853FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_117_tlut_wheel_1: + symbol: gKartLuigi117TlutWheel1 + type: texture + offset: 0x8547C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_117_tlut_wheel_2: + symbol: gKartLuigi117TlutWheel2 + type: texture + offset: 0x854FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_117_tlut_wheel_3: + symbol: gKartLuigi117TlutWheel3 + type: texture + offset: 0x8557C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_118_tlut_wheel_0: + symbol: gKartLuigi118TlutWheel0 + type: texture + offset: 0x855FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_118_tlut_wheel_1: + symbol: gKartLuigi118TlutWheel1 + type: texture + offset: 0x8567C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_118_tlut_wheel_2: + symbol: gKartLuigi118TlutWheel2 + type: texture + offset: 0x856FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_118_tlut_wheel_3: + symbol: gKartLuigi118TlutWheel3 + type: texture + offset: 0x8577C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_119_tlut_wheel_0: + symbol: gKartLuigi119TlutWheel0 + type: texture + offset: 0x857FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_119_tlut_wheel_1: + symbol: gKartLuigi119TlutWheel1 + type: texture + offset: 0x8587C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_119_tlut_wheel_2: + symbol: gKartLuigi119TlutWheel2 + type: texture + offset: 0x858FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_119_tlut_wheel_3: + symbol: gKartLuigi119TlutWheel3 + type: texture + offset: 0x8597C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_120_tlut_wheel_0: + symbol: gKartLuigi120TlutWheel0 + type: texture + offset: 0x859FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_120_tlut_wheel_1: + symbol: gKartLuigi120TlutWheel1 + type: texture + offset: 0x85A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_120_tlut_wheel_2: + symbol: gKartLuigi120TlutWheel2 + type: texture + offset: 0x85AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_120_tlut_wheel_3: + symbol: gKartLuigi120TlutWheel3 + type: texture + offset: 0x85B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_121_tlut_wheel_0: + symbol: gKartLuigi121TlutWheel0 + type: texture + offset: 0x85BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_121_tlut_wheel_1: + symbol: gKartLuigi121TlutWheel1 + type: texture + offset: 0x85C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_121_tlut_wheel_2: + symbol: gKartLuigi121TlutWheel2 + type: texture + offset: 0x85CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_121_tlut_wheel_3: + symbol: gKartLuigi121TlutWheel3 + type: texture + offset: 0x85D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_122_tlut_wheel_0: + symbol: gKartLuigi122TlutWheel0 + type: texture + offset: 0x85DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_122_tlut_wheel_1: + symbol: gKartLuigi122TlutWheel1 + type: texture + offset: 0x85E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_122_tlut_wheel_2: + symbol: gKartLuigi122TlutWheel2 + type: texture + offset: 0x85EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_122_tlut_wheel_3: + symbol: gKartLuigi122TlutWheel3 + type: texture + offset: 0x85F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_123_tlut_wheel_0: + symbol: gKartLuigi123TlutWheel0 + type: texture + offset: 0x85FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_123_tlut_wheel_1: + symbol: gKartLuigi123TlutWheel1 + type: texture + offset: 0x8607C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_123_tlut_wheel_2: + symbol: gKartLuigi123TlutWheel2 + type: texture + offset: 0x860FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_123_tlut_wheel_3: + symbol: gKartLuigi123TlutWheel3 + type: texture + offset: 0x8617C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_124_tlut_wheel_0: + symbol: gKartLuigi124TlutWheel0 + type: texture + offset: 0x861FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_124_tlut_wheel_1: + symbol: gKartLuigi124TlutWheel1 + type: texture + offset: 0x8627C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_124_tlut_wheel_2: + symbol: gKartLuigi124TlutWheel2 + type: texture + offset: 0x862FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_124_tlut_wheel_3: + symbol: gKartLuigi124TlutWheel3 + type: texture + offset: 0x8637C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_125_tlut_wheel_0: + symbol: gKartLuigi125TlutWheel0 + type: texture + offset: 0x863FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_125_tlut_wheel_1: + symbol: gKartLuigi125TlutWheel1 + type: texture + offset: 0x8647C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_125_tlut_wheel_2: + symbol: gKartLuigi125TlutWheel2 + type: texture + offset: 0x864FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_125_tlut_wheel_3: + symbol: gKartLuigi125TlutWheel3 + type: texture + offset: 0x8657C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_126_tlut_wheel_0: + symbol: gKartLuigi126TlutWheel0 + type: texture + offset: 0x865FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_126_tlut_wheel_1: + symbol: gKartLuigi126TlutWheel1 + type: texture + offset: 0x8667C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_126_tlut_wheel_2: + symbol: gKartLuigi126TlutWheel2 + type: texture + offset: 0x866FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_126_tlut_wheel_3: + symbol: gKartLuigi126TlutWheel3 + type: texture + offset: 0x8677C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_127_tlut_wheel_0: + symbol: gKartLuigi127TlutWheel0 + type: texture + offset: 0x867FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_127_tlut_wheel_1: + symbol: gKartLuigi127TlutWheel1 + type: texture + offset: 0x8687C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_127_tlut_wheel_2: + symbol: gKartLuigi127TlutWheel2 + type: texture + offset: 0x868FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_127_tlut_wheel_3: + symbol: gKartLuigi127TlutWheel3 + type: texture + offset: 0x8697C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_128_tlut_wheel_0: + symbol: gKartLuigi128TlutWheel0 + type: texture + offset: 0x869FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_128_tlut_wheel_1: + symbol: gKartLuigi128TlutWheel1 + type: texture + offset: 0x86A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_128_tlut_wheel_2: + symbol: gKartLuigi128TlutWheel2 + type: texture + offset: 0x86AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_128_tlut_wheel_3: + symbol: gKartLuigi128TlutWheel3 + type: texture + offset: 0x86B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_129_tlut_wheel_0: + symbol: gKartLuigi129TlutWheel0 + type: texture + offset: 0x86BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_129_tlut_wheel_1: + symbol: gKartLuigi129TlutWheel1 + type: texture + offset: 0x86C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_129_tlut_wheel_2: + symbol: gKartLuigi129TlutWheel2 + type: texture + offset: 0x86CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_129_tlut_wheel_3: + symbol: gKartLuigi129TlutWheel3 + type: texture + offset: 0x86D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_130_tlut_wheel_0: + symbol: gKartLuigi130TlutWheel0 + type: texture + offset: 0x86DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_130_tlut_wheel_1: + symbol: gKartLuigi130TlutWheel1 + type: texture + offset: 0x86E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_130_tlut_wheel_2: + symbol: gKartLuigi130TlutWheel2 + type: texture + offset: 0x86EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_130_tlut_wheel_3: + symbol: gKartLuigi130TlutWheel3 + type: texture + offset: 0x86F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_131_tlut_wheel_0: + symbol: gKartLuigi131TlutWheel0 + type: texture + offset: 0x86FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_131_tlut_wheel_1: + symbol: gKartLuigi131TlutWheel1 + type: texture + offset: 0x8707C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_131_tlut_wheel_2: + symbol: gKartLuigi131TlutWheel2 + type: texture + offset: 0x870FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_131_tlut_wheel_3: + symbol: gKartLuigi131TlutWheel3 + type: texture + offset: 0x8717C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_132_tlut_wheel_0: + symbol: gKartLuigi132TlutWheel0 + type: texture + offset: 0x871FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_132_tlut_wheel_1: + symbol: gKartLuigi132TlutWheel1 + type: texture + offset: 0x8727C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_132_tlut_wheel_2: + symbol: gKartLuigi132TlutWheel2 + type: texture + offset: 0x872FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_132_tlut_wheel_3: + symbol: gKartLuigi132TlutWheel3 + type: texture + offset: 0x8737C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_133_tlut_wheel_0: + symbol: gKartLuigi133TlutWheel0 + type: texture + offset: 0x873FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_133_tlut_wheel_1: + symbol: gKartLuigi133TlutWheel1 + type: texture + offset: 0x8747C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_133_tlut_wheel_2: + symbol: gKartLuigi133TlutWheel2 + type: texture + offset: 0x874FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_133_tlut_wheel_3: + symbol: gKartLuigi133TlutWheel3 + type: texture + offset: 0x8757C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_134_tlut_wheel_0: + symbol: gKartLuigi134TlutWheel0 + type: texture + offset: 0x875FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_134_tlut_wheel_1: + symbol: gKartLuigi134TlutWheel1 + type: texture + offset: 0x8767C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_134_tlut_wheel_2: + symbol: gKartLuigi134TlutWheel2 + type: texture + offset: 0x876FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_134_tlut_wheel_3: + symbol: gKartLuigi134TlutWheel3 + type: texture + offset: 0x8777C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_135_tlut_wheel_0: + symbol: gKartLuigi135TlutWheel0 + type: texture + offset: 0x877FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_135_tlut_wheel_1: + symbol: gKartLuigi135TlutWheel1 + type: texture + offset: 0x8787C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_135_tlut_wheel_2: + symbol: gKartLuigi135TlutWheel2 + type: texture + offset: 0x878FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_135_tlut_wheel_3: + symbol: gKartLuigi135TlutWheel3 + type: texture + offset: 0x8797C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_136_tlut_wheel_0: + symbol: gKartLuigi136TlutWheel0 + type: texture + offset: 0x879FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_136_tlut_wheel_1: + symbol: gKartLuigi136TlutWheel1 + type: texture + offset: 0x87A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_136_tlut_wheel_2: + symbol: gKartLuigi136TlutWheel2 + type: texture + offset: 0x87AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_136_tlut_wheel_3: + symbol: gKartLuigi136TlutWheel3 + type: texture + offset: 0x87B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_137_tlut_wheel_0: + symbol: gKartLuigi137TlutWheel0 + type: texture + offset: 0x87BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_137_tlut_wheel_1: + symbol: gKartLuigi137TlutWheel1 + type: texture + offset: 0x87C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_137_tlut_wheel_2: + symbol: gKartLuigi137TlutWheel2 + type: texture + offset: 0x87CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_137_tlut_wheel_3: + symbol: gKartLuigi137TlutWheel3 + type: texture + offset: 0x87D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_138_tlut_wheel_0: + symbol: gKartLuigi138TlutWheel0 + type: texture + offset: 0x87DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_138_tlut_wheel_1: + symbol: gKartLuigi138TlutWheel1 + type: texture + offset: 0x87E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_138_tlut_wheel_2: + symbol: gKartLuigi138TlutWheel2 + type: texture + offset: 0x87EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_138_tlut_wheel_3: + symbol: gKartLuigi138TlutWheel3 + type: texture + offset: 0x87F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_139_tlut_wheel_0: + symbol: gKartLuigi139TlutWheel0 + type: texture + offset: 0x87FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_139_tlut_wheel_1: + symbol: gKartLuigi139TlutWheel1 + type: texture + offset: 0x8807C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_139_tlut_wheel_2: + symbol: gKartLuigi139TlutWheel2 + type: texture + offset: 0x880FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_139_tlut_wheel_3: + symbol: gKartLuigi139TlutWheel3 + type: texture + offset: 0x8817C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_140_tlut_wheel_0: + symbol: gKartLuigi140TlutWheel0 + type: texture + offset: 0x881FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_140_tlut_wheel_1: + symbol: gKartLuigi140TlutWheel1 + type: texture + offset: 0x8827C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_140_tlut_wheel_2: + symbol: gKartLuigi140TlutWheel2 + type: texture + offset: 0x882FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_140_tlut_wheel_3: + symbol: gKartLuigi140TlutWheel3 + type: texture + offset: 0x8837C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_141_tlut_wheel_0: + symbol: gKartLuigi141TlutWheel0 + type: texture + offset: 0x883FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_141_tlut_wheel_1: + symbol: gKartLuigi141TlutWheel1 + type: texture + offset: 0x8847C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_141_tlut_wheel_2: + symbol: gKartLuigi141TlutWheel2 + type: texture + offset: 0x884FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_141_tlut_wheel_3: + symbol: gKartLuigi141TlutWheel3 + type: texture + offset: 0x8857C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_142_tlut_wheel_0: + symbol: gKartLuigi142TlutWheel0 + type: texture + offset: 0x885FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_142_tlut_wheel_1: + symbol: gKartLuigi142TlutWheel1 + type: texture + offset: 0x8867C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_142_tlut_wheel_2: + symbol: gKartLuigi142TlutWheel2 + type: texture + offset: 0x886FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_142_tlut_wheel_3: + symbol: gKartLuigi142TlutWheel3 + type: texture + offset: 0x8877C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_143_tlut_wheel_0: + symbol: gKartLuigi143TlutWheel0 + type: texture + offset: 0x887FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_143_tlut_wheel_1: + symbol: gKartLuigi143TlutWheel1 + type: texture + offset: 0x8887C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_143_tlut_wheel_2: + symbol: gKartLuigi143TlutWheel2 + type: texture + offset: 0x888FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_143_tlut_wheel_3: + symbol: gKartLuigi143TlutWheel3 + type: texture + offset: 0x8897C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_144_tlut_wheel_0: + symbol: gKartLuigi144TlutWheel0 + type: texture + offset: 0x889FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_144_tlut_wheel_1: + symbol: gKartLuigi144TlutWheel1 + type: texture + offset: 0x88A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_144_tlut_wheel_2: + symbol: gKartLuigi144TlutWheel2 + type: texture + offset: 0x88AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_144_tlut_wheel_3: + symbol: gKartLuigi144TlutWheel3 + type: texture + offset: 0x88B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_145_tlut_wheel_0: + symbol: gKartLuigi145TlutWheel0 + type: texture + offset: 0x88BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_145_tlut_wheel_1: + symbol: gKartLuigi145TlutWheel1 + type: texture + offset: 0x88C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_145_tlut_wheel_2: + symbol: gKartLuigi145TlutWheel2 + type: texture + offset: 0x88CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_145_tlut_wheel_3: + symbol: gKartLuigi145TlutWheel3 + type: texture + offset: 0x88D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_146_tlut_wheel_0: + symbol: gKartLuigi146TlutWheel0 + type: texture + offset: 0x88DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_146_tlut_wheel_1: + symbol: gKartLuigi146TlutWheel1 + type: texture + offset: 0x88E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_146_tlut_wheel_2: + symbol: gKartLuigi146TlutWheel2 + type: texture + offset: 0x88EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_146_tlut_wheel_3: + symbol: gKartLuigi146TlutWheel3 + type: texture + offset: 0x88F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_147_tlut_wheel_0: + symbol: gKartLuigi147TlutWheel0 + type: texture + offset: 0x88FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_147_tlut_wheel_1: + symbol: gKartLuigi147TlutWheel1 + type: texture + offset: 0x8907C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_147_tlut_wheel_2: + symbol: gKartLuigi147TlutWheel2 + type: texture + offset: 0x890FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_147_tlut_wheel_3: + symbol: gKartLuigi147TlutWheel3 + type: texture + offset: 0x8917C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_148_tlut_wheel_0: + symbol: gKartLuigi148TlutWheel0 + type: texture + offset: 0x891FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_148_tlut_wheel_1: + symbol: gKartLuigi148TlutWheel1 + type: texture + offset: 0x8927C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_148_tlut_wheel_2: + symbol: gKartLuigi148TlutWheel2 + type: texture + offset: 0x892FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_148_tlut_wheel_3: + symbol: gKartLuigi148TlutWheel3 + type: texture + offset: 0x8937C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_149_tlut_wheel_0: + symbol: gKartLuigi149TlutWheel0 + type: texture + offset: 0x893FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_149_tlut_wheel_1: + symbol: gKartLuigi149TlutWheel1 + type: texture + offset: 0x8947C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_149_tlut_wheel_2: + symbol: gKartLuigi149TlutWheel2 + type: texture + offset: 0x894FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_149_tlut_wheel_3: + symbol: gKartLuigi149TlutWheel3 + type: texture + offset: 0x8957C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_150_tlut_wheel_0: + symbol: gKartLuigi150TlutWheel0 + type: texture + offset: 0x895FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_150_tlut_wheel_1: + symbol: gKartLuigi150TlutWheel1 + type: texture + offset: 0x8967C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_150_tlut_wheel_2: + symbol: gKartLuigi150TlutWheel2 + type: texture + offset: 0x896FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_150_tlut_wheel_3: + symbol: gKartLuigi150TlutWheel3 + type: texture + offset: 0x8977C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_151_tlut_wheel_0: + symbol: gKartLuigi151TlutWheel0 + type: texture + offset: 0x897FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_151_tlut_wheel_1: + symbol: gKartLuigi151TlutWheel1 + type: texture + offset: 0x8987C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_151_tlut_wheel_2: + symbol: gKartLuigi151TlutWheel2 + type: texture + offset: 0x898FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_151_tlut_wheel_3: + symbol: gKartLuigi151TlutWheel3 + type: texture + offset: 0x8997C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_152_tlut_wheel_0: + symbol: gKartLuigi152TlutWheel0 + type: texture + offset: 0x899FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_152_tlut_wheel_1: + symbol: gKartLuigi152TlutWheel1 + type: texture + offset: 0x89A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_152_tlut_wheel_2: + symbol: gKartLuigi152TlutWheel2 + type: texture + offset: 0x89AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_152_tlut_wheel_3: + symbol: gKartLuigi152TlutWheel3 + type: texture + offset: 0x89B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_153_tlut_wheel_0: + symbol: gKartLuigi153TlutWheel0 + type: texture + offset: 0x89BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_153_tlut_wheel_1: + symbol: gKartLuigi153TlutWheel1 + type: texture + offset: 0x89C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_153_tlut_wheel_2: + symbol: gKartLuigi153TlutWheel2 + type: texture + offset: 0x89CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_153_tlut_wheel_3: + symbol: gKartLuigi153TlutWheel3 + type: texture + offset: 0x89D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_154_tlut_wheel_0: + symbol: gKartLuigi154TlutWheel0 + type: texture + offset: 0x89DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_154_tlut_wheel_1: + symbol: gKartLuigi154TlutWheel1 + type: texture + offset: 0x89E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_154_tlut_wheel_2: + symbol: gKartLuigi154TlutWheel2 + type: texture + offset: 0x89EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_154_tlut_wheel_3: + symbol: gKartLuigi154TlutWheel3 + type: texture + offset: 0x89F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_155_tlut_wheel_0: + symbol: gKartLuigi155TlutWheel0 + type: texture + offset: 0x89FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_155_tlut_wheel_1: + symbol: gKartLuigi155TlutWheel1 + type: texture + offset: 0x8A07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_155_tlut_wheel_2: + symbol: gKartLuigi155TlutWheel2 + type: texture + offset: 0x8A0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_155_tlut_wheel_3: + symbol: gKartLuigi155TlutWheel3 + type: texture + offset: 0x8A17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_156_tlut_wheel_0: + symbol: gKartLuigi156TlutWheel0 + type: texture + offset: 0x8A1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_156_tlut_wheel_1: + symbol: gKartLuigi156TlutWheel1 + type: texture + offset: 0x8A27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_156_tlut_wheel_2: + symbol: gKartLuigi156TlutWheel2 + type: texture + offset: 0x8A2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_156_tlut_wheel_3: + symbol: gKartLuigi156TlutWheel3 + type: texture + offset: 0x8A37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_157_tlut_wheel_0: + symbol: gKartLuigi157TlutWheel0 + type: texture + offset: 0x8A3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_157_tlut_wheel_1: + symbol: gKartLuigi157TlutWheel1 + type: texture + offset: 0x8A47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_157_tlut_wheel_2: + symbol: gKartLuigi157TlutWheel2 + type: texture + offset: 0x8A4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_157_tlut_wheel_3: + symbol: gKartLuigi157TlutWheel3 + type: texture + offset: 0x8A57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_158_tlut_wheel_0: + symbol: gKartLuigi158TlutWheel0 + type: texture + offset: 0x8A5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_158_tlut_wheel_1: + symbol: gKartLuigi158TlutWheel1 + type: texture + offset: 0x8A67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_158_tlut_wheel_2: + symbol: gKartLuigi158TlutWheel2 + type: texture + offset: 0x8A6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_158_tlut_wheel_3: + symbol: gKartLuigi158TlutWheel3 + type: texture + offset: 0x8A77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_159_tlut_wheel_0: + symbol: gKartLuigi159TlutWheel0 + type: texture + offset: 0x8A7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_159_tlut_wheel_1: + symbol: gKartLuigi159TlutWheel1 + type: texture + offset: 0x8A87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_159_tlut_wheel_2: + symbol: gKartLuigi159TlutWheel2 + type: texture + offset: 0x8A8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_159_tlut_wheel_3: + symbol: gKartLuigi159TlutWheel3 + type: texture + offset: 0x8A97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_160_tlut_wheel_0: + symbol: gKartLuigi160TlutWheel0 + type: texture + offset: 0x8A9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_160_tlut_wheel_1: + symbol: gKartLuigi160TlutWheel1 + type: texture + offset: 0x8AA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_160_tlut_wheel_2: + symbol: gKartLuigi160TlutWheel2 + type: texture + offset: 0x8AAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_160_tlut_wheel_3: + symbol: gKartLuigi160TlutWheel3 + type: texture + offset: 0x8AB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_161_tlut_wheel_0: + symbol: gKartLuigi161TlutWheel0 + type: texture + offset: 0x8ABFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_161_tlut_wheel_1: + symbol: gKartLuigi161TlutWheel1 + type: texture + offset: 0x8AC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_161_tlut_wheel_2: + symbol: gKartLuigi161TlutWheel2 + type: texture + offset: 0x8ACFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_161_tlut_wheel_3: + symbol: gKartLuigi161TlutWheel3 + type: texture + offset: 0x8AD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_162_tlut_wheel_0: + symbol: gKartLuigi162TlutWheel0 + type: texture + offset: 0x8ADFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_162_tlut_wheel_1: + symbol: gKartLuigi162TlutWheel1 + type: texture + offset: 0x8AE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_162_tlut_wheel_2: + symbol: gKartLuigi162TlutWheel2 + type: texture + offset: 0x8AEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_162_tlut_wheel_3: + symbol: gKartLuigi162TlutWheel3 + type: texture + offset: 0x8AF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_163_tlut_wheel_0: + symbol: gKartLuigi163TlutWheel0 + type: texture + offset: 0x8AFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_163_tlut_wheel_1: + symbol: gKartLuigi163TlutWheel1 + type: texture + offset: 0x8B07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_163_tlut_wheel_2: + symbol: gKartLuigi163TlutWheel2 + type: texture + offset: 0x8B0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_163_tlut_wheel_3: + symbol: gKartLuigi163TlutWheel3 + type: texture + offset: 0x8B17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_164_tlut_wheel_0: + symbol: gKartLuigi164TlutWheel0 + type: texture + offset: 0x8B1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_164_tlut_wheel_1: + symbol: gKartLuigi164TlutWheel1 + type: texture + offset: 0x8B27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_164_tlut_wheel_2: + symbol: gKartLuigi164TlutWheel2 + type: texture + offset: 0x8B2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_164_tlut_wheel_3: + symbol: gKartLuigi164TlutWheel3 + type: texture + offset: 0x8B37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_165_tlut_wheel_0: + symbol: gKartLuigi165TlutWheel0 + type: texture + offset: 0x8B3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_165_tlut_wheel_1: + symbol: gKartLuigi165TlutWheel1 + type: texture + offset: 0x8B47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_165_tlut_wheel_2: + symbol: gKartLuigi165TlutWheel2 + type: texture + offset: 0x8B4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_165_tlut_wheel_3: + symbol: gKartLuigi165TlutWheel3 + type: texture + offset: 0x8B57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_166_tlut_wheel_0: + symbol: gKartLuigi166TlutWheel0 + type: texture + offset: 0x8B5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_166_tlut_wheel_1: + symbol: gKartLuigi166TlutWheel1 + type: texture + offset: 0x8B67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_166_tlut_wheel_2: + symbol: gKartLuigi166TlutWheel2 + type: texture + offset: 0x8B6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_166_tlut_wheel_3: + symbol: gKartLuigi166TlutWheel3 + type: texture + offset: 0x8B77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_167_tlut_wheel_0: + symbol: gKartLuigi167TlutWheel0 + type: texture + offset: 0x8B7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_167_tlut_wheel_1: + symbol: gKartLuigi167TlutWheel1 + type: texture + offset: 0x8B87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_167_tlut_wheel_2: + symbol: gKartLuigi167TlutWheel2 + type: texture + offset: 0x8B8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_167_tlut_wheel_3: + symbol: gKartLuigi167TlutWheel3 + type: texture + offset: 0x8B97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_168_tlut_wheel_0: + symbol: gKartLuigi168TlutWheel0 + type: texture + offset: 0x8B9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_168_tlut_wheel_1: + symbol: gKartLuigi168TlutWheel1 + type: texture + offset: 0x8BA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_168_tlut_wheel_2: + symbol: gKartLuigi168TlutWheel2 + type: texture + offset: 0x8BAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_168_tlut_wheel_3: + symbol: gKartLuigi168TlutWheel3 + type: texture + offset: 0x8BB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_169_tlut_wheel_0: + symbol: gKartLuigi169TlutWheel0 + type: texture + offset: 0x8BBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_169_tlut_wheel_1: + symbol: gKartLuigi169TlutWheel1 + type: texture + offset: 0x8BC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_169_tlut_wheel_2: + symbol: gKartLuigi169TlutWheel2 + type: texture + offset: 0x8BCFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_169_tlut_wheel_3: + symbol: gKartLuigi169TlutWheel3 + type: texture + offset: 0x8BD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_170_tlut_wheel_0: + symbol: gKartLuigi170TlutWheel0 + type: texture + offset: 0x8BDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_170_tlut_wheel_1: + symbol: gKartLuigi170TlutWheel1 + type: texture + offset: 0x8BE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_170_tlut_wheel_2: + symbol: gKartLuigi170TlutWheel2 + type: texture + offset: 0x8BEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_170_tlut_wheel_3: + symbol: gKartLuigi170TlutWheel3 + type: texture + offset: 0x8BF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_171_tlut_wheel_0: + symbol: gKartLuigi171TlutWheel0 + type: texture + offset: 0x8BFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_171_tlut_wheel_1: + symbol: gKartLuigi171TlutWheel1 + type: texture + offset: 0x8C07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_171_tlut_wheel_2: + symbol: gKartLuigi171TlutWheel2 + type: texture + offset: 0x8C0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_171_tlut_wheel_3: + symbol: gKartLuigi171TlutWheel3 + type: texture + offset: 0x8C17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_172_tlut_wheel_0: + symbol: gKartLuigi172TlutWheel0 + type: texture + offset: 0x8C1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_172_tlut_wheel_1: + symbol: gKartLuigi172TlutWheel1 + type: texture + offset: 0x8C27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_172_tlut_wheel_2: + symbol: gKartLuigi172TlutWheel2 + type: texture + offset: 0x8C2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_172_tlut_wheel_3: + symbol: gKartLuigi172TlutWheel3 + type: texture + offset: 0x8C37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_173_tlut_wheel_0: + symbol: gKartLuigi173TlutWheel0 + type: texture + offset: 0x8C3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_173_tlut_wheel_1: + symbol: gKartLuigi173TlutWheel1 + type: texture + offset: 0x8C47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_173_tlut_wheel_2: + symbol: gKartLuigi173TlutWheel2 + type: texture + offset: 0x8C4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_173_tlut_wheel_3: + symbol: gKartLuigi173TlutWheel3 + type: texture + offset: 0x8C57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_174_tlut_wheel_0: + symbol: gKartLuigi174TlutWheel0 + type: texture + offset: 0x8C5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_174_tlut_wheel_1: + symbol: gKartLuigi174TlutWheel1 + type: texture + offset: 0x8C67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_174_tlut_wheel_2: + symbol: gKartLuigi174TlutWheel2 + type: texture + offset: 0x8C6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_174_tlut_wheel_3: + symbol: gKartLuigi174TlutWheel3 + type: texture + offset: 0x8C77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_175_tlut_wheel_0: + symbol: gKartLuigi175TlutWheel0 + type: texture + offset: 0x8C7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_175_tlut_wheel_1: + symbol: gKartLuigi175TlutWheel1 + type: texture + offset: 0x8C87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_175_tlut_wheel_2: + symbol: gKartLuigi175TlutWheel2 + type: texture + offset: 0x8C8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_175_tlut_wheel_3: + symbol: gKartLuigi175TlutWheel3 + type: texture + offset: 0x8C97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_176_tlut_wheel_0: + symbol: gKartLuigi176TlutWheel0 + type: texture + offset: 0x8C9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_176_tlut_wheel_1: + symbol: gKartLuigi176TlutWheel1 + type: texture + offset: 0x8CA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_176_tlut_wheel_2: + symbol: gKartLuigi176TlutWheel2 + type: texture + offset: 0x8CAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_176_tlut_wheel_3: + symbol: gKartLuigi176TlutWheel3 + type: texture + offset: 0x8CB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_177_tlut_wheel_0: + symbol: gKartLuigi177TlutWheel0 + type: texture + offset: 0x8CBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_177_tlut_wheel_1: + symbol: gKartLuigi177TlutWheel1 + type: texture + offset: 0x8CC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_177_tlut_wheel_2: + symbol: gKartLuigi177TlutWheel2 + type: texture + offset: 0x8CCFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_177_tlut_wheel_3: + symbol: gKartLuigi177TlutWheel3 + type: texture + offset: 0x8CD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_178_tlut_wheel_0: + symbol: gKartLuigi178TlutWheel0 + type: texture + offset: 0x8CDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_178_tlut_wheel_1: + symbol: gKartLuigi178TlutWheel1 + type: texture + offset: 0x8CE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_178_tlut_wheel_2: + symbol: gKartLuigi178TlutWheel2 + type: texture + offset: 0x8CEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_178_tlut_wheel_3: + symbol: gKartLuigi178TlutWheel3 + type: texture + offset: 0x8CF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_179_tlut_wheel_0: + symbol: gKartLuigi179TlutWheel0 + type: texture + offset: 0x8CFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_179_tlut_wheel_1: + symbol: gKartLuigi179TlutWheel1 + type: texture + offset: 0x8D07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_179_tlut_wheel_2: + symbol: gKartLuigi179TlutWheel2 + type: texture + offset: 0x8D0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_179_tlut_wheel_3: + symbol: gKartLuigi179TlutWheel3 + type: texture + offset: 0x8D17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_180_tlut_wheel_0: + symbol: gKartLuigi180TlutWheel0 + type: texture + offset: 0x8D1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_180_tlut_wheel_1: + symbol: gKartLuigi180TlutWheel1 + type: texture + offset: 0x8D27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_180_tlut_wheel_2: + symbol: gKartLuigi180TlutWheel2 + type: texture + offset: 0x8D2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_180_tlut_wheel_3: + symbol: gKartLuigi180TlutWheel3 + type: texture + offset: 0x8D37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_181_tlut_wheel_0: + symbol: gKartLuigi181TlutWheel0 + type: texture + offset: 0x8D3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_181_tlut_wheel_1: + symbol: gKartLuigi181TlutWheel1 + type: texture + offset: 0x8D47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_181_tlut_wheel_2: + symbol: gKartLuigi181TlutWheel2 + type: texture + offset: 0x8D4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_181_tlut_wheel_3: + symbol: gKartLuigi181TlutWheel3 + type: texture + offset: 0x8D57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_182_tlut_wheel_0: + symbol: gKartLuigi182TlutWheel0 + type: texture + offset: 0x8D5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_182_tlut_wheel_1: + symbol: gKartLuigi182TlutWheel1 + type: texture + offset: 0x8D67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_182_tlut_wheel_2: + symbol: gKartLuigi182TlutWheel2 + type: texture + offset: 0x8D6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_182_tlut_wheel_3: + symbol: gKartLuigi182TlutWheel3 + type: texture + offset: 0x8D77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_183_tlut_wheel_0: + symbol: gKartLuigi183TlutWheel0 + type: texture + offset: 0x8D7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_183_tlut_wheel_1: + symbol: gKartLuigi183TlutWheel1 + type: texture + offset: 0x8D87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_183_tlut_wheel_2: + symbol: gKartLuigi183TlutWheel2 + type: texture + offset: 0x8D8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_183_tlut_wheel_3: + symbol: gKartLuigi183TlutWheel3 + type: texture + offset: 0x8D97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_184_tlut_wheel_0: + symbol: gKartLuigi184TlutWheel0 + type: texture + offset: 0x8D9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_184_tlut_wheel_1: + symbol: gKartLuigi184TlutWheel1 + type: texture + offset: 0x8DA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_184_tlut_wheel_2: + symbol: gKartLuigi184TlutWheel2 + type: texture + offset: 0x8DAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_184_tlut_wheel_3: + symbol: gKartLuigi184TlutWheel3 + type: texture + offset: 0x8DB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_185_tlut_wheel_0: + symbol: gKartLuigi185TlutWheel0 + type: texture + offset: 0x8DBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_185_tlut_wheel_1: + symbol: gKartLuigi185TlutWheel1 + type: texture + offset: 0x8DC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_185_tlut_wheel_2: + symbol: gKartLuigi185TlutWheel2 + type: texture + offset: 0x8DCFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_185_tlut_wheel_3: + symbol: gKartLuigi185TlutWheel3 + type: texture + offset: 0x8DD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_186_tlut_wheel_0: + symbol: gKartLuigi186TlutWheel0 + type: texture + offset: 0x8DDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_186_tlut_wheel_1: + symbol: gKartLuigi186TlutWheel1 + type: texture + offset: 0x8DE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_186_tlut_wheel_2: + symbol: gKartLuigi186TlutWheel2 + type: texture + offset: 0x8DEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_186_tlut_wheel_3: + symbol: gKartLuigi186TlutWheel3 + type: texture + offset: 0x8DF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_187_tlut_wheel_0: + symbol: gKartLuigi187TlutWheel0 + type: texture + offset: 0x8DFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_187_tlut_wheel_1: + symbol: gKartLuigi187TlutWheel1 + type: texture + offset: 0x8E07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_187_tlut_wheel_2: + symbol: gKartLuigi187TlutWheel2 + type: texture + offset: 0x8E0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_187_tlut_wheel_3: + symbol: gKartLuigi187TlutWheel3 + type: texture + offset: 0x8E17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_188_tlut_wheel_0: + symbol: gKartLuigi188TlutWheel0 + type: texture + offset: 0x8E1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_188_tlut_wheel_1: + symbol: gKartLuigi188TlutWheel1 + type: texture + offset: 0x8E27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_188_tlut_wheel_2: + symbol: gKartLuigi188TlutWheel2 + type: texture + offset: 0x8E2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_188_tlut_wheel_3: + symbol: gKartLuigi188TlutWheel3 + type: texture + offset: 0x8E37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_189_tlut_wheel_0: + symbol: gKartLuigi189TlutWheel0 + type: texture + offset: 0x8E3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_189_tlut_wheel_1: + symbol: gKartLuigi189TlutWheel1 + type: texture + offset: 0x8E47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_189_tlut_wheel_2: + symbol: gKartLuigi189TlutWheel2 + type: texture + offset: 0x8E4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_189_tlut_wheel_3: + symbol: gKartLuigi189TlutWheel3 + type: texture + offset: 0x8E57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_190_tlut_wheel_0: + symbol: gKartLuigi190TlutWheel0 + type: texture + offset: 0x8E5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_190_tlut_wheel_1: + symbol: gKartLuigi190TlutWheel1 + type: texture + offset: 0x8E67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_190_tlut_wheel_2: + symbol: gKartLuigi190TlutWheel2 + type: texture + offset: 0x8E6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_190_tlut_wheel_3: + symbol: gKartLuigi190TlutWheel3 + type: texture + offset: 0x8E77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_191_tlut_wheel_0: + symbol: gKartLuigi191TlutWheel0 + type: texture + offset: 0x8E7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_191_tlut_wheel_1: + symbol: gKartLuigi191TlutWheel1 + type: texture + offset: 0x8E87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_191_tlut_wheel_2: + symbol: gKartLuigi191TlutWheel2 + type: texture + offset: 0x8E8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_191_tlut_wheel_3: + symbol: gKartLuigi191TlutWheel3 + type: texture + offset: 0x8E97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_192_tlut_wheel_0: + symbol: gKartLuigi192TlutWheel0 + type: texture + offset: 0x8E9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_192_tlut_wheel_1: + symbol: gKartLuigi192TlutWheel1 + type: texture + offset: 0x8EA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_192_tlut_wheel_2: + symbol: gKartLuigi192TlutWheel2 + type: texture + offset: 0x8EAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_192_tlut_wheel_3: + symbol: gKartLuigi192TlutWheel3 + type: texture + offset: 0x8EB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_193_tlut_wheel_0: + symbol: gKartLuigi193TlutWheel0 + type: texture + offset: 0x8EBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_193_tlut_wheel_1: + symbol: gKartLuigi193TlutWheel1 + type: texture + offset: 0x8EC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_193_tlut_wheel_2: + symbol: gKartLuigi193TlutWheel2 + type: texture + offset: 0x8ECFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_193_tlut_wheel_3: + symbol: gKartLuigi193TlutWheel3 + type: texture + offset: 0x8ED7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_194_tlut_wheel_0: + symbol: gKartLuigi194TlutWheel0 + type: texture + offset: 0x8EDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_194_tlut_wheel_1: + symbol: gKartLuigi194TlutWheel1 + type: texture + offset: 0x8EE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_194_tlut_wheel_2: + symbol: gKartLuigi194TlutWheel2 + type: texture + offset: 0x8EEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_194_tlut_wheel_3: + symbol: gKartLuigi194TlutWheel3 + type: texture + offset: 0x8EF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_195_tlut_wheel_0: + symbol: gKartLuigi195TlutWheel0 + type: texture + offset: 0x8EFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_195_tlut_wheel_1: + symbol: gKartLuigi195TlutWheel1 + type: texture + offset: 0x8F07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_195_tlut_wheel_2: + symbol: gKartLuigi195TlutWheel2 + type: texture + offset: 0x8F0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_195_tlut_wheel_3: + symbol: gKartLuigi195TlutWheel3 + type: texture + offset: 0x8F17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_196_tlut_wheel_0: + symbol: gKartLuigi196TlutWheel0 + type: texture + offset: 0x8F1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_196_tlut_wheel_1: + symbol: gKartLuigi196TlutWheel1 + type: texture + offset: 0x8F27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_196_tlut_wheel_2: + symbol: gKartLuigi196TlutWheel2 + type: texture + offset: 0x8F2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_196_tlut_wheel_3: + symbol: gKartLuigi196TlutWheel3 + type: texture + offset: 0x8F37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_197_tlut_wheel_0: + symbol: gKartLuigi197TlutWheel0 + type: texture + offset: 0x8F3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_197_tlut_wheel_1: + symbol: gKartLuigi197TlutWheel1 + type: texture + offset: 0x8F47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_197_tlut_wheel_2: + symbol: gKartLuigi197TlutWheel2 + type: texture + offset: 0x8F4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_197_tlut_wheel_3: + symbol: gKartLuigi197TlutWheel3 + type: texture + offset: 0x8F57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_198_tlut_wheel_0: + symbol: gKartLuigi198TlutWheel0 + type: texture + offset: 0x8F5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_198_tlut_wheel_1: + symbol: gKartLuigi198TlutWheel1 + type: texture + offset: 0x8F67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_198_tlut_wheel_2: + symbol: gKartLuigi198TlutWheel2 + type: texture + offset: 0x8F6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_198_tlut_wheel_3: + symbol: gKartLuigi198TlutWheel3 + type: texture + offset: 0x8F77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_199_tlut_wheel_0: + symbol: gKartLuigi199TlutWheel0 + type: texture + offset: 0x8F7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_199_tlut_wheel_1: + symbol: gKartLuigi199TlutWheel1 + type: texture + offset: 0x8F87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_199_tlut_wheel_2: + symbol: gKartLuigi199TlutWheel2 + type: texture + offset: 0x8F8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_199_tlut_wheel_3: + symbol: gKartLuigi199TlutWheel3 + type: texture + offset: 0x8F97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_200_tlut_wheel_0: + symbol: gKartLuigi200TlutWheel0 + type: texture + offset: 0x8F9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_200_tlut_wheel_1: + symbol: gKartLuigi200TlutWheel1 + type: texture + offset: 0x8FA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_200_tlut_wheel_2: + symbol: gKartLuigi200TlutWheel2 + type: texture + offset: 0x8FAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_200_tlut_wheel_3: + symbol: gKartLuigi200TlutWheel3 + type: texture + offset: 0x8FB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_201_tlut_wheel_0: + symbol: gKartLuigi201TlutWheel0 + type: texture + offset: 0x8FBFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_201_tlut_wheel_1: + symbol: gKartLuigi201TlutWheel1 + type: texture + offset: 0x8FC7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_201_tlut_wheel_2: + symbol: gKartLuigi201TlutWheel2 + type: texture + offset: 0x8FCFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_201_tlut_wheel_3: + symbol: gKartLuigi201TlutWheel3 + type: texture + offset: 0x8FD7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_202_tlut_wheel_0: + symbol: gKartLuigi202TlutWheel0 + type: texture + offset: 0x8FDFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_202_tlut_wheel_1: + symbol: gKartLuigi202TlutWheel1 + type: texture + offset: 0x8FE7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_202_tlut_wheel_2: + symbol: gKartLuigi202TlutWheel2 + type: texture + offset: 0x8FEFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_202_tlut_wheel_3: + symbol: gKartLuigi202TlutWheel3 + type: texture + offset: 0x8FF7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_203_tlut_wheel_0: + symbol: gKartLuigi203TlutWheel0 + type: texture + offset: 0x8FFFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_203_tlut_wheel_1: + symbol: gKartLuigi203TlutWheel1 + type: texture + offset: 0x9007C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_203_tlut_wheel_2: + symbol: gKartLuigi203TlutWheel2 + type: texture + offset: 0x900FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_203_tlut_wheel_3: + symbol: gKartLuigi203TlutWheel3 + type: texture + offset: 0x9017C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_204_tlut_wheel_0: + symbol: gKartLuigi204TlutWheel0 + type: texture + offset: 0x901FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_204_tlut_wheel_1: + symbol: gKartLuigi204TlutWheel1 + type: texture + offset: 0x9027C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_204_tlut_wheel_2: + symbol: gKartLuigi204TlutWheel2 + type: texture + offset: 0x902FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_204_tlut_wheel_3: + symbol: gKartLuigi204TlutWheel3 + type: texture + offset: 0x9037C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_205_tlut_wheel_0: + symbol: gKartLuigi205TlutWheel0 + type: texture + offset: 0x903FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_205_tlut_wheel_1: + symbol: gKartLuigi205TlutWheel1 + type: texture + offset: 0x9047C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_205_tlut_wheel_2: + symbol: gKartLuigi205TlutWheel2 + type: texture + offset: 0x904FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_205_tlut_wheel_3: + symbol: gKartLuigi205TlutWheel3 + type: texture + offset: 0x9057C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_206_tlut_wheel_0: + symbol: gKartLuigi206TlutWheel0 + type: texture + offset: 0x905FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_206_tlut_wheel_1: + symbol: gKartLuigi206TlutWheel1 + type: texture + offset: 0x9067C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_206_tlut_wheel_2: + symbol: gKartLuigi206TlutWheel2 + type: texture + offset: 0x906FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_206_tlut_wheel_3: + symbol: gKartLuigi206TlutWheel3 + type: texture + offset: 0x9077C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_207_tlut_wheel_0: + symbol: gKartLuigi207TlutWheel0 + type: texture + offset: 0x907FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_207_tlut_wheel_1: + symbol: gKartLuigi207TlutWheel1 + type: texture + offset: 0x9087C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_207_tlut_wheel_2: + symbol: gKartLuigi207TlutWheel2 + type: texture + offset: 0x908FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_207_tlut_wheel_3: + symbol: gKartLuigi207TlutWheel3 + type: texture + offset: 0x9097C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_208_tlut_wheel_0: + symbol: gKartLuigi208TlutWheel0 + type: texture + offset: 0x909FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_208_tlut_wheel_1: + symbol: gKartLuigi208TlutWheel1 + type: texture + offset: 0x90A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_208_tlut_wheel_2: + symbol: gKartLuigi208TlutWheel2 + type: texture + offset: 0x90AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_208_tlut_wheel_3: + symbol: gKartLuigi208TlutWheel3 + type: texture + offset: 0x90B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_209_tlut_wheel_0: + symbol: gKartLuigi209TlutWheel0 + type: texture + offset: 0x90BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_209_tlut_wheel_1: + symbol: gKartLuigi209TlutWheel1 + type: texture + offset: 0x90C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_209_tlut_wheel_2: + symbol: gKartLuigi209TlutWheel2 + type: texture + offset: 0x90CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_209_tlut_wheel_3: + symbol: gKartLuigi209TlutWheel3 + type: texture + offset: 0x90D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_210_tlut_wheel_0: + symbol: gKartLuigi210TlutWheel0 + type: texture + offset: 0x90DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_210_tlut_wheel_1: + symbol: gKartLuigi210TlutWheel1 + type: texture + offset: 0x90E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_210_tlut_wheel_2: + symbol: gKartLuigi210TlutWheel2 + type: texture + offset: 0x90EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_210_tlut_wheel_3: + symbol: gKartLuigi210TlutWheel3 + type: texture + offset: 0x90F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_211_tlut_wheel_0: + symbol: gKartLuigi211TlutWheel0 + type: texture + offset: 0x90FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_211_tlut_wheel_1: + symbol: gKartLuigi211TlutWheel1 + type: texture + offset: 0x9107C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_211_tlut_wheel_2: + symbol: gKartLuigi211TlutWheel2 + type: texture + offset: 0x910FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_211_tlut_wheel_3: + symbol: gKartLuigi211TlutWheel3 + type: texture + offset: 0x9117C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_212_tlut_wheel_0: + symbol: gKartLuigi212TlutWheel0 + type: texture + offset: 0x911FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_212_tlut_wheel_1: + symbol: gKartLuigi212TlutWheel1 + type: texture + offset: 0x9127C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_212_tlut_wheel_2: + symbol: gKartLuigi212TlutWheel2 + type: texture + offset: 0x912FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_212_tlut_wheel_3: + symbol: gKartLuigi212TlutWheel3 + type: texture + offset: 0x9137C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_213_tlut_wheel_0: + symbol: gKartLuigi213TlutWheel0 + type: texture + offset: 0x913FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_213_tlut_wheel_1: + symbol: gKartLuigi213TlutWheel1 + type: texture + offset: 0x9147C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_213_tlut_wheel_2: + symbol: gKartLuigi213TlutWheel2 + type: texture + offset: 0x914FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_213_tlut_wheel_3: + symbol: gKartLuigi213TlutWheel3 + type: texture + offset: 0x9157C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_214_tlut_wheel_0: + symbol: gKartLuigi214TlutWheel0 + type: texture + offset: 0x915FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_214_tlut_wheel_1: + symbol: gKartLuigi214TlutWheel1 + type: texture + offset: 0x9167C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_214_tlut_wheel_2: + symbol: gKartLuigi214TlutWheel2 + type: texture + offset: 0x916FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_214_tlut_wheel_3: + symbol: gKartLuigi214TlutWheel3 + type: texture + offset: 0x9177C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_215_tlut_wheel_0: + symbol: gKartLuigi215TlutWheel0 + type: texture + offset: 0x917FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_215_tlut_wheel_1: + symbol: gKartLuigi215TlutWheel1 + type: texture + offset: 0x9187C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_215_tlut_wheel_2: + symbol: gKartLuigi215TlutWheel2 + type: texture + offset: 0x918FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_215_tlut_wheel_3: + symbol: gKartLuigi215TlutWheel3 + type: texture + offset: 0x9197C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_216_tlut_wheel_0: + symbol: gKartLuigi216TlutWheel0 + type: texture + offset: 0x919FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_216_tlut_wheel_1: + symbol: gKartLuigi216TlutWheel1 + type: texture + offset: 0x91A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_216_tlut_wheel_2: + symbol: gKartLuigi216TlutWheel2 + type: texture + offset: 0x91AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_216_tlut_wheel_3: + symbol: gKartLuigi216TlutWheel3 + type: texture + offset: 0x91B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_217_tlut_wheel_0: + symbol: gKartLuigi217TlutWheel0 + type: texture + offset: 0x91BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_217_tlut_wheel_1: + symbol: gKartLuigi217TlutWheel1 + type: texture + offset: 0x91C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_217_tlut_wheel_2: + symbol: gKartLuigi217TlutWheel2 + type: texture + offset: 0x91CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_217_tlut_wheel_3: + symbol: gKartLuigi217TlutWheel3 + type: texture + offset: 0x91D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_218_tlut_wheel_0: + symbol: gKartLuigi218TlutWheel0 + type: texture + offset: 0x91DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_218_tlut_wheel_1: + symbol: gKartLuigi218TlutWheel1 + type: texture + offset: 0x91E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_218_tlut_wheel_2: + symbol: gKartLuigi218TlutWheel2 + type: texture + offset: 0x91EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_218_tlut_wheel_3: + symbol: gKartLuigi218TlutWheel3 + type: texture + offset: 0x91F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_219_tlut_wheel_0: + symbol: gKartLuigi219TlutWheel0 + type: texture + offset: 0x91FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_219_tlut_wheel_1: + symbol: gKartLuigi219TlutWheel1 + type: texture + offset: 0x9207C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_219_tlut_wheel_2: + symbol: gKartLuigi219TlutWheel2 + type: texture + offset: 0x920FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_219_tlut_wheel_3: + symbol: gKartLuigi219TlutWheel3 + type: texture + offset: 0x9217C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_220_tlut_wheel_0: + symbol: gKartLuigi220TlutWheel0 + type: texture + offset: 0x921FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_220_tlut_wheel_1: + symbol: gKartLuigi220TlutWheel1 + type: texture + offset: 0x9227C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_220_tlut_wheel_2: + symbol: gKartLuigi220TlutWheel2 + type: texture + offset: 0x922FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_220_tlut_wheel_3: + symbol: gKartLuigi220TlutWheel3 + type: texture + offset: 0x9237C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_221_tlut_wheel_0: + symbol: gKartLuigi221TlutWheel0 + type: texture + offset: 0x923FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_221_tlut_wheel_1: + symbol: gKartLuigi221TlutWheel1 + type: texture + offset: 0x9247C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_221_tlut_wheel_2: + symbol: gKartLuigi221TlutWheel2 + type: texture + offset: 0x924FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_221_tlut_wheel_3: + symbol: gKartLuigi221TlutWheel3 + type: texture + offset: 0x9257C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_222_tlut_wheel_0: + symbol: gKartLuigi222TlutWheel0 + type: texture + offset: 0x925FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_222_tlut_wheel_1: + symbol: gKartLuigi222TlutWheel1 + type: texture + offset: 0x9267C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_222_tlut_wheel_2: + symbol: gKartLuigi222TlutWheel2 + type: texture + offset: 0x926FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_222_tlut_wheel_3: + symbol: gKartLuigi222TlutWheel3 + type: texture + offset: 0x9277C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_223_tlut_wheel_0: + symbol: gKartLuigi223TlutWheel0 + type: texture + offset: 0x927FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_223_tlut_wheel_1: + symbol: gKartLuigi223TlutWheel1 + type: texture + offset: 0x9287C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_223_tlut_wheel_2: + symbol: gKartLuigi223TlutWheel2 + type: texture + offset: 0x928FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_223_tlut_wheel_3: + symbol: gKartLuigi223TlutWheel3 + type: texture + offset: 0x9297C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_224_tlut_wheel_0: + symbol: gKartLuigi224TlutWheel0 + type: texture + offset: 0x929FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_224_tlut_wheel_1: + symbol: gKartLuigi224TlutWheel1 + type: texture + offset: 0x92A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_224_tlut_wheel_2: + symbol: gKartLuigi224TlutWheel2 + type: texture + offset: 0x92AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_224_tlut_wheel_3: + symbol: gKartLuigi224TlutWheel3 + type: texture + offset: 0x92B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_225_tlut_wheel_0: + symbol: gKartLuigi225TlutWheel0 + type: texture + offset: 0x92BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_225_tlut_wheel_1: + symbol: gKartLuigi225TlutWheel1 + type: texture + offset: 0x92C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_225_tlut_wheel_2: + symbol: gKartLuigi225TlutWheel2 + type: texture + offset: 0x92CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_225_tlut_wheel_3: + symbol: gKartLuigi225TlutWheel3 + type: texture + offset: 0x92D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_226_tlut_wheel_0: + symbol: gKartLuigi226TlutWheel0 + type: texture + offset: 0x92DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_226_tlut_wheel_1: + symbol: gKartLuigi226TlutWheel1 + type: texture + offset: 0x92E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_226_tlut_wheel_2: + symbol: gKartLuigi226TlutWheel2 + type: texture + offset: 0x92EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_226_tlut_wheel_3: + symbol: gKartLuigi226TlutWheel3 + type: texture + offset: 0x92F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_227_tlut_wheel_0: + symbol: gKartLuigi227TlutWheel0 + type: texture + offset: 0x92FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_227_tlut_wheel_1: + symbol: gKartLuigi227TlutWheel1 + type: texture + offset: 0x9307C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_227_tlut_wheel_2: + symbol: gKartLuigi227TlutWheel2 + type: texture + offset: 0x930FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_227_tlut_wheel_3: + symbol: gKartLuigi227TlutWheel3 + type: texture + offset: 0x9317C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_228_tlut_wheel_0: + symbol: gKartLuigi228TlutWheel0 + type: texture + offset: 0x931FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_228_tlut_wheel_1: + symbol: gKartLuigi228TlutWheel1 + type: texture + offset: 0x9327C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_228_tlut_wheel_2: + symbol: gKartLuigi228TlutWheel2 + type: texture + offset: 0x932FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_228_tlut_wheel_3: + symbol: gKartLuigi228TlutWheel3 + type: texture + offset: 0x9337C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_229_tlut_wheel_0: + symbol: gKartLuigi229TlutWheel0 + type: texture + offset: 0x933FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_229_tlut_wheel_1: + symbol: gKartLuigi229TlutWheel1 + type: texture + offset: 0x9347C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_229_tlut_wheel_2: + symbol: gKartLuigi229TlutWheel2 + type: texture + offset: 0x934FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_229_tlut_wheel_3: + symbol: gKartLuigi229TlutWheel3 + type: texture + offset: 0x9357C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_230_tlut_wheel_0: + symbol: gKartLuigi230TlutWheel0 + type: texture + offset: 0x935FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_230_tlut_wheel_1: + symbol: gKartLuigi230TlutWheel1 + type: texture + offset: 0x9367C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_230_tlut_wheel_2: + symbol: gKartLuigi230TlutWheel2 + type: texture + offset: 0x936FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_230_tlut_wheel_3: + symbol: gKartLuigi230TlutWheel3 + type: texture + offset: 0x9377C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_231_tlut_wheel_0: + symbol: gKartLuigi231TlutWheel0 + type: texture + offset: 0x937FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_231_tlut_wheel_1: + symbol: gKartLuigi231TlutWheel1 + type: texture + offset: 0x9387C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_231_tlut_wheel_2: + symbol: gKartLuigi231TlutWheel2 + type: texture + offset: 0x938FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_231_tlut_wheel_3: + symbol: gKartLuigi231TlutWheel3 + type: texture + offset: 0x9397C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_232_tlut_wheel_0: + symbol: gKartLuigi232TlutWheel0 + type: texture + offset: 0x939FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_232_tlut_wheel_1: + symbol: gKartLuigi232TlutWheel1 + type: texture + offset: 0x93A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_232_tlut_wheel_2: + symbol: gKartLuigi232TlutWheel2 + type: texture + offset: 0x93AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_232_tlut_wheel_3: + symbol: gKartLuigi232TlutWheel3 + type: texture + offset: 0x93B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_233_tlut_wheel_0: + symbol: gKartLuigi233TlutWheel0 + type: texture + offset: 0x93BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_233_tlut_wheel_1: + symbol: gKartLuigi233TlutWheel1 + type: texture + offset: 0x93C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_233_tlut_wheel_2: + symbol: gKartLuigi233TlutWheel2 + type: texture + offset: 0x93CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_233_tlut_wheel_3: + symbol: gKartLuigi233TlutWheel3 + type: texture + offset: 0x93D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_234_tlut_wheel_0: + symbol: gKartLuigi234TlutWheel0 + type: texture + offset: 0x93DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_234_tlut_wheel_1: + symbol: gKartLuigi234TlutWheel1 + type: texture + offset: 0x93E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_234_tlut_wheel_2: + symbol: gKartLuigi234TlutWheel2 + type: texture + offset: 0x93EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_234_tlut_wheel_3: + symbol: gKartLuigi234TlutWheel3 + type: texture + offset: 0x93F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_235_tlut_wheel_0: + symbol: gKartLuigi235TlutWheel0 + type: texture + offset: 0x93FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_235_tlut_wheel_1: + symbol: gKartLuigi235TlutWheel1 + type: texture + offset: 0x9407C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_235_tlut_wheel_2: + symbol: gKartLuigi235TlutWheel2 + type: texture + offset: 0x940FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_235_tlut_wheel_3: + symbol: gKartLuigi235TlutWheel3 + type: texture + offset: 0x9417C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_236_tlut_wheel_0: + symbol: gKartLuigi236TlutWheel0 + type: texture + offset: 0x941FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_236_tlut_wheel_1: + symbol: gKartLuigi236TlutWheel1 + type: texture + offset: 0x9427C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_236_tlut_wheel_2: + symbol: gKartLuigi236TlutWheel2 + type: texture + offset: 0x942FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_236_tlut_wheel_3: + symbol: gKartLuigi236TlutWheel3 + type: texture + offset: 0x9437C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_237_tlut_wheel_0: + symbol: gKartLuigi237TlutWheel0 + type: texture + offset: 0x943FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_237_tlut_wheel_1: + symbol: gKartLuigi237TlutWheel1 + type: texture + offset: 0x9447C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_237_tlut_wheel_2: + symbol: gKartLuigi237TlutWheel2 + type: texture + offset: 0x944FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_237_tlut_wheel_3: + symbol: gKartLuigi237TlutWheel3 + type: texture + offset: 0x9457C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_238_tlut_wheel_0: + symbol: gKartLuigi238TlutWheel0 + type: texture + offset: 0x945FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_238_tlut_wheel_1: + symbol: gKartLuigi238TlutWheel1 + type: texture + offset: 0x9467C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_238_tlut_wheel_2: + symbol: gKartLuigi238TlutWheel2 + type: texture + offset: 0x946FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_238_tlut_wheel_3: + symbol: gKartLuigi238TlutWheel3 + type: texture + offset: 0x9477C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_239_tlut_wheel_0: + symbol: gKartLuigi239TlutWheel0 + type: texture + offset: 0x947FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_239_tlut_wheel_1: + symbol: gKartLuigi239TlutWheel1 + type: texture + offset: 0x9487C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_239_tlut_wheel_2: + symbol: gKartLuigi239TlutWheel2 + type: texture + offset: 0x948FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_239_tlut_wheel_3: + symbol: gKartLuigi239TlutWheel3 + type: texture + offset: 0x9497C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_240_tlut_wheel_0: + symbol: gKartLuigi240TlutWheel0 + type: texture + offset: 0x949FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_240_tlut_wheel_1: + symbol: gKartLuigi240TlutWheel1 + type: texture + offset: 0x94A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_240_tlut_wheel_2: + symbol: gKartLuigi240TlutWheel2 + type: texture + offset: 0x94AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_240_tlut_wheel_3: + symbol: gKartLuigi240TlutWheel3 + type: texture + offset: 0x94B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_241_tlut_wheel_0: + symbol: gKartLuigi241TlutWheel0 + type: texture + offset: 0x94BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_241_tlut_wheel_1: + symbol: gKartLuigi241TlutWheel1 + type: texture + offset: 0x94C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_241_tlut_wheel_2: + symbol: gKartLuigi241TlutWheel2 + type: texture + offset: 0x94CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_241_tlut_wheel_3: + symbol: gKartLuigi241TlutWheel3 + type: texture + offset: 0x94D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_242_tlut_wheel_0: + symbol: gKartLuigi242TlutWheel0 + type: texture + offset: 0x94DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_242_tlut_wheel_1: + symbol: gKartLuigi242TlutWheel1 + type: texture + offset: 0x94E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_242_tlut_wheel_2: + symbol: gKartLuigi242TlutWheel2 + type: texture + offset: 0x94EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_242_tlut_wheel_3: + symbol: gKartLuigi242TlutWheel3 + type: texture + offset: 0x94F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_243_tlut_wheel_0: + symbol: gKartLuigi243TlutWheel0 + type: texture + offset: 0x94FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_243_tlut_wheel_1: + symbol: gKartLuigi243TlutWheel1 + type: texture + offset: 0x9507C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_243_tlut_wheel_2: + symbol: gKartLuigi243TlutWheel2 + type: texture + offset: 0x950FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_243_tlut_wheel_3: + symbol: gKartLuigi243TlutWheel3 + type: texture + offset: 0x9517C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_244_tlut_wheel_0: + symbol: gKartLuigi244TlutWheel0 + type: texture + offset: 0x951FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_244_tlut_wheel_1: + symbol: gKartLuigi244TlutWheel1 + type: texture + offset: 0x9527C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_244_tlut_wheel_2: + symbol: gKartLuigi244TlutWheel2 + type: texture + offset: 0x952FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_244_tlut_wheel_3: + symbol: gKartLuigi244TlutWheel3 + type: texture + offset: 0x9537C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_245_tlut_wheel_0: + symbol: gKartLuigi245TlutWheel0 + type: texture + offset: 0x953FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_245_tlut_wheel_1: + symbol: gKartLuigi245TlutWheel1 + type: texture + offset: 0x9547C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_245_tlut_wheel_2: + symbol: gKartLuigi245TlutWheel2 + type: texture + offset: 0x954FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_245_tlut_wheel_3: + symbol: gKartLuigi245TlutWheel3 + type: texture + offset: 0x9557C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_246_tlut_wheel_0: + symbol: gKartLuigi246TlutWheel0 + type: texture + offset: 0x955FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_246_tlut_wheel_1: + symbol: gKartLuigi246TlutWheel1 + type: texture + offset: 0x9567C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_246_tlut_wheel_2: + symbol: gKartLuigi246TlutWheel2 + type: texture + offset: 0x956FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_246_tlut_wheel_3: + symbol: gKartLuigi246TlutWheel3 + type: texture + offset: 0x9577C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_247_tlut_wheel_0: + symbol: gKartLuigi247TlutWheel0 + type: texture + offset: 0x957FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_247_tlut_wheel_1: + symbol: gKartLuigi247TlutWheel1 + type: texture + offset: 0x9587C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_247_tlut_wheel_2: + symbol: gKartLuigi247TlutWheel2 + type: texture + offset: 0x958FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_247_tlut_wheel_3: + symbol: gKartLuigi247TlutWheel3 + type: texture + offset: 0x9597C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_248_tlut_wheel_0: + symbol: gKartLuigi248TlutWheel0 + type: texture + offset: 0x959FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_248_tlut_wheel_1: + symbol: gKartLuigi248TlutWheel1 + type: texture + offset: 0x95A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_248_tlut_wheel_2: + symbol: gKartLuigi248TlutWheel2 + type: texture + offset: 0x95AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_248_tlut_wheel_3: + symbol: gKartLuigi248TlutWheel3 + type: texture + offset: 0x95B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_249_tlut_wheel_0: + symbol: gKartLuigi249TlutWheel0 + type: texture + offset: 0x95BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_249_tlut_wheel_1: + symbol: gKartLuigi249TlutWheel1 + type: texture + offset: 0x95C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_249_tlut_wheel_2: + symbol: gKartLuigi249TlutWheel2 + type: texture + offset: 0x95CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_249_tlut_wheel_3: + symbol: gKartLuigi249TlutWheel3 + type: texture + offset: 0x95D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_250_tlut_wheel_0: + symbol: gKartLuigi250TlutWheel0 + type: texture + offset: 0x95DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_250_tlut_wheel_1: + symbol: gKartLuigi250TlutWheel1 + type: texture + offset: 0x95E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_250_tlut_wheel_2: + symbol: gKartLuigi250TlutWheel2 + type: texture + offset: 0x95EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_250_tlut_wheel_3: + symbol: gKartLuigi250TlutWheel3 + type: texture + offset: 0x95F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_251_tlut_wheel_0: + symbol: gKartLuigi251TlutWheel0 + type: texture + offset: 0x95FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_251_tlut_wheel_1: + symbol: gKartLuigi251TlutWheel1 + type: texture + offset: 0x9607C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_251_tlut_wheel_2: + symbol: gKartLuigi251TlutWheel2 + type: texture + offset: 0x960FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_251_tlut_wheel_3: + symbol: gKartLuigi251TlutWheel3 + type: texture + offset: 0x9617C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_252_tlut_wheel_0: + symbol: gKartLuigi252TlutWheel0 + type: texture + offset: 0x961FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_252_tlut_wheel_1: + symbol: gKartLuigi252TlutWheel1 + type: texture + offset: 0x9627C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_252_tlut_wheel_2: + symbol: gKartLuigi252TlutWheel2 + type: texture + offset: 0x962FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_252_tlut_wheel_3: + symbol: gKartLuigi252TlutWheel3 + type: texture + offset: 0x9637C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_253_tlut_wheel_0: + symbol: gKartLuigi253TlutWheel0 + type: texture + offset: 0x963FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_253_tlut_wheel_1: + symbol: gKartLuigi253TlutWheel1 + type: texture + offset: 0x9647C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_253_tlut_wheel_2: + symbol: gKartLuigi253TlutWheel2 + type: texture + offset: 0x964FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_253_tlut_wheel_3: + symbol: gKartLuigi253TlutWheel3 + type: texture + offset: 0x9657C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_254_tlut_wheel_0: + symbol: gKartLuigi254TlutWheel0 + type: texture + offset: 0x965FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_254_tlut_wheel_1: + symbol: gKartLuigi254TlutWheel1 + type: texture + offset: 0x9667C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_254_tlut_wheel_2: + symbol: gKartLuigi254TlutWheel2 + type: texture + offset: 0x966FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_254_tlut_wheel_3: + symbol: gKartLuigi254TlutWheel3 + type: texture + offset: 0x9677C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_255_tlut_wheel_0: + symbol: gKartLuigi255TlutWheel0 + type: texture + offset: 0x967FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_255_tlut_wheel_1: + symbol: gKartLuigi255TlutWheel1 + type: texture + offset: 0x9687C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_255_tlut_wheel_2: + symbol: gKartLuigi255TlutWheel2 + type: texture + offset: 0x968FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_255_tlut_wheel_3: + symbol: gKartLuigi255TlutWheel3 + type: texture + offset: 0x9697C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_256_tlut_wheel_0: + symbol: gKartLuigi256TlutWheel0 + type: texture + offset: 0x969FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_256_tlut_wheel_1: + symbol: gKartLuigi256TlutWheel1 + type: texture + offset: 0x96A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_256_tlut_wheel_2: + symbol: gKartLuigi256TlutWheel2 + type: texture + offset: 0x96AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_256_tlut_wheel_3: + symbol: gKartLuigi256TlutWheel3 + type: texture + offset: 0x96B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_257_tlut_wheel_0: + symbol: gKartLuigi257TlutWheel0 + type: texture + offset: 0x96BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_257_tlut_wheel_1: + symbol: gKartLuigi257TlutWheel1 + type: texture + offset: 0x96C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_257_tlut_wheel_2: + symbol: gKartLuigi257TlutWheel2 + type: texture + offset: 0x96CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_257_tlut_wheel_3: + symbol: gKartLuigi257TlutWheel3 + type: texture + offset: 0x96D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_258_tlut_wheel_0: + symbol: gKartLuigi258TlutWheel0 + type: texture + offset: 0x96DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_258_tlut_wheel_1: + symbol: gKartLuigi258TlutWheel1 + type: texture + offset: 0x96E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_258_tlut_wheel_2: + symbol: gKartLuigi258TlutWheel2 + type: texture + offset: 0x96EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_258_tlut_wheel_3: + symbol: gKartLuigi258TlutWheel3 + type: texture + offset: 0x96F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_259_tlut_wheel_0: + symbol: gKartLuigi259TlutWheel0 + type: texture + offset: 0x96FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_259_tlut_wheel_1: + symbol: gKartLuigi259TlutWheel1 + type: texture + offset: 0x9707C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_259_tlut_wheel_2: + symbol: gKartLuigi259TlutWheel2 + type: texture + offset: 0x970FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_259_tlut_wheel_3: + symbol: gKartLuigi259TlutWheel3 + type: texture + offset: 0x9717C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_260_tlut_wheel_0: + symbol: gKartLuigi260TlutWheel0 + type: texture + offset: 0x971FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_260_tlut_wheel_1: + symbol: gKartLuigi260TlutWheel1 + type: texture + offset: 0x9727C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_260_tlut_wheel_2: + symbol: gKartLuigi260TlutWheel2 + type: texture + offset: 0x972FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_260_tlut_wheel_3: + symbol: gKartLuigi260TlutWheel3 + type: texture + offset: 0x9737C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_261_tlut_wheel_0: + symbol: gKartLuigi261TlutWheel0 + type: texture + offset: 0x973FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_261_tlut_wheel_1: + symbol: gKartLuigi261TlutWheel1 + type: texture + offset: 0x9747C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_261_tlut_wheel_2: + symbol: gKartLuigi261TlutWheel2 + type: texture + offset: 0x974FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_261_tlut_wheel_3: + symbol: gKartLuigi261TlutWheel3 + type: texture + offset: 0x9757C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_262_tlut_wheel_0: + symbol: gKartLuigi262TlutWheel0 + type: texture + offset: 0x975FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_262_tlut_wheel_1: + symbol: gKartLuigi262TlutWheel1 + type: texture + offset: 0x9767C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_262_tlut_wheel_2: + symbol: gKartLuigi262TlutWheel2 + type: texture + offset: 0x976FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_262_tlut_wheel_3: + symbol: gKartLuigi262TlutWheel3 + type: texture + offset: 0x9777C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_263_tlut_wheel_0: + symbol: gKartLuigi263TlutWheel0 + type: texture + offset: 0x977FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_263_tlut_wheel_1: + symbol: gKartLuigi263TlutWheel1 + type: texture + offset: 0x9787C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_263_tlut_wheel_2: + symbol: gKartLuigi263TlutWheel2 + type: texture + offset: 0x978FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_263_tlut_wheel_3: + symbol: gKartLuigi263TlutWheel3 + type: texture + offset: 0x9797C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_264_tlut_wheel_0: + symbol: gKartLuigi264TlutWheel0 + type: texture + offset: 0x979FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_264_tlut_wheel_1: + symbol: gKartLuigi264TlutWheel1 + type: texture + offset: 0x97A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_264_tlut_wheel_2: + symbol: gKartLuigi264TlutWheel2 + type: texture + offset: 0x97AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_264_tlut_wheel_3: + symbol: gKartLuigi264TlutWheel3 + type: texture + offset: 0x97B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_265_tlut_wheel_0: + symbol: gKartLuigi265TlutWheel0 + type: texture + offset: 0x97BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_265_tlut_wheel_1: + symbol: gKartLuigi265TlutWheel1 + type: texture + offset: 0x97C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_265_tlut_wheel_2: + symbol: gKartLuigi265TlutWheel2 + type: texture + offset: 0x97CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_265_tlut_wheel_3: + symbol: gKartLuigi265TlutWheel3 + type: texture + offset: 0x97D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_266_tlut_wheel_0: + symbol: gKartLuigi266TlutWheel0 + type: texture + offset: 0x97DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_266_tlut_wheel_1: + symbol: gKartLuigi266TlutWheel1 + type: texture + offset: 0x97E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_266_tlut_wheel_2: + symbol: gKartLuigi266TlutWheel2 + type: texture + offset: 0x97EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_266_tlut_wheel_3: + symbol: gKartLuigi266TlutWheel3 + type: texture + offset: 0x97F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_267_tlut_wheel_0: + symbol: gKartLuigi267TlutWheel0 + type: texture + offset: 0x97FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_267_tlut_wheel_1: + symbol: gKartLuigi267TlutWheel1 + type: texture + offset: 0x9807C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_267_tlut_wheel_2: + symbol: gKartLuigi267TlutWheel2 + type: texture + offset: 0x980FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_267_tlut_wheel_3: + symbol: gKartLuigi267TlutWheel3 + type: texture + offset: 0x9817C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_268_tlut_wheel_0: + symbol: gKartLuigi268TlutWheel0 + type: texture + offset: 0x981FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_268_tlut_wheel_1: + symbol: gKartLuigi268TlutWheel1 + type: texture + offset: 0x9827C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_268_tlut_wheel_2: + symbol: gKartLuigi268TlutWheel2 + type: texture + offset: 0x982FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_268_tlut_wheel_3: + symbol: gKartLuigi268TlutWheel3 + type: texture + offset: 0x9837C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_269_tlut_wheel_0: + symbol: gKartLuigi269TlutWheel0 + type: texture + offset: 0x983FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_269_tlut_wheel_1: + symbol: gKartLuigi269TlutWheel1 + type: texture + offset: 0x9847C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_269_tlut_wheel_2: + symbol: gKartLuigi269TlutWheel2 + type: texture + offset: 0x984FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_269_tlut_wheel_3: + symbol: gKartLuigi269TlutWheel3 + type: texture + offset: 0x9857C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_270_tlut_wheel_0: + symbol: gKartLuigi270TlutWheel0 + type: texture + offset: 0x985FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_270_tlut_wheel_1: + symbol: gKartLuigi270TlutWheel1 + type: texture + offset: 0x9867C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_270_tlut_wheel_2: + symbol: gKartLuigi270TlutWheel2 + type: texture + offset: 0x986FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_270_tlut_wheel_3: + symbol: gKartLuigi270TlutWheel3 + type: texture + offset: 0x9877C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_271_tlut_wheel_0: + symbol: gKartLuigi271TlutWheel0 + type: texture + offset: 0x987FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_271_tlut_wheel_1: + symbol: gKartLuigi271TlutWheel1 + type: texture + offset: 0x9887C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_271_tlut_wheel_2: + symbol: gKartLuigi271TlutWheel2 + type: texture + offset: 0x988FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_271_tlut_wheel_3: + symbol: gKartLuigi271TlutWheel3 + type: texture + offset: 0x9897C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_272_tlut_wheel_0: + symbol: gKartLuigi272TlutWheel0 + type: texture + offset: 0x989FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_272_tlut_wheel_1: + symbol: gKartLuigi272TlutWheel1 + type: texture + offset: 0x98A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_272_tlut_wheel_2: + symbol: gKartLuigi272TlutWheel2 + type: texture + offset: 0x98AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_272_tlut_wheel_3: + symbol: gKartLuigi272TlutWheel3 + type: texture + offset: 0x98B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_273_tlut_wheel_0: + symbol: gKartLuigi273TlutWheel0 + type: texture + offset: 0x98BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_273_tlut_wheel_1: + symbol: gKartLuigi273TlutWheel1 + type: texture + offset: 0x98C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_273_tlut_wheel_2: + symbol: gKartLuigi273TlutWheel2 + type: texture + offset: 0x98CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_273_tlut_wheel_3: + symbol: gKartLuigi273TlutWheel3 + type: texture + offset: 0x98D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_274_tlut_wheel_0: + symbol: gKartLuigi274TlutWheel0 + type: texture + offset: 0x98DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_274_tlut_wheel_1: + symbol: gKartLuigi274TlutWheel1 + type: texture + offset: 0x98E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_274_tlut_wheel_2: + symbol: gKartLuigi274TlutWheel2 + type: texture + offset: 0x98EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_274_tlut_wheel_3: + symbol: gKartLuigi274TlutWheel3 + type: texture + offset: 0x98F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_275_tlut_wheel_0: + symbol: gKartLuigi275TlutWheel0 + type: texture + offset: 0x98FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_275_tlut_wheel_1: + symbol: gKartLuigi275TlutWheel1 + type: texture + offset: 0x9907C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_275_tlut_wheel_2: + symbol: gKartLuigi275TlutWheel2 + type: texture + offset: 0x990FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_275_tlut_wheel_3: + symbol: gKartLuigi275TlutWheel3 + type: texture + offset: 0x9917C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_276_tlut_wheel_0: + symbol: gKartLuigi276TlutWheel0 + type: texture + offset: 0x991FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_276_tlut_wheel_1: + symbol: gKartLuigi276TlutWheel1 + type: texture + offset: 0x9927C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_276_tlut_wheel_2: + symbol: gKartLuigi276TlutWheel2 + type: texture + offset: 0x992FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_276_tlut_wheel_3: + symbol: gKartLuigi276TlutWheel3 + type: texture + offset: 0x9937C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_277_tlut_wheel_0: + symbol: gKartLuigi277TlutWheel0 + type: texture + offset: 0x993FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_277_tlut_wheel_1: + symbol: gKartLuigi277TlutWheel1 + type: texture + offset: 0x9947C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_277_tlut_wheel_2: + symbol: gKartLuigi277TlutWheel2 + type: texture + offset: 0x994FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_277_tlut_wheel_3: + symbol: gKartLuigi277TlutWheel3 + type: texture + offset: 0x9957C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_278_tlut_wheel_0: + symbol: gKartLuigi278TlutWheel0 + type: texture + offset: 0x995FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_278_tlut_wheel_1: + symbol: gKartLuigi278TlutWheel1 + type: texture + offset: 0x9967C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_278_tlut_wheel_2: + symbol: gKartLuigi278TlutWheel2 + type: texture + offset: 0x996FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_278_tlut_wheel_3: + symbol: gKartLuigi278TlutWheel3 + type: texture + offset: 0x9977C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_279_tlut_wheel_0: + symbol: gKartLuigi279TlutWheel0 + type: texture + offset: 0x997FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_279_tlut_wheel_1: + symbol: gKartLuigi279TlutWheel1 + type: texture + offset: 0x9987C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_279_tlut_wheel_2: + symbol: gKartLuigi279TlutWheel2 + type: texture + offset: 0x998FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_279_tlut_wheel_3: + symbol: gKartLuigi279TlutWheel3 + type: texture + offset: 0x9997C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_280_tlut_wheel_0: + symbol: gKartLuigi280TlutWheel0 + type: texture + offset: 0x999FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_280_tlut_wheel_1: + symbol: gKartLuigi280TlutWheel1 + type: texture + offset: 0x99A7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_280_tlut_wheel_2: + symbol: gKartLuigi280TlutWheel2 + type: texture + offset: 0x99AFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_280_tlut_wheel_3: + symbol: gKartLuigi280TlutWheel3 + type: texture + offset: 0x99B7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_281_tlut_wheel_0: + symbol: gKartLuigi281TlutWheel0 + type: texture + offset: 0x99BFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_281_tlut_wheel_1: + symbol: gKartLuigi281TlutWheel1 + type: texture + offset: 0x99C7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_281_tlut_wheel_2: + symbol: gKartLuigi281TlutWheel2 + type: texture + offset: 0x99CFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_281_tlut_wheel_3: + symbol: gKartLuigi281TlutWheel3 + type: texture + offset: 0x99D7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_282_tlut_wheel_0: + symbol: gKartLuigi282TlutWheel0 + type: texture + offset: 0x99DFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_282_tlut_wheel_1: + symbol: gKartLuigi282TlutWheel1 + type: texture + offset: 0x99E7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_282_tlut_wheel_2: + symbol: gKartLuigi282TlutWheel2 + type: texture + offset: 0x99EFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_282_tlut_wheel_3: + symbol: gKartLuigi282TlutWheel3 + type: texture + offset: 0x99F7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_283_tlut_wheel_0: + symbol: gKartLuigi283TlutWheel0 + type: texture + offset: 0x99FFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_283_tlut_wheel_1: + symbol: gKartLuigi283TlutWheel1 + type: texture + offset: 0x9A07C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_283_tlut_wheel_2: + symbol: gKartLuigi283TlutWheel2 + type: texture + offset: 0x9A0FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_283_tlut_wheel_3: + symbol: gKartLuigi283TlutWheel3 + type: texture + offset: 0x9A17C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_284_tlut_wheel_0: + symbol: gKartLuigi284TlutWheel0 + type: texture + offset: 0x9A1FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_284_tlut_wheel_1: + symbol: gKartLuigi284TlutWheel1 + type: texture + offset: 0x9A27C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_284_tlut_wheel_2: + symbol: gKartLuigi284TlutWheel2 + type: texture + offset: 0x9A2FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_284_tlut_wheel_3: + symbol: gKartLuigi284TlutWheel3 + type: texture + offset: 0x9A37C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_285_tlut_wheel_0: + symbol: gKartLuigi285TlutWheel0 + type: texture + offset: 0x9A3FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_285_tlut_wheel_1: + symbol: gKartLuigi285TlutWheel1 + type: texture + offset: 0x9A47C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_285_tlut_wheel_2: + symbol: gKartLuigi285TlutWheel2 + type: texture + offset: 0x9A4FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_285_tlut_wheel_3: + symbol: gKartLuigi285TlutWheel3 + type: texture + offset: 0x9A57C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_286_tlut_wheel_0: + symbol: gKartLuigi286TlutWheel0 + type: texture + offset: 0x9A5FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_286_tlut_wheel_1: + symbol: gKartLuigi286TlutWheel1 + type: texture + offset: 0x9A67C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_286_tlut_wheel_2: + symbol: gKartLuigi286TlutWheel2 + type: texture + offset: 0x9A6FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_286_tlut_wheel_3: + symbol: gKartLuigi286TlutWheel3 + type: texture + offset: 0x9A77C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_287_tlut_wheel_0: + symbol: gKartLuigi287TlutWheel0 + type: texture + offset: 0x9A7FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_287_tlut_wheel_1: + symbol: gKartLuigi287TlutWheel1 + type: texture + offset: 0x9A87C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_287_tlut_wheel_2: + symbol: gKartLuigi287TlutWheel2 + type: texture + offset: 0x9A8FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_287_tlut_wheel_3: + symbol: gKartLuigi287TlutWheel3 + type: texture + offset: 0x9A97C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_288_tlut_wheel_0: + symbol: gKartLuigi288TlutWheel0 + type: texture + offset: 0x9A9FC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_288_tlut_wheel_1: + symbol: gKartLuigi288TlutWheel1 + type: texture + offset: 0x9AA7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_288_tlut_wheel_2: + symbol: gKartLuigi288TlutWheel2 + type: texture + offset: 0x9AAFC + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_288_tlut_wheel_3: + symbol: gKartLuigi288TlutWheel3 + type: texture + offset: 0x9AB7C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +luigi_kart_palette: + symbol: gKartLuigiPalette + type: texture + offset: 0x9ABFC + ctype: u16 + width: 16 + height: 12 + format: RGBA16 diff --git a/yamls/us/textures/karts/mario_kart.yml b/yamls/us/textures/karts/mario_kart.yml new file mode 100644 index 000000000..ccd378627 --- /dev/null +++ b/yamls/us/textures/karts/mario_kart.yml @@ -0,0 +1,22340 @@ +:config: + segments: + - [0x0F, 0x1E01F0] + no_compression: true + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + tables: + mario_kart_wheels: + range: [0x6E4B0, 0x92630] + mode: APPEND +mario_kart_frame000_wheel0: + symbol: gKartMario000Wheel0 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame000_wheel1: + symbol: gKartMario000Wheel1 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_1 +mario_kart_frame000_wheel2: + symbol: gKartMario000Wheel2 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_2 +mario_kart_frame000_wheel3: + symbol: gKartMario000Wheel3 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_3 +mario_kart_frame001_wheel0: + symbol: gKartMario001Wheel0 + type: texture + offset: 0x490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_001_tlut_wheel_0 +mario_kart_frame001_wheel1: + symbol: gKartMario001Wheel1 + type: texture + offset: 0x490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_001_tlut_wheel_1 +mario_kart_frame001_wheel2: + symbol: gKartMario001Wheel2 + type: texture + offset: 0x490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_001_tlut_wheel_2 +mario_kart_frame001_wheel3: + symbol: gKartMario001Wheel3 + type: texture + offset: 0x490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_001_tlut_wheel_3 +mario_kart_frame002_wheel0: + symbol: gKartMario002Wheel0 + type: texture + offset: 0x928 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_002_tlut_wheel_0 +mario_kart_frame002_wheel1: + symbol: gKartMario002Wheel1 + type: texture + offset: 0x928 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_002_tlut_wheel_1 +mario_kart_frame002_wheel2: + symbol: gKartMario002Wheel2 + type: texture + offset: 0x928 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_002_tlut_wheel_2 +mario_kart_frame002_wheel3: + symbol: gKartMario002Wheel3 + type: texture + offset: 0x928 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_002_tlut_wheel_3 +mario_kart_frame003_wheel0: + symbol: gKartMario003Wheel0 + type: texture + offset: 0xDC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_003_tlut_wheel_0 +mario_kart_frame003_wheel1: + symbol: gKartMario003Wheel1 + type: texture + offset: 0xDC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_003_tlut_wheel_1 +mario_kart_frame003_wheel2: + symbol: gKartMario003Wheel2 + type: texture + offset: 0xDC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_003_tlut_wheel_2 +mario_kart_frame003_wheel3: + symbol: gKartMario003Wheel3 + type: texture + offset: 0xDC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_003_tlut_wheel_3 +mario_kart_frame004_wheel0: + symbol: gKartMario004Wheel0 + type: texture + offset: 0x1270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_004_tlut_wheel_0 +mario_kart_frame004_wheel1: + symbol: gKartMario004Wheel1 + type: texture + offset: 0x1270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_004_tlut_wheel_1 +mario_kart_frame004_wheel2: + symbol: gKartMario004Wheel2 + type: texture + offset: 0x1270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_004_tlut_wheel_2 +mario_kart_frame004_wheel3: + symbol: gKartMario004Wheel3 + type: texture + offset: 0x1270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_004_tlut_wheel_3 +mario_kart_frame005_wheel0: + symbol: gKartMario005Wheel0 + type: texture + offset: 0x1728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_005_tlut_wheel_0 +mario_kart_frame005_wheel1: + symbol: gKartMario005Wheel1 + type: texture + offset: 0x1728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_005_tlut_wheel_1 +mario_kart_frame005_wheel2: + symbol: gKartMario005Wheel2 + type: texture + offset: 0x1728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_005_tlut_wheel_2 +mario_kart_frame005_wheel3: + symbol: gKartMario005Wheel3 + type: texture + offset: 0x1728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_005_tlut_wheel_3 +mario_kart_frame006_wheel0: + symbol: gKartMario006Wheel0 + type: texture + offset: 0x1BE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_006_tlut_wheel_0 +mario_kart_frame006_wheel1: + symbol: gKartMario006Wheel1 + type: texture + offset: 0x1BE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_006_tlut_wheel_1 +mario_kart_frame006_wheel2: + symbol: gKartMario006Wheel2 + type: texture + offset: 0x1BE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_006_tlut_wheel_2 +mario_kart_frame006_wheel3: + symbol: gKartMario006Wheel3 + type: texture + offset: 0x1BE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_006_tlut_wheel_3 +mario_kart_frame007_wheel0: + symbol: gKartMario007Wheel0 + type: texture + offset: 0x20C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_007_tlut_wheel_0 +mario_kart_frame007_wheel1: + symbol: gKartMario007Wheel1 + type: texture + offset: 0x20C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_007_tlut_wheel_1 +mario_kart_frame007_wheel2: + symbol: gKartMario007Wheel2 + type: texture + offset: 0x20C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_007_tlut_wheel_2 +mario_kart_frame007_wheel3: + symbol: gKartMario007Wheel3 + type: texture + offset: 0x20C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_007_tlut_wheel_3 +mario_kart_frame008_wheel0: + symbol: gKartMario008Wheel0 + type: texture + offset: 0x25B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_008_tlut_wheel_0 +mario_kart_frame008_wheel1: + symbol: gKartMario008Wheel1 + type: texture + offset: 0x25B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_008_tlut_wheel_1 +mario_kart_frame008_wheel2: + symbol: gKartMario008Wheel2 + type: texture + offset: 0x25B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_008_tlut_wheel_2 +mario_kart_frame008_wheel3: + symbol: gKartMario008Wheel3 + type: texture + offset: 0x25B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_008_tlut_wheel_3 +mario_kart_frame009_wheel0: + symbol: gKartMario009Wheel0 + type: texture + offset: 0x2AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_009_tlut_wheel_0 +mario_kart_frame009_wheel1: + symbol: gKartMario009Wheel1 + type: texture + offset: 0x2AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_009_tlut_wheel_1 +mario_kart_frame009_wheel2: + symbol: gKartMario009Wheel2 + type: texture + offset: 0x2AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_009_tlut_wheel_2 +mario_kart_frame009_wheel3: + symbol: gKartMario009Wheel3 + type: texture + offset: 0x2AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_009_tlut_wheel_3 +mario_kart_frame010_wheel0: + symbol: gKartMario010Wheel0 + type: texture + offset: 0x300C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_010_tlut_wheel_0 +mario_kart_frame010_wheel1: + symbol: gKartMario010Wheel1 + type: texture + offset: 0x300C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_010_tlut_wheel_1 +mario_kart_frame010_wheel2: + symbol: gKartMario010Wheel2 + type: texture + offset: 0x300C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_010_tlut_wheel_2 +mario_kart_frame010_wheel3: + symbol: gKartMario010Wheel3 + type: texture + offset: 0x300C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_010_tlut_wheel_3 +mario_kart_frame011_wheel0: + symbol: gKartMario011Wheel0 + type: texture + offset: 0x353C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_011_tlut_wheel_0 +mario_kart_frame011_wheel1: + symbol: gKartMario011Wheel1 + type: texture + offset: 0x353C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_011_tlut_wheel_1 +mario_kart_frame011_wheel2: + symbol: gKartMario011Wheel2 + type: texture + offset: 0x353C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_011_tlut_wheel_2 +mario_kart_frame011_wheel3: + symbol: gKartMario011Wheel3 + type: texture + offset: 0x353C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_011_tlut_wheel_3 +mario_kart_frame012_wheel0: + symbol: gKartMario012Wheel0 + type: texture + offset: 0x3A84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_012_tlut_wheel_0 +mario_kart_frame012_wheel1: + symbol: gKartMario012Wheel1 + type: texture + offset: 0x3A84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_012_tlut_wheel_1 +mario_kart_frame012_wheel2: + symbol: gKartMario012Wheel2 + type: texture + offset: 0x3A84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_012_tlut_wheel_2 +mario_kart_frame012_wheel3: + symbol: gKartMario012Wheel3 + type: texture + offset: 0x3A84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_012_tlut_wheel_3 +mario_kart_frame013_wheel0: + symbol: gKartMario013Wheel0 + type: texture + offset: 0x3FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_013_tlut_wheel_0 +mario_kart_frame013_wheel1: + symbol: gKartMario013Wheel1 + type: texture + offset: 0x3FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_013_tlut_wheel_1 +mario_kart_frame013_wheel2: + symbol: gKartMario013Wheel2 + type: texture + offset: 0x3FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_013_tlut_wheel_2 +mario_kart_frame013_wheel3: + symbol: gKartMario013Wheel3 + type: texture + offset: 0x3FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_013_tlut_wheel_3 +mario_kart_frame014_wheel0: + symbol: gKartMario014Wheel0 + type: texture + offset: 0x453C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_014_tlut_wheel_0 +mario_kart_frame014_wheel1: + symbol: gKartMario014Wheel1 + type: texture + offset: 0x453C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_014_tlut_wheel_1 +mario_kart_frame014_wheel2: + symbol: gKartMario014Wheel2 + type: texture + offset: 0x453C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_014_tlut_wheel_2 +mario_kart_frame014_wheel3: + symbol: gKartMario014Wheel3 + type: texture + offset: 0x453C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_014_tlut_wheel_3 +mario_kart_frame015_wheel0: + symbol: gKartMario015Wheel0 + type: texture + offset: 0x4AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_015_tlut_wheel_0 +mario_kart_frame015_wheel1: + symbol: gKartMario015Wheel1 + type: texture + offset: 0x4AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_015_tlut_wheel_1 +mario_kart_frame015_wheel2: + symbol: gKartMario015Wheel2 + type: texture + offset: 0x4AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_015_tlut_wheel_2 +mario_kart_frame015_wheel3: + symbol: gKartMario015Wheel3 + type: texture + offset: 0x4AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_015_tlut_wheel_3 +mario_kart_frame016_wheel0: + symbol: gKartMario016Wheel0 + type: texture + offset: 0x5038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_016_tlut_wheel_0 +mario_kart_frame016_wheel1: + symbol: gKartMario016Wheel1 + type: texture + offset: 0x5038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_016_tlut_wheel_1 +mario_kart_frame016_wheel2: + symbol: gKartMario016Wheel2 + type: texture + offset: 0x5038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_016_tlut_wheel_2 +mario_kart_frame016_wheel3: + symbol: gKartMario016Wheel3 + type: texture + offset: 0x5038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_016_tlut_wheel_3 +mario_kart_frame017_wheel0: + symbol: gKartMario017Wheel0 + type: texture + offset: 0x55B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_017_tlut_wheel_0 +mario_kart_frame017_wheel1: + symbol: gKartMario017Wheel1 + type: texture + offset: 0x55B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_017_tlut_wheel_1 +mario_kart_frame017_wheel2: + symbol: gKartMario017Wheel2 + type: texture + offset: 0x55B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_017_tlut_wheel_2 +mario_kart_frame017_wheel3: + symbol: gKartMario017Wheel3 + type: texture + offset: 0x55B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_017_tlut_wheel_3 +mario_kart_frame018_wheel0: + symbol: gKartMario018Wheel0 + type: texture + offset: 0x5B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_018_tlut_wheel_0 +mario_kart_frame018_wheel1: + symbol: gKartMario018Wheel1 + type: texture + offset: 0x5B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_018_tlut_wheel_1 +mario_kart_frame018_wheel2: + symbol: gKartMario018Wheel2 + type: texture + offset: 0x5B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_018_tlut_wheel_2 +mario_kart_frame018_wheel3: + symbol: gKartMario018Wheel3 + type: texture + offset: 0x5B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_018_tlut_wheel_3 +mario_kart_frame019_wheel0: + symbol: gKartMario019Wheel0 + type: texture + offset: 0x60C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_019_tlut_wheel_0 +mario_kart_frame019_wheel1: + symbol: gKartMario019Wheel1 + type: texture + offset: 0x60C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_019_tlut_wheel_1 +mario_kart_frame019_wheel2: + symbol: gKartMario019Wheel2 + type: texture + offset: 0x60C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_019_tlut_wheel_2 +mario_kart_frame019_wheel3: + symbol: gKartMario019Wheel3 + type: texture + offset: 0x60C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_019_tlut_wheel_3 +mario_kart_frame020_wheel0: + symbol: gKartMario020Wheel0 + type: texture + offset: 0x6668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_020_tlut_wheel_0 +mario_kart_frame020_wheel1: + symbol: gKartMario020Wheel1 + type: texture + offset: 0x6668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_020_tlut_wheel_1 +mario_kart_frame020_wheel2: + symbol: gKartMario020Wheel2 + type: texture + offset: 0x6668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_020_tlut_wheel_2 +mario_kart_frame020_wheel3: + symbol: gKartMario020Wheel3 + type: texture + offset: 0x6668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_020_tlut_wheel_3 +mario_kart_frame021_wheel0: + symbol: gKartMario021Wheel0 + type: texture + offset: 0x6C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_021_tlut_wheel_0 +mario_kart_frame021_wheel1: + symbol: gKartMario021Wheel1 + type: texture + offset: 0x6C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_021_tlut_wheel_1 +mario_kart_frame021_wheel2: + symbol: gKartMario021Wheel2 + type: texture + offset: 0x6C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_021_tlut_wheel_2 +mario_kart_frame021_wheel3: + symbol: gKartMario021Wheel3 + type: texture + offset: 0x6C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_021_tlut_wheel_3 +mario_kart_frame022_wheel0: + symbol: gKartMario022Wheel0 + type: texture + offset: 0x7098 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_022_tlut_wheel_0 +mario_kart_frame022_wheel1: + symbol: gKartMario022Wheel1 + type: texture + offset: 0x7098 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_022_tlut_wheel_1 +mario_kart_frame022_wheel2: + symbol: gKartMario022Wheel2 + type: texture + offset: 0x7098 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_022_tlut_wheel_2 +mario_kart_frame022_wheel3: + symbol: gKartMario022Wheel3 + type: texture + offset: 0x7098 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_022_tlut_wheel_3 +mario_kart_frame023_wheel0: + symbol: gKartMario023Wheel0 + type: texture + offset: 0x7550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_023_tlut_wheel_0 +mario_kart_frame023_wheel1: + symbol: gKartMario023Wheel1 + type: texture + offset: 0x7550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_023_tlut_wheel_1 +mario_kart_frame023_wheel2: + symbol: gKartMario023Wheel2 + type: texture + offset: 0x7550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_023_tlut_wheel_2 +mario_kart_frame023_wheel3: + symbol: gKartMario023Wheel3 + type: texture + offset: 0x7550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_023_tlut_wheel_3 +mario_kart_frame024_wheel0: + symbol: gKartMario024Wheel0 + type: texture + offset: 0x79E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_024_tlut_wheel_0 +mario_kart_frame024_wheel1: + symbol: gKartMario024Wheel1 + type: texture + offset: 0x79E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_024_tlut_wheel_1 +mario_kart_frame024_wheel2: + symbol: gKartMario024Wheel2 + type: texture + offset: 0x79E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_024_tlut_wheel_2 +mario_kart_frame024_wheel3: + symbol: gKartMario024Wheel3 + type: texture + offset: 0x79E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_024_tlut_wheel_3 +mario_kart_frame025_wheel0: + symbol: gKartMario025Wheel0 + type: texture + offset: 0x7EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_025_tlut_wheel_0 +mario_kart_frame025_wheel1: + symbol: gKartMario025Wheel1 + type: texture + offset: 0x7EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_025_tlut_wheel_1 +mario_kart_frame025_wheel2: + symbol: gKartMario025Wheel2 + type: texture + offset: 0x7EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_025_tlut_wheel_2 +mario_kart_frame025_wheel3: + symbol: gKartMario025Wheel3 + type: texture + offset: 0x7EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_025_tlut_wheel_3 +mario_kart_frame026_wheel0: + symbol: gKartMario026Wheel0 + type: texture + offset: 0x838C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_026_tlut_wheel_0 +mario_kart_frame026_wheel1: + symbol: gKartMario026Wheel1 + type: texture + offset: 0x838C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_026_tlut_wheel_1 +mario_kart_frame026_wheel2: + symbol: gKartMario026Wheel2 + type: texture + offset: 0x838C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_026_tlut_wheel_2 +mario_kart_frame026_wheel3: + symbol: gKartMario026Wheel3 + type: texture + offset: 0x838C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_026_tlut_wheel_3 +mario_kart_frame027_wheel0: + symbol: gKartMario027Wheel0 + type: texture + offset: 0x8860 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_027_tlut_wheel_0 +mario_kart_frame027_wheel1: + symbol: gKartMario027Wheel1 + type: texture + offset: 0x8860 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_027_tlut_wheel_1 +mario_kart_frame027_wheel2: + symbol: gKartMario027Wheel2 + type: texture + offset: 0x8860 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_027_tlut_wheel_2 +mario_kart_frame027_wheel3: + symbol: gKartMario027Wheel3 + type: texture + offset: 0x8860 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_027_tlut_wheel_3 +mario_kart_frame028_wheel0: + symbol: gKartMario028Wheel0 + type: texture + offset: 0x8D60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_028_tlut_wheel_0 +mario_kart_frame028_wheel1: + symbol: gKartMario028Wheel1 + type: texture + offset: 0x8D60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_028_tlut_wheel_1 +mario_kart_frame028_wheel2: + symbol: gKartMario028Wheel2 + type: texture + offset: 0x8D60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_028_tlut_wheel_2 +mario_kart_frame028_wheel3: + symbol: gKartMario028Wheel3 + type: texture + offset: 0x8D60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_028_tlut_wheel_3 +mario_kart_frame029_wheel0: + symbol: gKartMario029Wheel0 + type: texture + offset: 0x9268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_029_tlut_wheel_0 +mario_kart_frame029_wheel1: + symbol: gKartMario029Wheel1 + type: texture + offset: 0x9268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_029_tlut_wheel_1 +mario_kart_frame029_wheel2: + symbol: gKartMario029Wheel2 + type: texture + offset: 0x9268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_029_tlut_wheel_2 +mario_kart_frame029_wheel3: + symbol: gKartMario029Wheel3 + type: texture + offset: 0x9268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_029_tlut_wheel_3 +mario_kart_frame030_wheel0: + symbol: gKartMario030Wheel0 + type: texture + offset: 0x9798 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_030_tlut_wheel_0 +mario_kart_frame030_wheel1: + symbol: gKartMario030Wheel1 + type: texture + offset: 0x9798 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_030_tlut_wheel_1 +mario_kart_frame030_wheel2: + symbol: gKartMario030Wheel2 + type: texture + offset: 0x9798 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_030_tlut_wheel_2 +mario_kart_frame030_wheel3: + symbol: gKartMario030Wheel3 + type: texture + offset: 0x9798 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_030_tlut_wheel_3 +mario_kart_frame031_wheel0: + symbol: gKartMario031Wheel0 + type: texture + offset: 0x9CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_031_tlut_wheel_0 +mario_kart_frame031_wheel1: + symbol: gKartMario031Wheel1 + type: texture + offset: 0x9CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_031_tlut_wheel_1 +mario_kart_frame031_wheel2: + symbol: gKartMario031Wheel2 + type: texture + offset: 0x9CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_031_tlut_wheel_2 +mario_kart_frame031_wheel3: + symbol: gKartMario031Wheel3 + type: texture + offset: 0x9CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_031_tlut_wheel_3 +mario_kart_frame032_wheel0: + symbol: gKartMario032Wheel0 + type: texture + offset: 0xA230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_032_tlut_wheel_0 +mario_kart_frame032_wheel1: + symbol: gKartMario032Wheel1 + type: texture + offset: 0xA230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_032_tlut_wheel_1 +mario_kart_frame032_wheel2: + symbol: gKartMario032Wheel2 + type: texture + offset: 0xA230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_032_tlut_wheel_2 +mario_kart_frame032_wheel3: + symbol: gKartMario032Wheel3 + type: texture + offset: 0xA230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_032_tlut_wheel_3 +mario_kart_frame033_wheel0: + symbol: gKartMario033Wheel0 + type: texture + offset: 0xA794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_033_tlut_wheel_0 +mario_kart_frame033_wheel1: + symbol: gKartMario033Wheel1 + type: texture + offset: 0xA794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_033_tlut_wheel_1 +mario_kart_frame033_wheel2: + symbol: gKartMario033Wheel2 + type: texture + offset: 0xA794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_033_tlut_wheel_2 +mario_kart_frame033_wheel3: + symbol: gKartMario033Wheel3 + type: texture + offset: 0xA794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_033_tlut_wheel_3 +mario_kart_frame034_wheel0: + symbol: gKartMario034Wheel0 + type: texture + offset: 0xACE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_034_tlut_wheel_0 +mario_kart_frame034_wheel1: + symbol: gKartMario034Wheel1 + type: texture + offset: 0xACE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_034_tlut_wheel_1 +mario_kart_frame034_wheel2: + symbol: gKartMario034Wheel2 + type: texture + offset: 0xACE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_034_tlut_wheel_2 +mario_kart_frame034_wheel3: + symbol: gKartMario034Wheel3 + type: texture + offset: 0xACE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_034_tlut_wheel_3 +mario_kart_frame035_wheel0: + symbol: gKartMario035Wheel0 + type: texture + offset: 0xB268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_035_tlut_wheel_0 +mario_kart_frame035_wheel1: + symbol: gKartMario035Wheel1 + type: texture + offset: 0xB268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_035_tlut_wheel_1 +mario_kart_frame035_wheel2: + symbol: gKartMario035Wheel2 + type: texture + offset: 0xB268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_035_tlut_wheel_2 +mario_kart_frame035_wheel3: + symbol: gKartMario035Wheel3 + type: texture + offset: 0xB268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_035_tlut_wheel_3 +mario_kart_frame036_wheel0: + symbol: gKartMario036Wheel0 + type: texture + offset: 0xB7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_036_tlut_wheel_0 +mario_kart_frame036_wheel1: + symbol: gKartMario036Wheel1 + type: texture + offset: 0xB7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_036_tlut_wheel_1 +mario_kart_frame036_wheel2: + symbol: gKartMario036Wheel2 + type: texture + offset: 0xB7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_036_tlut_wheel_2 +mario_kart_frame036_wheel3: + symbol: gKartMario036Wheel3 + type: texture + offset: 0xB7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_036_tlut_wheel_3 +mario_kart_frame037_wheel0: + symbol: gKartMario037Wheel0 + type: texture + offset: 0xBD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_037_tlut_wheel_0 +mario_kart_frame037_wheel1: + symbol: gKartMario037Wheel1 + type: texture + offset: 0xBD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_037_tlut_wheel_1 +mario_kart_frame037_wheel2: + symbol: gKartMario037Wheel2 + type: texture + offset: 0xBD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_037_tlut_wheel_2 +mario_kart_frame037_wheel3: + symbol: gKartMario037Wheel3 + type: texture + offset: 0xBD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_037_tlut_wheel_3 +mario_kart_frame038_wheel0: + symbol: gKartMario038Wheel0 + type: texture + offset: 0xC2F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_038_tlut_wheel_0 +mario_kart_frame038_wheel1: + symbol: gKartMario038Wheel1 + type: texture + offset: 0xC2F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_038_tlut_wheel_1 +mario_kart_frame038_wheel2: + symbol: gKartMario038Wheel2 + type: texture + offset: 0xC2F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_038_tlut_wheel_2 +mario_kart_frame038_wheel3: + symbol: gKartMario038Wheel3 + type: texture + offset: 0xC2F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_038_tlut_wheel_3 +mario_kart_frame039_wheel0: + symbol: gKartMario039Wheel0 + type: texture + offset: 0xC87C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_039_tlut_wheel_0 +mario_kart_frame039_wheel1: + symbol: gKartMario039Wheel1 + type: texture + offset: 0xC87C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_039_tlut_wheel_1 +mario_kart_frame039_wheel2: + symbol: gKartMario039Wheel2 + type: texture + offset: 0xC87C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_039_tlut_wheel_2 +mario_kart_frame039_wheel3: + symbol: gKartMario039Wheel3 + type: texture + offset: 0xC87C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_039_tlut_wheel_3 +mario_kart_frame040_wheel0: + symbol: gKartMario040Wheel0 + type: texture + offset: 0xCDFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_040_tlut_wheel_0 +mario_kart_frame040_wheel1: + symbol: gKartMario040Wheel1 + type: texture + offset: 0xCDFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_040_tlut_wheel_1 +mario_kart_frame040_wheel2: + symbol: gKartMario040Wheel2 + type: texture + offset: 0xCDFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_040_tlut_wheel_2 +mario_kart_frame040_wheel3: + symbol: gKartMario040Wheel3 + type: texture + offset: 0xCDFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_040_tlut_wheel_3 +mario_kart_frame041_wheel0: + symbol: gKartMario041Wheel0 + type: texture + offset: 0xD384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_041_tlut_wheel_0 +mario_kart_frame041_wheel1: + symbol: gKartMario041Wheel1 + type: texture + offset: 0xD384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_041_tlut_wheel_1 +mario_kart_frame041_wheel2: + symbol: gKartMario041Wheel2 + type: texture + offset: 0xD384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_041_tlut_wheel_2 +mario_kart_frame041_wheel3: + symbol: gKartMario041Wheel3 + type: texture + offset: 0xD384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_041_tlut_wheel_3 +mario_kart_frame042_wheel0: + symbol: gKartMario042Wheel0 + type: texture + offset: 0xD920 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_042_tlut_wheel_0 +mario_kart_frame042_wheel1: + symbol: gKartMario042Wheel1 + type: texture + offset: 0xD920 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_042_tlut_wheel_1 +mario_kart_frame042_wheel2: + symbol: gKartMario042Wheel2 + type: texture + offset: 0xD920 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_042_tlut_wheel_2 +mario_kart_frame042_wheel3: + symbol: gKartMario042Wheel3 + type: texture + offset: 0xD920 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_042_tlut_wheel_3 +mario_kart_frame043_wheel0: + symbol: gKartMario043Wheel0 + type: texture + offset: 0xDDE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_043_tlut_wheel_0 +mario_kart_frame043_wheel1: + symbol: gKartMario043Wheel1 + type: texture + offset: 0xDDE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_043_tlut_wheel_1 +mario_kart_frame043_wheel2: + symbol: gKartMario043Wheel2 + type: texture + offset: 0xDDE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_043_tlut_wheel_2 +mario_kart_frame043_wheel3: + symbol: gKartMario043Wheel3 + type: texture + offset: 0xDDE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_043_tlut_wheel_3 +mario_kart_frame044_wheel0: + symbol: gKartMario044Wheel0 + type: texture + offset: 0xE2A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_044_tlut_wheel_0 +mario_kart_frame044_wheel1: + symbol: gKartMario044Wheel1 + type: texture + offset: 0xE2A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_044_tlut_wheel_1 +mario_kart_frame044_wheel2: + symbol: gKartMario044Wheel2 + type: texture + offset: 0xE2A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_044_tlut_wheel_2 +mario_kart_frame044_wheel3: + symbol: gKartMario044Wheel3 + type: texture + offset: 0xE2A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_044_tlut_wheel_3 +mario_kart_frame045_wheel0: + symbol: gKartMario045Wheel0 + type: texture + offset: 0xE778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_045_tlut_wheel_0 +mario_kart_frame045_wheel1: + symbol: gKartMario045Wheel1 + type: texture + offset: 0xE778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_045_tlut_wheel_1 +mario_kart_frame045_wheel2: + symbol: gKartMario045Wheel2 + type: texture + offset: 0xE778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_045_tlut_wheel_2 +mario_kart_frame045_wheel3: + symbol: gKartMario045Wheel3 + type: texture + offset: 0xE778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_045_tlut_wheel_3 +mario_kart_frame046_wheel0: + symbol: gKartMario046Wheel0 + type: texture + offset: 0xEC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_046_tlut_wheel_0 +mario_kart_frame046_wheel1: + symbol: gKartMario046Wheel1 + type: texture + offset: 0xEC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_046_tlut_wheel_1 +mario_kart_frame046_wheel2: + symbol: gKartMario046Wheel2 + type: texture + offset: 0xEC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_046_tlut_wheel_2 +mario_kart_frame046_wheel3: + symbol: gKartMario046Wheel3 + type: texture + offset: 0xEC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_046_tlut_wheel_3 +mario_kart_frame047_wheel0: + symbol: gKartMario047Wheel0 + type: texture + offset: 0xF14C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_047_tlut_wheel_0 +mario_kart_frame047_wheel1: + symbol: gKartMario047Wheel1 + type: texture + offset: 0xF14C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_047_tlut_wheel_1 +mario_kart_frame047_wheel2: + symbol: gKartMario047Wheel2 + type: texture + offset: 0xF14C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_047_tlut_wheel_2 +mario_kart_frame047_wheel3: + symbol: gKartMario047Wheel3 + type: texture + offset: 0xF14C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_047_tlut_wheel_3 +mario_kart_frame048_wheel0: + symbol: gKartMario048Wheel0 + type: texture + offset: 0xF66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_048_tlut_wheel_0 +mario_kart_frame048_wheel1: + symbol: gKartMario048Wheel1 + type: texture + offset: 0xF66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_048_tlut_wheel_1 +mario_kart_frame048_wheel2: + symbol: gKartMario048Wheel2 + type: texture + offset: 0xF66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_048_tlut_wheel_2 +mario_kart_frame048_wheel3: + symbol: gKartMario048Wheel3 + type: texture + offset: 0xF66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_048_tlut_wheel_3 +mario_kart_frame049_wheel0: + symbol: gKartMario049Wheel0 + type: texture + offset: 0xFB90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_049_tlut_wheel_0 +mario_kart_frame049_wheel1: + symbol: gKartMario049Wheel1 + type: texture + offset: 0xFB90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_049_tlut_wheel_1 +mario_kart_frame049_wheel2: + symbol: gKartMario049Wheel2 + type: texture + offset: 0xFB90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_049_tlut_wheel_2 +mario_kart_frame049_wheel3: + symbol: gKartMario049Wheel3 + type: texture + offset: 0xFB90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_049_tlut_wheel_3 +mario_kart_frame050_wheel0: + symbol: gKartMario050Wheel0 + type: texture + offset: 0x100B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_050_tlut_wheel_0 +mario_kart_frame050_wheel1: + symbol: gKartMario050Wheel1 + type: texture + offset: 0x100B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_050_tlut_wheel_1 +mario_kart_frame050_wheel2: + symbol: gKartMario050Wheel2 + type: texture + offset: 0x100B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_050_tlut_wheel_2 +mario_kart_frame050_wheel3: + symbol: gKartMario050Wheel3 + type: texture + offset: 0x100B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_050_tlut_wheel_3 +mario_kart_frame051_wheel0: + symbol: gKartMario051Wheel0 + type: texture + offset: 0x105FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_051_tlut_wheel_0 +mario_kart_frame051_wheel1: + symbol: gKartMario051Wheel1 + type: texture + offset: 0x105FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_051_tlut_wheel_1 +mario_kart_frame051_wheel2: + symbol: gKartMario051Wheel2 + type: texture + offset: 0x105FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_051_tlut_wheel_2 +mario_kart_frame051_wheel3: + symbol: gKartMario051Wheel3 + type: texture + offset: 0x105FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_051_tlut_wheel_3 +mario_kart_frame052_wheel0: + symbol: gKartMario052Wheel0 + type: texture + offset: 0x10B4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_052_tlut_wheel_0 +mario_kart_frame052_wheel1: + symbol: gKartMario052Wheel1 + type: texture + offset: 0x10B4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_052_tlut_wheel_1 +mario_kart_frame052_wheel2: + symbol: gKartMario052Wheel2 + type: texture + offset: 0x10B4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_052_tlut_wheel_2 +mario_kart_frame052_wheel3: + symbol: gKartMario052Wheel3 + type: texture + offset: 0x10B4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_052_tlut_wheel_3 +mario_kart_frame053_wheel0: + symbol: gKartMario053Wheel0 + type: texture + offset: 0x110BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_053_tlut_wheel_0 +mario_kart_frame053_wheel1: + symbol: gKartMario053Wheel1 + type: texture + offset: 0x110BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_053_tlut_wheel_1 +mario_kart_frame053_wheel2: + symbol: gKartMario053Wheel2 + type: texture + offset: 0x110BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_053_tlut_wheel_2 +mario_kart_frame053_wheel3: + symbol: gKartMario053Wheel3 + type: texture + offset: 0x110BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_053_tlut_wheel_3 +mario_kart_frame054_wheel0: + symbol: gKartMario054Wheel0 + type: texture + offset: 0x11624 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_054_tlut_wheel_0 +mario_kart_frame054_wheel1: + symbol: gKartMario054Wheel1 + type: texture + offset: 0x11624 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_054_tlut_wheel_1 +mario_kart_frame054_wheel2: + symbol: gKartMario054Wheel2 + type: texture + offset: 0x11624 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_054_tlut_wheel_2 +mario_kart_frame054_wheel3: + symbol: gKartMario054Wheel3 + type: texture + offset: 0x11624 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_054_tlut_wheel_3 +mario_kart_frame055_wheel0: + symbol: gKartMario055Wheel0 + type: texture + offset: 0x11BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_055_tlut_wheel_0 +mario_kart_frame055_wheel1: + symbol: gKartMario055Wheel1 + type: texture + offset: 0x11BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_055_tlut_wheel_1 +mario_kart_frame055_wheel2: + symbol: gKartMario055Wheel2 + type: texture + offset: 0x11BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_055_tlut_wheel_2 +mario_kart_frame055_wheel3: + symbol: gKartMario055Wheel3 + type: texture + offset: 0x11BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_055_tlut_wheel_3 +mario_kart_frame056_wheel0: + symbol: gKartMario056Wheel0 + type: texture + offset: 0x1212C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_056_tlut_wheel_0 +mario_kart_frame056_wheel1: + symbol: gKartMario056Wheel1 + type: texture + offset: 0x1212C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_056_tlut_wheel_1 +mario_kart_frame056_wheel2: + symbol: gKartMario056Wheel2 + type: texture + offset: 0x1212C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_056_tlut_wheel_2 +mario_kart_frame056_wheel3: + symbol: gKartMario056Wheel3 + type: texture + offset: 0x1212C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_056_tlut_wheel_3 +mario_kart_frame057_wheel0: + symbol: gKartMario057Wheel0 + type: texture + offset: 0x126AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_057_tlut_wheel_0 +mario_kart_frame057_wheel1: + symbol: gKartMario057Wheel1 + type: texture + offset: 0x126AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_057_tlut_wheel_1 +mario_kart_frame057_wheel2: + symbol: gKartMario057Wheel2 + type: texture + offset: 0x126AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_057_tlut_wheel_2 +mario_kart_frame057_wheel3: + symbol: gKartMario057Wheel3 + type: texture + offset: 0x126AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_057_tlut_wheel_3 +mario_kart_frame058_wheel0: + symbol: gKartMario058Wheel0 + type: texture + offset: 0x12C28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_058_tlut_wheel_0 +mario_kart_frame058_wheel1: + symbol: gKartMario058Wheel1 + type: texture + offset: 0x12C28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_058_tlut_wheel_1 +mario_kart_frame058_wheel2: + symbol: gKartMario058Wheel2 + type: texture + offset: 0x12C28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_058_tlut_wheel_2 +mario_kart_frame058_wheel3: + symbol: gKartMario058Wheel3 + type: texture + offset: 0x12C28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_058_tlut_wheel_3 +mario_kart_frame059_wheel0: + symbol: gKartMario059Wheel0 + type: texture + offset: 0x131B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_059_tlut_wheel_0 +mario_kart_frame059_wheel1: + symbol: gKartMario059Wheel1 + type: texture + offset: 0x131B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_059_tlut_wheel_1 +mario_kart_frame059_wheel2: + symbol: gKartMario059Wheel2 + type: texture + offset: 0x131B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_059_tlut_wheel_2 +mario_kart_frame059_wheel3: + symbol: gKartMario059Wheel3 + type: texture + offset: 0x131B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_059_tlut_wheel_3 +mario_kart_frame060_wheel0: + symbol: gKartMario060Wheel0 + type: texture + offset: 0x1375C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_060_tlut_wheel_0 +mario_kart_frame060_wheel1: + symbol: gKartMario060Wheel1 + type: texture + offset: 0x1375C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_060_tlut_wheel_1 +mario_kart_frame060_wheel2: + symbol: gKartMario060Wheel2 + type: texture + offset: 0x1375C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_060_tlut_wheel_2 +mario_kart_frame060_wheel3: + symbol: gKartMario060Wheel3 + type: texture + offset: 0x1375C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_060_tlut_wheel_3 +mario_kart_frame061_wheel0: + symbol: gKartMario061Wheel0 + type: texture + offset: 0x13D10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_061_tlut_wheel_0 +mario_kart_frame061_wheel1: + symbol: gKartMario061Wheel1 + type: texture + offset: 0x13D10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_061_tlut_wheel_1 +mario_kart_frame061_wheel2: + symbol: gKartMario061Wheel2 + type: texture + offset: 0x13D10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_061_tlut_wheel_2 +mario_kart_frame061_wheel3: + symbol: gKartMario061Wheel3 + type: texture + offset: 0x13D10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_061_tlut_wheel_3 +mario_kart_frame062_wheel0: + symbol: gKartMario062Wheel0 + type: texture + offset: 0x142BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_062_tlut_wheel_0 +mario_kart_frame062_wheel1: + symbol: gKartMario062Wheel1 + type: texture + offset: 0x142BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_062_tlut_wheel_1 +mario_kart_frame062_wheel2: + symbol: gKartMario062Wheel2 + type: texture + offset: 0x142BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_062_tlut_wheel_2 +mario_kart_frame062_wheel3: + symbol: gKartMario062Wheel3 + type: texture + offset: 0x142BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_062_tlut_wheel_3 +mario_kart_frame063_wheel0: + symbol: gKartMario063Wheel0 + type: texture + offset: 0x1486C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_063_tlut_wheel_0 +mario_kart_frame063_wheel1: + symbol: gKartMario063Wheel1 + type: texture + offset: 0x1486C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_063_tlut_wheel_1 +mario_kart_frame063_wheel2: + symbol: gKartMario063Wheel2 + type: texture + offset: 0x1486C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_063_tlut_wheel_2 +mario_kart_frame063_wheel3: + symbol: gKartMario063Wheel3 + type: texture + offset: 0x1486C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_063_tlut_wheel_3 +mario_kart_frame064_wheel0: + symbol: gKartMario064Wheel0 + type: texture + offset: 0x14D2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_064_tlut_wheel_0 +mario_kart_frame064_wheel1: + symbol: gKartMario064Wheel1 + type: texture + offset: 0x14D2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_064_tlut_wheel_1 +mario_kart_frame064_wheel2: + symbol: gKartMario064Wheel2 + type: texture + offset: 0x14D2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_064_tlut_wheel_2 +mario_kart_frame064_wheel3: + symbol: gKartMario064Wheel3 + type: texture + offset: 0x14D2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_064_tlut_wheel_3 +mario_kart_frame065_wheel0: + symbol: gKartMario065Wheel0 + type: texture + offset: 0x15204 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_065_tlut_wheel_0 +mario_kart_frame065_wheel1: + symbol: gKartMario065Wheel1 + type: texture + offset: 0x15204 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_065_tlut_wheel_1 +mario_kart_frame065_wheel2: + symbol: gKartMario065Wheel2 + type: texture + offset: 0x15204 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_065_tlut_wheel_2 +mario_kart_frame065_wheel3: + symbol: gKartMario065Wheel3 + type: texture + offset: 0x15204 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_065_tlut_wheel_3 +mario_kart_frame066_wheel0: + symbol: gKartMario066Wheel0 + type: texture + offset: 0x156E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_066_tlut_wheel_0 +mario_kart_frame066_wheel1: + symbol: gKartMario066Wheel1 + type: texture + offset: 0x156E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_066_tlut_wheel_1 +mario_kart_frame066_wheel2: + symbol: gKartMario066Wheel2 + type: texture + offset: 0x156E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_066_tlut_wheel_2 +mario_kart_frame066_wheel3: + symbol: gKartMario066Wheel3 + type: texture + offset: 0x156E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_066_tlut_wheel_3 +mario_kart_frame067_wheel0: + symbol: gKartMario067Wheel0 + type: texture + offset: 0x15BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_067_tlut_wheel_0 +mario_kart_frame067_wheel1: + symbol: gKartMario067Wheel1 + type: texture + offset: 0x15BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_067_tlut_wheel_1 +mario_kart_frame067_wheel2: + symbol: gKartMario067Wheel2 + type: texture + offset: 0x15BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_067_tlut_wheel_2 +mario_kart_frame067_wheel3: + symbol: gKartMario067Wheel3 + type: texture + offset: 0x15BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_067_tlut_wheel_3 +mario_kart_frame068_wheel0: + symbol: gKartMario068Wheel0 + type: texture + offset: 0x160B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_068_tlut_wheel_0 +mario_kart_frame068_wheel1: + symbol: gKartMario068Wheel1 + type: texture + offset: 0x160B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_068_tlut_wheel_1 +mario_kart_frame068_wheel2: + symbol: gKartMario068Wheel2 + type: texture + offset: 0x160B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_068_tlut_wheel_2 +mario_kart_frame068_wheel3: + symbol: gKartMario068Wheel3 + type: texture + offset: 0x160B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_068_tlut_wheel_3 +mario_kart_frame069_wheel0: + symbol: gKartMario069Wheel0 + type: texture + offset: 0x165CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_069_tlut_wheel_0 +mario_kart_frame069_wheel1: + symbol: gKartMario069Wheel1 + type: texture + offset: 0x165CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_069_tlut_wheel_1 +mario_kart_frame069_wheel2: + symbol: gKartMario069Wheel2 + type: texture + offset: 0x165CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_069_tlut_wheel_2 +mario_kart_frame069_wheel3: + symbol: gKartMario069Wheel3 + type: texture + offset: 0x165CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_069_tlut_wheel_3 +mario_kart_frame070_wheel0: + symbol: gKartMario070Wheel0 + type: texture + offset: 0x16AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_070_tlut_wheel_0 +mario_kart_frame070_wheel1: + symbol: gKartMario070Wheel1 + type: texture + offset: 0x16AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_070_tlut_wheel_1 +mario_kart_frame070_wheel2: + symbol: gKartMario070Wheel2 + type: texture + offset: 0x16AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_070_tlut_wheel_2 +mario_kart_frame070_wheel3: + symbol: gKartMario070Wheel3 + type: texture + offset: 0x16AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_070_tlut_wheel_3 +mario_kart_frame071_wheel0: + symbol: gKartMario071Wheel0 + type: texture + offset: 0x17038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_071_tlut_wheel_0 +mario_kart_frame071_wheel1: + symbol: gKartMario071Wheel1 + type: texture + offset: 0x17038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_071_tlut_wheel_1 +mario_kart_frame071_wheel2: + symbol: gKartMario071Wheel2 + type: texture + offset: 0x17038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_071_tlut_wheel_2 +mario_kart_frame071_wheel3: + symbol: gKartMario071Wheel3 + type: texture + offset: 0x17038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_071_tlut_wheel_3 +mario_kart_frame072_wheel0: + symbol: gKartMario072Wheel0 + type: texture + offset: 0x17578 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_072_tlut_wheel_0 +mario_kart_frame072_wheel1: + symbol: gKartMario072Wheel1 + type: texture + offset: 0x17578 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_072_tlut_wheel_1 +mario_kart_frame072_wheel2: + symbol: gKartMario072Wheel2 + type: texture + offset: 0x17578 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_072_tlut_wheel_2 +mario_kart_frame072_wheel3: + symbol: gKartMario072Wheel3 + type: texture + offset: 0x17578 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_072_tlut_wheel_3 +mario_kart_frame073_wheel0: + symbol: gKartMario073Wheel0 + type: texture + offset: 0x17AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_073_tlut_wheel_0 +mario_kart_frame073_wheel1: + symbol: gKartMario073Wheel1 + type: texture + offset: 0x17AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_073_tlut_wheel_1 +mario_kart_frame073_wheel2: + symbol: gKartMario073Wheel2 + type: texture + offset: 0x17AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_073_tlut_wheel_2 +mario_kart_frame073_wheel3: + symbol: gKartMario073Wheel3 + type: texture + offset: 0x17AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_073_tlut_wheel_3 +mario_kart_frame074_wheel0: + symbol: gKartMario074Wheel0 + type: texture + offset: 0x18048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_074_tlut_wheel_0 +mario_kart_frame074_wheel1: + symbol: gKartMario074Wheel1 + type: texture + offset: 0x18048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_074_tlut_wheel_1 +mario_kart_frame074_wheel2: + symbol: gKartMario074Wheel2 + type: texture + offset: 0x18048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_074_tlut_wheel_2 +mario_kart_frame074_wheel3: + symbol: gKartMario074Wheel3 + type: texture + offset: 0x18048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_074_tlut_wheel_3 +mario_kart_frame075_wheel0: + symbol: gKartMario075Wheel0 + type: texture + offset: 0x185A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_075_tlut_wheel_0 +mario_kart_frame075_wheel1: + symbol: gKartMario075Wheel1 + type: texture + offset: 0x185A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_075_tlut_wheel_1 +mario_kart_frame075_wheel2: + symbol: gKartMario075Wheel2 + type: texture + offset: 0x185A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_075_tlut_wheel_2 +mario_kart_frame075_wheel3: + symbol: gKartMario075Wheel3 + type: texture + offset: 0x185A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_075_tlut_wheel_3 +mario_kart_frame076_wheel0: + symbol: gKartMario076Wheel0 + type: texture + offset: 0x18B20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_076_tlut_wheel_0 +mario_kart_frame076_wheel1: + symbol: gKartMario076Wheel1 + type: texture + offset: 0x18B20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_076_tlut_wheel_1 +mario_kart_frame076_wheel2: + symbol: gKartMario076Wheel2 + type: texture + offset: 0x18B20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_076_tlut_wheel_2 +mario_kart_frame076_wheel3: + symbol: gKartMario076Wheel3 + type: texture + offset: 0x18B20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_076_tlut_wheel_3 +mario_kart_frame077_wheel0: + symbol: gKartMario077Wheel0 + type: texture + offset: 0x19094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_077_tlut_wheel_0 +mario_kart_frame077_wheel1: + symbol: gKartMario077Wheel1 + type: texture + offset: 0x19094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_077_tlut_wheel_1 +mario_kart_frame077_wheel2: + symbol: gKartMario077Wheel2 + type: texture + offset: 0x19094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_077_tlut_wheel_2 +mario_kart_frame077_wheel3: + symbol: gKartMario077Wheel3 + type: texture + offset: 0x19094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_077_tlut_wheel_3 +mario_kart_frame078_wheel0: + symbol: gKartMario078Wheel0 + type: texture + offset: 0x19620 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_078_tlut_wheel_0 +mario_kart_frame078_wheel1: + symbol: gKartMario078Wheel1 + type: texture + offset: 0x19620 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_078_tlut_wheel_1 +mario_kart_frame078_wheel2: + symbol: gKartMario078Wheel2 + type: texture + offset: 0x19620 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_078_tlut_wheel_2 +mario_kart_frame078_wheel3: + symbol: gKartMario078Wheel3 + type: texture + offset: 0x19620 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_078_tlut_wheel_3 +mario_kart_frame079_wheel0: + symbol: gKartMario079Wheel0 + type: texture + offset: 0x19BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_079_tlut_wheel_0 +mario_kart_frame079_wheel1: + symbol: gKartMario079Wheel1 + type: texture + offset: 0x19BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_079_tlut_wheel_1 +mario_kart_frame079_wheel2: + symbol: gKartMario079Wheel2 + type: texture + offset: 0x19BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_079_tlut_wheel_2 +mario_kart_frame079_wheel3: + symbol: gKartMario079Wheel3 + type: texture + offset: 0x19BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_079_tlut_wheel_3 +mario_kart_frame080_wheel0: + symbol: gKartMario080Wheel0 + type: texture + offset: 0x1A170 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_080_tlut_wheel_0 +mario_kart_frame080_wheel1: + symbol: gKartMario080Wheel1 + type: texture + offset: 0x1A170 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_080_tlut_wheel_1 +mario_kart_frame080_wheel2: + symbol: gKartMario080Wheel2 + type: texture + offset: 0x1A170 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_080_tlut_wheel_2 +mario_kart_frame080_wheel3: + symbol: gKartMario080Wheel3 + type: texture + offset: 0x1A170 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_080_tlut_wheel_3 +mario_kart_frame081_wheel0: + symbol: gKartMario081Wheel0 + type: texture + offset: 0x1A724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_081_tlut_wheel_0 +mario_kart_frame081_wheel1: + symbol: gKartMario081Wheel1 + type: texture + offset: 0x1A724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_081_tlut_wheel_1 +mario_kart_frame081_wheel2: + symbol: gKartMario081Wheel2 + type: texture + offset: 0x1A724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_081_tlut_wheel_2 +mario_kart_frame081_wheel3: + symbol: gKartMario081Wheel3 + type: texture + offset: 0x1A724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_081_tlut_wheel_3 +mario_kart_frame082_wheel0: + symbol: gKartMario082Wheel0 + type: texture + offset: 0x1ACE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_082_tlut_wheel_0 +mario_kart_frame082_wheel1: + symbol: gKartMario082Wheel1 + type: texture + offset: 0x1ACE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_082_tlut_wheel_1 +mario_kart_frame082_wheel2: + symbol: gKartMario082Wheel2 + type: texture + offset: 0x1ACE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_082_tlut_wheel_2 +mario_kart_frame082_wheel3: + symbol: gKartMario082Wheel3 + type: texture + offset: 0x1ACE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_082_tlut_wheel_3 +mario_kart_frame083_wheel0: + symbol: gKartMario083Wheel0 + type: texture + offset: 0x1B29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_083_tlut_wheel_0 +mario_kart_frame083_wheel1: + symbol: gKartMario083Wheel1 + type: texture + offset: 0x1B29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_083_tlut_wheel_1 +mario_kart_frame083_wheel2: + symbol: gKartMario083Wheel2 + type: texture + offset: 0x1B29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_083_tlut_wheel_2 +mario_kart_frame083_wheel3: + symbol: gKartMario083Wheel3 + type: texture + offset: 0x1B29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_083_tlut_wheel_3 +mario_kart_frame084_wheel0: + symbol: gKartMario084Wheel0 + type: texture + offset: 0x1B850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_084_tlut_wheel_0 +mario_kart_frame084_wheel1: + symbol: gKartMario084Wheel1 + type: texture + offset: 0x1B850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_084_tlut_wheel_1 +mario_kart_frame084_wheel2: + symbol: gKartMario084Wheel2 + type: texture + offset: 0x1B850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_084_tlut_wheel_2 +mario_kart_frame084_wheel3: + symbol: gKartMario084Wheel3 + type: texture + offset: 0x1B850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_084_tlut_wheel_3 +mario_kart_frame085_wheel0: + symbol: gKartMario085Wheel0 + type: texture + offset: 0x1BD00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_085_tlut_wheel_0 +mario_kart_frame085_wheel1: + symbol: gKartMario085Wheel1 + type: texture + offset: 0x1BD00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_085_tlut_wheel_1 +mario_kart_frame085_wheel2: + symbol: gKartMario085Wheel2 + type: texture + offset: 0x1BD00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_085_tlut_wheel_2 +mario_kart_frame085_wheel3: + symbol: gKartMario085Wheel3 + type: texture + offset: 0x1BD00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_085_tlut_wheel_3 +mario_kart_frame086_wheel0: + symbol: gKartMario086Wheel0 + type: texture + offset: 0x1C1E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_086_tlut_wheel_0 +mario_kart_frame086_wheel1: + symbol: gKartMario086Wheel1 + type: texture + offset: 0x1C1E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_086_tlut_wheel_1 +mario_kart_frame086_wheel2: + symbol: gKartMario086Wheel2 + type: texture + offset: 0x1C1E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_086_tlut_wheel_2 +mario_kart_frame086_wheel3: + symbol: gKartMario086Wheel3 + type: texture + offset: 0x1C1E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_086_tlut_wheel_3 +mario_kart_frame087_wheel0: + symbol: gKartMario087Wheel0 + type: texture + offset: 0x1C6D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_087_tlut_wheel_0 +mario_kart_frame087_wheel1: + symbol: gKartMario087Wheel1 + type: texture + offset: 0x1C6D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_087_tlut_wheel_1 +mario_kart_frame087_wheel2: + symbol: gKartMario087Wheel2 + type: texture + offset: 0x1C6D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_087_tlut_wheel_2 +mario_kart_frame087_wheel3: + symbol: gKartMario087Wheel3 + type: texture + offset: 0x1C6D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_087_tlut_wheel_3 +mario_kart_frame088_wheel0: + symbol: gKartMario088Wheel0 + type: texture + offset: 0x1CBCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_088_tlut_wheel_0 +mario_kart_frame088_wheel1: + symbol: gKartMario088Wheel1 + type: texture + offset: 0x1CBCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_088_tlut_wheel_1 +mario_kart_frame088_wheel2: + symbol: gKartMario088Wheel2 + type: texture + offset: 0x1CBCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_088_tlut_wheel_2 +mario_kart_frame088_wheel3: + symbol: gKartMario088Wheel3 + type: texture + offset: 0x1CBCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_088_tlut_wheel_3 +mario_kart_frame089_wheel0: + symbol: gKartMario089Wheel0 + type: texture + offset: 0x1D0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_089_tlut_wheel_0 +mario_kart_frame089_wheel1: + symbol: gKartMario089Wheel1 + type: texture + offset: 0x1D0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_089_tlut_wheel_1 +mario_kart_frame089_wheel2: + symbol: gKartMario089Wheel2 + type: texture + offset: 0x1D0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_089_tlut_wheel_2 +mario_kart_frame089_wheel3: + symbol: gKartMario089Wheel3 + type: texture + offset: 0x1D0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_089_tlut_wheel_3 +mario_kart_frame090_wheel0: + symbol: gKartMario090Wheel0 + type: texture + offset: 0x1D5FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_090_tlut_wheel_0 +mario_kart_frame090_wheel1: + symbol: gKartMario090Wheel1 + type: texture + offset: 0x1D5FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_090_tlut_wheel_1 +mario_kart_frame090_wheel2: + symbol: gKartMario090Wheel2 + type: texture + offset: 0x1D5FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_090_tlut_wheel_2 +mario_kart_frame090_wheel3: + symbol: gKartMario090Wheel3 + type: texture + offset: 0x1D5FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_090_tlut_wheel_3 +mario_kart_frame091_wheel0: + symbol: gKartMario091Wheel0 + type: texture + offset: 0x1DB40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_091_tlut_wheel_0 +mario_kart_frame091_wheel1: + symbol: gKartMario091Wheel1 + type: texture + offset: 0x1DB40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_091_tlut_wheel_1 +mario_kart_frame091_wheel2: + symbol: gKartMario091Wheel2 + type: texture + offset: 0x1DB40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_091_tlut_wheel_2 +mario_kart_frame091_wheel3: + symbol: gKartMario091Wheel3 + type: texture + offset: 0x1DB40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_091_tlut_wheel_3 +mario_kart_frame092_wheel0: + symbol: gKartMario092Wheel0 + type: texture + offset: 0x1E0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_092_tlut_wheel_0 +mario_kart_frame092_wheel1: + symbol: gKartMario092Wheel1 + type: texture + offset: 0x1E0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_092_tlut_wheel_1 +mario_kart_frame092_wheel2: + symbol: gKartMario092Wheel2 + type: texture + offset: 0x1E0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_092_tlut_wheel_2 +mario_kart_frame092_wheel3: + symbol: gKartMario092Wheel3 + type: texture + offset: 0x1E0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_092_tlut_wheel_3 +mario_kart_frame093_wheel0: + symbol: gKartMario093Wheel0 + type: texture + offset: 0x1E60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_093_tlut_wheel_0 +mario_kart_frame093_wheel1: + symbol: gKartMario093Wheel1 + type: texture + offset: 0x1E60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_093_tlut_wheel_1 +mario_kart_frame093_wheel2: + symbol: gKartMario093Wheel2 + type: texture + offset: 0x1E60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_093_tlut_wheel_2 +mario_kart_frame093_wheel3: + symbol: gKartMario093Wheel3 + type: texture + offset: 0x1E60C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_093_tlut_wheel_3 +mario_kart_frame094_wheel0: + symbol: gKartMario094Wheel0 + type: texture + offset: 0x1EB80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_094_tlut_wheel_0 +mario_kart_frame094_wheel1: + symbol: gKartMario094Wheel1 + type: texture + offset: 0x1EB80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_094_tlut_wheel_1 +mario_kart_frame094_wheel2: + symbol: gKartMario094Wheel2 + type: texture + offset: 0x1EB80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_094_tlut_wheel_2 +mario_kart_frame094_wheel3: + symbol: gKartMario094Wheel3 + type: texture + offset: 0x1EB80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_094_tlut_wheel_3 +mario_kart_frame095_wheel0: + symbol: gKartMario095Wheel0 + type: texture + offset: 0x1F0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_095_tlut_wheel_0 +mario_kart_frame095_wheel1: + symbol: gKartMario095Wheel1 + type: texture + offset: 0x1F0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_095_tlut_wheel_1 +mario_kart_frame095_wheel2: + symbol: gKartMario095Wheel2 + type: texture + offset: 0x1F0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_095_tlut_wheel_2 +mario_kart_frame095_wheel3: + symbol: gKartMario095Wheel3 + type: texture + offset: 0x1F0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_095_tlut_wheel_3 +mario_kart_frame096_wheel0: + symbol: gKartMario096Wheel0 + type: texture + offset: 0x1F67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_096_tlut_wheel_0 +mario_kart_frame096_wheel1: + symbol: gKartMario096Wheel1 + type: texture + offset: 0x1F67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_096_tlut_wheel_1 +mario_kart_frame096_wheel2: + symbol: gKartMario096Wheel2 + type: texture + offset: 0x1F67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_096_tlut_wheel_2 +mario_kart_frame096_wheel3: + symbol: gKartMario096Wheel3 + type: texture + offset: 0x1F67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_096_tlut_wheel_3 +mario_kart_frame097_wheel0: + symbol: gKartMario097Wheel0 + type: texture + offset: 0x1FC00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_097_tlut_wheel_0 +mario_kart_frame097_wheel1: + symbol: gKartMario097Wheel1 + type: texture + offset: 0x1FC00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_097_tlut_wheel_1 +mario_kart_frame097_wheel2: + symbol: gKartMario097Wheel2 + type: texture + offset: 0x1FC00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_097_tlut_wheel_2 +mario_kart_frame097_wheel3: + symbol: gKartMario097Wheel3 + type: texture + offset: 0x1FC00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_097_tlut_wheel_3 +mario_kart_frame098_wheel0: + symbol: gKartMario098Wheel0 + type: texture + offset: 0x20188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_098_tlut_wheel_0 +mario_kart_frame098_wheel1: + symbol: gKartMario098Wheel1 + type: texture + offset: 0x20188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_098_tlut_wheel_1 +mario_kart_frame098_wheel2: + symbol: gKartMario098Wheel2 + type: texture + offset: 0x20188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_098_tlut_wheel_2 +mario_kart_frame098_wheel3: + symbol: gKartMario098Wheel3 + type: texture + offset: 0x20188 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_098_tlut_wheel_3 +mario_kart_frame099_wheel0: + symbol: gKartMario099Wheel0 + type: texture + offset: 0x2072C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_099_tlut_wheel_0 +mario_kart_frame099_wheel1: + symbol: gKartMario099Wheel1 + type: texture + offset: 0x2072C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_099_tlut_wheel_1 +mario_kart_frame099_wheel2: + symbol: gKartMario099Wheel2 + type: texture + offset: 0x2072C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_099_tlut_wheel_2 +mario_kart_frame099_wheel3: + symbol: gKartMario099Wheel3 + type: texture + offset: 0x2072C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_099_tlut_wheel_3 +mario_kart_frame100_wheel0: + symbol: gKartMario100Wheel0 + type: texture + offset: 0x20CD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_100_tlut_wheel_0 +mario_kart_frame100_wheel1: + symbol: gKartMario100Wheel1 + type: texture + offset: 0x20CD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_100_tlut_wheel_1 +mario_kart_frame100_wheel2: + symbol: gKartMario100Wheel2 + type: texture + offset: 0x20CD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_100_tlut_wheel_2 +mario_kart_frame100_wheel3: + symbol: gKartMario100Wheel3 + type: texture + offset: 0x20CD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_100_tlut_wheel_3 +mario_kart_frame101_wheel0: + symbol: gKartMario101Wheel0 + type: texture + offset: 0x2127C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_101_tlut_wheel_0 +mario_kart_frame101_wheel1: + symbol: gKartMario101Wheel1 + type: texture + offset: 0x2127C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_101_tlut_wheel_1 +mario_kart_frame101_wheel2: + symbol: gKartMario101Wheel2 + type: texture + offset: 0x2127C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_101_tlut_wheel_2 +mario_kart_frame101_wheel3: + symbol: gKartMario101Wheel3 + type: texture + offset: 0x2127C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_101_tlut_wheel_3 +mario_kart_frame102_wheel0: + symbol: gKartMario102Wheel0 + type: texture + offset: 0x21824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_102_tlut_wheel_0 +mario_kart_frame102_wheel1: + symbol: gKartMario102Wheel1 + type: texture + offset: 0x21824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_102_tlut_wheel_1 +mario_kart_frame102_wheel2: + symbol: gKartMario102Wheel2 + type: texture + offset: 0x21824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_102_tlut_wheel_2 +mario_kart_frame102_wheel3: + symbol: gKartMario102Wheel3 + type: texture + offset: 0x21824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_102_tlut_wheel_3 +mario_kart_frame103_wheel0: + symbol: gKartMario103Wheel0 + type: texture + offset: 0x21DE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_103_tlut_wheel_0 +mario_kart_frame103_wheel1: + symbol: gKartMario103Wheel1 + type: texture + offset: 0x21DE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_103_tlut_wheel_1 +mario_kart_frame103_wheel2: + symbol: gKartMario103Wheel2 + type: texture + offset: 0x21DE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_103_tlut_wheel_2 +mario_kart_frame103_wheel3: + symbol: gKartMario103Wheel3 + type: texture + offset: 0x21DE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_103_tlut_wheel_3 +mario_kart_frame104_wheel0: + symbol: gKartMario104Wheel0 + type: texture + offset: 0x223A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_104_tlut_wheel_0 +mario_kart_frame104_wheel1: + symbol: gKartMario104Wheel1 + type: texture + offset: 0x223A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_104_tlut_wheel_1 +mario_kart_frame104_wheel2: + symbol: gKartMario104Wheel2 + type: texture + offset: 0x223A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_104_tlut_wheel_2 +mario_kart_frame104_wheel3: + symbol: gKartMario104Wheel3 + type: texture + offset: 0x223A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_104_tlut_wheel_3 +mario_kart_frame105_wheel0: + symbol: gKartMario105Wheel0 + type: texture + offset: 0x22960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_105_tlut_wheel_0 +mario_kart_frame105_wheel1: + symbol: gKartMario105Wheel1 + type: texture + offset: 0x22960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_105_tlut_wheel_1 +mario_kart_frame105_wheel2: + symbol: gKartMario105Wheel2 + type: texture + offset: 0x22960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_105_tlut_wheel_2 +mario_kart_frame105_wheel3: + symbol: gKartMario105Wheel3 + type: texture + offset: 0x22960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_105_tlut_wheel_3 +mario_kart_frame106_wheel0: + symbol: gKartMario106Wheel0 + type: texture + offset: 0x22E40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_106_tlut_wheel_0 +mario_kart_frame106_wheel1: + symbol: gKartMario106Wheel1 + type: texture + offset: 0x22E40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_106_tlut_wheel_1 +mario_kart_frame106_wheel2: + symbol: gKartMario106Wheel2 + type: texture + offset: 0x22E40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_106_tlut_wheel_2 +mario_kart_frame106_wheel3: + symbol: gKartMario106Wheel3 + type: texture + offset: 0x22E40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_106_tlut_wheel_3 +mario_kart_frame107_wheel0: + symbol: gKartMario107Wheel0 + type: texture + offset: 0x23328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_107_tlut_wheel_0 +mario_kart_frame107_wheel1: + symbol: gKartMario107Wheel1 + type: texture + offset: 0x23328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_107_tlut_wheel_1 +mario_kart_frame107_wheel2: + symbol: gKartMario107Wheel2 + type: texture + offset: 0x23328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_107_tlut_wheel_2 +mario_kart_frame107_wheel3: + symbol: gKartMario107Wheel3 + type: texture + offset: 0x23328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_107_tlut_wheel_3 +mario_kart_frame108_wheel0: + symbol: gKartMario108Wheel0 + type: texture + offset: 0x2381C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_108_tlut_wheel_0 +mario_kart_frame108_wheel1: + symbol: gKartMario108Wheel1 + type: texture + offset: 0x2381C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_108_tlut_wheel_1 +mario_kart_frame108_wheel2: + symbol: gKartMario108Wheel2 + type: texture + offset: 0x2381C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_108_tlut_wheel_2 +mario_kart_frame108_wheel3: + symbol: gKartMario108Wheel3 + type: texture + offset: 0x2381C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_108_tlut_wheel_3 +mario_kart_frame109_wheel0: + symbol: gKartMario109Wheel0 + type: texture + offset: 0x23D2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_109_tlut_wheel_0 +mario_kart_frame109_wheel1: + symbol: gKartMario109Wheel1 + type: texture + offset: 0x23D2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_109_tlut_wheel_1 +mario_kart_frame109_wheel2: + symbol: gKartMario109Wheel2 + type: texture + offset: 0x23D2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_109_tlut_wheel_2 +mario_kart_frame109_wheel3: + symbol: gKartMario109Wheel3 + type: texture + offset: 0x23D2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_109_tlut_wheel_3 +mario_kart_frame110_wheel0: + symbol: gKartMario110Wheel0 + type: texture + offset: 0x24234 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_110_tlut_wheel_0 +mario_kart_frame110_wheel1: + symbol: gKartMario110Wheel1 + type: texture + offset: 0x24234 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_110_tlut_wheel_1 +mario_kart_frame110_wheel2: + symbol: gKartMario110Wheel2 + type: texture + offset: 0x24234 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_110_tlut_wheel_2 +mario_kart_frame110_wheel3: + symbol: gKartMario110Wheel3 + type: texture + offset: 0x24234 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_110_tlut_wheel_3 +mario_kart_frame111_wheel0: + symbol: gKartMario111Wheel0 + type: texture + offset: 0x24780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_111_tlut_wheel_0 +mario_kart_frame111_wheel1: + symbol: gKartMario111Wheel1 + type: texture + offset: 0x24780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_111_tlut_wheel_1 +mario_kart_frame111_wheel2: + symbol: gKartMario111Wheel2 + type: texture + offset: 0x24780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_111_tlut_wheel_2 +mario_kart_frame111_wheel3: + symbol: gKartMario111Wheel3 + type: texture + offset: 0x24780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_111_tlut_wheel_3 +mario_kart_frame112_wheel0: + symbol: gKartMario112Wheel0 + type: texture + offset: 0x24CD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_112_tlut_wheel_0 +mario_kart_frame112_wheel1: + symbol: gKartMario112Wheel1 + type: texture + offset: 0x24CD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_112_tlut_wheel_1 +mario_kart_frame112_wheel2: + symbol: gKartMario112Wheel2 + type: texture + offset: 0x24CD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_112_tlut_wheel_2 +mario_kart_frame112_wheel3: + symbol: gKartMario112Wheel3 + type: texture + offset: 0x24CD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_112_tlut_wheel_3 +mario_kart_frame113_wheel0: + symbol: gKartMario113Wheel0 + type: texture + offset: 0x25230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_113_tlut_wheel_0 +mario_kart_frame113_wheel1: + symbol: gKartMario113Wheel1 + type: texture + offset: 0x25230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_113_tlut_wheel_1 +mario_kart_frame113_wheel2: + symbol: gKartMario113Wheel2 + type: texture + offset: 0x25230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_113_tlut_wheel_2 +mario_kart_frame113_wheel3: + symbol: gKartMario113Wheel3 + type: texture + offset: 0x25230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_113_tlut_wheel_3 +mario_kart_frame114_wheel0: + symbol: gKartMario114Wheel0 + type: texture + offset: 0x257A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_114_tlut_wheel_0 +mario_kart_frame114_wheel1: + symbol: gKartMario114Wheel1 + type: texture + offset: 0x257A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_114_tlut_wheel_1 +mario_kart_frame114_wheel2: + symbol: gKartMario114Wheel2 + type: texture + offset: 0x257A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_114_tlut_wheel_2 +mario_kart_frame114_wheel3: + symbol: gKartMario114Wheel3 + type: texture + offset: 0x257A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_114_tlut_wheel_3 +mario_kart_frame115_wheel0: + symbol: gKartMario115Wheel0 + type: texture + offset: 0x25D10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_115_tlut_wheel_0 +mario_kart_frame115_wheel1: + symbol: gKartMario115Wheel1 + type: texture + offset: 0x25D10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_115_tlut_wheel_1 +mario_kart_frame115_wheel2: + symbol: gKartMario115Wheel2 + type: texture + offset: 0x25D10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_115_tlut_wheel_2 +mario_kart_frame115_wheel3: + symbol: gKartMario115Wheel3 + type: texture + offset: 0x25D10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_115_tlut_wheel_3 +mario_kart_frame116_wheel0: + symbol: gKartMario116Wheel0 + type: texture + offset: 0x26290 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_116_tlut_wheel_0 +mario_kart_frame116_wheel1: + symbol: gKartMario116Wheel1 + type: texture + offset: 0x26290 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_116_tlut_wheel_1 +mario_kart_frame116_wheel2: + symbol: gKartMario116Wheel2 + type: texture + offset: 0x26290 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_116_tlut_wheel_2 +mario_kart_frame116_wheel3: + symbol: gKartMario116Wheel3 + type: texture + offset: 0x26290 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_116_tlut_wheel_3 +mario_kart_frame117_wheel0: + symbol: gKartMario117Wheel0 + type: texture + offset: 0x2681C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_117_tlut_wheel_0 +mario_kart_frame117_wheel1: + symbol: gKartMario117Wheel1 + type: texture + offset: 0x2681C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_117_tlut_wheel_1 +mario_kart_frame117_wheel2: + symbol: gKartMario117Wheel2 + type: texture + offset: 0x2681C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_117_tlut_wheel_2 +mario_kart_frame117_wheel3: + symbol: gKartMario117Wheel3 + type: texture + offset: 0x2681C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_117_tlut_wheel_3 +mario_kart_frame118_wheel0: + symbol: gKartMario118Wheel0 + type: texture + offset: 0x26DB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_118_tlut_wheel_0 +mario_kart_frame118_wheel1: + symbol: gKartMario118Wheel1 + type: texture + offset: 0x26DB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_118_tlut_wheel_1 +mario_kart_frame118_wheel2: + symbol: gKartMario118Wheel2 + type: texture + offset: 0x26DB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_118_tlut_wheel_2 +mario_kart_frame118_wheel3: + symbol: gKartMario118Wheel3 + type: texture + offset: 0x26DB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_118_tlut_wheel_3 +mario_kart_frame119_wheel0: + symbol: gKartMario119Wheel0 + type: texture + offset: 0x27348 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_119_tlut_wheel_0 +mario_kart_frame119_wheel1: + symbol: gKartMario119Wheel1 + type: texture + offset: 0x27348 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_119_tlut_wheel_1 +mario_kart_frame119_wheel2: + symbol: gKartMario119Wheel2 + type: texture + offset: 0x27348 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_119_tlut_wheel_2 +mario_kart_frame119_wheel3: + symbol: gKartMario119Wheel3 + type: texture + offset: 0x27348 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_119_tlut_wheel_3 +mario_kart_frame120_wheel0: + symbol: gKartMario120Wheel0 + type: texture + offset: 0x2790C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_120_tlut_wheel_0 +mario_kart_frame120_wheel1: + symbol: gKartMario120Wheel1 + type: texture + offset: 0x2790C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_120_tlut_wheel_1 +mario_kart_frame120_wheel2: + symbol: gKartMario120Wheel2 + type: texture + offset: 0x2790C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_120_tlut_wheel_2 +mario_kart_frame120_wheel3: + symbol: gKartMario120Wheel3 + type: texture + offset: 0x2790C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_120_tlut_wheel_3 +mario_kart_frame121_wheel0: + symbol: gKartMario121Wheel0 + type: texture + offset: 0x27EC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_121_tlut_wheel_0 +mario_kart_frame121_wheel1: + symbol: gKartMario121Wheel1 + type: texture + offset: 0x27EC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_121_tlut_wheel_1 +mario_kart_frame121_wheel2: + symbol: gKartMario121Wheel2 + type: texture + offset: 0x27EC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_121_tlut_wheel_2 +mario_kart_frame121_wheel3: + symbol: gKartMario121Wheel3 + type: texture + offset: 0x27EC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_121_tlut_wheel_3 +mario_kart_frame122_wheel0: + symbol: gKartMario122Wheel0 + type: texture + offset: 0x28488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_122_tlut_wheel_0 +mario_kart_frame122_wheel1: + symbol: gKartMario122Wheel1 + type: texture + offset: 0x28488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_122_tlut_wheel_1 +mario_kart_frame122_wheel2: + symbol: gKartMario122Wheel2 + type: texture + offset: 0x28488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_122_tlut_wheel_2 +mario_kart_frame122_wheel3: + symbol: gKartMario122Wheel3 + type: texture + offset: 0x28488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_122_tlut_wheel_3 +mario_kart_frame123_wheel0: + symbol: gKartMario123Wheel0 + type: texture + offset: 0x28A3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_123_tlut_wheel_0 +mario_kart_frame123_wheel1: + symbol: gKartMario123Wheel1 + type: texture + offset: 0x28A3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_123_tlut_wheel_1 +mario_kart_frame123_wheel2: + symbol: gKartMario123Wheel2 + type: texture + offset: 0x28A3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_123_tlut_wheel_2 +mario_kart_frame123_wheel3: + symbol: gKartMario123Wheel3 + type: texture + offset: 0x28A3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_123_tlut_wheel_3 +mario_kart_frame124_wheel0: + symbol: gKartMario124Wheel0 + type: texture + offset: 0x2901C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_124_tlut_wheel_0 +mario_kart_frame124_wheel1: + symbol: gKartMario124Wheel1 + type: texture + offset: 0x2901C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_124_tlut_wheel_1 +mario_kart_frame124_wheel2: + symbol: gKartMario124Wheel2 + type: texture + offset: 0x2901C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_124_tlut_wheel_2 +mario_kart_frame124_wheel3: + symbol: gKartMario124Wheel3 + type: texture + offset: 0x2901C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_124_tlut_wheel_3 +mario_kart_frame125_wheel0: + symbol: gKartMario125Wheel0 + type: texture + offset: 0x295E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_125_tlut_wheel_0 +mario_kart_frame125_wheel1: + symbol: gKartMario125Wheel1 + type: texture + offset: 0x295E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_125_tlut_wheel_1 +mario_kart_frame125_wheel2: + symbol: gKartMario125Wheel2 + type: texture + offset: 0x295E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_125_tlut_wheel_2 +mario_kart_frame125_wheel3: + symbol: gKartMario125Wheel3 + type: texture + offset: 0x295E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_125_tlut_wheel_3 +mario_kart_frame126_wheel0: + symbol: gKartMario126Wheel0 + type: texture + offset: 0x29BB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_126_tlut_wheel_0 +mario_kart_frame126_wheel1: + symbol: gKartMario126Wheel1 + type: texture + offset: 0x29BB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_126_tlut_wheel_1 +mario_kart_frame126_wheel2: + symbol: gKartMario126Wheel2 + type: texture + offset: 0x29BB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_126_tlut_wheel_2 +mario_kart_frame126_wheel3: + symbol: gKartMario126Wheel3 + type: texture + offset: 0x29BB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_126_tlut_wheel_3 +mario_kart_frame127_wheel0: + symbol: gKartMario127Wheel0 + type: texture + offset: 0x2A0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_127_tlut_wheel_0 +mario_kart_frame127_wheel1: + symbol: gKartMario127Wheel1 + type: texture + offset: 0x2A0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_127_tlut_wheel_1 +mario_kart_frame127_wheel2: + symbol: gKartMario127Wheel2 + type: texture + offset: 0x2A0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_127_tlut_wheel_2 +mario_kart_frame127_wheel3: + symbol: gKartMario127Wheel3 + type: texture + offset: 0x2A0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_127_tlut_wheel_3 +mario_kart_frame128_wheel0: + symbol: gKartMario128Wheel0 + type: texture + offset: 0x2A5A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_128_tlut_wheel_0 +mario_kart_frame128_wheel1: + symbol: gKartMario128Wheel1 + type: texture + offset: 0x2A5A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_128_tlut_wheel_1 +mario_kart_frame128_wheel2: + symbol: gKartMario128Wheel2 + type: texture + offset: 0x2A5A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_128_tlut_wheel_2 +mario_kart_frame128_wheel3: + symbol: gKartMario128Wheel3 + type: texture + offset: 0x2A5A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_128_tlut_wheel_3 +mario_kart_frame129_wheel0: + symbol: gKartMario129Wheel0 + type: texture + offset: 0x2AABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_129_tlut_wheel_0 +mario_kart_frame129_wheel1: + symbol: gKartMario129Wheel1 + type: texture + offset: 0x2AABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_129_tlut_wheel_1 +mario_kart_frame129_wheel2: + symbol: gKartMario129Wheel2 + type: texture + offset: 0x2AABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_129_tlut_wheel_2 +mario_kart_frame129_wheel3: + symbol: gKartMario129Wheel3 + type: texture + offset: 0x2AABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_129_tlut_wheel_3 +mario_kart_frame130_wheel0: + symbol: gKartMario130Wheel0 + type: texture + offset: 0x2AFCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_130_tlut_wheel_0 +mario_kart_frame130_wheel1: + symbol: gKartMario130Wheel1 + type: texture + offset: 0x2AFCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_130_tlut_wheel_1 +mario_kart_frame130_wheel2: + symbol: gKartMario130Wheel2 + type: texture + offset: 0x2AFCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_130_tlut_wheel_2 +mario_kart_frame130_wheel3: + symbol: gKartMario130Wheel3 + type: texture + offset: 0x2AFCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_130_tlut_wheel_3 +mario_kart_frame131_wheel0: + symbol: gKartMario131Wheel0 + type: texture + offset: 0x2B4FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_131_tlut_wheel_0 +mario_kart_frame131_wheel1: + symbol: gKartMario131Wheel1 + type: texture + offset: 0x2B4FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_131_tlut_wheel_1 +mario_kart_frame131_wheel2: + symbol: gKartMario131Wheel2 + type: texture + offset: 0x2B4FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_131_tlut_wheel_2 +mario_kart_frame131_wheel3: + symbol: gKartMario131Wheel3 + type: texture + offset: 0x2B4FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_131_tlut_wheel_3 +mario_kart_frame132_wheel0: + symbol: gKartMario132Wheel0 + type: texture + offset: 0x2BA38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_132_tlut_wheel_0 +mario_kart_frame132_wheel1: + symbol: gKartMario132Wheel1 + type: texture + offset: 0x2BA38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_132_tlut_wheel_1 +mario_kart_frame132_wheel2: + symbol: gKartMario132Wheel2 + type: texture + offset: 0x2BA38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_132_tlut_wheel_2 +mario_kart_frame132_wheel3: + symbol: gKartMario132Wheel3 + type: texture + offset: 0x2BA38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_132_tlut_wheel_3 +mario_kart_frame133_wheel0: + symbol: gKartMario133Wheel0 + type: texture + offset: 0x2BF84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_133_tlut_wheel_0 +mario_kart_frame133_wheel1: + symbol: gKartMario133Wheel1 + type: texture + offset: 0x2BF84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_133_tlut_wheel_1 +mario_kart_frame133_wheel2: + symbol: gKartMario133Wheel2 + type: texture + offset: 0x2BF84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_133_tlut_wheel_2 +mario_kart_frame133_wheel3: + symbol: gKartMario133Wheel3 + type: texture + offset: 0x2BF84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_133_tlut_wheel_3 +mario_kart_frame134_wheel0: + symbol: gKartMario134Wheel0 + type: texture + offset: 0x2C4D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_134_tlut_wheel_0 +mario_kart_frame134_wheel1: + symbol: gKartMario134Wheel1 + type: texture + offset: 0x2C4D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_134_tlut_wheel_1 +mario_kart_frame134_wheel2: + symbol: gKartMario134Wheel2 + type: texture + offset: 0x2C4D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_134_tlut_wheel_2 +mario_kart_frame134_wheel3: + symbol: gKartMario134Wheel3 + type: texture + offset: 0x2C4D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_134_tlut_wheel_3 +mario_kart_frame135_wheel0: + symbol: gKartMario135Wheel0 + type: texture + offset: 0x2CA3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_135_tlut_wheel_0 +mario_kart_frame135_wheel1: + symbol: gKartMario135Wheel1 + type: texture + offset: 0x2CA3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_135_tlut_wheel_1 +mario_kart_frame135_wheel2: + symbol: gKartMario135Wheel2 + type: texture + offset: 0x2CA3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_135_tlut_wheel_2 +mario_kart_frame135_wheel3: + symbol: gKartMario135Wheel3 + type: texture + offset: 0x2CA3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_135_tlut_wheel_3 +mario_kart_frame136_wheel0: + symbol: gKartMario136Wheel0 + type: texture + offset: 0x2CFA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_136_tlut_wheel_0 +mario_kart_frame136_wheel1: + symbol: gKartMario136Wheel1 + type: texture + offset: 0x2CFA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_136_tlut_wheel_1 +mario_kart_frame136_wheel2: + symbol: gKartMario136Wheel2 + type: texture + offset: 0x2CFA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_136_tlut_wheel_2 +mario_kart_frame136_wheel3: + symbol: gKartMario136Wheel3 + type: texture + offset: 0x2CFA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_136_tlut_wheel_3 +mario_kart_frame137_wheel0: + symbol: gKartMario137Wheel0 + type: texture + offset: 0x2D530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_137_tlut_wheel_0 +mario_kart_frame137_wheel1: + symbol: gKartMario137Wheel1 + type: texture + offset: 0x2D530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_137_tlut_wheel_1 +mario_kart_frame137_wheel2: + symbol: gKartMario137Wheel2 + type: texture + offset: 0x2D530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_137_tlut_wheel_2 +mario_kart_frame137_wheel3: + symbol: gKartMario137Wheel3 + type: texture + offset: 0x2D530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_137_tlut_wheel_3 +mario_kart_frame138_wheel0: + symbol: gKartMario138Wheel0 + type: texture + offset: 0x2DAC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_138_tlut_wheel_0 +mario_kart_frame138_wheel1: + symbol: gKartMario138Wheel1 + type: texture + offset: 0x2DAC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_138_tlut_wheel_1 +mario_kart_frame138_wheel2: + symbol: gKartMario138Wheel2 + type: texture + offset: 0x2DAC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_138_tlut_wheel_2 +mario_kart_frame138_wheel3: + symbol: gKartMario138Wheel3 + type: texture + offset: 0x2DAC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_138_tlut_wheel_3 +mario_kart_frame139_wheel0: + symbol: gKartMario139Wheel0 + type: texture + offset: 0x2E05C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_139_tlut_wheel_0 +mario_kart_frame139_wheel1: + symbol: gKartMario139Wheel1 + type: texture + offset: 0x2E05C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_139_tlut_wheel_1 +mario_kart_frame139_wheel2: + symbol: gKartMario139Wheel2 + type: texture + offset: 0x2E05C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_139_tlut_wheel_2 +mario_kart_frame139_wheel3: + symbol: gKartMario139Wheel3 + type: texture + offset: 0x2E05C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_139_tlut_wheel_3 +mario_kart_frame140_wheel0: + symbol: gKartMario140Wheel0 + type: texture + offset: 0x2E5F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_140_tlut_wheel_0 +mario_kart_frame140_wheel1: + symbol: gKartMario140Wheel1 + type: texture + offset: 0x2E5F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_140_tlut_wheel_1 +mario_kart_frame140_wheel2: + symbol: gKartMario140Wheel2 + type: texture + offset: 0x2E5F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_140_tlut_wheel_2 +mario_kart_frame140_wheel3: + symbol: gKartMario140Wheel3 + type: texture + offset: 0x2E5F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_140_tlut_wheel_3 +mario_kart_frame141_wheel0: + symbol: gKartMario141Wheel0 + type: texture + offset: 0x2EBA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_141_tlut_wheel_0 +mario_kart_frame141_wheel1: + symbol: gKartMario141Wheel1 + type: texture + offset: 0x2EBA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_141_tlut_wheel_1 +mario_kart_frame141_wheel2: + symbol: gKartMario141Wheel2 + type: texture + offset: 0x2EBA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_141_tlut_wheel_2 +mario_kart_frame141_wheel3: + symbol: gKartMario141Wheel3 + type: texture + offset: 0x2EBA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_141_tlut_wheel_3 +mario_kart_frame142_wheel0: + symbol: gKartMario142Wheel0 + type: texture + offset: 0x2F170 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_142_tlut_wheel_0 +mario_kart_frame142_wheel1: + symbol: gKartMario142Wheel1 + type: texture + offset: 0x2F170 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_142_tlut_wheel_1 +mario_kart_frame142_wheel2: + symbol: gKartMario142Wheel2 + type: texture + offset: 0x2F170 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_142_tlut_wheel_2 +mario_kart_frame142_wheel3: + symbol: gKartMario142Wheel3 + type: texture + offset: 0x2F170 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_142_tlut_wheel_3 +mario_kart_frame143_wheel0: + symbol: gKartMario143Wheel0 + type: texture + offset: 0x2F738 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_143_tlut_wheel_0 +mario_kart_frame143_wheel1: + symbol: gKartMario143Wheel1 + type: texture + offset: 0x2F738 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_143_tlut_wheel_1 +mario_kart_frame143_wheel2: + symbol: gKartMario143Wheel2 + type: texture + offset: 0x2F738 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_143_tlut_wheel_2 +mario_kart_frame143_wheel3: + symbol: gKartMario143Wheel3 + type: texture + offset: 0x2F738 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_143_tlut_wheel_3 +mario_kart_frame144_wheel0: + symbol: gKartMario144Wheel0 + type: texture + offset: 0x2FCF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_144_tlut_wheel_0 +mario_kart_frame144_wheel1: + symbol: gKartMario144Wheel1 + type: texture + offset: 0x2FCF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_144_tlut_wheel_1 +mario_kart_frame144_wheel2: + symbol: gKartMario144Wheel2 + type: texture + offset: 0x2FCF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_144_tlut_wheel_2 +mario_kart_frame144_wheel3: + symbol: gKartMario144Wheel3 + type: texture + offset: 0x2FCF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_144_tlut_wheel_3 +mario_kart_frame145_wheel0: + symbol: gKartMario145Wheel0 + type: texture + offset: 0x302BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_145_tlut_wheel_0 +mario_kart_frame145_wheel1: + symbol: gKartMario145Wheel1 + type: texture + offset: 0x302BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_145_tlut_wheel_1 +mario_kart_frame145_wheel2: + symbol: gKartMario145Wheel2 + type: texture + offset: 0x302BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_145_tlut_wheel_2 +mario_kart_frame145_wheel3: + symbol: gKartMario145Wheel3 + type: texture + offset: 0x302BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_145_tlut_wheel_3 +mario_kart_frame146_wheel0: + symbol: gKartMario146Wheel0 + type: texture + offset: 0x30884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_146_tlut_wheel_0 +mario_kart_frame146_wheel1: + symbol: gKartMario146Wheel1 + type: texture + offset: 0x30884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_146_tlut_wheel_1 +mario_kart_frame146_wheel2: + symbol: gKartMario146Wheel2 + type: texture + offset: 0x30884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_146_tlut_wheel_2 +mario_kart_frame146_wheel3: + symbol: gKartMario146Wheel3 + type: texture + offset: 0x30884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_146_tlut_wheel_3 +mario_kart_frame147_wheel0: + symbol: gKartMario147Wheel0 + type: texture + offset: 0x30E64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_147_tlut_wheel_0 +mario_kart_frame147_wheel1: + symbol: gKartMario147Wheel1 + type: texture + offset: 0x30E64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_147_tlut_wheel_1 +mario_kart_frame147_wheel2: + symbol: gKartMario147Wheel2 + type: texture + offset: 0x30E64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_147_tlut_wheel_2 +mario_kart_frame147_wheel3: + symbol: gKartMario147Wheel3 + type: texture + offset: 0x30E64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_147_tlut_wheel_3 +mario_kart_frame148_wheel0: + symbol: gKartMario148Wheel0 + type: texture + offset: 0x31380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_148_tlut_wheel_0 +mario_kart_frame148_wheel1: + symbol: gKartMario148Wheel1 + type: texture + offset: 0x31380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_148_tlut_wheel_1 +mario_kart_frame148_wheel2: + symbol: gKartMario148Wheel2 + type: texture + offset: 0x31380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_148_tlut_wheel_2 +mario_kart_frame148_wheel3: + symbol: gKartMario148Wheel3 + type: texture + offset: 0x31380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_148_tlut_wheel_3 +mario_kart_frame149_wheel0: + symbol: gKartMario149Wheel0 + type: texture + offset: 0x3189C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_149_tlut_wheel_0 +mario_kart_frame149_wheel1: + symbol: gKartMario149Wheel1 + type: texture + offset: 0x3189C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_149_tlut_wheel_1 +mario_kart_frame149_wheel2: + symbol: gKartMario149Wheel2 + type: texture + offset: 0x3189C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_149_tlut_wheel_2 +mario_kart_frame149_wheel3: + symbol: gKartMario149Wheel3 + type: texture + offset: 0x3189C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_149_tlut_wheel_3 +mario_kart_frame150_wheel0: + symbol: gKartMario150Wheel0 + type: texture + offset: 0x31DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_150_tlut_wheel_0 +mario_kart_frame150_wheel1: + symbol: gKartMario150Wheel1 + type: texture + offset: 0x31DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_150_tlut_wheel_1 +mario_kart_frame150_wheel2: + symbol: gKartMario150Wheel2 + type: texture + offset: 0x31DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_150_tlut_wheel_2 +mario_kart_frame150_wheel3: + symbol: gKartMario150Wheel3 + type: texture + offset: 0x31DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_150_tlut_wheel_3 +mario_kart_frame151_wheel0: + symbol: gKartMario151Wheel0 + type: texture + offset: 0x322FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_151_tlut_wheel_0 +mario_kart_frame151_wheel1: + symbol: gKartMario151Wheel1 + type: texture + offset: 0x322FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_151_tlut_wheel_1 +mario_kart_frame151_wheel2: + symbol: gKartMario151Wheel2 + type: texture + offset: 0x322FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_151_tlut_wheel_2 +mario_kart_frame151_wheel3: + symbol: gKartMario151Wheel3 + type: texture + offset: 0x322FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_151_tlut_wheel_3 +mario_kart_frame152_wheel0: + symbol: gKartMario152Wheel0 + type: texture + offset: 0x32848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_152_tlut_wheel_0 +mario_kart_frame152_wheel1: + symbol: gKartMario152Wheel1 + type: texture + offset: 0x32848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_152_tlut_wheel_1 +mario_kart_frame152_wheel2: + symbol: gKartMario152Wheel2 + type: texture + offset: 0x32848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_152_tlut_wheel_2 +mario_kart_frame152_wheel3: + symbol: gKartMario152Wheel3 + type: texture + offset: 0x32848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_152_tlut_wheel_3 +mario_kart_frame153_wheel0: + symbol: gKartMario153Wheel0 + type: texture + offset: 0x32D80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_153_tlut_wheel_0 +mario_kart_frame153_wheel1: + symbol: gKartMario153Wheel1 + type: texture + offset: 0x32D80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_153_tlut_wheel_1 +mario_kart_frame153_wheel2: + symbol: gKartMario153Wheel2 + type: texture + offset: 0x32D80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_153_tlut_wheel_2 +mario_kart_frame153_wheel3: + symbol: gKartMario153Wheel3 + type: texture + offset: 0x32D80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_153_tlut_wheel_3 +mario_kart_frame154_wheel0: + symbol: gKartMario154Wheel0 + type: texture + offset: 0x332E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_154_tlut_wheel_0 +mario_kart_frame154_wheel1: + symbol: gKartMario154Wheel1 + type: texture + offset: 0x332E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_154_tlut_wheel_1 +mario_kart_frame154_wheel2: + symbol: gKartMario154Wheel2 + type: texture + offset: 0x332E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_154_tlut_wheel_2 +mario_kart_frame154_wheel3: + symbol: gKartMario154Wheel3 + type: texture + offset: 0x332E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_154_tlut_wheel_3 +mario_kart_frame155_wheel0: + symbol: gKartMario155Wheel0 + type: texture + offset: 0x33838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_155_tlut_wheel_0 +mario_kart_frame155_wheel1: + symbol: gKartMario155Wheel1 + type: texture + offset: 0x33838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_155_tlut_wheel_1 +mario_kart_frame155_wheel2: + symbol: gKartMario155Wheel2 + type: texture + offset: 0x33838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_155_tlut_wheel_2 +mario_kart_frame155_wheel3: + symbol: gKartMario155Wheel3 + type: texture + offset: 0x33838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_155_tlut_wheel_3 +mario_kart_frame156_wheel0: + symbol: gKartMario156Wheel0 + type: texture + offset: 0x33DC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_156_tlut_wheel_0 +mario_kart_frame156_wheel1: + symbol: gKartMario156Wheel1 + type: texture + offset: 0x33DC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_156_tlut_wheel_1 +mario_kart_frame156_wheel2: + symbol: gKartMario156Wheel2 + type: texture + offset: 0x33DC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_156_tlut_wheel_2 +mario_kart_frame156_wheel3: + symbol: gKartMario156Wheel3 + type: texture + offset: 0x33DC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_156_tlut_wheel_3 +mario_kart_frame157_wheel0: + symbol: gKartMario157Wheel0 + type: texture + offset: 0x34350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_157_tlut_wheel_0 +mario_kart_frame157_wheel1: + symbol: gKartMario157Wheel1 + type: texture + offset: 0x34350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_157_tlut_wheel_1 +mario_kart_frame157_wheel2: + symbol: gKartMario157Wheel2 + type: texture + offset: 0x34350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_157_tlut_wheel_2 +mario_kart_frame157_wheel3: + symbol: gKartMario157Wheel3 + type: texture + offset: 0x34350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_157_tlut_wheel_3 +mario_kart_frame158_wheel0: + symbol: gKartMario158Wheel0 + type: texture + offset: 0x348FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_158_tlut_wheel_0 +mario_kart_frame158_wheel1: + symbol: gKartMario158Wheel1 + type: texture + offset: 0x348FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_158_tlut_wheel_1 +mario_kart_frame158_wheel2: + symbol: gKartMario158Wheel2 + type: texture + offset: 0x348FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_158_tlut_wheel_2 +mario_kart_frame158_wheel3: + symbol: gKartMario158Wheel3 + type: texture + offset: 0x348FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_158_tlut_wheel_3 +mario_kart_frame159_wheel0: + symbol: gKartMario159Wheel0 + type: texture + offset: 0x34EAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_159_tlut_wheel_0 +mario_kart_frame159_wheel1: + symbol: gKartMario159Wheel1 + type: texture + offset: 0x34EAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_159_tlut_wheel_1 +mario_kart_frame159_wheel2: + symbol: gKartMario159Wheel2 + type: texture + offset: 0x34EAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_159_tlut_wheel_2 +mario_kart_frame159_wheel3: + symbol: gKartMario159Wheel3 + type: texture + offset: 0x34EAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_159_tlut_wheel_3 +mario_kart_frame160_wheel0: + symbol: gKartMario160Wheel0 + type: texture + offset: 0x35460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_160_tlut_wheel_0 +mario_kart_frame160_wheel1: + symbol: gKartMario160Wheel1 + type: texture + offset: 0x35460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_160_tlut_wheel_1 +mario_kart_frame160_wheel2: + symbol: gKartMario160Wheel2 + type: texture + offset: 0x35460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_160_tlut_wheel_2 +mario_kart_frame160_wheel3: + symbol: gKartMario160Wheel3 + type: texture + offset: 0x35460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_160_tlut_wheel_3 +mario_kart_frame161_wheel0: + symbol: gKartMario161Wheel0 + type: texture + offset: 0x35A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_161_tlut_wheel_0 +mario_kart_frame161_wheel1: + symbol: gKartMario161Wheel1 + type: texture + offset: 0x35A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_161_tlut_wheel_1 +mario_kart_frame161_wheel2: + symbol: gKartMario161Wheel2 + type: texture + offset: 0x35A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_161_tlut_wheel_2 +mario_kart_frame161_wheel3: + symbol: gKartMario161Wheel3 + type: texture + offset: 0x35A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_161_tlut_wheel_3 +mario_kart_frame162_wheel0: + symbol: gKartMario162Wheel0 + type: texture + offset: 0x35FB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_162_tlut_wheel_0 +mario_kart_frame162_wheel1: + symbol: gKartMario162Wheel1 + type: texture + offset: 0x35FB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_162_tlut_wheel_1 +mario_kart_frame162_wheel2: + symbol: gKartMario162Wheel2 + type: texture + offset: 0x35FB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_162_tlut_wheel_2 +mario_kart_frame162_wheel3: + symbol: gKartMario162Wheel3 + type: texture + offset: 0x35FB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_162_tlut_wheel_3 +mario_kart_frame163_wheel0: + symbol: gKartMario163Wheel0 + type: texture + offset: 0x36584 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_163_tlut_wheel_0 +mario_kart_frame163_wheel1: + symbol: gKartMario163Wheel1 + type: texture + offset: 0x36584 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_163_tlut_wheel_1 +mario_kart_frame163_wheel2: + symbol: gKartMario163Wheel2 + type: texture + offset: 0x36584 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_163_tlut_wheel_2 +mario_kart_frame163_wheel3: + symbol: gKartMario163Wheel3 + type: texture + offset: 0x36584 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_163_tlut_wheel_3 +mario_kart_frame164_wheel0: + symbol: gKartMario164Wheel0 + type: texture + offset: 0x36B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_164_tlut_wheel_0 +mario_kart_frame164_wheel1: + symbol: gKartMario164Wheel1 + type: texture + offset: 0x36B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_164_tlut_wheel_1 +mario_kart_frame164_wheel2: + symbol: gKartMario164Wheel2 + type: texture + offset: 0x36B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_164_tlut_wheel_2 +mario_kart_frame164_wheel3: + symbol: gKartMario164Wheel3 + type: texture + offset: 0x36B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_164_tlut_wheel_3 +mario_kart_frame165_wheel0: + symbol: gKartMario165Wheel0 + type: texture + offset: 0x37114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_165_tlut_wheel_0 +mario_kart_frame165_wheel1: + symbol: gKartMario165Wheel1 + type: texture + offset: 0x37114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_165_tlut_wheel_1 +mario_kart_frame165_wheel2: + symbol: gKartMario165Wheel2 + type: texture + offset: 0x37114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_165_tlut_wheel_2 +mario_kart_frame165_wheel3: + symbol: gKartMario165Wheel3 + type: texture + offset: 0x37114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_165_tlut_wheel_3 +mario_kart_frame166_wheel0: + symbol: gKartMario166Wheel0 + type: texture + offset: 0x37704 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_166_tlut_wheel_0 +mario_kart_frame166_wheel1: + symbol: gKartMario166Wheel1 + type: texture + offset: 0x37704 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_166_tlut_wheel_1 +mario_kart_frame166_wheel2: + symbol: gKartMario166Wheel2 + type: texture + offset: 0x37704 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_166_tlut_wheel_2 +mario_kart_frame166_wheel3: + symbol: gKartMario166Wheel3 + type: texture + offset: 0x37704 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_166_tlut_wheel_3 +mario_kart_frame167_wheel0: + symbol: gKartMario167Wheel0 + type: texture + offset: 0x37CDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_167_tlut_wheel_0 +mario_kart_frame167_wheel1: + symbol: gKartMario167Wheel1 + type: texture + offset: 0x37CDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_167_tlut_wheel_1 +mario_kart_frame167_wheel2: + symbol: gKartMario167Wheel2 + type: texture + offset: 0x37CDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_167_tlut_wheel_2 +mario_kart_frame167_wheel3: + symbol: gKartMario167Wheel3 + type: texture + offset: 0x37CDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_167_tlut_wheel_3 +mario_kart_frame168_wheel0: + symbol: gKartMario168Wheel0 + type: texture + offset: 0x382C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_168_tlut_wheel_0 +mario_kart_frame168_wheel1: + symbol: gKartMario168Wheel1 + type: texture + offset: 0x382C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_168_tlut_wheel_1 +mario_kart_frame168_wheel2: + symbol: gKartMario168Wheel2 + type: texture + offset: 0x382C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_168_tlut_wheel_2 +mario_kart_frame168_wheel3: + symbol: gKartMario168Wheel3 + type: texture + offset: 0x382C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_168_tlut_wheel_3 +mario_kart_frame169_wheel0: + symbol: gKartMario169Wheel0 + type: texture + offset: 0x387E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_169_tlut_wheel_0 +mario_kart_frame169_wheel1: + symbol: gKartMario169Wheel1 + type: texture + offset: 0x387E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_169_tlut_wheel_1 +mario_kart_frame169_wheel2: + symbol: gKartMario169Wheel2 + type: texture + offset: 0x387E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_169_tlut_wheel_2 +mario_kart_frame169_wheel3: + symbol: gKartMario169Wheel3 + type: texture + offset: 0x387E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_169_tlut_wheel_3 +mario_kart_frame170_wheel0: + symbol: gKartMario170Wheel0 + type: texture + offset: 0x38D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_170_tlut_wheel_0 +mario_kart_frame170_wheel1: + symbol: gKartMario170Wheel1 + type: texture + offset: 0x38D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_170_tlut_wheel_1 +mario_kart_frame170_wheel2: + symbol: gKartMario170Wheel2 + type: texture + offset: 0x38D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_170_tlut_wheel_2 +mario_kart_frame170_wheel3: + symbol: gKartMario170Wheel3 + type: texture + offset: 0x38D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_170_tlut_wheel_3 +mario_kart_frame171_wheel0: + symbol: gKartMario171Wheel0 + type: texture + offset: 0x39260 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_171_tlut_wheel_0 +mario_kart_frame171_wheel1: + symbol: gKartMario171Wheel1 + type: texture + offset: 0x39260 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_171_tlut_wheel_1 +mario_kart_frame171_wheel2: + symbol: gKartMario171Wheel2 + type: texture + offset: 0x39260 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_171_tlut_wheel_2 +mario_kart_frame171_wheel3: + symbol: gKartMario171Wheel3 + type: texture + offset: 0x39260 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_171_tlut_wheel_3 +mario_kart_frame172_wheel0: + symbol: gKartMario172Wheel0 + type: texture + offset: 0x39790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_172_tlut_wheel_0 +mario_kart_frame172_wheel1: + symbol: gKartMario172Wheel1 + type: texture + offset: 0x39790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_172_tlut_wheel_1 +mario_kart_frame172_wheel2: + symbol: gKartMario172Wheel2 + type: texture + offset: 0x39790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_172_tlut_wheel_2 +mario_kart_frame172_wheel3: + symbol: gKartMario172Wheel3 + type: texture + offset: 0x39790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_172_tlut_wheel_3 +mario_kart_frame173_wheel0: + symbol: gKartMario173Wheel0 + type: texture + offset: 0x39CD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_173_tlut_wheel_0 +mario_kart_frame173_wheel1: + symbol: gKartMario173Wheel1 + type: texture + offset: 0x39CD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_173_tlut_wheel_1 +mario_kart_frame173_wheel2: + symbol: gKartMario173Wheel2 + type: texture + offset: 0x39CD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_173_tlut_wheel_2 +mario_kart_frame173_wheel3: + symbol: gKartMario173Wheel3 + type: texture + offset: 0x39CD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_173_tlut_wheel_3 +mario_kart_frame174_wheel0: + symbol: gKartMario174Wheel0 + type: texture + offset: 0x3A230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_174_tlut_wheel_0 +mario_kart_frame174_wheel1: + symbol: gKartMario174Wheel1 + type: texture + offset: 0x3A230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_174_tlut_wheel_1 +mario_kart_frame174_wheel2: + symbol: gKartMario174Wheel2 + type: texture + offset: 0x3A230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_174_tlut_wheel_2 +mario_kart_frame174_wheel3: + symbol: gKartMario174Wheel3 + type: texture + offset: 0x3A230 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_174_tlut_wheel_3 +mario_kart_frame175_wheel0: + symbol: gKartMario175Wheel0 + type: texture + offset: 0x3A7AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_175_tlut_wheel_0 +mario_kart_frame175_wheel1: + symbol: gKartMario175Wheel1 + type: texture + offset: 0x3A7AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_175_tlut_wheel_1 +mario_kart_frame175_wheel2: + symbol: gKartMario175Wheel2 + type: texture + offset: 0x3A7AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_175_tlut_wheel_2 +mario_kart_frame175_wheel3: + symbol: gKartMario175Wheel3 + type: texture + offset: 0x3A7AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_175_tlut_wheel_3 +mario_kart_frame176_wheel0: + symbol: gKartMario176Wheel0 + type: texture + offset: 0x3AD20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_176_tlut_wheel_0 +mario_kart_frame176_wheel1: + symbol: gKartMario176Wheel1 + type: texture + offset: 0x3AD20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_176_tlut_wheel_1 +mario_kart_frame176_wheel2: + symbol: gKartMario176Wheel2 + type: texture + offset: 0x3AD20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_176_tlut_wheel_2 +mario_kart_frame176_wheel3: + symbol: gKartMario176Wheel3 + type: texture + offset: 0x3AD20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_176_tlut_wheel_3 +mario_kart_frame177_wheel0: + symbol: gKartMario177Wheel0 + type: texture + offset: 0x3B2A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_177_tlut_wheel_0 +mario_kart_frame177_wheel1: + symbol: gKartMario177Wheel1 + type: texture + offset: 0x3B2A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_177_tlut_wheel_1 +mario_kart_frame177_wheel2: + symbol: gKartMario177Wheel2 + type: texture + offset: 0x3B2A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_177_tlut_wheel_2 +mario_kart_frame177_wheel3: + symbol: gKartMario177Wheel3 + type: texture + offset: 0x3B2A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_177_tlut_wheel_3 +mario_kart_frame178_wheel0: + symbol: gKartMario178Wheel0 + type: texture + offset: 0x3B834 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_178_tlut_wheel_0 +mario_kart_frame178_wheel1: + symbol: gKartMario178Wheel1 + type: texture + offset: 0x3B834 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_178_tlut_wheel_1 +mario_kart_frame178_wheel2: + symbol: gKartMario178Wheel2 + type: texture + offset: 0x3B834 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_178_tlut_wheel_2 +mario_kart_frame178_wheel3: + symbol: gKartMario178Wheel3 + type: texture + offset: 0x3B834 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_178_tlut_wheel_3 +mario_kart_frame179_wheel0: + symbol: gKartMario179Wheel0 + type: texture + offset: 0x3BDDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_179_tlut_wheel_0 +mario_kart_frame179_wheel1: + symbol: gKartMario179Wheel1 + type: texture + offset: 0x3BDDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_179_tlut_wheel_1 +mario_kart_frame179_wheel2: + symbol: gKartMario179Wheel2 + type: texture + offset: 0x3BDDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_179_tlut_wheel_2 +mario_kart_frame179_wheel3: + symbol: gKartMario179Wheel3 + type: texture + offset: 0x3BDDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_179_tlut_wheel_3 +mario_kart_frame180_wheel0: + symbol: gKartMario180Wheel0 + type: texture + offset: 0x3C388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_180_tlut_wheel_0 +mario_kart_frame180_wheel1: + symbol: gKartMario180Wheel1 + type: texture + offset: 0x3C388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_180_tlut_wheel_1 +mario_kart_frame180_wheel2: + symbol: gKartMario180Wheel2 + type: texture + offset: 0x3C388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_180_tlut_wheel_2 +mario_kart_frame180_wheel3: + symbol: gKartMario180Wheel3 + type: texture + offset: 0x3C388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_180_tlut_wheel_3 +mario_kart_frame181_wheel0: + symbol: gKartMario181Wheel0 + type: texture + offset: 0x3C940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_181_tlut_wheel_0 +mario_kart_frame181_wheel1: + symbol: gKartMario181Wheel1 + type: texture + offset: 0x3C940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_181_tlut_wheel_1 +mario_kart_frame181_wheel2: + symbol: gKartMario181Wheel2 + type: texture + offset: 0x3C940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_181_tlut_wheel_2 +mario_kart_frame181_wheel3: + symbol: gKartMario181Wheel3 + type: texture + offset: 0x3C940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_181_tlut_wheel_3 +mario_kart_frame182_wheel0: + symbol: gKartMario182Wheel0 + type: texture + offset: 0x3CEF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_182_tlut_wheel_0 +mario_kart_frame182_wheel1: + symbol: gKartMario182Wheel1 + type: texture + offset: 0x3CEF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_182_tlut_wheel_1 +mario_kart_frame182_wheel2: + symbol: gKartMario182Wheel2 + type: texture + offset: 0x3CEF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_182_tlut_wheel_2 +mario_kart_frame182_wheel3: + symbol: gKartMario182Wheel3 + type: texture + offset: 0x3CEF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_182_tlut_wheel_3 +mario_kart_frame183_wheel0: + symbol: gKartMario183Wheel0 + type: texture + offset: 0x3D4C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_183_tlut_wheel_0 +mario_kart_frame183_wheel1: + symbol: gKartMario183Wheel1 + type: texture + offset: 0x3D4C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_183_tlut_wheel_1 +mario_kart_frame183_wheel2: + symbol: gKartMario183Wheel2 + type: texture + offset: 0x3D4C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_183_tlut_wheel_2 +mario_kart_frame183_wheel3: + symbol: gKartMario183Wheel3 + type: texture + offset: 0x3D4C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_183_tlut_wheel_3 +mario_kart_frame184_wheel0: + symbol: gKartMario184Wheel0 + type: texture + offset: 0x3DA9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_184_tlut_wheel_0 +mario_kart_frame184_wheel1: + symbol: gKartMario184Wheel1 + type: texture + offset: 0x3DA9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_184_tlut_wheel_1 +mario_kart_frame184_wheel2: + symbol: gKartMario184Wheel2 + type: texture + offset: 0x3DA9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_184_tlut_wheel_2 +mario_kart_frame184_wheel3: + symbol: gKartMario184Wheel3 + type: texture + offset: 0x3DA9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_184_tlut_wheel_3 +mario_kart_frame185_wheel0: + symbol: gKartMario185Wheel0 + type: texture + offset: 0x3E080 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_185_tlut_wheel_0 +mario_kart_frame185_wheel1: + symbol: gKartMario185Wheel1 + type: texture + offset: 0x3E080 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_185_tlut_wheel_1 +mario_kart_frame185_wheel2: + symbol: gKartMario185Wheel2 + type: texture + offset: 0x3E080 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_185_tlut_wheel_2 +mario_kart_frame185_wheel3: + symbol: gKartMario185Wheel3 + type: texture + offset: 0x3E080 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_185_tlut_wheel_3 +mario_kart_frame186_wheel0: + symbol: gKartMario186Wheel0 + type: texture + offset: 0x3E660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_186_tlut_wheel_0 +mario_kart_frame186_wheel1: + symbol: gKartMario186Wheel1 + type: texture + offset: 0x3E660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_186_tlut_wheel_1 +mario_kart_frame186_wheel2: + symbol: gKartMario186Wheel2 + type: texture + offset: 0x3E660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_186_tlut_wheel_2 +mario_kart_frame186_wheel3: + symbol: gKartMario186Wheel3 + type: texture + offset: 0x3E660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_186_tlut_wheel_3 +mario_kart_frame187_wheel0: + symbol: gKartMario187Wheel0 + type: texture + offset: 0x3EC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_187_tlut_wheel_0 +mario_kart_frame187_wheel1: + symbol: gKartMario187Wheel1 + type: texture + offset: 0x3EC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_187_tlut_wheel_1 +mario_kart_frame187_wheel2: + symbol: gKartMario187Wheel2 + type: texture + offset: 0x3EC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_187_tlut_wheel_2 +mario_kart_frame187_wheel3: + symbol: gKartMario187Wheel3 + type: texture + offset: 0x3EC50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_187_tlut_wheel_3 +mario_kart_frame188_wheel0: + symbol: gKartMario188Wheel0 + type: texture + offset: 0x3F22C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_188_tlut_wheel_0 +mario_kart_frame188_wheel1: + symbol: gKartMario188Wheel1 + type: texture + offset: 0x3F22C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_188_tlut_wheel_1 +mario_kart_frame188_wheel2: + symbol: gKartMario188Wheel2 + type: texture + offset: 0x3F22C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_188_tlut_wheel_2 +mario_kart_frame188_wheel3: + symbol: gKartMario188Wheel3 + type: texture + offset: 0x3F22C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_188_tlut_wheel_3 +mario_kart_frame189_wheel0: + symbol: gKartMario189Wheel0 + type: texture + offset: 0x3F824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_189_tlut_wheel_0 +mario_kart_frame189_wheel1: + symbol: gKartMario189Wheel1 + type: texture + offset: 0x3F824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_189_tlut_wheel_1 +mario_kart_frame189_wheel2: + symbol: gKartMario189Wheel2 + type: texture + offset: 0x3F824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_189_tlut_wheel_2 +mario_kart_frame189_wheel3: + symbol: gKartMario189Wheel3 + type: texture + offset: 0x3F824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_189_tlut_wheel_3 +mario_kart_frame190_wheel0: + symbol: gKartMario190Wheel0 + type: texture + offset: 0x3FCC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_190_tlut_wheel_0 +mario_kart_frame190_wheel1: + symbol: gKartMario190Wheel1 + type: texture + offset: 0x3FCC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_190_tlut_wheel_1 +mario_kart_frame190_wheel2: + symbol: gKartMario190Wheel2 + type: texture + offset: 0x3FCC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_190_tlut_wheel_2 +mario_kart_frame190_wheel3: + symbol: gKartMario190Wheel3 + type: texture + offset: 0x3FCC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_190_tlut_wheel_3 +mario_kart_frame191_wheel0: + symbol: gKartMario191Wheel0 + type: texture + offset: 0x40198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_191_tlut_wheel_0 +mario_kart_frame191_wheel1: + symbol: gKartMario191Wheel1 + type: texture + offset: 0x40198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_191_tlut_wheel_1 +mario_kart_frame191_wheel2: + symbol: gKartMario191Wheel2 + type: texture + offset: 0x40198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_191_tlut_wheel_2 +mario_kart_frame191_wheel3: + symbol: gKartMario191Wheel3 + type: texture + offset: 0x40198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_191_tlut_wheel_3 +mario_kart_frame192_wheel0: + symbol: gKartMario192Wheel0 + type: texture + offset: 0x406A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_192_tlut_wheel_0 +mario_kart_frame192_wheel1: + symbol: gKartMario192Wheel1 + type: texture + offset: 0x406A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_192_tlut_wheel_1 +mario_kart_frame192_wheel2: + symbol: gKartMario192Wheel2 + type: texture + offset: 0x406A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_192_tlut_wheel_2 +mario_kart_frame192_wheel3: + symbol: gKartMario192Wheel3 + type: texture + offset: 0x406A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_192_tlut_wheel_3 +mario_kart_frame193_wheel0: + symbol: gKartMario193Wheel0 + type: texture + offset: 0x40BD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_193_tlut_wheel_0 +mario_kart_frame193_wheel1: + symbol: gKartMario193Wheel1 + type: texture + offset: 0x40BD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_193_tlut_wheel_1 +mario_kart_frame193_wheel2: + symbol: gKartMario193Wheel2 + type: texture + offset: 0x40BD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_193_tlut_wheel_2 +mario_kart_frame193_wheel3: + symbol: gKartMario193Wheel3 + type: texture + offset: 0x40BD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_193_tlut_wheel_3 +mario_kart_frame194_wheel0: + symbol: gKartMario194Wheel0 + type: texture + offset: 0x41138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_194_tlut_wheel_0 +mario_kart_frame194_wheel1: + symbol: gKartMario194Wheel1 + type: texture + offset: 0x41138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_194_tlut_wheel_1 +mario_kart_frame194_wheel2: + symbol: gKartMario194Wheel2 + type: texture + offset: 0x41138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_194_tlut_wheel_2 +mario_kart_frame194_wheel3: + symbol: gKartMario194Wheel3 + type: texture + offset: 0x41138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_194_tlut_wheel_3 +mario_kart_frame195_wheel0: + symbol: gKartMario195Wheel0 + type: texture + offset: 0x416B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_195_tlut_wheel_0 +mario_kart_frame195_wheel1: + symbol: gKartMario195Wheel1 + type: texture + offset: 0x416B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_195_tlut_wheel_1 +mario_kart_frame195_wheel2: + symbol: gKartMario195Wheel2 + type: texture + offset: 0x416B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_195_tlut_wheel_2 +mario_kart_frame195_wheel3: + symbol: gKartMario195Wheel3 + type: texture + offset: 0x416B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_195_tlut_wheel_3 +mario_kart_frame196_wheel0: + symbol: gKartMario196Wheel0 + type: texture + offset: 0x41C30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_196_tlut_wheel_0 +mario_kart_frame196_wheel1: + symbol: gKartMario196Wheel1 + type: texture + offset: 0x41C30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_196_tlut_wheel_1 +mario_kart_frame196_wheel2: + symbol: gKartMario196Wheel2 + type: texture + offset: 0x41C30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_196_tlut_wheel_2 +mario_kart_frame196_wheel3: + symbol: gKartMario196Wheel3 + type: texture + offset: 0x41C30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_196_tlut_wheel_3 +mario_kart_frame197_wheel0: + symbol: gKartMario197Wheel0 + type: texture + offset: 0x421E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_197_tlut_wheel_0 +mario_kart_frame197_wheel1: + symbol: gKartMario197Wheel1 + type: texture + offset: 0x421E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_197_tlut_wheel_1 +mario_kart_frame197_wheel2: + symbol: gKartMario197Wheel2 + type: texture + offset: 0x421E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_197_tlut_wheel_2 +mario_kart_frame197_wheel3: + symbol: gKartMario197Wheel3 + type: texture + offset: 0x421E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_197_tlut_wheel_3 +mario_kart_frame198_wheel0: + symbol: gKartMario198Wheel0 + type: texture + offset: 0x42794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_198_tlut_wheel_0 +mario_kart_frame198_wheel1: + symbol: gKartMario198Wheel1 + type: texture + offset: 0x42794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_198_tlut_wheel_1 +mario_kart_frame198_wheel2: + symbol: gKartMario198Wheel2 + type: texture + offset: 0x42794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_198_tlut_wheel_2 +mario_kart_frame198_wheel3: + symbol: gKartMario198Wheel3 + type: texture + offset: 0x42794 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_198_tlut_wheel_3 +mario_kart_frame199_wheel0: + symbol: gKartMario199Wheel0 + type: texture + offset: 0x42D80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_199_tlut_wheel_0 +mario_kart_frame199_wheel1: + symbol: gKartMario199Wheel1 + type: texture + offset: 0x42D80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_199_tlut_wheel_1 +mario_kart_frame199_wheel2: + symbol: gKartMario199Wheel2 + type: texture + offset: 0x42D80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_199_tlut_wheel_2 +mario_kart_frame199_wheel3: + symbol: gKartMario199Wheel3 + type: texture + offset: 0x42D80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_199_tlut_wheel_3 +mario_kart_frame200_wheel0: + symbol: gKartMario200Wheel0 + type: texture + offset: 0x4337C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_200_tlut_wheel_0 +mario_kart_frame200_wheel1: + symbol: gKartMario200Wheel1 + type: texture + offset: 0x4337C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_200_tlut_wheel_1 +mario_kart_frame200_wheel2: + symbol: gKartMario200Wheel2 + type: texture + offset: 0x4337C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_200_tlut_wheel_2 +mario_kart_frame200_wheel3: + symbol: gKartMario200Wheel3 + type: texture + offset: 0x4337C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_200_tlut_wheel_3 +mario_kart_frame201_wheel0: + symbol: gKartMario201Wheel0 + type: texture + offset: 0x43998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_201_tlut_wheel_0 +mario_kart_frame201_wheel1: + symbol: gKartMario201Wheel1 + type: texture + offset: 0x43998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_201_tlut_wheel_1 +mario_kart_frame201_wheel2: + symbol: gKartMario201Wheel2 + type: texture + offset: 0x43998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_201_tlut_wheel_2 +mario_kart_frame201_wheel3: + symbol: gKartMario201Wheel3 + type: texture + offset: 0x43998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_201_tlut_wheel_3 +mario_kart_frame202_wheel0: + symbol: gKartMario202Wheel0 + type: texture + offset: 0x43FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_202_tlut_wheel_0 +mario_kart_frame202_wheel1: + symbol: gKartMario202Wheel1 + type: texture + offset: 0x43FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_202_tlut_wheel_1 +mario_kart_frame202_wheel2: + symbol: gKartMario202Wheel2 + type: texture + offset: 0x43FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_202_tlut_wheel_2 +mario_kart_frame202_wheel3: + symbol: gKartMario202Wheel3 + type: texture + offset: 0x43FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_202_tlut_wheel_3 +mario_kart_frame203_wheel0: + symbol: gKartMario203Wheel0 + type: texture + offset: 0x44628 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_203_tlut_wheel_0 +mario_kart_frame203_wheel1: + symbol: gKartMario203Wheel1 + type: texture + offset: 0x44628 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_203_tlut_wheel_1 +mario_kart_frame203_wheel2: + symbol: gKartMario203Wheel2 + type: texture + offset: 0x44628 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_203_tlut_wheel_2 +mario_kart_frame203_wheel3: + symbol: gKartMario203Wheel3 + type: texture + offset: 0x44628 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_203_tlut_wheel_3 +mario_kart_frame204_wheel0: + symbol: gKartMario204Wheel0 + type: texture + offset: 0x44C84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_204_tlut_wheel_0 +mario_kart_frame204_wheel1: + symbol: gKartMario204Wheel1 + type: texture + offset: 0x44C84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_204_tlut_wheel_1 +mario_kart_frame204_wheel2: + symbol: gKartMario204Wheel2 + type: texture + offset: 0x44C84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_204_tlut_wheel_2 +mario_kart_frame204_wheel3: + symbol: gKartMario204Wheel3 + type: texture + offset: 0x44C84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_204_tlut_wheel_3 +mario_kart_frame205_wheel0: + symbol: gKartMario205Wheel0 + type: texture + offset: 0x452D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_205_tlut_wheel_0 +mario_kart_frame205_wheel1: + symbol: gKartMario205Wheel1 + type: texture + offset: 0x452D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_205_tlut_wheel_1 +mario_kart_frame205_wheel2: + symbol: gKartMario205Wheel2 + type: texture + offset: 0x452D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_205_tlut_wheel_2 +mario_kart_frame205_wheel3: + symbol: gKartMario205Wheel3 + type: texture + offset: 0x452D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_205_tlut_wheel_3 +mario_kart_frame206_wheel0: + symbol: gKartMario206Wheel0 + type: texture + offset: 0x45900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_206_tlut_wheel_0 +mario_kart_frame206_wheel1: + symbol: gKartMario206Wheel1 + type: texture + offset: 0x45900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_206_tlut_wheel_1 +mario_kart_frame206_wheel2: + symbol: gKartMario206Wheel2 + type: texture + offset: 0x45900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_206_tlut_wheel_2 +mario_kart_frame206_wheel3: + symbol: gKartMario206Wheel3 + type: texture + offset: 0x45900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_206_tlut_wheel_3 +mario_kart_frame207_wheel0: + symbol: gKartMario207Wheel0 + type: texture + offset: 0x45F34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_207_tlut_wheel_0 +mario_kart_frame207_wheel1: + symbol: gKartMario207Wheel1 + type: texture + offset: 0x45F34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_207_tlut_wheel_1 +mario_kart_frame207_wheel2: + symbol: gKartMario207Wheel2 + type: texture + offset: 0x45F34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_207_tlut_wheel_2 +mario_kart_frame207_wheel3: + symbol: gKartMario207Wheel3 + type: texture + offset: 0x45F34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_207_tlut_wheel_3 +mario_kart_frame208_wheel0: + symbol: gKartMario208Wheel0 + type: texture + offset: 0x46550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_208_tlut_wheel_0 +mario_kart_frame208_wheel1: + symbol: gKartMario208Wheel1 + type: texture + offset: 0x46550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_208_tlut_wheel_1 +mario_kart_frame208_wheel2: + symbol: gKartMario208Wheel2 + type: texture + offset: 0x46550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_208_tlut_wheel_2 +mario_kart_frame208_wheel3: + symbol: gKartMario208Wheel3 + type: texture + offset: 0x46550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_208_tlut_wheel_3 +mario_kart_frame209_wheel0: + symbol: gKartMario209Wheel0 + type: texture + offset: 0x46B3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_209_tlut_wheel_0 +mario_kart_frame209_wheel1: + symbol: gKartMario209Wheel1 + type: texture + offset: 0x46B3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_209_tlut_wheel_1 +mario_kart_frame209_wheel2: + symbol: gKartMario209Wheel2 + type: texture + offset: 0x46B3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_209_tlut_wheel_2 +mario_kart_frame209_wheel3: + symbol: gKartMario209Wheel3 + type: texture + offset: 0x46B3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_209_tlut_wheel_3 +mario_kart_frame210_wheel0: + symbol: gKartMario210Wheel0 + type: texture + offset: 0x4701C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_210_tlut_wheel_0 +mario_kart_frame210_wheel1: + symbol: gKartMario210Wheel1 + type: texture + offset: 0x4701C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_210_tlut_wheel_1 +mario_kart_frame210_wheel2: + symbol: gKartMario210Wheel2 + type: texture + offset: 0x4701C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_210_tlut_wheel_2 +mario_kart_frame210_wheel3: + symbol: gKartMario210Wheel3 + type: texture + offset: 0x4701C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_210_tlut_wheel_3 +mario_kart_frame211_wheel0: + symbol: gKartMario211Wheel0 + type: texture + offset: 0x47544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_211_tlut_wheel_0 +mario_kart_frame211_wheel1: + symbol: gKartMario211Wheel1 + type: texture + offset: 0x47544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_211_tlut_wheel_1 +mario_kart_frame211_wheel2: + symbol: gKartMario211Wheel2 + type: texture + offset: 0x47544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_211_tlut_wheel_2 +mario_kart_frame211_wheel3: + symbol: gKartMario211Wheel3 + type: texture + offset: 0x47544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_211_tlut_wheel_3 +mario_kart_frame212_wheel0: + symbol: gKartMario212Wheel0 + type: texture + offset: 0x47A84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_212_tlut_wheel_0 +mario_kart_frame212_wheel1: + symbol: gKartMario212Wheel1 + type: texture + offset: 0x47A84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_212_tlut_wheel_1 +mario_kart_frame212_wheel2: + symbol: gKartMario212Wheel2 + type: texture + offset: 0x47A84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_212_tlut_wheel_2 +mario_kart_frame212_wheel3: + symbol: gKartMario212Wheel3 + type: texture + offset: 0x47A84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_212_tlut_wheel_3 +mario_kart_frame213_wheel0: + symbol: gKartMario213Wheel0 + type: texture + offset: 0x47FEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_213_tlut_wheel_0 +mario_kart_frame213_wheel1: + symbol: gKartMario213Wheel1 + type: texture + offset: 0x47FEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_213_tlut_wheel_1 +mario_kart_frame213_wheel2: + symbol: gKartMario213Wheel2 + type: texture + offset: 0x47FEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_213_tlut_wheel_2 +mario_kart_frame213_wheel3: + symbol: gKartMario213Wheel3 + type: texture + offset: 0x47FEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_213_tlut_wheel_3 +mario_kart_frame214_wheel0: + symbol: gKartMario214Wheel0 + type: texture + offset: 0x48558 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_214_tlut_wheel_0 +mario_kart_frame214_wheel1: + symbol: gKartMario214Wheel1 + type: texture + offset: 0x48558 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_214_tlut_wheel_1 +mario_kart_frame214_wheel2: + symbol: gKartMario214Wheel2 + type: texture + offset: 0x48558 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_214_tlut_wheel_2 +mario_kart_frame214_wheel3: + symbol: gKartMario214Wheel3 + type: texture + offset: 0x48558 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_214_tlut_wheel_3 +mario_kart_frame215_wheel0: + symbol: gKartMario215Wheel0 + type: texture + offset: 0x48AF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_215_tlut_wheel_0 +mario_kart_frame215_wheel1: + symbol: gKartMario215Wheel1 + type: texture + offset: 0x48AF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_215_tlut_wheel_1 +mario_kart_frame215_wheel2: + symbol: gKartMario215Wheel2 + type: texture + offset: 0x48AF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_215_tlut_wheel_2 +mario_kart_frame215_wheel3: + symbol: gKartMario215Wheel3 + type: texture + offset: 0x48AF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_215_tlut_wheel_3 +mario_kart_frame216_wheel0: + symbol: gKartMario216Wheel0 + type: texture + offset: 0x490A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_216_tlut_wheel_0 +mario_kart_frame216_wheel1: + symbol: gKartMario216Wheel1 + type: texture + offset: 0x490A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_216_tlut_wheel_1 +mario_kart_frame216_wheel2: + symbol: gKartMario216Wheel2 + type: texture + offset: 0x490A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_216_tlut_wheel_2 +mario_kart_frame216_wheel3: + symbol: gKartMario216Wheel3 + type: texture + offset: 0x490A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_216_tlut_wheel_3 +mario_kart_frame217_wheel0: + symbol: gKartMario217Wheel0 + type: texture + offset: 0x49670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_217_tlut_wheel_0 +mario_kart_frame217_wheel1: + symbol: gKartMario217Wheel1 + type: texture + offset: 0x49670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_217_tlut_wheel_1 +mario_kart_frame217_wheel2: + symbol: gKartMario217Wheel2 + type: texture + offset: 0x49670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_217_tlut_wheel_2 +mario_kart_frame217_wheel3: + symbol: gKartMario217Wheel3 + type: texture + offset: 0x49670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_217_tlut_wheel_3 +mario_kart_frame218_wheel0: + symbol: gKartMario218Wheel0 + type: texture + offset: 0x49C38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_218_tlut_wheel_0 +mario_kart_frame218_wheel1: + symbol: gKartMario218Wheel1 + type: texture + offset: 0x49C38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_218_tlut_wheel_1 +mario_kart_frame218_wheel2: + symbol: gKartMario218Wheel2 + type: texture + offset: 0x49C38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_218_tlut_wheel_2 +mario_kart_frame218_wheel3: + symbol: gKartMario218Wheel3 + type: texture + offset: 0x49C38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_218_tlut_wheel_3 +mario_kart_frame219_wheel0: + symbol: gKartMario219Wheel0 + type: texture + offset: 0x4A220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_219_tlut_wheel_0 +mario_kart_frame219_wheel1: + symbol: gKartMario219Wheel1 + type: texture + offset: 0x4A220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_219_tlut_wheel_1 +mario_kart_frame219_wheel2: + symbol: gKartMario219Wheel2 + type: texture + offset: 0x4A220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_219_tlut_wheel_2 +mario_kart_frame219_wheel3: + symbol: gKartMario219Wheel3 + type: texture + offset: 0x4A220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_219_tlut_wheel_3 +mario_kart_frame220_wheel0: + symbol: gKartMario220Wheel0 + type: texture + offset: 0x4A7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_220_tlut_wheel_0 +mario_kart_frame220_wheel1: + symbol: gKartMario220Wheel1 + type: texture + offset: 0x4A7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_220_tlut_wheel_1 +mario_kart_frame220_wheel2: + symbol: gKartMario220Wheel2 + type: texture + offset: 0x4A7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_220_tlut_wheel_2 +mario_kart_frame220_wheel3: + symbol: gKartMario220Wheel3 + type: texture + offset: 0x4A7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_220_tlut_wheel_3 +mario_kart_frame221_wheel0: + symbol: gKartMario221Wheel0 + type: texture + offset: 0x4ADD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_221_tlut_wheel_0 +mario_kart_frame221_wheel1: + symbol: gKartMario221Wheel1 + type: texture + offset: 0x4ADD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_221_tlut_wheel_1 +mario_kart_frame221_wheel2: + symbol: gKartMario221Wheel2 + type: texture + offset: 0x4ADD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_221_tlut_wheel_2 +mario_kart_frame221_wheel3: + symbol: gKartMario221Wheel3 + type: texture + offset: 0x4ADD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_221_tlut_wheel_3 +mario_kart_frame222_wheel0: + symbol: gKartMario222Wheel0 + type: texture + offset: 0x4B3F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_222_tlut_wheel_0 +mario_kart_frame222_wheel1: + symbol: gKartMario222Wheel1 + type: texture + offset: 0x4B3F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_222_tlut_wheel_1 +mario_kart_frame222_wheel2: + symbol: gKartMario222Wheel2 + type: texture + offset: 0x4B3F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_222_tlut_wheel_2 +mario_kart_frame222_wheel3: + symbol: gKartMario222Wheel3 + type: texture + offset: 0x4B3F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_222_tlut_wheel_3 +mario_kart_frame223_wheel0: + symbol: gKartMario223Wheel0 + type: texture + offset: 0x4BA08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_223_tlut_wheel_0 +mario_kart_frame223_wheel1: + symbol: gKartMario223Wheel1 + type: texture + offset: 0x4BA08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_223_tlut_wheel_1 +mario_kart_frame223_wheel2: + symbol: gKartMario223Wheel2 + type: texture + offset: 0x4BA08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_223_tlut_wheel_2 +mario_kart_frame223_wheel3: + symbol: gKartMario223Wheel3 + type: texture + offset: 0x4BA08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_223_tlut_wheel_3 +mario_kart_frame224_wheel0: + symbol: gKartMario224Wheel0 + type: texture + offset: 0x4C020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_224_tlut_wheel_0 +mario_kart_frame224_wheel1: + symbol: gKartMario224Wheel1 + type: texture + offset: 0x4C020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_224_tlut_wheel_1 +mario_kart_frame224_wheel2: + symbol: gKartMario224Wheel2 + type: texture + offset: 0x4C020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_224_tlut_wheel_2 +mario_kart_frame224_wheel3: + symbol: gKartMario224Wheel3 + type: texture + offset: 0x4C020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_224_tlut_wheel_3 +mario_kart_frame225_wheel0: + symbol: gKartMario225Wheel0 + type: texture + offset: 0x4C628 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_225_tlut_wheel_0 +mario_kart_frame225_wheel1: + symbol: gKartMario225Wheel1 + type: texture + offset: 0x4C628 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_225_tlut_wheel_1 +mario_kart_frame225_wheel2: + symbol: gKartMario225Wheel2 + type: texture + offset: 0x4C628 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_225_tlut_wheel_2 +mario_kart_frame225_wheel3: + symbol: gKartMario225Wheel3 + type: texture + offset: 0x4C628 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_225_tlut_wheel_3 +mario_kart_frame226_wheel0: + symbol: gKartMario226Wheel0 + type: texture + offset: 0x4CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_226_tlut_wheel_0 +mario_kart_frame226_wheel1: + symbol: gKartMario226Wheel1 + type: texture + offset: 0x4CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_226_tlut_wheel_1 +mario_kart_frame226_wheel2: + symbol: gKartMario226Wheel2 + type: texture + offset: 0x4CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_226_tlut_wheel_2 +mario_kart_frame226_wheel3: + symbol: gKartMario226Wheel3 + type: texture + offset: 0x4CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_226_tlut_wheel_3 +mario_kart_frame227_wheel0: + symbol: gKartMario227Wheel0 + type: texture + offset: 0x4D220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_227_tlut_wheel_0 +mario_kart_frame227_wheel1: + symbol: gKartMario227Wheel1 + type: texture + offset: 0x4D220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_227_tlut_wheel_1 +mario_kart_frame227_wheel2: + symbol: gKartMario227Wheel2 + type: texture + offset: 0x4D220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_227_tlut_wheel_2 +mario_kart_frame227_wheel3: + symbol: gKartMario227Wheel3 + type: texture + offset: 0x4D220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_227_tlut_wheel_3 +mario_kart_frame228_wheel0: + symbol: gKartMario228Wheel0 + type: texture + offset: 0x4D7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_228_tlut_wheel_0 +mario_kart_frame228_wheel1: + symbol: gKartMario228Wheel1 + type: texture + offset: 0x4D7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_228_tlut_wheel_1 +mario_kart_frame228_wheel2: + symbol: gKartMario228Wheel2 + type: texture + offset: 0x4D7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_228_tlut_wheel_2 +mario_kart_frame228_wheel3: + symbol: gKartMario228Wheel3 + type: texture + offset: 0x4D7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_228_tlut_wheel_3 +mario_kart_frame229_wheel0: + symbol: gKartMario229Wheel0 + type: texture + offset: 0x4DD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_229_tlut_wheel_0 +mario_kart_frame229_wheel1: + symbol: gKartMario229Wheel1 + type: texture + offset: 0x4DD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_229_tlut_wheel_1 +mario_kart_frame229_wheel2: + symbol: gKartMario229Wheel2 + type: texture + offset: 0x4DD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_229_tlut_wheel_2 +mario_kart_frame229_wheel3: + symbol: gKartMario229Wheel3 + type: texture + offset: 0x4DD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_229_tlut_wheel_3 +mario_kart_frame230_wheel0: + symbol: gKartMario230Wheel0 + type: texture + offset: 0x4E270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_230_tlut_wheel_0 +mario_kart_frame230_wheel1: + symbol: gKartMario230Wheel1 + type: texture + offset: 0x4E270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_230_tlut_wheel_1 +mario_kart_frame230_wheel2: + symbol: gKartMario230Wheel2 + type: texture + offset: 0x4E270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_230_tlut_wheel_2 +mario_kart_frame230_wheel3: + symbol: gKartMario230Wheel3 + type: texture + offset: 0x4E270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_230_tlut_wheel_3 +mario_kart_frame231_wheel0: + symbol: gKartMario231Wheel0 + type: texture + offset: 0x4E7A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_231_tlut_wheel_0 +mario_kart_frame231_wheel1: + symbol: gKartMario231Wheel1 + type: texture + offset: 0x4E7A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_231_tlut_wheel_1 +mario_kart_frame231_wheel2: + symbol: gKartMario231Wheel2 + type: texture + offset: 0x4E7A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_231_tlut_wheel_2 +mario_kart_frame231_wheel3: + symbol: gKartMario231Wheel3 + type: texture + offset: 0x4E7A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_231_tlut_wheel_3 +mario_kart_frame232_wheel0: + symbol: gKartMario232Wheel0 + type: texture + offset: 0x4ED00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_232_tlut_wheel_0 +mario_kart_frame232_wheel1: + symbol: gKartMario232Wheel1 + type: texture + offset: 0x4ED00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_232_tlut_wheel_1 +mario_kart_frame232_wheel2: + symbol: gKartMario232Wheel2 + type: texture + offset: 0x4ED00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_232_tlut_wheel_2 +mario_kart_frame232_wheel3: + symbol: gKartMario232Wheel3 + type: texture + offset: 0x4ED00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_232_tlut_wheel_3 +mario_kart_frame233_wheel0: + symbol: gKartMario233Wheel0 + type: texture + offset: 0x4F27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_233_tlut_wheel_0 +mario_kart_frame233_wheel1: + symbol: gKartMario233Wheel1 + type: texture + offset: 0x4F27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_233_tlut_wheel_1 +mario_kart_frame233_wheel2: + symbol: gKartMario233Wheel2 + type: texture + offset: 0x4F27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_233_tlut_wheel_2 +mario_kart_frame233_wheel3: + symbol: gKartMario233Wheel3 + type: texture + offset: 0x4F27C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_233_tlut_wheel_3 +mario_kart_frame234_wheel0: + symbol: gKartMario234Wheel0 + type: texture + offset: 0x4F804 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_234_tlut_wheel_0 +mario_kart_frame234_wheel1: + symbol: gKartMario234Wheel1 + type: texture + offset: 0x4F804 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_234_tlut_wheel_1 +mario_kart_frame234_wheel2: + symbol: gKartMario234Wheel2 + type: texture + offset: 0x4F804 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_234_tlut_wheel_2 +mario_kart_frame234_wheel3: + symbol: gKartMario234Wheel3 + type: texture + offset: 0x4F804 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_234_tlut_wheel_3 +mario_kart_frame235_wheel0: + symbol: gKartMario235Wheel0 + type: texture + offset: 0x4FDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_235_tlut_wheel_0 +mario_kart_frame235_wheel1: + symbol: gKartMario235Wheel1 + type: texture + offset: 0x4FDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_235_tlut_wheel_1 +mario_kart_frame235_wheel2: + symbol: gKartMario235Wheel2 + type: texture + offset: 0x4FDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_235_tlut_wheel_2 +mario_kart_frame235_wheel3: + symbol: gKartMario235Wheel3 + type: texture + offset: 0x4FDA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_235_tlut_wheel_3 +mario_kart_frame236_wheel0: + symbol: gKartMario236Wheel0 + type: texture + offset: 0x50368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_236_tlut_wheel_0 +mario_kart_frame236_wheel1: + symbol: gKartMario236Wheel1 + type: texture + offset: 0x50368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_236_tlut_wheel_1 +mario_kart_frame236_wheel2: + symbol: gKartMario236Wheel2 + type: texture + offset: 0x50368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_236_tlut_wheel_2 +mario_kart_frame236_wheel3: + symbol: gKartMario236Wheel3 + type: texture + offset: 0x50368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_236_tlut_wheel_3 +mario_kart_frame237_wheel0: + symbol: gKartMario237Wheel0 + type: texture + offset: 0x50948 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_237_tlut_wheel_0 +mario_kart_frame237_wheel1: + symbol: gKartMario237Wheel1 + type: texture + offset: 0x50948 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_237_tlut_wheel_1 +mario_kart_frame237_wheel2: + symbol: gKartMario237Wheel2 + type: texture + offset: 0x50948 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_237_tlut_wheel_2 +mario_kart_frame237_wheel3: + symbol: gKartMario237Wheel3 + type: texture + offset: 0x50948 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_237_tlut_wheel_3 +mario_kart_frame238_wheel0: + symbol: gKartMario238Wheel0 + type: texture + offset: 0x50F1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_238_tlut_wheel_0 +mario_kart_frame238_wheel1: + symbol: gKartMario238Wheel1 + type: texture + offset: 0x50F1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_238_tlut_wheel_1 +mario_kart_frame238_wheel2: + symbol: gKartMario238Wheel2 + type: texture + offset: 0x50F1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_238_tlut_wheel_2 +mario_kart_frame238_wheel3: + symbol: gKartMario238Wheel3 + type: texture + offset: 0x50F1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_238_tlut_wheel_3 +mario_kart_frame239_wheel0: + symbol: gKartMario239Wheel0 + type: texture + offset: 0x51500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_239_tlut_wheel_0 +mario_kart_frame239_wheel1: + symbol: gKartMario239Wheel1 + type: texture + offset: 0x51500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_239_tlut_wheel_1 +mario_kart_frame239_wheel2: + symbol: gKartMario239Wheel2 + type: texture + offset: 0x51500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_239_tlut_wheel_2 +mario_kart_frame239_wheel3: + symbol: gKartMario239Wheel3 + type: texture + offset: 0x51500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_239_tlut_wheel_3 +mario_kart_frame240_wheel0: + symbol: gKartMario240Wheel0 + type: texture + offset: 0x51AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_240_tlut_wheel_0 +mario_kart_frame240_wheel1: + symbol: gKartMario240Wheel1 + type: texture + offset: 0x51AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_240_tlut_wheel_1 +mario_kart_frame240_wheel2: + symbol: gKartMario240Wheel2 + type: texture + offset: 0x51AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_240_tlut_wheel_2 +mario_kart_frame240_wheel3: + symbol: gKartMario240Wheel3 + type: texture + offset: 0x51AC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_240_tlut_wheel_3 +mario_kart_frame241_wheel0: + symbol: gKartMario241Wheel0 + type: texture + offset: 0x520A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_241_tlut_wheel_0 +mario_kart_frame241_wheel1: + symbol: gKartMario241Wheel1 + type: texture + offset: 0x520A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_241_tlut_wheel_1 +mario_kart_frame241_wheel2: + symbol: gKartMario241Wheel2 + type: texture + offset: 0x520A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_241_tlut_wheel_2 +mario_kart_frame241_wheel3: + symbol: gKartMario241Wheel3 + type: texture + offset: 0x520A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_241_tlut_wheel_3 +mario_kart_frame242_wheel0: + symbol: gKartMario242Wheel0 + type: texture + offset: 0x52684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_242_tlut_wheel_0 +mario_kart_frame242_wheel1: + symbol: gKartMario242Wheel1 + type: texture + offset: 0x52684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_242_tlut_wheel_1 +mario_kart_frame242_wheel2: + symbol: gKartMario242Wheel2 + type: texture + offset: 0x52684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_242_tlut_wheel_2 +mario_kart_frame242_wheel3: + symbol: gKartMario242Wheel3 + type: texture + offset: 0x52684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_242_tlut_wheel_3 +mario_kart_frame243_wheel0: + symbol: gKartMario243Wheel0 + type: texture + offset: 0x52C80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_243_tlut_wheel_0 +mario_kart_frame243_wheel1: + symbol: gKartMario243Wheel1 + type: texture + offset: 0x52C80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_243_tlut_wheel_1 +mario_kart_frame243_wheel2: + symbol: gKartMario243Wheel2 + type: texture + offset: 0x52C80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_243_tlut_wheel_2 +mario_kart_frame243_wheel3: + symbol: gKartMario243Wheel3 + type: texture + offset: 0x52C80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_243_tlut_wheel_3 +mario_kart_frame244_wheel0: + symbol: gKartMario244Wheel0 + type: texture + offset: 0x53270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_244_tlut_wheel_0 +mario_kart_frame244_wheel1: + symbol: gKartMario244Wheel1 + type: texture + offset: 0x53270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_244_tlut_wheel_1 +mario_kart_frame244_wheel2: + symbol: gKartMario244Wheel2 + type: texture + offset: 0x53270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_244_tlut_wheel_2 +mario_kart_frame244_wheel3: + symbol: gKartMario244Wheel3 + type: texture + offset: 0x53270 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_244_tlut_wheel_3 +mario_kart_frame245_wheel0: + symbol: gKartMario245Wheel0 + type: texture + offset: 0x53840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_245_tlut_wheel_0 +mario_kart_frame245_wheel1: + symbol: gKartMario245Wheel1 + type: texture + offset: 0x53840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_245_tlut_wheel_1 +mario_kart_frame245_wheel2: + symbol: gKartMario245Wheel2 + type: texture + offset: 0x53840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_245_tlut_wheel_2 +mario_kart_frame245_wheel3: + symbol: gKartMario245Wheel3 + type: texture + offset: 0x53840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_245_tlut_wheel_3 +mario_kart_frame246_wheel0: + symbol: gKartMario246Wheel0 + type: texture + offset: 0x53E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_246_tlut_wheel_0 +mario_kart_frame246_wheel1: + symbol: gKartMario246Wheel1 + type: texture + offset: 0x53E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_246_tlut_wheel_1 +mario_kart_frame246_wheel2: + symbol: gKartMario246Wheel2 + type: texture + offset: 0x53E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_246_tlut_wheel_2 +mario_kart_frame246_wheel3: + symbol: gKartMario246Wheel3 + type: texture + offset: 0x53E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_246_tlut_wheel_3 +mario_kart_frame247_wheel0: + symbol: gKartMario247Wheel0 + type: texture + offset: 0x543D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_247_tlut_wheel_0 +mario_kart_frame247_wheel1: + symbol: gKartMario247Wheel1 + type: texture + offset: 0x543D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_247_tlut_wheel_1 +mario_kart_frame247_wheel2: + symbol: gKartMario247Wheel2 + type: texture + offset: 0x543D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_247_tlut_wheel_2 +mario_kart_frame247_wheel3: + symbol: gKartMario247Wheel3 + type: texture + offset: 0x543D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_247_tlut_wheel_3 +mario_kart_frame248_wheel0: + symbol: gKartMario248Wheel0 + type: texture + offset: 0x54968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_248_tlut_wheel_0 +mario_kart_frame248_wheel1: + symbol: gKartMario248Wheel1 + type: texture + offset: 0x54968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_248_tlut_wheel_1 +mario_kart_frame248_wheel2: + symbol: gKartMario248Wheel2 + type: texture + offset: 0x54968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_248_tlut_wheel_2 +mario_kart_frame248_wheel3: + symbol: gKartMario248Wheel3 + type: texture + offset: 0x54968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_248_tlut_wheel_3 +mario_kart_frame249_wheel0: + symbol: gKartMario249Wheel0 + type: texture + offset: 0x54EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_249_tlut_wheel_0 +mario_kart_frame249_wheel1: + symbol: gKartMario249Wheel1 + type: texture + offset: 0x54EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_249_tlut_wheel_1 +mario_kart_frame249_wheel2: + symbol: gKartMario249Wheel2 + type: texture + offset: 0x54EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_249_tlut_wheel_2 +mario_kart_frame249_wheel3: + symbol: gKartMario249Wheel3 + type: texture + offset: 0x54EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_249_tlut_wheel_3 +mario_kart_frame250_wheel0: + symbol: gKartMario250Wheel0 + type: texture + offset: 0x553B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_250_tlut_wheel_0 +mario_kart_frame250_wheel1: + symbol: gKartMario250Wheel1 + type: texture + offset: 0x553B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_250_tlut_wheel_1 +mario_kart_frame250_wheel2: + symbol: gKartMario250Wheel2 + type: texture + offset: 0x553B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_250_tlut_wheel_2 +mario_kart_frame250_wheel3: + symbol: gKartMario250Wheel3 + type: texture + offset: 0x553B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_250_tlut_wheel_3 +mario_kart_frame251_wheel0: + symbol: gKartMario251Wheel0 + type: texture + offset: 0x558EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_251_tlut_wheel_0 +mario_kart_frame251_wheel1: + symbol: gKartMario251Wheel1 + type: texture + offset: 0x558EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_251_tlut_wheel_1 +mario_kart_frame251_wheel2: + symbol: gKartMario251Wheel2 + type: texture + offset: 0x558EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_251_tlut_wheel_2 +mario_kart_frame251_wheel3: + symbol: gKartMario251Wheel3 + type: texture + offset: 0x558EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_251_tlut_wheel_3 +mario_kart_frame252_wheel0: + symbol: gKartMario252Wheel0 + type: texture + offset: 0x55E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_252_tlut_wheel_0 +mario_kart_frame252_wheel1: + symbol: gKartMario252Wheel1 + type: texture + offset: 0x55E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_252_tlut_wheel_1 +mario_kart_frame252_wheel2: + symbol: gKartMario252Wheel2 + type: texture + offset: 0x55E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_252_tlut_wheel_2 +mario_kart_frame252_wheel3: + symbol: gKartMario252Wheel3 + type: texture + offset: 0x55E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_252_tlut_wheel_3 +mario_kart_frame253_wheel0: + symbol: gKartMario253Wheel0 + type: texture + offset: 0x563DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_253_tlut_wheel_0 +mario_kart_frame253_wheel1: + symbol: gKartMario253Wheel1 + type: texture + offset: 0x563DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_253_tlut_wheel_1 +mario_kart_frame253_wheel2: + symbol: gKartMario253Wheel2 + type: texture + offset: 0x563DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_253_tlut_wheel_2 +mario_kart_frame253_wheel3: + symbol: gKartMario253Wheel3 + type: texture + offset: 0x563DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_253_tlut_wheel_3 +mario_kart_frame254_wheel0: + symbol: gKartMario254Wheel0 + type: texture + offset: 0x5696C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_254_tlut_wheel_0 +mario_kart_frame254_wheel1: + symbol: gKartMario254Wheel1 + type: texture + offset: 0x5696C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_254_tlut_wheel_1 +mario_kart_frame254_wheel2: + symbol: gKartMario254Wheel2 + type: texture + offset: 0x5696C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_254_tlut_wheel_2 +mario_kart_frame254_wheel3: + symbol: gKartMario254Wheel3 + type: texture + offset: 0x5696C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_254_tlut_wheel_3 +mario_kart_frame255_wheel0: + symbol: gKartMario255Wheel0 + type: texture + offset: 0x56F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_255_tlut_wheel_0 +mario_kart_frame255_wheel1: + symbol: gKartMario255Wheel1 + type: texture + offset: 0x56F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_255_tlut_wheel_1 +mario_kart_frame255_wheel2: + symbol: gKartMario255Wheel2 + type: texture + offset: 0x56F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_255_tlut_wheel_2 +mario_kart_frame255_wheel3: + symbol: gKartMario255Wheel3 + type: texture + offset: 0x56F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_255_tlut_wheel_3 +mario_kart_frame256_wheel0: + symbol: gKartMario256Wheel0 + type: texture + offset: 0x5750C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_256_tlut_wheel_0 +mario_kart_frame256_wheel1: + symbol: gKartMario256Wheel1 + type: texture + offset: 0x5750C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_256_tlut_wheel_1 +mario_kart_frame256_wheel2: + symbol: gKartMario256Wheel2 + type: texture + offset: 0x5750C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_256_tlut_wheel_2 +mario_kart_frame256_wheel3: + symbol: gKartMario256Wheel3 + type: texture + offset: 0x5750C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_256_tlut_wheel_3 +mario_kart_frame257_wheel0: + symbol: gKartMario257Wheel0 + type: texture + offset: 0x57AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_257_tlut_wheel_0 +mario_kart_frame257_wheel1: + symbol: gKartMario257Wheel1 + type: texture + offset: 0x57AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_257_tlut_wheel_1 +mario_kart_frame257_wheel2: + symbol: gKartMario257Wheel2 + type: texture + offset: 0x57AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_257_tlut_wheel_2 +mario_kart_frame257_wheel3: + symbol: gKartMario257Wheel3 + type: texture + offset: 0x57AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_257_tlut_wheel_3 +mario_kart_frame258_wheel0: + symbol: gKartMario258Wheel0 + type: texture + offset: 0x580E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_258_tlut_wheel_0 +mario_kart_frame258_wheel1: + symbol: gKartMario258Wheel1 + type: texture + offset: 0x580E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_258_tlut_wheel_1 +mario_kart_frame258_wheel2: + symbol: gKartMario258Wheel2 + type: texture + offset: 0x580E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_258_tlut_wheel_2 +mario_kart_frame258_wheel3: + symbol: gKartMario258Wheel3 + type: texture + offset: 0x580E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_258_tlut_wheel_3 +mario_kart_frame259_wheel0: + symbol: gKartMario259Wheel0 + type: texture + offset: 0x586B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_259_tlut_wheel_0 +mario_kart_frame259_wheel1: + symbol: gKartMario259Wheel1 + type: texture + offset: 0x586B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_259_tlut_wheel_1 +mario_kart_frame259_wheel2: + symbol: gKartMario259Wheel2 + type: texture + offset: 0x586B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_259_tlut_wheel_2 +mario_kart_frame259_wheel3: + symbol: gKartMario259Wheel3 + type: texture + offset: 0x586B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_259_tlut_wheel_3 +mario_kart_frame260_wheel0: + symbol: gKartMario260Wheel0 + type: texture + offset: 0x58C78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_260_tlut_wheel_0 +mario_kart_frame260_wheel1: + symbol: gKartMario260Wheel1 + type: texture + offset: 0x58C78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_260_tlut_wheel_1 +mario_kart_frame260_wheel2: + symbol: gKartMario260Wheel2 + type: texture + offset: 0x58C78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_260_tlut_wheel_2 +mario_kart_frame260_wheel3: + symbol: gKartMario260Wheel3 + type: texture + offset: 0x58C78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_260_tlut_wheel_3 +mario_kart_frame261_wheel0: + symbol: gKartMario261Wheel0 + type: texture + offset: 0x59250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_261_tlut_wheel_0 +mario_kart_frame261_wheel1: + symbol: gKartMario261Wheel1 + type: texture + offset: 0x59250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_261_tlut_wheel_1 +mario_kart_frame261_wheel2: + symbol: gKartMario261Wheel2 + type: texture + offset: 0x59250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_261_tlut_wheel_2 +mario_kart_frame261_wheel3: + symbol: gKartMario261Wheel3 + type: texture + offset: 0x59250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_261_tlut_wheel_3 +mario_kart_frame262_wheel0: + symbol: gKartMario262Wheel0 + type: texture + offset: 0x59830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_262_tlut_wheel_0 +mario_kart_frame262_wheel1: + symbol: gKartMario262Wheel1 + type: texture + offset: 0x59830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_262_tlut_wheel_1 +mario_kart_frame262_wheel2: + symbol: gKartMario262Wheel2 + type: texture + offset: 0x59830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_262_tlut_wheel_2 +mario_kart_frame262_wheel3: + symbol: gKartMario262Wheel3 + type: texture + offset: 0x59830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_262_tlut_wheel_3 +mario_kart_frame263_wheel0: + symbol: gKartMario263Wheel0 + type: texture + offset: 0x59E08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_263_tlut_wheel_0 +mario_kart_frame263_wheel1: + symbol: gKartMario263Wheel1 + type: texture + offset: 0x59E08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_263_tlut_wheel_1 +mario_kart_frame263_wheel2: + symbol: gKartMario263Wheel2 + type: texture + offset: 0x59E08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_263_tlut_wheel_2 +mario_kart_frame263_wheel3: + symbol: gKartMario263Wheel3 + type: texture + offset: 0x59E08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_263_tlut_wheel_3 +mario_kart_frame264_wheel0: + symbol: gKartMario264Wheel0 + type: texture + offset: 0x5A3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_264_tlut_wheel_0 +mario_kart_frame264_wheel1: + symbol: gKartMario264Wheel1 + type: texture + offset: 0x5A3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_264_tlut_wheel_1 +mario_kart_frame264_wheel2: + symbol: gKartMario264Wheel2 + type: texture + offset: 0x5A3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_264_tlut_wheel_2 +mario_kart_frame264_wheel3: + symbol: gKartMario264Wheel3 + type: texture + offset: 0x5A3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_264_tlut_wheel_3 +mario_kart_frame265_wheel0: + symbol: gKartMario265Wheel0 + type: texture + offset: 0x5A948 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_265_tlut_wheel_0 +mario_kart_frame265_wheel1: + symbol: gKartMario265Wheel1 + type: texture + offset: 0x5A948 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_265_tlut_wheel_1 +mario_kart_frame265_wheel2: + symbol: gKartMario265Wheel2 + type: texture + offset: 0x5A948 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_265_tlut_wheel_2 +mario_kart_frame265_wheel3: + symbol: gKartMario265Wheel3 + type: texture + offset: 0x5A948 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_265_tlut_wheel_3 +mario_kart_frame266_wheel0: + symbol: gKartMario266Wheel0 + type: texture + offset: 0x5AEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_266_tlut_wheel_0 +mario_kart_frame266_wheel1: + symbol: gKartMario266Wheel1 + type: texture + offset: 0x5AEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_266_tlut_wheel_1 +mario_kart_frame266_wheel2: + symbol: gKartMario266Wheel2 + type: texture + offset: 0x5AEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_266_tlut_wheel_2 +mario_kart_frame266_wheel3: + symbol: gKartMario266Wheel3 + type: texture + offset: 0x5AEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_266_tlut_wheel_3 +mario_kart_frame267_wheel0: + symbol: gKartMario267Wheel0 + type: texture + offset: 0x5B454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_267_tlut_wheel_0 +mario_kart_frame267_wheel1: + symbol: gKartMario267Wheel1 + type: texture + offset: 0x5B454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_267_tlut_wheel_1 +mario_kart_frame267_wheel2: + symbol: gKartMario267Wheel2 + type: texture + offset: 0x5B454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_267_tlut_wheel_2 +mario_kart_frame267_wheel3: + symbol: gKartMario267Wheel3 + type: texture + offset: 0x5B454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_267_tlut_wheel_3 +mario_kart_frame268_wheel0: + symbol: gKartMario268Wheel0 + type: texture + offset: 0x5B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_268_tlut_wheel_0 +mario_kart_frame268_wheel1: + symbol: gKartMario268Wheel1 + type: texture + offset: 0x5B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_268_tlut_wheel_1 +mario_kart_frame268_wheel2: + symbol: gKartMario268Wheel2 + type: texture + offset: 0x5B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_268_tlut_wheel_2 +mario_kart_frame268_wheel3: + symbol: gKartMario268Wheel3 + type: texture + offset: 0x5B9AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_268_tlut_wheel_3 +mario_kart_frame269_wheel0: + symbol: gKartMario269Wheel0 + type: texture + offset: 0x5BEBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_269_tlut_wheel_0 +mario_kart_frame269_wheel1: + symbol: gKartMario269Wheel1 + type: texture + offset: 0x5BEBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_269_tlut_wheel_1 +mario_kart_frame269_wheel2: + symbol: gKartMario269Wheel2 + type: texture + offset: 0x5BEBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_269_tlut_wheel_2 +mario_kart_frame269_wheel3: + symbol: gKartMario269Wheel3 + type: texture + offset: 0x5BEBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_269_tlut_wheel_3 +mario_kart_frame270_wheel0: + symbol: gKartMario270Wheel0 + type: texture + offset: 0x5C40C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_270_tlut_wheel_0 +mario_kart_frame270_wheel1: + symbol: gKartMario270Wheel1 + type: texture + offset: 0x5C40C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_270_tlut_wheel_1 +mario_kart_frame270_wheel2: + symbol: gKartMario270Wheel2 + type: texture + offset: 0x5C40C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_270_tlut_wheel_2 +mario_kart_frame270_wheel3: + symbol: gKartMario270Wheel3 + type: texture + offset: 0x5C40C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_270_tlut_wheel_3 +mario_kart_frame271_wheel0: + symbol: gKartMario271Wheel0 + type: texture + offset: 0x5C960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_271_tlut_wheel_0 +mario_kart_frame271_wheel1: + symbol: gKartMario271Wheel1 + type: texture + offset: 0x5C960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_271_tlut_wheel_1 +mario_kart_frame271_wheel2: + symbol: gKartMario271Wheel2 + type: texture + offset: 0x5C960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_271_tlut_wheel_2 +mario_kart_frame271_wheel3: + symbol: gKartMario271Wheel3 + type: texture + offset: 0x5C960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_271_tlut_wheel_3 +mario_kart_frame272_wheel0: + symbol: gKartMario272Wheel0 + type: texture + offset: 0x5CEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_272_tlut_wheel_0 +mario_kart_frame272_wheel1: + symbol: gKartMario272Wheel1 + type: texture + offset: 0x5CEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_272_tlut_wheel_1 +mario_kart_frame272_wheel2: + symbol: gKartMario272Wheel2 + type: texture + offset: 0x5CEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_272_tlut_wheel_2 +mario_kart_frame272_wheel3: + symbol: gKartMario272Wheel3 + type: texture + offset: 0x5CEDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_272_tlut_wheel_3 +mario_kart_frame273_wheel0: + symbol: gKartMario273Wheel0 + type: texture + offset: 0x5D468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_273_tlut_wheel_0 +mario_kart_frame273_wheel1: + symbol: gKartMario273Wheel1 + type: texture + offset: 0x5D468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_273_tlut_wheel_1 +mario_kart_frame273_wheel2: + symbol: gKartMario273Wheel2 + type: texture + offset: 0x5D468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_273_tlut_wheel_2 +mario_kart_frame273_wheel3: + symbol: gKartMario273Wheel3 + type: texture + offset: 0x5D468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_273_tlut_wheel_3 +mario_kart_frame274_wheel0: + symbol: gKartMario274Wheel0 + type: texture + offset: 0x5DA1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_274_tlut_wheel_0 +mario_kart_frame274_wheel1: + symbol: gKartMario274Wheel1 + type: texture + offset: 0x5DA1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_274_tlut_wheel_1 +mario_kart_frame274_wheel2: + symbol: gKartMario274Wheel2 + type: texture + offset: 0x5DA1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_274_tlut_wheel_2 +mario_kart_frame274_wheel3: + symbol: gKartMario274Wheel3 + type: texture + offset: 0x5DA1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_274_tlut_wheel_3 +mario_kart_frame275_wheel0: + symbol: gKartMario275Wheel0 + type: texture + offset: 0x5DFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_275_tlut_wheel_0 +mario_kart_frame275_wheel1: + symbol: gKartMario275Wheel1 + type: texture + offset: 0x5DFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_275_tlut_wheel_1 +mario_kart_frame275_wheel2: + symbol: gKartMario275Wheel2 + type: texture + offset: 0x5DFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_275_tlut_wheel_2 +mario_kart_frame275_wheel3: + symbol: gKartMario275Wheel3 + type: texture + offset: 0x5DFE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_275_tlut_wheel_3 +mario_kart_frame276_wheel0: + symbol: gKartMario276Wheel0 + type: texture + offset: 0x5E5D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_276_tlut_wheel_0 +mario_kart_frame276_wheel1: + symbol: gKartMario276Wheel1 + type: texture + offset: 0x5E5D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_276_tlut_wheel_1 +mario_kart_frame276_wheel2: + symbol: gKartMario276Wheel2 + type: texture + offset: 0x5E5D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_276_tlut_wheel_2 +mario_kart_frame276_wheel3: + symbol: gKartMario276Wheel3 + type: texture + offset: 0x5E5D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_276_tlut_wheel_3 +mario_kart_frame277_wheel0: + symbol: gKartMario277Wheel0 + type: texture + offset: 0x5EBC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_277_tlut_wheel_0 +mario_kart_frame277_wheel1: + symbol: gKartMario277Wheel1 + type: texture + offset: 0x5EBC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_277_tlut_wheel_1 +mario_kart_frame277_wheel2: + symbol: gKartMario277Wheel2 + type: texture + offset: 0x5EBC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_277_tlut_wheel_2 +mario_kart_frame277_wheel3: + symbol: gKartMario277Wheel3 + type: texture + offset: 0x5EBC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_277_tlut_wheel_3 +mario_kart_frame278_wheel0: + symbol: gKartMario278Wheel0 + type: texture + offset: 0x5F18C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_278_tlut_wheel_0 +mario_kart_frame278_wheel1: + symbol: gKartMario278Wheel1 + type: texture + offset: 0x5F18C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_278_tlut_wheel_1 +mario_kart_frame278_wheel2: + symbol: gKartMario278Wheel2 + type: texture + offset: 0x5F18C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_278_tlut_wheel_2 +mario_kart_frame278_wheel3: + symbol: gKartMario278Wheel3 + type: texture + offset: 0x5F18C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_278_tlut_wheel_3 +mario_kart_frame279_wheel0: + symbol: gKartMario279Wheel0 + type: texture + offset: 0x5F770 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_279_tlut_wheel_0 +mario_kart_frame279_wheel1: + symbol: gKartMario279Wheel1 + type: texture + offset: 0x5F770 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_279_tlut_wheel_1 +mario_kart_frame279_wheel2: + symbol: gKartMario279Wheel2 + type: texture + offset: 0x5F770 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_279_tlut_wheel_2 +mario_kart_frame279_wheel3: + symbol: gKartMario279Wheel3 + type: texture + offset: 0x5F770 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_279_tlut_wheel_3 +mario_kart_frame280_wheel0: + symbol: gKartMario280Wheel0 + type: texture + offset: 0x5FD24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_280_tlut_wheel_0 +mario_kart_frame280_wheel1: + symbol: gKartMario280Wheel1 + type: texture + offset: 0x5FD24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_280_tlut_wheel_1 +mario_kart_frame280_wheel2: + symbol: gKartMario280Wheel2 + type: texture + offset: 0x5FD24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_280_tlut_wheel_2 +mario_kart_frame280_wheel3: + symbol: gKartMario280Wheel3 + type: texture + offset: 0x5FD24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_280_tlut_wheel_3 +mario_kart_frame281_wheel0: + symbol: gKartMario281Wheel0 + type: texture + offset: 0x602F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_281_tlut_wheel_0 +mario_kart_frame281_wheel1: + symbol: gKartMario281Wheel1 + type: texture + offset: 0x602F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_281_tlut_wheel_1 +mario_kart_frame281_wheel2: + symbol: gKartMario281Wheel2 + type: texture + offset: 0x602F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_281_tlut_wheel_2 +mario_kart_frame281_wheel3: + symbol: gKartMario281Wheel3 + type: texture + offset: 0x602F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_281_tlut_wheel_3 +mario_kart_frame282_wheel0: + symbol: gKartMario282Wheel0 + type: texture + offset: 0x60898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_282_tlut_wheel_0 +mario_kart_frame282_wheel1: + symbol: gKartMario282Wheel1 + type: texture + offset: 0x60898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_282_tlut_wheel_1 +mario_kart_frame282_wheel2: + symbol: gKartMario282Wheel2 + type: texture + offset: 0x60898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_282_tlut_wheel_2 +mario_kart_frame282_wheel3: + symbol: gKartMario282Wheel3 + type: texture + offset: 0x60898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_282_tlut_wheel_3 +mario_kart_frame283_wheel0: + symbol: gKartMario283Wheel0 + type: texture + offset: 0x60E38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_283_tlut_wheel_0 +mario_kart_frame283_wheel1: + symbol: gKartMario283Wheel1 + type: texture + offset: 0x60E38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_283_tlut_wheel_1 +mario_kart_frame283_wheel2: + symbol: gKartMario283Wheel2 + type: texture + offset: 0x60E38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_283_tlut_wheel_2 +mario_kart_frame283_wheel3: + symbol: gKartMario283Wheel3 + type: texture + offset: 0x60E38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_283_tlut_wheel_3 +mario_kart_frame284_wheel0: + symbol: gKartMario284Wheel0 + type: texture + offset: 0x613C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_284_tlut_wheel_0 +mario_kart_frame284_wheel1: + symbol: gKartMario284Wheel1 + type: texture + offset: 0x613C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_284_tlut_wheel_1 +mario_kart_frame284_wheel2: + symbol: gKartMario284Wheel2 + type: texture + offset: 0x613C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_284_tlut_wheel_2 +mario_kart_frame284_wheel3: + symbol: gKartMario284Wheel3 + type: texture + offset: 0x613C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_284_tlut_wheel_3 +mario_kart_frame285_wheel0: + symbol: gKartMario285Wheel0 + type: texture + offset: 0x61940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_285_tlut_wheel_0 +mario_kart_frame285_wheel1: + symbol: gKartMario285Wheel1 + type: texture + offset: 0x61940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_285_tlut_wheel_1 +mario_kart_frame285_wheel2: + symbol: gKartMario285Wheel2 + type: texture + offset: 0x61940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_285_tlut_wheel_2 +mario_kart_frame285_wheel3: + symbol: gKartMario285Wheel3 + type: texture + offset: 0x61940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_285_tlut_wheel_3 +mario_kart_frame286_wheel0: + symbol: gKartMario286Wheel0 + type: texture + offset: 0x61E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_286_tlut_wheel_0 +mario_kart_frame286_wheel1: + symbol: gKartMario286Wheel1 + type: texture + offset: 0x61E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_286_tlut_wheel_1 +mario_kart_frame286_wheel2: + symbol: gKartMario286Wheel2 + type: texture + offset: 0x61E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_286_tlut_wheel_2 +mario_kart_frame286_wheel3: + symbol: gKartMario286Wheel3 + type: texture + offset: 0x61E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_286_tlut_wheel_3 +mario_kart_frame287_wheel0: + symbol: gKartMario287Wheel0 + type: texture + offset: 0x623B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_287_tlut_wheel_0 +mario_kart_frame287_wheel1: + symbol: gKartMario287Wheel1 + type: texture + offset: 0x623B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_287_tlut_wheel_1 +mario_kart_frame287_wheel2: + symbol: gKartMario287Wheel2 + type: texture + offset: 0x623B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_287_tlut_wheel_2 +mario_kart_frame287_wheel3: + symbol: gKartMario287Wheel3 + type: texture + offset: 0x623B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_287_tlut_wheel_3 +mario_kart_frame288_wheel0: + symbol: gKartMario288Wheel0 + type: texture + offset: 0x628C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_288_tlut_wheel_0 +mario_kart_frame288_wheel1: + symbol: gKartMario288Wheel1 + type: texture + offset: 0x628C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_288_tlut_wheel_1 +mario_kart_frame288_wheel2: + symbol: gKartMario288Wheel2 + type: texture + offset: 0x628C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_288_tlut_wheel_2 +mario_kart_frame288_wheel3: + symbol: gKartMario288Wheel3 + type: texture + offset: 0x628C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_288_tlut_wheel_3 +mario_kart_frame289: + symbol: gKartMario289 + type: texture + offset: 0x62D74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame290: + symbol: gKartMario290 + type: texture + offset: 0x63244 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame291: + symbol: gKartMario291 + type: texture + offset: 0x637B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame292: + symbol: gKartMario292 + type: texture + offset: 0x63D84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame293: + symbol: gKartMario293 + type: texture + offset: 0x64430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame294: + symbol: gKartMario294 + type: texture + offset: 0x64A68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame295: + symbol: gKartMario295 + type: texture + offset: 0x650A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame296: + symbol: gKartMario296 + type: texture + offset: 0x65674 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame297: + symbol: gKartMario297 + type: texture + offset: 0x65BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame298: + symbol: gKartMario298 + type: texture + offset: 0x66114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame299: + symbol: gKartMario299 + type: texture + offset: 0x666D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame300: + symbol: gKartMario300 + type: texture + offset: 0x66C9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame301: + symbol: gKartMario301 + type: texture + offset: 0x67288 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame302: + symbol: gKartMario302 + type: texture + offset: 0x67828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame303: + symbol: gKartMario303 + type: texture + offset: 0x67DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame304: + symbol: gKartMario304 + type: texture + offset: 0x68360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame305: + symbol: gKartMario305 + type: texture + offset: 0x688B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame306: + symbol: gKartMario306 + type: texture + offset: 0x68D7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame307: + symbol: gKartMario307 + type: texture + offset: 0x69368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame308: + symbol: gKartMario308 + type: texture + offset: 0x69A0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame309: + symbol: gKartMario309 + type: texture + offset: 0x6A0A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame310: + symbol: gKartMario310 + type: texture + offset: 0x6A6D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame311: + symbol: gKartMario311 + type: texture + offset: 0x6ACFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame312: + symbol: gKartMario312 + type: texture + offset: 0x6B2C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame313: + symbol: gKartMario313 + type: texture + offset: 0x6B818 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame314: + symbol: gKartMario314 + type: texture + offset: 0x6BD28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame315: + symbol: gKartMario315 + type: texture + offset: 0x6C2E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame316: + symbol: gKartMario316 + type: texture + offset: 0x6C8C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame317: + symbol: gKartMario317 + type: texture + offset: 0x6CE78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame318: + symbol: gKartMario318 + type: texture + offset: 0x6D41C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame319: + symbol: gKartMario319 + type: texture + offset: 0x6D9CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_frame320: + symbol: gKartMario320 + type: texture + offset: 0x6DF44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: mario_kart_palette + tlut_wheel: mario_kart_000_tlut_wheel_0 +mario_kart_000_tlut_wheel_0: + symbol: gKartMario000TlutWheel0 + type: texture + offset: 0x6E4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_000_tlut_wheel_1: + symbol: gKartMario000TlutWheel1 + type: texture + offset: 0x6E530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_000_tlut_wheel_2: + symbol: gKartMario000TlutWheel2 + type: texture + offset: 0x6E5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_000_tlut_wheel_3: + symbol: gKartMario000TlutWheel3 + type: texture + offset: 0x6E630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_001_tlut_wheel_0: + symbol: gKartMario001TlutWheel0 + type: texture + offset: 0x6E6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_001_tlut_wheel_1: + symbol: gKartMario001TlutWheel1 + type: texture + offset: 0x6E730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_001_tlut_wheel_2: + symbol: gKartMario001TlutWheel2 + type: texture + offset: 0x6E7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_001_tlut_wheel_3: + symbol: gKartMario001TlutWheel3 + type: texture + offset: 0x6E830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_002_tlut_wheel_0: + symbol: gKartMario002TlutWheel0 + type: texture + offset: 0x6E8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_002_tlut_wheel_1: + symbol: gKartMario002TlutWheel1 + type: texture + offset: 0x6E930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_002_tlut_wheel_2: + symbol: gKartMario002TlutWheel2 + type: texture + offset: 0x6E9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_002_tlut_wheel_3: + symbol: gKartMario002TlutWheel3 + type: texture + offset: 0x6EA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_003_tlut_wheel_0: + symbol: gKartMario003TlutWheel0 + type: texture + offset: 0x6EAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_003_tlut_wheel_1: + symbol: gKartMario003TlutWheel1 + type: texture + offset: 0x6EB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_003_tlut_wheel_2: + symbol: gKartMario003TlutWheel2 + type: texture + offset: 0x6EBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_003_tlut_wheel_3: + symbol: gKartMario003TlutWheel3 + type: texture + offset: 0x6EC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_004_tlut_wheel_0: + symbol: gKartMario004TlutWheel0 + type: texture + offset: 0x6ECB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_004_tlut_wheel_1: + symbol: gKartMario004TlutWheel1 + type: texture + offset: 0x6ED30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_004_tlut_wheel_2: + symbol: gKartMario004TlutWheel2 + type: texture + offset: 0x6EDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_004_tlut_wheel_3: + symbol: gKartMario004TlutWheel3 + type: texture + offset: 0x6EE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_005_tlut_wheel_0: + symbol: gKartMario005TlutWheel0 + type: texture + offset: 0x6EEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_005_tlut_wheel_1: + symbol: gKartMario005TlutWheel1 + type: texture + offset: 0x6EF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_005_tlut_wheel_2: + symbol: gKartMario005TlutWheel2 + type: texture + offset: 0x6EFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_005_tlut_wheel_3: + symbol: gKartMario005TlutWheel3 + type: texture + offset: 0x6F030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_006_tlut_wheel_0: + symbol: gKartMario006TlutWheel0 + type: texture + offset: 0x6F0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_006_tlut_wheel_1: + symbol: gKartMario006TlutWheel1 + type: texture + offset: 0x6F130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_006_tlut_wheel_2: + symbol: gKartMario006TlutWheel2 + type: texture + offset: 0x6F1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_006_tlut_wheel_3: + symbol: gKartMario006TlutWheel3 + type: texture + offset: 0x6F230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_007_tlut_wheel_0: + symbol: gKartMario007TlutWheel0 + type: texture + offset: 0x6F2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_007_tlut_wheel_1: + symbol: gKartMario007TlutWheel1 + type: texture + offset: 0x6F330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_007_tlut_wheel_2: + symbol: gKartMario007TlutWheel2 + type: texture + offset: 0x6F3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_007_tlut_wheel_3: + symbol: gKartMario007TlutWheel3 + type: texture + offset: 0x6F430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_008_tlut_wheel_0: + symbol: gKartMario008TlutWheel0 + type: texture + offset: 0x6F4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_008_tlut_wheel_1: + symbol: gKartMario008TlutWheel1 + type: texture + offset: 0x6F530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_008_tlut_wheel_2: + symbol: gKartMario008TlutWheel2 + type: texture + offset: 0x6F5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_008_tlut_wheel_3: + symbol: gKartMario008TlutWheel3 + type: texture + offset: 0x6F630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_009_tlut_wheel_0: + symbol: gKartMario009TlutWheel0 + type: texture + offset: 0x6F6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_009_tlut_wheel_1: + symbol: gKartMario009TlutWheel1 + type: texture + offset: 0x6F730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_009_tlut_wheel_2: + symbol: gKartMario009TlutWheel2 + type: texture + offset: 0x6F7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_009_tlut_wheel_3: + symbol: gKartMario009TlutWheel3 + type: texture + offset: 0x6F830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_010_tlut_wheel_0: + symbol: gKartMario010TlutWheel0 + type: texture + offset: 0x6F8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_010_tlut_wheel_1: + symbol: gKartMario010TlutWheel1 + type: texture + offset: 0x6F930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_010_tlut_wheel_2: + symbol: gKartMario010TlutWheel2 + type: texture + offset: 0x6F9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_010_tlut_wheel_3: + symbol: gKartMario010TlutWheel3 + type: texture + offset: 0x6FA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_011_tlut_wheel_0: + symbol: gKartMario011TlutWheel0 + type: texture + offset: 0x6FAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_011_tlut_wheel_1: + symbol: gKartMario011TlutWheel1 + type: texture + offset: 0x6FB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_011_tlut_wheel_2: + symbol: gKartMario011TlutWheel2 + type: texture + offset: 0x6FBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_011_tlut_wheel_3: + symbol: gKartMario011TlutWheel3 + type: texture + offset: 0x6FC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_012_tlut_wheel_0: + symbol: gKartMario012TlutWheel0 + type: texture + offset: 0x6FCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_012_tlut_wheel_1: + symbol: gKartMario012TlutWheel1 + type: texture + offset: 0x6FD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_012_tlut_wheel_2: + symbol: gKartMario012TlutWheel2 + type: texture + offset: 0x6FDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_012_tlut_wheel_3: + symbol: gKartMario012TlutWheel3 + type: texture + offset: 0x6FE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_013_tlut_wheel_0: + symbol: gKartMario013TlutWheel0 + type: texture + offset: 0x6FEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_013_tlut_wheel_1: + symbol: gKartMario013TlutWheel1 + type: texture + offset: 0x6FF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_013_tlut_wheel_2: + symbol: gKartMario013TlutWheel2 + type: texture + offset: 0x6FFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_013_tlut_wheel_3: + symbol: gKartMario013TlutWheel3 + type: texture + offset: 0x70030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_014_tlut_wheel_0: + symbol: gKartMario014TlutWheel0 + type: texture + offset: 0x700B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_014_tlut_wheel_1: + symbol: gKartMario014TlutWheel1 + type: texture + offset: 0x70130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_014_tlut_wheel_2: + symbol: gKartMario014TlutWheel2 + type: texture + offset: 0x701B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_014_tlut_wheel_3: + symbol: gKartMario014TlutWheel3 + type: texture + offset: 0x70230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_015_tlut_wheel_0: + symbol: gKartMario015TlutWheel0 + type: texture + offset: 0x702B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_015_tlut_wheel_1: + symbol: gKartMario015TlutWheel1 + type: texture + offset: 0x70330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_015_tlut_wheel_2: + symbol: gKartMario015TlutWheel2 + type: texture + offset: 0x703B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_015_tlut_wheel_3: + symbol: gKartMario015TlutWheel3 + type: texture + offset: 0x70430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_016_tlut_wheel_0: + symbol: gKartMario016TlutWheel0 + type: texture + offset: 0x704B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_016_tlut_wheel_1: + symbol: gKartMario016TlutWheel1 + type: texture + offset: 0x70530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_016_tlut_wheel_2: + symbol: gKartMario016TlutWheel2 + type: texture + offset: 0x705B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_016_tlut_wheel_3: + symbol: gKartMario016TlutWheel3 + type: texture + offset: 0x70630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_017_tlut_wheel_0: + symbol: gKartMario017TlutWheel0 + type: texture + offset: 0x706B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_017_tlut_wheel_1: + symbol: gKartMario017TlutWheel1 + type: texture + offset: 0x70730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_017_tlut_wheel_2: + symbol: gKartMario017TlutWheel2 + type: texture + offset: 0x707B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_017_tlut_wheel_3: + symbol: gKartMario017TlutWheel3 + type: texture + offset: 0x70830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_018_tlut_wheel_0: + symbol: gKartMario018TlutWheel0 + type: texture + offset: 0x708B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_018_tlut_wheel_1: + symbol: gKartMario018TlutWheel1 + type: texture + offset: 0x70930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_018_tlut_wheel_2: + symbol: gKartMario018TlutWheel2 + type: texture + offset: 0x709B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_018_tlut_wheel_3: + symbol: gKartMario018TlutWheel3 + type: texture + offset: 0x70A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_019_tlut_wheel_0: + symbol: gKartMario019TlutWheel0 + type: texture + offset: 0x70AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_019_tlut_wheel_1: + symbol: gKartMario019TlutWheel1 + type: texture + offset: 0x70B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_019_tlut_wheel_2: + symbol: gKartMario019TlutWheel2 + type: texture + offset: 0x70BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_019_tlut_wheel_3: + symbol: gKartMario019TlutWheel3 + type: texture + offset: 0x70C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_020_tlut_wheel_0: + symbol: gKartMario020TlutWheel0 + type: texture + offset: 0x70CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_020_tlut_wheel_1: + symbol: gKartMario020TlutWheel1 + type: texture + offset: 0x70D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_020_tlut_wheel_2: + symbol: gKartMario020TlutWheel2 + type: texture + offset: 0x70DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_020_tlut_wheel_3: + symbol: gKartMario020TlutWheel3 + type: texture + offset: 0x70E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_021_tlut_wheel_0: + symbol: gKartMario021TlutWheel0 + type: texture + offset: 0x70EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_021_tlut_wheel_1: + symbol: gKartMario021TlutWheel1 + type: texture + offset: 0x70F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_021_tlut_wheel_2: + symbol: gKartMario021TlutWheel2 + type: texture + offset: 0x70FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_021_tlut_wheel_3: + symbol: gKartMario021TlutWheel3 + type: texture + offset: 0x71030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_022_tlut_wheel_0: + symbol: gKartMario022TlutWheel0 + type: texture + offset: 0x710B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_022_tlut_wheel_1: + symbol: gKartMario022TlutWheel1 + type: texture + offset: 0x71130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_022_tlut_wheel_2: + symbol: gKartMario022TlutWheel2 + type: texture + offset: 0x711B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_022_tlut_wheel_3: + symbol: gKartMario022TlutWheel3 + type: texture + offset: 0x71230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_023_tlut_wheel_0: + symbol: gKartMario023TlutWheel0 + type: texture + offset: 0x712B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_023_tlut_wheel_1: + symbol: gKartMario023TlutWheel1 + type: texture + offset: 0x71330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_023_tlut_wheel_2: + symbol: gKartMario023TlutWheel2 + type: texture + offset: 0x713B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_023_tlut_wheel_3: + symbol: gKartMario023TlutWheel3 + type: texture + offset: 0x71430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_024_tlut_wheel_0: + symbol: gKartMario024TlutWheel0 + type: texture + offset: 0x714B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_024_tlut_wheel_1: + symbol: gKartMario024TlutWheel1 + type: texture + offset: 0x71530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_024_tlut_wheel_2: + symbol: gKartMario024TlutWheel2 + type: texture + offset: 0x715B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_024_tlut_wheel_3: + symbol: gKartMario024TlutWheel3 + type: texture + offset: 0x71630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_025_tlut_wheel_0: + symbol: gKartMario025TlutWheel0 + type: texture + offset: 0x716B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_025_tlut_wheel_1: + symbol: gKartMario025TlutWheel1 + type: texture + offset: 0x71730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_025_tlut_wheel_2: + symbol: gKartMario025TlutWheel2 + type: texture + offset: 0x717B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_025_tlut_wheel_3: + symbol: gKartMario025TlutWheel3 + type: texture + offset: 0x71830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_026_tlut_wheel_0: + symbol: gKartMario026TlutWheel0 + type: texture + offset: 0x718B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_026_tlut_wheel_1: + symbol: gKartMario026TlutWheel1 + type: texture + offset: 0x71930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_026_tlut_wheel_2: + symbol: gKartMario026TlutWheel2 + type: texture + offset: 0x719B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_026_tlut_wheel_3: + symbol: gKartMario026TlutWheel3 + type: texture + offset: 0x71A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_027_tlut_wheel_0: + symbol: gKartMario027TlutWheel0 + type: texture + offset: 0x71AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_027_tlut_wheel_1: + symbol: gKartMario027TlutWheel1 + type: texture + offset: 0x71B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_027_tlut_wheel_2: + symbol: gKartMario027TlutWheel2 + type: texture + offset: 0x71BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_027_tlut_wheel_3: + symbol: gKartMario027TlutWheel3 + type: texture + offset: 0x71C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_028_tlut_wheel_0: + symbol: gKartMario028TlutWheel0 + type: texture + offset: 0x71CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_028_tlut_wheel_1: + symbol: gKartMario028TlutWheel1 + type: texture + offset: 0x71D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_028_tlut_wheel_2: + symbol: gKartMario028TlutWheel2 + type: texture + offset: 0x71DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_028_tlut_wheel_3: + symbol: gKartMario028TlutWheel3 + type: texture + offset: 0x71E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_029_tlut_wheel_0: + symbol: gKartMario029TlutWheel0 + type: texture + offset: 0x71EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_029_tlut_wheel_1: + symbol: gKartMario029TlutWheel1 + type: texture + offset: 0x71F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_029_tlut_wheel_2: + symbol: gKartMario029TlutWheel2 + type: texture + offset: 0x71FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_029_tlut_wheel_3: + symbol: gKartMario029TlutWheel3 + type: texture + offset: 0x72030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_030_tlut_wheel_0: + symbol: gKartMario030TlutWheel0 + type: texture + offset: 0x720B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_030_tlut_wheel_1: + symbol: gKartMario030TlutWheel1 + type: texture + offset: 0x72130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_030_tlut_wheel_2: + symbol: gKartMario030TlutWheel2 + type: texture + offset: 0x721B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_030_tlut_wheel_3: + symbol: gKartMario030TlutWheel3 + type: texture + offset: 0x72230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_031_tlut_wheel_0: + symbol: gKartMario031TlutWheel0 + type: texture + offset: 0x722B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_031_tlut_wheel_1: + symbol: gKartMario031TlutWheel1 + type: texture + offset: 0x72330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_031_tlut_wheel_2: + symbol: gKartMario031TlutWheel2 + type: texture + offset: 0x723B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_031_tlut_wheel_3: + symbol: gKartMario031TlutWheel3 + type: texture + offset: 0x72430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_032_tlut_wheel_0: + symbol: gKartMario032TlutWheel0 + type: texture + offset: 0x724B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_032_tlut_wheel_1: + symbol: gKartMario032TlutWheel1 + type: texture + offset: 0x72530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_032_tlut_wheel_2: + symbol: gKartMario032TlutWheel2 + type: texture + offset: 0x725B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_032_tlut_wheel_3: + symbol: gKartMario032TlutWheel3 + type: texture + offset: 0x72630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_033_tlut_wheel_0: + symbol: gKartMario033TlutWheel0 + type: texture + offset: 0x726B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_033_tlut_wheel_1: + symbol: gKartMario033TlutWheel1 + type: texture + offset: 0x72730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_033_tlut_wheel_2: + symbol: gKartMario033TlutWheel2 + type: texture + offset: 0x727B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_033_tlut_wheel_3: + symbol: gKartMario033TlutWheel3 + type: texture + offset: 0x72830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_034_tlut_wheel_0: + symbol: gKartMario034TlutWheel0 + type: texture + offset: 0x728B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_034_tlut_wheel_1: + symbol: gKartMario034TlutWheel1 + type: texture + offset: 0x72930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_034_tlut_wheel_2: + symbol: gKartMario034TlutWheel2 + type: texture + offset: 0x729B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_034_tlut_wheel_3: + symbol: gKartMario034TlutWheel3 + type: texture + offset: 0x72A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_035_tlut_wheel_0: + symbol: gKartMario035TlutWheel0 + type: texture + offset: 0x72AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_035_tlut_wheel_1: + symbol: gKartMario035TlutWheel1 + type: texture + offset: 0x72B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_035_tlut_wheel_2: + symbol: gKartMario035TlutWheel2 + type: texture + offset: 0x72BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_035_tlut_wheel_3: + symbol: gKartMario035TlutWheel3 + type: texture + offset: 0x72C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_036_tlut_wheel_0: + symbol: gKartMario036TlutWheel0 + type: texture + offset: 0x72CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_036_tlut_wheel_1: + symbol: gKartMario036TlutWheel1 + type: texture + offset: 0x72D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_036_tlut_wheel_2: + symbol: gKartMario036TlutWheel2 + type: texture + offset: 0x72DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_036_tlut_wheel_3: + symbol: gKartMario036TlutWheel3 + type: texture + offset: 0x72E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_037_tlut_wheel_0: + symbol: gKartMario037TlutWheel0 + type: texture + offset: 0x72EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_037_tlut_wheel_1: + symbol: gKartMario037TlutWheel1 + type: texture + offset: 0x72F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_037_tlut_wheel_2: + symbol: gKartMario037TlutWheel2 + type: texture + offset: 0x72FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_037_tlut_wheel_3: + symbol: gKartMario037TlutWheel3 + type: texture + offset: 0x73030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_038_tlut_wheel_0: + symbol: gKartMario038TlutWheel0 + type: texture + offset: 0x730B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_038_tlut_wheel_1: + symbol: gKartMario038TlutWheel1 + type: texture + offset: 0x73130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_038_tlut_wheel_2: + symbol: gKartMario038TlutWheel2 + type: texture + offset: 0x731B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_038_tlut_wheel_3: + symbol: gKartMario038TlutWheel3 + type: texture + offset: 0x73230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_039_tlut_wheel_0: + symbol: gKartMario039TlutWheel0 + type: texture + offset: 0x732B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_039_tlut_wheel_1: + symbol: gKartMario039TlutWheel1 + type: texture + offset: 0x73330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_039_tlut_wheel_2: + symbol: gKartMario039TlutWheel2 + type: texture + offset: 0x733B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_039_tlut_wheel_3: + symbol: gKartMario039TlutWheel3 + type: texture + offset: 0x73430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_040_tlut_wheel_0: + symbol: gKartMario040TlutWheel0 + type: texture + offset: 0x734B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_040_tlut_wheel_1: + symbol: gKartMario040TlutWheel1 + type: texture + offset: 0x73530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_040_tlut_wheel_2: + symbol: gKartMario040TlutWheel2 + type: texture + offset: 0x735B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_040_tlut_wheel_3: + symbol: gKartMario040TlutWheel3 + type: texture + offset: 0x73630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_041_tlut_wheel_0: + symbol: gKartMario041TlutWheel0 + type: texture + offset: 0x736B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_041_tlut_wheel_1: + symbol: gKartMario041TlutWheel1 + type: texture + offset: 0x73730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_041_tlut_wheel_2: + symbol: gKartMario041TlutWheel2 + type: texture + offset: 0x737B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_041_tlut_wheel_3: + symbol: gKartMario041TlutWheel3 + type: texture + offset: 0x73830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_042_tlut_wheel_0: + symbol: gKartMario042TlutWheel0 + type: texture + offset: 0x738B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_042_tlut_wheel_1: + symbol: gKartMario042TlutWheel1 + type: texture + offset: 0x73930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_042_tlut_wheel_2: + symbol: gKartMario042TlutWheel2 + type: texture + offset: 0x739B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_042_tlut_wheel_3: + symbol: gKartMario042TlutWheel3 + type: texture + offset: 0x73A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_043_tlut_wheel_0: + symbol: gKartMario043TlutWheel0 + type: texture + offset: 0x73AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_043_tlut_wheel_1: + symbol: gKartMario043TlutWheel1 + type: texture + offset: 0x73B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_043_tlut_wheel_2: + symbol: gKartMario043TlutWheel2 + type: texture + offset: 0x73BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_043_tlut_wheel_3: + symbol: gKartMario043TlutWheel3 + type: texture + offset: 0x73C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_044_tlut_wheel_0: + symbol: gKartMario044TlutWheel0 + type: texture + offset: 0x73CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_044_tlut_wheel_1: + symbol: gKartMario044TlutWheel1 + type: texture + offset: 0x73D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_044_tlut_wheel_2: + symbol: gKartMario044TlutWheel2 + type: texture + offset: 0x73DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_044_tlut_wheel_3: + symbol: gKartMario044TlutWheel3 + type: texture + offset: 0x73E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_045_tlut_wheel_0: + symbol: gKartMario045TlutWheel0 + type: texture + offset: 0x73EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_045_tlut_wheel_1: + symbol: gKartMario045TlutWheel1 + type: texture + offset: 0x73F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_045_tlut_wheel_2: + symbol: gKartMario045TlutWheel2 + type: texture + offset: 0x73FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_045_tlut_wheel_3: + symbol: gKartMario045TlutWheel3 + type: texture + offset: 0x74030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_046_tlut_wheel_0: + symbol: gKartMario046TlutWheel0 + type: texture + offset: 0x740B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_046_tlut_wheel_1: + symbol: gKartMario046TlutWheel1 + type: texture + offset: 0x74130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_046_tlut_wheel_2: + symbol: gKartMario046TlutWheel2 + type: texture + offset: 0x741B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_046_tlut_wheel_3: + symbol: gKartMario046TlutWheel3 + type: texture + offset: 0x74230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_047_tlut_wheel_0: + symbol: gKartMario047TlutWheel0 + type: texture + offset: 0x742B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_047_tlut_wheel_1: + symbol: gKartMario047TlutWheel1 + type: texture + offset: 0x74330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_047_tlut_wheel_2: + symbol: gKartMario047TlutWheel2 + type: texture + offset: 0x743B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_047_tlut_wheel_3: + symbol: gKartMario047TlutWheel3 + type: texture + offset: 0x74430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_048_tlut_wheel_0: + symbol: gKartMario048TlutWheel0 + type: texture + offset: 0x744B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_048_tlut_wheel_1: + symbol: gKartMario048TlutWheel1 + type: texture + offset: 0x74530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_048_tlut_wheel_2: + symbol: gKartMario048TlutWheel2 + type: texture + offset: 0x745B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_048_tlut_wheel_3: + symbol: gKartMario048TlutWheel3 + type: texture + offset: 0x74630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_049_tlut_wheel_0: + symbol: gKartMario049TlutWheel0 + type: texture + offset: 0x746B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_049_tlut_wheel_1: + symbol: gKartMario049TlutWheel1 + type: texture + offset: 0x74730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_049_tlut_wheel_2: + symbol: gKartMario049TlutWheel2 + type: texture + offset: 0x747B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_049_tlut_wheel_3: + symbol: gKartMario049TlutWheel3 + type: texture + offset: 0x74830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_050_tlut_wheel_0: + symbol: gKartMario050TlutWheel0 + type: texture + offset: 0x748B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_050_tlut_wheel_1: + symbol: gKartMario050TlutWheel1 + type: texture + offset: 0x74930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_050_tlut_wheel_2: + symbol: gKartMario050TlutWheel2 + type: texture + offset: 0x749B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_050_tlut_wheel_3: + symbol: gKartMario050TlutWheel3 + type: texture + offset: 0x74A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_051_tlut_wheel_0: + symbol: gKartMario051TlutWheel0 + type: texture + offset: 0x74AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_051_tlut_wheel_1: + symbol: gKartMario051TlutWheel1 + type: texture + offset: 0x74B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_051_tlut_wheel_2: + symbol: gKartMario051TlutWheel2 + type: texture + offset: 0x74BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_051_tlut_wheel_3: + symbol: gKartMario051TlutWheel3 + type: texture + offset: 0x74C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_052_tlut_wheel_0: + symbol: gKartMario052TlutWheel0 + type: texture + offset: 0x74CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_052_tlut_wheel_1: + symbol: gKartMario052TlutWheel1 + type: texture + offset: 0x74D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_052_tlut_wheel_2: + symbol: gKartMario052TlutWheel2 + type: texture + offset: 0x74DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_052_tlut_wheel_3: + symbol: gKartMario052TlutWheel3 + type: texture + offset: 0x74E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_053_tlut_wheel_0: + symbol: gKartMario053TlutWheel0 + type: texture + offset: 0x74EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_053_tlut_wheel_1: + symbol: gKartMario053TlutWheel1 + type: texture + offset: 0x74F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_053_tlut_wheel_2: + symbol: gKartMario053TlutWheel2 + type: texture + offset: 0x74FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_053_tlut_wheel_3: + symbol: gKartMario053TlutWheel3 + type: texture + offset: 0x75030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_054_tlut_wheel_0: + symbol: gKartMario054TlutWheel0 + type: texture + offset: 0x750B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_054_tlut_wheel_1: + symbol: gKartMario054TlutWheel1 + type: texture + offset: 0x75130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_054_tlut_wheel_2: + symbol: gKartMario054TlutWheel2 + type: texture + offset: 0x751B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_054_tlut_wheel_3: + symbol: gKartMario054TlutWheel3 + type: texture + offset: 0x75230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_055_tlut_wheel_0: + symbol: gKartMario055TlutWheel0 + type: texture + offset: 0x752B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_055_tlut_wheel_1: + symbol: gKartMario055TlutWheel1 + type: texture + offset: 0x75330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_055_tlut_wheel_2: + symbol: gKartMario055TlutWheel2 + type: texture + offset: 0x753B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_055_tlut_wheel_3: + symbol: gKartMario055TlutWheel3 + type: texture + offset: 0x75430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_056_tlut_wheel_0: + symbol: gKartMario056TlutWheel0 + type: texture + offset: 0x754B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_056_tlut_wheel_1: + symbol: gKartMario056TlutWheel1 + type: texture + offset: 0x75530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_056_tlut_wheel_2: + symbol: gKartMario056TlutWheel2 + type: texture + offset: 0x755B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_056_tlut_wheel_3: + symbol: gKartMario056TlutWheel3 + type: texture + offset: 0x75630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_057_tlut_wheel_0: + symbol: gKartMario057TlutWheel0 + type: texture + offset: 0x756B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_057_tlut_wheel_1: + symbol: gKartMario057TlutWheel1 + type: texture + offset: 0x75730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_057_tlut_wheel_2: + symbol: gKartMario057TlutWheel2 + type: texture + offset: 0x757B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_057_tlut_wheel_3: + symbol: gKartMario057TlutWheel3 + type: texture + offset: 0x75830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_058_tlut_wheel_0: + symbol: gKartMario058TlutWheel0 + type: texture + offset: 0x758B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_058_tlut_wheel_1: + symbol: gKartMario058TlutWheel1 + type: texture + offset: 0x75930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_058_tlut_wheel_2: + symbol: gKartMario058TlutWheel2 + type: texture + offset: 0x759B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_058_tlut_wheel_3: + symbol: gKartMario058TlutWheel3 + type: texture + offset: 0x75A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_059_tlut_wheel_0: + symbol: gKartMario059TlutWheel0 + type: texture + offset: 0x75AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_059_tlut_wheel_1: + symbol: gKartMario059TlutWheel1 + type: texture + offset: 0x75B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_059_tlut_wheel_2: + symbol: gKartMario059TlutWheel2 + type: texture + offset: 0x75BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_059_tlut_wheel_3: + symbol: gKartMario059TlutWheel3 + type: texture + offset: 0x75C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_060_tlut_wheel_0: + symbol: gKartMario060TlutWheel0 + type: texture + offset: 0x75CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_060_tlut_wheel_1: + symbol: gKartMario060TlutWheel1 + type: texture + offset: 0x75D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_060_tlut_wheel_2: + symbol: gKartMario060TlutWheel2 + type: texture + offset: 0x75DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_060_tlut_wheel_3: + symbol: gKartMario060TlutWheel3 + type: texture + offset: 0x75E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_061_tlut_wheel_0: + symbol: gKartMario061TlutWheel0 + type: texture + offset: 0x75EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_061_tlut_wheel_1: + symbol: gKartMario061TlutWheel1 + type: texture + offset: 0x75F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_061_tlut_wheel_2: + symbol: gKartMario061TlutWheel2 + type: texture + offset: 0x75FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_061_tlut_wheel_3: + symbol: gKartMario061TlutWheel3 + type: texture + offset: 0x76030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_062_tlut_wheel_0: + symbol: gKartMario062TlutWheel0 + type: texture + offset: 0x760B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_062_tlut_wheel_1: + symbol: gKartMario062TlutWheel1 + type: texture + offset: 0x76130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_062_tlut_wheel_2: + symbol: gKartMario062TlutWheel2 + type: texture + offset: 0x761B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_062_tlut_wheel_3: + symbol: gKartMario062TlutWheel3 + type: texture + offset: 0x76230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_063_tlut_wheel_0: + symbol: gKartMario063TlutWheel0 + type: texture + offset: 0x762B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_063_tlut_wheel_1: + symbol: gKartMario063TlutWheel1 + type: texture + offset: 0x76330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_063_tlut_wheel_2: + symbol: gKartMario063TlutWheel2 + type: texture + offset: 0x763B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_063_tlut_wheel_3: + symbol: gKartMario063TlutWheel3 + type: texture + offset: 0x76430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_064_tlut_wheel_0: + symbol: gKartMario064TlutWheel0 + type: texture + offset: 0x764B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_064_tlut_wheel_1: + symbol: gKartMario064TlutWheel1 + type: texture + offset: 0x76530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_064_tlut_wheel_2: + symbol: gKartMario064TlutWheel2 + type: texture + offset: 0x765B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_064_tlut_wheel_3: + symbol: gKartMario064TlutWheel3 + type: texture + offset: 0x76630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_065_tlut_wheel_0: + symbol: gKartMario065TlutWheel0 + type: texture + offset: 0x766B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_065_tlut_wheel_1: + symbol: gKartMario065TlutWheel1 + type: texture + offset: 0x76730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_065_tlut_wheel_2: + symbol: gKartMario065TlutWheel2 + type: texture + offset: 0x767B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_065_tlut_wheel_3: + symbol: gKartMario065TlutWheel3 + type: texture + offset: 0x76830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_066_tlut_wheel_0: + symbol: gKartMario066TlutWheel0 + type: texture + offset: 0x768B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_066_tlut_wheel_1: + symbol: gKartMario066TlutWheel1 + type: texture + offset: 0x76930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_066_tlut_wheel_2: + symbol: gKartMario066TlutWheel2 + type: texture + offset: 0x769B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_066_tlut_wheel_3: + symbol: gKartMario066TlutWheel3 + type: texture + offset: 0x76A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_067_tlut_wheel_0: + symbol: gKartMario067TlutWheel0 + type: texture + offset: 0x76AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_067_tlut_wheel_1: + symbol: gKartMario067TlutWheel1 + type: texture + offset: 0x76B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_067_tlut_wheel_2: + symbol: gKartMario067TlutWheel2 + type: texture + offset: 0x76BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_067_tlut_wheel_3: + symbol: gKartMario067TlutWheel3 + type: texture + offset: 0x76C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_068_tlut_wheel_0: + symbol: gKartMario068TlutWheel0 + type: texture + offset: 0x76CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_068_tlut_wheel_1: + symbol: gKartMario068TlutWheel1 + type: texture + offset: 0x76D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_068_tlut_wheel_2: + symbol: gKartMario068TlutWheel2 + type: texture + offset: 0x76DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_068_tlut_wheel_3: + symbol: gKartMario068TlutWheel3 + type: texture + offset: 0x76E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_069_tlut_wheel_0: + symbol: gKartMario069TlutWheel0 + type: texture + offset: 0x76EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_069_tlut_wheel_1: + symbol: gKartMario069TlutWheel1 + type: texture + offset: 0x76F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_069_tlut_wheel_2: + symbol: gKartMario069TlutWheel2 + type: texture + offset: 0x76FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_069_tlut_wheel_3: + symbol: gKartMario069TlutWheel3 + type: texture + offset: 0x77030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_070_tlut_wheel_0: + symbol: gKartMario070TlutWheel0 + type: texture + offset: 0x770B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_070_tlut_wheel_1: + symbol: gKartMario070TlutWheel1 + type: texture + offset: 0x77130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_070_tlut_wheel_2: + symbol: gKartMario070TlutWheel2 + type: texture + offset: 0x771B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_070_tlut_wheel_3: + symbol: gKartMario070TlutWheel3 + type: texture + offset: 0x77230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_071_tlut_wheel_0: + symbol: gKartMario071TlutWheel0 + type: texture + offset: 0x772B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_071_tlut_wheel_1: + symbol: gKartMario071TlutWheel1 + type: texture + offset: 0x77330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_071_tlut_wheel_2: + symbol: gKartMario071TlutWheel2 + type: texture + offset: 0x773B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_071_tlut_wheel_3: + symbol: gKartMario071TlutWheel3 + type: texture + offset: 0x77430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_072_tlut_wheel_0: + symbol: gKartMario072TlutWheel0 + type: texture + offset: 0x774B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_072_tlut_wheel_1: + symbol: gKartMario072TlutWheel1 + type: texture + offset: 0x77530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_072_tlut_wheel_2: + symbol: gKartMario072TlutWheel2 + type: texture + offset: 0x775B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_072_tlut_wheel_3: + symbol: gKartMario072TlutWheel3 + type: texture + offset: 0x77630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_073_tlut_wheel_0: + symbol: gKartMario073TlutWheel0 + type: texture + offset: 0x776B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_073_tlut_wheel_1: + symbol: gKartMario073TlutWheel1 + type: texture + offset: 0x77730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_073_tlut_wheel_2: + symbol: gKartMario073TlutWheel2 + type: texture + offset: 0x777B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_073_tlut_wheel_3: + symbol: gKartMario073TlutWheel3 + type: texture + offset: 0x77830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_074_tlut_wheel_0: + symbol: gKartMario074TlutWheel0 + type: texture + offset: 0x778B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_074_tlut_wheel_1: + symbol: gKartMario074TlutWheel1 + type: texture + offset: 0x77930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_074_tlut_wheel_2: + symbol: gKartMario074TlutWheel2 + type: texture + offset: 0x779B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_074_tlut_wheel_3: + symbol: gKartMario074TlutWheel3 + type: texture + offset: 0x77A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_075_tlut_wheel_0: + symbol: gKartMario075TlutWheel0 + type: texture + offset: 0x77AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_075_tlut_wheel_1: + symbol: gKartMario075TlutWheel1 + type: texture + offset: 0x77B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_075_tlut_wheel_2: + symbol: gKartMario075TlutWheel2 + type: texture + offset: 0x77BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_075_tlut_wheel_3: + symbol: gKartMario075TlutWheel3 + type: texture + offset: 0x77C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_076_tlut_wheel_0: + symbol: gKartMario076TlutWheel0 + type: texture + offset: 0x77CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_076_tlut_wheel_1: + symbol: gKartMario076TlutWheel1 + type: texture + offset: 0x77D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_076_tlut_wheel_2: + symbol: gKartMario076TlutWheel2 + type: texture + offset: 0x77DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_076_tlut_wheel_3: + symbol: gKartMario076TlutWheel3 + type: texture + offset: 0x77E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_077_tlut_wheel_0: + symbol: gKartMario077TlutWheel0 + type: texture + offset: 0x77EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_077_tlut_wheel_1: + symbol: gKartMario077TlutWheel1 + type: texture + offset: 0x77F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_077_tlut_wheel_2: + symbol: gKartMario077TlutWheel2 + type: texture + offset: 0x77FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_077_tlut_wheel_3: + symbol: gKartMario077TlutWheel3 + type: texture + offset: 0x78030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_078_tlut_wheel_0: + symbol: gKartMario078TlutWheel0 + type: texture + offset: 0x780B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_078_tlut_wheel_1: + symbol: gKartMario078TlutWheel1 + type: texture + offset: 0x78130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_078_tlut_wheel_2: + symbol: gKartMario078TlutWheel2 + type: texture + offset: 0x781B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_078_tlut_wheel_3: + symbol: gKartMario078TlutWheel3 + type: texture + offset: 0x78230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_079_tlut_wheel_0: + symbol: gKartMario079TlutWheel0 + type: texture + offset: 0x782B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_079_tlut_wheel_1: + symbol: gKartMario079TlutWheel1 + type: texture + offset: 0x78330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_079_tlut_wheel_2: + symbol: gKartMario079TlutWheel2 + type: texture + offset: 0x783B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_079_tlut_wheel_3: + symbol: gKartMario079TlutWheel3 + type: texture + offset: 0x78430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_080_tlut_wheel_0: + symbol: gKartMario080TlutWheel0 + type: texture + offset: 0x784B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_080_tlut_wheel_1: + symbol: gKartMario080TlutWheel1 + type: texture + offset: 0x78530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_080_tlut_wheel_2: + symbol: gKartMario080TlutWheel2 + type: texture + offset: 0x785B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_080_tlut_wheel_3: + symbol: gKartMario080TlutWheel3 + type: texture + offset: 0x78630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_081_tlut_wheel_0: + symbol: gKartMario081TlutWheel0 + type: texture + offset: 0x786B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_081_tlut_wheel_1: + symbol: gKartMario081TlutWheel1 + type: texture + offset: 0x78730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_081_tlut_wheel_2: + symbol: gKartMario081TlutWheel2 + type: texture + offset: 0x787B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_081_tlut_wheel_3: + symbol: gKartMario081TlutWheel3 + type: texture + offset: 0x78830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_082_tlut_wheel_0: + symbol: gKartMario082TlutWheel0 + type: texture + offset: 0x788B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_082_tlut_wheel_1: + symbol: gKartMario082TlutWheel1 + type: texture + offset: 0x78930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_082_tlut_wheel_2: + symbol: gKartMario082TlutWheel2 + type: texture + offset: 0x789B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_082_tlut_wheel_3: + symbol: gKartMario082TlutWheel3 + type: texture + offset: 0x78A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_083_tlut_wheel_0: + symbol: gKartMario083TlutWheel0 + type: texture + offset: 0x78AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_083_tlut_wheel_1: + symbol: gKartMario083TlutWheel1 + type: texture + offset: 0x78B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_083_tlut_wheel_2: + symbol: gKartMario083TlutWheel2 + type: texture + offset: 0x78BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_083_tlut_wheel_3: + symbol: gKartMario083TlutWheel3 + type: texture + offset: 0x78C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_084_tlut_wheel_0: + symbol: gKartMario084TlutWheel0 + type: texture + offset: 0x78CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_084_tlut_wheel_1: + symbol: gKartMario084TlutWheel1 + type: texture + offset: 0x78D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_084_tlut_wheel_2: + symbol: gKartMario084TlutWheel2 + type: texture + offset: 0x78DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_084_tlut_wheel_3: + symbol: gKartMario084TlutWheel3 + type: texture + offset: 0x78E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_085_tlut_wheel_0: + symbol: gKartMario085TlutWheel0 + type: texture + offset: 0x78EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_085_tlut_wheel_1: + symbol: gKartMario085TlutWheel1 + type: texture + offset: 0x78F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_085_tlut_wheel_2: + symbol: gKartMario085TlutWheel2 + type: texture + offset: 0x78FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_085_tlut_wheel_3: + symbol: gKartMario085TlutWheel3 + type: texture + offset: 0x79030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_086_tlut_wheel_0: + symbol: gKartMario086TlutWheel0 + type: texture + offset: 0x790B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_086_tlut_wheel_1: + symbol: gKartMario086TlutWheel1 + type: texture + offset: 0x79130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_086_tlut_wheel_2: + symbol: gKartMario086TlutWheel2 + type: texture + offset: 0x791B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_086_tlut_wheel_3: + symbol: gKartMario086TlutWheel3 + type: texture + offset: 0x79230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_087_tlut_wheel_0: + symbol: gKartMario087TlutWheel0 + type: texture + offset: 0x792B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_087_tlut_wheel_1: + symbol: gKartMario087TlutWheel1 + type: texture + offset: 0x79330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_087_tlut_wheel_2: + symbol: gKartMario087TlutWheel2 + type: texture + offset: 0x793B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_087_tlut_wheel_3: + symbol: gKartMario087TlutWheel3 + type: texture + offset: 0x79430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_088_tlut_wheel_0: + symbol: gKartMario088TlutWheel0 + type: texture + offset: 0x794B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_088_tlut_wheel_1: + symbol: gKartMario088TlutWheel1 + type: texture + offset: 0x79530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_088_tlut_wheel_2: + symbol: gKartMario088TlutWheel2 + type: texture + offset: 0x795B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_088_tlut_wheel_3: + symbol: gKartMario088TlutWheel3 + type: texture + offset: 0x79630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_089_tlut_wheel_0: + symbol: gKartMario089TlutWheel0 + type: texture + offset: 0x796B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_089_tlut_wheel_1: + symbol: gKartMario089TlutWheel1 + type: texture + offset: 0x79730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_089_tlut_wheel_2: + symbol: gKartMario089TlutWheel2 + type: texture + offset: 0x797B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_089_tlut_wheel_3: + symbol: gKartMario089TlutWheel3 + type: texture + offset: 0x79830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_090_tlut_wheel_0: + symbol: gKartMario090TlutWheel0 + type: texture + offset: 0x798B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_090_tlut_wheel_1: + symbol: gKartMario090TlutWheel1 + type: texture + offset: 0x79930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_090_tlut_wheel_2: + symbol: gKartMario090TlutWheel2 + type: texture + offset: 0x799B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_090_tlut_wheel_3: + symbol: gKartMario090TlutWheel3 + type: texture + offset: 0x79A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_091_tlut_wheel_0: + symbol: gKartMario091TlutWheel0 + type: texture + offset: 0x79AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_091_tlut_wheel_1: + symbol: gKartMario091TlutWheel1 + type: texture + offset: 0x79B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_091_tlut_wheel_2: + symbol: gKartMario091TlutWheel2 + type: texture + offset: 0x79BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_091_tlut_wheel_3: + symbol: gKartMario091TlutWheel3 + type: texture + offset: 0x79C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_092_tlut_wheel_0: + symbol: gKartMario092TlutWheel0 + type: texture + offset: 0x79CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_092_tlut_wheel_1: + symbol: gKartMario092TlutWheel1 + type: texture + offset: 0x79D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_092_tlut_wheel_2: + symbol: gKartMario092TlutWheel2 + type: texture + offset: 0x79DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_092_tlut_wheel_3: + symbol: gKartMario092TlutWheel3 + type: texture + offset: 0x79E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_093_tlut_wheel_0: + symbol: gKartMario093TlutWheel0 + type: texture + offset: 0x79EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_093_tlut_wheel_1: + symbol: gKartMario093TlutWheel1 + type: texture + offset: 0x79F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_093_tlut_wheel_2: + symbol: gKartMario093TlutWheel2 + type: texture + offset: 0x79FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_093_tlut_wheel_3: + symbol: gKartMario093TlutWheel3 + type: texture + offset: 0x7A030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_094_tlut_wheel_0: + symbol: gKartMario094TlutWheel0 + type: texture + offset: 0x7A0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_094_tlut_wheel_1: + symbol: gKartMario094TlutWheel1 + type: texture + offset: 0x7A130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_094_tlut_wheel_2: + symbol: gKartMario094TlutWheel2 + type: texture + offset: 0x7A1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_094_tlut_wheel_3: + symbol: gKartMario094TlutWheel3 + type: texture + offset: 0x7A230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_095_tlut_wheel_0: + symbol: gKartMario095TlutWheel0 + type: texture + offset: 0x7A2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_095_tlut_wheel_1: + symbol: gKartMario095TlutWheel1 + type: texture + offset: 0x7A330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_095_tlut_wheel_2: + symbol: gKartMario095TlutWheel2 + type: texture + offset: 0x7A3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_095_tlut_wheel_3: + symbol: gKartMario095TlutWheel3 + type: texture + offset: 0x7A430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_096_tlut_wheel_0: + symbol: gKartMario096TlutWheel0 + type: texture + offset: 0x7A4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_096_tlut_wheel_1: + symbol: gKartMario096TlutWheel1 + type: texture + offset: 0x7A530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_096_tlut_wheel_2: + symbol: gKartMario096TlutWheel2 + type: texture + offset: 0x7A5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_096_tlut_wheel_3: + symbol: gKartMario096TlutWheel3 + type: texture + offset: 0x7A630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_097_tlut_wheel_0: + symbol: gKartMario097TlutWheel0 + type: texture + offset: 0x7A6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_097_tlut_wheel_1: + symbol: gKartMario097TlutWheel1 + type: texture + offset: 0x7A730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_097_tlut_wheel_2: + symbol: gKartMario097TlutWheel2 + type: texture + offset: 0x7A7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_097_tlut_wheel_3: + symbol: gKartMario097TlutWheel3 + type: texture + offset: 0x7A830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_098_tlut_wheel_0: + symbol: gKartMario098TlutWheel0 + type: texture + offset: 0x7A8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_098_tlut_wheel_1: + symbol: gKartMario098TlutWheel1 + type: texture + offset: 0x7A930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_098_tlut_wheel_2: + symbol: gKartMario098TlutWheel2 + type: texture + offset: 0x7A9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_098_tlut_wheel_3: + symbol: gKartMario098TlutWheel3 + type: texture + offset: 0x7AA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_099_tlut_wheel_0: + symbol: gKartMario099TlutWheel0 + type: texture + offset: 0x7AAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_099_tlut_wheel_1: + symbol: gKartMario099TlutWheel1 + type: texture + offset: 0x7AB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_099_tlut_wheel_2: + symbol: gKartMario099TlutWheel2 + type: texture + offset: 0x7ABB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_099_tlut_wheel_3: + symbol: gKartMario099TlutWheel3 + type: texture + offset: 0x7AC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_100_tlut_wheel_0: + symbol: gKartMario100TlutWheel0 + type: texture + offset: 0x7ACB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_100_tlut_wheel_1: + symbol: gKartMario100TlutWheel1 + type: texture + offset: 0x7AD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_100_tlut_wheel_2: + symbol: gKartMario100TlutWheel2 + type: texture + offset: 0x7ADB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_100_tlut_wheel_3: + symbol: gKartMario100TlutWheel3 + type: texture + offset: 0x7AE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_101_tlut_wheel_0: + symbol: gKartMario101TlutWheel0 + type: texture + offset: 0x7AEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_101_tlut_wheel_1: + symbol: gKartMario101TlutWheel1 + type: texture + offset: 0x7AF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_101_tlut_wheel_2: + symbol: gKartMario101TlutWheel2 + type: texture + offset: 0x7AFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_101_tlut_wheel_3: + symbol: gKartMario101TlutWheel3 + type: texture + offset: 0x7B030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_102_tlut_wheel_0: + symbol: gKartMario102TlutWheel0 + type: texture + offset: 0x7B0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_102_tlut_wheel_1: + symbol: gKartMario102TlutWheel1 + type: texture + offset: 0x7B130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_102_tlut_wheel_2: + symbol: gKartMario102TlutWheel2 + type: texture + offset: 0x7B1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_102_tlut_wheel_3: + symbol: gKartMario102TlutWheel3 + type: texture + offset: 0x7B230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_103_tlut_wheel_0: + symbol: gKartMario103TlutWheel0 + type: texture + offset: 0x7B2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_103_tlut_wheel_1: + symbol: gKartMario103TlutWheel1 + type: texture + offset: 0x7B330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_103_tlut_wheel_2: + symbol: gKartMario103TlutWheel2 + type: texture + offset: 0x7B3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_103_tlut_wheel_3: + symbol: gKartMario103TlutWheel3 + type: texture + offset: 0x7B430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_104_tlut_wheel_0: + symbol: gKartMario104TlutWheel0 + type: texture + offset: 0x7B4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_104_tlut_wheel_1: + symbol: gKartMario104TlutWheel1 + type: texture + offset: 0x7B530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_104_tlut_wheel_2: + symbol: gKartMario104TlutWheel2 + type: texture + offset: 0x7B5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_104_tlut_wheel_3: + symbol: gKartMario104TlutWheel3 + type: texture + offset: 0x7B630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_105_tlut_wheel_0: + symbol: gKartMario105TlutWheel0 + type: texture + offset: 0x7B6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_105_tlut_wheel_1: + symbol: gKartMario105TlutWheel1 + type: texture + offset: 0x7B730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_105_tlut_wheel_2: + symbol: gKartMario105TlutWheel2 + type: texture + offset: 0x7B7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_105_tlut_wheel_3: + symbol: gKartMario105TlutWheel3 + type: texture + offset: 0x7B830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_106_tlut_wheel_0: + symbol: gKartMario106TlutWheel0 + type: texture + offset: 0x7B8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_106_tlut_wheel_1: + symbol: gKartMario106TlutWheel1 + type: texture + offset: 0x7B930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_106_tlut_wheel_2: + symbol: gKartMario106TlutWheel2 + type: texture + offset: 0x7B9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_106_tlut_wheel_3: + symbol: gKartMario106TlutWheel3 + type: texture + offset: 0x7BA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_107_tlut_wheel_0: + symbol: gKartMario107TlutWheel0 + type: texture + offset: 0x7BAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_107_tlut_wheel_1: + symbol: gKartMario107TlutWheel1 + type: texture + offset: 0x7BB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_107_tlut_wheel_2: + symbol: gKartMario107TlutWheel2 + type: texture + offset: 0x7BBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_107_tlut_wheel_3: + symbol: gKartMario107TlutWheel3 + type: texture + offset: 0x7BC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_108_tlut_wheel_0: + symbol: gKartMario108TlutWheel0 + type: texture + offset: 0x7BCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_108_tlut_wheel_1: + symbol: gKartMario108TlutWheel1 + type: texture + offset: 0x7BD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_108_tlut_wheel_2: + symbol: gKartMario108TlutWheel2 + type: texture + offset: 0x7BDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_108_tlut_wheel_3: + symbol: gKartMario108TlutWheel3 + type: texture + offset: 0x7BE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_109_tlut_wheel_0: + symbol: gKartMario109TlutWheel0 + type: texture + offset: 0x7BEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_109_tlut_wheel_1: + symbol: gKartMario109TlutWheel1 + type: texture + offset: 0x7BF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_109_tlut_wheel_2: + symbol: gKartMario109TlutWheel2 + type: texture + offset: 0x7BFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_109_tlut_wheel_3: + symbol: gKartMario109TlutWheel3 + type: texture + offset: 0x7C030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_110_tlut_wheel_0: + symbol: gKartMario110TlutWheel0 + type: texture + offset: 0x7C0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_110_tlut_wheel_1: + symbol: gKartMario110TlutWheel1 + type: texture + offset: 0x7C130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_110_tlut_wheel_2: + symbol: gKartMario110TlutWheel2 + type: texture + offset: 0x7C1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_110_tlut_wheel_3: + symbol: gKartMario110TlutWheel3 + type: texture + offset: 0x7C230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_111_tlut_wheel_0: + symbol: gKartMario111TlutWheel0 + type: texture + offset: 0x7C2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_111_tlut_wheel_1: + symbol: gKartMario111TlutWheel1 + type: texture + offset: 0x7C330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_111_tlut_wheel_2: + symbol: gKartMario111TlutWheel2 + type: texture + offset: 0x7C3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_111_tlut_wheel_3: + symbol: gKartMario111TlutWheel3 + type: texture + offset: 0x7C430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_112_tlut_wheel_0: + symbol: gKartMario112TlutWheel0 + type: texture + offset: 0x7C4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_112_tlut_wheel_1: + symbol: gKartMario112TlutWheel1 + type: texture + offset: 0x7C530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_112_tlut_wheel_2: + symbol: gKartMario112TlutWheel2 + type: texture + offset: 0x7C5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_112_tlut_wheel_3: + symbol: gKartMario112TlutWheel3 + type: texture + offset: 0x7C630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_113_tlut_wheel_0: + symbol: gKartMario113TlutWheel0 + type: texture + offset: 0x7C6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_113_tlut_wheel_1: + symbol: gKartMario113TlutWheel1 + type: texture + offset: 0x7C730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_113_tlut_wheel_2: + symbol: gKartMario113TlutWheel2 + type: texture + offset: 0x7C7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_113_tlut_wheel_3: + symbol: gKartMario113TlutWheel3 + type: texture + offset: 0x7C830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_114_tlut_wheel_0: + symbol: gKartMario114TlutWheel0 + type: texture + offset: 0x7C8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_114_tlut_wheel_1: + symbol: gKartMario114TlutWheel1 + type: texture + offset: 0x7C930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_114_tlut_wheel_2: + symbol: gKartMario114TlutWheel2 + type: texture + offset: 0x7C9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_114_tlut_wheel_3: + symbol: gKartMario114TlutWheel3 + type: texture + offset: 0x7CA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_115_tlut_wheel_0: + symbol: gKartMario115TlutWheel0 + type: texture + offset: 0x7CAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_115_tlut_wheel_1: + symbol: gKartMario115TlutWheel1 + type: texture + offset: 0x7CB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_115_tlut_wheel_2: + symbol: gKartMario115TlutWheel2 + type: texture + offset: 0x7CBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_115_tlut_wheel_3: + symbol: gKartMario115TlutWheel3 + type: texture + offset: 0x7CC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_116_tlut_wheel_0: + symbol: gKartMario116TlutWheel0 + type: texture + offset: 0x7CCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_116_tlut_wheel_1: + symbol: gKartMario116TlutWheel1 + type: texture + offset: 0x7CD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_116_tlut_wheel_2: + symbol: gKartMario116TlutWheel2 + type: texture + offset: 0x7CDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_116_tlut_wheel_3: + symbol: gKartMario116TlutWheel3 + type: texture + offset: 0x7CE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_117_tlut_wheel_0: + symbol: gKartMario117TlutWheel0 + type: texture + offset: 0x7CEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_117_tlut_wheel_1: + symbol: gKartMario117TlutWheel1 + type: texture + offset: 0x7CF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_117_tlut_wheel_2: + symbol: gKartMario117TlutWheel2 + type: texture + offset: 0x7CFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_117_tlut_wheel_3: + symbol: gKartMario117TlutWheel3 + type: texture + offset: 0x7D030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_118_tlut_wheel_0: + symbol: gKartMario118TlutWheel0 + type: texture + offset: 0x7D0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_118_tlut_wheel_1: + symbol: gKartMario118TlutWheel1 + type: texture + offset: 0x7D130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_118_tlut_wheel_2: + symbol: gKartMario118TlutWheel2 + type: texture + offset: 0x7D1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_118_tlut_wheel_3: + symbol: gKartMario118TlutWheel3 + type: texture + offset: 0x7D230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_119_tlut_wheel_0: + symbol: gKartMario119TlutWheel0 + type: texture + offset: 0x7D2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_119_tlut_wheel_1: + symbol: gKartMario119TlutWheel1 + type: texture + offset: 0x7D330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_119_tlut_wheel_2: + symbol: gKartMario119TlutWheel2 + type: texture + offset: 0x7D3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_119_tlut_wheel_3: + symbol: gKartMario119TlutWheel3 + type: texture + offset: 0x7D430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_120_tlut_wheel_0: + symbol: gKartMario120TlutWheel0 + type: texture + offset: 0x7D4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_120_tlut_wheel_1: + symbol: gKartMario120TlutWheel1 + type: texture + offset: 0x7D530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_120_tlut_wheel_2: + symbol: gKartMario120TlutWheel2 + type: texture + offset: 0x7D5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_120_tlut_wheel_3: + symbol: gKartMario120TlutWheel3 + type: texture + offset: 0x7D630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_121_tlut_wheel_0: + symbol: gKartMario121TlutWheel0 + type: texture + offset: 0x7D6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_121_tlut_wheel_1: + symbol: gKartMario121TlutWheel1 + type: texture + offset: 0x7D730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_121_tlut_wheel_2: + symbol: gKartMario121TlutWheel2 + type: texture + offset: 0x7D7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_121_tlut_wheel_3: + symbol: gKartMario121TlutWheel3 + type: texture + offset: 0x7D830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_122_tlut_wheel_0: + symbol: gKartMario122TlutWheel0 + type: texture + offset: 0x7D8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_122_tlut_wheel_1: + symbol: gKartMario122TlutWheel1 + type: texture + offset: 0x7D930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_122_tlut_wheel_2: + symbol: gKartMario122TlutWheel2 + type: texture + offset: 0x7D9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_122_tlut_wheel_3: + symbol: gKartMario122TlutWheel3 + type: texture + offset: 0x7DA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_123_tlut_wheel_0: + symbol: gKartMario123TlutWheel0 + type: texture + offset: 0x7DAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_123_tlut_wheel_1: + symbol: gKartMario123TlutWheel1 + type: texture + offset: 0x7DB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_123_tlut_wheel_2: + symbol: gKartMario123TlutWheel2 + type: texture + offset: 0x7DBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_123_tlut_wheel_3: + symbol: gKartMario123TlutWheel3 + type: texture + offset: 0x7DC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_124_tlut_wheel_0: + symbol: gKartMario124TlutWheel0 + type: texture + offset: 0x7DCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_124_tlut_wheel_1: + symbol: gKartMario124TlutWheel1 + type: texture + offset: 0x7DD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_124_tlut_wheel_2: + symbol: gKartMario124TlutWheel2 + type: texture + offset: 0x7DDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_124_tlut_wheel_3: + symbol: gKartMario124TlutWheel3 + type: texture + offset: 0x7DE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_125_tlut_wheel_0: + symbol: gKartMario125TlutWheel0 + type: texture + offset: 0x7DEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_125_tlut_wheel_1: + symbol: gKartMario125TlutWheel1 + type: texture + offset: 0x7DF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_125_tlut_wheel_2: + symbol: gKartMario125TlutWheel2 + type: texture + offset: 0x7DFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_125_tlut_wheel_3: + symbol: gKartMario125TlutWheel3 + type: texture + offset: 0x7E030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_126_tlut_wheel_0: + symbol: gKartMario126TlutWheel0 + type: texture + offset: 0x7E0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_126_tlut_wheel_1: + symbol: gKartMario126TlutWheel1 + type: texture + offset: 0x7E130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_126_tlut_wheel_2: + symbol: gKartMario126TlutWheel2 + type: texture + offset: 0x7E1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_126_tlut_wheel_3: + symbol: gKartMario126TlutWheel3 + type: texture + offset: 0x7E230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_127_tlut_wheel_0: + symbol: gKartMario127TlutWheel0 + type: texture + offset: 0x7E2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_127_tlut_wheel_1: + symbol: gKartMario127TlutWheel1 + type: texture + offset: 0x7E330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_127_tlut_wheel_2: + symbol: gKartMario127TlutWheel2 + type: texture + offset: 0x7E3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_127_tlut_wheel_3: + symbol: gKartMario127TlutWheel3 + type: texture + offset: 0x7E430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_128_tlut_wheel_0: + symbol: gKartMario128TlutWheel0 + type: texture + offset: 0x7E4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_128_tlut_wheel_1: + symbol: gKartMario128TlutWheel1 + type: texture + offset: 0x7E530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_128_tlut_wheel_2: + symbol: gKartMario128TlutWheel2 + type: texture + offset: 0x7E5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_128_tlut_wheel_3: + symbol: gKartMario128TlutWheel3 + type: texture + offset: 0x7E630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_129_tlut_wheel_0: + symbol: gKartMario129TlutWheel0 + type: texture + offset: 0x7E6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_129_tlut_wheel_1: + symbol: gKartMario129TlutWheel1 + type: texture + offset: 0x7E730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_129_tlut_wheel_2: + symbol: gKartMario129TlutWheel2 + type: texture + offset: 0x7E7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_129_tlut_wheel_3: + symbol: gKartMario129TlutWheel3 + type: texture + offset: 0x7E830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_130_tlut_wheel_0: + symbol: gKartMario130TlutWheel0 + type: texture + offset: 0x7E8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_130_tlut_wheel_1: + symbol: gKartMario130TlutWheel1 + type: texture + offset: 0x7E930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_130_tlut_wheel_2: + symbol: gKartMario130TlutWheel2 + type: texture + offset: 0x7E9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_130_tlut_wheel_3: + symbol: gKartMario130TlutWheel3 + type: texture + offset: 0x7EA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_131_tlut_wheel_0: + symbol: gKartMario131TlutWheel0 + type: texture + offset: 0x7EAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_131_tlut_wheel_1: + symbol: gKartMario131TlutWheel1 + type: texture + offset: 0x7EB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_131_tlut_wheel_2: + symbol: gKartMario131TlutWheel2 + type: texture + offset: 0x7EBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_131_tlut_wheel_3: + symbol: gKartMario131TlutWheel3 + type: texture + offset: 0x7EC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_132_tlut_wheel_0: + symbol: gKartMario132TlutWheel0 + type: texture + offset: 0x7ECB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_132_tlut_wheel_1: + symbol: gKartMario132TlutWheel1 + type: texture + offset: 0x7ED30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_132_tlut_wheel_2: + symbol: gKartMario132TlutWheel2 + type: texture + offset: 0x7EDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_132_tlut_wheel_3: + symbol: gKartMario132TlutWheel3 + type: texture + offset: 0x7EE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_133_tlut_wheel_0: + symbol: gKartMario133TlutWheel0 + type: texture + offset: 0x7EEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_133_tlut_wheel_1: + symbol: gKartMario133TlutWheel1 + type: texture + offset: 0x7EF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_133_tlut_wheel_2: + symbol: gKartMario133TlutWheel2 + type: texture + offset: 0x7EFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_133_tlut_wheel_3: + symbol: gKartMario133TlutWheel3 + type: texture + offset: 0x7F030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_134_tlut_wheel_0: + symbol: gKartMario134TlutWheel0 + type: texture + offset: 0x7F0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_134_tlut_wheel_1: + symbol: gKartMario134TlutWheel1 + type: texture + offset: 0x7F130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_134_tlut_wheel_2: + symbol: gKartMario134TlutWheel2 + type: texture + offset: 0x7F1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_134_tlut_wheel_3: + symbol: gKartMario134TlutWheel3 + type: texture + offset: 0x7F230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_135_tlut_wheel_0: + symbol: gKartMario135TlutWheel0 + type: texture + offset: 0x7F2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_135_tlut_wheel_1: + symbol: gKartMario135TlutWheel1 + type: texture + offset: 0x7F330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_135_tlut_wheel_2: + symbol: gKartMario135TlutWheel2 + type: texture + offset: 0x7F3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_135_tlut_wheel_3: + symbol: gKartMario135TlutWheel3 + type: texture + offset: 0x7F430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_136_tlut_wheel_0: + symbol: gKartMario136TlutWheel0 + type: texture + offset: 0x7F4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_136_tlut_wheel_1: + symbol: gKartMario136TlutWheel1 + type: texture + offset: 0x7F530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_136_tlut_wheel_2: + symbol: gKartMario136TlutWheel2 + type: texture + offset: 0x7F5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_136_tlut_wheel_3: + symbol: gKartMario136TlutWheel3 + type: texture + offset: 0x7F630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_137_tlut_wheel_0: + symbol: gKartMario137TlutWheel0 + type: texture + offset: 0x7F6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_137_tlut_wheel_1: + symbol: gKartMario137TlutWheel1 + type: texture + offset: 0x7F730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_137_tlut_wheel_2: + symbol: gKartMario137TlutWheel2 + type: texture + offset: 0x7F7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_137_tlut_wheel_3: + symbol: gKartMario137TlutWheel3 + type: texture + offset: 0x7F830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_138_tlut_wheel_0: + symbol: gKartMario138TlutWheel0 + type: texture + offset: 0x7F8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_138_tlut_wheel_1: + symbol: gKartMario138TlutWheel1 + type: texture + offset: 0x7F930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_138_tlut_wheel_2: + symbol: gKartMario138TlutWheel2 + type: texture + offset: 0x7F9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_138_tlut_wheel_3: + symbol: gKartMario138TlutWheel3 + type: texture + offset: 0x7FA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_139_tlut_wheel_0: + symbol: gKartMario139TlutWheel0 + type: texture + offset: 0x7FAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_139_tlut_wheel_1: + symbol: gKartMario139TlutWheel1 + type: texture + offset: 0x7FB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_139_tlut_wheel_2: + symbol: gKartMario139TlutWheel2 + type: texture + offset: 0x7FBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_139_tlut_wheel_3: + symbol: gKartMario139TlutWheel3 + type: texture + offset: 0x7FC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_140_tlut_wheel_0: + symbol: gKartMario140TlutWheel0 + type: texture + offset: 0x7FCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_140_tlut_wheel_1: + symbol: gKartMario140TlutWheel1 + type: texture + offset: 0x7FD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_140_tlut_wheel_2: + symbol: gKartMario140TlutWheel2 + type: texture + offset: 0x7FDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_140_tlut_wheel_3: + symbol: gKartMario140TlutWheel3 + type: texture + offset: 0x7FE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_141_tlut_wheel_0: + symbol: gKartMario141TlutWheel0 + type: texture + offset: 0x7FEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_141_tlut_wheel_1: + symbol: gKartMario141TlutWheel1 + type: texture + offset: 0x7FF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_141_tlut_wheel_2: + symbol: gKartMario141TlutWheel2 + type: texture + offset: 0x7FFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_141_tlut_wheel_3: + symbol: gKartMario141TlutWheel3 + type: texture + offset: 0x80030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_142_tlut_wheel_0: + symbol: gKartMario142TlutWheel0 + type: texture + offset: 0x800B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_142_tlut_wheel_1: + symbol: gKartMario142TlutWheel1 + type: texture + offset: 0x80130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_142_tlut_wheel_2: + symbol: gKartMario142TlutWheel2 + type: texture + offset: 0x801B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_142_tlut_wheel_3: + symbol: gKartMario142TlutWheel3 + type: texture + offset: 0x80230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_143_tlut_wheel_0: + symbol: gKartMario143TlutWheel0 + type: texture + offset: 0x802B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_143_tlut_wheel_1: + symbol: gKartMario143TlutWheel1 + type: texture + offset: 0x80330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_143_tlut_wheel_2: + symbol: gKartMario143TlutWheel2 + type: texture + offset: 0x803B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_143_tlut_wheel_3: + symbol: gKartMario143TlutWheel3 + type: texture + offset: 0x80430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_144_tlut_wheel_0: + symbol: gKartMario144TlutWheel0 + type: texture + offset: 0x804B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_144_tlut_wheel_1: + symbol: gKartMario144TlutWheel1 + type: texture + offset: 0x80530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_144_tlut_wheel_2: + symbol: gKartMario144TlutWheel2 + type: texture + offset: 0x805B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_144_tlut_wheel_3: + symbol: gKartMario144TlutWheel3 + type: texture + offset: 0x80630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_145_tlut_wheel_0: + symbol: gKartMario145TlutWheel0 + type: texture + offset: 0x806B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_145_tlut_wheel_1: + symbol: gKartMario145TlutWheel1 + type: texture + offset: 0x80730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_145_tlut_wheel_2: + symbol: gKartMario145TlutWheel2 + type: texture + offset: 0x807B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_145_tlut_wheel_3: + symbol: gKartMario145TlutWheel3 + type: texture + offset: 0x80830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_146_tlut_wheel_0: + symbol: gKartMario146TlutWheel0 + type: texture + offset: 0x808B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_146_tlut_wheel_1: + symbol: gKartMario146TlutWheel1 + type: texture + offset: 0x80930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_146_tlut_wheel_2: + symbol: gKartMario146TlutWheel2 + type: texture + offset: 0x809B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_146_tlut_wheel_3: + symbol: gKartMario146TlutWheel3 + type: texture + offset: 0x80A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_147_tlut_wheel_0: + symbol: gKartMario147TlutWheel0 + type: texture + offset: 0x80AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_147_tlut_wheel_1: + symbol: gKartMario147TlutWheel1 + type: texture + offset: 0x80B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_147_tlut_wheel_2: + symbol: gKartMario147TlutWheel2 + type: texture + offset: 0x80BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_147_tlut_wheel_3: + symbol: gKartMario147TlutWheel3 + type: texture + offset: 0x80C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_148_tlut_wheel_0: + symbol: gKartMario148TlutWheel0 + type: texture + offset: 0x80CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_148_tlut_wheel_1: + symbol: gKartMario148TlutWheel1 + type: texture + offset: 0x80D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_148_tlut_wheel_2: + symbol: gKartMario148TlutWheel2 + type: texture + offset: 0x80DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_148_tlut_wheel_3: + symbol: gKartMario148TlutWheel3 + type: texture + offset: 0x80E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_149_tlut_wheel_0: + symbol: gKartMario149TlutWheel0 + type: texture + offset: 0x80EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_149_tlut_wheel_1: + symbol: gKartMario149TlutWheel1 + type: texture + offset: 0x80F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_149_tlut_wheel_2: + symbol: gKartMario149TlutWheel2 + type: texture + offset: 0x80FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_149_tlut_wheel_3: + symbol: gKartMario149TlutWheel3 + type: texture + offset: 0x81030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_150_tlut_wheel_0: + symbol: gKartMario150TlutWheel0 + type: texture + offset: 0x810B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_150_tlut_wheel_1: + symbol: gKartMario150TlutWheel1 + type: texture + offset: 0x81130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_150_tlut_wheel_2: + symbol: gKartMario150TlutWheel2 + type: texture + offset: 0x811B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_150_tlut_wheel_3: + symbol: gKartMario150TlutWheel3 + type: texture + offset: 0x81230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_151_tlut_wheel_0: + symbol: gKartMario151TlutWheel0 + type: texture + offset: 0x812B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_151_tlut_wheel_1: + symbol: gKartMario151TlutWheel1 + type: texture + offset: 0x81330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_151_tlut_wheel_2: + symbol: gKartMario151TlutWheel2 + type: texture + offset: 0x813B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_151_tlut_wheel_3: + symbol: gKartMario151TlutWheel3 + type: texture + offset: 0x81430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_152_tlut_wheel_0: + symbol: gKartMario152TlutWheel0 + type: texture + offset: 0x814B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_152_tlut_wheel_1: + symbol: gKartMario152TlutWheel1 + type: texture + offset: 0x81530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_152_tlut_wheel_2: + symbol: gKartMario152TlutWheel2 + type: texture + offset: 0x815B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_152_tlut_wheel_3: + symbol: gKartMario152TlutWheel3 + type: texture + offset: 0x81630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_153_tlut_wheel_0: + symbol: gKartMario153TlutWheel0 + type: texture + offset: 0x816B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_153_tlut_wheel_1: + symbol: gKartMario153TlutWheel1 + type: texture + offset: 0x81730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_153_tlut_wheel_2: + symbol: gKartMario153TlutWheel2 + type: texture + offset: 0x817B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_153_tlut_wheel_3: + symbol: gKartMario153TlutWheel3 + type: texture + offset: 0x81830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_154_tlut_wheel_0: + symbol: gKartMario154TlutWheel0 + type: texture + offset: 0x818B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_154_tlut_wheel_1: + symbol: gKartMario154TlutWheel1 + type: texture + offset: 0x81930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_154_tlut_wheel_2: + symbol: gKartMario154TlutWheel2 + type: texture + offset: 0x819B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_154_tlut_wheel_3: + symbol: gKartMario154TlutWheel3 + type: texture + offset: 0x81A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_155_tlut_wheel_0: + symbol: gKartMario155TlutWheel0 + type: texture + offset: 0x81AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_155_tlut_wheel_1: + symbol: gKartMario155TlutWheel1 + type: texture + offset: 0x81B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_155_tlut_wheel_2: + symbol: gKartMario155TlutWheel2 + type: texture + offset: 0x81BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_155_tlut_wheel_3: + symbol: gKartMario155TlutWheel3 + type: texture + offset: 0x81C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_156_tlut_wheel_0: + symbol: gKartMario156TlutWheel0 + type: texture + offset: 0x81CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_156_tlut_wheel_1: + symbol: gKartMario156TlutWheel1 + type: texture + offset: 0x81D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_156_tlut_wheel_2: + symbol: gKartMario156TlutWheel2 + type: texture + offset: 0x81DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_156_tlut_wheel_3: + symbol: gKartMario156TlutWheel3 + type: texture + offset: 0x81E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_157_tlut_wheel_0: + symbol: gKartMario157TlutWheel0 + type: texture + offset: 0x81EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_157_tlut_wheel_1: + symbol: gKartMario157TlutWheel1 + type: texture + offset: 0x81F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_157_tlut_wheel_2: + symbol: gKartMario157TlutWheel2 + type: texture + offset: 0x81FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_157_tlut_wheel_3: + symbol: gKartMario157TlutWheel3 + type: texture + offset: 0x82030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_158_tlut_wheel_0: + symbol: gKartMario158TlutWheel0 + type: texture + offset: 0x820B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_158_tlut_wheel_1: + symbol: gKartMario158TlutWheel1 + type: texture + offset: 0x82130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_158_tlut_wheel_2: + symbol: gKartMario158TlutWheel2 + type: texture + offset: 0x821B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_158_tlut_wheel_3: + symbol: gKartMario158TlutWheel3 + type: texture + offset: 0x82230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_159_tlut_wheel_0: + symbol: gKartMario159TlutWheel0 + type: texture + offset: 0x822B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_159_tlut_wheel_1: + symbol: gKartMario159TlutWheel1 + type: texture + offset: 0x82330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_159_tlut_wheel_2: + symbol: gKartMario159TlutWheel2 + type: texture + offset: 0x823B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_159_tlut_wheel_3: + symbol: gKartMario159TlutWheel3 + type: texture + offset: 0x82430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_160_tlut_wheel_0: + symbol: gKartMario160TlutWheel0 + type: texture + offset: 0x824B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_160_tlut_wheel_1: + symbol: gKartMario160TlutWheel1 + type: texture + offset: 0x82530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_160_tlut_wheel_2: + symbol: gKartMario160TlutWheel2 + type: texture + offset: 0x825B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_160_tlut_wheel_3: + symbol: gKartMario160TlutWheel3 + type: texture + offset: 0x82630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_161_tlut_wheel_0: + symbol: gKartMario161TlutWheel0 + type: texture + offset: 0x826B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_161_tlut_wheel_1: + symbol: gKartMario161TlutWheel1 + type: texture + offset: 0x82730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_161_tlut_wheel_2: + symbol: gKartMario161TlutWheel2 + type: texture + offset: 0x827B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_161_tlut_wheel_3: + symbol: gKartMario161TlutWheel3 + type: texture + offset: 0x82830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_162_tlut_wheel_0: + symbol: gKartMario162TlutWheel0 + type: texture + offset: 0x828B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_162_tlut_wheel_1: + symbol: gKartMario162TlutWheel1 + type: texture + offset: 0x82930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_162_tlut_wheel_2: + symbol: gKartMario162TlutWheel2 + type: texture + offset: 0x829B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_162_tlut_wheel_3: + symbol: gKartMario162TlutWheel3 + type: texture + offset: 0x82A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_163_tlut_wheel_0: + symbol: gKartMario163TlutWheel0 + type: texture + offset: 0x82AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_163_tlut_wheel_1: + symbol: gKartMario163TlutWheel1 + type: texture + offset: 0x82B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_163_tlut_wheel_2: + symbol: gKartMario163TlutWheel2 + type: texture + offset: 0x82BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_163_tlut_wheel_3: + symbol: gKartMario163TlutWheel3 + type: texture + offset: 0x82C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_164_tlut_wheel_0: + symbol: gKartMario164TlutWheel0 + type: texture + offset: 0x82CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_164_tlut_wheel_1: + symbol: gKartMario164TlutWheel1 + type: texture + offset: 0x82D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_164_tlut_wheel_2: + symbol: gKartMario164TlutWheel2 + type: texture + offset: 0x82DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_164_tlut_wheel_3: + symbol: gKartMario164TlutWheel3 + type: texture + offset: 0x82E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_165_tlut_wheel_0: + symbol: gKartMario165TlutWheel0 + type: texture + offset: 0x82EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_165_tlut_wheel_1: + symbol: gKartMario165TlutWheel1 + type: texture + offset: 0x82F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_165_tlut_wheel_2: + symbol: gKartMario165TlutWheel2 + type: texture + offset: 0x82FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_165_tlut_wheel_3: + symbol: gKartMario165TlutWheel3 + type: texture + offset: 0x83030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_166_tlut_wheel_0: + symbol: gKartMario166TlutWheel0 + type: texture + offset: 0x830B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_166_tlut_wheel_1: + symbol: gKartMario166TlutWheel1 + type: texture + offset: 0x83130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_166_tlut_wheel_2: + symbol: gKartMario166TlutWheel2 + type: texture + offset: 0x831B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_166_tlut_wheel_3: + symbol: gKartMario166TlutWheel3 + type: texture + offset: 0x83230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_167_tlut_wheel_0: + symbol: gKartMario167TlutWheel0 + type: texture + offset: 0x832B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_167_tlut_wheel_1: + symbol: gKartMario167TlutWheel1 + type: texture + offset: 0x83330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_167_tlut_wheel_2: + symbol: gKartMario167TlutWheel2 + type: texture + offset: 0x833B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_167_tlut_wheel_3: + symbol: gKartMario167TlutWheel3 + type: texture + offset: 0x83430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_168_tlut_wheel_0: + symbol: gKartMario168TlutWheel0 + type: texture + offset: 0x834B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_168_tlut_wheel_1: + symbol: gKartMario168TlutWheel1 + type: texture + offset: 0x83530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_168_tlut_wheel_2: + symbol: gKartMario168TlutWheel2 + type: texture + offset: 0x835B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_168_tlut_wheel_3: + symbol: gKartMario168TlutWheel3 + type: texture + offset: 0x83630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_169_tlut_wheel_0: + symbol: gKartMario169TlutWheel0 + type: texture + offset: 0x836B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_169_tlut_wheel_1: + symbol: gKartMario169TlutWheel1 + type: texture + offset: 0x83730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_169_tlut_wheel_2: + symbol: gKartMario169TlutWheel2 + type: texture + offset: 0x837B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_169_tlut_wheel_3: + symbol: gKartMario169TlutWheel3 + type: texture + offset: 0x83830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_170_tlut_wheel_0: + symbol: gKartMario170TlutWheel0 + type: texture + offset: 0x838B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_170_tlut_wheel_1: + symbol: gKartMario170TlutWheel1 + type: texture + offset: 0x83930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_170_tlut_wheel_2: + symbol: gKartMario170TlutWheel2 + type: texture + offset: 0x839B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_170_tlut_wheel_3: + symbol: gKartMario170TlutWheel3 + type: texture + offset: 0x83A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_171_tlut_wheel_0: + symbol: gKartMario171TlutWheel0 + type: texture + offset: 0x83AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_171_tlut_wheel_1: + symbol: gKartMario171TlutWheel1 + type: texture + offset: 0x83B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_171_tlut_wheel_2: + symbol: gKartMario171TlutWheel2 + type: texture + offset: 0x83BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_171_tlut_wheel_3: + symbol: gKartMario171TlutWheel3 + type: texture + offset: 0x83C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_172_tlut_wheel_0: + symbol: gKartMario172TlutWheel0 + type: texture + offset: 0x83CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_172_tlut_wheel_1: + symbol: gKartMario172TlutWheel1 + type: texture + offset: 0x83D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_172_tlut_wheel_2: + symbol: gKartMario172TlutWheel2 + type: texture + offset: 0x83DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_172_tlut_wheel_3: + symbol: gKartMario172TlutWheel3 + type: texture + offset: 0x83E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_173_tlut_wheel_0: + symbol: gKartMario173TlutWheel0 + type: texture + offset: 0x83EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_173_tlut_wheel_1: + symbol: gKartMario173TlutWheel1 + type: texture + offset: 0x83F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_173_tlut_wheel_2: + symbol: gKartMario173TlutWheel2 + type: texture + offset: 0x83FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_173_tlut_wheel_3: + symbol: gKartMario173TlutWheel3 + type: texture + offset: 0x84030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_174_tlut_wheel_0: + symbol: gKartMario174TlutWheel0 + type: texture + offset: 0x840B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_174_tlut_wheel_1: + symbol: gKartMario174TlutWheel1 + type: texture + offset: 0x84130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_174_tlut_wheel_2: + symbol: gKartMario174TlutWheel2 + type: texture + offset: 0x841B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_174_tlut_wheel_3: + symbol: gKartMario174TlutWheel3 + type: texture + offset: 0x84230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_175_tlut_wheel_0: + symbol: gKartMario175TlutWheel0 + type: texture + offset: 0x842B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_175_tlut_wheel_1: + symbol: gKartMario175TlutWheel1 + type: texture + offset: 0x84330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_175_tlut_wheel_2: + symbol: gKartMario175TlutWheel2 + type: texture + offset: 0x843B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_175_tlut_wheel_3: + symbol: gKartMario175TlutWheel3 + type: texture + offset: 0x84430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_176_tlut_wheel_0: + symbol: gKartMario176TlutWheel0 + type: texture + offset: 0x844B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_176_tlut_wheel_1: + symbol: gKartMario176TlutWheel1 + type: texture + offset: 0x84530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_176_tlut_wheel_2: + symbol: gKartMario176TlutWheel2 + type: texture + offset: 0x845B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_176_tlut_wheel_3: + symbol: gKartMario176TlutWheel3 + type: texture + offset: 0x84630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_177_tlut_wheel_0: + symbol: gKartMario177TlutWheel0 + type: texture + offset: 0x846B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_177_tlut_wheel_1: + symbol: gKartMario177TlutWheel1 + type: texture + offset: 0x84730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_177_tlut_wheel_2: + symbol: gKartMario177TlutWheel2 + type: texture + offset: 0x847B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_177_tlut_wheel_3: + symbol: gKartMario177TlutWheel3 + type: texture + offset: 0x84830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_178_tlut_wheel_0: + symbol: gKartMario178TlutWheel0 + type: texture + offset: 0x848B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_178_tlut_wheel_1: + symbol: gKartMario178TlutWheel1 + type: texture + offset: 0x84930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_178_tlut_wheel_2: + symbol: gKartMario178TlutWheel2 + type: texture + offset: 0x849B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_178_tlut_wheel_3: + symbol: gKartMario178TlutWheel3 + type: texture + offset: 0x84A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_179_tlut_wheel_0: + symbol: gKartMario179TlutWheel0 + type: texture + offset: 0x84AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_179_tlut_wheel_1: + symbol: gKartMario179TlutWheel1 + type: texture + offset: 0x84B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_179_tlut_wheel_2: + symbol: gKartMario179TlutWheel2 + type: texture + offset: 0x84BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_179_tlut_wheel_3: + symbol: gKartMario179TlutWheel3 + type: texture + offset: 0x84C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_180_tlut_wheel_0: + symbol: gKartMario180TlutWheel0 + type: texture + offset: 0x84CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_180_tlut_wheel_1: + symbol: gKartMario180TlutWheel1 + type: texture + offset: 0x84D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_180_tlut_wheel_2: + symbol: gKartMario180TlutWheel2 + type: texture + offset: 0x84DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_180_tlut_wheel_3: + symbol: gKartMario180TlutWheel3 + type: texture + offset: 0x84E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_181_tlut_wheel_0: + symbol: gKartMario181TlutWheel0 + type: texture + offset: 0x84EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_181_tlut_wheel_1: + symbol: gKartMario181TlutWheel1 + type: texture + offset: 0x84F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_181_tlut_wheel_2: + symbol: gKartMario181TlutWheel2 + type: texture + offset: 0x84FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_181_tlut_wheel_3: + symbol: gKartMario181TlutWheel3 + type: texture + offset: 0x85030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_182_tlut_wheel_0: + symbol: gKartMario182TlutWheel0 + type: texture + offset: 0x850B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_182_tlut_wheel_1: + symbol: gKartMario182TlutWheel1 + type: texture + offset: 0x85130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_182_tlut_wheel_2: + symbol: gKartMario182TlutWheel2 + type: texture + offset: 0x851B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_182_tlut_wheel_3: + symbol: gKartMario182TlutWheel3 + type: texture + offset: 0x85230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_183_tlut_wheel_0: + symbol: gKartMario183TlutWheel0 + type: texture + offset: 0x852B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_183_tlut_wheel_1: + symbol: gKartMario183TlutWheel1 + type: texture + offset: 0x85330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_183_tlut_wheel_2: + symbol: gKartMario183TlutWheel2 + type: texture + offset: 0x853B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_183_tlut_wheel_3: + symbol: gKartMario183TlutWheel3 + type: texture + offset: 0x85430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_184_tlut_wheel_0: + symbol: gKartMario184TlutWheel0 + type: texture + offset: 0x854B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_184_tlut_wheel_1: + symbol: gKartMario184TlutWheel1 + type: texture + offset: 0x85530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_184_tlut_wheel_2: + symbol: gKartMario184TlutWheel2 + type: texture + offset: 0x855B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_184_tlut_wheel_3: + symbol: gKartMario184TlutWheel3 + type: texture + offset: 0x85630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_185_tlut_wheel_0: + symbol: gKartMario185TlutWheel0 + type: texture + offset: 0x856B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_185_tlut_wheel_1: + symbol: gKartMario185TlutWheel1 + type: texture + offset: 0x85730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_185_tlut_wheel_2: + symbol: gKartMario185TlutWheel2 + type: texture + offset: 0x857B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_185_tlut_wheel_3: + symbol: gKartMario185TlutWheel3 + type: texture + offset: 0x85830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_186_tlut_wheel_0: + symbol: gKartMario186TlutWheel0 + type: texture + offset: 0x858B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_186_tlut_wheel_1: + symbol: gKartMario186TlutWheel1 + type: texture + offset: 0x85930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_186_tlut_wheel_2: + symbol: gKartMario186TlutWheel2 + type: texture + offset: 0x859B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_186_tlut_wheel_3: + symbol: gKartMario186TlutWheel3 + type: texture + offset: 0x85A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_187_tlut_wheel_0: + symbol: gKartMario187TlutWheel0 + type: texture + offset: 0x85AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_187_tlut_wheel_1: + symbol: gKartMario187TlutWheel1 + type: texture + offset: 0x85B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_187_tlut_wheel_2: + symbol: gKartMario187TlutWheel2 + type: texture + offset: 0x85BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_187_tlut_wheel_3: + symbol: gKartMario187TlutWheel3 + type: texture + offset: 0x85C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_188_tlut_wheel_0: + symbol: gKartMario188TlutWheel0 + type: texture + offset: 0x85CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_188_tlut_wheel_1: + symbol: gKartMario188TlutWheel1 + type: texture + offset: 0x85D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_188_tlut_wheel_2: + symbol: gKartMario188TlutWheel2 + type: texture + offset: 0x85DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_188_tlut_wheel_3: + symbol: gKartMario188TlutWheel3 + type: texture + offset: 0x85E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_189_tlut_wheel_0: + symbol: gKartMario189TlutWheel0 + type: texture + offset: 0x85EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_189_tlut_wheel_1: + symbol: gKartMario189TlutWheel1 + type: texture + offset: 0x85F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_189_tlut_wheel_2: + symbol: gKartMario189TlutWheel2 + type: texture + offset: 0x85FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_189_tlut_wheel_3: + symbol: gKartMario189TlutWheel3 + type: texture + offset: 0x86030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_190_tlut_wheel_0: + symbol: gKartMario190TlutWheel0 + type: texture + offset: 0x860B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_190_tlut_wheel_1: + symbol: gKartMario190TlutWheel1 + type: texture + offset: 0x86130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_190_tlut_wheel_2: + symbol: gKartMario190TlutWheel2 + type: texture + offset: 0x861B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_190_tlut_wheel_3: + symbol: gKartMario190TlutWheel3 + type: texture + offset: 0x86230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_191_tlut_wheel_0: + symbol: gKartMario191TlutWheel0 + type: texture + offset: 0x862B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_191_tlut_wheel_1: + symbol: gKartMario191TlutWheel1 + type: texture + offset: 0x86330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_191_tlut_wheel_2: + symbol: gKartMario191TlutWheel2 + type: texture + offset: 0x863B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_191_tlut_wheel_3: + symbol: gKartMario191TlutWheel3 + type: texture + offset: 0x86430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_192_tlut_wheel_0: + symbol: gKartMario192TlutWheel0 + type: texture + offset: 0x864B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_192_tlut_wheel_1: + symbol: gKartMario192TlutWheel1 + type: texture + offset: 0x86530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_192_tlut_wheel_2: + symbol: gKartMario192TlutWheel2 + type: texture + offset: 0x865B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_192_tlut_wheel_3: + symbol: gKartMario192TlutWheel3 + type: texture + offset: 0x86630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_193_tlut_wheel_0: + symbol: gKartMario193TlutWheel0 + type: texture + offset: 0x866B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_193_tlut_wheel_1: + symbol: gKartMario193TlutWheel1 + type: texture + offset: 0x86730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_193_tlut_wheel_2: + symbol: gKartMario193TlutWheel2 + type: texture + offset: 0x867B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_193_tlut_wheel_3: + symbol: gKartMario193TlutWheel3 + type: texture + offset: 0x86830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_194_tlut_wheel_0: + symbol: gKartMario194TlutWheel0 + type: texture + offset: 0x868B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_194_tlut_wheel_1: + symbol: gKartMario194TlutWheel1 + type: texture + offset: 0x86930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_194_tlut_wheel_2: + symbol: gKartMario194TlutWheel2 + type: texture + offset: 0x869B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_194_tlut_wheel_3: + symbol: gKartMario194TlutWheel3 + type: texture + offset: 0x86A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_195_tlut_wheel_0: + symbol: gKartMario195TlutWheel0 + type: texture + offset: 0x86AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_195_tlut_wheel_1: + symbol: gKartMario195TlutWheel1 + type: texture + offset: 0x86B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_195_tlut_wheel_2: + symbol: gKartMario195TlutWheel2 + type: texture + offset: 0x86BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_195_tlut_wheel_3: + symbol: gKartMario195TlutWheel3 + type: texture + offset: 0x86C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_196_tlut_wheel_0: + symbol: gKartMario196TlutWheel0 + type: texture + offset: 0x86CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_196_tlut_wheel_1: + symbol: gKartMario196TlutWheel1 + type: texture + offset: 0x86D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_196_tlut_wheel_2: + symbol: gKartMario196TlutWheel2 + type: texture + offset: 0x86DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_196_tlut_wheel_3: + symbol: gKartMario196TlutWheel3 + type: texture + offset: 0x86E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_197_tlut_wheel_0: + symbol: gKartMario197TlutWheel0 + type: texture + offset: 0x86EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_197_tlut_wheel_1: + symbol: gKartMario197TlutWheel1 + type: texture + offset: 0x86F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_197_tlut_wheel_2: + symbol: gKartMario197TlutWheel2 + type: texture + offset: 0x86FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_197_tlut_wheel_3: + symbol: gKartMario197TlutWheel3 + type: texture + offset: 0x87030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_198_tlut_wheel_0: + symbol: gKartMario198TlutWheel0 + type: texture + offset: 0x870B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_198_tlut_wheel_1: + symbol: gKartMario198TlutWheel1 + type: texture + offset: 0x87130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_198_tlut_wheel_2: + symbol: gKartMario198TlutWheel2 + type: texture + offset: 0x871B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_198_tlut_wheel_3: + symbol: gKartMario198TlutWheel3 + type: texture + offset: 0x87230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_199_tlut_wheel_0: + symbol: gKartMario199TlutWheel0 + type: texture + offset: 0x872B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_199_tlut_wheel_1: + symbol: gKartMario199TlutWheel1 + type: texture + offset: 0x87330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_199_tlut_wheel_2: + symbol: gKartMario199TlutWheel2 + type: texture + offset: 0x873B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_199_tlut_wheel_3: + symbol: gKartMario199TlutWheel3 + type: texture + offset: 0x87430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_200_tlut_wheel_0: + symbol: gKartMario200TlutWheel0 + type: texture + offset: 0x874B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_200_tlut_wheel_1: + symbol: gKartMario200TlutWheel1 + type: texture + offset: 0x87530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_200_tlut_wheel_2: + symbol: gKartMario200TlutWheel2 + type: texture + offset: 0x875B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_200_tlut_wheel_3: + symbol: gKartMario200TlutWheel3 + type: texture + offset: 0x87630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_201_tlut_wheel_0: + symbol: gKartMario201TlutWheel0 + type: texture + offset: 0x876B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_201_tlut_wheel_1: + symbol: gKartMario201TlutWheel1 + type: texture + offset: 0x87730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_201_tlut_wheel_2: + symbol: gKartMario201TlutWheel2 + type: texture + offset: 0x877B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_201_tlut_wheel_3: + symbol: gKartMario201TlutWheel3 + type: texture + offset: 0x87830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_202_tlut_wheel_0: + symbol: gKartMario202TlutWheel0 + type: texture + offset: 0x878B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_202_tlut_wheel_1: + symbol: gKartMario202TlutWheel1 + type: texture + offset: 0x87930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_202_tlut_wheel_2: + symbol: gKartMario202TlutWheel2 + type: texture + offset: 0x879B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_202_tlut_wheel_3: + symbol: gKartMario202TlutWheel3 + type: texture + offset: 0x87A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_203_tlut_wheel_0: + symbol: gKartMario203TlutWheel0 + type: texture + offset: 0x87AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_203_tlut_wheel_1: + symbol: gKartMario203TlutWheel1 + type: texture + offset: 0x87B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_203_tlut_wheel_2: + symbol: gKartMario203TlutWheel2 + type: texture + offset: 0x87BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_203_tlut_wheel_3: + symbol: gKartMario203TlutWheel3 + type: texture + offset: 0x87C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_204_tlut_wheel_0: + symbol: gKartMario204TlutWheel0 + type: texture + offset: 0x87CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_204_tlut_wheel_1: + symbol: gKartMario204TlutWheel1 + type: texture + offset: 0x87D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_204_tlut_wheel_2: + symbol: gKartMario204TlutWheel2 + type: texture + offset: 0x87DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_204_tlut_wheel_3: + symbol: gKartMario204TlutWheel3 + type: texture + offset: 0x87E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_205_tlut_wheel_0: + symbol: gKartMario205TlutWheel0 + type: texture + offset: 0x87EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_205_tlut_wheel_1: + symbol: gKartMario205TlutWheel1 + type: texture + offset: 0x87F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_205_tlut_wheel_2: + symbol: gKartMario205TlutWheel2 + type: texture + offset: 0x87FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_205_tlut_wheel_3: + symbol: gKartMario205TlutWheel3 + type: texture + offset: 0x88030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_206_tlut_wheel_0: + symbol: gKartMario206TlutWheel0 + type: texture + offset: 0x880B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_206_tlut_wheel_1: + symbol: gKartMario206TlutWheel1 + type: texture + offset: 0x88130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_206_tlut_wheel_2: + symbol: gKartMario206TlutWheel2 + type: texture + offset: 0x881B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_206_tlut_wheel_3: + symbol: gKartMario206TlutWheel3 + type: texture + offset: 0x88230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_207_tlut_wheel_0: + symbol: gKartMario207TlutWheel0 + type: texture + offset: 0x882B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_207_tlut_wheel_1: + symbol: gKartMario207TlutWheel1 + type: texture + offset: 0x88330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_207_tlut_wheel_2: + symbol: gKartMario207TlutWheel2 + type: texture + offset: 0x883B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_207_tlut_wheel_3: + symbol: gKartMario207TlutWheel3 + type: texture + offset: 0x88430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_208_tlut_wheel_0: + symbol: gKartMario208TlutWheel0 + type: texture + offset: 0x884B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_208_tlut_wheel_1: + symbol: gKartMario208TlutWheel1 + type: texture + offset: 0x88530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_208_tlut_wheel_2: + symbol: gKartMario208TlutWheel2 + type: texture + offset: 0x885B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_208_tlut_wheel_3: + symbol: gKartMario208TlutWheel3 + type: texture + offset: 0x88630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_209_tlut_wheel_0: + symbol: gKartMario209TlutWheel0 + type: texture + offset: 0x886B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_209_tlut_wheel_1: + symbol: gKartMario209TlutWheel1 + type: texture + offset: 0x88730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_209_tlut_wheel_2: + symbol: gKartMario209TlutWheel2 + type: texture + offset: 0x887B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_209_tlut_wheel_3: + symbol: gKartMario209TlutWheel3 + type: texture + offset: 0x88830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_210_tlut_wheel_0: + symbol: gKartMario210TlutWheel0 + type: texture + offset: 0x888B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_210_tlut_wheel_1: + symbol: gKartMario210TlutWheel1 + type: texture + offset: 0x88930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_210_tlut_wheel_2: + symbol: gKartMario210TlutWheel2 + type: texture + offset: 0x889B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_210_tlut_wheel_3: + symbol: gKartMario210TlutWheel3 + type: texture + offset: 0x88A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_211_tlut_wheel_0: + symbol: gKartMario211TlutWheel0 + type: texture + offset: 0x88AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_211_tlut_wheel_1: + symbol: gKartMario211TlutWheel1 + type: texture + offset: 0x88B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_211_tlut_wheel_2: + symbol: gKartMario211TlutWheel2 + type: texture + offset: 0x88BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_211_tlut_wheel_3: + symbol: gKartMario211TlutWheel3 + type: texture + offset: 0x88C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_212_tlut_wheel_0: + symbol: gKartMario212TlutWheel0 + type: texture + offset: 0x88CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_212_tlut_wheel_1: + symbol: gKartMario212TlutWheel1 + type: texture + offset: 0x88D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_212_tlut_wheel_2: + symbol: gKartMario212TlutWheel2 + type: texture + offset: 0x88DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_212_tlut_wheel_3: + symbol: gKartMario212TlutWheel3 + type: texture + offset: 0x88E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_213_tlut_wheel_0: + symbol: gKartMario213TlutWheel0 + type: texture + offset: 0x88EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_213_tlut_wheel_1: + symbol: gKartMario213TlutWheel1 + type: texture + offset: 0x88F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_213_tlut_wheel_2: + symbol: gKartMario213TlutWheel2 + type: texture + offset: 0x88FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_213_tlut_wheel_3: + symbol: gKartMario213TlutWheel3 + type: texture + offset: 0x89030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_214_tlut_wheel_0: + symbol: gKartMario214TlutWheel0 + type: texture + offset: 0x890B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_214_tlut_wheel_1: + symbol: gKartMario214TlutWheel1 + type: texture + offset: 0x89130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_214_tlut_wheel_2: + symbol: gKartMario214TlutWheel2 + type: texture + offset: 0x891B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_214_tlut_wheel_3: + symbol: gKartMario214TlutWheel3 + type: texture + offset: 0x89230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_215_tlut_wheel_0: + symbol: gKartMario215TlutWheel0 + type: texture + offset: 0x892B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_215_tlut_wheel_1: + symbol: gKartMario215TlutWheel1 + type: texture + offset: 0x89330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_215_tlut_wheel_2: + symbol: gKartMario215TlutWheel2 + type: texture + offset: 0x893B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_215_tlut_wheel_3: + symbol: gKartMario215TlutWheel3 + type: texture + offset: 0x89430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_216_tlut_wheel_0: + symbol: gKartMario216TlutWheel0 + type: texture + offset: 0x894B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_216_tlut_wheel_1: + symbol: gKartMario216TlutWheel1 + type: texture + offset: 0x89530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_216_tlut_wheel_2: + symbol: gKartMario216TlutWheel2 + type: texture + offset: 0x895B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_216_tlut_wheel_3: + symbol: gKartMario216TlutWheel3 + type: texture + offset: 0x89630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_217_tlut_wheel_0: + symbol: gKartMario217TlutWheel0 + type: texture + offset: 0x896B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_217_tlut_wheel_1: + symbol: gKartMario217TlutWheel1 + type: texture + offset: 0x89730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_217_tlut_wheel_2: + symbol: gKartMario217TlutWheel2 + type: texture + offset: 0x897B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_217_tlut_wheel_3: + symbol: gKartMario217TlutWheel3 + type: texture + offset: 0x89830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_218_tlut_wheel_0: + symbol: gKartMario218TlutWheel0 + type: texture + offset: 0x898B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_218_tlut_wheel_1: + symbol: gKartMario218TlutWheel1 + type: texture + offset: 0x89930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_218_tlut_wheel_2: + symbol: gKartMario218TlutWheel2 + type: texture + offset: 0x899B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_218_tlut_wheel_3: + symbol: gKartMario218TlutWheel3 + type: texture + offset: 0x89A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_219_tlut_wheel_0: + symbol: gKartMario219TlutWheel0 + type: texture + offset: 0x89AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_219_tlut_wheel_1: + symbol: gKartMario219TlutWheel1 + type: texture + offset: 0x89B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_219_tlut_wheel_2: + symbol: gKartMario219TlutWheel2 + type: texture + offset: 0x89BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_219_tlut_wheel_3: + symbol: gKartMario219TlutWheel3 + type: texture + offset: 0x89C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_220_tlut_wheel_0: + symbol: gKartMario220TlutWheel0 + type: texture + offset: 0x89CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_220_tlut_wheel_1: + symbol: gKartMario220TlutWheel1 + type: texture + offset: 0x89D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_220_tlut_wheel_2: + symbol: gKartMario220TlutWheel2 + type: texture + offset: 0x89DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_220_tlut_wheel_3: + symbol: gKartMario220TlutWheel3 + type: texture + offset: 0x89E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_221_tlut_wheel_0: + symbol: gKartMario221TlutWheel0 + type: texture + offset: 0x89EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_221_tlut_wheel_1: + symbol: gKartMario221TlutWheel1 + type: texture + offset: 0x89F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_221_tlut_wheel_2: + symbol: gKartMario221TlutWheel2 + type: texture + offset: 0x89FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_221_tlut_wheel_3: + symbol: gKartMario221TlutWheel3 + type: texture + offset: 0x8A030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_222_tlut_wheel_0: + symbol: gKartMario222TlutWheel0 + type: texture + offset: 0x8A0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_222_tlut_wheel_1: + symbol: gKartMario222TlutWheel1 + type: texture + offset: 0x8A130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_222_tlut_wheel_2: + symbol: gKartMario222TlutWheel2 + type: texture + offset: 0x8A1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_222_tlut_wheel_3: + symbol: gKartMario222TlutWheel3 + type: texture + offset: 0x8A230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_223_tlut_wheel_0: + symbol: gKartMario223TlutWheel0 + type: texture + offset: 0x8A2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_223_tlut_wheel_1: + symbol: gKartMario223TlutWheel1 + type: texture + offset: 0x8A330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_223_tlut_wheel_2: + symbol: gKartMario223TlutWheel2 + type: texture + offset: 0x8A3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_223_tlut_wheel_3: + symbol: gKartMario223TlutWheel3 + type: texture + offset: 0x8A430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_224_tlut_wheel_0: + symbol: gKartMario224TlutWheel0 + type: texture + offset: 0x8A4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_224_tlut_wheel_1: + symbol: gKartMario224TlutWheel1 + type: texture + offset: 0x8A530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_224_tlut_wheel_2: + symbol: gKartMario224TlutWheel2 + type: texture + offset: 0x8A5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_224_tlut_wheel_3: + symbol: gKartMario224TlutWheel3 + type: texture + offset: 0x8A630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_225_tlut_wheel_0: + symbol: gKartMario225TlutWheel0 + type: texture + offset: 0x8A6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_225_tlut_wheel_1: + symbol: gKartMario225TlutWheel1 + type: texture + offset: 0x8A730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_225_tlut_wheel_2: + symbol: gKartMario225TlutWheel2 + type: texture + offset: 0x8A7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_225_tlut_wheel_3: + symbol: gKartMario225TlutWheel3 + type: texture + offset: 0x8A830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_226_tlut_wheel_0: + symbol: gKartMario226TlutWheel0 + type: texture + offset: 0x8A8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_226_tlut_wheel_1: + symbol: gKartMario226TlutWheel1 + type: texture + offset: 0x8A930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_226_tlut_wheel_2: + symbol: gKartMario226TlutWheel2 + type: texture + offset: 0x8A9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_226_tlut_wheel_3: + symbol: gKartMario226TlutWheel3 + type: texture + offset: 0x8AA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_227_tlut_wheel_0: + symbol: gKartMario227TlutWheel0 + type: texture + offset: 0x8AAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_227_tlut_wheel_1: + symbol: gKartMario227TlutWheel1 + type: texture + offset: 0x8AB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_227_tlut_wheel_2: + symbol: gKartMario227TlutWheel2 + type: texture + offset: 0x8ABB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_227_tlut_wheel_3: + symbol: gKartMario227TlutWheel3 + type: texture + offset: 0x8AC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_228_tlut_wheel_0: + symbol: gKartMario228TlutWheel0 + type: texture + offset: 0x8ACB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_228_tlut_wheel_1: + symbol: gKartMario228TlutWheel1 + type: texture + offset: 0x8AD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_228_tlut_wheel_2: + symbol: gKartMario228TlutWheel2 + type: texture + offset: 0x8ADB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_228_tlut_wheel_3: + symbol: gKartMario228TlutWheel3 + type: texture + offset: 0x8AE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_229_tlut_wheel_0: + symbol: gKartMario229TlutWheel0 + type: texture + offset: 0x8AEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_229_tlut_wheel_1: + symbol: gKartMario229TlutWheel1 + type: texture + offset: 0x8AF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_229_tlut_wheel_2: + symbol: gKartMario229TlutWheel2 + type: texture + offset: 0x8AFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_229_tlut_wheel_3: + symbol: gKartMario229TlutWheel3 + type: texture + offset: 0x8B030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_230_tlut_wheel_0: + symbol: gKartMario230TlutWheel0 + type: texture + offset: 0x8B0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_230_tlut_wheel_1: + symbol: gKartMario230TlutWheel1 + type: texture + offset: 0x8B130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_230_tlut_wheel_2: + symbol: gKartMario230TlutWheel2 + type: texture + offset: 0x8B1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_230_tlut_wheel_3: + symbol: gKartMario230TlutWheel3 + type: texture + offset: 0x8B230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_231_tlut_wheel_0: + symbol: gKartMario231TlutWheel0 + type: texture + offset: 0x8B2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_231_tlut_wheel_1: + symbol: gKartMario231TlutWheel1 + type: texture + offset: 0x8B330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_231_tlut_wheel_2: + symbol: gKartMario231TlutWheel2 + type: texture + offset: 0x8B3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_231_tlut_wheel_3: + symbol: gKartMario231TlutWheel3 + type: texture + offset: 0x8B430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_232_tlut_wheel_0: + symbol: gKartMario232TlutWheel0 + type: texture + offset: 0x8B4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_232_tlut_wheel_1: + symbol: gKartMario232TlutWheel1 + type: texture + offset: 0x8B530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_232_tlut_wheel_2: + symbol: gKartMario232TlutWheel2 + type: texture + offset: 0x8B5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_232_tlut_wheel_3: + symbol: gKartMario232TlutWheel3 + type: texture + offset: 0x8B630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_233_tlut_wheel_0: + symbol: gKartMario233TlutWheel0 + type: texture + offset: 0x8B6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_233_tlut_wheel_1: + symbol: gKartMario233TlutWheel1 + type: texture + offset: 0x8B730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_233_tlut_wheel_2: + symbol: gKartMario233TlutWheel2 + type: texture + offset: 0x8B7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_233_tlut_wheel_3: + symbol: gKartMario233TlutWheel3 + type: texture + offset: 0x8B830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_234_tlut_wheel_0: + symbol: gKartMario234TlutWheel0 + type: texture + offset: 0x8B8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_234_tlut_wheel_1: + symbol: gKartMario234TlutWheel1 + type: texture + offset: 0x8B930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_234_tlut_wheel_2: + symbol: gKartMario234TlutWheel2 + type: texture + offset: 0x8B9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_234_tlut_wheel_3: + symbol: gKartMario234TlutWheel3 + type: texture + offset: 0x8BA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_235_tlut_wheel_0: + symbol: gKartMario235TlutWheel0 + type: texture + offset: 0x8BAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_235_tlut_wheel_1: + symbol: gKartMario235TlutWheel1 + type: texture + offset: 0x8BB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_235_tlut_wheel_2: + symbol: gKartMario235TlutWheel2 + type: texture + offset: 0x8BBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_235_tlut_wheel_3: + symbol: gKartMario235TlutWheel3 + type: texture + offset: 0x8BC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_236_tlut_wheel_0: + symbol: gKartMario236TlutWheel0 + type: texture + offset: 0x8BCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_236_tlut_wheel_1: + symbol: gKartMario236TlutWheel1 + type: texture + offset: 0x8BD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_236_tlut_wheel_2: + symbol: gKartMario236TlutWheel2 + type: texture + offset: 0x8BDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_236_tlut_wheel_3: + symbol: gKartMario236TlutWheel3 + type: texture + offset: 0x8BE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_237_tlut_wheel_0: + symbol: gKartMario237TlutWheel0 + type: texture + offset: 0x8BEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_237_tlut_wheel_1: + symbol: gKartMario237TlutWheel1 + type: texture + offset: 0x8BF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_237_tlut_wheel_2: + symbol: gKartMario237TlutWheel2 + type: texture + offset: 0x8BFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_237_tlut_wheel_3: + symbol: gKartMario237TlutWheel3 + type: texture + offset: 0x8C030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_238_tlut_wheel_0: + symbol: gKartMario238TlutWheel0 + type: texture + offset: 0x8C0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_238_tlut_wheel_1: + symbol: gKartMario238TlutWheel1 + type: texture + offset: 0x8C130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_238_tlut_wheel_2: + symbol: gKartMario238TlutWheel2 + type: texture + offset: 0x8C1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_238_tlut_wheel_3: + symbol: gKartMario238TlutWheel3 + type: texture + offset: 0x8C230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_239_tlut_wheel_0: + symbol: gKartMario239TlutWheel0 + type: texture + offset: 0x8C2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_239_tlut_wheel_1: + symbol: gKartMario239TlutWheel1 + type: texture + offset: 0x8C330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_239_tlut_wheel_2: + symbol: gKartMario239TlutWheel2 + type: texture + offset: 0x8C3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_239_tlut_wheel_3: + symbol: gKartMario239TlutWheel3 + type: texture + offset: 0x8C430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_240_tlut_wheel_0: + symbol: gKartMario240TlutWheel0 + type: texture + offset: 0x8C4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_240_tlut_wheel_1: + symbol: gKartMario240TlutWheel1 + type: texture + offset: 0x8C530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_240_tlut_wheel_2: + symbol: gKartMario240TlutWheel2 + type: texture + offset: 0x8C5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_240_tlut_wheel_3: + symbol: gKartMario240TlutWheel3 + type: texture + offset: 0x8C630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_241_tlut_wheel_0: + symbol: gKartMario241TlutWheel0 + type: texture + offset: 0x8C6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_241_tlut_wheel_1: + symbol: gKartMario241TlutWheel1 + type: texture + offset: 0x8C730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_241_tlut_wheel_2: + symbol: gKartMario241TlutWheel2 + type: texture + offset: 0x8C7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_241_tlut_wheel_3: + symbol: gKartMario241TlutWheel3 + type: texture + offset: 0x8C830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_242_tlut_wheel_0: + symbol: gKartMario242TlutWheel0 + type: texture + offset: 0x8C8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_242_tlut_wheel_1: + symbol: gKartMario242TlutWheel1 + type: texture + offset: 0x8C930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_242_tlut_wheel_2: + symbol: gKartMario242TlutWheel2 + type: texture + offset: 0x8C9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_242_tlut_wheel_3: + symbol: gKartMario242TlutWheel3 + type: texture + offset: 0x8CA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_243_tlut_wheel_0: + symbol: gKartMario243TlutWheel0 + type: texture + offset: 0x8CAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_243_tlut_wheel_1: + symbol: gKartMario243TlutWheel1 + type: texture + offset: 0x8CB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_243_tlut_wheel_2: + symbol: gKartMario243TlutWheel2 + type: texture + offset: 0x8CBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_243_tlut_wheel_3: + symbol: gKartMario243TlutWheel3 + type: texture + offset: 0x8CC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_244_tlut_wheel_0: + symbol: gKartMario244TlutWheel0 + type: texture + offset: 0x8CCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_244_tlut_wheel_1: + symbol: gKartMario244TlutWheel1 + type: texture + offset: 0x8CD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_244_tlut_wheel_2: + symbol: gKartMario244TlutWheel2 + type: texture + offset: 0x8CDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_244_tlut_wheel_3: + symbol: gKartMario244TlutWheel3 + type: texture + offset: 0x8CE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_245_tlut_wheel_0: + symbol: gKartMario245TlutWheel0 + type: texture + offset: 0x8CEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_245_tlut_wheel_1: + symbol: gKartMario245TlutWheel1 + type: texture + offset: 0x8CF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_245_tlut_wheel_2: + symbol: gKartMario245TlutWheel2 + type: texture + offset: 0x8CFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_245_tlut_wheel_3: + symbol: gKartMario245TlutWheel3 + type: texture + offset: 0x8D030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_246_tlut_wheel_0: + symbol: gKartMario246TlutWheel0 + type: texture + offset: 0x8D0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_246_tlut_wheel_1: + symbol: gKartMario246TlutWheel1 + type: texture + offset: 0x8D130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_246_tlut_wheel_2: + symbol: gKartMario246TlutWheel2 + type: texture + offset: 0x8D1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_246_tlut_wheel_3: + symbol: gKartMario246TlutWheel3 + type: texture + offset: 0x8D230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_247_tlut_wheel_0: + symbol: gKartMario247TlutWheel0 + type: texture + offset: 0x8D2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_247_tlut_wheel_1: + symbol: gKartMario247TlutWheel1 + type: texture + offset: 0x8D330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_247_tlut_wheel_2: + symbol: gKartMario247TlutWheel2 + type: texture + offset: 0x8D3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_247_tlut_wheel_3: + symbol: gKartMario247TlutWheel3 + type: texture + offset: 0x8D430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_248_tlut_wheel_0: + symbol: gKartMario248TlutWheel0 + type: texture + offset: 0x8D4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_248_tlut_wheel_1: + symbol: gKartMario248TlutWheel1 + type: texture + offset: 0x8D530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_248_tlut_wheel_2: + symbol: gKartMario248TlutWheel2 + type: texture + offset: 0x8D5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_248_tlut_wheel_3: + symbol: gKartMario248TlutWheel3 + type: texture + offset: 0x8D630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_249_tlut_wheel_0: + symbol: gKartMario249TlutWheel0 + type: texture + offset: 0x8D6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_249_tlut_wheel_1: + symbol: gKartMario249TlutWheel1 + type: texture + offset: 0x8D730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_249_tlut_wheel_2: + symbol: gKartMario249TlutWheel2 + type: texture + offset: 0x8D7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_249_tlut_wheel_3: + symbol: gKartMario249TlutWheel3 + type: texture + offset: 0x8D830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_250_tlut_wheel_0: + symbol: gKartMario250TlutWheel0 + type: texture + offset: 0x8D8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_250_tlut_wheel_1: + symbol: gKartMario250TlutWheel1 + type: texture + offset: 0x8D930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_250_tlut_wheel_2: + symbol: gKartMario250TlutWheel2 + type: texture + offset: 0x8D9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_250_tlut_wheel_3: + symbol: gKartMario250TlutWheel3 + type: texture + offset: 0x8DA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_251_tlut_wheel_0: + symbol: gKartMario251TlutWheel0 + type: texture + offset: 0x8DAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_251_tlut_wheel_1: + symbol: gKartMario251TlutWheel1 + type: texture + offset: 0x8DB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_251_tlut_wheel_2: + symbol: gKartMario251TlutWheel2 + type: texture + offset: 0x8DBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_251_tlut_wheel_3: + symbol: gKartMario251TlutWheel3 + type: texture + offset: 0x8DC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_252_tlut_wheel_0: + symbol: gKartMario252TlutWheel0 + type: texture + offset: 0x8DCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_252_tlut_wheel_1: + symbol: gKartMario252TlutWheel1 + type: texture + offset: 0x8DD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_252_tlut_wheel_2: + symbol: gKartMario252TlutWheel2 + type: texture + offset: 0x8DDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_252_tlut_wheel_3: + symbol: gKartMario252TlutWheel3 + type: texture + offset: 0x8DE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_253_tlut_wheel_0: + symbol: gKartMario253TlutWheel0 + type: texture + offset: 0x8DEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_253_tlut_wheel_1: + symbol: gKartMario253TlutWheel1 + type: texture + offset: 0x8DF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_253_tlut_wheel_2: + symbol: gKartMario253TlutWheel2 + type: texture + offset: 0x8DFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_253_tlut_wheel_3: + symbol: gKartMario253TlutWheel3 + type: texture + offset: 0x8E030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_254_tlut_wheel_0: + symbol: gKartMario254TlutWheel0 + type: texture + offset: 0x8E0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_254_tlut_wheel_1: + symbol: gKartMario254TlutWheel1 + type: texture + offset: 0x8E130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_254_tlut_wheel_2: + symbol: gKartMario254TlutWheel2 + type: texture + offset: 0x8E1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_254_tlut_wheel_3: + symbol: gKartMario254TlutWheel3 + type: texture + offset: 0x8E230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_255_tlut_wheel_0: + symbol: gKartMario255TlutWheel0 + type: texture + offset: 0x8E2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_255_tlut_wheel_1: + symbol: gKartMario255TlutWheel1 + type: texture + offset: 0x8E330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_255_tlut_wheel_2: + symbol: gKartMario255TlutWheel2 + type: texture + offset: 0x8E3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_255_tlut_wheel_3: + symbol: gKartMario255TlutWheel3 + type: texture + offset: 0x8E430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_256_tlut_wheel_0: + symbol: gKartMario256TlutWheel0 + type: texture + offset: 0x8E4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_256_tlut_wheel_1: + symbol: gKartMario256TlutWheel1 + type: texture + offset: 0x8E530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_256_tlut_wheel_2: + symbol: gKartMario256TlutWheel2 + type: texture + offset: 0x8E5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_256_tlut_wheel_3: + symbol: gKartMario256TlutWheel3 + type: texture + offset: 0x8E630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_257_tlut_wheel_0: + symbol: gKartMario257TlutWheel0 + type: texture + offset: 0x8E6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_257_tlut_wheel_1: + symbol: gKartMario257TlutWheel1 + type: texture + offset: 0x8E730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_257_tlut_wheel_2: + symbol: gKartMario257TlutWheel2 + type: texture + offset: 0x8E7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_257_tlut_wheel_3: + symbol: gKartMario257TlutWheel3 + type: texture + offset: 0x8E830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_258_tlut_wheel_0: + symbol: gKartMario258TlutWheel0 + type: texture + offset: 0x8E8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_258_tlut_wheel_1: + symbol: gKartMario258TlutWheel1 + type: texture + offset: 0x8E930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_258_tlut_wheel_2: + symbol: gKartMario258TlutWheel2 + type: texture + offset: 0x8E9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_258_tlut_wheel_3: + symbol: gKartMario258TlutWheel3 + type: texture + offset: 0x8EA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_259_tlut_wheel_0: + symbol: gKartMario259TlutWheel0 + type: texture + offset: 0x8EAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_259_tlut_wheel_1: + symbol: gKartMario259TlutWheel1 + type: texture + offset: 0x8EB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_259_tlut_wheel_2: + symbol: gKartMario259TlutWheel2 + type: texture + offset: 0x8EBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_259_tlut_wheel_3: + symbol: gKartMario259TlutWheel3 + type: texture + offset: 0x8EC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_260_tlut_wheel_0: + symbol: gKartMario260TlutWheel0 + type: texture + offset: 0x8ECB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_260_tlut_wheel_1: + symbol: gKartMario260TlutWheel1 + type: texture + offset: 0x8ED30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_260_tlut_wheel_2: + symbol: gKartMario260TlutWheel2 + type: texture + offset: 0x8EDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_260_tlut_wheel_3: + symbol: gKartMario260TlutWheel3 + type: texture + offset: 0x8EE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_261_tlut_wheel_0: + symbol: gKartMario261TlutWheel0 + type: texture + offset: 0x8EEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_261_tlut_wheel_1: + symbol: gKartMario261TlutWheel1 + type: texture + offset: 0x8EF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_261_tlut_wheel_2: + symbol: gKartMario261TlutWheel2 + type: texture + offset: 0x8EFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_261_tlut_wheel_3: + symbol: gKartMario261TlutWheel3 + type: texture + offset: 0x8F030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_262_tlut_wheel_0: + symbol: gKartMario262TlutWheel0 + type: texture + offset: 0x8F0B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_262_tlut_wheel_1: + symbol: gKartMario262TlutWheel1 + type: texture + offset: 0x8F130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_262_tlut_wheel_2: + symbol: gKartMario262TlutWheel2 + type: texture + offset: 0x8F1B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_262_tlut_wheel_3: + symbol: gKartMario262TlutWheel3 + type: texture + offset: 0x8F230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_263_tlut_wheel_0: + symbol: gKartMario263TlutWheel0 + type: texture + offset: 0x8F2B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_263_tlut_wheel_1: + symbol: gKartMario263TlutWheel1 + type: texture + offset: 0x8F330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_263_tlut_wheel_2: + symbol: gKartMario263TlutWheel2 + type: texture + offset: 0x8F3B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_263_tlut_wheel_3: + symbol: gKartMario263TlutWheel3 + type: texture + offset: 0x8F430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_264_tlut_wheel_0: + symbol: gKartMario264TlutWheel0 + type: texture + offset: 0x8F4B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_264_tlut_wheel_1: + symbol: gKartMario264TlutWheel1 + type: texture + offset: 0x8F530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_264_tlut_wheel_2: + symbol: gKartMario264TlutWheel2 + type: texture + offset: 0x8F5B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_264_tlut_wheel_3: + symbol: gKartMario264TlutWheel3 + type: texture + offset: 0x8F630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_265_tlut_wheel_0: + symbol: gKartMario265TlutWheel0 + type: texture + offset: 0x8F6B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_265_tlut_wheel_1: + symbol: gKartMario265TlutWheel1 + type: texture + offset: 0x8F730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_265_tlut_wheel_2: + symbol: gKartMario265TlutWheel2 + type: texture + offset: 0x8F7B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_265_tlut_wheel_3: + symbol: gKartMario265TlutWheel3 + type: texture + offset: 0x8F830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_266_tlut_wheel_0: + symbol: gKartMario266TlutWheel0 + type: texture + offset: 0x8F8B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_266_tlut_wheel_1: + symbol: gKartMario266TlutWheel1 + type: texture + offset: 0x8F930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_266_tlut_wheel_2: + symbol: gKartMario266TlutWheel2 + type: texture + offset: 0x8F9B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_266_tlut_wheel_3: + symbol: gKartMario266TlutWheel3 + type: texture + offset: 0x8FA30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_267_tlut_wheel_0: + symbol: gKartMario267TlutWheel0 + type: texture + offset: 0x8FAB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_267_tlut_wheel_1: + symbol: gKartMario267TlutWheel1 + type: texture + offset: 0x8FB30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_267_tlut_wheel_2: + symbol: gKartMario267TlutWheel2 + type: texture + offset: 0x8FBB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_267_tlut_wheel_3: + symbol: gKartMario267TlutWheel3 + type: texture + offset: 0x8FC30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_268_tlut_wheel_0: + symbol: gKartMario268TlutWheel0 + type: texture + offset: 0x8FCB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_268_tlut_wheel_1: + symbol: gKartMario268TlutWheel1 + type: texture + offset: 0x8FD30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_268_tlut_wheel_2: + symbol: gKartMario268TlutWheel2 + type: texture + offset: 0x8FDB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_268_tlut_wheel_3: + symbol: gKartMario268TlutWheel3 + type: texture + offset: 0x8FE30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_269_tlut_wheel_0: + symbol: gKartMario269TlutWheel0 + type: texture + offset: 0x8FEB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_269_tlut_wheel_1: + symbol: gKartMario269TlutWheel1 + type: texture + offset: 0x8FF30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_269_tlut_wheel_2: + symbol: gKartMario269TlutWheel2 + type: texture + offset: 0x8FFB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_269_tlut_wheel_3: + symbol: gKartMario269TlutWheel3 + type: texture + offset: 0x90030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_270_tlut_wheel_0: + symbol: gKartMario270TlutWheel0 + type: texture + offset: 0x900B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_270_tlut_wheel_1: + symbol: gKartMario270TlutWheel1 + type: texture + offset: 0x90130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_270_tlut_wheel_2: + symbol: gKartMario270TlutWheel2 + type: texture + offset: 0x901B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_270_tlut_wheel_3: + symbol: gKartMario270TlutWheel3 + type: texture + offset: 0x90230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_271_tlut_wheel_0: + symbol: gKartMario271TlutWheel0 + type: texture + offset: 0x902B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_271_tlut_wheel_1: + symbol: gKartMario271TlutWheel1 + type: texture + offset: 0x90330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_271_tlut_wheel_2: + symbol: gKartMario271TlutWheel2 + type: texture + offset: 0x903B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_271_tlut_wheel_3: + symbol: gKartMario271TlutWheel3 + type: texture + offset: 0x90430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_272_tlut_wheel_0: + symbol: gKartMario272TlutWheel0 + type: texture + offset: 0x904B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_272_tlut_wheel_1: + symbol: gKartMario272TlutWheel1 + type: texture + offset: 0x90530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_272_tlut_wheel_2: + symbol: gKartMario272TlutWheel2 + type: texture + offset: 0x905B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_272_tlut_wheel_3: + symbol: gKartMario272TlutWheel3 + type: texture + offset: 0x90630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_273_tlut_wheel_0: + symbol: gKartMario273TlutWheel0 + type: texture + offset: 0x906B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_273_tlut_wheel_1: + symbol: gKartMario273TlutWheel1 + type: texture + offset: 0x90730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_273_tlut_wheel_2: + symbol: gKartMario273TlutWheel2 + type: texture + offset: 0x907B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_273_tlut_wheel_3: + symbol: gKartMario273TlutWheel3 + type: texture + offset: 0x90830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_274_tlut_wheel_0: + symbol: gKartMario274TlutWheel0 + type: texture + offset: 0x908B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_274_tlut_wheel_1: + symbol: gKartMario274TlutWheel1 + type: texture + offset: 0x90930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_274_tlut_wheel_2: + symbol: gKartMario274TlutWheel2 + type: texture + offset: 0x909B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_274_tlut_wheel_3: + symbol: gKartMario274TlutWheel3 + type: texture + offset: 0x90A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_275_tlut_wheel_0: + symbol: gKartMario275TlutWheel0 + type: texture + offset: 0x90AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_275_tlut_wheel_1: + symbol: gKartMario275TlutWheel1 + type: texture + offset: 0x90B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_275_tlut_wheel_2: + symbol: gKartMario275TlutWheel2 + type: texture + offset: 0x90BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_275_tlut_wheel_3: + symbol: gKartMario275TlutWheel3 + type: texture + offset: 0x90C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_276_tlut_wheel_0: + symbol: gKartMario276TlutWheel0 + type: texture + offset: 0x90CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_276_tlut_wheel_1: + symbol: gKartMario276TlutWheel1 + type: texture + offset: 0x90D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_276_tlut_wheel_2: + symbol: gKartMario276TlutWheel2 + type: texture + offset: 0x90DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_276_tlut_wheel_3: + symbol: gKartMario276TlutWheel3 + type: texture + offset: 0x90E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_277_tlut_wheel_0: + symbol: gKartMario277TlutWheel0 + type: texture + offset: 0x90EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_277_tlut_wheel_1: + symbol: gKartMario277TlutWheel1 + type: texture + offset: 0x90F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_277_tlut_wheel_2: + symbol: gKartMario277TlutWheel2 + type: texture + offset: 0x90FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_277_tlut_wheel_3: + symbol: gKartMario277TlutWheel3 + type: texture + offset: 0x91030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_278_tlut_wheel_0: + symbol: gKartMario278TlutWheel0 + type: texture + offset: 0x910B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_278_tlut_wheel_1: + symbol: gKartMario278TlutWheel1 + type: texture + offset: 0x91130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_278_tlut_wheel_2: + symbol: gKartMario278TlutWheel2 + type: texture + offset: 0x911B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_278_tlut_wheel_3: + symbol: gKartMario278TlutWheel3 + type: texture + offset: 0x91230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_279_tlut_wheel_0: + symbol: gKartMario279TlutWheel0 + type: texture + offset: 0x912B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_279_tlut_wheel_1: + symbol: gKartMario279TlutWheel1 + type: texture + offset: 0x91330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_279_tlut_wheel_2: + symbol: gKartMario279TlutWheel2 + type: texture + offset: 0x913B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_279_tlut_wheel_3: + symbol: gKartMario279TlutWheel3 + type: texture + offset: 0x91430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_280_tlut_wheel_0: + symbol: gKartMario280TlutWheel0 + type: texture + offset: 0x914B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_280_tlut_wheel_1: + symbol: gKartMario280TlutWheel1 + type: texture + offset: 0x91530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_280_tlut_wheel_2: + symbol: gKartMario280TlutWheel2 + type: texture + offset: 0x915B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_280_tlut_wheel_3: + symbol: gKartMario280TlutWheel3 + type: texture + offset: 0x91630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_281_tlut_wheel_0: + symbol: gKartMario281TlutWheel0 + type: texture + offset: 0x916B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_281_tlut_wheel_1: + symbol: gKartMario281TlutWheel1 + type: texture + offset: 0x91730 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_281_tlut_wheel_2: + symbol: gKartMario281TlutWheel2 + type: texture + offset: 0x917B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_281_tlut_wheel_3: + symbol: gKartMario281TlutWheel3 + type: texture + offset: 0x91830 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_282_tlut_wheel_0: + symbol: gKartMario282TlutWheel0 + type: texture + offset: 0x918B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_282_tlut_wheel_1: + symbol: gKartMario282TlutWheel1 + type: texture + offset: 0x91930 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_282_tlut_wheel_2: + symbol: gKartMario282TlutWheel2 + type: texture + offset: 0x919B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_282_tlut_wheel_3: + symbol: gKartMario282TlutWheel3 + type: texture + offset: 0x91A30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_283_tlut_wheel_0: + symbol: gKartMario283TlutWheel0 + type: texture + offset: 0x91AB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_283_tlut_wheel_1: + symbol: gKartMario283TlutWheel1 + type: texture + offset: 0x91B30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_283_tlut_wheel_2: + symbol: gKartMario283TlutWheel2 + type: texture + offset: 0x91BB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_283_tlut_wheel_3: + symbol: gKartMario283TlutWheel3 + type: texture + offset: 0x91C30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_284_tlut_wheel_0: + symbol: gKartMario284TlutWheel0 + type: texture + offset: 0x91CB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_284_tlut_wheel_1: + symbol: gKartMario284TlutWheel1 + type: texture + offset: 0x91D30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_284_tlut_wheel_2: + symbol: gKartMario284TlutWheel2 + type: texture + offset: 0x91DB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_284_tlut_wheel_3: + symbol: gKartMario284TlutWheel3 + type: texture + offset: 0x91E30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_285_tlut_wheel_0: + symbol: gKartMario285TlutWheel0 + type: texture + offset: 0x91EB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_285_tlut_wheel_1: + symbol: gKartMario285TlutWheel1 + type: texture + offset: 0x91F30 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_285_tlut_wheel_2: + symbol: gKartMario285TlutWheel2 + type: texture + offset: 0x91FB0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_285_tlut_wheel_3: + symbol: gKartMario285TlutWheel3 + type: texture + offset: 0x92030 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_286_tlut_wheel_0: + symbol: gKartMario286TlutWheel0 + type: texture + offset: 0x920B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_286_tlut_wheel_1: + symbol: gKartMario286TlutWheel1 + type: texture + offset: 0x92130 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_286_tlut_wheel_2: + symbol: gKartMario286TlutWheel2 + type: texture + offset: 0x921B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_286_tlut_wheel_3: + symbol: gKartMario286TlutWheel3 + type: texture + offset: 0x92230 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_287_tlut_wheel_0: + symbol: gKartMario287TlutWheel0 + type: texture + offset: 0x922B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_287_tlut_wheel_1: + symbol: gKartMario287TlutWheel1 + type: texture + offset: 0x92330 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_287_tlut_wheel_2: + symbol: gKartMario287TlutWheel2 + type: texture + offset: 0x923B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_287_tlut_wheel_3: + symbol: gKartMario287TlutWheel3 + type: texture + offset: 0x92430 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_288_tlut_wheel_0: + symbol: gKartMario288TlutWheel0 + type: texture + offset: 0x924B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_288_tlut_wheel_1: + symbol: gKartMario288TlutWheel1 + type: texture + offset: 0x92530 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_288_tlut_wheel_2: + symbol: gKartMario288TlutWheel2 + type: texture + offset: 0x925B0 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_288_tlut_wheel_3: + symbol: gKartMario288TlutWheel3 + type: texture + offset: 0x92630 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +mario_kart_palette: + symbol: gKartMarioPalette + type: texture + offset: 0x926B0 + ctype: u16 + width: 16 + height: 12 + format: RGBA16 diff --git a/yamls/us/textures/karts/peach_kart.yml b/yamls/us/textures/karts/peach_kart.yml new file mode 100644 index 000000000..40adc5bad --- /dev/null +++ b/yamls/us/textures/karts/peach_kart.yml @@ -0,0 +1,22340 @@ +:config: + segments: + - [0x0F, 0x309F50] + no_compression: true + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + tables: + peach_kart_wheels: + range: [0x6FDE8, 0x93F68] + mode: APPEND +peach_kart_frame000_wheel0: + symbol: gKartPeach000Wheel0 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame000_wheel1: + symbol: gKartPeach000Wheel1 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_1 +peach_kart_frame000_wheel2: + symbol: gKartPeach000Wheel2 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_2 +peach_kart_frame000_wheel3: + symbol: gKartPeach000Wheel3 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_3 +peach_kart_frame001_wheel0: + symbol: gKartPeach001Wheel0 + type: texture + offset: 0x4E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_001_tlut_wheel_0 +peach_kart_frame001_wheel1: + symbol: gKartPeach001Wheel1 + type: texture + offset: 0x4E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_001_tlut_wheel_1 +peach_kart_frame001_wheel2: + symbol: gKartPeach001Wheel2 + type: texture + offset: 0x4E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_001_tlut_wheel_2 +peach_kart_frame001_wheel3: + symbol: gKartPeach001Wheel3 + type: texture + offset: 0x4E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_001_tlut_wheel_3 +peach_kart_frame002_wheel0: + symbol: gKartPeach002Wheel0 + type: texture + offset: 0x9E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_002_tlut_wheel_0 +peach_kart_frame002_wheel1: + symbol: gKartPeach002Wheel1 + type: texture + offset: 0x9E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_002_tlut_wheel_1 +peach_kart_frame002_wheel2: + symbol: gKartPeach002Wheel2 + type: texture + offset: 0x9E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_002_tlut_wheel_2 +peach_kart_frame002_wheel3: + symbol: gKartPeach002Wheel3 + type: texture + offset: 0x9E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_002_tlut_wheel_3 +peach_kart_frame003_wheel0: + symbol: gKartPeach003Wheel0 + type: texture + offset: 0xEE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_003_tlut_wheel_0 +peach_kart_frame003_wheel1: + symbol: gKartPeach003Wheel1 + type: texture + offset: 0xEE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_003_tlut_wheel_1 +peach_kart_frame003_wheel2: + symbol: gKartPeach003Wheel2 + type: texture + offset: 0xEE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_003_tlut_wheel_2 +peach_kart_frame003_wheel3: + symbol: gKartPeach003Wheel3 + type: texture + offset: 0xEE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_003_tlut_wheel_3 +peach_kart_frame004_wheel0: + symbol: gKartPeach004Wheel0 + type: texture + offset: 0x1404 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_004_tlut_wheel_0 +peach_kart_frame004_wheel1: + symbol: gKartPeach004Wheel1 + type: texture + offset: 0x1404 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_004_tlut_wheel_1 +peach_kart_frame004_wheel2: + symbol: gKartPeach004Wheel2 + type: texture + offset: 0x1404 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_004_tlut_wheel_2 +peach_kart_frame004_wheel3: + symbol: gKartPeach004Wheel3 + type: texture + offset: 0x1404 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_004_tlut_wheel_3 +peach_kart_frame005_wheel0: + symbol: gKartPeach005Wheel0 + type: texture + offset: 0x1924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_005_tlut_wheel_0 +peach_kart_frame005_wheel1: + symbol: gKartPeach005Wheel1 + type: texture + offset: 0x1924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_005_tlut_wheel_1 +peach_kart_frame005_wheel2: + symbol: gKartPeach005Wheel2 + type: texture + offset: 0x1924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_005_tlut_wheel_2 +peach_kart_frame005_wheel3: + symbol: gKartPeach005Wheel3 + type: texture + offset: 0x1924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_005_tlut_wheel_3 +peach_kart_frame006_wheel0: + symbol: gKartPeach006Wheel0 + type: texture + offset: 0x1E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_006_tlut_wheel_0 +peach_kart_frame006_wheel1: + symbol: gKartPeach006Wheel1 + type: texture + offset: 0x1E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_006_tlut_wheel_1 +peach_kart_frame006_wheel2: + symbol: gKartPeach006Wheel2 + type: texture + offset: 0x1E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_006_tlut_wheel_2 +peach_kart_frame006_wheel3: + symbol: gKartPeach006Wheel3 + type: texture + offset: 0x1E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_006_tlut_wheel_3 +peach_kart_frame007_wheel0: + symbol: gKartPeach007Wheel0 + type: texture + offset: 0x238C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_007_tlut_wheel_0 +peach_kart_frame007_wheel1: + symbol: gKartPeach007Wheel1 + type: texture + offset: 0x238C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_007_tlut_wheel_1 +peach_kart_frame007_wheel2: + symbol: gKartPeach007Wheel2 + type: texture + offset: 0x238C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_007_tlut_wheel_2 +peach_kart_frame007_wheel3: + symbol: gKartPeach007Wheel3 + type: texture + offset: 0x238C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_007_tlut_wheel_3 +peach_kart_frame008_wheel0: + symbol: gKartPeach008Wheel0 + type: texture + offset: 0x28E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_008_tlut_wheel_0 +peach_kart_frame008_wheel1: + symbol: gKartPeach008Wheel1 + type: texture + offset: 0x28E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_008_tlut_wheel_1 +peach_kart_frame008_wheel2: + symbol: gKartPeach008Wheel2 + type: texture + offset: 0x28E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_008_tlut_wheel_2 +peach_kart_frame008_wheel3: + symbol: gKartPeach008Wheel3 + type: texture + offset: 0x28E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_008_tlut_wheel_3 +peach_kart_frame009_wheel0: + symbol: gKartPeach009Wheel0 + type: texture + offset: 0x2E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_009_tlut_wheel_0 +peach_kart_frame009_wheel1: + symbol: gKartPeach009Wheel1 + type: texture + offset: 0x2E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_009_tlut_wheel_1 +peach_kart_frame009_wheel2: + symbol: gKartPeach009Wheel2 + type: texture + offset: 0x2E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_009_tlut_wheel_2 +peach_kart_frame009_wheel3: + symbol: gKartPeach009Wheel3 + type: texture + offset: 0x2E48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_009_tlut_wheel_3 +peach_kart_frame010_wheel0: + symbol: gKartPeach010Wheel0 + type: texture + offset: 0x33BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_010_tlut_wheel_0 +peach_kart_frame010_wheel1: + symbol: gKartPeach010Wheel1 + type: texture + offset: 0x33BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_010_tlut_wheel_1 +peach_kart_frame010_wheel2: + symbol: gKartPeach010Wheel2 + type: texture + offset: 0x33BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_010_tlut_wheel_2 +peach_kart_frame010_wheel3: + symbol: gKartPeach010Wheel3 + type: texture + offset: 0x33BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_010_tlut_wheel_3 +peach_kart_frame011_wheel0: + symbol: gKartPeach011Wheel0 + type: texture + offset: 0x392C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_011_tlut_wheel_0 +peach_kart_frame011_wheel1: + symbol: gKartPeach011Wheel1 + type: texture + offset: 0x392C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_011_tlut_wheel_1 +peach_kart_frame011_wheel2: + symbol: gKartPeach011Wheel2 + type: texture + offset: 0x392C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_011_tlut_wheel_2 +peach_kart_frame011_wheel3: + symbol: gKartPeach011Wheel3 + type: texture + offset: 0x392C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_011_tlut_wheel_3 +peach_kart_frame012_wheel0: + symbol: gKartPeach012Wheel0 + type: texture + offset: 0x3EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_012_tlut_wheel_0 +peach_kart_frame012_wheel1: + symbol: gKartPeach012Wheel1 + type: texture + offset: 0x3EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_012_tlut_wheel_1 +peach_kart_frame012_wheel2: + symbol: gKartPeach012Wheel2 + type: texture + offset: 0x3EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_012_tlut_wheel_2 +peach_kart_frame012_wheel3: + symbol: gKartPeach012Wheel3 + type: texture + offset: 0x3EB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_012_tlut_wheel_3 +peach_kart_frame013_wheel0: + symbol: gKartPeach013Wheel0 + type: texture + offset: 0x4438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_013_tlut_wheel_0 +peach_kart_frame013_wheel1: + symbol: gKartPeach013Wheel1 + type: texture + offset: 0x4438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_013_tlut_wheel_1 +peach_kart_frame013_wheel2: + symbol: gKartPeach013Wheel2 + type: texture + offset: 0x4438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_013_tlut_wheel_2 +peach_kart_frame013_wheel3: + symbol: gKartPeach013Wheel3 + type: texture + offset: 0x4438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_013_tlut_wheel_3 +peach_kart_frame014_wheel0: + symbol: gKartPeach014Wheel0 + type: texture + offset: 0x49C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_014_tlut_wheel_0 +peach_kart_frame014_wheel1: + symbol: gKartPeach014Wheel1 + type: texture + offset: 0x49C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_014_tlut_wheel_1 +peach_kart_frame014_wheel2: + symbol: gKartPeach014Wheel2 + type: texture + offset: 0x49C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_014_tlut_wheel_2 +peach_kart_frame014_wheel3: + symbol: gKartPeach014Wheel3 + type: texture + offset: 0x49C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_014_tlut_wheel_3 +peach_kart_frame015_wheel0: + symbol: gKartPeach015Wheel0 + type: texture + offset: 0x4F4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_015_tlut_wheel_0 +peach_kart_frame015_wheel1: + symbol: gKartPeach015Wheel1 + type: texture + offset: 0x4F4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_015_tlut_wheel_1 +peach_kart_frame015_wheel2: + symbol: gKartPeach015Wheel2 + type: texture + offset: 0x4F4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_015_tlut_wheel_2 +peach_kart_frame015_wheel3: + symbol: gKartPeach015Wheel3 + type: texture + offset: 0x4F4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_015_tlut_wheel_3 +peach_kart_frame016_wheel0: + symbol: gKartPeach016Wheel0 + type: texture + offset: 0x54D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_016_tlut_wheel_0 +peach_kart_frame016_wheel1: + symbol: gKartPeach016Wheel1 + type: texture + offset: 0x54D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_016_tlut_wheel_1 +peach_kart_frame016_wheel2: + symbol: gKartPeach016Wheel2 + type: texture + offset: 0x54D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_016_tlut_wheel_2 +peach_kart_frame016_wheel3: + symbol: gKartPeach016Wheel3 + type: texture + offset: 0x54D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_016_tlut_wheel_3 +peach_kart_frame017_wheel0: + symbol: gKartPeach017Wheel0 + type: texture + offset: 0x5A7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_017_tlut_wheel_0 +peach_kart_frame017_wheel1: + symbol: gKartPeach017Wheel1 + type: texture + offset: 0x5A7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_017_tlut_wheel_1 +peach_kart_frame017_wheel2: + symbol: gKartPeach017Wheel2 + type: texture + offset: 0x5A7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_017_tlut_wheel_2 +peach_kart_frame017_wheel3: + symbol: gKartPeach017Wheel3 + type: texture + offset: 0x5A7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_017_tlut_wheel_3 +peach_kart_frame018_wheel0: + symbol: gKartPeach018Wheel0 + type: texture + offset: 0x6024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_018_tlut_wheel_0 +peach_kart_frame018_wheel1: + symbol: gKartPeach018Wheel1 + type: texture + offset: 0x6024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_018_tlut_wheel_1 +peach_kart_frame018_wheel2: + symbol: gKartPeach018Wheel2 + type: texture + offset: 0x6024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_018_tlut_wheel_2 +peach_kart_frame018_wheel3: + symbol: gKartPeach018Wheel3 + type: texture + offset: 0x6024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_018_tlut_wheel_3 +peach_kart_frame019_wheel0: + symbol: gKartPeach019Wheel0 + type: texture + offset: 0x65C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_019_tlut_wheel_0 +peach_kart_frame019_wheel1: + symbol: gKartPeach019Wheel1 + type: texture + offset: 0x65C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_019_tlut_wheel_1 +peach_kart_frame019_wheel2: + symbol: gKartPeach019Wheel2 + type: texture + offset: 0x65C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_019_tlut_wheel_2 +peach_kart_frame019_wheel3: + symbol: gKartPeach019Wheel3 + type: texture + offset: 0x65C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_019_tlut_wheel_3 +peach_kart_frame020_wheel0: + symbol: gKartPeach020Wheel0 + type: texture + offset: 0x6B84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_020_tlut_wheel_0 +peach_kart_frame020_wheel1: + symbol: gKartPeach020Wheel1 + type: texture + offset: 0x6B84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_020_tlut_wheel_1 +peach_kart_frame020_wheel2: + symbol: gKartPeach020Wheel2 + type: texture + offset: 0x6B84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_020_tlut_wheel_2 +peach_kart_frame020_wheel3: + symbol: gKartPeach020Wheel3 + type: texture + offset: 0x6B84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_020_tlut_wheel_3 +peach_kart_frame021_wheel0: + symbol: gKartPeach021Wheel0 + type: texture + offset: 0x7140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_021_tlut_wheel_0 +peach_kart_frame021_wheel1: + symbol: gKartPeach021Wheel1 + type: texture + offset: 0x7140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_021_tlut_wheel_1 +peach_kart_frame021_wheel2: + symbol: gKartPeach021Wheel2 + type: texture + offset: 0x7140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_021_tlut_wheel_2 +peach_kart_frame021_wheel3: + symbol: gKartPeach021Wheel3 + type: texture + offset: 0x7140 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_021_tlut_wheel_3 +peach_kart_frame022_wheel0: + symbol: gKartPeach022Wheel0 + type: texture + offset: 0x7604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_022_tlut_wheel_0 +peach_kart_frame022_wheel1: + symbol: gKartPeach022Wheel1 + type: texture + offset: 0x7604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_022_tlut_wheel_1 +peach_kart_frame022_wheel2: + symbol: gKartPeach022Wheel2 + type: texture + offset: 0x7604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_022_tlut_wheel_2 +peach_kart_frame022_wheel3: + symbol: gKartPeach022Wheel3 + type: texture + offset: 0x7604 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_022_tlut_wheel_3 +peach_kart_frame023_wheel0: + symbol: gKartPeach023Wheel0 + type: texture + offset: 0x7AEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_023_tlut_wheel_0 +peach_kart_frame023_wheel1: + symbol: gKartPeach023Wheel1 + type: texture + offset: 0x7AEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_023_tlut_wheel_1 +peach_kart_frame023_wheel2: + symbol: gKartPeach023Wheel2 + type: texture + offset: 0x7AEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_023_tlut_wheel_2 +peach_kart_frame023_wheel3: + symbol: gKartPeach023Wheel3 + type: texture + offset: 0x7AEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_023_tlut_wheel_3 +peach_kart_frame024_wheel0: + symbol: gKartPeach024Wheel0 + type: texture + offset: 0x7FD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_024_tlut_wheel_0 +peach_kart_frame024_wheel1: + symbol: gKartPeach024Wheel1 + type: texture + offset: 0x7FD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_024_tlut_wheel_1 +peach_kart_frame024_wheel2: + symbol: gKartPeach024Wheel2 + type: texture + offset: 0x7FD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_024_tlut_wheel_2 +peach_kart_frame024_wheel3: + symbol: gKartPeach024Wheel3 + type: texture + offset: 0x7FD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_024_tlut_wheel_3 +peach_kart_frame025_wheel0: + symbol: gKartPeach025Wheel0 + type: texture + offset: 0x84F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_025_tlut_wheel_0 +peach_kart_frame025_wheel1: + symbol: gKartPeach025Wheel1 + type: texture + offset: 0x84F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_025_tlut_wheel_1 +peach_kart_frame025_wheel2: + symbol: gKartPeach025Wheel2 + type: texture + offset: 0x84F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_025_tlut_wheel_2 +peach_kart_frame025_wheel3: + symbol: gKartPeach025Wheel3 + type: texture + offset: 0x84F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_025_tlut_wheel_3 +peach_kart_frame026_wheel0: + symbol: gKartPeach026Wheel0 + type: texture + offset: 0x8A1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_026_tlut_wheel_0 +peach_kart_frame026_wheel1: + symbol: gKartPeach026Wheel1 + type: texture + offset: 0x8A1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_026_tlut_wheel_1 +peach_kart_frame026_wheel2: + symbol: gKartPeach026Wheel2 + type: texture + offset: 0x8A1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_026_tlut_wheel_2 +peach_kart_frame026_wheel3: + symbol: gKartPeach026Wheel3 + type: texture + offset: 0x8A1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_026_tlut_wheel_3 +peach_kart_frame027_wheel0: + symbol: gKartPeach027Wheel0 + type: texture + offset: 0x8F2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_027_tlut_wheel_0 +peach_kart_frame027_wheel1: + symbol: gKartPeach027Wheel1 + type: texture + offset: 0x8F2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_027_tlut_wheel_1 +peach_kart_frame027_wheel2: + symbol: gKartPeach027Wheel2 + type: texture + offset: 0x8F2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_027_tlut_wheel_2 +peach_kart_frame027_wheel3: + symbol: gKartPeach027Wheel3 + type: texture + offset: 0x8F2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_027_tlut_wheel_3 +peach_kart_frame028_wheel0: + symbol: gKartPeach028Wheel0 + type: texture + offset: 0x946C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_028_tlut_wheel_0 +peach_kart_frame028_wheel1: + symbol: gKartPeach028Wheel1 + type: texture + offset: 0x946C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_028_tlut_wheel_1 +peach_kart_frame028_wheel2: + symbol: gKartPeach028Wheel2 + type: texture + offset: 0x946C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_028_tlut_wheel_2 +peach_kart_frame028_wheel3: + symbol: gKartPeach028Wheel3 + type: texture + offset: 0x946C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_028_tlut_wheel_3 +peach_kart_frame029_wheel0: + symbol: gKartPeach029Wheel0 + type: texture + offset: 0x99C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_029_tlut_wheel_0 +peach_kart_frame029_wheel1: + symbol: gKartPeach029Wheel1 + type: texture + offset: 0x99C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_029_tlut_wheel_1 +peach_kart_frame029_wheel2: + symbol: gKartPeach029Wheel2 + type: texture + offset: 0x99C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_029_tlut_wheel_2 +peach_kart_frame029_wheel3: + symbol: gKartPeach029Wheel3 + type: texture + offset: 0x99C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_029_tlut_wheel_3 +peach_kart_frame030_wheel0: + symbol: gKartPeach030Wheel0 + type: texture + offset: 0x9F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_030_tlut_wheel_0 +peach_kart_frame030_wheel1: + symbol: gKartPeach030Wheel1 + type: texture + offset: 0x9F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_030_tlut_wheel_1 +peach_kart_frame030_wheel2: + symbol: gKartPeach030Wheel2 + type: texture + offset: 0x9F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_030_tlut_wheel_2 +peach_kart_frame030_wheel3: + symbol: gKartPeach030Wheel3 + type: texture + offset: 0x9F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_030_tlut_wheel_3 +peach_kart_frame031_wheel0: + symbol: gKartPeach031Wheel0 + type: texture + offset: 0xA4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_031_tlut_wheel_0 +peach_kart_frame031_wheel1: + symbol: gKartPeach031Wheel1 + type: texture + offset: 0xA4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_031_tlut_wheel_1 +peach_kart_frame031_wheel2: + symbol: gKartPeach031Wheel2 + type: texture + offset: 0xA4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_031_tlut_wheel_2 +peach_kart_frame031_wheel3: + symbol: gKartPeach031Wheel3 + type: texture + offset: 0xA4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_031_tlut_wheel_3 +peach_kart_frame032_wheel0: + symbol: gKartPeach032Wheel0 + type: texture + offset: 0xAA40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_032_tlut_wheel_0 +peach_kart_frame032_wheel1: + symbol: gKartPeach032Wheel1 + type: texture + offset: 0xAA40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_032_tlut_wheel_1 +peach_kart_frame032_wheel2: + symbol: gKartPeach032Wheel2 + type: texture + offset: 0xAA40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_032_tlut_wheel_2 +peach_kart_frame032_wheel3: + symbol: gKartPeach032Wheel3 + type: texture + offset: 0xAA40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_032_tlut_wheel_3 +peach_kart_frame033_wheel0: + symbol: gKartPeach033Wheel0 + type: texture + offset: 0xAFE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_033_tlut_wheel_0 +peach_kart_frame033_wheel1: + symbol: gKartPeach033Wheel1 + type: texture + offset: 0xAFE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_033_tlut_wheel_1 +peach_kart_frame033_wheel2: + symbol: gKartPeach033Wheel2 + type: texture + offset: 0xAFE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_033_tlut_wheel_2 +peach_kart_frame033_wheel3: + symbol: gKartPeach033Wheel3 + type: texture + offset: 0xAFE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_033_tlut_wheel_3 +peach_kart_frame034_wheel0: + symbol: gKartPeach034Wheel0 + type: texture + offset: 0xB57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_034_tlut_wheel_0 +peach_kart_frame034_wheel1: + symbol: gKartPeach034Wheel1 + type: texture + offset: 0xB57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_034_tlut_wheel_1 +peach_kart_frame034_wheel2: + symbol: gKartPeach034Wheel2 + type: texture + offset: 0xB57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_034_tlut_wheel_2 +peach_kart_frame034_wheel3: + symbol: gKartPeach034Wheel3 + type: texture + offset: 0xB57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_034_tlut_wheel_3 +peach_kart_frame035_wheel0: + symbol: gKartPeach035Wheel0 + type: texture + offset: 0xBB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_035_tlut_wheel_0 +peach_kart_frame035_wheel1: + symbol: gKartPeach035Wheel1 + type: texture + offset: 0xBB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_035_tlut_wheel_1 +peach_kart_frame035_wheel2: + symbol: gKartPeach035Wheel2 + type: texture + offset: 0xBB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_035_tlut_wheel_2 +peach_kart_frame035_wheel3: + symbol: gKartPeach035Wheel3 + type: texture + offset: 0xBB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_035_tlut_wheel_3 +peach_kart_frame036_wheel0: + symbol: gKartPeach036Wheel0 + type: texture + offset: 0xC0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_036_tlut_wheel_0 +peach_kart_frame036_wheel1: + symbol: gKartPeach036Wheel1 + type: texture + offset: 0xC0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_036_tlut_wheel_1 +peach_kart_frame036_wheel2: + symbol: gKartPeach036Wheel2 + type: texture + offset: 0xC0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_036_tlut_wheel_2 +peach_kart_frame036_wheel3: + symbol: gKartPeach036Wheel3 + type: texture + offset: 0xC0A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_036_tlut_wheel_3 +peach_kart_frame037_wheel0: + symbol: gKartPeach037Wheel0 + type: texture + offset: 0xC64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_037_tlut_wheel_0 +peach_kart_frame037_wheel1: + symbol: gKartPeach037Wheel1 + type: texture + offset: 0xC64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_037_tlut_wheel_1 +peach_kart_frame037_wheel2: + symbol: gKartPeach037Wheel2 + type: texture + offset: 0xC64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_037_tlut_wheel_2 +peach_kart_frame037_wheel3: + symbol: gKartPeach037Wheel3 + type: texture + offset: 0xC64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_037_tlut_wheel_3 +peach_kart_frame038_wheel0: + symbol: gKartPeach038Wheel0 + type: texture + offset: 0xCC0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_038_tlut_wheel_0 +peach_kart_frame038_wheel1: + symbol: gKartPeach038Wheel1 + type: texture + offset: 0xCC0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_038_tlut_wheel_1 +peach_kart_frame038_wheel2: + symbol: gKartPeach038Wheel2 + type: texture + offset: 0xCC0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_038_tlut_wheel_2 +peach_kart_frame038_wheel3: + symbol: gKartPeach038Wheel3 + type: texture + offset: 0xCC0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_038_tlut_wheel_3 +peach_kart_frame039_wheel0: + symbol: gKartPeach039Wheel0 + type: texture + offset: 0xD1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_039_tlut_wheel_0 +peach_kart_frame039_wheel1: + symbol: gKartPeach039Wheel1 + type: texture + offset: 0xD1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_039_tlut_wheel_1 +peach_kart_frame039_wheel2: + symbol: gKartPeach039Wheel2 + type: texture + offset: 0xD1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_039_tlut_wheel_2 +peach_kart_frame039_wheel3: + symbol: gKartPeach039Wheel3 + type: texture + offset: 0xD1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_039_tlut_wheel_3 +peach_kart_frame040_wheel0: + symbol: gKartPeach040Wheel0 + type: texture + offset: 0xD774 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_040_tlut_wheel_0 +peach_kart_frame040_wheel1: + symbol: gKartPeach040Wheel1 + type: texture + offset: 0xD774 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_040_tlut_wheel_1 +peach_kart_frame040_wheel2: + symbol: gKartPeach040Wheel2 + type: texture + offset: 0xD774 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_040_tlut_wheel_2 +peach_kart_frame040_wheel3: + symbol: gKartPeach040Wheel3 + type: texture + offset: 0xD774 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_040_tlut_wheel_3 +peach_kart_frame041_wheel0: + symbol: gKartPeach041Wheel0 + type: texture + offset: 0xDD34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_041_tlut_wheel_0 +peach_kart_frame041_wheel1: + symbol: gKartPeach041Wheel1 + type: texture + offset: 0xDD34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_041_tlut_wheel_1 +peach_kart_frame041_wheel2: + symbol: gKartPeach041Wheel2 + type: texture + offset: 0xDD34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_041_tlut_wheel_2 +peach_kart_frame041_wheel3: + symbol: gKartPeach041Wheel3 + type: texture + offset: 0xDD34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_041_tlut_wheel_3 +peach_kart_frame042_wheel0: + symbol: gKartPeach042Wheel0 + type: texture + offset: 0xE2FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_042_tlut_wheel_0 +peach_kart_frame042_wheel1: + symbol: gKartPeach042Wheel1 + type: texture + offset: 0xE2FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_042_tlut_wheel_1 +peach_kart_frame042_wheel2: + symbol: gKartPeach042Wheel2 + type: texture + offset: 0xE2FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_042_tlut_wheel_2 +peach_kart_frame042_wheel3: + symbol: gKartPeach042Wheel3 + type: texture + offset: 0xE2FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_042_tlut_wheel_3 +peach_kart_frame043_wheel0: + symbol: gKartPeach043Wheel0 + type: texture + offset: 0xE7E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_043_tlut_wheel_0 +peach_kart_frame043_wheel1: + symbol: gKartPeach043Wheel1 + type: texture + offset: 0xE7E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_043_tlut_wheel_1 +peach_kart_frame043_wheel2: + symbol: gKartPeach043Wheel2 + type: texture + offset: 0xE7E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_043_tlut_wheel_2 +peach_kart_frame043_wheel3: + symbol: gKartPeach043Wheel3 + type: texture + offset: 0xE7E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_043_tlut_wheel_3 +peach_kart_frame044_wheel0: + symbol: gKartPeach044Wheel0 + type: texture + offset: 0xECF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_044_tlut_wheel_0 +peach_kart_frame044_wheel1: + symbol: gKartPeach044Wheel1 + type: texture + offset: 0xECF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_044_tlut_wheel_1 +peach_kart_frame044_wheel2: + symbol: gKartPeach044Wheel2 + type: texture + offset: 0xECF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_044_tlut_wheel_2 +peach_kart_frame044_wheel3: + symbol: gKartPeach044Wheel3 + type: texture + offset: 0xECF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_044_tlut_wheel_3 +peach_kart_frame045_wheel0: + symbol: gKartPeach045Wheel0 + type: texture + offset: 0xF204 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_045_tlut_wheel_0 +peach_kart_frame045_wheel1: + symbol: gKartPeach045Wheel1 + type: texture + offset: 0xF204 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_045_tlut_wheel_1 +peach_kart_frame045_wheel2: + symbol: gKartPeach045Wheel2 + type: texture + offset: 0xF204 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_045_tlut_wheel_2 +peach_kart_frame045_wheel3: + symbol: gKartPeach045Wheel3 + type: texture + offset: 0xF204 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_045_tlut_wheel_3 +peach_kart_frame046_wheel0: + symbol: gKartPeach046Wheel0 + type: texture + offset: 0xF72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_046_tlut_wheel_0 +peach_kart_frame046_wheel1: + symbol: gKartPeach046Wheel1 + type: texture + offset: 0xF72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_046_tlut_wheel_1 +peach_kart_frame046_wheel2: + symbol: gKartPeach046Wheel2 + type: texture + offset: 0xF72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_046_tlut_wheel_2 +peach_kart_frame046_wheel3: + symbol: gKartPeach046Wheel3 + type: texture + offset: 0xF72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_046_tlut_wheel_3 +peach_kart_frame047_wheel0: + symbol: gKartPeach047Wheel0 + type: texture + offset: 0xFC54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_047_tlut_wheel_0 +peach_kart_frame047_wheel1: + symbol: gKartPeach047Wheel1 + type: texture + offset: 0xFC54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_047_tlut_wheel_1 +peach_kart_frame047_wheel2: + symbol: gKartPeach047Wheel2 + type: texture + offset: 0xFC54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_047_tlut_wheel_2 +peach_kart_frame047_wheel3: + symbol: gKartPeach047Wheel3 + type: texture + offset: 0xFC54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_047_tlut_wheel_3 +peach_kart_frame048_wheel0: + symbol: gKartPeach048Wheel0 + type: texture + offset: 0x101B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_048_tlut_wheel_0 +peach_kart_frame048_wheel1: + symbol: gKartPeach048Wheel1 + type: texture + offset: 0x101B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_048_tlut_wheel_1 +peach_kart_frame048_wheel2: + symbol: gKartPeach048Wheel2 + type: texture + offset: 0x101B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_048_tlut_wheel_2 +peach_kart_frame048_wheel3: + symbol: gKartPeach048Wheel3 + type: texture + offset: 0x101B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_048_tlut_wheel_3 +peach_kart_frame049_wheel0: + symbol: gKartPeach049Wheel0 + type: texture + offset: 0x1071C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_049_tlut_wheel_0 +peach_kart_frame049_wheel1: + symbol: gKartPeach049Wheel1 + type: texture + offset: 0x1071C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_049_tlut_wheel_1 +peach_kart_frame049_wheel2: + symbol: gKartPeach049Wheel2 + type: texture + offset: 0x1071C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_049_tlut_wheel_2 +peach_kart_frame049_wheel3: + symbol: gKartPeach049Wheel3 + type: texture + offset: 0x1071C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_049_tlut_wheel_3 +peach_kart_frame050_wheel0: + symbol: gKartPeach050Wheel0 + type: texture + offset: 0x10C9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_050_tlut_wheel_0 +peach_kart_frame050_wheel1: + symbol: gKartPeach050Wheel1 + type: texture + offset: 0x10C9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_050_tlut_wheel_1 +peach_kart_frame050_wheel2: + symbol: gKartPeach050Wheel2 + type: texture + offset: 0x10C9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_050_tlut_wheel_2 +peach_kart_frame050_wheel3: + symbol: gKartPeach050Wheel3 + type: texture + offset: 0x10C9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_050_tlut_wheel_3 +peach_kart_frame051_wheel0: + symbol: gKartPeach051Wheel0 + type: texture + offset: 0x11214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_051_tlut_wheel_0 +peach_kart_frame051_wheel1: + symbol: gKartPeach051Wheel1 + type: texture + offset: 0x11214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_051_tlut_wheel_1 +peach_kart_frame051_wheel2: + symbol: gKartPeach051Wheel2 + type: texture + offset: 0x11214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_051_tlut_wheel_2 +peach_kart_frame051_wheel3: + symbol: gKartPeach051Wheel3 + type: texture + offset: 0x11214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_051_tlut_wheel_3 +peach_kart_frame052_wheel0: + symbol: gKartPeach052Wheel0 + type: texture + offset: 0x117A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_052_tlut_wheel_0 +peach_kart_frame052_wheel1: + symbol: gKartPeach052Wheel1 + type: texture + offset: 0x117A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_052_tlut_wheel_1 +peach_kart_frame052_wheel2: + symbol: gKartPeach052Wheel2 + type: texture + offset: 0x117A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_052_tlut_wheel_2 +peach_kart_frame052_wheel3: + symbol: gKartPeach052Wheel3 + type: texture + offset: 0x117A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_052_tlut_wheel_3 +peach_kart_frame053_wheel0: + symbol: gKartPeach053Wheel0 + type: texture + offset: 0x11D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_053_tlut_wheel_0 +peach_kart_frame053_wheel1: + symbol: gKartPeach053Wheel1 + type: texture + offset: 0x11D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_053_tlut_wheel_1 +peach_kart_frame053_wheel2: + symbol: gKartPeach053Wheel2 + type: texture + offset: 0x11D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_053_tlut_wheel_2 +peach_kart_frame053_wheel3: + symbol: gKartPeach053Wheel3 + type: texture + offset: 0x11D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_053_tlut_wheel_3 +peach_kart_frame054_wheel0: + symbol: gKartPeach054Wheel0 + type: texture + offset: 0x122C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_054_tlut_wheel_0 +peach_kart_frame054_wheel1: + symbol: gKartPeach054Wheel1 + type: texture + offset: 0x122C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_054_tlut_wheel_1 +peach_kart_frame054_wheel2: + symbol: gKartPeach054Wheel2 + type: texture + offset: 0x122C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_054_tlut_wheel_2 +peach_kart_frame054_wheel3: + symbol: gKartPeach054Wheel3 + type: texture + offset: 0x122C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_054_tlut_wheel_3 +peach_kart_frame055_wheel0: + symbol: gKartPeach055Wheel0 + type: texture + offset: 0x12870 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_055_tlut_wheel_0 +peach_kart_frame055_wheel1: + symbol: gKartPeach055Wheel1 + type: texture + offset: 0x12870 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_055_tlut_wheel_1 +peach_kart_frame055_wheel2: + symbol: gKartPeach055Wheel2 + type: texture + offset: 0x12870 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_055_tlut_wheel_2 +peach_kart_frame055_wheel3: + symbol: gKartPeach055Wheel3 + type: texture + offset: 0x12870 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_055_tlut_wheel_3 +peach_kart_frame056_wheel0: + symbol: gKartPeach056Wheel0 + type: texture + offset: 0x12E1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_056_tlut_wheel_0 +peach_kart_frame056_wheel1: + symbol: gKartPeach056Wheel1 + type: texture + offset: 0x12E1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_056_tlut_wheel_1 +peach_kart_frame056_wheel2: + symbol: gKartPeach056Wheel2 + type: texture + offset: 0x12E1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_056_tlut_wheel_2 +peach_kart_frame056_wheel3: + symbol: gKartPeach056Wheel3 + type: texture + offset: 0x12E1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_056_tlut_wheel_3 +peach_kart_frame057_wheel0: + symbol: gKartPeach057Wheel0 + type: texture + offset: 0x133B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_057_tlut_wheel_0 +peach_kart_frame057_wheel1: + symbol: gKartPeach057Wheel1 + type: texture + offset: 0x133B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_057_tlut_wheel_1 +peach_kart_frame057_wheel2: + symbol: gKartPeach057Wheel2 + type: texture + offset: 0x133B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_057_tlut_wheel_2 +peach_kart_frame057_wheel3: + symbol: gKartPeach057Wheel3 + type: texture + offset: 0x133B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_057_tlut_wheel_3 +peach_kart_frame058_wheel0: + symbol: gKartPeach058Wheel0 + type: texture + offset: 0x13974 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_058_tlut_wheel_0 +peach_kart_frame058_wheel1: + symbol: gKartPeach058Wheel1 + type: texture + offset: 0x13974 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_058_tlut_wheel_1 +peach_kart_frame058_wheel2: + symbol: gKartPeach058Wheel2 + type: texture + offset: 0x13974 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_058_tlut_wheel_2 +peach_kart_frame058_wheel3: + symbol: gKartPeach058Wheel3 + type: texture + offset: 0x13974 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_058_tlut_wheel_3 +peach_kart_frame059_wheel0: + symbol: gKartPeach059Wheel0 + type: texture + offset: 0x13F24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_059_tlut_wheel_0 +peach_kart_frame059_wheel1: + symbol: gKartPeach059Wheel1 + type: texture + offset: 0x13F24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_059_tlut_wheel_1 +peach_kart_frame059_wheel2: + symbol: gKartPeach059Wheel2 + type: texture + offset: 0x13F24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_059_tlut_wheel_2 +peach_kart_frame059_wheel3: + symbol: gKartPeach059Wheel3 + type: texture + offset: 0x13F24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_059_tlut_wheel_3 +peach_kart_frame060_wheel0: + symbol: gKartPeach060Wheel0 + type: texture + offset: 0x144F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_060_tlut_wheel_0 +peach_kart_frame060_wheel1: + symbol: gKartPeach060Wheel1 + type: texture + offset: 0x144F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_060_tlut_wheel_1 +peach_kart_frame060_wheel2: + symbol: gKartPeach060Wheel2 + type: texture + offset: 0x144F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_060_tlut_wheel_2 +peach_kart_frame060_wheel3: + symbol: gKartPeach060Wheel3 + type: texture + offset: 0x144F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_060_tlut_wheel_3 +peach_kart_frame061_wheel0: + symbol: gKartPeach061Wheel0 + type: texture + offset: 0x14ABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_061_tlut_wheel_0 +peach_kart_frame061_wheel1: + symbol: gKartPeach061Wheel1 + type: texture + offset: 0x14ABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_061_tlut_wheel_1 +peach_kart_frame061_wheel2: + symbol: gKartPeach061Wheel2 + type: texture + offset: 0x14ABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_061_tlut_wheel_2 +peach_kart_frame061_wheel3: + symbol: gKartPeach061Wheel3 + type: texture + offset: 0x14ABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_061_tlut_wheel_3 +peach_kart_frame062_wheel0: + symbol: gKartPeach062Wheel0 + type: texture + offset: 0x15094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_062_tlut_wheel_0 +peach_kart_frame062_wheel1: + symbol: gKartPeach062Wheel1 + type: texture + offset: 0x15094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_062_tlut_wheel_1 +peach_kart_frame062_wheel2: + symbol: gKartPeach062Wheel2 + type: texture + offset: 0x15094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_062_tlut_wheel_2 +peach_kart_frame062_wheel3: + symbol: gKartPeach062Wheel3 + type: texture + offset: 0x15094 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_062_tlut_wheel_3 +peach_kart_frame063_wheel0: + symbol: gKartPeach063Wheel0 + type: texture + offset: 0x15650 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_063_tlut_wheel_0 +peach_kart_frame063_wheel1: + symbol: gKartPeach063Wheel1 + type: texture + offset: 0x15650 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_063_tlut_wheel_1 +peach_kart_frame063_wheel2: + symbol: gKartPeach063Wheel2 + type: texture + offset: 0x15650 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_063_tlut_wheel_2 +peach_kart_frame063_wheel3: + symbol: gKartPeach063Wheel3 + type: texture + offset: 0x15650 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_063_tlut_wheel_3 +peach_kart_frame064_wheel0: + symbol: gKartPeach064Wheel0 + type: texture + offset: 0x15B1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_064_tlut_wheel_0 +peach_kart_frame064_wheel1: + symbol: gKartPeach064Wheel1 + type: texture + offset: 0x15B1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_064_tlut_wheel_1 +peach_kart_frame064_wheel2: + symbol: gKartPeach064Wheel2 + type: texture + offset: 0x15B1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_064_tlut_wheel_2 +peach_kart_frame064_wheel3: + symbol: gKartPeach064Wheel3 + type: texture + offset: 0x15B1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_064_tlut_wheel_3 +peach_kart_frame065_wheel0: + symbol: gKartPeach065Wheel0 + type: texture + offset: 0x16014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_065_tlut_wheel_0 +peach_kart_frame065_wheel1: + symbol: gKartPeach065Wheel1 + type: texture + offset: 0x16014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_065_tlut_wheel_1 +peach_kart_frame065_wheel2: + symbol: gKartPeach065Wheel2 + type: texture + offset: 0x16014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_065_tlut_wheel_2 +peach_kart_frame065_wheel3: + symbol: gKartPeach065Wheel3 + type: texture + offset: 0x16014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_065_tlut_wheel_3 +peach_kart_frame066_wheel0: + symbol: gKartPeach066Wheel0 + type: texture + offset: 0x16524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_066_tlut_wheel_0 +peach_kart_frame066_wheel1: + symbol: gKartPeach066Wheel1 + type: texture + offset: 0x16524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_066_tlut_wheel_1 +peach_kart_frame066_wheel2: + symbol: gKartPeach066Wheel2 + type: texture + offset: 0x16524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_066_tlut_wheel_2 +peach_kart_frame066_wheel3: + symbol: gKartPeach066Wheel3 + type: texture + offset: 0x16524 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_066_tlut_wheel_3 +peach_kart_frame067_wheel0: + symbol: gKartPeach067Wheel0 + type: texture + offset: 0x16A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_067_tlut_wheel_0 +peach_kart_frame067_wheel1: + symbol: gKartPeach067Wheel1 + type: texture + offset: 0x16A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_067_tlut_wheel_1 +peach_kart_frame067_wheel2: + symbol: gKartPeach067Wheel2 + type: texture + offset: 0x16A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_067_tlut_wheel_2 +peach_kart_frame067_wheel3: + symbol: gKartPeach067Wheel3 + type: texture + offset: 0x16A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_067_tlut_wheel_3 +peach_kart_frame068_wheel0: + symbol: gKartPeach068Wheel0 + type: texture + offset: 0x16F98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_068_tlut_wheel_0 +peach_kart_frame068_wheel1: + symbol: gKartPeach068Wheel1 + type: texture + offset: 0x16F98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_068_tlut_wheel_1 +peach_kart_frame068_wheel2: + symbol: gKartPeach068Wheel2 + type: texture + offset: 0x16F98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_068_tlut_wheel_2 +peach_kart_frame068_wheel3: + symbol: gKartPeach068Wheel3 + type: texture + offset: 0x16F98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_068_tlut_wheel_3 +peach_kart_frame069_wheel0: + symbol: gKartPeach069Wheel0 + type: texture + offset: 0x17500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_069_tlut_wheel_0 +peach_kart_frame069_wheel1: + symbol: gKartPeach069Wheel1 + type: texture + offset: 0x17500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_069_tlut_wheel_1 +peach_kart_frame069_wheel2: + symbol: gKartPeach069Wheel2 + type: texture + offset: 0x17500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_069_tlut_wheel_2 +peach_kart_frame069_wheel3: + symbol: gKartPeach069Wheel3 + type: texture + offset: 0x17500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_069_tlut_wheel_3 +peach_kart_frame070_wheel0: + symbol: gKartPeach070Wheel0 + type: texture + offset: 0x17A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_070_tlut_wheel_0 +peach_kart_frame070_wheel1: + symbol: gKartPeach070Wheel1 + type: texture + offset: 0x17A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_070_tlut_wheel_1 +peach_kart_frame070_wheel2: + symbol: gKartPeach070Wheel2 + type: texture + offset: 0x17A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_070_tlut_wheel_2 +peach_kart_frame070_wheel3: + symbol: gKartPeach070Wheel3 + type: texture + offset: 0x17A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_070_tlut_wheel_3 +peach_kart_frame071_wheel0: + symbol: gKartPeach071Wheel0 + type: texture + offset: 0x17FE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_071_tlut_wheel_0 +peach_kart_frame071_wheel1: + symbol: gKartPeach071Wheel1 + type: texture + offset: 0x17FE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_071_tlut_wheel_1 +peach_kart_frame071_wheel2: + symbol: gKartPeach071Wheel2 + type: texture + offset: 0x17FE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_071_tlut_wheel_2 +peach_kart_frame071_wheel3: + symbol: gKartPeach071Wheel3 + type: texture + offset: 0x17FE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_071_tlut_wheel_3 +peach_kart_frame072_wheel0: + symbol: gKartPeach072Wheel0 + type: texture + offset: 0x18554 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_072_tlut_wheel_0 +peach_kart_frame072_wheel1: + symbol: gKartPeach072Wheel1 + type: texture + offset: 0x18554 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_072_tlut_wheel_1 +peach_kart_frame072_wheel2: + symbol: gKartPeach072Wheel2 + type: texture + offset: 0x18554 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_072_tlut_wheel_2 +peach_kart_frame072_wheel3: + symbol: gKartPeach072Wheel3 + type: texture + offset: 0x18554 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_072_tlut_wheel_3 +peach_kart_frame073_wheel0: + symbol: gKartPeach073Wheel0 + type: texture + offset: 0x18AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_073_tlut_wheel_0 +peach_kart_frame073_wheel1: + symbol: gKartPeach073Wheel1 + type: texture + offset: 0x18AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_073_tlut_wheel_1 +peach_kart_frame073_wheel2: + symbol: gKartPeach073Wheel2 + type: texture + offset: 0x18AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_073_tlut_wheel_2 +peach_kart_frame073_wheel3: + symbol: gKartPeach073Wheel3 + type: texture + offset: 0x18AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_073_tlut_wheel_3 +peach_kart_frame074_wheel0: + symbol: gKartPeach074Wheel0 + type: texture + offset: 0x19088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_074_tlut_wheel_0 +peach_kart_frame074_wheel1: + symbol: gKartPeach074Wheel1 + type: texture + offset: 0x19088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_074_tlut_wheel_1 +peach_kart_frame074_wheel2: + symbol: gKartPeach074Wheel2 + type: texture + offset: 0x19088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_074_tlut_wheel_2 +peach_kart_frame074_wheel3: + symbol: gKartPeach074Wheel3 + type: texture + offset: 0x19088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_074_tlut_wheel_3 +peach_kart_frame075_wheel0: + symbol: gKartPeach075Wheel0 + type: texture + offset: 0x1961C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_075_tlut_wheel_0 +peach_kart_frame075_wheel1: + symbol: gKartPeach075Wheel1 + type: texture + offset: 0x1961C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_075_tlut_wheel_1 +peach_kart_frame075_wheel2: + symbol: gKartPeach075Wheel2 + type: texture + offset: 0x1961C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_075_tlut_wheel_2 +peach_kart_frame075_wheel3: + symbol: gKartPeach075Wheel3 + type: texture + offset: 0x1961C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_075_tlut_wheel_3 +peach_kart_frame076_wheel0: + symbol: gKartPeach076Wheel0 + type: texture + offset: 0x19BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_076_tlut_wheel_0 +peach_kart_frame076_wheel1: + symbol: gKartPeach076Wheel1 + type: texture + offset: 0x19BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_076_tlut_wheel_1 +peach_kart_frame076_wheel2: + symbol: gKartPeach076Wheel2 + type: texture + offset: 0x19BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_076_tlut_wheel_2 +peach_kart_frame076_wheel3: + symbol: gKartPeach076Wheel3 + type: texture + offset: 0x19BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_076_tlut_wheel_3 +peach_kart_frame077_wheel0: + symbol: gKartPeach077Wheel0 + type: texture + offset: 0x1A16C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_077_tlut_wheel_0 +peach_kart_frame077_wheel1: + symbol: gKartPeach077Wheel1 + type: texture + offset: 0x1A16C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_077_tlut_wheel_1 +peach_kart_frame077_wheel2: + symbol: gKartPeach077Wheel2 + type: texture + offset: 0x1A16C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_077_tlut_wheel_2 +peach_kart_frame077_wheel3: + symbol: gKartPeach077Wheel3 + type: texture + offset: 0x1A16C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_077_tlut_wheel_3 +peach_kart_frame078_wheel0: + symbol: gKartPeach078Wheel0 + type: texture + offset: 0x1A718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_078_tlut_wheel_0 +peach_kart_frame078_wheel1: + symbol: gKartPeach078Wheel1 + type: texture + offset: 0x1A718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_078_tlut_wheel_1 +peach_kart_frame078_wheel2: + symbol: gKartPeach078Wheel2 + type: texture + offset: 0x1A718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_078_tlut_wheel_2 +peach_kart_frame078_wheel3: + symbol: gKartPeach078Wheel3 + type: texture + offset: 0x1A718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_078_tlut_wheel_3 +peach_kart_frame079_wheel0: + symbol: gKartPeach079Wheel0 + type: texture + offset: 0x1ACFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_079_tlut_wheel_0 +peach_kart_frame079_wheel1: + symbol: gKartPeach079Wheel1 + type: texture + offset: 0x1ACFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_079_tlut_wheel_1 +peach_kart_frame079_wheel2: + symbol: gKartPeach079Wheel2 + type: texture + offset: 0x1ACFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_079_tlut_wheel_2 +peach_kart_frame079_wheel3: + symbol: gKartPeach079Wheel3 + type: texture + offset: 0x1ACFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_079_tlut_wheel_3 +peach_kart_frame080_wheel0: + symbol: gKartPeach080Wheel0 + type: texture + offset: 0x1B2BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_080_tlut_wheel_0 +peach_kart_frame080_wheel1: + symbol: gKartPeach080Wheel1 + type: texture + offset: 0x1B2BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_080_tlut_wheel_1 +peach_kart_frame080_wheel2: + symbol: gKartPeach080Wheel2 + type: texture + offset: 0x1B2BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_080_tlut_wheel_2 +peach_kart_frame080_wheel3: + symbol: gKartPeach080Wheel3 + type: texture + offset: 0x1B2BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_080_tlut_wheel_3 +peach_kart_frame081_wheel0: + symbol: gKartPeach081Wheel0 + type: texture + offset: 0x1B88C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_081_tlut_wheel_0 +peach_kart_frame081_wheel1: + symbol: gKartPeach081Wheel1 + type: texture + offset: 0x1B88C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_081_tlut_wheel_1 +peach_kart_frame081_wheel2: + symbol: gKartPeach081Wheel2 + type: texture + offset: 0x1B88C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_081_tlut_wheel_2 +peach_kart_frame081_wheel3: + symbol: gKartPeach081Wheel3 + type: texture + offset: 0x1B88C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_081_tlut_wheel_3 +peach_kart_frame082_wheel0: + symbol: gKartPeach082Wheel0 + type: texture + offset: 0x1BE54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_082_tlut_wheel_0 +peach_kart_frame082_wheel1: + symbol: gKartPeach082Wheel1 + type: texture + offset: 0x1BE54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_082_tlut_wheel_1 +peach_kart_frame082_wheel2: + symbol: gKartPeach082Wheel2 + type: texture + offset: 0x1BE54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_082_tlut_wheel_2 +peach_kart_frame082_wheel3: + symbol: gKartPeach082Wheel3 + type: texture + offset: 0x1BE54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_082_tlut_wheel_3 +peach_kart_frame083_wheel0: + symbol: gKartPeach083Wheel0 + type: texture + offset: 0x1C404 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_083_tlut_wheel_0 +peach_kart_frame083_wheel1: + symbol: gKartPeach083Wheel1 + type: texture + offset: 0x1C404 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_083_tlut_wheel_1 +peach_kart_frame083_wheel2: + symbol: gKartPeach083Wheel2 + type: texture + offset: 0x1C404 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_083_tlut_wheel_2 +peach_kart_frame083_wheel3: + symbol: gKartPeach083Wheel3 + type: texture + offset: 0x1C404 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_083_tlut_wheel_3 +peach_kart_frame084_wheel0: + symbol: gKartPeach084Wheel0 + type: texture + offset: 0x1C9E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_084_tlut_wheel_0 +peach_kart_frame084_wheel1: + symbol: gKartPeach084Wheel1 + type: texture + offset: 0x1C9E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_084_tlut_wheel_1 +peach_kart_frame084_wheel2: + symbol: gKartPeach084Wheel2 + type: texture + offset: 0x1C9E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_084_tlut_wheel_2 +peach_kart_frame084_wheel3: + symbol: gKartPeach084Wheel3 + type: texture + offset: 0x1C9E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_084_tlut_wheel_3 +peach_kart_frame085_wheel0: + symbol: gKartPeach085Wheel0 + type: texture + offset: 0x1CED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_085_tlut_wheel_0 +peach_kart_frame085_wheel1: + symbol: gKartPeach085Wheel1 + type: texture + offset: 0x1CED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_085_tlut_wheel_1 +peach_kart_frame085_wheel2: + symbol: gKartPeach085Wheel2 + type: texture + offset: 0x1CED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_085_tlut_wheel_2 +peach_kart_frame085_wheel3: + symbol: gKartPeach085Wheel3 + type: texture + offset: 0x1CED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_085_tlut_wheel_3 +peach_kart_frame086_wheel0: + symbol: gKartPeach086Wheel0 + type: texture + offset: 0x1D3DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_086_tlut_wheel_0 +peach_kart_frame086_wheel1: + symbol: gKartPeach086Wheel1 + type: texture + offset: 0x1D3DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_086_tlut_wheel_1 +peach_kart_frame086_wheel2: + symbol: gKartPeach086Wheel2 + type: texture + offset: 0x1D3DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_086_tlut_wheel_2 +peach_kart_frame086_wheel3: + symbol: gKartPeach086Wheel3 + type: texture + offset: 0x1D3DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_086_tlut_wheel_3 +peach_kart_frame087_wheel0: + symbol: gKartPeach087Wheel0 + type: texture + offset: 0x1D8FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_087_tlut_wheel_0 +peach_kart_frame087_wheel1: + symbol: gKartPeach087Wheel1 + type: texture + offset: 0x1D8FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_087_tlut_wheel_1 +peach_kart_frame087_wheel2: + symbol: gKartPeach087Wheel2 + type: texture + offset: 0x1D8FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_087_tlut_wheel_2 +peach_kart_frame087_wheel3: + symbol: gKartPeach087Wheel3 + type: texture + offset: 0x1D8FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_087_tlut_wheel_3 +peach_kart_frame088_wheel0: + symbol: gKartPeach088Wheel0 + type: texture + offset: 0x1DE44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_088_tlut_wheel_0 +peach_kart_frame088_wheel1: + symbol: gKartPeach088Wheel1 + type: texture + offset: 0x1DE44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_088_tlut_wheel_1 +peach_kart_frame088_wheel2: + symbol: gKartPeach088Wheel2 + type: texture + offset: 0x1DE44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_088_tlut_wheel_2 +peach_kart_frame088_wheel3: + symbol: gKartPeach088Wheel3 + type: texture + offset: 0x1DE44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_088_tlut_wheel_3 +peach_kart_frame089_wheel0: + symbol: gKartPeach089Wheel0 + type: texture + offset: 0x1E38C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_089_tlut_wheel_0 +peach_kart_frame089_wheel1: + symbol: gKartPeach089Wheel1 + type: texture + offset: 0x1E38C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_089_tlut_wheel_1 +peach_kart_frame089_wheel2: + symbol: gKartPeach089Wheel2 + type: texture + offset: 0x1E38C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_089_tlut_wheel_2 +peach_kart_frame089_wheel3: + symbol: gKartPeach089Wheel3 + type: texture + offset: 0x1E38C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_089_tlut_wheel_3 +peach_kart_frame090_wheel0: + symbol: gKartPeach090Wheel0 + type: texture + offset: 0x1E8F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_090_tlut_wheel_0 +peach_kart_frame090_wheel1: + symbol: gKartPeach090Wheel1 + type: texture + offset: 0x1E8F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_090_tlut_wheel_1 +peach_kart_frame090_wheel2: + symbol: gKartPeach090Wheel2 + type: texture + offset: 0x1E8F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_090_tlut_wheel_2 +peach_kart_frame090_wheel3: + symbol: gKartPeach090Wheel3 + type: texture + offset: 0x1E8F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_090_tlut_wheel_3 +peach_kart_frame091_wheel0: + symbol: gKartPeach091Wheel0 + type: texture + offset: 0x1EE78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_091_tlut_wheel_0 +peach_kart_frame091_wheel1: + symbol: gKartPeach091Wheel1 + type: texture + offset: 0x1EE78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_091_tlut_wheel_1 +peach_kart_frame091_wheel2: + symbol: gKartPeach091Wheel2 + type: texture + offset: 0x1EE78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_091_tlut_wheel_2 +peach_kart_frame091_wheel3: + symbol: gKartPeach091Wheel3 + type: texture + offset: 0x1EE78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_091_tlut_wheel_3 +peach_kart_frame092_wheel0: + symbol: gKartPeach092Wheel0 + type: texture + offset: 0x1F40C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_092_tlut_wheel_0 +peach_kart_frame092_wheel1: + symbol: gKartPeach092Wheel1 + type: texture + offset: 0x1F40C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_092_tlut_wheel_1 +peach_kart_frame092_wheel2: + symbol: gKartPeach092Wheel2 + type: texture + offset: 0x1F40C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_092_tlut_wheel_2 +peach_kart_frame092_wheel3: + symbol: gKartPeach092Wheel3 + type: texture + offset: 0x1F40C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_092_tlut_wheel_3 +peach_kart_frame093_wheel0: + symbol: gKartPeach093Wheel0 + type: texture + offset: 0x1F984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_093_tlut_wheel_0 +peach_kart_frame093_wheel1: + symbol: gKartPeach093Wheel1 + type: texture + offset: 0x1F984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_093_tlut_wheel_1 +peach_kart_frame093_wheel2: + symbol: gKartPeach093Wheel2 + type: texture + offset: 0x1F984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_093_tlut_wheel_2 +peach_kart_frame093_wheel3: + symbol: gKartPeach093Wheel3 + type: texture + offset: 0x1F984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_093_tlut_wheel_3 +peach_kart_frame094_wheel0: + symbol: gKartPeach094Wheel0 + type: texture + offset: 0x1FF24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_094_tlut_wheel_0 +peach_kart_frame094_wheel1: + symbol: gKartPeach094Wheel1 + type: texture + offset: 0x1FF24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_094_tlut_wheel_1 +peach_kart_frame094_wheel2: + symbol: gKartPeach094Wheel2 + type: texture + offset: 0x1FF24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_094_tlut_wheel_2 +peach_kart_frame094_wheel3: + symbol: gKartPeach094Wheel3 + type: texture + offset: 0x1FF24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_094_tlut_wheel_3 +peach_kart_frame095_wheel0: + symbol: gKartPeach095Wheel0 + type: texture + offset: 0x204D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_095_tlut_wheel_0 +peach_kart_frame095_wheel1: + symbol: gKartPeach095Wheel1 + type: texture + offset: 0x204D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_095_tlut_wheel_1 +peach_kart_frame095_wheel2: + symbol: gKartPeach095Wheel2 + type: texture + offset: 0x204D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_095_tlut_wheel_2 +peach_kart_frame095_wheel3: + symbol: gKartPeach095Wheel3 + type: texture + offset: 0x204D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_095_tlut_wheel_3 +peach_kart_frame096_wheel0: + symbol: gKartPeach096Wheel0 + type: texture + offset: 0x20A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_096_tlut_wheel_0 +peach_kart_frame096_wheel1: + symbol: gKartPeach096Wheel1 + type: texture + offset: 0x20A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_096_tlut_wheel_1 +peach_kart_frame096_wheel2: + symbol: gKartPeach096Wheel2 + type: texture + offset: 0x20A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_096_tlut_wheel_2 +peach_kart_frame096_wheel3: + symbol: gKartPeach096Wheel3 + type: texture + offset: 0x20A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_096_tlut_wheel_3 +peach_kart_frame097_wheel0: + symbol: gKartPeach097Wheel0 + type: texture + offset: 0x21020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_097_tlut_wheel_0 +peach_kart_frame097_wheel1: + symbol: gKartPeach097Wheel1 + type: texture + offset: 0x21020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_097_tlut_wheel_1 +peach_kart_frame097_wheel2: + symbol: gKartPeach097Wheel2 + type: texture + offset: 0x21020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_097_tlut_wheel_2 +peach_kart_frame097_wheel3: + symbol: gKartPeach097Wheel3 + type: texture + offset: 0x21020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_097_tlut_wheel_3 +peach_kart_frame098_wheel0: + symbol: gKartPeach098Wheel0 + type: texture + offset: 0x215D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_098_tlut_wheel_0 +peach_kart_frame098_wheel1: + symbol: gKartPeach098Wheel1 + type: texture + offset: 0x215D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_098_tlut_wheel_1 +peach_kart_frame098_wheel2: + symbol: gKartPeach098Wheel2 + type: texture + offset: 0x215D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_098_tlut_wheel_2 +peach_kart_frame098_wheel3: + symbol: gKartPeach098Wheel3 + type: texture + offset: 0x215D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_098_tlut_wheel_3 +peach_kart_frame099_wheel0: + symbol: gKartPeach099Wheel0 + type: texture + offset: 0x21B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_099_tlut_wheel_0 +peach_kart_frame099_wheel1: + symbol: gKartPeach099Wheel1 + type: texture + offset: 0x21B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_099_tlut_wheel_1 +peach_kart_frame099_wheel2: + symbol: gKartPeach099Wheel2 + type: texture + offset: 0x21B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_099_tlut_wheel_2 +peach_kart_frame099_wheel3: + symbol: gKartPeach099Wheel3 + type: texture + offset: 0x21B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_099_tlut_wheel_3 +peach_kart_frame100_wheel0: + symbol: gKartPeach100Wheel0 + type: texture + offset: 0x22158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_100_tlut_wheel_0 +peach_kart_frame100_wheel1: + symbol: gKartPeach100Wheel1 + type: texture + offset: 0x22158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_100_tlut_wheel_1 +peach_kart_frame100_wheel2: + symbol: gKartPeach100Wheel2 + type: texture + offset: 0x22158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_100_tlut_wheel_2 +peach_kart_frame100_wheel3: + symbol: gKartPeach100Wheel3 + type: texture + offset: 0x22158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_100_tlut_wheel_3 +peach_kart_frame101_wheel0: + symbol: gKartPeach101Wheel0 + type: texture + offset: 0x22730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_101_tlut_wheel_0 +peach_kart_frame101_wheel1: + symbol: gKartPeach101Wheel1 + type: texture + offset: 0x22730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_101_tlut_wheel_1 +peach_kart_frame101_wheel2: + symbol: gKartPeach101Wheel2 + type: texture + offset: 0x22730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_101_tlut_wheel_2 +peach_kart_frame101_wheel3: + symbol: gKartPeach101Wheel3 + type: texture + offset: 0x22730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_101_tlut_wheel_3 +peach_kart_frame102_wheel0: + symbol: gKartPeach102Wheel0 + type: texture + offset: 0x22D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_102_tlut_wheel_0 +peach_kart_frame102_wheel1: + symbol: gKartPeach102Wheel1 + type: texture + offset: 0x22D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_102_tlut_wheel_1 +peach_kart_frame102_wheel2: + symbol: gKartPeach102Wheel2 + type: texture + offset: 0x22D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_102_tlut_wheel_2 +peach_kart_frame102_wheel3: + symbol: gKartPeach102Wheel3 + type: texture + offset: 0x22D20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_102_tlut_wheel_3 +peach_kart_frame103_wheel0: + symbol: gKartPeach103Wheel0 + type: texture + offset: 0x232F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_103_tlut_wheel_0 +peach_kart_frame103_wheel1: + symbol: gKartPeach103Wheel1 + type: texture + offset: 0x232F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_103_tlut_wheel_1 +peach_kart_frame103_wheel2: + symbol: gKartPeach103Wheel2 + type: texture + offset: 0x232F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_103_tlut_wheel_2 +peach_kart_frame103_wheel3: + symbol: gKartPeach103Wheel3 + type: texture + offset: 0x232F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_103_tlut_wheel_3 +peach_kart_frame104_wheel0: + symbol: gKartPeach104Wheel0 + type: texture + offset: 0x238AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_104_tlut_wheel_0 +peach_kart_frame104_wheel1: + symbol: gKartPeach104Wheel1 + type: texture + offset: 0x238AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_104_tlut_wheel_1 +peach_kart_frame104_wheel2: + symbol: gKartPeach104Wheel2 + type: texture + offset: 0x238AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_104_tlut_wheel_2 +peach_kart_frame104_wheel3: + symbol: gKartPeach104Wheel3 + type: texture + offset: 0x238AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_104_tlut_wheel_3 +peach_kart_frame105_wheel0: + symbol: gKartPeach105Wheel0 + type: texture + offset: 0x23E6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_105_tlut_wheel_0 +peach_kart_frame105_wheel1: + symbol: gKartPeach105Wheel1 + type: texture + offset: 0x23E6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_105_tlut_wheel_1 +peach_kart_frame105_wheel2: + symbol: gKartPeach105Wheel2 + type: texture + offset: 0x23E6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_105_tlut_wheel_2 +peach_kart_frame105_wheel3: + symbol: gKartPeach105Wheel3 + type: texture + offset: 0x23E6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_105_tlut_wheel_3 +peach_kart_frame106_wheel0: + symbol: gKartPeach106Wheel0 + type: texture + offset: 0x24360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_106_tlut_wheel_0 +peach_kart_frame106_wheel1: + symbol: gKartPeach106Wheel1 + type: texture + offset: 0x24360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_106_tlut_wheel_1 +peach_kart_frame106_wheel2: + symbol: gKartPeach106Wheel2 + type: texture + offset: 0x24360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_106_tlut_wheel_2 +peach_kart_frame106_wheel3: + symbol: gKartPeach106Wheel3 + type: texture + offset: 0x24360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_106_tlut_wheel_3 +peach_kart_frame107_wheel0: + symbol: gKartPeach107Wheel0 + type: texture + offset: 0x24878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_107_tlut_wheel_0 +peach_kart_frame107_wheel1: + symbol: gKartPeach107Wheel1 + type: texture + offset: 0x24878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_107_tlut_wheel_1 +peach_kart_frame107_wheel2: + symbol: gKartPeach107Wheel2 + type: texture + offset: 0x24878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_107_tlut_wheel_2 +peach_kart_frame107_wheel3: + symbol: gKartPeach107Wheel3 + type: texture + offset: 0x24878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_107_tlut_wheel_3 +peach_kart_frame108_wheel0: + symbol: gKartPeach108Wheel0 + type: texture + offset: 0x24DAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_108_tlut_wheel_0 +peach_kart_frame108_wheel1: + symbol: gKartPeach108Wheel1 + type: texture + offset: 0x24DAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_108_tlut_wheel_1 +peach_kart_frame108_wheel2: + symbol: gKartPeach108Wheel2 + type: texture + offset: 0x24DAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_108_tlut_wheel_2 +peach_kart_frame108_wheel3: + symbol: gKartPeach108Wheel3 + type: texture + offset: 0x24DAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_108_tlut_wheel_3 +peach_kart_frame109_wheel0: + symbol: gKartPeach109Wheel0 + type: texture + offset: 0x25304 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_109_tlut_wheel_0 +peach_kart_frame109_wheel1: + symbol: gKartPeach109Wheel1 + type: texture + offset: 0x25304 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_109_tlut_wheel_1 +peach_kart_frame109_wheel2: + symbol: gKartPeach109Wheel2 + type: texture + offset: 0x25304 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_109_tlut_wheel_2 +peach_kart_frame109_wheel3: + symbol: gKartPeach109Wheel3 + type: texture + offset: 0x25304 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_109_tlut_wheel_3 +peach_kart_frame110_wheel0: + symbol: gKartPeach110Wheel0 + type: texture + offset: 0x2587C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_110_tlut_wheel_0 +peach_kart_frame110_wheel1: + symbol: gKartPeach110Wheel1 + type: texture + offset: 0x2587C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_110_tlut_wheel_1 +peach_kart_frame110_wheel2: + symbol: gKartPeach110Wheel2 + type: texture + offset: 0x2587C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_110_tlut_wheel_2 +peach_kart_frame110_wheel3: + symbol: gKartPeach110Wheel3 + type: texture + offset: 0x2587C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_110_tlut_wheel_3 +peach_kart_frame111_wheel0: + symbol: gKartPeach111Wheel0 + type: texture + offset: 0x25E00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_111_tlut_wheel_0 +peach_kart_frame111_wheel1: + symbol: gKartPeach111Wheel1 + type: texture + offset: 0x25E00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_111_tlut_wheel_1 +peach_kart_frame111_wheel2: + symbol: gKartPeach111Wheel2 + type: texture + offset: 0x25E00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_111_tlut_wheel_2 +peach_kart_frame111_wheel3: + symbol: gKartPeach111Wheel3 + type: texture + offset: 0x25E00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_111_tlut_wheel_3 +peach_kart_frame112_wheel0: + symbol: gKartPeach112Wheel0 + type: texture + offset: 0x26398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_112_tlut_wheel_0 +peach_kart_frame112_wheel1: + symbol: gKartPeach112Wheel1 + type: texture + offset: 0x26398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_112_tlut_wheel_1 +peach_kart_frame112_wheel2: + symbol: gKartPeach112Wheel2 + type: texture + offset: 0x26398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_112_tlut_wheel_2 +peach_kart_frame112_wheel3: + symbol: gKartPeach112Wheel3 + type: texture + offset: 0x26398 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_112_tlut_wheel_3 +peach_kart_frame113_wheel0: + symbol: gKartPeach113Wheel0 + type: texture + offset: 0x26924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_113_tlut_wheel_0 +peach_kart_frame113_wheel1: + symbol: gKartPeach113Wheel1 + type: texture + offset: 0x26924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_113_tlut_wheel_1 +peach_kart_frame113_wheel2: + symbol: gKartPeach113Wheel2 + type: texture + offset: 0x26924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_113_tlut_wheel_2 +peach_kart_frame113_wheel3: + symbol: gKartPeach113Wheel3 + type: texture + offset: 0x26924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_113_tlut_wheel_3 +peach_kart_frame114_wheel0: + symbol: gKartPeach114Wheel0 + type: texture + offset: 0x26ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_114_tlut_wheel_0 +peach_kart_frame114_wheel1: + symbol: gKartPeach114Wheel1 + type: texture + offset: 0x26ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_114_tlut_wheel_1 +peach_kart_frame114_wheel2: + symbol: gKartPeach114Wheel2 + type: texture + offset: 0x26ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_114_tlut_wheel_2 +peach_kart_frame114_wheel3: + symbol: gKartPeach114Wheel3 + type: texture + offset: 0x26ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_114_tlut_wheel_3 +peach_kart_frame115_wheel0: + symbol: gKartPeach115Wheel0 + type: texture + offset: 0x27474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_115_tlut_wheel_0 +peach_kart_frame115_wheel1: + symbol: gKartPeach115Wheel1 + type: texture + offset: 0x27474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_115_tlut_wheel_1 +peach_kart_frame115_wheel2: + symbol: gKartPeach115Wheel2 + type: texture + offset: 0x27474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_115_tlut_wheel_2 +peach_kart_frame115_wheel3: + symbol: gKartPeach115Wheel3 + type: texture + offset: 0x27474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_115_tlut_wheel_3 +peach_kart_frame116_wheel0: + symbol: gKartPeach116Wheel0 + type: texture + offset: 0x27A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_116_tlut_wheel_0 +peach_kart_frame116_wheel1: + symbol: gKartPeach116Wheel1 + type: texture + offset: 0x27A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_116_tlut_wheel_1 +peach_kart_frame116_wheel2: + symbol: gKartPeach116Wheel2 + type: texture + offset: 0x27A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_116_tlut_wheel_2 +peach_kart_frame116_wheel3: + symbol: gKartPeach116Wheel3 + type: texture + offset: 0x27A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_116_tlut_wheel_3 +peach_kart_frame117_wheel0: + symbol: gKartPeach117Wheel0 + type: texture + offset: 0x27FC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_117_tlut_wheel_0 +peach_kart_frame117_wheel1: + symbol: gKartPeach117Wheel1 + type: texture + offset: 0x27FC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_117_tlut_wheel_1 +peach_kart_frame117_wheel2: + symbol: gKartPeach117Wheel2 + type: texture + offset: 0x27FC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_117_tlut_wheel_2 +peach_kart_frame117_wheel3: + symbol: gKartPeach117Wheel3 + type: texture + offset: 0x27FC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_117_tlut_wheel_3 +peach_kart_frame118_wheel0: + symbol: gKartPeach118Wheel0 + type: texture + offset: 0x28568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_118_tlut_wheel_0 +peach_kart_frame118_wheel1: + symbol: gKartPeach118Wheel1 + type: texture + offset: 0x28568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_118_tlut_wheel_1 +peach_kart_frame118_wheel2: + symbol: gKartPeach118Wheel2 + type: texture + offset: 0x28568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_118_tlut_wheel_2 +peach_kart_frame118_wheel3: + symbol: gKartPeach118Wheel3 + type: texture + offset: 0x28568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_118_tlut_wheel_3 +peach_kart_frame119_wheel0: + symbol: gKartPeach119Wheel0 + type: texture + offset: 0x28B14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_119_tlut_wheel_0 +peach_kart_frame119_wheel1: + symbol: gKartPeach119Wheel1 + type: texture + offset: 0x28B14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_119_tlut_wheel_1 +peach_kart_frame119_wheel2: + symbol: gKartPeach119Wheel2 + type: texture + offset: 0x28B14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_119_tlut_wheel_2 +peach_kart_frame119_wheel3: + symbol: gKartPeach119Wheel3 + type: texture + offset: 0x28B14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_119_tlut_wheel_3 +peach_kart_frame120_wheel0: + symbol: gKartPeach120Wheel0 + type: texture + offset: 0x290EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_120_tlut_wheel_0 +peach_kart_frame120_wheel1: + symbol: gKartPeach120Wheel1 + type: texture + offset: 0x290EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_120_tlut_wheel_1 +peach_kart_frame120_wheel2: + symbol: gKartPeach120Wheel2 + type: texture + offset: 0x290EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_120_tlut_wheel_2 +peach_kart_frame120_wheel3: + symbol: gKartPeach120Wheel3 + type: texture + offset: 0x290EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_120_tlut_wheel_3 +peach_kart_frame121_wheel0: + symbol: gKartPeach121Wheel0 + type: texture + offset: 0x296C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_121_tlut_wheel_0 +peach_kart_frame121_wheel1: + symbol: gKartPeach121Wheel1 + type: texture + offset: 0x296C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_121_tlut_wheel_1 +peach_kart_frame121_wheel2: + symbol: gKartPeach121Wheel2 + type: texture + offset: 0x296C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_121_tlut_wheel_2 +peach_kart_frame121_wheel3: + symbol: gKartPeach121Wheel3 + type: texture + offset: 0x296C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_121_tlut_wheel_3 +peach_kart_frame122_wheel0: + symbol: gKartPeach122Wheel0 + type: texture + offset: 0x29C98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_122_tlut_wheel_0 +peach_kart_frame122_wheel1: + symbol: gKartPeach122Wheel1 + type: texture + offset: 0x29C98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_122_tlut_wheel_1 +peach_kart_frame122_wheel2: + symbol: gKartPeach122Wheel2 + type: texture + offset: 0x29C98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_122_tlut_wheel_2 +peach_kart_frame122_wheel3: + symbol: gKartPeach122Wheel3 + type: texture + offset: 0x29C98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_122_tlut_wheel_3 +peach_kart_frame123_wheel0: + symbol: gKartPeach123Wheel0 + type: texture + offset: 0x2A28C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_123_tlut_wheel_0 +peach_kart_frame123_wheel1: + symbol: gKartPeach123Wheel1 + type: texture + offset: 0x2A28C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_123_tlut_wheel_1 +peach_kart_frame123_wheel2: + symbol: gKartPeach123Wheel2 + type: texture + offset: 0x2A28C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_123_tlut_wheel_2 +peach_kart_frame123_wheel3: + symbol: gKartPeach123Wheel3 + type: texture + offset: 0x2A28C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_123_tlut_wheel_3 +peach_kart_frame124_wheel0: + symbol: gKartPeach124Wheel0 + type: texture + offset: 0x2A878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_124_tlut_wheel_0 +peach_kart_frame124_wheel1: + symbol: gKartPeach124Wheel1 + type: texture + offset: 0x2A878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_124_tlut_wheel_1 +peach_kart_frame124_wheel2: + symbol: gKartPeach124Wheel2 + type: texture + offset: 0x2A878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_124_tlut_wheel_2 +peach_kart_frame124_wheel3: + symbol: gKartPeach124Wheel3 + type: texture + offset: 0x2A878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_124_tlut_wheel_3 +peach_kart_frame125_wheel0: + symbol: gKartPeach125Wheel0 + type: texture + offset: 0x2AE5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_125_tlut_wheel_0 +peach_kart_frame125_wheel1: + symbol: gKartPeach125Wheel1 + type: texture + offset: 0x2AE5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_125_tlut_wheel_1 +peach_kart_frame125_wheel2: + symbol: gKartPeach125Wheel2 + type: texture + offset: 0x2AE5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_125_tlut_wheel_2 +peach_kart_frame125_wheel3: + symbol: gKartPeach125Wheel3 + type: texture + offset: 0x2AE5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_125_tlut_wheel_3 +peach_kart_frame126_wheel0: + symbol: gKartPeach126Wheel0 + type: texture + offset: 0x2B438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_126_tlut_wheel_0 +peach_kart_frame126_wheel1: + symbol: gKartPeach126Wheel1 + type: texture + offset: 0x2B438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_126_tlut_wheel_1 +peach_kart_frame126_wheel2: + symbol: gKartPeach126Wheel2 + type: texture + offset: 0x2B438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_126_tlut_wheel_2 +peach_kart_frame126_wheel3: + symbol: gKartPeach126Wheel3 + type: texture + offset: 0x2B438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_126_tlut_wheel_3 +peach_kart_frame127_wheel0: + symbol: gKartPeach127Wheel0 + type: texture + offset: 0x2B93C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_127_tlut_wheel_0 +peach_kart_frame127_wheel1: + symbol: gKartPeach127Wheel1 + type: texture + offset: 0x2B93C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_127_tlut_wheel_1 +peach_kart_frame127_wheel2: + symbol: gKartPeach127Wheel2 + type: texture + offset: 0x2B93C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_127_tlut_wheel_2 +peach_kart_frame127_wheel3: + symbol: gKartPeach127Wheel3 + type: texture + offset: 0x2B93C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_127_tlut_wheel_3 +peach_kart_frame128_wheel0: + symbol: gKartPeach128Wheel0 + type: texture + offset: 0x2BE44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_128_tlut_wheel_0 +peach_kart_frame128_wheel1: + symbol: gKartPeach128Wheel1 + type: texture + offset: 0x2BE44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_128_tlut_wheel_1 +peach_kart_frame128_wheel2: + symbol: gKartPeach128Wheel2 + type: texture + offset: 0x2BE44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_128_tlut_wheel_2 +peach_kart_frame128_wheel3: + symbol: gKartPeach128Wheel3 + type: texture + offset: 0x2BE44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_128_tlut_wheel_3 +peach_kart_frame129_wheel0: + symbol: gKartPeach129Wheel0 + type: texture + offset: 0x2C374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_129_tlut_wheel_0 +peach_kart_frame129_wheel1: + symbol: gKartPeach129Wheel1 + type: texture + offset: 0x2C374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_129_tlut_wheel_1 +peach_kart_frame129_wheel2: + symbol: gKartPeach129Wheel2 + type: texture + offset: 0x2C374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_129_tlut_wheel_2 +peach_kart_frame129_wheel3: + symbol: gKartPeach129Wheel3 + type: texture + offset: 0x2C374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_129_tlut_wheel_3 +peach_kart_frame130_wheel0: + symbol: gKartPeach130Wheel0 + type: texture + offset: 0x2C8C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_130_tlut_wheel_0 +peach_kart_frame130_wheel1: + symbol: gKartPeach130Wheel1 + type: texture + offset: 0x2C8C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_130_tlut_wheel_1 +peach_kart_frame130_wheel2: + symbol: gKartPeach130Wheel2 + type: texture + offset: 0x2C8C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_130_tlut_wheel_2 +peach_kart_frame130_wheel3: + symbol: gKartPeach130Wheel3 + type: texture + offset: 0x2C8C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_130_tlut_wheel_3 +peach_kart_frame131_wheel0: + symbol: gKartPeach131Wheel0 + type: texture + offset: 0x2CE3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_131_tlut_wheel_0 +peach_kart_frame131_wheel1: + symbol: gKartPeach131Wheel1 + type: texture + offset: 0x2CE3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_131_tlut_wheel_1 +peach_kart_frame131_wheel2: + symbol: gKartPeach131Wheel2 + type: texture + offset: 0x2CE3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_131_tlut_wheel_2 +peach_kart_frame131_wheel3: + symbol: gKartPeach131Wheel3 + type: texture + offset: 0x2CE3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_131_tlut_wheel_3 +peach_kart_frame132_wheel0: + symbol: gKartPeach132Wheel0 + type: texture + offset: 0x2D3C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_132_tlut_wheel_0 +peach_kart_frame132_wheel1: + symbol: gKartPeach132Wheel1 + type: texture + offset: 0x2D3C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_132_tlut_wheel_1 +peach_kart_frame132_wheel2: + symbol: gKartPeach132Wheel2 + type: texture + offset: 0x2D3C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_132_tlut_wheel_2 +peach_kart_frame132_wheel3: + symbol: gKartPeach132Wheel3 + type: texture + offset: 0x2D3C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_132_tlut_wheel_3 +peach_kart_frame133_wheel0: + symbol: gKartPeach133Wheel0 + type: texture + offset: 0x2D95C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_133_tlut_wheel_0 +peach_kart_frame133_wheel1: + symbol: gKartPeach133Wheel1 + type: texture + offset: 0x2D95C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_133_tlut_wheel_1 +peach_kart_frame133_wheel2: + symbol: gKartPeach133Wheel2 + type: texture + offset: 0x2D95C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_133_tlut_wheel_2 +peach_kart_frame133_wheel3: + symbol: gKartPeach133Wheel3 + type: texture + offset: 0x2D95C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_133_tlut_wheel_3 +peach_kart_frame134_wheel0: + symbol: gKartPeach134Wheel0 + type: texture + offset: 0x2DF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_134_tlut_wheel_0 +peach_kart_frame134_wheel1: + symbol: gKartPeach134Wheel1 + type: texture + offset: 0x2DF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_134_tlut_wheel_1 +peach_kart_frame134_wheel2: + symbol: gKartPeach134Wheel2 + type: texture + offset: 0x2DF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_134_tlut_wheel_2 +peach_kart_frame134_wheel3: + symbol: gKartPeach134Wheel3 + type: texture + offset: 0x2DF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_134_tlut_wheel_3 +peach_kart_frame135_wheel0: + symbol: gKartPeach135Wheel0 + type: texture + offset: 0x2E4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_135_tlut_wheel_0 +peach_kart_frame135_wheel1: + symbol: gKartPeach135Wheel1 + type: texture + offset: 0x2E4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_135_tlut_wheel_1 +peach_kart_frame135_wheel2: + symbol: gKartPeach135Wheel2 + type: texture + offset: 0x2E4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_135_tlut_wheel_2 +peach_kart_frame135_wheel3: + symbol: gKartPeach135Wheel3 + type: texture + offset: 0x2E4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_135_tlut_wheel_3 +peach_kart_frame136_wheel0: + symbol: gKartPeach136Wheel0 + type: texture + offset: 0x2EA60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_136_tlut_wheel_0 +peach_kart_frame136_wheel1: + symbol: gKartPeach136Wheel1 + type: texture + offset: 0x2EA60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_136_tlut_wheel_1 +peach_kart_frame136_wheel2: + symbol: gKartPeach136Wheel2 + type: texture + offset: 0x2EA60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_136_tlut_wheel_2 +peach_kart_frame136_wheel3: + symbol: gKartPeach136Wheel3 + type: texture + offset: 0x2EA60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_136_tlut_wheel_3 +peach_kart_frame137_wheel0: + symbol: gKartPeach137Wheel0 + type: texture + offset: 0x2F000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_137_tlut_wheel_0 +peach_kart_frame137_wheel1: + symbol: gKartPeach137Wheel1 + type: texture + offset: 0x2F000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_137_tlut_wheel_1 +peach_kart_frame137_wheel2: + symbol: gKartPeach137Wheel2 + type: texture + offset: 0x2F000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_137_tlut_wheel_2 +peach_kart_frame137_wheel3: + symbol: gKartPeach137Wheel3 + type: texture + offset: 0x2F000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_137_tlut_wheel_3 +peach_kart_frame138_wheel0: + symbol: gKartPeach138Wheel0 + type: texture + offset: 0x2F5A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_138_tlut_wheel_0 +peach_kart_frame138_wheel1: + symbol: gKartPeach138Wheel1 + type: texture + offset: 0x2F5A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_138_tlut_wheel_1 +peach_kart_frame138_wheel2: + symbol: gKartPeach138Wheel2 + type: texture + offset: 0x2F5A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_138_tlut_wheel_2 +peach_kart_frame138_wheel3: + symbol: gKartPeach138Wheel3 + type: texture + offset: 0x2F5A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_138_tlut_wheel_3 +peach_kart_frame139_wheel0: + symbol: gKartPeach139Wheel0 + type: texture + offset: 0x2FB54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_139_tlut_wheel_0 +peach_kart_frame139_wheel1: + symbol: gKartPeach139Wheel1 + type: texture + offset: 0x2FB54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_139_tlut_wheel_1 +peach_kart_frame139_wheel2: + symbol: gKartPeach139Wheel2 + type: texture + offset: 0x2FB54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_139_tlut_wheel_2 +peach_kart_frame139_wheel3: + symbol: gKartPeach139Wheel3 + type: texture + offset: 0x2FB54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_139_tlut_wheel_3 +peach_kart_frame140_wheel0: + symbol: gKartPeach140Wheel0 + type: texture + offset: 0x30108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_140_tlut_wheel_0 +peach_kart_frame140_wheel1: + symbol: gKartPeach140Wheel1 + type: texture + offset: 0x30108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_140_tlut_wheel_1 +peach_kart_frame140_wheel2: + symbol: gKartPeach140Wheel2 + type: texture + offset: 0x30108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_140_tlut_wheel_2 +peach_kart_frame140_wheel3: + symbol: gKartPeach140Wheel3 + type: texture + offset: 0x30108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_140_tlut_wheel_3 +peach_kart_frame141_wheel0: + symbol: gKartPeach141Wheel0 + type: texture + offset: 0x306E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_141_tlut_wheel_0 +peach_kart_frame141_wheel1: + symbol: gKartPeach141Wheel1 + type: texture + offset: 0x306E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_141_tlut_wheel_1 +peach_kart_frame141_wheel2: + symbol: gKartPeach141Wheel2 + type: texture + offset: 0x306E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_141_tlut_wheel_2 +peach_kart_frame141_wheel3: + symbol: gKartPeach141Wheel3 + type: texture + offset: 0x306E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_141_tlut_wheel_3 +peach_kart_frame142_wheel0: + symbol: gKartPeach142Wheel0 + type: texture + offset: 0x30CC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_142_tlut_wheel_0 +peach_kart_frame142_wheel1: + symbol: gKartPeach142Wheel1 + type: texture + offset: 0x30CC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_142_tlut_wheel_1 +peach_kart_frame142_wheel2: + symbol: gKartPeach142Wheel2 + type: texture + offset: 0x30CC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_142_tlut_wheel_2 +peach_kart_frame142_wheel3: + symbol: gKartPeach142Wheel3 + type: texture + offset: 0x30CC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_142_tlut_wheel_3 +peach_kart_frame143_wheel0: + symbol: gKartPeach143Wheel0 + type: texture + offset: 0x312B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_143_tlut_wheel_0 +peach_kart_frame143_wheel1: + symbol: gKartPeach143Wheel1 + type: texture + offset: 0x312B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_143_tlut_wheel_1 +peach_kart_frame143_wheel2: + symbol: gKartPeach143Wheel2 + type: texture + offset: 0x312B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_143_tlut_wheel_2 +peach_kart_frame143_wheel3: + symbol: gKartPeach143Wheel3 + type: texture + offset: 0x312B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_143_tlut_wheel_3 +peach_kart_frame144_wheel0: + symbol: gKartPeach144Wheel0 + type: texture + offset: 0x3189C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_144_tlut_wheel_0 +peach_kart_frame144_wheel1: + symbol: gKartPeach144Wheel1 + type: texture + offset: 0x3189C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_144_tlut_wheel_1 +peach_kart_frame144_wheel2: + symbol: gKartPeach144Wheel2 + type: texture + offset: 0x3189C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_144_tlut_wheel_2 +peach_kart_frame144_wheel3: + symbol: gKartPeach144Wheel3 + type: texture + offset: 0x3189C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_144_tlut_wheel_3 +peach_kart_frame145_wheel0: + symbol: gKartPeach145Wheel0 + type: texture + offset: 0x31E84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_145_tlut_wheel_0 +peach_kart_frame145_wheel1: + symbol: gKartPeach145Wheel1 + type: texture + offset: 0x31E84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_145_tlut_wheel_1 +peach_kart_frame145_wheel2: + symbol: gKartPeach145Wheel2 + type: texture + offset: 0x31E84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_145_tlut_wheel_2 +peach_kart_frame145_wheel3: + symbol: gKartPeach145Wheel3 + type: texture + offset: 0x31E84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_145_tlut_wheel_3 +peach_kart_frame146_wheel0: + symbol: gKartPeach146Wheel0 + type: texture + offset: 0x32470 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_146_tlut_wheel_0 +peach_kart_frame146_wheel1: + symbol: gKartPeach146Wheel1 + type: texture + offset: 0x32470 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_146_tlut_wheel_1 +peach_kart_frame146_wheel2: + symbol: gKartPeach146Wheel2 + type: texture + offset: 0x32470 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_146_tlut_wheel_2 +peach_kart_frame146_wheel3: + symbol: gKartPeach146Wheel3 + type: texture + offset: 0x32470 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_146_tlut_wheel_3 +peach_kart_frame147_wheel0: + symbol: gKartPeach147Wheel0 + type: texture + offset: 0x32A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_147_tlut_wheel_0 +peach_kart_frame147_wheel1: + symbol: gKartPeach147Wheel1 + type: texture + offset: 0x32A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_147_tlut_wheel_1 +peach_kart_frame147_wheel2: + symbol: gKartPeach147Wheel2 + type: texture + offset: 0x32A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_147_tlut_wheel_2 +peach_kart_frame147_wheel3: + symbol: gKartPeach147Wheel3 + type: texture + offset: 0x32A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_147_tlut_wheel_3 +peach_kart_frame148_wheel0: + symbol: gKartPeach148Wheel0 + type: texture + offset: 0x32F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_148_tlut_wheel_0 +peach_kart_frame148_wheel1: + symbol: gKartPeach148Wheel1 + type: texture + offset: 0x32F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_148_tlut_wheel_1 +peach_kart_frame148_wheel2: + symbol: gKartPeach148Wheel2 + type: texture + offset: 0x32F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_148_tlut_wheel_2 +peach_kart_frame148_wheel3: + symbol: gKartPeach148Wheel3 + type: texture + offset: 0x32F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_148_tlut_wheel_3 +peach_kart_frame149_wheel0: + symbol: gKartPeach149Wheel0 + type: texture + offset: 0x33474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_149_tlut_wheel_0 +peach_kart_frame149_wheel1: + symbol: gKartPeach149Wheel1 + type: texture + offset: 0x33474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_149_tlut_wheel_1 +peach_kart_frame149_wheel2: + symbol: gKartPeach149Wheel2 + type: texture + offset: 0x33474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_149_tlut_wheel_2 +peach_kart_frame149_wheel3: + symbol: gKartPeach149Wheel3 + type: texture + offset: 0x33474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_149_tlut_wheel_3 +peach_kart_frame150_wheel0: + symbol: gKartPeach150Wheel0 + type: texture + offset: 0x3399C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_150_tlut_wheel_0 +peach_kart_frame150_wheel1: + symbol: gKartPeach150Wheel1 + type: texture + offset: 0x3399C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_150_tlut_wheel_1 +peach_kart_frame150_wheel2: + symbol: gKartPeach150Wheel2 + type: texture + offset: 0x3399C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_150_tlut_wheel_2 +peach_kart_frame150_wheel3: + symbol: gKartPeach150Wheel3 + type: texture + offset: 0x3399C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_150_tlut_wheel_3 +peach_kart_frame151_wheel0: + symbol: gKartPeach151Wheel0 + type: texture + offset: 0x33F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_151_tlut_wheel_0 +peach_kart_frame151_wheel1: + symbol: gKartPeach151Wheel1 + type: texture + offset: 0x33F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_151_tlut_wheel_1 +peach_kart_frame151_wheel2: + symbol: gKartPeach151Wheel2 + type: texture + offset: 0x33F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_151_tlut_wheel_2 +peach_kart_frame151_wheel3: + symbol: gKartPeach151Wheel3 + type: texture + offset: 0x33F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_151_tlut_wheel_3 +peach_kart_frame152_wheel0: + symbol: gKartPeach152Wheel0 + type: texture + offset: 0x3448C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_152_tlut_wheel_0 +peach_kart_frame152_wheel1: + symbol: gKartPeach152Wheel1 + type: texture + offset: 0x3448C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_152_tlut_wheel_1 +peach_kart_frame152_wheel2: + symbol: gKartPeach152Wheel2 + type: texture + offset: 0x3448C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_152_tlut_wheel_2 +peach_kart_frame152_wheel3: + symbol: gKartPeach152Wheel3 + type: texture + offset: 0x3448C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_152_tlut_wheel_3 +peach_kart_frame153_wheel0: + symbol: gKartPeach153Wheel0 + type: texture + offset: 0x34A34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_153_tlut_wheel_0 +peach_kart_frame153_wheel1: + symbol: gKartPeach153Wheel1 + type: texture + offset: 0x34A34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_153_tlut_wheel_1 +peach_kart_frame153_wheel2: + symbol: gKartPeach153Wheel2 + type: texture + offset: 0x34A34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_153_tlut_wheel_2 +peach_kart_frame153_wheel3: + symbol: gKartPeach153Wheel3 + type: texture + offset: 0x34A34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_153_tlut_wheel_3 +peach_kart_frame154_wheel0: + symbol: gKartPeach154Wheel0 + type: texture + offset: 0x34FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_154_tlut_wheel_0 +peach_kart_frame154_wheel1: + symbol: gKartPeach154Wheel1 + type: texture + offset: 0x34FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_154_tlut_wheel_1 +peach_kart_frame154_wheel2: + symbol: gKartPeach154Wheel2 + type: texture + offset: 0x34FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_154_tlut_wheel_2 +peach_kart_frame154_wheel3: + symbol: gKartPeach154Wheel3 + type: texture + offset: 0x34FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_154_tlut_wheel_3 +peach_kart_frame155_wheel0: + symbol: gKartPeach155Wheel0 + type: texture + offset: 0x35588 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_155_tlut_wheel_0 +peach_kart_frame155_wheel1: + symbol: gKartPeach155Wheel1 + type: texture + offset: 0x35588 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_155_tlut_wheel_1 +peach_kart_frame155_wheel2: + symbol: gKartPeach155Wheel2 + type: texture + offset: 0x35588 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_155_tlut_wheel_2 +peach_kart_frame155_wheel3: + symbol: gKartPeach155Wheel3 + type: texture + offset: 0x35588 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_155_tlut_wheel_3 +peach_kart_frame156_wheel0: + symbol: gKartPeach156Wheel0 + type: texture + offset: 0x35B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_156_tlut_wheel_0 +peach_kart_frame156_wheel1: + symbol: gKartPeach156Wheel1 + type: texture + offset: 0x35B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_156_tlut_wheel_1 +peach_kart_frame156_wheel2: + symbol: gKartPeach156Wheel2 + type: texture + offset: 0x35B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_156_tlut_wheel_2 +peach_kart_frame156_wheel3: + symbol: gKartPeach156Wheel3 + type: texture + offset: 0x35B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_156_tlut_wheel_3 +peach_kart_frame157_wheel0: + symbol: gKartPeach157Wheel0 + type: texture + offset: 0x360FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_157_tlut_wheel_0 +peach_kart_frame157_wheel1: + symbol: gKartPeach157Wheel1 + type: texture + offset: 0x360FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_157_tlut_wheel_1 +peach_kart_frame157_wheel2: + symbol: gKartPeach157Wheel2 + type: texture + offset: 0x360FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_157_tlut_wheel_2 +peach_kart_frame157_wheel3: + symbol: gKartPeach157Wheel3 + type: texture + offset: 0x360FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_157_tlut_wheel_3 +peach_kart_frame158_wheel0: + symbol: gKartPeach158Wheel0 + type: texture + offset: 0x366C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_158_tlut_wheel_0 +peach_kart_frame158_wheel1: + symbol: gKartPeach158Wheel1 + type: texture + offset: 0x366C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_158_tlut_wheel_1 +peach_kart_frame158_wheel2: + symbol: gKartPeach158Wheel2 + type: texture + offset: 0x366C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_158_tlut_wheel_2 +peach_kart_frame158_wheel3: + symbol: gKartPeach158Wheel3 + type: texture + offset: 0x366C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_158_tlut_wheel_3 +peach_kart_frame159_wheel0: + symbol: gKartPeach159Wheel0 + type: texture + offset: 0x36C70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_159_tlut_wheel_0 +peach_kart_frame159_wheel1: + symbol: gKartPeach159Wheel1 + type: texture + offset: 0x36C70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_159_tlut_wheel_1 +peach_kart_frame159_wheel2: + symbol: gKartPeach159Wheel2 + type: texture + offset: 0x36C70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_159_tlut_wheel_2 +peach_kart_frame159_wheel3: + symbol: gKartPeach159Wheel3 + type: texture + offset: 0x36C70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_159_tlut_wheel_3 +peach_kart_frame160_wheel0: + symbol: gKartPeach160Wheel0 + type: texture + offset: 0x37248 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_160_tlut_wheel_0 +peach_kart_frame160_wheel1: + symbol: gKartPeach160Wheel1 + type: texture + offset: 0x37248 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_160_tlut_wheel_1 +peach_kart_frame160_wheel2: + symbol: gKartPeach160Wheel2 + type: texture + offset: 0x37248 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_160_tlut_wheel_2 +peach_kart_frame160_wheel3: + symbol: gKartPeach160Wheel3 + type: texture + offset: 0x37248 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_160_tlut_wheel_3 +peach_kart_frame161_wheel0: + symbol: gKartPeach161Wheel0 + type: texture + offset: 0x3782C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_161_tlut_wheel_0 +peach_kart_frame161_wheel1: + symbol: gKartPeach161Wheel1 + type: texture + offset: 0x3782C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_161_tlut_wheel_1 +peach_kart_frame161_wheel2: + symbol: gKartPeach161Wheel2 + type: texture + offset: 0x3782C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_161_tlut_wheel_2 +peach_kart_frame161_wheel3: + symbol: gKartPeach161Wheel3 + type: texture + offset: 0x3782C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_161_tlut_wheel_3 +peach_kart_frame162_wheel0: + symbol: gKartPeach162Wheel0 + type: texture + offset: 0x37E00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_162_tlut_wheel_0 +peach_kart_frame162_wheel1: + symbol: gKartPeach162Wheel1 + type: texture + offset: 0x37E00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_162_tlut_wheel_1 +peach_kart_frame162_wheel2: + symbol: gKartPeach162Wheel2 + type: texture + offset: 0x37E00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_162_tlut_wheel_2 +peach_kart_frame162_wheel3: + symbol: gKartPeach162Wheel3 + type: texture + offset: 0x37E00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_162_tlut_wheel_3 +peach_kart_frame163_wheel0: + symbol: gKartPeach163Wheel0 + type: texture + offset: 0x383F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_163_tlut_wheel_0 +peach_kart_frame163_wheel1: + symbol: gKartPeach163Wheel1 + type: texture + offset: 0x383F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_163_tlut_wheel_1 +peach_kart_frame163_wheel2: + symbol: gKartPeach163Wheel2 + type: texture + offset: 0x383F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_163_tlut_wheel_2 +peach_kart_frame163_wheel3: + symbol: gKartPeach163Wheel3 + type: texture + offset: 0x383F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_163_tlut_wheel_3 +peach_kart_frame164_wheel0: + symbol: gKartPeach164Wheel0 + type: texture + offset: 0x389E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_164_tlut_wheel_0 +peach_kart_frame164_wheel1: + symbol: gKartPeach164Wheel1 + type: texture + offset: 0x389E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_164_tlut_wheel_1 +peach_kart_frame164_wheel2: + symbol: gKartPeach164Wheel2 + type: texture + offset: 0x389E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_164_tlut_wheel_2 +peach_kart_frame164_wheel3: + symbol: gKartPeach164Wheel3 + type: texture + offset: 0x389E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_164_tlut_wheel_3 +peach_kart_frame165_wheel0: + symbol: gKartPeach165Wheel0 + type: texture + offset: 0x38FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_165_tlut_wheel_0 +peach_kart_frame165_wheel1: + symbol: gKartPeach165Wheel1 + type: texture + offset: 0x38FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_165_tlut_wheel_1 +peach_kart_frame165_wheel2: + symbol: gKartPeach165Wheel2 + type: texture + offset: 0x38FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_165_tlut_wheel_2 +peach_kart_frame165_wheel3: + symbol: gKartPeach165Wheel3 + type: texture + offset: 0x38FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_165_tlut_wheel_3 +peach_kart_frame166_wheel0: + symbol: gKartPeach166Wheel0 + type: texture + offset: 0x395B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_166_tlut_wheel_0 +peach_kart_frame166_wheel1: + symbol: gKartPeach166Wheel1 + type: texture + offset: 0x395B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_166_tlut_wheel_1 +peach_kart_frame166_wheel2: + symbol: gKartPeach166Wheel2 + type: texture + offset: 0x395B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_166_tlut_wheel_2 +peach_kart_frame166_wheel3: + symbol: gKartPeach166Wheel3 + type: texture + offset: 0x395B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_166_tlut_wheel_3 +peach_kart_frame167_wheel0: + symbol: gKartPeach167Wheel0 + type: texture + offset: 0x39BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_167_tlut_wheel_0 +peach_kart_frame167_wheel1: + symbol: gKartPeach167Wheel1 + type: texture + offset: 0x39BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_167_tlut_wheel_1 +peach_kart_frame167_wheel2: + symbol: gKartPeach167Wheel2 + type: texture + offset: 0x39BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_167_tlut_wheel_2 +peach_kart_frame167_wheel3: + symbol: gKartPeach167Wheel3 + type: texture + offset: 0x39BA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_167_tlut_wheel_3 +peach_kart_frame168_wheel0: + symbol: gKartPeach168Wheel0 + type: texture + offset: 0x3A18C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_168_tlut_wheel_0 +peach_kart_frame168_wheel1: + symbol: gKartPeach168Wheel1 + type: texture + offset: 0x3A18C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_168_tlut_wheel_1 +peach_kart_frame168_wheel2: + symbol: gKartPeach168Wheel2 + type: texture + offset: 0x3A18C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_168_tlut_wheel_2 +peach_kart_frame168_wheel3: + symbol: gKartPeach168Wheel3 + type: texture + offset: 0x3A18C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_168_tlut_wheel_3 +peach_kart_frame169_wheel0: + symbol: gKartPeach169Wheel0 + type: texture + offset: 0x3A690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_169_tlut_wheel_0 +peach_kart_frame169_wheel1: + symbol: gKartPeach169Wheel1 + type: texture + offset: 0x3A690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_169_tlut_wheel_1 +peach_kart_frame169_wheel2: + symbol: gKartPeach169Wheel2 + type: texture + offset: 0x3A690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_169_tlut_wheel_2 +peach_kart_frame169_wheel3: + symbol: gKartPeach169Wheel3 + type: texture + offset: 0x3A690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_169_tlut_wheel_3 +peach_kart_frame170_wheel0: + symbol: gKartPeach170Wheel0 + type: texture + offset: 0x3ABB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_170_tlut_wheel_0 +peach_kart_frame170_wheel1: + symbol: gKartPeach170Wheel1 + type: texture + offset: 0x3ABB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_170_tlut_wheel_1 +peach_kart_frame170_wheel2: + symbol: gKartPeach170Wheel2 + type: texture + offset: 0x3ABB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_170_tlut_wheel_2 +peach_kart_frame170_wheel3: + symbol: gKartPeach170Wheel3 + type: texture + offset: 0x3ABB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_170_tlut_wheel_3 +peach_kart_frame171_wheel0: + symbol: gKartPeach171Wheel0 + type: texture + offset: 0x3B0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_171_tlut_wheel_0 +peach_kart_frame171_wheel1: + symbol: gKartPeach171Wheel1 + type: texture + offset: 0x3B0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_171_tlut_wheel_1 +peach_kart_frame171_wheel2: + symbol: gKartPeach171Wheel2 + type: texture + offset: 0x3B0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_171_tlut_wheel_2 +peach_kart_frame171_wheel3: + symbol: gKartPeach171Wheel3 + type: texture + offset: 0x3B0FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_171_tlut_wheel_3 +peach_kart_frame172_wheel0: + symbol: gKartPeach172Wheel0 + type: texture + offset: 0x3B658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_172_tlut_wheel_0 +peach_kart_frame172_wheel1: + symbol: gKartPeach172Wheel1 + type: texture + offset: 0x3B658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_172_tlut_wheel_1 +peach_kart_frame172_wheel2: + symbol: gKartPeach172Wheel2 + type: texture + offset: 0x3B658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_172_tlut_wheel_2 +peach_kart_frame172_wheel3: + symbol: gKartPeach172Wheel3 + type: texture + offset: 0x3B658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_172_tlut_wheel_3 +peach_kart_frame173_wheel0: + symbol: gKartPeach173Wheel0 + type: texture + offset: 0x3BBDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_173_tlut_wheel_0 +peach_kart_frame173_wheel1: + symbol: gKartPeach173Wheel1 + type: texture + offset: 0x3BBDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_173_tlut_wheel_1 +peach_kart_frame173_wheel2: + symbol: gKartPeach173Wheel2 + type: texture + offset: 0x3BBDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_173_tlut_wheel_2 +peach_kart_frame173_wheel3: + symbol: gKartPeach173Wheel3 + type: texture + offset: 0x3BBDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_173_tlut_wheel_3 +peach_kart_frame174_wheel0: + symbol: gKartPeach174Wheel0 + type: texture + offset: 0x3C184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_174_tlut_wheel_0 +peach_kart_frame174_wheel1: + symbol: gKartPeach174Wheel1 + type: texture + offset: 0x3C184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_174_tlut_wheel_1 +peach_kart_frame174_wheel2: + symbol: gKartPeach174Wheel2 + type: texture + offset: 0x3C184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_174_tlut_wheel_2 +peach_kart_frame174_wheel3: + symbol: gKartPeach174Wheel3 + type: texture + offset: 0x3C184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_174_tlut_wheel_3 +peach_kart_frame175_wheel0: + symbol: gKartPeach175Wheel0 + type: texture + offset: 0x3C748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_175_tlut_wheel_0 +peach_kart_frame175_wheel1: + symbol: gKartPeach175Wheel1 + type: texture + offset: 0x3C748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_175_tlut_wheel_1 +peach_kart_frame175_wheel2: + symbol: gKartPeach175Wheel2 + type: texture + offset: 0x3C748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_175_tlut_wheel_2 +peach_kart_frame175_wheel3: + symbol: gKartPeach175Wheel3 + type: texture + offset: 0x3C748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_175_tlut_wheel_3 +peach_kart_frame176_wheel0: + symbol: gKartPeach176Wheel0 + type: texture + offset: 0x3CD14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_176_tlut_wheel_0 +peach_kart_frame176_wheel1: + symbol: gKartPeach176Wheel1 + type: texture + offset: 0x3CD14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_176_tlut_wheel_1 +peach_kart_frame176_wheel2: + symbol: gKartPeach176Wheel2 + type: texture + offset: 0x3CD14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_176_tlut_wheel_2 +peach_kart_frame176_wheel3: + symbol: gKartPeach176Wheel3 + type: texture + offset: 0x3CD14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_176_tlut_wheel_3 +peach_kart_frame177_wheel0: + symbol: gKartPeach177Wheel0 + type: texture + offset: 0x3D2F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_177_tlut_wheel_0 +peach_kart_frame177_wheel1: + symbol: gKartPeach177Wheel1 + type: texture + offset: 0x3D2F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_177_tlut_wheel_1 +peach_kart_frame177_wheel2: + symbol: gKartPeach177Wheel2 + type: texture + offset: 0x3D2F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_177_tlut_wheel_2 +peach_kart_frame177_wheel3: + symbol: gKartPeach177Wheel3 + type: texture + offset: 0x3D2F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_177_tlut_wheel_3 +peach_kart_frame178_wheel0: + symbol: gKartPeach178Wheel0 + type: texture + offset: 0x3D8C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_178_tlut_wheel_0 +peach_kart_frame178_wheel1: + symbol: gKartPeach178Wheel1 + type: texture + offset: 0x3D8C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_178_tlut_wheel_1 +peach_kart_frame178_wheel2: + symbol: gKartPeach178Wheel2 + type: texture + offset: 0x3D8C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_178_tlut_wheel_2 +peach_kart_frame178_wheel3: + symbol: gKartPeach178Wheel3 + type: texture + offset: 0x3D8C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_178_tlut_wheel_3 +peach_kart_frame179_wheel0: + symbol: gKartPeach179Wheel0 + type: texture + offset: 0x3DEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_179_tlut_wheel_0 +peach_kart_frame179_wheel1: + symbol: gKartPeach179Wheel1 + type: texture + offset: 0x3DEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_179_tlut_wheel_1 +peach_kart_frame179_wheel2: + symbol: gKartPeach179Wheel2 + type: texture + offset: 0x3DEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_179_tlut_wheel_2 +peach_kart_frame179_wheel3: + symbol: gKartPeach179Wheel3 + type: texture + offset: 0x3DEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_179_tlut_wheel_3 +peach_kart_frame180_wheel0: + symbol: gKartPeach180Wheel0 + type: texture + offset: 0x3E488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_180_tlut_wheel_0 +peach_kart_frame180_wheel1: + symbol: gKartPeach180Wheel1 + type: texture + offset: 0x3E488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_180_tlut_wheel_1 +peach_kart_frame180_wheel2: + symbol: gKartPeach180Wheel2 + type: texture + offset: 0x3E488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_180_tlut_wheel_2 +peach_kart_frame180_wheel3: + symbol: gKartPeach180Wheel3 + type: texture + offset: 0x3E488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_180_tlut_wheel_3 +peach_kart_frame181_wheel0: + symbol: gKartPeach181Wheel0 + type: texture + offset: 0x3EA68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_181_tlut_wheel_0 +peach_kart_frame181_wheel1: + symbol: gKartPeach181Wheel1 + type: texture + offset: 0x3EA68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_181_tlut_wheel_1 +peach_kart_frame181_wheel2: + symbol: gKartPeach181Wheel2 + type: texture + offset: 0x3EA68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_181_tlut_wheel_2 +peach_kart_frame181_wheel3: + symbol: gKartPeach181Wheel3 + type: texture + offset: 0x3EA68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_181_tlut_wheel_3 +peach_kart_frame182_wheel0: + symbol: gKartPeach182Wheel0 + type: texture + offset: 0x3F040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_182_tlut_wheel_0 +peach_kart_frame182_wheel1: + symbol: gKartPeach182Wheel1 + type: texture + offset: 0x3F040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_182_tlut_wheel_1 +peach_kart_frame182_wheel2: + symbol: gKartPeach182Wheel2 + type: texture + offset: 0x3F040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_182_tlut_wheel_2 +peach_kart_frame182_wheel3: + symbol: gKartPeach182Wheel3 + type: texture + offset: 0x3F040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_182_tlut_wheel_3 +peach_kart_frame183_wheel0: + symbol: gKartPeach183Wheel0 + type: texture + offset: 0x3F640 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_183_tlut_wheel_0 +peach_kart_frame183_wheel1: + symbol: gKartPeach183Wheel1 + type: texture + offset: 0x3F640 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_183_tlut_wheel_1 +peach_kart_frame183_wheel2: + symbol: gKartPeach183Wheel2 + type: texture + offset: 0x3F640 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_183_tlut_wheel_2 +peach_kart_frame183_wheel3: + symbol: gKartPeach183Wheel3 + type: texture + offset: 0x3F640 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_183_tlut_wheel_3 +peach_kart_frame184_wheel0: + symbol: gKartPeach184Wheel0 + type: texture + offset: 0x3FC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_184_tlut_wheel_0 +peach_kart_frame184_wheel1: + symbol: gKartPeach184Wheel1 + type: texture + offset: 0x3FC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_184_tlut_wheel_1 +peach_kart_frame184_wheel2: + symbol: gKartPeach184Wheel2 + type: texture + offset: 0x3FC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_184_tlut_wheel_2 +peach_kart_frame184_wheel3: + symbol: gKartPeach184Wheel3 + type: texture + offset: 0x3FC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_184_tlut_wheel_3 +peach_kart_frame185_wheel0: + symbol: gKartPeach185Wheel0 + type: texture + offset: 0x40248 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_185_tlut_wheel_0 +peach_kart_frame185_wheel1: + symbol: gKartPeach185Wheel1 + type: texture + offset: 0x40248 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_185_tlut_wheel_1 +peach_kart_frame185_wheel2: + symbol: gKartPeach185Wheel2 + type: texture + offset: 0x40248 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_185_tlut_wheel_2 +peach_kart_frame185_wheel3: + symbol: gKartPeach185Wheel3 + type: texture + offset: 0x40248 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_185_tlut_wheel_3 +peach_kart_frame186_wheel0: + symbol: gKartPeach186Wheel0 + type: texture + offset: 0x40840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_186_tlut_wheel_0 +peach_kart_frame186_wheel1: + symbol: gKartPeach186Wheel1 + type: texture + offset: 0x40840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_186_tlut_wheel_1 +peach_kart_frame186_wheel2: + symbol: gKartPeach186Wheel2 + type: texture + offset: 0x40840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_186_tlut_wheel_2 +peach_kart_frame186_wheel3: + symbol: gKartPeach186Wheel3 + type: texture + offset: 0x40840 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_186_tlut_wheel_3 +peach_kart_frame187_wheel0: + symbol: gKartPeach187Wheel0 + type: texture + offset: 0x40E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_187_tlut_wheel_0 +peach_kart_frame187_wheel1: + symbol: gKartPeach187Wheel1 + type: texture + offset: 0x40E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_187_tlut_wheel_1 +peach_kart_frame187_wheel2: + symbol: gKartPeach187Wheel2 + type: texture + offset: 0x40E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_187_tlut_wheel_2 +peach_kart_frame187_wheel3: + symbol: gKartPeach187Wheel3 + type: texture + offset: 0x40E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_187_tlut_wheel_3 +peach_kart_frame188_wheel0: + symbol: gKartPeach188Wheel0 + type: texture + offset: 0x41424 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_188_tlut_wheel_0 +peach_kart_frame188_wheel1: + symbol: gKartPeach188Wheel1 + type: texture + offset: 0x41424 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_188_tlut_wheel_1 +peach_kart_frame188_wheel2: + symbol: gKartPeach188Wheel2 + type: texture + offset: 0x41424 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_188_tlut_wheel_2 +peach_kart_frame188_wheel3: + symbol: gKartPeach188Wheel3 + type: texture + offset: 0x41424 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_188_tlut_wheel_3 +peach_kart_frame189_wheel0: + symbol: gKartPeach189Wheel0 + type: texture + offset: 0x41A10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_189_tlut_wheel_0 +peach_kart_frame189_wheel1: + symbol: gKartPeach189Wheel1 + type: texture + offset: 0x41A10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_189_tlut_wheel_1 +peach_kart_frame189_wheel2: + symbol: gKartPeach189Wheel2 + type: texture + offset: 0x41A10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_189_tlut_wheel_2 +peach_kart_frame189_wheel3: + symbol: gKartPeach189Wheel3 + type: texture + offset: 0x41A10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_189_tlut_wheel_3 +peach_kart_frame190_wheel0: + symbol: gKartPeach190Wheel0 + type: texture + offset: 0x41F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_190_tlut_wheel_0 +peach_kart_frame190_wheel1: + symbol: gKartPeach190Wheel1 + type: texture + offset: 0x41F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_190_tlut_wheel_1 +peach_kart_frame190_wheel2: + symbol: gKartPeach190Wheel2 + type: texture + offset: 0x41F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_190_tlut_wheel_2 +peach_kart_frame190_wheel3: + symbol: gKartPeach190Wheel3 + type: texture + offset: 0x41F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_190_tlut_wheel_3 +peach_kart_frame191_wheel0: + symbol: gKartPeach191Wheel0 + type: texture + offset: 0x42420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_191_tlut_wheel_0 +peach_kart_frame191_wheel1: + symbol: gKartPeach191Wheel1 + type: texture + offset: 0x42420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_191_tlut_wheel_1 +peach_kart_frame191_wheel2: + symbol: gKartPeach191Wheel2 + type: texture + offset: 0x42420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_191_tlut_wheel_2 +peach_kart_frame191_wheel3: + symbol: gKartPeach191Wheel3 + type: texture + offset: 0x42420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_191_tlut_wheel_3 +peach_kart_frame192_wheel0: + symbol: gKartPeach192Wheel0 + type: texture + offset: 0x42958 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_192_tlut_wheel_0 +peach_kart_frame192_wheel1: + symbol: gKartPeach192Wheel1 + type: texture + offset: 0x42958 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_192_tlut_wheel_1 +peach_kart_frame192_wheel2: + symbol: gKartPeach192Wheel2 + type: texture + offset: 0x42958 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_192_tlut_wheel_2 +peach_kart_frame192_wheel3: + symbol: gKartPeach192Wheel3 + type: texture + offset: 0x42958 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_192_tlut_wheel_3 +peach_kart_frame193_wheel0: + symbol: gKartPeach193Wheel0 + type: texture + offset: 0x42ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_193_tlut_wheel_0 +peach_kart_frame193_wheel1: + symbol: gKartPeach193Wheel1 + type: texture + offset: 0x42ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_193_tlut_wheel_1 +peach_kart_frame193_wheel2: + symbol: gKartPeach193Wheel2 + type: texture + offset: 0x42ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_193_tlut_wheel_2 +peach_kart_frame193_wheel3: + symbol: gKartPeach193Wheel3 + type: texture + offset: 0x42ECC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_193_tlut_wheel_3 +peach_kart_frame194_wheel0: + symbol: gKartPeach194Wheel0 + type: texture + offset: 0x43454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_194_tlut_wheel_0 +peach_kart_frame194_wheel1: + symbol: gKartPeach194Wheel1 + type: texture + offset: 0x43454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_194_tlut_wheel_1 +peach_kart_frame194_wheel2: + symbol: gKartPeach194Wheel2 + type: texture + offset: 0x43454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_194_tlut_wheel_2 +peach_kart_frame194_wheel3: + symbol: gKartPeach194Wheel3 + type: texture + offset: 0x43454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_194_tlut_wheel_3 +peach_kart_frame195_wheel0: + symbol: gKartPeach195Wheel0 + type: texture + offset: 0x439F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_195_tlut_wheel_0 +peach_kart_frame195_wheel1: + symbol: gKartPeach195Wheel1 + type: texture + offset: 0x439F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_195_tlut_wheel_1 +peach_kart_frame195_wheel2: + symbol: gKartPeach195Wheel2 + type: texture + offset: 0x439F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_195_tlut_wheel_2 +peach_kart_frame195_wheel3: + symbol: gKartPeach195Wheel3 + type: texture + offset: 0x439F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_195_tlut_wheel_3 +peach_kart_frame196_wheel0: + symbol: gKartPeach196Wheel0 + type: texture + offset: 0x43FA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_196_tlut_wheel_0 +peach_kart_frame196_wheel1: + symbol: gKartPeach196Wheel1 + type: texture + offset: 0x43FA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_196_tlut_wheel_1 +peach_kart_frame196_wheel2: + symbol: gKartPeach196Wheel2 + type: texture + offset: 0x43FA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_196_tlut_wheel_2 +peach_kart_frame196_wheel3: + symbol: gKartPeach196Wheel3 + type: texture + offset: 0x43FA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_196_tlut_wheel_3 +peach_kart_frame197_wheel0: + symbol: gKartPeach197Wheel0 + type: texture + offset: 0x44580 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_197_tlut_wheel_0 +peach_kart_frame197_wheel1: + symbol: gKartPeach197Wheel1 + type: texture + offset: 0x44580 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_197_tlut_wheel_1 +peach_kart_frame197_wheel2: + symbol: gKartPeach197Wheel2 + type: texture + offset: 0x44580 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_197_tlut_wheel_2 +peach_kart_frame197_wheel3: + symbol: gKartPeach197Wheel3 + type: texture + offset: 0x44580 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_197_tlut_wheel_3 +peach_kart_frame198_wheel0: + symbol: gKartPeach198Wheel0 + type: texture + offset: 0x44B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_198_tlut_wheel_0 +peach_kart_frame198_wheel1: + symbol: gKartPeach198Wheel1 + type: texture + offset: 0x44B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_198_tlut_wheel_1 +peach_kart_frame198_wheel2: + symbol: gKartPeach198Wheel2 + type: texture + offset: 0x44B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_198_tlut_wheel_2 +peach_kart_frame198_wheel3: + symbol: gKartPeach198Wheel3 + type: texture + offset: 0x44B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_198_tlut_wheel_3 +peach_kart_frame199_wheel0: + symbol: gKartPeach199Wheel0 + type: texture + offset: 0x4514C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_199_tlut_wheel_0 +peach_kart_frame199_wheel1: + symbol: gKartPeach199Wheel1 + type: texture + offset: 0x4514C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_199_tlut_wheel_1 +peach_kart_frame199_wheel2: + symbol: gKartPeach199Wheel2 + type: texture + offset: 0x4514C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_199_tlut_wheel_2 +peach_kart_frame199_wheel3: + symbol: gKartPeach199Wheel3 + type: texture + offset: 0x4514C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_199_tlut_wheel_3 +peach_kart_frame200_wheel0: + symbol: gKartPeach200Wheel0 + type: texture + offset: 0x45764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_200_tlut_wheel_0 +peach_kart_frame200_wheel1: + symbol: gKartPeach200Wheel1 + type: texture + offset: 0x45764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_200_tlut_wheel_1 +peach_kart_frame200_wheel2: + symbol: gKartPeach200Wheel2 + type: texture + offset: 0x45764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_200_tlut_wheel_2 +peach_kart_frame200_wheel3: + symbol: gKartPeach200Wheel3 + type: texture + offset: 0x45764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_200_tlut_wheel_3 +peach_kart_frame201_wheel0: + symbol: gKartPeach201Wheel0 + type: texture + offset: 0x45DA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_201_tlut_wheel_0 +peach_kart_frame201_wheel1: + symbol: gKartPeach201Wheel1 + type: texture + offset: 0x45DA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_201_tlut_wheel_1 +peach_kart_frame201_wheel2: + symbol: gKartPeach201Wheel2 + type: texture + offset: 0x45DA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_201_tlut_wheel_2 +peach_kart_frame201_wheel3: + symbol: gKartPeach201Wheel3 + type: texture + offset: 0x45DA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_201_tlut_wheel_3 +peach_kart_frame202_wheel0: + symbol: gKartPeach202Wheel0 + type: texture + offset: 0x463C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_202_tlut_wheel_0 +peach_kart_frame202_wheel1: + symbol: gKartPeach202Wheel1 + type: texture + offset: 0x463C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_202_tlut_wheel_1 +peach_kart_frame202_wheel2: + symbol: gKartPeach202Wheel2 + type: texture + offset: 0x463C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_202_tlut_wheel_2 +peach_kart_frame202_wheel3: + symbol: gKartPeach202Wheel3 + type: texture + offset: 0x463C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_202_tlut_wheel_3 +peach_kart_frame203_wheel0: + symbol: gKartPeach203Wheel0 + type: texture + offset: 0x469D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_203_tlut_wheel_0 +peach_kart_frame203_wheel1: + symbol: gKartPeach203Wheel1 + type: texture + offset: 0x469D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_203_tlut_wheel_1 +peach_kart_frame203_wheel2: + symbol: gKartPeach203Wheel2 + type: texture + offset: 0x469D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_203_tlut_wheel_2 +peach_kart_frame203_wheel3: + symbol: gKartPeach203Wheel3 + type: texture + offset: 0x469D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_203_tlut_wheel_3 +peach_kart_frame204_wheel0: + symbol: gKartPeach204Wheel0 + type: texture + offset: 0x46FD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_204_tlut_wheel_0 +peach_kart_frame204_wheel1: + symbol: gKartPeach204Wheel1 + type: texture + offset: 0x46FD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_204_tlut_wheel_1 +peach_kart_frame204_wheel2: + symbol: gKartPeach204Wheel2 + type: texture + offset: 0x46FD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_204_tlut_wheel_2 +peach_kart_frame204_wheel3: + symbol: gKartPeach204Wheel3 + type: texture + offset: 0x46FD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_204_tlut_wheel_3 +peach_kart_frame205_wheel0: + symbol: gKartPeach205Wheel0 + type: texture + offset: 0x475E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_205_tlut_wheel_0 +peach_kart_frame205_wheel1: + symbol: gKartPeach205Wheel1 + type: texture + offset: 0x475E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_205_tlut_wheel_1 +peach_kart_frame205_wheel2: + symbol: gKartPeach205Wheel2 + type: texture + offset: 0x475E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_205_tlut_wheel_2 +peach_kart_frame205_wheel3: + symbol: gKartPeach205Wheel3 + type: texture + offset: 0x475E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_205_tlut_wheel_3 +peach_kart_frame206_wheel0: + symbol: gKartPeach206Wheel0 + type: texture + offset: 0x47BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_206_tlut_wheel_0 +peach_kart_frame206_wheel1: + symbol: gKartPeach206Wheel1 + type: texture + offset: 0x47BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_206_tlut_wheel_1 +peach_kart_frame206_wheel2: + symbol: gKartPeach206Wheel2 + type: texture + offset: 0x47BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_206_tlut_wheel_2 +peach_kart_frame206_wheel3: + symbol: gKartPeach206Wheel3 + type: texture + offset: 0x47BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_206_tlut_wheel_3 +peach_kart_frame207_wheel0: + symbol: gKartPeach207Wheel0 + type: texture + offset: 0x481CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_207_tlut_wheel_0 +peach_kart_frame207_wheel1: + symbol: gKartPeach207Wheel1 + type: texture + offset: 0x481CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_207_tlut_wheel_1 +peach_kart_frame207_wheel2: + symbol: gKartPeach207Wheel2 + type: texture + offset: 0x481CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_207_tlut_wheel_2 +peach_kart_frame207_wheel3: + symbol: gKartPeach207Wheel3 + type: texture + offset: 0x481CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_207_tlut_wheel_3 +peach_kart_frame208_wheel0: + symbol: gKartPeach208Wheel0 + type: texture + offset: 0x487D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_208_tlut_wheel_0 +peach_kart_frame208_wheel1: + symbol: gKartPeach208Wheel1 + type: texture + offset: 0x487D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_208_tlut_wheel_1 +peach_kart_frame208_wheel2: + symbol: gKartPeach208Wheel2 + type: texture + offset: 0x487D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_208_tlut_wheel_2 +peach_kart_frame208_wheel3: + symbol: gKartPeach208Wheel3 + type: texture + offset: 0x487D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_208_tlut_wheel_3 +peach_kart_frame209_wheel0: + symbol: gKartPeach209Wheel0 + type: texture + offset: 0x48DA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_209_tlut_wheel_0 +peach_kart_frame209_wheel1: + symbol: gKartPeach209Wheel1 + type: texture + offset: 0x48DA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_209_tlut_wheel_1 +peach_kart_frame209_wheel2: + symbol: gKartPeach209Wheel2 + type: texture + offset: 0x48DA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_209_tlut_wheel_2 +peach_kart_frame209_wheel3: + symbol: gKartPeach209Wheel3 + type: texture + offset: 0x48DA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_209_tlut_wheel_3 +peach_kart_frame210_wheel0: + symbol: gKartPeach210Wheel0 + type: texture + offset: 0x492A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_210_tlut_wheel_0 +peach_kart_frame210_wheel1: + symbol: gKartPeach210Wheel1 + type: texture + offset: 0x492A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_210_tlut_wheel_1 +peach_kart_frame210_wheel2: + symbol: gKartPeach210Wheel2 + type: texture + offset: 0x492A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_210_tlut_wheel_2 +peach_kart_frame210_wheel3: + symbol: gKartPeach210Wheel3 + type: texture + offset: 0x492A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_210_tlut_wheel_3 +peach_kart_frame211_wheel0: + symbol: gKartPeach211Wheel0 + type: texture + offset: 0x497D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_211_tlut_wheel_0 +peach_kart_frame211_wheel1: + symbol: gKartPeach211Wheel1 + type: texture + offset: 0x497D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_211_tlut_wheel_1 +peach_kart_frame211_wheel2: + symbol: gKartPeach211Wheel2 + type: texture + offset: 0x497D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_211_tlut_wheel_2 +peach_kart_frame211_wheel3: + symbol: gKartPeach211Wheel3 + type: texture + offset: 0x497D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_211_tlut_wheel_3 +peach_kart_frame212_wheel0: + symbol: gKartPeach212Wheel0 + type: texture + offset: 0x49D40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_212_tlut_wheel_0 +peach_kart_frame212_wheel1: + symbol: gKartPeach212Wheel1 + type: texture + offset: 0x49D40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_212_tlut_wheel_1 +peach_kart_frame212_wheel2: + symbol: gKartPeach212Wheel2 + type: texture + offset: 0x49D40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_212_tlut_wheel_2 +peach_kart_frame212_wheel3: + symbol: gKartPeach212Wheel3 + type: texture + offset: 0x49D40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_212_tlut_wheel_3 +peach_kart_frame213_wheel0: + symbol: gKartPeach213Wheel0 + type: texture + offset: 0x4A2C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_213_tlut_wheel_0 +peach_kart_frame213_wheel1: + symbol: gKartPeach213Wheel1 + type: texture + offset: 0x4A2C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_213_tlut_wheel_1 +peach_kart_frame213_wheel2: + symbol: gKartPeach213Wheel2 + type: texture + offset: 0x4A2C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_213_tlut_wheel_2 +peach_kart_frame213_wheel3: + symbol: gKartPeach213Wheel3 + type: texture + offset: 0x4A2C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_213_tlut_wheel_3 +peach_kart_frame214_wheel0: + symbol: gKartPeach214Wheel0 + type: texture + offset: 0x4A850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_214_tlut_wheel_0 +peach_kart_frame214_wheel1: + symbol: gKartPeach214Wheel1 + type: texture + offset: 0x4A850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_214_tlut_wheel_1 +peach_kart_frame214_wheel2: + symbol: gKartPeach214Wheel2 + type: texture + offset: 0x4A850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_214_tlut_wheel_2 +peach_kart_frame214_wheel3: + symbol: gKartPeach214Wheel3 + type: texture + offset: 0x4A850 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_214_tlut_wheel_3 +peach_kart_frame215_wheel0: + symbol: gKartPeach215Wheel0 + type: texture + offset: 0x4ADF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_215_tlut_wheel_0 +peach_kart_frame215_wheel1: + symbol: gKartPeach215Wheel1 + type: texture + offset: 0x4ADF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_215_tlut_wheel_1 +peach_kart_frame215_wheel2: + symbol: gKartPeach215Wheel2 + type: texture + offset: 0x4ADF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_215_tlut_wheel_2 +peach_kart_frame215_wheel3: + symbol: gKartPeach215Wheel3 + type: texture + offset: 0x4ADF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_215_tlut_wheel_3 +peach_kart_frame216_wheel0: + symbol: gKartPeach216Wheel0 + type: texture + offset: 0x4B3BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_216_tlut_wheel_0 +peach_kart_frame216_wheel1: + symbol: gKartPeach216Wheel1 + type: texture + offset: 0x4B3BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_216_tlut_wheel_1 +peach_kart_frame216_wheel2: + symbol: gKartPeach216Wheel2 + type: texture + offset: 0x4B3BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_216_tlut_wheel_2 +peach_kart_frame216_wheel3: + symbol: gKartPeach216Wheel3 + type: texture + offset: 0x4B3BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_216_tlut_wheel_3 +peach_kart_frame217_wheel0: + symbol: gKartPeach217Wheel0 + type: texture + offset: 0x4B97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_217_tlut_wheel_0 +peach_kart_frame217_wheel1: + symbol: gKartPeach217Wheel1 + type: texture + offset: 0x4B97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_217_tlut_wheel_1 +peach_kart_frame217_wheel2: + symbol: gKartPeach217Wheel2 + type: texture + offset: 0x4B97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_217_tlut_wheel_2 +peach_kart_frame217_wheel3: + symbol: gKartPeach217Wheel3 + type: texture + offset: 0x4B97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_217_tlut_wheel_3 +peach_kart_frame218_wheel0: + symbol: gKartPeach218Wheel0 + type: texture + offset: 0x4BF60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_218_tlut_wheel_0 +peach_kart_frame218_wheel1: + symbol: gKartPeach218Wheel1 + type: texture + offset: 0x4BF60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_218_tlut_wheel_1 +peach_kart_frame218_wheel2: + symbol: gKartPeach218Wheel2 + type: texture + offset: 0x4BF60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_218_tlut_wheel_2 +peach_kart_frame218_wheel3: + symbol: gKartPeach218Wheel3 + type: texture + offset: 0x4BF60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_218_tlut_wheel_3 +peach_kart_frame219_wheel0: + symbol: gKartPeach219Wheel0 + type: texture + offset: 0x4C544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_219_tlut_wheel_0 +peach_kart_frame219_wheel1: + symbol: gKartPeach219Wheel1 + type: texture + offset: 0x4C544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_219_tlut_wheel_1 +peach_kart_frame219_wheel2: + symbol: gKartPeach219Wheel2 + type: texture + offset: 0x4C544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_219_tlut_wheel_2 +peach_kart_frame219_wheel3: + symbol: gKartPeach219Wheel3 + type: texture + offset: 0x4C544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_219_tlut_wheel_3 +peach_kart_frame220_wheel0: + symbol: gKartPeach220Wheel0 + type: texture + offset: 0x4CB38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_220_tlut_wheel_0 +peach_kart_frame220_wheel1: + symbol: gKartPeach220Wheel1 + type: texture + offset: 0x4CB38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_220_tlut_wheel_1 +peach_kart_frame220_wheel2: + symbol: gKartPeach220Wheel2 + type: texture + offset: 0x4CB38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_220_tlut_wheel_2 +peach_kart_frame220_wheel3: + symbol: gKartPeach220Wheel3 + type: texture + offset: 0x4CB38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_220_tlut_wheel_3 +peach_kart_frame221_wheel0: + symbol: gKartPeach221Wheel0 + type: texture + offset: 0x4D13C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_221_tlut_wheel_0 +peach_kart_frame221_wheel1: + symbol: gKartPeach221Wheel1 + type: texture + offset: 0x4D13C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_221_tlut_wheel_1 +peach_kart_frame221_wheel2: + symbol: gKartPeach221Wheel2 + type: texture + offset: 0x4D13C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_221_tlut_wheel_2 +peach_kart_frame221_wheel3: + symbol: gKartPeach221Wheel3 + type: texture + offset: 0x4D13C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_221_tlut_wheel_3 +peach_kart_frame222_wheel0: + symbol: gKartPeach222Wheel0 + type: texture + offset: 0x4D71C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_222_tlut_wheel_0 +peach_kart_frame222_wheel1: + symbol: gKartPeach222Wheel1 + type: texture + offset: 0x4D71C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_222_tlut_wheel_1 +peach_kart_frame222_wheel2: + symbol: gKartPeach222Wheel2 + type: texture + offset: 0x4D71C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_222_tlut_wheel_2 +peach_kart_frame222_wheel3: + symbol: gKartPeach222Wheel3 + type: texture + offset: 0x4D71C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_222_tlut_wheel_3 +peach_kart_frame223_wheel0: + symbol: gKartPeach223Wheel0 + type: texture + offset: 0x4DD04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_223_tlut_wheel_0 +peach_kart_frame223_wheel1: + symbol: gKartPeach223Wheel1 + type: texture + offset: 0x4DD04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_223_tlut_wheel_1 +peach_kart_frame223_wheel2: + symbol: gKartPeach223Wheel2 + type: texture + offset: 0x4DD04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_223_tlut_wheel_2 +peach_kart_frame223_wheel3: + symbol: gKartPeach223Wheel3 + type: texture + offset: 0x4DD04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_223_tlut_wheel_3 +peach_kart_frame224_wheel0: + symbol: gKartPeach224Wheel0 + type: texture + offset: 0x4E2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_224_tlut_wheel_0 +peach_kart_frame224_wheel1: + symbol: gKartPeach224Wheel1 + type: texture + offset: 0x4E2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_224_tlut_wheel_1 +peach_kart_frame224_wheel2: + symbol: gKartPeach224Wheel2 + type: texture + offset: 0x4E2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_224_tlut_wheel_2 +peach_kart_frame224_wheel3: + symbol: gKartPeach224Wheel3 + type: texture + offset: 0x4E2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_224_tlut_wheel_3 +peach_kart_frame225_wheel0: + symbol: gKartPeach225Wheel0 + type: texture + offset: 0x4E8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_225_tlut_wheel_0 +peach_kart_frame225_wheel1: + symbol: gKartPeach225Wheel1 + type: texture + offset: 0x4E8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_225_tlut_wheel_1 +peach_kart_frame225_wheel2: + symbol: gKartPeach225Wheel2 + type: texture + offset: 0x4E8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_225_tlut_wheel_2 +peach_kart_frame225_wheel3: + symbol: gKartPeach225Wheel3 + type: texture + offset: 0x4E8CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_225_tlut_wheel_3 +peach_kart_frame226_wheel0: + symbol: gKartPeach226Wheel0 + type: texture + offset: 0x4EEA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_226_tlut_wheel_0 +peach_kart_frame226_wheel1: + symbol: gKartPeach226Wheel1 + type: texture + offset: 0x4EEA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_226_tlut_wheel_1 +peach_kart_frame226_wheel2: + symbol: gKartPeach226Wheel2 + type: texture + offset: 0x4EEA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_226_tlut_wheel_2 +peach_kart_frame226_wheel3: + symbol: gKartPeach226Wheel3 + type: texture + offset: 0x4EEA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_226_tlut_wheel_3 +peach_kart_frame227_wheel0: + symbol: gKartPeach227Wheel0 + type: texture + offset: 0x4F45C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_227_tlut_wheel_0 +peach_kart_frame227_wheel1: + symbol: gKartPeach227Wheel1 + type: texture + offset: 0x4F45C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_227_tlut_wheel_1 +peach_kart_frame227_wheel2: + symbol: gKartPeach227Wheel2 + type: texture + offset: 0x4F45C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_227_tlut_wheel_2 +peach_kart_frame227_wheel3: + symbol: gKartPeach227Wheel3 + type: texture + offset: 0x4F45C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_227_tlut_wheel_3 +peach_kart_frame228_wheel0: + symbol: gKartPeach228Wheel0 + type: texture + offset: 0x4FA18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_228_tlut_wheel_0 +peach_kart_frame228_wheel1: + symbol: gKartPeach228Wheel1 + type: texture + offset: 0x4FA18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_228_tlut_wheel_1 +peach_kart_frame228_wheel2: + symbol: gKartPeach228Wheel2 + type: texture + offset: 0x4FA18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_228_tlut_wheel_2 +peach_kart_frame228_wheel3: + symbol: gKartPeach228Wheel3 + type: texture + offset: 0x4FA18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_228_tlut_wheel_3 +peach_kart_frame229_wheel0: + symbol: gKartPeach229Wheel0 + type: texture + offset: 0x4FFB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_229_tlut_wheel_0 +peach_kart_frame229_wheel1: + symbol: gKartPeach229Wheel1 + type: texture + offset: 0x4FFB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_229_tlut_wheel_1 +peach_kart_frame229_wheel2: + symbol: gKartPeach229Wheel2 + type: texture + offset: 0x4FFB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_229_tlut_wheel_2 +peach_kart_frame229_wheel3: + symbol: gKartPeach229Wheel3 + type: texture + offset: 0x4FFB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_229_tlut_wheel_3 +peach_kart_frame230_wheel0: + symbol: gKartPeach230Wheel0 + type: texture + offset: 0x504D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_230_tlut_wheel_0 +peach_kart_frame230_wheel1: + symbol: gKartPeach230Wheel1 + type: texture + offset: 0x504D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_230_tlut_wheel_1 +peach_kart_frame230_wheel2: + symbol: gKartPeach230Wheel2 + type: texture + offset: 0x504D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_230_tlut_wheel_2 +peach_kart_frame230_wheel3: + symbol: gKartPeach230Wheel3 + type: texture + offset: 0x504D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_230_tlut_wheel_3 +peach_kart_frame231_wheel0: + symbol: gKartPeach231Wheel0 + type: texture + offset: 0x50A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_231_tlut_wheel_0 +peach_kart_frame231_wheel1: + symbol: gKartPeach231Wheel1 + type: texture + offset: 0x50A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_231_tlut_wheel_1 +peach_kart_frame231_wheel2: + symbol: gKartPeach231Wheel2 + type: texture + offset: 0x50A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_231_tlut_wheel_2 +peach_kart_frame231_wheel3: + symbol: gKartPeach231Wheel3 + type: texture + offset: 0x50A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_231_tlut_wheel_3 +peach_kart_frame232_wheel0: + symbol: gKartPeach232Wheel0 + type: texture + offset: 0x50F9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_232_tlut_wheel_0 +peach_kart_frame232_wheel1: + symbol: gKartPeach232Wheel1 + type: texture + offset: 0x50F9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_232_tlut_wheel_1 +peach_kart_frame232_wheel2: + symbol: gKartPeach232Wheel2 + type: texture + offset: 0x50F9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_232_tlut_wheel_2 +peach_kart_frame232_wheel3: + symbol: gKartPeach232Wheel3 + type: texture + offset: 0x50F9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_232_tlut_wheel_3 +peach_kart_frame233_wheel0: + symbol: gKartPeach233Wheel0 + type: texture + offset: 0x5152C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_233_tlut_wheel_0 +peach_kart_frame233_wheel1: + symbol: gKartPeach233Wheel1 + type: texture + offset: 0x5152C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_233_tlut_wheel_1 +peach_kart_frame233_wheel2: + symbol: gKartPeach233Wheel2 + type: texture + offset: 0x5152C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_233_tlut_wheel_2 +peach_kart_frame233_wheel3: + symbol: gKartPeach233Wheel3 + type: texture + offset: 0x5152C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_233_tlut_wheel_3 +peach_kart_frame234_wheel0: + symbol: gKartPeach234Wheel0 + type: texture + offset: 0x51AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_234_tlut_wheel_0 +peach_kart_frame234_wheel1: + symbol: gKartPeach234Wheel1 + type: texture + offset: 0x51AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_234_tlut_wheel_1 +peach_kart_frame234_wheel2: + symbol: gKartPeach234Wheel2 + type: texture + offset: 0x51AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_234_tlut_wheel_2 +peach_kart_frame234_wheel3: + symbol: gKartPeach234Wheel3 + type: texture + offset: 0x51AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_234_tlut_wheel_3 +peach_kart_frame235_wheel0: + symbol: gKartPeach235Wheel0 + type: texture + offset: 0x520A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_235_tlut_wheel_0 +peach_kart_frame235_wheel1: + symbol: gKartPeach235Wheel1 + type: texture + offset: 0x520A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_235_tlut_wheel_1 +peach_kart_frame235_wheel2: + symbol: gKartPeach235Wheel2 + type: texture + offset: 0x520A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_235_tlut_wheel_2 +peach_kart_frame235_wheel3: + symbol: gKartPeach235Wheel3 + type: texture + offset: 0x520A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_235_tlut_wheel_3 +peach_kart_frame236_wheel0: + symbol: gKartPeach236Wheel0 + type: texture + offset: 0x52668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_236_tlut_wheel_0 +peach_kart_frame236_wheel1: + symbol: gKartPeach236Wheel1 + type: texture + offset: 0x52668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_236_tlut_wheel_1 +peach_kart_frame236_wheel2: + symbol: gKartPeach236Wheel2 + type: texture + offset: 0x52668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_236_tlut_wheel_2 +peach_kart_frame236_wheel3: + symbol: gKartPeach236Wheel3 + type: texture + offset: 0x52668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_236_tlut_wheel_3 +peach_kart_frame237_wheel0: + symbol: gKartPeach237Wheel0 + type: texture + offset: 0x52C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_237_tlut_wheel_0 +peach_kart_frame237_wheel1: + symbol: gKartPeach237Wheel1 + type: texture + offset: 0x52C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_237_tlut_wheel_1 +peach_kart_frame237_wheel2: + symbol: gKartPeach237Wheel2 + type: texture + offset: 0x52C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_237_tlut_wheel_2 +peach_kart_frame237_wheel3: + symbol: gKartPeach237Wheel3 + type: texture + offset: 0x52C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_237_tlut_wheel_3 +peach_kart_frame238_wheel0: + symbol: gKartPeach238Wheel0 + type: texture + offset: 0x53214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_238_tlut_wheel_0 +peach_kart_frame238_wheel1: + symbol: gKartPeach238Wheel1 + type: texture + offset: 0x53214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_238_tlut_wheel_1 +peach_kart_frame238_wheel2: + symbol: gKartPeach238Wheel2 + type: texture + offset: 0x53214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_238_tlut_wheel_2 +peach_kart_frame238_wheel3: + symbol: gKartPeach238Wheel3 + type: texture + offset: 0x53214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_238_tlut_wheel_3 +peach_kart_frame239_wheel0: + symbol: gKartPeach239Wheel0 + type: texture + offset: 0x53800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_239_tlut_wheel_0 +peach_kart_frame239_wheel1: + symbol: gKartPeach239Wheel1 + type: texture + offset: 0x53800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_239_tlut_wheel_1 +peach_kart_frame239_wheel2: + symbol: gKartPeach239Wheel2 + type: texture + offset: 0x53800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_239_tlut_wheel_2 +peach_kart_frame239_wheel3: + symbol: gKartPeach239Wheel3 + type: texture + offset: 0x53800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_239_tlut_wheel_3 +peach_kart_frame240_wheel0: + symbol: gKartPeach240Wheel0 + type: texture + offset: 0x53DF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_240_tlut_wheel_0 +peach_kart_frame240_wheel1: + symbol: gKartPeach240Wheel1 + type: texture + offset: 0x53DF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_240_tlut_wheel_1 +peach_kart_frame240_wheel2: + symbol: gKartPeach240Wheel2 + type: texture + offset: 0x53DF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_240_tlut_wheel_2 +peach_kart_frame240_wheel3: + symbol: gKartPeach240Wheel3 + type: texture + offset: 0x53DF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_240_tlut_wheel_3 +peach_kart_frame241_wheel0: + symbol: gKartPeach241Wheel0 + type: texture + offset: 0x543E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_241_tlut_wheel_0 +peach_kart_frame241_wheel1: + symbol: gKartPeach241Wheel1 + type: texture + offset: 0x543E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_241_tlut_wheel_1 +peach_kart_frame241_wheel2: + symbol: gKartPeach241Wheel2 + type: texture + offset: 0x543E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_241_tlut_wheel_2 +peach_kart_frame241_wheel3: + symbol: gKartPeach241Wheel3 + type: texture + offset: 0x543E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_241_tlut_wheel_3 +peach_kart_frame242_wheel0: + symbol: gKartPeach242Wheel0 + type: texture + offset: 0x549C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_242_tlut_wheel_0 +peach_kart_frame242_wheel1: + symbol: gKartPeach242Wheel1 + type: texture + offset: 0x549C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_242_tlut_wheel_1 +peach_kart_frame242_wheel2: + symbol: gKartPeach242Wheel2 + type: texture + offset: 0x549C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_242_tlut_wheel_2 +peach_kart_frame242_wheel3: + symbol: gKartPeach242Wheel3 + type: texture + offset: 0x549C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_242_tlut_wheel_3 +peach_kart_frame243_wheel0: + symbol: gKartPeach243Wheel0 + type: texture + offset: 0x54F90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_243_tlut_wheel_0 +peach_kart_frame243_wheel1: + symbol: gKartPeach243Wheel1 + type: texture + offset: 0x54F90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_243_tlut_wheel_1 +peach_kart_frame243_wheel2: + symbol: gKartPeach243Wheel2 + type: texture + offset: 0x54F90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_243_tlut_wheel_2 +peach_kart_frame243_wheel3: + symbol: gKartPeach243Wheel3 + type: texture + offset: 0x54F90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_243_tlut_wheel_3 +peach_kart_frame244_wheel0: + symbol: gKartPeach244Wheel0 + type: texture + offset: 0x55548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_244_tlut_wheel_0 +peach_kart_frame244_wheel1: + symbol: gKartPeach244Wheel1 + type: texture + offset: 0x55548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_244_tlut_wheel_1 +peach_kart_frame244_wheel2: + symbol: gKartPeach244Wheel2 + type: texture + offset: 0x55548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_244_tlut_wheel_2 +peach_kart_frame244_wheel3: + symbol: gKartPeach244Wheel3 + type: texture + offset: 0x55548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_244_tlut_wheel_3 +peach_kart_frame245_wheel0: + symbol: gKartPeach245Wheel0 + type: texture + offset: 0x55B18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_245_tlut_wheel_0 +peach_kart_frame245_wheel1: + symbol: gKartPeach245Wheel1 + type: texture + offset: 0x55B18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_245_tlut_wheel_1 +peach_kart_frame245_wheel2: + symbol: gKartPeach245Wheel2 + type: texture + offset: 0x55B18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_245_tlut_wheel_2 +peach_kart_frame245_wheel3: + symbol: gKartPeach245Wheel3 + type: texture + offset: 0x55B18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_245_tlut_wheel_3 +peach_kart_frame246_wheel0: + symbol: gKartPeach246Wheel0 + type: texture + offset: 0x560D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_246_tlut_wheel_0 +peach_kart_frame246_wheel1: + symbol: gKartPeach246Wheel1 + type: texture + offset: 0x560D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_246_tlut_wheel_1 +peach_kart_frame246_wheel2: + symbol: gKartPeach246Wheel2 + type: texture + offset: 0x560D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_246_tlut_wheel_2 +peach_kart_frame246_wheel3: + symbol: gKartPeach246Wheel3 + type: texture + offset: 0x560D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_246_tlut_wheel_3 +peach_kart_frame247_wheel0: + symbol: gKartPeach247Wheel0 + type: texture + offset: 0x56670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_247_tlut_wheel_0 +peach_kart_frame247_wheel1: + symbol: gKartPeach247Wheel1 + type: texture + offset: 0x56670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_247_tlut_wheel_1 +peach_kart_frame247_wheel2: + symbol: gKartPeach247Wheel2 + type: texture + offset: 0x56670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_247_tlut_wheel_2 +peach_kart_frame247_wheel3: + symbol: gKartPeach247Wheel3 + type: texture + offset: 0x56670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_247_tlut_wheel_3 +peach_kart_frame248_wheel0: + symbol: gKartPeach248Wheel0 + type: texture + offset: 0x56BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_248_tlut_wheel_0 +peach_kart_frame248_wheel1: + symbol: gKartPeach248Wheel1 + type: texture + offset: 0x56BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_248_tlut_wheel_1 +peach_kart_frame248_wheel2: + symbol: gKartPeach248Wheel2 + type: texture + offset: 0x56BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_248_tlut_wheel_2 +peach_kart_frame248_wheel3: + symbol: gKartPeach248Wheel3 + type: texture + offset: 0x56BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_248_tlut_wheel_3 +peach_kart_frame249_wheel0: + symbol: gKartPeach249Wheel0 + type: texture + offset: 0x57138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_249_tlut_wheel_0 +peach_kart_frame249_wheel1: + symbol: gKartPeach249Wheel1 + type: texture + offset: 0x57138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_249_tlut_wheel_1 +peach_kart_frame249_wheel2: + symbol: gKartPeach249Wheel2 + type: texture + offset: 0x57138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_249_tlut_wheel_2 +peach_kart_frame249_wheel3: + symbol: gKartPeach249Wheel3 + type: texture + offset: 0x57138 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_249_tlut_wheel_3 +peach_kart_frame250_wheel0: + symbol: gKartPeach250Wheel0 + type: texture + offset: 0x57658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_250_tlut_wheel_0 +peach_kart_frame250_wheel1: + symbol: gKartPeach250Wheel1 + type: texture + offset: 0x57658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_250_tlut_wheel_1 +peach_kart_frame250_wheel2: + symbol: gKartPeach250Wheel2 + type: texture + offset: 0x57658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_250_tlut_wheel_2 +peach_kart_frame250_wheel3: + symbol: gKartPeach250Wheel3 + type: texture + offset: 0x57658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_250_tlut_wheel_3 +peach_kart_frame251_wheel0: + symbol: gKartPeach251Wheel0 + type: texture + offset: 0x57BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_251_tlut_wheel_0 +peach_kart_frame251_wheel1: + symbol: gKartPeach251Wheel1 + type: texture + offset: 0x57BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_251_tlut_wheel_1 +peach_kart_frame251_wheel2: + symbol: gKartPeach251Wheel2 + type: texture + offset: 0x57BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_251_tlut_wheel_2 +peach_kart_frame251_wheel3: + symbol: gKartPeach251Wheel3 + type: texture + offset: 0x57BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_251_tlut_wheel_3 +peach_kart_frame252_wheel0: + symbol: gKartPeach252Wheel0 + type: texture + offset: 0x58118 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_252_tlut_wheel_0 +peach_kart_frame252_wheel1: + symbol: gKartPeach252Wheel1 + type: texture + offset: 0x58118 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_252_tlut_wheel_1 +peach_kart_frame252_wheel2: + symbol: gKartPeach252Wheel2 + type: texture + offset: 0x58118 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_252_tlut_wheel_2 +peach_kart_frame252_wheel3: + symbol: gKartPeach252Wheel3 + type: texture + offset: 0x58118 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_252_tlut_wheel_3 +peach_kart_frame253_wheel0: + symbol: gKartPeach253Wheel0 + type: texture + offset: 0x586AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_253_tlut_wheel_0 +peach_kart_frame253_wheel1: + symbol: gKartPeach253Wheel1 + type: texture + offset: 0x586AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_253_tlut_wheel_1 +peach_kart_frame253_wheel2: + symbol: gKartPeach253Wheel2 + type: texture + offset: 0x586AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_253_tlut_wheel_2 +peach_kart_frame253_wheel3: + symbol: gKartPeach253Wheel3 + type: texture + offset: 0x586AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_253_tlut_wheel_3 +peach_kart_frame254_wheel0: + symbol: gKartPeach254Wheel0 + type: texture + offset: 0x58C60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_254_tlut_wheel_0 +peach_kart_frame254_wheel1: + symbol: gKartPeach254Wheel1 + type: texture + offset: 0x58C60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_254_tlut_wheel_1 +peach_kart_frame254_wheel2: + symbol: gKartPeach254Wheel2 + type: texture + offset: 0x58C60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_254_tlut_wheel_2 +peach_kart_frame254_wheel3: + symbol: gKartPeach254Wheel3 + type: texture + offset: 0x58C60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_254_tlut_wheel_3 +peach_kart_frame255_wheel0: + symbol: gKartPeach255Wheel0 + type: texture + offset: 0x59220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_255_tlut_wheel_0 +peach_kart_frame255_wheel1: + symbol: gKartPeach255Wheel1 + type: texture + offset: 0x59220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_255_tlut_wheel_1 +peach_kart_frame255_wheel2: + symbol: gKartPeach255Wheel2 + type: texture + offset: 0x59220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_255_tlut_wheel_2 +peach_kart_frame255_wheel3: + symbol: gKartPeach255Wheel3 + type: texture + offset: 0x59220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_255_tlut_wheel_3 +peach_kart_frame256_wheel0: + symbol: gKartPeach256Wheel0 + type: texture + offset: 0x597EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_256_tlut_wheel_0 +peach_kart_frame256_wheel1: + symbol: gKartPeach256Wheel1 + type: texture + offset: 0x597EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_256_tlut_wheel_1 +peach_kart_frame256_wheel2: + symbol: gKartPeach256Wheel2 + type: texture + offset: 0x597EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_256_tlut_wheel_2 +peach_kart_frame256_wheel3: + symbol: gKartPeach256Wheel3 + type: texture + offset: 0x597EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_256_tlut_wheel_3 +peach_kart_frame257_wheel0: + symbol: gKartPeach257Wheel0 + type: texture + offset: 0x59DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_257_tlut_wheel_0 +peach_kart_frame257_wheel1: + symbol: gKartPeach257Wheel1 + type: texture + offset: 0x59DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_257_tlut_wheel_1 +peach_kart_frame257_wheel2: + symbol: gKartPeach257Wheel2 + type: texture + offset: 0x59DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_257_tlut_wheel_2 +peach_kart_frame257_wheel3: + symbol: gKartPeach257Wheel3 + type: texture + offset: 0x59DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_257_tlut_wheel_3 +peach_kart_frame258_wheel0: + symbol: gKartPeach258Wheel0 + type: texture + offset: 0x5A3D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_258_tlut_wheel_0 +peach_kart_frame258_wheel1: + symbol: gKartPeach258Wheel1 + type: texture + offset: 0x5A3D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_258_tlut_wheel_1 +peach_kart_frame258_wheel2: + symbol: gKartPeach258Wheel2 + type: texture + offset: 0x5A3D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_258_tlut_wheel_2 +peach_kart_frame258_wheel3: + symbol: gKartPeach258Wheel3 + type: texture + offset: 0x5A3D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_258_tlut_wheel_3 +peach_kart_frame259_wheel0: + symbol: gKartPeach259Wheel0 + type: texture + offset: 0x5A9CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_259_tlut_wheel_0 +peach_kart_frame259_wheel1: + symbol: gKartPeach259Wheel1 + type: texture + offset: 0x5A9CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_259_tlut_wheel_1 +peach_kart_frame259_wheel2: + symbol: gKartPeach259Wheel2 + type: texture + offset: 0x5A9CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_259_tlut_wheel_2 +peach_kart_frame259_wheel3: + symbol: gKartPeach259Wheel3 + type: texture + offset: 0x5A9CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_259_tlut_wheel_3 +peach_kart_frame260_wheel0: + symbol: gKartPeach260Wheel0 + type: texture + offset: 0x5AFB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_260_tlut_wheel_0 +peach_kart_frame260_wheel1: + symbol: gKartPeach260Wheel1 + type: texture + offset: 0x5AFB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_260_tlut_wheel_1 +peach_kart_frame260_wheel2: + symbol: gKartPeach260Wheel2 + type: texture + offset: 0x5AFB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_260_tlut_wheel_2 +peach_kart_frame260_wheel3: + symbol: gKartPeach260Wheel3 + type: texture + offset: 0x5AFB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_260_tlut_wheel_3 +peach_kart_frame261_wheel0: + symbol: gKartPeach261Wheel0 + type: texture + offset: 0x5B5A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_261_tlut_wheel_0 +peach_kart_frame261_wheel1: + symbol: gKartPeach261Wheel1 + type: texture + offset: 0x5B5A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_261_tlut_wheel_1 +peach_kart_frame261_wheel2: + symbol: gKartPeach261Wheel2 + type: texture + offset: 0x5B5A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_261_tlut_wheel_2 +peach_kart_frame261_wheel3: + symbol: gKartPeach261Wheel3 + type: texture + offset: 0x5B5A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_261_tlut_wheel_3 +peach_kart_frame262_wheel0: + symbol: gKartPeach262Wheel0 + type: texture + offset: 0x5BB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_262_tlut_wheel_0 +peach_kart_frame262_wheel1: + symbol: gKartPeach262Wheel1 + type: texture + offset: 0x5BB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_262_tlut_wheel_1 +peach_kart_frame262_wheel2: + symbol: gKartPeach262Wheel2 + type: texture + offset: 0x5BB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_262_tlut_wheel_2 +peach_kart_frame262_wheel3: + symbol: gKartPeach262Wheel3 + type: texture + offset: 0x5BB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_262_tlut_wheel_3 +peach_kart_frame263_wheel0: + symbol: gKartPeach263Wheel0 + type: texture + offset: 0x5C110 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_263_tlut_wheel_0 +peach_kart_frame263_wheel1: + symbol: gKartPeach263Wheel1 + type: texture + offset: 0x5C110 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_263_tlut_wheel_1 +peach_kart_frame263_wheel2: + symbol: gKartPeach263Wheel2 + type: texture + offset: 0x5C110 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_263_tlut_wheel_2 +peach_kart_frame263_wheel3: + symbol: gKartPeach263Wheel3 + type: texture + offset: 0x5C110 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_263_tlut_wheel_3 +peach_kart_frame264_wheel0: + symbol: gKartPeach264Wheel0 + type: texture + offset: 0x5C698 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_264_tlut_wheel_0 +peach_kart_frame264_wheel1: + symbol: gKartPeach264Wheel1 + type: texture + offset: 0x5C698 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_264_tlut_wheel_1 +peach_kart_frame264_wheel2: + symbol: gKartPeach264Wheel2 + type: texture + offset: 0x5C698 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_264_tlut_wheel_2 +peach_kart_frame264_wheel3: + symbol: gKartPeach264Wheel3 + type: texture + offset: 0x5C698 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_264_tlut_wheel_3 +peach_kart_frame265_wheel0: + symbol: gKartPeach265Wheel0 + type: texture + offset: 0x5CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_265_tlut_wheel_0 +peach_kart_frame265_wheel1: + symbol: gKartPeach265Wheel1 + type: texture + offset: 0x5CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_265_tlut_wheel_1 +peach_kart_frame265_wheel2: + symbol: gKartPeach265Wheel2 + type: texture + offset: 0x5CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_265_tlut_wheel_2 +peach_kart_frame265_wheel3: + symbol: gKartPeach265Wheel3 + type: texture + offset: 0x5CC3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_265_tlut_wheel_3 +peach_kart_frame266_wheel0: + symbol: gKartPeach266Wheel0 + type: texture + offset: 0x5D1C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_266_tlut_wheel_0 +peach_kart_frame266_wheel1: + symbol: gKartPeach266Wheel1 + type: texture + offset: 0x5D1C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_266_tlut_wheel_1 +peach_kart_frame266_wheel2: + symbol: gKartPeach266Wheel2 + type: texture + offset: 0x5D1C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_266_tlut_wheel_2 +peach_kart_frame266_wheel3: + symbol: gKartPeach266Wheel3 + type: texture + offset: 0x5D1C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_266_tlut_wheel_3 +peach_kart_frame267_wheel0: + symbol: gKartPeach267Wheel0 + type: texture + offset: 0x5D718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_267_tlut_wheel_0 +peach_kart_frame267_wheel1: + symbol: gKartPeach267Wheel1 + type: texture + offset: 0x5D718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_267_tlut_wheel_1 +peach_kart_frame267_wheel2: + symbol: gKartPeach267Wheel2 + type: texture + offset: 0x5D718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_267_tlut_wheel_2 +peach_kart_frame267_wheel3: + symbol: gKartPeach267Wheel3 + type: texture + offset: 0x5D718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_267_tlut_wheel_3 +peach_kart_frame268_wheel0: + symbol: gKartPeach268Wheel0 + type: texture + offset: 0x5DC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_268_tlut_wheel_0 +peach_kart_frame268_wheel1: + symbol: gKartPeach268Wheel1 + type: texture + offset: 0x5DC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_268_tlut_wheel_1 +peach_kart_frame268_wheel2: + symbol: gKartPeach268Wheel2 + type: texture + offset: 0x5DC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_268_tlut_wheel_2 +peach_kart_frame268_wheel3: + symbol: gKartPeach268Wheel3 + type: texture + offset: 0x5DC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_268_tlut_wheel_3 +peach_kart_frame269_wheel0: + symbol: gKartPeach269Wheel0 + type: texture + offset: 0x5E178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_269_tlut_wheel_0 +peach_kart_frame269_wheel1: + symbol: gKartPeach269Wheel1 + type: texture + offset: 0x5E178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_269_tlut_wheel_1 +peach_kart_frame269_wheel2: + symbol: gKartPeach269Wheel2 + type: texture + offset: 0x5E178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_269_tlut_wheel_2 +peach_kart_frame269_wheel3: + symbol: gKartPeach269Wheel3 + type: texture + offset: 0x5E178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_269_tlut_wheel_3 +peach_kart_frame270_wheel0: + symbol: gKartPeach270Wheel0 + type: texture + offset: 0x5E6A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_270_tlut_wheel_0 +peach_kart_frame270_wheel1: + symbol: gKartPeach270Wheel1 + type: texture + offset: 0x5E6A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_270_tlut_wheel_1 +peach_kart_frame270_wheel2: + symbol: gKartPeach270Wheel2 + type: texture + offset: 0x5E6A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_270_tlut_wheel_2 +peach_kart_frame270_wheel3: + symbol: gKartPeach270Wheel3 + type: texture + offset: 0x5E6A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_270_tlut_wheel_3 +peach_kart_frame271_wheel0: + symbol: gKartPeach271Wheel0 + type: texture + offset: 0x5EC04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_271_tlut_wheel_0 +peach_kart_frame271_wheel1: + symbol: gKartPeach271Wheel1 + type: texture + offset: 0x5EC04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_271_tlut_wheel_1 +peach_kart_frame271_wheel2: + symbol: gKartPeach271Wheel2 + type: texture + offset: 0x5EC04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_271_tlut_wheel_2 +peach_kart_frame271_wheel3: + symbol: gKartPeach271Wheel3 + type: texture + offset: 0x5EC04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_271_tlut_wheel_3 +peach_kart_frame272_wheel0: + symbol: gKartPeach272Wheel0 + type: texture + offset: 0x5F190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_272_tlut_wheel_0 +peach_kart_frame272_wheel1: + symbol: gKartPeach272Wheel1 + type: texture + offset: 0x5F190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_272_tlut_wheel_1 +peach_kart_frame272_wheel2: + symbol: gKartPeach272Wheel2 + type: texture + offset: 0x5F190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_272_tlut_wheel_2 +peach_kart_frame272_wheel3: + symbol: gKartPeach272Wheel3 + type: texture + offset: 0x5F190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_272_tlut_wheel_3 +peach_kart_frame273_wheel0: + symbol: gKartPeach273Wheel0 + type: texture + offset: 0x5F72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_273_tlut_wheel_0 +peach_kart_frame273_wheel1: + symbol: gKartPeach273Wheel1 + type: texture + offset: 0x5F72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_273_tlut_wheel_1 +peach_kart_frame273_wheel2: + symbol: gKartPeach273Wheel2 + type: texture + offset: 0x5F72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_273_tlut_wheel_2 +peach_kart_frame273_wheel3: + symbol: gKartPeach273Wheel3 + type: texture + offset: 0x5F72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_273_tlut_wheel_3 +peach_kart_frame274_wheel0: + symbol: gKartPeach274Wheel0 + type: texture + offset: 0x5FCD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_274_tlut_wheel_0 +peach_kart_frame274_wheel1: + symbol: gKartPeach274Wheel1 + type: texture + offset: 0x5FCD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_274_tlut_wheel_1 +peach_kart_frame274_wheel2: + symbol: gKartPeach274Wheel2 + type: texture + offset: 0x5FCD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_274_tlut_wheel_2 +peach_kart_frame274_wheel3: + symbol: gKartPeach274Wheel3 + type: texture + offset: 0x5FCD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_274_tlut_wheel_3 +peach_kart_frame275_wheel0: + symbol: gKartPeach275Wheel0 + type: texture + offset: 0x602A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_275_tlut_wheel_0 +peach_kart_frame275_wheel1: + symbol: gKartPeach275Wheel1 + type: texture + offset: 0x602A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_275_tlut_wheel_1 +peach_kart_frame275_wheel2: + symbol: gKartPeach275Wheel2 + type: texture + offset: 0x602A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_275_tlut_wheel_2 +peach_kart_frame275_wheel3: + symbol: gKartPeach275Wheel3 + type: texture + offset: 0x602A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_275_tlut_wheel_3 +peach_kart_frame276_wheel0: + symbol: gKartPeach276Wheel0 + type: texture + offset: 0x60884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_276_tlut_wheel_0 +peach_kart_frame276_wheel1: + symbol: gKartPeach276Wheel1 + type: texture + offset: 0x60884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_276_tlut_wheel_1 +peach_kart_frame276_wheel2: + symbol: gKartPeach276Wheel2 + type: texture + offset: 0x60884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_276_tlut_wheel_2 +peach_kart_frame276_wheel3: + symbol: gKartPeach276Wheel3 + type: texture + offset: 0x60884 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_276_tlut_wheel_3 +peach_kart_frame277_wheel0: + symbol: gKartPeach277Wheel0 + type: texture + offset: 0x60E5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_277_tlut_wheel_0 +peach_kart_frame277_wheel1: + symbol: gKartPeach277Wheel1 + type: texture + offset: 0x60E5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_277_tlut_wheel_1 +peach_kart_frame277_wheel2: + symbol: gKartPeach277Wheel2 + type: texture + offset: 0x60E5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_277_tlut_wheel_2 +peach_kart_frame277_wheel3: + symbol: gKartPeach277Wheel3 + type: texture + offset: 0x60E5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_277_tlut_wheel_3 +peach_kart_frame278_wheel0: + symbol: gKartPeach278Wheel0 + type: texture + offset: 0x61450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_278_tlut_wheel_0 +peach_kart_frame278_wheel1: + symbol: gKartPeach278Wheel1 + type: texture + offset: 0x61450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_278_tlut_wheel_1 +peach_kart_frame278_wheel2: + symbol: gKartPeach278Wheel2 + type: texture + offset: 0x61450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_278_tlut_wheel_2 +peach_kart_frame278_wheel3: + symbol: gKartPeach278Wheel3 + type: texture + offset: 0x61450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_278_tlut_wheel_3 +peach_kart_frame279_wheel0: + symbol: gKartPeach279Wheel0 + type: texture + offset: 0x61A30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_279_tlut_wheel_0 +peach_kart_frame279_wheel1: + symbol: gKartPeach279Wheel1 + type: texture + offset: 0x61A30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_279_tlut_wheel_1 +peach_kart_frame279_wheel2: + symbol: gKartPeach279Wheel2 + type: texture + offset: 0x61A30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_279_tlut_wheel_2 +peach_kart_frame279_wheel3: + symbol: gKartPeach279Wheel3 + type: texture + offset: 0x61A30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_279_tlut_wheel_3 +peach_kart_frame280_wheel0: + symbol: gKartPeach280Wheel0 + type: texture + offset: 0x62020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_280_tlut_wheel_0 +peach_kart_frame280_wheel1: + symbol: gKartPeach280Wheel1 + type: texture + offset: 0x62020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_280_tlut_wheel_1 +peach_kart_frame280_wheel2: + symbol: gKartPeach280Wheel2 + type: texture + offset: 0x62020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_280_tlut_wheel_2 +peach_kart_frame280_wheel3: + symbol: gKartPeach280Wheel3 + type: texture + offset: 0x62020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_280_tlut_wheel_3 +peach_kart_frame281_wheel0: + symbol: gKartPeach281Wheel0 + type: texture + offset: 0x625D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_281_tlut_wheel_0 +peach_kart_frame281_wheel1: + symbol: gKartPeach281Wheel1 + type: texture + offset: 0x625D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_281_tlut_wheel_1 +peach_kart_frame281_wheel2: + symbol: gKartPeach281Wheel2 + type: texture + offset: 0x625D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_281_tlut_wheel_2 +peach_kart_frame281_wheel3: + symbol: gKartPeach281Wheel3 + type: texture + offset: 0x625D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_281_tlut_wheel_3 +peach_kart_frame282_wheel0: + symbol: gKartPeach282Wheel0 + type: texture + offset: 0x62B6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_282_tlut_wheel_0 +peach_kart_frame282_wheel1: + symbol: gKartPeach282Wheel1 + type: texture + offset: 0x62B6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_282_tlut_wheel_1 +peach_kart_frame282_wheel2: + symbol: gKartPeach282Wheel2 + type: texture + offset: 0x62B6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_282_tlut_wheel_2 +peach_kart_frame282_wheel3: + symbol: gKartPeach282Wheel3 + type: texture + offset: 0x62B6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_282_tlut_wheel_3 +peach_kart_frame283_wheel0: + symbol: gKartPeach283Wheel0 + type: texture + offset: 0x63100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_283_tlut_wheel_0 +peach_kart_frame283_wheel1: + symbol: gKartPeach283Wheel1 + type: texture + offset: 0x63100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_283_tlut_wheel_1 +peach_kart_frame283_wheel2: + symbol: gKartPeach283Wheel2 + type: texture + offset: 0x63100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_283_tlut_wheel_2 +peach_kart_frame283_wheel3: + symbol: gKartPeach283Wheel3 + type: texture + offset: 0x63100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_283_tlut_wheel_3 +peach_kart_frame284_wheel0: + symbol: gKartPeach284Wheel0 + type: texture + offset: 0x63694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_284_tlut_wheel_0 +peach_kart_frame284_wheel1: + symbol: gKartPeach284Wheel1 + type: texture + offset: 0x63694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_284_tlut_wheel_1 +peach_kart_frame284_wheel2: + symbol: gKartPeach284Wheel2 + type: texture + offset: 0x63694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_284_tlut_wheel_2 +peach_kart_frame284_wheel3: + symbol: gKartPeach284Wheel3 + type: texture + offset: 0x63694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_284_tlut_wheel_3 +peach_kart_frame285_wheel0: + symbol: gKartPeach285Wheel0 + type: texture + offset: 0x63C00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_285_tlut_wheel_0 +peach_kart_frame285_wheel1: + symbol: gKartPeach285Wheel1 + type: texture + offset: 0x63C00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_285_tlut_wheel_1 +peach_kart_frame285_wheel2: + symbol: gKartPeach285Wheel2 + type: texture + offset: 0x63C00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_285_tlut_wheel_2 +peach_kart_frame285_wheel3: + symbol: gKartPeach285Wheel3 + type: texture + offset: 0x63C00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_285_tlut_wheel_3 +peach_kart_frame286_wheel0: + symbol: gKartPeach286Wheel0 + type: texture + offset: 0x64144 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_286_tlut_wheel_0 +peach_kart_frame286_wheel1: + symbol: gKartPeach286Wheel1 + type: texture + offset: 0x64144 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_286_tlut_wheel_1 +peach_kart_frame286_wheel2: + symbol: gKartPeach286Wheel2 + type: texture + offset: 0x64144 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_286_tlut_wheel_2 +peach_kart_frame286_wheel3: + symbol: gKartPeach286Wheel3 + type: texture + offset: 0x64144 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_286_tlut_wheel_3 +peach_kart_frame287_wheel0: + symbol: gKartPeach287Wheel0 + type: texture + offset: 0x64668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_287_tlut_wheel_0 +peach_kart_frame287_wheel1: + symbol: gKartPeach287Wheel1 + type: texture + offset: 0x64668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_287_tlut_wheel_1 +peach_kart_frame287_wheel2: + symbol: gKartPeach287Wheel2 + type: texture + offset: 0x64668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_287_tlut_wheel_2 +peach_kart_frame287_wheel3: + symbol: gKartPeach287Wheel3 + type: texture + offset: 0x64668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_287_tlut_wheel_3 +peach_kart_frame288_wheel0: + symbol: gKartPeach288Wheel0 + type: texture + offset: 0x64B64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_288_tlut_wheel_0 +peach_kart_frame288_wheel1: + symbol: gKartPeach288Wheel1 + type: texture + offset: 0x64B64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_288_tlut_wheel_1 +peach_kart_frame288_wheel2: + symbol: gKartPeach288Wheel2 + type: texture + offset: 0x64B64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_288_tlut_wheel_2 +peach_kart_frame288_wheel3: + symbol: gKartPeach288Wheel3 + type: texture + offset: 0x64B64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_288_tlut_wheel_3 +peach_kart_frame289: + symbol: gKartPeach289 + type: texture + offset: 0x65040 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame290: + symbol: gKartPeach290 + type: texture + offset: 0x654D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame291: + symbol: gKartPeach291 + type: texture + offset: 0x659B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame292: + symbol: gKartPeach292 + type: texture + offset: 0x65F48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame293: + symbol: gKartPeach293 + type: texture + offset: 0x665AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame294: + symbol: gKartPeach294 + type: texture + offset: 0x66BE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame295: + symbol: gKartPeach295 + type: texture + offset: 0x67218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame296: + symbol: gKartPeach296 + type: texture + offset: 0x6777C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame297: + symbol: gKartPeach297 + type: texture + offset: 0x67C7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame298: + symbol: gKartPeach298 + type: texture + offset: 0x68150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame299: + symbol: gKartPeach299 + type: texture + offset: 0x686D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame300: + symbol: gKartPeach300 + type: texture + offset: 0x68C80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame301: + symbol: gKartPeach301 + type: texture + offset: 0x6922C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame302: + symbol: gKartPeach302 + type: texture + offset: 0x6979C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame303: + symbol: gKartPeach303 + type: texture + offset: 0x69CBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame304: + symbol: gKartPeach304 + type: texture + offset: 0x6A19C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame305: + symbol: gKartPeach305 + type: texture + offset: 0x6A694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame306: + symbol: gKartPeach306 + type: texture + offset: 0x6AB34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame307: + symbol: gKartPeach307 + type: texture + offset: 0x6B0D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame308: + symbol: gKartPeach308 + type: texture + offset: 0x6B72C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame309: + symbol: gKartPeach309 + type: texture + offset: 0x6BDB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame310: + symbol: gKartPeach310 + type: texture + offset: 0x6C3A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame311: + symbol: gKartPeach311 + type: texture + offset: 0x6C984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame312: + symbol: gKartPeach312 + type: texture + offset: 0x6CEC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame313: + symbol: gKartPeach313 + type: texture + offset: 0x6D388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame314: + symbol: gKartPeach314 + type: texture + offset: 0x6D85C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame315: + symbol: gKartPeach315 + type: texture + offset: 0x6DDC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame316: + symbol: gKartPeach316 + type: texture + offset: 0x6E38C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame317: + symbol: gKartPeach317 + type: texture + offset: 0x6E91C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame318: + symbol: gKartPeach318 + type: texture + offset: 0x6EEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame319: + symbol: gKartPeach319 + type: texture + offset: 0x6F400 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_frame320: + symbol: gKartPeach320 + type: texture + offset: 0x6F914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: peach_kart_palette + tlut_wheel: peach_kart_000_tlut_wheel_0 +peach_kart_000_tlut_wheel_0: + symbol: gKartPeach000TlutWheel0 + type: texture + offset: 0x6FDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_000_tlut_wheel_1: + symbol: gKartPeach000TlutWheel1 + type: texture + offset: 0x6FE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_000_tlut_wheel_2: + symbol: gKartPeach000TlutWheel2 + type: texture + offset: 0x6FEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_000_tlut_wheel_3: + symbol: gKartPeach000TlutWheel3 + type: texture + offset: 0x6FF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_001_tlut_wheel_0: + symbol: gKartPeach001TlutWheel0 + type: texture + offset: 0x6FFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_001_tlut_wheel_1: + symbol: gKartPeach001TlutWheel1 + type: texture + offset: 0x70068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_001_tlut_wheel_2: + symbol: gKartPeach001TlutWheel2 + type: texture + offset: 0x700E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_001_tlut_wheel_3: + symbol: gKartPeach001TlutWheel3 + type: texture + offset: 0x70168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_002_tlut_wheel_0: + symbol: gKartPeach002TlutWheel0 + type: texture + offset: 0x701E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_002_tlut_wheel_1: + symbol: gKartPeach002TlutWheel1 + type: texture + offset: 0x70268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_002_tlut_wheel_2: + symbol: gKartPeach002TlutWheel2 + type: texture + offset: 0x702E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_002_tlut_wheel_3: + symbol: gKartPeach002TlutWheel3 + type: texture + offset: 0x70368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_003_tlut_wheel_0: + symbol: gKartPeach003TlutWheel0 + type: texture + offset: 0x703E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_003_tlut_wheel_1: + symbol: gKartPeach003TlutWheel1 + type: texture + offset: 0x70468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_003_tlut_wheel_2: + symbol: gKartPeach003TlutWheel2 + type: texture + offset: 0x704E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_003_tlut_wheel_3: + symbol: gKartPeach003TlutWheel3 + type: texture + offset: 0x70568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_004_tlut_wheel_0: + symbol: gKartPeach004TlutWheel0 + type: texture + offset: 0x705E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_004_tlut_wheel_1: + symbol: gKartPeach004TlutWheel1 + type: texture + offset: 0x70668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_004_tlut_wheel_2: + symbol: gKartPeach004TlutWheel2 + type: texture + offset: 0x706E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_004_tlut_wheel_3: + symbol: gKartPeach004TlutWheel3 + type: texture + offset: 0x70768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_005_tlut_wheel_0: + symbol: gKartPeach005TlutWheel0 + type: texture + offset: 0x707E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_005_tlut_wheel_1: + symbol: gKartPeach005TlutWheel1 + type: texture + offset: 0x70868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_005_tlut_wheel_2: + symbol: gKartPeach005TlutWheel2 + type: texture + offset: 0x708E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_005_tlut_wheel_3: + symbol: gKartPeach005TlutWheel3 + type: texture + offset: 0x70968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_006_tlut_wheel_0: + symbol: gKartPeach006TlutWheel0 + type: texture + offset: 0x709E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_006_tlut_wheel_1: + symbol: gKartPeach006TlutWheel1 + type: texture + offset: 0x70A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_006_tlut_wheel_2: + symbol: gKartPeach006TlutWheel2 + type: texture + offset: 0x70AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_006_tlut_wheel_3: + symbol: gKartPeach006TlutWheel3 + type: texture + offset: 0x70B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_007_tlut_wheel_0: + symbol: gKartPeach007TlutWheel0 + type: texture + offset: 0x70BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_007_tlut_wheel_1: + symbol: gKartPeach007TlutWheel1 + type: texture + offset: 0x70C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_007_tlut_wheel_2: + symbol: gKartPeach007TlutWheel2 + type: texture + offset: 0x70CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_007_tlut_wheel_3: + symbol: gKartPeach007TlutWheel3 + type: texture + offset: 0x70D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_008_tlut_wheel_0: + symbol: gKartPeach008TlutWheel0 + type: texture + offset: 0x70DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_008_tlut_wheel_1: + symbol: gKartPeach008TlutWheel1 + type: texture + offset: 0x70E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_008_tlut_wheel_2: + symbol: gKartPeach008TlutWheel2 + type: texture + offset: 0x70EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_008_tlut_wheel_3: + symbol: gKartPeach008TlutWheel3 + type: texture + offset: 0x70F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_009_tlut_wheel_0: + symbol: gKartPeach009TlutWheel0 + type: texture + offset: 0x70FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_009_tlut_wheel_1: + symbol: gKartPeach009TlutWheel1 + type: texture + offset: 0x71068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_009_tlut_wheel_2: + symbol: gKartPeach009TlutWheel2 + type: texture + offset: 0x710E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_009_tlut_wheel_3: + symbol: gKartPeach009TlutWheel3 + type: texture + offset: 0x71168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_010_tlut_wheel_0: + symbol: gKartPeach010TlutWheel0 + type: texture + offset: 0x711E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_010_tlut_wheel_1: + symbol: gKartPeach010TlutWheel1 + type: texture + offset: 0x71268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_010_tlut_wheel_2: + symbol: gKartPeach010TlutWheel2 + type: texture + offset: 0x712E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_010_tlut_wheel_3: + symbol: gKartPeach010TlutWheel3 + type: texture + offset: 0x71368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_011_tlut_wheel_0: + symbol: gKartPeach011TlutWheel0 + type: texture + offset: 0x713E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_011_tlut_wheel_1: + symbol: gKartPeach011TlutWheel1 + type: texture + offset: 0x71468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_011_tlut_wheel_2: + symbol: gKartPeach011TlutWheel2 + type: texture + offset: 0x714E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_011_tlut_wheel_3: + symbol: gKartPeach011TlutWheel3 + type: texture + offset: 0x71568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_012_tlut_wheel_0: + symbol: gKartPeach012TlutWheel0 + type: texture + offset: 0x715E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_012_tlut_wheel_1: + symbol: gKartPeach012TlutWheel1 + type: texture + offset: 0x71668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_012_tlut_wheel_2: + symbol: gKartPeach012TlutWheel2 + type: texture + offset: 0x716E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_012_tlut_wheel_3: + symbol: gKartPeach012TlutWheel3 + type: texture + offset: 0x71768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_013_tlut_wheel_0: + symbol: gKartPeach013TlutWheel0 + type: texture + offset: 0x717E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_013_tlut_wheel_1: + symbol: gKartPeach013TlutWheel1 + type: texture + offset: 0x71868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_013_tlut_wheel_2: + symbol: gKartPeach013TlutWheel2 + type: texture + offset: 0x718E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_013_tlut_wheel_3: + symbol: gKartPeach013TlutWheel3 + type: texture + offset: 0x71968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_014_tlut_wheel_0: + symbol: gKartPeach014TlutWheel0 + type: texture + offset: 0x719E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_014_tlut_wheel_1: + symbol: gKartPeach014TlutWheel1 + type: texture + offset: 0x71A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_014_tlut_wheel_2: + symbol: gKartPeach014TlutWheel2 + type: texture + offset: 0x71AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_014_tlut_wheel_3: + symbol: gKartPeach014TlutWheel3 + type: texture + offset: 0x71B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_015_tlut_wheel_0: + symbol: gKartPeach015TlutWheel0 + type: texture + offset: 0x71BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_015_tlut_wheel_1: + symbol: gKartPeach015TlutWheel1 + type: texture + offset: 0x71C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_015_tlut_wheel_2: + symbol: gKartPeach015TlutWheel2 + type: texture + offset: 0x71CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_015_tlut_wheel_3: + symbol: gKartPeach015TlutWheel3 + type: texture + offset: 0x71D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_016_tlut_wheel_0: + symbol: gKartPeach016TlutWheel0 + type: texture + offset: 0x71DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_016_tlut_wheel_1: + symbol: gKartPeach016TlutWheel1 + type: texture + offset: 0x71E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_016_tlut_wheel_2: + symbol: gKartPeach016TlutWheel2 + type: texture + offset: 0x71EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_016_tlut_wheel_3: + symbol: gKartPeach016TlutWheel3 + type: texture + offset: 0x71F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_017_tlut_wheel_0: + symbol: gKartPeach017TlutWheel0 + type: texture + offset: 0x71FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_017_tlut_wheel_1: + symbol: gKartPeach017TlutWheel1 + type: texture + offset: 0x72068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_017_tlut_wheel_2: + symbol: gKartPeach017TlutWheel2 + type: texture + offset: 0x720E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_017_tlut_wheel_3: + symbol: gKartPeach017TlutWheel3 + type: texture + offset: 0x72168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_018_tlut_wheel_0: + symbol: gKartPeach018TlutWheel0 + type: texture + offset: 0x721E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_018_tlut_wheel_1: + symbol: gKartPeach018TlutWheel1 + type: texture + offset: 0x72268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_018_tlut_wheel_2: + symbol: gKartPeach018TlutWheel2 + type: texture + offset: 0x722E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_018_tlut_wheel_3: + symbol: gKartPeach018TlutWheel3 + type: texture + offset: 0x72368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_019_tlut_wheel_0: + symbol: gKartPeach019TlutWheel0 + type: texture + offset: 0x723E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_019_tlut_wheel_1: + symbol: gKartPeach019TlutWheel1 + type: texture + offset: 0x72468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_019_tlut_wheel_2: + symbol: gKartPeach019TlutWheel2 + type: texture + offset: 0x724E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_019_tlut_wheel_3: + symbol: gKartPeach019TlutWheel3 + type: texture + offset: 0x72568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_020_tlut_wheel_0: + symbol: gKartPeach020TlutWheel0 + type: texture + offset: 0x725E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_020_tlut_wheel_1: + symbol: gKartPeach020TlutWheel1 + type: texture + offset: 0x72668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_020_tlut_wheel_2: + symbol: gKartPeach020TlutWheel2 + type: texture + offset: 0x726E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_020_tlut_wheel_3: + symbol: gKartPeach020TlutWheel3 + type: texture + offset: 0x72768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_021_tlut_wheel_0: + symbol: gKartPeach021TlutWheel0 + type: texture + offset: 0x727E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_021_tlut_wheel_1: + symbol: gKartPeach021TlutWheel1 + type: texture + offset: 0x72868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_021_tlut_wheel_2: + symbol: gKartPeach021TlutWheel2 + type: texture + offset: 0x728E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_021_tlut_wheel_3: + symbol: gKartPeach021TlutWheel3 + type: texture + offset: 0x72968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_022_tlut_wheel_0: + symbol: gKartPeach022TlutWheel0 + type: texture + offset: 0x729E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_022_tlut_wheel_1: + symbol: gKartPeach022TlutWheel1 + type: texture + offset: 0x72A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_022_tlut_wheel_2: + symbol: gKartPeach022TlutWheel2 + type: texture + offset: 0x72AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_022_tlut_wheel_3: + symbol: gKartPeach022TlutWheel3 + type: texture + offset: 0x72B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_023_tlut_wheel_0: + symbol: gKartPeach023TlutWheel0 + type: texture + offset: 0x72BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_023_tlut_wheel_1: + symbol: gKartPeach023TlutWheel1 + type: texture + offset: 0x72C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_023_tlut_wheel_2: + symbol: gKartPeach023TlutWheel2 + type: texture + offset: 0x72CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_023_tlut_wheel_3: + symbol: gKartPeach023TlutWheel3 + type: texture + offset: 0x72D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_024_tlut_wheel_0: + symbol: gKartPeach024TlutWheel0 + type: texture + offset: 0x72DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_024_tlut_wheel_1: + symbol: gKartPeach024TlutWheel1 + type: texture + offset: 0x72E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_024_tlut_wheel_2: + symbol: gKartPeach024TlutWheel2 + type: texture + offset: 0x72EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_024_tlut_wheel_3: + symbol: gKartPeach024TlutWheel3 + type: texture + offset: 0x72F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_025_tlut_wheel_0: + symbol: gKartPeach025TlutWheel0 + type: texture + offset: 0x72FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_025_tlut_wheel_1: + symbol: gKartPeach025TlutWheel1 + type: texture + offset: 0x73068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_025_tlut_wheel_2: + symbol: gKartPeach025TlutWheel2 + type: texture + offset: 0x730E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_025_tlut_wheel_3: + symbol: gKartPeach025TlutWheel3 + type: texture + offset: 0x73168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_026_tlut_wheel_0: + symbol: gKartPeach026TlutWheel0 + type: texture + offset: 0x731E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_026_tlut_wheel_1: + symbol: gKartPeach026TlutWheel1 + type: texture + offset: 0x73268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_026_tlut_wheel_2: + symbol: gKartPeach026TlutWheel2 + type: texture + offset: 0x732E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_026_tlut_wheel_3: + symbol: gKartPeach026TlutWheel3 + type: texture + offset: 0x73368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_027_tlut_wheel_0: + symbol: gKartPeach027TlutWheel0 + type: texture + offset: 0x733E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_027_tlut_wheel_1: + symbol: gKartPeach027TlutWheel1 + type: texture + offset: 0x73468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_027_tlut_wheel_2: + symbol: gKartPeach027TlutWheel2 + type: texture + offset: 0x734E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_027_tlut_wheel_3: + symbol: gKartPeach027TlutWheel3 + type: texture + offset: 0x73568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_028_tlut_wheel_0: + symbol: gKartPeach028TlutWheel0 + type: texture + offset: 0x735E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_028_tlut_wheel_1: + symbol: gKartPeach028TlutWheel1 + type: texture + offset: 0x73668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_028_tlut_wheel_2: + symbol: gKartPeach028TlutWheel2 + type: texture + offset: 0x736E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_028_tlut_wheel_3: + symbol: gKartPeach028TlutWheel3 + type: texture + offset: 0x73768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_029_tlut_wheel_0: + symbol: gKartPeach029TlutWheel0 + type: texture + offset: 0x737E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_029_tlut_wheel_1: + symbol: gKartPeach029TlutWheel1 + type: texture + offset: 0x73868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_029_tlut_wheel_2: + symbol: gKartPeach029TlutWheel2 + type: texture + offset: 0x738E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_029_tlut_wheel_3: + symbol: gKartPeach029TlutWheel3 + type: texture + offset: 0x73968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_030_tlut_wheel_0: + symbol: gKartPeach030TlutWheel0 + type: texture + offset: 0x739E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_030_tlut_wheel_1: + symbol: gKartPeach030TlutWheel1 + type: texture + offset: 0x73A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_030_tlut_wheel_2: + symbol: gKartPeach030TlutWheel2 + type: texture + offset: 0x73AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_030_tlut_wheel_3: + symbol: gKartPeach030TlutWheel3 + type: texture + offset: 0x73B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_031_tlut_wheel_0: + symbol: gKartPeach031TlutWheel0 + type: texture + offset: 0x73BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_031_tlut_wheel_1: + symbol: gKartPeach031TlutWheel1 + type: texture + offset: 0x73C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_031_tlut_wheel_2: + symbol: gKartPeach031TlutWheel2 + type: texture + offset: 0x73CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_031_tlut_wheel_3: + symbol: gKartPeach031TlutWheel3 + type: texture + offset: 0x73D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_032_tlut_wheel_0: + symbol: gKartPeach032TlutWheel0 + type: texture + offset: 0x73DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_032_tlut_wheel_1: + symbol: gKartPeach032TlutWheel1 + type: texture + offset: 0x73E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_032_tlut_wheel_2: + symbol: gKartPeach032TlutWheel2 + type: texture + offset: 0x73EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_032_tlut_wheel_3: + symbol: gKartPeach032TlutWheel3 + type: texture + offset: 0x73F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_033_tlut_wheel_0: + symbol: gKartPeach033TlutWheel0 + type: texture + offset: 0x73FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_033_tlut_wheel_1: + symbol: gKartPeach033TlutWheel1 + type: texture + offset: 0x74068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_033_tlut_wheel_2: + symbol: gKartPeach033TlutWheel2 + type: texture + offset: 0x740E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_033_tlut_wheel_3: + symbol: gKartPeach033TlutWheel3 + type: texture + offset: 0x74168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_034_tlut_wheel_0: + symbol: gKartPeach034TlutWheel0 + type: texture + offset: 0x741E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_034_tlut_wheel_1: + symbol: gKartPeach034TlutWheel1 + type: texture + offset: 0x74268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_034_tlut_wheel_2: + symbol: gKartPeach034TlutWheel2 + type: texture + offset: 0x742E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_034_tlut_wheel_3: + symbol: gKartPeach034TlutWheel3 + type: texture + offset: 0x74368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_035_tlut_wheel_0: + symbol: gKartPeach035TlutWheel0 + type: texture + offset: 0x743E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_035_tlut_wheel_1: + symbol: gKartPeach035TlutWheel1 + type: texture + offset: 0x74468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_035_tlut_wheel_2: + symbol: gKartPeach035TlutWheel2 + type: texture + offset: 0x744E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_035_tlut_wheel_3: + symbol: gKartPeach035TlutWheel3 + type: texture + offset: 0x74568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_036_tlut_wheel_0: + symbol: gKartPeach036TlutWheel0 + type: texture + offset: 0x745E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_036_tlut_wheel_1: + symbol: gKartPeach036TlutWheel1 + type: texture + offset: 0x74668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_036_tlut_wheel_2: + symbol: gKartPeach036TlutWheel2 + type: texture + offset: 0x746E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_036_tlut_wheel_3: + symbol: gKartPeach036TlutWheel3 + type: texture + offset: 0x74768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_037_tlut_wheel_0: + symbol: gKartPeach037TlutWheel0 + type: texture + offset: 0x747E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_037_tlut_wheel_1: + symbol: gKartPeach037TlutWheel1 + type: texture + offset: 0x74868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_037_tlut_wheel_2: + symbol: gKartPeach037TlutWheel2 + type: texture + offset: 0x748E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_037_tlut_wheel_3: + symbol: gKartPeach037TlutWheel3 + type: texture + offset: 0x74968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_038_tlut_wheel_0: + symbol: gKartPeach038TlutWheel0 + type: texture + offset: 0x749E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_038_tlut_wheel_1: + symbol: gKartPeach038TlutWheel1 + type: texture + offset: 0x74A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_038_tlut_wheel_2: + symbol: gKartPeach038TlutWheel2 + type: texture + offset: 0x74AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_038_tlut_wheel_3: + symbol: gKartPeach038TlutWheel3 + type: texture + offset: 0x74B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_039_tlut_wheel_0: + symbol: gKartPeach039TlutWheel0 + type: texture + offset: 0x74BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_039_tlut_wheel_1: + symbol: gKartPeach039TlutWheel1 + type: texture + offset: 0x74C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_039_tlut_wheel_2: + symbol: gKartPeach039TlutWheel2 + type: texture + offset: 0x74CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_039_tlut_wheel_3: + symbol: gKartPeach039TlutWheel3 + type: texture + offset: 0x74D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_040_tlut_wheel_0: + symbol: gKartPeach040TlutWheel0 + type: texture + offset: 0x74DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_040_tlut_wheel_1: + symbol: gKartPeach040TlutWheel1 + type: texture + offset: 0x74E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_040_tlut_wheel_2: + symbol: gKartPeach040TlutWheel2 + type: texture + offset: 0x74EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_040_tlut_wheel_3: + symbol: gKartPeach040TlutWheel3 + type: texture + offset: 0x74F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_041_tlut_wheel_0: + symbol: gKartPeach041TlutWheel0 + type: texture + offset: 0x74FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_041_tlut_wheel_1: + symbol: gKartPeach041TlutWheel1 + type: texture + offset: 0x75068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_041_tlut_wheel_2: + symbol: gKartPeach041TlutWheel2 + type: texture + offset: 0x750E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_041_tlut_wheel_3: + symbol: gKartPeach041TlutWheel3 + type: texture + offset: 0x75168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_042_tlut_wheel_0: + symbol: gKartPeach042TlutWheel0 + type: texture + offset: 0x751E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_042_tlut_wheel_1: + symbol: gKartPeach042TlutWheel1 + type: texture + offset: 0x75268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_042_tlut_wheel_2: + symbol: gKartPeach042TlutWheel2 + type: texture + offset: 0x752E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_042_tlut_wheel_3: + symbol: gKartPeach042TlutWheel3 + type: texture + offset: 0x75368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_043_tlut_wheel_0: + symbol: gKartPeach043TlutWheel0 + type: texture + offset: 0x753E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_043_tlut_wheel_1: + symbol: gKartPeach043TlutWheel1 + type: texture + offset: 0x75468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_043_tlut_wheel_2: + symbol: gKartPeach043TlutWheel2 + type: texture + offset: 0x754E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_043_tlut_wheel_3: + symbol: gKartPeach043TlutWheel3 + type: texture + offset: 0x75568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_044_tlut_wheel_0: + symbol: gKartPeach044TlutWheel0 + type: texture + offset: 0x755E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_044_tlut_wheel_1: + symbol: gKartPeach044TlutWheel1 + type: texture + offset: 0x75668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_044_tlut_wheel_2: + symbol: gKartPeach044TlutWheel2 + type: texture + offset: 0x756E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_044_tlut_wheel_3: + symbol: gKartPeach044TlutWheel3 + type: texture + offset: 0x75768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_045_tlut_wheel_0: + symbol: gKartPeach045TlutWheel0 + type: texture + offset: 0x757E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_045_tlut_wheel_1: + symbol: gKartPeach045TlutWheel1 + type: texture + offset: 0x75868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_045_tlut_wheel_2: + symbol: gKartPeach045TlutWheel2 + type: texture + offset: 0x758E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_045_tlut_wheel_3: + symbol: gKartPeach045TlutWheel3 + type: texture + offset: 0x75968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_046_tlut_wheel_0: + symbol: gKartPeach046TlutWheel0 + type: texture + offset: 0x759E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_046_tlut_wheel_1: + symbol: gKartPeach046TlutWheel1 + type: texture + offset: 0x75A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_046_tlut_wheel_2: + symbol: gKartPeach046TlutWheel2 + type: texture + offset: 0x75AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_046_tlut_wheel_3: + symbol: gKartPeach046TlutWheel3 + type: texture + offset: 0x75B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_047_tlut_wheel_0: + symbol: gKartPeach047TlutWheel0 + type: texture + offset: 0x75BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_047_tlut_wheel_1: + symbol: gKartPeach047TlutWheel1 + type: texture + offset: 0x75C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_047_tlut_wheel_2: + symbol: gKartPeach047TlutWheel2 + type: texture + offset: 0x75CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_047_tlut_wheel_3: + symbol: gKartPeach047TlutWheel3 + type: texture + offset: 0x75D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_048_tlut_wheel_0: + symbol: gKartPeach048TlutWheel0 + type: texture + offset: 0x75DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_048_tlut_wheel_1: + symbol: gKartPeach048TlutWheel1 + type: texture + offset: 0x75E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_048_tlut_wheel_2: + symbol: gKartPeach048TlutWheel2 + type: texture + offset: 0x75EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_048_tlut_wheel_3: + symbol: gKartPeach048TlutWheel3 + type: texture + offset: 0x75F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_049_tlut_wheel_0: + symbol: gKartPeach049TlutWheel0 + type: texture + offset: 0x75FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_049_tlut_wheel_1: + symbol: gKartPeach049TlutWheel1 + type: texture + offset: 0x76068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_049_tlut_wheel_2: + symbol: gKartPeach049TlutWheel2 + type: texture + offset: 0x760E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_049_tlut_wheel_3: + symbol: gKartPeach049TlutWheel3 + type: texture + offset: 0x76168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_050_tlut_wheel_0: + symbol: gKartPeach050TlutWheel0 + type: texture + offset: 0x761E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_050_tlut_wheel_1: + symbol: gKartPeach050TlutWheel1 + type: texture + offset: 0x76268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_050_tlut_wheel_2: + symbol: gKartPeach050TlutWheel2 + type: texture + offset: 0x762E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_050_tlut_wheel_3: + symbol: gKartPeach050TlutWheel3 + type: texture + offset: 0x76368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_051_tlut_wheel_0: + symbol: gKartPeach051TlutWheel0 + type: texture + offset: 0x763E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_051_tlut_wheel_1: + symbol: gKartPeach051TlutWheel1 + type: texture + offset: 0x76468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_051_tlut_wheel_2: + symbol: gKartPeach051TlutWheel2 + type: texture + offset: 0x764E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_051_tlut_wheel_3: + symbol: gKartPeach051TlutWheel3 + type: texture + offset: 0x76568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_052_tlut_wheel_0: + symbol: gKartPeach052TlutWheel0 + type: texture + offset: 0x765E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_052_tlut_wheel_1: + symbol: gKartPeach052TlutWheel1 + type: texture + offset: 0x76668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_052_tlut_wheel_2: + symbol: gKartPeach052TlutWheel2 + type: texture + offset: 0x766E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_052_tlut_wheel_3: + symbol: gKartPeach052TlutWheel3 + type: texture + offset: 0x76768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_053_tlut_wheel_0: + symbol: gKartPeach053TlutWheel0 + type: texture + offset: 0x767E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_053_tlut_wheel_1: + symbol: gKartPeach053TlutWheel1 + type: texture + offset: 0x76868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_053_tlut_wheel_2: + symbol: gKartPeach053TlutWheel2 + type: texture + offset: 0x768E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_053_tlut_wheel_3: + symbol: gKartPeach053TlutWheel3 + type: texture + offset: 0x76968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_054_tlut_wheel_0: + symbol: gKartPeach054TlutWheel0 + type: texture + offset: 0x769E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_054_tlut_wheel_1: + symbol: gKartPeach054TlutWheel1 + type: texture + offset: 0x76A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_054_tlut_wheel_2: + symbol: gKartPeach054TlutWheel2 + type: texture + offset: 0x76AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_054_tlut_wheel_3: + symbol: gKartPeach054TlutWheel3 + type: texture + offset: 0x76B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_055_tlut_wheel_0: + symbol: gKartPeach055TlutWheel0 + type: texture + offset: 0x76BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_055_tlut_wheel_1: + symbol: gKartPeach055TlutWheel1 + type: texture + offset: 0x76C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_055_tlut_wheel_2: + symbol: gKartPeach055TlutWheel2 + type: texture + offset: 0x76CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_055_tlut_wheel_3: + symbol: gKartPeach055TlutWheel3 + type: texture + offset: 0x76D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_056_tlut_wheel_0: + symbol: gKartPeach056TlutWheel0 + type: texture + offset: 0x76DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_056_tlut_wheel_1: + symbol: gKartPeach056TlutWheel1 + type: texture + offset: 0x76E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_056_tlut_wheel_2: + symbol: gKartPeach056TlutWheel2 + type: texture + offset: 0x76EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_056_tlut_wheel_3: + symbol: gKartPeach056TlutWheel3 + type: texture + offset: 0x76F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_057_tlut_wheel_0: + symbol: gKartPeach057TlutWheel0 + type: texture + offset: 0x76FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_057_tlut_wheel_1: + symbol: gKartPeach057TlutWheel1 + type: texture + offset: 0x77068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_057_tlut_wheel_2: + symbol: gKartPeach057TlutWheel2 + type: texture + offset: 0x770E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_057_tlut_wheel_3: + symbol: gKartPeach057TlutWheel3 + type: texture + offset: 0x77168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_058_tlut_wheel_0: + symbol: gKartPeach058TlutWheel0 + type: texture + offset: 0x771E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_058_tlut_wheel_1: + symbol: gKartPeach058TlutWheel1 + type: texture + offset: 0x77268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_058_tlut_wheel_2: + symbol: gKartPeach058TlutWheel2 + type: texture + offset: 0x772E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_058_tlut_wheel_3: + symbol: gKartPeach058TlutWheel3 + type: texture + offset: 0x77368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_059_tlut_wheel_0: + symbol: gKartPeach059TlutWheel0 + type: texture + offset: 0x773E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_059_tlut_wheel_1: + symbol: gKartPeach059TlutWheel1 + type: texture + offset: 0x77468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_059_tlut_wheel_2: + symbol: gKartPeach059TlutWheel2 + type: texture + offset: 0x774E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_059_tlut_wheel_3: + symbol: gKartPeach059TlutWheel3 + type: texture + offset: 0x77568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_060_tlut_wheel_0: + symbol: gKartPeach060TlutWheel0 + type: texture + offset: 0x775E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_060_tlut_wheel_1: + symbol: gKartPeach060TlutWheel1 + type: texture + offset: 0x77668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_060_tlut_wheel_2: + symbol: gKartPeach060TlutWheel2 + type: texture + offset: 0x776E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_060_tlut_wheel_3: + symbol: gKartPeach060TlutWheel3 + type: texture + offset: 0x77768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_061_tlut_wheel_0: + symbol: gKartPeach061TlutWheel0 + type: texture + offset: 0x777E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_061_tlut_wheel_1: + symbol: gKartPeach061TlutWheel1 + type: texture + offset: 0x77868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_061_tlut_wheel_2: + symbol: gKartPeach061TlutWheel2 + type: texture + offset: 0x778E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_061_tlut_wheel_3: + symbol: gKartPeach061TlutWheel3 + type: texture + offset: 0x77968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_062_tlut_wheel_0: + symbol: gKartPeach062TlutWheel0 + type: texture + offset: 0x779E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_062_tlut_wheel_1: + symbol: gKartPeach062TlutWheel1 + type: texture + offset: 0x77A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_062_tlut_wheel_2: + symbol: gKartPeach062TlutWheel2 + type: texture + offset: 0x77AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_062_tlut_wheel_3: + symbol: gKartPeach062TlutWheel3 + type: texture + offset: 0x77B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_063_tlut_wheel_0: + symbol: gKartPeach063TlutWheel0 + type: texture + offset: 0x77BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_063_tlut_wheel_1: + symbol: gKartPeach063TlutWheel1 + type: texture + offset: 0x77C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_063_tlut_wheel_2: + symbol: gKartPeach063TlutWheel2 + type: texture + offset: 0x77CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_063_tlut_wheel_3: + symbol: gKartPeach063TlutWheel3 + type: texture + offset: 0x77D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_064_tlut_wheel_0: + symbol: gKartPeach064TlutWheel0 + type: texture + offset: 0x77DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_064_tlut_wheel_1: + symbol: gKartPeach064TlutWheel1 + type: texture + offset: 0x77E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_064_tlut_wheel_2: + symbol: gKartPeach064TlutWheel2 + type: texture + offset: 0x77EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_064_tlut_wheel_3: + symbol: gKartPeach064TlutWheel3 + type: texture + offset: 0x77F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_065_tlut_wheel_0: + symbol: gKartPeach065TlutWheel0 + type: texture + offset: 0x77FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_065_tlut_wheel_1: + symbol: gKartPeach065TlutWheel1 + type: texture + offset: 0x78068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_065_tlut_wheel_2: + symbol: gKartPeach065TlutWheel2 + type: texture + offset: 0x780E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_065_tlut_wheel_3: + symbol: gKartPeach065TlutWheel3 + type: texture + offset: 0x78168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_066_tlut_wheel_0: + symbol: gKartPeach066TlutWheel0 + type: texture + offset: 0x781E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_066_tlut_wheel_1: + symbol: gKartPeach066TlutWheel1 + type: texture + offset: 0x78268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_066_tlut_wheel_2: + symbol: gKartPeach066TlutWheel2 + type: texture + offset: 0x782E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_066_tlut_wheel_3: + symbol: gKartPeach066TlutWheel3 + type: texture + offset: 0x78368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_067_tlut_wheel_0: + symbol: gKartPeach067TlutWheel0 + type: texture + offset: 0x783E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_067_tlut_wheel_1: + symbol: gKartPeach067TlutWheel1 + type: texture + offset: 0x78468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_067_tlut_wheel_2: + symbol: gKartPeach067TlutWheel2 + type: texture + offset: 0x784E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_067_tlut_wheel_3: + symbol: gKartPeach067TlutWheel3 + type: texture + offset: 0x78568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_068_tlut_wheel_0: + symbol: gKartPeach068TlutWheel0 + type: texture + offset: 0x785E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_068_tlut_wheel_1: + symbol: gKartPeach068TlutWheel1 + type: texture + offset: 0x78668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_068_tlut_wheel_2: + symbol: gKartPeach068TlutWheel2 + type: texture + offset: 0x786E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_068_tlut_wheel_3: + symbol: gKartPeach068TlutWheel3 + type: texture + offset: 0x78768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_069_tlut_wheel_0: + symbol: gKartPeach069TlutWheel0 + type: texture + offset: 0x787E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_069_tlut_wheel_1: + symbol: gKartPeach069TlutWheel1 + type: texture + offset: 0x78868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_069_tlut_wheel_2: + symbol: gKartPeach069TlutWheel2 + type: texture + offset: 0x788E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_069_tlut_wheel_3: + symbol: gKartPeach069TlutWheel3 + type: texture + offset: 0x78968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_070_tlut_wheel_0: + symbol: gKartPeach070TlutWheel0 + type: texture + offset: 0x789E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_070_tlut_wheel_1: + symbol: gKartPeach070TlutWheel1 + type: texture + offset: 0x78A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_070_tlut_wheel_2: + symbol: gKartPeach070TlutWheel2 + type: texture + offset: 0x78AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_070_tlut_wheel_3: + symbol: gKartPeach070TlutWheel3 + type: texture + offset: 0x78B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_071_tlut_wheel_0: + symbol: gKartPeach071TlutWheel0 + type: texture + offset: 0x78BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_071_tlut_wheel_1: + symbol: gKartPeach071TlutWheel1 + type: texture + offset: 0x78C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_071_tlut_wheel_2: + symbol: gKartPeach071TlutWheel2 + type: texture + offset: 0x78CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_071_tlut_wheel_3: + symbol: gKartPeach071TlutWheel3 + type: texture + offset: 0x78D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_072_tlut_wheel_0: + symbol: gKartPeach072TlutWheel0 + type: texture + offset: 0x78DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_072_tlut_wheel_1: + symbol: gKartPeach072TlutWheel1 + type: texture + offset: 0x78E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_072_tlut_wheel_2: + symbol: gKartPeach072TlutWheel2 + type: texture + offset: 0x78EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_072_tlut_wheel_3: + symbol: gKartPeach072TlutWheel3 + type: texture + offset: 0x78F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_073_tlut_wheel_0: + symbol: gKartPeach073TlutWheel0 + type: texture + offset: 0x78FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_073_tlut_wheel_1: + symbol: gKartPeach073TlutWheel1 + type: texture + offset: 0x79068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_073_tlut_wheel_2: + symbol: gKartPeach073TlutWheel2 + type: texture + offset: 0x790E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_073_tlut_wheel_3: + symbol: gKartPeach073TlutWheel3 + type: texture + offset: 0x79168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_074_tlut_wheel_0: + symbol: gKartPeach074TlutWheel0 + type: texture + offset: 0x791E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_074_tlut_wheel_1: + symbol: gKartPeach074TlutWheel1 + type: texture + offset: 0x79268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_074_tlut_wheel_2: + symbol: gKartPeach074TlutWheel2 + type: texture + offset: 0x792E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_074_tlut_wheel_3: + symbol: gKartPeach074TlutWheel3 + type: texture + offset: 0x79368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_075_tlut_wheel_0: + symbol: gKartPeach075TlutWheel0 + type: texture + offset: 0x793E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_075_tlut_wheel_1: + symbol: gKartPeach075TlutWheel1 + type: texture + offset: 0x79468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_075_tlut_wheel_2: + symbol: gKartPeach075TlutWheel2 + type: texture + offset: 0x794E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_075_tlut_wheel_3: + symbol: gKartPeach075TlutWheel3 + type: texture + offset: 0x79568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_076_tlut_wheel_0: + symbol: gKartPeach076TlutWheel0 + type: texture + offset: 0x795E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_076_tlut_wheel_1: + symbol: gKartPeach076TlutWheel1 + type: texture + offset: 0x79668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_076_tlut_wheel_2: + symbol: gKartPeach076TlutWheel2 + type: texture + offset: 0x796E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_076_tlut_wheel_3: + symbol: gKartPeach076TlutWheel3 + type: texture + offset: 0x79768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_077_tlut_wheel_0: + symbol: gKartPeach077TlutWheel0 + type: texture + offset: 0x797E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_077_tlut_wheel_1: + symbol: gKartPeach077TlutWheel1 + type: texture + offset: 0x79868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_077_tlut_wheel_2: + symbol: gKartPeach077TlutWheel2 + type: texture + offset: 0x798E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_077_tlut_wheel_3: + symbol: gKartPeach077TlutWheel3 + type: texture + offset: 0x79968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_078_tlut_wheel_0: + symbol: gKartPeach078TlutWheel0 + type: texture + offset: 0x799E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_078_tlut_wheel_1: + symbol: gKartPeach078TlutWheel1 + type: texture + offset: 0x79A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_078_tlut_wheel_2: + symbol: gKartPeach078TlutWheel2 + type: texture + offset: 0x79AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_078_tlut_wheel_3: + symbol: gKartPeach078TlutWheel3 + type: texture + offset: 0x79B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_079_tlut_wheel_0: + symbol: gKartPeach079TlutWheel0 + type: texture + offset: 0x79BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_079_tlut_wheel_1: + symbol: gKartPeach079TlutWheel1 + type: texture + offset: 0x79C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_079_tlut_wheel_2: + symbol: gKartPeach079TlutWheel2 + type: texture + offset: 0x79CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_079_tlut_wheel_3: + symbol: gKartPeach079TlutWheel3 + type: texture + offset: 0x79D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_080_tlut_wheel_0: + symbol: gKartPeach080TlutWheel0 + type: texture + offset: 0x79DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_080_tlut_wheel_1: + symbol: gKartPeach080TlutWheel1 + type: texture + offset: 0x79E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_080_tlut_wheel_2: + symbol: gKartPeach080TlutWheel2 + type: texture + offset: 0x79EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_080_tlut_wheel_3: + symbol: gKartPeach080TlutWheel3 + type: texture + offset: 0x79F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_081_tlut_wheel_0: + symbol: gKartPeach081TlutWheel0 + type: texture + offset: 0x79FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_081_tlut_wheel_1: + symbol: gKartPeach081TlutWheel1 + type: texture + offset: 0x7A068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_081_tlut_wheel_2: + symbol: gKartPeach081TlutWheel2 + type: texture + offset: 0x7A0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_081_tlut_wheel_3: + symbol: gKartPeach081TlutWheel3 + type: texture + offset: 0x7A168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_082_tlut_wheel_0: + symbol: gKartPeach082TlutWheel0 + type: texture + offset: 0x7A1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_082_tlut_wheel_1: + symbol: gKartPeach082TlutWheel1 + type: texture + offset: 0x7A268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_082_tlut_wheel_2: + symbol: gKartPeach082TlutWheel2 + type: texture + offset: 0x7A2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_082_tlut_wheel_3: + symbol: gKartPeach082TlutWheel3 + type: texture + offset: 0x7A368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_083_tlut_wheel_0: + symbol: gKartPeach083TlutWheel0 + type: texture + offset: 0x7A3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_083_tlut_wheel_1: + symbol: gKartPeach083TlutWheel1 + type: texture + offset: 0x7A468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_083_tlut_wheel_2: + symbol: gKartPeach083TlutWheel2 + type: texture + offset: 0x7A4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_083_tlut_wheel_3: + symbol: gKartPeach083TlutWheel3 + type: texture + offset: 0x7A568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_084_tlut_wheel_0: + symbol: gKartPeach084TlutWheel0 + type: texture + offset: 0x7A5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_084_tlut_wheel_1: + symbol: gKartPeach084TlutWheel1 + type: texture + offset: 0x7A668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_084_tlut_wheel_2: + symbol: gKartPeach084TlutWheel2 + type: texture + offset: 0x7A6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_084_tlut_wheel_3: + symbol: gKartPeach084TlutWheel3 + type: texture + offset: 0x7A768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_085_tlut_wheel_0: + symbol: gKartPeach085TlutWheel0 + type: texture + offset: 0x7A7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_085_tlut_wheel_1: + symbol: gKartPeach085TlutWheel1 + type: texture + offset: 0x7A868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_085_tlut_wheel_2: + symbol: gKartPeach085TlutWheel2 + type: texture + offset: 0x7A8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_085_tlut_wheel_3: + symbol: gKartPeach085TlutWheel3 + type: texture + offset: 0x7A968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_086_tlut_wheel_0: + symbol: gKartPeach086TlutWheel0 + type: texture + offset: 0x7A9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_086_tlut_wheel_1: + symbol: gKartPeach086TlutWheel1 + type: texture + offset: 0x7AA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_086_tlut_wheel_2: + symbol: gKartPeach086TlutWheel2 + type: texture + offset: 0x7AAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_086_tlut_wheel_3: + symbol: gKartPeach086TlutWheel3 + type: texture + offset: 0x7AB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_087_tlut_wheel_0: + symbol: gKartPeach087TlutWheel0 + type: texture + offset: 0x7ABE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_087_tlut_wheel_1: + symbol: gKartPeach087TlutWheel1 + type: texture + offset: 0x7AC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_087_tlut_wheel_2: + symbol: gKartPeach087TlutWheel2 + type: texture + offset: 0x7ACE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_087_tlut_wheel_3: + symbol: gKartPeach087TlutWheel3 + type: texture + offset: 0x7AD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_088_tlut_wheel_0: + symbol: gKartPeach088TlutWheel0 + type: texture + offset: 0x7ADE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_088_tlut_wheel_1: + symbol: gKartPeach088TlutWheel1 + type: texture + offset: 0x7AE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_088_tlut_wheel_2: + symbol: gKartPeach088TlutWheel2 + type: texture + offset: 0x7AEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_088_tlut_wheel_3: + symbol: gKartPeach088TlutWheel3 + type: texture + offset: 0x7AF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_089_tlut_wheel_0: + symbol: gKartPeach089TlutWheel0 + type: texture + offset: 0x7AFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_089_tlut_wheel_1: + symbol: gKartPeach089TlutWheel1 + type: texture + offset: 0x7B068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_089_tlut_wheel_2: + symbol: gKartPeach089TlutWheel2 + type: texture + offset: 0x7B0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_089_tlut_wheel_3: + symbol: gKartPeach089TlutWheel3 + type: texture + offset: 0x7B168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_090_tlut_wheel_0: + symbol: gKartPeach090TlutWheel0 + type: texture + offset: 0x7B1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_090_tlut_wheel_1: + symbol: gKartPeach090TlutWheel1 + type: texture + offset: 0x7B268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_090_tlut_wheel_2: + symbol: gKartPeach090TlutWheel2 + type: texture + offset: 0x7B2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_090_tlut_wheel_3: + symbol: gKartPeach090TlutWheel3 + type: texture + offset: 0x7B368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_091_tlut_wheel_0: + symbol: gKartPeach091TlutWheel0 + type: texture + offset: 0x7B3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_091_tlut_wheel_1: + symbol: gKartPeach091TlutWheel1 + type: texture + offset: 0x7B468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_091_tlut_wheel_2: + symbol: gKartPeach091TlutWheel2 + type: texture + offset: 0x7B4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_091_tlut_wheel_3: + symbol: gKartPeach091TlutWheel3 + type: texture + offset: 0x7B568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_092_tlut_wheel_0: + symbol: gKartPeach092TlutWheel0 + type: texture + offset: 0x7B5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_092_tlut_wheel_1: + symbol: gKartPeach092TlutWheel1 + type: texture + offset: 0x7B668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_092_tlut_wheel_2: + symbol: gKartPeach092TlutWheel2 + type: texture + offset: 0x7B6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_092_tlut_wheel_3: + symbol: gKartPeach092TlutWheel3 + type: texture + offset: 0x7B768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_093_tlut_wheel_0: + symbol: gKartPeach093TlutWheel0 + type: texture + offset: 0x7B7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_093_tlut_wheel_1: + symbol: gKartPeach093TlutWheel1 + type: texture + offset: 0x7B868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_093_tlut_wheel_2: + symbol: gKartPeach093TlutWheel2 + type: texture + offset: 0x7B8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_093_tlut_wheel_3: + symbol: gKartPeach093TlutWheel3 + type: texture + offset: 0x7B968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_094_tlut_wheel_0: + symbol: gKartPeach094TlutWheel0 + type: texture + offset: 0x7B9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_094_tlut_wheel_1: + symbol: gKartPeach094TlutWheel1 + type: texture + offset: 0x7BA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_094_tlut_wheel_2: + symbol: gKartPeach094TlutWheel2 + type: texture + offset: 0x7BAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_094_tlut_wheel_3: + symbol: gKartPeach094TlutWheel3 + type: texture + offset: 0x7BB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_095_tlut_wheel_0: + symbol: gKartPeach095TlutWheel0 + type: texture + offset: 0x7BBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_095_tlut_wheel_1: + symbol: gKartPeach095TlutWheel1 + type: texture + offset: 0x7BC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_095_tlut_wheel_2: + symbol: gKartPeach095TlutWheel2 + type: texture + offset: 0x7BCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_095_tlut_wheel_3: + symbol: gKartPeach095TlutWheel3 + type: texture + offset: 0x7BD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_096_tlut_wheel_0: + symbol: gKartPeach096TlutWheel0 + type: texture + offset: 0x7BDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_096_tlut_wheel_1: + symbol: gKartPeach096TlutWheel1 + type: texture + offset: 0x7BE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_096_tlut_wheel_2: + symbol: gKartPeach096TlutWheel2 + type: texture + offset: 0x7BEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_096_tlut_wheel_3: + symbol: gKartPeach096TlutWheel3 + type: texture + offset: 0x7BF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_097_tlut_wheel_0: + symbol: gKartPeach097TlutWheel0 + type: texture + offset: 0x7BFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_097_tlut_wheel_1: + symbol: gKartPeach097TlutWheel1 + type: texture + offset: 0x7C068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_097_tlut_wheel_2: + symbol: gKartPeach097TlutWheel2 + type: texture + offset: 0x7C0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_097_tlut_wheel_3: + symbol: gKartPeach097TlutWheel3 + type: texture + offset: 0x7C168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_098_tlut_wheel_0: + symbol: gKartPeach098TlutWheel0 + type: texture + offset: 0x7C1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_098_tlut_wheel_1: + symbol: gKartPeach098TlutWheel1 + type: texture + offset: 0x7C268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_098_tlut_wheel_2: + symbol: gKartPeach098TlutWheel2 + type: texture + offset: 0x7C2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_098_tlut_wheel_3: + symbol: gKartPeach098TlutWheel3 + type: texture + offset: 0x7C368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_099_tlut_wheel_0: + symbol: gKartPeach099TlutWheel0 + type: texture + offset: 0x7C3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_099_tlut_wheel_1: + symbol: gKartPeach099TlutWheel1 + type: texture + offset: 0x7C468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_099_tlut_wheel_2: + symbol: gKartPeach099TlutWheel2 + type: texture + offset: 0x7C4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_099_tlut_wheel_3: + symbol: gKartPeach099TlutWheel3 + type: texture + offset: 0x7C568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_100_tlut_wheel_0: + symbol: gKartPeach100TlutWheel0 + type: texture + offset: 0x7C5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_100_tlut_wheel_1: + symbol: gKartPeach100TlutWheel1 + type: texture + offset: 0x7C668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_100_tlut_wheel_2: + symbol: gKartPeach100TlutWheel2 + type: texture + offset: 0x7C6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_100_tlut_wheel_3: + symbol: gKartPeach100TlutWheel3 + type: texture + offset: 0x7C768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_101_tlut_wheel_0: + symbol: gKartPeach101TlutWheel0 + type: texture + offset: 0x7C7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_101_tlut_wheel_1: + symbol: gKartPeach101TlutWheel1 + type: texture + offset: 0x7C868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_101_tlut_wheel_2: + symbol: gKartPeach101TlutWheel2 + type: texture + offset: 0x7C8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_101_tlut_wheel_3: + symbol: gKartPeach101TlutWheel3 + type: texture + offset: 0x7C968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_102_tlut_wheel_0: + symbol: gKartPeach102TlutWheel0 + type: texture + offset: 0x7C9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_102_tlut_wheel_1: + symbol: gKartPeach102TlutWheel1 + type: texture + offset: 0x7CA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_102_tlut_wheel_2: + symbol: gKartPeach102TlutWheel2 + type: texture + offset: 0x7CAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_102_tlut_wheel_3: + symbol: gKartPeach102TlutWheel3 + type: texture + offset: 0x7CB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_103_tlut_wheel_0: + symbol: gKartPeach103TlutWheel0 + type: texture + offset: 0x7CBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_103_tlut_wheel_1: + symbol: gKartPeach103TlutWheel1 + type: texture + offset: 0x7CC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_103_tlut_wheel_2: + symbol: gKartPeach103TlutWheel2 + type: texture + offset: 0x7CCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_103_tlut_wheel_3: + symbol: gKartPeach103TlutWheel3 + type: texture + offset: 0x7CD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_104_tlut_wheel_0: + symbol: gKartPeach104TlutWheel0 + type: texture + offset: 0x7CDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_104_tlut_wheel_1: + symbol: gKartPeach104TlutWheel1 + type: texture + offset: 0x7CE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_104_tlut_wheel_2: + symbol: gKartPeach104TlutWheel2 + type: texture + offset: 0x7CEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_104_tlut_wheel_3: + symbol: gKartPeach104TlutWheel3 + type: texture + offset: 0x7CF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_105_tlut_wheel_0: + symbol: gKartPeach105TlutWheel0 + type: texture + offset: 0x7CFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_105_tlut_wheel_1: + symbol: gKartPeach105TlutWheel1 + type: texture + offset: 0x7D068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_105_tlut_wheel_2: + symbol: gKartPeach105TlutWheel2 + type: texture + offset: 0x7D0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_105_tlut_wheel_3: + symbol: gKartPeach105TlutWheel3 + type: texture + offset: 0x7D168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_106_tlut_wheel_0: + symbol: gKartPeach106TlutWheel0 + type: texture + offset: 0x7D1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_106_tlut_wheel_1: + symbol: gKartPeach106TlutWheel1 + type: texture + offset: 0x7D268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_106_tlut_wheel_2: + symbol: gKartPeach106TlutWheel2 + type: texture + offset: 0x7D2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_106_tlut_wheel_3: + symbol: gKartPeach106TlutWheel3 + type: texture + offset: 0x7D368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_107_tlut_wheel_0: + symbol: gKartPeach107TlutWheel0 + type: texture + offset: 0x7D3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_107_tlut_wheel_1: + symbol: gKartPeach107TlutWheel1 + type: texture + offset: 0x7D468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_107_tlut_wheel_2: + symbol: gKartPeach107TlutWheel2 + type: texture + offset: 0x7D4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_107_tlut_wheel_3: + symbol: gKartPeach107TlutWheel3 + type: texture + offset: 0x7D568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_108_tlut_wheel_0: + symbol: gKartPeach108TlutWheel0 + type: texture + offset: 0x7D5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_108_tlut_wheel_1: + symbol: gKartPeach108TlutWheel1 + type: texture + offset: 0x7D668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_108_tlut_wheel_2: + symbol: gKartPeach108TlutWheel2 + type: texture + offset: 0x7D6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_108_tlut_wheel_3: + symbol: gKartPeach108TlutWheel3 + type: texture + offset: 0x7D768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_109_tlut_wheel_0: + symbol: gKartPeach109TlutWheel0 + type: texture + offset: 0x7D7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_109_tlut_wheel_1: + symbol: gKartPeach109TlutWheel1 + type: texture + offset: 0x7D868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_109_tlut_wheel_2: + symbol: gKartPeach109TlutWheel2 + type: texture + offset: 0x7D8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_109_tlut_wheel_3: + symbol: gKartPeach109TlutWheel3 + type: texture + offset: 0x7D968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_110_tlut_wheel_0: + symbol: gKartPeach110TlutWheel0 + type: texture + offset: 0x7D9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_110_tlut_wheel_1: + symbol: gKartPeach110TlutWheel1 + type: texture + offset: 0x7DA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_110_tlut_wheel_2: + symbol: gKartPeach110TlutWheel2 + type: texture + offset: 0x7DAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_110_tlut_wheel_3: + symbol: gKartPeach110TlutWheel3 + type: texture + offset: 0x7DB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_111_tlut_wheel_0: + symbol: gKartPeach111TlutWheel0 + type: texture + offset: 0x7DBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_111_tlut_wheel_1: + symbol: gKartPeach111TlutWheel1 + type: texture + offset: 0x7DC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_111_tlut_wheel_2: + symbol: gKartPeach111TlutWheel2 + type: texture + offset: 0x7DCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_111_tlut_wheel_3: + symbol: gKartPeach111TlutWheel3 + type: texture + offset: 0x7DD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_112_tlut_wheel_0: + symbol: gKartPeach112TlutWheel0 + type: texture + offset: 0x7DDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_112_tlut_wheel_1: + symbol: gKartPeach112TlutWheel1 + type: texture + offset: 0x7DE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_112_tlut_wheel_2: + symbol: gKartPeach112TlutWheel2 + type: texture + offset: 0x7DEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_112_tlut_wheel_3: + symbol: gKartPeach112TlutWheel3 + type: texture + offset: 0x7DF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_113_tlut_wheel_0: + symbol: gKartPeach113TlutWheel0 + type: texture + offset: 0x7DFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_113_tlut_wheel_1: + symbol: gKartPeach113TlutWheel1 + type: texture + offset: 0x7E068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_113_tlut_wheel_2: + symbol: gKartPeach113TlutWheel2 + type: texture + offset: 0x7E0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_113_tlut_wheel_3: + symbol: gKartPeach113TlutWheel3 + type: texture + offset: 0x7E168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_114_tlut_wheel_0: + symbol: gKartPeach114TlutWheel0 + type: texture + offset: 0x7E1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_114_tlut_wheel_1: + symbol: gKartPeach114TlutWheel1 + type: texture + offset: 0x7E268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_114_tlut_wheel_2: + symbol: gKartPeach114TlutWheel2 + type: texture + offset: 0x7E2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_114_tlut_wheel_3: + symbol: gKartPeach114TlutWheel3 + type: texture + offset: 0x7E368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_115_tlut_wheel_0: + symbol: gKartPeach115TlutWheel0 + type: texture + offset: 0x7E3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_115_tlut_wheel_1: + symbol: gKartPeach115TlutWheel1 + type: texture + offset: 0x7E468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_115_tlut_wheel_2: + symbol: gKartPeach115TlutWheel2 + type: texture + offset: 0x7E4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_115_tlut_wheel_3: + symbol: gKartPeach115TlutWheel3 + type: texture + offset: 0x7E568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_116_tlut_wheel_0: + symbol: gKartPeach116TlutWheel0 + type: texture + offset: 0x7E5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_116_tlut_wheel_1: + symbol: gKartPeach116TlutWheel1 + type: texture + offset: 0x7E668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_116_tlut_wheel_2: + symbol: gKartPeach116TlutWheel2 + type: texture + offset: 0x7E6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_116_tlut_wheel_3: + symbol: gKartPeach116TlutWheel3 + type: texture + offset: 0x7E768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_117_tlut_wheel_0: + symbol: gKartPeach117TlutWheel0 + type: texture + offset: 0x7E7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_117_tlut_wheel_1: + symbol: gKartPeach117TlutWheel1 + type: texture + offset: 0x7E868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_117_tlut_wheel_2: + symbol: gKartPeach117TlutWheel2 + type: texture + offset: 0x7E8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_117_tlut_wheel_3: + symbol: gKartPeach117TlutWheel3 + type: texture + offset: 0x7E968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_118_tlut_wheel_0: + symbol: gKartPeach118TlutWheel0 + type: texture + offset: 0x7E9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_118_tlut_wheel_1: + symbol: gKartPeach118TlutWheel1 + type: texture + offset: 0x7EA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_118_tlut_wheel_2: + symbol: gKartPeach118TlutWheel2 + type: texture + offset: 0x7EAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_118_tlut_wheel_3: + symbol: gKartPeach118TlutWheel3 + type: texture + offset: 0x7EB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_119_tlut_wheel_0: + symbol: gKartPeach119TlutWheel0 + type: texture + offset: 0x7EBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_119_tlut_wheel_1: + symbol: gKartPeach119TlutWheel1 + type: texture + offset: 0x7EC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_119_tlut_wheel_2: + symbol: gKartPeach119TlutWheel2 + type: texture + offset: 0x7ECE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_119_tlut_wheel_3: + symbol: gKartPeach119TlutWheel3 + type: texture + offset: 0x7ED68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_120_tlut_wheel_0: + symbol: gKartPeach120TlutWheel0 + type: texture + offset: 0x7EDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_120_tlut_wheel_1: + symbol: gKartPeach120TlutWheel1 + type: texture + offset: 0x7EE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_120_tlut_wheel_2: + symbol: gKartPeach120TlutWheel2 + type: texture + offset: 0x7EEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_120_tlut_wheel_3: + symbol: gKartPeach120TlutWheel3 + type: texture + offset: 0x7EF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_121_tlut_wheel_0: + symbol: gKartPeach121TlutWheel0 + type: texture + offset: 0x7EFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_121_tlut_wheel_1: + symbol: gKartPeach121TlutWheel1 + type: texture + offset: 0x7F068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_121_tlut_wheel_2: + symbol: gKartPeach121TlutWheel2 + type: texture + offset: 0x7F0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_121_tlut_wheel_3: + symbol: gKartPeach121TlutWheel3 + type: texture + offset: 0x7F168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_122_tlut_wheel_0: + symbol: gKartPeach122TlutWheel0 + type: texture + offset: 0x7F1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_122_tlut_wheel_1: + symbol: gKartPeach122TlutWheel1 + type: texture + offset: 0x7F268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_122_tlut_wheel_2: + symbol: gKartPeach122TlutWheel2 + type: texture + offset: 0x7F2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_122_tlut_wheel_3: + symbol: gKartPeach122TlutWheel3 + type: texture + offset: 0x7F368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_123_tlut_wheel_0: + symbol: gKartPeach123TlutWheel0 + type: texture + offset: 0x7F3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_123_tlut_wheel_1: + symbol: gKartPeach123TlutWheel1 + type: texture + offset: 0x7F468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_123_tlut_wheel_2: + symbol: gKartPeach123TlutWheel2 + type: texture + offset: 0x7F4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_123_tlut_wheel_3: + symbol: gKartPeach123TlutWheel3 + type: texture + offset: 0x7F568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_124_tlut_wheel_0: + symbol: gKartPeach124TlutWheel0 + type: texture + offset: 0x7F5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_124_tlut_wheel_1: + symbol: gKartPeach124TlutWheel1 + type: texture + offset: 0x7F668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_124_tlut_wheel_2: + symbol: gKartPeach124TlutWheel2 + type: texture + offset: 0x7F6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_124_tlut_wheel_3: + symbol: gKartPeach124TlutWheel3 + type: texture + offset: 0x7F768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_125_tlut_wheel_0: + symbol: gKartPeach125TlutWheel0 + type: texture + offset: 0x7F7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_125_tlut_wheel_1: + symbol: gKartPeach125TlutWheel1 + type: texture + offset: 0x7F868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_125_tlut_wheel_2: + symbol: gKartPeach125TlutWheel2 + type: texture + offset: 0x7F8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_125_tlut_wheel_3: + symbol: gKartPeach125TlutWheel3 + type: texture + offset: 0x7F968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_126_tlut_wheel_0: + symbol: gKartPeach126TlutWheel0 + type: texture + offset: 0x7F9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_126_tlut_wheel_1: + symbol: gKartPeach126TlutWheel1 + type: texture + offset: 0x7FA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_126_tlut_wheel_2: + symbol: gKartPeach126TlutWheel2 + type: texture + offset: 0x7FAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_126_tlut_wheel_3: + symbol: gKartPeach126TlutWheel3 + type: texture + offset: 0x7FB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_127_tlut_wheel_0: + symbol: gKartPeach127TlutWheel0 + type: texture + offset: 0x7FBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_127_tlut_wheel_1: + symbol: gKartPeach127TlutWheel1 + type: texture + offset: 0x7FC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_127_tlut_wheel_2: + symbol: gKartPeach127TlutWheel2 + type: texture + offset: 0x7FCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_127_tlut_wheel_3: + symbol: gKartPeach127TlutWheel3 + type: texture + offset: 0x7FD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_128_tlut_wheel_0: + symbol: gKartPeach128TlutWheel0 + type: texture + offset: 0x7FDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_128_tlut_wheel_1: + symbol: gKartPeach128TlutWheel1 + type: texture + offset: 0x7FE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_128_tlut_wheel_2: + symbol: gKartPeach128TlutWheel2 + type: texture + offset: 0x7FEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_128_tlut_wheel_3: + symbol: gKartPeach128TlutWheel3 + type: texture + offset: 0x7FF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_129_tlut_wheel_0: + symbol: gKartPeach129TlutWheel0 + type: texture + offset: 0x7FFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_129_tlut_wheel_1: + symbol: gKartPeach129TlutWheel1 + type: texture + offset: 0x80068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_129_tlut_wheel_2: + symbol: gKartPeach129TlutWheel2 + type: texture + offset: 0x800E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_129_tlut_wheel_3: + symbol: gKartPeach129TlutWheel3 + type: texture + offset: 0x80168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_130_tlut_wheel_0: + symbol: gKartPeach130TlutWheel0 + type: texture + offset: 0x801E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_130_tlut_wheel_1: + symbol: gKartPeach130TlutWheel1 + type: texture + offset: 0x80268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_130_tlut_wheel_2: + symbol: gKartPeach130TlutWheel2 + type: texture + offset: 0x802E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_130_tlut_wheel_3: + symbol: gKartPeach130TlutWheel3 + type: texture + offset: 0x80368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_131_tlut_wheel_0: + symbol: gKartPeach131TlutWheel0 + type: texture + offset: 0x803E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_131_tlut_wheel_1: + symbol: gKartPeach131TlutWheel1 + type: texture + offset: 0x80468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_131_tlut_wheel_2: + symbol: gKartPeach131TlutWheel2 + type: texture + offset: 0x804E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_131_tlut_wheel_3: + symbol: gKartPeach131TlutWheel3 + type: texture + offset: 0x80568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_132_tlut_wheel_0: + symbol: gKartPeach132TlutWheel0 + type: texture + offset: 0x805E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_132_tlut_wheel_1: + symbol: gKartPeach132TlutWheel1 + type: texture + offset: 0x80668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_132_tlut_wheel_2: + symbol: gKartPeach132TlutWheel2 + type: texture + offset: 0x806E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_132_tlut_wheel_3: + symbol: gKartPeach132TlutWheel3 + type: texture + offset: 0x80768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_133_tlut_wheel_0: + symbol: gKartPeach133TlutWheel0 + type: texture + offset: 0x807E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_133_tlut_wheel_1: + symbol: gKartPeach133TlutWheel1 + type: texture + offset: 0x80868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_133_tlut_wheel_2: + symbol: gKartPeach133TlutWheel2 + type: texture + offset: 0x808E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_133_tlut_wheel_3: + symbol: gKartPeach133TlutWheel3 + type: texture + offset: 0x80968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_134_tlut_wheel_0: + symbol: gKartPeach134TlutWheel0 + type: texture + offset: 0x809E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_134_tlut_wheel_1: + symbol: gKartPeach134TlutWheel1 + type: texture + offset: 0x80A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_134_tlut_wheel_2: + symbol: gKartPeach134TlutWheel2 + type: texture + offset: 0x80AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_134_tlut_wheel_3: + symbol: gKartPeach134TlutWheel3 + type: texture + offset: 0x80B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_135_tlut_wheel_0: + symbol: gKartPeach135TlutWheel0 + type: texture + offset: 0x80BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_135_tlut_wheel_1: + symbol: gKartPeach135TlutWheel1 + type: texture + offset: 0x80C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_135_tlut_wheel_2: + symbol: gKartPeach135TlutWheel2 + type: texture + offset: 0x80CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_135_tlut_wheel_3: + symbol: gKartPeach135TlutWheel3 + type: texture + offset: 0x80D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_136_tlut_wheel_0: + symbol: gKartPeach136TlutWheel0 + type: texture + offset: 0x80DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_136_tlut_wheel_1: + symbol: gKartPeach136TlutWheel1 + type: texture + offset: 0x80E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_136_tlut_wheel_2: + symbol: gKartPeach136TlutWheel2 + type: texture + offset: 0x80EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_136_tlut_wheel_3: + symbol: gKartPeach136TlutWheel3 + type: texture + offset: 0x80F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_137_tlut_wheel_0: + symbol: gKartPeach137TlutWheel0 + type: texture + offset: 0x80FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_137_tlut_wheel_1: + symbol: gKartPeach137TlutWheel1 + type: texture + offset: 0x81068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_137_tlut_wheel_2: + symbol: gKartPeach137TlutWheel2 + type: texture + offset: 0x810E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_137_tlut_wheel_3: + symbol: gKartPeach137TlutWheel3 + type: texture + offset: 0x81168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_138_tlut_wheel_0: + symbol: gKartPeach138TlutWheel0 + type: texture + offset: 0x811E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_138_tlut_wheel_1: + symbol: gKartPeach138TlutWheel1 + type: texture + offset: 0x81268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_138_tlut_wheel_2: + symbol: gKartPeach138TlutWheel2 + type: texture + offset: 0x812E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_138_tlut_wheel_3: + symbol: gKartPeach138TlutWheel3 + type: texture + offset: 0x81368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_139_tlut_wheel_0: + symbol: gKartPeach139TlutWheel0 + type: texture + offset: 0x813E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_139_tlut_wheel_1: + symbol: gKartPeach139TlutWheel1 + type: texture + offset: 0x81468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_139_tlut_wheel_2: + symbol: gKartPeach139TlutWheel2 + type: texture + offset: 0x814E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_139_tlut_wheel_3: + symbol: gKartPeach139TlutWheel3 + type: texture + offset: 0x81568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_140_tlut_wheel_0: + symbol: gKartPeach140TlutWheel0 + type: texture + offset: 0x815E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_140_tlut_wheel_1: + symbol: gKartPeach140TlutWheel1 + type: texture + offset: 0x81668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_140_tlut_wheel_2: + symbol: gKartPeach140TlutWheel2 + type: texture + offset: 0x816E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_140_tlut_wheel_3: + symbol: gKartPeach140TlutWheel3 + type: texture + offset: 0x81768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_141_tlut_wheel_0: + symbol: gKartPeach141TlutWheel0 + type: texture + offset: 0x817E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_141_tlut_wheel_1: + symbol: gKartPeach141TlutWheel1 + type: texture + offset: 0x81868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_141_tlut_wheel_2: + symbol: gKartPeach141TlutWheel2 + type: texture + offset: 0x818E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_141_tlut_wheel_3: + symbol: gKartPeach141TlutWheel3 + type: texture + offset: 0x81968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_142_tlut_wheel_0: + symbol: gKartPeach142TlutWheel0 + type: texture + offset: 0x819E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_142_tlut_wheel_1: + symbol: gKartPeach142TlutWheel1 + type: texture + offset: 0x81A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_142_tlut_wheel_2: + symbol: gKartPeach142TlutWheel2 + type: texture + offset: 0x81AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_142_tlut_wheel_3: + symbol: gKartPeach142TlutWheel3 + type: texture + offset: 0x81B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_143_tlut_wheel_0: + symbol: gKartPeach143TlutWheel0 + type: texture + offset: 0x81BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_143_tlut_wheel_1: + symbol: gKartPeach143TlutWheel1 + type: texture + offset: 0x81C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_143_tlut_wheel_2: + symbol: gKartPeach143TlutWheel2 + type: texture + offset: 0x81CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_143_tlut_wheel_3: + symbol: gKartPeach143TlutWheel3 + type: texture + offset: 0x81D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_144_tlut_wheel_0: + symbol: gKartPeach144TlutWheel0 + type: texture + offset: 0x81DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_144_tlut_wheel_1: + symbol: gKartPeach144TlutWheel1 + type: texture + offset: 0x81E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_144_tlut_wheel_2: + symbol: gKartPeach144TlutWheel2 + type: texture + offset: 0x81EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_144_tlut_wheel_3: + symbol: gKartPeach144TlutWheel3 + type: texture + offset: 0x81F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_145_tlut_wheel_0: + symbol: gKartPeach145TlutWheel0 + type: texture + offset: 0x81FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_145_tlut_wheel_1: + symbol: gKartPeach145TlutWheel1 + type: texture + offset: 0x82068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_145_tlut_wheel_2: + symbol: gKartPeach145TlutWheel2 + type: texture + offset: 0x820E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_145_tlut_wheel_3: + symbol: gKartPeach145TlutWheel3 + type: texture + offset: 0x82168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_146_tlut_wheel_0: + symbol: gKartPeach146TlutWheel0 + type: texture + offset: 0x821E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_146_tlut_wheel_1: + symbol: gKartPeach146TlutWheel1 + type: texture + offset: 0x82268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_146_tlut_wheel_2: + symbol: gKartPeach146TlutWheel2 + type: texture + offset: 0x822E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_146_tlut_wheel_3: + symbol: gKartPeach146TlutWheel3 + type: texture + offset: 0x82368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_147_tlut_wheel_0: + symbol: gKartPeach147TlutWheel0 + type: texture + offset: 0x823E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_147_tlut_wheel_1: + symbol: gKartPeach147TlutWheel1 + type: texture + offset: 0x82468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_147_tlut_wheel_2: + symbol: gKartPeach147TlutWheel2 + type: texture + offset: 0x824E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_147_tlut_wheel_3: + symbol: gKartPeach147TlutWheel3 + type: texture + offset: 0x82568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_148_tlut_wheel_0: + symbol: gKartPeach148TlutWheel0 + type: texture + offset: 0x825E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_148_tlut_wheel_1: + symbol: gKartPeach148TlutWheel1 + type: texture + offset: 0x82668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_148_tlut_wheel_2: + symbol: gKartPeach148TlutWheel2 + type: texture + offset: 0x826E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_148_tlut_wheel_3: + symbol: gKartPeach148TlutWheel3 + type: texture + offset: 0x82768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_149_tlut_wheel_0: + symbol: gKartPeach149TlutWheel0 + type: texture + offset: 0x827E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_149_tlut_wheel_1: + symbol: gKartPeach149TlutWheel1 + type: texture + offset: 0x82868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_149_tlut_wheel_2: + symbol: gKartPeach149TlutWheel2 + type: texture + offset: 0x828E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_149_tlut_wheel_3: + symbol: gKartPeach149TlutWheel3 + type: texture + offset: 0x82968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_150_tlut_wheel_0: + symbol: gKartPeach150TlutWheel0 + type: texture + offset: 0x829E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_150_tlut_wheel_1: + symbol: gKartPeach150TlutWheel1 + type: texture + offset: 0x82A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_150_tlut_wheel_2: + symbol: gKartPeach150TlutWheel2 + type: texture + offset: 0x82AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_150_tlut_wheel_3: + symbol: gKartPeach150TlutWheel3 + type: texture + offset: 0x82B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_151_tlut_wheel_0: + symbol: gKartPeach151TlutWheel0 + type: texture + offset: 0x82BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_151_tlut_wheel_1: + symbol: gKartPeach151TlutWheel1 + type: texture + offset: 0x82C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_151_tlut_wheel_2: + symbol: gKartPeach151TlutWheel2 + type: texture + offset: 0x82CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_151_tlut_wheel_3: + symbol: gKartPeach151TlutWheel3 + type: texture + offset: 0x82D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_152_tlut_wheel_0: + symbol: gKartPeach152TlutWheel0 + type: texture + offset: 0x82DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_152_tlut_wheel_1: + symbol: gKartPeach152TlutWheel1 + type: texture + offset: 0x82E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_152_tlut_wheel_2: + symbol: gKartPeach152TlutWheel2 + type: texture + offset: 0x82EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_152_tlut_wheel_3: + symbol: gKartPeach152TlutWheel3 + type: texture + offset: 0x82F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_153_tlut_wheel_0: + symbol: gKartPeach153TlutWheel0 + type: texture + offset: 0x82FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_153_tlut_wheel_1: + symbol: gKartPeach153TlutWheel1 + type: texture + offset: 0x83068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_153_tlut_wheel_2: + symbol: gKartPeach153TlutWheel2 + type: texture + offset: 0x830E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_153_tlut_wheel_3: + symbol: gKartPeach153TlutWheel3 + type: texture + offset: 0x83168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_154_tlut_wheel_0: + symbol: gKartPeach154TlutWheel0 + type: texture + offset: 0x831E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_154_tlut_wheel_1: + symbol: gKartPeach154TlutWheel1 + type: texture + offset: 0x83268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_154_tlut_wheel_2: + symbol: gKartPeach154TlutWheel2 + type: texture + offset: 0x832E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_154_tlut_wheel_3: + symbol: gKartPeach154TlutWheel3 + type: texture + offset: 0x83368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_155_tlut_wheel_0: + symbol: gKartPeach155TlutWheel0 + type: texture + offset: 0x833E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_155_tlut_wheel_1: + symbol: gKartPeach155TlutWheel1 + type: texture + offset: 0x83468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_155_tlut_wheel_2: + symbol: gKartPeach155TlutWheel2 + type: texture + offset: 0x834E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_155_tlut_wheel_3: + symbol: gKartPeach155TlutWheel3 + type: texture + offset: 0x83568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_156_tlut_wheel_0: + symbol: gKartPeach156TlutWheel0 + type: texture + offset: 0x835E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_156_tlut_wheel_1: + symbol: gKartPeach156TlutWheel1 + type: texture + offset: 0x83668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_156_tlut_wheel_2: + symbol: gKartPeach156TlutWheel2 + type: texture + offset: 0x836E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_156_tlut_wheel_3: + symbol: gKartPeach156TlutWheel3 + type: texture + offset: 0x83768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_157_tlut_wheel_0: + symbol: gKartPeach157TlutWheel0 + type: texture + offset: 0x837E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_157_tlut_wheel_1: + symbol: gKartPeach157TlutWheel1 + type: texture + offset: 0x83868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_157_tlut_wheel_2: + symbol: gKartPeach157TlutWheel2 + type: texture + offset: 0x838E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_157_tlut_wheel_3: + symbol: gKartPeach157TlutWheel3 + type: texture + offset: 0x83968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_158_tlut_wheel_0: + symbol: gKartPeach158TlutWheel0 + type: texture + offset: 0x839E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_158_tlut_wheel_1: + symbol: gKartPeach158TlutWheel1 + type: texture + offset: 0x83A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_158_tlut_wheel_2: + symbol: gKartPeach158TlutWheel2 + type: texture + offset: 0x83AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_158_tlut_wheel_3: + symbol: gKartPeach158TlutWheel3 + type: texture + offset: 0x83B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_159_tlut_wheel_0: + symbol: gKartPeach159TlutWheel0 + type: texture + offset: 0x83BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_159_tlut_wheel_1: + symbol: gKartPeach159TlutWheel1 + type: texture + offset: 0x83C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_159_tlut_wheel_2: + symbol: gKartPeach159TlutWheel2 + type: texture + offset: 0x83CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_159_tlut_wheel_3: + symbol: gKartPeach159TlutWheel3 + type: texture + offset: 0x83D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_160_tlut_wheel_0: + symbol: gKartPeach160TlutWheel0 + type: texture + offset: 0x83DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_160_tlut_wheel_1: + symbol: gKartPeach160TlutWheel1 + type: texture + offset: 0x83E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_160_tlut_wheel_2: + symbol: gKartPeach160TlutWheel2 + type: texture + offset: 0x83EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_160_tlut_wheel_3: + symbol: gKartPeach160TlutWheel3 + type: texture + offset: 0x83F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_161_tlut_wheel_0: + symbol: gKartPeach161TlutWheel0 + type: texture + offset: 0x83FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_161_tlut_wheel_1: + symbol: gKartPeach161TlutWheel1 + type: texture + offset: 0x84068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_161_tlut_wheel_2: + symbol: gKartPeach161TlutWheel2 + type: texture + offset: 0x840E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_161_tlut_wheel_3: + symbol: gKartPeach161TlutWheel3 + type: texture + offset: 0x84168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_162_tlut_wheel_0: + symbol: gKartPeach162TlutWheel0 + type: texture + offset: 0x841E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_162_tlut_wheel_1: + symbol: gKartPeach162TlutWheel1 + type: texture + offset: 0x84268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_162_tlut_wheel_2: + symbol: gKartPeach162TlutWheel2 + type: texture + offset: 0x842E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_162_tlut_wheel_3: + symbol: gKartPeach162TlutWheel3 + type: texture + offset: 0x84368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_163_tlut_wheel_0: + symbol: gKartPeach163TlutWheel0 + type: texture + offset: 0x843E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_163_tlut_wheel_1: + symbol: gKartPeach163TlutWheel1 + type: texture + offset: 0x84468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_163_tlut_wheel_2: + symbol: gKartPeach163TlutWheel2 + type: texture + offset: 0x844E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_163_tlut_wheel_3: + symbol: gKartPeach163TlutWheel3 + type: texture + offset: 0x84568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_164_tlut_wheel_0: + symbol: gKartPeach164TlutWheel0 + type: texture + offset: 0x845E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_164_tlut_wheel_1: + symbol: gKartPeach164TlutWheel1 + type: texture + offset: 0x84668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_164_tlut_wheel_2: + symbol: gKartPeach164TlutWheel2 + type: texture + offset: 0x846E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_164_tlut_wheel_3: + symbol: gKartPeach164TlutWheel3 + type: texture + offset: 0x84768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_165_tlut_wheel_0: + symbol: gKartPeach165TlutWheel0 + type: texture + offset: 0x847E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_165_tlut_wheel_1: + symbol: gKartPeach165TlutWheel1 + type: texture + offset: 0x84868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_165_tlut_wheel_2: + symbol: gKartPeach165TlutWheel2 + type: texture + offset: 0x848E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_165_tlut_wheel_3: + symbol: gKartPeach165TlutWheel3 + type: texture + offset: 0x84968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_166_tlut_wheel_0: + symbol: gKartPeach166TlutWheel0 + type: texture + offset: 0x849E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_166_tlut_wheel_1: + symbol: gKartPeach166TlutWheel1 + type: texture + offset: 0x84A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_166_tlut_wheel_2: + symbol: gKartPeach166TlutWheel2 + type: texture + offset: 0x84AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_166_tlut_wheel_3: + symbol: gKartPeach166TlutWheel3 + type: texture + offset: 0x84B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_167_tlut_wheel_0: + symbol: gKartPeach167TlutWheel0 + type: texture + offset: 0x84BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_167_tlut_wheel_1: + symbol: gKartPeach167TlutWheel1 + type: texture + offset: 0x84C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_167_tlut_wheel_2: + symbol: gKartPeach167TlutWheel2 + type: texture + offset: 0x84CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_167_tlut_wheel_3: + symbol: gKartPeach167TlutWheel3 + type: texture + offset: 0x84D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_168_tlut_wheel_0: + symbol: gKartPeach168TlutWheel0 + type: texture + offset: 0x84DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_168_tlut_wheel_1: + symbol: gKartPeach168TlutWheel1 + type: texture + offset: 0x84E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_168_tlut_wheel_2: + symbol: gKartPeach168TlutWheel2 + type: texture + offset: 0x84EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_168_tlut_wheel_3: + symbol: gKartPeach168TlutWheel3 + type: texture + offset: 0x84F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_169_tlut_wheel_0: + symbol: gKartPeach169TlutWheel0 + type: texture + offset: 0x84FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_169_tlut_wheel_1: + symbol: gKartPeach169TlutWheel1 + type: texture + offset: 0x85068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_169_tlut_wheel_2: + symbol: gKartPeach169TlutWheel2 + type: texture + offset: 0x850E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_169_tlut_wheel_3: + symbol: gKartPeach169TlutWheel3 + type: texture + offset: 0x85168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_170_tlut_wheel_0: + symbol: gKartPeach170TlutWheel0 + type: texture + offset: 0x851E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_170_tlut_wheel_1: + symbol: gKartPeach170TlutWheel1 + type: texture + offset: 0x85268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_170_tlut_wheel_2: + symbol: gKartPeach170TlutWheel2 + type: texture + offset: 0x852E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_170_tlut_wheel_3: + symbol: gKartPeach170TlutWheel3 + type: texture + offset: 0x85368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_171_tlut_wheel_0: + symbol: gKartPeach171TlutWheel0 + type: texture + offset: 0x853E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_171_tlut_wheel_1: + symbol: gKartPeach171TlutWheel1 + type: texture + offset: 0x85468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_171_tlut_wheel_2: + symbol: gKartPeach171TlutWheel2 + type: texture + offset: 0x854E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_171_tlut_wheel_3: + symbol: gKartPeach171TlutWheel3 + type: texture + offset: 0x85568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_172_tlut_wheel_0: + symbol: gKartPeach172TlutWheel0 + type: texture + offset: 0x855E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_172_tlut_wheel_1: + symbol: gKartPeach172TlutWheel1 + type: texture + offset: 0x85668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_172_tlut_wheel_2: + symbol: gKartPeach172TlutWheel2 + type: texture + offset: 0x856E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_172_tlut_wheel_3: + symbol: gKartPeach172TlutWheel3 + type: texture + offset: 0x85768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_173_tlut_wheel_0: + symbol: gKartPeach173TlutWheel0 + type: texture + offset: 0x857E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_173_tlut_wheel_1: + symbol: gKartPeach173TlutWheel1 + type: texture + offset: 0x85868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_173_tlut_wheel_2: + symbol: gKartPeach173TlutWheel2 + type: texture + offset: 0x858E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_173_tlut_wheel_3: + symbol: gKartPeach173TlutWheel3 + type: texture + offset: 0x85968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_174_tlut_wheel_0: + symbol: gKartPeach174TlutWheel0 + type: texture + offset: 0x859E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_174_tlut_wheel_1: + symbol: gKartPeach174TlutWheel1 + type: texture + offset: 0x85A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_174_tlut_wheel_2: + symbol: gKartPeach174TlutWheel2 + type: texture + offset: 0x85AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_174_tlut_wheel_3: + symbol: gKartPeach174TlutWheel3 + type: texture + offset: 0x85B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_175_tlut_wheel_0: + symbol: gKartPeach175TlutWheel0 + type: texture + offset: 0x85BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_175_tlut_wheel_1: + symbol: gKartPeach175TlutWheel1 + type: texture + offset: 0x85C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_175_tlut_wheel_2: + symbol: gKartPeach175TlutWheel2 + type: texture + offset: 0x85CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_175_tlut_wheel_3: + symbol: gKartPeach175TlutWheel3 + type: texture + offset: 0x85D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_176_tlut_wheel_0: + symbol: gKartPeach176TlutWheel0 + type: texture + offset: 0x85DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_176_tlut_wheel_1: + symbol: gKartPeach176TlutWheel1 + type: texture + offset: 0x85E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_176_tlut_wheel_2: + symbol: gKartPeach176TlutWheel2 + type: texture + offset: 0x85EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_176_tlut_wheel_3: + symbol: gKartPeach176TlutWheel3 + type: texture + offset: 0x85F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_177_tlut_wheel_0: + symbol: gKartPeach177TlutWheel0 + type: texture + offset: 0x85FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_177_tlut_wheel_1: + symbol: gKartPeach177TlutWheel1 + type: texture + offset: 0x86068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_177_tlut_wheel_2: + symbol: gKartPeach177TlutWheel2 + type: texture + offset: 0x860E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_177_tlut_wheel_3: + symbol: gKartPeach177TlutWheel3 + type: texture + offset: 0x86168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_178_tlut_wheel_0: + symbol: gKartPeach178TlutWheel0 + type: texture + offset: 0x861E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_178_tlut_wheel_1: + symbol: gKartPeach178TlutWheel1 + type: texture + offset: 0x86268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_178_tlut_wheel_2: + symbol: gKartPeach178TlutWheel2 + type: texture + offset: 0x862E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_178_tlut_wheel_3: + symbol: gKartPeach178TlutWheel3 + type: texture + offset: 0x86368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_179_tlut_wheel_0: + symbol: gKartPeach179TlutWheel0 + type: texture + offset: 0x863E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_179_tlut_wheel_1: + symbol: gKartPeach179TlutWheel1 + type: texture + offset: 0x86468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_179_tlut_wheel_2: + symbol: gKartPeach179TlutWheel2 + type: texture + offset: 0x864E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_179_tlut_wheel_3: + symbol: gKartPeach179TlutWheel3 + type: texture + offset: 0x86568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_180_tlut_wheel_0: + symbol: gKartPeach180TlutWheel0 + type: texture + offset: 0x865E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_180_tlut_wheel_1: + symbol: gKartPeach180TlutWheel1 + type: texture + offset: 0x86668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_180_tlut_wheel_2: + symbol: gKartPeach180TlutWheel2 + type: texture + offset: 0x866E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_180_tlut_wheel_3: + symbol: gKartPeach180TlutWheel3 + type: texture + offset: 0x86768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_181_tlut_wheel_0: + symbol: gKartPeach181TlutWheel0 + type: texture + offset: 0x867E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_181_tlut_wheel_1: + symbol: gKartPeach181TlutWheel1 + type: texture + offset: 0x86868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_181_tlut_wheel_2: + symbol: gKartPeach181TlutWheel2 + type: texture + offset: 0x868E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_181_tlut_wheel_3: + symbol: gKartPeach181TlutWheel3 + type: texture + offset: 0x86968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_182_tlut_wheel_0: + symbol: gKartPeach182TlutWheel0 + type: texture + offset: 0x869E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_182_tlut_wheel_1: + symbol: gKartPeach182TlutWheel1 + type: texture + offset: 0x86A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_182_tlut_wheel_2: + symbol: gKartPeach182TlutWheel2 + type: texture + offset: 0x86AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_182_tlut_wheel_3: + symbol: gKartPeach182TlutWheel3 + type: texture + offset: 0x86B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_183_tlut_wheel_0: + symbol: gKartPeach183TlutWheel0 + type: texture + offset: 0x86BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_183_tlut_wheel_1: + symbol: gKartPeach183TlutWheel1 + type: texture + offset: 0x86C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_183_tlut_wheel_2: + symbol: gKartPeach183TlutWheel2 + type: texture + offset: 0x86CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_183_tlut_wheel_3: + symbol: gKartPeach183TlutWheel3 + type: texture + offset: 0x86D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_184_tlut_wheel_0: + symbol: gKartPeach184TlutWheel0 + type: texture + offset: 0x86DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_184_tlut_wheel_1: + symbol: gKartPeach184TlutWheel1 + type: texture + offset: 0x86E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_184_tlut_wheel_2: + symbol: gKartPeach184TlutWheel2 + type: texture + offset: 0x86EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_184_tlut_wheel_3: + symbol: gKartPeach184TlutWheel3 + type: texture + offset: 0x86F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_185_tlut_wheel_0: + symbol: gKartPeach185TlutWheel0 + type: texture + offset: 0x86FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_185_tlut_wheel_1: + symbol: gKartPeach185TlutWheel1 + type: texture + offset: 0x87068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_185_tlut_wheel_2: + symbol: gKartPeach185TlutWheel2 + type: texture + offset: 0x870E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_185_tlut_wheel_3: + symbol: gKartPeach185TlutWheel3 + type: texture + offset: 0x87168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_186_tlut_wheel_0: + symbol: gKartPeach186TlutWheel0 + type: texture + offset: 0x871E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_186_tlut_wheel_1: + symbol: gKartPeach186TlutWheel1 + type: texture + offset: 0x87268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_186_tlut_wheel_2: + symbol: gKartPeach186TlutWheel2 + type: texture + offset: 0x872E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_186_tlut_wheel_3: + symbol: gKartPeach186TlutWheel3 + type: texture + offset: 0x87368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_187_tlut_wheel_0: + symbol: gKartPeach187TlutWheel0 + type: texture + offset: 0x873E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_187_tlut_wheel_1: + symbol: gKartPeach187TlutWheel1 + type: texture + offset: 0x87468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_187_tlut_wheel_2: + symbol: gKartPeach187TlutWheel2 + type: texture + offset: 0x874E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_187_tlut_wheel_3: + symbol: gKartPeach187TlutWheel3 + type: texture + offset: 0x87568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_188_tlut_wheel_0: + symbol: gKartPeach188TlutWheel0 + type: texture + offset: 0x875E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_188_tlut_wheel_1: + symbol: gKartPeach188TlutWheel1 + type: texture + offset: 0x87668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_188_tlut_wheel_2: + symbol: gKartPeach188TlutWheel2 + type: texture + offset: 0x876E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_188_tlut_wheel_3: + symbol: gKartPeach188TlutWheel3 + type: texture + offset: 0x87768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_189_tlut_wheel_0: + symbol: gKartPeach189TlutWheel0 + type: texture + offset: 0x877E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_189_tlut_wheel_1: + symbol: gKartPeach189TlutWheel1 + type: texture + offset: 0x87868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_189_tlut_wheel_2: + symbol: gKartPeach189TlutWheel2 + type: texture + offset: 0x878E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_189_tlut_wheel_3: + symbol: gKartPeach189TlutWheel3 + type: texture + offset: 0x87968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_190_tlut_wheel_0: + symbol: gKartPeach190TlutWheel0 + type: texture + offset: 0x879E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_190_tlut_wheel_1: + symbol: gKartPeach190TlutWheel1 + type: texture + offset: 0x87A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_190_tlut_wheel_2: + symbol: gKartPeach190TlutWheel2 + type: texture + offset: 0x87AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_190_tlut_wheel_3: + symbol: gKartPeach190TlutWheel3 + type: texture + offset: 0x87B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_191_tlut_wheel_0: + symbol: gKartPeach191TlutWheel0 + type: texture + offset: 0x87BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_191_tlut_wheel_1: + symbol: gKartPeach191TlutWheel1 + type: texture + offset: 0x87C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_191_tlut_wheel_2: + symbol: gKartPeach191TlutWheel2 + type: texture + offset: 0x87CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_191_tlut_wheel_3: + symbol: gKartPeach191TlutWheel3 + type: texture + offset: 0x87D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_192_tlut_wheel_0: + symbol: gKartPeach192TlutWheel0 + type: texture + offset: 0x87DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_192_tlut_wheel_1: + symbol: gKartPeach192TlutWheel1 + type: texture + offset: 0x87E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_192_tlut_wheel_2: + symbol: gKartPeach192TlutWheel2 + type: texture + offset: 0x87EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_192_tlut_wheel_3: + symbol: gKartPeach192TlutWheel3 + type: texture + offset: 0x87F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_193_tlut_wheel_0: + symbol: gKartPeach193TlutWheel0 + type: texture + offset: 0x87FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_193_tlut_wheel_1: + symbol: gKartPeach193TlutWheel1 + type: texture + offset: 0x88068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_193_tlut_wheel_2: + symbol: gKartPeach193TlutWheel2 + type: texture + offset: 0x880E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_193_tlut_wheel_3: + symbol: gKartPeach193TlutWheel3 + type: texture + offset: 0x88168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_194_tlut_wheel_0: + symbol: gKartPeach194TlutWheel0 + type: texture + offset: 0x881E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_194_tlut_wheel_1: + symbol: gKartPeach194TlutWheel1 + type: texture + offset: 0x88268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_194_tlut_wheel_2: + symbol: gKartPeach194TlutWheel2 + type: texture + offset: 0x882E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_194_tlut_wheel_3: + symbol: gKartPeach194TlutWheel3 + type: texture + offset: 0x88368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_195_tlut_wheel_0: + symbol: gKartPeach195TlutWheel0 + type: texture + offset: 0x883E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_195_tlut_wheel_1: + symbol: gKartPeach195TlutWheel1 + type: texture + offset: 0x88468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_195_tlut_wheel_2: + symbol: gKartPeach195TlutWheel2 + type: texture + offset: 0x884E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_195_tlut_wheel_3: + symbol: gKartPeach195TlutWheel3 + type: texture + offset: 0x88568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_196_tlut_wheel_0: + symbol: gKartPeach196TlutWheel0 + type: texture + offset: 0x885E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_196_tlut_wheel_1: + symbol: gKartPeach196TlutWheel1 + type: texture + offset: 0x88668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_196_tlut_wheel_2: + symbol: gKartPeach196TlutWheel2 + type: texture + offset: 0x886E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_196_tlut_wheel_3: + symbol: gKartPeach196TlutWheel3 + type: texture + offset: 0x88768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_197_tlut_wheel_0: + symbol: gKartPeach197TlutWheel0 + type: texture + offset: 0x887E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_197_tlut_wheel_1: + symbol: gKartPeach197TlutWheel1 + type: texture + offset: 0x88868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_197_tlut_wheel_2: + symbol: gKartPeach197TlutWheel2 + type: texture + offset: 0x888E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_197_tlut_wheel_3: + symbol: gKartPeach197TlutWheel3 + type: texture + offset: 0x88968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_198_tlut_wheel_0: + symbol: gKartPeach198TlutWheel0 + type: texture + offset: 0x889E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_198_tlut_wheel_1: + symbol: gKartPeach198TlutWheel1 + type: texture + offset: 0x88A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_198_tlut_wheel_2: + symbol: gKartPeach198TlutWheel2 + type: texture + offset: 0x88AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_198_tlut_wheel_3: + symbol: gKartPeach198TlutWheel3 + type: texture + offset: 0x88B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_199_tlut_wheel_0: + symbol: gKartPeach199TlutWheel0 + type: texture + offset: 0x88BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_199_tlut_wheel_1: + symbol: gKartPeach199TlutWheel1 + type: texture + offset: 0x88C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_199_tlut_wheel_2: + symbol: gKartPeach199TlutWheel2 + type: texture + offset: 0x88CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_199_tlut_wheel_3: + symbol: gKartPeach199TlutWheel3 + type: texture + offset: 0x88D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_200_tlut_wheel_0: + symbol: gKartPeach200TlutWheel0 + type: texture + offset: 0x88DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_200_tlut_wheel_1: + symbol: gKartPeach200TlutWheel1 + type: texture + offset: 0x88E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_200_tlut_wheel_2: + symbol: gKartPeach200TlutWheel2 + type: texture + offset: 0x88EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_200_tlut_wheel_3: + symbol: gKartPeach200TlutWheel3 + type: texture + offset: 0x88F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_201_tlut_wheel_0: + symbol: gKartPeach201TlutWheel0 + type: texture + offset: 0x88FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_201_tlut_wheel_1: + symbol: gKartPeach201TlutWheel1 + type: texture + offset: 0x89068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_201_tlut_wheel_2: + symbol: gKartPeach201TlutWheel2 + type: texture + offset: 0x890E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_201_tlut_wheel_3: + symbol: gKartPeach201TlutWheel3 + type: texture + offset: 0x89168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_202_tlut_wheel_0: + symbol: gKartPeach202TlutWheel0 + type: texture + offset: 0x891E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_202_tlut_wheel_1: + symbol: gKartPeach202TlutWheel1 + type: texture + offset: 0x89268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_202_tlut_wheel_2: + symbol: gKartPeach202TlutWheel2 + type: texture + offset: 0x892E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_202_tlut_wheel_3: + symbol: gKartPeach202TlutWheel3 + type: texture + offset: 0x89368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_203_tlut_wheel_0: + symbol: gKartPeach203TlutWheel0 + type: texture + offset: 0x893E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_203_tlut_wheel_1: + symbol: gKartPeach203TlutWheel1 + type: texture + offset: 0x89468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_203_tlut_wheel_2: + symbol: gKartPeach203TlutWheel2 + type: texture + offset: 0x894E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_203_tlut_wheel_3: + symbol: gKartPeach203TlutWheel3 + type: texture + offset: 0x89568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_204_tlut_wheel_0: + symbol: gKartPeach204TlutWheel0 + type: texture + offset: 0x895E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_204_tlut_wheel_1: + symbol: gKartPeach204TlutWheel1 + type: texture + offset: 0x89668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_204_tlut_wheel_2: + symbol: gKartPeach204TlutWheel2 + type: texture + offset: 0x896E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_204_tlut_wheel_3: + symbol: gKartPeach204TlutWheel3 + type: texture + offset: 0x89768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_205_tlut_wheel_0: + symbol: gKartPeach205TlutWheel0 + type: texture + offset: 0x897E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_205_tlut_wheel_1: + symbol: gKartPeach205TlutWheel1 + type: texture + offset: 0x89868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_205_tlut_wheel_2: + symbol: gKartPeach205TlutWheel2 + type: texture + offset: 0x898E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_205_tlut_wheel_3: + symbol: gKartPeach205TlutWheel3 + type: texture + offset: 0x89968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_206_tlut_wheel_0: + symbol: gKartPeach206TlutWheel0 + type: texture + offset: 0x899E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_206_tlut_wheel_1: + symbol: gKartPeach206TlutWheel1 + type: texture + offset: 0x89A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_206_tlut_wheel_2: + symbol: gKartPeach206TlutWheel2 + type: texture + offset: 0x89AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_206_tlut_wheel_3: + symbol: gKartPeach206TlutWheel3 + type: texture + offset: 0x89B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_207_tlut_wheel_0: + symbol: gKartPeach207TlutWheel0 + type: texture + offset: 0x89BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_207_tlut_wheel_1: + symbol: gKartPeach207TlutWheel1 + type: texture + offset: 0x89C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_207_tlut_wheel_2: + symbol: gKartPeach207TlutWheel2 + type: texture + offset: 0x89CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_207_tlut_wheel_3: + symbol: gKartPeach207TlutWheel3 + type: texture + offset: 0x89D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_208_tlut_wheel_0: + symbol: gKartPeach208TlutWheel0 + type: texture + offset: 0x89DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_208_tlut_wheel_1: + symbol: gKartPeach208TlutWheel1 + type: texture + offset: 0x89E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_208_tlut_wheel_2: + symbol: gKartPeach208TlutWheel2 + type: texture + offset: 0x89EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_208_tlut_wheel_3: + symbol: gKartPeach208TlutWheel3 + type: texture + offset: 0x89F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_209_tlut_wheel_0: + symbol: gKartPeach209TlutWheel0 + type: texture + offset: 0x89FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_209_tlut_wheel_1: + symbol: gKartPeach209TlutWheel1 + type: texture + offset: 0x8A068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_209_tlut_wheel_2: + symbol: gKartPeach209TlutWheel2 + type: texture + offset: 0x8A0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_209_tlut_wheel_3: + symbol: gKartPeach209TlutWheel3 + type: texture + offset: 0x8A168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_210_tlut_wheel_0: + symbol: gKartPeach210TlutWheel0 + type: texture + offset: 0x8A1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_210_tlut_wheel_1: + symbol: gKartPeach210TlutWheel1 + type: texture + offset: 0x8A268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_210_tlut_wheel_2: + symbol: gKartPeach210TlutWheel2 + type: texture + offset: 0x8A2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_210_tlut_wheel_3: + symbol: gKartPeach210TlutWheel3 + type: texture + offset: 0x8A368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_211_tlut_wheel_0: + symbol: gKartPeach211TlutWheel0 + type: texture + offset: 0x8A3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_211_tlut_wheel_1: + symbol: gKartPeach211TlutWheel1 + type: texture + offset: 0x8A468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_211_tlut_wheel_2: + symbol: gKartPeach211TlutWheel2 + type: texture + offset: 0x8A4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_211_tlut_wheel_3: + symbol: gKartPeach211TlutWheel3 + type: texture + offset: 0x8A568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_212_tlut_wheel_0: + symbol: gKartPeach212TlutWheel0 + type: texture + offset: 0x8A5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_212_tlut_wheel_1: + symbol: gKartPeach212TlutWheel1 + type: texture + offset: 0x8A668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_212_tlut_wheel_2: + symbol: gKartPeach212TlutWheel2 + type: texture + offset: 0x8A6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_212_tlut_wheel_3: + symbol: gKartPeach212TlutWheel3 + type: texture + offset: 0x8A768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_213_tlut_wheel_0: + symbol: gKartPeach213TlutWheel0 + type: texture + offset: 0x8A7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_213_tlut_wheel_1: + symbol: gKartPeach213TlutWheel1 + type: texture + offset: 0x8A868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_213_tlut_wheel_2: + symbol: gKartPeach213TlutWheel2 + type: texture + offset: 0x8A8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_213_tlut_wheel_3: + symbol: gKartPeach213TlutWheel3 + type: texture + offset: 0x8A968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_214_tlut_wheel_0: + symbol: gKartPeach214TlutWheel0 + type: texture + offset: 0x8A9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_214_tlut_wheel_1: + symbol: gKartPeach214TlutWheel1 + type: texture + offset: 0x8AA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_214_tlut_wheel_2: + symbol: gKartPeach214TlutWheel2 + type: texture + offset: 0x8AAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_214_tlut_wheel_3: + symbol: gKartPeach214TlutWheel3 + type: texture + offset: 0x8AB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_215_tlut_wheel_0: + symbol: gKartPeach215TlutWheel0 + type: texture + offset: 0x8ABE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_215_tlut_wheel_1: + symbol: gKartPeach215TlutWheel1 + type: texture + offset: 0x8AC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_215_tlut_wheel_2: + symbol: gKartPeach215TlutWheel2 + type: texture + offset: 0x8ACE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_215_tlut_wheel_3: + symbol: gKartPeach215TlutWheel3 + type: texture + offset: 0x8AD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_216_tlut_wheel_0: + symbol: gKartPeach216TlutWheel0 + type: texture + offset: 0x8ADE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_216_tlut_wheel_1: + symbol: gKartPeach216TlutWheel1 + type: texture + offset: 0x8AE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_216_tlut_wheel_2: + symbol: gKartPeach216TlutWheel2 + type: texture + offset: 0x8AEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_216_tlut_wheel_3: + symbol: gKartPeach216TlutWheel3 + type: texture + offset: 0x8AF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_217_tlut_wheel_0: + symbol: gKartPeach217TlutWheel0 + type: texture + offset: 0x8AFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_217_tlut_wheel_1: + symbol: gKartPeach217TlutWheel1 + type: texture + offset: 0x8B068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_217_tlut_wheel_2: + symbol: gKartPeach217TlutWheel2 + type: texture + offset: 0x8B0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_217_tlut_wheel_3: + symbol: gKartPeach217TlutWheel3 + type: texture + offset: 0x8B168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_218_tlut_wheel_0: + symbol: gKartPeach218TlutWheel0 + type: texture + offset: 0x8B1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_218_tlut_wheel_1: + symbol: gKartPeach218TlutWheel1 + type: texture + offset: 0x8B268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_218_tlut_wheel_2: + symbol: gKartPeach218TlutWheel2 + type: texture + offset: 0x8B2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_218_tlut_wheel_3: + symbol: gKartPeach218TlutWheel3 + type: texture + offset: 0x8B368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_219_tlut_wheel_0: + symbol: gKartPeach219TlutWheel0 + type: texture + offset: 0x8B3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_219_tlut_wheel_1: + symbol: gKartPeach219TlutWheel1 + type: texture + offset: 0x8B468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_219_tlut_wheel_2: + symbol: gKartPeach219TlutWheel2 + type: texture + offset: 0x8B4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_219_tlut_wheel_3: + symbol: gKartPeach219TlutWheel3 + type: texture + offset: 0x8B568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_220_tlut_wheel_0: + symbol: gKartPeach220TlutWheel0 + type: texture + offset: 0x8B5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_220_tlut_wheel_1: + symbol: gKartPeach220TlutWheel1 + type: texture + offset: 0x8B668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_220_tlut_wheel_2: + symbol: gKartPeach220TlutWheel2 + type: texture + offset: 0x8B6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_220_tlut_wheel_3: + symbol: gKartPeach220TlutWheel3 + type: texture + offset: 0x8B768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_221_tlut_wheel_0: + symbol: gKartPeach221TlutWheel0 + type: texture + offset: 0x8B7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_221_tlut_wheel_1: + symbol: gKartPeach221TlutWheel1 + type: texture + offset: 0x8B868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_221_tlut_wheel_2: + symbol: gKartPeach221TlutWheel2 + type: texture + offset: 0x8B8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_221_tlut_wheel_3: + symbol: gKartPeach221TlutWheel3 + type: texture + offset: 0x8B968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_222_tlut_wheel_0: + symbol: gKartPeach222TlutWheel0 + type: texture + offset: 0x8B9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_222_tlut_wheel_1: + symbol: gKartPeach222TlutWheel1 + type: texture + offset: 0x8BA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_222_tlut_wheel_2: + symbol: gKartPeach222TlutWheel2 + type: texture + offset: 0x8BAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_222_tlut_wheel_3: + symbol: gKartPeach222TlutWheel3 + type: texture + offset: 0x8BB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_223_tlut_wheel_0: + symbol: gKartPeach223TlutWheel0 + type: texture + offset: 0x8BBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_223_tlut_wheel_1: + symbol: gKartPeach223TlutWheel1 + type: texture + offset: 0x8BC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_223_tlut_wheel_2: + symbol: gKartPeach223TlutWheel2 + type: texture + offset: 0x8BCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_223_tlut_wheel_3: + symbol: gKartPeach223TlutWheel3 + type: texture + offset: 0x8BD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_224_tlut_wheel_0: + symbol: gKartPeach224TlutWheel0 + type: texture + offset: 0x8BDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_224_tlut_wheel_1: + symbol: gKartPeach224TlutWheel1 + type: texture + offset: 0x8BE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_224_tlut_wheel_2: + symbol: gKartPeach224TlutWheel2 + type: texture + offset: 0x8BEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_224_tlut_wheel_3: + symbol: gKartPeach224TlutWheel3 + type: texture + offset: 0x8BF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_225_tlut_wheel_0: + symbol: gKartPeach225TlutWheel0 + type: texture + offset: 0x8BFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_225_tlut_wheel_1: + symbol: gKartPeach225TlutWheel1 + type: texture + offset: 0x8C068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_225_tlut_wheel_2: + symbol: gKartPeach225TlutWheel2 + type: texture + offset: 0x8C0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_225_tlut_wheel_3: + symbol: gKartPeach225TlutWheel3 + type: texture + offset: 0x8C168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_226_tlut_wheel_0: + symbol: gKartPeach226TlutWheel0 + type: texture + offset: 0x8C1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_226_tlut_wheel_1: + symbol: gKartPeach226TlutWheel1 + type: texture + offset: 0x8C268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_226_tlut_wheel_2: + symbol: gKartPeach226TlutWheel2 + type: texture + offset: 0x8C2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_226_tlut_wheel_3: + symbol: gKartPeach226TlutWheel3 + type: texture + offset: 0x8C368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_227_tlut_wheel_0: + symbol: gKartPeach227TlutWheel0 + type: texture + offset: 0x8C3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_227_tlut_wheel_1: + symbol: gKartPeach227TlutWheel1 + type: texture + offset: 0x8C468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_227_tlut_wheel_2: + symbol: gKartPeach227TlutWheel2 + type: texture + offset: 0x8C4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_227_tlut_wheel_3: + symbol: gKartPeach227TlutWheel3 + type: texture + offset: 0x8C568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_228_tlut_wheel_0: + symbol: gKartPeach228TlutWheel0 + type: texture + offset: 0x8C5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_228_tlut_wheel_1: + symbol: gKartPeach228TlutWheel1 + type: texture + offset: 0x8C668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_228_tlut_wheel_2: + symbol: gKartPeach228TlutWheel2 + type: texture + offset: 0x8C6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_228_tlut_wheel_3: + symbol: gKartPeach228TlutWheel3 + type: texture + offset: 0x8C768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_229_tlut_wheel_0: + symbol: gKartPeach229TlutWheel0 + type: texture + offset: 0x8C7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_229_tlut_wheel_1: + symbol: gKartPeach229TlutWheel1 + type: texture + offset: 0x8C868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_229_tlut_wheel_2: + symbol: gKartPeach229TlutWheel2 + type: texture + offset: 0x8C8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_229_tlut_wheel_3: + symbol: gKartPeach229TlutWheel3 + type: texture + offset: 0x8C968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_230_tlut_wheel_0: + symbol: gKartPeach230TlutWheel0 + type: texture + offset: 0x8C9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_230_tlut_wheel_1: + symbol: gKartPeach230TlutWheel1 + type: texture + offset: 0x8CA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_230_tlut_wheel_2: + symbol: gKartPeach230TlutWheel2 + type: texture + offset: 0x8CAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_230_tlut_wheel_3: + symbol: gKartPeach230TlutWheel3 + type: texture + offset: 0x8CB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_231_tlut_wheel_0: + symbol: gKartPeach231TlutWheel0 + type: texture + offset: 0x8CBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_231_tlut_wheel_1: + symbol: gKartPeach231TlutWheel1 + type: texture + offset: 0x8CC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_231_tlut_wheel_2: + symbol: gKartPeach231TlutWheel2 + type: texture + offset: 0x8CCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_231_tlut_wheel_3: + symbol: gKartPeach231TlutWheel3 + type: texture + offset: 0x8CD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_232_tlut_wheel_0: + symbol: gKartPeach232TlutWheel0 + type: texture + offset: 0x8CDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_232_tlut_wheel_1: + symbol: gKartPeach232TlutWheel1 + type: texture + offset: 0x8CE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_232_tlut_wheel_2: + symbol: gKartPeach232TlutWheel2 + type: texture + offset: 0x8CEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_232_tlut_wheel_3: + symbol: gKartPeach232TlutWheel3 + type: texture + offset: 0x8CF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_233_tlut_wheel_0: + symbol: gKartPeach233TlutWheel0 + type: texture + offset: 0x8CFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_233_tlut_wheel_1: + symbol: gKartPeach233TlutWheel1 + type: texture + offset: 0x8D068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_233_tlut_wheel_2: + symbol: gKartPeach233TlutWheel2 + type: texture + offset: 0x8D0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_233_tlut_wheel_3: + symbol: gKartPeach233TlutWheel3 + type: texture + offset: 0x8D168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_234_tlut_wheel_0: + symbol: gKartPeach234TlutWheel0 + type: texture + offset: 0x8D1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_234_tlut_wheel_1: + symbol: gKartPeach234TlutWheel1 + type: texture + offset: 0x8D268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_234_tlut_wheel_2: + symbol: gKartPeach234TlutWheel2 + type: texture + offset: 0x8D2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_234_tlut_wheel_3: + symbol: gKartPeach234TlutWheel3 + type: texture + offset: 0x8D368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_235_tlut_wheel_0: + symbol: gKartPeach235TlutWheel0 + type: texture + offset: 0x8D3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_235_tlut_wheel_1: + symbol: gKartPeach235TlutWheel1 + type: texture + offset: 0x8D468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_235_tlut_wheel_2: + symbol: gKartPeach235TlutWheel2 + type: texture + offset: 0x8D4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_235_tlut_wheel_3: + symbol: gKartPeach235TlutWheel3 + type: texture + offset: 0x8D568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_236_tlut_wheel_0: + symbol: gKartPeach236TlutWheel0 + type: texture + offset: 0x8D5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_236_tlut_wheel_1: + symbol: gKartPeach236TlutWheel1 + type: texture + offset: 0x8D668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_236_tlut_wheel_2: + symbol: gKartPeach236TlutWheel2 + type: texture + offset: 0x8D6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_236_tlut_wheel_3: + symbol: gKartPeach236TlutWheel3 + type: texture + offset: 0x8D768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_237_tlut_wheel_0: + symbol: gKartPeach237TlutWheel0 + type: texture + offset: 0x8D7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_237_tlut_wheel_1: + symbol: gKartPeach237TlutWheel1 + type: texture + offset: 0x8D868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_237_tlut_wheel_2: + symbol: gKartPeach237TlutWheel2 + type: texture + offset: 0x8D8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_237_tlut_wheel_3: + symbol: gKartPeach237TlutWheel3 + type: texture + offset: 0x8D968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_238_tlut_wheel_0: + symbol: gKartPeach238TlutWheel0 + type: texture + offset: 0x8D9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_238_tlut_wheel_1: + symbol: gKartPeach238TlutWheel1 + type: texture + offset: 0x8DA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_238_tlut_wheel_2: + symbol: gKartPeach238TlutWheel2 + type: texture + offset: 0x8DAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_238_tlut_wheel_3: + symbol: gKartPeach238TlutWheel3 + type: texture + offset: 0x8DB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_239_tlut_wheel_0: + symbol: gKartPeach239TlutWheel0 + type: texture + offset: 0x8DBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_239_tlut_wheel_1: + symbol: gKartPeach239TlutWheel1 + type: texture + offset: 0x8DC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_239_tlut_wheel_2: + symbol: gKartPeach239TlutWheel2 + type: texture + offset: 0x8DCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_239_tlut_wheel_3: + symbol: gKartPeach239TlutWheel3 + type: texture + offset: 0x8DD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_240_tlut_wheel_0: + symbol: gKartPeach240TlutWheel0 + type: texture + offset: 0x8DDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_240_tlut_wheel_1: + symbol: gKartPeach240TlutWheel1 + type: texture + offset: 0x8DE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_240_tlut_wheel_2: + symbol: gKartPeach240TlutWheel2 + type: texture + offset: 0x8DEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_240_tlut_wheel_3: + symbol: gKartPeach240TlutWheel3 + type: texture + offset: 0x8DF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_241_tlut_wheel_0: + symbol: gKartPeach241TlutWheel0 + type: texture + offset: 0x8DFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_241_tlut_wheel_1: + symbol: gKartPeach241TlutWheel1 + type: texture + offset: 0x8E068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_241_tlut_wheel_2: + symbol: gKartPeach241TlutWheel2 + type: texture + offset: 0x8E0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_241_tlut_wheel_3: + symbol: gKartPeach241TlutWheel3 + type: texture + offset: 0x8E168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_242_tlut_wheel_0: + symbol: gKartPeach242TlutWheel0 + type: texture + offset: 0x8E1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_242_tlut_wheel_1: + symbol: gKartPeach242TlutWheel1 + type: texture + offset: 0x8E268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_242_tlut_wheel_2: + symbol: gKartPeach242TlutWheel2 + type: texture + offset: 0x8E2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_242_tlut_wheel_3: + symbol: gKartPeach242TlutWheel3 + type: texture + offset: 0x8E368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_243_tlut_wheel_0: + symbol: gKartPeach243TlutWheel0 + type: texture + offset: 0x8E3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_243_tlut_wheel_1: + symbol: gKartPeach243TlutWheel1 + type: texture + offset: 0x8E468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_243_tlut_wheel_2: + symbol: gKartPeach243TlutWheel2 + type: texture + offset: 0x8E4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_243_tlut_wheel_3: + symbol: gKartPeach243TlutWheel3 + type: texture + offset: 0x8E568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_244_tlut_wheel_0: + symbol: gKartPeach244TlutWheel0 + type: texture + offset: 0x8E5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_244_tlut_wheel_1: + symbol: gKartPeach244TlutWheel1 + type: texture + offset: 0x8E668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_244_tlut_wheel_2: + symbol: gKartPeach244TlutWheel2 + type: texture + offset: 0x8E6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_244_tlut_wheel_3: + symbol: gKartPeach244TlutWheel3 + type: texture + offset: 0x8E768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_245_tlut_wheel_0: + symbol: gKartPeach245TlutWheel0 + type: texture + offset: 0x8E7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_245_tlut_wheel_1: + symbol: gKartPeach245TlutWheel1 + type: texture + offset: 0x8E868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_245_tlut_wheel_2: + symbol: gKartPeach245TlutWheel2 + type: texture + offset: 0x8E8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_245_tlut_wheel_3: + symbol: gKartPeach245TlutWheel3 + type: texture + offset: 0x8E968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_246_tlut_wheel_0: + symbol: gKartPeach246TlutWheel0 + type: texture + offset: 0x8E9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_246_tlut_wheel_1: + symbol: gKartPeach246TlutWheel1 + type: texture + offset: 0x8EA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_246_tlut_wheel_2: + symbol: gKartPeach246TlutWheel2 + type: texture + offset: 0x8EAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_246_tlut_wheel_3: + symbol: gKartPeach246TlutWheel3 + type: texture + offset: 0x8EB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_247_tlut_wheel_0: + symbol: gKartPeach247TlutWheel0 + type: texture + offset: 0x8EBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_247_tlut_wheel_1: + symbol: gKartPeach247TlutWheel1 + type: texture + offset: 0x8EC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_247_tlut_wheel_2: + symbol: gKartPeach247TlutWheel2 + type: texture + offset: 0x8ECE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_247_tlut_wheel_3: + symbol: gKartPeach247TlutWheel3 + type: texture + offset: 0x8ED68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_248_tlut_wheel_0: + symbol: gKartPeach248TlutWheel0 + type: texture + offset: 0x8EDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_248_tlut_wheel_1: + symbol: gKartPeach248TlutWheel1 + type: texture + offset: 0x8EE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_248_tlut_wheel_2: + symbol: gKartPeach248TlutWheel2 + type: texture + offset: 0x8EEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_248_tlut_wheel_3: + symbol: gKartPeach248TlutWheel3 + type: texture + offset: 0x8EF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_249_tlut_wheel_0: + symbol: gKartPeach249TlutWheel0 + type: texture + offset: 0x8EFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_249_tlut_wheel_1: + symbol: gKartPeach249TlutWheel1 + type: texture + offset: 0x8F068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_249_tlut_wheel_2: + symbol: gKartPeach249TlutWheel2 + type: texture + offset: 0x8F0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_249_tlut_wheel_3: + symbol: gKartPeach249TlutWheel3 + type: texture + offset: 0x8F168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_250_tlut_wheel_0: + symbol: gKartPeach250TlutWheel0 + type: texture + offset: 0x8F1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_250_tlut_wheel_1: + symbol: gKartPeach250TlutWheel1 + type: texture + offset: 0x8F268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_250_tlut_wheel_2: + symbol: gKartPeach250TlutWheel2 + type: texture + offset: 0x8F2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_250_tlut_wheel_3: + symbol: gKartPeach250TlutWheel3 + type: texture + offset: 0x8F368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_251_tlut_wheel_0: + symbol: gKartPeach251TlutWheel0 + type: texture + offset: 0x8F3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_251_tlut_wheel_1: + symbol: gKartPeach251TlutWheel1 + type: texture + offset: 0x8F468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_251_tlut_wheel_2: + symbol: gKartPeach251TlutWheel2 + type: texture + offset: 0x8F4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_251_tlut_wheel_3: + symbol: gKartPeach251TlutWheel3 + type: texture + offset: 0x8F568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_252_tlut_wheel_0: + symbol: gKartPeach252TlutWheel0 + type: texture + offset: 0x8F5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_252_tlut_wheel_1: + symbol: gKartPeach252TlutWheel1 + type: texture + offset: 0x8F668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_252_tlut_wheel_2: + symbol: gKartPeach252TlutWheel2 + type: texture + offset: 0x8F6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_252_tlut_wheel_3: + symbol: gKartPeach252TlutWheel3 + type: texture + offset: 0x8F768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_253_tlut_wheel_0: + symbol: gKartPeach253TlutWheel0 + type: texture + offset: 0x8F7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_253_tlut_wheel_1: + symbol: gKartPeach253TlutWheel1 + type: texture + offset: 0x8F868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_253_tlut_wheel_2: + symbol: gKartPeach253TlutWheel2 + type: texture + offset: 0x8F8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_253_tlut_wheel_3: + symbol: gKartPeach253TlutWheel3 + type: texture + offset: 0x8F968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_254_tlut_wheel_0: + symbol: gKartPeach254TlutWheel0 + type: texture + offset: 0x8F9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_254_tlut_wheel_1: + symbol: gKartPeach254TlutWheel1 + type: texture + offset: 0x8FA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_254_tlut_wheel_2: + symbol: gKartPeach254TlutWheel2 + type: texture + offset: 0x8FAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_254_tlut_wheel_3: + symbol: gKartPeach254TlutWheel3 + type: texture + offset: 0x8FB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_255_tlut_wheel_0: + symbol: gKartPeach255TlutWheel0 + type: texture + offset: 0x8FBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_255_tlut_wheel_1: + symbol: gKartPeach255TlutWheel1 + type: texture + offset: 0x8FC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_255_tlut_wheel_2: + symbol: gKartPeach255TlutWheel2 + type: texture + offset: 0x8FCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_255_tlut_wheel_3: + symbol: gKartPeach255TlutWheel3 + type: texture + offset: 0x8FD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_256_tlut_wheel_0: + symbol: gKartPeach256TlutWheel0 + type: texture + offset: 0x8FDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_256_tlut_wheel_1: + symbol: gKartPeach256TlutWheel1 + type: texture + offset: 0x8FE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_256_tlut_wheel_2: + symbol: gKartPeach256TlutWheel2 + type: texture + offset: 0x8FEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_256_tlut_wheel_3: + symbol: gKartPeach256TlutWheel3 + type: texture + offset: 0x8FF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_257_tlut_wheel_0: + symbol: gKartPeach257TlutWheel0 + type: texture + offset: 0x8FFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_257_tlut_wheel_1: + symbol: gKartPeach257TlutWheel1 + type: texture + offset: 0x90068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_257_tlut_wheel_2: + symbol: gKartPeach257TlutWheel2 + type: texture + offset: 0x900E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_257_tlut_wheel_3: + symbol: gKartPeach257TlutWheel3 + type: texture + offset: 0x90168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_258_tlut_wheel_0: + symbol: gKartPeach258TlutWheel0 + type: texture + offset: 0x901E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_258_tlut_wheel_1: + symbol: gKartPeach258TlutWheel1 + type: texture + offset: 0x90268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_258_tlut_wheel_2: + symbol: gKartPeach258TlutWheel2 + type: texture + offset: 0x902E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_258_tlut_wheel_3: + symbol: gKartPeach258TlutWheel3 + type: texture + offset: 0x90368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_259_tlut_wheel_0: + symbol: gKartPeach259TlutWheel0 + type: texture + offset: 0x903E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_259_tlut_wheel_1: + symbol: gKartPeach259TlutWheel1 + type: texture + offset: 0x90468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_259_tlut_wheel_2: + symbol: gKartPeach259TlutWheel2 + type: texture + offset: 0x904E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_259_tlut_wheel_3: + symbol: gKartPeach259TlutWheel3 + type: texture + offset: 0x90568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_260_tlut_wheel_0: + symbol: gKartPeach260TlutWheel0 + type: texture + offset: 0x905E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_260_tlut_wheel_1: + symbol: gKartPeach260TlutWheel1 + type: texture + offset: 0x90668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_260_tlut_wheel_2: + symbol: gKartPeach260TlutWheel2 + type: texture + offset: 0x906E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_260_tlut_wheel_3: + symbol: gKartPeach260TlutWheel3 + type: texture + offset: 0x90768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_261_tlut_wheel_0: + symbol: gKartPeach261TlutWheel0 + type: texture + offset: 0x907E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_261_tlut_wheel_1: + symbol: gKartPeach261TlutWheel1 + type: texture + offset: 0x90868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_261_tlut_wheel_2: + symbol: gKartPeach261TlutWheel2 + type: texture + offset: 0x908E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_261_tlut_wheel_3: + symbol: gKartPeach261TlutWheel3 + type: texture + offset: 0x90968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_262_tlut_wheel_0: + symbol: gKartPeach262TlutWheel0 + type: texture + offset: 0x909E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_262_tlut_wheel_1: + symbol: gKartPeach262TlutWheel1 + type: texture + offset: 0x90A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_262_tlut_wheel_2: + symbol: gKartPeach262TlutWheel2 + type: texture + offset: 0x90AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_262_tlut_wheel_3: + symbol: gKartPeach262TlutWheel3 + type: texture + offset: 0x90B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_263_tlut_wheel_0: + symbol: gKartPeach263TlutWheel0 + type: texture + offset: 0x90BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_263_tlut_wheel_1: + symbol: gKartPeach263TlutWheel1 + type: texture + offset: 0x90C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_263_tlut_wheel_2: + symbol: gKartPeach263TlutWheel2 + type: texture + offset: 0x90CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_263_tlut_wheel_3: + symbol: gKartPeach263TlutWheel3 + type: texture + offset: 0x90D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_264_tlut_wheel_0: + symbol: gKartPeach264TlutWheel0 + type: texture + offset: 0x90DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_264_tlut_wheel_1: + symbol: gKartPeach264TlutWheel1 + type: texture + offset: 0x90E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_264_tlut_wheel_2: + symbol: gKartPeach264TlutWheel2 + type: texture + offset: 0x90EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_264_tlut_wheel_3: + symbol: gKartPeach264TlutWheel3 + type: texture + offset: 0x90F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_265_tlut_wheel_0: + symbol: gKartPeach265TlutWheel0 + type: texture + offset: 0x90FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_265_tlut_wheel_1: + symbol: gKartPeach265TlutWheel1 + type: texture + offset: 0x91068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_265_tlut_wheel_2: + symbol: gKartPeach265TlutWheel2 + type: texture + offset: 0x910E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_265_tlut_wheel_3: + symbol: gKartPeach265TlutWheel3 + type: texture + offset: 0x91168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_266_tlut_wheel_0: + symbol: gKartPeach266TlutWheel0 + type: texture + offset: 0x911E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_266_tlut_wheel_1: + symbol: gKartPeach266TlutWheel1 + type: texture + offset: 0x91268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_266_tlut_wheel_2: + symbol: gKartPeach266TlutWheel2 + type: texture + offset: 0x912E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_266_tlut_wheel_3: + symbol: gKartPeach266TlutWheel3 + type: texture + offset: 0x91368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_267_tlut_wheel_0: + symbol: gKartPeach267TlutWheel0 + type: texture + offset: 0x913E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_267_tlut_wheel_1: + symbol: gKartPeach267TlutWheel1 + type: texture + offset: 0x91468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_267_tlut_wheel_2: + symbol: gKartPeach267TlutWheel2 + type: texture + offset: 0x914E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_267_tlut_wheel_3: + symbol: gKartPeach267TlutWheel3 + type: texture + offset: 0x91568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_268_tlut_wheel_0: + symbol: gKartPeach268TlutWheel0 + type: texture + offset: 0x915E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_268_tlut_wheel_1: + symbol: gKartPeach268TlutWheel1 + type: texture + offset: 0x91668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_268_tlut_wheel_2: + symbol: gKartPeach268TlutWheel2 + type: texture + offset: 0x916E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_268_tlut_wheel_3: + symbol: gKartPeach268TlutWheel3 + type: texture + offset: 0x91768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_269_tlut_wheel_0: + symbol: gKartPeach269TlutWheel0 + type: texture + offset: 0x917E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_269_tlut_wheel_1: + symbol: gKartPeach269TlutWheel1 + type: texture + offset: 0x91868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_269_tlut_wheel_2: + symbol: gKartPeach269TlutWheel2 + type: texture + offset: 0x918E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_269_tlut_wheel_3: + symbol: gKartPeach269TlutWheel3 + type: texture + offset: 0x91968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_270_tlut_wheel_0: + symbol: gKartPeach270TlutWheel0 + type: texture + offset: 0x919E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_270_tlut_wheel_1: + symbol: gKartPeach270TlutWheel1 + type: texture + offset: 0x91A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_270_tlut_wheel_2: + symbol: gKartPeach270TlutWheel2 + type: texture + offset: 0x91AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_270_tlut_wheel_3: + symbol: gKartPeach270TlutWheel3 + type: texture + offset: 0x91B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_271_tlut_wheel_0: + symbol: gKartPeach271TlutWheel0 + type: texture + offset: 0x91BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_271_tlut_wheel_1: + symbol: gKartPeach271TlutWheel1 + type: texture + offset: 0x91C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_271_tlut_wheel_2: + symbol: gKartPeach271TlutWheel2 + type: texture + offset: 0x91CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_271_tlut_wheel_3: + symbol: gKartPeach271TlutWheel3 + type: texture + offset: 0x91D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_272_tlut_wheel_0: + symbol: gKartPeach272TlutWheel0 + type: texture + offset: 0x91DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_272_tlut_wheel_1: + symbol: gKartPeach272TlutWheel1 + type: texture + offset: 0x91E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_272_tlut_wheel_2: + symbol: gKartPeach272TlutWheel2 + type: texture + offset: 0x91EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_272_tlut_wheel_3: + symbol: gKartPeach272TlutWheel3 + type: texture + offset: 0x91F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_273_tlut_wheel_0: + symbol: gKartPeach273TlutWheel0 + type: texture + offset: 0x91FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_273_tlut_wheel_1: + symbol: gKartPeach273TlutWheel1 + type: texture + offset: 0x92068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_273_tlut_wheel_2: + symbol: gKartPeach273TlutWheel2 + type: texture + offset: 0x920E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_273_tlut_wheel_3: + symbol: gKartPeach273TlutWheel3 + type: texture + offset: 0x92168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_274_tlut_wheel_0: + symbol: gKartPeach274TlutWheel0 + type: texture + offset: 0x921E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_274_tlut_wheel_1: + symbol: gKartPeach274TlutWheel1 + type: texture + offset: 0x92268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_274_tlut_wheel_2: + symbol: gKartPeach274TlutWheel2 + type: texture + offset: 0x922E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_274_tlut_wheel_3: + symbol: gKartPeach274TlutWheel3 + type: texture + offset: 0x92368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_275_tlut_wheel_0: + symbol: gKartPeach275TlutWheel0 + type: texture + offset: 0x923E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_275_tlut_wheel_1: + symbol: gKartPeach275TlutWheel1 + type: texture + offset: 0x92468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_275_tlut_wheel_2: + symbol: gKartPeach275TlutWheel2 + type: texture + offset: 0x924E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_275_tlut_wheel_3: + symbol: gKartPeach275TlutWheel3 + type: texture + offset: 0x92568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_276_tlut_wheel_0: + symbol: gKartPeach276TlutWheel0 + type: texture + offset: 0x925E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_276_tlut_wheel_1: + symbol: gKartPeach276TlutWheel1 + type: texture + offset: 0x92668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_276_tlut_wheel_2: + symbol: gKartPeach276TlutWheel2 + type: texture + offset: 0x926E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_276_tlut_wheel_3: + symbol: gKartPeach276TlutWheel3 + type: texture + offset: 0x92768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_277_tlut_wheel_0: + symbol: gKartPeach277TlutWheel0 + type: texture + offset: 0x927E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_277_tlut_wheel_1: + symbol: gKartPeach277TlutWheel1 + type: texture + offset: 0x92868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_277_tlut_wheel_2: + symbol: gKartPeach277TlutWheel2 + type: texture + offset: 0x928E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_277_tlut_wheel_3: + symbol: gKartPeach277TlutWheel3 + type: texture + offset: 0x92968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_278_tlut_wheel_0: + symbol: gKartPeach278TlutWheel0 + type: texture + offset: 0x929E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_278_tlut_wheel_1: + symbol: gKartPeach278TlutWheel1 + type: texture + offset: 0x92A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_278_tlut_wheel_2: + symbol: gKartPeach278TlutWheel2 + type: texture + offset: 0x92AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_278_tlut_wheel_3: + symbol: gKartPeach278TlutWheel3 + type: texture + offset: 0x92B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_279_tlut_wheel_0: + symbol: gKartPeach279TlutWheel0 + type: texture + offset: 0x92BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_279_tlut_wheel_1: + symbol: gKartPeach279TlutWheel1 + type: texture + offset: 0x92C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_279_tlut_wheel_2: + symbol: gKartPeach279TlutWheel2 + type: texture + offset: 0x92CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_279_tlut_wheel_3: + symbol: gKartPeach279TlutWheel3 + type: texture + offset: 0x92D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_280_tlut_wheel_0: + symbol: gKartPeach280TlutWheel0 + type: texture + offset: 0x92DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_280_tlut_wheel_1: + symbol: gKartPeach280TlutWheel1 + type: texture + offset: 0x92E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_280_tlut_wheel_2: + symbol: gKartPeach280TlutWheel2 + type: texture + offset: 0x92EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_280_tlut_wheel_3: + symbol: gKartPeach280TlutWheel3 + type: texture + offset: 0x92F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_281_tlut_wheel_0: + symbol: gKartPeach281TlutWheel0 + type: texture + offset: 0x92FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_281_tlut_wheel_1: + symbol: gKartPeach281TlutWheel1 + type: texture + offset: 0x93068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_281_tlut_wheel_2: + symbol: gKartPeach281TlutWheel2 + type: texture + offset: 0x930E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_281_tlut_wheel_3: + symbol: gKartPeach281TlutWheel3 + type: texture + offset: 0x93168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_282_tlut_wheel_0: + symbol: gKartPeach282TlutWheel0 + type: texture + offset: 0x931E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_282_tlut_wheel_1: + symbol: gKartPeach282TlutWheel1 + type: texture + offset: 0x93268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_282_tlut_wheel_2: + symbol: gKartPeach282TlutWheel2 + type: texture + offset: 0x932E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_282_tlut_wheel_3: + symbol: gKartPeach282TlutWheel3 + type: texture + offset: 0x93368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_283_tlut_wheel_0: + symbol: gKartPeach283TlutWheel0 + type: texture + offset: 0x933E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_283_tlut_wheel_1: + symbol: gKartPeach283TlutWheel1 + type: texture + offset: 0x93468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_283_tlut_wheel_2: + symbol: gKartPeach283TlutWheel2 + type: texture + offset: 0x934E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_283_tlut_wheel_3: + symbol: gKartPeach283TlutWheel3 + type: texture + offset: 0x93568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_284_tlut_wheel_0: + symbol: gKartPeach284TlutWheel0 + type: texture + offset: 0x935E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_284_tlut_wheel_1: + symbol: gKartPeach284TlutWheel1 + type: texture + offset: 0x93668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_284_tlut_wheel_2: + symbol: gKartPeach284TlutWheel2 + type: texture + offset: 0x936E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_284_tlut_wheel_3: + symbol: gKartPeach284TlutWheel3 + type: texture + offset: 0x93768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_285_tlut_wheel_0: + symbol: gKartPeach285TlutWheel0 + type: texture + offset: 0x937E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_285_tlut_wheel_1: + symbol: gKartPeach285TlutWheel1 + type: texture + offset: 0x93868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_285_tlut_wheel_2: + symbol: gKartPeach285TlutWheel2 + type: texture + offset: 0x938E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_285_tlut_wheel_3: + symbol: gKartPeach285TlutWheel3 + type: texture + offset: 0x93968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_286_tlut_wheel_0: + symbol: gKartPeach286TlutWheel0 + type: texture + offset: 0x939E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_286_tlut_wheel_1: + symbol: gKartPeach286TlutWheel1 + type: texture + offset: 0x93A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_286_tlut_wheel_2: + symbol: gKartPeach286TlutWheel2 + type: texture + offset: 0x93AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_286_tlut_wheel_3: + symbol: gKartPeach286TlutWheel3 + type: texture + offset: 0x93B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_287_tlut_wheel_0: + symbol: gKartPeach287TlutWheel0 + type: texture + offset: 0x93BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_287_tlut_wheel_1: + symbol: gKartPeach287TlutWheel1 + type: texture + offset: 0x93C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_287_tlut_wheel_2: + symbol: gKartPeach287TlutWheel2 + type: texture + offset: 0x93CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_287_tlut_wheel_3: + symbol: gKartPeach287TlutWheel3 + type: texture + offset: 0x93D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_288_tlut_wheel_0: + symbol: gKartPeach288TlutWheel0 + type: texture + offset: 0x93DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_288_tlut_wheel_1: + symbol: gKartPeach288TlutWheel1 + type: texture + offset: 0x93E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_288_tlut_wheel_2: + symbol: gKartPeach288TlutWheel2 + type: texture + offset: 0x93EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_288_tlut_wheel_3: + symbol: gKartPeach288TlutWheel3 + type: texture + offset: 0x93F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +peach_kart_palette: + symbol: gKartPeachPalette + type: texture + offset: 0x93FE8 + ctype: u16 + width: 16 + height: 12 + format: RGBA16 diff --git a/yamls/us/textures/karts/toad_kart.yml b/yamls/us/textures/karts/toad_kart.yml new file mode 100644 index 000000000..9d9c8f133 --- /dev/null +++ b/yamls/us/textures/karts/toad_kart.yml @@ -0,0 +1,22340 @@ +:config: + segments: + - [0x0F, 0x43B3E0] + no_compression: true + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + tables: + toad_kart_wheels: + range: [0x6C6E8, 0x90868] + mode: APPEND +toad_kart_frame000_wheel0: + symbol: gKartToad000Wheel0 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame000_wheel1: + symbol: gKartToad000Wheel1 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_1 +toad_kart_frame000_wheel2: + symbol: gKartToad000Wheel2 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_2 +toad_kart_frame000_wheel3: + symbol: gKartToad000Wheel3 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_3 +toad_kart_frame001_wheel0: + symbol: gKartToad001Wheel0 + type: texture + offset: 0x468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_001_tlut_wheel_0 +toad_kart_frame001_wheel1: + symbol: gKartToad001Wheel1 + type: texture + offset: 0x468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_001_tlut_wheel_1 +toad_kart_frame001_wheel2: + symbol: gKartToad001Wheel2 + type: texture + offset: 0x468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_001_tlut_wheel_2 +toad_kart_frame001_wheel3: + symbol: gKartToad001Wheel3 + type: texture + offset: 0x468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_001_tlut_wheel_3 +toad_kart_frame002_wheel0: + symbol: gKartToad002Wheel0 + type: texture + offset: 0x8EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_002_tlut_wheel_0 +toad_kart_frame002_wheel1: + symbol: gKartToad002Wheel1 + type: texture + offset: 0x8EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_002_tlut_wheel_1 +toad_kart_frame002_wheel2: + symbol: gKartToad002Wheel2 + type: texture + offset: 0x8EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_002_tlut_wheel_2 +toad_kart_frame002_wheel3: + symbol: gKartToad002Wheel3 + type: texture + offset: 0x8EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_002_tlut_wheel_3 +toad_kart_frame003_wheel0: + symbol: gKartToad003Wheel0 + type: texture + offset: 0xD78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_003_tlut_wheel_0 +toad_kart_frame003_wheel1: + symbol: gKartToad003Wheel1 + type: texture + offset: 0xD78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_003_tlut_wheel_1 +toad_kart_frame003_wheel2: + symbol: gKartToad003Wheel2 + type: texture + offset: 0xD78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_003_tlut_wheel_2 +toad_kart_frame003_wheel3: + symbol: gKartToad003Wheel3 + type: texture + offset: 0xD78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_003_tlut_wheel_3 +toad_kart_frame004_wheel0: + symbol: gKartToad004Wheel0 + type: texture + offset: 0x1228 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_004_tlut_wheel_0 +toad_kart_frame004_wheel1: + symbol: gKartToad004Wheel1 + type: texture + offset: 0x1228 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_004_tlut_wheel_1 +toad_kart_frame004_wheel2: + symbol: gKartToad004Wheel2 + type: texture + offset: 0x1228 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_004_tlut_wheel_2 +toad_kart_frame004_wheel3: + symbol: gKartToad004Wheel3 + type: texture + offset: 0x1228 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_004_tlut_wheel_3 +toad_kart_frame005_wheel0: + symbol: gKartToad005Wheel0 + type: texture + offset: 0x16DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_005_tlut_wheel_0 +toad_kart_frame005_wheel1: + symbol: gKartToad005Wheel1 + type: texture + offset: 0x16DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_005_tlut_wheel_1 +toad_kart_frame005_wheel2: + symbol: gKartToad005Wheel2 + type: texture + offset: 0x16DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_005_tlut_wheel_2 +toad_kart_frame005_wheel3: + symbol: gKartToad005Wheel3 + type: texture + offset: 0x16DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_005_tlut_wheel_3 +toad_kart_frame006_wheel0: + symbol: gKartToad006Wheel0 + type: texture + offset: 0x1BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_006_tlut_wheel_0 +toad_kart_frame006_wheel1: + symbol: gKartToad006Wheel1 + type: texture + offset: 0x1BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_006_tlut_wheel_1 +toad_kart_frame006_wheel2: + symbol: gKartToad006Wheel2 + type: texture + offset: 0x1BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_006_tlut_wheel_2 +toad_kart_frame006_wheel3: + symbol: gKartToad006Wheel3 + type: texture + offset: 0x1BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_006_tlut_wheel_3 +toad_kart_frame007_wheel0: + symbol: gKartToad007Wheel0 + type: texture + offset: 0x208C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_007_tlut_wheel_0 +toad_kart_frame007_wheel1: + symbol: gKartToad007Wheel1 + type: texture + offset: 0x208C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_007_tlut_wheel_1 +toad_kart_frame007_wheel2: + symbol: gKartToad007Wheel2 + type: texture + offset: 0x208C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_007_tlut_wheel_2 +toad_kart_frame007_wheel3: + symbol: gKartToad007Wheel3 + type: texture + offset: 0x208C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_007_tlut_wheel_3 +toad_kart_frame008_wheel0: + symbol: gKartToad008Wheel0 + type: texture + offset: 0x256C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_008_tlut_wheel_0 +toad_kart_frame008_wheel1: + symbol: gKartToad008Wheel1 + type: texture + offset: 0x256C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_008_tlut_wheel_1 +toad_kart_frame008_wheel2: + symbol: gKartToad008Wheel2 + type: texture + offset: 0x256C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_008_tlut_wheel_2 +toad_kart_frame008_wheel3: + symbol: gKartToad008Wheel3 + type: texture + offset: 0x256C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_008_tlut_wheel_3 +toad_kart_frame009_wheel0: + symbol: gKartToad009Wheel0 + type: texture + offset: 0x2A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_009_tlut_wheel_0 +toad_kart_frame009_wheel1: + symbol: gKartToad009Wheel1 + type: texture + offset: 0x2A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_009_tlut_wheel_1 +toad_kart_frame009_wheel2: + symbol: gKartToad009Wheel2 + type: texture + offset: 0x2A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_009_tlut_wheel_2 +toad_kart_frame009_wheel3: + symbol: gKartToad009Wheel3 + type: texture + offset: 0x2A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_009_tlut_wheel_3 +toad_kart_frame010_wheel0: + symbol: gKartToad010Wheel0 + type: texture + offset: 0x2F58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_010_tlut_wheel_0 +toad_kart_frame010_wheel1: + symbol: gKartToad010Wheel1 + type: texture + offset: 0x2F58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_010_tlut_wheel_1 +toad_kart_frame010_wheel2: + symbol: gKartToad010Wheel2 + type: texture + offset: 0x2F58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_010_tlut_wheel_2 +toad_kart_frame010_wheel3: + symbol: gKartToad010Wheel3 + type: texture + offset: 0x2F58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_010_tlut_wheel_3 +toad_kart_frame011_wheel0: + symbol: gKartToad011Wheel0 + type: texture + offset: 0x3458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_011_tlut_wheel_0 +toad_kart_frame011_wheel1: + symbol: gKartToad011Wheel1 + type: texture + offset: 0x3458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_011_tlut_wheel_1 +toad_kart_frame011_wheel2: + symbol: gKartToad011Wheel2 + type: texture + offset: 0x3458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_011_tlut_wheel_2 +toad_kart_frame011_wheel3: + symbol: gKartToad011Wheel3 + type: texture + offset: 0x3458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_011_tlut_wheel_3 +toad_kart_frame012_wheel0: + symbol: gKartToad012Wheel0 + type: texture + offset: 0x3968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_012_tlut_wheel_0 +toad_kart_frame012_wheel1: + symbol: gKartToad012Wheel1 + type: texture + offset: 0x3968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_012_tlut_wheel_1 +toad_kart_frame012_wheel2: + symbol: gKartToad012Wheel2 + type: texture + offset: 0x3968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_012_tlut_wheel_2 +toad_kart_frame012_wheel3: + symbol: gKartToad012Wheel3 + type: texture + offset: 0x3968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_012_tlut_wheel_3 +toad_kart_frame013_wheel0: + symbol: gKartToad013Wheel0 + type: texture + offset: 0x3E80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_013_tlut_wheel_0 +toad_kart_frame013_wheel1: + symbol: gKartToad013Wheel1 + type: texture + offset: 0x3E80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_013_tlut_wheel_1 +toad_kart_frame013_wheel2: + symbol: gKartToad013Wheel2 + type: texture + offset: 0x3E80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_013_tlut_wheel_2 +toad_kart_frame013_wheel3: + symbol: gKartToad013Wheel3 + type: texture + offset: 0x3E80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_013_tlut_wheel_3 +toad_kart_frame014_wheel0: + symbol: gKartToad014Wheel0 + type: texture + offset: 0x43AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_014_tlut_wheel_0 +toad_kart_frame014_wheel1: + symbol: gKartToad014Wheel1 + type: texture + offset: 0x43AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_014_tlut_wheel_1 +toad_kart_frame014_wheel2: + symbol: gKartToad014Wheel2 + type: texture + offset: 0x43AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_014_tlut_wheel_2 +toad_kart_frame014_wheel3: + symbol: gKartToad014Wheel3 + type: texture + offset: 0x43AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_014_tlut_wheel_3 +toad_kart_frame015_wheel0: + symbol: gKartToad015Wheel0 + type: texture + offset: 0x48E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_015_tlut_wheel_0 +toad_kart_frame015_wheel1: + symbol: gKartToad015Wheel1 + type: texture + offset: 0x48E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_015_tlut_wheel_1 +toad_kart_frame015_wheel2: + symbol: gKartToad015Wheel2 + type: texture + offset: 0x48E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_015_tlut_wheel_2 +toad_kart_frame015_wheel3: + symbol: gKartToad015Wheel3 + type: texture + offset: 0x48E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_015_tlut_wheel_3 +toad_kart_frame016_wheel0: + symbol: gKartToad016Wheel0 + type: texture + offset: 0x4E38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_016_tlut_wheel_0 +toad_kart_frame016_wheel1: + symbol: gKartToad016Wheel1 + type: texture + offset: 0x4E38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_016_tlut_wheel_1 +toad_kart_frame016_wheel2: + symbol: gKartToad016Wheel2 + type: texture + offset: 0x4E38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_016_tlut_wheel_2 +toad_kart_frame016_wheel3: + symbol: gKartToad016Wheel3 + type: texture + offset: 0x4E38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_016_tlut_wheel_3 +toad_kart_frame017_wheel0: + symbol: gKartToad017Wheel0 + type: texture + offset: 0x5380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_017_tlut_wheel_0 +toad_kart_frame017_wheel1: + symbol: gKartToad017Wheel1 + type: texture + offset: 0x5380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_017_tlut_wheel_1 +toad_kart_frame017_wheel2: + symbol: gKartToad017Wheel2 + type: texture + offset: 0x5380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_017_tlut_wheel_2 +toad_kart_frame017_wheel3: + symbol: gKartToad017Wheel3 + type: texture + offset: 0x5380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_017_tlut_wheel_3 +toad_kart_frame018_wheel0: + symbol: gKartToad018Wheel0 + type: texture + offset: 0x58DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_018_tlut_wheel_0 +toad_kart_frame018_wheel1: + symbol: gKartToad018Wheel1 + type: texture + offset: 0x58DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_018_tlut_wheel_1 +toad_kart_frame018_wheel2: + symbol: gKartToad018Wheel2 + type: texture + offset: 0x58DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_018_tlut_wheel_2 +toad_kart_frame018_wheel3: + symbol: gKartToad018Wheel3 + type: texture + offset: 0x58DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_018_tlut_wheel_3 +toad_kart_frame019_wheel0: + symbol: gKartToad019Wheel0 + type: texture + offset: 0x5E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_019_tlut_wheel_0 +toad_kart_frame019_wheel1: + symbol: gKartToad019Wheel1 + type: texture + offset: 0x5E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_019_tlut_wheel_1 +toad_kart_frame019_wheel2: + symbol: gKartToad019Wheel2 + type: texture + offset: 0x5E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_019_tlut_wheel_2 +toad_kart_frame019_wheel3: + symbol: gKartToad019Wheel3 + type: texture + offset: 0x5E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_019_tlut_wheel_3 +toad_kart_frame020_wheel0: + symbol: gKartToad020Wheel0 + type: texture + offset: 0x63C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_020_tlut_wheel_0 +toad_kart_frame020_wheel1: + symbol: gKartToad020Wheel1 + type: texture + offset: 0x63C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_020_tlut_wheel_1 +toad_kart_frame020_wheel2: + symbol: gKartToad020Wheel2 + type: texture + offset: 0x63C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_020_tlut_wheel_2 +toad_kart_frame020_wheel3: + symbol: gKartToad020Wheel3 + type: texture + offset: 0x63C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_020_tlut_wheel_3 +toad_kart_frame021_wheel0: + symbol: gKartToad021Wheel0 + type: texture + offset: 0x6960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_021_tlut_wheel_0 +toad_kart_frame021_wheel1: + symbol: gKartToad021Wheel1 + type: texture + offset: 0x6960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_021_tlut_wheel_1 +toad_kart_frame021_wheel2: + symbol: gKartToad021Wheel2 + type: texture + offset: 0x6960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_021_tlut_wheel_2 +toad_kart_frame021_wheel3: + symbol: gKartToad021Wheel3 + type: texture + offset: 0x6960 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_021_tlut_wheel_3 +toad_kart_frame022_wheel0: + symbol: gKartToad022Wheel0 + type: texture + offset: 0x6DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_022_tlut_wheel_0 +toad_kart_frame022_wheel1: + symbol: gKartToad022Wheel1 + type: texture + offset: 0x6DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_022_tlut_wheel_1 +toad_kart_frame022_wheel2: + symbol: gKartToad022Wheel2 + type: texture + offset: 0x6DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_022_tlut_wheel_2 +toad_kart_frame022_wheel3: + symbol: gKartToad022Wheel3 + type: texture + offset: 0x6DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_022_tlut_wheel_3 +toad_kart_frame023_wheel0: + symbol: gKartToad023Wheel0 + type: texture + offset: 0x7268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_023_tlut_wheel_0 +toad_kart_frame023_wheel1: + symbol: gKartToad023Wheel1 + type: texture + offset: 0x7268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_023_tlut_wheel_1 +toad_kart_frame023_wheel2: + symbol: gKartToad023Wheel2 + type: texture + offset: 0x7268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_023_tlut_wheel_2 +toad_kart_frame023_wheel3: + symbol: gKartToad023Wheel3 + type: texture + offset: 0x7268 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_023_tlut_wheel_3 +toad_kart_frame024_wheel0: + symbol: gKartToad024Wheel0 + type: texture + offset: 0x770C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_024_tlut_wheel_0 +toad_kart_frame024_wheel1: + symbol: gKartToad024Wheel1 + type: texture + offset: 0x770C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_024_tlut_wheel_1 +toad_kart_frame024_wheel2: + symbol: gKartToad024Wheel2 + type: texture + offset: 0x770C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_024_tlut_wheel_2 +toad_kart_frame024_wheel3: + symbol: gKartToad024Wheel3 + type: texture + offset: 0x770C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_024_tlut_wheel_3 +toad_kart_frame025_wheel0: + symbol: gKartToad025Wheel0 + type: texture + offset: 0x7BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_025_tlut_wheel_0 +toad_kart_frame025_wheel1: + symbol: gKartToad025Wheel1 + type: texture + offset: 0x7BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_025_tlut_wheel_1 +toad_kart_frame025_wheel2: + symbol: gKartToad025Wheel2 + type: texture + offset: 0x7BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_025_tlut_wheel_2 +toad_kart_frame025_wheel3: + symbol: gKartToad025Wheel3 + type: texture + offset: 0x7BBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_025_tlut_wheel_3 +toad_kart_frame026_wheel0: + symbol: gKartToad026Wheel0 + type: texture + offset: 0x806C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_026_tlut_wheel_0 +toad_kart_frame026_wheel1: + symbol: gKartToad026Wheel1 + type: texture + offset: 0x806C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_026_tlut_wheel_1 +toad_kart_frame026_wheel2: + symbol: gKartToad026Wheel2 + type: texture + offset: 0x806C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_026_tlut_wheel_2 +toad_kart_frame026_wheel3: + symbol: gKartToad026Wheel3 + type: texture + offset: 0x806C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_026_tlut_wheel_3 +toad_kart_frame027_wheel0: + symbol: gKartToad027Wheel0 + type: texture + offset: 0x8520 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_027_tlut_wheel_0 +toad_kart_frame027_wheel1: + symbol: gKartToad027Wheel1 + type: texture + offset: 0x8520 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_027_tlut_wheel_1 +toad_kart_frame027_wheel2: + symbol: gKartToad027Wheel2 + type: texture + offset: 0x8520 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_027_tlut_wheel_2 +toad_kart_frame027_wheel3: + symbol: gKartToad027Wheel3 + type: texture + offset: 0x8520 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_027_tlut_wheel_3 +toad_kart_frame028_wheel0: + symbol: gKartToad028Wheel0 + type: texture + offset: 0x89F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_028_tlut_wheel_0 +toad_kart_frame028_wheel1: + symbol: gKartToad028Wheel1 + type: texture + offset: 0x89F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_028_tlut_wheel_1 +toad_kart_frame028_wheel2: + symbol: gKartToad028Wheel2 + type: texture + offset: 0x89F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_028_tlut_wheel_2 +toad_kart_frame028_wheel3: + symbol: gKartToad028Wheel3 + type: texture + offset: 0x89F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_028_tlut_wheel_3 +toad_kart_frame029_wheel0: + symbol: gKartToad029Wheel0 + type: texture + offset: 0x8EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_029_tlut_wheel_0 +toad_kart_frame029_wheel1: + symbol: gKartToad029Wheel1 + type: texture + offset: 0x8EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_029_tlut_wheel_1 +toad_kart_frame029_wheel2: + symbol: gKartToad029Wheel2 + type: texture + offset: 0x8EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_029_tlut_wheel_2 +toad_kart_frame029_wheel3: + symbol: gKartToad029Wheel3 + type: texture + offset: 0x8EE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_029_tlut_wheel_3 +toad_kart_frame030_wheel0: + symbol: gKartToad030Wheel0 + type: texture + offset: 0x93EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_030_tlut_wheel_0 +toad_kart_frame030_wheel1: + symbol: gKartToad030Wheel1 + type: texture + offset: 0x93EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_030_tlut_wheel_1 +toad_kart_frame030_wheel2: + symbol: gKartToad030Wheel2 + type: texture + offset: 0x93EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_030_tlut_wheel_2 +toad_kart_frame030_wheel3: + symbol: gKartToad030Wheel3 + type: texture + offset: 0x93EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_030_tlut_wheel_3 +toad_kart_frame031_wheel0: + symbol: gKartToad031Wheel0 + type: texture + offset: 0x9900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_031_tlut_wheel_0 +toad_kart_frame031_wheel1: + symbol: gKartToad031Wheel1 + type: texture + offset: 0x9900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_031_tlut_wheel_1 +toad_kart_frame031_wheel2: + symbol: gKartToad031Wheel2 + type: texture + offset: 0x9900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_031_tlut_wheel_2 +toad_kart_frame031_wheel3: + symbol: gKartToad031Wheel3 + type: texture + offset: 0x9900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_031_tlut_wheel_3 +toad_kart_frame032_wheel0: + symbol: gKartToad032Wheel0 + type: texture + offset: 0x9E14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_032_tlut_wheel_0 +toad_kart_frame032_wheel1: + symbol: gKartToad032Wheel1 + type: texture + offset: 0x9E14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_032_tlut_wheel_1 +toad_kart_frame032_wheel2: + symbol: gKartToad032Wheel2 + type: texture + offset: 0x9E14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_032_tlut_wheel_2 +toad_kart_frame032_wheel3: + symbol: gKartToad032Wheel3 + type: texture + offset: 0x9E14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_032_tlut_wheel_3 +toad_kart_frame033_wheel0: + symbol: gKartToad033Wheel0 + type: texture + offset: 0xA348 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_033_tlut_wheel_0 +toad_kart_frame033_wheel1: + symbol: gKartToad033Wheel1 + type: texture + offset: 0xA348 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_033_tlut_wheel_1 +toad_kart_frame033_wheel2: + symbol: gKartToad033Wheel2 + type: texture + offset: 0xA348 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_033_tlut_wheel_2 +toad_kart_frame033_wheel3: + symbol: gKartToad033Wheel3 + type: texture + offset: 0xA348 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_033_tlut_wheel_3 +toad_kart_frame034_wheel0: + symbol: gKartToad034Wheel0 + type: texture + offset: 0xA878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_034_tlut_wheel_0 +toad_kart_frame034_wheel1: + symbol: gKartToad034Wheel1 + type: texture + offset: 0xA878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_034_tlut_wheel_1 +toad_kart_frame034_wheel2: + symbol: gKartToad034Wheel2 + type: texture + offset: 0xA878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_034_tlut_wheel_2 +toad_kart_frame034_wheel3: + symbol: gKartToad034Wheel3 + type: texture + offset: 0xA878 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_034_tlut_wheel_3 +toad_kart_frame035_wheel0: + symbol: gKartToad035Wheel0 + type: texture + offset: 0xADB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_035_tlut_wheel_0 +toad_kart_frame035_wheel1: + symbol: gKartToad035Wheel1 + type: texture + offset: 0xADB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_035_tlut_wheel_1 +toad_kart_frame035_wheel2: + symbol: gKartToad035Wheel2 + type: texture + offset: 0xADB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_035_tlut_wheel_2 +toad_kart_frame035_wheel3: + symbol: gKartToad035Wheel3 + type: texture + offset: 0xADB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_035_tlut_wheel_3 +toad_kart_frame036_wheel0: + symbol: gKartToad036Wheel0 + type: texture + offset: 0xB2FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_036_tlut_wheel_0 +toad_kart_frame036_wheel1: + symbol: gKartToad036Wheel1 + type: texture + offset: 0xB2FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_036_tlut_wheel_1 +toad_kart_frame036_wheel2: + symbol: gKartToad036Wheel2 + type: texture + offset: 0xB2FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_036_tlut_wheel_2 +toad_kart_frame036_wheel3: + symbol: gKartToad036Wheel3 + type: texture + offset: 0xB2FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_036_tlut_wheel_3 +toad_kart_frame037_wheel0: + symbol: gKartToad037Wheel0 + type: texture + offset: 0xB838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_037_tlut_wheel_0 +toad_kart_frame037_wheel1: + symbol: gKartToad037Wheel1 + type: texture + offset: 0xB838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_037_tlut_wheel_1 +toad_kart_frame037_wheel2: + symbol: gKartToad037Wheel2 + type: texture + offset: 0xB838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_037_tlut_wheel_2 +toad_kart_frame037_wheel3: + symbol: gKartToad037Wheel3 + type: texture + offset: 0xB838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_037_tlut_wheel_3 +toad_kart_frame038_wheel0: + symbol: gKartToad038Wheel0 + type: texture + offset: 0xBD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_038_tlut_wheel_0 +toad_kart_frame038_wheel1: + symbol: gKartToad038Wheel1 + type: texture + offset: 0xBD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_038_tlut_wheel_1 +toad_kart_frame038_wheel2: + symbol: gKartToad038Wheel2 + type: texture + offset: 0xBD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_038_tlut_wheel_2 +toad_kart_frame038_wheel3: + symbol: gKartToad038Wheel3 + type: texture + offset: 0xBD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_038_tlut_wheel_3 +toad_kart_frame039_wheel0: + symbol: gKartToad039Wheel0 + type: texture + offset: 0xC2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_039_tlut_wheel_0 +toad_kart_frame039_wheel1: + symbol: gKartToad039Wheel1 + type: texture + offset: 0xC2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_039_tlut_wheel_1 +toad_kart_frame039_wheel2: + symbol: gKartToad039Wheel2 + type: texture + offset: 0xC2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_039_tlut_wheel_2 +toad_kart_frame039_wheel3: + symbol: gKartToad039Wheel3 + type: texture + offset: 0xC2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_039_tlut_wheel_3 +toad_kart_frame040_wheel0: + symbol: gKartToad040Wheel0 + type: texture + offset: 0xC874 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_040_tlut_wheel_0 +toad_kart_frame040_wheel1: + symbol: gKartToad040Wheel1 + type: texture + offset: 0xC874 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_040_tlut_wheel_1 +toad_kart_frame040_wheel2: + symbol: gKartToad040Wheel2 + type: texture + offset: 0xC874 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_040_tlut_wheel_2 +toad_kart_frame040_wheel3: + symbol: gKartToad040Wheel3 + type: texture + offset: 0xC874 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_040_tlut_wheel_3 +toad_kart_frame041_wheel0: + symbol: gKartToad041Wheel0 + type: texture + offset: 0xCE08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_041_tlut_wheel_0 +toad_kart_frame041_wheel1: + symbol: gKartToad041Wheel1 + type: texture + offset: 0xCE08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_041_tlut_wheel_1 +toad_kart_frame041_wheel2: + symbol: gKartToad041Wheel2 + type: texture + offset: 0xCE08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_041_tlut_wheel_2 +toad_kart_frame041_wheel3: + symbol: gKartToad041Wheel3 + type: texture + offset: 0xCE08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_041_tlut_wheel_3 +toad_kart_frame042_wheel0: + symbol: gKartToad042Wheel0 + type: texture + offset: 0xD3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_042_tlut_wheel_0 +toad_kart_frame042_wheel1: + symbol: gKartToad042Wheel1 + type: texture + offset: 0xD3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_042_tlut_wheel_1 +toad_kart_frame042_wheel2: + symbol: gKartToad042Wheel2 + type: texture + offset: 0xD3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_042_tlut_wheel_2 +toad_kart_frame042_wheel3: + symbol: gKartToad042Wheel3 + type: texture + offset: 0xD3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_042_tlut_wheel_3 +toad_kart_frame043_wheel0: + symbol: gKartToad043Wheel0 + type: texture + offset: 0xD834 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_043_tlut_wheel_0 +toad_kart_frame043_wheel1: + symbol: gKartToad043Wheel1 + type: texture + offset: 0xD834 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_043_tlut_wheel_1 +toad_kart_frame043_wheel2: + symbol: gKartToad043Wheel2 + type: texture + offset: 0xD834 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_043_tlut_wheel_2 +toad_kart_frame043_wheel3: + symbol: gKartToad043Wheel3 + type: texture + offset: 0xD834 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_043_tlut_wheel_3 +toad_kart_frame044_wheel0: + symbol: gKartToad044Wheel0 + type: texture + offset: 0xDCD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_044_tlut_wheel_0 +toad_kart_frame044_wheel1: + symbol: gKartToad044Wheel1 + type: texture + offset: 0xDCD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_044_tlut_wheel_1 +toad_kart_frame044_wheel2: + symbol: gKartToad044Wheel2 + type: texture + offset: 0xDCD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_044_tlut_wheel_2 +toad_kart_frame044_wheel3: + symbol: gKartToad044Wheel3 + type: texture + offset: 0xDCD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_044_tlut_wheel_3 +toad_kart_frame045_wheel0: + symbol: gKartToad045Wheel0 + type: texture + offset: 0xE184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_045_tlut_wheel_0 +toad_kart_frame045_wheel1: + symbol: gKartToad045Wheel1 + type: texture + offset: 0xE184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_045_tlut_wheel_1 +toad_kart_frame045_wheel2: + symbol: gKartToad045Wheel2 + type: texture + offset: 0xE184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_045_tlut_wheel_2 +toad_kart_frame045_wheel3: + symbol: gKartToad045Wheel3 + type: texture + offset: 0xE184 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_045_tlut_wheel_3 +toad_kart_frame046_wheel0: + symbol: gKartToad046Wheel0 + type: texture + offset: 0xE64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_046_tlut_wheel_0 +toad_kart_frame046_wheel1: + symbol: gKartToad046Wheel1 + type: texture + offset: 0xE64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_046_tlut_wheel_1 +toad_kart_frame046_wheel2: + symbol: gKartToad046Wheel2 + type: texture + offset: 0xE64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_046_tlut_wheel_2 +toad_kart_frame046_wheel3: + symbol: gKartToad046Wheel3 + type: texture + offset: 0xE64C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_046_tlut_wheel_3 +toad_kart_frame047_wheel0: + symbol: gKartToad047Wheel0 + type: texture + offset: 0xEB14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_047_tlut_wheel_0 +toad_kart_frame047_wheel1: + symbol: gKartToad047Wheel1 + type: texture + offset: 0xEB14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_047_tlut_wheel_1 +toad_kart_frame047_wheel2: + symbol: gKartToad047Wheel2 + type: texture + offset: 0xEB14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_047_tlut_wheel_2 +toad_kart_frame047_wheel3: + symbol: gKartToad047Wheel3 + type: texture + offset: 0xEB14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_047_tlut_wheel_3 +toad_kart_frame048_wheel0: + symbol: gKartToad048Wheel0 + type: texture + offset: 0xEFF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_048_tlut_wheel_0 +toad_kart_frame048_wheel1: + symbol: gKartToad048Wheel1 + type: texture + offset: 0xEFF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_048_tlut_wheel_1 +toad_kart_frame048_wheel2: + symbol: gKartToad048Wheel2 + type: texture + offset: 0xEFF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_048_tlut_wheel_2 +toad_kart_frame048_wheel3: + symbol: gKartToad048Wheel3 + type: texture + offset: 0xEFF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_048_tlut_wheel_3 +toad_kart_frame049_wheel0: + symbol: gKartToad049Wheel0 + type: texture + offset: 0xF4E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_049_tlut_wheel_0 +toad_kart_frame049_wheel1: + symbol: gKartToad049Wheel1 + type: texture + offset: 0xF4E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_049_tlut_wheel_1 +toad_kart_frame049_wheel2: + symbol: gKartToad049Wheel2 + type: texture + offset: 0xF4E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_049_tlut_wheel_2 +toad_kart_frame049_wheel3: + symbol: gKartToad049Wheel3 + type: texture + offset: 0xF4E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_049_tlut_wheel_3 +toad_kart_frame050_wheel0: + symbol: gKartToad050Wheel0 + type: texture + offset: 0xF9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_050_tlut_wheel_0 +toad_kart_frame050_wheel1: + symbol: gKartToad050Wheel1 + type: texture + offset: 0xF9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_050_tlut_wheel_1 +toad_kart_frame050_wheel2: + symbol: gKartToad050Wheel2 + type: texture + offset: 0xF9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_050_tlut_wheel_2 +toad_kart_frame050_wheel3: + symbol: gKartToad050Wheel3 + type: texture + offset: 0xF9F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_050_tlut_wheel_3 +toad_kart_frame051_wheel0: + symbol: gKartToad051Wheel0 + type: texture + offset: 0xFF0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_051_tlut_wheel_0 +toad_kart_frame051_wheel1: + symbol: gKartToad051Wheel1 + type: texture + offset: 0xFF0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_051_tlut_wheel_1 +toad_kart_frame051_wheel2: + symbol: gKartToad051Wheel2 + type: texture + offset: 0xFF0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_051_tlut_wheel_2 +toad_kart_frame051_wheel3: + symbol: gKartToad051Wheel3 + type: texture + offset: 0xFF0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_051_tlut_wheel_3 +toad_kart_frame052_wheel0: + symbol: gKartToad052Wheel0 + type: texture + offset: 0x10448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_052_tlut_wheel_0 +toad_kart_frame052_wheel1: + symbol: gKartToad052Wheel1 + type: texture + offset: 0x10448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_052_tlut_wheel_1 +toad_kart_frame052_wheel2: + symbol: gKartToad052Wheel2 + type: texture + offset: 0x10448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_052_tlut_wheel_2 +toad_kart_frame052_wheel3: + symbol: gKartToad052Wheel3 + type: texture + offset: 0x10448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_052_tlut_wheel_3 +toad_kart_frame053_wheel0: + symbol: gKartToad053Wheel0 + type: texture + offset: 0x1097C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_053_tlut_wheel_0 +toad_kart_frame053_wheel1: + symbol: gKartToad053Wheel1 + type: texture + offset: 0x1097C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_053_tlut_wheel_1 +toad_kart_frame053_wheel2: + symbol: gKartToad053Wheel2 + type: texture + offset: 0x1097C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_053_tlut_wheel_2 +toad_kart_frame053_wheel3: + symbol: gKartToad053Wheel3 + type: texture + offset: 0x1097C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_053_tlut_wheel_3 +toad_kart_frame054_wheel0: + symbol: gKartToad054Wheel0 + type: texture + offset: 0x10ED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_054_tlut_wheel_0 +toad_kart_frame054_wheel1: + symbol: gKartToad054Wheel1 + type: texture + offset: 0x10ED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_054_tlut_wheel_1 +toad_kart_frame054_wheel2: + symbol: gKartToad054Wheel2 + type: texture + offset: 0x10ED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_054_tlut_wheel_2 +toad_kart_frame054_wheel3: + symbol: gKartToad054Wheel3 + type: texture + offset: 0x10ED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_054_tlut_wheel_3 +toad_kart_frame055_wheel0: + symbol: gKartToad055Wheel0 + type: texture + offset: 0x1142C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_055_tlut_wheel_0 +toad_kart_frame055_wheel1: + symbol: gKartToad055Wheel1 + type: texture + offset: 0x1142C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_055_tlut_wheel_1 +toad_kart_frame055_wheel2: + symbol: gKartToad055Wheel2 + type: texture + offset: 0x1142C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_055_tlut_wheel_2 +toad_kart_frame055_wheel3: + symbol: gKartToad055Wheel3 + type: texture + offset: 0x1142C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_055_tlut_wheel_3 +toad_kart_frame056_wheel0: + symbol: gKartToad056Wheel0 + type: texture + offset: 0x11980 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_056_tlut_wheel_0 +toad_kart_frame056_wheel1: + symbol: gKartToad056Wheel1 + type: texture + offset: 0x11980 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_056_tlut_wheel_1 +toad_kart_frame056_wheel2: + symbol: gKartToad056Wheel2 + type: texture + offset: 0x11980 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_056_tlut_wheel_2 +toad_kart_frame056_wheel3: + symbol: gKartToad056Wheel3 + type: texture + offset: 0x11980 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_056_tlut_wheel_3 +toad_kart_frame057_wheel0: + symbol: gKartToad057Wheel0 + type: texture + offset: 0x11EC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_057_tlut_wheel_0 +toad_kart_frame057_wheel1: + symbol: gKartToad057Wheel1 + type: texture + offset: 0x11EC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_057_tlut_wheel_1 +toad_kart_frame057_wheel2: + symbol: gKartToad057Wheel2 + type: texture + offset: 0x11EC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_057_tlut_wheel_2 +toad_kart_frame057_wheel3: + symbol: gKartToad057Wheel3 + type: texture + offset: 0x11EC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_057_tlut_wheel_3 +toad_kart_frame058_wheel0: + symbol: gKartToad058Wheel0 + type: texture + offset: 0x1241C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_058_tlut_wheel_0 +toad_kart_frame058_wheel1: + symbol: gKartToad058Wheel1 + type: texture + offset: 0x1241C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_058_tlut_wheel_1 +toad_kart_frame058_wheel2: + symbol: gKartToad058Wheel2 + type: texture + offset: 0x1241C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_058_tlut_wheel_2 +toad_kart_frame058_wheel3: + symbol: gKartToad058Wheel3 + type: texture + offset: 0x1241C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_058_tlut_wheel_3 +toad_kart_frame059_wheel0: + symbol: gKartToad059Wheel0 + type: texture + offset: 0x12994 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_059_tlut_wheel_0 +toad_kart_frame059_wheel1: + symbol: gKartToad059Wheel1 + type: texture + offset: 0x12994 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_059_tlut_wheel_1 +toad_kart_frame059_wheel2: + symbol: gKartToad059Wheel2 + type: texture + offset: 0x12994 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_059_tlut_wheel_2 +toad_kart_frame059_wheel3: + symbol: gKartToad059Wheel3 + type: texture + offset: 0x12994 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_059_tlut_wheel_3 +toad_kart_frame060_wheel0: + symbol: gKartToad060Wheel0 + type: texture + offset: 0x12F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_060_tlut_wheel_0 +toad_kart_frame060_wheel1: + symbol: gKartToad060Wheel1 + type: texture + offset: 0x12F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_060_tlut_wheel_1 +toad_kart_frame060_wheel2: + symbol: gKartToad060Wheel2 + type: texture + offset: 0x12F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_060_tlut_wheel_2 +toad_kart_frame060_wheel3: + symbol: gKartToad060Wheel3 + type: texture + offset: 0x12F18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_060_tlut_wheel_3 +toad_kart_frame061_wheel0: + symbol: gKartToad061Wheel0 + type: texture + offset: 0x134B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_061_tlut_wheel_0 +toad_kart_frame061_wheel1: + symbol: gKartToad061Wheel1 + type: texture + offset: 0x134B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_061_tlut_wheel_1 +toad_kart_frame061_wheel2: + symbol: gKartToad061Wheel2 + type: texture + offset: 0x134B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_061_tlut_wheel_2 +toad_kart_frame061_wheel3: + symbol: gKartToad061Wheel3 + type: texture + offset: 0x134B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_061_tlut_wheel_3 +toad_kart_frame062_wheel0: + symbol: gKartToad062Wheel0 + type: texture + offset: 0x13A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_062_tlut_wheel_0 +toad_kart_frame062_wheel1: + symbol: gKartToad062Wheel1 + type: texture + offset: 0x13A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_062_tlut_wheel_1 +toad_kart_frame062_wheel2: + symbol: gKartToad062Wheel2 + type: texture + offset: 0x13A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_062_tlut_wheel_2 +toad_kart_frame062_wheel3: + symbol: gKartToad062Wheel3 + type: texture + offset: 0x13A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_062_tlut_wheel_3 +toad_kart_frame063_wheel0: + symbol: gKartToad063Wheel0 + type: texture + offset: 0x14000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_063_tlut_wheel_0 +toad_kart_frame063_wheel1: + symbol: gKartToad063Wheel1 + type: texture + offset: 0x14000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_063_tlut_wheel_1 +toad_kart_frame063_wheel2: + symbol: gKartToad063Wheel2 + type: texture + offset: 0x14000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_063_tlut_wheel_2 +toad_kart_frame063_wheel3: + symbol: gKartToad063Wheel3 + type: texture + offset: 0x14000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_063_tlut_wheel_3 +toad_kart_frame064_wheel0: + symbol: gKartToad064Wheel0 + type: texture + offset: 0x14490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_064_tlut_wheel_0 +toad_kart_frame064_wheel1: + symbol: gKartToad064Wheel1 + type: texture + offset: 0x14490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_064_tlut_wheel_1 +toad_kart_frame064_wheel2: + symbol: gKartToad064Wheel2 + type: texture + offset: 0x14490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_064_tlut_wheel_2 +toad_kart_frame064_wheel3: + symbol: gKartToad064Wheel3 + type: texture + offset: 0x14490 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_064_tlut_wheel_3 +toad_kart_frame065_wheel0: + symbol: gKartToad065Wheel0 + type: texture + offset: 0x14934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_065_tlut_wheel_0 +toad_kart_frame065_wheel1: + symbol: gKartToad065Wheel1 + type: texture + offset: 0x14934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_065_tlut_wheel_1 +toad_kart_frame065_wheel2: + symbol: gKartToad065Wheel2 + type: texture + offset: 0x14934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_065_tlut_wheel_2 +toad_kart_frame065_wheel3: + symbol: gKartToad065Wheel3 + type: texture + offset: 0x14934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_065_tlut_wheel_3 +toad_kart_frame066_wheel0: + symbol: gKartToad066Wheel0 + type: texture + offset: 0x14DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_066_tlut_wheel_0 +toad_kart_frame066_wheel1: + symbol: gKartToad066Wheel1 + type: texture + offset: 0x14DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_066_tlut_wheel_1 +toad_kart_frame066_wheel2: + symbol: gKartToad066Wheel2 + type: texture + offset: 0x14DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_066_tlut_wheel_2 +toad_kart_frame066_wheel3: + symbol: gKartToad066Wheel3 + type: texture + offset: 0x14DDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_066_tlut_wheel_3 +toad_kart_frame067_wheel0: + symbol: gKartToad067Wheel0 + type: texture + offset: 0x15298 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_067_tlut_wheel_0 +toad_kart_frame067_wheel1: + symbol: gKartToad067Wheel1 + type: texture + offset: 0x15298 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_067_tlut_wheel_1 +toad_kart_frame067_wheel2: + symbol: gKartToad067Wheel2 + type: texture + offset: 0x15298 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_067_tlut_wheel_2 +toad_kart_frame067_wheel3: + symbol: gKartToad067Wheel3 + type: texture + offset: 0x15298 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_067_tlut_wheel_3 +toad_kart_frame068_wheel0: + symbol: gKartToad068Wheel0 + type: texture + offset: 0x15780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_068_tlut_wheel_0 +toad_kart_frame068_wheel1: + symbol: gKartToad068Wheel1 + type: texture + offset: 0x15780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_068_tlut_wheel_1 +toad_kart_frame068_wheel2: + symbol: gKartToad068Wheel2 + type: texture + offset: 0x15780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_068_tlut_wheel_2 +toad_kart_frame068_wheel3: + symbol: gKartToad068Wheel3 + type: texture + offset: 0x15780 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_068_tlut_wheel_3 +toad_kart_frame069_wheel0: + symbol: gKartToad069Wheel0 + type: texture + offset: 0x15C6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_069_tlut_wheel_0 +toad_kart_frame069_wheel1: + symbol: gKartToad069Wheel1 + type: texture + offset: 0x15C6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_069_tlut_wheel_1 +toad_kart_frame069_wheel2: + symbol: gKartToad069Wheel2 + type: texture + offset: 0x15C6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_069_tlut_wheel_2 +toad_kart_frame069_wheel3: + symbol: gKartToad069Wheel3 + type: texture + offset: 0x15C6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_069_tlut_wheel_3 +toad_kart_frame070_wheel0: + symbol: gKartToad070Wheel0 + type: texture + offset: 0x16178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_070_tlut_wheel_0 +toad_kart_frame070_wheel1: + symbol: gKartToad070Wheel1 + type: texture + offset: 0x16178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_070_tlut_wheel_1 +toad_kart_frame070_wheel2: + symbol: gKartToad070Wheel2 + type: texture + offset: 0x16178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_070_tlut_wheel_2 +toad_kart_frame070_wheel3: + symbol: gKartToad070Wheel3 + type: texture + offset: 0x16178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_070_tlut_wheel_3 +toad_kart_frame071_wheel0: + symbol: gKartToad071Wheel0 + type: texture + offset: 0x16698 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_071_tlut_wheel_0 +toad_kart_frame071_wheel1: + symbol: gKartToad071Wheel1 + type: texture + offset: 0x16698 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_071_tlut_wheel_1 +toad_kart_frame071_wheel2: + symbol: gKartToad071Wheel2 + type: texture + offset: 0x16698 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_071_tlut_wheel_2 +toad_kart_frame071_wheel3: + symbol: gKartToad071Wheel3 + type: texture + offset: 0x16698 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_071_tlut_wheel_3 +toad_kart_frame072_wheel0: + symbol: gKartToad072Wheel0 + type: texture + offset: 0x16BCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_072_tlut_wheel_0 +toad_kart_frame072_wheel1: + symbol: gKartToad072Wheel1 + type: texture + offset: 0x16BCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_072_tlut_wheel_1 +toad_kart_frame072_wheel2: + symbol: gKartToad072Wheel2 + type: texture + offset: 0x16BCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_072_tlut_wheel_2 +toad_kart_frame072_wheel3: + symbol: gKartToad072Wheel3 + type: texture + offset: 0x16BCC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_072_tlut_wheel_3 +toad_kart_frame073_wheel0: + symbol: gKartToad073Wheel0 + type: texture + offset: 0x1711C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_073_tlut_wheel_0 +toad_kart_frame073_wheel1: + symbol: gKartToad073Wheel1 + type: texture + offset: 0x1711C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_073_tlut_wheel_1 +toad_kart_frame073_wheel2: + symbol: gKartToad073Wheel2 + type: texture + offset: 0x1711C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_073_tlut_wheel_2 +toad_kart_frame073_wheel3: + symbol: gKartToad073Wheel3 + type: texture + offset: 0x1711C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_073_tlut_wheel_3 +toad_kart_frame074_wheel0: + symbol: gKartToad074Wheel0 + type: texture + offset: 0x17668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_074_tlut_wheel_0 +toad_kart_frame074_wheel1: + symbol: gKartToad074Wheel1 + type: texture + offset: 0x17668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_074_tlut_wheel_1 +toad_kart_frame074_wheel2: + symbol: gKartToad074Wheel2 + type: texture + offset: 0x17668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_074_tlut_wheel_2 +toad_kart_frame074_wheel3: + symbol: gKartToad074Wheel3 + type: texture + offset: 0x17668 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_074_tlut_wheel_3 +toad_kart_frame075_wheel0: + symbol: gKartToad075Wheel0 + type: texture + offset: 0x17BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_075_tlut_wheel_0 +toad_kart_frame075_wheel1: + symbol: gKartToad075Wheel1 + type: texture + offset: 0x17BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_075_tlut_wheel_1 +toad_kart_frame075_wheel2: + symbol: gKartToad075Wheel2 + type: texture + offset: 0x17BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_075_tlut_wheel_2 +toad_kart_frame075_wheel3: + symbol: gKartToad075Wheel3 + type: texture + offset: 0x17BC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_075_tlut_wheel_3 +toad_kart_frame076_wheel0: + symbol: gKartToad076Wheel0 + type: texture + offset: 0x1811C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_076_tlut_wheel_0 +toad_kart_frame076_wheel1: + symbol: gKartToad076Wheel1 + type: texture + offset: 0x1811C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_076_tlut_wheel_1 +toad_kart_frame076_wheel2: + symbol: gKartToad076Wheel2 + type: texture + offset: 0x1811C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_076_tlut_wheel_2 +toad_kart_frame076_wheel3: + symbol: gKartToad076Wheel3 + type: texture + offset: 0x1811C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_076_tlut_wheel_3 +toad_kart_frame077_wheel0: + symbol: gKartToad077Wheel0 + type: texture + offset: 0x18690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_077_tlut_wheel_0 +toad_kart_frame077_wheel1: + symbol: gKartToad077Wheel1 + type: texture + offset: 0x18690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_077_tlut_wheel_1 +toad_kart_frame077_wheel2: + symbol: gKartToad077Wheel2 + type: texture + offset: 0x18690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_077_tlut_wheel_2 +toad_kart_frame077_wheel3: + symbol: gKartToad077Wheel3 + type: texture + offset: 0x18690 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_077_tlut_wheel_3 +toad_kart_frame078_wheel0: + symbol: gKartToad078Wheel0 + type: texture + offset: 0x18C04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_078_tlut_wheel_0 +toad_kart_frame078_wheel1: + symbol: gKartToad078Wheel1 + type: texture + offset: 0x18C04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_078_tlut_wheel_1 +toad_kart_frame078_wheel2: + symbol: gKartToad078Wheel2 + type: texture + offset: 0x18C04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_078_tlut_wheel_2 +toad_kart_frame078_wheel3: + symbol: gKartToad078Wheel3 + type: texture + offset: 0x18C04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_078_tlut_wheel_3 +toad_kart_frame079_wheel0: + symbol: gKartToad079Wheel0 + type: texture + offset: 0x1918C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_079_tlut_wheel_0 +toad_kart_frame079_wheel1: + symbol: gKartToad079Wheel1 + type: texture + offset: 0x1918C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_079_tlut_wheel_1 +toad_kart_frame079_wheel2: + symbol: gKartToad079Wheel2 + type: texture + offset: 0x1918C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_079_tlut_wheel_2 +toad_kart_frame079_wheel3: + symbol: gKartToad079Wheel3 + type: texture + offset: 0x1918C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_079_tlut_wheel_3 +toad_kart_frame080_wheel0: + symbol: gKartToad080Wheel0 + type: texture + offset: 0x19724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_080_tlut_wheel_0 +toad_kart_frame080_wheel1: + symbol: gKartToad080Wheel1 + type: texture + offset: 0x19724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_080_tlut_wheel_1 +toad_kart_frame080_wheel2: + symbol: gKartToad080Wheel2 + type: texture + offset: 0x19724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_080_tlut_wheel_2 +toad_kart_frame080_wheel3: + symbol: gKartToad080Wheel3 + type: texture + offset: 0x19724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_080_tlut_wheel_3 +toad_kart_frame081_wheel0: + symbol: gKartToad081Wheel0 + type: texture + offset: 0x19CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_081_tlut_wheel_0 +toad_kart_frame081_wheel1: + symbol: gKartToad081Wheel1 + type: texture + offset: 0x19CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_081_tlut_wheel_1 +toad_kart_frame081_wheel2: + symbol: gKartToad081Wheel2 + type: texture + offset: 0x19CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_081_tlut_wheel_2 +toad_kart_frame081_wheel3: + symbol: gKartToad081Wheel3 + type: texture + offset: 0x19CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_081_tlut_wheel_3 +toad_kart_frame082_wheel0: + symbol: gKartToad082Wheel0 + type: texture + offset: 0x1A254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_082_tlut_wheel_0 +toad_kart_frame082_wheel1: + symbol: gKartToad082Wheel1 + type: texture + offset: 0x1A254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_082_tlut_wheel_1 +toad_kart_frame082_wheel2: + symbol: gKartToad082Wheel2 + type: texture + offset: 0x1A254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_082_tlut_wheel_2 +toad_kart_frame082_wheel3: + symbol: gKartToad082Wheel3 + type: texture + offset: 0x1A254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_082_tlut_wheel_3 +toad_kart_frame083_wheel0: + symbol: gKartToad083Wheel0 + type: texture + offset: 0x1A7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_083_tlut_wheel_0 +toad_kart_frame083_wheel1: + symbol: gKartToad083Wheel1 + type: texture + offset: 0x1A7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_083_tlut_wheel_1 +toad_kart_frame083_wheel2: + symbol: gKartToad083Wheel2 + type: texture + offset: 0x1A7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_083_tlut_wheel_2 +toad_kart_frame083_wheel3: + symbol: gKartToad083Wheel3 + type: texture + offset: 0x1A7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_083_tlut_wheel_3 +toad_kart_frame084_wheel0: + symbol: gKartToad084Wheel0 + type: texture + offset: 0x1ADA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_084_tlut_wheel_0 +toad_kart_frame084_wheel1: + symbol: gKartToad084Wheel1 + type: texture + offset: 0x1ADA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_084_tlut_wheel_1 +toad_kart_frame084_wheel2: + symbol: gKartToad084Wheel2 + type: texture + offset: 0x1ADA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_084_tlut_wheel_2 +toad_kart_frame084_wheel3: + symbol: gKartToad084Wheel3 + type: texture + offset: 0x1ADA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_084_tlut_wheel_3 +toad_kart_frame085_wheel0: + symbol: gKartToad085Wheel0 + type: texture + offset: 0x1B25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_085_tlut_wheel_0 +toad_kart_frame085_wheel1: + symbol: gKartToad085Wheel1 + type: texture + offset: 0x1B25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_085_tlut_wheel_1 +toad_kart_frame085_wheel2: + symbol: gKartToad085Wheel2 + type: texture + offset: 0x1B25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_085_tlut_wheel_2 +toad_kart_frame085_wheel3: + symbol: gKartToad085Wheel3 + type: texture + offset: 0x1B25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_085_tlut_wheel_3 +toad_kart_frame086_wheel0: + symbol: gKartToad086Wheel0 + type: texture + offset: 0x1B724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_086_tlut_wheel_0 +toad_kart_frame086_wheel1: + symbol: gKartToad086Wheel1 + type: texture + offset: 0x1B724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_086_tlut_wheel_1 +toad_kart_frame086_wheel2: + symbol: gKartToad086Wheel2 + type: texture + offset: 0x1B724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_086_tlut_wheel_2 +toad_kart_frame086_wheel3: + symbol: gKartToad086Wheel3 + type: texture + offset: 0x1B724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_086_tlut_wheel_3 +toad_kart_frame087_wheel0: + symbol: gKartToad087Wheel0 + type: texture + offset: 0x1BC00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_087_tlut_wheel_0 +toad_kart_frame087_wheel1: + symbol: gKartToad087Wheel1 + type: texture + offset: 0x1BC00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_087_tlut_wheel_1 +toad_kart_frame087_wheel2: + symbol: gKartToad087Wheel2 + type: texture + offset: 0x1BC00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_087_tlut_wheel_2 +toad_kart_frame087_wheel3: + symbol: gKartToad087Wheel3 + type: texture + offset: 0x1BC00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_087_tlut_wheel_3 +toad_kart_frame088_wheel0: + symbol: gKartToad088Wheel0 + type: texture + offset: 0x1C100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_088_tlut_wheel_0 +toad_kart_frame088_wheel1: + symbol: gKartToad088Wheel1 + type: texture + offset: 0x1C100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_088_tlut_wheel_1 +toad_kart_frame088_wheel2: + symbol: gKartToad088Wheel2 + type: texture + offset: 0x1C100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_088_tlut_wheel_2 +toad_kart_frame088_wheel3: + symbol: gKartToad088Wheel3 + type: texture + offset: 0x1C100 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_088_tlut_wheel_3 +toad_kart_frame089_wheel0: + symbol: gKartToad089Wheel0 + type: texture + offset: 0x1C600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_089_tlut_wheel_0 +toad_kart_frame089_wheel1: + symbol: gKartToad089Wheel1 + type: texture + offset: 0x1C600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_089_tlut_wheel_1 +toad_kart_frame089_wheel2: + symbol: gKartToad089Wheel2 + type: texture + offset: 0x1C600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_089_tlut_wheel_2 +toad_kart_frame089_wheel3: + symbol: gKartToad089Wheel3 + type: texture + offset: 0x1C600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_089_tlut_wheel_3 +toad_kart_frame090_wheel0: + symbol: gKartToad090Wheel0 + type: texture + offset: 0x1CAFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_090_tlut_wheel_0 +toad_kart_frame090_wheel1: + symbol: gKartToad090Wheel1 + type: texture + offset: 0x1CAFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_090_tlut_wheel_1 +toad_kart_frame090_wheel2: + symbol: gKartToad090Wheel2 + type: texture + offset: 0x1CAFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_090_tlut_wheel_2 +toad_kart_frame090_wheel3: + symbol: gKartToad090Wheel3 + type: texture + offset: 0x1CAFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_090_tlut_wheel_3 +toad_kart_frame091_wheel0: + symbol: gKartToad091Wheel0 + type: texture + offset: 0x1D000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_091_tlut_wheel_0 +toad_kart_frame091_wheel1: + symbol: gKartToad091Wheel1 + type: texture + offset: 0x1D000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_091_tlut_wheel_1 +toad_kart_frame091_wheel2: + symbol: gKartToad091Wheel2 + type: texture + offset: 0x1D000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_091_tlut_wheel_2 +toad_kart_frame091_wheel3: + symbol: gKartToad091Wheel3 + type: texture + offset: 0x1D000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_091_tlut_wheel_3 +toad_kart_frame092_wheel0: + symbol: gKartToad092Wheel0 + type: texture + offset: 0x1D530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_092_tlut_wheel_0 +toad_kart_frame092_wheel1: + symbol: gKartToad092Wheel1 + type: texture + offset: 0x1D530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_092_tlut_wheel_1 +toad_kart_frame092_wheel2: + symbol: gKartToad092Wheel2 + type: texture + offset: 0x1D530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_092_tlut_wheel_2 +toad_kart_frame092_wheel3: + symbol: gKartToad092Wheel3 + type: texture + offset: 0x1D530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_092_tlut_wheel_3 +toad_kart_frame093_wheel0: + symbol: gKartToad093Wheel0 + type: texture + offset: 0x1DA78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_093_tlut_wheel_0 +toad_kart_frame093_wheel1: + symbol: gKartToad093Wheel1 + type: texture + offset: 0x1DA78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_093_tlut_wheel_1 +toad_kart_frame093_wheel2: + symbol: gKartToad093Wheel2 + type: texture + offset: 0x1DA78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_093_tlut_wheel_2 +toad_kart_frame093_wheel3: + symbol: gKartToad093Wheel3 + type: texture + offset: 0x1DA78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_093_tlut_wheel_3 +toad_kart_frame094_wheel0: + symbol: gKartToad094Wheel0 + type: texture + offset: 0x1DFC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_094_tlut_wheel_0 +toad_kart_frame094_wheel1: + symbol: gKartToad094Wheel1 + type: texture + offset: 0x1DFC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_094_tlut_wheel_1 +toad_kart_frame094_wheel2: + symbol: gKartToad094Wheel2 + type: texture + offset: 0x1DFC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_094_tlut_wheel_2 +toad_kart_frame094_wheel3: + symbol: gKartToad094Wheel3 + type: texture + offset: 0x1DFC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_094_tlut_wheel_3 +toad_kart_frame095_wheel0: + symbol: gKartToad095Wheel0 + type: texture + offset: 0x1E530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_095_tlut_wheel_0 +toad_kart_frame095_wheel1: + symbol: gKartToad095Wheel1 + type: texture + offset: 0x1E530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_095_tlut_wheel_1 +toad_kart_frame095_wheel2: + symbol: gKartToad095Wheel2 + type: texture + offset: 0x1E530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_095_tlut_wheel_2 +toad_kart_frame095_wheel3: + symbol: gKartToad095Wheel3 + type: texture + offset: 0x1E530 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_095_tlut_wheel_3 +toad_kart_frame096_wheel0: + symbol: gKartToad096Wheel0 + type: texture + offset: 0x1EAA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_096_tlut_wheel_0 +toad_kart_frame096_wheel1: + symbol: gKartToad096Wheel1 + type: texture + offset: 0x1EAA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_096_tlut_wheel_1 +toad_kart_frame096_wheel2: + symbol: gKartToad096Wheel2 + type: texture + offset: 0x1EAA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_096_tlut_wheel_2 +toad_kart_frame096_wheel3: + symbol: gKartToad096Wheel3 + type: texture + offset: 0x1EAA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_096_tlut_wheel_3 +toad_kart_frame097_wheel0: + symbol: gKartToad097Wheel0 + type: texture + offset: 0x1F008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_097_tlut_wheel_0 +toad_kart_frame097_wheel1: + symbol: gKartToad097Wheel1 + type: texture + offset: 0x1F008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_097_tlut_wheel_1 +toad_kart_frame097_wheel2: + symbol: gKartToad097Wheel2 + type: texture + offset: 0x1F008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_097_tlut_wheel_2 +toad_kart_frame097_wheel3: + symbol: gKartToad097Wheel3 + type: texture + offset: 0x1F008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_097_tlut_wheel_3 +toad_kart_frame098_wheel0: + symbol: gKartToad098Wheel0 + type: texture + offset: 0x1F570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_098_tlut_wheel_0 +toad_kart_frame098_wheel1: + symbol: gKartToad098Wheel1 + type: texture + offset: 0x1F570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_098_tlut_wheel_1 +toad_kart_frame098_wheel2: + symbol: gKartToad098Wheel2 + type: texture + offset: 0x1F570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_098_tlut_wheel_2 +toad_kart_frame098_wheel3: + symbol: gKartToad098Wheel3 + type: texture + offset: 0x1F570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_098_tlut_wheel_3 +toad_kart_frame099_wheel0: + symbol: gKartToad099Wheel0 + type: texture + offset: 0x1FAF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_099_tlut_wheel_0 +toad_kart_frame099_wheel1: + symbol: gKartToad099Wheel1 + type: texture + offset: 0x1FAF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_099_tlut_wheel_1 +toad_kart_frame099_wheel2: + symbol: gKartToad099Wheel2 + type: texture + offset: 0x1FAF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_099_tlut_wheel_2 +toad_kart_frame099_wheel3: + symbol: gKartToad099Wheel3 + type: texture + offset: 0x1FAF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_099_tlut_wheel_3 +toad_kart_frame100_wheel0: + symbol: gKartToad100Wheel0 + type: texture + offset: 0x20078 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_100_tlut_wheel_0 +toad_kart_frame100_wheel1: + symbol: gKartToad100Wheel1 + type: texture + offset: 0x20078 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_100_tlut_wheel_1 +toad_kart_frame100_wheel2: + symbol: gKartToad100Wheel2 + type: texture + offset: 0x20078 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_100_tlut_wheel_2 +toad_kart_frame100_wheel3: + symbol: gKartToad100Wheel3 + type: texture + offset: 0x20078 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_100_tlut_wheel_3 +toad_kart_frame101_wheel0: + symbol: gKartToad101Wheel0 + type: texture + offset: 0x20618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_101_tlut_wheel_0 +toad_kart_frame101_wheel1: + symbol: gKartToad101Wheel1 + type: texture + offset: 0x20618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_101_tlut_wheel_1 +toad_kart_frame101_wheel2: + symbol: gKartToad101Wheel2 + type: texture + offset: 0x20618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_101_tlut_wheel_2 +toad_kart_frame101_wheel3: + symbol: gKartToad101Wheel3 + type: texture + offset: 0x20618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_101_tlut_wheel_3 +toad_kart_frame102_wheel0: + symbol: gKartToad102Wheel0 + type: texture + offset: 0x20BB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_102_tlut_wheel_0 +toad_kart_frame102_wheel1: + symbol: gKartToad102Wheel1 + type: texture + offset: 0x20BB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_102_tlut_wheel_1 +toad_kart_frame102_wheel2: + symbol: gKartToad102Wheel2 + type: texture + offset: 0x20BB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_102_tlut_wheel_2 +toad_kart_frame102_wheel3: + symbol: gKartToad102Wheel3 + type: texture + offset: 0x20BB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_102_tlut_wheel_3 +toad_kart_frame103_wheel0: + symbol: gKartToad103Wheel0 + type: texture + offset: 0x2116C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_103_tlut_wheel_0 +toad_kart_frame103_wheel1: + symbol: gKartToad103Wheel1 + type: texture + offset: 0x2116C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_103_tlut_wheel_1 +toad_kart_frame103_wheel2: + symbol: gKartToad103Wheel2 + type: texture + offset: 0x2116C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_103_tlut_wheel_2 +toad_kart_frame103_wheel3: + symbol: gKartToad103Wheel3 + type: texture + offset: 0x2116C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_103_tlut_wheel_3 +toad_kart_frame104_wheel0: + symbol: gKartToad104Wheel0 + type: texture + offset: 0x21728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_104_tlut_wheel_0 +toad_kart_frame104_wheel1: + symbol: gKartToad104Wheel1 + type: texture + offset: 0x21728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_104_tlut_wheel_1 +toad_kart_frame104_wheel2: + symbol: gKartToad104Wheel2 + type: texture + offset: 0x21728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_104_tlut_wheel_2 +toad_kart_frame104_wheel3: + symbol: gKartToad104Wheel3 + type: texture + offset: 0x21728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_104_tlut_wheel_3 +toad_kart_frame105_wheel0: + symbol: gKartToad105Wheel0 + type: texture + offset: 0x21CF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_105_tlut_wheel_0 +toad_kart_frame105_wheel1: + symbol: gKartToad105Wheel1 + type: texture + offset: 0x21CF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_105_tlut_wheel_1 +toad_kart_frame105_wheel2: + symbol: gKartToad105Wheel2 + type: texture + offset: 0x21CF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_105_tlut_wheel_2 +toad_kart_frame105_wheel3: + symbol: gKartToad105Wheel3 + type: texture + offset: 0x21CF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_105_tlut_wheel_3 +toad_kart_frame106_wheel0: + symbol: gKartToad106Wheel0 + type: texture + offset: 0x221B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_106_tlut_wheel_0 +toad_kart_frame106_wheel1: + symbol: gKartToad106Wheel1 + type: texture + offset: 0x221B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_106_tlut_wheel_1 +toad_kart_frame106_wheel2: + symbol: gKartToad106Wheel2 + type: texture + offset: 0x221B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_106_tlut_wheel_2 +toad_kart_frame106_wheel3: + symbol: gKartToad106Wheel3 + type: texture + offset: 0x221B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_106_tlut_wheel_3 +toad_kart_frame107_wheel0: + symbol: gKartToad107Wheel0 + type: texture + offset: 0x226A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_107_tlut_wheel_0 +toad_kart_frame107_wheel1: + symbol: gKartToad107Wheel1 + type: texture + offset: 0x226A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_107_tlut_wheel_1 +toad_kart_frame107_wheel2: + symbol: gKartToad107Wheel2 + type: texture + offset: 0x226A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_107_tlut_wheel_2 +toad_kart_frame107_wheel3: + symbol: gKartToad107Wheel3 + type: texture + offset: 0x226A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_107_tlut_wheel_3 +toad_kart_frame108_wheel0: + symbol: gKartToad108Wheel0 + type: texture + offset: 0x22B9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_108_tlut_wheel_0 +toad_kart_frame108_wheel1: + symbol: gKartToad108Wheel1 + type: texture + offset: 0x22B9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_108_tlut_wheel_1 +toad_kart_frame108_wheel2: + symbol: gKartToad108Wheel2 + type: texture + offset: 0x22B9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_108_tlut_wheel_2 +toad_kart_frame108_wheel3: + symbol: gKartToad108Wheel3 + type: texture + offset: 0x22B9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_108_tlut_wheel_3 +toad_kart_frame109_wheel0: + symbol: gKartToad109Wheel0 + type: texture + offset: 0x230BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_109_tlut_wheel_0 +toad_kart_frame109_wheel1: + symbol: gKartToad109Wheel1 + type: texture + offset: 0x230BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_109_tlut_wheel_1 +toad_kart_frame109_wheel2: + symbol: gKartToad109Wheel2 + type: texture + offset: 0x230BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_109_tlut_wheel_2 +toad_kart_frame109_wheel3: + symbol: gKartToad109Wheel3 + type: texture + offset: 0x230BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_109_tlut_wheel_3 +toad_kart_frame110_wheel0: + symbol: gKartToad110Wheel0 + type: texture + offset: 0x235D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_110_tlut_wheel_0 +toad_kart_frame110_wheel1: + symbol: gKartToad110Wheel1 + type: texture + offset: 0x235D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_110_tlut_wheel_1 +toad_kart_frame110_wheel2: + symbol: gKartToad110Wheel2 + type: texture + offset: 0x235D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_110_tlut_wheel_2 +toad_kart_frame110_wheel3: + symbol: gKartToad110Wheel3 + type: texture + offset: 0x235D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_110_tlut_wheel_3 +toad_kart_frame111_wheel0: + symbol: gKartToad111Wheel0 + type: texture + offset: 0x23B00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_111_tlut_wheel_0 +toad_kart_frame111_wheel1: + symbol: gKartToad111Wheel1 + type: texture + offset: 0x23B00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_111_tlut_wheel_1 +toad_kart_frame111_wheel2: + symbol: gKartToad111Wheel2 + type: texture + offset: 0x23B00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_111_tlut_wheel_2 +toad_kart_frame111_wheel3: + symbol: gKartToad111Wheel3 + type: texture + offset: 0x23B00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_111_tlut_wheel_3 +toad_kart_frame112_wheel0: + symbol: gKartToad112Wheel0 + type: texture + offset: 0x2402C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_112_tlut_wheel_0 +toad_kart_frame112_wheel1: + symbol: gKartToad112Wheel1 + type: texture + offset: 0x2402C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_112_tlut_wheel_1 +toad_kart_frame112_wheel2: + symbol: gKartToad112Wheel2 + type: texture + offset: 0x2402C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_112_tlut_wheel_2 +toad_kart_frame112_wheel3: + symbol: gKartToad112Wheel3 + type: texture + offset: 0x2402C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_112_tlut_wheel_3 +toad_kart_frame113_wheel0: + symbol: gKartToad113Wheel0 + type: texture + offset: 0x24570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_113_tlut_wheel_0 +toad_kart_frame113_wheel1: + symbol: gKartToad113Wheel1 + type: texture + offset: 0x24570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_113_tlut_wheel_1 +toad_kart_frame113_wheel2: + symbol: gKartToad113Wheel2 + type: texture + offset: 0x24570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_113_tlut_wheel_2 +toad_kart_frame113_wheel3: + symbol: gKartToad113Wheel3 + type: texture + offset: 0x24570 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_113_tlut_wheel_3 +toad_kart_frame114_wheel0: + symbol: gKartToad114Wheel0 + type: texture + offset: 0x24ABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_114_tlut_wheel_0 +toad_kart_frame114_wheel1: + symbol: gKartToad114Wheel1 + type: texture + offset: 0x24ABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_114_tlut_wheel_1 +toad_kart_frame114_wheel2: + symbol: gKartToad114Wheel2 + type: texture + offset: 0x24ABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_114_tlut_wheel_2 +toad_kart_frame114_wheel3: + symbol: gKartToad114Wheel3 + type: texture + offset: 0x24ABC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_114_tlut_wheel_3 +toad_kart_frame115_wheel0: + symbol: gKartToad115Wheel0 + type: texture + offset: 0x2501C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_115_tlut_wheel_0 +toad_kart_frame115_wheel1: + symbol: gKartToad115Wheel1 + type: texture + offset: 0x2501C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_115_tlut_wheel_1 +toad_kart_frame115_wheel2: + symbol: gKartToad115Wheel2 + type: texture + offset: 0x2501C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_115_tlut_wheel_2 +toad_kart_frame115_wheel3: + symbol: gKartToad115Wheel3 + type: texture + offset: 0x2501C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_115_tlut_wheel_3 +toad_kart_frame116_wheel0: + symbol: gKartToad116Wheel0 + type: texture + offset: 0x25590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_116_tlut_wheel_0 +toad_kart_frame116_wheel1: + symbol: gKartToad116Wheel1 + type: texture + offset: 0x25590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_116_tlut_wheel_1 +toad_kart_frame116_wheel2: + symbol: gKartToad116Wheel2 + type: texture + offset: 0x25590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_116_tlut_wheel_2 +toad_kart_frame116_wheel3: + symbol: gKartToad116Wheel3 + type: texture + offset: 0x25590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_116_tlut_wheel_3 +toad_kart_frame117_wheel0: + symbol: gKartToad117Wheel0 + type: texture + offset: 0x25B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_117_tlut_wheel_0 +toad_kart_frame117_wheel1: + symbol: gKartToad117Wheel1 + type: texture + offset: 0x25B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_117_tlut_wheel_1 +toad_kart_frame117_wheel2: + symbol: gKartToad117Wheel2 + type: texture + offset: 0x25B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_117_tlut_wheel_2 +toad_kart_frame117_wheel3: + symbol: gKartToad117Wheel3 + type: texture + offset: 0x25B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_117_tlut_wheel_3 +toad_kart_frame118_wheel0: + symbol: gKartToad118Wheel0 + type: texture + offset: 0x26084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_118_tlut_wheel_0 +toad_kart_frame118_wheel1: + symbol: gKartToad118Wheel1 + type: texture + offset: 0x26084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_118_tlut_wheel_1 +toad_kart_frame118_wheel2: + symbol: gKartToad118Wheel2 + type: texture + offset: 0x26084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_118_tlut_wheel_2 +toad_kart_frame118_wheel3: + symbol: gKartToad118Wheel3 + type: texture + offset: 0x26084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_118_tlut_wheel_3 +toad_kart_frame119_wheel0: + symbol: gKartToad119Wheel0 + type: texture + offset: 0x26600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_119_tlut_wheel_0 +toad_kart_frame119_wheel1: + symbol: gKartToad119Wheel1 + type: texture + offset: 0x26600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_119_tlut_wheel_1 +toad_kart_frame119_wheel2: + symbol: gKartToad119Wheel2 + type: texture + offset: 0x26600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_119_tlut_wheel_2 +toad_kart_frame119_wheel3: + symbol: gKartToad119Wheel3 + type: texture + offset: 0x26600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_119_tlut_wheel_3 +toad_kart_frame120_wheel0: + symbol: gKartToad120Wheel0 + type: texture + offset: 0x26BAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_120_tlut_wheel_0 +toad_kart_frame120_wheel1: + symbol: gKartToad120Wheel1 + type: texture + offset: 0x26BAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_120_tlut_wheel_1 +toad_kart_frame120_wheel2: + symbol: gKartToad120Wheel2 + type: texture + offset: 0x26BAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_120_tlut_wheel_2 +toad_kart_frame120_wheel3: + symbol: gKartToad120Wheel3 + type: texture + offset: 0x26BAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_120_tlut_wheel_3 +toad_kart_frame121_wheel0: + symbol: gKartToad121Wheel0 + type: texture + offset: 0x2713C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_121_tlut_wheel_0 +toad_kart_frame121_wheel1: + symbol: gKartToad121Wheel1 + type: texture + offset: 0x2713C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_121_tlut_wheel_1 +toad_kart_frame121_wheel2: + symbol: gKartToad121Wheel2 + type: texture + offset: 0x2713C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_121_tlut_wheel_2 +toad_kart_frame121_wheel3: + symbol: gKartToad121Wheel3 + type: texture + offset: 0x2713C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_121_tlut_wheel_3 +toad_kart_frame122_wheel0: + symbol: gKartToad122Wheel0 + type: texture + offset: 0x276DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_122_tlut_wheel_0 +toad_kart_frame122_wheel1: + symbol: gKartToad122Wheel1 + type: texture + offset: 0x276DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_122_tlut_wheel_1 +toad_kart_frame122_wheel2: + symbol: gKartToad122Wheel2 + type: texture + offset: 0x276DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_122_tlut_wheel_2 +toad_kart_frame122_wheel3: + symbol: gKartToad122Wheel3 + type: texture + offset: 0x276DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_122_tlut_wheel_3 +toad_kart_frame123_wheel0: + symbol: gKartToad123Wheel0 + type: texture + offset: 0x27C90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_123_tlut_wheel_0 +toad_kart_frame123_wheel1: + symbol: gKartToad123Wheel1 + type: texture + offset: 0x27C90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_123_tlut_wheel_1 +toad_kart_frame123_wheel2: + symbol: gKartToad123Wheel2 + type: texture + offset: 0x27C90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_123_tlut_wheel_2 +toad_kart_frame123_wheel3: + symbol: gKartToad123Wheel3 + type: texture + offset: 0x27C90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_123_tlut_wheel_3 +toad_kart_frame124_wheel0: + symbol: gKartToad124Wheel0 + type: texture + offset: 0x28254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_124_tlut_wheel_0 +toad_kart_frame124_wheel1: + symbol: gKartToad124Wheel1 + type: texture + offset: 0x28254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_124_tlut_wheel_1 +toad_kart_frame124_wheel2: + symbol: gKartToad124Wheel2 + type: texture + offset: 0x28254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_124_tlut_wheel_2 +toad_kart_frame124_wheel3: + symbol: gKartToad124Wheel3 + type: texture + offset: 0x28254 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_124_tlut_wheel_3 +toad_kart_frame125_wheel0: + symbol: gKartToad125Wheel0 + type: texture + offset: 0x28828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_125_tlut_wheel_0 +toad_kart_frame125_wheel1: + symbol: gKartToad125Wheel1 + type: texture + offset: 0x28828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_125_tlut_wheel_1 +toad_kart_frame125_wheel2: + symbol: gKartToad125Wheel2 + type: texture + offset: 0x28828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_125_tlut_wheel_2 +toad_kart_frame125_wheel3: + symbol: gKartToad125Wheel3 + type: texture + offset: 0x28828 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_125_tlut_wheel_3 +toad_kart_frame126_wheel0: + symbol: gKartToad126Wheel0 + type: texture + offset: 0x28E0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_126_tlut_wheel_0 +toad_kart_frame126_wheel1: + symbol: gKartToad126Wheel1 + type: texture + offset: 0x28E0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_126_tlut_wheel_1 +toad_kart_frame126_wheel2: + symbol: gKartToad126Wheel2 + type: texture + offset: 0x28E0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_126_tlut_wheel_2 +toad_kart_frame126_wheel3: + symbol: gKartToad126Wheel3 + type: texture + offset: 0x28E0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_126_tlut_wheel_3 +toad_kart_frame127_wheel0: + symbol: gKartToad127Wheel0 + type: texture + offset: 0x292E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_127_tlut_wheel_0 +toad_kart_frame127_wheel1: + symbol: gKartToad127Wheel1 + type: texture + offset: 0x292E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_127_tlut_wheel_1 +toad_kart_frame127_wheel2: + symbol: gKartToad127Wheel2 + type: texture + offset: 0x292E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_127_tlut_wheel_2 +toad_kart_frame127_wheel3: + symbol: gKartToad127Wheel3 + type: texture + offset: 0x292E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_127_tlut_wheel_3 +toad_kart_frame128_wheel0: + symbol: gKartToad128Wheel0 + type: texture + offset: 0x297C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_128_tlut_wheel_0 +toad_kart_frame128_wheel1: + symbol: gKartToad128Wheel1 + type: texture + offset: 0x297C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_128_tlut_wheel_1 +toad_kart_frame128_wheel2: + symbol: gKartToad128Wheel2 + type: texture + offset: 0x297C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_128_tlut_wheel_2 +toad_kart_frame128_wheel3: + symbol: gKartToad128Wheel3 + type: texture + offset: 0x297C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_128_tlut_wheel_3 +toad_kart_frame129_wheel0: + symbol: gKartToad129Wheel0 + type: texture + offset: 0x29CBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_129_tlut_wheel_0 +toad_kart_frame129_wheel1: + symbol: gKartToad129Wheel1 + type: texture + offset: 0x29CBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_129_tlut_wheel_1 +toad_kart_frame129_wheel2: + symbol: gKartToad129Wheel2 + type: texture + offset: 0x29CBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_129_tlut_wheel_2 +toad_kart_frame129_wheel3: + symbol: gKartToad129Wheel3 + type: texture + offset: 0x29CBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_129_tlut_wheel_3 +toad_kart_frame130_wheel0: + symbol: gKartToad130Wheel0 + type: texture + offset: 0x2A1CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_130_tlut_wheel_0 +toad_kart_frame130_wheel1: + symbol: gKartToad130Wheel1 + type: texture + offset: 0x2A1CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_130_tlut_wheel_1 +toad_kart_frame130_wheel2: + symbol: gKartToad130Wheel2 + type: texture + offset: 0x2A1CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_130_tlut_wheel_2 +toad_kart_frame130_wheel3: + symbol: gKartToad130Wheel3 + type: texture + offset: 0x2A1CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_130_tlut_wheel_3 +toad_kart_frame131_wheel0: + symbol: gKartToad131Wheel0 + type: texture + offset: 0x2A6E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_131_tlut_wheel_0 +toad_kart_frame131_wheel1: + symbol: gKartToad131Wheel1 + type: texture + offset: 0x2A6E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_131_tlut_wheel_1 +toad_kart_frame131_wheel2: + symbol: gKartToad131Wheel2 + type: texture + offset: 0x2A6E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_131_tlut_wheel_2 +toad_kart_frame131_wheel3: + symbol: gKartToad131Wheel3 + type: texture + offset: 0x2A6E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_131_tlut_wheel_3 +toad_kart_frame132_wheel0: + symbol: gKartToad132Wheel0 + type: texture + offset: 0x2AC0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_132_tlut_wheel_0 +toad_kart_frame132_wheel1: + symbol: gKartToad132Wheel1 + type: texture + offset: 0x2AC0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_132_tlut_wheel_1 +toad_kart_frame132_wheel2: + symbol: gKartToad132Wheel2 + type: texture + offset: 0x2AC0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_132_tlut_wheel_2 +toad_kart_frame132_wheel3: + symbol: gKartToad132Wheel3 + type: texture + offset: 0x2AC0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_132_tlut_wheel_3 +toad_kart_frame133_wheel0: + symbol: gKartToad133Wheel0 + type: texture + offset: 0x2B148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_133_tlut_wheel_0 +toad_kart_frame133_wheel1: + symbol: gKartToad133Wheel1 + type: texture + offset: 0x2B148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_133_tlut_wheel_1 +toad_kart_frame133_wheel2: + symbol: gKartToad133Wheel2 + type: texture + offset: 0x2B148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_133_tlut_wheel_2 +toad_kart_frame133_wheel3: + symbol: gKartToad133Wheel3 + type: texture + offset: 0x2B148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_133_tlut_wheel_3 +toad_kart_frame134_wheel0: + symbol: gKartToad134Wheel0 + type: texture + offset: 0x2B6A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_134_tlut_wheel_0 +toad_kart_frame134_wheel1: + symbol: gKartToad134Wheel1 + type: texture + offset: 0x2B6A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_134_tlut_wheel_1 +toad_kart_frame134_wheel2: + symbol: gKartToad134Wheel2 + type: texture + offset: 0x2B6A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_134_tlut_wheel_2 +toad_kart_frame134_wheel3: + symbol: gKartToad134Wheel3 + type: texture + offset: 0x2B6A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_134_tlut_wheel_3 +toad_kart_frame135_wheel0: + symbol: gKartToad135Wheel0 + type: texture + offset: 0x2BBFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_135_tlut_wheel_0 +toad_kart_frame135_wheel1: + symbol: gKartToad135Wheel1 + type: texture + offset: 0x2BBFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_135_tlut_wheel_1 +toad_kart_frame135_wheel2: + symbol: gKartToad135Wheel2 + type: texture + offset: 0x2BBFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_135_tlut_wheel_2 +toad_kart_frame135_wheel3: + symbol: gKartToad135Wheel3 + type: texture + offset: 0x2BBFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_135_tlut_wheel_3 +toad_kart_frame136_wheel0: + symbol: gKartToad136Wheel0 + type: texture + offset: 0x2C17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_136_tlut_wheel_0 +toad_kart_frame136_wheel1: + symbol: gKartToad136Wheel1 + type: texture + offset: 0x2C17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_136_tlut_wheel_1 +toad_kart_frame136_wheel2: + symbol: gKartToad136Wheel2 + type: texture + offset: 0x2C17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_136_tlut_wheel_2 +toad_kart_frame136_wheel3: + symbol: gKartToad136Wheel3 + type: texture + offset: 0x2C17C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_136_tlut_wheel_3 +toad_kart_frame137_wheel0: + symbol: gKartToad137Wheel0 + type: texture + offset: 0x2C6F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_137_tlut_wheel_0 +toad_kart_frame137_wheel1: + symbol: gKartToad137Wheel1 + type: texture + offset: 0x2C6F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_137_tlut_wheel_1 +toad_kart_frame137_wheel2: + symbol: gKartToad137Wheel2 + type: texture + offset: 0x2C6F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_137_tlut_wheel_2 +toad_kart_frame137_wheel3: + symbol: gKartToad137Wheel3 + type: texture + offset: 0x2C6F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_137_tlut_wheel_3 +toad_kart_frame138_wheel0: + symbol: gKartToad138Wheel0 + type: texture + offset: 0x2CC90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_138_tlut_wheel_0 +toad_kart_frame138_wheel1: + symbol: gKartToad138Wheel1 + type: texture + offset: 0x2CC90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_138_tlut_wheel_1 +toad_kart_frame138_wheel2: + symbol: gKartToad138Wheel2 + type: texture + offset: 0x2CC90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_138_tlut_wheel_2 +toad_kart_frame138_wheel3: + symbol: gKartToad138Wheel3 + type: texture + offset: 0x2CC90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_138_tlut_wheel_3 +toad_kart_frame139_wheel0: + symbol: gKartToad139Wheel0 + type: texture + offset: 0x2D22C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_139_tlut_wheel_0 +toad_kart_frame139_wheel1: + symbol: gKartToad139Wheel1 + type: texture + offset: 0x2D22C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_139_tlut_wheel_1 +toad_kart_frame139_wheel2: + symbol: gKartToad139Wheel2 + type: texture + offset: 0x2D22C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_139_tlut_wheel_2 +toad_kart_frame139_wheel3: + symbol: gKartToad139Wheel3 + type: texture + offset: 0x2D22C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_139_tlut_wheel_3 +toad_kart_frame140_wheel0: + symbol: gKartToad140Wheel0 + type: texture + offset: 0x2D7C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_140_tlut_wheel_0 +toad_kart_frame140_wheel1: + symbol: gKartToad140Wheel1 + type: texture + offset: 0x2D7C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_140_tlut_wheel_1 +toad_kart_frame140_wheel2: + symbol: gKartToad140Wheel2 + type: texture + offset: 0x2D7C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_140_tlut_wheel_2 +toad_kart_frame140_wheel3: + symbol: gKartToad140Wheel3 + type: texture + offset: 0x2D7C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_140_tlut_wheel_3 +toad_kart_frame141_wheel0: + symbol: gKartToad141Wheel0 + type: texture + offset: 0x2DD60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_141_tlut_wheel_0 +toad_kart_frame141_wheel1: + symbol: gKartToad141Wheel1 + type: texture + offset: 0x2DD60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_141_tlut_wheel_1 +toad_kart_frame141_wheel2: + symbol: gKartToad141Wheel2 + type: texture + offset: 0x2DD60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_141_tlut_wheel_2 +toad_kart_frame141_wheel3: + symbol: gKartToad141Wheel3 + type: texture + offset: 0x2DD60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_141_tlut_wheel_3 +toad_kart_frame142_wheel0: + symbol: gKartToad142Wheel0 + type: texture + offset: 0x2E2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_142_tlut_wheel_0 +toad_kart_frame142_wheel1: + symbol: gKartToad142Wheel1 + type: texture + offset: 0x2E2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_142_tlut_wheel_1 +toad_kart_frame142_wheel2: + symbol: gKartToad142Wheel2 + type: texture + offset: 0x2E2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_142_tlut_wheel_2 +toad_kart_frame142_wheel3: + symbol: gKartToad142Wheel3 + type: texture + offset: 0x2E2E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_142_tlut_wheel_3 +toad_kart_frame143_wheel0: + symbol: gKartToad143Wheel0 + type: texture + offset: 0x2E89C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_143_tlut_wheel_0 +toad_kart_frame143_wheel1: + symbol: gKartToad143Wheel1 + type: texture + offset: 0x2E89C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_143_tlut_wheel_1 +toad_kart_frame143_wheel2: + symbol: gKartToad143Wheel2 + type: texture + offset: 0x2E89C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_143_tlut_wheel_2 +toad_kart_frame143_wheel3: + symbol: gKartToad143Wheel3 + type: texture + offset: 0x2E89C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_143_tlut_wheel_3 +toad_kart_frame144_wheel0: + symbol: gKartToad144Wheel0 + type: texture + offset: 0x2EE80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_144_tlut_wheel_0 +toad_kart_frame144_wheel1: + symbol: gKartToad144Wheel1 + type: texture + offset: 0x2EE80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_144_tlut_wheel_1 +toad_kart_frame144_wheel2: + symbol: gKartToad144Wheel2 + type: texture + offset: 0x2EE80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_144_tlut_wheel_2 +toad_kart_frame144_wheel3: + symbol: gKartToad144Wheel3 + type: texture + offset: 0x2EE80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_144_tlut_wheel_3 +toad_kart_frame145_wheel0: + symbol: gKartToad145Wheel0 + type: texture + offset: 0x2F450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_145_tlut_wheel_0 +toad_kart_frame145_wheel1: + symbol: gKartToad145Wheel1 + type: texture + offset: 0x2F450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_145_tlut_wheel_1 +toad_kart_frame145_wheel2: + symbol: gKartToad145Wheel2 + type: texture + offset: 0x2F450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_145_tlut_wheel_2 +toad_kart_frame145_wheel3: + symbol: gKartToad145Wheel3 + type: texture + offset: 0x2F450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_145_tlut_wheel_3 +toad_kart_frame146_wheel0: + symbol: gKartToad146Wheel0 + type: texture + offset: 0x2FA24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_146_tlut_wheel_0 +toad_kart_frame146_wheel1: + symbol: gKartToad146Wheel1 + type: texture + offset: 0x2FA24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_146_tlut_wheel_1 +toad_kart_frame146_wheel2: + symbol: gKartToad146Wheel2 + type: texture + offset: 0x2FA24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_146_tlut_wheel_2 +toad_kart_frame146_wheel3: + symbol: gKartToad146Wheel3 + type: texture + offset: 0x2FA24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_146_tlut_wheel_3 +toad_kart_frame147_wheel0: + symbol: gKartToad147Wheel0 + type: texture + offset: 0x3000C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_147_tlut_wheel_0 +toad_kart_frame147_wheel1: + symbol: gKartToad147Wheel1 + type: texture + offset: 0x3000C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_147_tlut_wheel_1 +toad_kart_frame147_wheel2: + symbol: gKartToad147Wheel2 + type: texture + offset: 0x3000C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_147_tlut_wheel_2 +toad_kart_frame147_wheel3: + symbol: gKartToad147Wheel3 + type: texture + offset: 0x3000C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_147_tlut_wheel_3 +toad_kart_frame148_wheel0: + symbol: gKartToad148Wheel0 + type: texture + offset: 0x30504 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_148_tlut_wheel_0 +toad_kart_frame148_wheel1: + symbol: gKartToad148Wheel1 + type: texture + offset: 0x30504 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_148_tlut_wheel_1 +toad_kart_frame148_wheel2: + symbol: gKartToad148Wheel2 + type: texture + offset: 0x30504 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_148_tlut_wheel_2 +toad_kart_frame148_wheel3: + symbol: gKartToad148Wheel3 + type: texture + offset: 0x30504 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_148_tlut_wheel_3 +toad_kart_frame149_wheel0: + symbol: gKartToad149Wheel0 + type: texture + offset: 0x30A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_149_tlut_wheel_0 +toad_kart_frame149_wheel1: + symbol: gKartToad149Wheel1 + type: texture + offset: 0x30A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_149_tlut_wheel_1 +toad_kart_frame149_wheel2: + symbol: gKartToad149Wheel2 + type: texture + offset: 0x30A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_149_tlut_wheel_2 +toad_kart_frame149_wheel3: + symbol: gKartToad149Wheel3 + type: texture + offset: 0x30A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_149_tlut_wheel_3 +toad_kart_frame150_wheel0: + symbol: gKartToad150Wheel0 + type: texture + offset: 0x30F50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_150_tlut_wheel_0 +toad_kart_frame150_wheel1: + symbol: gKartToad150Wheel1 + type: texture + offset: 0x30F50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_150_tlut_wheel_1 +toad_kart_frame150_wheel2: + symbol: gKartToad150Wheel2 + type: texture + offset: 0x30F50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_150_tlut_wheel_2 +toad_kart_frame150_wheel3: + symbol: gKartToad150Wheel3 + type: texture + offset: 0x30F50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_150_tlut_wheel_3 +toad_kart_frame151_wheel0: + symbol: gKartToad151Wheel0 + type: texture + offset: 0x31474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_151_tlut_wheel_0 +toad_kart_frame151_wheel1: + symbol: gKartToad151Wheel1 + type: texture + offset: 0x31474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_151_tlut_wheel_1 +toad_kart_frame151_wheel2: + symbol: gKartToad151Wheel2 + type: texture + offset: 0x31474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_151_tlut_wheel_2 +toad_kart_frame151_wheel3: + symbol: gKartToad151Wheel3 + type: texture + offset: 0x31474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_151_tlut_wheel_3 +toad_kart_frame152_wheel0: + symbol: gKartToad152Wheel0 + type: texture + offset: 0x319A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_152_tlut_wheel_0 +toad_kart_frame152_wheel1: + symbol: gKartToad152Wheel1 + type: texture + offset: 0x319A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_152_tlut_wheel_1 +toad_kart_frame152_wheel2: + symbol: gKartToad152Wheel2 + type: texture + offset: 0x319A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_152_tlut_wheel_2 +toad_kart_frame152_wheel3: + symbol: gKartToad152Wheel3 + type: texture + offset: 0x319A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_152_tlut_wheel_3 +toad_kart_frame153_wheel0: + symbol: gKartToad153Wheel0 + type: texture + offset: 0x31EEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_153_tlut_wheel_0 +toad_kart_frame153_wheel1: + symbol: gKartToad153Wheel1 + type: texture + offset: 0x31EEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_153_tlut_wheel_1 +toad_kart_frame153_wheel2: + symbol: gKartToad153Wheel2 + type: texture + offset: 0x31EEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_153_tlut_wheel_2 +toad_kart_frame153_wheel3: + symbol: gKartToad153Wheel3 + type: texture + offset: 0x31EEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_153_tlut_wheel_3 +toad_kart_frame154_wheel0: + symbol: gKartToad154Wheel0 + type: texture + offset: 0x3244C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_154_tlut_wheel_0 +toad_kart_frame154_wheel1: + symbol: gKartToad154Wheel1 + type: texture + offset: 0x3244C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_154_tlut_wheel_1 +toad_kart_frame154_wheel2: + symbol: gKartToad154Wheel2 + type: texture + offset: 0x3244C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_154_tlut_wheel_2 +toad_kart_frame154_wheel3: + symbol: gKartToad154Wheel3 + type: texture + offset: 0x3244C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_154_tlut_wheel_3 +toad_kart_frame155_wheel0: + symbol: gKartToad155Wheel0 + type: texture + offset: 0x329BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_155_tlut_wheel_0 +toad_kart_frame155_wheel1: + symbol: gKartToad155Wheel1 + type: texture + offset: 0x329BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_155_tlut_wheel_1 +toad_kart_frame155_wheel2: + symbol: gKartToad155Wheel2 + type: texture + offset: 0x329BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_155_tlut_wheel_2 +toad_kart_frame155_wheel3: + symbol: gKartToad155Wheel3 + type: texture + offset: 0x329BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_155_tlut_wheel_3 +toad_kart_frame156_wheel0: + symbol: gKartToad156Wheel0 + type: texture + offset: 0x32F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_156_tlut_wheel_0 +toad_kart_frame156_wheel1: + symbol: gKartToad156Wheel1 + type: texture + offset: 0x32F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_156_tlut_wheel_1 +toad_kart_frame156_wheel2: + symbol: gKartToad156Wheel2 + type: texture + offset: 0x32F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_156_tlut_wheel_2 +toad_kart_frame156_wheel3: + symbol: gKartToad156Wheel3 + type: texture + offset: 0x32F28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_156_tlut_wheel_3 +toad_kart_frame157_wheel0: + symbol: gKartToad157Wheel0 + type: texture + offset: 0x334AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_157_tlut_wheel_0 +toad_kart_frame157_wheel1: + symbol: gKartToad157Wheel1 + type: texture + offset: 0x334AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_157_tlut_wheel_1 +toad_kart_frame157_wheel2: + symbol: gKartToad157Wheel2 + type: texture + offset: 0x334AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_157_tlut_wheel_2 +toad_kart_frame157_wheel3: + symbol: gKartToad157Wheel3 + type: texture + offset: 0x334AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_157_tlut_wheel_3 +toad_kart_frame158_wheel0: + symbol: gKartToad158Wheel0 + type: texture + offset: 0x33A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_158_tlut_wheel_0 +toad_kart_frame158_wheel1: + symbol: gKartToad158Wheel1 + type: texture + offset: 0x33A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_158_tlut_wheel_1 +toad_kart_frame158_wheel2: + symbol: gKartToad158Wheel2 + type: texture + offset: 0x33A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_158_tlut_wheel_2 +toad_kart_frame158_wheel3: + symbol: gKartToad158Wheel3 + type: texture + offset: 0x33A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_158_tlut_wheel_3 +toad_kart_frame159_wheel0: + symbol: gKartToad159Wheel0 + type: texture + offset: 0x33FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_159_tlut_wheel_0 +toad_kart_frame159_wheel1: + symbol: gKartToad159Wheel1 + type: texture + offset: 0x33FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_159_tlut_wheel_1 +toad_kart_frame159_wheel2: + symbol: gKartToad159Wheel2 + type: texture + offset: 0x33FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_159_tlut_wheel_2 +toad_kart_frame159_wheel3: + symbol: gKartToad159Wheel3 + type: texture + offset: 0x33FC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_159_tlut_wheel_3 +toad_kart_frame160_wheel0: + symbol: gKartToad160Wheel0 + type: texture + offset: 0x3454C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_160_tlut_wheel_0 +toad_kart_frame160_wheel1: + symbol: gKartToad160Wheel1 + type: texture + offset: 0x3454C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_160_tlut_wheel_1 +toad_kart_frame160_wheel2: + symbol: gKartToad160Wheel2 + type: texture + offset: 0x3454C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_160_tlut_wheel_2 +toad_kart_frame160_wheel3: + symbol: gKartToad160Wheel3 + type: texture + offset: 0x3454C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_160_tlut_wheel_3 +toad_kart_frame161_wheel0: + symbol: gKartToad161Wheel0 + type: texture + offset: 0x34AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_161_tlut_wheel_0 +toad_kart_frame161_wheel1: + symbol: gKartToad161Wheel1 + type: texture + offset: 0x34AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_161_tlut_wheel_1 +toad_kart_frame161_wheel2: + symbol: gKartToad161Wheel2 + type: texture + offset: 0x34AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_161_tlut_wheel_2 +toad_kart_frame161_wheel3: + symbol: gKartToad161Wheel3 + type: texture + offset: 0x34AE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_161_tlut_wheel_3 +toad_kart_frame162_wheel0: + symbol: gKartToad162Wheel0 + type: texture + offset: 0x350A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_162_tlut_wheel_0 +toad_kart_frame162_wheel1: + symbol: gKartToad162Wheel1 + type: texture + offset: 0x350A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_162_tlut_wheel_1 +toad_kart_frame162_wheel2: + symbol: gKartToad162Wheel2 + type: texture + offset: 0x350A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_162_tlut_wheel_2 +toad_kart_frame162_wheel3: + symbol: gKartToad162Wheel3 + type: texture + offset: 0x350A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_162_tlut_wheel_3 +toad_kart_frame163_wheel0: + symbol: gKartToad163Wheel0 + type: texture + offset: 0x3566C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_163_tlut_wheel_0 +toad_kart_frame163_wheel1: + symbol: gKartToad163Wheel1 + type: texture + offset: 0x3566C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_163_tlut_wheel_1 +toad_kart_frame163_wheel2: + symbol: gKartToad163Wheel2 + type: texture + offset: 0x3566C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_163_tlut_wheel_2 +toad_kart_frame163_wheel3: + symbol: gKartToad163Wheel3 + type: texture + offset: 0x3566C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_163_tlut_wheel_3 +toad_kart_frame164_wheel0: + symbol: gKartToad164Wheel0 + type: texture + offset: 0x35C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_164_tlut_wheel_0 +toad_kart_frame164_wheel1: + symbol: gKartToad164Wheel1 + type: texture + offset: 0x35C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_164_tlut_wheel_1 +toad_kart_frame164_wheel2: + symbol: gKartToad164Wheel2 + type: texture + offset: 0x35C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_164_tlut_wheel_2 +toad_kart_frame164_wheel3: + symbol: gKartToad164Wheel3 + type: texture + offset: 0x35C2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_164_tlut_wheel_3 +toad_kart_frame165_wheel0: + symbol: gKartToad165Wheel0 + type: texture + offset: 0x36218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_165_tlut_wheel_0 +toad_kart_frame165_wheel1: + symbol: gKartToad165Wheel1 + type: texture + offset: 0x36218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_165_tlut_wheel_1 +toad_kart_frame165_wheel2: + symbol: gKartToad165Wheel2 + type: texture + offset: 0x36218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_165_tlut_wheel_2 +toad_kart_frame165_wheel3: + symbol: gKartToad165Wheel3 + type: texture + offset: 0x36218 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_165_tlut_wheel_3 +toad_kart_frame166_wheel0: + symbol: gKartToad166Wheel0 + type: texture + offset: 0x36804 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_166_tlut_wheel_0 +toad_kart_frame166_wheel1: + symbol: gKartToad166Wheel1 + type: texture + offset: 0x36804 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_166_tlut_wheel_1 +toad_kart_frame166_wheel2: + symbol: gKartToad166Wheel2 + type: texture + offset: 0x36804 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_166_tlut_wheel_2 +toad_kart_frame166_wheel3: + symbol: gKartToad166Wheel3 + type: texture + offset: 0x36804 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_166_tlut_wheel_3 +toad_kart_frame167_wheel0: + symbol: gKartToad167Wheel0 + type: texture + offset: 0x36DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_167_tlut_wheel_0 +toad_kart_frame167_wheel1: + symbol: gKartToad167Wheel1 + type: texture + offset: 0x36DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_167_tlut_wheel_1 +toad_kart_frame167_wheel2: + symbol: gKartToad167Wheel2 + type: texture + offset: 0x36DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_167_tlut_wheel_2 +toad_kart_frame167_wheel3: + symbol: gKartToad167Wheel3 + type: texture + offset: 0x36DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_167_tlut_wheel_3 +toad_kart_frame168_wheel0: + symbol: gKartToad168Wheel0 + type: texture + offset: 0x373E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_168_tlut_wheel_0 +toad_kart_frame168_wheel1: + symbol: gKartToad168Wheel1 + type: texture + offset: 0x373E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_168_tlut_wheel_1 +toad_kart_frame168_wheel2: + symbol: gKartToad168Wheel2 + type: texture + offset: 0x373E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_168_tlut_wheel_2 +toad_kart_frame168_wheel3: + symbol: gKartToad168Wheel3 + type: texture + offset: 0x373E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_168_tlut_wheel_3 +toad_kart_frame169_wheel0: + symbol: gKartToad169Wheel0 + type: texture + offset: 0x378F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_169_tlut_wheel_0 +toad_kart_frame169_wheel1: + symbol: gKartToad169Wheel1 + type: texture + offset: 0x378F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_169_tlut_wheel_1 +toad_kart_frame169_wheel2: + symbol: gKartToad169Wheel2 + type: texture + offset: 0x378F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_169_tlut_wheel_2 +toad_kart_frame169_wheel3: + symbol: gKartToad169Wheel3 + type: texture + offset: 0x378F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_169_tlut_wheel_3 +toad_kart_frame170_wheel0: + symbol: gKartToad170Wheel0 + type: texture + offset: 0x37E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_170_tlut_wheel_0 +toad_kart_frame170_wheel1: + symbol: gKartToad170Wheel1 + type: texture + offset: 0x37E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_170_tlut_wheel_1 +toad_kart_frame170_wheel2: + symbol: gKartToad170Wheel2 + type: texture + offset: 0x37E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_170_tlut_wheel_2 +toad_kart_frame170_wheel3: + symbol: gKartToad170Wheel3 + type: texture + offset: 0x37E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_170_tlut_wheel_3 +toad_kart_frame171_wheel0: + symbol: gKartToad171Wheel0 + type: texture + offset: 0x3836C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_171_tlut_wheel_0 +toad_kart_frame171_wheel1: + symbol: gKartToad171Wheel1 + type: texture + offset: 0x3836C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_171_tlut_wheel_1 +toad_kart_frame171_wheel2: + symbol: gKartToad171Wheel2 + type: texture + offset: 0x3836C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_171_tlut_wheel_2 +toad_kart_frame171_wheel3: + symbol: gKartToad171Wheel3 + type: texture + offset: 0x3836C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_171_tlut_wheel_3 +toad_kart_frame172_wheel0: + symbol: gKartToad172Wheel0 + type: texture + offset: 0x388B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_172_tlut_wheel_0 +toad_kart_frame172_wheel1: + symbol: gKartToad172Wheel1 + type: texture + offset: 0x388B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_172_tlut_wheel_1 +toad_kart_frame172_wheel2: + symbol: gKartToad172Wheel2 + type: texture + offset: 0x388B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_172_tlut_wheel_2 +toad_kart_frame172_wheel3: + symbol: gKartToad172Wheel3 + type: texture + offset: 0x388B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_172_tlut_wheel_3 +toad_kart_frame173_wheel0: + symbol: gKartToad173Wheel0 + type: texture + offset: 0x38E1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_173_tlut_wheel_0 +toad_kart_frame173_wheel1: + symbol: gKartToad173Wheel1 + type: texture + offset: 0x38E1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_173_tlut_wheel_1 +toad_kart_frame173_wheel2: + symbol: gKartToad173Wheel2 + type: texture + offset: 0x38E1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_173_tlut_wheel_2 +toad_kart_frame173_wheel3: + symbol: gKartToad173Wheel3 + type: texture + offset: 0x38E1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_173_tlut_wheel_3 +toad_kart_frame174_wheel0: + symbol: gKartToad174Wheel0 + type: texture + offset: 0x39384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_174_tlut_wheel_0 +toad_kart_frame174_wheel1: + symbol: gKartToad174Wheel1 + type: texture + offset: 0x39384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_174_tlut_wheel_1 +toad_kart_frame174_wheel2: + symbol: gKartToad174Wheel2 + type: texture + offset: 0x39384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_174_tlut_wheel_2 +toad_kart_frame174_wheel3: + symbol: gKartToad174Wheel3 + type: texture + offset: 0x39384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_174_tlut_wheel_3 +toad_kart_frame175_wheel0: + symbol: gKartToad175Wheel0 + type: texture + offset: 0x398F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_175_tlut_wheel_0 +toad_kart_frame175_wheel1: + symbol: gKartToad175Wheel1 + type: texture + offset: 0x398F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_175_tlut_wheel_1 +toad_kart_frame175_wheel2: + symbol: gKartToad175Wheel2 + type: texture + offset: 0x398F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_175_tlut_wheel_2 +toad_kart_frame175_wheel3: + symbol: gKartToad175Wheel3 + type: texture + offset: 0x398F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_175_tlut_wheel_3 +toad_kart_frame176_wheel0: + symbol: gKartToad176Wheel0 + type: texture + offset: 0x39E6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_176_tlut_wheel_0 +toad_kart_frame176_wheel1: + symbol: gKartToad176Wheel1 + type: texture + offset: 0x39E6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_176_tlut_wheel_1 +toad_kart_frame176_wheel2: + symbol: gKartToad176Wheel2 + type: texture + offset: 0x39E6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_176_tlut_wheel_2 +toad_kart_frame176_wheel3: + symbol: gKartToad176Wheel3 + type: texture + offset: 0x39E6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_176_tlut_wheel_3 +toad_kart_frame177_wheel0: + symbol: gKartToad177Wheel0 + type: texture + offset: 0x3A3E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_177_tlut_wheel_0 +toad_kart_frame177_wheel1: + symbol: gKartToad177Wheel1 + type: texture + offset: 0x3A3E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_177_tlut_wheel_1 +toad_kart_frame177_wheel2: + symbol: gKartToad177Wheel2 + type: texture + offset: 0x3A3E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_177_tlut_wheel_2 +toad_kart_frame177_wheel3: + symbol: gKartToad177Wheel3 + type: texture + offset: 0x3A3E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_177_tlut_wheel_3 +toad_kart_frame178_wheel0: + symbol: gKartToad178Wheel0 + type: texture + offset: 0x3A970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_178_tlut_wheel_0 +toad_kart_frame178_wheel1: + symbol: gKartToad178Wheel1 + type: texture + offset: 0x3A970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_178_tlut_wheel_1 +toad_kart_frame178_wheel2: + symbol: gKartToad178Wheel2 + type: texture + offset: 0x3A970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_178_tlut_wheel_2 +toad_kart_frame178_wheel3: + symbol: gKartToad178Wheel3 + type: texture + offset: 0x3A970 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_178_tlut_wheel_3 +toad_kart_frame179_wheel0: + symbol: gKartToad179Wheel0 + type: texture + offset: 0x3AF00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_179_tlut_wheel_0 +toad_kart_frame179_wheel1: + symbol: gKartToad179Wheel1 + type: texture + offset: 0x3AF00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_179_tlut_wheel_1 +toad_kart_frame179_wheel2: + symbol: gKartToad179Wheel2 + type: texture + offset: 0x3AF00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_179_tlut_wheel_2 +toad_kart_frame179_wheel3: + symbol: gKartToad179Wheel3 + type: texture + offset: 0x3AF00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_179_tlut_wheel_3 +toad_kart_frame180_wheel0: + symbol: gKartToad180Wheel0 + type: texture + offset: 0x3B498 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_180_tlut_wheel_0 +toad_kart_frame180_wheel1: + symbol: gKartToad180Wheel1 + type: texture + offset: 0x3B498 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_180_tlut_wheel_1 +toad_kart_frame180_wheel2: + symbol: gKartToad180Wheel2 + type: texture + offset: 0x3B498 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_180_tlut_wheel_2 +toad_kart_frame180_wheel3: + symbol: gKartToad180Wheel3 + type: texture + offset: 0x3B498 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_180_tlut_wheel_3 +toad_kart_frame181_wheel0: + symbol: gKartToad181Wheel0 + type: texture + offset: 0x3BA4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_181_tlut_wheel_0 +toad_kart_frame181_wheel1: + symbol: gKartToad181Wheel1 + type: texture + offset: 0x3BA4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_181_tlut_wheel_1 +toad_kart_frame181_wheel2: + symbol: gKartToad181Wheel2 + type: texture + offset: 0x3BA4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_181_tlut_wheel_2 +toad_kart_frame181_wheel3: + symbol: gKartToad181Wheel3 + type: texture + offset: 0x3BA4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_181_tlut_wheel_3 +toad_kart_frame182_wheel0: + symbol: gKartToad182Wheel0 + type: texture + offset: 0x3BFF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_182_tlut_wheel_0 +toad_kart_frame182_wheel1: + symbol: gKartToad182Wheel1 + type: texture + offset: 0x3BFF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_182_tlut_wheel_1 +toad_kart_frame182_wheel2: + symbol: gKartToad182Wheel2 + type: texture + offset: 0x3BFF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_182_tlut_wheel_2 +toad_kart_frame182_wheel3: + symbol: gKartToad182Wheel3 + type: texture + offset: 0x3BFF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_182_tlut_wheel_3 +toad_kart_frame183_wheel0: + symbol: gKartToad183Wheel0 + type: texture + offset: 0x3C5A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_183_tlut_wheel_0 +toad_kart_frame183_wheel1: + symbol: gKartToad183Wheel1 + type: texture + offset: 0x3C5A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_183_tlut_wheel_1 +toad_kart_frame183_wheel2: + symbol: gKartToad183Wheel2 + type: texture + offset: 0x3C5A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_183_tlut_wheel_2 +toad_kart_frame183_wheel3: + symbol: gKartToad183Wheel3 + type: texture + offset: 0x3C5A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_183_tlut_wheel_3 +toad_kart_frame184_wheel0: + symbol: gKartToad184Wheel0 + type: texture + offset: 0x3CB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_184_tlut_wheel_0 +toad_kart_frame184_wheel1: + symbol: gKartToad184Wheel1 + type: texture + offset: 0x3CB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_184_tlut_wheel_1 +toad_kart_frame184_wheel2: + symbol: gKartToad184Wheel2 + type: texture + offset: 0x3CB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_184_tlut_wheel_2 +toad_kart_frame184_wheel3: + symbol: gKartToad184Wheel3 + type: texture + offset: 0x3CB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_184_tlut_wheel_3 +toad_kart_frame185_wheel0: + symbol: gKartToad185Wheel0 + type: texture + offset: 0x3D124 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_185_tlut_wheel_0 +toad_kart_frame185_wheel1: + symbol: gKartToad185Wheel1 + type: texture + offset: 0x3D124 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_185_tlut_wheel_1 +toad_kart_frame185_wheel2: + symbol: gKartToad185Wheel2 + type: texture + offset: 0x3D124 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_185_tlut_wheel_2 +toad_kart_frame185_wheel3: + symbol: gKartToad185Wheel3 + type: texture + offset: 0x3D124 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_185_tlut_wheel_3 +toad_kart_frame186_wheel0: + symbol: gKartToad186Wheel0 + type: texture + offset: 0x3D720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_186_tlut_wheel_0 +toad_kart_frame186_wheel1: + symbol: gKartToad186Wheel1 + type: texture + offset: 0x3D720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_186_tlut_wheel_1 +toad_kart_frame186_wheel2: + symbol: gKartToad186Wheel2 + type: texture + offset: 0x3D720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_186_tlut_wheel_2 +toad_kart_frame186_wheel3: + symbol: gKartToad186Wheel3 + type: texture + offset: 0x3D720 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_186_tlut_wheel_3 +toad_kart_frame187_wheel0: + symbol: gKartToad187Wheel0 + type: texture + offset: 0x3DD18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_187_tlut_wheel_0 +toad_kart_frame187_wheel1: + symbol: gKartToad187Wheel1 + type: texture + offset: 0x3DD18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_187_tlut_wheel_1 +toad_kart_frame187_wheel2: + symbol: gKartToad187Wheel2 + type: texture + offset: 0x3DD18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_187_tlut_wheel_2 +toad_kart_frame187_wheel3: + symbol: gKartToad187Wheel3 + type: texture + offset: 0x3DD18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_187_tlut_wheel_3 +toad_kart_frame188_wheel0: + symbol: gKartToad188Wheel0 + type: texture + offset: 0x3E330 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_188_tlut_wheel_0 +toad_kart_frame188_wheel1: + symbol: gKartToad188Wheel1 + type: texture + offset: 0x3E330 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_188_tlut_wheel_1 +toad_kart_frame188_wheel2: + symbol: gKartToad188Wheel2 + type: texture + offset: 0x3E330 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_188_tlut_wheel_2 +toad_kart_frame188_wheel3: + symbol: gKartToad188Wheel3 + type: texture + offset: 0x3E330 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_188_tlut_wheel_3 +toad_kart_frame189_wheel0: + symbol: gKartToad189Wheel0 + type: texture + offset: 0x3E938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_189_tlut_wheel_0 +toad_kart_frame189_wheel1: + symbol: gKartToad189Wheel1 + type: texture + offset: 0x3E938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_189_tlut_wheel_1 +toad_kart_frame189_wheel2: + symbol: gKartToad189Wheel2 + type: texture + offset: 0x3E938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_189_tlut_wheel_2 +toad_kart_frame189_wheel3: + symbol: gKartToad189Wheel3 + type: texture + offset: 0x3E938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_189_tlut_wheel_3 +toad_kart_frame190_wheel0: + symbol: gKartToad190Wheel0 + type: texture + offset: 0x3EDD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_190_tlut_wheel_0 +toad_kart_frame190_wheel1: + symbol: gKartToad190Wheel1 + type: texture + offset: 0x3EDD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_190_tlut_wheel_1 +toad_kart_frame190_wheel2: + symbol: gKartToad190Wheel2 + type: texture + offset: 0x3EDD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_190_tlut_wheel_2 +toad_kart_frame190_wheel3: + symbol: gKartToad190Wheel3 + type: texture + offset: 0x3EDD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_190_tlut_wheel_3 +toad_kart_frame191_wheel0: + symbol: gKartToad191Wheel0 + type: texture + offset: 0x3F29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_191_tlut_wheel_0 +toad_kart_frame191_wheel1: + symbol: gKartToad191Wheel1 + type: texture + offset: 0x3F29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_191_tlut_wheel_1 +toad_kart_frame191_wheel2: + symbol: gKartToad191Wheel2 + type: texture + offset: 0x3F29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_191_tlut_wheel_2 +toad_kart_frame191_wheel3: + symbol: gKartToad191Wheel3 + type: texture + offset: 0x3F29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_191_tlut_wheel_3 +toad_kart_frame192_wheel0: + symbol: gKartToad192Wheel0 + type: texture + offset: 0x3F778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_192_tlut_wheel_0 +toad_kart_frame192_wheel1: + symbol: gKartToad192Wheel1 + type: texture + offset: 0x3F778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_192_tlut_wheel_1 +toad_kart_frame192_wheel2: + symbol: gKartToad192Wheel2 + type: texture + offset: 0x3F778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_192_tlut_wheel_2 +toad_kart_frame192_wheel3: + symbol: gKartToad192Wheel3 + type: texture + offset: 0x3F778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_192_tlut_wheel_3 +toad_kart_frame193_wheel0: + symbol: gKartToad193Wheel0 + type: texture + offset: 0x3FC90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_193_tlut_wheel_0 +toad_kart_frame193_wheel1: + symbol: gKartToad193Wheel1 + type: texture + offset: 0x3FC90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_193_tlut_wheel_1 +toad_kart_frame193_wheel2: + symbol: gKartToad193Wheel2 + type: texture + offset: 0x3FC90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_193_tlut_wheel_2 +toad_kart_frame193_wheel3: + symbol: gKartToad193Wheel3 + type: texture + offset: 0x3FC90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_193_tlut_wheel_3 +toad_kart_frame194_wheel0: + symbol: gKartToad194Wheel0 + type: texture + offset: 0x401E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_194_tlut_wheel_0 +toad_kart_frame194_wheel1: + symbol: gKartToad194Wheel1 + type: texture + offset: 0x401E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_194_tlut_wheel_1 +toad_kart_frame194_wheel2: + symbol: gKartToad194Wheel2 + type: texture + offset: 0x401E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_194_tlut_wheel_2 +toad_kart_frame194_wheel3: + symbol: gKartToad194Wheel3 + type: texture + offset: 0x401E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_194_tlut_wheel_3 +toad_kart_frame195_wheel0: + symbol: gKartToad195Wheel0 + type: texture + offset: 0x40758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_195_tlut_wheel_0 +toad_kart_frame195_wheel1: + symbol: gKartToad195Wheel1 + type: texture + offset: 0x40758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_195_tlut_wheel_1 +toad_kart_frame195_wheel2: + symbol: gKartToad195Wheel2 + type: texture + offset: 0x40758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_195_tlut_wheel_2 +toad_kart_frame195_wheel3: + symbol: gKartToad195Wheel3 + type: texture + offset: 0x40758 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_195_tlut_wheel_3 +toad_kart_frame196_wheel0: + symbol: gKartToad196Wheel0 + type: texture + offset: 0x40CF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_196_tlut_wheel_0 +toad_kart_frame196_wheel1: + symbol: gKartToad196Wheel1 + type: texture + offset: 0x40CF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_196_tlut_wheel_1 +toad_kart_frame196_wheel2: + symbol: gKartToad196Wheel2 + type: texture + offset: 0x40CF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_196_tlut_wheel_2 +toad_kart_frame196_wheel3: + symbol: gKartToad196Wheel3 + type: texture + offset: 0x40CF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_196_tlut_wheel_3 +toad_kart_frame197_wheel0: + symbol: gKartToad197Wheel0 + type: texture + offset: 0x412B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_197_tlut_wheel_0 +toad_kart_frame197_wheel1: + symbol: gKartToad197Wheel1 + type: texture + offset: 0x412B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_197_tlut_wheel_1 +toad_kart_frame197_wheel2: + symbol: gKartToad197Wheel2 + type: texture + offset: 0x412B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_197_tlut_wheel_2 +toad_kart_frame197_wheel3: + symbol: gKartToad197Wheel3 + type: texture + offset: 0x412B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_197_tlut_wheel_3 +toad_kart_frame198_wheel0: + symbol: gKartToad198Wheel0 + type: texture + offset: 0x41898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_198_tlut_wheel_0 +toad_kart_frame198_wheel1: + symbol: gKartToad198Wheel1 + type: texture + offset: 0x41898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_198_tlut_wheel_1 +toad_kart_frame198_wheel2: + symbol: gKartToad198Wheel2 + type: texture + offset: 0x41898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_198_tlut_wheel_2 +toad_kart_frame198_wheel3: + symbol: gKartToad198Wheel3 + type: texture + offset: 0x41898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_198_tlut_wheel_3 +toad_kart_frame199_wheel0: + symbol: gKartToad199Wheel0 + type: texture + offset: 0x41EA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_199_tlut_wheel_0 +toad_kart_frame199_wheel1: + symbol: gKartToad199Wheel1 + type: texture + offset: 0x41EA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_199_tlut_wheel_1 +toad_kart_frame199_wheel2: + symbol: gKartToad199Wheel2 + type: texture + offset: 0x41EA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_199_tlut_wheel_2 +toad_kart_frame199_wheel3: + symbol: gKartToad199Wheel3 + type: texture + offset: 0x41EA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_199_tlut_wheel_3 +toad_kart_frame200_wheel0: + symbol: gKartToad200Wheel0 + type: texture + offset: 0x424CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_200_tlut_wheel_0 +toad_kart_frame200_wheel1: + symbol: gKartToad200Wheel1 + type: texture + offset: 0x424CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_200_tlut_wheel_1 +toad_kart_frame200_wheel2: + symbol: gKartToad200Wheel2 + type: texture + offset: 0x424CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_200_tlut_wheel_2 +toad_kart_frame200_wheel3: + symbol: gKartToad200Wheel3 + type: texture + offset: 0x424CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_200_tlut_wheel_3 +toad_kart_frame201_wheel0: + symbol: gKartToad201Wheel0 + type: texture + offset: 0x42AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_201_tlut_wheel_0 +toad_kart_frame201_wheel1: + symbol: gKartToad201Wheel1 + type: texture + offset: 0x42AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_201_tlut_wheel_1 +toad_kart_frame201_wheel2: + symbol: gKartToad201Wheel2 + type: texture + offset: 0x42AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_201_tlut_wheel_2 +toad_kart_frame201_wheel3: + symbol: gKartToad201Wheel3 + type: texture + offset: 0x42AF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_201_tlut_wheel_3 +toad_kart_frame202_wheel0: + symbol: gKartToad202Wheel0 + type: texture + offset: 0x43108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_202_tlut_wheel_0 +toad_kart_frame202_wheel1: + symbol: gKartToad202Wheel1 + type: texture + offset: 0x43108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_202_tlut_wheel_1 +toad_kart_frame202_wheel2: + symbol: gKartToad202Wheel2 + type: texture + offset: 0x43108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_202_tlut_wheel_2 +toad_kart_frame202_wheel3: + symbol: gKartToad202Wheel3 + type: texture + offset: 0x43108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_202_tlut_wheel_3 +toad_kart_frame203_wheel0: + symbol: gKartToad203Wheel0 + type: texture + offset: 0x4370C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_203_tlut_wheel_0 +toad_kart_frame203_wheel1: + symbol: gKartToad203Wheel1 + type: texture + offset: 0x4370C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_203_tlut_wheel_1 +toad_kart_frame203_wheel2: + symbol: gKartToad203Wheel2 + type: texture + offset: 0x4370C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_203_tlut_wheel_2 +toad_kart_frame203_wheel3: + symbol: gKartToad203Wheel3 + type: texture + offset: 0x4370C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_203_tlut_wheel_3 +toad_kart_frame204_wheel0: + symbol: gKartToad204Wheel0 + type: texture + offset: 0x43D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_204_tlut_wheel_0 +toad_kart_frame204_wheel1: + symbol: gKartToad204Wheel1 + type: texture + offset: 0x43D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_204_tlut_wheel_1 +toad_kart_frame204_wheel2: + symbol: gKartToad204Wheel2 + type: texture + offset: 0x43D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_204_tlut_wheel_2 +toad_kart_frame204_wheel3: + symbol: gKartToad204Wheel3 + type: texture + offset: 0x43D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_204_tlut_wheel_3 +toad_kart_frame205_wheel0: + symbol: gKartToad205Wheel0 + type: texture + offset: 0x442E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_205_tlut_wheel_0 +toad_kart_frame205_wheel1: + symbol: gKartToad205Wheel1 + type: texture + offset: 0x442E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_205_tlut_wheel_1 +toad_kart_frame205_wheel2: + symbol: gKartToad205Wheel2 + type: texture + offset: 0x442E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_205_tlut_wheel_2 +toad_kart_frame205_wheel3: + symbol: gKartToad205Wheel3 + type: texture + offset: 0x442E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_205_tlut_wheel_3 +toad_kart_frame206_wheel0: + symbol: gKartToad206Wheel0 + type: texture + offset: 0x448B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_206_tlut_wheel_0 +toad_kart_frame206_wheel1: + symbol: gKartToad206Wheel1 + type: texture + offset: 0x448B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_206_tlut_wheel_1 +toad_kart_frame206_wheel2: + symbol: gKartToad206Wheel2 + type: texture + offset: 0x448B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_206_tlut_wheel_2 +toad_kart_frame206_wheel3: + symbol: gKartToad206Wheel3 + type: texture + offset: 0x448B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_206_tlut_wheel_3 +toad_kart_frame207_wheel0: + symbol: gKartToad207Wheel0 + type: texture + offset: 0x44E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_207_tlut_wheel_0 +toad_kart_frame207_wheel1: + symbol: gKartToad207Wheel1 + type: texture + offset: 0x44E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_207_tlut_wheel_1 +toad_kart_frame207_wheel2: + symbol: gKartToad207Wheel2 + type: texture + offset: 0x44E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_207_tlut_wheel_2 +toad_kart_frame207_wheel3: + symbol: gKartToad207Wheel3 + type: texture + offset: 0x44E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_207_tlut_wheel_3 +toad_kart_frame208_wheel0: + symbol: gKartToad208Wheel0 + type: texture + offset: 0x45424 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_208_tlut_wheel_0 +toad_kart_frame208_wheel1: + symbol: gKartToad208Wheel1 + type: texture + offset: 0x45424 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_208_tlut_wheel_1 +toad_kart_frame208_wheel2: + symbol: gKartToad208Wheel2 + type: texture + offset: 0x45424 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_208_tlut_wheel_2 +toad_kart_frame208_wheel3: + symbol: gKartToad208Wheel3 + type: texture + offset: 0x45424 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_208_tlut_wheel_3 +toad_kart_frame209_wheel0: + symbol: gKartToad209Wheel0 + type: texture + offset: 0x459D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_209_tlut_wheel_0 +toad_kart_frame209_wheel1: + symbol: gKartToad209Wheel1 + type: texture + offset: 0x459D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_209_tlut_wheel_1 +toad_kart_frame209_wheel2: + symbol: gKartToad209Wheel2 + type: texture + offset: 0x459D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_209_tlut_wheel_2 +toad_kart_frame209_wheel3: + symbol: gKartToad209Wheel3 + type: texture + offset: 0x459D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_209_tlut_wheel_3 +toad_kart_frame210_wheel0: + symbol: gKartToad210Wheel0 + type: texture + offset: 0x45E7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_210_tlut_wheel_0 +toad_kart_frame210_wheel1: + symbol: gKartToad210Wheel1 + type: texture + offset: 0x45E7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_210_tlut_wheel_1 +toad_kart_frame210_wheel2: + symbol: gKartToad210Wheel2 + type: texture + offset: 0x45E7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_210_tlut_wheel_2 +toad_kart_frame210_wheel3: + symbol: gKartToad210Wheel3 + type: texture + offset: 0x45E7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_210_tlut_wheel_3 +toad_kart_frame211_wheel0: + symbol: gKartToad211Wheel0 + type: texture + offset: 0x4636C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_211_tlut_wheel_0 +toad_kart_frame211_wheel1: + symbol: gKartToad211Wheel1 + type: texture + offset: 0x4636C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_211_tlut_wheel_1 +toad_kart_frame211_wheel2: + symbol: gKartToad211Wheel2 + type: texture + offset: 0x4636C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_211_tlut_wheel_2 +toad_kart_frame211_wheel3: + symbol: gKartToad211Wheel3 + type: texture + offset: 0x4636C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_211_tlut_wheel_3 +toad_kart_frame212_wheel0: + symbol: gKartToad212Wheel0 + type: texture + offset: 0x46890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_212_tlut_wheel_0 +toad_kart_frame212_wheel1: + symbol: gKartToad212Wheel1 + type: texture + offset: 0x46890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_212_tlut_wheel_1 +toad_kart_frame212_wheel2: + symbol: gKartToad212Wheel2 + type: texture + offset: 0x46890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_212_tlut_wheel_2 +toad_kart_frame212_wheel3: + symbol: gKartToad212Wheel3 + type: texture + offset: 0x46890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_212_tlut_wheel_3 +toad_kart_frame213_wheel0: + symbol: gKartToad213Wheel0 + type: texture + offset: 0x46DE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_213_tlut_wheel_0 +toad_kart_frame213_wheel1: + symbol: gKartToad213Wheel1 + type: texture + offset: 0x46DE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_213_tlut_wheel_1 +toad_kart_frame213_wheel2: + symbol: gKartToad213Wheel2 + type: texture + offset: 0x46DE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_213_tlut_wheel_2 +toad_kart_frame213_wheel3: + symbol: gKartToad213Wheel3 + type: texture + offset: 0x46DE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_213_tlut_wheel_3 +toad_kart_frame214_wheel0: + symbol: gKartToad214Wheel0 + type: texture + offset: 0x47344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_214_tlut_wheel_0 +toad_kart_frame214_wheel1: + symbol: gKartToad214Wheel1 + type: texture + offset: 0x47344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_214_tlut_wheel_1 +toad_kart_frame214_wheel2: + symbol: gKartToad214Wheel2 + type: texture + offset: 0x47344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_214_tlut_wheel_2 +toad_kart_frame214_wheel3: + symbol: gKartToad214Wheel3 + type: texture + offset: 0x47344 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_214_tlut_wheel_3 +toad_kart_frame215_wheel0: + symbol: gKartToad215Wheel0 + type: texture + offset: 0x478D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_215_tlut_wheel_0 +toad_kart_frame215_wheel1: + symbol: gKartToad215Wheel1 + type: texture + offset: 0x478D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_215_tlut_wheel_1 +toad_kart_frame215_wheel2: + symbol: gKartToad215Wheel2 + type: texture + offset: 0x478D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_215_tlut_wheel_2 +toad_kart_frame215_wheel3: + symbol: gKartToad215Wheel3 + type: texture + offset: 0x478D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_215_tlut_wheel_3 +toad_kart_frame216_wheel0: + symbol: gKartToad216Wheel0 + type: texture + offset: 0x47E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_216_tlut_wheel_0 +toad_kart_frame216_wheel1: + symbol: gKartToad216Wheel1 + type: texture + offset: 0x47E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_216_tlut_wheel_1 +toad_kart_frame216_wheel2: + symbol: gKartToad216Wheel2 + type: texture + offset: 0x47E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_216_tlut_wheel_2 +toad_kart_frame216_wheel3: + symbol: gKartToad216Wheel3 + type: texture + offset: 0x47E78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_216_tlut_wheel_3 +toad_kart_frame217_wheel0: + symbol: gKartToad217Wheel0 + type: texture + offset: 0x48440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_217_tlut_wheel_0 +toad_kart_frame217_wheel1: + symbol: gKartToad217Wheel1 + type: texture + offset: 0x48440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_217_tlut_wheel_1 +toad_kart_frame217_wheel2: + symbol: gKartToad217Wheel2 + type: texture + offset: 0x48440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_217_tlut_wheel_2 +toad_kart_frame217_wheel3: + symbol: gKartToad217Wheel3 + type: texture + offset: 0x48440 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_217_tlut_wheel_3 +toad_kart_frame218_wheel0: + symbol: gKartToad218Wheel0 + type: texture + offset: 0x48A34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_218_tlut_wheel_0 +toad_kart_frame218_wheel1: + symbol: gKartToad218Wheel1 + type: texture + offset: 0x48A34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_218_tlut_wheel_1 +toad_kart_frame218_wheel2: + symbol: gKartToad218Wheel2 + type: texture + offset: 0x48A34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_218_tlut_wheel_2 +toad_kart_frame218_wheel3: + symbol: gKartToad218Wheel3 + type: texture + offset: 0x48A34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_218_tlut_wheel_3 +toad_kart_frame219_wheel0: + symbol: gKartToad219Wheel0 + type: texture + offset: 0x49048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_219_tlut_wheel_0 +toad_kart_frame219_wheel1: + symbol: gKartToad219Wheel1 + type: texture + offset: 0x49048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_219_tlut_wheel_1 +toad_kart_frame219_wheel2: + symbol: gKartToad219Wheel2 + type: texture + offset: 0x49048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_219_tlut_wheel_2 +toad_kart_frame219_wheel3: + symbol: gKartToad219Wheel3 + type: texture + offset: 0x49048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_219_tlut_wheel_3 +toad_kart_frame220_wheel0: + symbol: gKartToad220Wheel0 + type: texture + offset: 0x49648 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_220_tlut_wheel_0 +toad_kart_frame220_wheel1: + symbol: gKartToad220Wheel1 + type: texture + offset: 0x49648 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_220_tlut_wheel_1 +toad_kart_frame220_wheel2: + symbol: gKartToad220Wheel2 + type: texture + offset: 0x49648 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_220_tlut_wheel_2 +toad_kart_frame220_wheel3: + symbol: gKartToad220Wheel3 + type: texture + offset: 0x49648 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_220_tlut_wheel_3 +toad_kart_frame221_wheel0: + symbol: gKartToad221Wheel0 + type: texture + offset: 0x49C54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_221_tlut_wheel_0 +toad_kart_frame221_wheel1: + symbol: gKartToad221Wheel1 + type: texture + offset: 0x49C54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_221_tlut_wheel_1 +toad_kart_frame221_wheel2: + symbol: gKartToad221Wheel2 + type: texture + offset: 0x49C54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_221_tlut_wheel_2 +toad_kart_frame221_wheel3: + symbol: gKartToad221Wheel3 + type: texture + offset: 0x49C54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_221_tlut_wheel_3 +toad_kart_frame222_wheel0: + symbol: gKartToad222Wheel0 + type: texture + offset: 0x4A250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_222_tlut_wheel_0 +toad_kart_frame222_wheel1: + symbol: gKartToad222Wheel1 + type: texture + offset: 0x4A250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_222_tlut_wheel_1 +toad_kart_frame222_wheel2: + symbol: gKartToad222Wheel2 + type: texture + offset: 0x4A250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_222_tlut_wheel_2 +toad_kart_frame222_wheel3: + symbol: gKartToad222Wheel3 + type: texture + offset: 0x4A250 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_222_tlut_wheel_3 +toad_kart_frame223_wheel0: + symbol: gKartToad223Wheel0 + type: texture + offset: 0x4A824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_223_tlut_wheel_0 +toad_kart_frame223_wheel1: + symbol: gKartToad223Wheel1 + type: texture + offset: 0x4A824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_223_tlut_wheel_1 +toad_kart_frame223_wheel2: + symbol: gKartToad223Wheel2 + type: texture + offset: 0x4A824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_223_tlut_wheel_2 +toad_kart_frame223_wheel3: + symbol: gKartToad223Wheel3 + type: texture + offset: 0x4A824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_223_tlut_wheel_3 +toad_kart_frame224_wheel0: + symbol: gKartToad224Wheel0 + type: texture + offset: 0x4ADD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_224_tlut_wheel_0 +toad_kart_frame224_wheel1: + symbol: gKartToad224Wheel1 + type: texture + offset: 0x4ADD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_224_tlut_wheel_1 +toad_kart_frame224_wheel2: + symbol: gKartToad224Wheel2 + type: texture + offset: 0x4ADD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_224_tlut_wheel_2 +toad_kart_frame224_wheel3: + symbol: gKartToad224Wheel3 + type: texture + offset: 0x4ADD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_224_tlut_wheel_3 +toad_kart_frame225_wheel0: + symbol: gKartToad225Wheel0 + type: texture + offset: 0x4B374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_225_tlut_wheel_0 +toad_kart_frame225_wheel1: + symbol: gKartToad225Wheel1 + type: texture + offset: 0x4B374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_225_tlut_wheel_1 +toad_kart_frame225_wheel2: + symbol: gKartToad225Wheel2 + type: texture + offset: 0x4B374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_225_tlut_wheel_2 +toad_kart_frame225_wheel3: + symbol: gKartToad225Wheel3 + type: texture + offset: 0x4B374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_225_tlut_wheel_3 +toad_kart_frame226_wheel0: + symbol: gKartToad226Wheel0 + type: texture + offset: 0x4B914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_226_tlut_wheel_0 +toad_kart_frame226_wheel1: + symbol: gKartToad226Wheel1 + type: texture + offset: 0x4B914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_226_tlut_wheel_1 +toad_kart_frame226_wheel2: + symbol: gKartToad226Wheel2 + type: texture + offset: 0x4B914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_226_tlut_wheel_2 +toad_kart_frame226_wheel3: + symbol: gKartToad226Wheel3 + type: texture + offset: 0x4B914 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_226_tlut_wheel_3 +toad_kart_frame227_wheel0: + symbol: gKartToad227Wheel0 + type: texture + offset: 0x4BEAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_227_tlut_wheel_0 +toad_kart_frame227_wheel1: + symbol: gKartToad227Wheel1 + type: texture + offset: 0x4BEAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_227_tlut_wheel_1 +toad_kart_frame227_wheel2: + symbol: gKartToad227Wheel2 + type: texture + offset: 0x4BEAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_227_tlut_wheel_2 +toad_kart_frame227_wheel3: + symbol: gKartToad227Wheel3 + type: texture + offset: 0x4BEAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_227_tlut_wheel_3 +toad_kart_frame228_wheel0: + symbol: gKartToad228Wheel0 + type: texture + offset: 0x4C42C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_228_tlut_wheel_0 +toad_kart_frame228_wheel1: + symbol: gKartToad228Wheel1 + type: texture + offset: 0x4C42C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_228_tlut_wheel_1 +toad_kart_frame228_wheel2: + symbol: gKartToad228Wheel2 + type: texture + offset: 0x4C42C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_228_tlut_wheel_2 +toad_kart_frame228_wheel3: + symbol: gKartToad228Wheel3 + type: texture + offset: 0x4C42C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_228_tlut_wheel_3 +toad_kart_frame229_wheel0: + symbol: gKartToad229Wheel0 + type: texture + offset: 0x4C998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_229_tlut_wheel_0 +toad_kart_frame229_wheel1: + symbol: gKartToad229Wheel1 + type: texture + offset: 0x4C998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_229_tlut_wheel_1 +toad_kart_frame229_wheel2: + symbol: gKartToad229Wheel2 + type: texture + offset: 0x4C998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_229_tlut_wheel_2 +toad_kart_frame229_wheel3: + symbol: gKartToad229Wheel3 + type: texture + offset: 0x4C998 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_229_tlut_wheel_3 +toad_kart_frame230_wheel0: + symbol: gKartToad230Wheel0 + type: texture + offset: 0x4CE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_230_tlut_wheel_0 +toad_kart_frame230_wheel1: + symbol: gKartToad230Wheel1 + type: texture + offset: 0x4CE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_230_tlut_wheel_1 +toad_kart_frame230_wheel2: + symbol: gKartToad230Wheel2 + type: texture + offset: 0x4CE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_230_tlut_wheel_2 +toad_kart_frame230_wheel3: + symbol: gKartToad230Wheel3 + type: texture + offset: 0x4CE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_230_tlut_wheel_3 +toad_kart_frame231_wheel0: + symbol: gKartToad231Wheel0 + type: texture + offset: 0x4D384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_231_tlut_wheel_0 +toad_kart_frame231_wheel1: + symbol: gKartToad231Wheel1 + type: texture + offset: 0x4D384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_231_tlut_wheel_1 +toad_kart_frame231_wheel2: + symbol: gKartToad231Wheel2 + type: texture + offset: 0x4D384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_231_tlut_wheel_2 +toad_kart_frame231_wheel3: + symbol: gKartToad231Wheel3 + type: texture + offset: 0x4D384 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_231_tlut_wheel_3 +toad_kart_frame232_wheel0: + symbol: gKartToad232Wheel0 + type: texture + offset: 0x4D8C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_232_tlut_wheel_0 +toad_kart_frame232_wheel1: + symbol: gKartToad232Wheel1 + type: texture + offset: 0x4D8C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_232_tlut_wheel_1 +toad_kart_frame232_wheel2: + symbol: gKartToad232Wheel2 + type: texture + offset: 0x4D8C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_232_tlut_wheel_2 +toad_kart_frame232_wheel3: + symbol: gKartToad232Wheel3 + type: texture + offset: 0x4D8C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_232_tlut_wheel_3 +toad_kart_frame233_wheel0: + symbol: gKartToad233Wheel0 + type: texture + offset: 0x4DE48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_233_tlut_wheel_0 +toad_kart_frame233_wheel1: + symbol: gKartToad233Wheel1 + type: texture + offset: 0x4DE48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_233_tlut_wheel_1 +toad_kart_frame233_wheel2: + symbol: gKartToad233Wheel2 + type: texture + offset: 0x4DE48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_233_tlut_wheel_2 +toad_kart_frame233_wheel3: + symbol: gKartToad233Wheel3 + type: texture + offset: 0x4DE48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_233_tlut_wheel_3 +toad_kart_frame234_wheel0: + symbol: gKartToad234Wheel0 + type: texture + offset: 0x4E3E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_234_tlut_wheel_0 +toad_kart_frame234_wheel1: + symbol: gKartToad234Wheel1 + type: texture + offset: 0x4E3E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_234_tlut_wheel_1 +toad_kart_frame234_wheel2: + symbol: gKartToad234Wheel2 + type: texture + offset: 0x4E3E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_234_tlut_wheel_2 +toad_kart_frame234_wheel3: + symbol: gKartToad234Wheel3 + type: texture + offset: 0x4E3E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_234_tlut_wheel_3 +toad_kart_frame235_wheel0: + symbol: gKartToad235Wheel0 + type: texture + offset: 0x4E988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_235_tlut_wheel_0 +toad_kart_frame235_wheel1: + symbol: gKartToad235Wheel1 + type: texture + offset: 0x4E988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_235_tlut_wheel_1 +toad_kart_frame235_wheel2: + symbol: gKartToad235Wheel2 + type: texture + offset: 0x4E988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_235_tlut_wheel_2 +toad_kart_frame235_wheel3: + symbol: gKartToad235Wheel3 + type: texture + offset: 0x4E988 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_235_tlut_wheel_3 +toad_kart_frame236_wheel0: + symbol: gKartToad236Wheel0 + type: texture + offset: 0x4EF6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_236_tlut_wheel_0 +toad_kart_frame236_wheel1: + symbol: gKartToad236Wheel1 + type: texture + offset: 0x4EF6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_236_tlut_wheel_1 +toad_kart_frame236_wheel2: + symbol: gKartToad236Wheel2 + type: texture + offset: 0x4EF6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_236_tlut_wheel_2 +toad_kart_frame236_wheel3: + symbol: gKartToad236Wheel3 + type: texture + offset: 0x4EF6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_236_tlut_wheel_3 +toad_kart_frame237_wheel0: + symbol: gKartToad237Wheel0 + type: texture + offset: 0x4F544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_237_tlut_wheel_0 +toad_kart_frame237_wheel1: + symbol: gKartToad237Wheel1 + type: texture + offset: 0x4F544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_237_tlut_wheel_1 +toad_kart_frame237_wheel2: + symbol: gKartToad237Wheel2 + type: texture + offset: 0x4F544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_237_tlut_wheel_2 +toad_kart_frame237_wheel3: + symbol: gKartToad237Wheel3 + type: texture + offset: 0x4F544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_237_tlut_wheel_3 +toad_kart_frame238_wheel0: + symbol: gKartToad238Wheel0 + type: texture + offset: 0x4FB30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_238_tlut_wheel_0 +toad_kart_frame238_wheel1: + symbol: gKartToad238Wheel1 + type: texture + offset: 0x4FB30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_238_tlut_wheel_1 +toad_kart_frame238_wheel2: + symbol: gKartToad238Wheel2 + type: texture + offset: 0x4FB30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_238_tlut_wheel_2 +toad_kart_frame238_wheel3: + symbol: gKartToad238Wheel3 + type: texture + offset: 0x4FB30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_238_tlut_wheel_3 +toad_kart_frame239_wheel0: + symbol: gKartToad239Wheel0 + type: texture + offset: 0x50144 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_239_tlut_wheel_0 +toad_kart_frame239_wheel1: + symbol: gKartToad239Wheel1 + type: texture + offset: 0x50144 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_239_tlut_wheel_1 +toad_kart_frame239_wheel2: + symbol: gKartToad239Wheel2 + type: texture + offset: 0x50144 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_239_tlut_wheel_2 +toad_kart_frame239_wheel3: + symbol: gKartToad239Wheel3 + type: texture + offset: 0x50144 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_239_tlut_wheel_3 +toad_kart_frame240_wheel0: + symbol: gKartToad240Wheel0 + type: texture + offset: 0x5073C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_240_tlut_wheel_0 +toad_kart_frame240_wheel1: + symbol: gKartToad240Wheel1 + type: texture + offset: 0x5073C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_240_tlut_wheel_1 +toad_kart_frame240_wheel2: + symbol: gKartToad240Wheel2 + type: texture + offset: 0x5073C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_240_tlut_wheel_2 +toad_kart_frame240_wheel3: + symbol: gKartToad240Wheel3 + type: texture + offset: 0x5073C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_240_tlut_wheel_3 +toad_kart_frame241_wheel0: + symbol: gKartToad241Wheel0 + type: texture + offset: 0x50D30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_241_tlut_wheel_0 +toad_kart_frame241_wheel1: + symbol: gKartToad241Wheel1 + type: texture + offset: 0x50D30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_241_tlut_wheel_1 +toad_kart_frame241_wheel2: + symbol: gKartToad241Wheel2 + type: texture + offset: 0x50D30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_241_tlut_wheel_2 +toad_kart_frame241_wheel3: + symbol: gKartToad241Wheel3 + type: texture + offset: 0x50D30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_241_tlut_wheel_3 +toad_kart_frame242_wheel0: + symbol: gKartToad242Wheel0 + type: texture + offset: 0x512FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_242_tlut_wheel_0 +toad_kart_frame242_wheel1: + symbol: gKartToad242Wheel1 + type: texture + offset: 0x512FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_242_tlut_wheel_1 +toad_kart_frame242_wheel2: + symbol: gKartToad242Wheel2 + type: texture + offset: 0x512FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_242_tlut_wheel_2 +toad_kart_frame242_wheel3: + symbol: gKartToad242Wheel3 + type: texture + offset: 0x512FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_242_tlut_wheel_3 +toad_kart_frame243_wheel0: + symbol: gKartToad243Wheel0 + type: texture + offset: 0x518BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_243_tlut_wheel_0 +toad_kart_frame243_wheel1: + symbol: gKartToad243Wheel1 + type: texture + offset: 0x518BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_243_tlut_wheel_1 +toad_kart_frame243_wheel2: + symbol: gKartToad243Wheel2 + type: texture + offset: 0x518BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_243_tlut_wheel_2 +toad_kart_frame243_wheel3: + symbol: gKartToad243Wheel3 + type: texture + offset: 0x518BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_243_tlut_wheel_3 +toad_kart_frame244_wheel0: + symbol: gKartToad244Wheel0 + type: texture + offset: 0x51E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_244_tlut_wheel_0 +toad_kart_frame244_wheel1: + symbol: gKartToad244Wheel1 + type: texture + offset: 0x51E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_244_tlut_wheel_1 +toad_kart_frame244_wheel2: + symbol: gKartToad244Wheel2 + type: texture + offset: 0x51E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_244_tlut_wheel_2 +toad_kart_frame244_wheel3: + symbol: gKartToad244Wheel3 + type: texture + offset: 0x51E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_244_tlut_wheel_3 +toad_kart_frame245_wheel0: + symbol: gKartToad245Wheel0 + type: texture + offset: 0x523F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_245_tlut_wheel_0 +toad_kart_frame245_wheel1: + symbol: gKartToad245Wheel1 + type: texture + offset: 0x523F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_245_tlut_wheel_1 +toad_kart_frame245_wheel2: + symbol: gKartToad245Wheel2 + type: texture + offset: 0x523F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_245_tlut_wheel_2 +toad_kart_frame245_wheel3: + symbol: gKartToad245Wheel3 + type: texture + offset: 0x523F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_245_tlut_wheel_3 +toad_kart_frame246_wheel0: + symbol: gKartToad246Wheel0 + type: texture + offset: 0x52978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_246_tlut_wheel_0 +toad_kart_frame246_wheel1: + symbol: gKartToad246Wheel1 + type: texture + offset: 0x52978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_246_tlut_wheel_1 +toad_kart_frame246_wheel2: + symbol: gKartToad246Wheel2 + type: texture + offset: 0x52978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_246_tlut_wheel_2 +toad_kart_frame246_wheel3: + symbol: gKartToad246Wheel3 + type: texture + offset: 0x52978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_246_tlut_wheel_3 +toad_kart_frame247_wheel0: + symbol: gKartToad247Wheel0 + type: texture + offset: 0x52EF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_247_tlut_wheel_0 +toad_kart_frame247_wheel1: + symbol: gKartToad247Wheel1 + type: texture + offset: 0x52EF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_247_tlut_wheel_1 +toad_kart_frame247_wheel2: + symbol: gKartToad247Wheel2 + type: texture + offset: 0x52EF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_247_tlut_wheel_2 +toad_kart_frame247_wheel3: + symbol: gKartToad247Wheel3 + type: texture + offset: 0x52EF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_247_tlut_wheel_3 +toad_kart_frame248_wheel0: + symbol: gKartToad248Wheel0 + type: texture + offset: 0x53458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_248_tlut_wheel_0 +toad_kart_frame248_wheel1: + symbol: gKartToad248Wheel1 + type: texture + offset: 0x53458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_248_tlut_wheel_1 +toad_kart_frame248_wheel2: + symbol: gKartToad248Wheel2 + type: texture + offset: 0x53458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_248_tlut_wheel_2 +toad_kart_frame248_wheel3: + symbol: gKartToad248Wheel3 + type: texture + offset: 0x53458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_248_tlut_wheel_3 +toad_kart_frame249_wheel0: + symbol: gKartToad249Wheel0 + type: texture + offset: 0x53978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_249_tlut_wheel_0 +toad_kart_frame249_wheel1: + symbol: gKartToad249Wheel1 + type: texture + offset: 0x53978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_249_tlut_wheel_1 +toad_kart_frame249_wheel2: + symbol: gKartToad249Wheel2 + type: texture + offset: 0x53978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_249_tlut_wheel_2 +toad_kart_frame249_wheel3: + symbol: gKartToad249Wheel3 + type: texture + offset: 0x53978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_249_tlut_wheel_3 +toad_kart_frame250_wheel0: + symbol: gKartToad250Wheel0 + type: texture + offset: 0x53E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_250_tlut_wheel_0 +toad_kart_frame250_wheel1: + symbol: gKartToad250Wheel1 + type: texture + offset: 0x53E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_250_tlut_wheel_1 +toad_kart_frame250_wheel2: + symbol: gKartToad250Wheel2 + type: texture + offset: 0x53E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_250_tlut_wheel_2 +toad_kart_frame250_wheel3: + symbol: gKartToad250Wheel3 + type: texture + offset: 0x53E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_250_tlut_wheel_3 +toad_kart_frame251_wheel0: + symbol: gKartToad251Wheel0 + type: texture + offset: 0x543B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_251_tlut_wheel_0 +toad_kart_frame251_wheel1: + symbol: gKartToad251Wheel1 + type: texture + offset: 0x543B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_251_tlut_wheel_1 +toad_kart_frame251_wheel2: + symbol: gKartToad251Wheel2 + type: texture + offset: 0x543B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_251_tlut_wheel_2 +toad_kart_frame251_wheel3: + symbol: gKartToad251Wheel3 + type: texture + offset: 0x543B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_251_tlut_wheel_3 +toad_kart_frame252_wheel0: + symbol: gKartToad252Wheel0 + type: texture + offset: 0x54920 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_252_tlut_wheel_0 +toad_kart_frame252_wheel1: + symbol: gKartToad252Wheel1 + type: texture + offset: 0x54920 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_252_tlut_wheel_1 +toad_kart_frame252_wheel2: + symbol: gKartToad252Wheel2 + type: texture + offset: 0x54920 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_252_tlut_wheel_2 +toad_kart_frame252_wheel3: + symbol: gKartToad252Wheel3 + type: texture + offset: 0x54920 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_252_tlut_wheel_3 +toad_kart_frame253_wheel0: + symbol: gKartToad253Wheel0 + type: texture + offset: 0x54EA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_253_tlut_wheel_0 +toad_kart_frame253_wheel1: + symbol: gKartToad253Wheel1 + type: texture + offset: 0x54EA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_253_tlut_wheel_1 +toad_kart_frame253_wheel2: + symbol: gKartToad253Wheel2 + type: texture + offset: 0x54EA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_253_tlut_wheel_2 +toad_kart_frame253_wheel3: + symbol: gKartToad253Wheel3 + type: texture + offset: 0x54EA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_253_tlut_wheel_3 +toad_kart_frame254_wheel0: + symbol: gKartToad254Wheel0 + type: texture + offset: 0x55448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_254_tlut_wheel_0 +toad_kart_frame254_wheel1: + symbol: gKartToad254Wheel1 + type: texture + offset: 0x55448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_254_tlut_wheel_1 +toad_kart_frame254_wheel2: + symbol: gKartToad254Wheel2 + type: texture + offset: 0x55448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_254_tlut_wheel_2 +toad_kart_frame254_wheel3: + symbol: gKartToad254Wheel3 + type: texture + offset: 0x55448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_254_tlut_wheel_3 +toad_kart_frame255_wheel0: + symbol: gKartToad255Wheel0 + type: texture + offset: 0x55A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_255_tlut_wheel_0 +toad_kart_frame255_wheel1: + symbol: gKartToad255Wheel1 + type: texture + offset: 0x55A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_255_tlut_wheel_1 +toad_kart_frame255_wheel2: + symbol: gKartToad255Wheel2 + type: texture + offset: 0x55A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_255_tlut_wheel_2 +toad_kart_frame255_wheel3: + symbol: gKartToad255Wheel3 + type: texture + offset: 0x55A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_255_tlut_wheel_3 +toad_kart_frame256_wheel0: + symbol: gKartToad256Wheel0 + type: texture + offset: 0x56004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_256_tlut_wheel_0 +toad_kart_frame256_wheel1: + symbol: gKartToad256Wheel1 + type: texture + offset: 0x56004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_256_tlut_wheel_1 +toad_kart_frame256_wheel2: + symbol: gKartToad256Wheel2 + type: texture + offset: 0x56004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_256_tlut_wheel_2 +toad_kart_frame256_wheel3: + symbol: gKartToad256Wheel3 + type: texture + offset: 0x56004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_256_tlut_wheel_3 +toad_kart_frame257_wheel0: + symbol: gKartToad257Wheel0 + type: texture + offset: 0x565F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_257_tlut_wheel_0 +toad_kart_frame257_wheel1: + symbol: gKartToad257Wheel1 + type: texture + offset: 0x565F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_257_tlut_wheel_1 +toad_kart_frame257_wheel2: + symbol: gKartToad257Wheel2 + type: texture + offset: 0x565F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_257_tlut_wheel_2 +toad_kart_frame257_wheel3: + symbol: gKartToad257Wheel3 + type: texture + offset: 0x565F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_257_tlut_wheel_3 +toad_kart_frame258_wheel0: + symbol: gKartToad258Wheel0 + type: texture + offset: 0x56BF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_258_tlut_wheel_0 +toad_kart_frame258_wheel1: + symbol: gKartToad258Wheel1 + type: texture + offset: 0x56BF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_258_tlut_wheel_1 +toad_kart_frame258_wheel2: + symbol: gKartToad258Wheel2 + type: texture + offset: 0x56BF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_258_tlut_wheel_2 +toad_kart_frame258_wheel3: + symbol: gKartToad258Wheel3 + type: texture + offset: 0x56BF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_258_tlut_wheel_3 +toad_kart_frame259_wheel0: + symbol: gKartToad259Wheel0 + type: texture + offset: 0x571FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_259_tlut_wheel_0 +toad_kart_frame259_wheel1: + symbol: gKartToad259Wheel1 + type: texture + offset: 0x571FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_259_tlut_wheel_1 +toad_kart_frame259_wheel2: + symbol: gKartToad259Wheel2 + type: texture + offset: 0x571FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_259_tlut_wheel_2 +toad_kart_frame259_wheel3: + symbol: gKartToad259Wheel3 + type: texture + offset: 0x571FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_259_tlut_wheel_3 +toad_kart_frame260_wheel0: + symbol: gKartToad260Wheel0 + type: texture + offset: 0x57800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_260_tlut_wheel_0 +toad_kart_frame260_wheel1: + symbol: gKartToad260Wheel1 + type: texture + offset: 0x57800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_260_tlut_wheel_1 +toad_kart_frame260_wheel2: + symbol: gKartToad260Wheel2 + type: texture + offset: 0x57800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_260_tlut_wheel_2 +toad_kart_frame260_wheel3: + symbol: gKartToad260Wheel3 + type: texture + offset: 0x57800 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_260_tlut_wheel_3 +toad_kart_frame261_wheel0: + symbol: gKartToad261Wheel0 + type: texture + offset: 0x57DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_261_tlut_wheel_0 +toad_kart_frame261_wheel1: + symbol: gKartToad261Wheel1 + type: texture + offset: 0x57DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_261_tlut_wheel_1 +toad_kart_frame261_wheel2: + symbol: gKartToad261Wheel2 + type: texture + offset: 0x57DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_261_tlut_wheel_2 +toad_kart_frame261_wheel3: + symbol: gKartToad261Wheel3 + type: texture + offset: 0x57DD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_261_tlut_wheel_3 +toad_kart_frame262_wheel0: + symbol: gKartToad262Wheel0 + type: texture + offset: 0x583A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_262_tlut_wheel_0 +toad_kart_frame262_wheel1: + symbol: gKartToad262Wheel1 + type: texture + offset: 0x583A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_262_tlut_wheel_1 +toad_kart_frame262_wheel2: + symbol: gKartToad262Wheel2 + type: texture + offset: 0x583A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_262_tlut_wheel_2 +toad_kart_frame262_wheel3: + symbol: gKartToad262Wheel3 + type: texture + offset: 0x583A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_262_tlut_wheel_3 +toad_kart_frame263_wheel0: + symbol: gKartToad263Wheel0 + type: texture + offset: 0x5893C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_263_tlut_wheel_0 +toad_kart_frame263_wheel1: + symbol: gKartToad263Wheel1 + type: texture + offset: 0x5893C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_263_tlut_wheel_1 +toad_kart_frame263_wheel2: + symbol: gKartToad263Wheel2 + type: texture + offset: 0x5893C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_263_tlut_wheel_2 +toad_kart_frame263_wheel3: + symbol: gKartToad263Wheel3 + type: texture + offset: 0x5893C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_263_tlut_wheel_3 +toad_kart_frame264_wheel0: + symbol: gKartToad264Wheel0 + type: texture + offset: 0x58EA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_264_tlut_wheel_0 +toad_kart_frame264_wheel1: + symbol: gKartToad264Wheel1 + type: texture + offset: 0x58EA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_264_tlut_wheel_1 +toad_kart_frame264_wheel2: + symbol: gKartToad264Wheel2 + type: texture + offset: 0x58EA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_264_tlut_wheel_2 +toad_kart_frame264_wheel3: + symbol: gKartToad264Wheel3 + type: texture + offset: 0x58EA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_264_tlut_wheel_3 +toad_kart_frame265_wheel0: + symbol: gKartToad265Wheel0 + type: texture + offset: 0x5940C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_265_tlut_wheel_0 +toad_kart_frame265_wheel1: + symbol: gKartToad265Wheel1 + type: texture + offset: 0x5940C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_265_tlut_wheel_1 +toad_kart_frame265_wheel2: + symbol: gKartToad265Wheel2 + type: texture + offset: 0x5940C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_265_tlut_wheel_2 +toad_kart_frame265_wheel3: + symbol: gKartToad265Wheel3 + type: texture + offset: 0x5940C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_265_tlut_wheel_3 +toad_kart_frame266_wheel0: + symbol: gKartToad266Wheel0 + type: texture + offset: 0x5996C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_266_tlut_wheel_0 +toad_kart_frame266_wheel1: + symbol: gKartToad266Wheel1 + type: texture + offset: 0x5996C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_266_tlut_wheel_1 +toad_kart_frame266_wheel2: + symbol: gKartToad266Wheel2 + type: texture + offset: 0x5996C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_266_tlut_wheel_2 +toad_kart_frame266_wheel3: + symbol: gKartToad266Wheel3 + type: texture + offset: 0x5996C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_266_tlut_wheel_3 +toad_kart_frame267_wheel0: + symbol: gKartToad267Wheel0 + type: texture + offset: 0x59EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_267_tlut_wheel_0 +toad_kart_frame267_wheel1: + symbol: gKartToad267Wheel1 + type: texture + offset: 0x59EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_267_tlut_wheel_1 +toad_kart_frame267_wheel2: + symbol: gKartToad267Wheel2 + type: texture + offset: 0x59EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_267_tlut_wheel_2 +toad_kart_frame267_wheel3: + symbol: gKartToad267Wheel3 + type: texture + offset: 0x59EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_267_tlut_wheel_3 +toad_kart_frame268_wheel0: + symbol: gKartToad268Wheel0 + type: texture + offset: 0x5A3CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_268_tlut_wheel_0 +toad_kart_frame268_wheel1: + symbol: gKartToad268Wheel1 + type: texture + offset: 0x5A3CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_268_tlut_wheel_1 +toad_kart_frame268_wheel2: + symbol: gKartToad268Wheel2 + type: texture + offset: 0x5A3CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_268_tlut_wheel_2 +toad_kart_frame268_wheel3: + symbol: gKartToad268Wheel3 + type: texture + offset: 0x5A3CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_268_tlut_wheel_3 +toad_kart_frame269_wheel0: + symbol: gKartToad269Wheel0 + type: texture + offset: 0x5A8A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_269_tlut_wheel_0 +toad_kart_frame269_wheel1: + symbol: gKartToad269Wheel1 + type: texture + offset: 0x5A8A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_269_tlut_wheel_1 +toad_kart_frame269_wheel2: + symbol: gKartToad269Wheel2 + type: texture + offset: 0x5A8A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_269_tlut_wheel_2 +toad_kart_frame269_wheel3: + symbol: gKartToad269Wheel3 + type: texture + offset: 0x5A8A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_269_tlut_wheel_3 +toad_kart_frame270_wheel0: + symbol: gKartToad270Wheel0 + type: texture + offset: 0x5ADE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_270_tlut_wheel_0 +toad_kart_frame270_wheel1: + symbol: gKartToad270Wheel1 + type: texture + offset: 0x5ADE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_270_tlut_wheel_1 +toad_kart_frame270_wheel2: + symbol: gKartToad270Wheel2 + type: texture + offset: 0x5ADE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_270_tlut_wheel_2 +toad_kart_frame270_wheel3: + symbol: gKartToad270Wheel3 + type: texture + offset: 0x5ADE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_270_tlut_wheel_3 +toad_kart_frame271_wheel0: + symbol: gKartToad271Wheel0 + type: texture + offset: 0x5B368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_271_tlut_wheel_0 +toad_kart_frame271_wheel1: + symbol: gKartToad271Wheel1 + type: texture + offset: 0x5B368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_271_tlut_wheel_1 +toad_kart_frame271_wheel2: + symbol: gKartToad271Wheel2 + type: texture + offset: 0x5B368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_271_tlut_wheel_2 +toad_kart_frame271_wheel3: + symbol: gKartToad271Wheel3 + type: texture + offset: 0x5B368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_271_tlut_wheel_3 +toad_kart_frame272_wheel0: + symbol: gKartToad272Wheel0 + type: texture + offset: 0x5B8F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_272_tlut_wheel_0 +toad_kart_frame272_wheel1: + symbol: gKartToad272Wheel1 + type: texture + offset: 0x5B8F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_272_tlut_wheel_1 +toad_kart_frame272_wheel2: + symbol: gKartToad272Wheel2 + type: texture + offset: 0x5B8F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_272_tlut_wheel_2 +toad_kart_frame272_wheel3: + symbol: gKartToad272Wheel3 + type: texture + offset: 0x5B8F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_272_tlut_wheel_3 +toad_kart_frame273_wheel0: + symbol: gKartToad273Wheel0 + type: texture + offset: 0x5BE98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_273_tlut_wheel_0 +toad_kart_frame273_wheel1: + symbol: gKartToad273Wheel1 + type: texture + offset: 0x5BE98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_273_tlut_wheel_1 +toad_kart_frame273_wheel2: + symbol: gKartToad273Wheel2 + type: texture + offset: 0x5BE98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_273_tlut_wheel_2 +toad_kart_frame273_wheel3: + symbol: gKartToad273Wheel3 + type: texture + offset: 0x5BE98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_273_tlut_wheel_3 +toad_kart_frame274_wheel0: + symbol: gKartToad274Wheel0 + type: texture + offset: 0x5C468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_274_tlut_wheel_0 +toad_kart_frame274_wheel1: + symbol: gKartToad274Wheel1 + type: texture + offset: 0x5C468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_274_tlut_wheel_1 +toad_kart_frame274_wheel2: + symbol: gKartToad274Wheel2 + type: texture + offset: 0x5C468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_274_tlut_wheel_2 +toad_kart_frame274_wheel3: + symbol: gKartToad274Wheel3 + type: texture + offset: 0x5C468 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_274_tlut_wheel_3 +toad_kart_frame275_wheel0: + symbol: gKartToad275Wheel0 + type: texture + offset: 0x5CA5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_275_tlut_wheel_0 +toad_kart_frame275_wheel1: + symbol: gKartToad275Wheel1 + type: texture + offset: 0x5CA5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_275_tlut_wheel_1 +toad_kart_frame275_wheel2: + symbol: gKartToad275Wheel2 + type: texture + offset: 0x5CA5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_275_tlut_wheel_2 +toad_kart_frame275_wheel3: + symbol: gKartToad275Wheel3 + type: texture + offset: 0x5CA5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_275_tlut_wheel_3 +toad_kart_frame276_wheel0: + symbol: gKartToad276Wheel0 + type: texture + offset: 0x5D074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_276_tlut_wheel_0 +toad_kart_frame276_wheel1: + symbol: gKartToad276Wheel1 + type: texture + offset: 0x5D074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_276_tlut_wheel_1 +toad_kart_frame276_wheel2: + symbol: gKartToad276Wheel2 + type: texture + offset: 0x5D074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_276_tlut_wheel_2 +toad_kart_frame276_wheel3: + symbol: gKartToad276Wheel3 + type: texture + offset: 0x5D074 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_276_tlut_wheel_3 +toad_kart_frame277_wheel0: + symbol: gKartToad277Wheel0 + type: texture + offset: 0x5D684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_277_tlut_wheel_0 +toad_kart_frame277_wheel1: + symbol: gKartToad277Wheel1 + type: texture + offset: 0x5D684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_277_tlut_wheel_1 +toad_kart_frame277_wheel2: + symbol: gKartToad277Wheel2 + type: texture + offset: 0x5D684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_277_tlut_wheel_2 +toad_kart_frame277_wheel3: + symbol: gKartToad277Wheel3 + type: texture + offset: 0x5D684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_277_tlut_wheel_3 +toad_kart_frame278_wheel0: + symbol: gKartToad278Wheel0 + type: texture + offset: 0x5DC98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_278_tlut_wheel_0 +toad_kart_frame278_wheel1: + symbol: gKartToad278Wheel1 + type: texture + offset: 0x5DC98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_278_tlut_wheel_1 +toad_kart_frame278_wheel2: + symbol: gKartToad278Wheel2 + type: texture + offset: 0x5DC98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_278_tlut_wheel_2 +toad_kart_frame278_wheel3: + symbol: gKartToad278Wheel3 + type: texture + offset: 0x5DC98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_278_tlut_wheel_3 +toad_kart_frame279_wheel0: + symbol: gKartToad279Wheel0 + type: texture + offset: 0x5E29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_279_tlut_wheel_0 +toad_kart_frame279_wheel1: + symbol: gKartToad279Wheel1 + type: texture + offset: 0x5E29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_279_tlut_wheel_1 +toad_kart_frame279_wheel2: + symbol: gKartToad279Wheel2 + type: texture + offset: 0x5E29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_279_tlut_wheel_2 +toad_kart_frame279_wheel3: + symbol: gKartToad279Wheel3 + type: texture + offset: 0x5E29C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_279_tlut_wheel_3 +toad_kart_frame280_wheel0: + symbol: gKartToad280Wheel0 + type: texture + offset: 0x5E898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_280_tlut_wheel_0 +toad_kart_frame280_wheel1: + symbol: gKartToad280Wheel1 + type: texture + offset: 0x5E898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_280_tlut_wheel_1 +toad_kart_frame280_wheel2: + symbol: gKartToad280Wheel2 + type: texture + offset: 0x5E898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_280_tlut_wheel_2 +toad_kart_frame280_wheel3: + symbol: gKartToad280Wheel3 + type: texture + offset: 0x5E898 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_280_tlut_wheel_3 +toad_kart_frame281_wheel0: + symbol: gKartToad281Wheel0 + type: texture + offset: 0x5EE74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_281_tlut_wheel_0 +toad_kart_frame281_wheel1: + symbol: gKartToad281Wheel1 + type: texture + offset: 0x5EE74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_281_tlut_wheel_1 +toad_kart_frame281_wheel2: + symbol: gKartToad281Wheel2 + type: texture + offset: 0x5EE74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_281_tlut_wheel_2 +toad_kart_frame281_wheel3: + symbol: gKartToad281Wheel3 + type: texture + offset: 0x5EE74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_281_tlut_wheel_3 +toad_kart_frame282_wheel0: + symbol: gKartToad282Wheel0 + type: texture + offset: 0x5F420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_282_tlut_wheel_0 +toad_kart_frame282_wheel1: + symbol: gKartToad282Wheel1 + type: texture + offset: 0x5F420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_282_tlut_wheel_1 +toad_kart_frame282_wheel2: + symbol: gKartToad282Wheel2 + type: texture + offset: 0x5F420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_282_tlut_wheel_2 +toad_kart_frame282_wheel3: + symbol: gKartToad282Wheel3 + type: texture + offset: 0x5F420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_282_tlut_wheel_3 +toad_kart_frame283_wheel0: + symbol: gKartToad283Wheel0 + type: texture + offset: 0x5F994 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_283_tlut_wheel_0 +toad_kart_frame283_wheel1: + symbol: gKartToad283Wheel1 + type: texture + offset: 0x5F994 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_283_tlut_wheel_1 +toad_kart_frame283_wheel2: + symbol: gKartToad283Wheel2 + type: texture + offset: 0x5F994 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_283_tlut_wheel_2 +toad_kart_frame283_wheel3: + symbol: gKartToad283Wheel3 + type: texture + offset: 0x5F994 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_283_tlut_wheel_3 +toad_kart_frame284_wheel0: + symbol: gKartToad284Wheel0 + type: texture + offset: 0x5FEE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_284_tlut_wheel_0 +toad_kart_frame284_wheel1: + symbol: gKartToad284Wheel1 + type: texture + offset: 0x5FEE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_284_tlut_wheel_1 +toad_kart_frame284_wheel2: + symbol: gKartToad284Wheel2 + type: texture + offset: 0x5FEE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_284_tlut_wheel_2 +toad_kart_frame284_wheel3: + symbol: gKartToad284Wheel3 + type: texture + offset: 0x5FEE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_284_tlut_wheel_3 +toad_kart_frame285_wheel0: + symbol: gKartToad285Wheel0 + type: texture + offset: 0x6041C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_285_tlut_wheel_0 +toad_kart_frame285_wheel1: + symbol: gKartToad285Wheel1 + type: texture + offset: 0x6041C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_285_tlut_wheel_1 +toad_kart_frame285_wheel2: + symbol: gKartToad285Wheel2 + type: texture + offset: 0x6041C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_285_tlut_wheel_2 +toad_kart_frame285_wheel3: + symbol: gKartToad285Wheel3 + type: texture + offset: 0x6041C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_285_tlut_wheel_3 +toad_kart_frame286_wheel0: + symbol: gKartToad286Wheel0 + type: texture + offset: 0x6092C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_286_tlut_wheel_0 +toad_kart_frame286_wheel1: + symbol: gKartToad286Wheel1 + type: texture + offset: 0x6092C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_286_tlut_wheel_1 +toad_kart_frame286_wheel2: + symbol: gKartToad286Wheel2 + type: texture + offset: 0x6092C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_286_tlut_wheel_2 +toad_kart_frame286_wheel3: + symbol: gKartToad286Wheel3 + type: texture + offset: 0x6092C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_286_tlut_wheel_3 +toad_kart_frame287_wheel0: + symbol: gKartToad287Wheel0 + type: texture + offset: 0x60E30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_287_tlut_wheel_0 +toad_kart_frame287_wheel1: + symbol: gKartToad287Wheel1 + type: texture + offset: 0x60E30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_287_tlut_wheel_1 +toad_kart_frame287_wheel2: + symbol: gKartToad287Wheel2 + type: texture + offset: 0x60E30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_287_tlut_wheel_2 +toad_kart_frame287_wheel3: + symbol: gKartToad287Wheel3 + type: texture + offset: 0x60E30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_287_tlut_wheel_3 +toad_kart_frame288_wheel0: + symbol: gKartToad288Wheel0 + type: texture + offset: 0x61300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_288_tlut_wheel_0 +toad_kart_frame288_wheel1: + symbol: gKartToad288Wheel1 + type: texture + offset: 0x61300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_288_tlut_wheel_1 +toad_kart_frame288_wheel2: + symbol: gKartToad288Wheel2 + type: texture + offset: 0x61300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_288_tlut_wheel_2 +toad_kart_frame288_wheel3: + symbol: gKartToad288Wheel3 + type: texture + offset: 0x61300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_288_tlut_wheel_3 +toad_kart_frame289: + symbol: gKartToad289 + type: texture + offset: 0x617A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame290: + symbol: gKartToad290 + type: texture + offset: 0x61C34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame291: + symbol: gKartToad291 + type: texture + offset: 0x62180 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame292: + symbol: gKartToad292 + type: texture + offset: 0x62748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame293: + symbol: gKartToad293 + type: texture + offset: 0x62DB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame294: + symbol: gKartToad294 + type: texture + offset: 0x633BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame295: + symbol: gKartToad295 + type: texture + offset: 0x639C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame296: + symbol: gKartToad296 + type: texture + offset: 0x63F64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame297: + symbol: gKartToad297 + type: texture + offset: 0x6447C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame298: + symbol: gKartToad298 + type: texture + offset: 0x64918 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame299: + symbol: gKartToad299 + type: texture + offset: 0x64E54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame300: + symbol: gKartToad300 + type: texture + offset: 0x653BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame301: + symbol: gKartToad301 + type: texture + offset: 0x65934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame302: + symbol: gKartToad302 + type: texture + offset: 0x65E8C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame303: + symbol: gKartToad303 + type: texture + offset: 0x66418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame304: + symbol: gKartToad304 + type: texture + offset: 0x669B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame305: + symbol: gKartToad305 + type: texture + offset: 0x66EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame306: + symbol: gKartToad306 + type: texture + offset: 0x6734C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame307: + symbol: gKartToad307 + type: texture + offset: 0x678EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame308: + symbol: gKartToad308 + type: texture + offset: 0x67F2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame309: + symbol: gKartToad309 + type: texture + offset: 0x6859C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame310: + symbol: gKartToad310 + type: texture + offset: 0x68B80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame311: + symbol: gKartToad311 + type: texture + offset: 0x69160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame312: + symbol: gKartToad312 + type: texture + offset: 0x69728 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame313: + symbol: gKartToad313 + type: texture + offset: 0x69C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame314: + symbol: gKartToad314 + type: texture + offset: 0x6A0AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame315: + symbol: gKartToad315 + type: texture + offset: 0x6A5E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame316: + symbol: gKartToad316 + type: texture + offset: 0x6AB2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame317: + symbol: gKartToad317 + type: texture + offset: 0x6B0B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame318: + symbol: gKartToad318 + type: texture + offset: 0x6B658 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame319: + symbol: gKartToad319 + type: texture + offset: 0x6BBE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_frame320: + symbol: gKartToad320 + type: texture + offset: 0x6C190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: toad_kart_palette + tlut_wheel: toad_kart_000_tlut_wheel_0 +toad_kart_000_tlut_wheel_0: + symbol: gKartToad000TlutWheel0 + type: texture + offset: 0x6C6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_000_tlut_wheel_1: + symbol: gKartToad000TlutWheel1 + type: texture + offset: 0x6C768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_000_tlut_wheel_2: + symbol: gKartToad000TlutWheel2 + type: texture + offset: 0x6C7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_000_tlut_wheel_3: + symbol: gKartToad000TlutWheel3 + type: texture + offset: 0x6C868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_001_tlut_wheel_0: + symbol: gKartToad001TlutWheel0 + type: texture + offset: 0x6C8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_001_tlut_wheel_1: + symbol: gKartToad001TlutWheel1 + type: texture + offset: 0x6C968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_001_tlut_wheel_2: + symbol: gKartToad001TlutWheel2 + type: texture + offset: 0x6C9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_001_tlut_wheel_3: + symbol: gKartToad001TlutWheel3 + type: texture + offset: 0x6CA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_002_tlut_wheel_0: + symbol: gKartToad002TlutWheel0 + type: texture + offset: 0x6CAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_002_tlut_wheel_1: + symbol: gKartToad002TlutWheel1 + type: texture + offset: 0x6CB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_002_tlut_wheel_2: + symbol: gKartToad002TlutWheel2 + type: texture + offset: 0x6CBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_002_tlut_wheel_3: + symbol: gKartToad002TlutWheel3 + type: texture + offset: 0x6CC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_003_tlut_wheel_0: + symbol: gKartToad003TlutWheel0 + type: texture + offset: 0x6CCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_003_tlut_wheel_1: + symbol: gKartToad003TlutWheel1 + type: texture + offset: 0x6CD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_003_tlut_wheel_2: + symbol: gKartToad003TlutWheel2 + type: texture + offset: 0x6CDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_003_tlut_wheel_3: + symbol: gKartToad003TlutWheel3 + type: texture + offset: 0x6CE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_004_tlut_wheel_0: + symbol: gKartToad004TlutWheel0 + type: texture + offset: 0x6CEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_004_tlut_wheel_1: + symbol: gKartToad004TlutWheel1 + type: texture + offset: 0x6CF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_004_tlut_wheel_2: + symbol: gKartToad004TlutWheel2 + type: texture + offset: 0x6CFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_004_tlut_wheel_3: + symbol: gKartToad004TlutWheel3 + type: texture + offset: 0x6D068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_005_tlut_wheel_0: + symbol: gKartToad005TlutWheel0 + type: texture + offset: 0x6D0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_005_tlut_wheel_1: + symbol: gKartToad005TlutWheel1 + type: texture + offset: 0x6D168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_005_tlut_wheel_2: + symbol: gKartToad005TlutWheel2 + type: texture + offset: 0x6D1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_005_tlut_wheel_3: + symbol: gKartToad005TlutWheel3 + type: texture + offset: 0x6D268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_006_tlut_wheel_0: + symbol: gKartToad006TlutWheel0 + type: texture + offset: 0x6D2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_006_tlut_wheel_1: + symbol: gKartToad006TlutWheel1 + type: texture + offset: 0x6D368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_006_tlut_wheel_2: + symbol: gKartToad006TlutWheel2 + type: texture + offset: 0x6D3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_006_tlut_wheel_3: + symbol: gKartToad006TlutWheel3 + type: texture + offset: 0x6D468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_007_tlut_wheel_0: + symbol: gKartToad007TlutWheel0 + type: texture + offset: 0x6D4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_007_tlut_wheel_1: + symbol: gKartToad007TlutWheel1 + type: texture + offset: 0x6D568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_007_tlut_wheel_2: + symbol: gKartToad007TlutWheel2 + type: texture + offset: 0x6D5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_007_tlut_wheel_3: + symbol: gKartToad007TlutWheel3 + type: texture + offset: 0x6D668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_008_tlut_wheel_0: + symbol: gKartToad008TlutWheel0 + type: texture + offset: 0x6D6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_008_tlut_wheel_1: + symbol: gKartToad008TlutWheel1 + type: texture + offset: 0x6D768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_008_tlut_wheel_2: + symbol: gKartToad008TlutWheel2 + type: texture + offset: 0x6D7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_008_tlut_wheel_3: + symbol: gKartToad008TlutWheel3 + type: texture + offset: 0x6D868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_009_tlut_wheel_0: + symbol: gKartToad009TlutWheel0 + type: texture + offset: 0x6D8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_009_tlut_wheel_1: + symbol: gKartToad009TlutWheel1 + type: texture + offset: 0x6D968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_009_tlut_wheel_2: + symbol: gKartToad009TlutWheel2 + type: texture + offset: 0x6D9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_009_tlut_wheel_3: + symbol: gKartToad009TlutWheel3 + type: texture + offset: 0x6DA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_010_tlut_wheel_0: + symbol: gKartToad010TlutWheel0 + type: texture + offset: 0x6DAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_010_tlut_wheel_1: + symbol: gKartToad010TlutWheel1 + type: texture + offset: 0x6DB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_010_tlut_wheel_2: + symbol: gKartToad010TlutWheel2 + type: texture + offset: 0x6DBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_010_tlut_wheel_3: + symbol: gKartToad010TlutWheel3 + type: texture + offset: 0x6DC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_011_tlut_wheel_0: + symbol: gKartToad011TlutWheel0 + type: texture + offset: 0x6DCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_011_tlut_wheel_1: + symbol: gKartToad011TlutWheel1 + type: texture + offset: 0x6DD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_011_tlut_wheel_2: + symbol: gKartToad011TlutWheel2 + type: texture + offset: 0x6DDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_011_tlut_wheel_3: + symbol: gKartToad011TlutWheel3 + type: texture + offset: 0x6DE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_012_tlut_wheel_0: + symbol: gKartToad012TlutWheel0 + type: texture + offset: 0x6DEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_012_tlut_wheel_1: + symbol: gKartToad012TlutWheel1 + type: texture + offset: 0x6DF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_012_tlut_wheel_2: + symbol: gKartToad012TlutWheel2 + type: texture + offset: 0x6DFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_012_tlut_wheel_3: + symbol: gKartToad012TlutWheel3 + type: texture + offset: 0x6E068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_013_tlut_wheel_0: + symbol: gKartToad013TlutWheel0 + type: texture + offset: 0x6E0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_013_tlut_wheel_1: + symbol: gKartToad013TlutWheel1 + type: texture + offset: 0x6E168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_013_tlut_wheel_2: + symbol: gKartToad013TlutWheel2 + type: texture + offset: 0x6E1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_013_tlut_wheel_3: + symbol: gKartToad013TlutWheel3 + type: texture + offset: 0x6E268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_014_tlut_wheel_0: + symbol: gKartToad014TlutWheel0 + type: texture + offset: 0x6E2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_014_tlut_wheel_1: + symbol: gKartToad014TlutWheel1 + type: texture + offset: 0x6E368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_014_tlut_wheel_2: + symbol: gKartToad014TlutWheel2 + type: texture + offset: 0x6E3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_014_tlut_wheel_3: + symbol: gKartToad014TlutWheel3 + type: texture + offset: 0x6E468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_015_tlut_wheel_0: + symbol: gKartToad015TlutWheel0 + type: texture + offset: 0x6E4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_015_tlut_wheel_1: + symbol: gKartToad015TlutWheel1 + type: texture + offset: 0x6E568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_015_tlut_wheel_2: + symbol: gKartToad015TlutWheel2 + type: texture + offset: 0x6E5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_015_tlut_wheel_3: + symbol: gKartToad015TlutWheel3 + type: texture + offset: 0x6E668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_016_tlut_wheel_0: + symbol: gKartToad016TlutWheel0 + type: texture + offset: 0x6E6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_016_tlut_wheel_1: + symbol: gKartToad016TlutWheel1 + type: texture + offset: 0x6E768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_016_tlut_wheel_2: + symbol: gKartToad016TlutWheel2 + type: texture + offset: 0x6E7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_016_tlut_wheel_3: + symbol: gKartToad016TlutWheel3 + type: texture + offset: 0x6E868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_017_tlut_wheel_0: + symbol: gKartToad017TlutWheel0 + type: texture + offset: 0x6E8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_017_tlut_wheel_1: + symbol: gKartToad017TlutWheel1 + type: texture + offset: 0x6E968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_017_tlut_wheel_2: + symbol: gKartToad017TlutWheel2 + type: texture + offset: 0x6E9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_017_tlut_wheel_3: + symbol: gKartToad017TlutWheel3 + type: texture + offset: 0x6EA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_018_tlut_wheel_0: + symbol: gKartToad018TlutWheel0 + type: texture + offset: 0x6EAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_018_tlut_wheel_1: + symbol: gKartToad018TlutWheel1 + type: texture + offset: 0x6EB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_018_tlut_wheel_2: + symbol: gKartToad018TlutWheel2 + type: texture + offset: 0x6EBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_018_tlut_wheel_3: + symbol: gKartToad018TlutWheel3 + type: texture + offset: 0x6EC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_019_tlut_wheel_0: + symbol: gKartToad019TlutWheel0 + type: texture + offset: 0x6ECE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_019_tlut_wheel_1: + symbol: gKartToad019TlutWheel1 + type: texture + offset: 0x6ED68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_019_tlut_wheel_2: + symbol: gKartToad019TlutWheel2 + type: texture + offset: 0x6EDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_019_tlut_wheel_3: + symbol: gKartToad019TlutWheel3 + type: texture + offset: 0x6EE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_020_tlut_wheel_0: + symbol: gKartToad020TlutWheel0 + type: texture + offset: 0x6EEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_020_tlut_wheel_1: + symbol: gKartToad020TlutWheel1 + type: texture + offset: 0x6EF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_020_tlut_wheel_2: + symbol: gKartToad020TlutWheel2 + type: texture + offset: 0x6EFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_020_tlut_wheel_3: + symbol: gKartToad020TlutWheel3 + type: texture + offset: 0x6F068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_021_tlut_wheel_0: + symbol: gKartToad021TlutWheel0 + type: texture + offset: 0x6F0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_021_tlut_wheel_1: + symbol: gKartToad021TlutWheel1 + type: texture + offset: 0x6F168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_021_tlut_wheel_2: + symbol: gKartToad021TlutWheel2 + type: texture + offset: 0x6F1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_021_tlut_wheel_3: + symbol: gKartToad021TlutWheel3 + type: texture + offset: 0x6F268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_022_tlut_wheel_0: + symbol: gKartToad022TlutWheel0 + type: texture + offset: 0x6F2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_022_tlut_wheel_1: + symbol: gKartToad022TlutWheel1 + type: texture + offset: 0x6F368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_022_tlut_wheel_2: + symbol: gKartToad022TlutWheel2 + type: texture + offset: 0x6F3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_022_tlut_wheel_3: + symbol: gKartToad022TlutWheel3 + type: texture + offset: 0x6F468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_023_tlut_wheel_0: + symbol: gKartToad023TlutWheel0 + type: texture + offset: 0x6F4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_023_tlut_wheel_1: + symbol: gKartToad023TlutWheel1 + type: texture + offset: 0x6F568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_023_tlut_wheel_2: + symbol: gKartToad023TlutWheel2 + type: texture + offset: 0x6F5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_023_tlut_wheel_3: + symbol: gKartToad023TlutWheel3 + type: texture + offset: 0x6F668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_024_tlut_wheel_0: + symbol: gKartToad024TlutWheel0 + type: texture + offset: 0x6F6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_024_tlut_wheel_1: + symbol: gKartToad024TlutWheel1 + type: texture + offset: 0x6F768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_024_tlut_wheel_2: + symbol: gKartToad024TlutWheel2 + type: texture + offset: 0x6F7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_024_tlut_wheel_3: + symbol: gKartToad024TlutWheel3 + type: texture + offset: 0x6F868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_025_tlut_wheel_0: + symbol: gKartToad025TlutWheel0 + type: texture + offset: 0x6F8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_025_tlut_wheel_1: + symbol: gKartToad025TlutWheel1 + type: texture + offset: 0x6F968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_025_tlut_wheel_2: + symbol: gKartToad025TlutWheel2 + type: texture + offset: 0x6F9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_025_tlut_wheel_3: + symbol: gKartToad025TlutWheel3 + type: texture + offset: 0x6FA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_026_tlut_wheel_0: + symbol: gKartToad026TlutWheel0 + type: texture + offset: 0x6FAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_026_tlut_wheel_1: + symbol: gKartToad026TlutWheel1 + type: texture + offset: 0x6FB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_026_tlut_wheel_2: + symbol: gKartToad026TlutWheel2 + type: texture + offset: 0x6FBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_026_tlut_wheel_3: + symbol: gKartToad026TlutWheel3 + type: texture + offset: 0x6FC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_027_tlut_wheel_0: + symbol: gKartToad027TlutWheel0 + type: texture + offset: 0x6FCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_027_tlut_wheel_1: + symbol: gKartToad027TlutWheel1 + type: texture + offset: 0x6FD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_027_tlut_wheel_2: + symbol: gKartToad027TlutWheel2 + type: texture + offset: 0x6FDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_027_tlut_wheel_3: + symbol: gKartToad027TlutWheel3 + type: texture + offset: 0x6FE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_028_tlut_wheel_0: + symbol: gKartToad028TlutWheel0 + type: texture + offset: 0x6FEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_028_tlut_wheel_1: + symbol: gKartToad028TlutWheel1 + type: texture + offset: 0x6FF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_028_tlut_wheel_2: + symbol: gKartToad028TlutWheel2 + type: texture + offset: 0x6FFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_028_tlut_wheel_3: + symbol: gKartToad028TlutWheel3 + type: texture + offset: 0x70068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_029_tlut_wheel_0: + symbol: gKartToad029TlutWheel0 + type: texture + offset: 0x700E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_029_tlut_wheel_1: + symbol: gKartToad029TlutWheel1 + type: texture + offset: 0x70168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_029_tlut_wheel_2: + symbol: gKartToad029TlutWheel2 + type: texture + offset: 0x701E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_029_tlut_wheel_3: + symbol: gKartToad029TlutWheel3 + type: texture + offset: 0x70268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_030_tlut_wheel_0: + symbol: gKartToad030TlutWheel0 + type: texture + offset: 0x702E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_030_tlut_wheel_1: + symbol: gKartToad030TlutWheel1 + type: texture + offset: 0x70368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_030_tlut_wheel_2: + symbol: gKartToad030TlutWheel2 + type: texture + offset: 0x703E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_030_tlut_wheel_3: + symbol: gKartToad030TlutWheel3 + type: texture + offset: 0x70468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_031_tlut_wheel_0: + symbol: gKartToad031TlutWheel0 + type: texture + offset: 0x704E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_031_tlut_wheel_1: + symbol: gKartToad031TlutWheel1 + type: texture + offset: 0x70568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_031_tlut_wheel_2: + symbol: gKartToad031TlutWheel2 + type: texture + offset: 0x705E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_031_tlut_wheel_3: + symbol: gKartToad031TlutWheel3 + type: texture + offset: 0x70668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_032_tlut_wheel_0: + symbol: gKartToad032TlutWheel0 + type: texture + offset: 0x706E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_032_tlut_wheel_1: + symbol: gKartToad032TlutWheel1 + type: texture + offset: 0x70768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_032_tlut_wheel_2: + symbol: gKartToad032TlutWheel2 + type: texture + offset: 0x707E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_032_tlut_wheel_3: + symbol: gKartToad032TlutWheel3 + type: texture + offset: 0x70868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_033_tlut_wheel_0: + symbol: gKartToad033TlutWheel0 + type: texture + offset: 0x708E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_033_tlut_wheel_1: + symbol: gKartToad033TlutWheel1 + type: texture + offset: 0x70968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_033_tlut_wheel_2: + symbol: gKartToad033TlutWheel2 + type: texture + offset: 0x709E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_033_tlut_wheel_3: + symbol: gKartToad033TlutWheel3 + type: texture + offset: 0x70A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_034_tlut_wheel_0: + symbol: gKartToad034TlutWheel0 + type: texture + offset: 0x70AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_034_tlut_wheel_1: + symbol: gKartToad034TlutWheel1 + type: texture + offset: 0x70B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_034_tlut_wheel_2: + symbol: gKartToad034TlutWheel2 + type: texture + offset: 0x70BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_034_tlut_wheel_3: + symbol: gKartToad034TlutWheel3 + type: texture + offset: 0x70C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_035_tlut_wheel_0: + symbol: gKartToad035TlutWheel0 + type: texture + offset: 0x70CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_035_tlut_wheel_1: + symbol: gKartToad035TlutWheel1 + type: texture + offset: 0x70D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_035_tlut_wheel_2: + symbol: gKartToad035TlutWheel2 + type: texture + offset: 0x70DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_035_tlut_wheel_3: + symbol: gKartToad035TlutWheel3 + type: texture + offset: 0x70E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_036_tlut_wheel_0: + symbol: gKartToad036TlutWheel0 + type: texture + offset: 0x70EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_036_tlut_wheel_1: + symbol: gKartToad036TlutWheel1 + type: texture + offset: 0x70F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_036_tlut_wheel_2: + symbol: gKartToad036TlutWheel2 + type: texture + offset: 0x70FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_036_tlut_wheel_3: + symbol: gKartToad036TlutWheel3 + type: texture + offset: 0x71068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_037_tlut_wheel_0: + symbol: gKartToad037TlutWheel0 + type: texture + offset: 0x710E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_037_tlut_wheel_1: + symbol: gKartToad037TlutWheel1 + type: texture + offset: 0x71168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_037_tlut_wheel_2: + symbol: gKartToad037TlutWheel2 + type: texture + offset: 0x711E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_037_tlut_wheel_3: + symbol: gKartToad037TlutWheel3 + type: texture + offset: 0x71268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_038_tlut_wheel_0: + symbol: gKartToad038TlutWheel0 + type: texture + offset: 0x712E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_038_tlut_wheel_1: + symbol: gKartToad038TlutWheel1 + type: texture + offset: 0x71368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_038_tlut_wheel_2: + symbol: gKartToad038TlutWheel2 + type: texture + offset: 0x713E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_038_tlut_wheel_3: + symbol: gKartToad038TlutWheel3 + type: texture + offset: 0x71468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_039_tlut_wheel_0: + symbol: gKartToad039TlutWheel0 + type: texture + offset: 0x714E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_039_tlut_wheel_1: + symbol: gKartToad039TlutWheel1 + type: texture + offset: 0x71568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_039_tlut_wheel_2: + symbol: gKartToad039TlutWheel2 + type: texture + offset: 0x715E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_039_tlut_wheel_3: + symbol: gKartToad039TlutWheel3 + type: texture + offset: 0x71668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_040_tlut_wheel_0: + symbol: gKartToad040TlutWheel0 + type: texture + offset: 0x716E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_040_tlut_wheel_1: + symbol: gKartToad040TlutWheel1 + type: texture + offset: 0x71768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_040_tlut_wheel_2: + symbol: gKartToad040TlutWheel2 + type: texture + offset: 0x717E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_040_tlut_wheel_3: + symbol: gKartToad040TlutWheel3 + type: texture + offset: 0x71868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_041_tlut_wheel_0: + symbol: gKartToad041TlutWheel0 + type: texture + offset: 0x718E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_041_tlut_wheel_1: + symbol: gKartToad041TlutWheel1 + type: texture + offset: 0x71968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_041_tlut_wheel_2: + symbol: gKartToad041TlutWheel2 + type: texture + offset: 0x719E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_041_tlut_wheel_3: + symbol: gKartToad041TlutWheel3 + type: texture + offset: 0x71A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_042_tlut_wheel_0: + symbol: gKartToad042TlutWheel0 + type: texture + offset: 0x71AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_042_tlut_wheel_1: + symbol: gKartToad042TlutWheel1 + type: texture + offset: 0x71B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_042_tlut_wheel_2: + symbol: gKartToad042TlutWheel2 + type: texture + offset: 0x71BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_042_tlut_wheel_3: + symbol: gKartToad042TlutWheel3 + type: texture + offset: 0x71C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_043_tlut_wheel_0: + symbol: gKartToad043TlutWheel0 + type: texture + offset: 0x71CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_043_tlut_wheel_1: + symbol: gKartToad043TlutWheel1 + type: texture + offset: 0x71D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_043_tlut_wheel_2: + symbol: gKartToad043TlutWheel2 + type: texture + offset: 0x71DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_043_tlut_wheel_3: + symbol: gKartToad043TlutWheel3 + type: texture + offset: 0x71E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_044_tlut_wheel_0: + symbol: gKartToad044TlutWheel0 + type: texture + offset: 0x71EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_044_tlut_wheel_1: + symbol: gKartToad044TlutWheel1 + type: texture + offset: 0x71F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_044_tlut_wheel_2: + symbol: gKartToad044TlutWheel2 + type: texture + offset: 0x71FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_044_tlut_wheel_3: + symbol: gKartToad044TlutWheel3 + type: texture + offset: 0x72068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_045_tlut_wheel_0: + symbol: gKartToad045TlutWheel0 + type: texture + offset: 0x720E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_045_tlut_wheel_1: + symbol: gKartToad045TlutWheel1 + type: texture + offset: 0x72168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_045_tlut_wheel_2: + symbol: gKartToad045TlutWheel2 + type: texture + offset: 0x721E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_045_tlut_wheel_3: + symbol: gKartToad045TlutWheel3 + type: texture + offset: 0x72268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_046_tlut_wheel_0: + symbol: gKartToad046TlutWheel0 + type: texture + offset: 0x722E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_046_tlut_wheel_1: + symbol: gKartToad046TlutWheel1 + type: texture + offset: 0x72368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_046_tlut_wheel_2: + symbol: gKartToad046TlutWheel2 + type: texture + offset: 0x723E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_046_tlut_wheel_3: + symbol: gKartToad046TlutWheel3 + type: texture + offset: 0x72468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_047_tlut_wheel_0: + symbol: gKartToad047TlutWheel0 + type: texture + offset: 0x724E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_047_tlut_wheel_1: + symbol: gKartToad047TlutWheel1 + type: texture + offset: 0x72568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_047_tlut_wheel_2: + symbol: gKartToad047TlutWheel2 + type: texture + offset: 0x725E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_047_tlut_wheel_3: + symbol: gKartToad047TlutWheel3 + type: texture + offset: 0x72668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_048_tlut_wheel_0: + symbol: gKartToad048TlutWheel0 + type: texture + offset: 0x726E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_048_tlut_wheel_1: + symbol: gKartToad048TlutWheel1 + type: texture + offset: 0x72768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_048_tlut_wheel_2: + symbol: gKartToad048TlutWheel2 + type: texture + offset: 0x727E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_048_tlut_wheel_3: + symbol: gKartToad048TlutWheel3 + type: texture + offset: 0x72868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_049_tlut_wheel_0: + symbol: gKartToad049TlutWheel0 + type: texture + offset: 0x728E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_049_tlut_wheel_1: + symbol: gKartToad049TlutWheel1 + type: texture + offset: 0x72968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_049_tlut_wheel_2: + symbol: gKartToad049TlutWheel2 + type: texture + offset: 0x729E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_049_tlut_wheel_3: + symbol: gKartToad049TlutWheel3 + type: texture + offset: 0x72A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_050_tlut_wheel_0: + symbol: gKartToad050TlutWheel0 + type: texture + offset: 0x72AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_050_tlut_wheel_1: + symbol: gKartToad050TlutWheel1 + type: texture + offset: 0x72B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_050_tlut_wheel_2: + symbol: gKartToad050TlutWheel2 + type: texture + offset: 0x72BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_050_tlut_wheel_3: + symbol: gKartToad050TlutWheel3 + type: texture + offset: 0x72C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_051_tlut_wheel_0: + symbol: gKartToad051TlutWheel0 + type: texture + offset: 0x72CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_051_tlut_wheel_1: + symbol: gKartToad051TlutWheel1 + type: texture + offset: 0x72D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_051_tlut_wheel_2: + symbol: gKartToad051TlutWheel2 + type: texture + offset: 0x72DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_051_tlut_wheel_3: + symbol: gKartToad051TlutWheel3 + type: texture + offset: 0x72E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_052_tlut_wheel_0: + symbol: gKartToad052TlutWheel0 + type: texture + offset: 0x72EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_052_tlut_wheel_1: + symbol: gKartToad052TlutWheel1 + type: texture + offset: 0x72F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_052_tlut_wheel_2: + symbol: gKartToad052TlutWheel2 + type: texture + offset: 0x72FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_052_tlut_wheel_3: + symbol: gKartToad052TlutWheel3 + type: texture + offset: 0x73068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_053_tlut_wheel_0: + symbol: gKartToad053TlutWheel0 + type: texture + offset: 0x730E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_053_tlut_wheel_1: + symbol: gKartToad053TlutWheel1 + type: texture + offset: 0x73168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_053_tlut_wheel_2: + symbol: gKartToad053TlutWheel2 + type: texture + offset: 0x731E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_053_tlut_wheel_3: + symbol: gKartToad053TlutWheel3 + type: texture + offset: 0x73268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_054_tlut_wheel_0: + symbol: gKartToad054TlutWheel0 + type: texture + offset: 0x732E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_054_tlut_wheel_1: + symbol: gKartToad054TlutWheel1 + type: texture + offset: 0x73368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_054_tlut_wheel_2: + symbol: gKartToad054TlutWheel2 + type: texture + offset: 0x733E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_054_tlut_wheel_3: + symbol: gKartToad054TlutWheel3 + type: texture + offset: 0x73468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_055_tlut_wheel_0: + symbol: gKartToad055TlutWheel0 + type: texture + offset: 0x734E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_055_tlut_wheel_1: + symbol: gKartToad055TlutWheel1 + type: texture + offset: 0x73568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_055_tlut_wheel_2: + symbol: gKartToad055TlutWheel2 + type: texture + offset: 0x735E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_055_tlut_wheel_3: + symbol: gKartToad055TlutWheel3 + type: texture + offset: 0x73668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_056_tlut_wheel_0: + symbol: gKartToad056TlutWheel0 + type: texture + offset: 0x736E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_056_tlut_wheel_1: + symbol: gKartToad056TlutWheel1 + type: texture + offset: 0x73768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_056_tlut_wheel_2: + symbol: gKartToad056TlutWheel2 + type: texture + offset: 0x737E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_056_tlut_wheel_3: + symbol: gKartToad056TlutWheel3 + type: texture + offset: 0x73868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_057_tlut_wheel_0: + symbol: gKartToad057TlutWheel0 + type: texture + offset: 0x738E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_057_tlut_wheel_1: + symbol: gKartToad057TlutWheel1 + type: texture + offset: 0x73968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_057_tlut_wheel_2: + symbol: gKartToad057TlutWheel2 + type: texture + offset: 0x739E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_057_tlut_wheel_3: + symbol: gKartToad057TlutWheel3 + type: texture + offset: 0x73A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_058_tlut_wheel_0: + symbol: gKartToad058TlutWheel0 + type: texture + offset: 0x73AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_058_tlut_wheel_1: + symbol: gKartToad058TlutWheel1 + type: texture + offset: 0x73B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_058_tlut_wheel_2: + symbol: gKartToad058TlutWheel2 + type: texture + offset: 0x73BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_058_tlut_wheel_3: + symbol: gKartToad058TlutWheel3 + type: texture + offset: 0x73C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_059_tlut_wheel_0: + symbol: gKartToad059TlutWheel0 + type: texture + offset: 0x73CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_059_tlut_wheel_1: + symbol: gKartToad059TlutWheel1 + type: texture + offset: 0x73D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_059_tlut_wheel_2: + symbol: gKartToad059TlutWheel2 + type: texture + offset: 0x73DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_059_tlut_wheel_3: + symbol: gKartToad059TlutWheel3 + type: texture + offset: 0x73E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_060_tlut_wheel_0: + symbol: gKartToad060TlutWheel0 + type: texture + offset: 0x73EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_060_tlut_wheel_1: + symbol: gKartToad060TlutWheel1 + type: texture + offset: 0x73F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_060_tlut_wheel_2: + symbol: gKartToad060TlutWheel2 + type: texture + offset: 0x73FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_060_tlut_wheel_3: + symbol: gKartToad060TlutWheel3 + type: texture + offset: 0x74068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_061_tlut_wheel_0: + symbol: gKartToad061TlutWheel0 + type: texture + offset: 0x740E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_061_tlut_wheel_1: + symbol: gKartToad061TlutWheel1 + type: texture + offset: 0x74168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_061_tlut_wheel_2: + symbol: gKartToad061TlutWheel2 + type: texture + offset: 0x741E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_061_tlut_wheel_3: + symbol: gKartToad061TlutWheel3 + type: texture + offset: 0x74268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_062_tlut_wheel_0: + symbol: gKartToad062TlutWheel0 + type: texture + offset: 0x742E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_062_tlut_wheel_1: + symbol: gKartToad062TlutWheel1 + type: texture + offset: 0x74368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_062_tlut_wheel_2: + symbol: gKartToad062TlutWheel2 + type: texture + offset: 0x743E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_062_tlut_wheel_3: + symbol: gKartToad062TlutWheel3 + type: texture + offset: 0x74468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_063_tlut_wheel_0: + symbol: gKartToad063TlutWheel0 + type: texture + offset: 0x744E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_063_tlut_wheel_1: + symbol: gKartToad063TlutWheel1 + type: texture + offset: 0x74568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_063_tlut_wheel_2: + symbol: gKartToad063TlutWheel2 + type: texture + offset: 0x745E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_063_tlut_wheel_3: + symbol: gKartToad063TlutWheel3 + type: texture + offset: 0x74668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_064_tlut_wheel_0: + symbol: gKartToad064TlutWheel0 + type: texture + offset: 0x746E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_064_tlut_wheel_1: + symbol: gKartToad064TlutWheel1 + type: texture + offset: 0x74768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_064_tlut_wheel_2: + symbol: gKartToad064TlutWheel2 + type: texture + offset: 0x747E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_064_tlut_wheel_3: + symbol: gKartToad064TlutWheel3 + type: texture + offset: 0x74868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_065_tlut_wheel_0: + symbol: gKartToad065TlutWheel0 + type: texture + offset: 0x748E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_065_tlut_wheel_1: + symbol: gKartToad065TlutWheel1 + type: texture + offset: 0x74968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_065_tlut_wheel_2: + symbol: gKartToad065TlutWheel2 + type: texture + offset: 0x749E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_065_tlut_wheel_3: + symbol: gKartToad065TlutWheel3 + type: texture + offset: 0x74A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_066_tlut_wheel_0: + symbol: gKartToad066TlutWheel0 + type: texture + offset: 0x74AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_066_tlut_wheel_1: + symbol: gKartToad066TlutWheel1 + type: texture + offset: 0x74B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_066_tlut_wheel_2: + symbol: gKartToad066TlutWheel2 + type: texture + offset: 0x74BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_066_tlut_wheel_3: + symbol: gKartToad066TlutWheel3 + type: texture + offset: 0x74C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_067_tlut_wheel_0: + symbol: gKartToad067TlutWheel0 + type: texture + offset: 0x74CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_067_tlut_wheel_1: + symbol: gKartToad067TlutWheel1 + type: texture + offset: 0x74D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_067_tlut_wheel_2: + symbol: gKartToad067TlutWheel2 + type: texture + offset: 0x74DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_067_tlut_wheel_3: + symbol: gKartToad067TlutWheel3 + type: texture + offset: 0x74E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_068_tlut_wheel_0: + symbol: gKartToad068TlutWheel0 + type: texture + offset: 0x74EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_068_tlut_wheel_1: + symbol: gKartToad068TlutWheel1 + type: texture + offset: 0x74F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_068_tlut_wheel_2: + symbol: gKartToad068TlutWheel2 + type: texture + offset: 0x74FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_068_tlut_wheel_3: + symbol: gKartToad068TlutWheel3 + type: texture + offset: 0x75068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_069_tlut_wheel_0: + symbol: gKartToad069TlutWheel0 + type: texture + offset: 0x750E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_069_tlut_wheel_1: + symbol: gKartToad069TlutWheel1 + type: texture + offset: 0x75168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_069_tlut_wheel_2: + symbol: gKartToad069TlutWheel2 + type: texture + offset: 0x751E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_069_tlut_wheel_3: + symbol: gKartToad069TlutWheel3 + type: texture + offset: 0x75268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_070_tlut_wheel_0: + symbol: gKartToad070TlutWheel0 + type: texture + offset: 0x752E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_070_tlut_wheel_1: + symbol: gKartToad070TlutWheel1 + type: texture + offset: 0x75368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_070_tlut_wheel_2: + symbol: gKartToad070TlutWheel2 + type: texture + offset: 0x753E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_070_tlut_wheel_3: + symbol: gKartToad070TlutWheel3 + type: texture + offset: 0x75468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_071_tlut_wheel_0: + symbol: gKartToad071TlutWheel0 + type: texture + offset: 0x754E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_071_tlut_wheel_1: + symbol: gKartToad071TlutWheel1 + type: texture + offset: 0x75568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_071_tlut_wheel_2: + symbol: gKartToad071TlutWheel2 + type: texture + offset: 0x755E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_071_tlut_wheel_3: + symbol: gKartToad071TlutWheel3 + type: texture + offset: 0x75668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_072_tlut_wheel_0: + symbol: gKartToad072TlutWheel0 + type: texture + offset: 0x756E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_072_tlut_wheel_1: + symbol: gKartToad072TlutWheel1 + type: texture + offset: 0x75768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_072_tlut_wheel_2: + symbol: gKartToad072TlutWheel2 + type: texture + offset: 0x757E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_072_tlut_wheel_3: + symbol: gKartToad072TlutWheel3 + type: texture + offset: 0x75868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_073_tlut_wheel_0: + symbol: gKartToad073TlutWheel0 + type: texture + offset: 0x758E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_073_tlut_wheel_1: + symbol: gKartToad073TlutWheel1 + type: texture + offset: 0x75968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_073_tlut_wheel_2: + symbol: gKartToad073TlutWheel2 + type: texture + offset: 0x759E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_073_tlut_wheel_3: + symbol: gKartToad073TlutWheel3 + type: texture + offset: 0x75A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_074_tlut_wheel_0: + symbol: gKartToad074TlutWheel0 + type: texture + offset: 0x75AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_074_tlut_wheel_1: + symbol: gKartToad074TlutWheel1 + type: texture + offset: 0x75B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_074_tlut_wheel_2: + symbol: gKartToad074TlutWheel2 + type: texture + offset: 0x75BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_074_tlut_wheel_3: + symbol: gKartToad074TlutWheel3 + type: texture + offset: 0x75C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_075_tlut_wheel_0: + symbol: gKartToad075TlutWheel0 + type: texture + offset: 0x75CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_075_tlut_wheel_1: + symbol: gKartToad075TlutWheel1 + type: texture + offset: 0x75D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_075_tlut_wheel_2: + symbol: gKartToad075TlutWheel2 + type: texture + offset: 0x75DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_075_tlut_wheel_3: + symbol: gKartToad075TlutWheel3 + type: texture + offset: 0x75E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_076_tlut_wheel_0: + symbol: gKartToad076TlutWheel0 + type: texture + offset: 0x75EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_076_tlut_wheel_1: + symbol: gKartToad076TlutWheel1 + type: texture + offset: 0x75F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_076_tlut_wheel_2: + symbol: gKartToad076TlutWheel2 + type: texture + offset: 0x75FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_076_tlut_wheel_3: + symbol: gKartToad076TlutWheel3 + type: texture + offset: 0x76068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_077_tlut_wheel_0: + symbol: gKartToad077TlutWheel0 + type: texture + offset: 0x760E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_077_tlut_wheel_1: + symbol: gKartToad077TlutWheel1 + type: texture + offset: 0x76168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_077_tlut_wheel_2: + symbol: gKartToad077TlutWheel2 + type: texture + offset: 0x761E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_077_tlut_wheel_3: + symbol: gKartToad077TlutWheel3 + type: texture + offset: 0x76268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_078_tlut_wheel_0: + symbol: gKartToad078TlutWheel0 + type: texture + offset: 0x762E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_078_tlut_wheel_1: + symbol: gKartToad078TlutWheel1 + type: texture + offset: 0x76368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_078_tlut_wheel_2: + symbol: gKartToad078TlutWheel2 + type: texture + offset: 0x763E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_078_tlut_wheel_3: + symbol: gKartToad078TlutWheel3 + type: texture + offset: 0x76468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_079_tlut_wheel_0: + symbol: gKartToad079TlutWheel0 + type: texture + offset: 0x764E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_079_tlut_wheel_1: + symbol: gKartToad079TlutWheel1 + type: texture + offset: 0x76568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_079_tlut_wheel_2: + symbol: gKartToad079TlutWheel2 + type: texture + offset: 0x765E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_079_tlut_wheel_3: + symbol: gKartToad079TlutWheel3 + type: texture + offset: 0x76668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_080_tlut_wheel_0: + symbol: gKartToad080TlutWheel0 + type: texture + offset: 0x766E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_080_tlut_wheel_1: + symbol: gKartToad080TlutWheel1 + type: texture + offset: 0x76768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_080_tlut_wheel_2: + symbol: gKartToad080TlutWheel2 + type: texture + offset: 0x767E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_080_tlut_wheel_3: + symbol: gKartToad080TlutWheel3 + type: texture + offset: 0x76868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_081_tlut_wheel_0: + symbol: gKartToad081TlutWheel0 + type: texture + offset: 0x768E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_081_tlut_wheel_1: + symbol: gKartToad081TlutWheel1 + type: texture + offset: 0x76968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_081_tlut_wheel_2: + symbol: gKartToad081TlutWheel2 + type: texture + offset: 0x769E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_081_tlut_wheel_3: + symbol: gKartToad081TlutWheel3 + type: texture + offset: 0x76A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_082_tlut_wheel_0: + symbol: gKartToad082TlutWheel0 + type: texture + offset: 0x76AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_082_tlut_wheel_1: + symbol: gKartToad082TlutWheel1 + type: texture + offset: 0x76B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_082_tlut_wheel_2: + symbol: gKartToad082TlutWheel2 + type: texture + offset: 0x76BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_082_tlut_wheel_3: + symbol: gKartToad082TlutWheel3 + type: texture + offset: 0x76C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_083_tlut_wheel_0: + symbol: gKartToad083TlutWheel0 + type: texture + offset: 0x76CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_083_tlut_wheel_1: + symbol: gKartToad083TlutWheel1 + type: texture + offset: 0x76D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_083_tlut_wheel_2: + symbol: gKartToad083TlutWheel2 + type: texture + offset: 0x76DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_083_tlut_wheel_3: + symbol: gKartToad083TlutWheel3 + type: texture + offset: 0x76E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_084_tlut_wheel_0: + symbol: gKartToad084TlutWheel0 + type: texture + offset: 0x76EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_084_tlut_wheel_1: + symbol: gKartToad084TlutWheel1 + type: texture + offset: 0x76F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_084_tlut_wheel_2: + symbol: gKartToad084TlutWheel2 + type: texture + offset: 0x76FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_084_tlut_wheel_3: + symbol: gKartToad084TlutWheel3 + type: texture + offset: 0x77068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_085_tlut_wheel_0: + symbol: gKartToad085TlutWheel0 + type: texture + offset: 0x770E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_085_tlut_wheel_1: + symbol: gKartToad085TlutWheel1 + type: texture + offset: 0x77168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_085_tlut_wheel_2: + symbol: gKartToad085TlutWheel2 + type: texture + offset: 0x771E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_085_tlut_wheel_3: + symbol: gKartToad085TlutWheel3 + type: texture + offset: 0x77268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_086_tlut_wheel_0: + symbol: gKartToad086TlutWheel0 + type: texture + offset: 0x772E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_086_tlut_wheel_1: + symbol: gKartToad086TlutWheel1 + type: texture + offset: 0x77368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_086_tlut_wheel_2: + symbol: gKartToad086TlutWheel2 + type: texture + offset: 0x773E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_086_tlut_wheel_3: + symbol: gKartToad086TlutWheel3 + type: texture + offset: 0x77468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_087_tlut_wheel_0: + symbol: gKartToad087TlutWheel0 + type: texture + offset: 0x774E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_087_tlut_wheel_1: + symbol: gKartToad087TlutWheel1 + type: texture + offset: 0x77568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_087_tlut_wheel_2: + symbol: gKartToad087TlutWheel2 + type: texture + offset: 0x775E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_087_tlut_wheel_3: + symbol: gKartToad087TlutWheel3 + type: texture + offset: 0x77668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_088_tlut_wheel_0: + symbol: gKartToad088TlutWheel0 + type: texture + offset: 0x776E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_088_tlut_wheel_1: + symbol: gKartToad088TlutWheel1 + type: texture + offset: 0x77768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_088_tlut_wheel_2: + symbol: gKartToad088TlutWheel2 + type: texture + offset: 0x777E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_088_tlut_wheel_3: + symbol: gKartToad088TlutWheel3 + type: texture + offset: 0x77868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_089_tlut_wheel_0: + symbol: gKartToad089TlutWheel0 + type: texture + offset: 0x778E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_089_tlut_wheel_1: + symbol: gKartToad089TlutWheel1 + type: texture + offset: 0x77968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_089_tlut_wheel_2: + symbol: gKartToad089TlutWheel2 + type: texture + offset: 0x779E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_089_tlut_wheel_3: + symbol: gKartToad089TlutWheel3 + type: texture + offset: 0x77A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_090_tlut_wheel_0: + symbol: gKartToad090TlutWheel0 + type: texture + offset: 0x77AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_090_tlut_wheel_1: + symbol: gKartToad090TlutWheel1 + type: texture + offset: 0x77B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_090_tlut_wheel_2: + symbol: gKartToad090TlutWheel2 + type: texture + offset: 0x77BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_090_tlut_wheel_3: + symbol: gKartToad090TlutWheel3 + type: texture + offset: 0x77C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_091_tlut_wheel_0: + symbol: gKartToad091TlutWheel0 + type: texture + offset: 0x77CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_091_tlut_wheel_1: + symbol: gKartToad091TlutWheel1 + type: texture + offset: 0x77D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_091_tlut_wheel_2: + symbol: gKartToad091TlutWheel2 + type: texture + offset: 0x77DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_091_tlut_wheel_3: + symbol: gKartToad091TlutWheel3 + type: texture + offset: 0x77E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_092_tlut_wheel_0: + symbol: gKartToad092TlutWheel0 + type: texture + offset: 0x77EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_092_tlut_wheel_1: + symbol: gKartToad092TlutWheel1 + type: texture + offset: 0x77F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_092_tlut_wheel_2: + symbol: gKartToad092TlutWheel2 + type: texture + offset: 0x77FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_092_tlut_wheel_3: + symbol: gKartToad092TlutWheel3 + type: texture + offset: 0x78068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_093_tlut_wheel_0: + symbol: gKartToad093TlutWheel0 + type: texture + offset: 0x780E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_093_tlut_wheel_1: + symbol: gKartToad093TlutWheel1 + type: texture + offset: 0x78168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_093_tlut_wheel_2: + symbol: gKartToad093TlutWheel2 + type: texture + offset: 0x781E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_093_tlut_wheel_3: + symbol: gKartToad093TlutWheel3 + type: texture + offset: 0x78268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_094_tlut_wheel_0: + symbol: gKartToad094TlutWheel0 + type: texture + offset: 0x782E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_094_tlut_wheel_1: + symbol: gKartToad094TlutWheel1 + type: texture + offset: 0x78368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_094_tlut_wheel_2: + symbol: gKartToad094TlutWheel2 + type: texture + offset: 0x783E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_094_tlut_wheel_3: + symbol: gKartToad094TlutWheel3 + type: texture + offset: 0x78468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_095_tlut_wheel_0: + symbol: gKartToad095TlutWheel0 + type: texture + offset: 0x784E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_095_tlut_wheel_1: + symbol: gKartToad095TlutWheel1 + type: texture + offset: 0x78568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_095_tlut_wheel_2: + symbol: gKartToad095TlutWheel2 + type: texture + offset: 0x785E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_095_tlut_wheel_3: + symbol: gKartToad095TlutWheel3 + type: texture + offset: 0x78668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_096_tlut_wheel_0: + symbol: gKartToad096TlutWheel0 + type: texture + offset: 0x786E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_096_tlut_wheel_1: + symbol: gKartToad096TlutWheel1 + type: texture + offset: 0x78768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_096_tlut_wheel_2: + symbol: gKartToad096TlutWheel2 + type: texture + offset: 0x787E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_096_tlut_wheel_3: + symbol: gKartToad096TlutWheel3 + type: texture + offset: 0x78868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_097_tlut_wheel_0: + symbol: gKartToad097TlutWheel0 + type: texture + offset: 0x788E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_097_tlut_wheel_1: + symbol: gKartToad097TlutWheel1 + type: texture + offset: 0x78968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_097_tlut_wheel_2: + symbol: gKartToad097TlutWheel2 + type: texture + offset: 0x789E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_097_tlut_wheel_3: + symbol: gKartToad097TlutWheel3 + type: texture + offset: 0x78A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_098_tlut_wheel_0: + symbol: gKartToad098TlutWheel0 + type: texture + offset: 0x78AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_098_tlut_wheel_1: + symbol: gKartToad098TlutWheel1 + type: texture + offset: 0x78B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_098_tlut_wheel_2: + symbol: gKartToad098TlutWheel2 + type: texture + offset: 0x78BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_098_tlut_wheel_3: + symbol: gKartToad098TlutWheel3 + type: texture + offset: 0x78C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_099_tlut_wheel_0: + symbol: gKartToad099TlutWheel0 + type: texture + offset: 0x78CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_099_tlut_wheel_1: + symbol: gKartToad099TlutWheel1 + type: texture + offset: 0x78D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_099_tlut_wheel_2: + symbol: gKartToad099TlutWheel2 + type: texture + offset: 0x78DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_099_tlut_wheel_3: + symbol: gKartToad099TlutWheel3 + type: texture + offset: 0x78E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_100_tlut_wheel_0: + symbol: gKartToad100TlutWheel0 + type: texture + offset: 0x78EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_100_tlut_wheel_1: + symbol: gKartToad100TlutWheel1 + type: texture + offset: 0x78F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_100_tlut_wheel_2: + symbol: gKartToad100TlutWheel2 + type: texture + offset: 0x78FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_100_tlut_wheel_3: + symbol: gKartToad100TlutWheel3 + type: texture + offset: 0x79068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_101_tlut_wheel_0: + symbol: gKartToad101TlutWheel0 + type: texture + offset: 0x790E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_101_tlut_wheel_1: + symbol: gKartToad101TlutWheel1 + type: texture + offset: 0x79168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_101_tlut_wheel_2: + symbol: gKartToad101TlutWheel2 + type: texture + offset: 0x791E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_101_tlut_wheel_3: + symbol: gKartToad101TlutWheel3 + type: texture + offset: 0x79268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_102_tlut_wheel_0: + symbol: gKartToad102TlutWheel0 + type: texture + offset: 0x792E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_102_tlut_wheel_1: + symbol: gKartToad102TlutWheel1 + type: texture + offset: 0x79368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_102_tlut_wheel_2: + symbol: gKartToad102TlutWheel2 + type: texture + offset: 0x793E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_102_tlut_wheel_3: + symbol: gKartToad102TlutWheel3 + type: texture + offset: 0x79468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_103_tlut_wheel_0: + symbol: gKartToad103TlutWheel0 + type: texture + offset: 0x794E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_103_tlut_wheel_1: + symbol: gKartToad103TlutWheel1 + type: texture + offset: 0x79568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_103_tlut_wheel_2: + symbol: gKartToad103TlutWheel2 + type: texture + offset: 0x795E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_103_tlut_wheel_3: + symbol: gKartToad103TlutWheel3 + type: texture + offset: 0x79668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_104_tlut_wheel_0: + symbol: gKartToad104TlutWheel0 + type: texture + offset: 0x796E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_104_tlut_wheel_1: + symbol: gKartToad104TlutWheel1 + type: texture + offset: 0x79768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_104_tlut_wheel_2: + symbol: gKartToad104TlutWheel2 + type: texture + offset: 0x797E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_104_tlut_wheel_3: + symbol: gKartToad104TlutWheel3 + type: texture + offset: 0x79868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_105_tlut_wheel_0: + symbol: gKartToad105TlutWheel0 + type: texture + offset: 0x798E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_105_tlut_wheel_1: + symbol: gKartToad105TlutWheel1 + type: texture + offset: 0x79968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_105_tlut_wheel_2: + symbol: gKartToad105TlutWheel2 + type: texture + offset: 0x799E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_105_tlut_wheel_3: + symbol: gKartToad105TlutWheel3 + type: texture + offset: 0x79A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_106_tlut_wheel_0: + symbol: gKartToad106TlutWheel0 + type: texture + offset: 0x79AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_106_tlut_wheel_1: + symbol: gKartToad106TlutWheel1 + type: texture + offset: 0x79B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_106_tlut_wheel_2: + symbol: gKartToad106TlutWheel2 + type: texture + offset: 0x79BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_106_tlut_wheel_3: + symbol: gKartToad106TlutWheel3 + type: texture + offset: 0x79C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_107_tlut_wheel_0: + symbol: gKartToad107TlutWheel0 + type: texture + offset: 0x79CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_107_tlut_wheel_1: + symbol: gKartToad107TlutWheel1 + type: texture + offset: 0x79D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_107_tlut_wheel_2: + symbol: gKartToad107TlutWheel2 + type: texture + offset: 0x79DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_107_tlut_wheel_3: + symbol: gKartToad107TlutWheel3 + type: texture + offset: 0x79E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_108_tlut_wheel_0: + symbol: gKartToad108TlutWheel0 + type: texture + offset: 0x79EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_108_tlut_wheel_1: + symbol: gKartToad108TlutWheel1 + type: texture + offset: 0x79F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_108_tlut_wheel_2: + symbol: gKartToad108TlutWheel2 + type: texture + offset: 0x79FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_108_tlut_wheel_3: + symbol: gKartToad108TlutWheel3 + type: texture + offset: 0x7A068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_109_tlut_wheel_0: + symbol: gKartToad109TlutWheel0 + type: texture + offset: 0x7A0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_109_tlut_wheel_1: + symbol: gKartToad109TlutWheel1 + type: texture + offset: 0x7A168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_109_tlut_wheel_2: + symbol: gKartToad109TlutWheel2 + type: texture + offset: 0x7A1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_109_tlut_wheel_3: + symbol: gKartToad109TlutWheel3 + type: texture + offset: 0x7A268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_110_tlut_wheel_0: + symbol: gKartToad110TlutWheel0 + type: texture + offset: 0x7A2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_110_tlut_wheel_1: + symbol: gKartToad110TlutWheel1 + type: texture + offset: 0x7A368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_110_tlut_wheel_2: + symbol: gKartToad110TlutWheel2 + type: texture + offset: 0x7A3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_110_tlut_wheel_3: + symbol: gKartToad110TlutWheel3 + type: texture + offset: 0x7A468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_111_tlut_wheel_0: + symbol: gKartToad111TlutWheel0 + type: texture + offset: 0x7A4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_111_tlut_wheel_1: + symbol: gKartToad111TlutWheel1 + type: texture + offset: 0x7A568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_111_tlut_wheel_2: + symbol: gKartToad111TlutWheel2 + type: texture + offset: 0x7A5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_111_tlut_wheel_3: + symbol: gKartToad111TlutWheel3 + type: texture + offset: 0x7A668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_112_tlut_wheel_0: + symbol: gKartToad112TlutWheel0 + type: texture + offset: 0x7A6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_112_tlut_wheel_1: + symbol: gKartToad112TlutWheel1 + type: texture + offset: 0x7A768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_112_tlut_wheel_2: + symbol: gKartToad112TlutWheel2 + type: texture + offset: 0x7A7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_112_tlut_wheel_3: + symbol: gKartToad112TlutWheel3 + type: texture + offset: 0x7A868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_113_tlut_wheel_0: + symbol: gKartToad113TlutWheel0 + type: texture + offset: 0x7A8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_113_tlut_wheel_1: + symbol: gKartToad113TlutWheel1 + type: texture + offset: 0x7A968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_113_tlut_wheel_2: + symbol: gKartToad113TlutWheel2 + type: texture + offset: 0x7A9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_113_tlut_wheel_3: + symbol: gKartToad113TlutWheel3 + type: texture + offset: 0x7AA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_114_tlut_wheel_0: + symbol: gKartToad114TlutWheel0 + type: texture + offset: 0x7AAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_114_tlut_wheel_1: + symbol: gKartToad114TlutWheel1 + type: texture + offset: 0x7AB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_114_tlut_wheel_2: + symbol: gKartToad114TlutWheel2 + type: texture + offset: 0x7ABE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_114_tlut_wheel_3: + symbol: gKartToad114TlutWheel3 + type: texture + offset: 0x7AC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_115_tlut_wheel_0: + symbol: gKartToad115TlutWheel0 + type: texture + offset: 0x7ACE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_115_tlut_wheel_1: + symbol: gKartToad115TlutWheel1 + type: texture + offset: 0x7AD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_115_tlut_wheel_2: + symbol: gKartToad115TlutWheel2 + type: texture + offset: 0x7ADE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_115_tlut_wheel_3: + symbol: gKartToad115TlutWheel3 + type: texture + offset: 0x7AE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_116_tlut_wheel_0: + symbol: gKartToad116TlutWheel0 + type: texture + offset: 0x7AEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_116_tlut_wheel_1: + symbol: gKartToad116TlutWheel1 + type: texture + offset: 0x7AF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_116_tlut_wheel_2: + symbol: gKartToad116TlutWheel2 + type: texture + offset: 0x7AFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_116_tlut_wheel_3: + symbol: gKartToad116TlutWheel3 + type: texture + offset: 0x7B068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_117_tlut_wheel_0: + symbol: gKartToad117TlutWheel0 + type: texture + offset: 0x7B0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_117_tlut_wheel_1: + symbol: gKartToad117TlutWheel1 + type: texture + offset: 0x7B168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_117_tlut_wheel_2: + symbol: gKartToad117TlutWheel2 + type: texture + offset: 0x7B1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_117_tlut_wheel_3: + symbol: gKartToad117TlutWheel3 + type: texture + offset: 0x7B268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_118_tlut_wheel_0: + symbol: gKartToad118TlutWheel0 + type: texture + offset: 0x7B2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_118_tlut_wheel_1: + symbol: gKartToad118TlutWheel1 + type: texture + offset: 0x7B368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_118_tlut_wheel_2: + symbol: gKartToad118TlutWheel2 + type: texture + offset: 0x7B3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_118_tlut_wheel_3: + symbol: gKartToad118TlutWheel3 + type: texture + offset: 0x7B468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_119_tlut_wheel_0: + symbol: gKartToad119TlutWheel0 + type: texture + offset: 0x7B4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_119_tlut_wheel_1: + symbol: gKartToad119TlutWheel1 + type: texture + offset: 0x7B568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_119_tlut_wheel_2: + symbol: gKartToad119TlutWheel2 + type: texture + offset: 0x7B5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_119_tlut_wheel_3: + symbol: gKartToad119TlutWheel3 + type: texture + offset: 0x7B668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_120_tlut_wheel_0: + symbol: gKartToad120TlutWheel0 + type: texture + offset: 0x7B6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_120_tlut_wheel_1: + symbol: gKartToad120TlutWheel1 + type: texture + offset: 0x7B768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_120_tlut_wheel_2: + symbol: gKartToad120TlutWheel2 + type: texture + offset: 0x7B7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_120_tlut_wheel_3: + symbol: gKartToad120TlutWheel3 + type: texture + offset: 0x7B868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_121_tlut_wheel_0: + symbol: gKartToad121TlutWheel0 + type: texture + offset: 0x7B8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_121_tlut_wheel_1: + symbol: gKartToad121TlutWheel1 + type: texture + offset: 0x7B968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_121_tlut_wheel_2: + symbol: gKartToad121TlutWheel2 + type: texture + offset: 0x7B9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_121_tlut_wheel_3: + symbol: gKartToad121TlutWheel3 + type: texture + offset: 0x7BA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_122_tlut_wheel_0: + symbol: gKartToad122TlutWheel0 + type: texture + offset: 0x7BAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_122_tlut_wheel_1: + symbol: gKartToad122TlutWheel1 + type: texture + offset: 0x7BB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_122_tlut_wheel_2: + symbol: gKartToad122TlutWheel2 + type: texture + offset: 0x7BBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_122_tlut_wheel_3: + symbol: gKartToad122TlutWheel3 + type: texture + offset: 0x7BC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_123_tlut_wheel_0: + symbol: gKartToad123TlutWheel0 + type: texture + offset: 0x7BCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_123_tlut_wheel_1: + symbol: gKartToad123TlutWheel1 + type: texture + offset: 0x7BD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_123_tlut_wheel_2: + symbol: gKartToad123TlutWheel2 + type: texture + offset: 0x7BDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_123_tlut_wheel_3: + symbol: gKartToad123TlutWheel3 + type: texture + offset: 0x7BE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_124_tlut_wheel_0: + symbol: gKartToad124TlutWheel0 + type: texture + offset: 0x7BEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_124_tlut_wheel_1: + symbol: gKartToad124TlutWheel1 + type: texture + offset: 0x7BF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_124_tlut_wheel_2: + symbol: gKartToad124TlutWheel2 + type: texture + offset: 0x7BFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_124_tlut_wheel_3: + symbol: gKartToad124TlutWheel3 + type: texture + offset: 0x7C068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_125_tlut_wheel_0: + symbol: gKartToad125TlutWheel0 + type: texture + offset: 0x7C0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_125_tlut_wheel_1: + symbol: gKartToad125TlutWheel1 + type: texture + offset: 0x7C168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_125_tlut_wheel_2: + symbol: gKartToad125TlutWheel2 + type: texture + offset: 0x7C1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_125_tlut_wheel_3: + symbol: gKartToad125TlutWheel3 + type: texture + offset: 0x7C268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_126_tlut_wheel_0: + symbol: gKartToad126TlutWheel0 + type: texture + offset: 0x7C2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_126_tlut_wheel_1: + symbol: gKartToad126TlutWheel1 + type: texture + offset: 0x7C368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_126_tlut_wheel_2: + symbol: gKartToad126TlutWheel2 + type: texture + offset: 0x7C3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_126_tlut_wheel_3: + symbol: gKartToad126TlutWheel3 + type: texture + offset: 0x7C468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_127_tlut_wheel_0: + symbol: gKartToad127TlutWheel0 + type: texture + offset: 0x7C4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_127_tlut_wheel_1: + symbol: gKartToad127TlutWheel1 + type: texture + offset: 0x7C568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_127_tlut_wheel_2: + symbol: gKartToad127TlutWheel2 + type: texture + offset: 0x7C5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_127_tlut_wheel_3: + symbol: gKartToad127TlutWheel3 + type: texture + offset: 0x7C668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_128_tlut_wheel_0: + symbol: gKartToad128TlutWheel0 + type: texture + offset: 0x7C6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_128_tlut_wheel_1: + symbol: gKartToad128TlutWheel1 + type: texture + offset: 0x7C768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_128_tlut_wheel_2: + symbol: gKartToad128TlutWheel2 + type: texture + offset: 0x7C7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_128_tlut_wheel_3: + symbol: gKartToad128TlutWheel3 + type: texture + offset: 0x7C868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_129_tlut_wheel_0: + symbol: gKartToad129TlutWheel0 + type: texture + offset: 0x7C8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_129_tlut_wheel_1: + symbol: gKartToad129TlutWheel1 + type: texture + offset: 0x7C968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_129_tlut_wheel_2: + symbol: gKartToad129TlutWheel2 + type: texture + offset: 0x7C9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_129_tlut_wheel_3: + symbol: gKartToad129TlutWheel3 + type: texture + offset: 0x7CA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_130_tlut_wheel_0: + symbol: gKartToad130TlutWheel0 + type: texture + offset: 0x7CAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_130_tlut_wheel_1: + symbol: gKartToad130TlutWheel1 + type: texture + offset: 0x7CB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_130_tlut_wheel_2: + symbol: gKartToad130TlutWheel2 + type: texture + offset: 0x7CBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_130_tlut_wheel_3: + symbol: gKartToad130TlutWheel3 + type: texture + offset: 0x7CC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_131_tlut_wheel_0: + symbol: gKartToad131TlutWheel0 + type: texture + offset: 0x7CCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_131_tlut_wheel_1: + symbol: gKartToad131TlutWheel1 + type: texture + offset: 0x7CD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_131_tlut_wheel_2: + symbol: gKartToad131TlutWheel2 + type: texture + offset: 0x7CDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_131_tlut_wheel_3: + symbol: gKartToad131TlutWheel3 + type: texture + offset: 0x7CE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_132_tlut_wheel_0: + symbol: gKartToad132TlutWheel0 + type: texture + offset: 0x7CEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_132_tlut_wheel_1: + symbol: gKartToad132TlutWheel1 + type: texture + offset: 0x7CF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_132_tlut_wheel_2: + symbol: gKartToad132TlutWheel2 + type: texture + offset: 0x7CFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_132_tlut_wheel_3: + symbol: gKartToad132TlutWheel3 + type: texture + offset: 0x7D068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_133_tlut_wheel_0: + symbol: gKartToad133TlutWheel0 + type: texture + offset: 0x7D0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_133_tlut_wheel_1: + symbol: gKartToad133TlutWheel1 + type: texture + offset: 0x7D168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_133_tlut_wheel_2: + symbol: gKartToad133TlutWheel2 + type: texture + offset: 0x7D1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_133_tlut_wheel_3: + symbol: gKartToad133TlutWheel3 + type: texture + offset: 0x7D268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_134_tlut_wheel_0: + symbol: gKartToad134TlutWheel0 + type: texture + offset: 0x7D2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_134_tlut_wheel_1: + symbol: gKartToad134TlutWheel1 + type: texture + offset: 0x7D368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_134_tlut_wheel_2: + symbol: gKartToad134TlutWheel2 + type: texture + offset: 0x7D3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_134_tlut_wheel_3: + symbol: gKartToad134TlutWheel3 + type: texture + offset: 0x7D468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_135_tlut_wheel_0: + symbol: gKartToad135TlutWheel0 + type: texture + offset: 0x7D4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_135_tlut_wheel_1: + symbol: gKartToad135TlutWheel1 + type: texture + offset: 0x7D568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_135_tlut_wheel_2: + symbol: gKartToad135TlutWheel2 + type: texture + offset: 0x7D5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_135_tlut_wheel_3: + symbol: gKartToad135TlutWheel3 + type: texture + offset: 0x7D668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_136_tlut_wheel_0: + symbol: gKartToad136TlutWheel0 + type: texture + offset: 0x7D6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_136_tlut_wheel_1: + symbol: gKartToad136TlutWheel1 + type: texture + offset: 0x7D768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_136_tlut_wheel_2: + symbol: gKartToad136TlutWheel2 + type: texture + offset: 0x7D7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_136_tlut_wheel_3: + symbol: gKartToad136TlutWheel3 + type: texture + offset: 0x7D868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_137_tlut_wheel_0: + symbol: gKartToad137TlutWheel0 + type: texture + offset: 0x7D8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_137_tlut_wheel_1: + symbol: gKartToad137TlutWheel1 + type: texture + offset: 0x7D968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_137_tlut_wheel_2: + symbol: gKartToad137TlutWheel2 + type: texture + offset: 0x7D9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_137_tlut_wheel_3: + symbol: gKartToad137TlutWheel3 + type: texture + offset: 0x7DA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_138_tlut_wheel_0: + symbol: gKartToad138TlutWheel0 + type: texture + offset: 0x7DAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_138_tlut_wheel_1: + symbol: gKartToad138TlutWheel1 + type: texture + offset: 0x7DB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_138_tlut_wheel_2: + symbol: gKartToad138TlutWheel2 + type: texture + offset: 0x7DBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_138_tlut_wheel_3: + symbol: gKartToad138TlutWheel3 + type: texture + offset: 0x7DC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_139_tlut_wheel_0: + symbol: gKartToad139TlutWheel0 + type: texture + offset: 0x7DCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_139_tlut_wheel_1: + symbol: gKartToad139TlutWheel1 + type: texture + offset: 0x7DD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_139_tlut_wheel_2: + symbol: gKartToad139TlutWheel2 + type: texture + offset: 0x7DDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_139_tlut_wheel_3: + symbol: gKartToad139TlutWheel3 + type: texture + offset: 0x7DE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_140_tlut_wheel_0: + symbol: gKartToad140TlutWheel0 + type: texture + offset: 0x7DEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_140_tlut_wheel_1: + symbol: gKartToad140TlutWheel1 + type: texture + offset: 0x7DF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_140_tlut_wheel_2: + symbol: gKartToad140TlutWheel2 + type: texture + offset: 0x7DFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_140_tlut_wheel_3: + symbol: gKartToad140TlutWheel3 + type: texture + offset: 0x7E068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_141_tlut_wheel_0: + symbol: gKartToad141TlutWheel0 + type: texture + offset: 0x7E0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_141_tlut_wheel_1: + symbol: gKartToad141TlutWheel1 + type: texture + offset: 0x7E168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_141_tlut_wheel_2: + symbol: gKartToad141TlutWheel2 + type: texture + offset: 0x7E1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_141_tlut_wheel_3: + symbol: gKartToad141TlutWheel3 + type: texture + offset: 0x7E268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_142_tlut_wheel_0: + symbol: gKartToad142TlutWheel0 + type: texture + offset: 0x7E2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_142_tlut_wheel_1: + symbol: gKartToad142TlutWheel1 + type: texture + offset: 0x7E368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_142_tlut_wheel_2: + symbol: gKartToad142TlutWheel2 + type: texture + offset: 0x7E3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_142_tlut_wheel_3: + symbol: gKartToad142TlutWheel3 + type: texture + offset: 0x7E468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_143_tlut_wheel_0: + symbol: gKartToad143TlutWheel0 + type: texture + offset: 0x7E4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_143_tlut_wheel_1: + symbol: gKartToad143TlutWheel1 + type: texture + offset: 0x7E568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_143_tlut_wheel_2: + symbol: gKartToad143TlutWheel2 + type: texture + offset: 0x7E5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_143_tlut_wheel_3: + symbol: gKartToad143TlutWheel3 + type: texture + offset: 0x7E668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_144_tlut_wheel_0: + symbol: gKartToad144TlutWheel0 + type: texture + offset: 0x7E6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_144_tlut_wheel_1: + symbol: gKartToad144TlutWheel1 + type: texture + offset: 0x7E768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_144_tlut_wheel_2: + symbol: gKartToad144TlutWheel2 + type: texture + offset: 0x7E7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_144_tlut_wheel_3: + symbol: gKartToad144TlutWheel3 + type: texture + offset: 0x7E868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_145_tlut_wheel_0: + symbol: gKartToad145TlutWheel0 + type: texture + offset: 0x7E8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_145_tlut_wheel_1: + symbol: gKartToad145TlutWheel1 + type: texture + offset: 0x7E968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_145_tlut_wheel_2: + symbol: gKartToad145TlutWheel2 + type: texture + offset: 0x7E9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_145_tlut_wheel_3: + symbol: gKartToad145TlutWheel3 + type: texture + offset: 0x7EA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_146_tlut_wheel_0: + symbol: gKartToad146TlutWheel0 + type: texture + offset: 0x7EAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_146_tlut_wheel_1: + symbol: gKartToad146TlutWheel1 + type: texture + offset: 0x7EB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_146_tlut_wheel_2: + symbol: gKartToad146TlutWheel2 + type: texture + offset: 0x7EBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_146_tlut_wheel_3: + symbol: gKartToad146TlutWheel3 + type: texture + offset: 0x7EC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_147_tlut_wheel_0: + symbol: gKartToad147TlutWheel0 + type: texture + offset: 0x7ECE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_147_tlut_wheel_1: + symbol: gKartToad147TlutWheel1 + type: texture + offset: 0x7ED68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_147_tlut_wheel_2: + symbol: gKartToad147TlutWheel2 + type: texture + offset: 0x7EDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_147_tlut_wheel_3: + symbol: gKartToad147TlutWheel3 + type: texture + offset: 0x7EE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_148_tlut_wheel_0: + symbol: gKartToad148TlutWheel0 + type: texture + offset: 0x7EEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_148_tlut_wheel_1: + symbol: gKartToad148TlutWheel1 + type: texture + offset: 0x7EF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_148_tlut_wheel_2: + symbol: gKartToad148TlutWheel2 + type: texture + offset: 0x7EFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_148_tlut_wheel_3: + symbol: gKartToad148TlutWheel3 + type: texture + offset: 0x7F068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_149_tlut_wheel_0: + symbol: gKartToad149TlutWheel0 + type: texture + offset: 0x7F0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_149_tlut_wheel_1: + symbol: gKartToad149TlutWheel1 + type: texture + offset: 0x7F168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_149_tlut_wheel_2: + symbol: gKartToad149TlutWheel2 + type: texture + offset: 0x7F1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_149_tlut_wheel_3: + symbol: gKartToad149TlutWheel3 + type: texture + offset: 0x7F268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_150_tlut_wheel_0: + symbol: gKartToad150TlutWheel0 + type: texture + offset: 0x7F2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_150_tlut_wheel_1: + symbol: gKartToad150TlutWheel1 + type: texture + offset: 0x7F368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_150_tlut_wheel_2: + symbol: gKartToad150TlutWheel2 + type: texture + offset: 0x7F3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_150_tlut_wheel_3: + symbol: gKartToad150TlutWheel3 + type: texture + offset: 0x7F468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_151_tlut_wheel_0: + symbol: gKartToad151TlutWheel0 + type: texture + offset: 0x7F4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_151_tlut_wheel_1: + symbol: gKartToad151TlutWheel1 + type: texture + offset: 0x7F568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_151_tlut_wheel_2: + symbol: gKartToad151TlutWheel2 + type: texture + offset: 0x7F5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_151_tlut_wheel_3: + symbol: gKartToad151TlutWheel3 + type: texture + offset: 0x7F668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_152_tlut_wheel_0: + symbol: gKartToad152TlutWheel0 + type: texture + offset: 0x7F6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_152_tlut_wheel_1: + symbol: gKartToad152TlutWheel1 + type: texture + offset: 0x7F768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_152_tlut_wheel_2: + symbol: gKartToad152TlutWheel2 + type: texture + offset: 0x7F7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_152_tlut_wheel_3: + symbol: gKartToad152TlutWheel3 + type: texture + offset: 0x7F868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_153_tlut_wheel_0: + symbol: gKartToad153TlutWheel0 + type: texture + offset: 0x7F8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_153_tlut_wheel_1: + symbol: gKartToad153TlutWheel1 + type: texture + offset: 0x7F968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_153_tlut_wheel_2: + symbol: gKartToad153TlutWheel2 + type: texture + offset: 0x7F9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_153_tlut_wheel_3: + symbol: gKartToad153TlutWheel3 + type: texture + offset: 0x7FA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_154_tlut_wheel_0: + symbol: gKartToad154TlutWheel0 + type: texture + offset: 0x7FAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_154_tlut_wheel_1: + symbol: gKartToad154TlutWheel1 + type: texture + offset: 0x7FB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_154_tlut_wheel_2: + symbol: gKartToad154TlutWheel2 + type: texture + offset: 0x7FBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_154_tlut_wheel_3: + symbol: gKartToad154TlutWheel3 + type: texture + offset: 0x7FC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_155_tlut_wheel_0: + symbol: gKartToad155TlutWheel0 + type: texture + offset: 0x7FCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_155_tlut_wheel_1: + symbol: gKartToad155TlutWheel1 + type: texture + offset: 0x7FD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_155_tlut_wheel_2: + symbol: gKartToad155TlutWheel2 + type: texture + offset: 0x7FDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_155_tlut_wheel_3: + symbol: gKartToad155TlutWheel3 + type: texture + offset: 0x7FE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_156_tlut_wheel_0: + symbol: gKartToad156TlutWheel0 + type: texture + offset: 0x7FEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_156_tlut_wheel_1: + symbol: gKartToad156TlutWheel1 + type: texture + offset: 0x7FF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_156_tlut_wheel_2: + symbol: gKartToad156TlutWheel2 + type: texture + offset: 0x7FFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_156_tlut_wheel_3: + symbol: gKartToad156TlutWheel3 + type: texture + offset: 0x80068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_157_tlut_wheel_0: + symbol: gKartToad157TlutWheel0 + type: texture + offset: 0x800E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_157_tlut_wheel_1: + symbol: gKartToad157TlutWheel1 + type: texture + offset: 0x80168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_157_tlut_wheel_2: + symbol: gKartToad157TlutWheel2 + type: texture + offset: 0x801E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_157_tlut_wheel_3: + symbol: gKartToad157TlutWheel3 + type: texture + offset: 0x80268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_158_tlut_wheel_0: + symbol: gKartToad158TlutWheel0 + type: texture + offset: 0x802E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_158_tlut_wheel_1: + symbol: gKartToad158TlutWheel1 + type: texture + offset: 0x80368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_158_tlut_wheel_2: + symbol: gKartToad158TlutWheel2 + type: texture + offset: 0x803E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_158_tlut_wheel_3: + symbol: gKartToad158TlutWheel3 + type: texture + offset: 0x80468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_159_tlut_wheel_0: + symbol: gKartToad159TlutWheel0 + type: texture + offset: 0x804E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_159_tlut_wheel_1: + symbol: gKartToad159TlutWheel1 + type: texture + offset: 0x80568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_159_tlut_wheel_2: + symbol: gKartToad159TlutWheel2 + type: texture + offset: 0x805E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_159_tlut_wheel_3: + symbol: gKartToad159TlutWheel3 + type: texture + offset: 0x80668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_160_tlut_wheel_0: + symbol: gKartToad160TlutWheel0 + type: texture + offset: 0x806E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_160_tlut_wheel_1: + symbol: gKartToad160TlutWheel1 + type: texture + offset: 0x80768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_160_tlut_wheel_2: + symbol: gKartToad160TlutWheel2 + type: texture + offset: 0x807E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_160_tlut_wheel_3: + symbol: gKartToad160TlutWheel3 + type: texture + offset: 0x80868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_161_tlut_wheel_0: + symbol: gKartToad161TlutWheel0 + type: texture + offset: 0x808E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_161_tlut_wheel_1: + symbol: gKartToad161TlutWheel1 + type: texture + offset: 0x80968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_161_tlut_wheel_2: + symbol: gKartToad161TlutWheel2 + type: texture + offset: 0x809E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_161_tlut_wheel_3: + symbol: gKartToad161TlutWheel3 + type: texture + offset: 0x80A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_162_tlut_wheel_0: + symbol: gKartToad162TlutWheel0 + type: texture + offset: 0x80AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_162_tlut_wheel_1: + symbol: gKartToad162TlutWheel1 + type: texture + offset: 0x80B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_162_tlut_wheel_2: + symbol: gKartToad162TlutWheel2 + type: texture + offset: 0x80BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_162_tlut_wheel_3: + symbol: gKartToad162TlutWheel3 + type: texture + offset: 0x80C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_163_tlut_wheel_0: + symbol: gKartToad163TlutWheel0 + type: texture + offset: 0x80CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_163_tlut_wheel_1: + symbol: gKartToad163TlutWheel1 + type: texture + offset: 0x80D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_163_tlut_wheel_2: + symbol: gKartToad163TlutWheel2 + type: texture + offset: 0x80DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_163_tlut_wheel_3: + symbol: gKartToad163TlutWheel3 + type: texture + offset: 0x80E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_164_tlut_wheel_0: + symbol: gKartToad164TlutWheel0 + type: texture + offset: 0x80EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_164_tlut_wheel_1: + symbol: gKartToad164TlutWheel1 + type: texture + offset: 0x80F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_164_tlut_wheel_2: + symbol: gKartToad164TlutWheel2 + type: texture + offset: 0x80FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_164_tlut_wheel_3: + symbol: gKartToad164TlutWheel3 + type: texture + offset: 0x81068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_165_tlut_wheel_0: + symbol: gKartToad165TlutWheel0 + type: texture + offset: 0x810E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_165_tlut_wheel_1: + symbol: gKartToad165TlutWheel1 + type: texture + offset: 0x81168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_165_tlut_wheel_2: + symbol: gKartToad165TlutWheel2 + type: texture + offset: 0x811E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_165_tlut_wheel_3: + symbol: gKartToad165TlutWheel3 + type: texture + offset: 0x81268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_166_tlut_wheel_0: + symbol: gKartToad166TlutWheel0 + type: texture + offset: 0x812E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_166_tlut_wheel_1: + symbol: gKartToad166TlutWheel1 + type: texture + offset: 0x81368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_166_tlut_wheel_2: + symbol: gKartToad166TlutWheel2 + type: texture + offset: 0x813E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_166_tlut_wheel_3: + symbol: gKartToad166TlutWheel3 + type: texture + offset: 0x81468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_167_tlut_wheel_0: + symbol: gKartToad167TlutWheel0 + type: texture + offset: 0x814E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_167_tlut_wheel_1: + symbol: gKartToad167TlutWheel1 + type: texture + offset: 0x81568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_167_tlut_wheel_2: + symbol: gKartToad167TlutWheel2 + type: texture + offset: 0x815E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_167_tlut_wheel_3: + symbol: gKartToad167TlutWheel3 + type: texture + offset: 0x81668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_168_tlut_wheel_0: + symbol: gKartToad168TlutWheel0 + type: texture + offset: 0x816E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_168_tlut_wheel_1: + symbol: gKartToad168TlutWheel1 + type: texture + offset: 0x81768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_168_tlut_wheel_2: + symbol: gKartToad168TlutWheel2 + type: texture + offset: 0x817E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_168_tlut_wheel_3: + symbol: gKartToad168TlutWheel3 + type: texture + offset: 0x81868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_169_tlut_wheel_0: + symbol: gKartToad169TlutWheel0 + type: texture + offset: 0x818E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_169_tlut_wheel_1: + symbol: gKartToad169TlutWheel1 + type: texture + offset: 0x81968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_169_tlut_wheel_2: + symbol: gKartToad169TlutWheel2 + type: texture + offset: 0x819E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_169_tlut_wheel_3: + symbol: gKartToad169TlutWheel3 + type: texture + offset: 0x81A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_170_tlut_wheel_0: + symbol: gKartToad170TlutWheel0 + type: texture + offset: 0x81AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_170_tlut_wheel_1: + symbol: gKartToad170TlutWheel1 + type: texture + offset: 0x81B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_170_tlut_wheel_2: + symbol: gKartToad170TlutWheel2 + type: texture + offset: 0x81BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_170_tlut_wheel_3: + symbol: gKartToad170TlutWheel3 + type: texture + offset: 0x81C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_171_tlut_wheel_0: + symbol: gKartToad171TlutWheel0 + type: texture + offset: 0x81CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_171_tlut_wheel_1: + symbol: gKartToad171TlutWheel1 + type: texture + offset: 0x81D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_171_tlut_wheel_2: + symbol: gKartToad171TlutWheel2 + type: texture + offset: 0x81DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_171_tlut_wheel_3: + symbol: gKartToad171TlutWheel3 + type: texture + offset: 0x81E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_172_tlut_wheel_0: + symbol: gKartToad172TlutWheel0 + type: texture + offset: 0x81EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_172_tlut_wheel_1: + symbol: gKartToad172TlutWheel1 + type: texture + offset: 0x81F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_172_tlut_wheel_2: + symbol: gKartToad172TlutWheel2 + type: texture + offset: 0x81FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_172_tlut_wheel_3: + symbol: gKartToad172TlutWheel3 + type: texture + offset: 0x82068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_173_tlut_wheel_0: + symbol: gKartToad173TlutWheel0 + type: texture + offset: 0x820E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_173_tlut_wheel_1: + symbol: gKartToad173TlutWheel1 + type: texture + offset: 0x82168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_173_tlut_wheel_2: + symbol: gKartToad173TlutWheel2 + type: texture + offset: 0x821E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_173_tlut_wheel_3: + symbol: gKartToad173TlutWheel3 + type: texture + offset: 0x82268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_174_tlut_wheel_0: + symbol: gKartToad174TlutWheel0 + type: texture + offset: 0x822E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_174_tlut_wheel_1: + symbol: gKartToad174TlutWheel1 + type: texture + offset: 0x82368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_174_tlut_wheel_2: + symbol: gKartToad174TlutWheel2 + type: texture + offset: 0x823E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_174_tlut_wheel_3: + symbol: gKartToad174TlutWheel3 + type: texture + offset: 0x82468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_175_tlut_wheel_0: + symbol: gKartToad175TlutWheel0 + type: texture + offset: 0x824E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_175_tlut_wheel_1: + symbol: gKartToad175TlutWheel1 + type: texture + offset: 0x82568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_175_tlut_wheel_2: + symbol: gKartToad175TlutWheel2 + type: texture + offset: 0x825E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_175_tlut_wheel_3: + symbol: gKartToad175TlutWheel3 + type: texture + offset: 0x82668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_176_tlut_wheel_0: + symbol: gKartToad176TlutWheel0 + type: texture + offset: 0x826E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_176_tlut_wheel_1: + symbol: gKartToad176TlutWheel1 + type: texture + offset: 0x82768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_176_tlut_wheel_2: + symbol: gKartToad176TlutWheel2 + type: texture + offset: 0x827E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_176_tlut_wheel_3: + symbol: gKartToad176TlutWheel3 + type: texture + offset: 0x82868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_177_tlut_wheel_0: + symbol: gKartToad177TlutWheel0 + type: texture + offset: 0x828E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_177_tlut_wheel_1: + symbol: gKartToad177TlutWheel1 + type: texture + offset: 0x82968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_177_tlut_wheel_2: + symbol: gKartToad177TlutWheel2 + type: texture + offset: 0x829E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_177_tlut_wheel_3: + symbol: gKartToad177TlutWheel3 + type: texture + offset: 0x82A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_178_tlut_wheel_0: + symbol: gKartToad178TlutWheel0 + type: texture + offset: 0x82AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_178_tlut_wheel_1: + symbol: gKartToad178TlutWheel1 + type: texture + offset: 0x82B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_178_tlut_wheel_2: + symbol: gKartToad178TlutWheel2 + type: texture + offset: 0x82BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_178_tlut_wheel_3: + symbol: gKartToad178TlutWheel3 + type: texture + offset: 0x82C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_179_tlut_wheel_0: + symbol: gKartToad179TlutWheel0 + type: texture + offset: 0x82CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_179_tlut_wheel_1: + symbol: gKartToad179TlutWheel1 + type: texture + offset: 0x82D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_179_tlut_wheel_2: + symbol: gKartToad179TlutWheel2 + type: texture + offset: 0x82DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_179_tlut_wheel_3: + symbol: gKartToad179TlutWheel3 + type: texture + offset: 0x82E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_180_tlut_wheel_0: + symbol: gKartToad180TlutWheel0 + type: texture + offset: 0x82EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_180_tlut_wheel_1: + symbol: gKartToad180TlutWheel1 + type: texture + offset: 0x82F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_180_tlut_wheel_2: + symbol: gKartToad180TlutWheel2 + type: texture + offset: 0x82FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_180_tlut_wheel_3: + symbol: gKartToad180TlutWheel3 + type: texture + offset: 0x83068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_181_tlut_wheel_0: + symbol: gKartToad181TlutWheel0 + type: texture + offset: 0x830E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_181_tlut_wheel_1: + symbol: gKartToad181TlutWheel1 + type: texture + offset: 0x83168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_181_tlut_wheel_2: + symbol: gKartToad181TlutWheel2 + type: texture + offset: 0x831E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_181_tlut_wheel_3: + symbol: gKartToad181TlutWheel3 + type: texture + offset: 0x83268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_182_tlut_wheel_0: + symbol: gKartToad182TlutWheel0 + type: texture + offset: 0x832E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_182_tlut_wheel_1: + symbol: gKartToad182TlutWheel1 + type: texture + offset: 0x83368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_182_tlut_wheel_2: + symbol: gKartToad182TlutWheel2 + type: texture + offset: 0x833E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_182_tlut_wheel_3: + symbol: gKartToad182TlutWheel3 + type: texture + offset: 0x83468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_183_tlut_wheel_0: + symbol: gKartToad183TlutWheel0 + type: texture + offset: 0x834E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_183_tlut_wheel_1: + symbol: gKartToad183TlutWheel1 + type: texture + offset: 0x83568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_183_tlut_wheel_2: + symbol: gKartToad183TlutWheel2 + type: texture + offset: 0x835E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_183_tlut_wheel_3: + symbol: gKartToad183TlutWheel3 + type: texture + offset: 0x83668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_184_tlut_wheel_0: + symbol: gKartToad184TlutWheel0 + type: texture + offset: 0x836E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_184_tlut_wheel_1: + symbol: gKartToad184TlutWheel1 + type: texture + offset: 0x83768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_184_tlut_wheel_2: + symbol: gKartToad184TlutWheel2 + type: texture + offset: 0x837E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_184_tlut_wheel_3: + symbol: gKartToad184TlutWheel3 + type: texture + offset: 0x83868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_185_tlut_wheel_0: + symbol: gKartToad185TlutWheel0 + type: texture + offset: 0x838E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_185_tlut_wheel_1: + symbol: gKartToad185TlutWheel1 + type: texture + offset: 0x83968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_185_tlut_wheel_2: + symbol: gKartToad185TlutWheel2 + type: texture + offset: 0x839E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_185_tlut_wheel_3: + symbol: gKartToad185TlutWheel3 + type: texture + offset: 0x83A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_186_tlut_wheel_0: + symbol: gKartToad186TlutWheel0 + type: texture + offset: 0x83AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_186_tlut_wheel_1: + symbol: gKartToad186TlutWheel1 + type: texture + offset: 0x83B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_186_tlut_wheel_2: + symbol: gKartToad186TlutWheel2 + type: texture + offset: 0x83BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_186_tlut_wheel_3: + symbol: gKartToad186TlutWheel3 + type: texture + offset: 0x83C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_187_tlut_wheel_0: + symbol: gKartToad187TlutWheel0 + type: texture + offset: 0x83CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_187_tlut_wheel_1: + symbol: gKartToad187TlutWheel1 + type: texture + offset: 0x83D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_187_tlut_wheel_2: + symbol: gKartToad187TlutWheel2 + type: texture + offset: 0x83DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_187_tlut_wheel_3: + symbol: gKartToad187TlutWheel3 + type: texture + offset: 0x83E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_188_tlut_wheel_0: + symbol: gKartToad188TlutWheel0 + type: texture + offset: 0x83EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_188_tlut_wheel_1: + symbol: gKartToad188TlutWheel1 + type: texture + offset: 0x83F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_188_tlut_wheel_2: + symbol: gKartToad188TlutWheel2 + type: texture + offset: 0x83FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_188_tlut_wheel_3: + symbol: gKartToad188TlutWheel3 + type: texture + offset: 0x84068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_189_tlut_wheel_0: + symbol: gKartToad189TlutWheel0 + type: texture + offset: 0x840E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_189_tlut_wheel_1: + symbol: gKartToad189TlutWheel1 + type: texture + offset: 0x84168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_189_tlut_wheel_2: + symbol: gKartToad189TlutWheel2 + type: texture + offset: 0x841E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_189_tlut_wheel_3: + symbol: gKartToad189TlutWheel3 + type: texture + offset: 0x84268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_190_tlut_wheel_0: + symbol: gKartToad190TlutWheel0 + type: texture + offset: 0x842E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_190_tlut_wheel_1: + symbol: gKartToad190TlutWheel1 + type: texture + offset: 0x84368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_190_tlut_wheel_2: + symbol: gKartToad190TlutWheel2 + type: texture + offset: 0x843E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_190_tlut_wheel_3: + symbol: gKartToad190TlutWheel3 + type: texture + offset: 0x84468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_191_tlut_wheel_0: + symbol: gKartToad191TlutWheel0 + type: texture + offset: 0x844E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_191_tlut_wheel_1: + symbol: gKartToad191TlutWheel1 + type: texture + offset: 0x84568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_191_tlut_wheel_2: + symbol: gKartToad191TlutWheel2 + type: texture + offset: 0x845E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_191_tlut_wheel_3: + symbol: gKartToad191TlutWheel3 + type: texture + offset: 0x84668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_192_tlut_wheel_0: + symbol: gKartToad192TlutWheel0 + type: texture + offset: 0x846E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_192_tlut_wheel_1: + symbol: gKartToad192TlutWheel1 + type: texture + offset: 0x84768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_192_tlut_wheel_2: + symbol: gKartToad192TlutWheel2 + type: texture + offset: 0x847E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_192_tlut_wheel_3: + symbol: gKartToad192TlutWheel3 + type: texture + offset: 0x84868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_193_tlut_wheel_0: + symbol: gKartToad193TlutWheel0 + type: texture + offset: 0x848E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_193_tlut_wheel_1: + symbol: gKartToad193TlutWheel1 + type: texture + offset: 0x84968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_193_tlut_wheel_2: + symbol: gKartToad193TlutWheel2 + type: texture + offset: 0x849E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_193_tlut_wheel_3: + symbol: gKartToad193TlutWheel3 + type: texture + offset: 0x84A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_194_tlut_wheel_0: + symbol: gKartToad194TlutWheel0 + type: texture + offset: 0x84AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_194_tlut_wheel_1: + symbol: gKartToad194TlutWheel1 + type: texture + offset: 0x84B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_194_tlut_wheel_2: + symbol: gKartToad194TlutWheel2 + type: texture + offset: 0x84BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_194_tlut_wheel_3: + symbol: gKartToad194TlutWheel3 + type: texture + offset: 0x84C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_195_tlut_wheel_0: + symbol: gKartToad195TlutWheel0 + type: texture + offset: 0x84CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_195_tlut_wheel_1: + symbol: gKartToad195TlutWheel1 + type: texture + offset: 0x84D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_195_tlut_wheel_2: + symbol: gKartToad195TlutWheel2 + type: texture + offset: 0x84DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_195_tlut_wheel_3: + symbol: gKartToad195TlutWheel3 + type: texture + offset: 0x84E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_196_tlut_wheel_0: + symbol: gKartToad196TlutWheel0 + type: texture + offset: 0x84EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_196_tlut_wheel_1: + symbol: gKartToad196TlutWheel1 + type: texture + offset: 0x84F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_196_tlut_wheel_2: + symbol: gKartToad196TlutWheel2 + type: texture + offset: 0x84FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_196_tlut_wheel_3: + symbol: gKartToad196TlutWheel3 + type: texture + offset: 0x85068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_197_tlut_wheel_0: + symbol: gKartToad197TlutWheel0 + type: texture + offset: 0x850E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_197_tlut_wheel_1: + symbol: gKartToad197TlutWheel1 + type: texture + offset: 0x85168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_197_tlut_wheel_2: + symbol: gKartToad197TlutWheel2 + type: texture + offset: 0x851E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_197_tlut_wheel_3: + symbol: gKartToad197TlutWheel3 + type: texture + offset: 0x85268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_198_tlut_wheel_0: + symbol: gKartToad198TlutWheel0 + type: texture + offset: 0x852E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_198_tlut_wheel_1: + symbol: gKartToad198TlutWheel1 + type: texture + offset: 0x85368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_198_tlut_wheel_2: + symbol: gKartToad198TlutWheel2 + type: texture + offset: 0x853E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_198_tlut_wheel_3: + symbol: gKartToad198TlutWheel3 + type: texture + offset: 0x85468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_199_tlut_wheel_0: + symbol: gKartToad199TlutWheel0 + type: texture + offset: 0x854E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_199_tlut_wheel_1: + symbol: gKartToad199TlutWheel1 + type: texture + offset: 0x85568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_199_tlut_wheel_2: + symbol: gKartToad199TlutWheel2 + type: texture + offset: 0x855E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_199_tlut_wheel_3: + symbol: gKartToad199TlutWheel3 + type: texture + offset: 0x85668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_200_tlut_wheel_0: + symbol: gKartToad200TlutWheel0 + type: texture + offset: 0x856E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_200_tlut_wheel_1: + symbol: gKartToad200TlutWheel1 + type: texture + offset: 0x85768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_200_tlut_wheel_2: + symbol: gKartToad200TlutWheel2 + type: texture + offset: 0x857E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_200_tlut_wheel_3: + symbol: gKartToad200TlutWheel3 + type: texture + offset: 0x85868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_201_tlut_wheel_0: + symbol: gKartToad201TlutWheel0 + type: texture + offset: 0x858E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_201_tlut_wheel_1: + symbol: gKartToad201TlutWheel1 + type: texture + offset: 0x85968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_201_tlut_wheel_2: + symbol: gKartToad201TlutWheel2 + type: texture + offset: 0x859E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_201_tlut_wheel_3: + symbol: gKartToad201TlutWheel3 + type: texture + offset: 0x85A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_202_tlut_wheel_0: + symbol: gKartToad202TlutWheel0 + type: texture + offset: 0x85AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_202_tlut_wheel_1: + symbol: gKartToad202TlutWheel1 + type: texture + offset: 0x85B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_202_tlut_wheel_2: + symbol: gKartToad202TlutWheel2 + type: texture + offset: 0x85BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_202_tlut_wheel_3: + symbol: gKartToad202TlutWheel3 + type: texture + offset: 0x85C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_203_tlut_wheel_0: + symbol: gKartToad203TlutWheel0 + type: texture + offset: 0x85CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_203_tlut_wheel_1: + symbol: gKartToad203TlutWheel1 + type: texture + offset: 0x85D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_203_tlut_wheel_2: + symbol: gKartToad203TlutWheel2 + type: texture + offset: 0x85DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_203_tlut_wheel_3: + symbol: gKartToad203TlutWheel3 + type: texture + offset: 0x85E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_204_tlut_wheel_0: + symbol: gKartToad204TlutWheel0 + type: texture + offset: 0x85EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_204_tlut_wheel_1: + symbol: gKartToad204TlutWheel1 + type: texture + offset: 0x85F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_204_tlut_wheel_2: + symbol: gKartToad204TlutWheel2 + type: texture + offset: 0x85FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_204_tlut_wheel_3: + symbol: gKartToad204TlutWheel3 + type: texture + offset: 0x86068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_205_tlut_wheel_0: + symbol: gKartToad205TlutWheel0 + type: texture + offset: 0x860E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_205_tlut_wheel_1: + symbol: gKartToad205TlutWheel1 + type: texture + offset: 0x86168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_205_tlut_wheel_2: + symbol: gKartToad205TlutWheel2 + type: texture + offset: 0x861E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_205_tlut_wheel_3: + symbol: gKartToad205TlutWheel3 + type: texture + offset: 0x86268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_206_tlut_wheel_0: + symbol: gKartToad206TlutWheel0 + type: texture + offset: 0x862E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_206_tlut_wheel_1: + symbol: gKartToad206TlutWheel1 + type: texture + offset: 0x86368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_206_tlut_wheel_2: + symbol: gKartToad206TlutWheel2 + type: texture + offset: 0x863E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_206_tlut_wheel_3: + symbol: gKartToad206TlutWheel3 + type: texture + offset: 0x86468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_207_tlut_wheel_0: + symbol: gKartToad207TlutWheel0 + type: texture + offset: 0x864E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_207_tlut_wheel_1: + symbol: gKartToad207TlutWheel1 + type: texture + offset: 0x86568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_207_tlut_wheel_2: + symbol: gKartToad207TlutWheel2 + type: texture + offset: 0x865E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_207_tlut_wheel_3: + symbol: gKartToad207TlutWheel3 + type: texture + offset: 0x86668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_208_tlut_wheel_0: + symbol: gKartToad208TlutWheel0 + type: texture + offset: 0x866E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_208_tlut_wheel_1: + symbol: gKartToad208TlutWheel1 + type: texture + offset: 0x86768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_208_tlut_wheel_2: + symbol: gKartToad208TlutWheel2 + type: texture + offset: 0x867E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_208_tlut_wheel_3: + symbol: gKartToad208TlutWheel3 + type: texture + offset: 0x86868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_209_tlut_wheel_0: + symbol: gKartToad209TlutWheel0 + type: texture + offset: 0x868E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_209_tlut_wheel_1: + symbol: gKartToad209TlutWheel1 + type: texture + offset: 0x86968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_209_tlut_wheel_2: + symbol: gKartToad209TlutWheel2 + type: texture + offset: 0x869E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_209_tlut_wheel_3: + symbol: gKartToad209TlutWheel3 + type: texture + offset: 0x86A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_210_tlut_wheel_0: + symbol: gKartToad210TlutWheel0 + type: texture + offset: 0x86AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_210_tlut_wheel_1: + symbol: gKartToad210TlutWheel1 + type: texture + offset: 0x86B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_210_tlut_wheel_2: + symbol: gKartToad210TlutWheel2 + type: texture + offset: 0x86BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_210_tlut_wheel_3: + symbol: gKartToad210TlutWheel3 + type: texture + offset: 0x86C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_211_tlut_wheel_0: + symbol: gKartToad211TlutWheel0 + type: texture + offset: 0x86CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_211_tlut_wheel_1: + symbol: gKartToad211TlutWheel1 + type: texture + offset: 0x86D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_211_tlut_wheel_2: + symbol: gKartToad211TlutWheel2 + type: texture + offset: 0x86DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_211_tlut_wheel_3: + symbol: gKartToad211TlutWheel3 + type: texture + offset: 0x86E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_212_tlut_wheel_0: + symbol: gKartToad212TlutWheel0 + type: texture + offset: 0x86EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_212_tlut_wheel_1: + symbol: gKartToad212TlutWheel1 + type: texture + offset: 0x86F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_212_tlut_wheel_2: + symbol: gKartToad212TlutWheel2 + type: texture + offset: 0x86FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_212_tlut_wheel_3: + symbol: gKartToad212TlutWheel3 + type: texture + offset: 0x87068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_213_tlut_wheel_0: + symbol: gKartToad213TlutWheel0 + type: texture + offset: 0x870E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_213_tlut_wheel_1: + symbol: gKartToad213TlutWheel1 + type: texture + offset: 0x87168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_213_tlut_wheel_2: + symbol: gKartToad213TlutWheel2 + type: texture + offset: 0x871E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_213_tlut_wheel_3: + symbol: gKartToad213TlutWheel3 + type: texture + offset: 0x87268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_214_tlut_wheel_0: + symbol: gKartToad214TlutWheel0 + type: texture + offset: 0x872E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_214_tlut_wheel_1: + symbol: gKartToad214TlutWheel1 + type: texture + offset: 0x87368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_214_tlut_wheel_2: + symbol: gKartToad214TlutWheel2 + type: texture + offset: 0x873E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_214_tlut_wheel_3: + symbol: gKartToad214TlutWheel3 + type: texture + offset: 0x87468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_215_tlut_wheel_0: + symbol: gKartToad215TlutWheel0 + type: texture + offset: 0x874E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_215_tlut_wheel_1: + symbol: gKartToad215TlutWheel1 + type: texture + offset: 0x87568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_215_tlut_wheel_2: + symbol: gKartToad215TlutWheel2 + type: texture + offset: 0x875E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_215_tlut_wheel_3: + symbol: gKartToad215TlutWheel3 + type: texture + offset: 0x87668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_216_tlut_wheel_0: + symbol: gKartToad216TlutWheel0 + type: texture + offset: 0x876E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_216_tlut_wheel_1: + symbol: gKartToad216TlutWheel1 + type: texture + offset: 0x87768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_216_tlut_wheel_2: + symbol: gKartToad216TlutWheel2 + type: texture + offset: 0x877E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_216_tlut_wheel_3: + symbol: gKartToad216TlutWheel3 + type: texture + offset: 0x87868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_217_tlut_wheel_0: + symbol: gKartToad217TlutWheel0 + type: texture + offset: 0x878E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_217_tlut_wheel_1: + symbol: gKartToad217TlutWheel1 + type: texture + offset: 0x87968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_217_tlut_wheel_2: + symbol: gKartToad217TlutWheel2 + type: texture + offset: 0x879E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_217_tlut_wheel_3: + symbol: gKartToad217TlutWheel3 + type: texture + offset: 0x87A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_218_tlut_wheel_0: + symbol: gKartToad218TlutWheel0 + type: texture + offset: 0x87AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_218_tlut_wheel_1: + symbol: gKartToad218TlutWheel1 + type: texture + offset: 0x87B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_218_tlut_wheel_2: + symbol: gKartToad218TlutWheel2 + type: texture + offset: 0x87BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_218_tlut_wheel_3: + symbol: gKartToad218TlutWheel3 + type: texture + offset: 0x87C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_219_tlut_wheel_0: + symbol: gKartToad219TlutWheel0 + type: texture + offset: 0x87CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_219_tlut_wheel_1: + symbol: gKartToad219TlutWheel1 + type: texture + offset: 0x87D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_219_tlut_wheel_2: + symbol: gKartToad219TlutWheel2 + type: texture + offset: 0x87DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_219_tlut_wheel_3: + symbol: gKartToad219TlutWheel3 + type: texture + offset: 0x87E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_220_tlut_wheel_0: + symbol: gKartToad220TlutWheel0 + type: texture + offset: 0x87EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_220_tlut_wheel_1: + symbol: gKartToad220TlutWheel1 + type: texture + offset: 0x87F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_220_tlut_wheel_2: + symbol: gKartToad220TlutWheel2 + type: texture + offset: 0x87FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_220_tlut_wheel_3: + symbol: gKartToad220TlutWheel3 + type: texture + offset: 0x88068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_221_tlut_wheel_0: + symbol: gKartToad221TlutWheel0 + type: texture + offset: 0x880E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_221_tlut_wheel_1: + symbol: gKartToad221TlutWheel1 + type: texture + offset: 0x88168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_221_tlut_wheel_2: + symbol: gKartToad221TlutWheel2 + type: texture + offset: 0x881E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_221_tlut_wheel_3: + symbol: gKartToad221TlutWheel3 + type: texture + offset: 0x88268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_222_tlut_wheel_0: + symbol: gKartToad222TlutWheel0 + type: texture + offset: 0x882E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_222_tlut_wheel_1: + symbol: gKartToad222TlutWheel1 + type: texture + offset: 0x88368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_222_tlut_wheel_2: + symbol: gKartToad222TlutWheel2 + type: texture + offset: 0x883E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_222_tlut_wheel_3: + symbol: gKartToad222TlutWheel3 + type: texture + offset: 0x88468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_223_tlut_wheel_0: + symbol: gKartToad223TlutWheel0 + type: texture + offset: 0x884E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_223_tlut_wheel_1: + symbol: gKartToad223TlutWheel1 + type: texture + offset: 0x88568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_223_tlut_wheel_2: + symbol: gKartToad223TlutWheel2 + type: texture + offset: 0x885E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_223_tlut_wheel_3: + symbol: gKartToad223TlutWheel3 + type: texture + offset: 0x88668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_224_tlut_wheel_0: + symbol: gKartToad224TlutWheel0 + type: texture + offset: 0x886E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_224_tlut_wheel_1: + symbol: gKartToad224TlutWheel1 + type: texture + offset: 0x88768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_224_tlut_wheel_2: + symbol: gKartToad224TlutWheel2 + type: texture + offset: 0x887E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_224_tlut_wheel_3: + symbol: gKartToad224TlutWheel3 + type: texture + offset: 0x88868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_225_tlut_wheel_0: + symbol: gKartToad225TlutWheel0 + type: texture + offset: 0x888E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_225_tlut_wheel_1: + symbol: gKartToad225TlutWheel1 + type: texture + offset: 0x88968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_225_tlut_wheel_2: + symbol: gKartToad225TlutWheel2 + type: texture + offset: 0x889E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_225_tlut_wheel_3: + symbol: gKartToad225TlutWheel3 + type: texture + offset: 0x88A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_226_tlut_wheel_0: + symbol: gKartToad226TlutWheel0 + type: texture + offset: 0x88AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_226_tlut_wheel_1: + symbol: gKartToad226TlutWheel1 + type: texture + offset: 0x88B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_226_tlut_wheel_2: + symbol: gKartToad226TlutWheel2 + type: texture + offset: 0x88BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_226_tlut_wheel_3: + symbol: gKartToad226TlutWheel3 + type: texture + offset: 0x88C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_227_tlut_wheel_0: + symbol: gKartToad227TlutWheel0 + type: texture + offset: 0x88CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_227_tlut_wheel_1: + symbol: gKartToad227TlutWheel1 + type: texture + offset: 0x88D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_227_tlut_wheel_2: + symbol: gKartToad227TlutWheel2 + type: texture + offset: 0x88DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_227_tlut_wheel_3: + symbol: gKartToad227TlutWheel3 + type: texture + offset: 0x88E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_228_tlut_wheel_0: + symbol: gKartToad228TlutWheel0 + type: texture + offset: 0x88EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_228_tlut_wheel_1: + symbol: gKartToad228TlutWheel1 + type: texture + offset: 0x88F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_228_tlut_wheel_2: + symbol: gKartToad228TlutWheel2 + type: texture + offset: 0x88FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_228_tlut_wheel_3: + symbol: gKartToad228TlutWheel3 + type: texture + offset: 0x89068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_229_tlut_wheel_0: + symbol: gKartToad229TlutWheel0 + type: texture + offset: 0x890E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_229_tlut_wheel_1: + symbol: gKartToad229TlutWheel1 + type: texture + offset: 0x89168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_229_tlut_wheel_2: + symbol: gKartToad229TlutWheel2 + type: texture + offset: 0x891E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_229_tlut_wheel_3: + symbol: gKartToad229TlutWheel3 + type: texture + offset: 0x89268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_230_tlut_wheel_0: + symbol: gKartToad230TlutWheel0 + type: texture + offset: 0x892E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_230_tlut_wheel_1: + symbol: gKartToad230TlutWheel1 + type: texture + offset: 0x89368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_230_tlut_wheel_2: + symbol: gKartToad230TlutWheel2 + type: texture + offset: 0x893E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_230_tlut_wheel_3: + symbol: gKartToad230TlutWheel3 + type: texture + offset: 0x89468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_231_tlut_wheel_0: + symbol: gKartToad231TlutWheel0 + type: texture + offset: 0x894E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_231_tlut_wheel_1: + symbol: gKartToad231TlutWheel1 + type: texture + offset: 0x89568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_231_tlut_wheel_2: + symbol: gKartToad231TlutWheel2 + type: texture + offset: 0x895E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_231_tlut_wheel_3: + symbol: gKartToad231TlutWheel3 + type: texture + offset: 0x89668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_232_tlut_wheel_0: + symbol: gKartToad232TlutWheel0 + type: texture + offset: 0x896E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_232_tlut_wheel_1: + symbol: gKartToad232TlutWheel1 + type: texture + offset: 0x89768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_232_tlut_wheel_2: + symbol: gKartToad232TlutWheel2 + type: texture + offset: 0x897E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_232_tlut_wheel_3: + symbol: gKartToad232TlutWheel3 + type: texture + offset: 0x89868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_233_tlut_wheel_0: + symbol: gKartToad233TlutWheel0 + type: texture + offset: 0x898E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_233_tlut_wheel_1: + symbol: gKartToad233TlutWheel1 + type: texture + offset: 0x89968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_233_tlut_wheel_2: + symbol: gKartToad233TlutWheel2 + type: texture + offset: 0x899E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_233_tlut_wheel_3: + symbol: gKartToad233TlutWheel3 + type: texture + offset: 0x89A68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_234_tlut_wheel_0: + symbol: gKartToad234TlutWheel0 + type: texture + offset: 0x89AE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_234_tlut_wheel_1: + symbol: gKartToad234TlutWheel1 + type: texture + offset: 0x89B68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_234_tlut_wheel_2: + symbol: gKartToad234TlutWheel2 + type: texture + offset: 0x89BE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_234_tlut_wheel_3: + symbol: gKartToad234TlutWheel3 + type: texture + offset: 0x89C68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_235_tlut_wheel_0: + symbol: gKartToad235TlutWheel0 + type: texture + offset: 0x89CE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_235_tlut_wheel_1: + symbol: gKartToad235TlutWheel1 + type: texture + offset: 0x89D68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_235_tlut_wheel_2: + symbol: gKartToad235TlutWheel2 + type: texture + offset: 0x89DE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_235_tlut_wheel_3: + symbol: gKartToad235TlutWheel3 + type: texture + offset: 0x89E68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_236_tlut_wheel_0: + symbol: gKartToad236TlutWheel0 + type: texture + offset: 0x89EE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_236_tlut_wheel_1: + symbol: gKartToad236TlutWheel1 + type: texture + offset: 0x89F68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_236_tlut_wheel_2: + symbol: gKartToad236TlutWheel2 + type: texture + offset: 0x89FE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_236_tlut_wheel_3: + symbol: gKartToad236TlutWheel3 + type: texture + offset: 0x8A068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_237_tlut_wheel_0: + symbol: gKartToad237TlutWheel0 + type: texture + offset: 0x8A0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_237_tlut_wheel_1: + symbol: gKartToad237TlutWheel1 + type: texture + offset: 0x8A168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_237_tlut_wheel_2: + symbol: gKartToad237TlutWheel2 + type: texture + offset: 0x8A1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_237_tlut_wheel_3: + symbol: gKartToad237TlutWheel3 + type: texture + offset: 0x8A268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_238_tlut_wheel_0: + symbol: gKartToad238TlutWheel0 + type: texture + offset: 0x8A2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_238_tlut_wheel_1: + symbol: gKartToad238TlutWheel1 + type: texture + offset: 0x8A368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_238_tlut_wheel_2: + symbol: gKartToad238TlutWheel2 + type: texture + offset: 0x8A3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_238_tlut_wheel_3: + symbol: gKartToad238TlutWheel3 + type: texture + offset: 0x8A468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_239_tlut_wheel_0: + symbol: gKartToad239TlutWheel0 + type: texture + offset: 0x8A4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_239_tlut_wheel_1: + symbol: gKartToad239TlutWheel1 + type: texture + offset: 0x8A568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_239_tlut_wheel_2: + symbol: gKartToad239TlutWheel2 + type: texture + offset: 0x8A5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_239_tlut_wheel_3: + symbol: gKartToad239TlutWheel3 + type: texture + offset: 0x8A668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_240_tlut_wheel_0: + symbol: gKartToad240TlutWheel0 + type: texture + offset: 0x8A6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_240_tlut_wheel_1: + symbol: gKartToad240TlutWheel1 + type: texture + offset: 0x8A768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_240_tlut_wheel_2: + symbol: gKartToad240TlutWheel2 + type: texture + offset: 0x8A7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_240_tlut_wheel_3: + symbol: gKartToad240TlutWheel3 + type: texture + offset: 0x8A868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_241_tlut_wheel_0: + symbol: gKartToad241TlutWheel0 + type: texture + offset: 0x8A8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_241_tlut_wheel_1: + symbol: gKartToad241TlutWheel1 + type: texture + offset: 0x8A968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_241_tlut_wheel_2: + symbol: gKartToad241TlutWheel2 + type: texture + offset: 0x8A9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_241_tlut_wheel_3: + symbol: gKartToad241TlutWheel3 + type: texture + offset: 0x8AA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_242_tlut_wheel_0: + symbol: gKartToad242TlutWheel0 + type: texture + offset: 0x8AAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_242_tlut_wheel_1: + symbol: gKartToad242TlutWheel1 + type: texture + offset: 0x8AB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_242_tlut_wheel_2: + symbol: gKartToad242TlutWheel2 + type: texture + offset: 0x8ABE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_242_tlut_wheel_3: + symbol: gKartToad242TlutWheel3 + type: texture + offset: 0x8AC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_243_tlut_wheel_0: + symbol: gKartToad243TlutWheel0 + type: texture + offset: 0x8ACE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_243_tlut_wheel_1: + symbol: gKartToad243TlutWheel1 + type: texture + offset: 0x8AD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_243_tlut_wheel_2: + symbol: gKartToad243TlutWheel2 + type: texture + offset: 0x8ADE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_243_tlut_wheel_3: + symbol: gKartToad243TlutWheel3 + type: texture + offset: 0x8AE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_244_tlut_wheel_0: + symbol: gKartToad244TlutWheel0 + type: texture + offset: 0x8AEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_244_tlut_wheel_1: + symbol: gKartToad244TlutWheel1 + type: texture + offset: 0x8AF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_244_tlut_wheel_2: + symbol: gKartToad244TlutWheel2 + type: texture + offset: 0x8AFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_244_tlut_wheel_3: + symbol: gKartToad244TlutWheel3 + type: texture + offset: 0x8B068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_245_tlut_wheel_0: + symbol: gKartToad245TlutWheel0 + type: texture + offset: 0x8B0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_245_tlut_wheel_1: + symbol: gKartToad245TlutWheel1 + type: texture + offset: 0x8B168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_245_tlut_wheel_2: + symbol: gKartToad245TlutWheel2 + type: texture + offset: 0x8B1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_245_tlut_wheel_3: + symbol: gKartToad245TlutWheel3 + type: texture + offset: 0x8B268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_246_tlut_wheel_0: + symbol: gKartToad246TlutWheel0 + type: texture + offset: 0x8B2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_246_tlut_wheel_1: + symbol: gKartToad246TlutWheel1 + type: texture + offset: 0x8B368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_246_tlut_wheel_2: + symbol: gKartToad246TlutWheel2 + type: texture + offset: 0x8B3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_246_tlut_wheel_3: + symbol: gKartToad246TlutWheel3 + type: texture + offset: 0x8B468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_247_tlut_wheel_0: + symbol: gKartToad247TlutWheel0 + type: texture + offset: 0x8B4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_247_tlut_wheel_1: + symbol: gKartToad247TlutWheel1 + type: texture + offset: 0x8B568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_247_tlut_wheel_2: + symbol: gKartToad247TlutWheel2 + type: texture + offset: 0x8B5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_247_tlut_wheel_3: + symbol: gKartToad247TlutWheel3 + type: texture + offset: 0x8B668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_248_tlut_wheel_0: + symbol: gKartToad248TlutWheel0 + type: texture + offset: 0x8B6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_248_tlut_wheel_1: + symbol: gKartToad248TlutWheel1 + type: texture + offset: 0x8B768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_248_tlut_wheel_2: + symbol: gKartToad248TlutWheel2 + type: texture + offset: 0x8B7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_248_tlut_wheel_3: + symbol: gKartToad248TlutWheel3 + type: texture + offset: 0x8B868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_249_tlut_wheel_0: + symbol: gKartToad249TlutWheel0 + type: texture + offset: 0x8B8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_249_tlut_wheel_1: + symbol: gKartToad249TlutWheel1 + type: texture + offset: 0x8B968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_249_tlut_wheel_2: + symbol: gKartToad249TlutWheel2 + type: texture + offset: 0x8B9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_249_tlut_wheel_3: + symbol: gKartToad249TlutWheel3 + type: texture + offset: 0x8BA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_250_tlut_wheel_0: + symbol: gKartToad250TlutWheel0 + type: texture + offset: 0x8BAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_250_tlut_wheel_1: + symbol: gKartToad250TlutWheel1 + type: texture + offset: 0x8BB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_250_tlut_wheel_2: + symbol: gKartToad250TlutWheel2 + type: texture + offset: 0x8BBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_250_tlut_wheel_3: + symbol: gKartToad250TlutWheel3 + type: texture + offset: 0x8BC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_251_tlut_wheel_0: + symbol: gKartToad251TlutWheel0 + type: texture + offset: 0x8BCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_251_tlut_wheel_1: + symbol: gKartToad251TlutWheel1 + type: texture + offset: 0x8BD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_251_tlut_wheel_2: + symbol: gKartToad251TlutWheel2 + type: texture + offset: 0x8BDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_251_tlut_wheel_3: + symbol: gKartToad251TlutWheel3 + type: texture + offset: 0x8BE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_252_tlut_wheel_0: + symbol: gKartToad252TlutWheel0 + type: texture + offset: 0x8BEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_252_tlut_wheel_1: + symbol: gKartToad252TlutWheel1 + type: texture + offset: 0x8BF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_252_tlut_wheel_2: + symbol: gKartToad252TlutWheel2 + type: texture + offset: 0x8BFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_252_tlut_wheel_3: + symbol: gKartToad252TlutWheel3 + type: texture + offset: 0x8C068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_253_tlut_wheel_0: + symbol: gKartToad253TlutWheel0 + type: texture + offset: 0x8C0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_253_tlut_wheel_1: + symbol: gKartToad253TlutWheel1 + type: texture + offset: 0x8C168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_253_tlut_wheel_2: + symbol: gKartToad253TlutWheel2 + type: texture + offset: 0x8C1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_253_tlut_wheel_3: + symbol: gKartToad253TlutWheel3 + type: texture + offset: 0x8C268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_254_tlut_wheel_0: + symbol: gKartToad254TlutWheel0 + type: texture + offset: 0x8C2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_254_tlut_wheel_1: + symbol: gKartToad254TlutWheel1 + type: texture + offset: 0x8C368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_254_tlut_wheel_2: + symbol: gKartToad254TlutWheel2 + type: texture + offset: 0x8C3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_254_tlut_wheel_3: + symbol: gKartToad254TlutWheel3 + type: texture + offset: 0x8C468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_255_tlut_wheel_0: + symbol: gKartToad255TlutWheel0 + type: texture + offset: 0x8C4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_255_tlut_wheel_1: + symbol: gKartToad255TlutWheel1 + type: texture + offset: 0x8C568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_255_tlut_wheel_2: + symbol: gKartToad255TlutWheel2 + type: texture + offset: 0x8C5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_255_tlut_wheel_3: + symbol: gKartToad255TlutWheel3 + type: texture + offset: 0x8C668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_256_tlut_wheel_0: + symbol: gKartToad256TlutWheel0 + type: texture + offset: 0x8C6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_256_tlut_wheel_1: + symbol: gKartToad256TlutWheel1 + type: texture + offset: 0x8C768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_256_tlut_wheel_2: + symbol: gKartToad256TlutWheel2 + type: texture + offset: 0x8C7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_256_tlut_wheel_3: + symbol: gKartToad256TlutWheel3 + type: texture + offset: 0x8C868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_257_tlut_wheel_0: + symbol: gKartToad257TlutWheel0 + type: texture + offset: 0x8C8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_257_tlut_wheel_1: + symbol: gKartToad257TlutWheel1 + type: texture + offset: 0x8C968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_257_tlut_wheel_2: + symbol: gKartToad257TlutWheel2 + type: texture + offset: 0x8C9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_257_tlut_wheel_3: + symbol: gKartToad257TlutWheel3 + type: texture + offset: 0x8CA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_258_tlut_wheel_0: + symbol: gKartToad258TlutWheel0 + type: texture + offset: 0x8CAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_258_tlut_wheel_1: + symbol: gKartToad258TlutWheel1 + type: texture + offset: 0x8CB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_258_tlut_wheel_2: + symbol: gKartToad258TlutWheel2 + type: texture + offset: 0x8CBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_258_tlut_wheel_3: + symbol: gKartToad258TlutWheel3 + type: texture + offset: 0x8CC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_259_tlut_wheel_0: + symbol: gKartToad259TlutWheel0 + type: texture + offset: 0x8CCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_259_tlut_wheel_1: + symbol: gKartToad259TlutWheel1 + type: texture + offset: 0x8CD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_259_tlut_wheel_2: + symbol: gKartToad259TlutWheel2 + type: texture + offset: 0x8CDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_259_tlut_wheel_3: + symbol: gKartToad259TlutWheel3 + type: texture + offset: 0x8CE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_260_tlut_wheel_0: + symbol: gKartToad260TlutWheel0 + type: texture + offset: 0x8CEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_260_tlut_wheel_1: + symbol: gKartToad260TlutWheel1 + type: texture + offset: 0x8CF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_260_tlut_wheel_2: + symbol: gKartToad260TlutWheel2 + type: texture + offset: 0x8CFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_260_tlut_wheel_3: + symbol: gKartToad260TlutWheel3 + type: texture + offset: 0x8D068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_261_tlut_wheel_0: + symbol: gKartToad261TlutWheel0 + type: texture + offset: 0x8D0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_261_tlut_wheel_1: + symbol: gKartToad261TlutWheel1 + type: texture + offset: 0x8D168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_261_tlut_wheel_2: + symbol: gKartToad261TlutWheel2 + type: texture + offset: 0x8D1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_261_tlut_wheel_3: + symbol: gKartToad261TlutWheel3 + type: texture + offset: 0x8D268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_262_tlut_wheel_0: + symbol: gKartToad262TlutWheel0 + type: texture + offset: 0x8D2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_262_tlut_wheel_1: + symbol: gKartToad262TlutWheel1 + type: texture + offset: 0x8D368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_262_tlut_wheel_2: + symbol: gKartToad262TlutWheel2 + type: texture + offset: 0x8D3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_262_tlut_wheel_3: + symbol: gKartToad262TlutWheel3 + type: texture + offset: 0x8D468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_263_tlut_wheel_0: + symbol: gKartToad263TlutWheel0 + type: texture + offset: 0x8D4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_263_tlut_wheel_1: + symbol: gKartToad263TlutWheel1 + type: texture + offset: 0x8D568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_263_tlut_wheel_2: + symbol: gKartToad263TlutWheel2 + type: texture + offset: 0x8D5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_263_tlut_wheel_3: + symbol: gKartToad263TlutWheel3 + type: texture + offset: 0x8D668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_264_tlut_wheel_0: + symbol: gKartToad264TlutWheel0 + type: texture + offset: 0x8D6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_264_tlut_wheel_1: + symbol: gKartToad264TlutWheel1 + type: texture + offset: 0x8D768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_264_tlut_wheel_2: + symbol: gKartToad264TlutWheel2 + type: texture + offset: 0x8D7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_264_tlut_wheel_3: + symbol: gKartToad264TlutWheel3 + type: texture + offset: 0x8D868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_265_tlut_wheel_0: + symbol: gKartToad265TlutWheel0 + type: texture + offset: 0x8D8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_265_tlut_wheel_1: + symbol: gKartToad265TlutWheel1 + type: texture + offset: 0x8D968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_265_tlut_wheel_2: + symbol: gKartToad265TlutWheel2 + type: texture + offset: 0x8D9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_265_tlut_wheel_3: + symbol: gKartToad265TlutWheel3 + type: texture + offset: 0x8DA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_266_tlut_wheel_0: + symbol: gKartToad266TlutWheel0 + type: texture + offset: 0x8DAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_266_tlut_wheel_1: + symbol: gKartToad266TlutWheel1 + type: texture + offset: 0x8DB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_266_tlut_wheel_2: + symbol: gKartToad266TlutWheel2 + type: texture + offset: 0x8DBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_266_tlut_wheel_3: + symbol: gKartToad266TlutWheel3 + type: texture + offset: 0x8DC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_267_tlut_wheel_0: + symbol: gKartToad267TlutWheel0 + type: texture + offset: 0x8DCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_267_tlut_wheel_1: + symbol: gKartToad267TlutWheel1 + type: texture + offset: 0x8DD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_267_tlut_wheel_2: + symbol: gKartToad267TlutWheel2 + type: texture + offset: 0x8DDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_267_tlut_wheel_3: + symbol: gKartToad267TlutWheel3 + type: texture + offset: 0x8DE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_268_tlut_wheel_0: + symbol: gKartToad268TlutWheel0 + type: texture + offset: 0x8DEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_268_tlut_wheel_1: + symbol: gKartToad268TlutWheel1 + type: texture + offset: 0x8DF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_268_tlut_wheel_2: + symbol: gKartToad268TlutWheel2 + type: texture + offset: 0x8DFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_268_tlut_wheel_3: + symbol: gKartToad268TlutWheel3 + type: texture + offset: 0x8E068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_269_tlut_wheel_0: + symbol: gKartToad269TlutWheel0 + type: texture + offset: 0x8E0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_269_tlut_wheel_1: + symbol: gKartToad269TlutWheel1 + type: texture + offset: 0x8E168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_269_tlut_wheel_2: + symbol: gKartToad269TlutWheel2 + type: texture + offset: 0x8E1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_269_tlut_wheel_3: + symbol: gKartToad269TlutWheel3 + type: texture + offset: 0x8E268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_270_tlut_wheel_0: + symbol: gKartToad270TlutWheel0 + type: texture + offset: 0x8E2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_270_tlut_wheel_1: + symbol: gKartToad270TlutWheel1 + type: texture + offset: 0x8E368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_270_tlut_wheel_2: + symbol: gKartToad270TlutWheel2 + type: texture + offset: 0x8E3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_270_tlut_wheel_3: + symbol: gKartToad270TlutWheel3 + type: texture + offset: 0x8E468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_271_tlut_wheel_0: + symbol: gKartToad271TlutWheel0 + type: texture + offset: 0x8E4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_271_tlut_wheel_1: + symbol: gKartToad271TlutWheel1 + type: texture + offset: 0x8E568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_271_tlut_wheel_2: + symbol: gKartToad271TlutWheel2 + type: texture + offset: 0x8E5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_271_tlut_wheel_3: + symbol: gKartToad271TlutWheel3 + type: texture + offset: 0x8E668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_272_tlut_wheel_0: + symbol: gKartToad272TlutWheel0 + type: texture + offset: 0x8E6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_272_tlut_wheel_1: + symbol: gKartToad272TlutWheel1 + type: texture + offset: 0x8E768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_272_tlut_wheel_2: + symbol: gKartToad272TlutWheel2 + type: texture + offset: 0x8E7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_272_tlut_wheel_3: + symbol: gKartToad272TlutWheel3 + type: texture + offset: 0x8E868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_273_tlut_wheel_0: + symbol: gKartToad273TlutWheel0 + type: texture + offset: 0x8E8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_273_tlut_wheel_1: + symbol: gKartToad273TlutWheel1 + type: texture + offset: 0x8E968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_273_tlut_wheel_2: + symbol: gKartToad273TlutWheel2 + type: texture + offset: 0x8E9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_273_tlut_wheel_3: + symbol: gKartToad273TlutWheel3 + type: texture + offset: 0x8EA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_274_tlut_wheel_0: + symbol: gKartToad274TlutWheel0 + type: texture + offset: 0x8EAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_274_tlut_wheel_1: + symbol: gKartToad274TlutWheel1 + type: texture + offset: 0x8EB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_274_tlut_wheel_2: + symbol: gKartToad274TlutWheel2 + type: texture + offset: 0x8EBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_274_tlut_wheel_3: + symbol: gKartToad274TlutWheel3 + type: texture + offset: 0x8EC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_275_tlut_wheel_0: + symbol: gKartToad275TlutWheel0 + type: texture + offset: 0x8ECE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_275_tlut_wheel_1: + symbol: gKartToad275TlutWheel1 + type: texture + offset: 0x8ED68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_275_tlut_wheel_2: + symbol: gKartToad275TlutWheel2 + type: texture + offset: 0x8EDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_275_tlut_wheel_3: + symbol: gKartToad275TlutWheel3 + type: texture + offset: 0x8EE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_276_tlut_wheel_0: + symbol: gKartToad276TlutWheel0 + type: texture + offset: 0x8EEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_276_tlut_wheel_1: + symbol: gKartToad276TlutWheel1 + type: texture + offset: 0x8EF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_276_tlut_wheel_2: + symbol: gKartToad276TlutWheel2 + type: texture + offset: 0x8EFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_276_tlut_wheel_3: + symbol: gKartToad276TlutWheel3 + type: texture + offset: 0x8F068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_277_tlut_wheel_0: + symbol: gKartToad277TlutWheel0 + type: texture + offset: 0x8F0E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_277_tlut_wheel_1: + symbol: gKartToad277TlutWheel1 + type: texture + offset: 0x8F168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_277_tlut_wheel_2: + symbol: gKartToad277TlutWheel2 + type: texture + offset: 0x8F1E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_277_tlut_wheel_3: + symbol: gKartToad277TlutWheel3 + type: texture + offset: 0x8F268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_278_tlut_wheel_0: + symbol: gKartToad278TlutWheel0 + type: texture + offset: 0x8F2E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_278_tlut_wheel_1: + symbol: gKartToad278TlutWheel1 + type: texture + offset: 0x8F368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_278_tlut_wheel_2: + symbol: gKartToad278TlutWheel2 + type: texture + offset: 0x8F3E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_278_tlut_wheel_3: + symbol: gKartToad278TlutWheel3 + type: texture + offset: 0x8F468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_279_tlut_wheel_0: + symbol: gKartToad279TlutWheel0 + type: texture + offset: 0x8F4E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_279_tlut_wheel_1: + symbol: gKartToad279TlutWheel1 + type: texture + offset: 0x8F568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_279_tlut_wheel_2: + symbol: gKartToad279TlutWheel2 + type: texture + offset: 0x8F5E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_279_tlut_wheel_3: + symbol: gKartToad279TlutWheel3 + type: texture + offset: 0x8F668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_280_tlut_wheel_0: + symbol: gKartToad280TlutWheel0 + type: texture + offset: 0x8F6E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_280_tlut_wheel_1: + symbol: gKartToad280TlutWheel1 + type: texture + offset: 0x8F768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_280_tlut_wheel_2: + symbol: gKartToad280TlutWheel2 + type: texture + offset: 0x8F7E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_280_tlut_wheel_3: + symbol: gKartToad280TlutWheel3 + type: texture + offset: 0x8F868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_281_tlut_wheel_0: + symbol: gKartToad281TlutWheel0 + type: texture + offset: 0x8F8E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_281_tlut_wheel_1: + symbol: gKartToad281TlutWheel1 + type: texture + offset: 0x8F968 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_281_tlut_wheel_2: + symbol: gKartToad281TlutWheel2 + type: texture + offset: 0x8F9E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_281_tlut_wheel_3: + symbol: gKartToad281TlutWheel3 + type: texture + offset: 0x8FA68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_282_tlut_wheel_0: + symbol: gKartToad282TlutWheel0 + type: texture + offset: 0x8FAE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_282_tlut_wheel_1: + symbol: gKartToad282TlutWheel1 + type: texture + offset: 0x8FB68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_282_tlut_wheel_2: + symbol: gKartToad282TlutWheel2 + type: texture + offset: 0x8FBE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_282_tlut_wheel_3: + symbol: gKartToad282TlutWheel3 + type: texture + offset: 0x8FC68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_283_tlut_wheel_0: + symbol: gKartToad283TlutWheel0 + type: texture + offset: 0x8FCE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_283_tlut_wheel_1: + symbol: gKartToad283TlutWheel1 + type: texture + offset: 0x8FD68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_283_tlut_wheel_2: + symbol: gKartToad283TlutWheel2 + type: texture + offset: 0x8FDE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_283_tlut_wheel_3: + symbol: gKartToad283TlutWheel3 + type: texture + offset: 0x8FE68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_284_tlut_wheel_0: + symbol: gKartToad284TlutWheel0 + type: texture + offset: 0x8FEE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_284_tlut_wheel_1: + symbol: gKartToad284TlutWheel1 + type: texture + offset: 0x8FF68 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_284_tlut_wheel_2: + symbol: gKartToad284TlutWheel2 + type: texture + offset: 0x8FFE8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_284_tlut_wheel_3: + symbol: gKartToad284TlutWheel3 + type: texture + offset: 0x90068 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_285_tlut_wheel_0: + symbol: gKartToad285TlutWheel0 + type: texture + offset: 0x900E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_285_tlut_wheel_1: + symbol: gKartToad285TlutWheel1 + type: texture + offset: 0x90168 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_285_tlut_wheel_2: + symbol: gKartToad285TlutWheel2 + type: texture + offset: 0x901E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_285_tlut_wheel_3: + symbol: gKartToad285TlutWheel3 + type: texture + offset: 0x90268 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_286_tlut_wheel_0: + symbol: gKartToad286TlutWheel0 + type: texture + offset: 0x902E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_286_tlut_wheel_1: + symbol: gKartToad286TlutWheel1 + type: texture + offset: 0x90368 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_286_tlut_wheel_2: + symbol: gKartToad286TlutWheel2 + type: texture + offset: 0x903E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_286_tlut_wheel_3: + symbol: gKartToad286TlutWheel3 + type: texture + offset: 0x90468 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_287_tlut_wheel_0: + symbol: gKartToad287TlutWheel0 + type: texture + offset: 0x904E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_287_tlut_wheel_1: + symbol: gKartToad287TlutWheel1 + type: texture + offset: 0x90568 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_287_tlut_wheel_2: + symbol: gKartToad287TlutWheel2 + type: texture + offset: 0x905E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_287_tlut_wheel_3: + symbol: gKartToad287TlutWheel3 + type: texture + offset: 0x90668 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_288_tlut_wheel_0: + symbol: gKartToad288TlutWheel0 + type: texture + offset: 0x906E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_288_tlut_wheel_1: + symbol: gKartToad288TlutWheel1 + type: texture + offset: 0x90768 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_288_tlut_wheel_2: + symbol: gKartToad288TlutWheel2 + type: texture + offset: 0x907E8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_288_tlut_wheel_3: + symbol: gKartToad288TlutWheel3 + type: texture + offset: 0x90868 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +toad_kart_palette: + symbol: gKartToadPalette + type: texture + offset: 0x908E8 + ctype: u16 + width: 16 + height: 12 + format: RGBA16 diff --git a/yamls/us/textures/karts/wario_kart.yml b/yamls/us/textures/karts/wario_kart.yml new file mode 100644 index 000000000..2ee010ea4 --- /dev/null +++ b/yamls/us/textures/karts/wario_kart.yml @@ -0,0 +1,22340 @@ +:config: + segments: + - [0x0F, 0x39E0C0] + no_compression: true + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + tables: + wario_kart_wheels: + range: [0x78F9C, 0x9D11C] + mode: APPEND +wario_kart_frame000_wheel0: + symbol: gKartWario000Wheel0 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame000_wheel1: + symbol: gKartWario000Wheel1 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_1 +wario_kart_frame000_wheel2: + symbol: gKartWario000Wheel2 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_2 +wario_kart_frame000_wheel3: + symbol: gKartWario000Wheel3 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_3 +wario_kart_frame001_wheel0: + symbol: gKartWario001Wheel0 + type: texture + offset: 0x54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_001_tlut_wheel_0 +wario_kart_frame001_wheel1: + symbol: gKartWario001Wheel1 + type: texture + offset: 0x54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_001_tlut_wheel_1 +wario_kart_frame001_wheel2: + symbol: gKartWario001Wheel2 + type: texture + offset: 0x54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_001_tlut_wheel_2 +wario_kart_frame001_wheel3: + symbol: gKartWario001Wheel3 + type: texture + offset: 0x54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_001_tlut_wheel_3 +wario_kart_frame002_wheel0: + symbol: gKartWario002Wheel0 + type: texture + offset: 0xAB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_002_tlut_wheel_0 +wario_kart_frame002_wheel1: + symbol: gKartWario002Wheel1 + type: texture + offset: 0xAB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_002_tlut_wheel_1 +wario_kart_frame002_wheel2: + symbol: gKartWario002Wheel2 + type: texture + offset: 0xAB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_002_tlut_wheel_2 +wario_kart_frame002_wheel3: + symbol: gKartWario002Wheel3 + type: texture + offset: 0xAB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_002_tlut_wheel_3 +wario_kart_frame003_wheel0: + symbol: gKartWario003Wheel0 + type: texture + offset: 0x1004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_003_tlut_wheel_0 +wario_kart_frame003_wheel1: + symbol: gKartWario003Wheel1 + type: texture + offset: 0x1004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_003_tlut_wheel_1 +wario_kart_frame003_wheel2: + symbol: gKartWario003Wheel2 + type: texture + offset: 0x1004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_003_tlut_wheel_2 +wario_kart_frame003_wheel3: + symbol: gKartWario003Wheel3 + type: texture + offset: 0x1004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_003_tlut_wheel_3 +wario_kart_frame004_wheel0: + symbol: gKartWario004Wheel0 + type: texture + offset: 0x1558 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_004_tlut_wheel_0 +wario_kart_frame004_wheel1: + symbol: gKartWario004Wheel1 + type: texture + offset: 0x1558 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_004_tlut_wheel_1 +wario_kart_frame004_wheel2: + symbol: gKartWario004Wheel2 + type: texture + offset: 0x1558 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_004_tlut_wheel_2 +wario_kart_frame004_wheel3: + symbol: gKartWario004Wheel3 + type: texture + offset: 0x1558 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_004_tlut_wheel_3 +wario_kart_frame005_wheel0: + symbol: gKartWario005Wheel0 + type: texture + offset: 0x1AE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_005_tlut_wheel_0 +wario_kart_frame005_wheel1: + symbol: gKartWario005Wheel1 + type: texture + offset: 0x1AE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_005_tlut_wheel_1 +wario_kart_frame005_wheel2: + symbol: gKartWario005Wheel2 + type: texture + offset: 0x1AE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_005_tlut_wheel_2 +wario_kart_frame005_wheel3: + symbol: gKartWario005Wheel3 + type: texture + offset: 0x1AE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_005_tlut_wheel_3 +wario_kart_frame006_wheel0: + symbol: gKartWario006Wheel0 + type: texture + offset: 0x2060 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_006_tlut_wheel_0 +wario_kart_frame006_wheel1: + symbol: gKartWario006Wheel1 + type: texture + offset: 0x2060 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_006_tlut_wheel_1 +wario_kart_frame006_wheel2: + symbol: gKartWario006Wheel2 + type: texture + offset: 0x2060 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_006_tlut_wheel_2 +wario_kart_frame006_wheel3: + symbol: gKartWario006Wheel3 + type: texture + offset: 0x2060 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_006_tlut_wheel_3 +wario_kart_frame007_wheel0: + symbol: gKartWario007Wheel0 + type: texture + offset: 0x260C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_007_tlut_wheel_0 +wario_kart_frame007_wheel1: + symbol: gKartWario007Wheel1 + type: texture + offset: 0x260C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_007_tlut_wheel_1 +wario_kart_frame007_wheel2: + symbol: gKartWario007Wheel2 + type: texture + offset: 0x260C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_007_tlut_wheel_2 +wario_kart_frame007_wheel3: + symbol: gKartWario007Wheel3 + type: texture + offset: 0x260C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_007_tlut_wheel_3 +wario_kart_frame008_wheel0: + symbol: gKartWario008Wheel0 + type: texture + offset: 0x2BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_008_tlut_wheel_0 +wario_kart_frame008_wheel1: + symbol: gKartWario008Wheel1 + type: texture + offset: 0x2BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_008_tlut_wheel_1 +wario_kart_frame008_wheel2: + symbol: gKartWario008Wheel2 + type: texture + offset: 0x2BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_008_tlut_wheel_2 +wario_kart_frame008_wheel3: + symbol: gKartWario008Wheel3 + type: texture + offset: 0x2BB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_008_tlut_wheel_3 +wario_kart_frame009_wheel0: + symbol: gKartWario009Wheel0 + type: texture + offset: 0x3164 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_009_tlut_wheel_0 +wario_kart_frame009_wheel1: + symbol: gKartWario009Wheel1 + type: texture + offset: 0x3164 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_009_tlut_wheel_1 +wario_kart_frame009_wheel2: + symbol: gKartWario009Wheel2 + type: texture + offset: 0x3164 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_009_tlut_wheel_2 +wario_kart_frame009_wheel3: + symbol: gKartWario009Wheel3 + type: texture + offset: 0x3164 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_009_tlut_wheel_3 +wario_kart_frame010_wheel0: + symbol: gKartWario010Wheel0 + type: texture + offset: 0x3724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_010_tlut_wheel_0 +wario_kart_frame010_wheel1: + symbol: gKartWario010Wheel1 + type: texture + offset: 0x3724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_010_tlut_wheel_1 +wario_kart_frame010_wheel2: + symbol: gKartWario010Wheel2 + type: texture + offset: 0x3724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_010_tlut_wheel_2 +wario_kart_frame010_wheel3: + symbol: gKartWario010Wheel3 + type: texture + offset: 0x3724 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_010_tlut_wheel_3 +wario_kart_frame011_wheel0: + symbol: gKartWario011Wheel0 + type: texture + offset: 0x3CF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_011_tlut_wheel_0 +wario_kart_frame011_wheel1: + symbol: gKartWario011Wheel1 + type: texture + offset: 0x3CF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_011_tlut_wheel_1 +wario_kart_frame011_wheel2: + symbol: gKartWario011Wheel2 + type: texture + offset: 0x3CF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_011_tlut_wheel_2 +wario_kart_frame011_wheel3: + symbol: gKartWario011Wheel3 + type: texture + offset: 0x3CF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_011_tlut_wheel_3 +wario_kart_frame012_wheel0: + symbol: gKartWario012Wheel0 + type: texture + offset: 0x42CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_012_tlut_wheel_0 +wario_kart_frame012_wheel1: + symbol: gKartWario012Wheel1 + type: texture + offset: 0x42CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_012_tlut_wheel_1 +wario_kart_frame012_wheel2: + symbol: gKartWario012Wheel2 + type: texture + offset: 0x42CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_012_tlut_wheel_2 +wario_kart_frame012_wheel3: + symbol: gKartWario012Wheel3 + type: texture + offset: 0x42CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_012_tlut_wheel_3 +wario_kart_frame013_wheel0: + symbol: gKartWario013Wheel0 + type: texture + offset: 0x48C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_013_tlut_wheel_0 +wario_kart_frame013_wheel1: + symbol: gKartWario013Wheel1 + type: texture + offset: 0x48C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_013_tlut_wheel_1 +wario_kart_frame013_wheel2: + symbol: gKartWario013Wheel2 + type: texture + offset: 0x48C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_013_tlut_wheel_2 +wario_kart_frame013_wheel3: + symbol: gKartWario013Wheel3 + type: texture + offset: 0x48C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_013_tlut_wheel_3 +wario_kart_frame014_wheel0: + symbol: gKartWario014Wheel0 + type: texture + offset: 0x4EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_014_tlut_wheel_0 +wario_kart_frame014_wheel1: + symbol: gKartWario014Wheel1 + type: texture + offset: 0x4EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_014_tlut_wheel_1 +wario_kart_frame014_wheel2: + symbol: gKartWario014Wheel2 + type: texture + offset: 0x4EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_014_tlut_wheel_2 +wario_kart_frame014_wheel3: + symbol: gKartWario014Wheel3 + type: texture + offset: 0x4EB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_014_tlut_wheel_3 +wario_kart_frame015_wheel0: + symbol: gKartWario015Wheel0 + type: texture + offset: 0x54B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_015_tlut_wheel_0 +wario_kart_frame015_wheel1: + symbol: gKartWario015Wheel1 + type: texture + offset: 0x54B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_015_tlut_wheel_1 +wario_kart_frame015_wheel2: + symbol: gKartWario015Wheel2 + type: texture + offset: 0x54B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_015_tlut_wheel_2 +wario_kart_frame015_wheel3: + symbol: gKartWario015Wheel3 + type: texture + offset: 0x54B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_015_tlut_wheel_3 +wario_kart_frame016_wheel0: + symbol: gKartWario016Wheel0 + type: texture + offset: 0x5AC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_016_tlut_wheel_0 +wario_kart_frame016_wheel1: + symbol: gKartWario016Wheel1 + type: texture + offset: 0x5AC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_016_tlut_wheel_1 +wario_kart_frame016_wheel2: + symbol: gKartWario016Wheel2 + type: texture + offset: 0x5AC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_016_tlut_wheel_2 +wario_kart_frame016_wheel3: + symbol: gKartWario016Wheel3 + type: texture + offset: 0x5AC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_016_tlut_wheel_3 +wario_kart_frame017_wheel0: + symbol: gKartWario017Wheel0 + type: texture + offset: 0x60E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_017_tlut_wheel_0 +wario_kart_frame017_wheel1: + symbol: gKartWario017Wheel1 + type: texture + offset: 0x60E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_017_tlut_wheel_1 +wario_kart_frame017_wheel2: + symbol: gKartWario017Wheel2 + type: texture + offset: 0x60E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_017_tlut_wheel_2 +wario_kart_frame017_wheel3: + symbol: gKartWario017Wheel3 + type: texture + offset: 0x60E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_017_tlut_wheel_3 +wario_kart_frame018_wheel0: + symbol: gKartWario018Wheel0 + type: texture + offset: 0x66F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_018_tlut_wheel_0 +wario_kart_frame018_wheel1: + symbol: gKartWario018Wheel1 + type: texture + offset: 0x66F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_018_tlut_wheel_1 +wario_kart_frame018_wheel2: + symbol: gKartWario018Wheel2 + type: texture + offset: 0x66F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_018_tlut_wheel_2 +wario_kart_frame018_wheel3: + symbol: gKartWario018Wheel3 + type: texture + offset: 0x66F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_018_tlut_wheel_3 +wario_kart_frame019_wheel0: + symbol: gKartWario019Wheel0 + type: texture + offset: 0x6D24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_019_tlut_wheel_0 +wario_kart_frame019_wheel1: + symbol: gKartWario019Wheel1 + type: texture + offset: 0x6D24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_019_tlut_wheel_1 +wario_kart_frame019_wheel2: + symbol: gKartWario019Wheel2 + type: texture + offset: 0x6D24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_019_tlut_wheel_2 +wario_kart_frame019_wheel3: + symbol: gKartWario019Wheel3 + type: texture + offset: 0x6D24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_019_tlut_wheel_3 +wario_kart_frame020_wheel0: + symbol: gKartWario020Wheel0 + type: texture + offset: 0x7350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_020_tlut_wheel_0 +wario_kart_frame020_wheel1: + symbol: gKartWario020Wheel1 + type: texture + offset: 0x7350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_020_tlut_wheel_1 +wario_kart_frame020_wheel2: + symbol: gKartWario020Wheel2 + type: texture + offset: 0x7350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_020_tlut_wheel_2 +wario_kart_frame020_wheel3: + symbol: gKartWario020Wheel3 + type: texture + offset: 0x7350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_020_tlut_wheel_3 +wario_kart_frame021_wheel0: + symbol: gKartWario021Wheel0 + type: texture + offset: 0x7974 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_021_tlut_wheel_0 +wario_kart_frame021_wheel1: + symbol: gKartWario021Wheel1 + type: texture + offset: 0x7974 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_021_tlut_wheel_1 +wario_kart_frame021_wheel2: + symbol: gKartWario021Wheel2 + type: texture + offset: 0x7974 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_021_tlut_wheel_2 +wario_kart_frame021_wheel3: + symbol: gKartWario021Wheel3 + type: texture + offset: 0x7974 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_021_tlut_wheel_3 +wario_kart_frame022_wheel0: + symbol: gKartWario022Wheel0 + type: texture + offset: 0x7EC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_022_tlut_wheel_0 +wario_kart_frame022_wheel1: + symbol: gKartWario022Wheel1 + type: texture + offset: 0x7EC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_022_tlut_wheel_1 +wario_kart_frame022_wheel2: + symbol: gKartWario022Wheel2 + type: texture + offset: 0x7EC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_022_tlut_wheel_2 +wario_kart_frame022_wheel3: + symbol: gKartWario022Wheel3 + type: texture + offset: 0x7EC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_022_tlut_wheel_3 +wario_kart_frame023_wheel0: + symbol: gKartWario023Wheel0 + type: texture + offset: 0x8430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_023_tlut_wheel_0 +wario_kart_frame023_wheel1: + symbol: gKartWario023Wheel1 + type: texture + offset: 0x8430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_023_tlut_wheel_1 +wario_kart_frame023_wheel2: + symbol: gKartWario023Wheel2 + type: texture + offset: 0x8430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_023_tlut_wheel_2 +wario_kart_frame023_wheel3: + symbol: gKartWario023Wheel3 + type: texture + offset: 0x8430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_023_tlut_wheel_3 +wario_kart_frame024_wheel0: + symbol: gKartWario024Wheel0 + type: texture + offset: 0x89B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_024_tlut_wheel_0 +wario_kart_frame024_wheel1: + symbol: gKartWario024Wheel1 + type: texture + offset: 0x89B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_024_tlut_wheel_1 +wario_kart_frame024_wheel2: + symbol: gKartWario024Wheel2 + type: texture + offset: 0x89B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_024_tlut_wheel_2 +wario_kart_frame024_wheel3: + symbol: gKartWario024Wheel3 + type: texture + offset: 0x89B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_024_tlut_wheel_3 +wario_kart_frame025_wheel0: + symbol: gKartWario025Wheel0 + type: texture + offset: 0x8F50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_025_tlut_wheel_0 +wario_kart_frame025_wheel1: + symbol: gKartWario025Wheel1 + type: texture + offset: 0x8F50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_025_tlut_wheel_1 +wario_kart_frame025_wheel2: + symbol: gKartWario025Wheel2 + type: texture + offset: 0x8F50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_025_tlut_wheel_2 +wario_kart_frame025_wheel3: + symbol: gKartWario025Wheel3 + type: texture + offset: 0x8F50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_025_tlut_wheel_3 +wario_kart_frame026_wheel0: + symbol: gKartWario026Wheel0 + type: texture + offset: 0x94C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_026_tlut_wheel_0 +wario_kart_frame026_wheel1: + symbol: gKartWario026Wheel1 + type: texture + offset: 0x94C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_026_tlut_wheel_1 +wario_kart_frame026_wheel2: + symbol: gKartWario026Wheel2 + type: texture + offset: 0x94C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_026_tlut_wheel_2 +wario_kart_frame026_wheel3: + symbol: gKartWario026Wheel3 + type: texture + offset: 0x94C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_026_tlut_wheel_3 +wario_kart_frame027_wheel0: + symbol: gKartWario027Wheel0 + type: texture + offset: 0x9A60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_027_tlut_wheel_0 +wario_kart_frame027_wheel1: + symbol: gKartWario027Wheel1 + type: texture + offset: 0x9A60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_027_tlut_wheel_1 +wario_kart_frame027_wheel2: + symbol: gKartWario027Wheel2 + type: texture + offset: 0x9A60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_027_tlut_wheel_2 +wario_kart_frame027_wheel3: + symbol: gKartWario027Wheel3 + type: texture + offset: 0x9A60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_027_tlut_wheel_3 +wario_kart_frame028_wheel0: + symbol: gKartWario028Wheel0 + type: texture + offset: 0x9FFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_028_tlut_wheel_0 +wario_kart_frame028_wheel1: + symbol: gKartWario028Wheel1 + type: texture + offset: 0x9FFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_028_tlut_wheel_1 +wario_kart_frame028_wheel2: + symbol: gKartWario028Wheel2 + type: texture + offset: 0x9FFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_028_tlut_wheel_2 +wario_kart_frame028_wheel3: + symbol: gKartWario028Wheel3 + type: texture + offset: 0x9FFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_028_tlut_wheel_3 +wario_kart_frame029_wheel0: + symbol: gKartWario029Wheel0 + type: texture + offset: 0xA5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_029_tlut_wheel_0 +wario_kart_frame029_wheel1: + symbol: gKartWario029Wheel1 + type: texture + offset: 0xA5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_029_tlut_wheel_1 +wario_kart_frame029_wheel2: + symbol: gKartWario029Wheel2 + type: texture + offset: 0xA5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_029_tlut_wheel_2 +wario_kart_frame029_wheel3: + symbol: gKartWario029Wheel3 + type: texture + offset: 0xA5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_029_tlut_wheel_3 +wario_kart_frame030_wheel0: + symbol: gKartWario030Wheel0 + type: texture + offset: 0xAB78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_030_tlut_wheel_0 +wario_kart_frame030_wheel1: + symbol: gKartWario030Wheel1 + type: texture + offset: 0xAB78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_030_tlut_wheel_1 +wario_kart_frame030_wheel2: + symbol: gKartWario030Wheel2 + type: texture + offset: 0xAB78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_030_tlut_wheel_2 +wario_kart_frame030_wheel3: + symbol: gKartWario030Wheel3 + type: texture + offset: 0xAB78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_030_tlut_wheel_3 +wario_kart_frame031_wheel0: + symbol: gKartWario031Wheel0 + type: texture + offset: 0xB160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_031_tlut_wheel_0 +wario_kart_frame031_wheel1: + symbol: gKartWario031Wheel1 + type: texture + offset: 0xB160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_031_tlut_wheel_1 +wario_kart_frame031_wheel2: + symbol: gKartWario031Wheel2 + type: texture + offset: 0xB160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_031_tlut_wheel_2 +wario_kart_frame031_wheel3: + symbol: gKartWario031Wheel3 + type: texture + offset: 0xB160 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_031_tlut_wheel_3 +wario_kart_frame032_wheel0: + symbol: gKartWario032Wheel0 + type: texture + offset: 0xB740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_032_tlut_wheel_0 +wario_kart_frame032_wheel1: + symbol: gKartWario032Wheel1 + type: texture + offset: 0xB740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_032_tlut_wheel_1 +wario_kart_frame032_wheel2: + symbol: gKartWario032Wheel2 + type: texture + offset: 0xB740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_032_tlut_wheel_2 +wario_kart_frame032_wheel3: + symbol: gKartWario032Wheel3 + type: texture + offset: 0xB740 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_032_tlut_wheel_3 +wario_kart_frame033_wheel0: + symbol: gKartWario033Wheel0 + type: texture + offset: 0xBD18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_033_tlut_wheel_0 +wario_kart_frame033_wheel1: + symbol: gKartWario033Wheel1 + type: texture + offset: 0xBD18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_033_tlut_wheel_1 +wario_kart_frame033_wheel2: + symbol: gKartWario033Wheel2 + type: texture + offset: 0xBD18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_033_tlut_wheel_2 +wario_kart_frame033_wheel3: + symbol: gKartWario033Wheel3 + type: texture + offset: 0xBD18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_033_tlut_wheel_3 +wario_kart_frame034_wheel0: + symbol: gKartWario034Wheel0 + type: texture + offset: 0xC31C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_034_tlut_wheel_0 +wario_kart_frame034_wheel1: + symbol: gKartWario034Wheel1 + type: texture + offset: 0xC31C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_034_tlut_wheel_1 +wario_kart_frame034_wheel2: + symbol: gKartWario034Wheel2 + type: texture + offset: 0xC31C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_034_tlut_wheel_2 +wario_kart_frame034_wheel3: + symbol: gKartWario034Wheel3 + type: texture + offset: 0xC31C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_034_tlut_wheel_3 +wario_kart_frame035_wheel0: + symbol: gKartWario035Wheel0 + type: texture + offset: 0xC934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_035_tlut_wheel_0 +wario_kart_frame035_wheel1: + symbol: gKartWario035Wheel1 + type: texture + offset: 0xC934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_035_tlut_wheel_1 +wario_kart_frame035_wheel2: + symbol: gKartWario035Wheel2 + type: texture + offset: 0xC934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_035_tlut_wheel_2 +wario_kart_frame035_wheel3: + symbol: gKartWario035Wheel3 + type: texture + offset: 0xC934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_035_tlut_wheel_3 +wario_kart_frame036_wheel0: + symbol: gKartWario036Wheel0 + type: texture + offset: 0xCF40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_036_tlut_wheel_0 +wario_kart_frame036_wheel1: + symbol: gKartWario036Wheel1 + type: texture + offset: 0xCF40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_036_tlut_wheel_1 +wario_kart_frame036_wheel2: + symbol: gKartWario036Wheel2 + type: texture + offset: 0xCF40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_036_tlut_wheel_2 +wario_kart_frame036_wheel3: + symbol: gKartWario036Wheel3 + type: texture + offset: 0xCF40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_036_tlut_wheel_3 +wario_kart_frame037_wheel0: + symbol: gKartWario037Wheel0 + type: texture + offset: 0xD548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_037_tlut_wheel_0 +wario_kart_frame037_wheel1: + symbol: gKartWario037Wheel1 + type: texture + offset: 0xD548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_037_tlut_wheel_1 +wario_kart_frame037_wheel2: + symbol: gKartWario037Wheel2 + type: texture + offset: 0xD548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_037_tlut_wheel_2 +wario_kart_frame037_wheel3: + symbol: gKartWario037Wheel3 + type: texture + offset: 0xD548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_037_tlut_wheel_3 +wario_kart_frame038_wheel0: + symbol: gKartWario038Wheel0 + type: texture + offset: 0xDB74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_038_tlut_wheel_0 +wario_kart_frame038_wheel1: + symbol: gKartWario038Wheel1 + type: texture + offset: 0xDB74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_038_tlut_wheel_1 +wario_kart_frame038_wheel2: + symbol: gKartWario038Wheel2 + type: texture + offset: 0xDB74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_038_tlut_wheel_2 +wario_kart_frame038_wheel3: + symbol: gKartWario038Wheel3 + type: texture + offset: 0xDB74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_038_tlut_wheel_3 +wario_kart_frame039_wheel0: + symbol: gKartWario039Wheel0 + type: texture + offset: 0xE198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_039_tlut_wheel_0 +wario_kart_frame039_wheel1: + symbol: gKartWario039Wheel1 + type: texture + offset: 0xE198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_039_tlut_wheel_1 +wario_kart_frame039_wheel2: + symbol: gKartWario039Wheel2 + type: texture + offset: 0xE198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_039_tlut_wheel_2 +wario_kart_frame039_wheel3: + symbol: gKartWario039Wheel3 + type: texture + offset: 0xE198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_039_tlut_wheel_3 +wario_kart_frame040_wheel0: + symbol: gKartWario040Wheel0 + type: texture + offset: 0xE7BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_040_tlut_wheel_0 +wario_kart_frame040_wheel1: + symbol: gKartWario040Wheel1 + type: texture + offset: 0xE7BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_040_tlut_wheel_1 +wario_kart_frame040_wheel2: + symbol: gKartWario040Wheel2 + type: texture + offset: 0xE7BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_040_tlut_wheel_2 +wario_kart_frame040_wheel3: + symbol: gKartWario040Wheel3 + type: texture + offset: 0xE7BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_040_tlut_wheel_3 +wario_kart_frame041_wheel0: + symbol: gKartWario041Wheel0 + type: texture + offset: 0xEDF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_041_tlut_wheel_0 +wario_kart_frame041_wheel1: + symbol: gKartWario041Wheel1 + type: texture + offset: 0xEDF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_041_tlut_wheel_1 +wario_kart_frame041_wheel2: + symbol: gKartWario041Wheel2 + type: texture + offset: 0xEDF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_041_tlut_wheel_2 +wario_kart_frame041_wheel3: + symbol: gKartWario041Wheel3 + type: texture + offset: 0xEDF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_041_tlut_wheel_3 +wario_kart_frame042_wheel0: + symbol: gKartWario042Wheel0 + type: texture + offset: 0xF448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_042_tlut_wheel_0 +wario_kart_frame042_wheel1: + symbol: gKartWario042Wheel1 + type: texture + offset: 0xF448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_042_tlut_wheel_1 +wario_kart_frame042_wheel2: + symbol: gKartWario042Wheel2 + type: texture + offset: 0xF448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_042_tlut_wheel_2 +wario_kart_frame042_wheel3: + symbol: gKartWario042Wheel3 + type: texture + offset: 0xF448 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_042_tlut_wheel_3 +wario_kart_frame043_wheel0: + symbol: gKartWario043Wheel0 + type: texture + offset: 0xF9B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_043_tlut_wheel_0 +wario_kart_frame043_wheel1: + symbol: gKartWario043Wheel1 + type: texture + offset: 0xF9B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_043_tlut_wheel_1 +wario_kart_frame043_wheel2: + symbol: gKartWario043Wheel2 + type: texture + offset: 0xF9B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_043_tlut_wheel_2 +wario_kart_frame043_wheel3: + symbol: gKartWario043Wheel3 + type: texture + offset: 0xF9B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_043_tlut_wheel_3 +wario_kart_frame044_wheel0: + symbol: gKartWario044Wheel0 + type: texture + offset: 0xFF34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_044_tlut_wheel_0 +wario_kart_frame044_wheel1: + symbol: gKartWario044Wheel1 + type: texture + offset: 0xFF34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_044_tlut_wheel_1 +wario_kart_frame044_wheel2: + symbol: gKartWario044Wheel2 + type: texture + offset: 0xFF34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_044_tlut_wheel_2 +wario_kart_frame044_wheel3: + symbol: gKartWario044Wheel3 + type: texture + offset: 0xFF34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_044_tlut_wheel_3 +wario_kart_frame045_wheel0: + symbol: gKartWario045Wheel0 + type: texture + offset: 0x104C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_045_tlut_wheel_0 +wario_kart_frame045_wheel1: + symbol: gKartWario045Wheel1 + type: texture + offset: 0x104C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_045_tlut_wheel_1 +wario_kart_frame045_wheel2: + symbol: gKartWario045Wheel2 + type: texture + offset: 0x104C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_045_tlut_wheel_2 +wario_kart_frame045_wheel3: + symbol: gKartWario045Wheel3 + type: texture + offset: 0x104C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_045_tlut_wheel_3 +wario_kart_frame046_wheel0: + symbol: gKartWario046Wheel0 + type: texture + offset: 0x10A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_046_tlut_wheel_0 +wario_kart_frame046_wheel1: + symbol: gKartWario046Wheel1 + type: texture + offset: 0x10A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_046_tlut_wheel_1 +wario_kart_frame046_wheel2: + symbol: gKartWario046Wheel2 + type: texture + offset: 0x10A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_046_tlut_wheel_2 +wario_kart_frame046_wheel3: + symbol: gKartWario046Wheel3 + type: texture + offset: 0x10A5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_046_tlut_wheel_3 +wario_kart_frame047_wheel0: + symbol: gKartWario047Wheel0 + type: texture + offset: 0x10FF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_047_tlut_wheel_0 +wario_kart_frame047_wheel1: + symbol: gKartWario047Wheel1 + type: texture + offset: 0x10FF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_047_tlut_wheel_1 +wario_kart_frame047_wheel2: + symbol: gKartWario047Wheel2 + type: texture + offset: 0x10FF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_047_tlut_wheel_2 +wario_kart_frame047_wheel3: + symbol: gKartWario047Wheel3 + type: texture + offset: 0x10FF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_047_tlut_wheel_3 +wario_kart_frame048_wheel0: + symbol: gKartWario048Wheel0 + type: texture + offset: 0x11588 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_048_tlut_wheel_0 +wario_kart_frame048_wheel1: + symbol: gKartWario048Wheel1 + type: texture + offset: 0x11588 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_048_tlut_wheel_1 +wario_kart_frame048_wheel2: + symbol: gKartWario048Wheel2 + type: texture + offset: 0x11588 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_048_tlut_wheel_2 +wario_kart_frame048_wheel3: + symbol: gKartWario048Wheel3 + type: texture + offset: 0x11588 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_048_tlut_wheel_3 +wario_kart_frame049_wheel0: + symbol: gKartWario049Wheel0 + type: texture + offset: 0x11B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_049_tlut_wheel_0 +wario_kart_frame049_wheel1: + symbol: gKartWario049Wheel1 + type: texture + offset: 0x11B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_049_tlut_wheel_1 +wario_kart_frame049_wheel2: + symbol: gKartWario049Wheel2 + type: texture + offset: 0x11B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_049_tlut_wheel_2 +wario_kart_frame049_wheel3: + symbol: gKartWario049Wheel3 + type: texture + offset: 0x11B48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_049_tlut_wheel_3 +wario_kart_frame050_wheel0: + symbol: gKartWario050Wheel0 + type: texture + offset: 0x12128 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_050_tlut_wheel_0 +wario_kart_frame050_wheel1: + symbol: gKartWario050Wheel1 + type: texture + offset: 0x12128 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_050_tlut_wheel_1 +wario_kart_frame050_wheel2: + symbol: gKartWario050Wheel2 + type: texture + offset: 0x12128 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_050_tlut_wheel_2 +wario_kart_frame050_wheel3: + symbol: gKartWario050Wheel3 + type: texture + offset: 0x12128 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_050_tlut_wheel_3 +wario_kart_frame051_wheel0: + symbol: gKartWario051Wheel0 + type: texture + offset: 0x126FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_051_tlut_wheel_0 +wario_kart_frame051_wheel1: + symbol: gKartWario051Wheel1 + type: texture + offset: 0x126FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_051_tlut_wheel_1 +wario_kart_frame051_wheel2: + symbol: gKartWario051Wheel2 + type: texture + offset: 0x126FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_051_tlut_wheel_2 +wario_kart_frame051_wheel3: + symbol: gKartWario051Wheel3 + type: texture + offset: 0x126FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_051_tlut_wheel_3 +wario_kart_frame052_wheel0: + symbol: gKartWario052Wheel0 + type: texture + offset: 0x12CEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_052_tlut_wheel_0 +wario_kart_frame052_wheel1: + symbol: gKartWario052Wheel1 + type: texture + offset: 0x12CEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_052_tlut_wheel_1 +wario_kart_frame052_wheel2: + symbol: gKartWario052Wheel2 + type: texture + offset: 0x12CEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_052_tlut_wheel_2 +wario_kart_frame052_wheel3: + symbol: gKartWario052Wheel3 + type: texture + offset: 0x12CEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_052_tlut_wheel_3 +wario_kart_frame053_wheel0: + symbol: gKartWario053Wheel0 + type: texture + offset: 0x132C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_053_tlut_wheel_0 +wario_kart_frame053_wheel1: + symbol: gKartWario053Wheel1 + type: texture + offset: 0x132C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_053_tlut_wheel_1 +wario_kart_frame053_wheel2: + symbol: gKartWario053Wheel2 + type: texture + offset: 0x132C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_053_tlut_wheel_2 +wario_kart_frame053_wheel3: + symbol: gKartWario053Wheel3 + type: texture + offset: 0x132C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_053_tlut_wheel_3 +wario_kart_frame054_wheel0: + symbol: gKartWario054Wheel0 + type: texture + offset: 0x138BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_054_tlut_wheel_0 +wario_kart_frame054_wheel1: + symbol: gKartWario054Wheel1 + type: texture + offset: 0x138BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_054_tlut_wheel_1 +wario_kart_frame054_wheel2: + symbol: gKartWario054Wheel2 + type: texture + offset: 0x138BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_054_tlut_wheel_2 +wario_kart_frame054_wheel3: + symbol: gKartWario054Wheel3 + type: texture + offset: 0x138BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_054_tlut_wheel_3 +wario_kart_frame055_wheel0: + symbol: gKartWario055Wheel0 + type: texture + offset: 0x13EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_055_tlut_wheel_0 +wario_kart_frame055_wheel1: + symbol: gKartWario055Wheel1 + type: texture + offset: 0x13EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_055_tlut_wheel_1 +wario_kart_frame055_wheel2: + symbol: gKartWario055Wheel2 + type: texture + offset: 0x13EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_055_tlut_wheel_2 +wario_kart_frame055_wheel3: + symbol: gKartWario055Wheel3 + type: texture + offset: 0x13EB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_055_tlut_wheel_3 +wario_kart_frame056_wheel0: + symbol: gKartWario056Wheel0 + type: texture + offset: 0x144BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_056_tlut_wheel_0 +wario_kart_frame056_wheel1: + symbol: gKartWario056Wheel1 + type: texture + offset: 0x144BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_056_tlut_wheel_1 +wario_kart_frame056_wheel2: + symbol: gKartWario056Wheel2 + type: texture + offset: 0x144BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_056_tlut_wheel_2 +wario_kart_frame056_wheel3: + symbol: gKartWario056Wheel3 + type: texture + offset: 0x144BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_056_tlut_wheel_3 +wario_kart_frame057_wheel0: + symbol: gKartWario057Wheel0 + type: texture + offset: 0x14AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_057_tlut_wheel_0 +wario_kart_frame057_wheel1: + symbol: gKartWario057Wheel1 + type: texture + offset: 0x14AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_057_tlut_wheel_1 +wario_kart_frame057_wheel2: + symbol: gKartWario057Wheel2 + type: texture + offset: 0x14AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_057_tlut_wheel_2 +wario_kart_frame057_wheel3: + symbol: gKartWario057Wheel3 + type: texture + offset: 0x14AD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_057_tlut_wheel_3 +wario_kart_frame058_wheel0: + symbol: gKartWario058Wheel0 + type: texture + offset: 0x15108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_058_tlut_wheel_0 +wario_kart_frame058_wheel1: + symbol: gKartWario058Wheel1 + type: texture + offset: 0x15108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_058_tlut_wheel_1 +wario_kart_frame058_wheel2: + symbol: gKartWario058Wheel2 + type: texture + offset: 0x15108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_058_tlut_wheel_2 +wario_kart_frame058_wheel3: + symbol: gKartWario058Wheel3 + type: texture + offset: 0x15108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_058_tlut_wheel_3 +wario_kart_frame059_wheel0: + symbol: gKartWario059Wheel0 + type: texture + offset: 0x15730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_059_tlut_wheel_0 +wario_kart_frame059_wheel1: + symbol: gKartWario059Wheel1 + type: texture + offset: 0x15730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_059_tlut_wheel_1 +wario_kart_frame059_wheel2: + symbol: gKartWario059Wheel2 + type: texture + offset: 0x15730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_059_tlut_wheel_2 +wario_kart_frame059_wheel3: + symbol: gKartWario059Wheel3 + type: texture + offset: 0x15730 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_059_tlut_wheel_3 +wario_kart_frame060_wheel0: + symbol: gKartWario060Wheel0 + type: texture + offset: 0x15D60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_060_tlut_wheel_0 +wario_kart_frame060_wheel1: + symbol: gKartWario060Wheel1 + type: texture + offset: 0x15D60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_060_tlut_wheel_1 +wario_kart_frame060_wheel2: + symbol: gKartWario060Wheel2 + type: texture + offset: 0x15D60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_060_tlut_wheel_2 +wario_kart_frame060_wheel3: + symbol: gKartWario060Wheel3 + type: texture + offset: 0x15D60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_060_tlut_wheel_3 +wario_kart_frame061_wheel0: + symbol: gKartWario061Wheel0 + type: texture + offset: 0x163A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_061_tlut_wheel_0 +wario_kart_frame061_wheel1: + symbol: gKartWario061Wheel1 + type: texture + offset: 0x163A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_061_tlut_wheel_1 +wario_kart_frame061_wheel2: + symbol: gKartWario061Wheel2 + type: texture + offset: 0x163A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_061_tlut_wheel_2 +wario_kart_frame061_wheel3: + symbol: gKartWario061Wheel3 + type: texture + offset: 0x163A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_061_tlut_wheel_3 +wario_kart_frame062_wheel0: + symbol: gKartWario062Wheel0 + type: texture + offset: 0x169E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_062_tlut_wheel_0 +wario_kart_frame062_wheel1: + symbol: gKartWario062Wheel1 + type: texture + offset: 0x169E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_062_tlut_wheel_1 +wario_kart_frame062_wheel2: + symbol: gKartWario062Wheel2 + type: texture + offset: 0x169E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_062_tlut_wheel_2 +wario_kart_frame062_wheel3: + symbol: gKartWario062Wheel3 + type: texture + offset: 0x169E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_062_tlut_wheel_3 +wario_kart_frame063_wheel0: + symbol: gKartWario063Wheel0 + type: texture + offset: 0x17034 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_063_tlut_wheel_0 +wario_kart_frame063_wheel1: + symbol: gKartWario063Wheel1 + type: texture + offset: 0x17034 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_063_tlut_wheel_1 +wario_kart_frame063_wheel2: + symbol: gKartWario063Wheel2 + type: texture + offset: 0x17034 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_063_tlut_wheel_2 +wario_kart_frame063_wheel3: + symbol: gKartWario063Wheel3 + type: texture + offset: 0x17034 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_063_tlut_wheel_3 +wario_kart_frame064_wheel0: + symbol: gKartWario064Wheel0 + type: texture + offset: 0x175A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_064_tlut_wheel_0 +wario_kart_frame064_wheel1: + symbol: gKartWario064Wheel1 + type: texture + offset: 0x175A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_064_tlut_wheel_1 +wario_kart_frame064_wheel2: + symbol: gKartWario064Wheel2 + type: texture + offset: 0x175A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_064_tlut_wheel_2 +wario_kart_frame064_wheel3: + symbol: gKartWario064Wheel3 + type: texture + offset: 0x175A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_064_tlut_wheel_3 +wario_kart_frame065_wheel0: + symbol: gKartWario065Wheel0 + type: texture + offset: 0x17B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_065_tlut_wheel_0 +wario_kart_frame065_wheel1: + symbol: gKartWario065Wheel1 + type: texture + offset: 0x17B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_065_tlut_wheel_1 +wario_kart_frame065_wheel2: + symbol: gKartWario065Wheel2 + type: texture + offset: 0x17B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_065_tlut_wheel_2 +wario_kart_frame065_wheel3: + symbol: gKartWario065Wheel3 + type: texture + offset: 0x17B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_065_tlut_wheel_3 +wario_kart_frame066_wheel0: + symbol: gKartWario066Wheel0 + type: texture + offset: 0x180D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_066_tlut_wheel_0 +wario_kart_frame066_wheel1: + symbol: gKartWario066Wheel1 + type: texture + offset: 0x180D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_066_tlut_wheel_1 +wario_kart_frame066_wheel2: + symbol: gKartWario066Wheel2 + type: texture + offset: 0x180D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_066_tlut_wheel_2 +wario_kart_frame066_wheel3: + symbol: gKartWario066Wheel3 + type: texture + offset: 0x180D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_066_tlut_wheel_3 +wario_kart_frame067_wheel0: + symbol: gKartWario067Wheel0 + type: texture + offset: 0x18670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_067_tlut_wheel_0 +wario_kart_frame067_wheel1: + symbol: gKartWario067Wheel1 + type: texture + offset: 0x18670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_067_tlut_wheel_1 +wario_kart_frame067_wheel2: + symbol: gKartWario067Wheel2 + type: texture + offset: 0x18670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_067_tlut_wheel_2 +wario_kart_frame067_wheel3: + symbol: gKartWario067Wheel3 + type: texture + offset: 0x18670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_067_tlut_wheel_3 +wario_kart_frame068_wheel0: + symbol: gKartWario068Wheel0 + type: texture + offset: 0x18C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_068_tlut_wheel_0 +wario_kart_frame068_wheel1: + symbol: gKartWario068Wheel1 + type: texture + offset: 0x18C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_068_tlut_wheel_1 +wario_kart_frame068_wheel2: + symbol: gKartWario068Wheel2 + type: texture + offset: 0x18C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_068_tlut_wheel_2 +wario_kart_frame068_wheel3: + symbol: gKartWario068Wheel3 + type: texture + offset: 0x18C10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_068_tlut_wheel_3 +wario_kart_frame069_wheel0: + symbol: gKartWario069Wheel0 + type: texture + offset: 0x191CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_069_tlut_wheel_0 +wario_kart_frame069_wheel1: + symbol: gKartWario069Wheel1 + type: texture + offset: 0x191CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_069_tlut_wheel_1 +wario_kart_frame069_wheel2: + symbol: gKartWario069Wheel2 + type: texture + offset: 0x191CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_069_tlut_wheel_2 +wario_kart_frame069_wheel3: + symbol: gKartWario069Wheel3 + type: texture + offset: 0x191CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_069_tlut_wheel_3 +wario_kart_frame070_wheel0: + symbol: gKartWario070Wheel0 + type: texture + offset: 0x19784 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_070_tlut_wheel_0 +wario_kart_frame070_wheel1: + symbol: gKartWario070Wheel1 + type: texture + offset: 0x19784 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_070_tlut_wheel_1 +wario_kart_frame070_wheel2: + symbol: gKartWario070Wheel2 + type: texture + offset: 0x19784 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_070_tlut_wheel_2 +wario_kart_frame070_wheel3: + symbol: gKartWario070Wheel3 + type: texture + offset: 0x19784 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_070_tlut_wheel_3 +wario_kart_frame071_wheel0: + symbol: gKartWario071Wheel0 + type: texture + offset: 0x19D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_071_tlut_wheel_0 +wario_kart_frame071_wheel1: + symbol: gKartWario071Wheel1 + type: texture + offset: 0x19D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_071_tlut_wheel_1 +wario_kart_frame071_wheel2: + symbol: gKartWario071Wheel2 + type: texture + offset: 0x19D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_071_tlut_wheel_2 +wario_kart_frame071_wheel3: + symbol: gKartWario071Wheel3 + type: texture + offset: 0x19D58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_071_tlut_wheel_3 +wario_kart_frame072_wheel0: + symbol: gKartWario072Wheel0 + type: texture + offset: 0x1A350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_072_tlut_wheel_0 +wario_kart_frame072_wheel1: + symbol: gKartWario072Wheel1 + type: texture + offset: 0x1A350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_072_tlut_wheel_1 +wario_kart_frame072_wheel2: + symbol: gKartWario072Wheel2 + type: texture + offset: 0x1A350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_072_tlut_wheel_2 +wario_kart_frame072_wheel3: + symbol: gKartWario072Wheel3 + type: texture + offset: 0x1A350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_072_tlut_wheel_3 +wario_kart_frame073_wheel0: + symbol: gKartWario073Wheel0 + type: texture + offset: 0x1A944 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_073_tlut_wheel_0 +wario_kart_frame073_wheel1: + symbol: gKartWario073Wheel1 + type: texture + offset: 0x1A944 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_073_tlut_wheel_1 +wario_kart_frame073_wheel2: + symbol: gKartWario073Wheel2 + type: texture + offset: 0x1A944 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_073_tlut_wheel_2 +wario_kart_frame073_wheel3: + symbol: gKartWario073Wheel3 + type: texture + offset: 0x1A944 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_073_tlut_wheel_3 +wario_kart_frame074_wheel0: + symbol: gKartWario074Wheel0 + type: texture + offset: 0x1AF50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_074_tlut_wheel_0 +wario_kart_frame074_wheel1: + symbol: gKartWario074Wheel1 + type: texture + offset: 0x1AF50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_074_tlut_wheel_1 +wario_kart_frame074_wheel2: + symbol: gKartWario074Wheel2 + type: texture + offset: 0x1AF50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_074_tlut_wheel_2 +wario_kart_frame074_wheel3: + symbol: gKartWario074Wheel3 + type: texture + offset: 0x1AF50 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_074_tlut_wheel_3 +wario_kart_frame075_wheel0: + symbol: gKartWario075Wheel0 + type: texture + offset: 0x1B548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_075_tlut_wheel_0 +wario_kart_frame075_wheel1: + symbol: gKartWario075Wheel1 + type: texture + offset: 0x1B548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_075_tlut_wheel_1 +wario_kart_frame075_wheel2: + symbol: gKartWario075Wheel2 + type: texture + offset: 0x1B548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_075_tlut_wheel_2 +wario_kart_frame075_wheel3: + symbol: gKartWario075Wheel3 + type: texture + offset: 0x1B548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_075_tlut_wheel_3 +wario_kart_frame076_wheel0: + symbol: gKartWario076Wheel0 + type: texture + offset: 0x1BB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_076_tlut_wheel_0 +wario_kart_frame076_wheel1: + symbol: gKartWario076Wheel1 + type: texture + offset: 0x1BB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_076_tlut_wheel_1 +wario_kart_frame076_wheel2: + symbol: gKartWario076Wheel2 + type: texture + offset: 0x1BB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_076_tlut_wheel_2 +wario_kart_frame076_wheel3: + symbol: gKartWario076Wheel3 + type: texture + offset: 0x1BB5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_076_tlut_wheel_3 +wario_kart_frame077_wheel0: + symbol: gKartWario077Wheel0 + type: texture + offset: 0x1C154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_077_tlut_wheel_0 +wario_kart_frame077_wheel1: + symbol: gKartWario077Wheel1 + type: texture + offset: 0x1C154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_077_tlut_wheel_1 +wario_kart_frame077_wheel2: + symbol: gKartWario077Wheel2 + type: texture + offset: 0x1C154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_077_tlut_wheel_2 +wario_kart_frame077_wheel3: + symbol: gKartWario077Wheel3 + type: texture + offset: 0x1C154 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_077_tlut_wheel_3 +wario_kart_frame078_wheel0: + symbol: gKartWario078Wheel0 + type: texture + offset: 0x1C768 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_078_tlut_wheel_0 +wario_kart_frame078_wheel1: + symbol: gKartWario078Wheel1 + type: texture + offset: 0x1C768 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_078_tlut_wheel_1 +wario_kart_frame078_wheel2: + symbol: gKartWario078Wheel2 + type: texture + offset: 0x1C768 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_078_tlut_wheel_2 +wario_kart_frame078_wheel3: + symbol: gKartWario078Wheel3 + type: texture + offset: 0x1C768 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_078_tlut_wheel_3 +wario_kart_frame079_wheel0: + symbol: gKartWario079Wheel0 + type: texture + offset: 0x1CD98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_079_tlut_wheel_0 +wario_kart_frame079_wheel1: + symbol: gKartWario079Wheel1 + type: texture + offset: 0x1CD98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_079_tlut_wheel_1 +wario_kart_frame079_wheel2: + symbol: gKartWario079Wheel2 + type: texture + offset: 0x1CD98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_079_tlut_wheel_2 +wario_kart_frame079_wheel3: + symbol: gKartWario079Wheel3 + type: texture + offset: 0x1CD98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_079_tlut_wheel_3 +wario_kart_frame080_wheel0: + symbol: gKartWario080Wheel0 + type: texture + offset: 0x1D3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_080_tlut_wheel_0 +wario_kart_frame080_wheel1: + symbol: gKartWario080Wheel1 + type: texture + offset: 0x1D3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_080_tlut_wheel_1 +wario_kart_frame080_wheel2: + symbol: gKartWario080Wheel2 + type: texture + offset: 0x1D3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_080_tlut_wheel_2 +wario_kart_frame080_wheel3: + symbol: gKartWario080Wheel3 + type: texture + offset: 0x1D3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_080_tlut_wheel_3 +wario_kart_frame081_wheel0: + symbol: gKartWario081Wheel0 + type: texture + offset: 0x1D9F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_081_tlut_wheel_0 +wario_kart_frame081_wheel1: + symbol: gKartWario081Wheel1 + type: texture + offset: 0x1D9F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_081_tlut_wheel_1 +wario_kart_frame081_wheel2: + symbol: gKartWario081Wheel2 + type: texture + offset: 0x1D9F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_081_tlut_wheel_2 +wario_kart_frame081_wheel3: + symbol: gKartWario081Wheel3 + type: texture + offset: 0x1D9F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_081_tlut_wheel_3 +wario_kart_frame082_wheel0: + symbol: gKartWario082Wheel0 + type: texture + offset: 0x1E038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_082_tlut_wheel_0 +wario_kart_frame082_wheel1: + symbol: gKartWario082Wheel1 + type: texture + offset: 0x1E038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_082_tlut_wheel_1 +wario_kart_frame082_wheel2: + symbol: gKartWario082Wheel2 + type: texture + offset: 0x1E038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_082_tlut_wheel_2 +wario_kart_frame082_wheel3: + symbol: gKartWario082Wheel3 + type: texture + offset: 0x1E038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_082_tlut_wheel_3 +wario_kart_frame083_wheel0: + symbol: gKartWario083Wheel0 + type: texture + offset: 0x1E67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_083_tlut_wheel_0 +wario_kart_frame083_wheel1: + symbol: gKartWario083Wheel1 + type: texture + offset: 0x1E67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_083_tlut_wheel_1 +wario_kart_frame083_wheel2: + symbol: gKartWario083Wheel2 + type: texture + offset: 0x1E67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_083_tlut_wheel_2 +wario_kart_frame083_wheel3: + symbol: gKartWario083Wheel3 + type: texture + offset: 0x1E67C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_083_tlut_wheel_3 +wario_kart_frame084_wheel0: + symbol: gKartWario084Wheel0 + type: texture + offset: 0x1ECD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_084_tlut_wheel_0 +wario_kart_frame084_wheel1: + symbol: gKartWario084Wheel1 + type: texture + offset: 0x1ECD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_084_tlut_wheel_1 +wario_kart_frame084_wheel2: + symbol: gKartWario084Wheel2 + type: texture + offset: 0x1ECD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_084_tlut_wheel_2 +wario_kart_frame084_wheel3: + symbol: gKartWario084Wheel3 + type: texture + offset: 0x1ECD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_084_tlut_wheel_3 +wario_kart_frame085_wheel0: + symbol: gKartWario085Wheel0 + type: texture + offset: 0x1F25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_085_tlut_wheel_0 +wario_kart_frame085_wheel1: + symbol: gKartWario085Wheel1 + type: texture + offset: 0x1F25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_085_tlut_wheel_1 +wario_kart_frame085_wheel2: + symbol: gKartWario085Wheel2 + type: texture + offset: 0x1F25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_085_tlut_wheel_2 +wario_kart_frame085_wheel3: + symbol: gKartWario085Wheel3 + type: texture + offset: 0x1F25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_085_tlut_wheel_3 +wario_kart_frame086_wheel0: + symbol: gKartWario086Wheel0 + type: texture + offset: 0x1F7E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_086_tlut_wheel_0 +wario_kart_frame086_wheel1: + symbol: gKartWario086Wheel1 + type: texture + offset: 0x1F7E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_086_tlut_wheel_1 +wario_kart_frame086_wheel2: + symbol: gKartWario086Wheel2 + type: texture + offset: 0x1F7E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_086_tlut_wheel_2 +wario_kart_frame086_wheel3: + symbol: gKartWario086Wheel3 + type: texture + offset: 0x1F7E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_086_tlut_wheel_3 +wario_kart_frame087_wheel0: + symbol: gKartWario087Wheel0 + type: texture + offset: 0x1FD6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_087_tlut_wheel_0 +wario_kart_frame087_wheel1: + symbol: gKartWario087Wheel1 + type: texture + offset: 0x1FD6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_087_tlut_wheel_1 +wario_kart_frame087_wheel2: + symbol: gKartWario087Wheel2 + type: texture + offset: 0x1FD6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_087_tlut_wheel_2 +wario_kart_frame087_wheel3: + symbol: gKartWario087Wheel3 + type: texture + offset: 0x1FD6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_087_tlut_wheel_3 +wario_kart_frame088_wheel0: + symbol: gKartWario088Wheel0 + type: texture + offset: 0x20330 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_088_tlut_wheel_0 +wario_kart_frame088_wheel1: + symbol: gKartWario088Wheel1 + type: texture + offset: 0x20330 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_088_tlut_wheel_1 +wario_kart_frame088_wheel2: + symbol: gKartWario088Wheel2 + type: texture + offset: 0x20330 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_088_tlut_wheel_2 +wario_kart_frame088_wheel3: + symbol: gKartWario088Wheel3 + type: texture + offset: 0x20330 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_088_tlut_wheel_3 +wario_kart_frame089_wheel0: + symbol: gKartWario089Wheel0 + type: texture + offset: 0x208E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_089_tlut_wheel_0 +wario_kart_frame089_wheel1: + symbol: gKartWario089Wheel1 + type: texture + offset: 0x208E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_089_tlut_wheel_1 +wario_kart_frame089_wheel2: + symbol: gKartWario089Wheel2 + type: texture + offset: 0x208E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_089_tlut_wheel_2 +wario_kart_frame089_wheel3: + symbol: gKartWario089Wheel3 + type: texture + offset: 0x208E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_089_tlut_wheel_3 +wario_kart_frame090_wheel0: + symbol: gKartWario090Wheel0 + type: texture + offset: 0x20E9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_090_tlut_wheel_0 +wario_kart_frame090_wheel1: + symbol: gKartWario090Wheel1 + type: texture + offset: 0x20E9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_090_tlut_wheel_1 +wario_kart_frame090_wheel2: + symbol: gKartWario090Wheel2 + type: texture + offset: 0x20E9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_090_tlut_wheel_2 +wario_kart_frame090_wheel3: + symbol: gKartWario090Wheel3 + type: texture + offset: 0x20E9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_090_tlut_wheel_3 +wario_kart_frame091_wheel0: + symbol: gKartWario091Wheel0 + type: texture + offset: 0x21474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_091_tlut_wheel_0 +wario_kart_frame091_wheel1: + symbol: gKartWario091Wheel1 + type: texture + offset: 0x21474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_091_tlut_wheel_1 +wario_kart_frame091_wheel2: + symbol: gKartWario091Wheel2 + type: texture + offset: 0x21474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_091_tlut_wheel_2 +wario_kart_frame091_wheel3: + symbol: gKartWario091Wheel3 + type: texture + offset: 0x21474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_091_tlut_wheel_3 +wario_kart_frame092_wheel0: + symbol: gKartWario092Wheel0 + type: texture + offset: 0x21A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_092_tlut_wheel_0 +wario_kart_frame092_wheel1: + symbol: gKartWario092Wheel1 + type: texture + offset: 0x21A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_092_tlut_wheel_1 +wario_kart_frame092_wheel2: + symbol: gKartWario092Wheel2 + type: texture + offset: 0x21A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_092_tlut_wheel_2 +wario_kart_frame092_wheel3: + symbol: gKartWario092Wheel3 + type: texture + offset: 0x21A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_092_tlut_wheel_3 +wario_kart_frame093_wheel0: + symbol: gKartWario093Wheel0 + type: texture + offset: 0x22048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_093_tlut_wheel_0 +wario_kart_frame093_wheel1: + symbol: gKartWario093Wheel1 + type: texture + offset: 0x22048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_093_tlut_wheel_1 +wario_kart_frame093_wheel2: + symbol: gKartWario093Wheel2 + type: texture + offset: 0x22048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_093_tlut_wheel_2 +wario_kart_frame093_wheel3: + symbol: gKartWario093Wheel3 + type: texture + offset: 0x22048 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_093_tlut_wheel_3 +wario_kart_frame094_wheel0: + symbol: gKartWario094Wheel0 + type: texture + offset: 0x2262C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_094_tlut_wheel_0 +wario_kart_frame094_wheel1: + symbol: gKartWario094Wheel1 + type: texture + offset: 0x2262C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_094_tlut_wheel_1 +wario_kart_frame094_wheel2: + symbol: gKartWario094Wheel2 + type: texture + offset: 0x2262C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_094_tlut_wheel_2 +wario_kart_frame094_wheel3: + symbol: gKartWario094Wheel3 + type: texture + offset: 0x2262C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_094_tlut_wheel_3 +wario_kart_frame095_wheel0: + symbol: gKartWario095Wheel0 + type: texture + offset: 0x22C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_095_tlut_wheel_0 +wario_kart_frame095_wheel1: + symbol: gKartWario095Wheel1 + type: texture + offset: 0x22C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_095_tlut_wheel_1 +wario_kart_frame095_wheel2: + symbol: gKartWario095Wheel2 + type: texture + offset: 0x22C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_095_tlut_wheel_2 +wario_kart_frame095_wheel3: + symbol: gKartWario095Wheel3 + type: texture + offset: 0x22C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_095_tlut_wheel_3 +wario_kart_frame096_wheel0: + symbol: gKartWario096Wheel0 + type: texture + offset: 0x23224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_096_tlut_wheel_0 +wario_kart_frame096_wheel1: + symbol: gKartWario096Wheel1 + type: texture + offset: 0x23224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_096_tlut_wheel_1 +wario_kart_frame096_wheel2: + symbol: gKartWario096Wheel2 + type: texture + offset: 0x23224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_096_tlut_wheel_2 +wario_kart_frame096_wheel3: + symbol: gKartWario096Wheel3 + type: texture + offset: 0x23224 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_096_tlut_wheel_3 +wario_kart_frame097_wheel0: + symbol: gKartWario097Wheel0 + type: texture + offset: 0x23824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_097_tlut_wheel_0 +wario_kart_frame097_wheel1: + symbol: gKartWario097Wheel1 + type: texture + offset: 0x23824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_097_tlut_wheel_1 +wario_kart_frame097_wheel2: + symbol: gKartWario097Wheel2 + type: texture + offset: 0x23824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_097_tlut_wheel_2 +wario_kart_frame097_wheel3: + symbol: gKartWario097Wheel3 + type: texture + offset: 0x23824 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_097_tlut_wheel_3 +wario_kart_frame098_wheel0: + symbol: gKartWario098Wheel0 + type: texture + offset: 0x23E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_098_tlut_wheel_0 +wario_kart_frame098_wheel1: + symbol: gKartWario098Wheel1 + type: texture + offset: 0x23E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_098_tlut_wheel_1 +wario_kart_frame098_wheel2: + symbol: gKartWario098Wheel2 + type: texture + offset: 0x23E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_098_tlut_wheel_2 +wario_kart_frame098_wheel3: + symbol: gKartWario098Wheel3 + type: texture + offset: 0x23E28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_098_tlut_wheel_3 +wario_kart_frame099_wheel0: + symbol: gKartWario099Wheel0 + type: texture + offset: 0x24430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_099_tlut_wheel_0 +wario_kart_frame099_wheel1: + symbol: gKartWario099Wheel1 + type: texture + offset: 0x24430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_099_tlut_wheel_1 +wario_kart_frame099_wheel2: + symbol: gKartWario099Wheel2 + type: texture + offset: 0x24430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_099_tlut_wheel_2 +wario_kart_frame099_wheel3: + symbol: gKartWario099Wheel3 + type: texture + offset: 0x24430 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_099_tlut_wheel_3 +wario_kart_frame100_wheel0: + symbol: gKartWario100Wheel0 + type: texture + offset: 0x24A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_100_tlut_wheel_0 +wario_kart_frame100_wheel1: + symbol: gKartWario100Wheel1 + type: texture + offset: 0x24A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_100_tlut_wheel_1 +wario_kart_frame100_wheel2: + symbol: gKartWario100Wheel2 + type: texture + offset: 0x24A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_100_tlut_wheel_2 +wario_kart_frame100_wheel3: + symbol: gKartWario100Wheel3 + type: texture + offset: 0x24A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_100_tlut_wheel_3 +wario_kart_frame101_wheel0: + symbol: gKartWario101Wheel0 + type: texture + offset: 0x250A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_101_tlut_wheel_0 +wario_kart_frame101_wheel1: + symbol: gKartWario101Wheel1 + type: texture + offset: 0x250A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_101_tlut_wheel_1 +wario_kart_frame101_wheel2: + symbol: gKartWario101Wheel2 + type: texture + offset: 0x250A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_101_tlut_wheel_2 +wario_kart_frame101_wheel3: + symbol: gKartWario101Wheel3 + type: texture + offset: 0x250A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_101_tlut_wheel_3 +wario_kart_frame102_wheel0: + symbol: gKartWario102Wheel0 + type: texture + offset: 0x256E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_102_tlut_wheel_0 +wario_kart_frame102_wheel1: + symbol: gKartWario102Wheel1 + type: texture + offset: 0x256E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_102_tlut_wheel_1 +wario_kart_frame102_wheel2: + symbol: gKartWario102Wheel2 + type: texture + offset: 0x256E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_102_tlut_wheel_2 +wario_kart_frame102_wheel3: + symbol: gKartWario102Wheel3 + type: texture + offset: 0x256E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_102_tlut_wheel_3 +wario_kart_frame103_wheel0: + symbol: gKartWario103Wheel0 + type: texture + offset: 0x25D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_103_tlut_wheel_0 +wario_kart_frame103_wheel1: + symbol: gKartWario103Wheel1 + type: texture + offset: 0x25D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_103_tlut_wheel_1 +wario_kart_frame103_wheel2: + symbol: gKartWario103Wheel2 + type: texture + offset: 0x25D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_103_tlut_wheel_2 +wario_kart_frame103_wheel3: + symbol: gKartWario103Wheel3 + type: texture + offset: 0x25D28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_103_tlut_wheel_3 +wario_kart_frame104_wheel0: + symbol: gKartWario104Wheel0 + type: texture + offset: 0x26380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_104_tlut_wheel_0 +wario_kart_frame104_wheel1: + symbol: gKartWario104Wheel1 + type: texture + offset: 0x26380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_104_tlut_wheel_1 +wario_kart_frame104_wheel2: + symbol: gKartWario104Wheel2 + type: texture + offset: 0x26380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_104_tlut_wheel_2 +wario_kart_frame104_wheel3: + symbol: gKartWario104Wheel3 + type: texture + offset: 0x26380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_104_tlut_wheel_3 +wario_kart_frame105_wheel0: + symbol: gKartWario105Wheel0 + type: texture + offset: 0x269E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_105_tlut_wheel_0 +wario_kart_frame105_wheel1: + symbol: gKartWario105Wheel1 + type: texture + offset: 0x269E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_105_tlut_wheel_1 +wario_kart_frame105_wheel2: + symbol: gKartWario105Wheel2 + type: texture + offset: 0x269E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_105_tlut_wheel_2 +wario_kart_frame105_wheel3: + symbol: gKartWario105Wheel3 + type: texture + offset: 0x269E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_105_tlut_wheel_3 +wario_kart_frame106_wheel0: + symbol: gKartWario106Wheel0 + type: texture + offset: 0x26F78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_106_tlut_wheel_0 +wario_kart_frame106_wheel1: + symbol: gKartWario106Wheel1 + type: texture + offset: 0x26F78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_106_tlut_wheel_1 +wario_kart_frame106_wheel2: + symbol: gKartWario106Wheel2 + type: texture + offset: 0x26F78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_106_tlut_wheel_2 +wario_kart_frame106_wheel3: + symbol: gKartWario106Wheel3 + type: texture + offset: 0x26F78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_106_tlut_wheel_3 +wario_kart_frame107_wheel0: + symbol: gKartWario107Wheel0 + type: texture + offset: 0x2751C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_107_tlut_wheel_0 +wario_kart_frame107_wheel1: + symbol: gKartWario107Wheel1 + type: texture + offset: 0x2751C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_107_tlut_wheel_1 +wario_kart_frame107_wheel2: + symbol: gKartWario107Wheel2 + type: texture + offset: 0x2751C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_107_tlut_wheel_2 +wario_kart_frame107_wheel3: + symbol: gKartWario107Wheel3 + type: texture + offset: 0x2751C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_107_tlut_wheel_3 +wario_kart_frame108_wheel0: + symbol: gKartWario108Wheel0 + type: texture + offset: 0x27AA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_108_tlut_wheel_0 +wario_kart_frame108_wheel1: + symbol: gKartWario108Wheel1 + type: texture + offset: 0x27AA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_108_tlut_wheel_1 +wario_kart_frame108_wheel2: + symbol: gKartWario108Wheel2 + type: texture + offset: 0x27AA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_108_tlut_wheel_2 +wario_kart_frame108_wheel3: + symbol: gKartWario108Wheel3 + type: texture + offset: 0x27AA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_108_tlut_wheel_3 +wario_kart_frame109_wheel0: + symbol: gKartWario109Wheel0 + type: texture + offset: 0x28050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_109_tlut_wheel_0 +wario_kart_frame109_wheel1: + symbol: gKartWario109Wheel1 + type: texture + offset: 0x28050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_109_tlut_wheel_1 +wario_kart_frame109_wheel2: + symbol: gKartWario109Wheel2 + type: texture + offset: 0x28050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_109_tlut_wheel_2 +wario_kart_frame109_wheel3: + symbol: gKartWario109Wheel3 + type: texture + offset: 0x28050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_109_tlut_wheel_3 +wario_kart_frame110_wheel0: + symbol: gKartWario110Wheel0 + type: texture + offset: 0x28618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_110_tlut_wheel_0 +wario_kart_frame110_wheel1: + symbol: gKartWario110Wheel1 + type: texture + offset: 0x28618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_110_tlut_wheel_1 +wario_kart_frame110_wheel2: + symbol: gKartWario110Wheel2 + type: texture + offset: 0x28618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_110_tlut_wheel_2 +wario_kart_frame110_wheel3: + symbol: gKartWario110Wheel3 + type: texture + offset: 0x28618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_110_tlut_wheel_3 +wario_kart_frame111_wheel0: + symbol: gKartWario111Wheel0 + type: texture + offset: 0x28BEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_111_tlut_wheel_0 +wario_kart_frame111_wheel1: + symbol: gKartWario111Wheel1 + type: texture + offset: 0x28BEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_111_tlut_wheel_1 +wario_kart_frame111_wheel2: + symbol: gKartWario111Wheel2 + type: texture + offset: 0x28BEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_111_tlut_wheel_2 +wario_kart_frame111_wheel3: + symbol: gKartWario111Wheel3 + type: texture + offset: 0x28BEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_111_tlut_wheel_3 +wario_kart_frame112_wheel0: + symbol: gKartWario112Wheel0 + type: texture + offset: 0x291D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_112_tlut_wheel_0 +wario_kart_frame112_wheel1: + symbol: gKartWario112Wheel1 + type: texture + offset: 0x291D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_112_tlut_wheel_1 +wario_kart_frame112_wheel2: + symbol: gKartWario112Wheel2 + type: texture + offset: 0x291D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_112_tlut_wheel_2 +wario_kart_frame112_wheel3: + symbol: gKartWario112Wheel3 + type: texture + offset: 0x291D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_112_tlut_wheel_3 +wario_kart_frame113_wheel0: + symbol: gKartWario113Wheel0 + type: texture + offset: 0x297B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_113_tlut_wheel_0 +wario_kart_frame113_wheel1: + symbol: gKartWario113Wheel1 + type: texture + offset: 0x297B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_113_tlut_wheel_1 +wario_kart_frame113_wheel2: + symbol: gKartWario113Wheel2 + type: texture + offset: 0x297B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_113_tlut_wheel_2 +wario_kart_frame113_wheel3: + symbol: gKartWario113Wheel3 + type: texture + offset: 0x297B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_113_tlut_wheel_3 +wario_kart_frame114_wheel0: + symbol: gKartWario114Wheel0 + type: texture + offset: 0x29DA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_114_tlut_wheel_0 +wario_kart_frame114_wheel1: + symbol: gKartWario114Wheel1 + type: texture + offset: 0x29DA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_114_tlut_wheel_1 +wario_kart_frame114_wheel2: + symbol: gKartWario114Wheel2 + type: texture + offset: 0x29DA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_114_tlut_wheel_2 +wario_kart_frame114_wheel3: + symbol: gKartWario114Wheel3 + type: texture + offset: 0x29DA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_114_tlut_wheel_3 +wario_kart_frame115_wheel0: + symbol: gKartWario115Wheel0 + type: texture + offset: 0x2A3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_115_tlut_wheel_0 +wario_kart_frame115_wheel1: + symbol: gKartWario115Wheel1 + type: texture + offset: 0x2A3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_115_tlut_wheel_1 +wario_kart_frame115_wheel2: + symbol: gKartWario115Wheel2 + type: texture + offset: 0x2A3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_115_tlut_wheel_2 +wario_kart_frame115_wheel3: + symbol: gKartWario115Wheel3 + type: texture + offset: 0x2A3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_115_tlut_wheel_3 +wario_kart_frame116_wheel0: + symbol: gKartWario116Wheel0 + type: texture + offset: 0x2A9A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_116_tlut_wheel_0 +wario_kart_frame116_wheel1: + symbol: gKartWario116Wheel1 + type: texture + offset: 0x2A9A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_116_tlut_wheel_1 +wario_kart_frame116_wheel2: + symbol: gKartWario116Wheel2 + type: texture + offset: 0x2A9A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_116_tlut_wheel_2 +wario_kart_frame116_wheel3: + symbol: gKartWario116Wheel3 + type: texture + offset: 0x2A9A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_116_tlut_wheel_3 +wario_kart_frame117_wheel0: + symbol: gKartWario117Wheel0 + type: texture + offset: 0x2AFB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_117_tlut_wheel_0 +wario_kart_frame117_wheel1: + symbol: gKartWario117Wheel1 + type: texture + offset: 0x2AFB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_117_tlut_wheel_1 +wario_kart_frame117_wheel2: + symbol: gKartWario117Wheel2 + type: texture + offset: 0x2AFB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_117_tlut_wheel_2 +wario_kart_frame117_wheel3: + symbol: gKartWario117Wheel3 + type: texture + offset: 0x2AFB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_117_tlut_wheel_3 +wario_kart_frame118_wheel0: + symbol: gKartWario118Wheel0 + type: texture + offset: 0x2B5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_118_tlut_wheel_0 +wario_kart_frame118_wheel1: + symbol: gKartWario118Wheel1 + type: texture + offset: 0x2B5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_118_tlut_wheel_1 +wario_kart_frame118_wheel2: + symbol: gKartWario118Wheel2 + type: texture + offset: 0x2B5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_118_tlut_wheel_2 +wario_kart_frame118_wheel3: + symbol: gKartWario118Wheel3 + type: texture + offset: 0x2B5BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_118_tlut_wheel_3 +wario_kart_frame119_wheel0: + symbol: gKartWario119Wheel0 + type: texture + offset: 0x2BBC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_119_tlut_wheel_0 +wario_kart_frame119_wheel1: + symbol: gKartWario119Wheel1 + type: texture + offset: 0x2BBC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_119_tlut_wheel_1 +wario_kart_frame119_wheel2: + symbol: gKartWario119Wheel2 + type: texture + offset: 0x2BBC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_119_tlut_wheel_2 +wario_kart_frame119_wheel3: + symbol: gKartWario119Wheel3 + type: texture + offset: 0x2BBC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_119_tlut_wheel_3 +wario_kart_frame120_wheel0: + symbol: gKartWario120Wheel0 + type: texture + offset: 0x2C1E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_120_tlut_wheel_0 +wario_kart_frame120_wheel1: + symbol: gKartWario120Wheel1 + type: texture + offset: 0x2C1E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_120_tlut_wheel_1 +wario_kart_frame120_wheel2: + symbol: gKartWario120Wheel2 + type: texture + offset: 0x2C1E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_120_tlut_wheel_2 +wario_kart_frame120_wheel3: + symbol: gKartWario120Wheel3 + type: texture + offset: 0x2C1E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_120_tlut_wheel_3 +wario_kart_frame121_wheel0: + symbol: gKartWario121Wheel0 + type: texture + offset: 0x2C820 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_121_tlut_wheel_0 +wario_kart_frame121_wheel1: + symbol: gKartWario121Wheel1 + type: texture + offset: 0x2C820 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_121_tlut_wheel_1 +wario_kart_frame121_wheel2: + symbol: gKartWario121Wheel2 + type: texture + offset: 0x2C820 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_121_tlut_wheel_2 +wario_kart_frame121_wheel3: + symbol: gKartWario121Wheel3 + type: texture + offset: 0x2C820 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_121_tlut_wheel_3 +wario_kart_frame122_wheel0: + symbol: gKartWario122Wheel0 + type: texture + offset: 0x2CE68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_122_tlut_wheel_0 +wario_kart_frame122_wheel1: + symbol: gKartWario122Wheel1 + type: texture + offset: 0x2CE68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_122_tlut_wheel_1 +wario_kart_frame122_wheel2: + symbol: gKartWario122Wheel2 + type: texture + offset: 0x2CE68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_122_tlut_wheel_2 +wario_kart_frame122_wheel3: + symbol: gKartWario122Wheel3 + type: texture + offset: 0x2CE68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_122_tlut_wheel_3 +wario_kart_frame123_wheel0: + symbol: gKartWario123Wheel0 + type: texture + offset: 0x2D4C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_123_tlut_wheel_0 +wario_kart_frame123_wheel1: + symbol: gKartWario123Wheel1 + type: texture + offset: 0x2D4C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_123_tlut_wheel_1 +wario_kart_frame123_wheel2: + symbol: gKartWario123Wheel2 + type: texture + offset: 0x2D4C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_123_tlut_wheel_2 +wario_kart_frame123_wheel3: + symbol: gKartWario123Wheel3 + type: texture + offset: 0x2D4C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_123_tlut_wheel_3 +wario_kart_frame124_wheel0: + symbol: gKartWario124Wheel0 + type: texture + offset: 0x2DB28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_124_tlut_wheel_0 +wario_kart_frame124_wheel1: + symbol: gKartWario124Wheel1 + type: texture + offset: 0x2DB28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_124_tlut_wheel_1 +wario_kart_frame124_wheel2: + symbol: gKartWario124Wheel2 + type: texture + offset: 0x2DB28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_124_tlut_wheel_2 +wario_kart_frame124_wheel3: + symbol: gKartWario124Wheel3 + type: texture + offset: 0x2DB28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_124_tlut_wheel_3 +wario_kart_frame125_wheel0: + symbol: gKartWario125Wheel0 + type: texture + offset: 0x2E190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_125_tlut_wheel_0 +wario_kart_frame125_wheel1: + symbol: gKartWario125Wheel1 + type: texture + offset: 0x2E190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_125_tlut_wheel_1 +wario_kart_frame125_wheel2: + symbol: gKartWario125Wheel2 + type: texture + offset: 0x2E190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_125_tlut_wheel_2 +wario_kart_frame125_wheel3: + symbol: gKartWario125Wheel3 + type: texture + offset: 0x2E190 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_125_tlut_wheel_3 +wario_kart_frame126_wheel0: + symbol: gKartWario126Wheel0 + type: texture + offset: 0x2E80C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_126_tlut_wheel_0 +wario_kart_frame126_wheel1: + symbol: gKartWario126Wheel1 + type: texture + offset: 0x2E80C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_126_tlut_wheel_1 +wario_kart_frame126_wheel2: + symbol: gKartWario126Wheel2 + type: texture + offset: 0x2E80C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_126_tlut_wheel_2 +wario_kart_frame126_wheel3: + symbol: gKartWario126Wheel3 + type: texture + offset: 0x2E80C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_126_tlut_wheel_3 +wario_kart_frame127_wheel0: + symbol: gKartWario127Wheel0 + type: texture + offset: 0x2ED9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_127_tlut_wheel_0 +wario_kart_frame127_wheel1: + symbol: gKartWario127Wheel1 + type: texture + offset: 0x2ED9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_127_tlut_wheel_1 +wario_kart_frame127_wheel2: + symbol: gKartWario127Wheel2 + type: texture + offset: 0x2ED9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_127_tlut_wheel_2 +wario_kart_frame127_wheel3: + symbol: gKartWario127Wheel3 + type: texture + offset: 0x2ED9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_127_tlut_wheel_3 +wario_kart_frame128_wheel0: + symbol: gKartWario128Wheel0 + type: texture + offset: 0x2F338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_128_tlut_wheel_0 +wario_kart_frame128_wheel1: + symbol: gKartWario128Wheel1 + type: texture + offset: 0x2F338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_128_tlut_wheel_1 +wario_kart_frame128_wheel2: + symbol: gKartWario128Wheel2 + type: texture + offset: 0x2F338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_128_tlut_wheel_2 +wario_kart_frame128_wheel3: + symbol: gKartWario128Wheel3 + type: texture + offset: 0x2F338 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_128_tlut_wheel_3 +wario_kart_frame129_wheel0: + symbol: gKartWario129Wheel0 + type: texture + offset: 0x2F8F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_129_tlut_wheel_0 +wario_kart_frame129_wheel1: + symbol: gKartWario129Wheel1 + type: texture + offset: 0x2F8F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_129_tlut_wheel_1 +wario_kart_frame129_wheel2: + symbol: gKartWario129Wheel2 + type: texture + offset: 0x2F8F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_129_tlut_wheel_2 +wario_kart_frame129_wheel3: + symbol: gKartWario129Wheel3 + type: texture + offset: 0x2F8F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_129_tlut_wheel_3 +wario_kart_frame130_wheel0: + symbol: gKartWario130Wheel0 + type: texture + offset: 0x2FEB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_130_tlut_wheel_0 +wario_kart_frame130_wheel1: + symbol: gKartWario130Wheel1 + type: texture + offset: 0x2FEB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_130_tlut_wheel_1 +wario_kart_frame130_wheel2: + symbol: gKartWario130Wheel2 + type: texture + offset: 0x2FEB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_130_tlut_wheel_2 +wario_kart_frame130_wheel3: + symbol: gKartWario130Wheel3 + type: texture + offset: 0x2FEB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_130_tlut_wheel_3 +wario_kart_frame131_wheel0: + symbol: gKartWario131Wheel0 + type: texture + offset: 0x30474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_131_tlut_wheel_0 +wario_kart_frame131_wheel1: + symbol: gKartWario131Wheel1 + type: texture + offset: 0x30474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_131_tlut_wheel_1 +wario_kart_frame131_wheel2: + symbol: gKartWario131Wheel2 + type: texture + offset: 0x30474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_131_tlut_wheel_2 +wario_kart_frame131_wheel3: + symbol: gKartWario131Wheel3 + type: texture + offset: 0x30474 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_131_tlut_wheel_3 +wario_kart_frame132_wheel0: + symbol: gKartWario132Wheel0 + type: texture + offset: 0x30A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_132_tlut_wheel_0 +wario_kart_frame132_wheel1: + symbol: gKartWario132Wheel1 + type: texture + offset: 0x30A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_132_tlut_wheel_1 +wario_kart_frame132_wheel2: + symbol: gKartWario132Wheel2 + type: texture + offset: 0x30A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_132_tlut_wheel_2 +wario_kart_frame132_wheel3: + symbol: gKartWario132Wheel3 + type: texture + offset: 0x30A40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_132_tlut_wheel_3 +wario_kart_frame133_wheel0: + symbol: gKartWario133Wheel0 + type: texture + offset: 0x31024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_133_tlut_wheel_0 +wario_kart_frame133_wheel1: + symbol: gKartWario133Wheel1 + type: texture + offset: 0x31024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_133_tlut_wheel_1 +wario_kart_frame133_wheel2: + symbol: gKartWario133Wheel2 + type: texture + offset: 0x31024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_133_tlut_wheel_2 +wario_kart_frame133_wheel3: + symbol: gKartWario133Wheel3 + type: texture + offset: 0x31024 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_133_tlut_wheel_3 +wario_kart_frame134_wheel0: + symbol: gKartWario134Wheel0 + type: texture + offset: 0x31618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_134_tlut_wheel_0 +wario_kart_frame134_wheel1: + symbol: gKartWario134Wheel1 + type: texture + offset: 0x31618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_134_tlut_wheel_1 +wario_kart_frame134_wheel2: + symbol: gKartWario134Wheel2 + type: texture + offset: 0x31618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_134_tlut_wheel_2 +wario_kart_frame134_wheel3: + symbol: gKartWario134Wheel3 + type: texture + offset: 0x31618 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_134_tlut_wheel_3 +wario_kart_frame135_wheel0: + symbol: gKartWario135Wheel0 + type: texture + offset: 0x31C0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_135_tlut_wheel_0 +wario_kart_frame135_wheel1: + symbol: gKartWario135Wheel1 + type: texture + offset: 0x31C0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_135_tlut_wheel_1 +wario_kart_frame135_wheel2: + symbol: gKartWario135Wheel2 + type: texture + offset: 0x31C0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_135_tlut_wheel_2 +wario_kart_frame135_wheel3: + symbol: gKartWario135Wheel3 + type: texture + offset: 0x31C0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_135_tlut_wheel_3 +wario_kart_frame136_wheel0: + symbol: gKartWario136Wheel0 + type: texture + offset: 0x321F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_136_tlut_wheel_0 +wario_kart_frame136_wheel1: + symbol: gKartWario136Wheel1 + type: texture + offset: 0x321F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_136_tlut_wheel_1 +wario_kart_frame136_wheel2: + symbol: gKartWario136Wheel2 + type: texture + offset: 0x321F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_136_tlut_wheel_2 +wario_kart_frame136_wheel3: + symbol: gKartWario136Wheel3 + type: texture + offset: 0x321F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_136_tlut_wheel_3 +wario_kart_frame137_wheel0: + symbol: gKartWario137Wheel0 + type: texture + offset: 0x327F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_137_tlut_wheel_0 +wario_kart_frame137_wheel1: + symbol: gKartWario137Wheel1 + type: texture + offset: 0x327F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_137_tlut_wheel_1 +wario_kart_frame137_wheel2: + symbol: gKartWario137Wheel2 + type: texture + offset: 0x327F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_137_tlut_wheel_2 +wario_kart_frame137_wheel3: + symbol: gKartWario137Wheel3 + type: texture + offset: 0x327F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_137_tlut_wheel_3 +wario_kart_frame138_wheel0: + symbol: gKartWario138Wheel0 + type: texture + offset: 0x32DF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_138_tlut_wheel_0 +wario_kart_frame138_wheel1: + symbol: gKartWario138Wheel1 + type: texture + offset: 0x32DF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_138_tlut_wheel_1 +wario_kart_frame138_wheel2: + symbol: gKartWario138Wheel2 + type: texture + offset: 0x32DF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_138_tlut_wheel_2 +wario_kart_frame138_wheel3: + symbol: gKartWario138Wheel3 + type: texture + offset: 0x32DF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_138_tlut_wheel_3 +wario_kart_frame139_wheel0: + symbol: gKartWario139Wheel0 + type: texture + offset: 0x333F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_139_tlut_wheel_0 +wario_kart_frame139_wheel1: + symbol: gKartWario139Wheel1 + type: texture + offset: 0x333F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_139_tlut_wheel_1 +wario_kart_frame139_wheel2: + symbol: gKartWario139Wheel2 + type: texture + offset: 0x333F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_139_tlut_wheel_2 +wario_kart_frame139_wheel3: + symbol: gKartWario139Wheel3 + type: texture + offset: 0x333F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_139_tlut_wheel_3 +wario_kart_frame140_wheel0: + symbol: gKartWario140Wheel0 + type: texture + offset: 0x339FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_140_tlut_wheel_0 +wario_kart_frame140_wheel1: + symbol: gKartWario140Wheel1 + type: texture + offset: 0x339FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_140_tlut_wheel_1 +wario_kart_frame140_wheel2: + symbol: gKartWario140Wheel2 + type: texture + offset: 0x339FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_140_tlut_wheel_2 +wario_kart_frame140_wheel3: + symbol: gKartWario140Wheel3 + type: texture + offset: 0x339FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_140_tlut_wheel_3 +wario_kart_frame141_wheel0: + symbol: gKartWario141Wheel0 + type: texture + offset: 0x34038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_141_tlut_wheel_0 +wario_kart_frame141_wheel1: + symbol: gKartWario141Wheel1 + type: texture + offset: 0x34038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_141_tlut_wheel_1 +wario_kart_frame141_wheel2: + symbol: gKartWario141Wheel2 + type: texture + offset: 0x34038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_141_tlut_wheel_2 +wario_kart_frame141_wheel3: + symbol: gKartWario141Wheel3 + type: texture + offset: 0x34038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_141_tlut_wheel_3 +wario_kart_frame142_wheel0: + symbol: gKartWario142Wheel0 + type: texture + offset: 0x34670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_142_tlut_wheel_0 +wario_kart_frame142_wheel1: + symbol: gKartWario142Wheel1 + type: texture + offset: 0x34670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_142_tlut_wheel_1 +wario_kart_frame142_wheel2: + symbol: gKartWario142Wheel2 + type: texture + offset: 0x34670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_142_tlut_wheel_2 +wario_kart_frame142_wheel3: + symbol: gKartWario142Wheel3 + type: texture + offset: 0x34670 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_142_tlut_wheel_3 +wario_kart_frame143_wheel0: + symbol: gKartWario143Wheel0 + type: texture + offset: 0x34CC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_143_tlut_wheel_0 +wario_kart_frame143_wheel1: + symbol: gKartWario143Wheel1 + type: texture + offset: 0x34CC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_143_tlut_wheel_1 +wario_kart_frame143_wheel2: + symbol: gKartWario143Wheel2 + type: texture + offset: 0x34CC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_143_tlut_wheel_2 +wario_kart_frame143_wheel3: + symbol: gKartWario143Wheel3 + type: texture + offset: 0x34CC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_143_tlut_wheel_3 +wario_kart_frame144_wheel0: + symbol: gKartWario144Wheel0 + type: texture + offset: 0x3530C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_144_tlut_wheel_0 +wario_kart_frame144_wheel1: + symbol: gKartWario144Wheel1 + type: texture + offset: 0x3530C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_144_tlut_wheel_1 +wario_kart_frame144_wheel2: + symbol: gKartWario144Wheel2 + type: texture + offset: 0x3530C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_144_tlut_wheel_2 +wario_kart_frame144_wheel3: + symbol: gKartWario144Wheel3 + type: texture + offset: 0x3530C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_144_tlut_wheel_3 +wario_kart_frame145_wheel0: + symbol: gKartWario145Wheel0 + type: texture + offset: 0x35964 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_145_tlut_wheel_0 +wario_kart_frame145_wheel1: + symbol: gKartWario145Wheel1 + type: texture + offset: 0x35964 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_145_tlut_wheel_1 +wario_kart_frame145_wheel2: + symbol: gKartWario145Wheel2 + type: texture + offset: 0x35964 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_145_tlut_wheel_2 +wario_kart_frame145_wheel3: + symbol: gKartWario145Wheel3 + type: texture + offset: 0x35964 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_145_tlut_wheel_3 +wario_kart_frame146_wheel0: + symbol: gKartWario146Wheel0 + type: texture + offset: 0x35FC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_146_tlut_wheel_0 +wario_kart_frame146_wheel1: + symbol: gKartWario146Wheel1 + type: texture + offset: 0x35FC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_146_tlut_wheel_1 +wario_kart_frame146_wheel2: + symbol: gKartWario146Wheel2 + type: texture + offset: 0x35FC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_146_tlut_wheel_2 +wario_kart_frame146_wheel3: + symbol: gKartWario146Wheel3 + type: texture + offset: 0x35FC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_146_tlut_wheel_3 +wario_kart_frame147_wheel0: + symbol: gKartWario147Wheel0 + type: texture + offset: 0x36654 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_147_tlut_wheel_0 +wario_kart_frame147_wheel1: + symbol: gKartWario147Wheel1 + type: texture + offset: 0x36654 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_147_tlut_wheel_1 +wario_kart_frame147_wheel2: + symbol: gKartWario147Wheel2 + type: texture + offset: 0x36654 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_147_tlut_wheel_2 +wario_kart_frame147_wheel3: + symbol: gKartWario147Wheel3 + type: texture + offset: 0x36654 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_147_tlut_wheel_3 +wario_kart_frame148_wheel0: + symbol: gKartWario148Wheel0 + type: texture + offset: 0x36BD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_148_tlut_wheel_0 +wario_kart_frame148_wheel1: + symbol: gKartWario148Wheel1 + type: texture + offset: 0x36BD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_148_tlut_wheel_1 +wario_kart_frame148_wheel2: + symbol: gKartWario148Wheel2 + type: texture + offset: 0x36BD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_148_tlut_wheel_2 +wario_kart_frame148_wheel3: + symbol: gKartWario148Wheel3 + type: texture + offset: 0x36BD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_148_tlut_wheel_3 +wario_kart_frame149_wheel0: + symbol: gKartWario149Wheel0 + type: texture + offset: 0x37198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_149_tlut_wheel_0 +wario_kart_frame149_wheel1: + symbol: gKartWario149Wheel1 + type: texture + offset: 0x37198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_149_tlut_wheel_1 +wario_kart_frame149_wheel2: + symbol: gKartWario149Wheel2 + type: texture + offset: 0x37198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_149_tlut_wheel_2 +wario_kart_frame149_wheel3: + symbol: gKartWario149Wheel3 + type: texture + offset: 0x37198 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_149_tlut_wheel_3 +wario_kart_frame150_wheel0: + symbol: gKartWario150Wheel0 + type: texture + offset: 0x3773C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_150_tlut_wheel_0 +wario_kart_frame150_wheel1: + symbol: gKartWario150Wheel1 + type: texture + offset: 0x3773C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_150_tlut_wheel_1 +wario_kart_frame150_wheel2: + symbol: gKartWario150Wheel2 + type: texture + offset: 0x3773C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_150_tlut_wheel_2 +wario_kart_frame150_wheel3: + symbol: gKartWario150Wheel3 + type: texture + offset: 0x3773C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_150_tlut_wheel_3 +wario_kart_frame151_wheel0: + symbol: gKartWario151Wheel0 + type: texture + offset: 0x37D08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_151_tlut_wheel_0 +wario_kart_frame151_wheel1: + symbol: gKartWario151Wheel1 + type: texture + offset: 0x37D08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_151_tlut_wheel_1 +wario_kart_frame151_wheel2: + symbol: gKartWario151Wheel2 + type: texture + offset: 0x37D08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_151_tlut_wheel_2 +wario_kart_frame151_wheel3: + symbol: gKartWario151Wheel3 + type: texture + offset: 0x37D08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_151_tlut_wheel_3 +wario_kart_frame152_wheel0: + symbol: gKartWario152Wheel0 + type: texture + offset: 0x382D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_152_tlut_wheel_0 +wario_kart_frame152_wheel1: + symbol: gKartWario152Wheel1 + type: texture + offset: 0x382D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_152_tlut_wheel_1 +wario_kart_frame152_wheel2: + symbol: gKartWario152Wheel2 + type: texture + offset: 0x382D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_152_tlut_wheel_2 +wario_kart_frame152_wheel3: + symbol: gKartWario152Wheel3 + type: texture + offset: 0x382D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_152_tlut_wheel_3 +wario_kart_frame153_wheel0: + symbol: gKartWario153Wheel0 + type: texture + offset: 0x38890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_153_tlut_wheel_0 +wario_kart_frame153_wheel1: + symbol: gKartWario153Wheel1 + type: texture + offset: 0x38890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_153_tlut_wheel_1 +wario_kart_frame153_wheel2: + symbol: gKartWario153Wheel2 + type: texture + offset: 0x38890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_153_tlut_wheel_2 +wario_kart_frame153_wheel3: + symbol: gKartWario153Wheel3 + type: texture + offset: 0x38890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_153_tlut_wheel_3 +wario_kart_frame154_wheel0: + symbol: gKartWario154Wheel0 + type: texture + offset: 0x38E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_154_tlut_wheel_0 +wario_kart_frame154_wheel1: + symbol: gKartWario154Wheel1 + type: texture + offset: 0x38E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_154_tlut_wheel_1 +wario_kart_frame154_wheel2: + symbol: gKartWario154Wheel2 + type: texture + offset: 0x38E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_154_tlut_wheel_2 +wario_kart_frame154_wheel3: + symbol: gKartWario154Wheel3 + type: texture + offset: 0x38E74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_154_tlut_wheel_3 +wario_kart_frame155_wheel0: + symbol: gKartWario155Wheel0 + type: texture + offset: 0x39464 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_155_tlut_wheel_0 +wario_kart_frame155_wheel1: + symbol: gKartWario155Wheel1 + type: texture + offset: 0x39464 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_155_tlut_wheel_1 +wario_kart_frame155_wheel2: + symbol: gKartWario155Wheel2 + type: texture + offset: 0x39464 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_155_tlut_wheel_2 +wario_kart_frame155_wheel3: + symbol: gKartWario155Wheel3 + type: texture + offset: 0x39464 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_155_tlut_wheel_3 +wario_kart_frame156_wheel0: + symbol: gKartWario156Wheel0 + type: texture + offset: 0x39A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_156_tlut_wheel_0 +wario_kart_frame156_wheel1: + symbol: gKartWario156Wheel1 + type: texture + offset: 0x39A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_156_tlut_wheel_1 +wario_kart_frame156_wheel2: + symbol: gKartWario156Wheel2 + type: texture + offset: 0x39A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_156_tlut_wheel_2 +wario_kart_frame156_wheel3: + symbol: gKartWario156Wheel3 + type: texture + offset: 0x39A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_156_tlut_wheel_3 +wario_kart_frame157_wheel0: + symbol: gKartWario157Wheel0 + type: texture + offset: 0x3A050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_157_tlut_wheel_0 +wario_kart_frame157_wheel1: + symbol: gKartWario157Wheel1 + type: texture + offset: 0x3A050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_157_tlut_wheel_1 +wario_kart_frame157_wheel2: + symbol: gKartWario157Wheel2 + type: texture + offset: 0x3A050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_157_tlut_wheel_2 +wario_kart_frame157_wheel3: + symbol: gKartWario157Wheel3 + type: texture + offset: 0x3A050 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_157_tlut_wheel_3 +wario_kart_frame158_wheel0: + symbol: gKartWario158Wheel0 + type: texture + offset: 0x3A66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_158_tlut_wheel_0 +wario_kart_frame158_wheel1: + symbol: gKartWario158Wheel1 + type: texture + offset: 0x3A66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_158_tlut_wheel_1 +wario_kart_frame158_wheel2: + symbol: gKartWario158Wheel2 + type: texture + offset: 0x3A66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_158_tlut_wheel_2 +wario_kart_frame158_wheel3: + symbol: gKartWario158Wheel3 + type: texture + offset: 0x3A66C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_158_tlut_wheel_3 +wario_kart_frame159_wheel0: + symbol: gKartWario159Wheel0 + type: texture + offset: 0x3AC7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_159_tlut_wheel_0 +wario_kart_frame159_wheel1: + symbol: gKartWario159Wheel1 + type: texture + offset: 0x3AC7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_159_tlut_wheel_1 +wario_kart_frame159_wheel2: + symbol: gKartWario159Wheel2 + type: texture + offset: 0x3AC7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_159_tlut_wheel_2 +wario_kart_frame159_wheel3: + symbol: gKartWario159Wheel3 + type: texture + offset: 0x3AC7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_159_tlut_wheel_3 +wario_kart_frame160_wheel0: + symbol: gKartWario160Wheel0 + type: texture + offset: 0x3B284 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_160_tlut_wheel_0 +wario_kart_frame160_wheel1: + symbol: gKartWario160Wheel1 + type: texture + offset: 0x3B284 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_160_tlut_wheel_1 +wario_kart_frame160_wheel2: + symbol: gKartWario160Wheel2 + type: texture + offset: 0x3B284 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_160_tlut_wheel_2 +wario_kart_frame160_wheel3: + symbol: gKartWario160Wheel3 + type: texture + offset: 0x3B284 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_160_tlut_wheel_3 +wario_kart_frame161_wheel0: + symbol: gKartWario161Wheel0 + type: texture + offset: 0x3B88C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_161_tlut_wheel_0 +wario_kart_frame161_wheel1: + symbol: gKartWario161Wheel1 + type: texture + offset: 0x3B88C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_161_tlut_wheel_1 +wario_kart_frame161_wheel2: + symbol: gKartWario161Wheel2 + type: texture + offset: 0x3B88C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_161_tlut_wheel_2 +wario_kart_frame161_wheel3: + symbol: gKartWario161Wheel3 + type: texture + offset: 0x3B88C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_161_tlut_wheel_3 +wario_kart_frame162_wheel0: + symbol: gKartWario162Wheel0 + type: texture + offset: 0x3BEB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_162_tlut_wheel_0 +wario_kart_frame162_wheel1: + symbol: gKartWario162Wheel1 + type: texture + offset: 0x3BEB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_162_tlut_wheel_1 +wario_kart_frame162_wheel2: + symbol: gKartWario162Wheel2 + type: texture + offset: 0x3BEB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_162_tlut_wheel_2 +wario_kart_frame162_wheel3: + symbol: gKartWario162Wheel3 + type: texture + offset: 0x3BEB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_162_tlut_wheel_3 +wario_kart_frame163_wheel0: + symbol: gKartWario163Wheel0 + type: texture + offset: 0x3C500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_163_tlut_wheel_0 +wario_kart_frame163_wheel1: + symbol: gKartWario163Wheel1 + type: texture + offset: 0x3C500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_163_tlut_wheel_1 +wario_kart_frame163_wheel2: + symbol: gKartWario163Wheel2 + type: texture + offset: 0x3C500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_163_tlut_wheel_2 +wario_kart_frame163_wheel3: + symbol: gKartWario163Wheel3 + type: texture + offset: 0x3C500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_163_tlut_wheel_3 +wario_kart_frame164_wheel0: + symbol: gKartWario164Wheel0 + type: texture + offset: 0x3CB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_164_tlut_wheel_0 +wario_kart_frame164_wheel1: + symbol: gKartWario164Wheel1 + type: texture + offset: 0x3CB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_164_tlut_wheel_1 +wario_kart_frame164_wheel2: + symbol: gKartWario164Wheel2 + type: texture + offset: 0x3CB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_164_tlut_wheel_2 +wario_kart_frame164_wheel3: + symbol: gKartWario164Wheel3 + type: texture + offset: 0x3CB58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_164_tlut_wheel_3 +wario_kart_frame165_wheel0: + symbol: gKartWario165Wheel0 + type: texture + offset: 0x3D1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_165_tlut_wheel_0 +wario_kart_frame165_wheel1: + symbol: gKartWario165Wheel1 + type: texture + offset: 0x3D1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_165_tlut_wheel_1 +wario_kart_frame165_wheel2: + symbol: gKartWario165Wheel2 + type: texture + offset: 0x3D1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_165_tlut_wheel_2 +wario_kart_frame165_wheel3: + symbol: gKartWario165Wheel3 + type: texture + offset: 0x3D1C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_165_tlut_wheel_3 +wario_kart_frame166_wheel0: + symbol: gKartWario166Wheel0 + type: texture + offset: 0x3D83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_166_tlut_wheel_0 +wario_kart_frame166_wheel1: + symbol: gKartWario166Wheel1 + type: texture + offset: 0x3D83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_166_tlut_wheel_1 +wario_kart_frame166_wheel2: + symbol: gKartWario166Wheel2 + type: texture + offset: 0x3D83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_166_tlut_wheel_2 +wario_kart_frame166_wheel3: + symbol: gKartWario166Wheel3 + type: texture + offset: 0x3D83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_166_tlut_wheel_3 +wario_kart_frame167_wheel0: + symbol: gKartWario167Wheel0 + type: texture + offset: 0x3DEC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_167_tlut_wheel_0 +wario_kart_frame167_wheel1: + symbol: gKartWario167Wheel1 + type: texture + offset: 0x3DEC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_167_tlut_wheel_1 +wario_kart_frame167_wheel2: + symbol: gKartWario167Wheel2 + type: texture + offset: 0x3DEC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_167_tlut_wheel_2 +wario_kart_frame167_wheel3: + symbol: gKartWario167Wheel3 + type: texture + offset: 0x3DEC8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_167_tlut_wheel_3 +wario_kart_frame168_wheel0: + symbol: gKartWario168Wheel0 + type: texture + offset: 0x3E548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_168_tlut_wheel_0 +wario_kart_frame168_wheel1: + symbol: gKartWario168Wheel1 + type: texture + offset: 0x3E548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_168_tlut_wheel_1 +wario_kart_frame168_wheel2: + symbol: gKartWario168Wheel2 + type: texture + offset: 0x3E548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_168_tlut_wheel_2 +wario_kart_frame168_wheel3: + symbol: gKartWario168Wheel3 + type: texture + offset: 0x3E548 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_168_tlut_wheel_3 +wario_kart_frame169_wheel0: + symbol: gKartWario169Wheel0 + type: texture + offset: 0x3EAEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_169_tlut_wheel_0 +wario_kart_frame169_wheel1: + symbol: gKartWario169Wheel1 + type: texture + offset: 0x3EAEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_169_tlut_wheel_1 +wario_kart_frame169_wheel2: + symbol: gKartWario169Wheel2 + type: texture + offset: 0x3EAEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_169_tlut_wheel_2 +wario_kart_frame169_wheel3: + symbol: gKartWario169Wheel3 + type: texture + offset: 0x3EAEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_169_tlut_wheel_3 +wario_kart_frame170_wheel0: + symbol: gKartWario170Wheel0 + type: texture + offset: 0x3F0AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_170_tlut_wheel_0 +wario_kart_frame170_wheel1: + symbol: gKartWario170Wheel1 + type: texture + offset: 0x3F0AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_170_tlut_wheel_1 +wario_kart_frame170_wheel2: + symbol: gKartWario170Wheel2 + type: texture + offset: 0x3F0AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_170_tlut_wheel_2 +wario_kart_frame170_wheel3: + symbol: gKartWario170Wheel3 + type: texture + offset: 0x3F0AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_170_tlut_wheel_3 +wario_kart_frame171_wheel0: + symbol: gKartWario171Wheel0 + type: texture + offset: 0x3F650 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_171_tlut_wheel_0 +wario_kart_frame171_wheel1: + symbol: gKartWario171Wheel1 + type: texture + offset: 0x3F650 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_171_tlut_wheel_1 +wario_kart_frame171_wheel2: + symbol: gKartWario171Wheel2 + type: texture + offset: 0x3F650 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_171_tlut_wheel_2 +wario_kart_frame171_wheel3: + symbol: gKartWario171Wheel3 + type: texture + offset: 0x3F650 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_171_tlut_wheel_3 +wario_kart_frame172_wheel0: + symbol: gKartWario172Wheel0 + type: texture + offset: 0x3FC28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_172_tlut_wheel_0 +wario_kart_frame172_wheel1: + symbol: gKartWario172Wheel1 + type: texture + offset: 0x3FC28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_172_tlut_wheel_1 +wario_kart_frame172_wheel2: + symbol: gKartWario172Wheel2 + type: texture + offset: 0x3FC28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_172_tlut_wheel_2 +wario_kart_frame172_wheel3: + symbol: gKartWario172Wheel3 + type: texture + offset: 0x3FC28 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_172_tlut_wheel_3 +wario_kart_frame173_wheel0: + symbol: gKartWario173Wheel0 + type: texture + offset: 0x401F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_173_tlut_wheel_0 +wario_kart_frame173_wheel1: + symbol: gKartWario173Wheel1 + type: texture + offset: 0x401F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_173_tlut_wheel_1 +wario_kart_frame173_wheel2: + symbol: gKartWario173Wheel2 + type: texture + offset: 0x401F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_173_tlut_wheel_2 +wario_kart_frame173_wheel3: + symbol: gKartWario173Wheel3 + type: texture + offset: 0x401F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_173_tlut_wheel_3 +wario_kart_frame174_wheel0: + symbol: gKartWario174Wheel0 + type: texture + offset: 0x407B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_174_tlut_wheel_0 +wario_kart_frame174_wheel1: + symbol: gKartWario174Wheel1 + type: texture + offset: 0x407B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_174_tlut_wheel_1 +wario_kart_frame174_wheel2: + symbol: gKartWario174Wheel2 + type: texture + offset: 0x407B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_174_tlut_wheel_2 +wario_kart_frame174_wheel3: + symbol: gKartWario174Wheel3 + type: texture + offset: 0x407B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_174_tlut_wheel_3 +wario_kart_frame175_wheel0: + symbol: gKartWario175Wheel0 + type: texture + offset: 0x40D88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_175_tlut_wheel_0 +wario_kart_frame175_wheel1: + symbol: gKartWario175Wheel1 + type: texture + offset: 0x40D88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_175_tlut_wheel_1 +wario_kart_frame175_wheel2: + symbol: gKartWario175Wheel2 + type: texture + offset: 0x40D88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_175_tlut_wheel_2 +wario_kart_frame175_wheel3: + symbol: gKartWario175Wheel3 + type: texture + offset: 0x40D88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_175_tlut_wheel_3 +wario_kart_frame176_wheel0: + symbol: gKartWario176Wheel0 + type: texture + offset: 0x41374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_176_tlut_wheel_0 +wario_kart_frame176_wheel1: + symbol: gKartWario176Wheel1 + type: texture + offset: 0x41374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_176_tlut_wheel_1 +wario_kart_frame176_wheel2: + symbol: gKartWario176Wheel2 + type: texture + offset: 0x41374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_176_tlut_wheel_2 +wario_kart_frame176_wheel3: + symbol: gKartWario176Wheel3 + type: texture + offset: 0x41374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_176_tlut_wheel_3 +wario_kart_frame177_wheel0: + symbol: gKartWario177Wheel0 + type: texture + offset: 0x41978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_177_tlut_wheel_0 +wario_kart_frame177_wheel1: + symbol: gKartWario177Wheel1 + type: texture + offset: 0x41978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_177_tlut_wheel_1 +wario_kart_frame177_wheel2: + symbol: gKartWario177Wheel2 + type: texture + offset: 0x41978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_177_tlut_wheel_2 +wario_kart_frame177_wheel3: + symbol: gKartWario177Wheel3 + type: texture + offset: 0x41978 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_177_tlut_wheel_3 +wario_kart_frame178_wheel0: + symbol: gKartWario178Wheel0 + type: texture + offset: 0x41F74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_178_tlut_wheel_0 +wario_kart_frame178_wheel1: + symbol: gKartWario178Wheel1 + type: texture + offset: 0x41F74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_178_tlut_wheel_1 +wario_kart_frame178_wheel2: + symbol: gKartWario178Wheel2 + type: texture + offset: 0x41F74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_178_tlut_wheel_2 +wario_kart_frame178_wheel3: + symbol: gKartWario178Wheel3 + type: texture + offset: 0x41F74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_178_tlut_wheel_3 +wario_kart_frame179_wheel0: + symbol: gKartWario179Wheel0 + type: texture + offset: 0x42590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_179_tlut_wheel_0 +wario_kart_frame179_wheel1: + symbol: gKartWario179Wheel1 + type: texture + offset: 0x42590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_179_tlut_wheel_1 +wario_kart_frame179_wheel2: + symbol: gKartWario179Wheel2 + type: texture + offset: 0x42590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_179_tlut_wheel_2 +wario_kart_frame179_wheel3: + symbol: gKartWario179Wheel3 + type: texture + offset: 0x42590 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_179_tlut_wheel_3 +wario_kart_frame180_wheel0: + symbol: gKartWario180Wheel0 + type: texture + offset: 0x42BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_180_tlut_wheel_0 +wario_kart_frame180_wheel1: + symbol: gKartWario180Wheel1 + type: texture + offset: 0x42BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_180_tlut_wheel_1 +wario_kart_frame180_wheel2: + symbol: gKartWario180Wheel2 + type: texture + offset: 0x42BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_180_tlut_wheel_2 +wario_kart_frame180_wheel3: + symbol: gKartWario180Wheel3 + type: texture + offset: 0x42BA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_180_tlut_wheel_3 +wario_kart_frame181_wheel0: + symbol: gKartWario181Wheel0 + type: texture + offset: 0x431A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_181_tlut_wheel_0 +wario_kart_frame181_wheel1: + symbol: gKartWario181Wheel1 + type: texture + offset: 0x431A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_181_tlut_wheel_1 +wario_kart_frame181_wheel2: + symbol: gKartWario181Wheel2 + type: texture + offset: 0x431A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_181_tlut_wheel_2 +wario_kart_frame181_wheel3: + symbol: gKartWario181Wheel3 + type: texture + offset: 0x431A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_181_tlut_wheel_3 +wario_kart_frame182_wheel0: + symbol: gKartWario182Wheel0 + type: texture + offset: 0x437B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_182_tlut_wheel_0 +wario_kart_frame182_wheel1: + symbol: gKartWario182Wheel1 + type: texture + offset: 0x437B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_182_tlut_wheel_1 +wario_kart_frame182_wheel2: + symbol: gKartWario182Wheel2 + type: texture + offset: 0x437B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_182_tlut_wheel_2 +wario_kart_frame182_wheel3: + symbol: gKartWario182Wheel3 + type: texture + offset: 0x437B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_182_tlut_wheel_3 +wario_kart_frame183_wheel0: + symbol: gKartWario183Wheel0 + type: texture + offset: 0x43DEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_183_tlut_wheel_0 +wario_kart_frame183_wheel1: + symbol: gKartWario183Wheel1 + type: texture + offset: 0x43DEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_183_tlut_wheel_1 +wario_kart_frame183_wheel2: + symbol: gKartWario183Wheel2 + type: texture + offset: 0x43DEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_183_tlut_wheel_2 +wario_kart_frame183_wheel3: + symbol: gKartWario183Wheel3 + type: texture + offset: 0x43DEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_183_tlut_wheel_3 +wario_kart_frame184_wheel0: + symbol: gKartWario184Wheel0 + type: texture + offset: 0x44420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_184_tlut_wheel_0 +wario_kart_frame184_wheel1: + symbol: gKartWario184Wheel1 + type: texture + offset: 0x44420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_184_tlut_wheel_1 +wario_kart_frame184_wheel2: + symbol: gKartWario184Wheel2 + type: texture + offset: 0x44420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_184_tlut_wheel_2 +wario_kart_frame184_wheel3: + symbol: gKartWario184Wheel3 + type: texture + offset: 0x44420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_184_tlut_wheel_3 +wario_kart_frame185_wheel0: + symbol: gKartWario185Wheel0 + type: texture + offset: 0x44A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_185_tlut_wheel_0 +wario_kart_frame185_wheel1: + symbol: gKartWario185Wheel1 + type: texture + offset: 0x44A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_185_tlut_wheel_1 +wario_kart_frame185_wheel2: + symbol: gKartWario185Wheel2 + type: texture + offset: 0x44A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_185_tlut_wheel_2 +wario_kart_frame185_wheel3: + symbol: gKartWario185Wheel3 + type: texture + offset: 0x44A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_185_tlut_wheel_3 +wario_kart_frame186_wheel0: + symbol: gKartWario186Wheel0 + type: texture + offset: 0x450E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_186_tlut_wheel_0 +wario_kart_frame186_wheel1: + symbol: gKartWario186Wheel1 + type: texture + offset: 0x450E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_186_tlut_wheel_1 +wario_kart_frame186_wheel2: + symbol: gKartWario186Wheel2 + type: texture + offset: 0x450E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_186_tlut_wheel_2 +wario_kart_frame186_wheel3: + symbol: gKartWario186Wheel3 + type: texture + offset: 0x450E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_186_tlut_wheel_3 +wario_kart_frame187_wheel0: + symbol: gKartWario187Wheel0 + type: texture + offset: 0x45750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_187_tlut_wheel_0 +wario_kart_frame187_wheel1: + symbol: gKartWario187Wheel1 + type: texture + offset: 0x45750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_187_tlut_wheel_1 +wario_kart_frame187_wheel2: + symbol: gKartWario187Wheel2 + type: texture + offset: 0x45750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_187_tlut_wheel_2 +wario_kart_frame187_wheel3: + symbol: gKartWario187Wheel3 + type: texture + offset: 0x45750 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_187_tlut_wheel_3 +wario_kart_frame188_wheel0: + symbol: gKartWario188Wheel0 + type: texture + offset: 0x45DE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_188_tlut_wheel_0 +wario_kart_frame188_wheel1: + symbol: gKartWario188Wheel1 + type: texture + offset: 0x45DE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_188_tlut_wheel_1 +wario_kart_frame188_wheel2: + symbol: gKartWario188Wheel2 + type: texture + offset: 0x45DE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_188_tlut_wheel_2 +wario_kart_frame188_wheel3: + symbol: gKartWario188Wheel3 + type: texture + offset: 0x45DE8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_188_tlut_wheel_3 +wario_kart_frame189_wheel0: + symbol: gKartWario189Wheel0 + type: texture + offset: 0x4647C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_189_tlut_wheel_0 +wario_kart_frame189_wheel1: + symbol: gKartWario189Wheel1 + type: texture + offset: 0x4647C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_189_tlut_wheel_1 +wario_kart_frame189_wheel2: + symbol: gKartWario189Wheel2 + type: texture + offset: 0x4647C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_189_tlut_wheel_2 +wario_kart_frame189_wheel3: + symbol: gKartWario189Wheel3 + type: texture + offset: 0x4647C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_189_tlut_wheel_3 +wario_kart_frame190_wheel0: + symbol: gKartWario190Wheel0 + type: texture + offset: 0x469D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_190_tlut_wheel_0 +wario_kart_frame190_wheel1: + symbol: gKartWario190Wheel1 + type: texture + offset: 0x469D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_190_tlut_wheel_1 +wario_kart_frame190_wheel2: + symbol: gKartWario190Wheel2 + type: texture + offset: 0x469D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_190_tlut_wheel_2 +wario_kart_frame190_wheel3: + symbol: gKartWario190Wheel3 + type: texture + offset: 0x469D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_190_tlut_wheel_3 +wario_kart_frame191_wheel0: + symbol: gKartWario191Wheel0 + type: texture + offset: 0x46F70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_191_tlut_wheel_0 +wario_kart_frame191_wheel1: + symbol: gKartWario191Wheel1 + type: texture + offset: 0x46F70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_191_tlut_wheel_1 +wario_kart_frame191_wheel2: + symbol: gKartWario191Wheel2 + type: texture + offset: 0x46F70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_191_tlut_wheel_2 +wario_kart_frame191_wheel3: + symbol: gKartWario191Wheel3 + type: texture + offset: 0x46F70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_191_tlut_wheel_3 +wario_kart_frame192_wheel0: + symbol: gKartWario192Wheel0 + type: texture + offset: 0x47528 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_192_tlut_wheel_0 +wario_kart_frame192_wheel1: + symbol: gKartWario192Wheel1 + type: texture + offset: 0x47528 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_192_tlut_wheel_1 +wario_kart_frame192_wheel2: + symbol: gKartWario192Wheel2 + type: texture + offset: 0x47528 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_192_tlut_wheel_2 +wario_kart_frame192_wheel3: + symbol: gKartWario192Wheel3 + type: texture + offset: 0x47528 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_192_tlut_wheel_3 +wario_kart_frame193_wheel0: + symbol: gKartWario193Wheel0 + type: texture + offset: 0x47B0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_193_tlut_wheel_0 +wario_kart_frame193_wheel1: + symbol: gKartWario193Wheel1 + type: texture + offset: 0x47B0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_193_tlut_wheel_1 +wario_kart_frame193_wheel2: + symbol: gKartWario193Wheel2 + type: texture + offset: 0x47B0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_193_tlut_wheel_2 +wario_kart_frame193_wheel3: + symbol: gKartWario193Wheel3 + type: texture + offset: 0x47B0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_193_tlut_wheel_3 +wario_kart_frame194_wheel0: + symbol: gKartWario194Wheel0 + type: texture + offset: 0x480F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_194_tlut_wheel_0 +wario_kart_frame194_wheel1: + symbol: gKartWario194Wheel1 + type: texture + offset: 0x480F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_194_tlut_wheel_1 +wario_kart_frame194_wheel2: + symbol: gKartWario194Wheel2 + type: texture + offset: 0x480F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_194_tlut_wheel_2 +wario_kart_frame194_wheel3: + symbol: gKartWario194Wheel3 + type: texture + offset: 0x480F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_194_tlut_wheel_3 +wario_kart_frame195_wheel0: + symbol: gKartWario195Wheel0 + type: texture + offset: 0x48708 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_195_tlut_wheel_0 +wario_kart_frame195_wheel1: + symbol: gKartWario195Wheel1 + type: texture + offset: 0x48708 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_195_tlut_wheel_1 +wario_kart_frame195_wheel2: + symbol: gKartWario195Wheel2 + type: texture + offset: 0x48708 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_195_tlut_wheel_2 +wario_kart_frame195_wheel3: + symbol: gKartWario195Wheel3 + type: texture + offset: 0x48708 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_195_tlut_wheel_3 +wario_kart_frame196_wheel0: + symbol: gKartWario196Wheel0 + type: texture + offset: 0x48D40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_196_tlut_wheel_0 +wario_kart_frame196_wheel1: + symbol: gKartWario196Wheel1 + type: texture + offset: 0x48D40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_196_tlut_wheel_1 +wario_kart_frame196_wheel2: + symbol: gKartWario196Wheel2 + type: texture + offset: 0x48D40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_196_tlut_wheel_2 +wario_kart_frame196_wheel3: + symbol: gKartWario196Wheel3 + type: texture + offset: 0x48D40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_196_tlut_wheel_3 +wario_kart_frame197_wheel0: + symbol: gKartWario197Wheel0 + type: texture + offset: 0x49388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_197_tlut_wheel_0 +wario_kart_frame197_wheel1: + symbol: gKartWario197Wheel1 + type: texture + offset: 0x49388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_197_tlut_wheel_1 +wario_kart_frame197_wheel2: + symbol: gKartWario197Wheel2 + type: texture + offset: 0x49388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_197_tlut_wheel_2 +wario_kart_frame197_wheel3: + symbol: gKartWario197Wheel3 + type: texture + offset: 0x49388 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_197_tlut_wheel_3 +wario_kart_frame198_wheel0: + symbol: gKartWario198Wheel0 + type: texture + offset: 0x499D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_198_tlut_wheel_0 +wario_kart_frame198_wheel1: + symbol: gKartWario198Wheel1 + type: texture + offset: 0x499D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_198_tlut_wheel_1 +wario_kart_frame198_wheel2: + symbol: gKartWario198Wheel2 + type: texture + offset: 0x499D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_198_tlut_wheel_2 +wario_kart_frame198_wheel3: + symbol: gKartWario198Wheel3 + type: texture + offset: 0x499D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_198_tlut_wheel_3 +wario_kart_frame199_wheel0: + symbol: gKartWario199Wheel0 + type: texture + offset: 0x4A05C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_199_tlut_wheel_0 +wario_kart_frame199_wheel1: + symbol: gKartWario199Wheel1 + type: texture + offset: 0x4A05C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_199_tlut_wheel_1 +wario_kart_frame199_wheel2: + symbol: gKartWario199Wheel2 + type: texture + offset: 0x4A05C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_199_tlut_wheel_2 +wario_kart_frame199_wheel3: + symbol: gKartWario199Wheel3 + type: texture + offset: 0x4A05C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_199_tlut_wheel_3 +wario_kart_frame200_wheel0: + symbol: gKartWario200Wheel0 + type: texture + offset: 0x4A6E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_200_tlut_wheel_0 +wario_kart_frame200_wheel1: + symbol: gKartWario200Wheel1 + type: texture + offset: 0x4A6E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_200_tlut_wheel_1 +wario_kart_frame200_wheel2: + symbol: gKartWario200Wheel2 + type: texture + offset: 0x4A6E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_200_tlut_wheel_2 +wario_kart_frame200_wheel3: + symbol: gKartWario200Wheel3 + type: texture + offset: 0x4A6E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_200_tlut_wheel_3 +wario_kart_frame201_wheel0: + symbol: gKartWario201Wheel0 + type: texture + offset: 0x4ADA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_201_tlut_wheel_0 +wario_kart_frame201_wheel1: + symbol: gKartWario201Wheel1 + type: texture + offset: 0x4ADA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_201_tlut_wheel_1 +wario_kart_frame201_wheel2: + symbol: gKartWario201Wheel2 + type: texture + offset: 0x4ADA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_201_tlut_wheel_2 +wario_kart_frame201_wheel3: + symbol: gKartWario201Wheel3 + type: texture + offset: 0x4ADA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_201_tlut_wheel_3 +wario_kart_frame202_wheel0: + symbol: gKartWario202Wheel0 + type: texture + offset: 0x4B460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_202_tlut_wheel_0 +wario_kart_frame202_wheel1: + symbol: gKartWario202Wheel1 + type: texture + offset: 0x4B460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_202_tlut_wheel_1 +wario_kart_frame202_wheel2: + symbol: gKartWario202Wheel2 + type: texture + offset: 0x4B460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_202_tlut_wheel_2 +wario_kart_frame202_wheel3: + symbol: gKartWario202Wheel3 + type: texture + offset: 0x4B460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_202_tlut_wheel_3 +wario_kart_frame203_wheel0: + symbol: gKartWario203Wheel0 + type: texture + offset: 0x4BAFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_203_tlut_wheel_0 +wario_kart_frame203_wheel1: + symbol: gKartWario203Wheel1 + type: texture + offset: 0x4BAFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_203_tlut_wheel_1 +wario_kart_frame203_wheel2: + symbol: gKartWario203Wheel2 + type: texture + offset: 0x4BAFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_203_tlut_wheel_2 +wario_kart_frame203_wheel3: + symbol: gKartWario203Wheel3 + type: texture + offset: 0x4BAFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_203_tlut_wheel_3 +wario_kart_frame204_wheel0: + symbol: gKartWario204Wheel0 + type: texture + offset: 0x4C1A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_204_tlut_wheel_0 +wario_kart_frame204_wheel1: + symbol: gKartWario204Wheel1 + type: texture + offset: 0x4C1A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_204_tlut_wheel_1 +wario_kart_frame204_wheel2: + symbol: gKartWario204Wheel2 + type: texture + offset: 0x4C1A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_204_tlut_wheel_2 +wario_kart_frame204_wheel3: + symbol: gKartWario204Wheel3 + type: texture + offset: 0x4C1A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_204_tlut_wheel_3 +wario_kart_frame205_wheel0: + symbol: gKartWario205Wheel0 + type: texture + offset: 0x4C868 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_205_tlut_wheel_0 +wario_kart_frame205_wheel1: + symbol: gKartWario205Wheel1 + type: texture + offset: 0x4C868 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_205_tlut_wheel_1 +wario_kart_frame205_wheel2: + symbol: gKartWario205Wheel2 + type: texture + offset: 0x4C868 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_205_tlut_wheel_2 +wario_kart_frame205_wheel3: + symbol: gKartWario205Wheel3 + type: texture + offset: 0x4C868 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_205_tlut_wheel_3 +wario_kart_frame206_wheel0: + symbol: gKartWario206Wheel0 + type: texture + offset: 0x4CF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_206_tlut_wheel_0 +wario_kart_frame206_wheel1: + symbol: gKartWario206Wheel1 + type: texture + offset: 0x4CF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_206_tlut_wheel_1 +wario_kart_frame206_wheel2: + symbol: gKartWario206Wheel2 + type: texture + offset: 0x4CF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_206_tlut_wheel_2 +wario_kart_frame206_wheel3: + symbol: gKartWario206Wheel3 + type: texture + offset: 0x4CF08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_206_tlut_wheel_3 +wario_kart_frame207_wheel0: + symbol: gKartWario207Wheel0 + type: texture + offset: 0x4D5AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_207_tlut_wheel_0 +wario_kart_frame207_wheel1: + symbol: gKartWario207Wheel1 + type: texture + offset: 0x4D5AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_207_tlut_wheel_1 +wario_kart_frame207_wheel2: + symbol: gKartWario207Wheel2 + type: texture + offset: 0x4D5AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_207_tlut_wheel_2 +wario_kart_frame207_wheel3: + symbol: gKartWario207Wheel3 + type: texture + offset: 0x4D5AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_207_tlut_wheel_3 +wario_kart_frame208_wheel0: + symbol: gKartWario208Wheel0 + type: texture + offset: 0x4DC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_208_tlut_wheel_0 +wario_kart_frame208_wheel1: + symbol: gKartWario208Wheel1 + type: texture + offset: 0x4DC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_208_tlut_wheel_1 +wario_kart_frame208_wheel2: + symbol: gKartWario208Wheel2 + type: texture + offset: 0x4DC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_208_tlut_wheel_2 +wario_kart_frame208_wheel3: + symbol: gKartWario208Wheel3 + type: texture + offset: 0x4DC4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_208_tlut_wheel_3 +wario_kart_frame209_wheel0: + symbol: gKartWario209Wheel0 + type: texture + offset: 0x4E2D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_209_tlut_wheel_0 +wario_kart_frame209_wheel1: + symbol: gKartWario209Wheel1 + type: texture + offset: 0x4E2D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_209_tlut_wheel_1 +wario_kart_frame209_wheel2: + symbol: gKartWario209Wheel2 + type: texture + offset: 0x4E2D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_209_tlut_wheel_2 +wario_kart_frame209_wheel3: + symbol: gKartWario209Wheel3 + type: texture + offset: 0x4E2D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_209_tlut_wheel_3 +wario_kart_frame210_wheel0: + symbol: gKartWario210Wheel0 + type: texture + offset: 0x4E864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_210_tlut_wheel_0 +wario_kart_frame210_wheel1: + symbol: gKartWario210Wheel1 + type: texture + offset: 0x4E864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_210_tlut_wheel_1 +wario_kart_frame210_wheel2: + symbol: gKartWario210Wheel2 + type: texture + offset: 0x4E864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_210_tlut_wheel_2 +wario_kart_frame210_wheel3: + symbol: gKartWario210Wheel3 + type: texture + offset: 0x4E864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_210_tlut_wheel_3 +wario_kart_frame211_wheel0: + symbol: gKartWario211Wheel0 + type: texture + offset: 0x4EE14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_211_tlut_wheel_0 +wario_kart_frame211_wheel1: + symbol: gKartWario211Wheel1 + type: texture + offset: 0x4EE14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_211_tlut_wheel_1 +wario_kart_frame211_wheel2: + symbol: gKartWario211Wheel2 + type: texture + offset: 0x4EE14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_211_tlut_wheel_2 +wario_kart_frame211_wheel3: + symbol: gKartWario211Wheel3 + type: texture + offset: 0x4EE14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_211_tlut_wheel_3 +wario_kart_frame212_wheel0: + symbol: gKartWario212Wheel0 + type: texture + offset: 0x4F3F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_212_tlut_wheel_0 +wario_kart_frame212_wheel1: + symbol: gKartWario212Wheel1 + type: texture + offset: 0x4F3F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_212_tlut_wheel_1 +wario_kart_frame212_wheel2: + symbol: gKartWario212Wheel2 + type: texture + offset: 0x4F3F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_212_tlut_wheel_2 +wario_kart_frame212_wheel3: + symbol: gKartWario212Wheel3 + type: texture + offset: 0x4F3F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_212_tlut_wheel_3 +wario_kart_frame213_wheel0: + symbol: gKartWario213Wheel0 + type: texture + offset: 0x4F9F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_213_tlut_wheel_0 +wario_kart_frame213_wheel1: + symbol: gKartWario213Wheel1 + type: texture + offset: 0x4F9F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_213_tlut_wheel_1 +wario_kart_frame213_wheel2: + symbol: gKartWario213Wheel2 + type: texture + offset: 0x4F9F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_213_tlut_wheel_2 +wario_kart_frame213_wheel3: + symbol: gKartWario213Wheel3 + type: texture + offset: 0x4F9F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_213_tlut_wheel_3 +wario_kart_frame214_wheel0: + symbol: gKartWario214Wheel0 + type: texture + offset: 0x50020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_214_tlut_wheel_0 +wario_kart_frame214_wheel1: + symbol: gKartWario214Wheel1 + type: texture + offset: 0x50020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_214_tlut_wheel_1 +wario_kart_frame214_wheel2: + symbol: gKartWario214Wheel2 + type: texture + offset: 0x50020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_214_tlut_wheel_2 +wario_kart_frame214_wheel3: + symbol: gKartWario214Wheel3 + type: texture + offset: 0x50020 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_214_tlut_wheel_3 +wario_kart_frame215_wheel0: + symbol: gKartWario215Wheel0 + type: texture + offset: 0x5065C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_215_tlut_wheel_0 +wario_kart_frame215_wheel1: + symbol: gKartWario215Wheel1 + type: texture + offset: 0x5065C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_215_tlut_wheel_1 +wario_kart_frame215_wheel2: + symbol: gKartWario215Wheel2 + type: texture + offset: 0x5065C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_215_tlut_wheel_2 +wario_kart_frame215_wheel3: + symbol: gKartWario215Wheel3 + type: texture + offset: 0x5065C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_215_tlut_wheel_3 +wario_kart_frame216_wheel0: + symbol: gKartWario216Wheel0 + type: texture + offset: 0x50CB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_216_tlut_wheel_0 +wario_kart_frame216_wheel1: + symbol: gKartWario216Wheel1 + type: texture + offset: 0x50CB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_216_tlut_wheel_1 +wario_kart_frame216_wheel2: + symbol: gKartWario216Wheel2 + type: texture + offset: 0x50CB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_216_tlut_wheel_2 +wario_kart_frame216_wheel3: + symbol: gKartWario216Wheel3 + type: texture + offset: 0x50CB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_216_tlut_wheel_3 +wario_kart_frame217_wheel0: + symbol: gKartWario217Wheel0 + type: texture + offset: 0x5130C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_217_tlut_wheel_0 +wario_kart_frame217_wheel1: + symbol: gKartWario217Wheel1 + type: texture + offset: 0x5130C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_217_tlut_wheel_1 +wario_kart_frame217_wheel2: + symbol: gKartWario217Wheel2 + type: texture + offset: 0x5130C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_217_tlut_wheel_2 +wario_kart_frame217_wheel3: + symbol: gKartWario217Wheel3 + type: texture + offset: 0x5130C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_217_tlut_wheel_3 +wario_kart_frame218_wheel0: + symbol: gKartWario218Wheel0 + type: texture + offset: 0x51964 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_218_tlut_wheel_0 +wario_kart_frame218_wheel1: + symbol: gKartWario218Wheel1 + type: texture + offset: 0x51964 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_218_tlut_wheel_1 +wario_kart_frame218_wheel2: + symbol: gKartWario218Wheel2 + type: texture + offset: 0x51964 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_218_tlut_wheel_2 +wario_kart_frame218_wheel3: + symbol: gKartWario218Wheel3 + type: texture + offset: 0x51964 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_218_tlut_wheel_3 +wario_kart_frame219_wheel0: + symbol: gKartWario219Wheel0 + type: texture + offset: 0x51FE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_219_tlut_wheel_0 +wario_kart_frame219_wheel1: + symbol: gKartWario219Wheel1 + type: texture + offset: 0x51FE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_219_tlut_wheel_1 +wario_kart_frame219_wheel2: + symbol: gKartWario219Wheel2 + type: texture + offset: 0x51FE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_219_tlut_wheel_2 +wario_kart_frame219_wheel3: + symbol: gKartWario219Wheel3 + type: texture + offset: 0x51FE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_219_tlut_wheel_3 +wario_kart_frame220_wheel0: + symbol: gKartWario220Wheel0 + type: texture + offset: 0x5264C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_220_tlut_wheel_0 +wario_kart_frame220_wheel1: + symbol: gKartWario220Wheel1 + type: texture + offset: 0x5264C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_220_tlut_wheel_1 +wario_kart_frame220_wheel2: + symbol: gKartWario220Wheel2 + type: texture + offset: 0x5264C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_220_tlut_wheel_2 +wario_kart_frame220_wheel3: + symbol: gKartWario220Wheel3 + type: texture + offset: 0x5264C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_220_tlut_wheel_3 +wario_kart_frame221_wheel0: + symbol: gKartWario221Wheel0 + type: texture + offset: 0x52CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_221_tlut_wheel_0 +wario_kart_frame221_wheel1: + symbol: gKartWario221Wheel1 + type: texture + offset: 0x52CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_221_tlut_wheel_1 +wario_kart_frame221_wheel2: + symbol: gKartWario221Wheel2 + type: texture + offset: 0x52CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_221_tlut_wheel_2 +wario_kart_frame221_wheel3: + symbol: gKartWario221Wheel3 + type: texture + offset: 0x52CD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_221_tlut_wheel_3 +wario_kart_frame222_wheel0: + symbol: gKartWario222Wheel0 + type: texture + offset: 0x53350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_222_tlut_wheel_0 +wario_kart_frame222_wheel1: + symbol: gKartWario222Wheel1 + type: texture + offset: 0x53350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_222_tlut_wheel_1 +wario_kart_frame222_wheel2: + symbol: gKartWario222Wheel2 + type: texture + offset: 0x53350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_222_tlut_wheel_2 +wario_kart_frame222_wheel3: + symbol: gKartWario222Wheel3 + type: texture + offset: 0x53350 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_222_tlut_wheel_3 +wario_kart_frame223_wheel0: + symbol: gKartWario223Wheel0 + type: texture + offset: 0x539CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_223_tlut_wheel_0 +wario_kart_frame223_wheel1: + symbol: gKartWario223Wheel1 + type: texture + offset: 0x539CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_223_tlut_wheel_1 +wario_kart_frame223_wheel2: + symbol: gKartWario223Wheel2 + type: texture + offset: 0x539CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_223_tlut_wheel_2 +wario_kart_frame223_wheel3: + symbol: gKartWario223Wheel3 + type: texture + offset: 0x539CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_223_tlut_wheel_3 +wario_kart_frame224_wheel0: + symbol: gKartWario224Wheel0 + type: texture + offset: 0x54038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_224_tlut_wheel_0 +wario_kart_frame224_wheel1: + symbol: gKartWario224Wheel1 + type: texture + offset: 0x54038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_224_tlut_wheel_1 +wario_kart_frame224_wheel2: + symbol: gKartWario224Wheel2 + type: texture + offset: 0x54038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_224_tlut_wheel_2 +wario_kart_frame224_wheel3: + symbol: gKartWario224Wheel3 + type: texture + offset: 0x54038 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_224_tlut_wheel_3 +wario_kart_frame225_wheel0: + symbol: gKartWario225Wheel0 + type: texture + offset: 0x546B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_225_tlut_wheel_0 +wario_kart_frame225_wheel1: + symbol: gKartWario225Wheel1 + type: texture + offset: 0x546B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_225_tlut_wheel_1 +wario_kart_frame225_wheel2: + symbol: gKartWario225Wheel2 + type: texture + offset: 0x546B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_225_tlut_wheel_2 +wario_kart_frame225_wheel3: + symbol: gKartWario225Wheel3 + type: texture + offset: 0x546B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_225_tlut_wheel_3 +wario_kart_frame226_wheel0: + symbol: gKartWario226Wheel0 + type: texture + offset: 0x54D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_226_tlut_wheel_0 +wario_kart_frame226_wheel1: + symbol: gKartWario226Wheel1 + type: texture + offset: 0x54D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_226_tlut_wheel_1 +wario_kart_frame226_wheel2: + symbol: gKartWario226Wheel2 + type: texture + offset: 0x54D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_226_tlut_wheel_2 +wario_kart_frame226_wheel3: + symbol: gKartWario226Wheel3 + type: texture + offset: 0x54D0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_226_tlut_wheel_3 +wario_kart_frame227_wheel0: + symbol: gKartWario227Wheel0 + type: texture + offset: 0x55360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_227_tlut_wheel_0 +wario_kart_frame227_wheel1: + symbol: gKartWario227Wheel1 + type: texture + offset: 0x55360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_227_tlut_wheel_1 +wario_kart_frame227_wheel2: + symbol: gKartWario227Wheel2 + type: texture + offset: 0x55360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_227_tlut_wheel_2 +wario_kart_frame227_wheel3: + symbol: gKartWario227Wheel3 + type: texture + offset: 0x55360 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_227_tlut_wheel_3 +wario_kart_frame228_wheel0: + symbol: gKartWario228Wheel0 + type: texture + offset: 0x559AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_228_tlut_wheel_0 +wario_kart_frame228_wheel1: + symbol: gKartWario228Wheel1 + type: texture + offset: 0x559AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_228_tlut_wheel_1 +wario_kart_frame228_wheel2: + symbol: gKartWario228Wheel2 + type: texture + offset: 0x559AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_228_tlut_wheel_2 +wario_kart_frame228_wheel3: + symbol: gKartWario228Wheel3 + type: texture + offset: 0x559AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_228_tlut_wheel_3 +wario_kart_frame229_wheel0: + symbol: gKartWario229Wheel0 + type: texture + offset: 0x56014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_229_tlut_wheel_0 +wario_kart_frame229_wheel1: + symbol: gKartWario229Wheel1 + type: texture + offset: 0x56014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_229_tlut_wheel_1 +wario_kart_frame229_wheel2: + symbol: gKartWario229Wheel2 + type: texture + offset: 0x56014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_229_tlut_wheel_2 +wario_kart_frame229_wheel3: + symbol: gKartWario229Wheel3 + type: texture + offset: 0x56014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_229_tlut_wheel_3 +wario_kart_frame230_wheel0: + symbol: gKartWario230Wheel0 + type: texture + offset: 0x565AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_230_tlut_wheel_0 +wario_kart_frame230_wheel1: + symbol: gKartWario230Wheel1 + type: texture + offset: 0x565AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_230_tlut_wheel_1 +wario_kart_frame230_wheel2: + symbol: gKartWario230Wheel2 + type: texture + offset: 0x565AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_230_tlut_wheel_2 +wario_kart_frame230_wheel3: + symbol: gKartWario230Wheel3 + type: texture + offset: 0x565AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_230_tlut_wheel_3 +wario_kart_frame231_wheel0: + symbol: gKartWario231Wheel0 + type: texture + offset: 0x56B64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_231_tlut_wheel_0 +wario_kart_frame231_wheel1: + symbol: gKartWario231Wheel1 + type: texture + offset: 0x56B64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_231_tlut_wheel_1 +wario_kart_frame231_wheel2: + symbol: gKartWario231Wheel2 + type: texture + offset: 0x56B64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_231_tlut_wheel_2 +wario_kart_frame231_wheel3: + symbol: gKartWario231Wheel3 + type: texture + offset: 0x56B64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_231_tlut_wheel_3 +wario_kart_frame232_wheel0: + symbol: gKartWario232Wheel0 + type: texture + offset: 0x57148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_232_tlut_wheel_0 +wario_kart_frame232_wheel1: + symbol: gKartWario232Wheel1 + type: texture + offset: 0x57148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_232_tlut_wheel_1 +wario_kart_frame232_wheel2: + symbol: gKartWario232Wheel2 + type: texture + offset: 0x57148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_232_tlut_wheel_2 +wario_kart_frame232_wheel3: + symbol: gKartWario232Wheel3 + type: texture + offset: 0x57148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_232_tlut_wheel_3 +wario_kart_frame233_wheel0: + symbol: gKartWario233Wheel0 + type: texture + offset: 0x57764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_233_tlut_wheel_0 +wario_kart_frame233_wheel1: + symbol: gKartWario233Wheel1 + type: texture + offset: 0x57764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_233_tlut_wheel_1 +wario_kart_frame233_wheel2: + symbol: gKartWario233Wheel2 + type: texture + offset: 0x57764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_233_tlut_wheel_2 +wario_kart_frame233_wheel3: + symbol: gKartWario233Wheel3 + type: texture + offset: 0x57764 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_233_tlut_wheel_3 +wario_kart_frame234_wheel0: + symbol: gKartWario234Wheel0 + type: texture + offset: 0x57D98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_234_tlut_wheel_0 +wario_kart_frame234_wheel1: + symbol: gKartWario234Wheel1 + type: texture + offset: 0x57D98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_234_tlut_wheel_1 +wario_kart_frame234_wheel2: + symbol: gKartWario234Wheel2 + type: texture + offset: 0x57D98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_234_tlut_wheel_2 +wario_kart_frame234_wheel3: + symbol: gKartWario234Wheel3 + type: texture + offset: 0x57D98 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_234_tlut_wheel_3 +wario_kart_frame235_wheel0: + symbol: gKartWario235Wheel0 + type: texture + offset: 0x583E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_235_tlut_wheel_0 +wario_kart_frame235_wheel1: + symbol: gKartWario235Wheel1 + type: texture + offset: 0x583E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_235_tlut_wheel_1 +wario_kart_frame235_wheel2: + symbol: gKartWario235Wheel2 + type: texture + offset: 0x583E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_235_tlut_wheel_2 +wario_kart_frame235_wheel3: + symbol: gKartWario235Wheel3 + type: texture + offset: 0x583E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_235_tlut_wheel_3 +wario_kart_frame236_wheel0: + symbol: gKartWario236Wheel0 + type: texture + offset: 0x58A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_236_tlut_wheel_0 +wario_kart_frame236_wheel1: + symbol: gKartWario236Wheel1 + type: texture + offset: 0x58A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_236_tlut_wheel_1 +wario_kart_frame236_wheel2: + symbol: gKartWario236Wheel2 + type: texture + offset: 0x58A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_236_tlut_wheel_2 +wario_kart_frame236_wheel3: + symbol: gKartWario236Wheel3 + type: texture + offset: 0x58A64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_236_tlut_wheel_3 +wario_kart_frame237_wheel0: + symbol: gKartWario237Wheel0 + type: texture + offset: 0x590D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_237_tlut_wheel_0 +wario_kart_frame237_wheel1: + symbol: gKartWario237Wheel1 + type: texture + offset: 0x590D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_237_tlut_wheel_1 +wario_kart_frame237_wheel2: + symbol: gKartWario237Wheel2 + type: texture + offset: 0x590D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_237_tlut_wheel_2 +wario_kart_frame237_wheel3: + symbol: gKartWario237Wheel3 + type: texture + offset: 0x590D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_237_tlut_wheel_3 +wario_kart_frame238_wheel0: + symbol: gKartWario238Wheel0 + type: texture + offset: 0x59748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_238_tlut_wheel_0 +wario_kart_frame238_wheel1: + symbol: gKartWario238Wheel1 + type: texture + offset: 0x59748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_238_tlut_wheel_1 +wario_kart_frame238_wheel2: + symbol: gKartWario238Wheel2 + type: texture + offset: 0x59748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_238_tlut_wheel_2 +wario_kart_frame238_wheel3: + symbol: gKartWario238Wheel3 + type: texture + offset: 0x59748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_238_tlut_wheel_3 +wario_kart_frame239_wheel0: + symbol: gKartWario239Wheel0 + type: texture + offset: 0x59DA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_239_tlut_wheel_0 +wario_kart_frame239_wheel1: + symbol: gKartWario239Wheel1 + type: texture + offset: 0x59DA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_239_tlut_wheel_1 +wario_kart_frame239_wheel2: + symbol: gKartWario239Wheel2 + type: texture + offset: 0x59DA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_239_tlut_wheel_2 +wario_kart_frame239_wheel3: + symbol: gKartWario239Wheel3 + type: texture + offset: 0x59DA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_239_tlut_wheel_3 +wario_kart_frame240_wheel0: + symbol: gKartWario240Wheel0 + type: texture + offset: 0x5A410 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_240_tlut_wheel_0 +wario_kart_frame240_wheel1: + symbol: gKartWario240Wheel1 + type: texture + offset: 0x5A410 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_240_tlut_wheel_1 +wario_kart_frame240_wheel2: + symbol: gKartWario240Wheel2 + type: texture + offset: 0x5A410 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_240_tlut_wheel_2 +wario_kart_frame240_wheel3: + symbol: gKartWario240Wheel3 + type: texture + offset: 0x5A410 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_240_tlut_wheel_3 +wario_kart_frame241_wheel0: + symbol: gKartWario241Wheel0 + type: texture + offset: 0x5AA80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_241_tlut_wheel_0 +wario_kart_frame241_wheel1: + symbol: gKartWario241Wheel1 + type: texture + offset: 0x5AA80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_241_tlut_wheel_1 +wario_kart_frame241_wheel2: + symbol: gKartWario241Wheel2 + type: texture + offset: 0x5AA80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_241_tlut_wheel_2 +wario_kart_frame241_wheel3: + symbol: gKartWario241Wheel3 + type: texture + offset: 0x5AA80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_241_tlut_wheel_3 +wario_kart_frame242_wheel0: + symbol: gKartWario242Wheel0 + type: texture + offset: 0x5B0EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_242_tlut_wheel_0 +wario_kart_frame242_wheel1: + symbol: gKartWario242Wheel1 + type: texture + offset: 0x5B0EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_242_tlut_wheel_1 +wario_kart_frame242_wheel2: + symbol: gKartWario242Wheel2 + type: texture + offset: 0x5B0EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_242_tlut_wheel_2 +wario_kart_frame242_wheel3: + symbol: gKartWario242Wheel3 + type: texture + offset: 0x5B0EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_242_tlut_wheel_3 +wario_kart_frame243_wheel0: + symbol: gKartWario243Wheel0 + type: texture + offset: 0x5B748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_243_tlut_wheel_0 +wario_kart_frame243_wheel1: + symbol: gKartWario243Wheel1 + type: texture + offset: 0x5B748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_243_tlut_wheel_1 +wario_kart_frame243_wheel2: + symbol: gKartWario243Wheel2 + type: texture + offset: 0x5B748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_243_tlut_wheel_2 +wario_kart_frame243_wheel3: + symbol: gKartWario243Wheel3 + type: texture + offset: 0x5B748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_243_tlut_wheel_3 +wario_kart_frame244_wheel0: + symbol: gKartWario244Wheel0 + type: texture + offset: 0x5BD90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_244_tlut_wheel_0 +wario_kart_frame244_wheel1: + symbol: gKartWario244Wheel1 + type: texture + offset: 0x5BD90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_244_tlut_wheel_1 +wario_kart_frame244_wheel2: + symbol: gKartWario244Wheel2 + type: texture + offset: 0x5BD90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_244_tlut_wheel_2 +wario_kart_frame244_wheel3: + symbol: gKartWario244Wheel3 + type: texture + offset: 0x5BD90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_244_tlut_wheel_3 +wario_kart_frame245_wheel0: + symbol: gKartWario245Wheel0 + type: texture + offset: 0x5C3D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_245_tlut_wheel_0 +wario_kart_frame245_wheel1: + symbol: gKartWario245Wheel1 + type: texture + offset: 0x5C3D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_245_tlut_wheel_1 +wario_kart_frame245_wheel2: + symbol: gKartWario245Wheel2 + type: texture + offset: 0x5C3D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_245_tlut_wheel_2 +wario_kart_frame245_wheel3: + symbol: gKartWario245Wheel3 + type: texture + offset: 0x5C3D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_245_tlut_wheel_3 +wario_kart_frame246_wheel0: + symbol: gKartWario246Wheel0 + type: texture + offset: 0x5CA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_246_tlut_wheel_0 +wario_kart_frame246_wheel1: + symbol: gKartWario246Wheel1 + type: texture + offset: 0x5CA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_246_tlut_wheel_1 +wario_kart_frame246_wheel2: + symbol: gKartWario246Wheel2 + type: texture + offset: 0x5CA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_246_tlut_wheel_2 +wario_kart_frame246_wheel3: + symbol: gKartWario246Wheel3 + type: texture + offset: 0x5CA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_246_tlut_wheel_3 +wario_kart_frame247_wheel0: + symbol: gKartWario247Wheel0 + type: texture + offset: 0x5D04C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_247_tlut_wheel_0 +wario_kart_frame247_wheel1: + symbol: gKartWario247Wheel1 + type: texture + offset: 0x5D04C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_247_tlut_wheel_1 +wario_kart_frame247_wheel2: + symbol: gKartWario247Wheel2 + type: texture + offset: 0x5D04C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_247_tlut_wheel_2 +wario_kart_frame247_wheel3: + symbol: gKartWario247Wheel3 + type: texture + offset: 0x5D04C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_247_tlut_wheel_3 +wario_kart_frame248_wheel0: + symbol: gKartWario248Wheel0 + type: texture + offset: 0x5D660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_248_tlut_wheel_0 +wario_kart_frame248_wheel1: + symbol: gKartWario248Wheel1 + type: texture + offset: 0x5D660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_248_tlut_wheel_1 +wario_kart_frame248_wheel2: + symbol: gKartWario248Wheel2 + type: texture + offset: 0x5D660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_248_tlut_wheel_2 +wario_kart_frame248_wheel3: + symbol: gKartWario248Wheel3 + type: texture + offset: 0x5D660 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_248_tlut_wheel_3 +wario_kart_frame249_wheel0: + symbol: gKartWario249Wheel0 + type: texture + offset: 0x5DC68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_249_tlut_wheel_0 +wario_kart_frame249_wheel1: + symbol: gKartWario249Wheel1 + type: texture + offset: 0x5DC68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_249_tlut_wheel_1 +wario_kart_frame249_wheel2: + symbol: gKartWario249Wheel2 + type: texture + offset: 0x5DC68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_249_tlut_wheel_2 +wario_kart_frame249_wheel3: + symbol: gKartWario249Wheel3 + type: texture + offset: 0x5DC68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_249_tlut_wheel_3 +wario_kart_frame250_wheel0: + symbol: gKartWario250Wheel0 + type: texture + offset: 0x5E21C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_250_tlut_wheel_0 +wario_kart_frame250_wheel1: + symbol: gKartWario250Wheel1 + type: texture + offset: 0x5E21C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_250_tlut_wheel_1 +wario_kart_frame250_wheel2: + symbol: gKartWario250Wheel2 + type: texture + offset: 0x5E21C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_250_tlut_wheel_2 +wario_kart_frame250_wheel3: + symbol: gKartWario250Wheel3 + type: texture + offset: 0x5E21C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_250_tlut_wheel_3 +wario_kart_frame251_wheel0: + symbol: gKartWario251Wheel0 + type: texture + offset: 0x5E7FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_251_tlut_wheel_0 +wario_kart_frame251_wheel1: + symbol: gKartWario251Wheel1 + type: texture + offset: 0x5E7FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_251_tlut_wheel_1 +wario_kart_frame251_wheel2: + symbol: gKartWario251Wheel2 + type: texture + offset: 0x5E7FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_251_tlut_wheel_2 +wario_kart_frame251_wheel3: + symbol: gKartWario251Wheel3 + type: texture + offset: 0x5E7FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_251_tlut_wheel_3 +wario_kart_frame252_wheel0: + symbol: gKartWario252Wheel0 + type: texture + offset: 0x5EDF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_252_tlut_wheel_0 +wario_kart_frame252_wheel1: + symbol: gKartWario252Wheel1 + type: texture + offset: 0x5EDF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_252_tlut_wheel_1 +wario_kart_frame252_wheel2: + symbol: gKartWario252Wheel2 + type: texture + offset: 0x5EDF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_252_tlut_wheel_2 +wario_kart_frame252_wheel3: + symbol: gKartWario252Wheel3 + type: texture + offset: 0x5EDF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_252_tlut_wheel_3 +wario_kart_frame253_wheel0: + symbol: gKartWario253Wheel0 + type: texture + offset: 0x5F414 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_253_tlut_wheel_0 +wario_kart_frame253_wheel1: + symbol: gKartWario253Wheel1 + type: texture + offset: 0x5F414 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_253_tlut_wheel_1 +wario_kart_frame253_wheel2: + symbol: gKartWario253Wheel2 + type: texture + offset: 0x5F414 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_253_tlut_wheel_2 +wario_kart_frame253_wheel3: + symbol: gKartWario253Wheel3 + type: texture + offset: 0x5F414 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_253_tlut_wheel_3 +wario_kart_frame254_wheel0: + symbol: gKartWario254Wheel0 + type: texture + offset: 0x5FA64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_254_tlut_wheel_0 +wario_kart_frame254_wheel1: + symbol: gKartWario254Wheel1 + type: texture + offset: 0x5FA64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_254_tlut_wheel_1 +wario_kart_frame254_wheel2: + symbol: gKartWario254Wheel2 + type: texture + offset: 0x5FA64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_254_tlut_wheel_2 +wario_kart_frame254_wheel3: + symbol: gKartWario254Wheel3 + type: texture + offset: 0x5FA64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_254_tlut_wheel_3 +wario_kart_frame255_wheel0: + symbol: gKartWario255Wheel0 + type: texture + offset: 0x600D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_255_tlut_wheel_0 +wario_kart_frame255_wheel1: + symbol: gKartWario255Wheel1 + type: texture + offset: 0x600D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_255_tlut_wheel_1 +wario_kart_frame255_wheel2: + symbol: gKartWario255Wheel2 + type: texture + offset: 0x600D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_255_tlut_wheel_2 +wario_kart_frame255_wheel3: + symbol: gKartWario255Wheel3 + type: texture + offset: 0x600D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_255_tlut_wheel_3 +wario_kart_frame256_wheel0: + symbol: gKartWario256Wheel0 + type: texture + offset: 0x60748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_256_tlut_wheel_0 +wario_kart_frame256_wheel1: + symbol: gKartWario256Wheel1 + type: texture + offset: 0x60748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_256_tlut_wheel_1 +wario_kart_frame256_wheel2: + symbol: gKartWario256Wheel2 + type: texture + offset: 0x60748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_256_tlut_wheel_2 +wario_kart_frame256_wheel3: + symbol: gKartWario256Wheel3 + type: texture + offset: 0x60748 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_256_tlut_wheel_3 +wario_kart_frame257_wheel0: + symbol: gKartWario257Wheel0 + type: texture + offset: 0x60DD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_257_tlut_wheel_0 +wario_kart_frame257_wheel1: + symbol: gKartWario257Wheel1 + type: texture + offset: 0x60DD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_257_tlut_wheel_1 +wario_kart_frame257_wheel2: + symbol: gKartWario257Wheel2 + type: texture + offset: 0x60DD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_257_tlut_wheel_2 +wario_kart_frame257_wheel3: + symbol: gKartWario257Wheel3 + type: texture + offset: 0x60DD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_257_tlut_wheel_3 +wario_kart_frame258_wheel0: + symbol: gKartWario258Wheel0 + type: texture + offset: 0x61460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_258_tlut_wheel_0 +wario_kart_frame258_wheel1: + symbol: gKartWario258Wheel1 + type: texture + offset: 0x61460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_258_tlut_wheel_1 +wario_kart_frame258_wheel2: + symbol: gKartWario258Wheel2 + type: texture + offset: 0x61460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_258_tlut_wheel_2 +wario_kart_frame258_wheel3: + symbol: gKartWario258Wheel3 + type: texture + offset: 0x61460 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_258_tlut_wheel_3 +wario_kart_frame259_wheel0: + symbol: gKartWario259Wheel0 + type: texture + offset: 0x61AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_259_tlut_wheel_0 +wario_kart_frame259_wheel1: + symbol: gKartWario259Wheel1 + type: texture + offset: 0x61AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_259_tlut_wheel_1 +wario_kart_frame259_wheel2: + symbol: gKartWario259Wheel2 + type: texture + offset: 0x61AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_259_tlut_wheel_2 +wario_kart_frame259_wheel3: + symbol: gKartWario259Wheel3 + type: texture + offset: 0x61AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_259_tlut_wheel_3 +wario_kart_frame260_wheel0: + symbol: gKartWario260Wheel0 + type: texture + offset: 0x62120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_260_tlut_wheel_0 +wario_kart_frame260_wheel1: + symbol: gKartWario260Wheel1 + type: texture + offset: 0x62120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_260_tlut_wheel_1 +wario_kart_frame260_wheel2: + symbol: gKartWario260Wheel2 + type: texture + offset: 0x62120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_260_tlut_wheel_2 +wario_kart_frame260_wheel3: + symbol: gKartWario260Wheel3 + type: texture + offset: 0x62120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_260_tlut_wheel_3 +wario_kart_frame261_wheel0: + symbol: gKartWario261Wheel0 + type: texture + offset: 0x6277C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_261_tlut_wheel_0 +wario_kart_frame261_wheel1: + symbol: gKartWario261Wheel1 + type: texture + offset: 0x6277C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_261_tlut_wheel_1 +wario_kart_frame261_wheel2: + symbol: gKartWario261Wheel2 + type: texture + offset: 0x6277C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_261_tlut_wheel_2 +wario_kart_frame261_wheel3: + symbol: gKartWario261Wheel3 + type: texture + offset: 0x6277C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_261_tlut_wheel_3 +wario_kart_frame262_wheel0: + symbol: gKartWario262Wheel0 + type: texture + offset: 0x62DB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_262_tlut_wheel_0 +wario_kart_frame262_wheel1: + symbol: gKartWario262Wheel1 + type: texture + offset: 0x62DB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_262_tlut_wheel_1 +wario_kart_frame262_wheel2: + symbol: gKartWario262Wheel2 + type: texture + offset: 0x62DB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_262_tlut_wheel_2 +wario_kart_frame262_wheel3: + symbol: gKartWario262Wheel3 + type: texture + offset: 0x62DB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_262_tlut_wheel_3 +wario_kart_frame263_wheel0: + symbol: gKartWario263Wheel0 + type: texture + offset: 0x633D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_263_tlut_wheel_0 +wario_kart_frame263_wheel1: + symbol: gKartWario263Wheel1 + type: texture + offset: 0x633D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_263_tlut_wheel_1 +wario_kart_frame263_wheel2: + symbol: gKartWario263Wheel2 + type: texture + offset: 0x633D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_263_tlut_wheel_2 +wario_kart_frame263_wheel3: + symbol: gKartWario263Wheel3 + type: texture + offset: 0x633D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_263_tlut_wheel_3 +wario_kart_frame264_wheel0: + symbol: gKartWario264Wheel0 + type: texture + offset: 0x639E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_264_tlut_wheel_0 +wario_kart_frame264_wheel1: + symbol: gKartWario264Wheel1 + type: texture + offset: 0x639E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_264_tlut_wheel_1 +wario_kart_frame264_wheel2: + symbol: gKartWario264Wheel2 + type: texture + offset: 0x639E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_264_tlut_wheel_2 +wario_kart_frame264_wheel3: + symbol: gKartWario264Wheel3 + type: texture + offset: 0x639E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_264_tlut_wheel_3 +wario_kart_frame265_wheel0: + symbol: gKartWario265Wheel0 + type: texture + offset: 0x64004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_265_tlut_wheel_0 +wario_kart_frame265_wheel1: + symbol: gKartWario265Wheel1 + type: texture + offset: 0x64004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_265_tlut_wheel_1 +wario_kart_frame265_wheel2: + symbol: gKartWario265Wheel2 + type: texture + offset: 0x64004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_265_tlut_wheel_2 +wario_kart_frame265_wheel3: + symbol: gKartWario265Wheel3 + type: texture + offset: 0x64004 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_265_tlut_wheel_3 +wario_kart_frame266_wheel0: + symbol: gKartWario266Wheel0 + type: texture + offset: 0x64610 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_266_tlut_wheel_0 +wario_kart_frame266_wheel1: + symbol: gKartWario266Wheel1 + type: texture + offset: 0x64610 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_266_tlut_wheel_1 +wario_kart_frame266_wheel2: + symbol: gKartWario266Wheel2 + type: texture + offset: 0x64610 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_266_tlut_wheel_2 +wario_kart_frame266_wheel3: + symbol: gKartWario266Wheel3 + type: texture + offset: 0x64610 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_266_tlut_wheel_3 +wario_kart_frame267_wheel0: + symbol: gKartWario267Wheel0 + type: texture + offset: 0x64C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_267_tlut_wheel_0 +wario_kart_frame267_wheel1: + symbol: gKartWario267Wheel1 + type: texture + offset: 0x64C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_267_tlut_wheel_1 +wario_kart_frame267_wheel2: + symbol: gKartWario267Wheel2 + type: texture + offset: 0x64C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_267_tlut_wheel_2 +wario_kart_frame267_wheel3: + symbol: gKartWario267Wheel3 + type: texture + offset: 0x64C18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_267_tlut_wheel_3 +wario_kart_frame268_wheel0: + symbol: gKartWario268Wheel0 + type: texture + offset: 0x651F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_268_tlut_wheel_0 +wario_kart_frame268_wheel1: + symbol: gKartWario268Wheel1 + type: texture + offset: 0x651F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_268_tlut_wheel_1 +wario_kart_frame268_wheel2: + symbol: gKartWario268Wheel2 + type: texture + offset: 0x651F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_268_tlut_wheel_2 +wario_kart_frame268_wheel3: + symbol: gKartWario268Wheel3 + type: texture + offset: 0x651F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_268_tlut_wheel_3 +wario_kart_frame269_wheel0: + symbol: gKartWario269Wheel0 + type: texture + offset: 0x657D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_269_tlut_wheel_0 +wario_kart_frame269_wheel1: + symbol: gKartWario269Wheel1 + type: texture + offset: 0x657D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_269_tlut_wheel_1 +wario_kart_frame269_wheel2: + symbol: gKartWario269Wheel2 + type: texture + offset: 0x657D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_269_tlut_wheel_2 +wario_kart_frame269_wheel3: + symbol: gKartWario269Wheel3 + type: texture + offset: 0x657D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_269_tlut_wheel_3 +wario_kart_frame270_wheel0: + symbol: gKartWario270Wheel0 + type: texture + offset: 0x65D90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_270_tlut_wheel_0 +wario_kart_frame270_wheel1: + symbol: gKartWario270Wheel1 + type: texture + offset: 0x65D90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_270_tlut_wheel_1 +wario_kart_frame270_wheel2: + symbol: gKartWario270Wheel2 + type: texture + offset: 0x65D90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_270_tlut_wheel_2 +wario_kart_frame270_wheel3: + symbol: gKartWario270Wheel3 + type: texture + offset: 0x65D90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_270_tlut_wheel_3 +wario_kart_frame271_wheel0: + symbol: gKartWario271Wheel0 + type: texture + offset: 0x66368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_271_tlut_wheel_0 +wario_kart_frame271_wheel1: + symbol: gKartWario271Wheel1 + type: texture + offset: 0x66368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_271_tlut_wheel_1 +wario_kart_frame271_wheel2: + symbol: gKartWario271Wheel2 + type: texture + offset: 0x66368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_271_tlut_wheel_2 +wario_kart_frame271_wheel3: + symbol: gKartWario271Wheel3 + type: texture + offset: 0x66368 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_271_tlut_wheel_3 +wario_kart_frame272_wheel0: + symbol: gKartWario272Wheel0 + type: texture + offset: 0x66984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_272_tlut_wheel_0 +wario_kart_frame272_wheel1: + symbol: gKartWario272Wheel1 + type: texture + offset: 0x66984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_272_tlut_wheel_1 +wario_kart_frame272_wheel2: + symbol: gKartWario272Wheel2 + type: texture + offset: 0x66984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_272_tlut_wheel_2 +wario_kart_frame272_wheel3: + symbol: gKartWario272Wheel3 + type: texture + offset: 0x66984 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_272_tlut_wheel_3 +wario_kart_frame273_wheel0: + symbol: gKartWario273Wheel0 + type: texture + offset: 0x66FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_273_tlut_wheel_0 +wario_kart_frame273_wheel1: + symbol: gKartWario273Wheel1 + type: texture + offset: 0x66FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_273_tlut_wheel_1 +wario_kart_frame273_wheel2: + symbol: gKartWario273Wheel2 + type: texture + offset: 0x66FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_273_tlut_wheel_2 +wario_kart_frame273_wheel3: + symbol: gKartWario273Wheel3 + type: texture + offset: 0x66FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_273_tlut_wheel_3 +wario_kart_frame274_wheel0: + symbol: gKartWario274Wheel0 + type: texture + offset: 0x67630 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_274_tlut_wheel_0 +wario_kart_frame274_wheel1: + symbol: gKartWario274Wheel1 + type: texture + offset: 0x67630 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_274_tlut_wheel_1 +wario_kart_frame274_wheel2: + symbol: gKartWario274Wheel2 + type: texture + offset: 0x67630 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_274_tlut_wheel_2 +wario_kart_frame274_wheel3: + symbol: gKartWario274Wheel3 + type: texture + offset: 0x67630 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_274_tlut_wheel_3 +wario_kart_frame275_wheel0: + symbol: gKartWario275Wheel0 + type: texture + offset: 0x67CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_275_tlut_wheel_0 +wario_kart_frame275_wheel1: + symbol: gKartWario275Wheel1 + type: texture + offset: 0x67CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_275_tlut_wheel_1 +wario_kart_frame275_wheel2: + symbol: gKartWario275Wheel2 + type: texture + offset: 0x67CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_275_tlut_wheel_2 +wario_kart_frame275_wheel3: + symbol: gKartWario275Wheel3 + type: texture + offset: 0x67CAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_275_tlut_wheel_3 +wario_kart_frame276_wheel0: + symbol: gKartWario276Wheel0 + type: texture + offset: 0x68354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_276_tlut_wheel_0 +wario_kart_frame276_wheel1: + symbol: gKartWario276Wheel1 + type: texture + offset: 0x68354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_276_tlut_wheel_1 +wario_kart_frame276_wheel2: + symbol: gKartWario276Wheel2 + type: texture + offset: 0x68354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_276_tlut_wheel_2 +wario_kart_frame276_wheel3: + symbol: gKartWario276Wheel3 + type: texture + offset: 0x68354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_276_tlut_wheel_3 +wario_kart_frame277_wheel0: + symbol: gKartWario277Wheel0 + type: texture + offset: 0x689E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_277_tlut_wheel_0 +wario_kart_frame277_wheel1: + symbol: gKartWario277Wheel1 + type: texture + offset: 0x689E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_277_tlut_wheel_1 +wario_kart_frame277_wheel2: + symbol: gKartWario277Wheel2 + type: texture + offset: 0x689E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_277_tlut_wheel_2 +wario_kart_frame277_wheel3: + symbol: gKartWario277Wheel3 + type: texture + offset: 0x689E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_277_tlut_wheel_3 +wario_kart_frame278_wheel0: + symbol: gKartWario278Wheel0 + type: texture + offset: 0x69070 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_278_tlut_wheel_0 +wario_kart_frame278_wheel1: + symbol: gKartWario278Wheel1 + type: texture + offset: 0x69070 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_278_tlut_wheel_1 +wario_kart_frame278_wheel2: + symbol: gKartWario278Wheel2 + type: texture + offset: 0x69070 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_278_tlut_wheel_2 +wario_kart_frame278_wheel3: + symbol: gKartWario278Wheel3 + type: texture + offset: 0x69070 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_278_tlut_wheel_3 +wario_kart_frame279_wheel0: + symbol: gKartWario279Wheel0 + type: texture + offset: 0x696D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_279_tlut_wheel_0 +wario_kart_frame279_wheel1: + symbol: gKartWario279Wheel1 + type: texture + offset: 0x696D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_279_tlut_wheel_1 +wario_kart_frame279_wheel2: + symbol: gKartWario279Wheel2 + type: texture + offset: 0x696D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_279_tlut_wheel_2 +wario_kart_frame279_wheel3: + symbol: gKartWario279Wheel3 + type: texture + offset: 0x696D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_279_tlut_wheel_3 +wario_kart_frame280_wheel0: + symbol: gKartWario280Wheel0 + type: texture + offset: 0x69D34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_280_tlut_wheel_0 +wario_kart_frame280_wheel1: + symbol: gKartWario280Wheel1 + type: texture + offset: 0x69D34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_280_tlut_wheel_1 +wario_kart_frame280_wheel2: + symbol: gKartWario280Wheel2 + type: texture + offset: 0x69D34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_280_tlut_wheel_2 +wario_kart_frame280_wheel3: + symbol: gKartWario280Wheel3 + type: texture + offset: 0x69D34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_280_tlut_wheel_3 +wario_kart_frame281_wheel0: + symbol: gKartWario281Wheel0 + type: texture + offset: 0x6A378 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_281_tlut_wheel_0 +wario_kart_frame281_wheel1: + symbol: gKartWario281Wheel1 + type: texture + offset: 0x6A378 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_281_tlut_wheel_1 +wario_kart_frame281_wheel2: + symbol: gKartWario281Wheel2 + type: texture + offset: 0x6A378 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_281_tlut_wheel_2 +wario_kart_frame281_wheel3: + symbol: gKartWario281Wheel3 + type: texture + offset: 0x6A378 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_281_tlut_wheel_3 +wario_kart_frame282_wheel0: + symbol: gKartWario282Wheel0 + type: texture + offset: 0x6A98C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_282_tlut_wheel_0 +wario_kart_frame282_wheel1: + symbol: gKartWario282Wheel1 + type: texture + offset: 0x6A98C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_282_tlut_wheel_1 +wario_kart_frame282_wheel2: + symbol: gKartWario282Wheel2 + type: texture + offset: 0x6A98C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_282_tlut_wheel_2 +wario_kart_frame282_wheel3: + symbol: gKartWario282Wheel3 + type: texture + offset: 0x6A98C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_282_tlut_wheel_3 +wario_kart_frame283_wheel0: + symbol: gKartWario283Wheel0 + type: texture + offset: 0x6AF9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_283_tlut_wheel_0 +wario_kart_frame283_wheel1: + symbol: gKartWario283Wheel1 + type: texture + offset: 0x6AF9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_283_tlut_wheel_1 +wario_kart_frame283_wheel2: + symbol: gKartWario283Wheel2 + type: texture + offset: 0x6AF9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_283_tlut_wheel_2 +wario_kart_frame283_wheel3: + symbol: gKartWario283Wheel3 + type: texture + offset: 0x6AF9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_283_tlut_wheel_3 +wario_kart_frame284_wheel0: + symbol: gKartWario284Wheel0 + type: texture + offset: 0x6B57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_284_tlut_wheel_0 +wario_kart_frame284_wheel1: + symbol: gKartWario284Wheel1 + type: texture + offset: 0x6B57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_284_tlut_wheel_1 +wario_kart_frame284_wheel2: + symbol: gKartWario284Wheel2 + type: texture + offset: 0x6B57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_284_tlut_wheel_2 +wario_kart_frame284_wheel3: + symbol: gKartWario284Wheel3 + type: texture + offset: 0x6B57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_284_tlut_wheel_3 +wario_kart_frame285_wheel0: + symbol: gKartWario285Wheel0 + type: texture + offset: 0x6BB54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_285_tlut_wheel_0 +wario_kart_frame285_wheel1: + symbol: gKartWario285Wheel1 + type: texture + offset: 0x6BB54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_285_tlut_wheel_1 +wario_kart_frame285_wheel2: + symbol: gKartWario285Wheel2 + type: texture + offset: 0x6BB54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_285_tlut_wheel_2 +wario_kart_frame285_wheel3: + symbol: gKartWario285Wheel3 + type: texture + offset: 0x6BB54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_285_tlut_wheel_3 +wario_kart_frame286_wheel0: + symbol: gKartWario286Wheel0 + type: texture + offset: 0x6C120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_286_tlut_wheel_0 +wario_kart_frame286_wheel1: + symbol: gKartWario286Wheel1 + type: texture + offset: 0x6C120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_286_tlut_wheel_1 +wario_kart_frame286_wheel2: + symbol: gKartWario286Wheel2 + type: texture + offset: 0x6C120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_286_tlut_wheel_2 +wario_kart_frame286_wheel3: + symbol: gKartWario286Wheel3 + type: texture + offset: 0x6C120 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_286_tlut_wheel_3 +wario_kart_frame287_wheel0: + symbol: gKartWario287Wheel0 + type: texture + offset: 0x6C6CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_287_tlut_wheel_0 +wario_kart_frame287_wheel1: + symbol: gKartWario287Wheel1 + type: texture + offset: 0x6C6CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_287_tlut_wheel_1 +wario_kart_frame287_wheel2: + symbol: gKartWario287Wheel2 + type: texture + offset: 0x6C6CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_287_tlut_wheel_2 +wario_kart_frame287_wheel3: + symbol: gKartWario287Wheel3 + type: texture + offset: 0x6C6CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_287_tlut_wheel_3 +wario_kart_frame288_wheel0: + symbol: gKartWario288Wheel0 + type: texture + offset: 0x6CC68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_288_tlut_wheel_0 +wario_kart_frame288_wheel1: + symbol: gKartWario288Wheel1 + type: texture + offset: 0x6CC68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_288_tlut_wheel_1 +wario_kart_frame288_wheel2: + symbol: gKartWario288Wheel2 + type: texture + offset: 0x6CC68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_288_tlut_wheel_2 +wario_kart_frame288_wheel3: + symbol: gKartWario288Wheel3 + type: texture + offset: 0x6CC68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_288_tlut_wheel_3 +wario_kart_frame289: + symbol: gKartWario289 + type: texture + offset: 0x6D1CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame290: + symbol: gKartWario290 + type: texture + offset: 0x6D790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame291: + symbol: gKartWario291 + type: texture + offset: 0x6DD94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame292: + symbol: gKartWario292 + type: texture + offset: 0x6E3AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame293: + symbol: gKartWario293 + type: texture + offset: 0x6EA14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame294: + symbol: gKartWario294 + type: texture + offset: 0x6EFD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame295: + symbol: gKartWario295 + type: texture + offset: 0x6F5D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame296: + symbol: gKartWario296 + type: texture + offset: 0x6FBEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame297: + symbol: gKartWario297 + type: texture + offset: 0x70220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame298: + symbol: gKartWario298 + type: texture + offset: 0x707EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame299: + symbol: gKartWario299 + type: texture + offset: 0x70E24 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame300: + symbol: gKartWario300 + type: texture + offset: 0x71438 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame301: + symbol: gKartWario301 + type: texture + offset: 0x719D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame302: + symbol: gKartWario302 + type: texture + offset: 0x71F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame303: + symbol: gKartWario303 + type: texture + offset: 0x72504 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame304: + symbol: gKartWario304 + type: texture + offset: 0x72B1C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame305: + symbol: gKartWario305 + type: texture + offset: 0x73148 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame306: + symbol: gKartWario306 + type: texture + offset: 0x73694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame307: + symbol: gKartWario307 + type: texture + offset: 0x73CA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame308: + symbol: gKartWario308 + type: texture + offset: 0x742F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame309: + symbol: gKartWario309 + type: texture + offset: 0x74924 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame310: + symbol: gKartWario310 + type: texture + offset: 0x74F04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame311: + symbol: gKartWario311 + type: texture + offset: 0x75500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame312: + symbol: gKartWario312 + type: texture + offset: 0x75B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame313: + symbol: gKartWario313 + type: texture + offset: 0x760F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame314: + symbol: gKartWario314 + type: texture + offset: 0x766C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame315: + symbol: gKartWario315 + type: texture + offset: 0x76CF8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame316: + symbol: gKartWario316 + type: texture + offset: 0x7731C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame317: + symbol: gKartWario317 + type: texture + offset: 0x778D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame318: + symbol: gKartWario318 + type: texture + offset: 0x77E3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame319: + symbol: gKartWario319 + type: texture + offset: 0x783C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_frame320: + symbol: gKartWario320 + type: texture + offset: 0x78990 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: wario_kart_palette + tlut_wheel: wario_kart_000_tlut_wheel_0 +wario_kart_000_tlut_wheel_0: + symbol: gKartWario000TlutWheel0 + type: texture + offset: 0x78F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_000_tlut_wheel_1: + symbol: gKartWario000TlutWheel1 + type: texture + offset: 0x7901C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_000_tlut_wheel_2: + symbol: gKartWario000TlutWheel2 + type: texture + offset: 0x7909C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_000_tlut_wheel_3: + symbol: gKartWario000TlutWheel3 + type: texture + offset: 0x7911C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_001_tlut_wheel_0: + symbol: gKartWario001TlutWheel0 + type: texture + offset: 0x7919C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_001_tlut_wheel_1: + symbol: gKartWario001TlutWheel1 + type: texture + offset: 0x7921C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_001_tlut_wheel_2: + symbol: gKartWario001TlutWheel2 + type: texture + offset: 0x7929C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_001_tlut_wheel_3: + symbol: gKartWario001TlutWheel3 + type: texture + offset: 0x7931C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_002_tlut_wheel_0: + symbol: gKartWario002TlutWheel0 + type: texture + offset: 0x7939C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_002_tlut_wheel_1: + symbol: gKartWario002TlutWheel1 + type: texture + offset: 0x7941C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_002_tlut_wheel_2: + symbol: gKartWario002TlutWheel2 + type: texture + offset: 0x7949C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_002_tlut_wheel_3: + symbol: gKartWario002TlutWheel3 + type: texture + offset: 0x7951C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_003_tlut_wheel_0: + symbol: gKartWario003TlutWheel0 + type: texture + offset: 0x7959C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_003_tlut_wheel_1: + symbol: gKartWario003TlutWheel1 + type: texture + offset: 0x7961C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_003_tlut_wheel_2: + symbol: gKartWario003TlutWheel2 + type: texture + offset: 0x7969C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_003_tlut_wheel_3: + symbol: gKartWario003TlutWheel3 + type: texture + offset: 0x7971C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_004_tlut_wheel_0: + symbol: gKartWario004TlutWheel0 + type: texture + offset: 0x7979C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_004_tlut_wheel_1: + symbol: gKartWario004TlutWheel1 + type: texture + offset: 0x7981C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_004_tlut_wheel_2: + symbol: gKartWario004TlutWheel2 + type: texture + offset: 0x7989C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_004_tlut_wheel_3: + symbol: gKartWario004TlutWheel3 + type: texture + offset: 0x7991C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_005_tlut_wheel_0: + symbol: gKartWario005TlutWheel0 + type: texture + offset: 0x7999C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_005_tlut_wheel_1: + symbol: gKartWario005TlutWheel1 + type: texture + offset: 0x79A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_005_tlut_wheel_2: + symbol: gKartWario005TlutWheel2 + type: texture + offset: 0x79A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_005_tlut_wheel_3: + symbol: gKartWario005TlutWheel3 + type: texture + offset: 0x79B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_006_tlut_wheel_0: + symbol: gKartWario006TlutWheel0 + type: texture + offset: 0x79B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_006_tlut_wheel_1: + symbol: gKartWario006TlutWheel1 + type: texture + offset: 0x79C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_006_tlut_wheel_2: + symbol: gKartWario006TlutWheel2 + type: texture + offset: 0x79C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_006_tlut_wheel_3: + symbol: gKartWario006TlutWheel3 + type: texture + offset: 0x79D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_007_tlut_wheel_0: + symbol: gKartWario007TlutWheel0 + type: texture + offset: 0x79D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_007_tlut_wheel_1: + symbol: gKartWario007TlutWheel1 + type: texture + offset: 0x79E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_007_tlut_wheel_2: + symbol: gKartWario007TlutWheel2 + type: texture + offset: 0x79E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_007_tlut_wheel_3: + symbol: gKartWario007TlutWheel3 + type: texture + offset: 0x79F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_008_tlut_wheel_0: + symbol: gKartWario008TlutWheel0 + type: texture + offset: 0x79F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_008_tlut_wheel_1: + symbol: gKartWario008TlutWheel1 + type: texture + offset: 0x7A01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_008_tlut_wheel_2: + symbol: gKartWario008TlutWheel2 + type: texture + offset: 0x7A09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_008_tlut_wheel_3: + symbol: gKartWario008TlutWheel3 + type: texture + offset: 0x7A11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_009_tlut_wheel_0: + symbol: gKartWario009TlutWheel0 + type: texture + offset: 0x7A19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_009_tlut_wheel_1: + symbol: gKartWario009TlutWheel1 + type: texture + offset: 0x7A21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_009_tlut_wheel_2: + symbol: gKartWario009TlutWheel2 + type: texture + offset: 0x7A29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_009_tlut_wheel_3: + symbol: gKartWario009TlutWheel3 + type: texture + offset: 0x7A31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_010_tlut_wheel_0: + symbol: gKartWario010TlutWheel0 + type: texture + offset: 0x7A39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_010_tlut_wheel_1: + symbol: gKartWario010TlutWheel1 + type: texture + offset: 0x7A41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_010_tlut_wheel_2: + symbol: gKartWario010TlutWheel2 + type: texture + offset: 0x7A49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_010_tlut_wheel_3: + symbol: gKartWario010TlutWheel3 + type: texture + offset: 0x7A51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_011_tlut_wheel_0: + symbol: gKartWario011TlutWheel0 + type: texture + offset: 0x7A59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_011_tlut_wheel_1: + symbol: gKartWario011TlutWheel1 + type: texture + offset: 0x7A61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_011_tlut_wheel_2: + symbol: gKartWario011TlutWheel2 + type: texture + offset: 0x7A69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_011_tlut_wheel_3: + symbol: gKartWario011TlutWheel3 + type: texture + offset: 0x7A71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_012_tlut_wheel_0: + symbol: gKartWario012TlutWheel0 + type: texture + offset: 0x7A79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_012_tlut_wheel_1: + symbol: gKartWario012TlutWheel1 + type: texture + offset: 0x7A81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_012_tlut_wheel_2: + symbol: gKartWario012TlutWheel2 + type: texture + offset: 0x7A89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_012_tlut_wheel_3: + symbol: gKartWario012TlutWheel3 + type: texture + offset: 0x7A91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_013_tlut_wheel_0: + symbol: gKartWario013TlutWheel0 + type: texture + offset: 0x7A99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_013_tlut_wheel_1: + symbol: gKartWario013TlutWheel1 + type: texture + offset: 0x7AA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_013_tlut_wheel_2: + symbol: gKartWario013TlutWheel2 + type: texture + offset: 0x7AA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_013_tlut_wheel_3: + symbol: gKartWario013TlutWheel3 + type: texture + offset: 0x7AB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_014_tlut_wheel_0: + symbol: gKartWario014TlutWheel0 + type: texture + offset: 0x7AB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_014_tlut_wheel_1: + symbol: gKartWario014TlutWheel1 + type: texture + offset: 0x7AC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_014_tlut_wheel_2: + symbol: gKartWario014TlutWheel2 + type: texture + offset: 0x7AC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_014_tlut_wheel_3: + symbol: gKartWario014TlutWheel3 + type: texture + offset: 0x7AD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_015_tlut_wheel_0: + symbol: gKartWario015TlutWheel0 + type: texture + offset: 0x7AD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_015_tlut_wheel_1: + symbol: gKartWario015TlutWheel1 + type: texture + offset: 0x7AE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_015_tlut_wheel_2: + symbol: gKartWario015TlutWheel2 + type: texture + offset: 0x7AE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_015_tlut_wheel_3: + symbol: gKartWario015TlutWheel3 + type: texture + offset: 0x7AF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_016_tlut_wheel_0: + symbol: gKartWario016TlutWheel0 + type: texture + offset: 0x7AF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_016_tlut_wheel_1: + symbol: gKartWario016TlutWheel1 + type: texture + offset: 0x7B01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_016_tlut_wheel_2: + symbol: gKartWario016TlutWheel2 + type: texture + offset: 0x7B09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_016_tlut_wheel_3: + symbol: gKartWario016TlutWheel3 + type: texture + offset: 0x7B11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_017_tlut_wheel_0: + symbol: gKartWario017TlutWheel0 + type: texture + offset: 0x7B19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_017_tlut_wheel_1: + symbol: gKartWario017TlutWheel1 + type: texture + offset: 0x7B21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_017_tlut_wheel_2: + symbol: gKartWario017TlutWheel2 + type: texture + offset: 0x7B29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_017_tlut_wheel_3: + symbol: gKartWario017TlutWheel3 + type: texture + offset: 0x7B31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_018_tlut_wheel_0: + symbol: gKartWario018TlutWheel0 + type: texture + offset: 0x7B39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_018_tlut_wheel_1: + symbol: gKartWario018TlutWheel1 + type: texture + offset: 0x7B41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_018_tlut_wheel_2: + symbol: gKartWario018TlutWheel2 + type: texture + offset: 0x7B49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_018_tlut_wheel_3: + symbol: gKartWario018TlutWheel3 + type: texture + offset: 0x7B51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_019_tlut_wheel_0: + symbol: gKartWario019TlutWheel0 + type: texture + offset: 0x7B59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_019_tlut_wheel_1: + symbol: gKartWario019TlutWheel1 + type: texture + offset: 0x7B61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_019_tlut_wheel_2: + symbol: gKartWario019TlutWheel2 + type: texture + offset: 0x7B69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_019_tlut_wheel_3: + symbol: gKartWario019TlutWheel3 + type: texture + offset: 0x7B71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_020_tlut_wheel_0: + symbol: gKartWario020TlutWheel0 + type: texture + offset: 0x7B79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_020_tlut_wheel_1: + symbol: gKartWario020TlutWheel1 + type: texture + offset: 0x7B81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_020_tlut_wheel_2: + symbol: gKartWario020TlutWheel2 + type: texture + offset: 0x7B89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_020_tlut_wheel_3: + symbol: gKartWario020TlutWheel3 + type: texture + offset: 0x7B91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_021_tlut_wheel_0: + symbol: gKartWario021TlutWheel0 + type: texture + offset: 0x7B99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_021_tlut_wheel_1: + symbol: gKartWario021TlutWheel1 + type: texture + offset: 0x7BA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_021_tlut_wheel_2: + symbol: gKartWario021TlutWheel2 + type: texture + offset: 0x7BA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_021_tlut_wheel_3: + symbol: gKartWario021TlutWheel3 + type: texture + offset: 0x7BB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_022_tlut_wheel_0: + symbol: gKartWario022TlutWheel0 + type: texture + offset: 0x7BB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_022_tlut_wheel_1: + symbol: gKartWario022TlutWheel1 + type: texture + offset: 0x7BC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_022_tlut_wheel_2: + symbol: gKartWario022TlutWheel2 + type: texture + offset: 0x7BC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_022_tlut_wheel_3: + symbol: gKartWario022TlutWheel3 + type: texture + offset: 0x7BD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_023_tlut_wheel_0: + symbol: gKartWario023TlutWheel0 + type: texture + offset: 0x7BD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_023_tlut_wheel_1: + symbol: gKartWario023TlutWheel1 + type: texture + offset: 0x7BE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_023_tlut_wheel_2: + symbol: gKartWario023TlutWheel2 + type: texture + offset: 0x7BE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_023_tlut_wheel_3: + symbol: gKartWario023TlutWheel3 + type: texture + offset: 0x7BF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_024_tlut_wheel_0: + symbol: gKartWario024TlutWheel0 + type: texture + offset: 0x7BF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_024_tlut_wheel_1: + symbol: gKartWario024TlutWheel1 + type: texture + offset: 0x7C01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_024_tlut_wheel_2: + symbol: gKartWario024TlutWheel2 + type: texture + offset: 0x7C09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_024_tlut_wheel_3: + symbol: gKartWario024TlutWheel3 + type: texture + offset: 0x7C11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_025_tlut_wheel_0: + symbol: gKartWario025TlutWheel0 + type: texture + offset: 0x7C19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_025_tlut_wheel_1: + symbol: gKartWario025TlutWheel1 + type: texture + offset: 0x7C21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_025_tlut_wheel_2: + symbol: gKartWario025TlutWheel2 + type: texture + offset: 0x7C29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_025_tlut_wheel_3: + symbol: gKartWario025TlutWheel3 + type: texture + offset: 0x7C31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_026_tlut_wheel_0: + symbol: gKartWario026TlutWheel0 + type: texture + offset: 0x7C39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_026_tlut_wheel_1: + symbol: gKartWario026TlutWheel1 + type: texture + offset: 0x7C41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_026_tlut_wheel_2: + symbol: gKartWario026TlutWheel2 + type: texture + offset: 0x7C49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_026_tlut_wheel_3: + symbol: gKartWario026TlutWheel3 + type: texture + offset: 0x7C51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_027_tlut_wheel_0: + symbol: gKartWario027TlutWheel0 + type: texture + offset: 0x7C59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_027_tlut_wheel_1: + symbol: gKartWario027TlutWheel1 + type: texture + offset: 0x7C61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_027_tlut_wheel_2: + symbol: gKartWario027TlutWheel2 + type: texture + offset: 0x7C69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_027_tlut_wheel_3: + symbol: gKartWario027TlutWheel3 + type: texture + offset: 0x7C71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_028_tlut_wheel_0: + symbol: gKartWario028TlutWheel0 + type: texture + offset: 0x7C79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_028_tlut_wheel_1: + symbol: gKartWario028TlutWheel1 + type: texture + offset: 0x7C81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_028_tlut_wheel_2: + symbol: gKartWario028TlutWheel2 + type: texture + offset: 0x7C89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_028_tlut_wheel_3: + symbol: gKartWario028TlutWheel3 + type: texture + offset: 0x7C91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_029_tlut_wheel_0: + symbol: gKartWario029TlutWheel0 + type: texture + offset: 0x7C99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_029_tlut_wheel_1: + symbol: gKartWario029TlutWheel1 + type: texture + offset: 0x7CA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_029_tlut_wheel_2: + symbol: gKartWario029TlutWheel2 + type: texture + offset: 0x7CA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_029_tlut_wheel_3: + symbol: gKartWario029TlutWheel3 + type: texture + offset: 0x7CB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_030_tlut_wheel_0: + symbol: gKartWario030TlutWheel0 + type: texture + offset: 0x7CB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_030_tlut_wheel_1: + symbol: gKartWario030TlutWheel1 + type: texture + offset: 0x7CC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_030_tlut_wheel_2: + symbol: gKartWario030TlutWheel2 + type: texture + offset: 0x7CC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_030_tlut_wheel_3: + symbol: gKartWario030TlutWheel3 + type: texture + offset: 0x7CD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_031_tlut_wheel_0: + symbol: gKartWario031TlutWheel0 + type: texture + offset: 0x7CD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_031_tlut_wheel_1: + symbol: gKartWario031TlutWheel1 + type: texture + offset: 0x7CE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_031_tlut_wheel_2: + symbol: gKartWario031TlutWheel2 + type: texture + offset: 0x7CE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_031_tlut_wheel_3: + symbol: gKartWario031TlutWheel3 + type: texture + offset: 0x7CF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_032_tlut_wheel_0: + symbol: gKartWario032TlutWheel0 + type: texture + offset: 0x7CF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_032_tlut_wheel_1: + symbol: gKartWario032TlutWheel1 + type: texture + offset: 0x7D01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_032_tlut_wheel_2: + symbol: gKartWario032TlutWheel2 + type: texture + offset: 0x7D09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_032_tlut_wheel_3: + symbol: gKartWario032TlutWheel3 + type: texture + offset: 0x7D11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_033_tlut_wheel_0: + symbol: gKartWario033TlutWheel0 + type: texture + offset: 0x7D19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_033_tlut_wheel_1: + symbol: gKartWario033TlutWheel1 + type: texture + offset: 0x7D21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_033_tlut_wheel_2: + symbol: gKartWario033TlutWheel2 + type: texture + offset: 0x7D29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_033_tlut_wheel_3: + symbol: gKartWario033TlutWheel3 + type: texture + offset: 0x7D31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_034_tlut_wheel_0: + symbol: gKartWario034TlutWheel0 + type: texture + offset: 0x7D39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_034_tlut_wheel_1: + symbol: gKartWario034TlutWheel1 + type: texture + offset: 0x7D41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_034_tlut_wheel_2: + symbol: gKartWario034TlutWheel2 + type: texture + offset: 0x7D49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_034_tlut_wheel_3: + symbol: gKartWario034TlutWheel3 + type: texture + offset: 0x7D51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_035_tlut_wheel_0: + symbol: gKartWario035TlutWheel0 + type: texture + offset: 0x7D59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_035_tlut_wheel_1: + symbol: gKartWario035TlutWheel1 + type: texture + offset: 0x7D61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_035_tlut_wheel_2: + symbol: gKartWario035TlutWheel2 + type: texture + offset: 0x7D69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_035_tlut_wheel_3: + symbol: gKartWario035TlutWheel3 + type: texture + offset: 0x7D71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_036_tlut_wheel_0: + symbol: gKartWario036TlutWheel0 + type: texture + offset: 0x7D79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_036_tlut_wheel_1: + symbol: gKartWario036TlutWheel1 + type: texture + offset: 0x7D81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_036_tlut_wheel_2: + symbol: gKartWario036TlutWheel2 + type: texture + offset: 0x7D89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_036_tlut_wheel_3: + symbol: gKartWario036TlutWheel3 + type: texture + offset: 0x7D91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_037_tlut_wheel_0: + symbol: gKartWario037TlutWheel0 + type: texture + offset: 0x7D99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_037_tlut_wheel_1: + symbol: gKartWario037TlutWheel1 + type: texture + offset: 0x7DA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_037_tlut_wheel_2: + symbol: gKartWario037TlutWheel2 + type: texture + offset: 0x7DA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_037_tlut_wheel_3: + symbol: gKartWario037TlutWheel3 + type: texture + offset: 0x7DB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_038_tlut_wheel_0: + symbol: gKartWario038TlutWheel0 + type: texture + offset: 0x7DB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_038_tlut_wheel_1: + symbol: gKartWario038TlutWheel1 + type: texture + offset: 0x7DC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_038_tlut_wheel_2: + symbol: gKartWario038TlutWheel2 + type: texture + offset: 0x7DC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_038_tlut_wheel_3: + symbol: gKartWario038TlutWheel3 + type: texture + offset: 0x7DD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_039_tlut_wheel_0: + symbol: gKartWario039TlutWheel0 + type: texture + offset: 0x7DD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_039_tlut_wheel_1: + symbol: gKartWario039TlutWheel1 + type: texture + offset: 0x7DE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_039_tlut_wheel_2: + symbol: gKartWario039TlutWheel2 + type: texture + offset: 0x7DE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_039_tlut_wheel_3: + symbol: gKartWario039TlutWheel3 + type: texture + offset: 0x7DF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_040_tlut_wheel_0: + symbol: gKartWario040TlutWheel0 + type: texture + offset: 0x7DF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_040_tlut_wheel_1: + symbol: gKartWario040TlutWheel1 + type: texture + offset: 0x7E01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_040_tlut_wheel_2: + symbol: gKartWario040TlutWheel2 + type: texture + offset: 0x7E09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_040_tlut_wheel_3: + symbol: gKartWario040TlutWheel3 + type: texture + offset: 0x7E11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_041_tlut_wheel_0: + symbol: gKartWario041TlutWheel0 + type: texture + offset: 0x7E19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_041_tlut_wheel_1: + symbol: gKartWario041TlutWheel1 + type: texture + offset: 0x7E21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_041_tlut_wheel_2: + symbol: gKartWario041TlutWheel2 + type: texture + offset: 0x7E29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_041_tlut_wheel_3: + symbol: gKartWario041TlutWheel3 + type: texture + offset: 0x7E31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_042_tlut_wheel_0: + symbol: gKartWario042TlutWheel0 + type: texture + offset: 0x7E39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_042_tlut_wheel_1: + symbol: gKartWario042TlutWheel1 + type: texture + offset: 0x7E41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_042_tlut_wheel_2: + symbol: gKartWario042TlutWheel2 + type: texture + offset: 0x7E49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_042_tlut_wheel_3: + symbol: gKartWario042TlutWheel3 + type: texture + offset: 0x7E51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_043_tlut_wheel_0: + symbol: gKartWario043TlutWheel0 + type: texture + offset: 0x7E59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_043_tlut_wheel_1: + symbol: gKartWario043TlutWheel1 + type: texture + offset: 0x7E61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_043_tlut_wheel_2: + symbol: gKartWario043TlutWheel2 + type: texture + offset: 0x7E69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_043_tlut_wheel_3: + symbol: gKartWario043TlutWheel3 + type: texture + offset: 0x7E71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_044_tlut_wheel_0: + symbol: gKartWario044TlutWheel0 + type: texture + offset: 0x7E79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_044_tlut_wheel_1: + symbol: gKartWario044TlutWheel1 + type: texture + offset: 0x7E81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_044_tlut_wheel_2: + symbol: gKartWario044TlutWheel2 + type: texture + offset: 0x7E89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_044_tlut_wheel_3: + symbol: gKartWario044TlutWheel3 + type: texture + offset: 0x7E91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_045_tlut_wheel_0: + symbol: gKartWario045TlutWheel0 + type: texture + offset: 0x7E99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_045_tlut_wheel_1: + symbol: gKartWario045TlutWheel1 + type: texture + offset: 0x7EA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_045_tlut_wheel_2: + symbol: gKartWario045TlutWheel2 + type: texture + offset: 0x7EA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_045_tlut_wheel_3: + symbol: gKartWario045TlutWheel3 + type: texture + offset: 0x7EB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_046_tlut_wheel_0: + symbol: gKartWario046TlutWheel0 + type: texture + offset: 0x7EB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_046_tlut_wheel_1: + symbol: gKartWario046TlutWheel1 + type: texture + offset: 0x7EC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_046_tlut_wheel_2: + symbol: gKartWario046TlutWheel2 + type: texture + offset: 0x7EC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_046_tlut_wheel_3: + symbol: gKartWario046TlutWheel3 + type: texture + offset: 0x7ED1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_047_tlut_wheel_0: + symbol: gKartWario047TlutWheel0 + type: texture + offset: 0x7ED9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_047_tlut_wheel_1: + symbol: gKartWario047TlutWheel1 + type: texture + offset: 0x7EE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_047_tlut_wheel_2: + symbol: gKartWario047TlutWheel2 + type: texture + offset: 0x7EE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_047_tlut_wheel_3: + symbol: gKartWario047TlutWheel3 + type: texture + offset: 0x7EF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_048_tlut_wheel_0: + symbol: gKartWario048TlutWheel0 + type: texture + offset: 0x7EF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_048_tlut_wheel_1: + symbol: gKartWario048TlutWheel1 + type: texture + offset: 0x7F01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_048_tlut_wheel_2: + symbol: gKartWario048TlutWheel2 + type: texture + offset: 0x7F09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_048_tlut_wheel_3: + symbol: gKartWario048TlutWheel3 + type: texture + offset: 0x7F11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_049_tlut_wheel_0: + symbol: gKartWario049TlutWheel0 + type: texture + offset: 0x7F19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_049_tlut_wheel_1: + symbol: gKartWario049TlutWheel1 + type: texture + offset: 0x7F21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_049_tlut_wheel_2: + symbol: gKartWario049TlutWheel2 + type: texture + offset: 0x7F29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_049_tlut_wheel_3: + symbol: gKartWario049TlutWheel3 + type: texture + offset: 0x7F31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_050_tlut_wheel_0: + symbol: gKartWario050TlutWheel0 + type: texture + offset: 0x7F39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_050_tlut_wheel_1: + symbol: gKartWario050TlutWheel1 + type: texture + offset: 0x7F41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_050_tlut_wheel_2: + symbol: gKartWario050TlutWheel2 + type: texture + offset: 0x7F49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_050_tlut_wheel_3: + symbol: gKartWario050TlutWheel3 + type: texture + offset: 0x7F51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_051_tlut_wheel_0: + symbol: gKartWario051TlutWheel0 + type: texture + offset: 0x7F59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_051_tlut_wheel_1: + symbol: gKartWario051TlutWheel1 + type: texture + offset: 0x7F61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_051_tlut_wheel_2: + symbol: gKartWario051TlutWheel2 + type: texture + offset: 0x7F69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_051_tlut_wheel_3: + symbol: gKartWario051TlutWheel3 + type: texture + offset: 0x7F71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_052_tlut_wheel_0: + symbol: gKartWario052TlutWheel0 + type: texture + offset: 0x7F79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_052_tlut_wheel_1: + symbol: gKartWario052TlutWheel1 + type: texture + offset: 0x7F81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_052_tlut_wheel_2: + symbol: gKartWario052TlutWheel2 + type: texture + offset: 0x7F89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_052_tlut_wheel_3: + symbol: gKartWario052TlutWheel3 + type: texture + offset: 0x7F91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_053_tlut_wheel_0: + symbol: gKartWario053TlutWheel0 + type: texture + offset: 0x7F99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_053_tlut_wheel_1: + symbol: gKartWario053TlutWheel1 + type: texture + offset: 0x7FA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_053_tlut_wheel_2: + symbol: gKartWario053TlutWheel2 + type: texture + offset: 0x7FA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_053_tlut_wheel_3: + symbol: gKartWario053TlutWheel3 + type: texture + offset: 0x7FB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_054_tlut_wheel_0: + symbol: gKartWario054TlutWheel0 + type: texture + offset: 0x7FB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_054_tlut_wheel_1: + symbol: gKartWario054TlutWheel1 + type: texture + offset: 0x7FC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_054_tlut_wheel_2: + symbol: gKartWario054TlutWheel2 + type: texture + offset: 0x7FC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_054_tlut_wheel_3: + symbol: gKartWario054TlutWheel3 + type: texture + offset: 0x7FD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_055_tlut_wheel_0: + symbol: gKartWario055TlutWheel0 + type: texture + offset: 0x7FD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_055_tlut_wheel_1: + symbol: gKartWario055TlutWheel1 + type: texture + offset: 0x7FE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_055_tlut_wheel_2: + symbol: gKartWario055TlutWheel2 + type: texture + offset: 0x7FE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_055_tlut_wheel_3: + symbol: gKartWario055TlutWheel3 + type: texture + offset: 0x7FF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_056_tlut_wheel_0: + symbol: gKartWario056TlutWheel0 + type: texture + offset: 0x7FF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_056_tlut_wheel_1: + symbol: gKartWario056TlutWheel1 + type: texture + offset: 0x8001C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_056_tlut_wheel_2: + symbol: gKartWario056TlutWheel2 + type: texture + offset: 0x8009C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_056_tlut_wheel_3: + symbol: gKartWario056TlutWheel3 + type: texture + offset: 0x8011C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_057_tlut_wheel_0: + symbol: gKartWario057TlutWheel0 + type: texture + offset: 0x8019C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_057_tlut_wheel_1: + symbol: gKartWario057TlutWheel1 + type: texture + offset: 0x8021C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_057_tlut_wheel_2: + symbol: gKartWario057TlutWheel2 + type: texture + offset: 0x8029C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_057_tlut_wheel_3: + symbol: gKartWario057TlutWheel3 + type: texture + offset: 0x8031C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_058_tlut_wheel_0: + symbol: gKartWario058TlutWheel0 + type: texture + offset: 0x8039C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_058_tlut_wheel_1: + symbol: gKartWario058TlutWheel1 + type: texture + offset: 0x8041C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_058_tlut_wheel_2: + symbol: gKartWario058TlutWheel2 + type: texture + offset: 0x8049C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_058_tlut_wheel_3: + symbol: gKartWario058TlutWheel3 + type: texture + offset: 0x8051C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_059_tlut_wheel_0: + symbol: gKartWario059TlutWheel0 + type: texture + offset: 0x8059C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_059_tlut_wheel_1: + symbol: gKartWario059TlutWheel1 + type: texture + offset: 0x8061C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_059_tlut_wheel_2: + symbol: gKartWario059TlutWheel2 + type: texture + offset: 0x8069C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_059_tlut_wheel_3: + symbol: gKartWario059TlutWheel3 + type: texture + offset: 0x8071C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_060_tlut_wheel_0: + symbol: gKartWario060TlutWheel0 + type: texture + offset: 0x8079C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_060_tlut_wheel_1: + symbol: gKartWario060TlutWheel1 + type: texture + offset: 0x8081C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_060_tlut_wheel_2: + symbol: gKartWario060TlutWheel2 + type: texture + offset: 0x8089C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_060_tlut_wheel_3: + symbol: gKartWario060TlutWheel3 + type: texture + offset: 0x8091C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_061_tlut_wheel_0: + symbol: gKartWario061TlutWheel0 + type: texture + offset: 0x8099C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_061_tlut_wheel_1: + symbol: gKartWario061TlutWheel1 + type: texture + offset: 0x80A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_061_tlut_wheel_2: + symbol: gKartWario061TlutWheel2 + type: texture + offset: 0x80A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_061_tlut_wheel_3: + symbol: gKartWario061TlutWheel3 + type: texture + offset: 0x80B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_062_tlut_wheel_0: + symbol: gKartWario062TlutWheel0 + type: texture + offset: 0x80B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_062_tlut_wheel_1: + symbol: gKartWario062TlutWheel1 + type: texture + offset: 0x80C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_062_tlut_wheel_2: + symbol: gKartWario062TlutWheel2 + type: texture + offset: 0x80C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_062_tlut_wheel_3: + symbol: gKartWario062TlutWheel3 + type: texture + offset: 0x80D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_063_tlut_wheel_0: + symbol: gKartWario063TlutWheel0 + type: texture + offset: 0x80D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_063_tlut_wheel_1: + symbol: gKartWario063TlutWheel1 + type: texture + offset: 0x80E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_063_tlut_wheel_2: + symbol: gKartWario063TlutWheel2 + type: texture + offset: 0x80E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_063_tlut_wheel_3: + symbol: gKartWario063TlutWheel3 + type: texture + offset: 0x80F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_064_tlut_wheel_0: + symbol: gKartWario064TlutWheel0 + type: texture + offset: 0x80F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_064_tlut_wheel_1: + symbol: gKartWario064TlutWheel1 + type: texture + offset: 0x8101C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_064_tlut_wheel_2: + symbol: gKartWario064TlutWheel2 + type: texture + offset: 0x8109C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_064_tlut_wheel_3: + symbol: gKartWario064TlutWheel3 + type: texture + offset: 0x8111C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_065_tlut_wheel_0: + symbol: gKartWario065TlutWheel0 + type: texture + offset: 0x8119C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_065_tlut_wheel_1: + symbol: gKartWario065TlutWheel1 + type: texture + offset: 0x8121C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_065_tlut_wheel_2: + symbol: gKartWario065TlutWheel2 + type: texture + offset: 0x8129C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_065_tlut_wheel_3: + symbol: gKartWario065TlutWheel3 + type: texture + offset: 0x8131C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_066_tlut_wheel_0: + symbol: gKartWario066TlutWheel0 + type: texture + offset: 0x8139C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_066_tlut_wheel_1: + symbol: gKartWario066TlutWheel1 + type: texture + offset: 0x8141C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_066_tlut_wheel_2: + symbol: gKartWario066TlutWheel2 + type: texture + offset: 0x8149C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_066_tlut_wheel_3: + symbol: gKartWario066TlutWheel3 + type: texture + offset: 0x8151C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_067_tlut_wheel_0: + symbol: gKartWario067TlutWheel0 + type: texture + offset: 0x8159C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_067_tlut_wheel_1: + symbol: gKartWario067TlutWheel1 + type: texture + offset: 0x8161C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_067_tlut_wheel_2: + symbol: gKartWario067TlutWheel2 + type: texture + offset: 0x8169C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_067_tlut_wheel_3: + symbol: gKartWario067TlutWheel3 + type: texture + offset: 0x8171C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_068_tlut_wheel_0: + symbol: gKartWario068TlutWheel0 + type: texture + offset: 0x8179C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_068_tlut_wheel_1: + symbol: gKartWario068TlutWheel1 + type: texture + offset: 0x8181C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_068_tlut_wheel_2: + symbol: gKartWario068TlutWheel2 + type: texture + offset: 0x8189C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_068_tlut_wheel_3: + symbol: gKartWario068TlutWheel3 + type: texture + offset: 0x8191C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_069_tlut_wheel_0: + symbol: gKartWario069TlutWheel0 + type: texture + offset: 0x8199C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_069_tlut_wheel_1: + symbol: gKartWario069TlutWheel1 + type: texture + offset: 0x81A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_069_tlut_wheel_2: + symbol: gKartWario069TlutWheel2 + type: texture + offset: 0x81A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_069_tlut_wheel_3: + symbol: gKartWario069TlutWheel3 + type: texture + offset: 0x81B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_070_tlut_wheel_0: + symbol: gKartWario070TlutWheel0 + type: texture + offset: 0x81B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_070_tlut_wheel_1: + symbol: gKartWario070TlutWheel1 + type: texture + offset: 0x81C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_070_tlut_wheel_2: + symbol: gKartWario070TlutWheel2 + type: texture + offset: 0x81C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_070_tlut_wheel_3: + symbol: gKartWario070TlutWheel3 + type: texture + offset: 0x81D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_071_tlut_wheel_0: + symbol: gKartWario071TlutWheel0 + type: texture + offset: 0x81D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_071_tlut_wheel_1: + symbol: gKartWario071TlutWheel1 + type: texture + offset: 0x81E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_071_tlut_wheel_2: + symbol: gKartWario071TlutWheel2 + type: texture + offset: 0x81E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_071_tlut_wheel_3: + symbol: gKartWario071TlutWheel3 + type: texture + offset: 0x81F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_072_tlut_wheel_0: + symbol: gKartWario072TlutWheel0 + type: texture + offset: 0x81F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_072_tlut_wheel_1: + symbol: gKartWario072TlutWheel1 + type: texture + offset: 0x8201C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_072_tlut_wheel_2: + symbol: gKartWario072TlutWheel2 + type: texture + offset: 0x8209C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_072_tlut_wheel_3: + symbol: gKartWario072TlutWheel3 + type: texture + offset: 0x8211C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_073_tlut_wheel_0: + symbol: gKartWario073TlutWheel0 + type: texture + offset: 0x8219C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_073_tlut_wheel_1: + symbol: gKartWario073TlutWheel1 + type: texture + offset: 0x8221C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_073_tlut_wheel_2: + symbol: gKartWario073TlutWheel2 + type: texture + offset: 0x8229C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_073_tlut_wheel_3: + symbol: gKartWario073TlutWheel3 + type: texture + offset: 0x8231C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_074_tlut_wheel_0: + symbol: gKartWario074TlutWheel0 + type: texture + offset: 0x8239C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_074_tlut_wheel_1: + symbol: gKartWario074TlutWheel1 + type: texture + offset: 0x8241C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_074_tlut_wheel_2: + symbol: gKartWario074TlutWheel2 + type: texture + offset: 0x8249C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_074_tlut_wheel_3: + symbol: gKartWario074TlutWheel3 + type: texture + offset: 0x8251C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_075_tlut_wheel_0: + symbol: gKartWario075TlutWheel0 + type: texture + offset: 0x8259C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_075_tlut_wheel_1: + symbol: gKartWario075TlutWheel1 + type: texture + offset: 0x8261C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_075_tlut_wheel_2: + symbol: gKartWario075TlutWheel2 + type: texture + offset: 0x8269C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_075_tlut_wheel_3: + symbol: gKartWario075TlutWheel3 + type: texture + offset: 0x8271C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_076_tlut_wheel_0: + symbol: gKartWario076TlutWheel0 + type: texture + offset: 0x8279C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_076_tlut_wheel_1: + symbol: gKartWario076TlutWheel1 + type: texture + offset: 0x8281C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_076_tlut_wheel_2: + symbol: gKartWario076TlutWheel2 + type: texture + offset: 0x8289C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_076_tlut_wheel_3: + symbol: gKartWario076TlutWheel3 + type: texture + offset: 0x8291C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_077_tlut_wheel_0: + symbol: gKartWario077TlutWheel0 + type: texture + offset: 0x8299C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_077_tlut_wheel_1: + symbol: gKartWario077TlutWheel1 + type: texture + offset: 0x82A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_077_tlut_wheel_2: + symbol: gKartWario077TlutWheel2 + type: texture + offset: 0x82A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_077_tlut_wheel_3: + symbol: gKartWario077TlutWheel3 + type: texture + offset: 0x82B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_078_tlut_wheel_0: + symbol: gKartWario078TlutWheel0 + type: texture + offset: 0x82B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_078_tlut_wheel_1: + symbol: gKartWario078TlutWheel1 + type: texture + offset: 0x82C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_078_tlut_wheel_2: + symbol: gKartWario078TlutWheel2 + type: texture + offset: 0x82C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_078_tlut_wheel_3: + symbol: gKartWario078TlutWheel3 + type: texture + offset: 0x82D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_079_tlut_wheel_0: + symbol: gKartWario079TlutWheel0 + type: texture + offset: 0x82D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_079_tlut_wheel_1: + symbol: gKartWario079TlutWheel1 + type: texture + offset: 0x82E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_079_tlut_wheel_2: + symbol: gKartWario079TlutWheel2 + type: texture + offset: 0x82E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_079_tlut_wheel_3: + symbol: gKartWario079TlutWheel3 + type: texture + offset: 0x82F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_080_tlut_wheel_0: + symbol: gKartWario080TlutWheel0 + type: texture + offset: 0x82F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_080_tlut_wheel_1: + symbol: gKartWario080TlutWheel1 + type: texture + offset: 0x8301C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_080_tlut_wheel_2: + symbol: gKartWario080TlutWheel2 + type: texture + offset: 0x8309C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_080_tlut_wheel_3: + symbol: gKartWario080TlutWheel3 + type: texture + offset: 0x8311C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_081_tlut_wheel_0: + symbol: gKartWario081TlutWheel0 + type: texture + offset: 0x8319C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_081_tlut_wheel_1: + symbol: gKartWario081TlutWheel1 + type: texture + offset: 0x8321C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_081_tlut_wheel_2: + symbol: gKartWario081TlutWheel2 + type: texture + offset: 0x8329C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_081_tlut_wheel_3: + symbol: gKartWario081TlutWheel3 + type: texture + offset: 0x8331C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_082_tlut_wheel_0: + symbol: gKartWario082TlutWheel0 + type: texture + offset: 0x8339C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_082_tlut_wheel_1: + symbol: gKartWario082TlutWheel1 + type: texture + offset: 0x8341C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_082_tlut_wheel_2: + symbol: gKartWario082TlutWheel2 + type: texture + offset: 0x8349C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_082_tlut_wheel_3: + symbol: gKartWario082TlutWheel3 + type: texture + offset: 0x8351C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_083_tlut_wheel_0: + symbol: gKartWario083TlutWheel0 + type: texture + offset: 0x8359C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_083_tlut_wheel_1: + symbol: gKartWario083TlutWheel1 + type: texture + offset: 0x8361C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_083_tlut_wheel_2: + symbol: gKartWario083TlutWheel2 + type: texture + offset: 0x8369C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_083_tlut_wheel_3: + symbol: gKartWario083TlutWheel3 + type: texture + offset: 0x8371C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_084_tlut_wheel_0: + symbol: gKartWario084TlutWheel0 + type: texture + offset: 0x8379C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_084_tlut_wheel_1: + symbol: gKartWario084TlutWheel1 + type: texture + offset: 0x8381C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_084_tlut_wheel_2: + symbol: gKartWario084TlutWheel2 + type: texture + offset: 0x8389C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_084_tlut_wheel_3: + symbol: gKartWario084TlutWheel3 + type: texture + offset: 0x8391C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_085_tlut_wheel_0: + symbol: gKartWario085TlutWheel0 + type: texture + offset: 0x8399C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_085_tlut_wheel_1: + symbol: gKartWario085TlutWheel1 + type: texture + offset: 0x83A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_085_tlut_wheel_2: + symbol: gKartWario085TlutWheel2 + type: texture + offset: 0x83A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_085_tlut_wheel_3: + symbol: gKartWario085TlutWheel3 + type: texture + offset: 0x83B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_086_tlut_wheel_0: + symbol: gKartWario086TlutWheel0 + type: texture + offset: 0x83B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_086_tlut_wheel_1: + symbol: gKartWario086TlutWheel1 + type: texture + offset: 0x83C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_086_tlut_wheel_2: + symbol: gKartWario086TlutWheel2 + type: texture + offset: 0x83C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_086_tlut_wheel_3: + symbol: gKartWario086TlutWheel3 + type: texture + offset: 0x83D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_087_tlut_wheel_0: + symbol: gKartWario087TlutWheel0 + type: texture + offset: 0x83D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_087_tlut_wheel_1: + symbol: gKartWario087TlutWheel1 + type: texture + offset: 0x83E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_087_tlut_wheel_2: + symbol: gKartWario087TlutWheel2 + type: texture + offset: 0x83E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_087_tlut_wheel_3: + symbol: gKartWario087TlutWheel3 + type: texture + offset: 0x83F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_088_tlut_wheel_0: + symbol: gKartWario088TlutWheel0 + type: texture + offset: 0x83F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_088_tlut_wheel_1: + symbol: gKartWario088TlutWheel1 + type: texture + offset: 0x8401C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_088_tlut_wheel_2: + symbol: gKartWario088TlutWheel2 + type: texture + offset: 0x8409C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_088_tlut_wheel_3: + symbol: gKartWario088TlutWheel3 + type: texture + offset: 0x8411C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_089_tlut_wheel_0: + symbol: gKartWario089TlutWheel0 + type: texture + offset: 0x8419C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_089_tlut_wheel_1: + symbol: gKartWario089TlutWheel1 + type: texture + offset: 0x8421C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_089_tlut_wheel_2: + symbol: gKartWario089TlutWheel2 + type: texture + offset: 0x8429C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_089_tlut_wheel_3: + symbol: gKartWario089TlutWheel3 + type: texture + offset: 0x8431C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_090_tlut_wheel_0: + symbol: gKartWario090TlutWheel0 + type: texture + offset: 0x8439C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_090_tlut_wheel_1: + symbol: gKartWario090TlutWheel1 + type: texture + offset: 0x8441C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_090_tlut_wheel_2: + symbol: gKartWario090TlutWheel2 + type: texture + offset: 0x8449C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_090_tlut_wheel_3: + symbol: gKartWario090TlutWheel3 + type: texture + offset: 0x8451C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_091_tlut_wheel_0: + symbol: gKartWario091TlutWheel0 + type: texture + offset: 0x8459C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_091_tlut_wheel_1: + symbol: gKartWario091TlutWheel1 + type: texture + offset: 0x8461C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_091_tlut_wheel_2: + symbol: gKartWario091TlutWheel2 + type: texture + offset: 0x8469C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_091_tlut_wheel_3: + symbol: gKartWario091TlutWheel3 + type: texture + offset: 0x8471C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_092_tlut_wheel_0: + symbol: gKartWario092TlutWheel0 + type: texture + offset: 0x8479C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_092_tlut_wheel_1: + symbol: gKartWario092TlutWheel1 + type: texture + offset: 0x8481C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_092_tlut_wheel_2: + symbol: gKartWario092TlutWheel2 + type: texture + offset: 0x8489C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_092_tlut_wheel_3: + symbol: gKartWario092TlutWheel3 + type: texture + offset: 0x8491C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_093_tlut_wheel_0: + symbol: gKartWario093TlutWheel0 + type: texture + offset: 0x8499C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_093_tlut_wheel_1: + symbol: gKartWario093TlutWheel1 + type: texture + offset: 0x84A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_093_tlut_wheel_2: + symbol: gKartWario093TlutWheel2 + type: texture + offset: 0x84A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_093_tlut_wheel_3: + symbol: gKartWario093TlutWheel3 + type: texture + offset: 0x84B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_094_tlut_wheel_0: + symbol: gKartWario094TlutWheel0 + type: texture + offset: 0x84B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_094_tlut_wheel_1: + symbol: gKartWario094TlutWheel1 + type: texture + offset: 0x84C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_094_tlut_wheel_2: + symbol: gKartWario094TlutWheel2 + type: texture + offset: 0x84C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_094_tlut_wheel_3: + symbol: gKartWario094TlutWheel3 + type: texture + offset: 0x84D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_095_tlut_wheel_0: + symbol: gKartWario095TlutWheel0 + type: texture + offset: 0x84D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_095_tlut_wheel_1: + symbol: gKartWario095TlutWheel1 + type: texture + offset: 0x84E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_095_tlut_wheel_2: + symbol: gKartWario095TlutWheel2 + type: texture + offset: 0x84E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_095_tlut_wheel_3: + symbol: gKartWario095TlutWheel3 + type: texture + offset: 0x84F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_096_tlut_wheel_0: + symbol: gKartWario096TlutWheel0 + type: texture + offset: 0x84F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_096_tlut_wheel_1: + symbol: gKartWario096TlutWheel1 + type: texture + offset: 0x8501C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_096_tlut_wheel_2: + symbol: gKartWario096TlutWheel2 + type: texture + offset: 0x8509C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_096_tlut_wheel_3: + symbol: gKartWario096TlutWheel3 + type: texture + offset: 0x8511C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_097_tlut_wheel_0: + symbol: gKartWario097TlutWheel0 + type: texture + offset: 0x8519C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_097_tlut_wheel_1: + symbol: gKartWario097TlutWheel1 + type: texture + offset: 0x8521C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_097_tlut_wheel_2: + symbol: gKartWario097TlutWheel2 + type: texture + offset: 0x8529C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_097_tlut_wheel_3: + symbol: gKartWario097TlutWheel3 + type: texture + offset: 0x8531C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_098_tlut_wheel_0: + symbol: gKartWario098TlutWheel0 + type: texture + offset: 0x8539C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_098_tlut_wheel_1: + symbol: gKartWario098TlutWheel1 + type: texture + offset: 0x8541C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_098_tlut_wheel_2: + symbol: gKartWario098TlutWheel2 + type: texture + offset: 0x8549C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_098_tlut_wheel_3: + symbol: gKartWario098TlutWheel3 + type: texture + offset: 0x8551C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_099_tlut_wheel_0: + symbol: gKartWario099TlutWheel0 + type: texture + offset: 0x8559C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_099_tlut_wheel_1: + symbol: gKartWario099TlutWheel1 + type: texture + offset: 0x8561C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_099_tlut_wheel_2: + symbol: gKartWario099TlutWheel2 + type: texture + offset: 0x8569C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_099_tlut_wheel_3: + symbol: gKartWario099TlutWheel3 + type: texture + offset: 0x8571C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_100_tlut_wheel_0: + symbol: gKartWario100TlutWheel0 + type: texture + offset: 0x8579C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_100_tlut_wheel_1: + symbol: gKartWario100TlutWheel1 + type: texture + offset: 0x8581C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_100_tlut_wheel_2: + symbol: gKartWario100TlutWheel2 + type: texture + offset: 0x8589C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_100_tlut_wheel_3: + symbol: gKartWario100TlutWheel3 + type: texture + offset: 0x8591C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_101_tlut_wheel_0: + symbol: gKartWario101TlutWheel0 + type: texture + offset: 0x8599C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_101_tlut_wheel_1: + symbol: gKartWario101TlutWheel1 + type: texture + offset: 0x85A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_101_tlut_wheel_2: + symbol: gKartWario101TlutWheel2 + type: texture + offset: 0x85A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_101_tlut_wheel_3: + symbol: gKartWario101TlutWheel3 + type: texture + offset: 0x85B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_102_tlut_wheel_0: + symbol: gKartWario102TlutWheel0 + type: texture + offset: 0x85B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_102_tlut_wheel_1: + symbol: gKartWario102TlutWheel1 + type: texture + offset: 0x85C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_102_tlut_wheel_2: + symbol: gKartWario102TlutWheel2 + type: texture + offset: 0x85C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_102_tlut_wheel_3: + symbol: gKartWario102TlutWheel3 + type: texture + offset: 0x85D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_103_tlut_wheel_0: + symbol: gKartWario103TlutWheel0 + type: texture + offset: 0x85D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_103_tlut_wheel_1: + symbol: gKartWario103TlutWheel1 + type: texture + offset: 0x85E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_103_tlut_wheel_2: + symbol: gKartWario103TlutWheel2 + type: texture + offset: 0x85E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_103_tlut_wheel_3: + symbol: gKartWario103TlutWheel3 + type: texture + offset: 0x85F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_104_tlut_wheel_0: + symbol: gKartWario104TlutWheel0 + type: texture + offset: 0x85F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_104_tlut_wheel_1: + symbol: gKartWario104TlutWheel1 + type: texture + offset: 0x8601C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_104_tlut_wheel_2: + symbol: gKartWario104TlutWheel2 + type: texture + offset: 0x8609C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_104_tlut_wheel_3: + symbol: gKartWario104TlutWheel3 + type: texture + offset: 0x8611C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_105_tlut_wheel_0: + symbol: gKartWario105TlutWheel0 + type: texture + offset: 0x8619C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_105_tlut_wheel_1: + symbol: gKartWario105TlutWheel1 + type: texture + offset: 0x8621C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_105_tlut_wheel_2: + symbol: gKartWario105TlutWheel2 + type: texture + offset: 0x8629C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_105_tlut_wheel_3: + symbol: gKartWario105TlutWheel3 + type: texture + offset: 0x8631C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_106_tlut_wheel_0: + symbol: gKartWario106TlutWheel0 + type: texture + offset: 0x8639C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_106_tlut_wheel_1: + symbol: gKartWario106TlutWheel1 + type: texture + offset: 0x8641C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_106_tlut_wheel_2: + symbol: gKartWario106TlutWheel2 + type: texture + offset: 0x8649C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_106_tlut_wheel_3: + symbol: gKartWario106TlutWheel3 + type: texture + offset: 0x8651C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_107_tlut_wheel_0: + symbol: gKartWario107TlutWheel0 + type: texture + offset: 0x8659C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_107_tlut_wheel_1: + symbol: gKartWario107TlutWheel1 + type: texture + offset: 0x8661C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_107_tlut_wheel_2: + symbol: gKartWario107TlutWheel2 + type: texture + offset: 0x8669C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_107_tlut_wheel_3: + symbol: gKartWario107TlutWheel3 + type: texture + offset: 0x8671C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_108_tlut_wheel_0: + symbol: gKartWario108TlutWheel0 + type: texture + offset: 0x8679C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_108_tlut_wheel_1: + symbol: gKartWario108TlutWheel1 + type: texture + offset: 0x8681C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_108_tlut_wheel_2: + symbol: gKartWario108TlutWheel2 + type: texture + offset: 0x8689C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_108_tlut_wheel_3: + symbol: gKartWario108TlutWheel3 + type: texture + offset: 0x8691C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_109_tlut_wheel_0: + symbol: gKartWario109TlutWheel0 + type: texture + offset: 0x8699C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_109_tlut_wheel_1: + symbol: gKartWario109TlutWheel1 + type: texture + offset: 0x86A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_109_tlut_wheel_2: + symbol: gKartWario109TlutWheel2 + type: texture + offset: 0x86A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_109_tlut_wheel_3: + symbol: gKartWario109TlutWheel3 + type: texture + offset: 0x86B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_110_tlut_wheel_0: + symbol: gKartWario110TlutWheel0 + type: texture + offset: 0x86B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_110_tlut_wheel_1: + symbol: gKartWario110TlutWheel1 + type: texture + offset: 0x86C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_110_tlut_wheel_2: + symbol: gKartWario110TlutWheel2 + type: texture + offset: 0x86C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_110_tlut_wheel_3: + symbol: gKartWario110TlutWheel3 + type: texture + offset: 0x86D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_111_tlut_wheel_0: + symbol: gKartWario111TlutWheel0 + type: texture + offset: 0x86D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_111_tlut_wheel_1: + symbol: gKartWario111TlutWheel1 + type: texture + offset: 0x86E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_111_tlut_wheel_2: + symbol: gKartWario111TlutWheel2 + type: texture + offset: 0x86E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_111_tlut_wheel_3: + symbol: gKartWario111TlutWheel3 + type: texture + offset: 0x86F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_112_tlut_wheel_0: + symbol: gKartWario112TlutWheel0 + type: texture + offset: 0x86F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_112_tlut_wheel_1: + symbol: gKartWario112TlutWheel1 + type: texture + offset: 0x8701C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_112_tlut_wheel_2: + symbol: gKartWario112TlutWheel2 + type: texture + offset: 0x8709C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_112_tlut_wheel_3: + symbol: gKartWario112TlutWheel3 + type: texture + offset: 0x8711C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_113_tlut_wheel_0: + symbol: gKartWario113TlutWheel0 + type: texture + offset: 0x8719C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_113_tlut_wheel_1: + symbol: gKartWario113TlutWheel1 + type: texture + offset: 0x8721C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_113_tlut_wheel_2: + symbol: gKartWario113TlutWheel2 + type: texture + offset: 0x8729C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_113_tlut_wheel_3: + symbol: gKartWario113TlutWheel3 + type: texture + offset: 0x8731C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_114_tlut_wheel_0: + symbol: gKartWario114TlutWheel0 + type: texture + offset: 0x8739C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_114_tlut_wheel_1: + symbol: gKartWario114TlutWheel1 + type: texture + offset: 0x8741C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_114_tlut_wheel_2: + symbol: gKartWario114TlutWheel2 + type: texture + offset: 0x8749C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_114_tlut_wheel_3: + symbol: gKartWario114TlutWheel3 + type: texture + offset: 0x8751C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_115_tlut_wheel_0: + symbol: gKartWario115TlutWheel0 + type: texture + offset: 0x8759C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_115_tlut_wheel_1: + symbol: gKartWario115TlutWheel1 + type: texture + offset: 0x8761C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_115_tlut_wheel_2: + symbol: gKartWario115TlutWheel2 + type: texture + offset: 0x8769C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_115_tlut_wheel_3: + symbol: gKartWario115TlutWheel3 + type: texture + offset: 0x8771C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_116_tlut_wheel_0: + symbol: gKartWario116TlutWheel0 + type: texture + offset: 0x8779C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_116_tlut_wheel_1: + symbol: gKartWario116TlutWheel1 + type: texture + offset: 0x8781C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_116_tlut_wheel_2: + symbol: gKartWario116TlutWheel2 + type: texture + offset: 0x8789C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_116_tlut_wheel_3: + symbol: gKartWario116TlutWheel3 + type: texture + offset: 0x8791C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_117_tlut_wheel_0: + symbol: gKartWario117TlutWheel0 + type: texture + offset: 0x8799C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_117_tlut_wheel_1: + symbol: gKartWario117TlutWheel1 + type: texture + offset: 0x87A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_117_tlut_wheel_2: + symbol: gKartWario117TlutWheel2 + type: texture + offset: 0x87A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_117_tlut_wheel_3: + symbol: gKartWario117TlutWheel3 + type: texture + offset: 0x87B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_118_tlut_wheel_0: + symbol: gKartWario118TlutWheel0 + type: texture + offset: 0x87B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_118_tlut_wheel_1: + symbol: gKartWario118TlutWheel1 + type: texture + offset: 0x87C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_118_tlut_wheel_2: + symbol: gKartWario118TlutWheel2 + type: texture + offset: 0x87C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_118_tlut_wheel_3: + symbol: gKartWario118TlutWheel3 + type: texture + offset: 0x87D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_119_tlut_wheel_0: + symbol: gKartWario119TlutWheel0 + type: texture + offset: 0x87D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_119_tlut_wheel_1: + symbol: gKartWario119TlutWheel1 + type: texture + offset: 0x87E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_119_tlut_wheel_2: + symbol: gKartWario119TlutWheel2 + type: texture + offset: 0x87E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_119_tlut_wheel_3: + symbol: gKartWario119TlutWheel3 + type: texture + offset: 0x87F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_120_tlut_wheel_0: + symbol: gKartWario120TlutWheel0 + type: texture + offset: 0x87F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_120_tlut_wheel_1: + symbol: gKartWario120TlutWheel1 + type: texture + offset: 0x8801C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_120_tlut_wheel_2: + symbol: gKartWario120TlutWheel2 + type: texture + offset: 0x8809C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_120_tlut_wheel_3: + symbol: gKartWario120TlutWheel3 + type: texture + offset: 0x8811C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_121_tlut_wheel_0: + symbol: gKartWario121TlutWheel0 + type: texture + offset: 0x8819C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_121_tlut_wheel_1: + symbol: gKartWario121TlutWheel1 + type: texture + offset: 0x8821C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_121_tlut_wheel_2: + symbol: gKartWario121TlutWheel2 + type: texture + offset: 0x8829C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_121_tlut_wheel_3: + symbol: gKartWario121TlutWheel3 + type: texture + offset: 0x8831C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_122_tlut_wheel_0: + symbol: gKartWario122TlutWheel0 + type: texture + offset: 0x8839C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_122_tlut_wheel_1: + symbol: gKartWario122TlutWheel1 + type: texture + offset: 0x8841C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_122_tlut_wheel_2: + symbol: gKartWario122TlutWheel2 + type: texture + offset: 0x8849C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_122_tlut_wheel_3: + symbol: gKartWario122TlutWheel3 + type: texture + offset: 0x8851C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_123_tlut_wheel_0: + symbol: gKartWario123TlutWheel0 + type: texture + offset: 0x8859C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_123_tlut_wheel_1: + symbol: gKartWario123TlutWheel1 + type: texture + offset: 0x8861C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_123_tlut_wheel_2: + symbol: gKartWario123TlutWheel2 + type: texture + offset: 0x8869C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_123_tlut_wheel_3: + symbol: gKartWario123TlutWheel3 + type: texture + offset: 0x8871C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_124_tlut_wheel_0: + symbol: gKartWario124TlutWheel0 + type: texture + offset: 0x8879C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_124_tlut_wheel_1: + symbol: gKartWario124TlutWheel1 + type: texture + offset: 0x8881C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_124_tlut_wheel_2: + symbol: gKartWario124TlutWheel2 + type: texture + offset: 0x8889C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_124_tlut_wheel_3: + symbol: gKartWario124TlutWheel3 + type: texture + offset: 0x8891C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_125_tlut_wheel_0: + symbol: gKartWario125TlutWheel0 + type: texture + offset: 0x8899C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_125_tlut_wheel_1: + symbol: gKartWario125TlutWheel1 + type: texture + offset: 0x88A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_125_tlut_wheel_2: + symbol: gKartWario125TlutWheel2 + type: texture + offset: 0x88A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_125_tlut_wheel_3: + symbol: gKartWario125TlutWheel3 + type: texture + offset: 0x88B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_126_tlut_wheel_0: + symbol: gKartWario126TlutWheel0 + type: texture + offset: 0x88B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_126_tlut_wheel_1: + symbol: gKartWario126TlutWheel1 + type: texture + offset: 0x88C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_126_tlut_wheel_2: + symbol: gKartWario126TlutWheel2 + type: texture + offset: 0x88C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_126_tlut_wheel_3: + symbol: gKartWario126TlutWheel3 + type: texture + offset: 0x88D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_127_tlut_wheel_0: + symbol: gKartWario127TlutWheel0 + type: texture + offset: 0x88D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_127_tlut_wheel_1: + symbol: gKartWario127TlutWheel1 + type: texture + offset: 0x88E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_127_tlut_wheel_2: + symbol: gKartWario127TlutWheel2 + type: texture + offset: 0x88E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_127_tlut_wheel_3: + symbol: gKartWario127TlutWheel3 + type: texture + offset: 0x88F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_128_tlut_wheel_0: + symbol: gKartWario128TlutWheel0 + type: texture + offset: 0x88F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_128_tlut_wheel_1: + symbol: gKartWario128TlutWheel1 + type: texture + offset: 0x8901C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_128_tlut_wheel_2: + symbol: gKartWario128TlutWheel2 + type: texture + offset: 0x8909C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_128_tlut_wheel_3: + symbol: gKartWario128TlutWheel3 + type: texture + offset: 0x8911C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_129_tlut_wheel_0: + symbol: gKartWario129TlutWheel0 + type: texture + offset: 0x8919C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_129_tlut_wheel_1: + symbol: gKartWario129TlutWheel1 + type: texture + offset: 0x8921C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_129_tlut_wheel_2: + symbol: gKartWario129TlutWheel2 + type: texture + offset: 0x8929C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_129_tlut_wheel_3: + symbol: gKartWario129TlutWheel3 + type: texture + offset: 0x8931C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_130_tlut_wheel_0: + symbol: gKartWario130TlutWheel0 + type: texture + offset: 0x8939C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_130_tlut_wheel_1: + symbol: gKartWario130TlutWheel1 + type: texture + offset: 0x8941C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_130_tlut_wheel_2: + symbol: gKartWario130TlutWheel2 + type: texture + offset: 0x8949C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_130_tlut_wheel_3: + symbol: gKartWario130TlutWheel3 + type: texture + offset: 0x8951C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_131_tlut_wheel_0: + symbol: gKartWario131TlutWheel0 + type: texture + offset: 0x8959C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_131_tlut_wheel_1: + symbol: gKartWario131TlutWheel1 + type: texture + offset: 0x8961C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_131_tlut_wheel_2: + symbol: gKartWario131TlutWheel2 + type: texture + offset: 0x8969C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_131_tlut_wheel_3: + symbol: gKartWario131TlutWheel3 + type: texture + offset: 0x8971C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_132_tlut_wheel_0: + symbol: gKartWario132TlutWheel0 + type: texture + offset: 0x8979C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_132_tlut_wheel_1: + symbol: gKartWario132TlutWheel1 + type: texture + offset: 0x8981C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_132_tlut_wheel_2: + symbol: gKartWario132TlutWheel2 + type: texture + offset: 0x8989C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_132_tlut_wheel_3: + symbol: gKartWario132TlutWheel3 + type: texture + offset: 0x8991C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_133_tlut_wheel_0: + symbol: gKartWario133TlutWheel0 + type: texture + offset: 0x8999C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_133_tlut_wheel_1: + symbol: gKartWario133TlutWheel1 + type: texture + offset: 0x89A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_133_tlut_wheel_2: + symbol: gKartWario133TlutWheel2 + type: texture + offset: 0x89A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_133_tlut_wheel_3: + symbol: gKartWario133TlutWheel3 + type: texture + offset: 0x89B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_134_tlut_wheel_0: + symbol: gKartWario134TlutWheel0 + type: texture + offset: 0x89B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_134_tlut_wheel_1: + symbol: gKartWario134TlutWheel1 + type: texture + offset: 0x89C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_134_tlut_wheel_2: + symbol: gKartWario134TlutWheel2 + type: texture + offset: 0x89C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_134_tlut_wheel_3: + symbol: gKartWario134TlutWheel3 + type: texture + offset: 0x89D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_135_tlut_wheel_0: + symbol: gKartWario135TlutWheel0 + type: texture + offset: 0x89D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_135_tlut_wheel_1: + symbol: gKartWario135TlutWheel1 + type: texture + offset: 0x89E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_135_tlut_wheel_2: + symbol: gKartWario135TlutWheel2 + type: texture + offset: 0x89E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_135_tlut_wheel_3: + symbol: gKartWario135TlutWheel3 + type: texture + offset: 0x89F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_136_tlut_wheel_0: + symbol: gKartWario136TlutWheel0 + type: texture + offset: 0x89F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_136_tlut_wheel_1: + symbol: gKartWario136TlutWheel1 + type: texture + offset: 0x8A01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_136_tlut_wheel_2: + symbol: gKartWario136TlutWheel2 + type: texture + offset: 0x8A09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_136_tlut_wheel_3: + symbol: gKartWario136TlutWheel3 + type: texture + offset: 0x8A11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_137_tlut_wheel_0: + symbol: gKartWario137TlutWheel0 + type: texture + offset: 0x8A19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_137_tlut_wheel_1: + symbol: gKartWario137TlutWheel1 + type: texture + offset: 0x8A21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_137_tlut_wheel_2: + symbol: gKartWario137TlutWheel2 + type: texture + offset: 0x8A29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_137_tlut_wheel_3: + symbol: gKartWario137TlutWheel3 + type: texture + offset: 0x8A31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_138_tlut_wheel_0: + symbol: gKartWario138TlutWheel0 + type: texture + offset: 0x8A39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_138_tlut_wheel_1: + symbol: gKartWario138TlutWheel1 + type: texture + offset: 0x8A41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_138_tlut_wheel_2: + symbol: gKartWario138TlutWheel2 + type: texture + offset: 0x8A49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_138_tlut_wheel_3: + symbol: gKartWario138TlutWheel3 + type: texture + offset: 0x8A51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_139_tlut_wheel_0: + symbol: gKartWario139TlutWheel0 + type: texture + offset: 0x8A59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_139_tlut_wheel_1: + symbol: gKartWario139TlutWheel1 + type: texture + offset: 0x8A61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_139_tlut_wheel_2: + symbol: gKartWario139TlutWheel2 + type: texture + offset: 0x8A69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_139_tlut_wheel_3: + symbol: gKartWario139TlutWheel3 + type: texture + offset: 0x8A71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_140_tlut_wheel_0: + symbol: gKartWario140TlutWheel0 + type: texture + offset: 0x8A79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_140_tlut_wheel_1: + symbol: gKartWario140TlutWheel1 + type: texture + offset: 0x8A81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_140_tlut_wheel_2: + symbol: gKartWario140TlutWheel2 + type: texture + offset: 0x8A89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_140_tlut_wheel_3: + symbol: gKartWario140TlutWheel3 + type: texture + offset: 0x8A91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_141_tlut_wheel_0: + symbol: gKartWario141TlutWheel0 + type: texture + offset: 0x8A99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_141_tlut_wheel_1: + symbol: gKartWario141TlutWheel1 + type: texture + offset: 0x8AA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_141_tlut_wheel_2: + symbol: gKartWario141TlutWheel2 + type: texture + offset: 0x8AA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_141_tlut_wheel_3: + symbol: gKartWario141TlutWheel3 + type: texture + offset: 0x8AB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_142_tlut_wheel_0: + symbol: gKartWario142TlutWheel0 + type: texture + offset: 0x8AB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_142_tlut_wheel_1: + symbol: gKartWario142TlutWheel1 + type: texture + offset: 0x8AC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_142_tlut_wheel_2: + symbol: gKartWario142TlutWheel2 + type: texture + offset: 0x8AC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_142_tlut_wheel_3: + symbol: gKartWario142TlutWheel3 + type: texture + offset: 0x8AD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_143_tlut_wheel_0: + symbol: gKartWario143TlutWheel0 + type: texture + offset: 0x8AD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_143_tlut_wheel_1: + symbol: gKartWario143TlutWheel1 + type: texture + offset: 0x8AE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_143_tlut_wheel_2: + symbol: gKartWario143TlutWheel2 + type: texture + offset: 0x8AE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_143_tlut_wheel_3: + symbol: gKartWario143TlutWheel3 + type: texture + offset: 0x8AF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_144_tlut_wheel_0: + symbol: gKartWario144TlutWheel0 + type: texture + offset: 0x8AF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_144_tlut_wheel_1: + symbol: gKartWario144TlutWheel1 + type: texture + offset: 0x8B01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_144_tlut_wheel_2: + symbol: gKartWario144TlutWheel2 + type: texture + offset: 0x8B09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_144_tlut_wheel_3: + symbol: gKartWario144TlutWheel3 + type: texture + offset: 0x8B11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_145_tlut_wheel_0: + symbol: gKartWario145TlutWheel0 + type: texture + offset: 0x8B19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_145_tlut_wheel_1: + symbol: gKartWario145TlutWheel1 + type: texture + offset: 0x8B21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_145_tlut_wheel_2: + symbol: gKartWario145TlutWheel2 + type: texture + offset: 0x8B29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_145_tlut_wheel_3: + symbol: gKartWario145TlutWheel3 + type: texture + offset: 0x8B31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_146_tlut_wheel_0: + symbol: gKartWario146TlutWheel0 + type: texture + offset: 0x8B39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_146_tlut_wheel_1: + symbol: gKartWario146TlutWheel1 + type: texture + offset: 0x8B41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_146_tlut_wheel_2: + symbol: gKartWario146TlutWheel2 + type: texture + offset: 0x8B49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_146_tlut_wheel_3: + symbol: gKartWario146TlutWheel3 + type: texture + offset: 0x8B51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_147_tlut_wheel_0: + symbol: gKartWario147TlutWheel0 + type: texture + offset: 0x8B59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_147_tlut_wheel_1: + symbol: gKartWario147TlutWheel1 + type: texture + offset: 0x8B61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_147_tlut_wheel_2: + symbol: gKartWario147TlutWheel2 + type: texture + offset: 0x8B69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_147_tlut_wheel_3: + symbol: gKartWario147TlutWheel3 + type: texture + offset: 0x8B71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_148_tlut_wheel_0: + symbol: gKartWario148TlutWheel0 + type: texture + offset: 0x8B79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_148_tlut_wheel_1: + symbol: gKartWario148TlutWheel1 + type: texture + offset: 0x8B81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_148_tlut_wheel_2: + symbol: gKartWario148TlutWheel2 + type: texture + offset: 0x8B89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_148_tlut_wheel_3: + symbol: gKartWario148TlutWheel3 + type: texture + offset: 0x8B91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_149_tlut_wheel_0: + symbol: gKartWario149TlutWheel0 + type: texture + offset: 0x8B99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_149_tlut_wheel_1: + symbol: gKartWario149TlutWheel1 + type: texture + offset: 0x8BA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_149_tlut_wheel_2: + symbol: gKartWario149TlutWheel2 + type: texture + offset: 0x8BA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_149_tlut_wheel_3: + symbol: gKartWario149TlutWheel3 + type: texture + offset: 0x8BB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_150_tlut_wheel_0: + symbol: gKartWario150TlutWheel0 + type: texture + offset: 0x8BB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_150_tlut_wheel_1: + symbol: gKartWario150TlutWheel1 + type: texture + offset: 0x8BC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_150_tlut_wheel_2: + symbol: gKartWario150TlutWheel2 + type: texture + offset: 0x8BC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_150_tlut_wheel_3: + symbol: gKartWario150TlutWheel3 + type: texture + offset: 0x8BD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_151_tlut_wheel_0: + symbol: gKartWario151TlutWheel0 + type: texture + offset: 0x8BD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_151_tlut_wheel_1: + symbol: gKartWario151TlutWheel1 + type: texture + offset: 0x8BE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_151_tlut_wheel_2: + symbol: gKartWario151TlutWheel2 + type: texture + offset: 0x8BE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_151_tlut_wheel_3: + symbol: gKartWario151TlutWheel3 + type: texture + offset: 0x8BF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_152_tlut_wheel_0: + symbol: gKartWario152TlutWheel0 + type: texture + offset: 0x8BF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_152_tlut_wheel_1: + symbol: gKartWario152TlutWheel1 + type: texture + offset: 0x8C01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_152_tlut_wheel_2: + symbol: gKartWario152TlutWheel2 + type: texture + offset: 0x8C09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_152_tlut_wheel_3: + symbol: gKartWario152TlutWheel3 + type: texture + offset: 0x8C11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_153_tlut_wheel_0: + symbol: gKartWario153TlutWheel0 + type: texture + offset: 0x8C19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_153_tlut_wheel_1: + symbol: gKartWario153TlutWheel1 + type: texture + offset: 0x8C21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_153_tlut_wheel_2: + symbol: gKartWario153TlutWheel2 + type: texture + offset: 0x8C29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_153_tlut_wheel_3: + symbol: gKartWario153TlutWheel3 + type: texture + offset: 0x8C31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_154_tlut_wheel_0: + symbol: gKartWario154TlutWheel0 + type: texture + offset: 0x8C39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_154_tlut_wheel_1: + symbol: gKartWario154TlutWheel1 + type: texture + offset: 0x8C41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_154_tlut_wheel_2: + symbol: gKartWario154TlutWheel2 + type: texture + offset: 0x8C49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_154_tlut_wheel_3: + symbol: gKartWario154TlutWheel3 + type: texture + offset: 0x8C51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_155_tlut_wheel_0: + symbol: gKartWario155TlutWheel0 + type: texture + offset: 0x8C59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_155_tlut_wheel_1: + symbol: gKartWario155TlutWheel1 + type: texture + offset: 0x8C61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_155_tlut_wheel_2: + symbol: gKartWario155TlutWheel2 + type: texture + offset: 0x8C69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_155_tlut_wheel_3: + symbol: gKartWario155TlutWheel3 + type: texture + offset: 0x8C71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_156_tlut_wheel_0: + symbol: gKartWario156TlutWheel0 + type: texture + offset: 0x8C79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_156_tlut_wheel_1: + symbol: gKartWario156TlutWheel1 + type: texture + offset: 0x8C81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_156_tlut_wheel_2: + symbol: gKartWario156TlutWheel2 + type: texture + offset: 0x8C89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_156_tlut_wheel_3: + symbol: gKartWario156TlutWheel3 + type: texture + offset: 0x8C91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_157_tlut_wheel_0: + symbol: gKartWario157TlutWheel0 + type: texture + offset: 0x8C99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_157_tlut_wheel_1: + symbol: gKartWario157TlutWheel1 + type: texture + offset: 0x8CA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_157_tlut_wheel_2: + symbol: gKartWario157TlutWheel2 + type: texture + offset: 0x8CA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_157_tlut_wheel_3: + symbol: gKartWario157TlutWheel3 + type: texture + offset: 0x8CB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_158_tlut_wheel_0: + symbol: gKartWario158TlutWheel0 + type: texture + offset: 0x8CB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_158_tlut_wheel_1: + symbol: gKartWario158TlutWheel1 + type: texture + offset: 0x8CC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_158_tlut_wheel_2: + symbol: gKartWario158TlutWheel2 + type: texture + offset: 0x8CC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_158_tlut_wheel_3: + symbol: gKartWario158TlutWheel3 + type: texture + offset: 0x8CD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_159_tlut_wheel_0: + symbol: gKartWario159TlutWheel0 + type: texture + offset: 0x8CD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_159_tlut_wheel_1: + symbol: gKartWario159TlutWheel1 + type: texture + offset: 0x8CE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_159_tlut_wheel_2: + symbol: gKartWario159TlutWheel2 + type: texture + offset: 0x8CE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_159_tlut_wheel_3: + symbol: gKartWario159TlutWheel3 + type: texture + offset: 0x8CF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_160_tlut_wheel_0: + symbol: gKartWario160TlutWheel0 + type: texture + offset: 0x8CF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_160_tlut_wheel_1: + symbol: gKartWario160TlutWheel1 + type: texture + offset: 0x8D01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_160_tlut_wheel_2: + symbol: gKartWario160TlutWheel2 + type: texture + offset: 0x8D09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_160_tlut_wheel_3: + symbol: gKartWario160TlutWheel3 + type: texture + offset: 0x8D11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_161_tlut_wheel_0: + symbol: gKartWario161TlutWheel0 + type: texture + offset: 0x8D19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_161_tlut_wheel_1: + symbol: gKartWario161TlutWheel1 + type: texture + offset: 0x8D21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_161_tlut_wheel_2: + symbol: gKartWario161TlutWheel2 + type: texture + offset: 0x8D29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_161_tlut_wheel_3: + symbol: gKartWario161TlutWheel3 + type: texture + offset: 0x8D31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_162_tlut_wheel_0: + symbol: gKartWario162TlutWheel0 + type: texture + offset: 0x8D39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_162_tlut_wheel_1: + symbol: gKartWario162TlutWheel1 + type: texture + offset: 0x8D41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_162_tlut_wheel_2: + symbol: gKartWario162TlutWheel2 + type: texture + offset: 0x8D49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_162_tlut_wheel_3: + symbol: gKartWario162TlutWheel3 + type: texture + offset: 0x8D51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_163_tlut_wheel_0: + symbol: gKartWario163TlutWheel0 + type: texture + offset: 0x8D59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_163_tlut_wheel_1: + symbol: gKartWario163TlutWheel1 + type: texture + offset: 0x8D61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_163_tlut_wheel_2: + symbol: gKartWario163TlutWheel2 + type: texture + offset: 0x8D69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_163_tlut_wheel_3: + symbol: gKartWario163TlutWheel3 + type: texture + offset: 0x8D71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_164_tlut_wheel_0: + symbol: gKartWario164TlutWheel0 + type: texture + offset: 0x8D79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_164_tlut_wheel_1: + symbol: gKartWario164TlutWheel1 + type: texture + offset: 0x8D81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_164_tlut_wheel_2: + symbol: gKartWario164TlutWheel2 + type: texture + offset: 0x8D89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_164_tlut_wheel_3: + symbol: gKartWario164TlutWheel3 + type: texture + offset: 0x8D91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_165_tlut_wheel_0: + symbol: gKartWario165TlutWheel0 + type: texture + offset: 0x8D99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_165_tlut_wheel_1: + symbol: gKartWario165TlutWheel1 + type: texture + offset: 0x8DA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_165_tlut_wheel_2: + symbol: gKartWario165TlutWheel2 + type: texture + offset: 0x8DA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_165_tlut_wheel_3: + symbol: gKartWario165TlutWheel3 + type: texture + offset: 0x8DB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_166_tlut_wheel_0: + symbol: gKartWario166TlutWheel0 + type: texture + offset: 0x8DB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_166_tlut_wheel_1: + symbol: gKartWario166TlutWheel1 + type: texture + offset: 0x8DC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_166_tlut_wheel_2: + symbol: gKartWario166TlutWheel2 + type: texture + offset: 0x8DC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_166_tlut_wheel_3: + symbol: gKartWario166TlutWheel3 + type: texture + offset: 0x8DD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_167_tlut_wheel_0: + symbol: gKartWario167TlutWheel0 + type: texture + offset: 0x8DD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_167_tlut_wheel_1: + symbol: gKartWario167TlutWheel1 + type: texture + offset: 0x8DE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_167_tlut_wheel_2: + symbol: gKartWario167TlutWheel2 + type: texture + offset: 0x8DE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_167_tlut_wheel_3: + symbol: gKartWario167TlutWheel3 + type: texture + offset: 0x8DF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_168_tlut_wheel_0: + symbol: gKartWario168TlutWheel0 + type: texture + offset: 0x8DF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_168_tlut_wheel_1: + symbol: gKartWario168TlutWheel1 + type: texture + offset: 0x8E01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_168_tlut_wheel_2: + symbol: gKartWario168TlutWheel2 + type: texture + offset: 0x8E09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_168_tlut_wheel_3: + symbol: gKartWario168TlutWheel3 + type: texture + offset: 0x8E11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_169_tlut_wheel_0: + symbol: gKartWario169TlutWheel0 + type: texture + offset: 0x8E19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_169_tlut_wheel_1: + symbol: gKartWario169TlutWheel1 + type: texture + offset: 0x8E21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_169_tlut_wheel_2: + symbol: gKartWario169TlutWheel2 + type: texture + offset: 0x8E29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_169_tlut_wheel_3: + symbol: gKartWario169TlutWheel3 + type: texture + offset: 0x8E31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_170_tlut_wheel_0: + symbol: gKartWario170TlutWheel0 + type: texture + offset: 0x8E39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_170_tlut_wheel_1: + symbol: gKartWario170TlutWheel1 + type: texture + offset: 0x8E41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_170_tlut_wheel_2: + symbol: gKartWario170TlutWheel2 + type: texture + offset: 0x8E49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_170_tlut_wheel_3: + symbol: gKartWario170TlutWheel3 + type: texture + offset: 0x8E51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_171_tlut_wheel_0: + symbol: gKartWario171TlutWheel0 + type: texture + offset: 0x8E59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_171_tlut_wheel_1: + symbol: gKartWario171TlutWheel1 + type: texture + offset: 0x8E61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_171_tlut_wheel_2: + symbol: gKartWario171TlutWheel2 + type: texture + offset: 0x8E69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_171_tlut_wheel_3: + symbol: gKartWario171TlutWheel3 + type: texture + offset: 0x8E71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_172_tlut_wheel_0: + symbol: gKartWario172TlutWheel0 + type: texture + offset: 0x8E79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_172_tlut_wheel_1: + symbol: gKartWario172TlutWheel1 + type: texture + offset: 0x8E81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_172_tlut_wheel_2: + symbol: gKartWario172TlutWheel2 + type: texture + offset: 0x8E89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_172_tlut_wheel_3: + symbol: gKartWario172TlutWheel3 + type: texture + offset: 0x8E91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_173_tlut_wheel_0: + symbol: gKartWario173TlutWheel0 + type: texture + offset: 0x8E99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_173_tlut_wheel_1: + symbol: gKartWario173TlutWheel1 + type: texture + offset: 0x8EA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_173_tlut_wheel_2: + symbol: gKartWario173TlutWheel2 + type: texture + offset: 0x8EA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_173_tlut_wheel_3: + symbol: gKartWario173TlutWheel3 + type: texture + offset: 0x8EB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_174_tlut_wheel_0: + symbol: gKartWario174TlutWheel0 + type: texture + offset: 0x8EB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_174_tlut_wheel_1: + symbol: gKartWario174TlutWheel1 + type: texture + offset: 0x8EC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_174_tlut_wheel_2: + symbol: gKartWario174TlutWheel2 + type: texture + offset: 0x8EC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_174_tlut_wheel_3: + symbol: gKartWario174TlutWheel3 + type: texture + offset: 0x8ED1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_175_tlut_wheel_0: + symbol: gKartWario175TlutWheel0 + type: texture + offset: 0x8ED9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_175_tlut_wheel_1: + symbol: gKartWario175TlutWheel1 + type: texture + offset: 0x8EE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_175_tlut_wheel_2: + symbol: gKartWario175TlutWheel2 + type: texture + offset: 0x8EE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_175_tlut_wheel_3: + symbol: gKartWario175TlutWheel3 + type: texture + offset: 0x8EF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_176_tlut_wheel_0: + symbol: gKartWario176TlutWheel0 + type: texture + offset: 0x8EF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_176_tlut_wheel_1: + symbol: gKartWario176TlutWheel1 + type: texture + offset: 0x8F01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_176_tlut_wheel_2: + symbol: gKartWario176TlutWheel2 + type: texture + offset: 0x8F09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_176_tlut_wheel_3: + symbol: gKartWario176TlutWheel3 + type: texture + offset: 0x8F11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_177_tlut_wheel_0: + symbol: gKartWario177TlutWheel0 + type: texture + offset: 0x8F19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_177_tlut_wheel_1: + symbol: gKartWario177TlutWheel1 + type: texture + offset: 0x8F21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_177_tlut_wheel_2: + symbol: gKartWario177TlutWheel2 + type: texture + offset: 0x8F29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_177_tlut_wheel_3: + symbol: gKartWario177TlutWheel3 + type: texture + offset: 0x8F31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_178_tlut_wheel_0: + symbol: gKartWario178TlutWheel0 + type: texture + offset: 0x8F39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_178_tlut_wheel_1: + symbol: gKartWario178TlutWheel1 + type: texture + offset: 0x8F41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_178_tlut_wheel_2: + symbol: gKartWario178TlutWheel2 + type: texture + offset: 0x8F49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_178_tlut_wheel_3: + symbol: gKartWario178TlutWheel3 + type: texture + offset: 0x8F51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_179_tlut_wheel_0: + symbol: gKartWario179TlutWheel0 + type: texture + offset: 0x8F59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_179_tlut_wheel_1: + symbol: gKartWario179TlutWheel1 + type: texture + offset: 0x8F61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_179_tlut_wheel_2: + symbol: gKartWario179TlutWheel2 + type: texture + offset: 0x8F69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_179_tlut_wheel_3: + symbol: gKartWario179TlutWheel3 + type: texture + offset: 0x8F71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_180_tlut_wheel_0: + symbol: gKartWario180TlutWheel0 + type: texture + offset: 0x8F79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_180_tlut_wheel_1: + symbol: gKartWario180TlutWheel1 + type: texture + offset: 0x8F81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_180_tlut_wheel_2: + symbol: gKartWario180TlutWheel2 + type: texture + offset: 0x8F89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_180_tlut_wheel_3: + symbol: gKartWario180TlutWheel3 + type: texture + offset: 0x8F91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_181_tlut_wheel_0: + symbol: gKartWario181TlutWheel0 + type: texture + offset: 0x8F99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_181_tlut_wheel_1: + symbol: gKartWario181TlutWheel1 + type: texture + offset: 0x8FA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_181_tlut_wheel_2: + symbol: gKartWario181TlutWheel2 + type: texture + offset: 0x8FA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_181_tlut_wheel_3: + symbol: gKartWario181TlutWheel3 + type: texture + offset: 0x8FB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_182_tlut_wheel_0: + symbol: gKartWario182TlutWheel0 + type: texture + offset: 0x8FB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_182_tlut_wheel_1: + symbol: gKartWario182TlutWheel1 + type: texture + offset: 0x8FC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_182_tlut_wheel_2: + symbol: gKartWario182TlutWheel2 + type: texture + offset: 0x8FC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_182_tlut_wheel_3: + symbol: gKartWario182TlutWheel3 + type: texture + offset: 0x8FD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_183_tlut_wheel_0: + symbol: gKartWario183TlutWheel0 + type: texture + offset: 0x8FD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_183_tlut_wheel_1: + symbol: gKartWario183TlutWheel1 + type: texture + offset: 0x8FE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_183_tlut_wheel_2: + symbol: gKartWario183TlutWheel2 + type: texture + offset: 0x8FE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_183_tlut_wheel_3: + symbol: gKartWario183TlutWheel3 + type: texture + offset: 0x8FF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_184_tlut_wheel_0: + symbol: gKartWario184TlutWheel0 + type: texture + offset: 0x8FF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_184_tlut_wheel_1: + symbol: gKartWario184TlutWheel1 + type: texture + offset: 0x9001C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_184_tlut_wheel_2: + symbol: gKartWario184TlutWheel2 + type: texture + offset: 0x9009C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_184_tlut_wheel_3: + symbol: gKartWario184TlutWheel3 + type: texture + offset: 0x9011C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_185_tlut_wheel_0: + symbol: gKartWario185TlutWheel0 + type: texture + offset: 0x9019C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_185_tlut_wheel_1: + symbol: gKartWario185TlutWheel1 + type: texture + offset: 0x9021C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_185_tlut_wheel_2: + symbol: gKartWario185TlutWheel2 + type: texture + offset: 0x9029C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_185_tlut_wheel_3: + symbol: gKartWario185TlutWheel3 + type: texture + offset: 0x9031C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_186_tlut_wheel_0: + symbol: gKartWario186TlutWheel0 + type: texture + offset: 0x9039C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_186_tlut_wheel_1: + symbol: gKartWario186TlutWheel1 + type: texture + offset: 0x9041C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_186_tlut_wheel_2: + symbol: gKartWario186TlutWheel2 + type: texture + offset: 0x9049C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_186_tlut_wheel_3: + symbol: gKartWario186TlutWheel3 + type: texture + offset: 0x9051C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_187_tlut_wheel_0: + symbol: gKartWario187TlutWheel0 + type: texture + offset: 0x9059C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_187_tlut_wheel_1: + symbol: gKartWario187TlutWheel1 + type: texture + offset: 0x9061C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_187_tlut_wheel_2: + symbol: gKartWario187TlutWheel2 + type: texture + offset: 0x9069C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_187_tlut_wheel_3: + symbol: gKartWario187TlutWheel3 + type: texture + offset: 0x9071C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_188_tlut_wheel_0: + symbol: gKartWario188TlutWheel0 + type: texture + offset: 0x9079C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_188_tlut_wheel_1: + symbol: gKartWario188TlutWheel1 + type: texture + offset: 0x9081C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_188_tlut_wheel_2: + symbol: gKartWario188TlutWheel2 + type: texture + offset: 0x9089C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_188_tlut_wheel_3: + symbol: gKartWario188TlutWheel3 + type: texture + offset: 0x9091C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_189_tlut_wheel_0: + symbol: gKartWario189TlutWheel0 + type: texture + offset: 0x9099C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_189_tlut_wheel_1: + symbol: gKartWario189TlutWheel1 + type: texture + offset: 0x90A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_189_tlut_wheel_2: + symbol: gKartWario189TlutWheel2 + type: texture + offset: 0x90A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_189_tlut_wheel_3: + symbol: gKartWario189TlutWheel3 + type: texture + offset: 0x90B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_190_tlut_wheel_0: + symbol: gKartWario190TlutWheel0 + type: texture + offset: 0x90B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_190_tlut_wheel_1: + symbol: gKartWario190TlutWheel1 + type: texture + offset: 0x90C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_190_tlut_wheel_2: + symbol: gKartWario190TlutWheel2 + type: texture + offset: 0x90C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_190_tlut_wheel_3: + symbol: gKartWario190TlutWheel3 + type: texture + offset: 0x90D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_191_tlut_wheel_0: + symbol: gKartWario191TlutWheel0 + type: texture + offset: 0x90D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_191_tlut_wheel_1: + symbol: gKartWario191TlutWheel1 + type: texture + offset: 0x90E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_191_tlut_wheel_2: + symbol: gKartWario191TlutWheel2 + type: texture + offset: 0x90E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_191_tlut_wheel_3: + symbol: gKartWario191TlutWheel3 + type: texture + offset: 0x90F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_192_tlut_wheel_0: + symbol: gKartWario192TlutWheel0 + type: texture + offset: 0x90F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_192_tlut_wheel_1: + symbol: gKartWario192TlutWheel1 + type: texture + offset: 0x9101C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_192_tlut_wheel_2: + symbol: gKartWario192TlutWheel2 + type: texture + offset: 0x9109C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_192_tlut_wheel_3: + symbol: gKartWario192TlutWheel3 + type: texture + offset: 0x9111C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_193_tlut_wheel_0: + symbol: gKartWario193TlutWheel0 + type: texture + offset: 0x9119C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_193_tlut_wheel_1: + symbol: gKartWario193TlutWheel1 + type: texture + offset: 0x9121C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_193_tlut_wheel_2: + symbol: gKartWario193TlutWheel2 + type: texture + offset: 0x9129C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_193_tlut_wheel_3: + symbol: gKartWario193TlutWheel3 + type: texture + offset: 0x9131C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_194_tlut_wheel_0: + symbol: gKartWario194TlutWheel0 + type: texture + offset: 0x9139C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_194_tlut_wheel_1: + symbol: gKartWario194TlutWheel1 + type: texture + offset: 0x9141C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_194_tlut_wheel_2: + symbol: gKartWario194TlutWheel2 + type: texture + offset: 0x9149C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_194_tlut_wheel_3: + symbol: gKartWario194TlutWheel3 + type: texture + offset: 0x9151C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_195_tlut_wheel_0: + symbol: gKartWario195TlutWheel0 + type: texture + offset: 0x9159C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_195_tlut_wheel_1: + symbol: gKartWario195TlutWheel1 + type: texture + offset: 0x9161C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_195_tlut_wheel_2: + symbol: gKartWario195TlutWheel2 + type: texture + offset: 0x9169C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_195_tlut_wheel_3: + symbol: gKartWario195TlutWheel3 + type: texture + offset: 0x9171C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_196_tlut_wheel_0: + symbol: gKartWario196TlutWheel0 + type: texture + offset: 0x9179C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_196_tlut_wheel_1: + symbol: gKartWario196TlutWheel1 + type: texture + offset: 0x9181C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_196_tlut_wheel_2: + symbol: gKartWario196TlutWheel2 + type: texture + offset: 0x9189C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_196_tlut_wheel_3: + symbol: gKartWario196TlutWheel3 + type: texture + offset: 0x9191C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_197_tlut_wheel_0: + symbol: gKartWario197TlutWheel0 + type: texture + offset: 0x9199C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_197_tlut_wheel_1: + symbol: gKartWario197TlutWheel1 + type: texture + offset: 0x91A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_197_tlut_wheel_2: + symbol: gKartWario197TlutWheel2 + type: texture + offset: 0x91A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_197_tlut_wheel_3: + symbol: gKartWario197TlutWheel3 + type: texture + offset: 0x91B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_198_tlut_wheel_0: + symbol: gKartWario198TlutWheel0 + type: texture + offset: 0x91B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_198_tlut_wheel_1: + symbol: gKartWario198TlutWheel1 + type: texture + offset: 0x91C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_198_tlut_wheel_2: + symbol: gKartWario198TlutWheel2 + type: texture + offset: 0x91C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_198_tlut_wheel_3: + symbol: gKartWario198TlutWheel3 + type: texture + offset: 0x91D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_199_tlut_wheel_0: + symbol: gKartWario199TlutWheel0 + type: texture + offset: 0x91D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_199_tlut_wheel_1: + symbol: gKartWario199TlutWheel1 + type: texture + offset: 0x91E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_199_tlut_wheel_2: + symbol: gKartWario199TlutWheel2 + type: texture + offset: 0x91E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_199_tlut_wheel_3: + symbol: gKartWario199TlutWheel3 + type: texture + offset: 0x91F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_200_tlut_wheel_0: + symbol: gKartWario200TlutWheel0 + type: texture + offset: 0x91F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_200_tlut_wheel_1: + symbol: gKartWario200TlutWheel1 + type: texture + offset: 0x9201C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_200_tlut_wheel_2: + symbol: gKartWario200TlutWheel2 + type: texture + offset: 0x9209C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_200_tlut_wheel_3: + symbol: gKartWario200TlutWheel3 + type: texture + offset: 0x9211C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_201_tlut_wheel_0: + symbol: gKartWario201TlutWheel0 + type: texture + offset: 0x9219C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_201_tlut_wheel_1: + symbol: gKartWario201TlutWheel1 + type: texture + offset: 0x9221C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_201_tlut_wheel_2: + symbol: gKartWario201TlutWheel2 + type: texture + offset: 0x9229C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_201_tlut_wheel_3: + symbol: gKartWario201TlutWheel3 + type: texture + offset: 0x9231C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_202_tlut_wheel_0: + symbol: gKartWario202TlutWheel0 + type: texture + offset: 0x9239C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_202_tlut_wheel_1: + symbol: gKartWario202TlutWheel1 + type: texture + offset: 0x9241C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_202_tlut_wheel_2: + symbol: gKartWario202TlutWheel2 + type: texture + offset: 0x9249C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_202_tlut_wheel_3: + symbol: gKartWario202TlutWheel3 + type: texture + offset: 0x9251C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_203_tlut_wheel_0: + symbol: gKartWario203TlutWheel0 + type: texture + offset: 0x9259C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_203_tlut_wheel_1: + symbol: gKartWario203TlutWheel1 + type: texture + offset: 0x9261C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_203_tlut_wheel_2: + symbol: gKartWario203TlutWheel2 + type: texture + offset: 0x9269C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_203_tlut_wheel_3: + symbol: gKartWario203TlutWheel3 + type: texture + offset: 0x9271C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_204_tlut_wheel_0: + symbol: gKartWario204TlutWheel0 + type: texture + offset: 0x9279C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_204_tlut_wheel_1: + symbol: gKartWario204TlutWheel1 + type: texture + offset: 0x9281C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_204_tlut_wheel_2: + symbol: gKartWario204TlutWheel2 + type: texture + offset: 0x9289C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_204_tlut_wheel_3: + symbol: gKartWario204TlutWheel3 + type: texture + offset: 0x9291C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_205_tlut_wheel_0: + symbol: gKartWario205TlutWheel0 + type: texture + offset: 0x9299C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_205_tlut_wheel_1: + symbol: gKartWario205TlutWheel1 + type: texture + offset: 0x92A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_205_tlut_wheel_2: + symbol: gKartWario205TlutWheel2 + type: texture + offset: 0x92A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_205_tlut_wheel_3: + symbol: gKartWario205TlutWheel3 + type: texture + offset: 0x92B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_206_tlut_wheel_0: + symbol: gKartWario206TlutWheel0 + type: texture + offset: 0x92B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_206_tlut_wheel_1: + symbol: gKartWario206TlutWheel1 + type: texture + offset: 0x92C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_206_tlut_wheel_2: + symbol: gKartWario206TlutWheel2 + type: texture + offset: 0x92C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_206_tlut_wheel_3: + symbol: gKartWario206TlutWheel3 + type: texture + offset: 0x92D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_207_tlut_wheel_0: + symbol: gKartWario207TlutWheel0 + type: texture + offset: 0x92D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_207_tlut_wheel_1: + symbol: gKartWario207TlutWheel1 + type: texture + offset: 0x92E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_207_tlut_wheel_2: + symbol: gKartWario207TlutWheel2 + type: texture + offset: 0x92E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_207_tlut_wheel_3: + symbol: gKartWario207TlutWheel3 + type: texture + offset: 0x92F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_208_tlut_wheel_0: + symbol: gKartWario208TlutWheel0 + type: texture + offset: 0x92F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_208_tlut_wheel_1: + symbol: gKartWario208TlutWheel1 + type: texture + offset: 0x9301C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_208_tlut_wheel_2: + symbol: gKartWario208TlutWheel2 + type: texture + offset: 0x9309C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_208_tlut_wheel_3: + symbol: gKartWario208TlutWheel3 + type: texture + offset: 0x9311C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_209_tlut_wheel_0: + symbol: gKartWario209TlutWheel0 + type: texture + offset: 0x9319C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_209_tlut_wheel_1: + symbol: gKartWario209TlutWheel1 + type: texture + offset: 0x9321C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_209_tlut_wheel_2: + symbol: gKartWario209TlutWheel2 + type: texture + offset: 0x9329C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_209_tlut_wheel_3: + symbol: gKartWario209TlutWheel3 + type: texture + offset: 0x9331C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_210_tlut_wheel_0: + symbol: gKartWario210TlutWheel0 + type: texture + offset: 0x9339C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_210_tlut_wheel_1: + symbol: gKartWario210TlutWheel1 + type: texture + offset: 0x9341C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_210_tlut_wheel_2: + symbol: gKartWario210TlutWheel2 + type: texture + offset: 0x9349C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_210_tlut_wheel_3: + symbol: gKartWario210TlutWheel3 + type: texture + offset: 0x9351C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_211_tlut_wheel_0: + symbol: gKartWario211TlutWheel0 + type: texture + offset: 0x9359C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_211_tlut_wheel_1: + symbol: gKartWario211TlutWheel1 + type: texture + offset: 0x9361C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_211_tlut_wheel_2: + symbol: gKartWario211TlutWheel2 + type: texture + offset: 0x9369C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_211_tlut_wheel_3: + symbol: gKartWario211TlutWheel3 + type: texture + offset: 0x9371C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_212_tlut_wheel_0: + symbol: gKartWario212TlutWheel0 + type: texture + offset: 0x9379C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_212_tlut_wheel_1: + symbol: gKartWario212TlutWheel1 + type: texture + offset: 0x9381C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_212_tlut_wheel_2: + symbol: gKartWario212TlutWheel2 + type: texture + offset: 0x9389C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_212_tlut_wheel_3: + symbol: gKartWario212TlutWheel3 + type: texture + offset: 0x9391C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_213_tlut_wheel_0: + symbol: gKartWario213TlutWheel0 + type: texture + offset: 0x9399C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_213_tlut_wheel_1: + symbol: gKartWario213TlutWheel1 + type: texture + offset: 0x93A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_213_tlut_wheel_2: + symbol: gKartWario213TlutWheel2 + type: texture + offset: 0x93A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_213_tlut_wheel_3: + symbol: gKartWario213TlutWheel3 + type: texture + offset: 0x93B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_214_tlut_wheel_0: + symbol: gKartWario214TlutWheel0 + type: texture + offset: 0x93B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_214_tlut_wheel_1: + symbol: gKartWario214TlutWheel1 + type: texture + offset: 0x93C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_214_tlut_wheel_2: + symbol: gKartWario214TlutWheel2 + type: texture + offset: 0x93C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_214_tlut_wheel_3: + symbol: gKartWario214TlutWheel3 + type: texture + offset: 0x93D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_215_tlut_wheel_0: + symbol: gKartWario215TlutWheel0 + type: texture + offset: 0x93D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_215_tlut_wheel_1: + symbol: gKartWario215TlutWheel1 + type: texture + offset: 0x93E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_215_tlut_wheel_2: + symbol: gKartWario215TlutWheel2 + type: texture + offset: 0x93E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_215_tlut_wheel_3: + symbol: gKartWario215TlutWheel3 + type: texture + offset: 0x93F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_216_tlut_wheel_0: + symbol: gKartWario216TlutWheel0 + type: texture + offset: 0x93F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_216_tlut_wheel_1: + symbol: gKartWario216TlutWheel1 + type: texture + offset: 0x9401C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_216_tlut_wheel_2: + symbol: gKartWario216TlutWheel2 + type: texture + offset: 0x9409C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_216_tlut_wheel_3: + symbol: gKartWario216TlutWheel3 + type: texture + offset: 0x9411C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_217_tlut_wheel_0: + symbol: gKartWario217TlutWheel0 + type: texture + offset: 0x9419C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_217_tlut_wheel_1: + symbol: gKartWario217TlutWheel1 + type: texture + offset: 0x9421C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_217_tlut_wheel_2: + symbol: gKartWario217TlutWheel2 + type: texture + offset: 0x9429C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_217_tlut_wheel_3: + symbol: gKartWario217TlutWheel3 + type: texture + offset: 0x9431C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_218_tlut_wheel_0: + symbol: gKartWario218TlutWheel0 + type: texture + offset: 0x9439C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_218_tlut_wheel_1: + symbol: gKartWario218TlutWheel1 + type: texture + offset: 0x9441C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_218_tlut_wheel_2: + symbol: gKartWario218TlutWheel2 + type: texture + offset: 0x9449C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_218_tlut_wheel_3: + symbol: gKartWario218TlutWheel3 + type: texture + offset: 0x9451C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_219_tlut_wheel_0: + symbol: gKartWario219TlutWheel0 + type: texture + offset: 0x9459C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_219_tlut_wheel_1: + symbol: gKartWario219TlutWheel1 + type: texture + offset: 0x9461C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_219_tlut_wheel_2: + symbol: gKartWario219TlutWheel2 + type: texture + offset: 0x9469C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_219_tlut_wheel_3: + symbol: gKartWario219TlutWheel3 + type: texture + offset: 0x9471C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_220_tlut_wheel_0: + symbol: gKartWario220TlutWheel0 + type: texture + offset: 0x9479C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_220_tlut_wheel_1: + symbol: gKartWario220TlutWheel1 + type: texture + offset: 0x9481C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_220_tlut_wheel_2: + symbol: gKartWario220TlutWheel2 + type: texture + offset: 0x9489C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_220_tlut_wheel_3: + symbol: gKartWario220TlutWheel3 + type: texture + offset: 0x9491C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_221_tlut_wheel_0: + symbol: gKartWario221TlutWheel0 + type: texture + offset: 0x9499C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_221_tlut_wheel_1: + symbol: gKartWario221TlutWheel1 + type: texture + offset: 0x94A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_221_tlut_wheel_2: + symbol: gKartWario221TlutWheel2 + type: texture + offset: 0x94A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_221_tlut_wheel_3: + symbol: gKartWario221TlutWheel3 + type: texture + offset: 0x94B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_222_tlut_wheel_0: + symbol: gKartWario222TlutWheel0 + type: texture + offset: 0x94B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_222_tlut_wheel_1: + symbol: gKartWario222TlutWheel1 + type: texture + offset: 0x94C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_222_tlut_wheel_2: + symbol: gKartWario222TlutWheel2 + type: texture + offset: 0x94C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_222_tlut_wheel_3: + symbol: gKartWario222TlutWheel3 + type: texture + offset: 0x94D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_223_tlut_wheel_0: + symbol: gKartWario223TlutWheel0 + type: texture + offset: 0x94D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_223_tlut_wheel_1: + symbol: gKartWario223TlutWheel1 + type: texture + offset: 0x94E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_223_tlut_wheel_2: + symbol: gKartWario223TlutWheel2 + type: texture + offset: 0x94E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_223_tlut_wheel_3: + symbol: gKartWario223TlutWheel3 + type: texture + offset: 0x94F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_224_tlut_wheel_0: + symbol: gKartWario224TlutWheel0 + type: texture + offset: 0x94F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_224_tlut_wheel_1: + symbol: gKartWario224TlutWheel1 + type: texture + offset: 0x9501C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_224_tlut_wheel_2: + symbol: gKartWario224TlutWheel2 + type: texture + offset: 0x9509C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_224_tlut_wheel_3: + symbol: gKartWario224TlutWheel3 + type: texture + offset: 0x9511C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_225_tlut_wheel_0: + symbol: gKartWario225TlutWheel0 + type: texture + offset: 0x9519C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_225_tlut_wheel_1: + symbol: gKartWario225TlutWheel1 + type: texture + offset: 0x9521C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_225_tlut_wheel_2: + symbol: gKartWario225TlutWheel2 + type: texture + offset: 0x9529C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_225_tlut_wheel_3: + symbol: gKartWario225TlutWheel3 + type: texture + offset: 0x9531C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_226_tlut_wheel_0: + symbol: gKartWario226TlutWheel0 + type: texture + offset: 0x9539C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_226_tlut_wheel_1: + symbol: gKartWario226TlutWheel1 + type: texture + offset: 0x9541C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_226_tlut_wheel_2: + symbol: gKartWario226TlutWheel2 + type: texture + offset: 0x9549C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_226_tlut_wheel_3: + symbol: gKartWario226TlutWheel3 + type: texture + offset: 0x9551C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_227_tlut_wheel_0: + symbol: gKartWario227TlutWheel0 + type: texture + offset: 0x9559C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_227_tlut_wheel_1: + symbol: gKartWario227TlutWheel1 + type: texture + offset: 0x9561C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_227_tlut_wheel_2: + symbol: gKartWario227TlutWheel2 + type: texture + offset: 0x9569C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_227_tlut_wheel_3: + symbol: gKartWario227TlutWheel3 + type: texture + offset: 0x9571C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_228_tlut_wheel_0: + symbol: gKartWario228TlutWheel0 + type: texture + offset: 0x9579C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_228_tlut_wheel_1: + symbol: gKartWario228TlutWheel1 + type: texture + offset: 0x9581C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_228_tlut_wheel_2: + symbol: gKartWario228TlutWheel2 + type: texture + offset: 0x9589C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_228_tlut_wheel_3: + symbol: gKartWario228TlutWheel3 + type: texture + offset: 0x9591C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_229_tlut_wheel_0: + symbol: gKartWario229TlutWheel0 + type: texture + offset: 0x9599C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_229_tlut_wheel_1: + symbol: gKartWario229TlutWheel1 + type: texture + offset: 0x95A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_229_tlut_wheel_2: + symbol: gKartWario229TlutWheel2 + type: texture + offset: 0x95A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_229_tlut_wheel_3: + symbol: gKartWario229TlutWheel3 + type: texture + offset: 0x95B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_230_tlut_wheel_0: + symbol: gKartWario230TlutWheel0 + type: texture + offset: 0x95B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_230_tlut_wheel_1: + symbol: gKartWario230TlutWheel1 + type: texture + offset: 0x95C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_230_tlut_wheel_2: + symbol: gKartWario230TlutWheel2 + type: texture + offset: 0x95C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_230_tlut_wheel_3: + symbol: gKartWario230TlutWheel3 + type: texture + offset: 0x95D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_231_tlut_wheel_0: + symbol: gKartWario231TlutWheel0 + type: texture + offset: 0x95D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_231_tlut_wheel_1: + symbol: gKartWario231TlutWheel1 + type: texture + offset: 0x95E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_231_tlut_wheel_2: + symbol: gKartWario231TlutWheel2 + type: texture + offset: 0x95E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_231_tlut_wheel_3: + symbol: gKartWario231TlutWheel3 + type: texture + offset: 0x95F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_232_tlut_wheel_0: + symbol: gKartWario232TlutWheel0 + type: texture + offset: 0x95F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_232_tlut_wheel_1: + symbol: gKartWario232TlutWheel1 + type: texture + offset: 0x9601C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_232_tlut_wheel_2: + symbol: gKartWario232TlutWheel2 + type: texture + offset: 0x9609C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_232_tlut_wheel_3: + symbol: gKartWario232TlutWheel3 + type: texture + offset: 0x9611C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_233_tlut_wheel_0: + symbol: gKartWario233TlutWheel0 + type: texture + offset: 0x9619C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_233_tlut_wheel_1: + symbol: gKartWario233TlutWheel1 + type: texture + offset: 0x9621C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_233_tlut_wheel_2: + symbol: gKartWario233TlutWheel2 + type: texture + offset: 0x9629C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_233_tlut_wheel_3: + symbol: gKartWario233TlutWheel3 + type: texture + offset: 0x9631C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_234_tlut_wheel_0: + symbol: gKartWario234TlutWheel0 + type: texture + offset: 0x9639C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_234_tlut_wheel_1: + symbol: gKartWario234TlutWheel1 + type: texture + offset: 0x9641C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_234_tlut_wheel_2: + symbol: gKartWario234TlutWheel2 + type: texture + offset: 0x9649C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_234_tlut_wheel_3: + symbol: gKartWario234TlutWheel3 + type: texture + offset: 0x9651C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_235_tlut_wheel_0: + symbol: gKartWario235TlutWheel0 + type: texture + offset: 0x9659C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_235_tlut_wheel_1: + symbol: gKartWario235TlutWheel1 + type: texture + offset: 0x9661C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_235_tlut_wheel_2: + symbol: gKartWario235TlutWheel2 + type: texture + offset: 0x9669C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_235_tlut_wheel_3: + symbol: gKartWario235TlutWheel3 + type: texture + offset: 0x9671C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_236_tlut_wheel_0: + symbol: gKartWario236TlutWheel0 + type: texture + offset: 0x9679C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_236_tlut_wheel_1: + symbol: gKartWario236TlutWheel1 + type: texture + offset: 0x9681C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_236_tlut_wheel_2: + symbol: gKartWario236TlutWheel2 + type: texture + offset: 0x9689C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_236_tlut_wheel_3: + symbol: gKartWario236TlutWheel3 + type: texture + offset: 0x9691C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_237_tlut_wheel_0: + symbol: gKartWario237TlutWheel0 + type: texture + offset: 0x9699C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_237_tlut_wheel_1: + symbol: gKartWario237TlutWheel1 + type: texture + offset: 0x96A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_237_tlut_wheel_2: + symbol: gKartWario237TlutWheel2 + type: texture + offset: 0x96A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_237_tlut_wheel_3: + symbol: gKartWario237TlutWheel3 + type: texture + offset: 0x96B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_238_tlut_wheel_0: + symbol: gKartWario238TlutWheel0 + type: texture + offset: 0x96B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_238_tlut_wheel_1: + symbol: gKartWario238TlutWheel1 + type: texture + offset: 0x96C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_238_tlut_wheel_2: + symbol: gKartWario238TlutWheel2 + type: texture + offset: 0x96C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_238_tlut_wheel_3: + symbol: gKartWario238TlutWheel3 + type: texture + offset: 0x96D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_239_tlut_wheel_0: + symbol: gKartWario239TlutWheel0 + type: texture + offset: 0x96D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_239_tlut_wheel_1: + symbol: gKartWario239TlutWheel1 + type: texture + offset: 0x96E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_239_tlut_wheel_2: + symbol: gKartWario239TlutWheel2 + type: texture + offset: 0x96E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_239_tlut_wheel_3: + symbol: gKartWario239TlutWheel3 + type: texture + offset: 0x96F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_240_tlut_wheel_0: + symbol: gKartWario240TlutWheel0 + type: texture + offset: 0x96F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_240_tlut_wheel_1: + symbol: gKartWario240TlutWheel1 + type: texture + offset: 0x9701C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_240_tlut_wheel_2: + symbol: gKartWario240TlutWheel2 + type: texture + offset: 0x9709C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_240_tlut_wheel_3: + symbol: gKartWario240TlutWheel3 + type: texture + offset: 0x9711C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_241_tlut_wheel_0: + symbol: gKartWario241TlutWheel0 + type: texture + offset: 0x9719C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_241_tlut_wheel_1: + symbol: gKartWario241TlutWheel1 + type: texture + offset: 0x9721C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_241_tlut_wheel_2: + symbol: gKartWario241TlutWheel2 + type: texture + offset: 0x9729C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_241_tlut_wheel_3: + symbol: gKartWario241TlutWheel3 + type: texture + offset: 0x9731C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_242_tlut_wheel_0: + symbol: gKartWario242TlutWheel0 + type: texture + offset: 0x9739C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_242_tlut_wheel_1: + symbol: gKartWario242TlutWheel1 + type: texture + offset: 0x9741C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_242_tlut_wheel_2: + symbol: gKartWario242TlutWheel2 + type: texture + offset: 0x9749C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_242_tlut_wheel_3: + symbol: gKartWario242TlutWheel3 + type: texture + offset: 0x9751C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_243_tlut_wheel_0: + symbol: gKartWario243TlutWheel0 + type: texture + offset: 0x9759C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_243_tlut_wheel_1: + symbol: gKartWario243TlutWheel1 + type: texture + offset: 0x9761C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_243_tlut_wheel_2: + symbol: gKartWario243TlutWheel2 + type: texture + offset: 0x9769C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_243_tlut_wheel_3: + symbol: gKartWario243TlutWheel3 + type: texture + offset: 0x9771C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_244_tlut_wheel_0: + symbol: gKartWario244TlutWheel0 + type: texture + offset: 0x9779C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_244_tlut_wheel_1: + symbol: gKartWario244TlutWheel1 + type: texture + offset: 0x9781C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_244_tlut_wheel_2: + symbol: gKartWario244TlutWheel2 + type: texture + offset: 0x9789C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_244_tlut_wheel_3: + symbol: gKartWario244TlutWheel3 + type: texture + offset: 0x9791C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_245_tlut_wheel_0: + symbol: gKartWario245TlutWheel0 + type: texture + offset: 0x9799C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_245_tlut_wheel_1: + symbol: gKartWario245TlutWheel1 + type: texture + offset: 0x97A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_245_tlut_wheel_2: + symbol: gKartWario245TlutWheel2 + type: texture + offset: 0x97A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_245_tlut_wheel_3: + symbol: gKartWario245TlutWheel3 + type: texture + offset: 0x97B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_246_tlut_wheel_0: + symbol: gKartWario246TlutWheel0 + type: texture + offset: 0x97B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_246_tlut_wheel_1: + symbol: gKartWario246TlutWheel1 + type: texture + offset: 0x97C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_246_tlut_wheel_2: + symbol: gKartWario246TlutWheel2 + type: texture + offset: 0x97C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_246_tlut_wheel_3: + symbol: gKartWario246TlutWheel3 + type: texture + offset: 0x97D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_247_tlut_wheel_0: + symbol: gKartWario247TlutWheel0 + type: texture + offset: 0x97D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_247_tlut_wheel_1: + symbol: gKartWario247TlutWheel1 + type: texture + offset: 0x97E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_247_tlut_wheel_2: + symbol: gKartWario247TlutWheel2 + type: texture + offset: 0x97E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_247_tlut_wheel_3: + symbol: gKartWario247TlutWheel3 + type: texture + offset: 0x97F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_248_tlut_wheel_0: + symbol: gKartWario248TlutWheel0 + type: texture + offset: 0x97F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_248_tlut_wheel_1: + symbol: gKartWario248TlutWheel1 + type: texture + offset: 0x9801C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_248_tlut_wheel_2: + symbol: gKartWario248TlutWheel2 + type: texture + offset: 0x9809C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_248_tlut_wheel_3: + symbol: gKartWario248TlutWheel3 + type: texture + offset: 0x9811C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_249_tlut_wheel_0: + symbol: gKartWario249TlutWheel0 + type: texture + offset: 0x9819C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_249_tlut_wheel_1: + symbol: gKartWario249TlutWheel1 + type: texture + offset: 0x9821C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_249_tlut_wheel_2: + symbol: gKartWario249TlutWheel2 + type: texture + offset: 0x9829C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_249_tlut_wheel_3: + symbol: gKartWario249TlutWheel3 + type: texture + offset: 0x9831C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_250_tlut_wheel_0: + symbol: gKartWario250TlutWheel0 + type: texture + offset: 0x9839C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_250_tlut_wheel_1: + symbol: gKartWario250TlutWheel1 + type: texture + offset: 0x9841C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_250_tlut_wheel_2: + symbol: gKartWario250TlutWheel2 + type: texture + offset: 0x9849C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_250_tlut_wheel_3: + symbol: gKartWario250TlutWheel3 + type: texture + offset: 0x9851C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_251_tlut_wheel_0: + symbol: gKartWario251TlutWheel0 + type: texture + offset: 0x9859C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_251_tlut_wheel_1: + symbol: gKartWario251TlutWheel1 + type: texture + offset: 0x9861C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_251_tlut_wheel_2: + symbol: gKartWario251TlutWheel2 + type: texture + offset: 0x9869C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_251_tlut_wheel_3: + symbol: gKartWario251TlutWheel3 + type: texture + offset: 0x9871C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_252_tlut_wheel_0: + symbol: gKartWario252TlutWheel0 + type: texture + offset: 0x9879C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_252_tlut_wheel_1: + symbol: gKartWario252TlutWheel1 + type: texture + offset: 0x9881C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_252_tlut_wheel_2: + symbol: gKartWario252TlutWheel2 + type: texture + offset: 0x9889C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_252_tlut_wheel_3: + symbol: gKartWario252TlutWheel3 + type: texture + offset: 0x9891C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_253_tlut_wheel_0: + symbol: gKartWario253TlutWheel0 + type: texture + offset: 0x9899C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_253_tlut_wheel_1: + symbol: gKartWario253TlutWheel1 + type: texture + offset: 0x98A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_253_tlut_wheel_2: + symbol: gKartWario253TlutWheel2 + type: texture + offset: 0x98A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_253_tlut_wheel_3: + symbol: gKartWario253TlutWheel3 + type: texture + offset: 0x98B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_254_tlut_wheel_0: + symbol: gKartWario254TlutWheel0 + type: texture + offset: 0x98B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_254_tlut_wheel_1: + symbol: gKartWario254TlutWheel1 + type: texture + offset: 0x98C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_254_tlut_wheel_2: + symbol: gKartWario254TlutWheel2 + type: texture + offset: 0x98C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_254_tlut_wheel_3: + symbol: gKartWario254TlutWheel3 + type: texture + offset: 0x98D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_255_tlut_wheel_0: + symbol: gKartWario255TlutWheel0 + type: texture + offset: 0x98D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_255_tlut_wheel_1: + symbol: gKartWario255TlutWheel1 + type: texture + offset: 0x98E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_255_tlut_wheel_2: + symbol: gKartWario255TlutWheel2 + type: texture + offset: 0x98E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_255_tlut_wheel_3: + symbol: gKartWario255TlutWheel3 + type: texture + offset: 0x98F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_256_tlut_wheel_0: + symbol: gKartWario256TlutWheel0 + type: texture + offset: 0x98F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_256_tlut_wheel_1: + symbol: gKartWario256TlutWheel1 + type: texture + offset: 0x9901C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_256_tlut_wheel_2: + symbol: gKartWario256TlutWheel2 + type: texture + offset: 0x9909C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_256_tlut_wheel_3: + symbol: gKartWario256TlutWheel3 + type: texture + offset: 0x9911C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_257_tlut_wheel_0: + symbol: gKartWario257TlutWheel0 + type: texture + offset: 0x9919C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_257_tlut_wheel_1: + symbol: gKartWario257TlutWheel1 + type: texture + offset: 0x9921C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_257_tlut_wheel_2: + symbol: gKartWario257TlutWheel2 + type: texture + offset: 0x9929C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_257_tlut_wheel_3: + symbol: gKartWario257TlutWheel3 + type: texture + offset: 0x9931C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_258_tlut_wheel_0: + symbol: gKartWario258TlutWheel0 + type: texture + offset: 0x9939C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_258_tlut_wheel_1: + symbol: gKartWario258TlutWheel1 + type: texture + offset: 0x9941C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_258_tlut_wheel_2: + symbol: gKartWario258TlutWheel2 + type: texture + offset: 0x9949C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_258_tlut_wheel_3: + symbol: gKartWario258TlutWheel3 + type: texture + offset: 0x9951C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_259_tlut_wheel_0: + symbol: gKartWario259TlutWheel0 + type: texture + offset: 0x9959C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_259_tlut_wheel_1: + symbol: gKartWario259TlutWheel1 + type: texture + offset: 0x9961C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_259_tlut_wheel_2: + symbol: gKartWario259TlutWheel2 + type: texture + offset: 0x9969C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_259_tlut_wheel_3: + symbol: gKartWario259TlutWheel3 + type: texture + offset: 0x9971C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_260_tlut_wheel_0: + symbol: gKartWario260TlutWheel0 + type: texture + offset: 0x9979C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_260_tlut_wheel_1: + symbol: gKartWario260TlutWheel1 + type: texture + offset: 0x9981C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_260_tlut_wheel_2: + symbol: gKartWario260TlutWheel2 + type: texture + offset: 0x9989C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_260_tlut_wheel_3: + symbol: gKartWario260TlutWheel3 + type: texture + offset: 0x9991C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_261_tlut_wheel_0: + symbol: gKartWario261TlutWheel0 + type: texture + offset: 0x9999C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_261_tlut_wheel_1: + symbol: gKartWario261TlutWheel1 + type: texture + offset: 0x99A1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_261_tlut_wheel_2: + symbol: gKartWario261TlutWheel2 + type: texture + offset: 0x99A9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_261_tlut_wheel_3: + symbol: gKartWario261TlutWheel3 + type: texture + offset: 0x99B1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_262_tlut_wheel_0: + symbol: gKartWario262TlutWheel0 + type: texture + offset: 0x99B9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_262_tlut_wheel_1: + symbol: gKartWario262TlutWheel1 + type: texture + offset: 0x99C1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_262_tlut_wheel_2: + symbol: gKartWario262TlutWheel2 + type: texture + offset: 0x99C9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_262_tlut_wheel_3: + symbol: gKartWario262TlutWheel3 + type: texture + offset: 0x99D1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_263_tlut_wheel_0: + symbol: gKartWario263TlutWheel0 + type: texture + offset: 0x99D9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_263_tlut_wheel_1: + symbol: gKartWario263TlutWheel1 + type: texture + offset: 0x99E1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_263_tlut_wheel_2: + symbol: gKartWario263TlutWheel2 + type: texture + offset: 0x99E9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_263_tlut_wheel_3: + symbol: gKartWario263TlutWheel3 + type: texture + offset: 0x99F1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_264_tlut_wheel_0: + symbol: gKartWario264TlutWheel0 + type: texture + offset: 0x99F9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_264_tlut_wheel_1: + symbol: gKartWario264TlutWheel1 + type: texture + offset: 0x9A01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_264_tlut_wheel_2: + symbol: gKartWario264TlutWheel2 + type: texture + offset: 0x9A09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_264_tlut_wheel_3: + symbol: gKartWario264TlutWheel3 + type: texture + offset: 0x9A11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_265_tlut_wheel_0: + symbol: gKartWario265TlutWheel0 + type: texture + offset: 0x9A19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_265_tlut_wheel_1: + symbol: gKartWario265TlutWheel1 + type: texture + offset: 0x9A21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_265_tlut_wheel_2: + symbol: gKartWario265TlutWheel2 + type: texture + offset: 0x9A29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_265_tlut_wheel_3: + symbol: gKartWario265TlutWheel3 + type: texture + offset: 0x9A31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_266_tlut_wheel_0: + symbol: gKartWario266TlutWheel0 + type: texture + offset: 0x9A39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_266_tlut_wheel_1: + symbol: gKartWario266TlutWheel1 + type: texture + offset: 0x9A41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_266_tlut_wheel_2: + symbol: gKartWario266TlutWheel2 + type: texture + offset: 0x9A49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_266_tlut_wheel_3: + symbol: gKartWario266TlutWheel3 + type: texture + offset: 0x9A51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_267_tlut_wheel_0: + symbol: gKartWario267TlutWheel0 + type: texture + offset: 0x9A59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_267_tlut_wheel_1: + symbol: gKartWario267TlutWheel1 + type: texture + offset: 0x9A61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_267_tlut_wheel_2: + symbol: gKartWario267TlutWheel2 + type: texture + offset: 0x9A69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_267_tlut_wheel_3: + symbol: gKartWario267TlutWheel3 + type: texture + offset: 0x9A71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_268_tlut_wheel_0: + symbol: gKartWario268TlutWheel0 + type: texture + offset: 0x9A79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_268_tlut_wheel_1: + symbol: gKartWario268TlutWheel1 + type: texture + offset: 0x9A81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_268_tlut_wheel_2: + symbol: gKartWario268TlutWheel2 + type: texture + offset: 0x9A89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_268_tlut_wheel_3: + symbol: gKartWario268TlutWheel3 + type: texture + offset: 0x9A91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_269_tlut_wheel_0: + symbol: gKartWario269TlutWheel0 + type: texture + offset: 0x9A99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_269_tlut_wheel_1: + symbol: gKartWario269TlutWheel1 + type: texture + offset: 0x9AA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_269_tlut_wheel_2: + symbol: gKartWario269TlutWheel2 + type: texture + offset: 0x9AA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_269_tlut_wheel_3: + symbol: gKartWario269TlutWheel3 + type: texture + offset: 0x9AB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_270_tlut_wheel_0: + symbol: gKartWario270TlutWheel0 + type: texture + offset: 0x9AB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_270_tlut_wheel_1: + symbol: gKartWario270TlutWheel1 + type: texture + offset: 0x9AC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_270_tlut_wheel_2: + symbol: gKartWario270TlutWheel2 + type: texture + offset: 0x9AC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_270_tlut_wheel_3: + symbol: gKartWario270TlutWheel3 + type: texture + offset: 0x9AD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_271_tlut_wheel_0: + symbol: gKartWario271TlutWheel0 + type: texture + offset: 0x9AD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_271_tlut_wheel_1: + symbol: gKartWario271TlutWheel1 + type: texture + offset: 0x9AE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_271_tlut_wheel_2: + symbol: gKartWario271TlutWheel2 + type: texture + offset: 0x9AE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_271_tlut_wheel_3: + symbol: gKartWario271TlutWheel3 + type: texture + offset: 0x9AF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_272_tlut_wheel_0: + symbol: gKartWario272TlutWheel0 + type: texture + offset: 0x9AF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_272_tlut_wheel_1: + symbol: gKartWario272TlutWheel1 + type: texture + offset: 0x9B01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_272_tlut_wheel_2: + symbol: gKartWario272TlutWheel2 + type: texture + offset: 0x9B09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_272_tlut_wheel_3: + symbol: gKartWario272TlutWheel3 + type: texture + offset: 0x9B11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_273_tlut_wheel_0: + symbol: gKartWario273TlutWheel0 + type: texture + offset: 0x9B19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_273_tlut_wheel_1: + symbol: gKartWario273TlutWheel1 + type: texture + offset: 0x9B21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_273_tlut_wheel_2: + symbol: gKartWario273TlutWheel2 + type: texture + offset: 0x9B29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_273_tlut_wheel_3: + symbol: gKartWario273TlutWheel3 + type: texture + offset: 0x9B31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_274_tlut_wheel_0: + symbol: gKartWario274TlutWheel0 + type: texture + offset: 0x9B39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_274_tlut_wheel_1: + symbol: gKartWario274TlutWheel1 + type: texture + offset: 0x9B41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_274_tlut_wheel_2: + symbol: gKartWario274TlutWheel2 + type: texture + offset: 0x9B49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_274_tlut_wheel_3: + symbol: gKartWario274TlutWheel3 + type: texture + offset: 0x9B51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_275_tlut_wheel_0: + symbol: gKartWario275TlutWheel0 + type: texture + offset: 0x9B59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_275_tlut_wheel_1: + symbol: gKartWario275TlutWheel1 + type: texture + offset: 0x9B61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_275_tlut_wheel_2: + symbol: gKartWario275TlutWheel2 + type: texture + offset: 0x9B69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_275_tlut_wheel_3: + symbol: gKartWario275TlutWheel3 + type: texture + offset: 0x9B71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_276_tlut_wheel_0: + symbol: gKartWario276TlutWheel0 + type: texture + offset: 0x9B79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_276_tlut_wheel_1: + symbol: gKartWario276TlutWheel1 + type: texture + offset: 0x9B81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_276_tlut_wheel_2: + symbol: gKartWario276TlutWheel2 + type: texture + offset: 0x9B89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_276_tlut_wheel_3: + symbol: gKartWario276TlutWheel3 + type: texture + offset: 0x9B91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_277_tlut_wheel_0: + symbol: gKartWario277TlutWheel0 + type: texture + offset: 0x9B99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_277_tlut_wheel_1: + symbol: gKartWario277TlutWheel1 + type: texture + offset: 0x9BA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_277_tlut_wheel_2: + symbol: gKartWario277TlutWheel2 + type: texture + offset: 0x9BA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_277_tlut_wheel_3: + symbol: gKartWario277TlutWheel3 + type: texture + offset: 0x9BB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_278_tlut_wheel_0: + symbol: gKartWario278TlutWheel0 + type: texture + offset: 0x9BB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_278_tlut_wheel_1: + symbol: gKartWario278TlutWheel1 + type: texture + offset: 0x9BC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_278_tlut_wheel_2: + symbol: gKartWario278TlutWheel2 + type: texture + offset: 0x9BC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_278_tlut_wheel_3: + symbol: gKartWario278TlutWheel3 + type: texture + offset: 0x9BD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_279_tlut_wheel_0: + symbol: gKartWario279TlutWheel0 + type: texture + offset: 0x9BD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_279_tlut_wheel_1: + symbol: gKartWario279TlutWheel1 + type: texture + offset: 0x9BE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_279_tlut_wheel_2: + symbol: gKartWario279TlutWheel2 + type: texture + offset: 0x9BE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_279_tlut_wheel_3: + symbol: gKartWario279TlutWheel3 + type: texture + offset: 0x9BF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_280_tlut_wheel_0: + symbol: gKartWario280TlutWheel0 + type: texture + offset: 0x9BF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_280_tlut_wheel_1: + symbol: gKartWario280TlutWheel1 + type: texture + offset: 0x9C01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_280_tlut_wheel_2: + symbol: gKartWario280TlutWheel2 + type: texture + offset: 0x9C09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_280_tlut_wheel_3: + symbol: gKartWario280TlutWheel3 + type: texture + offset: 0x9C11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_281_tlut_wheel_0: + symbol: gKartWario281TlutWheel0 + type: texture + offset: 0x9C19C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_281_tlut_wheel_1: + symbol: gKartWario281TlutWheel1 + type: texture + offset: 0x9C21C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_281_tlut_wheel_2: + symbol: gKartWario281TlutWheel2 + type: texture + offset: 0x9C29C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_281_tlut_wheel_3: + symbol: gKartWario281TlutWheel3 + type: texture + offset: 0x9C31C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_282_tlut_wheel_0: + symbol: gKartWario282TlutWheel0 + type: texture + offset: 0x9C39C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_282_tlut_wheel_1: + symbol: gKartWario282TlutWheel1 + type: texture + offset: 0x9C41C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_282_tlut_wheel_2: + symbol: gKartWario282TlutWheel2 + type: texture + offset: 0x9C49C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_282_tlut_wheel_3: + symbol: gKartWario282TlutWheel3 + type: texture + offset: 0x9C51C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_283_tlut_wheel_0: + symbol: gKartWario283TlutWheel0 + type: texture + offset: 0x9C59C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_283_tlut_wheel_1: + symbol: gKartWario283TlutWheel1 + type: texture + offset: 0x9C61C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_283_tlut_wheel_2: + symbol: gKartWario283TlutWheel2 + type: texture + offset: 0x9C69C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_283_tlut_wheel_3: + symbol: gKartWario283TlutWheel3 + type: texture + offset: 0x9C71C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_284_tlut_wheel_0: + symbol: gKartWario284TlutWheel0 + type: texture + offset: 0x9C79C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_284_tlut_wheel_1: + symbol: gKartWario284TlutWheel1 + type: texture + offset: 0x9C81C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_284_tlut_wheel_2: + symbol: gKartWario284TlutWheel2 + type: texture + offset: 0x9C89C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_284_tlut_wheel_3: + symbol: gKartWario284TlutWheel3 + type: texture + offset: 0x9C91C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_285_tlut_wheel_0: + symbol: gKartWario285TlutWheel0 + type: texture + offset: 0x9C99C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_285_tlut_wheel_1: + symbol: gKartWario285TlutWheel1 + type: texture + offset: 0x9CA1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_285_tlut_wheel_2: + symbol: gKartWario285TlutWheel2 + type: texture + offset: 0x9CA9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_285_tlut_wheel_3: + symbol: gKartWario285TlutWheel3 + type: texture + offset: 0x9CB1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_286_tlut_wheel_0: + symbol: gKartWario286TlutWheel0 + type: texture + offset: 0x9CB9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_286_tlut_wheel_1: + symbol: gKartWario286TlutWheel1 + type: texture + offset: 0x9CC1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_286_tlut_wheel_2: + symbol: gKartWario286TlutWheel2 + type: texture + offset: 0x9CC9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_286_tlut_wheel_3: + symbol: gKartWario286TlutWheel3 + type: texture + offset: 0x9CD1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_287_tlut_wheel_0: + symbol: gKartWario287TlutWheel0 + type: texture + offset: 0x9CD9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_287_tlut_wheel_1: + symbol: gKartWario287TlutWheel1 + type: texture + offset: 0x9CE1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_287_tlut_wheel_2: + symbol: gKartWario287TlutWheel2 + type: texture + offset: 0x9CE9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_287_tlut_wheel_3: + symbol: gKartWario287TlutWheel3 + type: texture + offset: 0x9CF1C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_288_tlut_wheel_0: + symbol: gKartWario288TlutWheel0 + type: texture + offset: 0x9CF9C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_288_tlut_wheel_1: + symbol: gKartWario288TlutWheel1 + type: texture + offset: 0x9D01C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_288_tlut_wheel_2: + symbol: gKartWario288TlutWheel2 + type: texture + offset: 0x9D09C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_288_tlut_wheel_3: + symbol: gKartWario288TlutWheel3 + type: texture + offset: 0x9D11C + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +wario_kart_palette: + symbol: gKartWarioPalette + type: texture + offset: 0x9D19C + ctype: u16 + width: 16 + height: 12 + format: RGBA16 diff --git a/yamls/us/textures/karts/yoshi_kart.yml b/yamls/us/textures/karts/yoshi_kart.yml new file mode 100644 index 000000000..6ac5e4cc6 --- /dev/null +++ b/yamls/us/textures/karts/yoshi_kart.yml @@ -0,0 +1,22341 @@ +:config: + segments: + - [0x0F, 0x272A20] + no_compression: true + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + tables: + yoshi_kart_wheels: + range: [0x731A8, 0x97328] + mode: APPEND +yoshi_kart_frame000_wheel0: + symbol: gKartYoshi000Wheel0 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame000_wheel1: + symbol: gKartYoshi000Wheel1 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_1 +yoshi_kart_frame000_wheel2: + symbol: gKartYoshi000Wheel2 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_2 +yoshi_kart_frame000_wheel3: + symbol: gKartYoshi000Wheel3 + type: texture + offset: 0x0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_3 +yoshi_kart_frame001_wheel0: + symbol: gKartYoshi001Wheel0 + type: texture + offset: 0x4D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_001_tlut_wheel_0 +yoshi_kart_frame001_wheel1: + symbol: gKartYoshi001Wheel1 + type: texture + offset: 0x4D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_001_tlut_wheel_1 +yoshi_kart_frame001_wheel2: + symbol: gKartYoshi001Wheel2 + type: texture + offset: 0x4D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_001_tlut_wheel_2 +yoshi_kart_frame001_wheel3: + symbol: gKartYoshi001Wheel3 + type: texture + offset: 0x4D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_001_tlut_wheel_3 +yoshi_kart_frame002_wheel0: + symbol: gKartYoshi002Wheel0 + type: texture + offset: 0x9C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_002_tlut_wheel_0 +yoshi_kart_frame002_wheel1: + symbol: gKartYoshi002Wheel1 + type: texture + offset: 0x9C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_002_tlut_wheel_1 +yoshi_kart_frame002_wheel2: + symbol: gKartYoshi002Wheel2 + type: texture + offset: 0x9C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_002_tlut_wheel_2 +yoshi_kart_frame002_wheel3: + symbol: gKartYoshi002Wheel3 + type: texture + offset: 0x9C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_002_tlut_wheel_3 +yoshi_kart_frame003_wheel0: + symbol: gKartYoshi003Wheel0 + type: texture + offset: 0xEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_003_tlut_wheel_0 +yoshi_kart_frame003_wheel1: + symbol: gKartYoshi003Wheel1 + type: texture + offset: 0xEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_003_tlut_wheel_1 +yoshi_kart_frame003_wheel2: + symbol: gKartYoshi003Wheel2 + type: texture + offset: 0xEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_003_tlut_wheel_2 +yoshi_kart_frame003_wheel3: + symbol: gKartYoshi003Wheel3 + type: texture + offset: 0xEB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_003_tlut_wheel_3 +yoshi_kart_frame004_wheel0: + symbol: gKartYoshi004Wheel0 + type: texture + offset: 0x13A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_004_tlut_wheel_0 +yoshi_kart_frame004_wheel1: + symbol: gKartYoshi004Wheel1 + type: texture + offset: 0x13A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_004_tlut_wheel_1 +yoshi_kart_frame004_wheel2: + symbol: gKartYoshi004Wheel2 + type: texture + offset: 0x13A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_004_tlut_wheel_2 +yoshi_kart_frame004_wheel3: + symbol: gKartYoshi004Wheel3 + type: texture + offset: 0x13A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_004_tlut_wheel_3 +yoshi_kart_frame005_wheel0: + symbol: gKartYoshi005Wheel0 + type: texture + offset: 0x18A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_005_tlut_wheel_0 +yoshi_kart_frame005_wheel1: + symbol: gKartYoshi005Wheel1 + type: texture + offset: 0x18A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_005_tlut_wheel_1 +yoshi_kart_frame005_wheel2: + symbol: gKartYoshi005Wheel2 + type: texture + offset: 0x18A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_005_tlut_wheel_2 +yoshi_kart_frame005_wheel3: + symbol: gKartYoshi005Wheel3 + type: texture + offset: 0x18A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_005_tlut_wheel_3 +yoshi_kart_frame006_wheel0: + symbol: gKartYoshi006Wheel0 + type: texture + offset: 0x1DB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_006_tlut_wheel_0 +yoshi_kart_frame006_wheel1: + symbol: gKartYoshi006Wheel1 + type: texture + offset: 0x1DB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_006_tlut_wheel_1 +yoshi_kart_frame006_wheel2: + symbol: gKartYoshi006Wheel2 + type: texture + offset: 0x1DB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_006_tlut_wheel_2 +yoshi_kart_frame006_wheel3: + symbol: gKartYoshi006Wheel3 + type: texture + offset: 0x1DB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_006_tlut_wheel_3 +yoshi_kart_frame007_wheel0: + symbol: gKartYoshi007Wheel0 + type: texture + offset: 0x22DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_007_tlut_wheel_0 +yoshi_kart_frame007_wheel1: + symbol: gKartYoshi007Wheel1 + type: texture + offset: 0x22DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_007_tlut_wheel_1 +yoshi_kart_frame007_wheel2: + symbol: gKartYoshi007Wheel2 + type: texture + offset: 0x22DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_007_tlut_wheel_2 +yoshi_kart_frame007_wheel3: + symbol: gKartYoshi007Wheel3 + type: texture + offset: 0x22DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_007_tlut_wheel_3 +yoshi_kart_frame008_wheel0: + symbol: gKartYoshi008Wheel0 + type: texture + offset: 0x2814 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_008_tlut_wheel_0 +yoshi_kart_frame008_wheel1: + symbol: gKartYoshi008Wheel1 + type: texture + offset: 0x2814 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_008_tlut_wheel_1 +yoshi_kart_frame008_wheel2: + symbol: gKartYoshi008Wheel2 + type: texture + offset: 0x2814 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_008_tlut_wheel_2 +yoshi_kart_frame008_wheel3: + symbol: gKartYoshi008Wheel3 + type: texture + offset: 0x2814 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_008_tlut_wheel_3 +yoshi_kart_frame009_wheel0: + symbol: gKartYoshi009Wheel0 + type: texture + offset: 0x2D5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_009_tlut_wheel_0 +yoshi_kart_frame009_wheel1: + symbol: gKartYoshi009Wheel1 + type: texture + offset: 0x2D5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_009_tlut_wheel_1 +yoshi_kart_frame009_wheel2: + symbol: gKartYoshi009Wheel2 + type: texture + offset: 0x2D5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_009_tlut_wheel_2 +yoshi_kart_frame009_wheel3: + symbol: gKartYoshi009Wheel3 + type: texture + offset: 0x2D5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_009_tlut_wheel_3 +yoshi_kart_frame010_wheel0: + symbol: gKartYoshi010Wheel0 + type: texture + offset: 0x32C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_010_tlut_wheel_0 +yoshi_kart_frame010_wheel1: + symbol: gKartYoshi010Wheel1 + type: texture + offset: 0x32C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_010_tlut_wheel_1 +yoshi_kart_frame010_wheel2: + symbol: gKartYoshi010Wheel2 + type: texture + offset: 0x32C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_010_tlut_wheel_2 +yoshi_kart_frame010_wheel3: + symbol: gKartYoshi010Wheel3 + type: texture + offset: 0x32C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_010_tlut_wheel_3 +yoshi_kart_frame011_wheel0: + symbol: gKartYoshi011Wheel0 + type: texture + offset: 0x3838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_011_tlut_wheel_0 +yoshi_kart_frame011_wheel1: + symbol: gKartYoshi011Wheel1 + type: texture + offset: 0x3838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_011_tlut_wheel_1 +yoshi_kart_frame011_wheel2: + symbol: gKartYoshi011Wheel2 + type: texture + offset: 0x3838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_011_tlut_wheel_2 +yoshi_kart_frame011_wheel3: + symbol: gKartYoshi011Wheel3 + type: texture + offset: 0x3838 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_011_tlut_wheel_3 +yoshi_kart_frame012_wheel0: + symbol: gKartYoshi012Wheel0 + type: texture + offset: 0x3DBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_012_tlut_wheel_0 +yoshi_kart_frame012_wheel1: + symbol: gKartYoshi012Wheel1 + type: texture + offset: 0x3DBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_012_tlut_wheel_1 +yoshi_kart_frame012_wheel2: + symbol: gKartYoshi012Wheel2 + type: texture + offset: 0x3DBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_012_tlut_wheel_2 +yoshi_kart_frame012_wheel3: + symbol: gKartYoshi012Wheel3 + type: texture + offset: 0x3DBC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_012_tlut_wheel_3 +yoshi_kart_frame013_wheel0: + symbol: gKartYoshi013Wheel0 + type: texture + offset: 0x432C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_013_tlut_wheel_0 +yoshi_kart_frame013_wheel1: + symbol: gKartYoshi013Wheel1 + type: texture + offset: 0x432C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_013_tlut_wheel_1 +yoshi_kart_frame013_wheel2: + symbol: gKartYoshi013Wheel2 + type: texture + offset: 0x432C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_013_tlut_wheel_2 +yoshi_kart_frame013_wheel3: + symbol: gKartYoshi013Wheel3 + type: texture + offset: 0x432C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_013_tlut_wheel_3 +yoshi_kart_frame014_wheel0: + symbol: gKartYoshi014Wheel0 + type: texture + offset: 0x48C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_014_tlut_wheel_0 +yoshi_kart_frame014_wheel1: + symbol: gKartYoshi014Wheel1 + type: texture + offset: 0x48C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_014_tlut_wheel_1 +yoshi_kart_frame014_wheel2: + symbol: gKartYoshi014Wheel2 + type: texture + offset: 0x48C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_014_tlut_wheel_2 +yoshi_kart_frame014_wheel3: + symbol: gKartYoshi014Wheel3 + type: texture + offset: 0x48C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_014_tlut_wheel_3 +yoshi_kart_frame015_wheel0: + symbol: gKartYoshi015Wheel0 + type: texture + offset: 0x4E60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_015_tlut_wheel_0 +yoshi_kart_frame015_wheel1: + symbol: gKartYoshi015Wheel1 + type: texture + offset: 0x4E60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_015_tlut_wheel_1 +yoshi_kart_frame015_wheel2: + symbol: gKartYoshi015Wheel2 + type: texture + offset: 0x4E60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_015_tlut_wheel_2 +yoshi_kart_frame015_wheel3: + symbol: gKartYoshi015Wheel3 + type: texture + offset: 0x4E60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_015_tlut_wheel_3 +yoshi_kart_frame016_wheel0: + symbol: gKartYoshi016Wheel0 + type: texture + offset: 0x5418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_016_tlut_wheel_0 +yoshi_kart_frame016_wheel1: + symbol: gKartYoshi016Wheel1 + type: texture + offset: 0x5418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_016_tlut_wheel_1 +yoshi_kart_frame016_wheel2: + symbol: gKartYoshi016Wheel2 + type: texture + offset: 0x5418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_016_tlut_wheel_2 +yoshi_kart_frame016_wheel3: + symbol: gKartYoshi016Wheel3 + type: texture + offset: 0x5418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_016_tlut_wheel_3 +yoshi_kart_frame017_wheel0: + symbol: gKartYoshi017Wheel0 + type: texture + offset: 0x5A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_017_tlut_wheel_0 +yoshi_kart_frame017_wheel1: + symbol: gKartYoshi017Wheel1 + type: texture + offset: 0x5A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_017_tlut_wheel_1 +yoshi_kart_frame017_wheel2: + symbol: gKartYoshi017Wheel2 + type: texture + offset: 0x5A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_017_tlut_wheel_2 +yoshi_kart_frame017_wheel3: + symbol: gKartYoshi017Wheel3 + type: texture + offset: 0x5A04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_017_tlut_wheel_3 +yoshi_kart_frame018_wheel0: + symbol: gKartYoshi018Wheel0 + type: texture + offset: 0x5FFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_018_tlut_wheel_0 +yoshi_kart_frame018_wheel1: + symbol: gKartYoshi018Wheel1 + type: texture + offset: 0x5FFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_018_tlut_wheel_1 +yoshi_kart_frame018_wheel2: + symbol: gKartYoshi018Wheel2 + type: texture + offset: 0x5FFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_018_tlut_wheel_2 +yoshi_kart_frame018_wheel3: + symbol: gKartYoshi018Wheel3 + type: texture + offset: 0x5FFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_018_tlut_wheel_3 +yoshi_kart_frame019_wheel0: + symbol: gKartYoshi019Wheel0 + type: texture + offset: 0x6600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_019_tlut_wheel_0 +yoshi_kart_frame019_wheel1: + symbol: gKartYoshi019Wheel1 + type: texture + offset: 0x6600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_019_tlut_wheel_1 +yoshi_kart_frame019_wheel2: + symbol: gKartYoshi019Wheel2 + type: texture + offset: 0x6600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_019_tlut_wheel_2 +yoshi_kart_frame019_wheel3: + symbol: gKartYoshi019Wheel3 + type: texture + offset: 0x6600 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_019_tlut_wheel_3 +yoshi_kart_frame020_wheel0: + symbol: gKartYoshi020Wheel0 + type: texture + offset: 0x6C14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_020_tlut_wheel_0 +yoshi_kart_frame020_wheel1: + symbol: gKartYoshi020Wheel1 + type: texture + offset: 0x6C14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_020_tlut_wheel_1 +yoshi_kart_frame020_wheel2: + symbol: gKartYoshi020Wheel2 + type: texture + offset: 0x6C14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_020_tlut_wheel_2 +yoshi_kart_frame020_wheel3: + symbol: gKartYoshi020Wheel3 + type: texture + offset: 0x6C14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_020_tlut_wheel_3 +yoshi_kart_frame021_wheel0: + symbol: gKartYoshi021Wheel0 + type: texture + offset: 0x7238 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_021_tlut_wheel_0 +yoshi_kart_frame021_wheel1: + symbol: gKartYoshi021Wheel1 + type: texture + offset: 0x7238 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_021_tlut_wheel_1 +yoshi_kart_frame021_wheel2: + symbol: gKartYoshi021Wheel2 + type: texture + offset: 0x7238 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_021_tlut_wheel_2 +yoshi_kart_frame021_wheel3: + symbol: gKartYoshi021Wheel3 + type: texture + offset: 0x7238 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_021_tlut_wheel_3 +yoshi_kart_frame022_wheel0: + symbol: gKartYoshi022Wheel0 + type: texture + offset: 0x7718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_022_tlut_wheel_0 +yoshi_kart_frame022_wheel1: + symbol: gKartYoshi022Wheel1 + type: texture + offset: 0x7718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_022_tlut_wheel_1 +yoshi_kart_frame022_wheel2: + symbol: gKartYoshi022Wheel2 + type: texture + offset: 0x7718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_022_tlut_wheel_2 +yoshi_kart_frame022_wheel3: + symbol: gKartYoshi022Wheel3 + type: texture + offset: 0x7718 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_022_tlut_wheel_3 +yoshi_kart_frame023_wheel0: + symbol: gKartYoshi023Wheel0 + type: texture + offset: 0x7BF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_023_tlut_wheel_0 +yoshi_kart_frame023_wheel1: + symbol: gKartYoshi023Wheel1 + type: texture + offset: 0x7BF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_023_tlut_wheel_1 +yoshi_kart_frame023_wheel2: + symbol: gKartYoshi023Wheel2 + type: texture + offset: 0x7BF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_023_tlut_wheel_2 +yoshi_kart_frame023_wheel3: + symbol: gKartYoshi023Wheel3 + type: texture + offset: 0x7BF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_023_tlut_wheel_3 +yoshi_kart_frame024_wheel0: + symbol: gKartYoshi024Wheel0 + type: texture + offset: 0x80D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_024_tlut_wheel_0 +yoshi_kart_frame024_wheel1: + symbol: gKartYoshi024Wheel1 + type: texture + offset: 0x80D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_024_tlut_wheel_1 +yoshi_kart_frame024_wheel2: + symbol: gKartYoshi024Wheel2 + type: texture + offset: 0x80D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_024_tlut_wheel_2 +yoshi_kart_frame024_wheel3: + symbol: gKartYoshi024Wheel3 + type: texture + offset: 0x80D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_024_tlut_wheel_3 +yoshi_kart_frame025_wheel0: + symbol: gKartYoshi025Wheel0 + type: texture + offset: 0x85E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_025_tlut_wheel_0 +yoshi_kart_frame025_wheel1: + symbol: gKartYoshi025Wheel1 + type: texture + offset: 0x85E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_025_tlut_wheel_1 +yoshi_kart_frame025_wheel2: + symbol: gKartYoshi025Wheel2 + type: texture + offset: 0x85E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_025_tlut_wheel_2 +yoshi_kart_frame025_wheel3: + symbol: gKartYoshi025Wheel3 + type: texture + offset: 0x85E8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_025_tlut_wheel_3 +yoshi_kart_frame026_wheel0: + symbol: gKartYoshi026Wheel0 + type: texture + offset: 0x8B08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_026_tlut_wheel_0 +yoshi_kart_frame026_wheel1: + symbol: gKartYoshi026Wheel1 + type: texture + offset: 0x8B08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_026_tlut_wheel_1 +yoshi_kart_frame026_wheel2: + symbol: gKartYoshi026Wheel2 + type: texture + offset: 0x8B08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_026_tlut_wheel_2 +yoshi_kart_frame026_wheel3: + symbol: gKartYoshi026Wheel3 + type: texture + offset: 0x8B08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_026_tlut_wheel_3 +yoshi_kart_frame027_wheel0: + symbol: gKartYoshi027Wheel0 + type: texture + offset: 0x901C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_027_tlut_wheel_0 +yoshi_kart_frame027_wheel1: + symbol: gKartYoshi027Wheel1 + type: texture + offset: 0x901C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_027_tlut_wheel_1 +yoshi_kart_frame027_wheel2: + symbol: gKartYoshi027Wheel2 + type: texture + offset: 0x901C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_027_tlut_wheel_2 +yoshi_kart_frame027_wheel3: + symbol: gKartYoshi027Wheel3 + type: texture + offset: 0x901C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_027_tlut_wheel_3 +yoshi_kart_frame028_wheel0: + symbol: gKartYoshi028Wheel0 + type: texture + offset: 0x955C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_028_tlut_wheel_0 +yoshi_kart_frame028_wheel1: + symbol: gKartYoshi028Wheel1 + type: texture + offset: 0x955C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_028_tlut_wheel_1 +yoshi_kart_frame028_wheel2: + symbol: gKartYoshi028Wheel2 + type: texture + offset: 0x955C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_028_tlut_wheel_2 +yoshi_kart_frame028_wheel3: + symbol: gKartYoshi028Wheel3 + type: texture + offset: 0x955C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_028_tlut_wheel_3 +yoshi_kart_frame029_wheel0: + symbol: gKartYoshi029Wheel0 + type: texture + offset: 0x9AA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_029_tlut_wheel_0 +yoshi_kart_frame029_wheel1: + symbol: gKartYoshi029Wheel1 + type: texture + offset: 0x9AA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_029_tlut_wheel_1 +yoshi_kart_frame029_wheel2: + symbol: gKartYoshi029Wheel2 + type: texture + offset: 0x9AA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_029_tlut_wheel_2 +yoshi_kart_frame029_wheel3: + symbol: gKartYoshi029Wheel3 + type: texture + offset: 0x9AA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_029_tlut_wheel_3 +yoshi_kart_frame030_wheel0: + symbol: gKartYoshi030Wheel0 + type: texture + offset: 0xA000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_030_tlut_wheel_0 +yoshi_kart_frame030_wheel1: + symbol: gKartYoshi030Wheel1 + type: texture + offset: 0xA000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_030_tlut_wheel_1 +yoshi_kart_frame030_wheel2: + symbol: gKartYoshi030Wheel2 + type: texture + offset: 0xA000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_030_tlut_wheel_2 +yoshi_kart_frame030_wheel3: + symbol: gKartYoshi030Wheel3 + type: texture + offset: 0xA000 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_030_tlut_wheel_3 +yoshi_kart_frame031_wheel0: + symbol: gKartYoshi031Wheel0 + type: texture + offset: 0xA57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_031_tlut_wheel_0 +yoshi_kart_frame031_wheel1: + symbol: gKartYoshi031Wheel1 + type: texture + offset: 0xA57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_031_tlut_wheel_1 +yoshi_kart_frame031_wheel2: + symbol: gKartYoshi031Wheel2 + type: texture + offset: 0xA57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_031_tlut_wheel_2 +yoshi_kart_frame031_wheel3: + symbol: gKartYoshi031Wheel3 + type: texture + offset: 0xA57C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_031_tlut_wheel_3 +yoshi_kart_frame032_wheel0: + symbol: gKartYoshi032Wheel0 + type: texture + offset: 0xAB0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_032_tlut_wheel_0 +yoshi_kart_frame032_wheel1: + symbol: gKartYoshi032Wheel1 + type: texture + offset: 0xAB0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_032_tlut_wheel_1 +yoshi_kart_frame032_wheel2: + symbol: gKartYoshi032Wheel2 + type: texture + offset: 0xAB0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_032_tlut_wheel_2 +yoshi_kart_frame032_wheel3: + symbol: gKartYoshi032Wheel3 + type: texture + offset: 0xAB0C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_032_tlut_wheel_3 +yoshi_kart_frame033_wheel0: + symbol: gKartYoshi033Wheel0 + type: texture + offset: 0xB088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_033_tlut_wheel_0 +yoshi_kart_frame033_wheel1: + symbol: gKartYoshi033Wheel1 + type: texture + offset: 0xB088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_033_tlut_wheel_1 +yoshi_kart_frame033_wheel2: + symbol: gKartYoshi033Wheel2 + type: texture + offset: 0xB088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_033_tlut_wheel_2 +yoshi_kart_frame033_wheel3: + symbol: gKartYoshi033Wheel3 + type: texture + offset: 0xB088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_033_tlut_wheel_3 +yoshi_kart_frame034_wheel0: + symbol: gKartYoshi034Wheel0 + type: texture + offset: 0xB620 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_034_tlut_wheel_0 +yoshi_kart_frame034_wheel1: + symbol: gKartYoshi034Wheel1 + type: texture + offset: 0xB620 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_034_tlut_wheel_1 +yoshi_kart_frame034_wheel2: + symbol: gKartYoshi034Wheel2 + type: texture + offset: 0xB620 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_034_tlut_wheel_2 +yoshi_kart_frame034_wheel3: + symbol: gKartYoshi034Wheel3 + type: texture + offset: 0xB620 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_034_tlut_wheel_3 +yoshi_kart_frame035_wheel0: + symbol: gKartYoshi035Wheel0 + type: texture + offset: 0xBBC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_035_tlut_wheel_0 +yoshi_kart_frame035_wheel1: + symbol: gKartYoshi035Wheel1 + type: texture + offset: 0xBBC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_035_tlut_wheel_1 +yoshi_kart_frame035_wheel2: + symbol: gKartYoshi035Wheel2 + type: texture + offset: 0xBBC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_035_tlut_wheel_2 +yoshi_kart_frame035_wheel3: + symbol: gKartYoshi035Wheel3 + type: texture + offset: 0xBBC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_035_tlut_wheel_3 +yoshi_kart_frame036_wheel0: + symbol: gKartYoshi036Wheel0 + type: texture + offset: 0xC178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_036_tlut_wheel_0 +yoshi_kart_frame036_wheel1: + symbol: gKartYoshi036Wheel1 + type: texture + offset: 0xC178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_036_tlut_wheel_1 +yoshi_kart_frame036_wheel2: + symbol: gKartYoshi036Wheel2 + type: texture + offset: 0xC178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_036_tlut_wheel_2 +yoshi_kart_frame036_wheel3: + symbol: gKartYoshi036Wheel3 + type: texture + offset: 0xC178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_036_tlut_wheel_3 +yoshi_kart_frame037_wheel0: + symbol: gKartYoshi037Wheel0 + type: texture + offset: 0xC74C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_037_tlut_wheel_0 +yoshi_kart_frame037_wheel1: + symbol: gKartYoshi037Wheel1 + type: texture + offset: 0xC74C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_037_tlut_wheel_1 +yoshi_kart_frame037_wheel2: + symbol: gKartYoshi037Wheel2 + type: texture + offset: 0xC74C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_037_tlut_wheel_2 +yoshi_kart_frame037_wheel3: + symbol: gKartYoshi037Wheel3 + type: texture + offset: 0xC74C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_037_tlut_wheel_3 +yoshi_kart_frame038_wheel0: + symbol: gKartYoshi038Wheel0 + type: texture + offset: 0xCD2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_038_tlut_wheel_0 +yoshi_kart_frame038_wheel1: + symbol: gKartYoshi038Wheel1 + type: texture + offset: 0xCD2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_038_tlut_wheel_1 +yoshi_kart_frame038_wheel2: + symbol: gKartYoshi038Wheel2 + type: texture + offset: 0xCD2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_038_tlut_wheel_2 +yoshi_kart_frame038_wheel3: + symbol: gKartYoshi038Wheel3 + type: texture + offset: 0xCD2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_038_tlut_wheel_3 +yoshi_kart_frame039_wheel0: + symbol: gKartYoshi039Wheel0 + type: texture + offset: 0xD328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_039_tlut_wheel_0 +yoshi_kart_frame039_wheel1: + symbol: gKartYoshi039Wheel1 + type: texture + offset: 0xD328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_039_tlut_wheel_1 +yoshi_kart_frame039_wheel2: + symbol: gKartYoshi039Wheel2 + type: texture + offset: 0xD328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_039_tlut_wheel_2 +yoshi_kart_frame039_wheel3: + symbol: gKartYoshi039Wheel3 + type: texture + offset: 0xD328 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_039_tlut_wheel_3 +yoshi_kart_frame040_wheel0: + symbol: gKartYoshi040Wheel0 + type: texture + offset: 0xD934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_040_tlut_wheel_0 +yoshi_kart_frame040_wheel1: + symbol: gKartYoshi040Wheel1 + type: texture + offset: 0xD934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_040_tlut_wheel_1 +yoshi_kart_frame040_wheel2: + symbol: gKartYoshi040Wheel2 + type: texture + offset: 0xD934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_040_tlut_wheel_2 +yoshi_kart_frame040_wheel3: + symbol: gKartYoshi040Wheel3 + type: texture + offset: 0xD934 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_040_tlut_wheel_3 +yoshi_kart_frame041_wheel0: + symbol: gKartYoshi041Wheel0 + type: texture + offset: 0xDF54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_041_tlut_wheel_0 +yoshi_kart_frame041_wheel1: + symbol: gKartYoshi041Wheel1 + type: texture + offset: 0xDF54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_041_tlut_wheel_1 +yoshi_kart_frame041_wheel2: + symbol: gKartYoshi041Wheel2 + type: texture + offset: 0xDF54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_041_tlut_wheel_2 +yoshi_kart_frame041_wheel3: + symbol: gKartYoshi041Wheel3 + type: texture + offset: 0xDF54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_041_tlut_wheel_3 +yoshi_kart_frame042_wheel0: + symbol: gKartYoshi042Wheel0 + type: texture + offset: 0xE568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_042_tlut_wheel_0 +yoshi_kart_frame042_wheel1: + symbol: gKartYoshi042Wheel1 + type: texture + offset: 0xE568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_042_tlut_wheel_1 +yoshi_kart_frame042_wheel2: + symbol: gKartYoshi042Wheel2 + type: texture + offset: 0xE568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_042_tlut_wheel_2 +yoshi_kart_frame042_wheel3: + symbol: gKartYoshi042Wheel3 + type: texture + offset: 0xE568 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_042_tlut_wheel_3 +yoshi_kart_frame043_wheel0: + symbol: gKartYoshi043Wheel0 + type: texture + offset: 0xEA4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_043_tlut_wheel_0 +yoshi_kart_frame043_wheel1: + symbol: gKartYoshi043Wheel1 + type: texture + offset: 0xEA4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_043_tlut_wheel_1 +yoshi_kart_frame043_wheel2: + symbol: gKartYoshi043Wheel2 + type: texture + offset: 0xEA4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_043_tlut_wheel_2 +yoshi_kart_frame043_wheel3: + symbol: gKartYoshi043Wheel3 + type: texture + offset: 0xEA4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_043_tlut_wheel_3 +yoshi_kart_frame044_wheel0: + symbol: gKartYoshi044Wheel0 + type: texture + offset: 0xEF38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_044_tlut_wheel_0 +yoshi_kart_frame044_wheel1: + symbol: gKartYoshi044Wheel1 + type: texture + offset: 0xEF38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_044_tlut_wheel_1 +yoshi_kart_frame044_wheel2: + symbol: gKartYoshi044Wheel2 + type: texture + offset: 0xEF38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_044_tlut_wheel_2 +yoshi_kart_frame044_wheel3: + symbol: gKartYoshi044Wheel3 + type: texture + offset: 0xEF38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_044_tlut_wheel_3 +yoshi_kart_frame045_wheel0: + symbol: gKartYoshi045Wheel0 + type: texture + offset: 0xF454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_045_tlut_wheel_0 +yoshi_kart_frame045_wheel1: + symbol: gKartYoshi045Wheel1 + type: texture + offset: 0xF454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_045_tlut_wheel_1 +yoshi_kart_frame045_wheel2: + symbol: gKartYoshi045Wheel2 + type: texture + offset: 0xF454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_045_tlut_wheel_2 +yoshi_kart_frame045_wheel3: + symbol: gKartYoshi045Wheel3 + type: texture + offset: 0xF454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_045_tlut_wheel_3 +yoshi_kart_frame046_wheel0: + symbol: gKartYoshi046Wheel0 + type: texture + offset: 0xF968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_046_tlut_wheel_0 +yoshi_kart_frame046_wheel1: + symbol: gKartYoshi046Wheel1 + type: texture + offset: 0xF968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_046_tlut_wheel_1 +yoshi_kart_frame046_wheel2: + symbol: gKartYoshi046Wheel2 + type: texture + offset: 0xF968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_046_tlut_wheel_2 +yoshi_kart_frame046_wheel3: + symbol: gKartYoshi046Wheel3 + type: texture + offset: 0xF968 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_046_tlut_wheel_3 +yoshi_kart_frame047_wheel0: + symbol: gKartYoshi047Wheel0 + type: texture + offset: 0xFEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_047_tlut_wheel_0 +yoshi_kart_frame047_wheel1: + symbol: gKartYoshi047Wheel1 + type: texture + offset: 0xFEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_047_tlut_wheel_1 +yoshi_kart_frame047_wheel2: + symbol: gKartYoshi047Wheel2 + type: texture + offset: 0xFEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_047_tlut_wheel_2 +yoshi_kart_frame047_wheel3: + symbol: gKartYoshi047Wheel3 + type: texture + offset: 0xFEA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_047_tlut_wheel_3 +yoshi_kart_frame048_wheel0: + symbol: gKartYoshi048Wheel0 + type: texture + offset: 0x103D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_048_tlut_wheel_0 +yoshi_kart_frame048_wheel1: + symbol: gKartYoshi048Wheel1 + type: texture + offset: 0x103D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_048_tlut_wheel_1 +yoshi_kart_frame048_wheel2: + symbol: gKartYoshi048Wheel2 + type: texture + offset: 0x103D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_048_tlut_wheel_2 +yoshi_kart_frame048_wheel3: + symbol: gKartYoshi048Wheel3 + type: texture + offset: 0x103D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_048_tlut_wheel_3 +yoshi_kart_frame049_wheel0: + symbol: gKartYoshi049Wheel0 + type: texture + offset: 0x1092C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_049_tlut_wheel_0 +yoshi_kart_frame049_wheel1: + symbol: gKartYoshi049Wheel1 + type: texture + offset: 0x1092C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_049_tlut_wheel_1 +yoshi_kart_frame049_wheel2: + symbol: gKartYoshi049Wheel2 + type: texture + offset: 0x1092C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_049_tlut_wheel_2 +yoshi_kart_frame049_wheel3: + symbol: gKartYoshi049Wheel3 + type: texture + offset: 0x1092C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_049_tlut_wheel_3 +yoshi_kart_frame050_wheel0: + symbol: gKartYoshi050Wheel0 + type: texture + offset: 0x10E94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_050_tlut_wheel_0 +yoshi_kart_frame050_wheel1: + symbol: gKartYoshi050Wheel1 + type: texture + offset: 0x10E94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_050_tlut_wheel_1 +yoshi_kart_frame050_wheel2: + symbol: gKartYoshi050Wheel2 + type: texture + offset: 0x10E94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_050_tlut_wheel_2 +yoshi_kart_frame050_wheel3: + symbol: gKartYoshi050Wheel3 + type: texture + offset: 0x10E94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_050_tlut_wheel_3 +yoshi_kart_frame051_wheel0: + symbol: gKartYoshi051Wheel0 + type: texture + offset: 0x11408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_051_tlut_wheel_0 +yoshi_kart_frame051_wheel1: + symbol: gKartYoshi051Wheel1 + type: texture + offset: 0x11408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_051_tlut_wheel_1 +yoshi_kart_frame051_wheel2: + symbol: gKartYoshi051Wheel2 + type: texture + offset: 0x11408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_051_tlut_wheel_2 +yoshi_kart_frame051_wheel3: + symbol: gKartYoshi051Wheel3 + type: texture + offset: 0x11408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_051_tlut_wheel_3 +yoshi_kart_frame052_wheel0: + symbol: gKartYoshi052Wheel0 + type: texture + offset: 0x119A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_052_tlut_wheel_0 +yoshi_kart_frame052_wheel1: + symbol: gKartYoshi052Wheel1 + type: texture + offset: 0x119A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_052_tlut_wheel_1 +yoshi_kart_frame052_wheel2: + symbol: gKartYoshi052Wheel2 + type: texture + offset: 0x119A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_052_tlut_wheel_2 +yoshi_kart_frame052_wheel3: + symbol: gKartYoshi052Wheel3 + type: texture + offset: 0x119A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_052_tlut_wheel_3 +yoshi_kart_frame053_wheel0: + symbol: gKartYoshi053Wheel0 + type: texture + offset: 0x11F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_053_tlut_wheel_0 +yoshi_kart_frame053_wheel1: + symbol: gKartYoshi053Wheel1 + type: texture + offset: 0x11F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_053_tlut_wheel_1 +yoshi_kart_frame053_wheel2: + symbol: gKartYoshi053Wheel2 + type: texture + offset: 0x11F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_053_tlut_wheel_2 +yoshi_kart_frame053_wheel3: + symbol: gKartYoshi053Wheel3 + type: texture + offset: 0x11F38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_053_tlut_wheel_3 +yoshi_kart_frame054_wheel0: + symbol: gKartYoshi054Wheel0 + type: texture + offset: 0x124D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_054_tlut_wheel_0 +yoshi_kart_frame054_wheel1: + symbol: gKartYoshi054Wheel1 + type: texture + offset: 0x124D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_054_tlut_wheel_1 +yoshi_kart_frame054_wheel2: + symbol: gKartYoshi054Wheel2 + type: texture + offset: 0x124D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_054_tlut_wheel_2 +yoshi_kart_frame054_wheel3: + symbol: gKartYoshi054Wheel3 + type: texture + offset: 0x124D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_054_tlut_wheel_3 +yoshi_kart_frame055_wheel0: + symbol: gKartYoshi055Wheel0 + type: texture + offset: 0x12A6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_055_tlut_wheel_0 +yoshi_kart_frame055_wheel1: + symbol: gKartYoshi055Wheel1 + type: texture + offset: 0x12A6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_055_tlut_wheel_1 +yoshi_kart_frame055_wheel2: + symbol: gKartYoshi055Wheel2 + type: texture + offset: 0x12A6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_055_tlut_wheel_2 +yoshi_kart_frame055_wheel3: + symbol: gKartYoshi055Wheel3 + type: texture + offset: 0x12A6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_055_tlut_wheel_3 +yoshi_kart_frame056_wheel0: + symbol: gKartYoshi056Wheel0 + type: texture + offset: 0x13010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_056_tlut_wheel_0 +yoshi_kart_frame056_wheel1: + symbol: gKartYoshi056Wheel1 + type: texture + offset: 0x13010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_056_tlut_wheel_1 +yoshi_kart_frame056_wheel2: + symbol: gKartYoshi056Wheel2 + type: texture + offset: 0x13010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_056_tlut_wheel_2 +yoshi_kart_frame056_wheel3: + symbol: gKartYoshi056Wheel3 + type: texture + offset: 0x13010 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_056_tlut_wheel_3 +yoshi_kart_frame057_wheel0: + symbol: gKartYoshi057Wheel0 + type: texture + offset: 0x135C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_057_tlut_wheel_0 +yoshi_kart_frame057_wheel1: + symbol: gKartYoshi057Wheel1 + type: texture + offset: 0x135C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_057_tlut_wheel_1 +yoshi_kart_frame057_wheel2: + symbol: gKartYoshi057Wheel2 + type: texture + offset: 0x135C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_057_tlut_wheel_2 +yoshi_kart_frame057_wheel3: + symbol: gKartYoshi057Wheel3 + type: texture + offset: 0x135C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_057_tlut_wheel_3 +yoshi_kart_frame058_wheel0: + symbol: gKartYoshi058Wheel0 + type: texture + offset: 0x13B90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_058_tlut_wheel_0 +yoshi_kart_frame058_wheel1: + symbol: gKartYoshi058Wheel1 + type: texture + offset: 0x13B90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_058_tlut_wheel_1 +yoshi_kart_frame058_wheel2: + symbol: gKartYoshi058Wheel2 + type: texture + offset: 0x13B90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_058_tlut_wheel_2 +yoshi_kart_frame058_wheel3: + symbol: gKartYoshi058Wheel3 + type: texture + offset: 0x13B90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_058_tlut_wheel_3 +yoshi_kart_frame059_wheel0: + symbol: gKartYoshi059Wheel0 + type: texture + offset: 0x14178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_059_tlut_wheel_0 +yoshi_kart_frame059_wheel1: + symbol: gKartYoshi059Wheel1 + type: texture + offset: 0x14178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_059_tlut_wheel_1 +yoshi_kart_frame059_wheel2: + symbol: gKartYoshi059Wheel2 + type: texture + offset: 0x14178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_059_tlut_wheel_2 +yoshi_kart_frame059_wheel3: + symbol: gKartYoshi059Wheel3 + type: texture + offset: 0x14178 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_059_tlut_wheel_3 +yoshi_kart_frame060_wheel0: + symbol: gKartYoshi060Wheel0 + type: texture + offset: 0x14778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_060_tlut_wheel_0 +yoshi_kart_frame060_wheel1: + symbol: gKartYoshi060Wheel1 + type: texture + offset: 0x14778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_060_tlut_wheel_1 +yoshi_kart_frame060_wheel2: + symbol: gKartYoshi060Wheel2 + type: texture + offset: 0x14778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_060_tlut_wheel_2 +yoshi_kart_frame060_wheel3: + symbol: gKartYoshi060Wheel3 + type: texture + offset: 0x14778 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_060_tlut_wheel_3 +yoshi_kart_frame061_wheel0: + symbol: gKartYoshi061Wheel0 + type: texture + offset: 0x14D9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_061_tlut_wheel_0 +yoshi_kart_frame061_wheel1: + symbol: gKartYoshi061Wheel1 + type: texture + offset: 0x14D9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_061_tlut_wheel_1 +yoshi_kart_frame061_wheel2: + symbol: gKartYoshi061Wheel2 + type: texture + offset: 0x14D9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_061_tlut_wheel_2 +yoshi_kart_frame061_wheel3: + symbol: gKartYoshi061Wheel3 + type: texture + offset: 0x14D9C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_061_tlut_wheel_3 +yoshi_kart_frame062_wheel0: + symbol: gKartYoshi062Wheel0 + type: texture + offset: 0x153DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_062_tlut_wheel_0 +yoshi_kart_frame062_wheel1: + symbol: gKartYoshi062Wheel1 + type: texture + offset: 0x153DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_062_tlut_wheel_1 +yoshi_kart_frame062_wheel2: + symbol: gKartYoshi062Wheel2 + type: texture + offset: 0x153DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_062_tlut_wheel_2 +yoshi_kart_frame062_wheel3: + symbol: gKartYoshi062Wheel3 + type: texture + offset: 0x153DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_062_tlut_wheel_3 +yoshi_kart_frame063_wheel0: + symbol: gKartYoshi063Wheel0 + type: texture + offset: 0x15A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_063_tlut_wheel_0 +yoshi_kart_frame063_wheel1: + symbol: gKartYoshi063Wheel1 + type: texture + offset: 0x15A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_063_tlut_wheel_1 +yoshi_kart_frame063_wheel2: + symbol: gKartYoshi063Wheel2 + type: texture + offset: 0x15A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_063_tlut_wheel_2 +yoshi_kart_frame063_wheel3: + symbol: gKartYoshi063Wheel3 + type: texture + offset: 0x15A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_063_tlut_wheel_3 +yoshi_kart_frame064_wheel0: + symbol: gKartYoshi064Wheel0 + type: texture + offset: 0x15F20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_064_tlut_wheel_0 +yoshi_kart_frame064_wheel1: + symbol: gKartYoshi064Wheel1 + type: texture + offset: 0x15F20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_064_tlut_wheel_1 +yoshi_kart_frame064_wheel2: + symbol: gKartYoshi064Wheel2 + type: texture + offset: 0x15F20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_064_tlut_wheel_2 +yoshi_kart_frame064_wheel3: + symbol: gKartYoshi064Wheel3 + type: texture + offset: 0x15F20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_064_tlut_wheel_3 +yoshi_kart_frame065_wheel0: + symbol: gKartYoshi065Wheel0 + type: texture + offset: 0x1642C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_065_tlut_wheel_0 +yoshi_kart_frame065_wheel1: + symbol: gKartYoshi065Wheel1 + type: texture + offset: 0x1642C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_065_tlut_wheel_1 +yoshi_kart_frame065_wheel2: + symbol: gKartYoshi065Wheel2 + type: texture + offset: 0x1642C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_065_tlut_wheel_2 +yoshi_kart_frame065_wheel3: + symbol: gKartYoshi065Wheel3 + type: texture + offset: 0x1642C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_065_tlut_wheel_3 +yoshi_kart_frame066_wheel0: + symbol: gKartYoshi066Wheel0 + type: texture + offset: 0x16940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_066_tlut_wheel_0 +yoshi_kart_frame066_wheel1: + symbol: gKartYoshi066Wheel1 + type: texture + offset: 0x16940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_066_tlut_wheel_1 +yoshi_kart_frame066_wheel2: + symbol: gKartYoshi066Wheel2 + type: texture + offset: 0x16940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_066_tlut_wheel_2 +yoshi_kart_frame066_wheel3: + symbol: gKartYoshi066Wheel3 + type: texture + offset: 0x16940 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_066_tlut_wheel_3 +yoshi_kart_frame067_wheel0: + symbol: gKartYoshi067Wheel0 + type: texture + offset: 0x16E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_067_tlut_wheel_0 +yoshi_kart_frame067_wheel1: + symbol: gKartYoshi067Wheel1 + type: texture + offset: 0x16E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_067_tlut_wheel_1 +yoshi_kart_frame067_wheel2: + symbol: gKartYoshi067Wheel2 + type: texture + offset: 0x16E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_067_tlut_wheel_2 +yoshi_kart_frame067_wheel3: + symbol: gKartYoshi067Wheel3 + type: texture + offset: 0x16E70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_067_tlut_wheel_3 +yoshi_kart_frame068_wheel0: + symbol: gKartYoshi068Wheel0 + type: texture + offset: 0x173C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_068_tlut_wheel_0 +yoshi_kart_frame068_wheel1: + symbol: gKartYoshi068Wheel1 + type: texture + offset: 0x173C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_068_tlut_wheel_1 +yoshi_kart_frame068_wheel2: + symbol: gKartYoshi068Wheel2 + type: texture + offset: 0x173C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_068_tlut_wheel_2 +yoshi_kart_frame068_wheel3: + symbol: gKartYoshi068Wheel3 + type: texture + offset: 0x173C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_068_tlut_wheel_3 +yoshi_kart_frame069_wheel0: + symbol: gKartYoshi069Wheel0 + type: texture + offset: 0x17910 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_069_tlut_wheel_0 +yoshi_kart_frame069_wheel1: + symbol: gKartYoshi069Wheel1 + type: texture + offset: 0x17910 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_069_tlut_wheel_1 +yoshi_kart_frame069_wheel2: + symbol: gKartYoshi069Wheel2 + type: texture + offset: 0x17910 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_069_tlut_wheel_2 +yoshi_kart_frame069_wheel3: + symbol: gKartYoshi069Wheel3 + type: texture + offset: 0x17910 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_069_tlut_wheel_3 +yoshi_kart_frame070_wheel0: + symbol: gKartYoshi070Wheel0 + type: texture + offset: 0x17E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_070_tlut_wheel_0 +yoshi_kart_frame070_wheel1: + symbol: gKartYoshi070Wheel1 + type: texture + offset: 0x17E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_070_tlut_wheel_1 +yoshi_kart_frame070_wheel2: + symbol: gKartYoshi070Wheel2 + type: texture + offset: 0x17E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_070_tlut_wheel_2 +yoshi_kart_frame070_wheel3: + symbol: gKartYoshi070Wheel3 + type: texture + offset: 0x17E68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_070_tlut_wheel_3 +yoshi_kart_frame071_wheel0: + symbol: gKartYoshi071Wheel0 + type: texture + offset: 0x183D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_071_tlut_wheel_0 +yoshi_kart_frame071_wheel1: + symbol: gKartYoshi071Wheel1 + type: texture + offset: 0x183D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_071_tlut_wheel_1 +yoshi_kart_frame071_wheel2: + symbol: gKartYoshi071Wheel2 + type: texture + offset: 0x183D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_071_tlut_wheel_2 +yoshi_kart_frame071_wheel3: + symbol: gKartYoshi071Wheel3 + type: texture + offset: 0x183D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_071_tlut_wheel_3 +yoshi_kart_frame072_wheel0: + symbol: gKartYoshi072Wheel0 + type: texture + offset: 0x18954 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_072_tlut_wheel_0 +yoshi_kart_frame072_wheel1: + symbol: gKartYoshi072Wheel1 + type: texture + offset: 0x18954 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_072_tlut_wheel_1 +yoshi_kart_frame072_wheel2: + symbol: gKartYoshi072Wheel2 + type: texture + offset: 0x18954 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_072_tlut_wheel_2 +yoshi_kart_frame072_wheel3: + symbol: gKartYoshi072Wheel3 + type: texture + offset: 0x18954 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_072_tlut_wheel_3 +yoshi_kart_frame073_wheel0: + symbol: gKartYoshi073Wheel0 + type: texture + offset: 0x18EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_073_tlut_wheel_0 +yoshi_kart_frame073_wheel1: + symbol: gKartYoshi073Wheel1 + type: texture + offset: 0x18EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_073_tlut_wheel_1 +yoshi_kart_frame073_wheel2: + symbol: gKartYoshi073Wheel2 + type: texture + offset: 0x18EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_073_tlut_wheel_2 +yoshi_kart_frame073_wheel3: + symbol: gKartYoshi073Wheel3 + type: texture + offset: 0x18EF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_073_tlut_wheel_3 +yoshi_kart_frame074_wheel0: + symbol: gKartYoshi074Wheel0 + type: texture + offset: 0x19484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_074_tlut_wheel_0 +yoshi_kart_frame074_wheel1: + symbol: gKartYoshi074Wheel1 + type: texture + offset: 0x19484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_074_tlut_wheel_1 +yoshi_kart_frame074_wheel2: + symbol: gKartYoshi074Wheel2 + type: texture + offset: 0x19484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_074_tlut_wheel_2 +yoshi_kart_frame074_wheel3: + symbol: gKartYoshi074Wheel3 + type: texture + offset: 0x19484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_074_tlut_wheel_3 +yoshi_kart_frame075_wheel0: + symbol: gKartYoshi075Wheel0 + type: texture + offset: 0x19A10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_075_tlut_wheel_0 +yoshi_kart_frame075_wheel1: + symbol: gKartYoshi075Wheel1 + type: texture + offset: 0x19A10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_075_tlut_wheel_1 +yoshi_kart_frame075_wheel2: + symbol: gKartYoshi075Wheel2 + type: texture + offset: 0x19A10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_075_tlut_wheel_2 +yoshi_kart_frame075_wheel3: + symbol: gKartYoshi075Wheel3 + type: texture + offset: 0x19A10 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_075_tlut_wheel_3 +yoshi_kart_frame076_wheel0: + symbol: gKartYoshi076Wheel0 + type: texture + offset: 0x19FA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_076_tlut_wheel_0 +yoshi_kart_frame076_wheel1: + symbol: gKartYoshi076Wheel1 + type: texture + offset: 0x19FA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_076_tlut_wheel_1 +yoshi_kart_frame076_wheel2: + symbol: gKartYoshi076Wheel2 + type: texture + offset: 0x19FA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_076_tlut_wheel_2 +yoshi_kart_frame076_wheel3: + symbol: gKartYoshi076Wheel3 + type: texture + offset: 0x19FA8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_076_tlut_wheel_3 +yoshi_kart_frame077_wheel0: + symbol: gKartYoshi077Wheel0 + type: texture + offset: 0x1A54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_077_tlut_wheel_0 +yoshi_kart_frame077_wheel1: + symbol: gKartYoshi077Wheel1 + type: texture + offset: 0x1A54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_077_tlut_wheel_1 +yoshi_kart_frame077_wheel2: + symbol: gKartYoshi077Wheel2 + type: texture + offset: 0x1A54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_077_tlut_wheel_2 +yoshi_kart_frame077_wheel3: + symbol: gKartYoshi077Wheel3 + type: texture + offset: 0x1A54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_077_tlut_wheel_3 +yoshi_kart_frame078_wheel0: + symbol: gKartYoshi078Wheel0 + type: texture + offset: 0x1AB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_078_tlut_wheel_0 +yoshi_kart_frame078_wheel1: + symbol: gKartYoshi078Wheel1 + type: texture + offset: 0x1AB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_078_tlut_wheel_1 +yoshi_kart_frame078_wheel2: + symbol: gKartYoshi078Wheel2 + type: texture + offset: 0x1AB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_078_tlut_wheel_2 +yoshi_kart_frame078_wheel3: + symbol: gKartYoshi078Wheel3 + type: texture + offset: 0x1AB04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_078_tlut_wheel_3 +yoshi_kart_frame079_wheel0: + symbol: gKartYoshi079Wheel0 + type: texture + offset: 0x1B0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_079_tlut_wheel_0 +yoshi_kart_frame079_wheel1: + symbol: gKartYoshi079Wheel1 + type: texture + offset: 0x1B0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_079_tlut_wheel_1 +yoshi_kart_frame079_wheel2: + symbol: gKartYoshi079Wheel2 + type: texture + offset: 0x1B0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_079_tlut_wheel_2 +yoshi_kart_frame079_wheel3: + symbol: gKartYoshi079Wheel3 + type: texture + offset: 0x1B0D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_079_tlut_wheel_3 +yoshi_kart_frame080_wheel0: + symbol: gKartYoshi080Wheel0 + type: texture + offset: 0x1B6C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_080_tlut_wheel_0 +yoshi_kart_frame080_wheel1: + symbol: gKartYoshi080Wheel1 + type: texture + offset: 0x1B6C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_080_tlut_wheel_1 +yoshi_kart_frame080_wheel2: + symbol: gKartYoshi080Wheel2 + type: texture + offset: 0x1B6C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_080_tlut_wheel_2 +yoshi_kart_frame080_wheel3: + symbol: gKartYoshi080Wheel3 + type: texture + offset: 0x1B6C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_080_tlut_wheel_3 +yoshi_kart_frame081_wheel0: + symbol: gKartYoshi081Wheel0 + type: texture + offset: 0x1BCDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_081_tlut_wheel_0 +yoshi_kart_frame081_wheel1: + symbol: gKartYoshi081Wheel1 + type: texture + offset: 0x1BCDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_081_tlut_wheel_1 +yoshi_kart_frame081_wheel2: + symbol: gKartYoshi081Wheel2 + type: texture + offset: 0x1BCDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_081_tlut_wheel_2 +yoshi_kart_frame081_wheel3: + symbol: gKartYoshi081Wheel3 + type: texture + offset: 0x1BCDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_081_tlut_wheel_3 +yoshi_kart_frame082_wheel0: + symbol: gKartYoshi082Wheel0 + type: texture + offset: 0x1C2F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_082_tlut_wheel_0 +yoshi_kart_frame082_wheel1: + symbol: gKartYoshi082Wheel1 + type: texture + offset: 0x1C2F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_082_tlut_wheel_1 +yoshi_kart_frame082_wheel2: + symbol: gKartYoshi082Wheel2 + type: texture + offset: 0x1C2F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_082_tlut_wheel_2 +yoshi_kart_frame082_wheel3: + symbol: gKartYoshi082Wheel3 + type: texture + offset: 0x1C2F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_082_tlut_wheel_3 +yoshi_kart_frame083_wheel0: + symbol: gKartYoshi083Wheel0 + type: texture + offset: 0x1C92C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_083_tlut_wheel_0 +yoshi_kart_frame083_wheel1: + symbol: gKartYoshi083Wheel1 + type: texture + offset: 0x1C92C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_083_tlut_wheel_1 +yoshi_kart_frame083_wheel2: + symbol: gKartYoshi083Wheel2 + type: texture + offset: 0x1C92C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_083_tlut_wheel_2 +yoshi_kart_frame083_wheel3: + symbol: gKartYoshi083Wheel3 + type: texture + offset: 0x1C92C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_083_tlut_wheel_3 +yoshi_kart_frame084_wheel0: + symbol: gKartYoshi084Wheel0 + type: texture + offset: 0x1CF74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_084_tlut_wheel_0 +yoshi_kart_frame084_wheel1: + symbol: gKartYoshi084Wheel1 + type: texture + offset: 0x1CF74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_084_tlut_wheel_1 +yoshi_kart_frame084_wheel2: + symbol: gKartYoshi084Wheel2 + type: texture + offset: 0x1CF74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_084_tlut_wheel_2 +yoshi_kart_frame084_wheel3: + symbol: gKartYoshi084Wheel3 + type: texture + offset: 0x1CF74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_084_tlut_wheel_3 +yoshi_kart_frame085_wheel0: + symbol: gKartYoshi085Wheel0 + type: texture + offset: 0x1D488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_085_tlut_wheel_0 +yoshi_kart_frame085_wheel1: + symbol: gKartYoshi085Wheel1 + type: texture + offset: 0x1D488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_085_tlut_wheel_1 +yoshi_kart_frame085_wheel2: + symbol: gKartYoshi085Wheel2 + type: texture + offset: 0x1D488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_085_tlut_wheel_2 +yoshi_kart_frame085_wheel3: + symbol: gKartYoshi085Wheel3 + type: texture + offset: 0x1D488 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_085_tlut_wheel_3 +yoshi_kart_frame086_wheel0: + symbol: gKartYoshi086Wheel0 + type: texture + offset: 0x1D9B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_086_tlut_wheel_0 +yoshi_kart_frame086_wheel1: + symbol: gKartYoshi086Wheel1 + type: texture + offset: 0x1D9B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_086_tlut_wheel_1 +yoshi_kart_frame086_wheel2: + symbol: gKartYoshi086Wheel2 + type: texture + offset: 0x1D9B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_086_tlut_wheel_2 +yoshi_kart_frame086_wheel3: + symbol: gKartYoshi086Wheel3 + type: texture + offset: 0x1D9B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_086_tlut_wheel_3 +yoshi_kart_frame087_wheel0: + symbol: gKartYoshi087Wheel0 + type: texture + offset: 0x1DEE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_087_tlut_wheel_0 +yoshi_kart_frame087_wheel1: + symbol: gKartYoshi087Wheel1 + type: texture + offset: 0x1DEE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_087_tlut_wheel_1 +yoshi_kart_frame087_wheel2: + symbol: gKartYoshi087Wheel2 + type: texture + offset: 0x1DEE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_087_tlut_wheel_2 +yoshi_kart_frame087_wheel3: + symbol: gKartYoshi087Wheel3 + type: texture + offset: 0x1DEE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_087_tlut_wheel_3 +yoshi_kart_frame088_wheel0: + symbol: gKartYoshi088Wheel0 + type: texture + offset: 0x1E420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_088_tlut_wheel_0 +yoshi_kart_frame088_wheel1: + symbol: gKartYoshi088Wheel1 + type: texture + offset: 0x1E420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_088_tlut_wheel_1 +yoshi_kart_frame088_wheel2: + symbol: gKartYoshi088Wheel2 + type: texture + offset: 0x1E420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_088_tlut_wheel_2 +yoshi_kart_frame088_wheel3: + symbol: gKartYoshi088Wheel3 + type: texture + offset: 0x1E420 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_088_tlut_wheel_3 +yoshi_kart_frame089_wheel0: + symbol: gKartYoshi089Wheel0 + type: texture + offset: 0x1E97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_089_tlut_wheel_0 +yoshi_kart_frame089_wheel1: + symbol: gKartYoshi089Wheel1 + type: texture + offset: 0x1E97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_089_tlut_wheel_1 +yoshi_kart_frame089_wheel2: + symbol: gKartYoshi089Wheel2 + type: texture + offset: 0x1E97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_089_tlut_wheel_2 +yoshi_kart_frame089_wheel3: + symbol: gKartYoshi089Wheel3 + type: texture + offset: 0x1E97C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_089_tlut_wheel_3 +yoshi_kart_frame090_wheel0: + symbol: gKartYoshi090Wheel0 + type: texture + offset: 0x1EEF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_090_tlut_wheel_0 +yoshi_kart_frame090_wheel1: + symbol: gKartYoshi090Wheel1 + type: texture + offset: 0x1EEF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_090_tlut_wheel_1 +yoshi_kart_frame090_wheel2: + symbol: gKartYoshi090Wheel2 + type: texture + offset: 0x1EEF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_090_tlut_wheel_2 +yoshi_kart_frame090_wheel3: + symbol: gKartYoshi090Wheel3 + type: texture + offset: 0x1EEF0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_090_tlut_wheel_3 +yoshi_kart_frame091_wheel0: + symbol: gKartYoshi091Wheel0 + type: texture + offset: 0x1F450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_091_tlut_wheel_0 +yoshi_kart_frame091_wheel1: + symbol: gKartYoshi091Wheel1 + type: texture + offset: 0x1F450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_091_tlut_wheel_1 +yoshi_kart_frame091_wheel2: + symbol: gKartYoshi091Wheel2 + type: texture + offset: 0x1F450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_091_tlut_wheel_2 +yoshi_kart_frame091_wheel3: + symbol: gKartYoshi091Wheel3 + type: texture + offset: 0x1F450 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_091_tlut_wheel_3 +yoshi_kart_frame092_wheel0: + symbol: gKartYoshi092Wheel0 + type: texture + offset: 0x1F9D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_092_tlut_wheel_0 +yoshi_kart_frame092_wheel1: + symbol: gKartYoshi092Wheel1 + type: texture + offset: 0x1F9D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_092_tlut_wheel_1 +yoshi_kart_frame092_wheel2: + symbol: gKartYoshi092Wheel2 + type: texture + offset: 0x1F9D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_092_tlut_wheel_2 +yoshi_kart_frame092_wheel3: + symbol: gKartYoshi092Wheel3 + type: texture + offset: 0x1F9D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_092_tlut_wheel_3 +yoshi_kart_frame093_wheel0: + symbol: gKartYoshi093Wheel0 + type: texture + offset: 0x1FF48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_093_tlut_wheel_0 +yoshi_kart_frame093_wheel1: + symbol: gKartYoshi093Wheel1 + type: texture + offset: 0x1FF48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_093_tlut_wheel_1 +yoshi_kart_frame093_wheel2: + symbol: gKartYoshi093Wheel2 + type: texture + offset: 0x1FF48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_093_tlut_wheel_2 +yoshi_kart_frame093_wheel3: + symbol: gKartYoshi093Wheel3 + type: texture + offset: 0x1FF48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_093_tlut_wheel_3 +yoshi_kart_frame094_wheel0: + symbol: gKartYoshi094Wheel0 + type: texture + offset: 0x204B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_094_tlut_wheel_0 +yoshi_kart_frame094_wheel1: + symbol: gKartYoshi094Wheel1 + type: texture + offset: 0x204B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_094_tlut_wheel_1 +yoshi_kart_frame094_wheel2: + symbol: gKartYoshi094Wheel2 + type: texture + offset: 0x204B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_094_tlut_wheel_2 +yoshi_kart_frame094_wheel3: + symbol: gKartYoshi094Wheel3 + type: texture + offset: 0x204B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_094_tlut_wheel_3 +yoshi_kart_frame095_wheel0: + symbol: gKartYoshi095Wheel0 + type: texture + offset: 0x20A48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_095_tlut_wheel_0 +yoshi_kart_frame095_wheel1: + symbol: gKartYoshi095Wheel1 + type: texture + offset: 0x20A48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_095_tlut_wheel_1 +yoshi_kart_frame095_wheel2: + symbol: gKartYoshi095Wheel2 + type: texture + offset: 0x20A48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_095_tlut_wheel_2 +yoshi_kart_frame095_wheel3: + symbol: gKartYoshi095Wheel3 + type: texture + offset: 0x20A48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_095_tlut_wheel_3 +yoshi_kart_frame096_wheel0: + symbol: gKartYoshi096Wheel0 + type: texture + offset: 0x20FE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_096_tlut_wheel_0 +yoshi_kart_frame096_wheel1: + symbol: gKartYoshi096Wheel1 + type: texture + offset: 0x20FE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_096_tlut_wheel_1 +yoshi_kart_frame096_wheel2: + symbol: gKartYoshi096Wheel2 + type: texture + offset: 0x20FE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_096_tlut_wheel_2 +yoshi_kart_frame096_wheel3: + symbol: gKartYoshi096Wheel3 + type: texture + offset: 0x20FE4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_096_tlut_wheel_3 +yoshi_kart_frame097_wheel0: + symbol: gKartYoshi097Wheel0 + type: texture + offset: 0x2157C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_097_tlut_wheel_0 +yoshi_kart_frame097_wheel1: + symbol: gKartYoshi097Wheel1 + type: texture + offset: 0x2157C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_097_tlut_wheel_1 +yoshi_kart_frame097_wheel2: + symbol: gKartYoshi097Wheel2 + type: texture + offset: 0x2157C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_097_tlut_wheel_2 +yoshi_kart_frame097_wheel3: + symbol: gKartYoshi097Wheel3 + type: texture + offset: 0x2157C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_097_tlut_wheel_3 +yoshi_kart_frame098_wheel0: + symbol: gKartYoshi098Wheel0 + type: texture + offset: 0x21B18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_098_tlut_wheel_0 +yoshi_kart_frame098_wheel1: + symbol: gKartYoshi098Wheel1 + type: texture + offset: 0x21B18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_098_tlut_wheel_1 +yoshi_kart_frame098_wheel2: + symbol: gKartYoshi098Wheel2 + type: texture + offset: 0x21B18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_098_tlut_wheel_2 +yoshi_kart_frame098_wheel3: + symbol: gKartYoshi098Wheel3 + type: texture + offset: 0x21B18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_098_tlut_wheel_3 +yoshi_kart_frame099_wheel0: + symbol: gKartYoshi099Wheel0 + type: texture + offset: 0x220CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_099_tlut_wheel_0 +yoshi_kart_frame099_wheel1: + symbol: gKartYoshi099Wheel1 + type: texture + offset: 0x220CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_099_tlut_wheel_1 +yoshi_kart_frame099_wheel2: + symbol: gKartYoshi099Wheel2 + type: texture + offset: 0x220CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_099_tlut_wheel_2 +yoshi_kart_frame099_wheel3: + symbol: gKartYoshi099Wheel3 + type: texture + offset: 0x220CC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_099_tlut_wheel_3 +yoshi_kart_frame100_wheel0: + symbol: gKartYoshi100Wheel0 + type: texture + offset: 0x226BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_100_tlut_wheel_0 +yoshi_kart_frame100_wheel1: + symbol: gKartYoshi100Wheel1 + type: texture + offset: 0x226BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_100_tlut_wheel_1 +yoshi_kart_frame100_wheel2: + symbol: gKartYoshi100Wheel2 + type: texture + offset: 0x226BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_100_tlut_wheel_2 +yoshi_kart_frame100_wheel3: + symbol: gKartYoshi100Wheel3 + type: texture + offset: 0x226BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_100_tlut_wheel_3 +yoshi_kart_frame101_wheel0: + symbol: gKartYoshi101Wheel0 + type: texture + offset: 0x22CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_101_tlut_wheel_0 +yoshi_kart_frame101_wheel1: + symbol: gKartYoshi101Wheel1 + type: texture + offset: 0x22CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_101_tlut_wheel_1 +yoshi_kart_frame101_wheel2: + symbol: gKartYoshi101Wheel2 + type: texture + offset: 0x22CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_101_tlut_wheel_2 +yoshi_kart_frame101_wheel3: + symbol: gKartYoshi101Wheel3 + type: texture + offset: 0x22CB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_101_tlut_wheel_3 +yoshi_kart_frame102_wheel0: + symbol: gKartYoshi102Wheel0 + type: texture + offset: 0x232D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_102_tlut_wheel_0 +yoshi_kart_frame102_wheel1: + symbol: gKartYoshi102Wheel1 + type: texture + offset: 0x232D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_102_tlut_wheel_1 +yoshi_kart_frame102_wheel2: + symbol: gKartYoshi102Wheel2 + type: texture + offset: 0x232D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_102_tlut_wheel_2 +yoshi_kart_frame102_wheel3: + symbol: gKartYoshi102Wheel3 + type: texture + offset: 0x232D0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_102_tlut_wheel_3 +yoshi_kart_frame103_wheel0: + symbol: gKartYoshi103Wheel0 + type: texture + offset: 0x23900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_103_tlut_wheel_0 +yoshi_kart_frame103_wheel1: + symbol: gKartYoshi103Wheel1 + type: texture + offset: 0x23900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_103_tlut_wheel_1 +yoshi_kart_frame103_wheel2: + symbol: gKartYoshi103Wheel2 + type: texture + offset: 0x23900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_103_tlut_wheel_2 +yoshi_kart_frame103_wheel3: + symbol: gKartYoshi103Wheel3 + type: texture + offset: 0x23900 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_103_tlut_wheel_3 +yoshi_kart_frame104_wheel0: + symbol: gKartYoshi104Wheel0 + type: texture + offset: 0x23F3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_104_tlut_wheel_0 +yoshi_kart_frame104_wheel1: + symbol: gKartYoshi104Wheel1 + type: texture + offset: 0x23F3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_104_tlut_wheel_1 +yoshi_kart_frame104_wheel2: + symbol: gKartYoshi104Wheel2 + type: texture + offset: 0x23F3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_104_tlut_wheel_2 +yoshi_kart_frame104_wheel3: + symbol: gKartYoshi104Wheel3 + type: texture + offset: 0x23F3C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_104_tlut_wheel_3 +yoshi_kart_frame105_wheel0: + symbol: gKartYoshi105Wheel0 + type: texture + offset: 0x24594 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_105_tlut_wheel_0 +yoshi_kart_frame105_wheel1: + symbol: gKartYoshi105Wheel1 + type: texture + offset: 0x24594 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_105_tlut_wheel_1 +yoshi_kart_frame105_wheel2: + symbol: gKartYoshi105Wheel2 + type: texture + offset: 0x24594 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_105_tlut_wheel_2 +yoshi_kart_frame105_wheel3: + symbol: gKartYoshi105Wheel3 + type: texture + offset: 0x24594 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_105_tlut_wheel_3 +yoshi_kart_frame106_wheel0: + symbol: gKartYoshi106Wheel0 + type: texture + offset: 0x24AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_106_tlut_wheel_0 +yoshi_kart_frame106_wheel1: + symbol: gKartYoshi106Wheel1 + type: texture + offset: 0x24AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_106_tlut_wheel_1 +yoshi_kart_frame106_wheel2: + symbol: gKartYoshi106Wheel2 + type: texture + offset: 0x24AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_106_tlut_wheel_2 +yoshi_kart_frame106_wheel3: + symbol: gKartYoshi106Wheel3 + type: texture + offset: 0x24AD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_106_tlut_wheel_3 +yoshi_kart_frame107_wheel0: + symbol: gKartYoshi107Wheel0 + type: texture + offset: 0x25014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_107_tlut_wheel_0 +yoshi_kart_frame107_wheel1: + symbol: gKartYoshi107Wheel1 + type: texture + offset: 0x25014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_107_tlut_wheel_1 +yoshi_kart_frame107_wheel2: + symbol: gKartYoshi107Wheel2 + type: texture + offset: 0x25014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_107_tlut_wheel_2 +yoshi_kart_frame107_wheel3: + symbol: gKartYoshi107Wheel3 + type: texture + offset: 0x25014 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_107_tlut_wheel_3 +yoshi_kart_frame108_wheel0: + symbol: gKartYoshi108Wheel0 + type: texture + offset: 0x25564 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_108_tlut_wheel_0 +yoshi_kart_frame108_wheel1: + symbol: gKartYoshi108Wheel1 + type: texture + offset: 0x25564 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_108_tlut_wheel_1 +yoshi_kart_frame108_wheel2: + symbol: gKartYoshi108Wheel2 + type: texture + offset: 0x25564 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_108_tlut_wheel_2 +yoshi_kart_frame108_wheel3: + symbol: gKartYoshi108Wheel3 + type: texture + offset: 0x25564 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_108_tlut_wheel_3 +yoshi_kart_frame109_wheel0: + symbol: gKartYoshi109Wheel0 + type: texture + offset: 0x25AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_109_tlut_wheel_0 +yoshi_kart_frame109_wheel1: + symbol: gKartYoshi109Wheel1 + type: texture + offset: 0x25AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_109_tlut_wheel_1 +yoshi_kart_frame109_wheel2: + symbol: gKartYoshi109Wheel2 + type: texture + offset: 0x25AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_109_tlut_wheel_2 +yoshi_kart_frame109_wheel3: + symbol: gKartYoshi109Wheel3 + type: texture + offset: 0x25AB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_109_tlut_wheel_3 +yoshi_kart_frame110_wheel0: + symbol: gKartYoshi110Wheel0 + type: texture + offset: 0x2600C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_110_tlut_wheel_0 +yoshi_kart_frame110_wheel1: + symbol: gKartYoshi110Wheel1 + type: texture + offset: 0x2600C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_110_tlut_wheel_1 +yoshi_kart_frame110_wheel2: + symbol: gKartYoshi110Wheel2 + type: texture + offset: 0x2600C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_110_tlut_wheel_2 +yoshi_kart_frame110_wheel3: + symbol: gKartYoshi110Wheel3 + type: texture + offset: 0x2600C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_110_tlut_wheel_3 +yoshi_kart_frame111_wheel0: + symbol: gKartYoshi111Wheel0 + type: texture + offset: 0x2657C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_111_tlut_wheel_0 +yoshi_kart_frame111_wheel1: + symbol: gKartYoshi111Wheel1 + type: texture + offset: 0x2657C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_111_tlut_wheel_1 +yoshi_kart_frame111_wheel2: + symbol: gKartYoshi111Wheel2 + type: texture + offset: 0x2657C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_111_tlut_wheel_2 +yoshi_kart_frame111_wheel3: + symbol: gKartYoshi111Wheel3 + type: texture + offset: 0x2657C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_111_tlut_wheel_3 +yoshi_kart_frame112_wheel0: + symbol: gKartYoshi112Wheel0 + type: texture + offset: 0x26B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_112_tlut_wheel_0 +yoshi_kart_frame112_wheel1: + symbol: gKartYoshi112Wheel1 + type: texture + offset: 0x26B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_112_tlut_wheel_1 +yoshi_kart_frame112_wheel2: + symbol: gKartYoshi112Wheel2 + type: texture + offset: 0x26B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_112_tlut_wheel_2 +yoshi_kart_frame112_wheel3: + symbol: gKartYoshi112Wheel3 + type: texture + offset: 0x26B04 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_112_tlut_wheel_3 +yoshi_kart_frame113_wheel0: + symbol: gKartYoshi113Wheel0 + type: texture + offset: 0x27088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_113_tlut_wheel_0 +yoshi_kart_frame113_wheel1: + symbol: gKartYoshi113Wheel1 + type: texture + offset: 0x27088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_113_tlut_wheel_1 +yoshi_kart_frame113_wheel2: + symbol: gKartYoshi113Wheel2 + type: texture + offset: 0x27088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_113_tlut_wheel_2 +yoshi_kart_frame113_wheel3: + symbol: gKartYoshi113Wheel3 + type: texture + offset: 0x27088 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_113_tlut_wheel_3 +yoshi_kart_frame114_wheel0: + symbol: gKartYoshi114Wheel0 + type: texture + offset: 0x27608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_114_tlut_wheel_0 +yoshi_kart_frame114_wheel1: + symbol: gKartYoshi114Wheel1 + type: texture + offset: 0x27608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_114_tlut_wheel_1 +yoshi_kart_frame114_wheel2: + symbol: gKartYoshi114Wheel2 + type: texture + offset: 0x27608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_114_tlut_wheel_2 +yoshi_kart_frame114_wheel3: + symbol: gKartYoshi114Wheel3 + type: texture + offset: 0x27608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_114_tlut_wheel_3 +yoshi_kart_frame115_wheel0: + symbol: gKartYoshi115Wheel0 + type: texture + offset: 0x27B88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_115_tlut_wheel_0 +yoshi_kart_frame115_wheel1: + symbol: gKartYoshi115Wheel1 + type: texture + offset: 0x27B88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_115_tlut_wheel_1 +yoshi_kart_frame115_wheel2: + symbol: gKartYoshi115Wheel2 + type: texture + offset: 0x27B88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_115_tlut_wheel_2 +yoshi_kart_frame115_wheel3: + symbol: gKartYoshi115Wheel3 + type: texture + offset: 0x27B88 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_115_tlut_wheel_3 +yoshi_kart_frame116_wheel0: + symbol: gKartYoshi116Wheel0 + type: texture + offset: 0x2812C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_116_tlut_wheel_0 +yoshi_kart_frame116_wheel1: + symbol: gKartYoshi116Wheel1 + type: texture + offset: 0x2812C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_116_tlut_wheel_1 +yoshi_kart_frame116_wheel2: + symbol: gKartYoshi116Wheel2 + type: texture + offset: 0x2812C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_116_tlut_wheel_2 +yoshi_kart_frame116_wheel3: + symbol: gKartYoshi116Wheel3 + type: texture + offset: 0x2812C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_116_tlut_wheel_3 +yoshi_kart_frame117_wheel0: + symbol: gKartYoshi117Wheel0 + type: texture + offset: 0x286C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_117_tlut_wheel_0 +yoshi_kart_frame117_wheel1: + symbol: gKartYoshi117Wheel1 + type: texture + offset: 0x286C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_117_tlut_wheel_1 +yoshi_kart_frame117_wheel2: + symbol: gKartYoshi117Wheel2 + type: texture + offset: 0x286C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_117_tlut_wheel_2 +yoshi_kart_frame117_wheel3: + symbol: gKartYoshi117Wheel3 + type: texture + offset: 0x286C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_117_tlut_wheel_3 +yoshi_kart_frame118_wheel0: + symbol: gKartYoshi118Wheel0 + type: texture + offset: 0x28C68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_118_tlut_wheel_0 +yoshi_kart_frame118_wheel1: + symbol: gKartYoshi118Wheel1 + type: texture + offset: 0x28C68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_118_tlut_wheel_1 +yoshi_kart_frame118_wheel2: + symbol: gKartYoshi118Wheel2 + type: texture + offset: 0x28C68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_118_tlut_wheel_2 +yoshi_kart_frame118_wheel3: + symbol: gKartYoshi118Wheel3 + type: texture + offset: 0x28C68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_118_tlut_wheel_3 +yoshi_kart_frame119_wheel0: + symbol: gKartYoshi119Wheel0 + type: texture + offset: 0x29214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_119_tlut_wheel_0 +yoshi_kart_frame119_wheel1: + symbol: gKartYoshi119Wheel1 + type: texture + offset: 0x29214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_119_tlut_wheel_1 +yoshi_kart_frame119_wheel2: + symbol: gKartYoshi119Wheel2 + type: texture + offset: 0x29214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_119_tlut_wheel_2 +yoshi_kart_frame119_wheel3: + symbol: gKartYoshi119Wheel3 + type: texture + offset: 0x29214 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_119_tlut_wheel_3 +yoshi_kart_frame120_wheel0: + symbol: gKartYoshi120Wheel0 + type: texture + offset: 0x297D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_120_tlut_wheel_0 +yoshi_kart_frame120_wheel1: + symbol: gKartYoshi120Wheel1 + type: texture + offset: 0x297D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_120_tlut_wheel_1 +yoshi_kart_frame120_wheel2: + symbol: gKartYoshi120Wheel2 + type: texture + offset: 0x297D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_120_tlut_wheel_2 +yoshi_kart_frame120_wheel3: + symbol: gKartYoshi120Wheel3 + type: texture + offset: 0x297D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_120_tlut_wheel_3 +yoshi_kart_frame121_wheel0: + symbol: gKartYoshi121Wheel0 + type: texture + offset: 0x29DB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_121_tlut_wheel_0 +yoshi_kart_frame121_wheel1: + symbol: gKartYoshi121Wheel1 + type: texture + offset: 0x29DB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_121_tlut_wheel_1 +yoshi_kart_frame121_wheel2: + symbol: gKartYoshi121Wheel2 + type: texture + offset: 0x29DB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_121_tlut_wheel_2 +yoshi_kart_frame121_wheel3: + symbol: gKartYoshi121Wheel3 + type: texture + offset: 0x29DB0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_121_tlut_wheel_3 +yoshi_kart_frame122_wheel0: + symbol: gKartYoshi122Wheel0 + type: texture + offset: 0x2A3A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_122_tlut_wheel_0 +yoshi_kart_frame122_wheel1: + symbol: gKartYoshi122Wheel1 + type: texture + offset: 0x2A3A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_122_tlut_wheel_1 +yoshi_kart_frame122_wheel2: + symbol: gKartYoshi122Wheel2 + type: texture + offset: 0x2A3A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_122_tlut_wheel_2 +yoshi_kart_frame122_wheel3: + symbol: gKartYoshi122Wheel3 + type: texture + offset: 0x2A3A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_122_tlut_wheel_3 +yoshi_kart_frame123_wheel0: + symbol: gKartYoshi123Wheel0 + type: texture + offset: 0x2A9B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_123_tlut_wheel_0 +yoshi_kart_frame123_wheel1: + symbol: gKartYoshi123Wheel1 + type: texture + offset: 0x2A9B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_123_tlut_wheel_1 +yoshi_kart_frame123_wheel2: + symbol: gKartYoshi123Wheel2 + type: texture + offset: 0x2A9B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_123_tlut_wheel_2 +yoshi_kart_frame123_wheel3: + symbol: gKartYoshi123Wheel3 + type: texture + offset: 0x2A9B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_123_tlut_wheel_3 +yoshi_kart_frame124_wheel0: + symbol: gKartYoshi124Wheel0 + type: texture + offset: 0x2B008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_124_tlut_wheel_0 +yoshi_kart_frame124_wheel1: + symbol: gKartYoshi124Wheel1 + type: texture + offset: 0x2B008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_124_tlut_wheel_1 +yoshi_kart_frame124_wheel2: + symbol: gKartYoshi124Wheel2 + type: texture + offset: 0x2B008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_124_tlut_wheel_2 +yoshi_kart_frame124_wheel3: + symbol: gKartYoshi124Wheel3 + type: texture + offset: 0x2B008 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_124_tlut_wheel_3 +yoshi_kart_frame125_wheel0: + symbol: gKartYoshi125Wheel0 + type: texture + offset: 0x2B664 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_125_tlut_wheel_0 +yoshi_kart_frame125_wheel1: + symbol: gKartYoshi125Wheel1 + type: texture + offset: 0x2B664 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_125_tlut_wheel_1 +yoshi_kart_frame125_wheel2: + symbol: gKartYoshi125Wheel2 + type: texture + offset: 0x2B664 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_125_tlut_wheel_2 +yoshi_kart_frame125_wheel3: + symbol: gKartYoshi125Wheel3 + type: texture + offset: 0x2B664 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_125_tlut_wheel_3 +yoshi_kart_frame126_wheel0: + symbol: gKartYoshi126Wheel0 + type: texture + offset: 0x2BCD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_126_tlut_wheel_0 +yoshi_kart_frame126_wheel1: + symbol: gKartYoshi126Wheel1 + type: texture + offset: 0x2BCD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_126_tlut_wheel_1 +yoshi_kart_frame126_wheel2: + symbol: gKartYoshi126Wheel2 + type: texture + offset: 0x2BCD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_126_tlut_wheel_2 +yoshi_kart_frame126_wheel3: + symbol: gKartYoshi126Wheel3 + type: texture + offset: 0x2BCD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_126_tlut_wheel_3 +yoshi_kart_frame127_wheel0: + symbol: gKartYoshi127Wheel0 + type: texture + offset: 0x2C220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_127_tlut_wheel_0 +yoshi_kart_frame127_wheel1: + symbol: gKartYoshi127Wheel1 + type: texture + offset: 0x2C220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_127_tlut_wheel_1 +yoshi_kart_frame127_wheel2: + symbol: gKartYoshi127Wheel2 + type: texture + offset: 0x2C220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_127_tlut_wheel_2 +yoshi_kart_frame127_wheel3: + symbol: gKartYoshi127Wheel3 + type: texture + offset: 0x2C220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_127_tlut_wheel_3 +yoshi_kart_frame128_wheel0: + symbol: gKartYoshi128Wheel0 + type: texture + offset: 0x2C76C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_128_tlut_wheel_0 +yoshi_kart_frame128_wheel1: + symbol: gKartYoshi128Wheel1 + type: texture + offset: 0x2C76C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_128_tlut_wheel_1 +yoshi_kart_frame128_wheel2: + symbol: gKartYoshi128Wheel2 + type: texture + offset: 0x2C76C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_128_tlut_wheel_2 +yoshi_kart_frame128_wheel3: + symbol: gKartYoshi128Wheel3 + type: texture + offset: 0x2C76C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_128_tlut_wheel_3 +yoshi_kart_frame129_wheel0: + symbol: gKartYoshi129Wheel0 + type: texture + offset: 0x2CCE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_129_tlut_wheel_0 +yoshi_kart_frame129_wheel1: + symbol: gKartYoshi129Wheel1 + type: texture + offset: 0x2CCE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_129_tlut_wheel_1 +yoshi_kart_frame129_wheel2: + symbol: gKartYoshi129Wheel2 + type: texture + offset: 0x2CCE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_129_tlut_wheel_2 +yoshi_kart_frame129_wheel3: + symbol: gKartYoshi129Wheel3 + type: texture + offset: 0x2CCE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_129_tlut_wheel_3 +yoshi_kart_frame130_wheel0: + symbol: gKartYoshi130Wheel0 + type: texture + offset: 0x2D25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_130_tlut_wheel_0 +yoshi_kart_frame130_wheel1: + symbol: gKartYoshi130Wheel1 + type: texture + offset: 0x2D25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_130_tlut_wheel_1 +yoshi_kart_frame130_wheel2: + symbol: gKartYoshi130Wheel2 + type: texture + offset: 0x2D25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_130_tlut_wheel_2 +yoshi_kart_frame130_wheel3: + symbol: gKartYoshi130Wheel3 + type: texture + offset: 0x2D25C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_130_tlut_wheel_3 +yoshi_kart_frame131_wheel0: + symbol: gKartYoshi131Wheel0 + type: texture + offset: 0x2D7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_131_tlut_wheel_0 +yoshi_kart_frame131_wheel1: + symbol: gKartYoshi131Wheel1 + type: texture + offset: 0x2D7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_131_tlut_wheel_1 +yoshi_kart_frame131_wheel2: + symbol: gKartYoshi131Wheel2 + type: texture + offset: 0x2D7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_131_tlut_wheel_2 +yoshi_kart_frame131_wheel3: + symbol: gKartYoshi131Wheel3 + type: texture + offset: 0x2D7F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_131_tlut_wheel_3 +yoshi_kart_frame132_wheel0: + symbol: gKartYoshi132Wheel0 + type: texture + offset: 0x2DD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_132_tlut_wheel_0 +yoshi_kart_frame132_wheel1: + symbol: gKartYoshi132Wheel1 + type: texture + offset: 0x2DD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_132_tlut_wheel_1 +yoshi_kart_frame132_wheel2: + symbol: gKartYoshi132Wheel2 + type: texture + offset: 0x2DD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_132_tlut_wheel_2 +yoshi_kart_frame132_wheel3: + symbol: gKartYoshi132Wheel3 + type: texture + offset: 0x2DD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_132_tlut_wheel_3 +yoshi_kart_frame133_wheel0: + symbol: gKartYoshi133Wheel0 + type: texture + offset: 0x2E2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_133_tlut_wheel_0 +yoshi_kart_frame133_wheel1: + symbol: gKartYoshi133Wheel1 + type: texture + offset: 0x2E2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_133_tlut_wheel_1 +yoshi_kart_frame133_wheel2: + symbol: gKartYoshi133Wheel2 + type: texture + offset: 0x2E2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_133_tlut_wheel_2 +yoshi_kart_frame133_wheel3: + symbol: gKartYoshi133Wheel3 + type: texture + offset: 0x2E2DC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_133_tlut_wheel_3 +yoshi_kart_frame134_wheel0: + symbol: gKartYoshi134Wheel0 + type: texture + offset: 0x2E848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_134_tlut_wheel_0 +yoshi_kart_frame134_wheel1: + symbol: gKartYoshi134Wheel1 + type: texture + offset: 0x2E848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_134_tlut_wheel_1 +yoshi_kart_frame134_wheel2: + symbol: gKartYoshi134Wheel2 + type: texture + offset: 0x2E848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_134_tlut_wheel_2 +yoshi_kart_frame134_wheel3: + symbol: gKartYoshi134Wheel3 + type: texture + offset: 0x2E848 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_134_tlut_wheel_3 +yoshi_kart_frame135_wheel0: + symbol: gKartYoshi135Wheel0 + type: texture + offset: 0x2EDB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_135_tlut_wheel_0 +yoshi_kart_frame135_wheel1: + symbol: gKartYoshi135Wheel1 + type: texture + offset: 0x2EDB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_135_tlut_wheel_1 +yoshi_kart_frame135_wheel2: + symbol: gKartYoshi135Wheel2 + type: texture + offset: 0x2EDB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_135_tlut_wheel_2 +yoshi_kart_frame135_wheel3: + symbol: gKartYoshi135Wheel3 + type: texture + offset: 0x2EDB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_135_tlut_wheel_3 +yoshi_kart_frame136_wheel0: + symbol: gKartYoshi136Wheel0 + type: texture + offset: 0x2F354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_136_tlut_wheel_0 +yoshi_kart_frame136_wheel1: + symbol: gKartYoshi136Wheel1 + type: texture + offset: 0x2F354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_136_tlut_wheel_1 +yoshi_kart_frame136_wheel2: + symbol: gKartYoshi136Wheel2 + type: texture + offset: 0x2F354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_136_tlut_wheel_2 +yoshi_kart_frame136_wheel3: + symbol: gKartYoshi136Wheel3 + type: texture + offset: 0x2F354 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_136_tlut_wheel_3 +yoshi_kart_frame137_wheel0: + symbol: gKartYoshi137Wheel0 + type: texture + offset: 0x2F8E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_137_tlut_wheel_0 +yoshi_kart_frame137_wheel1: + symbol: gKartYoshi137Wheel1 + type: texture + offset: 0x2F8E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_137_tlut_wheel_1 +yoshi_kart_frame137_wheel2: + symbol: gKartYoshi137Wheel2 + type: texture + offset: 0x2F8E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_137_tlut_wheel_2 +yoshi_kart_frame137_wheel3: + symbol: gKartYoshi137Wheel3 + type: texture + offset: 0x2F8E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_137_tlut_wheel_3 +yoshi_kart_frame138_wheel0: + symbol: gKartYoshi138Wheel0 + type: texture + offset: 0x2FE70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_138_tlut_wheel_0 +yoshi_kart_frame138_wheel1: + symbol: gKartYoshi138Wheel1 + type: texture + offset: 0x2FE70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_138_tlut_wheel_1 +yoshi_kart_frame138_wheel2: + symbol: gKartYoshi138Wheel2 + type: texture + offset: 0x2FE70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_138_tlut_wheel_2 +yoshi_kart_frame138_wheel3: + symbol: gKartYoshi138Wheel3 + type: texture + offset: 0x2FE70 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_138_tlut_wheel_3 +yoshi_kart_frame139_wheel0: + symbol: gKartYoshi139Wheel0 + type: texture + offset: 0x30408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_139_tlut_wheel_0 +yoshi_kart_frame139_wheel1: + symbol: gKartYoshi139Wheel1 + type: texture + offset: 0x30408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_139_tlut_wheel_1 +yoshi_kart_frame139_wheel2: + symbol: gKartYoshi139Wheel2 + type: texture + offset: 0x30408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_139_tlut_wheel_2 +yoshi_kart_frame139_wheel3: + symbol: gKartYoshi139Wheel3 + type: texture + offset: 0x30408 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_139_tlut_wheel_3 +yoshi_kart_frame140_wheel0: + symbol: gKartYoshi140Wheel0 + type: texture + offset: 0x309B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_140_tlut_wheel_0 +yoshi_kart_frame140_wheel1: + symbol: gKartYoshi140Wheel1 + type: texture + offset: 0x309B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_140_tlut_wheel_1 +yoshi_kart_frame140_wheel2: + symbol: gKartYoshi140Wheel2 + type: texture + offset: 0x309B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_140_tlut_wheel_2 +yoshi_kart_frame140_wheel3: + symbol: gKartYoshi140Wheel3 + type: texture + offset: 0x309B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_140_tlut_wheel_3 +yoshi_kart_frame141_wheel0: + symbol: gKartYoshi141Wheel0 + type: texture + offset: 0x30F78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_141_tlut_wheel_0 +yoshi_kart_frame141_wheel1: + symbol: gKartYoshi141Wheel1 + type: texture + offset: 0x30F78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_141_tlut_wheel_1 +yoshi_kart_frame141_wheel2: + symbol: gKartYoshi141Wheel2 + type: texture + offset: 0x30F78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_141_tlut_wheel_2 +yoshi_kart_frame141_wheel3: + symbol: gKartYoshi141Wheel3 + type: texture + offset: 0x30F78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_141_tlut_wheel_3 +yoshi_kart_frame142_wheel0: + symbol: gKartYoshi142Wheel0 + type: texture + offset: 0x31550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_142_tlut_wheel_0 +yoshi_kart_frame142_wheel1: + symbol: gKartYoshi142Wheel1 + type: texture + offset: 0x31550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_142_tlut_wheel_1 +yoshi_kart_frame142_wheel2: + symbol: gKartYoshi142Wheel2 + type: texture + offset: 0x31550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_142_tlut_wheel_2 +yoshi_kart_frame142_wheel3: + symbol: gKartYoshi142Wheel3 + type: texture + offset: 0x31550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_142_tlut_wheel_3 +yoshi_kart_frame143_wheel0: + symbol: gKartYoshi143Wheel0 + type: texture + offset: 0x31B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_143_tlut_wheel_0 +yoshi_kart_frame143_wheel1: + symbol: gKartYoshi143Wheel1 + type: texture + offset: 0x31B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_143_tlut_wheel_1 +yoshi_kart_frame143_wheel2: + symbol: gKartYoshi143Wheel2 + type: texture + offset: 0x31B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_143_tlut_wheel_2 +yoshi_kart_frame143_wheel3: + symbol: gKartYoshi143Wheel3 + type: texture + offset: 0x31B44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_143_tlut_wheel_3 +yoshi_kart_frame144_wheel0: + symbol: gKartYoshi144Wheel0 + type: texture + offset: 0x32158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_144_tlut_wheel_0 +yoshi_kart_frame144_wheel1: + symbol: gKartYoshi144Wheel1 + type: texture + offset: 0x32158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_144_tlut_wheel_1 +yoshi_kart_frame144_wheel2: + symbol: gKartYoshi144Wheel2 + type: texture + offset: 0x32158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_144_tlut_wheel_2 +yoshi_kart_frame144_wheel3: + symbol: gKartYoshi144Wheel3 + type: texture + offset: 0x32158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_144_tlut_wheel_3 +yoshi_kart_frame145_wheel0: + symbol: gKartYoshi145Wheel0 + type: texture + offset: 0x32790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_145_tlut_wheel_0 +yoshi_kart_frame145_wheel1: + symbol: gKartYoshi145Wheel1 + type: texture + offset: 0x32790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_145_tlut_wheel_1 +yoshi_kart_frame145_wheel2: + symbol: gKartYoshi145Wheel2 + type: texture + offset: 0x32790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_145_tlut_wheel_2 +yoshi_kart_frame145_wheel3: + symbol: gKartYoshi145Wheel3 + type: texture + offset: 0x32790 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_145_tlut_wheel_3 +yoshi_kart_frame146_wheel0: + symbol: gKartYoshi146Wheel0 + type: texture + offset: 0x32DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_146_tlut_wheel_0 +yoshi_kart_frame146_wheel1: + symbol: gKartYoshi146Wheel1 + type: texture + offset: 0x32DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_146_tlut_wheel_1 +yoshi_kart_frame146_wheel2: + symbol: gKartYoshi146Wheel2 + type: texture + offset: 0x32DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_146_tlut_wheel_2 +yoshi_kart_frame146_wheel3: + symbol: gKartYoshi146Wheel3 + type: texture + offset: 0x32DF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_146_tlut_wheel_3 +yoshi_kart_frame147_wheel0: + symbol: gKartYoshi147Wheel0 + type: texture + offset: 0x3345C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_147_tlut_wheel_0 +yoshi_kart_frame147_wheel1: + symbol: gKartYoshi147Wheel1 + type: texture + offset: 0x3345C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_147_tlut_wheel_1 +yoshi_kart_frame147_wheel2: + symbol: gKartYoshi147Wheel2 + type: texture + offset: 0x3345C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_147_tlut_wheel_2 +yoshi_kart_frame147_wheel3: + symbol: gKartYoshi147Wheel3 + type: texture + offset: 0x3345C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_147_tlut_wheel_3 +yoshi_kart_frame148_wheel0: + symbol: gKartYoshi148Wheel0 + type: texture + offset: 0x339BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_148_tlut_wheel_0 +yoshi_kart_frame148_wheel1: + symbol: gKartYoshi148Wheel1 + type: texture + offset: 0x339BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_148_tlut_wheel_1 +yoshi_kart_frame148_wheel2: + symbol: gKartYoshi148Wheel2 + type: texture + offset: 0x339BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_148_tlut_wheel_2 +yoshi_kart_frame148_wheel3: + symbol: gKartYoshi148Wheel3 + type: texture + offset: 0x339BC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_148_tlut_wheel_3 +yoshi_kart_frame149_wheel0: + symbol: gKartYoshi149Wheel0 + type: texture + offset: 0x33F34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_149_tlut_wheel_0 +yoshi_kart_frame149_wheel1: + symbol: gKartYoshi149Wheel1 + type: texture + offset: 0x33F34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_149_tlut_wheel_1 +yoshi_kart_frame149_wheel2: + symbol: gKartYoshi149Wheel2 + type: texture + offset: 0x33F34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_149_tlut_wheel_2 +yoshi_kart_frame149_wheel3: + symbol: gKartYoshi149Wheel3 + type: texture + offset: 0x33F34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_149_tlut_wheel_3 +yoshi_kart_frame150_wheel0: + symbol: gKartYoshi150Wheel0 + type: texture + offset: 0x344C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_150_tlut_wheel_0 +yoshi_kart_frame150_wheel1: + symbol: gKartYoshi150Wheel1 + type: texture + offset: 0x344C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_150_tlut_wheel_1 +yoshi_kart_frame150_wheel2: + symbol: gKartYoshi150Wheel2 + type: texture + offset: 0x344C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_150_tlut_wheel_2 +yoshi_kart_frame150_wheel3: + symbol: gKartYoshi150Wheel3 + type: texture + offset: 0x344C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_150_tlut_wheel_3 +yoshi_kart_frame151_wheel0: + symbol: gKartYoshi151Wheel0 + type: texture + offset: 0x34A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_151_tlut_wheel_0 +yoshi_kart_frame151_wheel1: + symbol: gKartYoshi151Wheel1 + type: texture + offset: 0x34A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_151_tlut_wheel_1 +yoshi_kart_frame151_wheel2: + symbol: gKartYoshi151Wheel2 + type: texture + offset: 0x34A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_151_tlut_wheel_2 +yoshi_kart_frame151_wheel3: + symbol: gKartYoshi151Wheel3 + type: texture + offset: 0x34A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_151_tlut_wheel_3 +yoshi_kart_frame152_wheel0: + symbol: gKartYoshi152Wheel0 + type: texture + offset: 0x34FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_152_tlut_wheel_0 +yoshi_kart_frame152_wheel1: + symbol: gKartYoshi152Wheel1 + type: texture + offset: 0x34FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_152_tlut_wheel_1 +yoshi_kart_frame152_wheel2: + symbol: gKartYoshi152Wheel2 + type: texture + offset: 0x34FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_152_tlut_wheel_2 +yoshi_kart_frame152_wheel3: + symbol: gKartYoshi152Wheel3 + type: texture + offset: 0x34FDC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_152_tlut_wheel_3 +yoshi_kart_frame153_wheel0: + symbol: gKartYoshi153Wheel0 + type: texture + offset: 0x3555C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_153_tlut_wheel_0 +yoshi_kart_frame153_wheel1: + symbol: gKartYoshi153Wheel1 + type: texture + offset: 0x3555C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_153_tlut_wheel_1 +yoshi_kart_frame153_wheel2: + symbol: gKartYoshi153Wheel2 + type: texture + offset: 0x3555C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_153_tlut_wheel_2 +yoshi_kart_frame153_wheel3: + symbol: gKartYoshi153Wheel3 + type: texture + offset: 0x3555C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_153_tlut_wheel_3 +yoshi_kart_frame154_wheel0: + symbol: gKartYoshi154Wheel0 + type: texture + offset: 0x35AD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_154_tlut_wheel_0 +yoshi_kart_frame154_wheel1: + symbol: gKartYoshi154Wheel1 + type: texture + offset: 0x35AD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_154_tlut_wheel_1 +yoshi_kart_frame154_wheel2: + symbol: gKartYoshi154Wheel2 + type: texture + offset: 0x35AD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_154_tlut_wheel_2 +yoshi_kart_frame154_wheel3: + symbol: gKartYoshi154Wheel3 + type: texture + offset: 0x35AD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_154_tlut_wheel_3 +yoshi_kart_frame155_wheel0: + symbol: gKartYoshi155Wheel0 + type: texture + offset: 0x36070 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_155_tlut_wheel_0 +yoshi_kart_frame155_wheel1: + symbol: gKartYoshi155Wheel1 + type: texture + offset: 0x36070 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_155_tlut_wheel_1 +yoshi_kart_frame155_wheel2: + symbol: gKartYoshi155Wheel2 + type: texture + offset: 0x36070 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_155_tlut_wheel_2 +yoshi_kart_frame155_wheel3: + symbol: gKartYoshi155Wheel3 + type: texture + offset: 0x36070 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_155_tlut_wheel_3 +yoshi_kart_frame156_wheel0: + symbol: gKartYoshi156Wheel0 + type: texture + offset: 0x36608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_156_tlut_wheel_0 +yoshi_kart_frame156_wheel1: + symbol: gKartYoshi156Wheel1 + type: texture + offset: 0x36608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_156_tlut_wheel_1 +yoshi_kart_frame156_wheel2: + symbol: gKartYoshi156Wheel2 + type: texture + offset: 0x36608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_156_tlut_wheel_2 +yoshi_kart_frame156_wheel3: + symbol: gKartYoshi156Wheel3 + type: texture + offset: 0x36608 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_156_tlut_wheel_3 +yoshi_kart_frame157_wheel0: + symbol: gKartYoshi157Wheel0 + type: texture + offset: 0x36B78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_157_tlut_wheel_0 +yoshi_kart_frame157_wheel1: + symbol: gKartYoshi157Wheel1 + type: texture + offset: 0x36B78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_157_tlut_wheel_1 +yoshi_kart_frame157_wheel2: + symbol: gKartYoshi157Wheel2 + type: texture + offset: 0x36B78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_157_tlut_wheel_2 +yoshi_kart_frame157_wheel3: + symbol: gKartYoshi157Wheel3 + type: texture + offset: 0x36B78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_157_tlut_wheel_3 +yoshi_kart_frame158_wheel0: + symbol: gKartYoshi158Wheel0 + type: texture + offset: 0x37114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_158_tlut_wheel_0 +yoshi_kart_frame158_wheel1: + symbol: gKartYoshi158Wheel1 + type: texture + offset: 0x37114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_158_tlut_wheel_1 +yoshi_kart_frame158_wheel2: + symbol: gKartYoshi158Wheel2 + type: texture + offset: 0x37114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_158_tlut_wheel_2 +yoshi_kart_frame158_wheel3: + symbol: gKartYoshi158Wheel3 + type: texture + offset: 0x37114 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_158_tlut_wheel_3 +yoshi_kart_frame159_wheel0: + symbol: gKartYoshi159Wheel0 + type: texture + offset: 0x376A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_159_tlut_wheel_0 +yoshi_kart_frame159_wheel1: + symbol: gKartYoshi159Wheel1 + type: texture + offset: 0x376A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_159_tlut_wheel_1 +yoshi_kart_frame159_wheel2: + symbol: gKartYoshi159Wheel2 + type: texture + offset: 0x376A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_159_tlut_wheel_2 +yoshi_kart_frame159_wheel3: + symbol: gKartYoshi159Wheel3 + type: texture + offset: 0x376A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_159_tlut_wheel_3 +yoshi_kart_frame160_wheel0: + symbol: gKartYoshi160Wheel0 + type: texture + offset: 0x37C48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_160_tlut_wheel_0 +yoshi_kart_frame160_wheel1: + symbol: gKartYoshi160Wheel1 + type: texture + offset: 0x37C48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_160_tlut_wheel_1 +yoshi_kart_frame160_wheel2: + symbol: gKartYoshi160Wheel2 + type: texture + offset: 0x37C48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_160_tlut_wheel_2 +yoshi_kart_frame160_wheel3: + symbol: gKartYoshi160Wheel3 + type: texture + offset: 0x37C48 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_160_tlut_wheel_3 +yoshi_kart_frame161_wheel0: + symbol: gKartYoshi161Wheel0 + type: texture + offset: 0x381F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_161_tlut_wheel_0 +yoshi_kart_frame161_wheel1: + symbol: gKartYoshi161Wheel1 + type: texture + offset: 0x381F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_161_tlut_wheel_1 +yoshi_kart_frame161_wheel2: + symbol: gKartYoshi161Wheel2 + type: texture + offset: 0x381F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_161_tlut_wheel_2 +yoshi_kart_frame161_wheel3: + symbol: gKartYoshi161Wheel3 + type: texture + offset: 0x381F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_161_tlut_wheel_3 +yoshi_kart_frame162_wheel0: + symbol: gKartYoshi162Wheel0 + type: texture + offset: 0x387B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_162_tlut_wheel_0 +yoshi_kart_frame162_wheel1: + symbol: gKartYoshi162Wheel1 + type: texture + offset: 0x387B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_162_tlut_wheel_1 +yoshi_kart_frame162_wheel2: + symbol: gKartYoshi162Wheel2 + type: texture + offset: 0x387B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_162_tlut_wheel_2 +yoshi_kart_frame162_wheel3: + symbol: gKartYoshi162Wheel3 + type: texture + offset: 0x387B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_162_tlut_wheel_3 +yoshi_kart_frame163_wheel0: + symbol: gKartYoshi163Wheel0 + type: texture + offset: 0x38D84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_163_tlut_wheel_0 +yoshi_kart_frame163_wheel1: + symbol: gKartYoshi163Wheel1 + type: texture + offset: 0x38D84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_163_tlut_wheel_1 +yoshi_kart_frame163_wheel2: + symbol: gKartYoshi163Wheel2 + type: texture + offset: 0x38D84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_163_tlut_wheel_2 +yoshi_kart_frame163_wheel3: + symbol: gKartYoshi163Wheel3 + type: texture + offset: 0x38D84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_163_tlut_wheel_3 +yoshi_kart_frame164_wheel0: + symbol: gKartYoshi164Wheel0 + type: texture + offset: 0x39374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_164_tlut_wheel_0 +yoshi_kart_frame164_wheel1: + symbol: gKartYoshi164Wheel1 + type: texture + offset: 0x39374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_164_tlut_wheel_1 +yoshi_kart_frame164_wheel2: + symbol: gKartYoshi164Wheel2 + type: texture + offset: 0x39374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_164_tlut_wheel_2 +yoshi_kart_frame164_wheel3: + symbol: gKartYoshi164Wheel3 + type: texture + offset: 0x39374 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_164_tlut_wheel_3 +yoshi_kart_frame165_wheel0: + symbol: gKartYoshi165Wheel0 + type: texture + offset: 0x3998C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_165_tlut_wheel_0 +yoshi_kart_frame165_wheel1: + symbol: gKartYoshi165Wheel1 + type: texture + offset: 0x3998C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_165_tlut_wheel_1 +yoshi_kart_frame165_wheel2: + symbol: gKartYoshi165Wheel2 + type: texture + offset: 0x3998C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_165_tlut_wheel_2 +yoshi_kart_frame165_wheel3: + symbol: gKartYoshi165Wheel3 + type: texture + offset: 0x3998C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_165_tlut_wheel_3 +yoshi_kart_frame166_wheel0: + symbol: gKartYoshi166Wheel0 + type: texture + offset: 0x39FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_166_tlut_wheel_0 +yoshi_kart_frame166_wheel1: + symbol: gKartYoshi166Wheel1 + type: texture + offset: 0x39FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_166_tlut_wheel_1 +yoshi_kart_frame166_wheel2: + symbol: gKartYoshi166Wheel2 + type: texture + offset: 0x39FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_166_tlut_wheel_2 +yoshi_kart_frame166_wheel3: + symbol: gKartYoshi166Wheel3 + type: texture + offset: 0x39FD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_166_tlut_wheel_3 +yoshi_kart_frame167_wheel0: + symbol: gKartYoshi167Wheel0 + type: texture + offset: 0x3A634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_167_tlut_wheel_0 +yoshi_kart_frame167_wheel1: + symbol: gKartYoshi167Wheel1 + type: texture + offset: 0x3A634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_167_tlut_wheel_1 +yoshi_kart_frame167_wheel2: + symbol: gKartYoshi167Wheel2 + type: texture + offset: 0x3A634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_167_tlut_wheel_2 +yoshi_kart_frame167_wheel3: + symbol: gKartYoshi167Wheel3 + type: texture + offset: 0x3A634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_167_tlut_wheel_3 +yoshi_kart_frame168_wheel0: + symbol: gKartYoshi168Wheel0 + type: texture + offset: 0x3ACAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_168_tlut_wheel_0 +yoshi_kart_frame168_wheel1: + symbol: gKartYoshi168Wheel1 + type: texture + offset: 0x3ACAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_168_tlut_wheel_1 +yoshi_kart_frame168_wheel2: + symbol: gKartYoshi168Wheel2 + type: texture + offset: 0x3ACAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_168_tlut_wheel_2 +yoshi_kart_frame168_wheel3: + symbol: gKartYoshi168Wheel3 + type: texture + offset: 0x3ACAC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_168_tlut_wheel_3 +yoshi_kart_frame169_wheel0: + symbol: gKartYoshi169Wheel0 + type: texture + offset: 0x3B220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_169_tlut_wheel_0 +yoshi_kart_frame169_wheel1: + symbol: gKartYoshi169Wheel1 + type: texture + offset: 0x3B220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_169_tlut_wheel_1 +yoshi_kart_frame169_wheel2: + symbol: gKartYoshi169Wheel2 + type: texture + offset: 0x3B220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_169_tlut_wheel_2 +yoshi_kart_frame169_wheel3: + symbol: gKartYoshi169Wheel3 + type: texture + offset: 0x3B220 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_169_tlut_wheel_3 +yoshi_kart_frame170_wheel0: + symbol: gKartYoshi170Wheel0 + type: texture + offset: 0x3B7B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_170_tlut_wheel_0 +yoshi_kart_frame170_wheel1: + symbol: gKartYoshi170Wheel1 + type: texture + offset: 0x3B7B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_170_tlut_wheel_1 +yoshi_kart_frame170_wheel2: + symbol: gKartYoshi170Wheel2 + type: texture + offset: 0x3B7B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_170_tlut_wheel_2 +yoshi_kart_frame170_wheel3: + symbol: gKartYoshi170Wheel3 + type: texture + offset: 0x3B7B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_170_tlut_wheel_3 +yoshi_kart_frame171_wheel0: + symbol: gKartYoshi171Wheel0 + type: texture + offset: 0x3BD58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_171_tlut_wheel_0 +yoshi_kart_frame171_wheel1: + symbol: gKartYoshi171Wheel1 + type: texture + offset: 0x3BD58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_171_tlut_wheel_1 +yoshi_kart_frame171_wheel2: + symbol: gKartYoshi171Wheel2 + type: texture + offset: 0x3BD58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_171_tlut_wheel_2 +yoshi_kart_frame171_wheel3: + symbol: gKartYoshi171Wheel3 + type: texture + offset: 0x3BD58 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_171_tlut_wheel_3 +yoshi_kart_frame172_wheel0: + symbol: gKartYoshi172Wheel0 + type: texture + offset: 0x3C2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_172_tlut_wheel_0 +yoshi_kart_frame172_wheel1: + symbol: gKartYoshi172Wheel1 + type: texture + offset: 0x3C2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_172_tlut_wheel_1 +yoshi_kart_frame172_wheel2: + symbol: gKartYoshi172Wheel2 + type: texture + offset: 0x3C2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_172_tlut_wheel_2 +yoshi_kart_frame172_wheel3: + symbol: gKartYoshi172Wheel3 + type: texture + offset: 0x3C2F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_172_tlut_wheel_3 +yoshi_kart_frame173_wheel0: + symbol: gKartYoshi173Wheel0 + type: texture + offset: 0x3C890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_173_tlut_wheel_0 +yoshi_kart_frame173_wheel1: + symbol: gKartYoshi173Wheel1 + type: texture + offset: 0x3C890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_173_tlut_wheel_1 +yoshi_kart_frame173_wheel2: + symbol: gKartYoshi173Wheel2 + type: texture + offset: 0x3C890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_173_tlut_wheel_2 +yoshi_kart_frame173_wheel3: + symbol: gKartYoshi173Wheel3 + type: texture + offset: 0x3C890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_173_tlut_wheel_3 +yoshi_kart_frame174_wheel0: + symbol: gKartYoshi174Wheel0 + type: texture + offset: 0x3CE30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_174_tlut_wheel_0 +yoshi_kart_frame174_wheel1: + symbol: gKartYoshi174Wheel1 + type: texture + offset: 0x3CE30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_174_tlut_wheel_1 +yoshi_kart_frame174_wheel2: + symbol: gKartYoshi174Wheel2 + type: texture + offset: 0x3CE30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_174_tlut_wheel_2 +yoshi_kart_frame174_wheel3: + symbol: gKartYoshi174Wheel3 + type: texture + offset: 0x3CE30 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_174_tlut_wheel_3 +yoshi_kart_frame175_wheel0: + symbol: gKartYoshi175Wheel0 + type: texture + offset: 0x3D3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_175_tlut_wheel_0 +yoshi_kart_frame175_wheel1: + symbol: gKartYoshi175Wheel1 + type: texture + offset: 0x3D3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_175_tlut_wheel_1 +yoshi_kart_frame175_wheel2: + symbol: gKartYoshi175Wheel2 + type: texture + offset: 0x3D3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_175_tlut_wheel_2 +yoshi_kart_frame175_wheel3: + symbol: gKartYoshi175Wheel3 + type: texture + offset: 0x3D3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_175_tlut_wheel_3 +yoshi_kart_frame176_wheel0: + symbol: gKartYoshi176Wheel0 + type: texture + offset: 0x3D938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_176_tlut_wheel_0 +yoshi_kart_frame176_wheel1: + symbol: gKartYoshi176Wheel1 + type: texture + offset: 0x3D938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_176_tlut_wheel_1 +yoshi_kart_frame176_wheel2: + symbol: gKartYoshi176Wheel2 + type: texture + offset: 0x3D938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_176_tlut_wheel_2 +yoshi_kart_frame176_wheel3: + symbol: gKartYoshi176Wheel3 + type: texture + offset: 0x3D938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_176_tlut_wheel_3 +yoshi_kart_frame177_wheel0: + symbol: gKartYoshi177Wheel0 + type: texture + offset: 0x3DEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_177_tlut_wheel_0 +yoshi_kart_frame177_wheel1: + symbol: gKartYoshi177Wheel1 + type: texture + offset: 0x3DEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_177_tlut_wheel_1 +yoshi_kart_frame177_wheel2: + symbol: gKartYoshi177Wheel2 + type: texture + offset: 0x3DEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_177_tlut_wheel_2 +yoshi_kart_frame177_wheel3: + symbol: gKartYoshi177Wheel3 + type: texture + offset: 0x3DEC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_177_tlut_wheel_3 +yoshi_kart_frame178_wheel0: + symbol: gKartYoshi178Wheel0 + type: texture + offset: 0x3E454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_178_tlut_wheel_0 +yoshi_kart_frame178_wheel1: + symbol: gKartYoshi178Wheel1 + type: texture + offset: 0x3E454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_178_tlut_wheel_1 +yoshi_kart_frame178_wheel2: + symbol: gKartYoshi178Wheel2 + type: texture + offset: 0x3E454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_178_tlut_wheel_2 +yoshi_kart_frame178_wheel3: + symbol: gKartYoshi178Wheel3 + type: texture + offset: 0x3E454 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_178_tlut_wheel_3 +yoshi_kart_frame179_wheel0: + symbol: gKartYoshi179Wheel0 + type: texture + offset: 0x3E9F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_179_tlut_wheel_0 +yoshi_kart_frame179_wheel1: + symbol: gKartYoshi179Wheel1 + type: texture + offset: 0x3E9F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_179_tlut_wheel_1 +yoshi_kart_frame179_wheel2: + symbol: gKartYoshi179Wheel2 + type: texture + offset: 0x3E9F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_179_tlut_wheel_2 +yoshi_kart_frame179_wheel3: + symbol: gKartYoshi179Wheel3 + type: texture + offset: 0x3E9F0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_179_tlut_wheel_3 +yoshi_kart_frame180_wheel0: + symbol: gKartYoshi180Wheel0 + type: texture + offset: 0x3EF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_180_tlut_wheel_0 +yoshi_kart_frame180_wheel1: + symbol: gKartYoshi180Wheel1 + type: texture + offset: 0x3EF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_180_tlut_wheel_1 +yoshi_kart_frame180_wheel2: + symbol: gKartYoshi180Wheel2 + type: texture + offset: 0x3EF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_180_tlut_wheel_2 +yoshi_kart_frame180_wheel3: + symbol: gKartYoshi180Wheel3 + type: texture + offset: 0x3EF7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_180_tlut_wheel_3 +yoshi_kart_frame181_wheel0: + symbol: gKartYoshi181Wheel0 + type: texture + offset: 0x3F514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_181_tlut_wheel_0 +yoshi_kart_frame181_wheel1: + symbol: gKartYoshi181Wheel1 + type: texture + offset: 0x3F514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_181_tlut_wheel_1 +yoshi_kart_frame181_wheel2: + symbol: gKartYoshi181Wheel2 + type: texture + offset: 0x3F514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_181_tlut_wheel_2 +yoshi_kart_frame181_wheel3: + symbol: gKartYoshi181Wheel3 + type: texture + offset: 0x3F514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_181_tlut_wheel_3 +yoshi_kart_frame182_wheel0: + symbol: gKartYoshi182Wheel0 + type: texture + offset: 0x3FAB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_182_tlut_wheel_0 +yoshi_kart_frame182_wheel1: + symbol: gKartYoshi182Wheel1 + type: texture + offset: 0x3FAB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_182_tlut_wheel_1 +yoshi_kart_frame182_wheel2: + symbol: gKartYoshi182Wheel2 + type: texture + offset: 0x3FAB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_182_tlut_wheel_2 +yoshi_kart_frame182_wheel3: + symbol: gKartYoshi182Wheel3 + type: texture + offset: 0x3FAB8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_182_tlut_wheel_3 +yoshi_kart_frame183_wheel0: + symbol: gKartYoshi183Wheel0 + type: texture + offset: 0x40068 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_183_tlut_wheel_0 +yoshi_kart_frame183_wheel1: + symbol: gKartYoshi183Wheel1 + type: texture + offset: 0x40068 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_183_tlut_wheel_1 +yoshi_kart_frame183_wheel2: + symbol: gKartYoshi183Wheel2 + type: texture + offset: 0x40068 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_183_tlut_wheel_2 +yoshi_kart_frame183_wheel3: + symbol: gKartYoshi183Wheel3 + type: texture + offset: 0x40068 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_183_tlut_wheel_3 +yoshi_kart_frame184_wheel0: + symbol: gKartYoshi184Wheel0 + type: texture + offset: 0x4064C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_184_tlut_wheel_0 +yoshi_kart_frame184_wheel1: + symbol: gKartYoshi184Wheel1 + type: texture + offset: 0x4064C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_184_tlut_wheel_1 +yoshi_kart_frame184_wheel2: + symbol: gKartYoshi184Wheel2 + type: texture + offset: 0x4064C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_184_tlut_wheel_2 +yoshi_kart_frame184_wheel3: + symbol: gKartYoshi184Wheel3 + type: texture + offset: 0x4064C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_184_tlut_wheel_3 +yoshi_kart_frame185_wheel0: + symbol: gKartYoshi185Wheel0 + type: texture + offset: 0x40C38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_185_tlut_wheel_0 +yoshi_kart_frame185_wheel1: + symbol: gKartYoshi185Wheel1 + type: texture + offset: 0x40C38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_185_tlut_wheel_1 +yoshi_kart_frame185_wheel2: + symbol: gKartYoshi185Wheel2 + type: texture + offset: 0x40C38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_185_tlut_wheel_2 +yoshi_kart_frame185_wheel3: + symbol: gKartYoshi185Wheel3 + type: texture + offset: 0x40C38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_185_tlut_wheel_3 +yoshi_kart_frame186_wheel0: + symbol: gKartYoshi186Wheel0 + type: texture + offset: 0x41264 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_186_tlut_wheel_0 +yoshi_kart_frame186_wheel1: + symbol: gKartYoshi186Wheel1 + type: texture + offset: 0x41264 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_186_tlut_wheel_1 +yoshi_kart_frame186_wheel2: + symbol: gKartYoshi186Wheel2 + type: texture + offset: 0x41264 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_186_tlut_wheel_2 +yoshi_kart_frame186_wheel3: + symbol: gKartYoshi186Wheel3 + type: texture + offset: 0x41264 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_186_tlut_wheel_3 +yoshi_kart_frame187_wheel0: + symbol: gKartYoshi187Wheel0 + type: texture + offset: 0x418C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_187_tlut_wheel_0 +yoshi_kart_frame187_wheel1: + symbol: gKartYoshi187Wheel1 + type: texture + offset: 0x418C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_187_tlut_wheel_1 +yoshi_kart_frame187_wheel2: + symbol: gKartYoshi187Wheel2 + type: texture + offset: 0x418C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_187_tlut_wheel_2 +yoshi_kart_frame187_wheel3: + symbol: gKartYoshi187Wheel3 + type: texture + offset: 0x418C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_187_tlut_wheel_3 +yoshi_kart_frame188_wheel0: + symbol: gKartYoshi188Wheel0 + type: texture + offset: 0x41F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_188_tlut_wheel_0 +yoshi_kart_frame188_wheel1: + symbol: gKartYoshi188Wheel1 + type: texture + offset: 0x41F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_188_tlut_wheel_1 +yoshi_kart_frame188_wheel2: + symbol: gKartYoshi188Wheel2 + type: texture + offset: 0x41F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_188_tlut_wheel_2 +yoshi_kart_frame188_wheel3: + symbol: gKartYoshi188Wheel3 + type: texture + offset: 0x41F40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_188_tlut_wheel_3 +yoshi_kart_frame189_wheel0: + symbol: gKartYoshi189Wheel0 + type: texture + offset: 0x425B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_189_tlut_wheel_0 +yoshi_kart_frame189_wheel1: + symbol: gKartYoshi189Wheel1 + type: texture + offset: 0x425B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_189_tlut_wheel_1 +yoshi_kart_frame189_wheel2: + symbol: gKartYoshi189Wheel2 + type: texture + offset: 0x425B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_189_tlut_wheel_2 +yoshi_kart_frame189_wheel3: + symbol: gKartYoshi189Wheel3 + type: texture + offset: 0x425B4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_189_tlut_wheel_3 +yoshi_kart_frame190_wheel0: + symbol: gKartYoshi190Wheel0 + type: texture + offset: 0x42AB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_190_tlut_wheel_0 +yoshi_kart_frame190_wheel1: + symbol: gKartYoshi190Wheel1 + type: texture + offset: 0x42AB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_190_tlut_wheel_1 +yoshi_kart_frame190_wheel2: + symbol: gKartYoshi190Wheel2 + type: texture + offset: 0x42AB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_190_tlut_wheel_2 +yoshi_kart_frame190_wheel3: + symbol: gKartYoshi190Wheel3 + type: texture + offset: 0x42AB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_190_tlut_wheel_3 +yoshi_kart_frame191_wheel0: + symbol: gKartYoshi191Wheel0 + type: texture + offset: 0x42FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_191_tlut_wheel_0 +yoshi_kart_frame191_wheel1: + symbol: gKartYoshi191Wheel1 + type: texture + offset: 0x42FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_191_tlut_wheel_1 +yoshi_kart_frame191_wheel2: + symbol: gKartYoshi191Wheel2 + type: texture + offset: 0x42FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_191_tlut_wheel_2 +yoshi_kart_frame191_wheel3: + symbol: gKartYoshi191Wheel3 + type: texture + offset: 0x42FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_191_tlut_wheel_3 +yoshi_kart_frame192_wheel0: + symbol: gKartYoshi192Wheel0 + type: texture + offset: 0x43544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_192_tlut_wheel_0 +yoshi_kart_frame192_wheel1: + symbol: gKartYoshi192Wheel1 + type: texture + offset: 0x43544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_192_tlut_wheel_1 +yoshi_kart_frame192_wheel2: + symbol: gKartYoshi192Wheel2 + type: texture + offset: 0x43544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_192_tlut_wheel_2 +yoshi_kart_frame192_wheel3: + symbol: gKartYoshi192Wheel3 + type: texture + offset: 0x43544 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_192_tlut_wheel_3 +yoshi_kart_frame193_wheel0: + symbol: gKartYoshi193Wheel0 + type: texture + offset: 0x43AD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_193_tlut_wheel_0 +yoshi_kart_frame193_wheel1: + symbol: gKartYoshi193Wheel1 + type: texture + offset: 0x43AD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_193_tlut_wheel_1 +yoshi_kart_frame193_wheel2: + symbol: gKartYoshi193Wheel2 + type: texture + offset: 0x43AD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_193_tlut_wheel_2 +yoshi_kart_frame193_wheel3: + symbol: gKartYoshi193Wheel3 + type: texture + offset: 0x43AD8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_193_tlut_wheel_3 +yoshi_kart_frame194_wheel0: + symbol: gKartYoshi194Wheel0 + type: texture + offset: 0x4409C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_194_tlut_wheel_0 +yoshi_kart_frame194_wheel1: + symbol: gKartYoshi194Wheel1 + type: texture + offset: 0x4409C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_194_tlut_wheel_1 +yoshi_kart_frame194_wheel2: + symbol: gKartYoshi194Wheel2 + type: texture + offset: 0x4409C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_194_tlut_wheel_2 +yoshi_kart_frame194_wheel3: + symbol: gKartYoshi194Wheel3 + type: texture + offset: 0x4409C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_194_tlut_wheel_3 +yoshi_kart_frame195_wheel0: + symbol: gKartYoshi195Wheel0 + type: texture + offset: 0x44694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_195_tlut_wheel_0 +yoshi_kart_frame195_wheel1: + symbol: gKartYoshi195Wheel1 + type: texture + offset: 0x44694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_195_tlut_wheel_1 +yoshi_kart_frame195_wheel2: + symbol: gKartYoshi195Wheel2 + type: texture + offset: 0x44694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_195_tlut_wheel_2 +yoshi_kart_frame195_wheel3: + symbol: gKartYoshi195Wheel3 + type: texture + offset: 0x44694 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_195_tlut_wheel_3 +yoshi_kart_frame196_wheel0: + symbol: gKartYoshi196Wheel0 + type: texture + offset: 0x44CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_196_tlut_wheel_0 +yoshi_kart_frame196_wheel1: + symbol: gKartYoshi196Wheel1 + type: texture + offset: 0x44CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_196_tlut_wheel_1 +yoshi_kart_frame196_wheel2: + symbol: gKartYoshi196Wheel2 + type: texture + offset: 0x44CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_196_tlut_wheel_2 +yoshi_kart_frame196_wheel3: + symbol: gKartYoshi196Wheel3 + type: texture + offset: 0x44CB4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_196_tlut_wheel_3 +yoshi_kart_frame197_wheel0: + symbol: gKartYoshi197Wheel0 + type: texture + offset: 0x45300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_197_tlut_wheel_0 +yoshi_kart_frame197_wheel1: + symbol: gKartYoshi197Wheel1 + type: texture + offset: 0x45300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_197_tlut_wheel_1 +yoshi_kart_frame197_wheel2: + symbol: gKartYoshi197Wheel2 + type: texture + offset: 0x45300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_197_tlut_wheel_2 +yoshi_kart_frame197_wheel3: + symbol: gKartYoshi197Wheel3 + type: texture + offset: 0x45300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_197_tlut_wheel_3 +yoshi_kart_frame198_wheel0: + symbol: gKartYoshi198Wheel0 + type: texture + offset: 0x4596C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_198_tlut_wheel_0 +yoshi_kart_frame198_wheel1: + symbol: gKartYoshi198Wheel1 + type: texture + offset: 0x4596C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_198_tlut_wheel_1 +yoshi_kart_frame198_wheel2: + symbol: gKartYoshi198Wheel2 + type: texture + offset: 0x4596C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_198_tlut_wheel_2 +yoshi_kart_frame198_wheel3: + symbol: gKartYoshi198Wheel3 + type: texture + offset: 0x4596C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_198_tlut_wheel_3 +yoshi_kart_frame199_wheel0: + symbol: gKartYoshi199Wheel0 + type: texture + offset: 0x45FEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_199_tlut_wheel_0 +yoshi_kart_frame199_wheel1: + symbol: gKartYoshi199Wheel1 + type: texture + offset: 0x45FEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_199_tlut_wheel_1 +yoshi_kart_frame199_wheel2: + symbol: gKartYoshi199Wheel2 + type: texture + offset: 0x45FEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_199_tlut_wheel_2 +yoshi_kart_frame199_wheel3: + symbol: gKartYoshi199Wheel3 + type: texture + offset: 0x45FEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_199_tlut_wheel_3 +yoshi_kart_frame200_wheel0: + symbol: gKartYoshi200Wheel0 + type: texture + offset: 0x46674 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_200_tlut_wheel_0 +yoshi_kart_frame200_wheel1: + symbol: gKartYoshi200Wheel1 + type: texture + offset: 0x46674 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_200_tlut_wheel_1 +yoshi_kart_frame200_wheel2: + symbol: gKartYoshi200Wheel2 + type: texture + offset: 0x46674 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_200_tlut_wheel_2 +yoshi_kart_frame200_wheel3: + symbol: gKartYoshi200Wheel3 + type: texture + offset: 0x46674 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_200_tlut_wheel_3 +yoshi_kart_frame201_wheel0: + symbol: gKartYoshi201Wheel0 + type: texture + offset: 0x46D18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_201_tlut_wheel_0 +yoshi_kart_frame201_wheel1: + symbol: gKartYoshi201Wheel1 + type: texture + offset: 0x46D18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_201_tlut_wheel_1 +yoshi_kart_frame201_wheel2: + symbol: gKartYoshi201Wheel2 + type: texture + offset: 0x46D18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_201_tlut_wheel_2 +yoshi_kart_frame201_wheel3: + symbol: gKartYoshi201Wheel3 + type: texture + offset: 0x46D18 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_201_tlut_wheel_3 +yoshi_kart_frame202_wheel0: + symbol: gKartYoshi202Wheel0 + type: texture + offset: 0x473D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_202_tlut_wheel_0 +yoshi_kart_frame202_wheel1: + symbol: gKartYoshi202Wheel1 + type: texture + offset: 0x473D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_202_tlut_wheel_1 +yoshi_kart_frame202_wheel2: + symbol: gKartYoshi202Wheel2 + type: texture + offset: 0x473D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_202_tlut_wheel_2 +yoshi_kart_frame202_wheel3: + symbol: gKartYoshi202Wheel3 + type: texture + offset: 0x473D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_202_tlut_wheel_3 +yoshi_kart_frame203_wheel0: + symbol: gKartYoshi203Wheel0 + type: texture + offset: 0x47A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_203_tlut_wheel_0 +yoshi_kart_frame203_wheel1: + symbol: gKartYoshi203Wheel1 + type: texture + offset: 0x47A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_203_tlut_wheel_1 +yoshi_kart_frame203_wheel2: + symbol: gKartYoshi203Wheel2 + type: texture + offset: 0x47A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_203_tlut_wheel_2 +yoshi_kart_frame203_wheel3: + symbol: gKartYoshi203Wheel3 + type: texture + offset: 0x47A74 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_203_tlut_wheel_3 +yoshi_kart_frame204_wheel0: + symbol: gKartYoshi204Wheel0 + type: texture + offset: 0x48108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_204_tlut_wheel_0 +yoshi_kart_frame204_wheel1: + symbol: gKartYoshi204Wheel1 + type: texture + offset: 0x48108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_204_tlut_wheel_1 +yoshi_kart_frame204_wheel2: + symbol: gKartYoshi204Wheel2 + type: texture + offset: 0x48108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_204_tlut_wheel_2 +yoshi_kart_frame204_wheel3: + symbol: gKartYoshi204Wheel3 + type: texture + offset: 0x48108 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_204_tlut_wheel_3 +yoshi_kart_frame205_wheel0: + symbol: gKartYoshi205Wheel0 + type: texture + offset: 0x4877C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_205_tlut_wheel_0 +yoshi_kart_frame205_wheel1: + symbol: gKartYoshi205Wheel1 + type: texture + offset: 0x4877C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_205_tlut_wheel_1 +yoshi_kart_frame205_wheel2: + symbol: gKartYoshi205Wheel2 + type: texture + offset: 0x4877C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_205_tlut_wheel_2 +yoshi_kart_frame205_wheel3: + symbol: gKartYoshi205Wheel3 + type: texture + offset: 0x4877C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_205_tlut_wheel_3 +yoshi_kart_frame206_wheel0: + symbol: gKartYoshi206Wheel0 + type: texture + offset: 0x48DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_206_tlut_wheel_0 +yoshi_kart_frame206_wheel1: + symbol: gKartYoshi206Wheel1 + type: texture + offset: 0x48DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_206_tlut_wheel_1 +yoshi_kart_frame206_wheel2: + symbol: gKartYoshi206Wheel2 + type: texture + offset: 0x48DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_206_tlut_wheel_2 +yoshi_kart_frame206_wheel3: + symbol: gKartYoshi206Wheel3 + type: texture + offset: 0x48DC0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_206_tlut_wheel_3 +yoshi_kart_frame207_wheel0: + symbol: gKartYoshi207Wheel0 + type: texture + offset: 0x493C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_207_tlut_wheel_0 +yoshi_kart_frame207_wheel1: + symbol: gKartYoshi207Wheel1 + type: texture + offset: 0x493C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_207_tlut_wheel_1 +yoshi_kart_frame207_wheel2: + symbol: gKartYoshi207Wheel2 + type: texture + offset: 0x493C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_207_tlut_wheel_2 +yoshi_kart_frame207_wheel3: + symbol: gKartYoshi207Wheel3 + type: texture + offset: 0x493C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_207_tlut_wheel_3 +yoshi_kart_frame208_wheel0: + symbol: gKartYoshi208Wheel0 + type: texture + offset: 0x499A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_208_tlut_wheel_0 +yoshi_kart_frame208_wheel1: + symbol: gKartYoshi208Wheel1 + type: texture + offset: 0x499A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_208_tlut_wheel_1 +yoshi_kart_frame208_wheel2: + symbol: gKartYoshi208Wheel2 + type: texture + offset: 0x499A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_208_tlut_wheel_2 +yoshi_kart_frame208_wheel3: + symbol: gKartYoshi208Wheel3 + type: texture + offset: 0x499A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_208_tlut_wheel_3 +yoshi_kart_frame209_wheel0: + symbol: gKartYoshi209Wheel0 + type: texture + offset: 0x49F5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_209_tlut_wheel_0 +yoshi_kart_frame209_wheel1: + symbol: gKartYoshi209Wheel1 + type: texture + offset: 0x49F5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_209_tlut_wheel_1 +yoshi_kart_frame209_wheel2: + symbol: gKartYoshi209Wheel2 + type: texture + offset: 0x49F5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_209_tlut_wheel_2 +yoshi_kart_frame209_wheel3: + symbol: gKartYoshi209Wheel3 + type: texture + offset: 0x49F5C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_209_tlut_wheel_3 +yoshi_kart_frame210_wheel0: + symbol: gKartYoshi210Wheel0 + type: texture + offset: 0x4A484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_210_tlut_wheel_0 +yoshi_kart_frame210_wheel1: + symbol: gKartYoshi210Wheel1 + type: texture + offset: 0x4A484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_210_tlut_wheel_1 +yoshi_kart_frame210_wheel2: + symbol: gKartYoshi210Wheel2 + type: texture + offset: 0x4A484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_210_tlut_wheel_2 +yoshi_kart_frame210_wheel3: + symbol: gKartYoshi210Wheel3 + type: texture + offset: 0x4A484 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_210_tlut_wheel_3 +yoshi_kart_frame211_wheel0: + symbol: gKartYoshi211Wheel0 + type: texture + offset: 0x4A9EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_211_tlut_wheel_0 +yoshi_kart_frame211_wheel1: + symbol: gKartYoshi211Wheel1 + type: texture + offset: 0x4A9EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_211_tlut_wheel_1 +yoshi_kart_frame211_wheel2: + symbol: gKartYoshi211Wheel2 + type: texture + offset: 0x4A9EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_211_tlut_wheel_2 +yoshi_kart_frame211_wheel3: + symbol: gKartYoshi211Wheel3 + type: texture + offset: 0x4A9EC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_211_tlut_wheel_3 +yoshi_kart_frame212_wheel0: + symbol: gKartYoshi212Wheel0 + type: texture + offset: 0x4AFA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_212_tlut_wheel_0 +yoshi_kart_frame212_wheel1: + symbol: gKartYoshi212Wheel1 + type: texture + offset: 0x4AFA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_212_tlut_wheel_1 +yoshi_kart_frame212_wheel2: + symbol: gKartYoshi212Wheel2 + type: texture + offset: 0x4AFA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_212_tlut_wheel_2 +yoshi_kart_frame212_wheel3: + symbol: gKartYoshi212Wheel3 + type: texture + offset: 0x4AFA0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_212_tlut_wheel_3 +yoshi_kart_frame213_wheel0: + symbol: gKartYoshi213Wheel0 + type: texture + offset: 0x4B574 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_213_tlut_wheel_0 +yoshi_kart_frame213_wheel1: + symbol: gKartYoshi213Wheel1 + type: texture + offset: 0x4B574 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_213_tlut_wheel_1 +yoshi_kart_frame213_wheel2: + symbol: gKartYoshi213Wheel2 + type: texture + offset: 0x4B574 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_213_tlut_wheel_2 +yoshi_kart_frame213_wheel3: + symbol: gKartYoshi213Wheel3 + type: texture + offset: 0x4B574 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_213_tlut_wheel_3 +yoshi_kart_frame214_wheel0: + symbol: gKartYoshi214Wheel0 + type: texture + offset: 0x4BB7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_214_tlut_wheel_0 +yoshi_kart_frame214_wheel1: + symbol: gKartYoshi214Wheel1 + type: texture + offset: 0x4BB7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_214_tlut_wheel_1 +yoshi_kart_frame214_wheel2: + symbol: gKartYoshi214Wheel2 + type: texture + offset: 0x4BB7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_214_tlut_wheel_2 +yoshi_kart_frame214_wheel3: + symbol: gKartYoshi214Wheel3 + type: texture + offset: 0x4BB7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_214_tlut_wheel_3 +yoshi_kart_frame215_wheel0: + symbol: gKartYoshi215Wheel0 + type: texture + offset: 0x4C1A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_215_tlut_wheel_0 +yoshi_kart_frame215_wheel1: + symbol: gKartYoshi215Wheel1 + type: texture + offset: 0x4C1A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_215_tlut_wheel_1 +yoshi_kart_frame215_wheel2: + symbol: gKartYoshi215Wheel2 + type: texture + offset: 0x4C1A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_215_tlut_wheel_2 +yoshi_kart_frame215_wheel3: + symbol: gKartYoshi215Wheel3 + type: texture + offset: 0x4C1A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_215_tlut_wheel_3 +yoshi_kart_frame216_wheel0: + symbol: gKartYoshi216Wheel0 + type: texture + offset: 0x4C7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_216_tlut_wheel_0 +yoshi_kart_frame216_wheel1: + symbol: gKartYoshi216Wheel1 + type: texture + offset: 0x4C7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_216_tlut_wheel_1 +yoshi_kart_frame216_wheel2: + symbol: gKartYoshi216Wheel2 + type: texture + offset: 0x4C7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_216_tlut_wheel_2 +yoshi_kart_frame216_wheel3: + symbol: gKartYoshi216Wheel3 + type: texture + offset: 0x4C7F8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_216_tlut_wheel_3 +yoshi_kart_frame217_wheel0: + symbol: gKartYoshi217Wheel0 + type: texture + offset: 0x4CE40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_217_tlut_wheel_0 +yoshi_kart_frame217_wheel1: + symbol: gKartYoshi217Wheel1 + type: texture + offset: 0x4CE40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_217_tlut_wheel_1 +yoshi_kart_frame217_wheel2: + symbol: gKartYoshi217Wheel2 + type: texture + offset: 0x4CE40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_217_tlut_wheel_2 +yoshi_kart_frame217_wheel3: + symbol: gKartYoshi217Wheel3 + type: texture + offset: 0x4CE40 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_217_tlut_wheel_3 +yoshi_kart_frame218_wheel0: + symbol: gKartYoshi218Wheel0 + type: texture + offset: 0x4D4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_218_tlut_wheel_0 +yoshi_kart_frame218_wheel1: + symbol: gKartYoshi218Wheel1 + type: texture + offset: 0x4D4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_218_tlut_wheel_1 +yoshi_kart_frame218_wheel2: + symbol: gKartYoshi218Wheel2 + type: texture + offset: 0x4D4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_218_tlut_wheel_2 +yoshi_kart_frame218_wheel3: + symbol: gKartYoshi218Wheel3 + type: texture + offset: 0x4D4B0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_218_tlut_wheel_3 +yoshi_kart_frame219_wheel0: + symbol: gKartYoshi219Wheel0 + type: texture + offset: 0x4DB2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_219_tlut_wheel_0 +yoshi_kart_frame219_wheel1: + symbol: gKartYoshi219Wheel1 + type: texture + offset: 0x4DB2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_219_tlut_wheel_1 +yoshi_kart_frame219_wheel2: + symbol: gKartYoshi219Wheel2 + type: texture + offset: 0x4DB2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_219_tlut_wheel_2 +yoshi_kart_frame219_wheel3: + symbol: gKartYoshi219Wheel3 + type: texture + offset: 0x4DB2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_219_tlut_wheel_3 +yoshi_kart_frame220_wheel0: + symbol: gKartYoshi220Wheel0 + type: texture + offset: 0x4E1AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_220_tlut_wheel_0 +yoshi_kart_frame220_wheel1: + symbol: gKartYoshi220Wheel1 + type: texture + offset: 0x4E1AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_220_tlut_wheel_1 +yoshi_kart_frame220_wheel2: + symbol: gKartYoshi220Wheel2 + type: texture + offset: 0x4E1AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_220_tlut_wheel_2 +yoshi_kart_frame220_wheel3: + symbol: gKartYoshi220Wheel3 + type: texture + offset: 0x4E1AC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_220_tlut_wheel_3 +yoshi_kart_frame221_wheel0: + symbol: gKartYoshi221Wheel0 + type: texture + offset: 0x4E83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_221_tlut_wheel_0 +yoshi_kart_frame221_wheel1: + symbol: gKartYoshi221Wheel1 + type: texture + offset: 0x4E83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_221_tlut_wheel_1 +yoshi_kart_frame221_wheel2: + symbol: gKartYoshi221Wheel2 + type: texture + offset: 0x4E83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_221_tlut_wheel_2 +yoshi_kart_frame221_wheel3: + symbol: gKartYoshi221Wheel3 + type: texture + offset: 0x4E83C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_221_tlut_wheel_3 +yoshi_kart_frame222_wheel0: + symbol: gKartYoshi222Wheel0 + type: texture + offset: 0x4EED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_222_tlut_wheel_0 +yoshi_kart_frame222_wheel1: + symbol: gKartYoshi222Wheel1 + type: texture + offset: 0x4EED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_222_tlut_wheel_1 +yoshi_kart_frame222_wheel2: + symbol: gKartYoshi222Wheel2 + type: texture + offset: 0x4EED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_222_tlut_wheel_2 +yoshi_kart_frame222_wheel3: + symbol: gKartYoshi222Wheel3 + type: texture + offset: 0x4EED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_222_tlut_wheel_3 +yoshi_kart_frame223_wheel0: + symbol: gKartYoshi223Wheel0 + type: texture + offset: 0x4F54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_223_tlut_wheel_0 +yoshi_kart_frame223_wheel1: + symbol: gKartYoshi223Wheel1 + type: texture + offset: 0x4F54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_223_tlut_wheel_1 +yoshi_kart_frame223_wheel2: + symbol: gKartYoshi223Wheel2 + type: texture + offset: 0x4F54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_223_tlut_wheel_2 +yoshi_kart_frame223_wheel3: + symbol: gKartYoshi223Wheel3 + type: texture + offset: 0x4F54C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_223_tlut_wheel_3 +yoshi_kart_frame224_wheel0: + symbol: gKartYoshi224Wheel0 + type: texture + offset: 0x4FB94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_224_tlut_wheel_0 +yoshi_kart_frame224_wheel1: + symbol: gKartYoshi224Wheel1 + type: texture + offset: 0x4FB94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_224_tlut_wheel_1 +yoshi_kart_frame224_wheel2: + symbol: gKartYoshi224Wheel2 + type: texture + offset: 0x4FB94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_224_tlut_wheel_2 +yoshi_kart_frame224_wheel3: + symbol: gKartYoshi224Wheel3 + type: texture + offset: 0x4FB94 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_224_tlut_wheel_3 +yoshi_kart_frame225_wheel0: + symbol: gKartYoshi225Wheel0 + type: texture + offset: 0x501C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_225_tlut_wheel_0 +yoshi_kart_frame225_wheel1: + symbol: gKartYoshi225Wheel1 + type: texture + offset: 0x501C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_225_tlut_wheel_1 +yoshi_kart_frame225_wheel2: + symbol: gKartYoshi225Wheel2 + type: texture + offset: 0x501C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_225_tlut_wheel_2 +yoshi_kart_frame225_wheel3: + symbol: gKartYoshi225Wheel3 + type: texture + offset: 0x501C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_225_tlut_wheel_3 +yoshi_kart_frame226_wheel0: + symbol: gKartYoshi226Wheel0 + type: texture + offset: 0x507B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_226_tlut_wheel_0 +yoshi_kart_frame226_wheel1: + symbol: gKartYoshi226Wheel1 + type: texture + offset: 0x507B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_226_tlut_wheel_1 +yoshi_kart_frame226_wheel2: + symbol: gKartYoshi226Wheel2 + type: texture + offset: 0x507B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_226_tlut_wheel_2 +yoshi_kart_frame226_wheel3: + symbol: gKartYoshi226Wheel3 + type: texture + offset: 0x507B8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_226_tlut_wheel_3 +yoshi_kart_frame227_wheel0: + symbol: gKartYoshi227Wheel0 + type: texture + offset: 0x50D78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_227_tlut_wheel_0 +yoshi_kart_frame227_wheel1: + symbol: gKartYoshi227Wheel1 + type: texture + offset: 0x50D78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_227_tlut_wheel_1 +yoshi_kart_frame227_wheel2: + symbol: gKartYoshi227Wheel2 + type: texture + offset: 0x50D78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_227_tlut_wheel_2 +yoshi_kart_frame227_wheel3: + symbol: gKartYoshi227Wheel3 + type: texture + offset: 0x50D78 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_227_tlut_wheel_3 +yoshi_kart_frame228_wheel0: + symbol: gKartYoshi228Wheel0 + type: texture + offset: 0x51300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_228_tlut_wheel_0 +yoshi_kart_frame228_wheel1: + symbol: gKartYoshi228Wheel1 + type: texture + offset: 0x51300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_228_tlut_wheel_1 +yoshi_kart_frame228_wheel2: + symbol: gKartYoshi228Wheel2 + type: texture + offset: 0x51300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_228_tlut_wheel_2 +yoshi_kart_frame228_wheel3: + symbol: gKartYoshi228Wheel3 + type: texture + offset: 0x51300 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_228_tlut_wheel_3 +yoshi_kart_frame229_wheel0: + symbol: gKartYoshi229Wheel0 + type: texture + offset: 0x51858 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_229_tlut_wheel_0 +yoshi_kart_frame229_wheel1: + symbol: gKartYoshi229Wheel1 + type: texture + offset: 0x51858 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_229_tlut_wheel_1 +yoshi_kart_frame229_wheel2: + symbol: gKartYoshi229Wheel2 + type: texture + offset: 0x51858 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_229_tlut_wheel_2 +yoshi_kart_frame229_wheel3: + symbol: gKartYoshi229Wheel3 + type: texture + offset: 0x51858 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_229_tlut_wheel_3 +yoshi_kart_frame230_wheel0: + symbol: gKartYoshi230Wheel0 + type: texture + offset: 0x51DA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_230_tlut_wheel_0 +yoshi_kart_frame230_wheel1: + symbol: gKartYoshi230Wheel1 + type: texture + offset: 0x51DA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_230_tlut_wheel_1 +yoshi_kart_frame230_wheel2: + symbol: gKartYoshi230Wheel2 + type: texture + offset: 0x51DA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_230_tlut_wheel_2 +yoshi_kart_frame230_wheel3: + symbol: gKartYoshi230Wheel3 + type: texture + offset: 0x51DA4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_230_tlut_wheel_3 +yoshi_kart_frame231_wheel0: + symbol: gKartYoshi231Wheel0 + type: texture + offset: 0x52334 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_231_tlut_wheel_0 +yoshi_kart_frame231_wheel1: + symbol: gKartYoshi231Wheel1 + type: texture + offset: 0x52334 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_231_tlut_wheel_1 +yoshi_kart_frame231_wheel2: + symbol: gKartYoshi231Wheel2 + type: texture + offset: 0x52334 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_231_tlut_wheel_2 +yoshi_kart_frame231_wheel3: + symbol: gKartYoshi231Wheel3 + type: texture + offset: 0x52334 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_231_tlut_wheel_3 +yoshi_kart_frame232_wheel0: + symbol: gKartYoshi232Wheel0 + type: texture + offset: 0x528F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_232_tlut_wheel_0 +yoshi_kart_frame232_wheel1: + symbol: gKartYoshi232Wheel1 + type: texture + offset: 0x528F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_232_tlut_wheel_1 +yoshi_kart_frame232_wheel2: + symbol: gKartYoshi232Wheel2 + type: texture + offset: 0x528F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_232_tlut_wheel_2 +yoshi_kart_frame232_wheel3: + symbol: gKartYoshi232Wheel3 + type: texture + offset: 0x528F4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_232_tlut_wheel_3 +yoshi_kart_frame233_wheel0: + symbol: gKartYoshi233Wheel0 + type: texture + offset: 0x52EFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_233_tlut_wheel_0 +yoshi_kart_frame233_wheel1: + symbol: gKartYoshi233Wheel1 + type: texture + offset: 0x52EFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_233_tlut_wheel_1 +yoshi_kart_frame233_wheel2: + symbol: gKartYoshi233Wheel2 + type: texture + offset: 0x52EFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_233_tlut_wheel_2 +yoshi_kart_frame233_wheel3: + symbol: gKartYoshi233Wheel3 + type: texture + offset: 0x52EFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_233_tlut_wheel_3 +yoshi_kart_frame234_wheel0: + symbol: gKartYoshi234Wheel0 + type: texture + offset: 0x53508 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_234_tlut_wheel_0 +yoshi_kart_frame234_wheel1: + symbol: gKartYoshi234Wheel1 + type: texture + offset: 0x53508 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_234_tlut_wheel_1 +yoshi_kart_frame234_wheel2: + symbol: gKartYoshi234Wheel2 + type: texture + offset: 0x53508 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_234_tlut_wheel_2 +yoshi_kart_frame234_wheel3: + symbol: gKartYoshi234Wheel3 + type: texture + offset: 0x53508 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_234_tlut_wheel_3 +yoshi_kart_frame235_wheel0: + symbol: gKartYoshi235Wheel0 + type: texture + offset: 0x53B34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_235_tlut_wheel_0 +yoshi_kart_frame235_wheel1: + symbol: gKartYoshi235Wheel1 + type: texture + offset: 0x53B34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_235_tlut_wheel_1 +yoshi_kart_frame235_wheel2: + symbol: gKartYoshi235Wheel2 + type: texture + offset: 0x53B34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_235_tlut_wheel_2 +yoshi_kart_frame235_wheel3: + symbol: gKartYoshi235Wheel3 + type: texture + offset: 0x53B34 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_235_tlut_wheel_3 +yoshi_kart_frame236_wheel0: + symbol: gKartYoshi236Wheel0 + type: texture + offset: 0x541A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_236_tlut_wheel_0 +yoshi_kart_frame236_wheel1: + symbol: gKartYoshi236Wheel1 + type: texture + offset: 0x541A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_236_tlut_wheel_1 +yoshi_kart_frame236_wheel2: + symbol: gKartYoshi236Wheel2 + type: texture + offset: 0x541A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_236_tlut_wheel_2 +yoshi_kart_frame236_wheel3: + symbol: gKartYoshi236Wheel3 + type: texture + offset: 0x541A0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_236_tlut_wheel_3 +yoshi_kart_frame237_wheel0: + symbol: gKartYoshi237Wheel0 + type: texture + offset: 0x54814 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_237_tlut_wheel_0 +yoshi_kart_frame237_wheel1: + symbol: gKartYoshi237Wheel1 + type: texture + offset: 0x54814 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_237_tlut_wheel_1 +yoshi_kart_frame237_wheel2: + symbol: gKartYoshi237Wheel2 + type: texture + offset: 0x54814 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_237_tlut_wheel_2 +yoshi_kart_frame237_wheel3: + symbol: gKartYoshi237Wheel3 + type: texture + offset: 0x54814 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_237_tlut_wheel_3 +yoshi_kart_frame238_wheel0: + symbol: gKartYoshi238Wheel0 + type: texture + offset: 0x54E90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_238_tlut_wheel_0 +yoshi_kart_frame238_wheel1: + symbol: gKartYoshi238Wheel1 + type: texture + offset: 0x54E90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_238_tlut_wheel_1 +yoshi_kart_frame238_wheel2: + symbol: gKartYoshi238Wheel2 + type: texture + offset: 0x54E90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_238_tlut_wheel_2 +yoshi_kart_frame238_wheel3: + symbol: gKartYoshi238Wheel3 + type: texture + offset: 0x54E90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_238_tlut_wheel_3 +yoshi_kart_frame239_wheel0: + symbol: gKartYoshi239Wheel0 + type: texture + offset: 0x55514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_239_tlut_wheel_0 +yoshi_kart_frame239_wheel1: + symbol: gKartYoshi239Wheel1 + type: texture + offset: 0x55514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_239_tlut_wheel_1 +yoshi_kart_frame239_wheel2: + symbol: gKartYoshi239Wheel2 + type: texture + offset: 0x55514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_239_tlut_wheel_2 +yoshi_kart_frame239_wheel3: + symbol: gKartYoshi239Wheel3 + type: texture + offset: 0x55514 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_239_tlut_wheel_3 +yoshi_kart_frame240_wheel0: + symbol: gKartYoshi240Wheel0 + type: texture + offset: 0x55B90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_240_tlut_wheel_0 +yoshi_kart_frame240_wheel1: + symbol: gKartYoshi240Wheel1 + type: texture + offset: 0x55B90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_240_tlut_wheel_1 +yoshi_kart_frame240_wheel2: + symbol: gKartYoshi240Wheel2 + type: texture + offset: 0x55B90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_240_tlut_wheel_2 +yoshi_kart_frame240_wheel3: + symbol: gKartYoshi240Wheel3 + type: texture + offset: 0x55B90 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_240_tlut_wheel_3 +yoshi_kart_frame241_wheel0: + symbol: gKartYoshi241Wheel0 + type: texture + offset: 0x5621C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_241_tlut_wheel_0 +yoshi_kart_frame241_wheel1: + symbol: gKartYoshi241Wheel1 + type: texture + offset: 0x5621C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_241_tlut_wheel_1 +yoshi_kart_frame241_wheel2: + symbol: gKartYoshi241Wheel2 + type: texture + offset: 0x5621C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_241_tlut_wheel_2 +yoshi_kart_frame241_wheel3: + symbol: gKartYoshi241Wheel3 + type: texture + offset: 0x5621C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_241_tlut_wheel_3 +yoshi_kart_frame242_wheel0: + symbol: gKartYoshi242Wheel0 + type: texture + offset: 0x56880 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_242_tlut_wheel_0 +yoshi_kart_frame242_wheel1: + symbol: gKartYoshi242Wheel1 + type: texture + offset: 0x56880 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_242_tlut_wheel_1 +yoshi_kart_frame242_wheel2: + symbol: gKartYoshi242Wheel2 + type: texture + offset: 0x56880 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_242_tlut_wheel_2 +yoshi_kart_frame242_wheel3: + symbol: gKartYoshi242Wheel3 + type: texture + offset: 0x56880 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_242_tlut_wheel_3 +yoshi_kart_frame243_wheel0: + symbol: gKartYoshi243Wheel0 + type: texture + offset: 0x56EE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_243_tlut_wheel_0 +yoshi_kart_frame243_wheel1: + symbol: gKartYoshi243Wheel1 + type: texture + offset: 0x56EE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_243_tlut_wheel_1 +yoshi_kart_frame243_wheel2: + symbol: gKartYoshi243Wheel2 + type: texture + offset: 0x56EE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_243_tlut_wheel_2 +yoshi_kart_frame243_wheel3: + symbol: gKartYoshi243Wheel3 + type: texture + offset: 0x56EE0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_243_tlut_wheel_3 +yoshi_kart_frame244_wheel0: + symbol: gKartYoshi244Wheel0 + type: texture + offset: 0x57510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_244_tlut_wheel_0 +yoshi_kart_frame244_wheel1: + symbol: gKartYoshi244Wheel1 + type: texture + offset: 0x57510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_244_tlut_wheel_1 +yoshi_kart_frame244_wheel2: + symbol: gKartYoshi244Wheel2 + type: texture + offset: 0x57510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_244_tlut_wheel_2 +yoshi_kart_frame244_wheel3: + symbol: gKartYoshi244Wheel3 + type: texture + offset: 0x57510 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_244_tlut_wheel_3 +yoshi_kart_frame245_wheel0: + symbol: gKartYoshi245Wheel0 + type: texture + offset: 0x57B00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_245_tlut_wheel_0 +yoshi_kart_frame245_wheel1: + symbol: gKartYoshi245Wheel1 + type: texture + offset: 0x57B00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_245_tlut_wheel_1 +yoshi_kart_frame245_wheel2: + symbol: gKartYoshi245Wheel2 + type: texture + offset: 0x57B00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_245_tlut_wheel_2 +yoshi_kart_frame245_wheel3: + symbol: gKartYoshi245Wheel3 + type: texture + offset: 0x57B00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_245_tlut_wheel_3 +yoshi_kart_frame246_wheel0: + symbol: gKartYoshi246Wheel0 + type: texture + offset: 0x580D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_246_tlut_wheel_0 +yoshi_kart_frame246_wheel1: + symbol: gKartYoshi246Wheel1 + type: texture + offset: 0x580D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_246_tlut_wheel_1 +yoshi_kart_frame246_wheel2: + symbol: gKartYoshi246Wheel2 + type: texture + offset: 0x580D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_246_tlut_wheel_2 +yoshi_kart_frame246_wheel3: + symbol: gKartYoshi246Wheel3 + type: texture + offset: 0x580D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_246_tlut_wheel_3 +yoshi_kart_frame247_wheel0: + symbol: gKartYoshi247Wheel0 + type: texture + offset: 0x58680 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_247_tlut_wheel_0 +yoshi_kart_frame247_wheel1: + symbol: gKartYoshi247Wheel1 + type: texture + offset: 0x58680 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_247_tlut_wheel_1 +yoshi_kart_frame247_wheel2: + symbol: gKartYoshi247Wheel2 + type: texture + offset: 0x58680 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_247_tlut_wheel_2 +yoshi_kart_frame247_wheel3: + symbol: gKartYoshi247Wheel3 + type: texture + offset: 0x58680 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_247_tlut_wheel_3 +yoshi_kart_frame248_wheel0: + symbol: gKartYoshi248Wheel0 + type: texture + offset: 0x58BD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_248_tlut_wheel_0 +yoshi_kart_frame248_wheel1: + symbol: gKartYoshi248Wheel1 + type: texture + offset: 0x58BD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_248_tlut_wheel_1 +yoshi_kart_frame248_wheel2: + symbol: gKartYoshi248Wheel2 + type: texture + offset: 0x58BD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_248_tlut_wheel_2 +yoshi_kart_frame248_wheel3: + symbol: gKartYoshi248Wheel3 + type: texture + offset: 0x58BD0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_248_tlut_wheel_3 +yoshi_kart_frame249_wheel0: + symbol: gKartYoshi249Wheel0 + type: texture + offset: 0x590E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_249_tlut_wheel_0 +yoshi_kart_frame249_wheel1: + symbol: gKartYoshi249Wheel1 + type: texture + offset: 0x590E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_249_tlut_wheel_1 +yoshi_kart_frame249_wheel2: + symbol: gKartYoshi249Wheel2 + type: texture + offset: 0x590E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_249_tlut_wheel_2 +yoshi_kart_frame249_wheel3: + symbol: gKartYoshi249Wheel3 + type: texture + offset: 0x590E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_249_tlut_wheel_3 +yoshi_kart_frame250_wheel0: + symbol: gKartYoshi250Wheel0 + type: texture + offset: 0x5965C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_250_tlut_wheel_0 +yoshi_kart_frame250_wheel1: + symbol: gKartYoshi250Wheel1 + type: texture + offset: 0x5965C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_250_tlut_wheel_1 +yoshi_kart_frame250_wheel2: + symbol: gKartYoshi250Wheel2 + type: texture + offset: 0x5965C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_250_tlut_wheel_2 +yoshi_kart_frame250_wheel3: + symbol: gKartYoshi250Wheel3 + type: texture + offset: 0x5965C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_250_tlut_wheel_3 +yoshi_kart_frame251_wheel0: + symbol: gKartYoshi251Wheel0 + type: texture + offset: 0x59BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_251_tlut_wheel_0 +yoshi_kart_frame251_wheel1: + symbol: gKartYoshi251Wheel1 + type: texture + offset: 0x59BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_251_tlut_wheel_1 +yoshi_kart_frame251_wheel2: + symbol: gKartYoshi251Wheel2 + type: texture + offset: 0x59BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_251_tlut_wheel_2 +yoshi_kart_frame251_wheel3: + symbol: gKartYoshi251Wheel3 + type: texture + offset: 0x59BFC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_251_tlut_wheel_3 +yoshi_kart_frame252_wheel0: + symbol: gKartYoshi252Wheel0 + type: texture + offset: 0x5A1C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_252_tlut_wheel_0 +yoshi_kart_frame252_wheel1: + symbol: gKartYoshi252Wheel1 + type: texture + offset: 0x5A1C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_252_tlut_wheel_1 +yoshi_kart_frame252_wheel2: + symbol: gKartYoshi252Wheel2 + type: texture + offset: 0x5A1C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_252_tlut_wheel_2 +yoshi_kart_frame252_wheel3: + symbol: gKartYoshi252Wheel3 + type: texture + offset: 0x5A1C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_252_tlut_wheel_3 +yoshi_kart_frame253_wheel0: + symbol: gKartYoshi253Wheel0 + type: texture + offset: 0x5A7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_253_tlut_wheel_0 +yoshi_kart_frame253_wheel1: + symbol: gKartYoshi253Wheel1 + type: texture + offset: 0x5A7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_253_tlut_wheel_1 +yoshi_kart_frame253_wheel2: + symbol: gKartYoshi253Wheel2 + type: texture + offset: 0x5A7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_253_tlut_wheel_2 +yoshi_kart_frame253_wheel3: + symbol: gKartYoshi253Wheel3 + type: texture + offset: 0x5A7D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_253_tlut_wheel_3 +yoshi_kart_frame254_wheel0: + symbol: gKartYoshi254Wheel0 + type: texture + offset: 0x5AE00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_254_tlut_wheel_0 +yoshi_kart_frame254_wheel1: + symbol: gKartYoshi254Wheel1 + type: texture + offset: 0x5AE00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_254_tlut_wheel_1 +yoshi_kart_frame254_wheel2: + symbol: gKartYoshi254Wheel2 + type: texture + offset: 0x5AE00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_254_tlut_wheel_2 +yoshi_kart_frame254_wheel3: + symbol: gKartYoshi254Wheel3 + type: texture + offset: 0x5AE00 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_254_tlut_wheel_3 +yoshi_kart_frame255_wheel0: + symbol: gKartYoshi255Wheel0 + type: texture + offset: 0x5B458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_255_tlut_wheel_0 +yoshi_kart_frame255_wheel1: + symbol: gKartYoshi255Wheel1 + type: texture + offset: 0x5B458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_255_tlut_wheel_1 +yoshi_kart_frame255_wheel2: + symbol: gKartYoshi255Wheel2 + type: texture + offset: 0x5B458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_255_tlut_wheel_2 +yoshi_kart_frame255_wheel3: + symbol: gKartYoshi255Wheel3 + type: texture + offset: 0x5B458 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_255_tlut_wheel_3 +yoshi_kart_frame256_wheel0: + symbol: gKartYoshi256Wheel0 + type: texture + offset: 0x5BACC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_256_tlut_wheel_0 +yoshi_kart_frame256_wheel1: + symbol: gKartYoshi256Wheel1 + type: texture + offset: 0x5BACC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_256_tlut_wheel_1 +yoshi_kart_frame256_wheel2: + symbol: gKartYoshi256Wheel2 + type: texture + offset: 0x5BACC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_256_tlut_wheel_2 +yoshi_kart_frame256_wheel3: + symbol: gKartYoshi256Wheel3 + type: texture + offset: 0x5BACC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_256_tlut_wheel_3 +yoshi_kart_frame257_wheel0: + symbol: gKartYoshi257Wheel0 + type: texture + offset: 0x5C150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_257_tlut_wheel_0 +yoshi_kart_frame257_wheel1: + symbol: gKartYoshi257Wheel1 + type: texture + offset: 0x5C150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_257_tlut_wheel_1 +yoshi_kart_frame257_wheel2: + symbol: gKartYoshi257Wheel2 + type: texture + offset: 0x5C150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_257_tlut_wheel_2 +yoshi_kart_frame257_wheel3: + symbol: gKartYoshi257Wheel3 + type: texture + offset: 0x5C150 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_257_tlut_wheel_3 +yoshi_kart_frame258_wheel0: + symbol: gKartYoshi258Wheel0 + type: texture + offset: 0x5C7E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_258_tlut_wheel_0 +yoshi_kart_frame258_wheel1: + symbol: gKartYoshi258Wheel1 + type: texture + offset: 0x5C7E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_258_tlut_wheel_1 +yoshi_kart_frame258_wheel2: + symbol: gKartYoshi258Wheel2 + type: texture + offset: 0x5C7E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_258_tlut_wheel_2 +yoshi_kart_frame258_wheel3: + symbol: gKartYoshi258Wheel3 + type: texture + offset: 0x5C7E0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_258_tlut_wheel_3 +yoshi_kart_frame259_wheel0: + symbol: gKartYoshi259Wheel0 + type: texture + offset: 0x5CE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_259_tlut_wheel_0 +yoshi_kart_frame259_wheel1: + symbol: gKartYoshi259Wheel1 + type: texture + offset: 0x5CE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_259_tlut_wheel_1 +yoshi_kart_frame259_wheel2: + symbol: gKartYoshi259Wheel2 + type: texture + offset: 0x5CE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_259_tlut_wheel_2 +yoshi_kart_frame259_wheel3: + symbol: gKartYoshi259Wheel3 + type: texture + offset: 0x5CE6C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_259_tlut_wheel_3 +yoshi_kart_frame260_wheel0: + symbol: gKartYoshi260Wheel0 + type: texture + offset: 0x5D500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_260_tlut_wheel_0 +yoshi_kart_frame260_wheel1: + symbol: gKartYoshi260Wheel1 + type: texture + offset: 0x5D500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_260_tlut_wheel_1 +yoshi_kart_frame260_wheel2: + symbol: gKartYoshi260Wheel2 + type: texture + offset: 0x5D500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_260_tlut_wheel_2 +yoshi_kart_frame260_wheel3: + symbol: gKartYoshi260Wheel3 + type: texture + offset: 0x5D500 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_260_tlut_wheel_3 +yoshi_kart_frame261_wheel0: + symbol: gKartYoshi261Wheel0 + type: texture + offset: 0x5DB64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_261_tlut_wheel_0 +yoshi_kart_frame261_wheel1: + symbol: gKartYoshi261Wheel1 + type: texture + offset: 0x5DB64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_261_tlut_wheel_1 +yoshi_kart_frame261_wheel2: + symbol: gKartYoshi261Wheel2 + type: texture + offset: 0x5DB64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_261_tlut_wheel_2 +yoshi_kart_frame261_wheel3: + symbol: gKartYoshi261Wheel3 + type: texture + offset: 0x5DB64 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_261_tlut_wheel_3 +yoshi_kart_frame262_wheel0: + symbol: gKartYoshi262Wheel0 + type: texture + offset: 0x5E1D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_262_tlut_wheel_0 +yoshi_kart_frame262_wheel1: + symbol: gKartYoshi262Wheel1 + type: texture + offset: 0x5E1D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_262_tlut_wheel_1 +yoshi_kart_frame262_wheel2: + symbol: gKartYoshi262Wheel2 + type: texture + offset: 0x5E1D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_262_tlut_wheel_2 +yoshi_kart_frame262_wheel3: + symbol: gKartYoshi262Wheel3 + type: texture + offset: 0x5E1D4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_262_tlut_wheel_3 +yoshi_kart_frame263_wheel0: + symbol: gKartYoshi263Wheel0 + type: texture + offset: 0x5E80C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_263_tlut_wheel_0 +yoshi_kart_frame263_wheel1: + symbol: gKartYoshi263Wheel1 + type: texture + offset: 0x5E80C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_263_tlut_wheel_1 +yoshi_kart_frame263_wheel2: + symbol: gKartYoshi263Wheel2 + type: texture + offset: 0x5E80C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_263_tlut_wheel_2 +yoshi_kart_frame263_wheel3: + symbol: gKartYoshi263Wheel3 + type: texture + offset: 0x5E80C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_263_tlut_wheel_3 +yoshi_kart_frame264_wheel0: + symbol: gKartYoshi264Wheel0 + type: texture + offset: 0x5EDF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_264_tlut_wheel_0 +yoshi_kart_frame264_wheel1: + symbol: gKartYoshi264Wheel1 + type: texture + offset: 0x5EDF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_264_tlut_wheel_1 +yoshi_kart_frame264_wheel2: + symbol: gKartYoshi264Wheel2 + type: texture + offset: 0x5EDF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_264_tlut_wheel_2 +yoshi_kart_frame264_wheel3: + symbol: gKartYoshi264Wheel3 + type: texture + offset: 0x5EDF4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_264_tlut_wheel_3 +yoshi_kart_frame265_wheel0: + symbol: gKartYoshi265Wheel0 + type: texture + offset: 0x5F3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_265_tlut_wheel_0 +yoshi_kart_frame265_wheel1: + symbol: gKartYoshi265Wheel1 + type: texture + offset: 0x5F3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_265_tlut_wheel_1 +yoshi_kart_frame265_wheel2: + symbol: gKartYoshi265Wheel2 + type: texture + offset: 0x5F3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_265_tlut_wheel_2 +yoshi_kart_frame265_wheel3: + symbol: gKartYoshi265Wheel3 + type: texture + offset: 0x5F3C4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_265_tlut_wheel_3 +yoshi_kart_frame266_wheel0: + symbol: gKartYoshi266Wheel0 + type: texture + offset: 0x5F938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_266_tlut_wheel_0 +yoshi_kart_frame266_wheel1: + symbol: gKartYoshi266Wheel1 + type: texture + offset: 0x5F938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_266_tlut_wheel_1 +yoshi_kart_frame266_wheel2: + symbol: gKartYoshi266Wheel2 + type: texture + offset: 0x5F938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_266_tlut_wheel_2 +yoshi_kart_frame266_wheel3: + symbol: gKartYoshi266Wheel3 + type: texture + offset: 0x5F938 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_266_tlut_wheel_3 +yoshi_kart_frame267_wheel0: + symbol: gKartYoshi267Wheel0 + type: texture + offset: 0x5FE7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_267_tlut_wheel_0 +yoshi_kart_frame267_wheel1: + symbol: gKartYoshi267Wheel1 + type: texture + offset: 0x5FE7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_267_tlut_wheel_1 +yoshi_kart_frame267_wheel2: + symbol: gKartYoshi267Wheel2 + type: texture + offset: 0x5FE7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_267_tlut_wheel_2 +yoshi_kart_frame267_wheel3: + symbol: gKartYoshi267Wheel3 + type: texture + offset: 0x5FE7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_267_tlut_wheel_3 +yoshi_kart_frame268_wheel0: + symbol: gKartYoshi268Wheel0 + type: texture + offset: 0x603A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_268_tlut_wheel_0 +yoshi_kart_frame268_wheel1: + symbol: gKartYoshi268Wheel1 + type: texture + offset: 0x603A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_268_tlut_wheel_1 +yoshi_kart_frame268_wheel2: + symbol: gKartYoshi268Wheel2 + type: texture + offset: 0x603A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_268_tlut_wheel_2 +yoshi_kart_frame268_wheel3: + symbol: gKartYoshi268Wheel3 + type: texture + offset: 0x603A8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_268_tlut_wheel_3 +yoshi_kart_frame269_wheel0: + symbol: gKartYoshi269Wheel0 + type: texture + offset: 0x60890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_269_tlut_wheel_0 +yoshi_kart_frame269_wheel1: + symbol: gKartYoshi269Wheel1 + type: texture + offset: 0x60890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_269_tlut_wheel_1 +yoshi_kart_frame269_wheel2: + symbol: gKartYoshi269Wheel2 + type: texture + offset: 0x60890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_269_tlut_wheel_2 +yoshi_kart_frame269_wheel3: + symbol: gKartYoshi269Wheel3 + type: texture + offset: 0x60890 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_269_tlut_wheel_3 +yoshi_kart_frame270_wheel0: + symbol: gKartYoshi270Wheel0 + type: texture + offset: 0x60E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_270_tlut_wheel_0 +yoshi_kart_frame270_wheel1: + symbol: gKartYoshi270Wheel1 + type: texture + offset: 0x60E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_270_tlut_wheel_1 +yoshi_kart_frame270_wheel2: + symbol: gKartYoshi270Wheel2 + type: texture + offset: 0x60E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_270_tlut_wheel_2 +yoshi_kart_frame270_wheel3: + symbol: gKartYoshi270Wheel3 + type: texture + offset: 0x60E44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_270_tlut_wheel_3 +yoshi_kart_frame271_wheel0: + symbol: gKartYoshi271Wheel0 + type: texture + offset: 0x61418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_271_tlut_wheel_0 +yoshi_kart_frame271_wheel1: + symbol: gKartYoshi271Wheel1 + type: texture + offset: 0x61418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_271_tlut_wheel_1 +yoshi_kart_frame271_wheel2: + symbol: gKartYoshi271Wheel2 + type: texture + offset: 0x61418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_271_tlut_wheel_2 +yoshi_kart_frame271_wheel3: + symbol: gKartYoshi271Wheel3 + type: texture + offset: 0x61418 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_271_tlut_wheel_3 +yoshi_kart_frame272_wheel0: + symbol: gKartYoshi272Wheel0 + type: texture + offset: 0x61A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_272_tlut_wheel_0 +yoshi_kart_frame272_wheel1: + symbol: gKartYoshi272Wheel1 + type: texture + offset: 0x61A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_272_tlut_wheel_1 +yoshi_kart_frame272_wheel2: + symbol: gKartYoshi272Wheel2 + type: texture + offset: 0x61A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_272_tlut_wheel_2 +yoshi_kart_frame272_wheel3: + symbol: gKartYoshi272Wheel3 + type: texture + offset: 0x61A14 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_272_tlut_wheel_3 +yoshi_kart_frame273_wheel0: + symbol: gKartYoshi273Wheel0 + type: texture + offset: 0x62030 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_273_tlut_wheel_0 +yoshi_kart_frame273_wheel1: + symbol: gKartYoshi273Wheel1 + type: texture + offset: 0x62030 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_273_tlut_wheel_1 +yoshi_kart_frame273_wheel2: + symbol: gKartYoshi273Wheel2 + type: texture + offset: 0x62030 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_273_tlut_wheel_2 +yoshi_kart_frame273_wheel3: + symbol: gKartYoshi273Wheel3 + type: texture + offset: 0x62030 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_273_tlut_wheel_3 +yoshi_kart_frame274_wheel0: + symbol: gKartYoshi274Wheel0 + type: texture + offset: 0x62684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_274_tlut_wheel_0 +yoshi_kart_frame274_wheel1: + symbol: gKartYoshi274Wheel1 + type: texture + offset: 0x62684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_274_tlut_wheel_1 +yoshi_kart_frame274_wheel2: + symbol: gKartYoshi274Wheel2 + type: texture + offset: 0x62684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_274_tlut_wheel_2 +yoshi_kart_frame274_wheel3: + symbol: gKartYoshi274Wheel3 + type: texture + offset: 0x62684 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_274_tlut_wheel_3 +yoshi_kart_frame275_wheel0: + symbol: gKartYoshi275Wheel0 + type: texture + offset: 0x62CEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_275_tlut_wheel_0 +yoshi_kart_frame275_wheel1: + symbol: gKartYoshi275Wheel1 + type: texture + offset: 0x62CEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_275_tlut_wheel_1 +yoshi_kart_frame275_wheel2: + symbol: gKartYoshi275Wheel2 + type: texture + offset: 0x62CEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_275_tlut_wheel_2 +yoshi_kart_frame275_wheel3: + symbol: gKartYoshi275Wheel3 + type: texture + offset: 0x62CEC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_275_tlut_wheel_3 +yoshi_kart_frame276_wheel0: + symbol: gKartYoshi276Wheel0 + type: texture + offset: 0x63380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_276_tlut_wheel_0 +yoshi_kart_frame276_wheel1: + symbol: gKartYoshi276Wheel1 + type: texture + offset: 0x63380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_276_tlut_wheel_1 +yoshi_kart_frame276_wheel2: + symbol: gKartYoshi276Wheel2 + type: texture + offset: 0x63380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_276_tlut_wheel_2 +yoshi_kart_frame276_wheel3: + symbol: gKartYoshi276Wheel3 + type: texture + offset: 0x63380 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_276_tlut_wheel_3 +yoshi_kart_frame277_wheel0: + symbol: gKartYoshi277Wheel0 + type: texture + offset: 0x639FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_277_tlut_wheel_0 +yoshi_kart_frame277_wheel1: + symbol: gKartYoshi277Wheel1 + type: texture + offset: 0x639FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_277_tlut_wheel_1 +yoshi_kart_frame277_wheel2: + symbol: gKartYoshi277Wheel2 + type: texture + offset: 0x639FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_277_tlut_wheel_2 +yoshi_kart_frame277_wheel3: + symbol: gKartYoshi277Wheel3 + type: texture + offset: 0x639FC + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_277_tlut_wheel_3 +yoshi_kart_frame278_wheel0: + symbol: gKartYoshi278Wheel0 + type: texture + offset: 0x64064 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_278_tlut_wheel_0 +yoshi_kart_frame278_wheel1: + symbol: gKartYoshi278Wheel1 + type: texture + offset: 0x64064 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_278_tlut_wheel_1 +yoshi_kart_frame278_wheel2: + symbol: gKartYoshi278Wheel2 + type: texture + offset: 0x64064 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_278_tlut_wheel_2 +yoshi_kart_frame278_wheel3: + symbol: gKartYoshi278Wheel3 + type: texture + offset: 0x64064 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_278_tlut_wheel_3 +yoshi_kart_frame279_wheel0: + symbol: gKartYoshi279Wheel0 + type: texture + offset: 0x646E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_279_tlut_wheel_0 +yoshi_kart_frame279_wheel1: + symbol: gKartYoshi279Wheel1 + type: texture + offset: 0x646E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_279_tlut_wheel_1 +yoshi_kart_frame279_wheel2: + symbol: gKartYoshi279Wheel2 + type: texture + offset: 0x646E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_279_tlut_wheel_2 +yoshi_kart_frame279_wheel3: + symbol: gKartYoshi279Wheel3 + type: texture + offset: 0x646E4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_279_tlut_wheel_3 +yoshi_kart_frame280_wheel0: + symbol: gKartYoshi280Wheel0 + type: texture + offset: 0x64D4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_280_tlut_wheel_0 +yoshi_kart_frame280_wheel1: + symbol: gKartYoshi280Wheel1 + type: texture + offset: 0x64D4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_280_tlut_wheel_1 +yoshi_kart_frame280_wheel2: + symbol: gKartYoshi280Wheel2 + type: texture + offset: 0x64D4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_280_tlut_wheel_2 +yoshi_kart_frame280_wheel3: + symbol: gKartYoshi280Wheel3 + type: texture + offset: 0x64D4C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_280_tlut_wheel_3 +yoshi_kart_frame281_wheel0: + symbol: gKartYoshi281Wheel0 + type: texture + offset: 0x6539C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_281_tlut_wheel_0 +yoshi_kart_frame281_wheel1: + symbol: gKartYoshi281Wheel1 + type: texture + offset: 0x6539C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_281_tlut_wheel_1 +yoshi_kart_frame281_wheel2: + symbol: gKartYoshi281Wheel2 + type: texture + offset: 0x6539C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_281_tlut_wheel_2 +yoshi_kart_frame281_wheel3: + symbol: gKartYoshi281Wheel3 + type: texture + offset: 0x6539C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_281_tlut_wheel_3 +yoshi_kart_frame282_wheel0: + symbol: gKartYoshi282Wheel0 + type: texture + offset: 0x659D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_282_tlut_wheel_0 +yoshi_kart_frame282_wheel1: + symbol: gKartYoshi282Wheel1 + type: texture + offset: 0x659D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_282_tlut_wheel_1 +yoshi_kart_frame282_wheel2: + symbol: gKartYoshi282Wheel2 + type: texture + offset: 0x659D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_282_tlut_wheel_2 +yoshi_kart_frame282_wheel3: + symbol: gKartYoshi282Wheel3 + type: texture + offset: 0x659D8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_282_tlut_wheel_3 +yoshi_kart_frame283_wheel0: + symbol: gKartYoshi283Wheel0 + type: texture + offset: 0x65FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_283_tlut_wheel_0 +yoshi_kart_frame283_wheel1: + symbol: gKartYoshi283Wheel1 + type: texture + offset: 0x65FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_283_tlut_wheel_1 +yoshi_kart_frame283_wheel2: + symbol: gKartYoshi283Wheel2 + type: texture + offset: 0x65FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_283_tlut_wheel_2 +yoshi_kart_frame283_wheel3: + symbol: gKartYoshi283Wheel3 + type: texture + offset: 0x65FD4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_283_tlut_wheel_3 +yoshi_kart_frame284_wheel0: + symbol: gKartYoshi284Wheel0 + type: texture + offset: 0x665A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_284_tlut_wheel_0 +yoshi_kart_frame284_wheel1: + symbol: gKartYoshi284Wheel1 + type: texture + offset: 0x665A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_284_tlut_wheel_1 +yoshi_kart_frame284_wheel2: + symbol: gKartYoshi284Wheel2 + type: texture + offset: 0x665A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_284_tlut_wheel_2 +yoshi_kart_frame284_wheel3: + symbol: gKartYoshi284Wheel3 + type: texture + offset: 0x665A4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_284_tlut_wheel_3 +yoshi_kart_frame285_wheel0: + symbol: gKartYoshi285Wheel0 + type: texture + offset: 0x66B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_285_tlut_wheel_0 +yoshi_kart_frame285_wheel1: + symbol: gKartYoshi285Wheel1 + type: texture + offset: 0x66B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_285_tlut_wheel_1 +yoshi_kart_frame285_wheel2: + symbol: gKartYoshi285Wheel2 + type: texture + offset: 0x66B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_285_tlut_wheel_2 +yoshi_kart_frame285_wheel3: + symbol: gKartYoshi285Wheel3 + type: texture + offset: 0x66B38 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_285_tlut_wheel_3 +yoshi_kart_frame286_wheel0: + symbol: gKartYoshi286Wheel0 + type: texture + offset: 0x67084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_286_tlut_wheel_0 +yoshi_kart_frame286_wheel1: + symbol: gKartYoshi286Wheel1 + type: texture + offset: 0x67084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_286_tlut_wheel_1 +yoshi_kart_frame286_wheel2: + symbol: gKartYoshi286Wheel2 + type: texture + offset: 0x67084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_286_tlut_wheel_2 +yoshi_kart_frame286_wheel3: + symbol: gKartYoshi286Wheel3 + type: texture + offset: 0x67084 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_286_tlut_wheel_3 +yoshi_kart_frame287_wheel0: + symbol: gKartYoshi287Wheel0 + type: texture + offset: 0x67578 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_287_tlut_wheel_0 +yoshi_kart_frame287_wheel1: + symbol: gKartYoshi287Wheel1 + type: texture + offset: 0x67578 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_287_tlut_wheel_1 +yoshi_kart_frame287_wheel2: + symbol: gKartYoshi287Wheel2 + type: texture + offset: 0x67578 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_287_tlut_wheel_2 +yoshi_kart_frame287_wheel3: + symbol: gKartYoshi287Wheel3 + type: texture + offset: 0x67578 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_287_tlut_wheel_3 +yoshi_kart_frame288_wheel0: + symbol: gKartYoshi288Wheel0 + type: texture + offset: 0x67A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_288_tlut_wheel_0 +yoshi_kart_frame288_wheel1: + symbol: gKartYoshi288Wheel1 + type: texture + offset: 0x67A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_288_tlut_wheel_1 +yoshi_kart_frame288_wheel2: + symbol: gKartYoshi288Wheel2 + type: texture + offset: 0x67A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_288_tlut_wheel_2 +yoshi_kart_frame288_wheel3: + symbol: gKartYoshi288Wheel3 + type: texture + offset: 0x67A44 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_288_tlut_wheel_3 +yoshi_kart_frame289: + symbol: gKartYoshi289 + type: texture + offset: 0x67ED0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame290: + symbol: gKartYoshi290 + type: texture + offset: 0x683C8 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame291: + symbol: gKartYoshi291 + type: texture + offset: 0x6890C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame292: + symbol: gKartYoshi292 + type: texture + offset: 0x68ED4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame293: + symbol: gKartYoshi293 + type: texture + offset: 0x69560 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame294: + symbol: gKartYoshi294 + type: texture + offset: 0x69B54 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame295: + symbol: gKartYoshi295 + type: texture + offset: 0x6A158 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame296: + symbol: gKartYoshi296 + type: texture + offset: 0x6A71C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame297: + symbol: gKartYoshi297 + type: texture + offset: 0x6AC60 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame298: + symbol: gKartYoshi298 + type: texture + offset: 0x6B11C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame299: + symbol: gKartYoshi299 + type: texture + offset: 0x6B678 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame300: + symbol: gKartYoshi300 + type: texture + offset: 0x6BC2C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame301: + symbol: gKartYoshi301 + type: texture + offset: 0x6C20C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame302: + symbol: gKartYoshi302 + type: texture + offset: 0x6C7C0 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame303: + symbol: gKartYoshi303 + type: texture + offset: 0x6CD68 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame304: + symbol: gKartYoshi304 + type: texture + offset: 0x6D310 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame305: + symbol: gKartYoshi305 + type: texture + offset: 0x6D864 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame306: + symbol: gKartYoshi306 + type: texture + offset: 0x6DCC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame307: + symbol: gKartYoshi307 + type: texture + offset: 0x6E21C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame308: + symbol: gKartYoshi308 + type: texture + offset: 0x6E830 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame309: + symbol: gKartYoshi309 + type: texture + offset: 0x6EE7C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame310: + symbol: gKartYoshi310 + type: texture + offset: 0x6F470 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame311: + symbol: gKartYoshi311 + type: texture + offset: 0x6FA84 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame312: + symbol: gKartYoshi312 + type: texture + offset: 0x7003C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame313: + symbol: gKartYoshi313 + type: texture + offset: 0x70550 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame314: + symbol: gKartYoshi314 + type: texture + offset: 0x70A20 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame315: + symbol: gKartYoshi315 + type: texture + offset: 0x70F80 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame316: + symbol: gKartYoshi316 + type: texture + offset: 0x7150C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame317: + symbol: gKartYoshi317 + type: texture + offset: 0x71AC4 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame318: + symbol: gKartYoshi318 + type: texture + offset: 0x7208C + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame319: + symbol: gKartYoshi319 + type: texture + offset: 0x72634 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_frame320: + symbol: gKartYoshi320 + type: texture + offset: 0x72C08 + ctype: u8 + mio0: true + width: 64 + height: 64 + format: CI8 + tlut_symbol: yoshi_kart_palette + tlut_wheel: yoshi_kart_000_tlut_wheel_0 +yoshi_kart_000_tlut_wheel_0: + symbol: gKartYoshi000TlutWheel0 + type: texture + offset: 0x731A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_000_tlut_wheel_1: + symbol: gKartYoshi000TlutWheel1 + type: texture + offset: 0x73228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_000_tlut_wheel_2: + symbol: gKartYoshi000TlutWheel2 + type: texture + offset: 0x732A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_000_tlut_wheel_3: + symbol: gKartYoshi000TlutWheel3 + type: texture + offset: 0x73328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_001_tlut_wheel_0: + symbol: gKartYoshi001TlutWheel0 + type: texture + offset: 0x733A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_001_tlut_wheel_1: + symbol: gKartYoshi001TlutWheel1 + type: texture + offset: 0x73428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_001_tlut_wheel_2: + symbol: gKartYoshi001TlutWheel2 + type: texture + offset: 0x734A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_001_tlut_wheel_3: + symbol: gKartYoshi001TlutWheel3 + type: texture + offset: 0x73528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_002_tlut_wheel_0: + symbol: gKartYoshi002TlutWheel0 + type: texture + offset: 0x735A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_002_tlut_wheel_1: + symbol: gKartYoshi002TlutWheel1 + type: texture + offset: 0x73628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_002_tlut_wheel_2: + symbol: gKartYoshi002TlutWheel2 + type: texture + offset: 0x736A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_002_tlut_wheel_3: + symbol: gKartYoshi002TlutWheel3 + type: texture + offset: 0x73728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_003_tlut_wheel_0: + symbol: gKartYoshi003TlutWheel0 + type: texture + offset: 0x737A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_003_tlut_wheel_1: + symbol: gKartYoshi003TlutWheel1 + type: texture + offset: 0x73828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_003_tlut_wheel_2: + symbol: gKartYoshi003TlutWheel2 + type: texture + offset: 0x738A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_003_tlut_wheel_3: + symbol: gKartYoshi003TlutWheel3 + type: texture + offset: 0x73928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_004_tlut_wheel_0: + symbol: gKartYoshi004TlutWheel0 + type: texture + offset: 0x739A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_004_tlut_wheel_1: + symbol: gKartYoshi004TlutWheel1 + type: texture + offset: 0x73A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_004_tlut_wheel_2: + symbol: gKartYoshi004TlutWheel2 + type: texture + offset: 0x73AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_004_tlut_wheel_3: + symbol: gKartYoshi004TlutWheel3 + type: texture + offset: 0x73B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_005_tlut_wheel_0: + symbol: gKartYoshi005TlutWheel0 + type: texture + offset: 0x73BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_005_tlut_wheel_1: + symbol: gKartYoshi005TlutWheel1 + type: texture + offset: 0x73C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_005_tlut_wheel_2: + symbol: gKartYoshi005TlutWheel2 + type: texture + offset: 0x73CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_005_tlut_wheel_3: + symbol: gKartYoshi005TlutWheel3 + type: texture + offset: 0x73D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_006_tlut_wheel_0: + symbol: gKartYoshi006TlutWheel0 + type: texture + offset: 0x73DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_006_tlut_wheel_1: + symbol: gKartYoshi006TlutWheel1 + type: texture + offset: 0x73E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_006_tlut_wheel_2: + symbol: gKartYoshi006TlutWheel2 + type: texture + offset: 0x73EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_006_tlut_wheel_3: + symbol: gKartYoshi006TlutWheel3 + type: texture + offset: 0x73F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_007_tlut_wheel_0: + symbol: gKartYoshi007TlutWheel0 + type: texture + offset: 0x73FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_007_tlut_wheel_1: + symbol: gKartYoshi007TlutWheel1 + type: texture + offset: 0x74028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_007_tlut_wheel_2: + symbol: gKartYoshi007TlutWheel2 + type: texture + offset: 0x740A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_007_tlut_wheel_3: + symbol: gKartYoshi007TlutWheel3 + type: texture + offset: 0x74128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_008_tlut_wheel_0: + symbol: gKartYoshi008TlutWheel0 + type: texture + offset: 0x741A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_008_tlut_wheel_1: + symbol: gKartYoshi008TlutWheel1 + type: texture + offset: 0x74228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_008_tlut_wheel_2: + symbol: gKartYoshi008TlutWheel2 + type: texture + offset: 0x742A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_008_tlut_wheel_3: + symbol: gKartYoshi008TlutWheel3 + type: texture + offset: 0x74328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_009_tlut_wheel_0: + symbol: gKartYoshi009TlutWheel0 + type: texture + offset: 0x743A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_009_tlut_wheel_1: + symbol: gKartYoshi009TlutWheel1 + type: texture + offset: 0x74428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_009_tlut_wheel_2: + symbol: gKartYoshi009TlutWheel2 + type: texture + offset: 0x744A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_009_tlut_wheel_3: + symbol: gKartYoshi009TlutWheel3 + type: texture + offset: 0x74528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_010_tlut_wheel_0: + symbol: gKartYoshi010TlutWheel0 + type: texture + offset: 0x745A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_010_tlut_wheel_1: + symbol: gKartYoshi010TlutWheel1 + type: texture + offset: 0x74628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_010_tlut_wheel_2: + symbol: gKartYoshi010TlutWheel2 + type: texture + offset: 0x746A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_010_tlut_wheel_3: + symbol: gKartYoshi010TlutWheel3 + type: texture + offset: 0x74728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_011_tlut_wheel_0: + symbol: gKartYoshi011TlutWheel0 + type: texture + offset: 0x747A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_011_tlut_wheel_1: + symbol: gKartYoshi011TlutWheel1 + type: texture + offset: 0x74828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_011_tlut_wheel_2: + symbol: gKartYoshi011TlutWheel2 + type: texture + offset: 0x748A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_011_tlut_wheel_3: + symbol: gKartYoshi011TlutWheel3 + type: texture + offset: 0x74928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_012_tlut_wheel_0: + symbol: gKartYoshi012TlutWheel0 + type: texture + offset: 0x749A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_012_tlut_wheel_1: + symbol: gKartYoshi012TlutWheel1 + type: texture + offset: 0x74A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_012_tlut_wheel_2: + symbol: gKartYoshi012TlutWheel2 + type: texture + offset: 0x74AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_012_tlut_wheel_3: + symbol: gKartYoshi012TlutWheel3 + type: texture + offset: 0x74B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_013_tlut_wheel_0: + symbol: gKartYoshi013TlutWheel0 + type: texture + offset: 0x74BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_013_tlut_wheel_1: + symbol: gKartYoshi013TlutWheel1 + type: texture + offset: 0x74C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_013_tlut_wheel_2: + symbol: gKartYoshi013TlutWheel2 + type: texture + offset: 0x74CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_013_tlut_wheel_3: + symbol: gKartYoshi013TlutWheel3 + type: texture + offset: 0x74D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_014_tlut_wheel_0: + symbol: gKartYoshi014TlutWheel0 + type: texture + offset: 0x74DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_014_tlut_wheel_1: + symbol: gKartYoshi014TlutWheel1 + type: texture + offset: 0x74E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_014_tlut_wheel_2: + symbol: gKartYoshi014TlutWheel2 + type: texture + offset: 0x74EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_014_tlut_wheel_3: + symbol: gKartYoshi014TlutWheel3 + type: texture + offset: 0x74F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_015_tlut_wheel_0: + symbol: gKartYoshi015TlutWheel0 + type: texture + offset: 0x74FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_015_tlut_wheel_1: + symbol: gKartYoshi015TlutWheel1 + type: texture + offset: 0x75028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_015_tlut_wheel_2: + symbol: gKartYoshi015TlutWheel2 + type: texture + offset: 0x750A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_015_tlut_wheel_3: + symbol: gKartYoshi015TlutWheel3 + type: texture + offset: 0x75128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_016_tlut_wheel_0: + symbol: gKartYoshi016TlutWheel0 + type: texture + offset: 0x751A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_016_tlut_wheel_1: + symbol: gKartYoshi016TlutWheel1 + type: texture + offset: 0x75228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_016_tlut_wheel_2: + symbol: gKartYoshi016TlutWheel2 + type: texture + offset: 0x752A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_016_tlut_wheel_3: + symbol: gKartYoshi016TlutWheel3 + type: texture + offset: 0x75328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_017_tlut_wheel_0: + symbol: gKartYoshi017TlutWheel0 + type: texture + offset: 0x753A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_017_tlut_wheel_1: + symbol: gKartYoshi017TlutWheel1 + type: texture + offset: 0x75428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_017_tlut_wheel_2: + symbol: gKartYoshi017TlutWheel2 + type: texture + offset: 0x754A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_017_tlut_wheel_3: + symbol: gKartYoshi017TlutWheel3 + type: texture + offset: 0x75528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_018_tlut_wheel_0: + symbol: gKartYoshi018TlutWheel0 + type: texture + offset: 0x755A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_018_tlut_wheel_1: + symbol: gKartYoshi018TlutWheel1 + type: texture + offset: 0x75628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_018_tlut_wheel_2: + symbol: gKartYoshi018TlutWheel2 + type: texture + offset: 0x756A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_018_tlut_wheel_3: + symbol: gKartYoshi018TlutWheel3 + type: texture + offset: 0x75728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_019_tlut_wheel_0: + symbol: gKartYoshi019TlutWheel0 + type: texture + offset: 0x757A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_019_tlut_wheel_1: + symbol: gKartYoshi019TlutWheel1 + type: texture + offset: 0x75828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_019_tlut_wheel_2: + symbol: gKartYoshi019TlutWheel2 + type: texture + offset: 0x758A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_019_tlut_wheel_3: + symbol: gKartYoshi019TlutWheel3 + type: texture + offset: 0x75928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_020_tlut_wheel_0: + symbol: gKartYoshi020TlutWheel0 + type: texture + offset: 0x759A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_020_tlut_wheel_1: + symbol: gKartYoshi020TlutWheel1 + type: texture + offset: 0x75A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_020_tlut_wheel_2: + symbol: gKartYoshi020TlutWheel2 + type: texture + offset: 0x75AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_020_tlut_wheel_3: + symbol: gKartYoshi020TlutWheel3 + type: texture + offset: 0x75B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_021_tlut_wheel_0: + symbol: gKartYoshi021TlutWheel0 + type: texture + offset: 0x75BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_021_tlut_wheel_1: + symbol: gKartYoshi021TlutWheel1 + type: texture + offset: 0x75C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_021_tlut_wheel_2: + symbol: gKartYoshi021TlutWheel2 + type: texture + offset: 0x75CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_021_tlut_wheel_3: + symbol: gKartYoshi021TlutWheel3 + type: texture + offset: 0x75D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_022_tlut_wheel_0: + symbol: gKartYoshi022TlutWheel0 + type: texture + offset: 0x75DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_022_tlut_wheel_1: + symbol: gKartYoshi022TlutWheel1 + type: texture + offset: 0x75E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_022_tlut_wheel_2: + symbol: gKartYoshi022TlutWheel2 + type: texture + offset: 0x75EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_022_tlut_wheel_3: + symbol: gKartYoshi022TlutWheel3 + type: texture + offset: 0x75F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_023_tlut_wheel_0: + symbol: gKartYoshi023TlutWheel0 + type: texture + offset: 0x75FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_023_tlut_wheel_1: + symbol: gKartYoshi023TlutWheel1 + type: texture + offset: 0x76028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_023_tlut_wheel_2: + symbol: gKartYoshi023TlutWheel2 + type: texture + offset: 0x760A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_023_tlut_wheel_3: + symbol: gKartYoshi023TlutWheel3 + type: texture + offset: 0x76128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_024_tlut_wheel_0: + symbol: gKartYoshi024TlutWheel0 + type: texture + offset: 0x761A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_024_tlut_wheel_1: + symbol: gKartYoshi024TlutWheel1 + type: texture + offset: 0x76228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_024_tlut_wheel_2: + symbol: gKartYoshi024TlutWheel2 + type: texture + offset: 0x762A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_024_tlut_wheel_3: + symbol: gKartYoshi024TlutWheel3 + type: texture + offset: 0x76328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_025_tlut_wheel_0: + symbol: gKartYoshi025TlutWheel0 + type: texture + offset: 0x763A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_025_tlut_wheel_1: + symbol: gKartYoshi025TlutWheel1 + type: texture + offset: 0x76428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_025_tlut_wheel_2: + symbol: gKartYoshi025TlutWheel2 + type: texture + offset: 0x764A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_025_tlut_wheel_3: + symbol: gKartYoshi025TlutWheel3 + type: texture + offset: 0x76528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_026_tlut_wheel_0: + symbol: gKartYoshi026TlutWheel0 + type: texture + offset: 0x765A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_026_tlut_wheel_1: + symbol: gKartYoshi026TlutWheel1 + type: texture + offset: 0x76628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_026_tlut_wheel_2: + symbol: gKartYoshi026TlutWheel2 + type: texture + offset: 0x766A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_026_tlut_wheel_3: + symbol: gKartYoshi026TlutWheel3 + type: texture + offset: 0x76728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_027_tlut_wheel_0: + symbol: gKartYoshi027TlutWheel0 + type: texture + offset: 0x767A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_027_tlut_wheel_1: + symbol: gKartYoshi027TlutWheel1 + type: texture + offset: 0x76828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_027_tlut_wheel_2: + symbol: gKartYoshi027TlutWheel2 + type: texture + offset: 0x768A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_027_tlut_wheel_3: + symbol: gKartYoshi027TlutWheel3 + type: texture + offset: 0x76928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_028_tlut_wheel_0: + symbol: gKartYoshi028TlutWheel0 + type: texture + offset: 0x769A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_028_tlut_wheel_1: + symbol: gKartYoshi028TlutWheel1 + type: texture + offset: 0x76A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_028_tlut_wheel_2: + symbol: gKartYoshi028TlutWheel2 + type: texture + offset: 0x76AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_028_tlut_wheel_3: + symbol: gKartYoshi028TlutWheel3 + type: texture + offset: 0x76B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_029_tlut_wheel_0: + symbol: gKartYoshi029TlutWheel0 + type: texture + offset: 0x76BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_029_tlut_wheel_1: + symbol: gKartYoshi029TlutWheel1 + type: texture + offset: 0x76C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_029_tlut_wheel_2: + symbol: gKartYoshi029TlutWheel2 + type: texture + offset: 0x76CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_029_tlut_wheel_3: + symbol: gKartYoshi029TlutWheel3 + type: texture + offset: 0x76D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_030_tlut_wheel_0: + symbol: gKartYoshi030TlutWheel0 + type: texture + offset: 0x76DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_030_tlut_wheel_1: + symbol: gKartYoshi030TlutWheel1 + type: texture + offset: 0x76E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_030_tlut_wheel_2: + symbol: gKartYoshi030TlutWheel2 + type: texture + offset: 0x76EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_030_tlut_wheel_3: + symbol: gKartYoshi030TlutWheel3 + type: texture + offset: 0x76F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_031_tlut_wheel_0: + symbol: gKartYoshi031TlutWheel0 + type: texture + offset: 0x76FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_031_tlut_wheel_1: + symbol: gKartYoshi031TlutWheel1 + type: texture + offset: 0x77028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_031_tlut_wheel_2: + symbol: gKartYoshi031TlutWheel2 + type: texture + offset: 0x770A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_031_tlut_wheel_3: + symbol: gKartYoshi031TlutWheel3 + type: texture + offset: 0x77128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_032_tlut_wheel_0: + symbol: gKartYoshi032TlutWheel0 + type: texture + offset: 0x771A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_032_tlut_wheel_1: + symbol: gKartYoshi032TlutWheel1 + type: texture + offset: 0x77228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_032_tlut_wheel_2: + symbol: gKartYoshi032TlutWheel2 + type: texture + offset: 0x772A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_032_tlut_wheel_3: + symbol: gKartYoshi032TlutWheel3 + type: texture + offset: 0x77328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_033_tlut_wheel_0: + symbol: gKartYoshi033TlutWheel0 + type: texture + offset: 0x773A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_033_tlut_wheel_1: + symbol: gKartYoshi033TlutWheel1 + type: texture + offset: 0x77428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_033_tlut_wheel_2: + symbol: gKartYoshi033TlutWheel2 + type: texture + offset: 0x774A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_033_tlut_wheel_3: + symbol: gKartYoshi033TlutWheel3 + type: texture + offset: 0x77528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_034_tlut_wheel_0: + symbol: gKartYoshi034TlutWheel0 + type: texture + offset: 0x775A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_034_tlut_wheel_1: + symbol: gKartYoshi034TlutWheel1 + type: texture + offset: 0x77628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_034_tlut_wheel_2: + symbol: gKartYoshi034TlutWheel2 + type: texture + offset: 0x776A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_034_tlut_wheel_3: + symbol: gKartYoshi034TlutWheel3 + type: texture + offset: 0x77728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_035_tlut_wheel_0: + symbol: gKartYoshi035TlutWheel0 + type: texture + offset: 0x777A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_035_tlut_wheel_1: + symbol: gKartYoshi035TlutWheel1 + type: texture + offset: 0x77828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_035_tlut_wheel_2: + symbol: gKartYoshi035TlutWheel2 + type: texture + offset: 0x778A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_035_tlut_wheel_3: + symbol: gKartYoshi035TlutWheel3 + type: texture + offset: 0x77928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_036_tlut_wheel_0: + symbol: gKartYoshi036TlutWheel0 + type: texture + offset: 0x779A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_036_tlut_wheel_1: + symbol: gKartYoshi036TlutWheel1 + type: texture + offset: 0x77A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_036_tlut_wheel_2: + symbol: gKartYoshi036TlutWheel2 + type: texture + offset: 0x77AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_036_tlut_wheel_3: + symbol: gKartYoshi036TlutWheel3 + type: texture + offset: 0x77B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_037_tlut_wheel_0: + symbol: gKartYoshi037TlutWheel0 + type: texture + offset: 0x77BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_037_tlut_wheel_1: + symbol: gKartYoshi037TlutWheel1 + type: texture + offset: 0x77C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_037_tlut_wheel_2: + symbol: gKartYoshi037TlutWheel2 + type: texture + offset: 0x77CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_037_tlut_wheel_3: + symbol: gKartYoshi037TlutWheel3 + type: texture + offset: 0x77D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_038_tlut_wheel_0: + symbol: gKartYoshi038TlutWheel0 + type: texture + offset: 0x77DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_038_tlut_wheel_1: + symbol: gKartYoshi038TlutWheel1 + type: texture + offset: 0x77E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_038_tlut_wheel_2: + symbol: gKartYoshi038TlutWheel2 + type: texture + offset: 0x77EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_038_tlut_wheel_3: + symbol: gKartYoshi038TlutWheel3 + type: texture + offset: 0x77F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_039_tlut_wheel_0: + symbol: gKartYoshi039TlutWheel0 + type: texture + offset: 0x77FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_039_tlut_wheel_1: + symbol: gKartYoshi039TlutWheel1 + type: texture + offset: 0x78028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_039_tlut_wheel_2: + symbol: gKartYoshi039TlutWheel2 + type: texture + offset: 0x780A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_039_tlut_wheel_3: + symbol: gKartYoshi039TlutWheel3 + type: texture + offset: 0x78128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_040_tlut_wheel_0: + symbol: gKartYoshi040TlutWheel0 + type: texture + offset: 0x781A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_040_tlut_wheel_1: + symbol: gKartYoshi040TlutWheel1 + type: texture + offset: 0x78228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_040_tlut_wheel_2: + symbol: gKartYoshi040TlutWheel2 + type: texture + offset: 0x782A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_040_tlut_wheel_3: + symbol: gKartYoshi040TlutWheel3 + type: texture + offset: 0x78328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_041_tlut_wheel_0: + symbol: gKartYoshi041TlutWheel0 + type: texture + offset: 0x783A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_041_tlut_wheel_1: + symbol: gKartYoshi041TlutWheel1 + type: texture + offset: 0x78428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_041_tlut_wheel_2: + symbol: gKartYoshi041TlutWheel2 + type: texture + offset: 0x784A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_041_tlut_wheel_3: + symbol: gKartYoshi041TlutWheel3 + type: texture + offset: 0x78528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_042_tlut_wheel_0: + symbol: gKartYoshi042TlutWheel0 + type: texture + offset: 0x785A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_042_tlut_wheel_1: + symbol: gKartYoshi042TlutWheel1 + type: texture + offset: 0x78628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_042_tlut_wheel_2: + symbol: gKartYoshi042TlutWheel2 + type: texture + offset: 0x786A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_042_tlut_wheel_3: + symbol: gKartYoshi042TlutWheel3 + type: texture + offset: 0x78728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_043_tlut_wheel_0: + symbol: gKartYoshi043TlutWheel0 + type: texture + offset: 0x787A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_043_tlut_wheel_1: + symbol: gKartYoshi043TlutWheel1 + type: texture + offset: 0x78828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_043_tlut_wheel_2: + symbol: gKartYoshi043TlutWheel2 + type: texture + offset: 0x788A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_043_tlut_wheel_3: + symbol: gKartYoshi043TlutWheel3 + type: texture + offset: 0x78928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_044_tlut_wheel_0: + symbol: gKartYoshi044TlutWheel0 + type: texture + offset: 0x789A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_044_tlut_wheel_1: + symbol: gKartYoshi044TlutWheel1 + type: texture + offset: 0x78A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_044_tlut_wheel_2: + symbol: gKartYoshi044TlutWheel2 + type: texture + offset: 0x78AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_044_tlut_wheel_3: + symbol: gKartYoshi044TlutWheel3 + type: texture + offset: 0x78B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_045_tlut_wheel_0: + symbol: gKartYoshi045TlutWheel0 + type: texture + offset: 0x78BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_045_tlut_wheel_1: + symbol: gKartYoshi045TlutWheel1 + type: texture + offset: 0x78C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_045_tlut_wheel_2: + symbol: gKartYoshi045TlutWheel2 + type: texture + offset: 0x78CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_045_tlut_wheel_3: + symbol: gKartYoshi045TlutWheel3 + type: texture + offset: 0x78D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_046_tlut_wheel_0: + symbol: gKartYoshi046TlutWheel0 + type: texture + offset: 0x78DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_046_tlut_wheel_1: + symbol: gKartYoshi046TlutWheel1 + type: texture + offset: 0x78E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_046_tlut_wheel_2: + symbol: gKartYoshi046TlutWheel2 + type: texture + offset: 0x78EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_046_tlut_wheel_3: + symbol: gKartYoshi046TlutWheel3 + type: texture + offset: 0x78F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_047_tlut_wheel_0: + symbol: gKartYoshi047TlutWheel0 + type: texture + offset: 0x78FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_047_tlut_wheel_1: + symbol: gKartYoshi047TlutWheel1 + type: texture + offset: 0x79028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_047_tlut_wheel_2: + symbol: gKartYoshi047TlutWheel2 + type: texture + offset: 0x790A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_047_tlut_wheel_3: + symbol: gKartYoshi047TlutWheel3 + type: texture + offset: 0x79128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_048_tlut_wheel_0: + symbol: gKartYoshi048TlutWheel0 + type: texture + offset: 0x791A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_048_tlut_wheel_1: + symbol: gKartYoshi048TlutWheel1 + type: texture + offset: 0x79228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_048_tlut_wheel_2: + symbol: gKartYoshi048TlutWheel2 + type: texture + offset: 0x792A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_048_tlut_wheel_3: + symbol: gKartYoshi048TlutWheel3 + type: texture + offset: 0x79328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_049_tlut_wheel_0: + symbol: gKartYoshi049TlutWheel0 + type: texture + offset: 0x793A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_049_tlut_wheel_1: + symbol: gKartYoshi049TlutWheel1 + type: texture + offset: 0x79428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_049_tlut_wheel_2: + symbol: gKartYoshi049TlutWheel2 + type: texture + offset: 0x794A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_049_tlut_wheel_3: + symbol: gKartYoshi049TlutWheel3 + type: texture + offset: 0x79528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_050_tlut_wheel_0: + symbol: gKartYoshi050TlutWheel0 + type: texture + offset: 0x795A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_050_tlut_wheel_1: + symbol: gKartYoshi050TlutWheel1 + type: texture + offset: 0x79628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_050_tlut_wheel_2: + symbol: gKartYoshi050TlutWheel2 + type: texture + offset: 0x796A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_050_tlut_wheel_3: + symbol: gKartYoshi050TlutWheel3 + type: texture + offset: 0x79728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_051_tlut_wheel_0: + symbol: gKartYoshi051TlutWheel0 + type: texture + offset: 0x797A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_051_tlut_wheel_1: + symbol: gKartYoshi051TlutWheel1 + type: texture + offset: 0x79828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_051_tlut_wheel_2: + symbol: gKartYoshi051TlutWheel2 + type: texture + offset: 0x798A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_051_tlut_wheel_3: + symbol: gKartYoshi051TlutWheel3 + type: texture + offset: 0x79928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_052_tlut_wheel_0: + symbol: gKartYoshi052TlutWheel0 + type: texture + offset: 0x799A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_052_tlut_wheel_1: + symbol: gKartYoshi052TlutWheel1 + type: texture + offset: 0x79A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_052_tlut_wheel_2: + symbol: gKartYoshi052TlutWheel2 + type: texture + offset: 0x79AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_052_tlut_wheel_3: + symbol: gKartYoshi052TlutWheel3 + type: texture + offset: 0x79B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_053_tlut_wheel_0: + symbol: gKartYoshi053TlutWheel0 + type: texture + offset: 0x79BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_053_tlut_wheel_1: + symbol: gKartYoshi053TlutWheel1 + type: texture + offset: 0x79C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_053_tlut_wheel_2: + symbol: gKartYoshi053TlutWheel2 + type: texture + offset: 0x79CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_053_tlut_wheel_3: + symbol: gKartYoshi053TlutWheel3 + type: texture + offset: 0x79D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_054_tlut_wheel_0: + symbol: gKartYoshi054TlutWheel0 + type: texture + offset: 0x79DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_054_tlut_wheel_1: + symbol: gKartYoshi054TlutWheel1 + type: texture + offset: 0x79E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_054_tlut_wheel_2: + symbol: gKartYoshi054TlutWheel2 + type: texture + offset: 0x79EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_054_tlut_wheel_3: + symbol: gKartYoshi054TlutWheel3 + type: texture + offset: 0x79F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_055_tlut_wheel_0: + symbol: gKartYoshi055TlutWheel0 + type: texture + offset: 0x79FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_055_tlut_wheel_1: + symbol: gKartYoshi055TlutWheel1 + type: texture + offset: 0x7A028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_055_tlut_wheel_2: + symbol: gKartYoshi055TlutWheel2 + type: texture + offset: 0x7A0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_055_tlut_wheel_3: + symbol: gKartYoshi055TlutWheel3 + type: texture + offset: 0x7A128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_056_tlut_wheel_0: + symbol: gKartYoshi056TlutWheel0 + type: texture + offset: 0x7A1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_056_tlut_wheel_1: + symbol: gKartYoshi056TlutWheel1 + type: texture + offset: 0x7A228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_056_tlut_wheel_2: + symbol: gKartYoshi056TlutWheel2 + type: texture + offset: 0x7A2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_056_tlut_wheel_3: + symbol: gKartYoshi056TlutWheel3 + type: texture + offset: 0x7A328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_057_tlut_wheel_0: + symbol: gKartYoshi057TlutWheel0 + type: texture + offset: 0x7A3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_057_tlut_wheel_1: + symbol: gKartYoshi057TlutWheel1 + type: texture + offset: 0x7A428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_057_tlut_wheel_2: + symbol: gKartYoshi057TlutWheel2 + type: texture + offset: 0x7A4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_057_tlut_wheel_3: + symbol: gKartYoshi057TlutWheel3 + type: texture + offset: 0x7A528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_058_tlut_wheel_0: + symbol: gKartYoshi058TlutWheel0 + type: texture + offset: 0x7A5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_058_tlut_wheel_1: + symbol: gKartYoshi058TlutWheel1 + type: texture + offset: 0x7A628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_058_tlut_wheel_2: + symbol: gKartYoshi058TlutWheel2 + type: texture + offset: 0x7A6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_058_tlut_wheel_3: + symbol: gKartYoshi058TlutWheel3 + type: texture + offset: 0x7A728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_059_tlut_wheel_0: + symbol: gKartYoshi059TlutWheel0 + type: texture + offset: 0x7A7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_059_tlut_wheel_1: + symbol: gKartYoshi059TlutWheel1 + type: texture + offset: 0x7A828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_059_tlut_wheel_2: + symbol: gKartYoshi059TlutWheel2 + type: texture + offset: 0x7A8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_059_tlut_wheel_3: + symbol: gKartYoshi059TlutWheel3 + type: texture + offset: 0x7A928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_060_tlut_wheel_0: + symbol: gKartYoshi060TlutWheel0 + type: texture + offset: 0x7A9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_060_tlut_wheel_1: + symbol: gKartYoshi060TlutWheel1 + type: texture + offset: 0x7AA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_060_tlut_wheel_2: + symbol: gKartYoshi060TlutWheel2 + type: texture + offset: 0x7AAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_060_tlut_wheel_3: + symbol: gKartYoshi060TlutWheel3 + type: texture + offset: 0x7AB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_061_tlut_wheel_0: + symbol: gKartYoshi061TlutWheel0 + type: texture + offset: 0x7ABA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_061_tlut_wheel_1: + symbol: gKartYoshi061TlutWheel1 + type: texture + offset: 0x7AC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_061_tlut_wheel_2: + symbol: gKartYoshi061TlutWheel2 + type: texture + offset: 0x7ACA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_061_tlut_wheel_3: + symbol: gKartYoshi061TlutWheel3 + type: texture + offset: 0x7AD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_062_tlut_wheel_0: + symbol: gKartYoshi062TlutWheel0 + type: texture + offset: 0x7ADA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_062_tlut_wheel_1: + symbol: gKartYoshi062TlutWheel1 + type: texture + offset: 0x7AE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_062_tlut_wheel_2: + symbol: gKartYoshi062TlutWheel2 + type: texture + offset: 0x7AEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_062_tlut_wheel_3: + symbol: gKartYoshi062TlutWheel3 + type: texture + offset: 0x7AF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_063_tlut_wheel_0: + symbol: gKartYoshi063TlutWheel0 + type: texture + offset: 0x7AFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_063_tlut_wheel_1: + symbol: gKartYoshi063TlutWheel1 + type: texture + offset: 0x7B028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_063_tlut_wheel_2: + symbol: gKartYoshi063TlutWheel2 + type: texture + offset: 0x7B0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_063_tlut_wheel_3: + symbol: gKartYoshi063TlutWheel3 + type: texture + offset: 0x7B128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_064_tlut_wheel_0: + symbol: gKartYoshi064TlutWheel0 + type: texture + offset: 0x7B1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_064_tlut_wheel_1: + symbol: gKartYoshi064TlutWheel1 + type: texture + offset: 0x7B228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_064_tlut_wheel_2: + symbol: gKartYoshi064TlutWheel2 + type: texture + offset: 0x7B2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_064_tlut_wheel_3: + symbol: gKartYoshi064TlutWheel3 + type: texture + offset: 0x7B328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_065_tlut_wheel_0: + symbol: gKartYoshi065TlutWheel0 + type: texture + offset: 0x7B3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_065_tlut_wheel_1: + symbol: gKartYoshi065TlutWheel1 + type: texture + offset: 0x7B428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_065_tlut_wheel_2: + symbol: gKartYoshi065TlutWheel2 + type: texture + offset: 0x7B4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_065_tlut_wheel_3: + symbol: gKartYoshi065TlutWheel3 + type: texture + offset: 0x7B528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_066_tlut_wheel_0: + symbol: gKartYoshi066TlutWheel0 + type: texture + offset: 0x7B5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_066_tlut_wheel_1: + symbol: gKartYoshi066TlutWheel1 + type: texture + offset: 0x7B628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_066_tlut_wheel_2: + symbol: gKartYoshi066TlutWheel2 + type: texture + offset: 0x7B6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_066_tlut_wheel_3: + symbol: gKartYoshi066TlutWheel3 + type: texture + offset: 0x7B728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_067_tlut_wheel_0: + symbol: gKartYoshi067TlutWheel0 + type: texture + offset: 0x7B7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_067_tlut_wheel_1: + symbol: gKartYoshi067TlutWheel1 + type: texture + offset: 0x7B828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_067_tlut_wheel_2: + symbol: gKartYoshi067TlutWheel2 + type: texture + offset: 0x7B8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_067_tlut_wheel_3: + symbol: gKartYoshi067TlutWheel3 + type: texture + offset: 0x7B928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_068_tlut_wheel_0: + symbol: gKartYoshi068TlutWheel0 + type: texture + offset: 0x7B9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_068_tlut_wheel_1: + symbol: gKartYoshi068TlutWheel1 + type: texture + offset: 0x7BA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_068_tlut_wheel_2: + symbol: gKartYoshi068TlutWheel2 + type: texture + offset: 0x7BAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_068_tlut_wheel_3: + symbol: gKartYoshi068TlutWheel3 + type: texture + offset: 0x7BB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_069_tlut_wheel_0: + symbol: gKartYoshi069TlutWheel0 + type: texture + offset: 0x7BBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_069_tlut_wheel_1: + symbol: gKartYoshi069TlutWheel1 + type: texture + offset: 0x7BC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_069_tlut_wheel_2: + symbol: gKartYoshi069TlutWheel2 + type: texture + offset: 0x7BCA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_069_tlut_wheel_3: + symbol: gKartYoshi069TlutWheel3 + type: texture + offset: 0x7BD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_070_tlut_wheel_0: + symbol: gKartYoshi070TlutWheel0 + type: texture + offset: 0x7BDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_070_tlut_wheel_1: + symbol: gKartYoshi070TlutWheel1 + type: texture + offset: 0x7BE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_070_tlut_wheel_2: + symbol: gKartYoshi070TlutWheel2 + type: texture + offset: 0x7BEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_070_tlut_wheel_3: + symbol: gKartYoshi070TlutWheel3 + type: texture + offset: 0x7BF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_071_tlut_wheel_0: + symbol: gKartYoshi071TlutWheel0 + type: texture + offset: 0x7BFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_071_tlut_wheel_1: + symbol: gKartYoshi071TlutWheel1 + type: texture + offset: 0x7C028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_071_tlut_wheel_2: + symbol: gKartYoshi071TlutWheel2 + type: texture + offset: 0x7C0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_071_tlut_wheel_3: + symbol: gKartYoshi071TlutWheel3 + type: texture + offset: 0x7C128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_072_tlut_wheel_0: + symbol: gKartYoshi072TlutWheel0 + type: texture + offset: 0x7C1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_072_tlut_wheel_1: + symbol: gKartYoshi072TlutWheel1 + type: texture + offset: 0x7C228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_072_tlut_wheel_2: + symbol: gKartYoshi072TlutWheel2 + type: texture + offset: 0x7C2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_072_tlut_wheel_3: + symbol: gKartYoshi072TlutWheel3 + type: texture + offset: 0x7C328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_073_tlut_wheel_0: + symbol: gKartYoshi073TlutWheel0 + type: texture + offset: 0x7C3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_073_tlut_wheel_1: + symbol: gKartYoshi073TlutWheel1 + type: texture + offset: 0x7C428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_073_tlut_wheel_2: + symbol: gKartYoshi073TlutWheel2 + type: texture + offset: 0x7C4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_073_tlut_wheel_3: + symbol: gKartYoshi073TlutWheel3 + type: texture + offset: 0x7C528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_074_tlut_wheel_0: + symbol: gKartYoshi074TlutWheel0 + type: texture + offset: 0x7C5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_074_tlut_wheel_1: + symbol: gKartYoshi074TlutWheel1 + type: texture + offset: 0x7C628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_074_tlut_wheel_2: + symbol: gKartYoshi074TlutWheel2 + type: texture + offset: 0x7C6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_074_tlut_wheel_3: + symbol: gKartYoshi074TlutWheel3 + type: texture + offset: 0x7C728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_075_tlut_wheel_0: + symbol: gKartYoshi075TlutWheel0 + type: texture + offset: 0x7C7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_075_tlut_wheel_1: + symbol: gKartYoshi075TlutWheel1 + type: texture + offset: 0x7C828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_075_tlut_wheel_2: + symbol: gKartYoshi075TlutWheel2 + type: texture + offset: 0x7C8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_075_tlut_wheel_3: + symbol: gKartYoshi075TlutWheel3 + type: texture + offset: 0x7C928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_076_tlut_wheel_0: + symbol: gKartYoshi076TlutWheel0 + type: texture + offset: 0x7C9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_076_tlut_wheel_1: + symbol: gKartYoshi076TlutWheel1 + type: texture + offset: 0x7CA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_076_tlut_wheel_2: + symbol: gKartYoshi076TlutWheel2 + type: texture + offset: 0x7CAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_076_tlut_wheel_3: + symbol: gKartYoshi076TlutWheel3 + type: texture + offset: 0x7CB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_077_tlut_wheel_0: + symbol: gKartYoshi077TlutWheel0 + type: texture + offset: 0x7CBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_077_tlut_wheel_1: + symbol: gKartYoshi077TlutWheel1 + type: texture + offset: 0x7CC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_077_tlut_wheel_2: + symbol: gKartYoshi077TlutWheel2 + type: texture + offset: 0x7CCA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_077_tlut_wheel_3: + symbol: gKartYoshi077TlutWheel3 + type: texture + offset: 0x7CD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_078_tlut_wheel_0: + symbol: gKartYoshi078TlutWheel0 + type: texture + offset: 0x7CDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_078_tlut_wheel_1: + symbol: gKartYoshi078TlutWheel1 + type: texture + offset: 0x7CE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_078_tlut_wheel_2: + symbol: gKartYoshi078TlutWheel2 + type: texture + offset: 0x7CEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_078_tlut_wheel_3: + symbol: gKartYoshi078TlutWheel3 + type: texture + offset: 0x7CF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_079_tlut_wheel_0: + symbol: gKartYoshi079TlutWheel0 + type: texture + offset: 0x7CFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_079_tlut_wheel_1: + symbol: gKartYoshi079TlutWheel1 + type: texture + offset: 0x7D028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_079_tlut_wheel_2: + symbol: gKartYoshi079TlutWheel2 + type: texture + offset: 0x7D0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_079_tlut_wheel_3: + symbol: gKartYoshi079TlutWheel3 + type: texture + offset: 0x7D128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_080_tlut_wheel_0: + symbol: gKartYoshi080TlutWheel0 + type: texture + offset: 0x7D1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_080_tlut_wheel_1: + symbol: gKartYoshi080TlutWheel1 + type: texture + offset: 0x7D228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_080_tlut_wheel_2: + symbol: gKartYoshi080TlutWheel2 + type: texture + offset: 0x7D2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_080_tlut_wheel_3: + symbol: gKartYoshi080TlutWheel3 + type: texture + offset: 0x7D328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_081_tlut_wheel_0: + symbol: gKartYoshi081TlutWheel0 + type: texture + offset: 0x7D3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_081_tlut_wheel_1: + symbol: gKartYoshi081TlutWheel1 + type: texture + offset: 0x7D428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_081_tlut_wheel_2: + symbol: gKartYoshi081TlutWheel2 + type: texture + offset: 0x7D4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_081_tlut_wheel_3: + symbol: gKartYoshi081TlutWheel3 + type: texture + offset: 0x7D528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_082_tlut_wheel_0: + symbol: gKartYoshi082TlutWheel0 + type: texture + offset: 0x7D5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_082_tlut_wheel_1: + symbol: gKartYoshi082TlutWheel1 + type: texture + offset: 0x7D628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_082_tlut_wheel_2: + symbol: gKartYoshi082TlutWheel2 + type: texture + offset: 0x7D6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_082_tlut_wheel_3: + symbol: gKartYoshi082TlutWheel3 + type: texture + offset: 0x7D728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_083_tlut_wheel_0: + symbol: gKartYoshi083TlutWheel0 + type: texture + offset: 0x7D7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_083_tlut_wheel_1: + symbol: gKartYoshi083TlutWheel1 + type: texture + offset: 0x7D828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_083_tlut_wheel_2: + symbol: gKartYoshi083TlutWheel2 + type: texture + offset: 0x7D8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_083_tlut_wheel_3: + symbol: gKartYoshi083TlutWheel3 + type: texture + offset: 0x7D928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_084_tlut_wheel_0: + symbol: gKartYoshi084TlutWheel0 + type: texture + offset: 0x7D9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_084_tlut_wheel_1: + symbol: gKartYoshi084TlutWheel1 + type: texture + offset: 0x7DA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_084_tlut_wheel_2: + symbol: gKartYoshi084TlutWheel2 + type: texture + offset: 0x7DAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_084_tlut_wheel_3: + symbol: gKartYoshi084TlutWheel3 + type: texture + offset: 0x7DB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_085_tlut_wheel_0: + symbol: gKartYoshi085TlutWheel0 + type: texture + offset: 0x7DBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_085_tlut_wheel_1: + symbol: gKartYoshi085TlutWheel1 + type: texture + offset: 0x7DC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_085_tlut_wheel_2: + symbol: gKartYoshi085TlutWheel2 + type: texture + offset: 0x7DCA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_085_tlut_wheel_3: + symbol: gKartYoshi085TlutWheel3 + type: texture + offset: 0x7DD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_086_tlut_wheel_0: + symbol: gKartYoshi086TlutWheel0 + type: texture + offset: 0x7DDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_086_tlut_wheel_1: + symbol: gKartYoshi086TlutWheel1 + type: texture + offset: 0x7DE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_086_tlut_wheel_2: + symbol: gKartYoshi086TlutWheel2 + type: texture + offset: 0x7DEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_086_tlut_wheel_3: + symbol: gKartYoshi086TlutWheel3 + type: texture + offset: 0x7DF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_087_tlut_wheel_0: + symbol: gKartYoshi087TlutWheel0 + type: texture + offset: 0x7DFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_087_tlut_wheel_1: + symbol: gKartYoshi087TlutWheel1 + type: texture + offset: 0x7E028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_087_tlut_wheel_2: + symbol: gKartYoshi087TlutWheel2 + type: texture + offset: 0x7E0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_087_tlut_wheel_3: + symbol: gKartYoshi087TlutWheel3 + type: texture + offset: 0x7E128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_088_tlut_wheel_0: + symbol: gKartYoshi088TlutWheel0 + type: texture + offset: 0x7E1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_088_tlut_wheel_1: + symbol: gKartYoshi088TlutWheel1 + type: texture + offset: 0x7E228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_088_tlut_wheel_2: + symbol: gKartYoshi088TlutWheel2 + type: texture + offset: 0x7E2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_088_tlut_wheel_3: + symbol: gKartYoshi088TlutWheel3 + type: texture + offset: 0x7E328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_089_tlut_wheel_0: + symbol: gKartYoshi089TlutWheel0 + type: texture + offset: 0x7E3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_089_tlut_wheel_1: + symbol: gKartYoshi089TlutWheel1 + type: texture + offset: 0x7E428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_089_tlut_wheel_2: + symbol: gKartYoshi089TlutWheel2 + type: texture + offset: 0x7E4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_089_tlut_wheel_3: + symbol: gKartYoshi089TlutWheel3 + type: texture + offset: 0x7E528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_090_tlut_wheel_0: + symbol: gKartYoshi090TlutWheel0 + type: texture + offset: 0x7E5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_090_tlut_wheel_1: + symbol: gKartYoshi090TlutWheel1 + type: texture + offset: 0x7E628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_090_tlut_wheel_2: + symbol: gKartYoshi090TlutWheel2 + type: texture + offset: 0x7E6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_090_tlut_wheel_3: + symbol: gKartYoshi090TlutWheel3 + type: texture + offset: 0x7E728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_091_tlut_wheel_0: + symbol: gKartYoshi091TlutWheel0 + type: texture + offset: 0x7E7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_091_tlut_wheel_1: + symbol: gKartYoshi091TlutWheel1 + type: texture + offset: 0x7E828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_091_tlut_wheel_2: + symbol: gKartYoshi091TlutWheel2 + type: texture + offset: 0x7E8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_091_tlut_wheel_3: + symbol: gKartYoshi091TlutWheel3 + type: texture + offset: 0x7E928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_092_tlut_wheel_0: + symbol: gKartYoshi092TlutWheel0 + type: texture + offset: 0x7E9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_092_tlut_wheel_1: + symbol: gKartYoshi092TlutWheel1 + type: texture + offset: 0x7EA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_092_tlut_wheel_2: + symbol: gKartYoshi092TlutWheel2 + type: texture + offset: 0x7EAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_092_tlut_wheel_3: + symbol: gKartYoshi092TlutWheel3 + type: texture + offset: 0x7EB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_093_tlut_wheel_0: + symbol: gKartYoshi093TlutWheel0 + type: texture + offset: 0x7EBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_093_tlut_wheel_1: + symbol: gKartYoshi093TlutWheel1 + type: texture + offset: 0x7EC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_093_tlut_wheel_2: + symbol: gKartYoshi093TlutWheel2 + type: texture + offset: 0x7ECA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_093_tlut_wheel_3: + symbol: gKartYoshi093TlutWheel3 + type: texture + offset: 0x7ED28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_094_tlut_wheel_0: + symbol: gKartYoshi094TlutWheel0 + type: texture + offset: 0x7EDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_094_tlut_wheel_1: + symbol: gKartYoshi094TlutWheel1 + type: texture + offset: 0x7EE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_094_tlut_wheel_2: + symbol: gKartYoshi094TlutWheel2 + type: texture + offset: 0x7EEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_094_tlut_wheel_3: + symbol: gKartYoshi094TlutWheel3 + type: texture + offset: 0x7EF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_095_tlut_wheel_0: + symbol: gKartYoshi095TlutWheel0 + type: texture + offset: 0x7EFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_095_tlut_wheel_1: + symbol: gKartYoshi095TlutWheel1 + type: texture + offset: 0x7F028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_095_tlut_wheel_2: + symbol: gKartYoshi095TlutWheel2 + type: texture + offset: 0x7F0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_095_tlut_wheel_3: + symbol: gKartYoshi095TlutWheel3 + type: texture + offset: 0x7F128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_096_tlut_wheel_0: + symbol: gKartYoshi096TlutWheel0 + type: texture + offset: 0x7F1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_096_tlut_wheel_1: + symbol: gKartYoshi096TlutWheel1 + type: texture + offset: 0x7F228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_096_tlut_wheel_2: + symbol: gKartYoshi096TlutWheel2 + type: texture + offset: 0x7F2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_096_tlut_wheel_3: + symbol: gKartYoshi096TlutWheel3 + type: texture + offset: 0x7F328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_097_tlut_wheel_0: + symbol: gKartYoshi097TlutWheel0 + type: texture + offset: 0x7F3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_097_tlut_wheel_1: + symbol: gKartYoshi097TlutWheel1 + type: texture + offset: 0x7F428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_097_tlut_wheel_2: + symbol: gKartYoshi097TlutWheel2 + type: texture + offset: 0x7F4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_097_tlut_wheel_3: + symbol: gKartYoshi097TlutWheel3 + type: texture + offset: 0x7F528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_098_tlut_wheel_0: + symbol: gKartYoshi098TlutWheel0 + type: texture + offset: 0x7F5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_098_tlut_wheel_1: + symbol: gKartYoshi098TlutWheel1 + type: texture + offset: 0x7F628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_098_tlut_wheel_2: + symbol: gKartYoshi098TlutWheel2 + type: texture + offset: 0x7F6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_098_tlut_wheel_3: + symbol: gKartYoshi098TlutWheel3 + type: texture + offset: 0x7F728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_099_tlut_wheel_0: + symbol: gKartYoshi099TlutWheel0 + type: texture + offset: 0x7F7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_099_tlut_wheel_1: + symbol: gKartYoshi099TlutWheel1 + type: texture + offset: 0x7F828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_099_tlut_wheel_2: + symbol: gKartYoshi099TlutWheel2 + type: texture + offset: 0x7F8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_099_tlut_wheel_3: + symbol: gKartYoshi099TlutWheel3 + type: texture + offset: 0x7F928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_100_tlut_wheel_0: + symbol: gKartYoshi100TlutWheel0 + type: texture + offset: 0x7F9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_100_tlut_wheel_1: + symbol: gKartYoshi100TlutWheel1 + type: texture + offset: 0x7FA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_100_tlut_wheel_2: + symbol: gKartYoshi100TlutWheel2 + type: texture + offset: 0x7FAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_100_tlut_wheel_3: + symbol: gKartYoshi100TlutWheel3 + type: texture + offset: 0x7FB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_101_tlut_wheel_0: + symbol: gKartYoshi101TlutWheel0 + type: texture + offset: 0x7FBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_101_tlut_wheel_1: + symbol: gKartYoshi101TlutWheel1 + type: texture + offset: 0x7FC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_101_tlut_wheel_2: + symbol: gKartYoshi101TlutWheel2 + type: texture + offset: 0x7FCA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_101_tlut_wheel_3: + symbol: gKartYoshi101TlutWheel3 + type: texture + offset: 0x7FD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_102_tlut_wheel_0: + symbol: gKartYoshi102TlutWheel0 + type: texture + offset: 0x7FDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_102_tlut_wheel_1: + symbol: gKartYoshi102TlutWheel1 + type: texture + offset: 0x7FE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_102_tlut_wheel_2: + symbol: gKartYoshi102TlutWheel2 + type: texture + offset: 0x7FEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_102_tlut_wheel_3: + symbol: gKartYoshi102TlutWheel3 + type: texture + offset: 0x7FF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_103_tlut_wheel_0: + symbol: gKartYoshi103TlutWheel0 + type: texture + offset: 0x7FFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_103_tlut_wheel_1: + symbol: gKartYoshi103TlutWheel1 + type: texture + offset: 0x80028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_103_tlut_wheel_2: + symbol: gKartYoshi103TlutWheel2 + type: texture + offset: 0x800A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_103_tlut_wheel_3: + symbol: gKartYoshi103TlutWheel3 + type: texture + offset: 0x80128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_104_tlut_wheel_0: + symbol: gKartYoshi104TlutWheel0 + type: texture + offset: 0x801A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_104_tlut_wheel_1: + symbol: gKartYoshi104TlutWheel1 + type: texture + offset: 0x80228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_104_tlut_wheel_2: + symbol: gKartYoshi104TlutWheel2 + type: texture + offset: 0x802A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_104_tlut_wheel_3: + symbol: gKartYoshi104TlutWheel3 + type: texture + offset: 0x80328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_105_tlut_wheel_0: + symbol: gKartYoshi105TlutWheel0 + type: texture + offset: 0x803A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_105_tlut_wheel_1: + symbol: gKartYoshi105TlutWheel1 + type: texture + offset: 0x80428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_105_tlut_wheel_2: + symbol: gKartYoshi105TlutWheel2 + type: texture + offset: 0x804A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_105_tlut_wheel_3: + symbol: gKartYoshi105TlutWheel3 + type: texture + offset: 0x80528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_106_tlut_wheel_0: + symbol: gKartYoshi106TlutWheel0 + type: texture + offset: 0x805A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_106_tlut_wheel_1: + symbol: gKartYoshi106TlutWheel1 + type: texture + offset: 0x80628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_106_tlut_wheel_2: + symbol: gKartYoshi106TlutWheel2 + type: texture + offset: 0x806A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_106_tlut_wheel_3: + symbol: gKartYoshi106TlutWheel3 + type: texture + offset: 0x80728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_107_tlut_wheel_0: + symbol: gKartYoshi107TlutWheel0 + type: texture + offset: 0x807A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_107_tlut_wheel_1: + symbol: gKartYoshi107TlutWheel1 + type: texture + offset: 0x80828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_107_tlut_wheel_2: + symbol: gKartYoshi107TlutWheel2 + type: texture + offset: 0x808A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_107_tlut_wheel_3: + symbol: gKartYoshi107TlutWheel3 + type: texture + offset: 0x80928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_108_tlut_wheel_0: + symbol: gKartYoshi108TlutWheel0 + type: texture + offset: 0x809A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_108_tlut_wheel_1: + symbol: gKartYoshi108TlutWheel1 + type: texture + offset: 0x80A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_108_tlut_wheel_2: + symbol: gKartYoshi108TlutWheel2 + type: texture + offset: 0x80AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_108_tlut_wheel_3: + symbol: gKartYoshi108TlutWheel3 + type: texture + offset: 0x80B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_109_tlut_wheel_0: + symbol: gKartYoshi109TlutWheel0 + type: texture + offset: 0x80BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_109_tlut_wheel_1: + symbol: gKartYoshi109TlutWheel1 + type: texture + offset: 0x80C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_109_tlut_wheel_2: + symbol: gKartYoshi109TlutWheel2 + type: texture + offset: 0x80CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_109_tlut_wheel_3: + symbol: gKartYoshi109TlutWheel3 + type: texture + offset: 0x80D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_110_tlut_wheel_0: + symbol: gKartYoshi110TlutWheel0 + type: texture + offset: 0x80DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_110_tlut_wheel_1: + symbol: gKartYoshi110TlutWheel1 + type: texture + offset: 0x80E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_110_tlut_wheel_2: + symbol: gKartYoshi110TlutWheel2 + type: texture + offset: 0x80EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_110_tlut_wheel_3: + symbol: gKartYoshi110TlutWheel3 + type: texture + offset: 0x80F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_111_tlut_wheel_0: + symbol: gKartYoshi111TlutWheel0 + type: texture + offset: 0x80FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_111_tlut_wheel_1: + symbol: gKartYoshi111TlutWheel1 + type: texture + offset: 0x81028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_111_tlut_wheel_2: + symbol: gKartYoshi111TlutWheel2 + type: texture + offset: 0x810A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_111_tlut_wheel_3: + symbol: gKartYoshi111TlutWheel3 + type: texture + offset: 0x81128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_112_tlut_wheel_0: + symbol: gKartYoshi112TlutWheel0 + type: texture + offset: 0x811A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_112_tlut_wheel_1: + symbol: gKartYoshi112TlutWheel1 + type: texture + offset: 0x81228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_112_tlut_wheel_2: + symbol: gKartYoshi112TlutWheel2 + type: texture + offset: 0x812A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_112_tlut_wheel_3: + symbol: gKartYoshi112TlutWheel3 + type: texture + offset: 0x81328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_113_tlut_wheel_0: + symbol: gKartYoshi113TlutWheel0 + type: texture + offset: 0x813A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_113_tlut_wheel_1: + symbol: gKartYoshi113TlutWheel1 + type: texture + offset: 0x81428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_113_tlut_wheel_2: + symbol: gKartYoshi113TlutWheel2 + type: texture + offset: 0x814A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_113_tlut_wheel_3: + symbol: gKartYoshi113TlutWheel3 + type: texture + offset: 0x81528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_114_tlut_wheel_0: + symbol: gKartYoshi114TlutWheel0 + type: texture + offset: 0x815A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_114_tlut_wheel_1: + symbol: gKartYoshi114TlutWheel1 + type: texture + offset: 0x81628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_114_tlut_wheel_2: + symbol: gKartYoshi114TlutWheel2 + type: texture + offset: 0x816A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_114_tlut_wheel_3: + symbol: gKartYoshi114TlutWheel3 + type: texture + offset: 0x81728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_115_tlut_wheel_0: + symbol: gKartYoshi115TlutWheel0 + type: texture + offset: 0x817A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_115_tlut_wheel_1: + symbol: gKartYoshi115TlutWheel1 + type: texture + offset: 0x81828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_115_tlut_wheel_2: + symbol: gKartYoshi115TlutWheel2 + type: texture + offset: 0x818A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_115_tlut_wheel_3: + symbol: gKartYoshi115TlutWheel3 + type: texture + offset: 0x81928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_116_tlut_wheel_0: + symbol: gKartYoshi116TlutWheel0 + type: texture + offset: 0x819A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_116_tlut_wheel_1: + symbol: gKartYoshi116TlutWheel1 + type: texture + offset: 0x81A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_116_tlut_wheel_2: + symbol: gKartYoshi116TlutWheel2 + type: texture + offset: 0x81AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_116_tlut_wheel_3: + symbol: gKartYoshi116TlutWheel3 + type: texture + offset: 0x81B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_117_tlut_wheel_0: + symbol: gKartYoshi117TlutWheel0 + type: texture + offset: 0x81BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_117_tlut_wheel_1: + symbol: gKartYoshi117TlutWheel1 + type: texture + offset: 0x81C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_117_tlut_wheel_2: + symbol: gKartYoshi117TlutWheel2 + type: texture + offset: 0x81CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_117_tlut_wheel_3: + symbol: gKartYoshi117TlutWheel3 + type: texture + offset: 0x81D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_118_tlut_wheel_0: + symbol: gKartYoshi118TlutWheel0 + type: texture + offset: 0x81DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_118_tlut_wheel_1: + symbol: gKartYoshi118TlutWheel1 + type: texture + offset: 0x81E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_118_tlut_wheel_2: + symbol: gKartYoshi118TlutWheel2 + type: texture + offset: 0x81EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_118_tlut_wheel_3: + symbol: gKartYoshi118TlutWheel3 + type: texture + offset: 0x81F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_119_tlut_wheel_0: + symbol: gKartYoshi119TlutWheel0 + type: texture + offset: 0x81FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_119_tlut_wheel_1: + symbol: gKartYoshi119TlutWheel1 + type: texture + offset: 0x82028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_119_tlut_wheel_2: + symbol: gKartYoshi119TlutWheel2 + type: texture + offset: 0x820A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_119_tlut_wheel_3: + symbol: gKartYoshi119TlutWheel3 + type: texture + offset: 0x82128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_120_tlut_wheel_0: + symbol: gKartYoshi120TlutWheel0 + type: texture + offset: 0x821A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_120_tlut_wheel_1: + symbol: gKartYoshi120TlutWheel1 + type: texture + offset: 0x82228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_120_tlut_wheel_2: + symbol: gKartYoshi120TlutWheel2 + type: texture + offset: 0x822A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_120_tlut_wheel_3: + symbol: gKartYoshi120TlutWheel3 + type: texture + offset: 0x82328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_121_tlut_wheel_0: + symbol: gKartYoshi121TlutWheel0 + type: texture + offset: 0x823A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_121_tlut_wheel_1: + symbol: gKartYoshi121TlutWheel1 + type: texture + offset: 0x82428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_121_tlut_wheel_2: + symbol: gKartYoshi121TlutWheel2 + type: texture + offset: 0x824A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_121_tlut_wheel_3: + symbol: gKartYoshi121TlutWheel3 + type: texture + offset: 0x82528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_122_tlut_wheel_0: + symbol: gKartYoshi122TlutWheel0 + type: texture + offset: 0x825A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_122_tlut_wheel_1: + symbol: gKartYoshi122TlutWheel1 + type: texture + offset: 0x82628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_122_tlut_wheel_2: + symbol: gKartYoshi122TlutWheel2 + type: texture + offset: 0x826A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_122_tlut_wheel_3: + symbol: gKartYoshi122TlutWheel3 + type: texture + offset: 0x82728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_123_tlut_wheel_0: + symbol: gKartYoshi123TlutWheel0 + type: texture + offset: 0x827A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_123_tlut_wheel_1: + symbol: gKartYoshi123TlutWheel1 + type: texture + offset: 0x82828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_123_tlut_wheel_2: + symbol: gKartYoshi123TlutWheel2 + type: texture + offset: 0x828A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_123_tlut_wheel_3: + symbol: gKartYoshi123TlutWheel3 + type: texture + offset: 0x82928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_124_tlut_wheel_0: + symbol: gKartYoshi124TlutWheel0 + type: texture + offset: 0x829A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_124_tlut_wheel_1: + symbol: gKartYoshi124TlutWheel1 + type: texture + offset: 0x82A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_124_tlut_wheel_2: + symbol: gKartYoshi124TlutWheel2 + type: texture + offset: 0x82AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_124_tlut_wheel_3: + symbol: gKartYoshi124TlutWheel3 + type: texture + offset: 0x82B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_125_tlut_wheel_0: + symbol: gKartYoshi125TlutWheel0 + type: texture + offset: 0x82BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_125_tlut_wheel_1: + symbol: gKartYoshi125TlutWheel1 + type: texture + offset: 0x82C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_125_tlut_wheel_2: + symbol: gKartYoshi125TlutWheel2 + type: texture + offset: 0x82CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_125_tlut_wheel_3: + symbol: gKartYoshi125TlutWheel3 + type: texture + offset: 0x82D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_126_tlut_wheel_0: + symbol: gKartYoshi126TlutWheel0 + type: texture + offset: 0x82DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_126_tlut_wheel_1: + symbol: gKartYoshi126TlutWheel1 + type: texture + offset: 0x82E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_126_tlut_wheel_2: + symbol: gKartYoshi126TlutWheel2 + type: texture + offset: 0x82EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_126_tlut_wheel_3: + symbol: gKartYoshi126TlutWheel3 + type: texture + offset: 0x82F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_127_tlut_wheel_0: + symbol: gKartYoshi127TlutWheel0 + type: texture + offset: 0x82FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_127_tlut_wheel_1: + symbol: gKartYoshi127TlutWheel1 + type: texture + offset: 0x83028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_127_tlut_wheel_2: + symbol: gKartYoshi127TlutWheel2 + type: texture + offset: 0x830A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_127_tlut_wheel_3: + symbol: gKartYoshi127TlutWheel3 + type: texture + offset: 0x83128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_128_tlut_wheel_0: + symbol: gKartYoshi128TlutWheel0 + type: texture + offset: 0x831A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_128_tlut_wheel_1: + symbol: gKartYoshi128TlutWheel1 + type: texture + offset: 0x83228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_128_tlut_wheel_2: + symbol: gKartYoshi128TlutWheel2 + type: texture + offset: 0x832A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_128_tlut_wheel_3: + symbol: gKartYoshi128TlutWheel3 + type: texture + offset: 0x83328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_129_tlut_wheel_0: + symbol: gKartYoshi129TlutWheel0 + type: texture + offset: 0x833A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_129_tlut_wheel_1: + symbol: gKartYoshi129TlutWheel1 + type: texture + offset: 0x83428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_129_tlut_wheel_2: + symbol: gKartYoshi129TlutWheel2 + type: texture + offset: 0x834A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_129_tlut_wheel_3: + symbol: gKartYoshi129TlutWheel3 + type: texture + offset: 0x83528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_130_tlut_wheel_0: + symbol: gKartYoshi130TlutWheel0 + type: texture + offset: 0x835A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_130_tlut_wheel_1: + symbol: gKartYoshi130TlutWheel1 + type: texture + offset: 0x83628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_130_tlut_wheel_2: + symbol: gKartYoshi130TlutWheel2 + type: texture + offset: 0x836A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_130_tlut_wheel_3: + symbol: gKartYoshi130TlutWheel3 + type: texture + offset: 0x83728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_131_tlut_wheel_0: + symbol: gKartYoshi131TlutWheel0 + type: texture + offset: 0x837A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_131_tlut_wheel_1: + symbol: gKartYoshi131TlutWheel1 + type: texture + offset: 0x83828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_131_tlut_wheel_2: + symbol: gKartYoshi131TlutWheel2 + type: texture + offset: 0x838A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_131_tlut_wheel_3: + symbol: gKartYoshi131TlutWheel3 + type: texture + offset: 0x83928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_132_tlut_wheel_0: + symbol: gKartYoshi132TlutWheel0 + type: texture + offset: 0x839A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_132_tlut_wheel_1: + symbol: gKartYoshi132TlutWheel1 + type: texture + offset: 0x83A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_132_tlut_wheel_2: + symbol: gKartYoshi132TlutWheel2 + type: texture + offset: 0x83AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_132_tlut_wheel_3: + symbol: gKartYoshi132TlutWheel3 + type: texture + offset: 0x83B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_133_tlut_wheel_0: + symbol: gKartYoshi133TlutWheel0 + type: texture + offset: 0x83BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_133_tlut_wheel_1: + symbol: gKartYoshi133TlutWheel1 + type: texture + offset: 0x83C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_133_tlut_wheel_2: + symbol: gKartYoshi133TlutWheel2 + type: texture + offset: 0x83CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_133_tlut_wheel_3: + symbol: gKartYoshi133TlutWheel3 + type: texture + offset: 0x83D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_134_tlut_wheel_0: + symbol: gKartYoshi134TlutWheel0 + type: texture + offset: 0x83DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_134_tlut_wheel_1: + symbol: gKartYoshi134TlutWheel1 + type: texture + offset: 0x83E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_134_tlut_wheel_2: + symbol: gKartYoshi134TlutWheel2 + type: texture + offset: 0x83EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_134_tlut_wheel_3: + symbol: gKartYoshi134TlutWheel3 + type: texture + offset: 0x83F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_135_tlut_wheel_0: + symbol: gKartYoshi135TlutWheel0 + type: texture + offset: 0x83FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_135_tlut_wheel_1: + symbol: gKartYoshi135TlutWheel1 + type: texture + offset: 0x84028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_135_tlut_wheel_2: + symbol: gKartYoshi135TlutWheel2 + type: texture + offset: 0x840A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_135_tlut_wheel_3: + symbol: gKartYoshi135TlutWheel3 + type: texture + offset: 0x84128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_136_tlut_wheel_0: + symbol: gKartYoshi136TlutWheel0 + type: texture + offset: 0x841A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_136_tlut_wheel_1: + symbol: gKartYoshi136TlutWheel1 + type: texture + offset: 0x84228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_136_tlut_wheel_2: + symbol: gKartYoshi136TlutWheel2 + type: texture + offset: 0x842A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_136_tlut_wheel_3: + symbol: gKartYoshi136TlutWheel3 + type: texture + offset: 0x84328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_137_tlut_wheel_0: + symbol: gKartYoshi137TlutWheel0 + type: texture + offset: 0x843A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_137_tlut_wheel_1: + symbol: gKartYoshi137TlutWheel1 + type: texture + offset: 0x84428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_137_tlut_wheel_2: + symbol: gKartYoshi137TlutWheel2 + type: texture + offset: 0x844A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_137_tlut_wheel_3: + symbol: gKartYoshi137TlutWheel3 + type: texture + offset: 0x84528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_138_tlut_wheel_0: + symbol: gKartYoshi138TlutWheel0 + type: texture + offset: 0x845A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_138_tlut_wheel_1: + symbol: gKartYoshi138TlutWheel1 + type: texture + offset: 0x84628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_138_tlut_wheel_2: + symbol: gKartYoshi138TlutWheel2 + type: texture + offset: 0x846A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_138_tlut_wheel_3: + symbol: gKartYoshi138TlutWheel3 + type: texture + offset: 0x84728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_139_tlut_wheel_0: + symbol: gKartYoshi139TlutWheel0 + type: texture + offset: 0x847A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_139_tlut_wheel_1: + symbol: gKartYoshi139TlutWheel1 + type: texture + offset: 0x84828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_139_tlut_wheel_2: + symbol: gKartYoshi139TlutWheel2 + type: texture + offset: 0x848A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_139_tlut_wheel_3: + symbol: gKartYoshi139TlutWheel3 + type: texture + offset: 0x84928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_140_tlut_wheel_0: + symbol: gKartYoshi140TlutWheel0 + type: texture + offset: 0x849A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_140_tlut_wheel_1: + symbol: gKartYoshi140TlutWheel1 + type: texture + offset: 0x84A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_140_tlut_wheel_2: + symbol: gKartYoshi140TlutWheel2 + type: texture + offset: 0x84AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_140_tlut_wheel_3: + symbol: gKartYoshi140TlutWheel3 + type: texture + offset: 0x84B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_141_tlut_wheel_0: + symbol: gKartYoshi141TlutWheel0 + type: texture + offset: 0x84BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_141_tlut_wheel_1: + symbol: gKartYoshi141TlutWheel1 + type: texture + offset: 0x84C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_141_tlut_wheel_2: + symbol: gKartYoshi141TlutWheel2 + type: texture + offset: 0x84CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_141_tlut_wheel_3: + symbol: gKartYoshi141TlutWheel3 + type: texture + offset: 0x84D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_142_tlut_wheel_0: + symbol: gKartYoshi142TlutWheel0 + type: texture + offset: 0x84DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_142_tlut_wheel_1: + symbol: gKartYoshi142TlutWheel1 + type: texture + offset: 0x84E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_142_tlut_wheel_2: + symbol: gKartYoshi142TlutWheel2 + type: texture + offset: 0x84EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_142_tlut_wheel_3: + symbol: gKartYoshi142TlutWheel3 + type: texture + offset: 0x84F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_143_tlut_wheel_0: + symbol: gKartYoshi143TlutWheel0 + type: texture + offset: 0x84FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_143_tlut_wheel_1: + symbol: gKartYoshi143TlutWheel1 + type: texture + offset: 0x85028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_143_tlut_wheel_2: + symbol: gKartYoshi143TlutWheel2 + type: texture + offset: 0x850A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_143_tlut_wheel_3: + symbol: gKartYoshi143TlutWheel3 + type: texture + offset: 0x85128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_144_tlut_wheel_0: + symbol: gKartYoshi144TlutWheel0 + type: texture + offset: 0x851A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_144_tlut_wheel_1: + symbol: gKartYoshi144TlutWheel1 + type: texture + offset: 0x85228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_144_tlut_wheel_2: + symbol: gKartYoshi144TlutWheel2 + type: texture + offset: 0x852A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_144_tlut_wheel_3: + symbol: gKartYoshi144TlutWheel3 + type: texture + offset: 0x85328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_145_tlut_wheel_0: + symbol: gKartYoshi145TlutWheel0 + type: texture + offset: 0x853A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_145_tlut_wheel_1: + symbol: gKartYoshi145TlutWheel1 + type: texture + offset: 0x85428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_145_tlut_wheel_2: + symbol: gKartYoshi145TlutWheel2 + type: texture + offset: 0x854A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_145_tlut_wheel_3: + symbol: gKartYoshi145TlutWheel3 + type: texture + offset: 0x85528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_146_tlut_wheel_0: + symbol: gKartYoshi146TlutWheel0 + type: texture + offset: 0x855A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_146_tlut_wheel_1: + symbol: gKartYoshi146TlutWheel1 + type: texture + offset: 0x85628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_146_tlut_wheel_2: + symbol: gKartYoshi146TlutWheel2 + type: texture + offset: 0x856A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_146_tlut_wheel_3: + symbol: gKartYoshi146TlutWheel3 + type: texture + offset: 0x85728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_147_tlut_wheel_0: + symbol: gKartYoshi147TlutWheel0 + type: texture + offset: 0x857A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_147_tlut_wheel_1: + symbol: gKartYoshi147TlutWheel1 + type: texture + offset: 0x85828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_147_tlut_wheel_2: + symbol: gKartYoshi147TlutWheel2 + type: texture + offset: 0x858A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_147_tlut_wheel_3: + symbol: gKartYoshi147TlutWheel3 + type: texture + offset: 0x85928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_148_tlut_wheel_0: + symbol: gKartYoshi148TlutWheel0 + type: texture + offset: 0x859A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_148_tlut_wheel_1: + symbol: gKartYoshi148TlutWheel1 + type: texture + offset: 0x85A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_148_tlut_wheel_2: + symbol: gKartYoshi148TlutWheel2 + type: texture + offset: 0x85AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_148_tlut_wheel_3: + symbol: gKartYoshi148TlutWheel3 + type: texture + offset: 0x85B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_149_tlut_wheel_0: + symbol: gKartYoshi149TlutWheel0 + type: texture + offset: 0x85BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_149_tlut_wheel_1: + symbol: gKartYoshi149TlutWheel1 + type: texture + offset: 0x85C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_149_tlut_wheel_2: + symbol: gKartYoshi149TlutWheel2 + type: texture + offset: 0x85CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_149_tlut_wheel_3: + symbol: gKartYoshi149TlutWheel3 + type: texture + offset: 0x85D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_150_tlut_wheel_0: + symbol: gKartYoshi150TlutWheel0 + type: texture + offset: 0x85DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_150_tlut_wheel_1: + symbol: gKartYoshi150TlutWheel1 + type: texture + offset: 0x85E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_150_tlut_wheel_2: + symbol: gKartYoshi150TlutWheel2 + type: texture + offset: 0x85EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_150_tlut_wheel_3: + symbol: gKartYoshi150TlutWheel3 + type: texture + offset: 0x85F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_151_tlut_wheel_0: + symbol: gKartYoshi151TlutWheel0 + type: texture + offset: 0x85FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_151_tlut_wheel_1: + symbol: gKartYoshi151TlutWheel1 + type: texture + offset: 0x86028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_151_tlut_wheel_2: + symbol: gKartYoshi151TlutWheel2 + type: texture + offset: 0x860A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_151_tlut_wheel_3: + symbol: gKartYoshi151TlutWheel3 + type: texture + offset: 0x86128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_152_tlut_wheel_0: + symbol: gKartYoshi152TlutWheel0 + type: texture + offset: 0x861A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_152_tlut_wheel_1: + symbol: gKartYoshi152TlutWheel1 + type: texture + offset: 0x86228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_152_tlut_wheel_2: + symbol: gKartYoshi152TlutWheel2 + type: texture + offset: 0x862A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_152_tlut_wheel_3: + symbol: gKartYoshi152TlutWheel3 + type: texture + offset: 0x86328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_153_tlut_wheel_0: + symbol: gKartYoshi153TlutWheel0 + type: texture + offset: 0x863A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_153_tlut_wheel_1: + symbol: gKartYoshi153TlutWheel1 + type: texture + offset: 0x86428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_153_tlut_wheel_2: + symbol: gKartYoshi153TlutWheel2 + type: texture + offset: 0x864A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_153_tlut_wheel_3: + symbol: gKartYoshi153TlutWheel3 + type: texture + offset: 0x86528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_154_tlut_wheel_0: + symbol: gKartYoshi154TlutWheel0 + type: texture + offset: 0x865A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_154_tlut_wheel_1: + symbol: gKartYoshi154TlutWheel1 + type: texture + offset: 0x86628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_154_tlut_wheel_2: + symbol: gKartYoshi154TlutWheel2 + type: texture + offset: 0x866A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_154_tlut_wheel_3: + symbol: gKartYoshi154TlutWheel3 + type: texture + offset: 0x86728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_155_tlut_wheel_0: + symbol: gKartYoshi155TlutWheel0 + type: texture + offset: 0x867A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_155_tlut_wheel_1: + symbol: gKartYoshi155TlutWheel1 + type: texture + offset: 0x86828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_155_tlut_wheel_2: + symbol: gKartYoshi155TlutWheel2 + type: texture + offset: 0x868A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_155_tlut_wheel_3: + symbol: gKartYoshi155TlutWheel3 + type: texture + offset: 0x86928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_156_tlut_wheel_0: + symbol: gKartYoshi156TlutWheel0 + type: texture + offset: 0x869A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_156_tlut_wheel_1: + symbol: gKartYoshi156TlutWheel1 + type: texture + offset: 0x86A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_156_tlut_wheel_2: + symbol: gKartYoshi156TlutWheel2 + type: texture + offset: 0x86AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_156_tlut_wheel_3: + symbol: gKartYoshi156TlutWheel3 + type: texture + offset: 0x86B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_157_tlut_wheel_0: + symbol: gKartYoshi157TlutWheel0 + type: texture + offset: 0x86BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_157_tlut_wheel_1: + symbol: gKartYoshi157TlutWheel1 + type: texture + offset: 0x86C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_157_tlut_wheel_2: + symbol: gKartYoshi157TlutWheel2 + type: texture + offset: 0x86CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_157_tlut_wheel_3: + symbol: gKartYoshi157TlutWheel3 + type: texture + offset: 0x86D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_158_tlut_wheel_0: + symbol: gKartYoshi158TlutWheel0 + type: texture + offset: 0x86DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_158_tlut_wheel_1: + symbol: gKartYoshi158TlutWheel1 + type: texture + offset: 0x86E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_158_tlut_wheel_2: + symbol: gKartYoshi158TlutWheel2 + type: texture + offset: 0x86EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_158_tlut_wheel_3: + symbol: gKartYoshi158TlutWheel3 + type: texture + offset: 0x86F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_159_tlut_wheel_0: + symbol: gKartYoshi159TlutWheel0 + type: texture + offset: 0x86FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_159_tlut_wheel_1: + symbol: gKartYoshi159TlutWheel1 + type: texture + offset: 0x87028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_159_tlut_wheel_2: + symbol: gKartYoshi159TlutWheel2 + type: texture + offset: 0x870A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_159_tlut_wheel_3: + symbol: gKartYoshi159TlutWheel3 + type: texture + offset: 0x87128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_160_tlut_wheel_0: + symbol: gKartYoshi160TlutWheel0 + type: texture + offset: 0x871A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_160_tlut_wheel_1: + symbol: gKartYoshi160TlutWheel1 + type: texture + offset: 0x87228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_160_tlut_wheel_2: + symbol: gKartYoshi160TlutWheel2 + type: texture + offset: 0x872A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_160_tlut_wheel_3: + symbol: gKartYoshi160TlutWheel3 + type: texture + offset: 0x87328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_161_tlut_wheel_0: + symbol: gKartYoshi161TlutWheel0 + type: texture + offset: 0x873A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_161_tlut_wheel_1: + symbol: gKartYoshi161TlutWheel1 + type: texture + offset: 0x87428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_161_tlut_wheel_2: + symbol: gKartYoshi161TlutWheel2 + type: texture + offset: 0x874A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_161_tlut_wheel_3: + symbol: gKartYoshi161TlutWheel3 + type: texture + offset: 0x87528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_162_tlut_wheel_0: + symbol: gKartYoshi162TlutWheel0 + type: texture + offset: 0x875A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_162_tlut_wheel_1: + symbol: gKartYoshi162TlutWheel1 + type: texture + offset: 0x87628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_162_tlut_wheel_2: + symbol: gKartYoshi162TlutWheel2 + type: texture + offset: 0x876A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_162_tlut_wheel_3: + symbol: gKartYoshi162TlutWheel3 + type: texture + offset: 0x87728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_163_tlut_wheel_0: + symbol: gKartYoshi163TlutWheel0 + type: texture + offset: 0x877A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_163_tlut_wheel_1: + symbol: gKartYoshi163TlutWheel1 + type: texture + offset: 0x87828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_163_tlut_wheel_2: + symbol: gKartYoshi163TlutWheel2 + type: texture + offset: 0x878A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_163_tlut_wheel_3: + symbol: gKartYoshi163TlutWheel3 + type: texture + offset: 0x87928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_164_tlut_wheel_0: + symbol: gKartYoshi164TlutWheel0 + type: texture + offset: 0x879A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_164_tlut_wheel_1: + symbol: gKartYoshi164TlutWheel1 + type: texture + offset: 0x87A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_164_tlut_wheel_2: + symbol: gKartYoshi164TlutWheel2 + type: texture + offset: 0x87AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_164_tlut_wheel_3: + symbol: gKartYoshi164TlutWheel3 + type: texture + offset: 0x87B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_165_tlut_wheel_0: + symbol: gKartYoshi165TlutWheel0 + type: texture + offset: 0x87BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_165_tlut_wheel_1: + symbol: gKartYoshi165TlutWheel1 + type: texture + offset: 0x87C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_165_tlut_wheel_2: + symbol: gKartYoshi165TlutWheel2 + type: texture + offset: 0x87CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_165_tlut_wheel_3: + symbol: gKartYoshi165TlutWheel3 + type: texture + offset: 0x87D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_166_tlut_wheel_0: + symbol: gKartYoshi166TlutWheel0 + type: texture + offset: 0x87DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_166_tlut_wheel_1: + symbol: gKartYoshi166TlutWheel1 + type: texture + offset: 0x87E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_166_tlut_wheel_2: + symbol: gKartYoshi166TlutWheel2 + type: texture + offset: 0x87EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_166_tlut_wheel_3: + symbol: gKartYoshi166TlutWheel3 + type: texture + offset: 0x87F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_167_tlut_wheel_0: + symbol: gKartYoshi167TlutWheel0 + type: texture + offset: 0x87FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_167_tlut_wheel_1: + symbol: gKartYoshi167TlutWheel1 + type: texture + offset: 0x88028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_167_tlut_wheel_2: + symbol: gKartYoshi167TlutWheel2 + type: texture + offset: 0x880A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_167_tlut_wheel_3: + symbol: gKartYoshi167TlutWheel3 + type: texture + offset: 0x88128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_168_tlut_wheel_0: + symbol: gKartYoshi168TlutWheel0 + type: texture + offset: 0x881A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_168_tlut_wheel_1: + symbol: gKartYoshi168TlutWheel1 + type: texture + offset: 0x88228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_168_tlut_wheel_2: + symbol: gKartYoshi168TlutWheel2 + type: texture + offset: 0x882A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_168_tlut_wheel_3: + symbol: gKartYoshi168TlutWheel3 + type: texture + offset: 0x88328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_169_tlut_wheel_0: + symbol: gKartYoshi169TlutWheel0 + type: texture + offset: 0x883A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_169_tlut_wheel_1: + symbol: gKartYoshi169TlutWheel1 + type: texture + offset: 0x88428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_169_tlut_wheel_2: + symbol: gKartYoshi169TlutWheel2 + type: texture + offset: 0x884A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_169_tlut_wheel_3: + symbol: gKartYoshi169TlutWheel3 + type: texture + offset: 0x88528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_170_tlut_wheel_0: + symbol: gKartYoshi170TlutWheel0 + type: texture + offset: 0x885A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_170_tlut_wheel_1: + symbol: gKartYoshi170TlutWheel1 + type: texture + offset: 0x88628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_170_tlut_wheel_2: + symbol: gKartYoshi170TlutWheel2 + type: texture + offset: 0x886A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_170_tlut_wheel_3: + symbol: gKartYoshi170TlutWheel3 + type: texture + offset: 0x88728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_171_tlut_wheel_0: + symbol: gKartYoshi171TlutWheel0 + type: texture + offset: 0x887A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_171_tlut_wheel_1: + symbol: gKartYoshi171TlutWheel1 + type: texture + offset: 0x88828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_171_tlut_wheel_2: + symbol: gKartYoshi171TlutWheel2 + type: texture + offset: 0x888A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_171_tlut_wheel_3: + symbol: gKartYoshi171TlutWheel3 + type: texture + offset: 0x88928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_172_tlut_wheel_0: + symbol: gKartYoshi172TlutWheel0 + type: texture + offset: 0x889A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_172_tlut_wheel_1: + symbol: gKartYoshi172TlutWheel1 + type: texture + offset: 0x88A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_172_tlut_wheel_2: + symbol: gKartYoshi172TlutWheel2 + type: texture + offset: 0x88AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_172_tlut_wheel_3: + symbol: gKartYoshi172TlutWheel3 + type: texture + offset: 0x88B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_173_tlut_wheel_0: + symbol: gKartYoshi173TlutWheel0 + type: texture + offset: 0x88BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_173_tlut_wheel_1: + symbol: gKartYoshi173TlutWheel1 + type: texture + offset: 0x88C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_173_tlut_wheel_2: + symbol: gKartYoshi173TlutWheel2 + type: texture + offset: 0x88CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_173_tlut_wheel_3: + symbol: gKartYoshi173TlutWheel3 + type: texture + offset: 0x88D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_174_tlut_wheel_0: + symbol: gKartYoshi174TlutWheel0 + type: texture + offset: 0x88DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_174_tlut_wheel_1: + symbol: gKartYoshi174TlutWheel1 + type: texture + offset: 0x88E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_174_tlut_wheel_2: + symbol: gKartYoshi174TlutWheel2 + type: texture + offset: 0x88EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_174_tlut_wheel_3: + symbol: gKartYoshi174TlutWheel3 + type: texture + offset: 0x88F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_175_tlut_wheel_0: + symbol: gKartYoshi175TlutWheel0 + type: texture + offset: 0x88FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_175_tlut_wheel_1: + symbol: gKartYoshi175TlutWheel1 + type: texture + offset: 0x89028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_175_tlut_wheel_2: + symbol: gKartYoshi175TlutWheel2 + type: texture + offset: 0x890A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_175_tlut_wheel_3: + symbol: gKartYoshi175TlutWheel3 + type: texture + offset: 0x89128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_176_tlut_wheel_0: + symbol: gKartYoshi176TlutWheel0 + type: texture + offset: 0x891A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_176_tlut_wheel_1: + symbol: gKartYoshi176TlutWheel1 + type: texture + offset: 0x89228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_176_tlut_wheel_2: + symbol: gKartYoshi176TlutWheel2 + type: texture + offset: 0x892A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_176_tlut_wheel_3: + symbol: gKartYoshi176TlutWheel3 + type: texture + offset: 0x89328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_177_tlut_wheel_0: + symbol: gKartYoshi177TlutWheel0 + type: texture + offset: 0x893A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_177_tlut_wheel_1: + symbol: gKartYoshi177TlutWheel1 + type: texture + offset: 0x89428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_177_tlut_wheel_2: + symbol: gKartYoshi177TlutWheel2 + type: texture + offset: 0x894A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_177_tlut_wheel_3: + symbol: gKartYoshi177TlutWheel3 + type: texture + offset: 0x89528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_178_tlut_wheel_0: + symbol: gKartYoshi178TlutWheel0 + type: texture + offset: 0x895A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_178_tlut_wheel_1: + symbol: gKartYoshi178TlutWheel1 + type: texture + offset: 0x89628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_178_tlut_wheel_2: + symbol: gKartYoshi178TlutWheel2 + type: texture + offset: 0x896A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_178_tlut_wheel_3: + symbol: gKartYoshi178TlutWheel3 + type: texture + offset: 0x89728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_179_tlut_wheel_0: + symbol: gKartYoshi179TlutWheel0 + type: texture + offset: 0x897A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_179_tlut_wheel_1: + symbol: gKartYoshi179TlutWheel1 + type: texture + offset: 0x89828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_179_tlut_wheel_2: + symbol: gKartYoshi179TlutWheel2 + type: texture + offset: 0x898A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_179_tlut_wheel_3: + symbol: gKartYoshi179TlutWheel3 + type: texture + offset: 0x89928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_180_tlut_wheel_0: + symbol: gKartYoshi180TlutWheel0 + type: texture + offset: 0x899A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_180_tlut_wheel_1: + symbol: gKartYoshi180TlutWheel1 + type: texture + offset: 0x89A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_180_tlut_wheel_2: + symbol: gKartYoshi180TlutWheel2 + type: texture + offset: 0x89AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_180_tlut_wheel_3: + symbol: gKartYoshi180TlutWheel3 + type: texture + offset: 0x89B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_181_tlut_wheel_0: + symbol: gKartYoshi181TlutWheel0 + type: texture + offset: 0x89BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_181_tlut_wheel_1: + symbol: gKartYoshi181TlutWheel1 + type: texture + offset: 0x89C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_181_tlut_wheel_2: + symbol: gKartYoshi181TlutWheel2 + type: texture + offset: 0x89CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_181_tlut_wheel_3: + symbol: gKartYoshi181TlutWheel3 + type: texture + offset: 0x89D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_182_tlut_wheel_0: + symbol: gKartYoshi182TlutWheel0 + type: texture + offset: 0x89DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_182_tlut_wheel_1: + symbol: gKartYoshi182TlutWheel1 + type: texture + offset: 0x89E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_182_tlut_wheel_2: + symbol: gKartYoshi182TlutWheel2 + type: texture + offset: 0x89EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_182_tlut_wheel_3: + symbol: gKartYoshi182TlutWheel3 + type: texture + offset: 0x89F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_183_tlut_wheel_0: + symbol: gKartYoshi183TlutWheel0 + type: texture + offset: 0x89FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_183_tlut_wheel_1: + symbol: gKartYoshi183TlutWheel1 + type: texture + offset: 0x8A028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_183_tlut_wheel_2: + symbol: gKartYoshi183TlutWheel2 + type: texture + offset: 0x8A0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_183_tlut_wheel_3: + symbol: gKartYoshi183TlutWheel3 + type: texture + offset: 0x8A128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_184_tlut_wheel_0: + symbol: gKartYoshi184TlutWheel0 + type: texture + offset: 0x8A1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_184_tlut_wheel_1: + symbol: gKartYoshi184TlutWheel1 + type: texture + offset: 0x8A228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_184_tlut_wheel_2: + symbol: gKartYoshi184TlutWheel2 + type: texture + offset: 0x8A2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_184_tlut_wheel_3: + symbol: gKartYoshi184TlutWheel3 + type: texture + offset: 0x8A328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_185_tlut_wheel_0: + symbol: gKartYoshi185TlutWheel0 + type: texture + offset: 0x8A3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_185_tlut_wheel_1: + symbol: gKartYoshi185TlutWheel1 + type: texture + offset: 0x8A428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_185_tlut_wheel_2: + symbol: gKartYoshi185TlutWheel2 + type: texture + offset: 0x8A4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_185_tlut_wheel_3: + symbol: gKartYoshi185TlutWheel3 + type: texture + offset: 0x8A528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_186_tlut_wheel_0: + symbol: gKartYoshi186TlutWheel0 + type: texture + offset: 0x8A5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_186_tlut_wheel_1: + symbol: gKartYoshi186TlutWheel1 + type: texture + offset: 0x8A628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_186_tlut_wheel_2: + symbol: gKartYoshi186TlutWheel2 + type: texture + offset: 0x8A6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_186_tlut_wheel_3: + symbol: gKartYoshi186TlutWheel3 + type: texture + offset: 0x8A728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_187_tlut_wheel_0: + symbol: gKartYoshi187TlutWheel0 + type: texture + offset: 0x8A7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_187_tlut_wheel_1: + symbol: gKartYoshi187TlutWheel1 + type: texture + offset: 0x8A828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_187_tlut_wheel_2: + symbol: gKartYoshi187TlutWheel2 + type: texture + offset: 0x8A8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_187_tlut_wheel_3: + symbol: gKartYoshi187TlutWheel3 + type: texture + offset: 0x8A928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_188_tlut_wheel_0: + symbol: gKartYoshi188TlutWheel0 + type: texture + offset: 0x8A9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_188_tlut_wheel_1: + symbol: gKartYoshi188TlutWheel1 + type: texture + offset: 0x8AA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_188_tlut_wheel_2: + symbol: gKartYoshi188TlutWheel2 + type: texture + offset: 0x8AAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_188_tlut_wheel_3: + symbol: gKartYoshi188TlutWheel3 + type: texture + offset: 0x8AB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_189_tlut_wheel_0: + symbol: gKartYoshi189TlutWheel0 + type: texture + offset: 0x8ABA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_189_tlut_wheel_1: + symbol: gKartYoshi189TlutWheel1 + type: texture + offset: 0x8AC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_189_tlut_wheel_2: + symbol: gKartYoshi189TlutWheel2 + type: texture + offset: 0x8ACA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_189_tlut_wheel_3: + symbol: gKartYoshi189TlutWheel3 + type: texture + offset: 0x8AD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_190_tlut_wheel_0: + symbol: gKartYoshi190TlutWheel0 + type: texture + offset: 0x8ADA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_190_tlut_wheel_1: + symbol: gKartYoshi190TlutWheel1 + type: texture + offset: 0x8AE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_190_tlut_wheel_2: + symbol: gKartYoshi190TlutWheel2 + type: texture + offset: 0x8AEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_190_tlut_wheel_3: + symbol: gKartYoshi190TlutWheel3 + type: texture + offset: 0x8AF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_191_tlut_wheel_0: + symbol: gKartYoshi191TlutWheel0 + type: texture + offset: 0x8AFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_191_tlut_wheel_1: + symbol: gKartYoshi191TlutWheel1 + type: texture + offset: 0x8B028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_191_tlut_wheel_2: + symbol: gKartYoshi191TlutWheel2 + type: texture + offset: 0x8B0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_191_tlut_wheel_3: + symbol: gKartYoshi191TlutWheel3 + type: texture + offset: 0x8B128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_192_tlut_wheel_0: + symbol: gKartYoshi192TlutWheel0 + type: texture + offset: 0x8B1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_192_tlut_wheel_1: + symbol: gKartYoshi192TlutWheel1 + type: texture + offset: 0x8B228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_192_tlut_wheel_2: + symbol: gKartYoshi192TlutWheel2 + type: texture + offset: 0x8B2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_192_tlut_wheel_3: + symbol: gKartYoshi192TlutWheel3 + type: texture + offset: 0x8B328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_193_tlut_wheel_0: + symbol: gKartYoshi193TlutWheel0 + type: texture + offset: 0x8B3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_193_tlut_wheel_1: + symbol: gKartYoshi193TlutWheel1 + type: texture + offset: 0x8B428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_193_tlut_wheel_2: + symbol: gKartYoshi193TlutWheel2 + type: texture + offset: 0x8B4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_193_tlut_wheel_3: + symbol: gKartYoshi193TlutWheel3 + type: texture + offset: 0x8B528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_194_tlut_wheel_0: + symbol: gKartYoshi194TlutWheel0 + type: texture + offset: 0x8B5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_194_tlut_wheel_1: + symbol: gKartYoshi194TlutWheel1 + type: texture + offset: 0x8B628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_194_tlut_wheel_2: + symbol: gKartYoshi194TlutWheel2 + type: texture + offset: 0x8B6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_194_tlut_wheel_3: + symbol: gKartYoshi194TlutWheel3 + type: texture + offset: 0x8B728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_195_tlut_wheel_0: + symbol: gKartYoshi195TlutWheel0 + type: texture + offset: 0x8B7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_195_tlut_wheel_1: + symbol: gKartYoshi195TlutWheel1 + type: texture + offset: 0x8B828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_195_tlut_wheel_2: + symbol: gKartYoshi195TlutWheel2 + type: texture + offset: 0x8B8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_195_tlut_wheel_3: + symbol: gKartYoshi195TlutWheel3 + type: texture + offset: 0x8B928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_196_tlut_wheel_0: + symbol: gKartYoshi196TlutWheel0 + type: texture + offset: 0x8B9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_196_tlut_wheel_1: + symbol: gKartYoshi196TlutWheel1 + type: texture + offset: 0x8BA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_196_tlut_wheel_2: + symbol: gKartYoshi196TlutWheel2 + type: texture + offset: 0x8BAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_196_tlut_wheel_3: + symbol: gKartYoshi196TlutWheel3 + type: texture + offset: 0x8BB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_197_tlut_wheel_0: + symbol: gKartYoshi197TlutWheel0 + type: texture + offset: 0x8BBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_197_tlut_wheel_1: + symbol: gKartYoshi197TlutWheel1 + type: texture + offset: 0x8BC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_197_tlut_wheel_2: + symbol: gKartYoshi197TlutWheel2 + type: texture + offset: 0x8BCA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_197_tlut_wheel_3: + symbol: gKartYoshi197TlutWheel3 + type: texture + offset: 0x8BD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_198_tlut_wheel_0: + symbol: gKartYoshi198TlutWheel0 + type: texture + offset: 0x8BDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_198_tlut_wheel_1: + symbol: gKartYoshi198TlutWheel1 + type: texture + offset: 0x8BE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_198_tlut_wheel_2: + symbol: gKartYoshi198TlutWheel2 + type: texture + offset: 0x8BEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_198_tlut_wheel_3: + symbol: gKartYoshi198TlutWheel3 + type: texture + offset: 0x8BF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_199_tlut_wheel_0: + symbol: gKartYoshi199TlutWheel0 + type: texture + offset: 0x8BFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_199_tlut_wheel_1: + symbol: gKartYoshi199TlutWheel1 + type: texture + offset: 0x8C028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_199_tlut_wheel_2: + symbol: gKartYoshi199TlutWheel2 + type: texture + offset: 0x8C0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_199_tlut_wheel_3: + symbol: gKartYoshi199TlutWheel3 + type: texture + offset: 0x8C128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_200_tlut_wheel_0: + symbol: gKartYoshi200TlutWheel0 + type: texture + offset: 0x8C1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_200_tlut_wheel_1: + symbol: gKartYoshi200TlutWheel1 + type: texture + offset: 0x8C228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_200_tlut_wheel_2: + symbol: gKartYoshi200TlutWheel2 + type: texture + offset: 0x8C2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_200_tlut_wheel_3: + symbol: gKartYoshi200TlutWheel3 + type: texture + offset: 0x8C328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_201_tlut_wheel_0: + symbol: gKartYoshi201TlutWheel0 + type: texture + offset: 0x8C3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_201_tlut_wheel_1: + symbol: gKartYoshi201TlutWheel1 + type: texture + offset: 0x8C428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_201_tlut_wheel_2: + symbol: gKartYoshi201TlutWheel2 + type: texture + offset: 0x8C4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_201_tlut_wheel_3: + symbol: gKartYoshi201TlutWheel3 + type: texture + offset: 0x8C528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_202_tlut_wheel_0: + symbol: gKartYoshi202TlutWheel0 + type: texture + offset: 0x8C5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_202_tlut_wheel_1: + symbol: gKartYoshi202TlutWheel1 + type: texture + offset: 0x8C628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_202_tlut_wheel_2: + symbol: gKartYoshi202TlutWheel2 + type: texture + offset: 0x8C6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_202_tlut_wheel_3: + symbol: gKartYoshi202TlutWheel3 + type: texture + offset: 0x8C728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_203_tlut_wheel_0: + symbol: gKartYoshi203TlutWheel0 + type: texture + offset: 0x8C7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_203_tlut_wheel_1: + symbol: gKartYoshi203TlutWheel1 + type: texture + offset: 0x8C828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_203_tlut_wheel_2: + symbol: gKartYoshi203TlutWheel2 + type: texture + offset: 0x8C8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_203_tlut_wheel_3: + symbol: gKartYoshi203TlutWheel3 + type: texture + offset: 0x8C928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_204_tlut_wheel_0: + symbol: gKartYoshi204TlutWheel0 + type: texture + offset: 0x8C9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_204_tlut_wheel_1: + symbol: gKartYoshi204TlutWheel1 + type: texture + offset: 0x8CA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_204_tlut_wheel_2: + symbol: gKartYoshi204TlutWheel2 + type: texture + offset: 0x8CAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_204_tlut_wheel_3: + symbol: gKartYoshi204TlutWheel3 + type: texture + offset: 0x8CB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_205_tlut_wheel_0: + symbol: gKartYoshi205TlutWheel0 + type: texture + offset: 0x8CBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_205_tlut_wheel_1: + symbol: gKartYoshi205TlutWheel1 + type: texture + offset: 0x8CC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_205_tlut_wheel_2: + symbol: gKartYoshi205TlutWheel2 + type: texture + offset: 0x8CCA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_205_tlut_wheel_3: + symbol: gKartYoshi205TlutWheel3 + type: texture + offset: 0x8CD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_206_tlut_wheel_0: + symbol: gKartYoshi206TlutWheel0 + type: texture + offset: 0x8CDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_206_tlut_wheel_1: + symbol: gKartYoshi206TlutWheel1 + type: texture + offset: 0x8CE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_206_tlut_wheel_2: + symbol: gKartYoshi206TlutWheel2 + type: texture + offset: 0x8CEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_206_tlut_wheel_3: + symbol: gKartYoshi206TlutWheel3 + type: texture + offset: 0x8CF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_207_tlut_wheel_0: + symbol: gKartYoshi207TlutWheel0 + type: texture + offset: 0x8CFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_207_tlut_wheel_1: + symbol: gKartYoshi207TlutWheel1 + type: texture + offset: 0x8D028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_207_tlut_wheel_2: + symbol: gKartYoshi207TlutWheel2 + type: texture + offset: 0x8D0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_207_tlut_wheel_3: + symbol: gKartYoshi207TlutWheel3 + type: texture + offset: 0x8D128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_208_tlut_wheel_0: + symbol: gKartYoshi208TlutWheel0 + type: texture + offset: 0x8D1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_208_tlut_wheel_1: + symbol: gKartYoshi208TlutWheel1 + type: texture + offset: 0x8D228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_208_tlut_wheel_2: + symbol: gKartYoshi208TlutWheel2 + type: texture + offset: 0x8D2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_208_tlut_wheel_3: + symbol: gKartYoshi208TlutWheel3 + type: texture + offset: 0x8D328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_209_tlut_wheel_0: + symbol: gKartYoshi209TlutWheel0 + type: texture + offset: 0x8D3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_209_tlut_wheel_1: + symbol: gKartYoshi209TlutWheel1 + type: texture + offset: 0x8D428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_209_tlut_wheel_2: + symbol: gKartYoshi209TlutWheel2 + type: texture + offset: 0x8D4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_209_tlut_wheel_3: + symbol: gKartYoshi209TlutWheel3 + type: texture + offset: 0x8D528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_210_tlut_wheel_0: + symbol: gKartYoshi210TlutWheel0 + type: texture + offset: 0x8D5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_210_tlut_wheel_1: + symbol: gKartYoshi210TlutWheel1 + type: texture + offset: 0x8D628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_210_tlut_wheel_2: + symbol: gKartYoshi210TlutWheel2 + type: texture + offset: 0x8D6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_210_tlut_wheel_3: + symbol: gKartYoshi210TlutWheel3 + type: texture + offset: 0x8D728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_211_tlut_wheel_0: + symbol: gKartYoshi211TlutWheel0 + type: texture + offset: 0x8D7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_211_tlut_wheel_1: + symbol: gKartYoshi211TlutWheel1 + type: texture + offset: 0x8D828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_211_tlut_wheel_2: + symbol: gKartYoshi211TlutWheel2 + type: texture + offset: 0x8D8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_211_tlut_wheel_3: + symbol: gKartYoshi211TlutWheel3 + type: texture + offset: 0x8D928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_212_tlut_wheel_0: + symbol: gKartYoshi212TlutWheel0 + type: texture + offset: 0x8D9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_212_tlut_wheel_1: + symbol: gKartYoshi212TlutWheel1 + type: texture + offset: 0x8DA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_212_tlut_wheel_2: + symbol: gKartYoshi212TlutWheel2 + type: texture + offset: 0x8DAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_212_tlut_wheel_3: + symbol: gKartYoshi212TlutWheel3 + type: texture + offset: 0x8DB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_213_tlut_wheel_0: + symbol: gKartYoshi213TlutWheel0 + type: texture + offset: 0x8DBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_213_tlut_wheel_1: + symbol: gKartYoshi213TlutWheel1 + type: texture + offset: 0x8DC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_213_tlut_wheel_2: + symbol: gKartYoshi213TlutWheel2 + type: texture + offset: 0x8DCA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_213_tlut_wheel_3: + symbol: gKartYoshi213TlutWheel3 + type: texture + offset: 0x8DD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_214_tlut_wheel_0: + symbol: gKartYoshi214TlutWheel0 + type: texture + offset: 0x8DDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_214_tlut_wheel_1: + symbol: gKartYoshi214TlutWheel1 + type: texture + offset: 0x8DE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_214_tlut_wheel_2: + symbol: gKartYoshi214TlutWheel2 + type: texture + offset: 0x8DEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_214_tlut_wheel_3: + symbol: gKartYoshi214TlutWheel3 + type: texture + offset: 0x8DF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_215_tlut_wheel_0: + symbol: gKartYoshi215TlutWheel0 + type: texture + offset: 0x8DFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_215_tlut_wheel_1: + symbol: gKartYoshi215TlutWheel1 + type: texture + offset: 0x8E028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_215_tlut_wheel_2: + symbol: gKartYoshi215TlutWheel2 + type: texture + offset: 0x8E0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_215_tlut_wheel_3: + symbol: gKartYoshi215TlutWheel3 + type: texture + offset: 0x8E128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_216_tlut_wheel_0: + symbol: gKartYoshi216TlutWheel0 + type: texture + offset: 0x8E1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_216_tlut_wheel_1: + symbol: gKartYoshi216TlutWheel1 + type: texture + offset: 0x8E228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_216_tlut_wheel_2: + symbol: gKartYoshi216TlutWheel2 + type: texture + offset: 0x8E2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_216_tlut_wheel_3: + symbol: gKartYoshi216TlutWheel3 + type: texture + offset: 0x8E328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_217_tlut_wheel_0: + symbol: gKartYoshi217TlutWheel0 + type: texture + offset: 0x8E3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_217_tlut_wheel_1: + symbol: gKartYoshi217TlutWheel1 + type: texture + offset: 0x8E428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_217_tlut_wheel_2: + symbol: gKartYoshi217TlutWheel2 + type: texture + offset: 0x8E4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_217_tlut_wheel_3: + symbol: gKartYoshi217TlutWheel3 + type: texture + offset: 0x8E528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_218_tlut_wheel_0: + symbol: gKartYoshi218TlutWheel0 + type: texture + offset: 0x8E5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_218_tlut_wheel_1: + symbol: gKartYoshi218TlutWheel1 + type: texture + offset: 0x8E628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_218_tlut_wheel_2: + symbol: gKartYoshi218TlutWheel2 + type: texture + offset: 0x8E6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_218_tlut_wheel_3: + symbol: gKartYoshi218TlutWheel3 + type: texture + offset: 0x8E728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_219_tlut_wheel_0: + symbol: gKartYoshi219TlutWheel0 + type: texture + offset: 0x8E7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_219_tlut_wheel_1: + symbol: gKartYoshi219TlutWheel1 + type: texture + offset: 0x8E828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_219_tlut_wheel_2: + symbol: gKartYoshi219TlutWheel2 + type: texture + offset: 0x8E8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_219_tlut_wheel_3: + symbol: gKartYoshi219TlutWheel3 + type: texture + offset: 0x8E928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_220_tlut_wheel_0: + symbol: gKartYoshi220TlutWheel0 + type: texture + offset: 0x8E9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_220_tlut_wheel_1: + symbol: gKartYoshi220TlutWheel1 + type: texture + offset: 0x8EA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_220_tlut_wheel_2: + symbol: gKartYoshi220TlutWheel2 + type: texture + offset: 0x8EAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_220_tlut_wheel_3: + symbol: gKartYoshi220TlutWheel3 + type: texture + offset: 0x8EB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_221_tlut_wheel_0: + symbol: gKartYoshi221TlutWheel0 + type: texture + offset: 0x8EBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_221_tlut_wheel_1: + symbol: gKartYoshi221TlutWheel1 + type: texture + offset: 0x8EC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_221_tlut_wheel_2: + symbol: gKartYoshi221TlutWheel2 + type: texture + offset: 0x8ECA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_221_tlut_wheel_3: + symbol: gKartYoshi221TlutWheel3 + type: texture + offset: 0x8ED28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_222_tlut_wheel_0: + symbol: gKartYoshi222TlutWheel0 + type: texture + offset: 0x8EDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_222_tlut_wheel_1: + symbol: gKartYoshi222TlutWheel1 + type: texture + offset: 0x8EE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_222_tlut_wheel_2: + symbol: gKartYoshi222TlutWheel2 + type: texture + offset: 0x8EEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_222_tlut_wheel_3: + symbol: gKartYoshi222TlutWheel3 + type: texture + offset: 0x8EF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_223_tlut_wheel_0: + symbol: gKartYoshi223TlutWheel0 + type: texture + offset: 0x8EFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_223_tlut_wheel_1: + symbol: gKartYoshi223TlutWheel1 + type: texture + offset: 0x8F028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_223_tlut_wheel_2: + symbol: gKartYoshi223TlutWheel2 + type: texture + offset: 0x8F0A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_223_tlut_wheel_3: + symbol: gKartYoshi223TlutWheel3 + type: texture + offset: 0x8F128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_224_tlut_wheel_0: + symbol: gKartYoshi224TlutWheel0 + type: texture + offset: 0x8F1A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_224_tlut_wheel_1: + symbol: gKartYoshi224TlutWheel1 + type: texture + offset: 0x8F228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_224_tlut_wheel_2: + symbol: gKartYoshi224TlutWheel2 + type: texture + offset: 0x8F2A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_224_tlut_wheel_3: + symbol: gKartYoshi224TlutWheel3 + type: texture + offset: 0x8F328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_225_tlut_wheel_0: + symbol: gKartYoshi225TlutWheel0 + type: texture + offset: 0x8F3A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_225_tlut_wheel_1: + symbol: gKartYoshi225TlutWheel1 + type: texture + offset: 0x8F428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_225_tlut_wheel_2: + symbol: gKartYoshi225TlutWheel2 + type: texture + offset: 0x8F4A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_225_tlut_wheel_3: + symbol: gKartYoshi225TlutWheel3 + type: texture + offset: 0x8F528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_226_tlut_wheel_0: + symbol: gKartYoshi226TlutWheel0 + type: texture + offset: 0x8F5A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_226_tlut_wheel_1: + symbol: gKartYoshi226TlutWheel1 + type: texture + offset: 0x8F628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_226_tlut_wheel_2: + symbol: gKartYoshi226TlutWheel2 + type: texture + offset: 0x8F6A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_226_tlut_wheel_3: + symbol: gKartYoshi226TlutWheel3 + type: texture + offset: 0x8F728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_227_tlut_wheel_0: + symbol: gKartYoshi227TlutWheel0 + type: texture + offset: 0x8F7A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_227_tlut_wheel_1: + symbol: gKartYoshi227TlutWheel1 + type: texture + offset: 0x8F828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_227_tlut_wheel_2: + symbol: gKartYoshi227TlutWheel2 + type: texture + offset: 0x8F8A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_227_tlut_wheel_3: + symbol: gKartYoshi227TlutWheel3 + type: texture + offset: 0x8F928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_228_tlut_wheel_0: + symbol: gKartYoshi228TlutWheel0 + type: texture + offset: 0x8F9A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_228_tlut_wheel_1: + symbol: gKartYoshi228TlutWheel1 + type: texture + offset: 0x8FA28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_228_tlut_wheel_2: + symbol: gKartYoshi228TlutWheel2 + type: texture + offset: 0x8FAA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_228_tlut_wheel_3: + symbol: gKartYoshi228TlutWheel3 + type: texture + offset: 0x8FB28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_229_tlut_wheel_0: + symbol: gKartYoshi229TlutWheel0 + type: texture + offset: 0x8FBA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_229_tlut_wheel_1: + symbol: gKartYoshi229TlutWheel1 + type: texture + offset: 0x8FC28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_229_tlut_wheel_2: + symbol: gKartYoshi229TlutWheel2 + type: texture + offset: 0x8FCA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_229_tlut_wheel_3: + symbol: gKartYoshi229TlutWheel3 + type: texture + offset: 0x8FD28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_230_tlut_wheel_0: + symbol: gKartYoshi230TlutWheel0 + type: texture + offset: 0x8FDA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_230_tlut_wheel_1: + symbol: gKartYoshi230TlutWheel1 + type: texture + offset: 0x8FE28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_230_tlut_wheel_2: + symbol: gKartYoshi230TlutWheel2 + type: texture + offset: 0x8FEA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_230_tlut_wheel_3: + symbol: gKartYoshi230TlutWheel3 + type: texture + offset: 0x8FF28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_231_tlut_wheel_0: + symbol: gKartYoshi231TlutWheel0 + type: texture + offset: 0x8FFA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_231_tlut_wheel_1: + symbol: gKartYoshi231TlutWheel1 + type: texture + offset: 0x90028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_231_tlut_wheel_2: + symbol: gKartYoshi231TlutWheel2 + type: texture + offset: 0x900A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_231_tlut_wheel_3: + symbol: gKartYoshi231TlutWheel3 + type: texture + offset: 0x90128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_232_tlut_wheel_0: + symbol: gKartYoshi232TlutWheel0 + type: texture + offset: 0x901A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_232_tlut_wheel_1: + symbol: gKartYoshi232TlutWheel1 + type: texture + offset: 0x90228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_232_tlut_wheel_2: + symbol: gKartYoshi232TlutWheel2 + type: texture + offset: 0x902A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_232_tlut_wheel_3: + symbol: gKartYoshi232TlutWheel3 + type: texture + offset: 0x90328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_233_tlut_wheel_0: + symbol: gKartYoshi233TlutWheel0 + type: texture + offset: 0x903A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_233_tlut_wheel_1: + symbol: gKartYoshi233TlutWheel1 + type: texture + offset: 0x90428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_233_tlut_wheel_2: + symbol: gKartYoshi233TlutWheel2 + type: texture + offset: 0x904A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_233_tlut_wheel_3: + symbol: gKartYoshi233TlutWheel3 + type: texture + offset: 0x90528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_234_tlut_wheel_0: + symbol: gKartYoshi234TlutWheel0 + type: texture + offset: 0x905A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_234_tlut_wheel_1: + symbol: gKartYoshi234TlutWheel1 + type: texture + offset: 0x90628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_234_tlut_wheel_2: + symbol: gKartYoshi234TlutWheel2 + type: texture + offset: 0x906A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_234_tlut_wheel_3: + symbol: gKartYoshi234TlutWheel3 + type: texture + offset: 0x90728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_235_tlut_wheel_0: + symbol: gKartYoshi235TlutWheel0 + type: texture + offset: 0x907A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_235_tlut_wheel_1: + symbol: gKartYoshi235TlutWheel1 + type: texture + offset: 0x90828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_235_tlut_wheel_2: + symbol: gKartYoshi235TlutWheel2 + type: texture + offset: 0x908A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_235_tlut_wheel_3: + symbol: gKartYoshi235TlutWheel3 + type: texture + offset: 0x90928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_236_tlut_wheel_0: + symbol: gKartYoshi236TlutWheel0 + type: texture + offset: 0x909A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_236_tlut_wheel_1: + symbol: gKartYoshi236TlutWheel1 + type: texture + offset: 0x90A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_236_tlut_wheel_2: + symbol: gKartYoshi236TlutWheel2 + type: texture + offset: 0x90AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_236_tlut_wheel_3: + symbol: gKartYoshi236TlutWheel3 + type: texture + offset: 0x90B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_237_tlut_wheel_0: + symbol: gKartYoshi237TlutWheel0 + type: texture + offset: 0x90BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_237_tlut_wheel_1: + symbol: gKartYoshi237TlutWheel1 + type: texture + offset: 0x90C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_237_tlut_wheel_2: + symbol: gKartYoshi237TlutWheel2 + type: texture + offset: 0x90CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_237_tlut_wheel_3: + symbol: gKartYoshi237TlutWheel3 + type: texture + offset: 0x90D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_238_tlut_wheel_0: + symbol: gKartYoshi238TlutWheel0 + type: texture + offset: 0x90DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_238_tlut_wheel_1: + symbol: gKartYoshi238TlutWheel1 + type: texture + offset: 0x90E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_238_tlut_wheel_2: + symbol: gKartYoshi238TlutWheel2 + type: texture + offset: 0x90EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_238_tlut_wheel_3: + symbol: gKartYoshi238TlutWheel3 + type: texture + offset: 0x90F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_239_tlut_wheel_0: + symbol: gKartYoshi239TlutWheel0 + type: texture + offset: 0x90FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_239_tlut_wheel_1: + symbol: gKartYoshi239TlutWheel1 + type: texture + offset: 0x91028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_239_tlut_wheel_2: + symbol: gKartYoshi239TlutWheel2 + type: texture + offset: 0x910A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_239_tlut_wheel_3: + symbol: gKartYoshi239TlutWheel3 + type: texture + offset: 0x91128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_240_tlut_wheel_0: + symbol: gKartYoshi240TlutWheel0 + type: texture + offset: 0x911A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_240_tlut_wheel_1: + symbol: gKartYoshi240TlutWheel1 + type: texture + offset: 0x91228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_240_tlut_wheel_2: + symbol: gKartYoshi240TlutWheel2 + type: texture + offset: 0x912A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_240_tlut_wheel_3: + symbol: gKartYoshi240TlutWheel3 + type: texture + offset: 0x91328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_241_tlut_wheel_0: + symbol: gKartYoshi241TlutWheel0 + type: texture + offset: 0x913A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_241_tlut_wheel_1: + symbol: gKartYoshi241TlutWheel1 + type: texture + offset: 0x91428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_241_tlut_wheel_2: + symbol: gKartYoshi241TlutWheel2 + type: texture + offset: 0x914A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_241_tlut_wheel_3: + symbol: gKartYoshi241TlutWheel3 + type: texture + offset: 0x91528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_242_tlut_wheel_0: + symbol: gKartYoshi242TlutWheel0 + type: texture + offset: 0x915A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_242_tlut_wheel_1: + symbol: gKartYoshi242TlutWheel1 + type: texture + offset: 0x91628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_242_tlut_wheel_2: + symbol: gKartYoshi242TlutWheel2 + type: texture + offset: 0x916A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_242_tlut_wheel_3: + symbol: gKartYoshi242TlutWheel3 + type: texture + offset: 0x91728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_243_tlut_wheel_0: + symbol: gKartYoshi243TlutWheel0 + type: texture + offset: 0x917A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_243_tlut_wheel_1: + symbol: gKartYoshi243TlutWheel1 + type: texture + offset: 0x91828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_243_tlut_wheel_2: + symbol: gKartYoshi243TlutWheel2 + type: texture + offset: 0x918A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_243_tlut_wheel_3: + symbol: gKartYoshi243TlutWheel3 + type: texture + offset: 0x91928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_244_tlut_wheel_0: + symbol: gKartYoshi244TlutWheel0 + type: texture + offset: 0x919A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_244_tlut_wheel_1: + symbol: gKartYoshi244TlutWheel1 + type: texture + offset: 0x91A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_244_tlut_wheel_2: + symbol: gKartYoshi244TlutWheel2 + type: texture + offset: 0x91AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_244_tlut_wheel_3: + symbol: gKartYoshi244TlutWheel3 + type: texture + offset: 0x91B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_245_tlut_wheel_0: + symbol: gKartYoshi245TlutWheel0 + type: texture + offset: 0x91BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_245_tlut_wheel_1: + symbol: gKartYoshi245TlutWheel1 + type: texture + offset: 0x91C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_245_tlut_wheel_2: + symbol: gKartYoshi245TlutWheel2 + type: texture + offset: 0x91CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_245_tlut_wheel_3: + symbol: gKartYoshi245TlutWheel3 + type: texture + offset: 0x91D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_246_tlut_wheel_0: + symbol: gKartYoshi246TlutWheel0 + type: texture + offset: 0x91DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_246_tlut_wheel_1: + symbol: gKartYoshi246TlutWheel1 + type: texture + offset: 0x91E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_246_tlut_wheel_2: + symbol: gKartYoshi246TlutWheel2 + type: texture + offset: 0x91EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_246_tlut_wheel_3: + symbol: gKartYoshi246TlutWheel3 + type: texture + offset: 0x91F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_247_tlut_wheel_0: + symbol: gKartYoshi247TlutWheel0 + type: texture + offset: 0x91FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_247_tlut_wheel_1: + symbol: gKartYoshi247TlutWheel1 + type: texture + offset: 0x92028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_247_tlut_wheel_2: + symbol: gKartYoshi247TlutWheel2 + type: texture + offset: 0x920A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_247_tlut_wheel_3: + symbol: gKartYoshi247TlutWheel3 + type: texture + offset: 0x92128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_248_tlut_wheel_0: + symbol: gKartYoshi248TlutWheel0 + type: texture + offset: 0x921A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_248_tlut_wheel_1: + symbol: gKartYoshi248TlutWheel1 + type: texture + offset: 0x92228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_248_tlut_wheel_2: + symbol: gKartYoshi248TlutWheel2 + type: texture + offset: 0x922A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_248_tlut_wheel_3: + symbol: gKartYoshi248TlutWheel3 + type: texture + offset: 0x92328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_249_tlut_wheel_0: + symbol: gKartYoshi249TlutWheel0 + type: texture + offset: 0x923A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_249_tlut_wheel_1: + symbol: gKartYoshi249TlutWheel1 + type: texture + offset: 0x92428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_249_tlut_wheel_2: + symbol: gKartYoshi249TlutWheel2 + type: texture + offset: 0x924A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_249_tlut_wheel_3: + symbol: gKartYoshi249TlutWheel3 + type: texture + offset: 0x92528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_250_tlut_wheel_0: + symbol: gKartYoshi250TlutWheel0 + type: texture + offset: 0x925A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_250_tlut_wheel_1: + symbol: gKartYoshi250TlutWheel1 + type: texture + offset: 0x92628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_250_tlut_wheel_2: + symbol: gKartYoshi250TlutWheel2 + type: texture + offset: 0x926A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_250_tlut_wheel_3: + symbol: gKartYoshi250TlutWheel3 + type: texture + offset: 0x92728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_251_tlut_wheel_0: + symbol: gKartYoshi251TlutWheel0 + type: texture + offset: 0x927A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_251_tlut_wheel_1: + symbol: gKartYoshi251TlutWheel1 + type: texture + offset: 0x92828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_251_tlut_wheel_2: + symbol: gKartYoshi251TlutWheel2 + type: texture + offset: 0x928A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_251_tlut_wheel_3: + symbol: gKartYoshi251TlutWheel3 + type: texture + offset: 0x92928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_252_tlut_wheel_0: + symbol: gKartYoshi252TlutWheel0 + type: texture + offset: 0x929A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_252_tlut_wheel_1: + symbol: gKartYoshi252TlutWheel1 + type: texture + offset: 0x92A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_252_tlut_wheel_2: + symbol: gKartYoshi252TlutWheel2 + type: texture + offset: 0x92AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_252_tlut_wheel_3: + symbol: gKartYoshi252TlutWheel3 + type: texture + offset: 0x92B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_253_tlut_wheel_0: + symbol: gKartYoshi253TlutWheel0 + type: texture + offset: 0x92BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_253_tlut_wheel_1: + symbol: gKartYoshi253TlutWheel1 + type: texture + offset: 0x92C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_253_tlut_wheel_2: + symbol: gKartYoshi253TlutWheel2 + type: texture + offset: 0x92CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_253_tlut_wheel_3: + symbol: gKartYoshi253TlutWheel3 + type: texture + offset: 0x92D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_254_tlut_wheel_0: + symbol: gKartYoshi254TlutWheel0 + type: texture + offset: 0x92DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_254_tlut_wheel_1: + symbol: gKartYoshi254TlutWheel1 + type: texture + offset: 0x92E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_254_tlut_wheel_2: + symbol: gKartYoshi254TlutWheel2 + type: texture + offset: 0x92EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_254_tlut_wheel_3: + symbol: gKartYoshi254TlutWheel3 + type: texture + offset: 0x92F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_255_tlut_wheel_0: + symbol: gKartYoshi255TlutWheel0 + type: texture + offset: 0x92FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_255_tlut_wheel_1: + symbol: gKartYoshi255TlutWheel1 + type: texture + offset: 0x93028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_255_tlut_wheel_2: + symbol: gKartYoshi255TlutWheel2 + type: texture + offset: 0x930A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_255_tlut_wheel_3: + symbol: gKartYoshi255TlutWheel3 + type: texture + offset: 0x93128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_256_tlut_wheel_0: + symbol: gKartYoshi256TlutWheel0 + type: texture + offset: 0x931A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_256_tlut_wheel_1: + symbol: gKartYoshi256TlutWheel1 + type: texture + offset: 0x93228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_256_tlut_wheel_2: + symbol: gKartYoshi256TlutWheel2 + type: texture + offset: 0x932A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_256_tlut_wheel_3: + symbol: gKartYoshi256TlutWheel3 + type: texture + offset: 0x93328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_257_tlut_wheel_0: + symbol: gKartYoshi257TlutWheel0 + type: texture + offset: 0x933A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_257_tlut_wheel_1: + symbol: gKartYoshi257TlutWheel1 + type: texture + offset: 0x93428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_257_tlut_wheel_2: + symbol: gKartYoshi257TlutWheel2 + type: texture + offset: 0x934A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_257_tlut_wheel_3: + symbol: gKartYoshi257TlutWheel3 + type: texture + offset: 0x93528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_258_tlut_wheel_0: + symbol: gKartYoshi258TlutWheel0 + type: texture + offset: 0x935A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_258_tlut_wheel_1: + symbol: gKartYoshi258TlutWheel1 + type: texture + offset: 0x93628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_258_tlut_wheel_2: + symbol: gKartYoshi258TlutWheel2 + type: texture + offset: 0x936A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_258_tlut_wheel_3: + symbol: gKartYoshi258TlutWheel3 + type: texture + offset: 0x93728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_259_tlut_wheel_0: + symbol: gKartYoshi259TlutWheel0 + type: texture + offset: 0x937A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_259_tlut_wheel_1: + symbol: gKartYoshi259TlutWheel1 + type: texture + offset: 0x93828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_259_tlut_wheel_2: + symbol: gKartYoshi259TlutWheel2 + type: texture + offset: 0x938A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_259_tlut_wheel_3: + symbol: gKartYoshi259TlutWheel3 + type: texture + offset: 0x93928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_260_tlut_wheel_0: + symbol: gKartYoshi260TlutWheel0 + type: texture + offset: 0x939A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_260_tlut_wheel_1: + symbol: gKartYoshi260TlutWheel1 + type: texture + offset: 0x93A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_260_tlut_wheel_2: + symbol: gKartYoshi260TlutWheel2 + type: texture + offset: 0x93AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_260_tlut_wheel_3: + symbol: gKartYoshi260TlutWheel3 + type: texture + offset: 0x93B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_261_tlut_wheel_0: + symbol: gKartYoshi261TlutWheel0 + type: texture + offset: 0x93BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_261_tlut_wheel_1: + symbol: gKartYoshi261TlutWheel1 + type: texture + offset: 0x93C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_261_tlut_wheel_2: + symbol: gKartYoshi261TlutWheel2 + type: texture + offset: 0x93CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_261_tlut_wheel_3: + symbol: gKartYoshi261TlutWheel3 + type: texture + offset: 0x93D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_262_tlut_wheel_0: + symbol: gKartYoshi262TlutWheel0 + type: texture + offset: 0x93DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_262_tlut_wheel_1: + symbol: gKartYoshi262TlutWheel1 + type: texture + offset: 0x93E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_262_tlut_wheel_2: + symbol: gKartYoshi262TlutWheel2 + type: texture + offset: 0x93EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_262_tlut_wheel_3: + symbol: gKartYoshi262TlutWheel3 + type: texture + offset: 0x93F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_263_tlut_wheel_0: + symbol: gKartYoshi263TlutWheel0 + type: texture + offset: 0x93FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_263_tlut_wheel_1: + symbol: gKartYoshi263TlutWheel1 + type: texture + offset: 0x94028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_263_tlut_wheel_2: + symbol: gKartYoshi263TlutWheel2 + type: texture + offset: 0x940A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_263_tlut_wheel_3: + symbol: gKartYoshi263TlutWheel3 + type: texture + offset: 0x94128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_264_tlut_wheel_0: + symbol: gKartYoshi264TlutWheel0 + type: texture + offset: 0x941A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_264_tlut_wheel_1: + symbol: gKartYoshi264TlutWheel1 + type: texture + offset: 0x94228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_264_tlut_wheel_2: + symbol: gKartYoshi264TlutWheel2 + type: texture + offset: 0x942A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_264_tlut_wheel_3: + symbol: gKartYoshi264TlutWheel3 + type: texture + offset: 0x94328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_265_tlut_wheel_0: + symbol: gKartYoshi265TlutWheel0 + type: texture + offset: 0x943A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_265_tlut_wheel_1: + symbol: gKartYoshi265TlutWheel1 + type: texture + offset: 0x94428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_265_tlut_wheel_2: + symbol: gKartYoshi265TlutWheel2 + type: texture + offset: 0x944A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_265_tlut_wheel_3: + symbol: gKartYoshi265TlutWheel3 + type: texture + offset: 0x94528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_266_tlut_wheel_0: + symbol: gKartYoshi266TlutWheel0 + type: texture + offset: 0x945A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_266_tlut_wheel_1: + symbol: gKartYoshi266TlutWheel1 + type: texture + offset: 0x94628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_266_tlut_wheel_2: + symbol: gKartYoshi266TlutWheel2 + type: texture + offset: 0x946A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_266_tlut_wheel_3: + symbol: gKartYoshi266TlutWheel3 + type: texture + offset: 0x94728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_267_tlut_wheel_0: + symbol: gKartYoshi267TlutWheel0 + type: texture + offset: 0x947A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_267_tlut_wheel_1: + symbol: gKartYoshi267TlutWheel1 + type: texture + offset: 0x94828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_267_tlut_wheel_2: + symbol: gKartYoshi267TlutWheel2 + type: texture + offset: 0x948A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_267_tlut_wheel_3: + symbol: gKartYoshi267TlutWheel3 + type: texture + offset: 0x94928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_268_tlut_wheel_0: + symbol: gKartYoshi268TlutWheel0 + type: texture + offset: 0x949A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_268_tlut_wheel_1: + symbol: gKartYoshi268TlutWheel1 + type: texture + offset: 0x94A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_268_tlut_wheel_2: + symbol: gKartYoshi268TlutWheel2 + type: texture + offset: 0x94AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_268_tlut_wheel_3: + symbol: gKartYoshi268TlutWheel3 + type: texture + offset: 0x94B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_269_tlut_wheel_0: + symbol: gKartYoshi269TlutWheel0 + type: texture + offset: 0x94BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_269_tlut_wheel_1: + symbol: gKartYoshi269TlutWheel1 + type: texture + offset: 0x94C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_269_tlut_wheel_2: + symbol: gKartYoshi269TlutWheel2 + type: texture + offset: 0x94CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_269_tlut_wheel_3: + symbol: gKartYoshi269TlutWheel3 + type: texture + offset: 0x94D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_270_tlut_wheel_0: + symbol: gKartYoshi270TlutWheel0 + type: texture + offset: 0x94DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_270_tlut_wheel_1: + symbol: gKartYoshi270TlutWheel1 + type: texture + offset: 0x94E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_270_tlut_wheel_2: + symbol: gKartYoshi270TlutWheel2 + type: texture + offset: 0x94EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_270_tlut_wheel_3: + symbol: gKartYoshi270TlutWheel3 + type: texture + offset: 0x94F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_271_tlut_wheel_0: + symbol: gKartYoshi271TlutWheel0 + type: texture + offset: 0x94FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_271_tlut_wheel_1: + symbol: gKartYoshi271TlutWheel1 + type: texture + offset: 0x95028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_271_tlut_wheel_2: + symbol: gKartYoshi271TlutWheel2 + type: texture + offset: 0x950A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_271_tlut_wheel_3: + symbol: gKartYoshi271TlutWheel3 + type: texture + offset: 0x95128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_272_tlut_wheel_0: + symbol: gKartYoshi272TlutWheel0 + type: texture + offset: 0x951A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_272_tlut_wheel_1: + symbol: gKartYoshi272TlutWheel1 + type: texture + offset: 0x95228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_272_tlut_wheel_2: + symbol: gKartYoshi272TlutWheel2 + type: texture + offset: 0x952A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_272_tlut_wheel_3: + symbol: gKartYoshi272TlutWheel3 + type: texture + offset: 0x95328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_273_tlut_wheel_0: + symbol: gKartYoshi273TlutWheel0 + type: texture + offset: 0x953A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_273_tlut_wheel_1: + symbol: gKartYoshi273TlutWheel1 + type: texture + offset: 0x95428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_273_tlut_wheel_2: + symbol: gKartYoshi273TlutWheel2 + type: texture + offset: 0x954A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_273_tlut_wheel_3: + symbol: gKartYoshi273TlutWheel3 + type: texture + offset: 0x95528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_274_tlut_wheel_0: + symbol: gKartYoshi274TlutWheel0 + type: texture + offset: 0x955A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_274_tlut_wheel_1: + symbol: gKartYoshi274TlutWheel1 + type: texture + offset: 0x95628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_274_tlut_wheel_2: + symbol: gKartYoshi274TlutWheel2 + type: texture + offset: 0x956A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_274_tlut_wheel_3: + symbol: gKartYoshi274TlutWheel3 + type: texture + offset: 0x95728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_275_tlut_wheel_0: + symbol: gKartYoshi275TlutWheel0 + type: texture + offset: 0x957A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_275_tlut_wheel_1: + symbol: gKartYoshi275TlutWheel1 + type: texture + offset: 0x95828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_275_tlut_wheel_2: + symbol: gKartYoshi275TlutWheel2 + type: texture + offset: 0x958A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_275_tlut_wheel_3: + symbol: gKartYoshi275TlutWheel3 + type: texture + offset: 0x95928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_276_tlut_wheel_0: + symbol: gKartYoshi276TlutWheel0 + type: texture + offset: 0x959A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_276_tlut_wheel_1: + symbol: gKartYoshi276TlutWheel1 + type: texture + offset: 0x95A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_276_tlut_wheel_2: + symbol: gKartYoshi276TlutWheel2 + type: texture + offset: 0x95AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_276_tlut_wheel_3: + symbol: gKartYoshi276TlutWheel3 + type: texture + offset: 0x95B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_277_tlut_wheel_0: + symbol: gKartYoshi277TlutWheel0 + type: texture + offset: 0x95BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_277_tlut_wheel_1: + symbol: gKartYoshi277TlutWheel1 + type: texture + offset: 0x95C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_277_tlut_wheel_2: + symbol: gKartYoshi277TlutWheel2 + type: texture + offset: 0x95CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_277_tlut_wheel_3: + symbol: gKartYoshi277TlutWheel3 + type: texture + offset: 0x95D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_278_tlut_wheel_0: + symbol: gKartYoshi278TlutWheel0 + type: texture + offset: 0x95DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_278_tlut_wheel_1: + symbol: gKartYoshi278TlutWheel1 + type: texture + offset: 0x95E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_278_tlut_wheel_2: + symbol: gKartYoshi278TlutWheel2 + type: texture + offset: 0x95EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_278_tlut_wheel_3: + symbol: gKartYoshi278TlutWheel3 + type: texture + offset: 0x95F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_279_tlut_wheel_0: + symbol: gKartYoshi279TlutWheel0 + type: texture + offset: 0x95FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_279_tlut_wheel_1: + symbol: gKartYoshi279TlutWheel1 + type: texture + offset: 0x96028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_279_tlut_wheel_2: + symbol: gKartYoshi279TlutWheel2 + type: texture + offset: 0x960A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_279_tlut_wheel_3: + symbol: gKartYoshi279TlutWheel3 + type: texture + offset: 0x96128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_280_tlut_wheel_0: + symbol: gKartYoshi280TlutWheel0 + type: texture + offset: 0x961A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_280_tlut_wheel_1: + symbol: gKartYoshi280TlutWheel1 + type: texture + offset: 0x96228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_280_tlut_wheel_2: + symbol: gKartYoshi280TlutWheel2 + type: texture + offset: 0x962A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_280_tlut_wheel_3: + symbol: gKartYoshi280TlutWheel3 + type: texture + offset: 0x96328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_281_tlut_wheel_0: + symbol: gKartYoshi281TlutWheel0 + type: texture + offset: 0x963A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_281_tlut_wheel_1: + symbol: gKartYoshi281TlutWheel1 + type: texture + offset: 0x96428 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_281_tlut_wheel_2: + symbol: gKartYoshi281TlutWheel2 + type: texture + offset: 0x964A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_281_tlut_wheel_3: + symbol: gKartYoshi281TlutWheel3 + type: texture + offset: 0x96528 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_282_tlut_wheel_0: + symbol: gKartYoshi282TlutWheel0 + type: texture + offset: 0x965A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_282_tlut_wheel_1: + symbol: gKartYoshi282TlutWheel1 + type: texture + offset: 0x96628 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_282_tlut_wheel_2: + symbol: gKartYoshi282TlutWheel2 + type: texture + offset: 0x966A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_282_tlut_wheel_3: + symbol: gKartYoshi282TlutWheel3 + type: texture + offset: 0x96728 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_283_tlut_wheel_0: + symbol: gKartYoshi283TlutWheel0 + type: texture + offset: 0x967A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_283_tlut_wheel_1: + symbol: gKartYoshi283TlutWheel1 + type: texture + offset: 0x96828 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_283_tlut_wheel_2: + symbol: gKartYoshi283TlutWheel2 + type: texture + offset: 0x968A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_283_tlut_wheel_3: + symbol: gKartYoshi283TlutWheel3 + type: texture + offset: 0x96928 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_284_tlut_wheel_0: + symbol: gKartYoshi284TlutWheel0 + type: texture + offset: 0x969A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_284_tlut_wheel_1: + symbol: gKartYoshi284TlutWheel1 + type: texture + offset: 0x96A28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_284_tlut_wheel_2: + symbol: gKartYoshi284TlutWheel2 + type: texture + offset: 0x96AA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_284_tlut_wheel_3: + symbol: gKartYoshi284TlutWheel3 + type: texture + offset: 0x96B28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_285_tlut_wheel_0: + symbol: gKartYoshi285TlutWheel0 + type: texture + offset: 0x96BA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_285_tlut_wheel_1: + symbol: gKartYoshi285TlutWheel1 + type: texture + offset: 0x96C28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_285_tlut_wheel_2: + symbol: gKartYoshi285TlutWheel2 + type: texture + offset: 0x96CA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_285_tlut_wheel_3: + symbol: gKartYoshi285TlutWheel3 + type: texture + offset: 0x96D28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_286_tlut_wheel_0: + symbol: gKartYoshi286TlutWheel0 + type: texture + offset: 0x96DA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_286_tlut_wheel_1: + symbol: gKartYoshi286TlutWheel1 + type: texture + offset: 0x96E28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_286_tlut_wheel_2: + symbol: gKartYoshi286TlutWheel2 + type: texture + offset: 0x96EA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_286_tlut_wheel_3: + symbol: gKartYoshi286TlutWheel3 + type: texture + offset: 0x96F28 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_287_tlut_wheel_0: + symbol: gKartYoshi287TlutWheel0 + type: texture + offset: 0x96FA8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_287_tlut_wheel_1: + symbol: gKartYoshi287TlutWheel1 + type: texture + offset: 0x97028 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_287_tlut_wheel_2: + symbol: gKartYoshi287TlutWheel2 + type: texture + offset: 0x970A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_287_tlut_wheel_3: + symbol: gKartYoshi287TlutWheel3 + type: texture + offset: 0x97128 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_288_tlut_wheel_0: + symbol: gKartYoshi288TlutWheel0 + type: texture + offset: 0x971A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_288_tlut_wheel_1: + symbol: gKartYoshi288TlutWheel1 + type: texture + offset: 0x97228 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_288_tlut_wheel_2: + symbol: gKartYoshi288TlutWheel2 + type: texture + offset: 0x972A8 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_288_tlut_wheel_3: + symbol: gKartYoshi288TlutWheel3 + type: texture + offset: 0x97328 + ctype: u16 + width: 16 + height: 4 + format: RGBA16 +yoshi_kart_palette: + symbol: gKartYoshiPalette + type: texture + offset: 0x973A8 + ctype: u16 + width: 16 + height: 12 + format: RGBA16 + diff --git a/yamls/us/other_textures.yml b/yamls/us/textures/other_textures.yml similarity index 99% rename from yamls/us/other_textures.yml rename to yamls/us/textures/other_textures.yml index 8460e4238..166ad2186 100644 --- a/yamls/us/other_textures.yml +++ b/yamls/us/textures/other_textures.yml @@ -4,7 +4,7 @@ no_compression: true header: code: - - '#include ' + - '#include ' - '#include ' - '#include ' header: diff --git a/yamls/us/player_selection.yml b/yamls/us/textures/player_selection.yml similarity index 100% rename from yamls/us/player_selection.yml rename to yamls/us/textures/player_selection.yml diff --git a/yamls/us/some_data.yml b/yamls/us/textures/some_data.yml similarity index 100% rename from yamls/us/some_data.yml rename to yamls/us/textures/some_data.yml diff --git a/yamls/us/textures/startup_logo.yml b/yamls/us/textures/startup_logo.yml new file mode 100644 index 000000000..a05f42897 --- /dev/null +++ b/yamls/us/textures/startup_logo.yml @@ -0,0 +1,19 @@ +:config: + segments: + - [0x06, 0x825800] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' +startup_reflection_map_gold: + symbol: startup_reflection_map_gold + type: texture + ctype: u16 + offset: 0x8A48 + size: 2048 + width: 32 + height: 32 + format: RGBA16 diff --git a/yamls/us/texture_data_2.yml b/yamls/us/textures/texture_data_2.yml similarity index 100% rename from yamls/us/texture_data_2.yml rename to yamls/us/textures/texture_data_2.yml diff --git a/yamls/us/texture_tkmk00.yml b/yamls/us/textures/texture_tkmk00.yml similarity index 100% rename from yamls/us/texture_tkmk00.yml rename to yamls/us/textures/texture_tkmk00.yml diff --git a/yamls/us/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.yml b/yamls/us/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.yml new file mode 100644 index 000000000..d87ff1732 --- /dev/null +++ b/yamls/us/textures/tracks/banshee_boardwalk/banshee_boardwalk_data.yml @@ -0,0 +1,92 @@ +:config: + segments: + - [0x06, 0x831DC0] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_banshee_boardwalk_bat: + range: [0x7DB8, 0x95B8] + mode: APPEND +d_course_banshee_boardwalk_boo_tlut: + symbol: d_course_banshee_boardwalk_boo_tlut + type: texture + offset: 0x5C80 + width: 16 + height: 16 + format: rgba16 + ctype: u8 +d_course_banshee_boardwalk_fish_eyes: + symbol: d_course_banshee_boardwalk_fish_eyes + type: texture + offset: 0x6E50 + width: 32 + height: 32 + format: rgba16 + ctype: u8 +d_course_banshee_boardwalk_bat_tlut: + symbol: d_course_banshee_boardwalk_bat_tlut + type: texture + offset: 0x7BB8 + width: 16 + height: 16 + format: rgba16 + ctype: u8 +gTextureBat1: + symbol: gTextureBat1 + type: texture + offset: 0x7DB8 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_banshee_boardwalk_bat_tlut +gTextureBat2: + symbol: gTextureBat2 + type: texture + offset: 0x85B8 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_banshee_boardwalk_bat_tlut +gTextureBat3: + symbol: gTextureBat3 + type: texture + offset: 0x8DB8 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_banshee_boardwalk_bat_tlut +gTextureBat4: + symbol: gTextureBat4 + type: texture + offset: 0x95B8 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_banshee_boardwalk_bat_tlut +d_course_banshee_boardwalk_texture: + symbol: d_course_banshee_boardwalk_texture + type: texture + offset: 0xA050 + width: 32 + height: 32 + format: rgba16 + ctype: u8 +d_course_banshee_boardwalk_texture2: + symbol: d_course_banshee_boardwalk_texture2 + type: texture + offset: 0xAA78 + width: 32 + height: 32 + format: rgba16 + ctype: u8 diff --git a/yamls/us/textures/tracks/bowsers_castle/bowsers_castle_data.yml b/yamls/us/textures/tracks/bowsers_castle/bowsers_castle_data.yml new file mode 100644 index 000000000..80797558b --- /dev/null +++ b/yamls/us/textures/tracks/bowsers_castle/bowsers_castle_data.yml @@ -0,0 +1,86 @@ +:config: + segments: + - [0x06, 0x82DF40] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_bowsers_castle_thwomp_faces: + range: [0x7138, 0x8538] + mode: APPEND +d_course_bowsers_castle_thwomp_side: + symbol: d_course_bowsers_castle_thwomp_side + type: texture + offset: 0x6738 + width: 32 + height: 32 + format: rgba16 + ctype: u8 +d_course_bowsers_castle_thwomp_tlut: + symbol: d_course_bowsers_castle_thwomp_tlut + type: texture + offset: 0x6F38 + width: 16 + height: 16 + format: rgba16 + ctype: u8 +gTextureThwompFace1: + symbol: gTextureThwompFace1 + type: texture + offset: 0x7138 + width: 16 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_bowsers_castle_thwomp_tlut +gTextureThwompFace2: + symbol: gTextureThwompFace2 + type: texture + offset: 0x7538 + width: 16 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_bowsers_castle_thwomp_tlut +gTextureThwompFace3: + symbol: gTextureThwompFace3 + type: texture + offset: 0x7938 + width: 16 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_bowsers_castle_thwomp_tlut +gTextureThwompFace4: + symbol: gTextureThwompFace4 + type: texture + offset: 0x7D38 + width: 16 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_bowsers_castle_thwomp_tlut +gTextureThwompFace5: + symbol: gTextureThwompFace5 + type: texture + offset: 0x8138 + width: 16 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_bowsers_castle_thwomp_tlut +gTextureThwompFace6: + symbol: gTextureThwompFace6 + type: texture + offset: 0x8538 + width: 16 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_bowsers_castle_thwomp_tlut diff --git a/yamls/us/textures/tracks/choco_mountain/choco_mountain_data.yml b/yamls/us/textures/tracks/choco_mountain/choco_mountain_data.yml new file mode 100644 index 000000000..2e5da4015 --- /dev/null +++ b/yamls/us/textures/tracks/choco_mountain/choco_mountain_data.yml @@ -0,0 +1,28 @@ +:config: + segments: + - [0x06, 0x82B620] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_choco_mountain_wall_texture: + symbol: d_course_choco_mountain_wall_texture + type: texture + offset: 0x5b38 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_choco_mountain_rock_texture: + symbol: d_course_choco_mountain_rock_texture + type: texture + offset: 0x6338 + width: 32 + height: 32 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml b/yamls/us/textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml new file mode 100644 index 000000000..19cf64441 --- /dev/null +++ b/yamls/us/textures/tracks/dks_jungle_parkway/dks_jungle_parkway_data.yml @@ -0,0 +1,132 @@ +:config: + segments: + - [0x06, 0x885A10] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_dks_jungle_parkway_mario_sign: + symbol: d_course_dks_jungle_parkway_mario_sign + type: texture + offset: 0x9E48 + width: 64 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_tree: + symbol: d_course_dks_jungle_parkway_tree + type: texture + offset: 0xAE48 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_boat_window_upper: + symbol: d_course_dks_jungle_parkway_boat_window_upper + type: texture + offset: 0xB648 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_boat_window_lower: + symbol: d_course_dks_jungle_parkway_boat_window_lower + type: texture + offset: 0xC648 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_boat_railing: + symbol: d_course_dks_jungle_parkway_boat_railing + type: texture + offset: 0xD648 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_boat_paddle: + symbol: d_course_dks_jungle_parkway_boat_paddle + type: texture + offset: 0xEAE0 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_boat_paddle2: + symbol: d_course_dks_jungle_parkway_boat_paddle2 + type: texture + offset: 0xF2E0 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_tree2_top: + symbol: d_course_dks_jungle_parkway_tree2_top + type: texture + offset: 0xFCC0 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_tree2_trunk: + symbol: d_course_dks_jungle_parkway_tree2_trunk + type: texture + offset: 0x104C0 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_tree3: + symbol: d_course_dks_jungle_parkway_tree3 + type: texture + offset: 0x10DC8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_tree4: + symbol: d_course_dks_jungle_parkway_tree4 + type: texture + offset: 0x115C8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_tree_trunk: + symbol: d_course_dks_jungle_parkway_tree_trunk + type: texture + offset: 0x11EF0 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_tree5: + symbol: d_course_dks_jungle_parkway_tree5 + type: texture + offset: 0x126F0 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_dks_jungle_parkway_palm_tree: + symbol: d_course_dks_jungle_parkway_palm_tree + type: texture + offset: 0x13078 + ctype: u16 + width: 32 + height: 32 + format: rgba16 +d_course_dks_jungle_parkway_kiwano_tlut: + symbol: d_course_dks_jungle_parkway_kiwano_tlut + type: texture + offset: 0x13978 + width: 16 + height: 16 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/frappe_snowland/frappe_snowland_data.yml b/yamls/us/textures/tracks/frappe_snowland/frappe_snowland_data.yml new file mode 100644 index 000000000..522a49fa8 --- /dev/null +++ b/yamls/us/textures/tracks/frappe_snowland/frappe_snowland_data.yml @@ -0,0 +1,63 @@ +:config: + segments: + - [0x06, 0x83F740] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_frappe_snowland_snowman_tlut: + symbol: d_course_frappe_snowland_snowman_tlut + type: texture + offset: 0x4B20 + width: 16 + height: 16 + format: rgba16 + ctype: u16 +d_course_frappe_snowland_snowman_head: + symbol: d_course_frappe_snowland_snowman_head + type: texture + offset: 0x4D20 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_frappe_snowland_snowman_tlut +d_course_frappe_snowland_snowman_body: + symbol: d_course_frappe_snowland_snowman_body + type: texture + offset: 0x5D20 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_frappe_snowland_snowman_tlut +d_course_frappe_snowland_snow_tlut: + symbol: d_course_frappe_snowland_snow_tlut + type: texture + offset: 0x6D20 + width: 16 + height: 16 + format: rgba16 + ctype: u16 +d_course_frappe_snowland_snow: + symbol: d_course_frappe_snowland_snow + type: texture + offset: 0x6F20 + width: 32 + height: 32 + format: ci8 + ctype: u8 + tlut_symbol: d_course_frappe_snowland_snow_tlut +d_course_frappe_snowland_tree_tlut: + symbol: d_course_frappe_snowland_tree_tlut + type: texture + offset: 0x7320 + width: 16 + height: 16 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/kalimari_desert/kalimari_desert_data.yml b/yamls/us/textures/tracks/kalimari_desert/kalimari_desert_data.yml new file mode 100644 index 000000000..5a8322f65 --- /dev/null +++ b/yamls/us/textures/tracks/kalimari_desert/kalimari_desert_data.yml @@ -0,0 +1,188 @@ +:config: + segments: + - [0x06, 0x8666a0] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_kalimari_desert_tree_tlut: + symbol: d_course_kalimari_desert_tree_tlut + type: texture + offset: 0x8380 + width: 16 + height: 16 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_crossing_sign_inactive_top_left: + symbol: d_course_kalimari_desert_crossing_sign_inactive_top_left + type: texture + offset: 0x87e8 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_crossing_sign_inactive_top_right: + symbol: d_course_kalimari_desert_crossing_sign_inactive_top_right + type: texture + offset: 0x97e8 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_crossing_sign_inactive_bottom_left: + symbol: d_course_kalimari_desert_crossing_sign_inactive_bottom_left + type: texture + offset: 0xa7e8 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_crossing_sign_inactive_bottom_right: + symbol: d_course_kalimari_desert_crossing_sign_inactive_bottom_right + type: texture + offset: 0xb7e8 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_crossing_sign_active_top_left: + symbol: d_course_kalimari_desert_crossing_sign_active_top_left + type: texture + offset: 0xc7e8 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_crossing_sign_active_top_right: + symbol: d_course_kalimari_desert_crossing_sign_active_top_right + type: texture + offset: 0xd7e8 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_crossing_sign_active_bottom_left: + symbol: d_course_kalimari_desert_crossing_sign_active_bottom_left + type: texture + offset: 0xe7e8 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_crossing_sign_active_bottom_right: + symbol: d_course_kalimari_desert_crossing_sign_active_bottom_right + type: texture + offset: 0xf7e8 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_locomotive_64: + symbol: d_course_kalimari_desert_locomotive_64 + type: texture + offset: 0x10e60 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_locomotive_cab_window: + symbol: d_course_kalimari_desert_locomotive_cab_window + type: texture + offset: 0x11660 + width: 64 + height: 32 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_locomotive_cab_window_front: + symbol: d_course_kalimari_desert_locomotive_cab_window_front + type: texture + offset: 0x12660 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_locomotive_chassis: + symbol: d_course_kalimari_desert_locomotive_chassis + type: texture + offset: 0x13660 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_locomotive_lamp: + symbol: d_course_kalimari_desert_locomotive_lamp + type: texture + offset: 0x13e60 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_locomotive_boiler: + symbol: d_course_kalimari_desert_locomotive_boiler + type: texture + offset: 0x14660 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_carriage_railing: + symbol: d_course_kalimari_desert_carriage_railing + type: texture + offset: 0x14e60 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_locomotive_tender: + symbol: d_course_kalimari_desert_locomotive_tender + type: texture + offset: 0x15e60 + width: 64 + height: 32 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_railway_ballast: + symbol: d_course_kalimari_desert_railway_ballast + type: texture + offset: 0x16e60 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_carriage_lower: + symbol: d_course_kalimari_desert_carriage_lower + type: texture + offset: 0x17660 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_carriage_door: + symbol: d_course_kalimari_desert_carriage_door + type: texture + offset: 0x17e60 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_carriage_window: + symbol: d_course_kalimari_desert_carriage_window + type: texture + offset: 0x18e60 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_kalimari_desert_train_bogie: + symbol: d_course_kalimari_desert_train_bogie + type: texture + offset: 0x21d28 + width: 32 + height: 64 + format: rgba16 + ctype: u16 \ No newline at end of file diff --git a/yamls/us/textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml b/yamls/us/textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml new file mode 100644 index 000000000..6c4608dc3 --- /dev/null +++ b/yamls/us/textures/tracks/koopa_troopa_beach/koopa_troopa_beach_data.yml @@ -0,0 +1,127 @@ +:config: + segments: + - [0x06, 0x842E40] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_koopa_troopa_beach_crab_frames: + range: [0xD828, 0x13828] + mode: APPEND +d_course_koopa_troopa_beach_crab_tlut: + symbol: d_course_koopa_troopa_beach_crab_tlut + type: texture + offset: 0xD628 + width: 16 + height: 16 + format: rgba16 + ctype: u16 +gTextureCrab1: + symbol: gTextureCrab1 + type: texture + offset: 0xD828 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_koopa_troopa_beach_crab_tlut +gTextureCrab2: + symbol: gTextureCrab2 + type: texture + offset: 0x0E828 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_koopa_troopa_beach_crab_tlut +gTextureCrab3: + symbol: gTextureCrab3 + type: texture + offset: 0x0F828 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_koopa_troopa_beach_crab_tlut +gTextureCrab4: + symbol: gTextureCrab4 + type: texture + offset: 0x10828 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_koopa_troopa_beach_crab_tlut +gTextureCrab5: + symbol: gTextureCrab5 + type: texture + offset: 0x11828 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_koopa_troopa_beach_crab_tlut +gTextureCrab6: + symbol: gTextureCrab6 + type: texture + offset: 0x12828 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_koopa_troopa_beach_crab_tlut +gTextureCrab7: + symbol: gTextureCrab7 + type: texture + offset: 0x13828 + width: 64 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_koopa_troopa_beach_crab_tlut +d_course_koopa_troopa_beach_bird_wing: + symbol: d_course_koopa_troopa_beach_bird_wing + type: texture + offset: 0x14C00 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_koopa_troopa_beach_bird_eye: + symbol: d_course_koopa_troopa_beach_bird_eye + type: texture + offset: 0x15400 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_koopa_troopa_beach_bird_beak: + symbol: d_course_koopa_troopa_beach_bird_beak + type: texture + offset: 0x15C00 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_koopa_troopa_beach_palm_frond: + symbol: d_course_koopa_troopa_beach_palm_frond + type: texture + offset: 0x16D20 + width: 64 + height: 32 + format: rgba16 + ctype: u16 +d_course_koopa_troopa_beach_palm_trunk: + symbol: d_course_koopa_troopa_beach_palm_trunk + type: texture + offset: 0x17D20 + width: 32 + height: 32 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/luigi_raceway/luigi_raceway_data.yml b/yamls/us/textures/tracks/luigi_raceway/luigi_raceway_data.yml new file mode 100644 index 000000000..2168c3af9 --- /dev/null +++ b/yamls/us/textures/tracks/luigi_raceway/luigi_raceway_data.yml @@ -0,0 +1,44 @@ +:config: + segments: + - [0x06, 0x84E8E0] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_luigi_raceway_sign_left: + symbol: d_course_luigi_raceway_sign_left + type: texture + offset: 0xC588 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_luigi_raceway_sign_right: + symbol: d_course_luigi_raceway_sign_right + type: texture + offset: 0xD588 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_luigi_raceway_balloon_basket: + symbol: d_course_luigi_raceway_balloon_basket + type: texture + offset: 0xE588 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_luigi_raceway_balloon_rope: + symbol: d_course_luigi_raceway_balloon_rope + type: texture + offset: 0xED88 + width: 32 + height: 32 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/mario_raceway/mario_raceway_data.yml b/yamls/us/textures/tracks/mario_raceway/mario_raceway_data.yml new file mode 100644 index 000000000..bac719c38 --- /dev/null +++ b/yamls/us/textures/tracks/mario_raceway/mario_raceway_data.yml @@ -0,0 +1,36 @@ +:config: + segments: + - [0x06, 0x8284D0] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_mario_raceway_piranha_plant_tlut: + symbol: d_course_mario_raceway_piranha_plant_tlut + type: texture + offset: 0x6750 + width: 16 + height: 16 + format: rgba16 + ctype: u16 +d_course_mario_sign_left: + symbol: d_course_mario_sign_left + type: texture + offset: 0x7068 + width: 32 + height: 64 + format: rgba16 + ctype: u16 +d_course_mario_sign_right: + symbol: d_course_mario_sign_right + type: texture + offset: 0x8068 + width: 32 + height: 64 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/moo_moo_farm/moo_moo_farm_data.yml b/yamls/us/textures/tracks/moo_moo_farm/moo_moo_farm_data.yml new file mode 100644 index 000000000..ab95fbc0a --- /dev/null +++ b/yamls/us/textures/tracks/moo_moo_farm/moo_moo_farm_data.yml @@ -0,0 +1,103 @@ +:config: + segments: + - [0x06, 0x852E20] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true + tables: + d_course_moo_moo_farm_mole_frames: + range: [0xFE70, 0x13670] + mode: APPEND +d_course_moo_moo_farm_mole_tlut: + symbol: d_course_moo_moo_farm_mole_tlut + type: texture + offset: 0xfc70 + width: 16 + height: 16 + format: rgba16 + ctype: u16 +gTextureMole1: + symbol: gTextureMole1 + type: texture + offset: 0xfe70 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_moo_moo_farm_mole_tlut +gTextureMole2: + symbol: gTextureMole2 + type: texture + offset: 0x10670 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_moo_moo_farm_mole_tlut +gTextureMole3: + symbol: gTextureMole3 + type: texture + offset: 0x10E70 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_moo_moo_farm_mole_tlut +gTextureMole4: + symbol: gTextureMole4 + type: texture + offset: 0x11670 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_moo_moo_farm_mole_tlut +gTextureMole5: + symbol: gTextureMole5 + type: texture + offset: 0x11E70 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_moo_moo_farm_mole_tlut +gTextureMole6: + symbol: gTextureMole6 + type: texture + offset: 0x12670 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_moo_moo_farm_mole_tlut +gTextureMole7: + symbol: gTextureMole7 + type: texture + offset: 0x12E70 + width: 32 + height: 64 + format: ci8 + ctype: u8 + tlut_symbol: d_course_moo_moo_farm_mole_tlut +d_course_moo_moo_farm_mole_dirt: + symbol: d_course_moo_moo_farm_mole_dirt + type: texture + offset: 0x13670 + width: 16 + height: 16 + format: rgba16 + ctype: u16 +d_course_moo_moo_farm_cow_tlut: + symbol: d_course_moo_moo_farm_cow_tlut + type: texture + offset: 0x13870 + width: 12 + height: 17 + format: rgba16 + ctype: u16 diff --git a/yamls/us/rainbow_road_data.yml b/yamls/us/textures/tracks/rainbow_road/rainbow_road_data.yml similarity index 55% rename from yamls/us/rainbow_road_data.yml rename to yamls/us/textures/tracks/rainbow_road/rainbow_road_data.yml index cf297cdde..fd931bd17 100644 --- a/yamls/us/rainbow_road_data.yml +++ b/yamls/us/textures/tracks/rainbow_road/rainbow_road_data.yml @@ -26,216 +26,6 @@ d_course_rainbow_road_static_textures: range: [0xB000, 0x11000] mode: APPEND -d_course_rainbow_road_dl_0: - symbol: d_course_rainbow_road_dl_0 - type: gfx - offset: 0x0 -d_course_rainbow_road_dl_80: - symbol: d_course_rainbow_road_dl_80 - type: gfx - offset: 0x80 -d_course_rainbow_road_dl_D8: - symbol: d_course_rainbow_road_dl_D8 - type: gfx - offset: 0xD8 -d_course_rainbow_road_dl_178: - symbol: d_course_rainbow_road_dl_178 - type: gfx - offset: 0x178 -d_course_rainbow_road_dl_210: - symbol: d_course_rainbow_road_dl_210 - type: gfx - offset: 0x210 -d_course_rainbow_road_dl_288: - symbol: d_course_rainbow_road_dl_288 - type: gfx - offset: 0x288 -d_course_rainbow_road_dl_338: - symbol: d_course_rainbow_road_dl_338 - type: gfx - offset: 0x338 -d_course_rainbow_road_dl_3D0: - symbol: d_course_rainbow_road_dl_3D0 - type: gfx - offset: 0x3D0 -d_course_rainbow_road_dl_4A0: - symbol: d_course_rainbow_road_dl_4A0 - type: gfx - offset: 0x4A0 -d_course_rainbow_road_dl_528: - symbol: d_course_rainbow_road_dl_528 - type: gfx - offset: 0x528 -d_course_rainbow_road_dl_5F8: - symbol: d_course_rainbow_road_dl_5F8 - type: gfx - offset: 0x5F8 -d_course_rainbow_road_dl_658: - symbol: d_course_rainbow_road_dl_658 - type: gfx - offset: 0x658 -d_course_rainbow_road_dl_6E0: - symbol: d_course_rainbow_road_dl_6E0 - type: gfx - offset: 0x6E0 -d_course_rainbow_road_dl_730: - symbol: d_course_rainbow_road_dl_730 - type: gfx - offset: 0x730 -d_course_rainbow_road_dl_7A8: - symbol: d_course_rainbow_road_dl_7A8 - type: gfx - offset: 0x7A8 -d_course_rainbow_road_dl_7F8: - symbol: d_course_rainbow_road_dl_7F8 - type: gfx - offset: 0x7F8 -d_course_rainbow_road_dl_880: - symbol: d_course_rainbow_road_dl_880 - type: gfx - offset: 0x880 -d_course_rainbow_road_dl_8E0: - symbol: d_course_rainbow_road_dl_8E0 - type: gfx - offset: 0x8E0 -d_course_rainbow_road_dl_958: - symbol: d_course_rainbow_road_dl_958 - type: gfx - offset: 0x958 -d_course_rainbow_road_dl_9C8: - symbol: d_course_rainbow_road_dl_9C8 - type: gfx - offset: 0x9C8 -d_course_rainbow_road_dl_A70: - symbol: d_course_rainbow_road_dl_A70 - type: gfx - offset: 0xA70 -d_course_rainbow_road_dl_B08: - symbol: d_course_rainbow_road_dl_B08 - type: gfx - offset: 0xB08 -d_course_rainbow_road_dl_B70: - symbol: d_course_rainbow_road_dl_B70 - type: gfx - offset: 0xB70 -d_course_rainbow_road_dl_BF0: - symbol: d_course_rainbow_road_dl_BF0 - type: gfx - offset: 0xBF0 -d_course_rainbow_road_dl_C70: - symbol: d_course_rainbow_road_dl_C70 - type: gfx - offset: 0xC70 -d_course_rainbow_road_dl_D10: - symbol: d_course_rainbow_road_dl_D10 - type: gfx - offset: 0xD10 -d_course_rainbow_road_dl_D80: - symbol: d_course_rainbow_road_dl_D80 - type: gfx - offset: 0xD80 -d_course_rainbow_road_dl_E08: - symbol: d_course_rainbow_road_dl_E08 - type: gfx - offset: 0xE08 -d_course_rainbow_road_dl_E98: - symbol: d_course_rainbow_road_dl_E98 - type: gfx - offset: 0xE98 -d_course_rainbow_road_dl_F50: - symbol: d_course_rainbow_road_dl_F50 - type: gfx - offset: 0xF50 -d_course_rainbow_road_dl_FB0: - symbol: d_course_rainbow_road_dl_FB0 - type: gfx - offset: 0xFB0 -d_course_rainbow_road_dl_1030: - symbol: d_course_rainbow_road_dl_1030 - type: gfx - offset: 0x1030 -d_course_rainbow_road_dl_10A8: - symbol: d_course_rainbow_road_dl_10A8 - type: gfx - offset: 0x10A8 -d_course_rainbow_road_dl_1150: - symbol: d_course_rainbow_road_dl_1150 - type: gfx - offset: 0x1150 -d_course_rainbow_road_dl_1198: - symbol: d_course_rainbow_road_dl_1198 - type: gfx - offset: 0x1198 -d_course_rainbow_road_dl_1228: - symbol: d_course_rainbow_road_dl_1228 - type: gfx - offset: 0x1228 -d_course_rainbow_road_dl_12A0: - symbol: d_course_rainbow_road_dl_12A0 - type: gfx - offset: 0x12A0 -d_course_rainbow_road_dl_1340: - symbol: d_course_rainbow_road_dl_1340 - type: gfx - offset: 0x1340 -d_course_rainbow_road_dl_13F0: - symbol: d_course_rainbow_road_dl_13F0 - type: gfx - offset: 0x13F0 -d_course_rainbow_road_dl_1488: - symbol: d_course_rainbow_road_dl_1488 - type: gfx - offset: 0x1488 -d_course_rainbow_road_dl_14E8: - symbol: d_course_rainbow_road_dl_14E8 - type: gfx - offset: 0x14E8 -d_course_rainbow_road_dl_1530: - symbol: d_course_rainbow_road_dl_1530 - type: gfx - offset: 0x1530 -d_course_rainbow_road_dl_15D0: - symbol: d_course_rainbow_road_dl_15D0 - type: gfx - offset: 0x15D0 -d_course_rainbow_road_dl_1678: - symbol: d_course_rainbow_road_dl_1678 - type: gfx - offset: 0x1678 -d_course_rainbow_road_dl_16C0: - symbol: d_course_rainbow_road_dl_16C0 - type: gfx - offset: 0x16C0 -d_course_rainbow_road_dl_1738: - symbol: d_course_rainbow_road_dl_1738 - type: gfx - offset: 0x1738 -d_course_rainbow_road_dl_17D0: - symbol: d_course_rainbow_road_dl_17D0 - type: gfx - offset: 0x17D0 -d_course_rainbow_road_dl_1878: - symbol: d_course_rainbow_road_dl_1878 - type: gfx - offset: 0x1878 -d_course_rainbow_road_dl_18D0: - symbol: d_course_rainbow_road_dl_18D0 - type: gfx - offset: 0x18D0 -d_course_rainbow_road_dl_1948: - symbol: d_course_rainbow_road_dl_1948 - type: gfx - offset: 0x1948 -d_course_rainbow_road_unknown_waypoints: - symbol: d_course_rainbow_road_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x19D0 - count: 101 -d_course_rainbow_road_track_waypoints: - symbol: d_course_rainbow_road_track_waypoints - type: mk64:TRACK_PATH - offset: 0x1CF8 - count: 1761 gTLUTRainbowRoadNeonMushroom1: symbol: gTLUTRainbowRoadNeonMushroom1 type: texture @@ -610,10 +400,6 @@ gTextureRainbowRoadNeonToad: format: ci8 ctype: u8 tlut_symbol: gTLUTRainbowRoadNeonToad -d_course_rainbow_road_light1: - symbol: d_course_rainbow_road_light1 - type: lights - offset: 0x12010 d_course_rainbow_road_sphere: symbol: d_course_rainbow_road_sphere type: texture @@ -654,82 +440,3 @@ d_course_rainbow_road_chain_chomp_eye: height: 32 format: rgba16 ctype: u16 -d_course_rainbow_road_chomp_lower_jaw_model: - symbol: d_course_rainbow_road_chomp_lower_jaw_model - type: vtx - offset: 0x15028 - count: 24 -d_course_rainbow_road_dl_151A8: - symbol: d_course_rainbow_road_dl_151A8 - type: gfx - offset: 0x151A8 -d_course_rainbow_road_chomp_body_lower_model1: - symbol: d_course_rainbow_road_chomp_body_lower_model1 - type: vtx - offset: 0x15250 - count: 32 -d_course_rainbow_road_chomp_body_lower_model2: - symbol: d_course_rainbow_road_chomp_body_lower_model2 - type: vtx - offset: 0x15450 - count: 11 -d_course_rainbow_road_chomp_body_lower_model3: - symbol: d_course_rainbow_road_chomp_body_lower_model3 - type: vtx - offset: 0x15500 - count: 5 -d_course_rainbow_road_dl_15550: - symbol: d_course_rainbow_road_dl_15550 - type: gfx - offset: 0x15550 -d_course_rainbow_road_chomp_upper_jaw_model: - symbol: d_course_rainbow_road_chomp_upper_jaw_model - type: vtx - offset: 0x15740 - count: 24 -d_course_rainbow_road_dl_158C0: - symbol: d_course_rainbow_road_dl_158C0 - type: gfx - offset: 0x158C0 -d_course_rainbow_road_chomp_body_upper_back_model1: - symbol: d_course_rainbow_road_chomp_body_upper_back_model1 - type: vtx - offset: 0x15968 - count: 32 -d_course_rainbow_road_chomp_body_upper_back_model2: - symbol: d_course_rainbow_road_chomp_body_upper_back_model2 - type: vtx - offset: 0x15B68 - count: 11 -d_course_rainbow_road_chomp_body_upper_back_model3: - symbol: d_course_rainbow_road_chomp_body_upper_back_model3 - type: vtx - offset: 0x15C18 - count: 5 -d_course_rainbow_road_dl_15C68: - symbol: d_course_rainbow_road_dl_15C68 - type: gfx - offset: 0x15C68 -d_course_rainbow_road_chomp_eyes_model: - symbol: d_course_rainbow_road_chomp_eyes_model - type: vtx - offset: 0x15E58 - count: 12 -d_course_rainbow_road_dl_15F18: - symbol: d_course_rainbow_road_dl_15F18 - type: gfx - offset: 0x15F18 -d_course_rainbow_road_dl_16220: - symbol: d_course_rainbow_road_dl_16220 - type: gfx - offset: 0x16220 -d_course_rainbow_road_item_box_spawns: - symbol: d_course_rainbow_road_item_box_spawns - type: mk64:spawn_data - offset: 0x16338 - count: 33 -d_course_rainbow_road_addr: - symbol: d_course_rainbow_road_addr - type: mk64:track_sections - offset: 0x16440 - count: 15 diff --git a/yamls/us/skyscraper_data.yml b/yamls/us/textures/tracks/royal_raceway/royal_raceway_data.yml similarity index 50% rename from yamls/us/skyscraper_data.yml rename to yamls/us/textures/tracks/royal_raceway/royal_raceway_data.yml index 81df6758c..b5327292f 100644 --- a/yamls/us/skyscraper_data.yml +++ b/yamls/us/textures/tracks/royal_raceway/royal_raceway_data.yml @@ -1,6 +1,6 @@ :config: segments: - - [0x06, 0x885780] + - [0x06, 0x84ABD0] - [0x07, 0x800000] header: code: @@ -10,13 +10,11 @@ - '#include ' - '#include ' references_packed_displaylists: true -d_course_skyscraper_dl: - symbol: d_course_skyscraper_dl - type: gfx - offset: 0x0 - otr_mode: index -d_course_skyscraper_item_box_spawns: - symbol: d_course_skyscraper_item_box_spawns - type: mk64:spawn_data - count: 25 - offset: 0x80 +d_course_royal_raceway_piranha_plant_tlut: + symbol: d_course_royal_raceway_piranha_plant_tlut + type: texture + offset: 0xD610 + width: 16 + height: 16 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/sherbet_land/sherbet_land_data.yml b/yamls/us/textures/tracks/sherbet_land/sherbet_land_data.yml new file mode 100644 index 000000000..ed1f10b0e --- /dev/null +++ b/yamls/us/textures/tracks/sherbet_land/sherbet_land_data.yml @@ -0,0 +1,36 @@ +:config: + segments: + - [0x06, 0x86ECF0] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_sherbet_land_ice: + symbol: d_course_sherbet_land_ice + type: texture + offset: 0x68E8 + width: 32 + height: 32 + format: ia16 + ctype: u8 +d_course_sherbet_land_penguin_beak: + symbol: d_course_sherbet_land_penguin_beak + type: texture + offset: 0x72E8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_sherbet_land_penguin_eye: + symbol: d_course_sherbet_land_penguin_eye + type: texture + offset: 0x7AE8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/toads_turnpike/toads_turnpike_data.yml b/yamls/us/textures/tracks/toads_turnpike/toads_turnpike_data.yml new file mode 100644 index 000000000..bef460068 --- /dev/null +++ b/yamls/us/textures/tracks/toads_turnpike/toads_turnpike_data.yml @@ -0,0 +1,284 @@ +:config: + segments: + - [0x06, 0x857E80] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_toads_turnpike_unk_windshield1: + symbol: d_course_toads_turnpike_unk_windshield1 + type: texture + offset: 0x59B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_unk_windshield2: + symbol: d_course_toads_turnpike_unk_windshield2 + type: texture + offset: 0x61B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_truck_box1: + symbol: d_course_toads_turnpike_truck_box1 + type: texture + offset: 0x69B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_truck1_headlights: + symbol: d_course_toads_turnpike_truck1_headlights + type: texture + offset: 0x71B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_truck1_tyre: + symbol: d_course_toads_turnpike_truck1_tyre + type: texture + offset: 0x79B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_truck1_cab: + symbol: d_course_toads_turnpike_truck1_cab + type: texture + offset: 0x81B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_truck1_cab_side: + symbol: d_course_toads_turnpike_truck1_cab_side + type: texture + offset: 0x89B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_back_lod0: + symbol: d_course_toads_turnpike_bus_back_lod0 + type: texture + offset: 0x91B8 + width: 64 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_side: + symbol: d_course_toads_turnpike_bus_side + type: texture + offset: 0xA1B8 + width: 64 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_door_lod0: + symbol: d_course_toads_turnpike_bus_door_lod0 + type: texture + offset: 0xB1B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_window: + symbol: d_course_toads_turnpike_bus_window + type: texture + offset: 0xB9B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_front_lod0: + symbol: d_course_toads_turnpike_bus_front_lod0 + type: texture + offset: 0xC1B8 + width: 64 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_black: + symbol: d_course_toads_turnpike_black + type: texture + offset: 0xD1B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_driver_window: + symbol: d_course_toads_turnpike_bus_driver_window + type: texture + offset: 0xD9B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_door_lod1: + symbol: d_course_toads_turnpike_bus_door_lod1 + type: texture + offset: 0xE1B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_side_lod1: + symbol: d_course_toads_turnpike_bus_side_lod1 + type: texture + offset: 0xE9B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_front_lod1: + symbol: d_course_toads_turnpike_bus_front_lod1 + type: texture + offset: 0xF1B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_bus_back_lod1: + symbol: d_course_toads_turnpike_bus_back_lod1 + type: texture + offset: 0xF9B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_stripe: + symbol: d_course_toads_turnpike_tanker_truck_stripe + type: texture + offset: 0x101B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_windshield: + symbol: d_course_toads_turnpike_tanker_truck_windshield + type: texture + offset: 0x109B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_front: + symbol: d_course_toads_turnpike_tanker_truck_front + type: texture + offset: 0x111B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_headlights: + symbol: d_course_toads_turnpike_tanker_truck_headlights + type: texture + offset: 0x119B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_bumper: + symbol: d_course_toads_turnpike_tanker_truck_bumper + type: texture + offset: 0x121B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_side_back_lod1: + symbol: d_course_toads_turnpike_tanker_truck_side_back_lod1 + type: texture + offset: 0x129B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_back_lod1: + symbol: d_course_toads_turnpike_tanker_truck_back_lod1 + type: texture + offset: 0x131B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_side_front_lod1: + symbol: d_course_toads_turnpike_tanker_truck_side_front_lod1 + type: texture + offset: 0x139B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_tanker_truck_front_lod1: + symbol: d_course_toads_turnpike_tanker_truck_front_lod1 + type: texture + offset: 0x141B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_truck_box2: + symbol: d_course_toads_turnpike_truck_box2 + type: texture + offset: 0x149B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_truck_box3: + symbol: d_course_toads_turnpike_truck_box3 + type: texture + offset: 0x151B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_car_headlights: + symbol: d_course_toads_turnpike_car_headlights + type: texture + offset: 0x159B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_car_taillights: + symbol: d_course_toads_turnpike_car_taillights + type: texture + offset: 0x161B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_car_front_lod1: + symbol: d_course_toads_turnpike_car_front_lod1 + type: texture + offset: 0x169B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_car_back_lod1: + symbol: d_course_toads_turnpike_car_back_lod1 + type: texture + offset: 0x171B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_toads_turnpike_car_side_lod1: + symbol: d_course_toads_turnpike_car_side_lod1 + type: texture + offset: 0x179B8 + width: 32 + height: 32 + format: rgba16 + ctype: u16 diff --git a/yamls/us/textures/tracks/wario_stadium/wario_stadium_data.yml b/yamls/us/textures/tracks/wario_stadium/wario_stadium_data.yml new file mode 100644 index 000000000..be4deae45 --- /dev/null +++ b/yamls/us/textures/tracks/wario_stadium/wario_stadium_data.yml @@ -0,0 +1,44 @@ +:config: + segments: + - [0x06, 0x8804A0] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_wario_stadium_sign_top_left: + symbol: d_course_wario_stadium_sign_top_left + type: texture + offset: 0x8890 + width: 64 + height: 32 + format: rgba16 + ctype: u8 +d_course_wario_stadium_sign_bottom_left: + symbol: d_course_wario_stadium_sign_bottom_left + type: texture + offset: 0x9890 + width: 64 + height: 32 + format: rgba16 + ctype: u8 +d_course_wario_stadium_sign_top_right: + symbol: d_course_wario_stadium_sign_top_right + type: texture + offset: 0xA890 + width: 64 + height: 32 + format: rgba16 + ctype: u8 +d_course_wario_stadium_sign_bottom_right: + symbol: d_course_wario_stadium_sign_bottom_right + type: texture + offset: 0xB890 + width: 64 + height: 32 + format: rgba16 + ctype: u8 diff --git a/yamls/us/textures/tracks/yoshi_valley/yoshi_valley_data.yml b/yamls/us/textures/tracks/yoshi_valley/yoshi_valley_data.yml new file mode 100644 index 000000000..9434c588d --- /dev/null +++ b/yamls/us/textures/tracks/yoshi_valley/yoshi_valley_data.yml @@ -0,0 +1,52 @@ +:config: + segments: + - [0x06, 0x835BA0] + - [0x07, 0x800000] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + references_packed_displaylists: true +d_course_yoshi_valley_yoshi_flag: + symbol: d_course_yoshi_valley_yoshi_flag + type: texture + offset: 0x139A0 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_yoshi_valley_hedgehog_tlut: + symbol: d_course_yoshi_valley_hedgehog_tlut + type: texture + offset: 0x14908 + width: 16 + height: 16 + format: rgba16 + ctype: u16 +d_course_yoshi_valley_hedgehog: + symbol: d_course_yoshi_valley_hedgehog + type: texture + offset: 0x14B08 + width: 64 + height: 64 + format: ci8 + ctype: u8 +d_course_yoshi_valley_egg_spot: + symbol: d_course_yoshi_valley_egg_spot + type: texture + offset: 0x16570 + width: 32 + height: 32 + format: rgba16 + ctype: u16 +d_course_yoshi_valley_egg: + symbol: d_course_yoshi_valley_egg + type: texture + offset: 0x16FA8 + ctype: u16 + width: 64 + height: 32 + format: rgba16 diff --git a/yamls/us/toad_kart.yml b/yamls/us/toad_kart.yml deleted file mode 100644 index 73d2fc774..000000000 --- a/yamls/us/toad_kart.yml +++ /dev/null @@ -1,12803 +0,0 @@ -:config: - segments: - - [0x0F, 0x43B3E0] - no_compression: true - header: - code: - - '#include ' - - '#include ' - - '#include ' - header: - - '#include ' - - '#include ' - tables: - toad_kart_wheels: - range: [0x6C6E8, 0x90868] - mode: APPEND -toad_kart_frame000: - symbol: gKartToad000 - type: texture - offset: 0x0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame001: - symbol: gKartToad001 - type: texture - offset: 0x468 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_001_wheel_0 -toad_kart_frame002: - symbol: gKartToad002 - type: texture - offset: 0x8EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_002_wheel_0 -toad_kart_frame003: - symbol: gKartToad003 - type: texture - offset: 0xD78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_003_wheel_0 -toad_kart_frame004: - symbol: gKartToad004 - type: texture - offset: 0x1228 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_004_wheel_0 -toad_kart_frame005: - symbol: gKartToad005 - type: texture - offset: 0x16DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_005_wheel_0 -toad_kart_frame006: - symbol: gKartToad006 - type: texture - offset: 0x1BB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_006_wheel_0 -toad_kart_frame007: - symbol: gKartToad007 - type: texture - offset: 0x208C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_007_wheel_0 -toad_kart_frame008: - symbol: gKartToad008 - type: texture - offset: 0x256C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_008_wheel_0 -toad_kart_frame009: - symbol: gKartToad009 - type: texture - offset: 0x2A5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_009_wheel_0 -toad_kart_frame010: - symbol: gKartToad010 - type: texture - offset: 0x2F58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_010_wheel_0 -toad_kart_frame011: - symbol: gKartToad011 - type: texture - offset: 0x3458 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_011_wheel_0 -toad_kart_frame012: - symbol: gKartToad012 - type: texture - offset: 0x3968 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_012_wheel_0 -toad_kart_frame013: - symbol: gKartToad013 - type: texture - offset: 0x3E80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_013_wheel_0 -toad_kart_frame014: - symbol: gKartToad014 - type: texture - offset: 0x43AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_014_wheel_0 -toad_kart_frame015: - symbol: gKartToad015 - type: texture - offset: 0x48E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_015_wheel_0 -toad_kart_frame016: - symbol: gKartToad016 - type: texture - offset: 0x4E38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_016_wheel_0 -toad_kart_frame017: - symbol: gKartToad017 - type: texture - offset: 0x5380 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_017_wheel_0 -toad_kart_frame018: - symbol: gKartToad018 - type: texture - offset: 0x58DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_018_wheel_0 -toad_kart_frame019: - symbol: gKartToad019 - type: texture - offset: 0x5E44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_019_wheel_0 -toad_kart_frame020: - symbol: gKartToad020 - type: texture - offset: 0x63C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_020_wheel_0 -toad_kart_frame021: - symbol: gKartToad021 - type: texture - offset: 0x6960 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_021_wheel_0 -toad_kart_frame022: - symbol: gKartToad022 - type: texture - offset: 0x6DDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_022_wheel_0 -toad_kart_frame023: - symbol: gKartToad023 - type: texture - offset: 0x7268 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_023_wheel_0 -toad_kart_frame024: - symbol: gKartToad024 - type: texture - offset: 0x770C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_024_wheel_0 -toad_kart_frame025: - symbol: gKartToad025 - type: texture - offset: 0x7BBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_025_wheel_0 -toad_kart_frame026: - symbol: gKartToad026 - type: texture - offset: 0x806C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_026_wheel_0 -toad_kart_frame027: - symbol: gKartToad027 - type: texture - offset: 0x8520 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_027_wheel_0 -toad_kart_frame028: - symbol: gKartToad028 - type: texture - offset: 0x89F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_028_wheel_0 -toad_kart_frame029: - symbol: gKartToad029 - type: texture - offset: 0x8EE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_029_wheel_0 -toad_kart_frame030: - symbol: gKartToad030 - type: texture - offset: 0x93EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_030_wheel_0 -toad_kart_frame031: - symbol: gKartToad031 - type: texture - offset: 0x9900 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_031_wheel_0 -toad_kart_frame032: - symbol: gKartToad032 - type: texture - offset: 0x9E14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_032_wheel_0 -toad_kart_frame033: - symbol: gKartToad033 - type: texture - offset: 0xA348 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_033_wheel_0 -toad_kart_frame034: - symbol: gKartToad034 - type: texture - offset: 0xA878 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_034_wheel_0 -toad_kart_frame035: - symbol: gKartToad035 - type: texture - offset: 0xADB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_035_wheel_0 -toad_kart_frame036: - symbol: gKartToad036 - type: texture - offset: 0xB2FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_036_wheel_0 -toad_kart_frame037: - symbol: gKartToad037 - type: texture - offset: 0xB838 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_037_wheel_0 -toad_kart_frame038: - symbol: gKartToad038 - type: texture - offset: 0xBD94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_038_wheel_0 -toad_kart_frame039: - symbol: gKartToad039 - type: texture - offset: 0xC2F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_039_wheel_0 -toad_kart_frame040: - symbol: gKartToad040 - type: texture - offset: 0xC874 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_040_wheel_0 -toad_kart_frame041: - symbol: gKartToad041 - type: texture - offset: 0xCE08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_041_wheel_0 -toad_kart_frame042: - symbol: gKartToad042 - type: texture - offset: 0xD3AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_042_wheel_0 -toad_kart_frame043: - symbol: gKartToad043 - type: texture - offset: 0xD834 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_043_wheel_0 -toad_kart_frame044: - symbol: gKartToad044 - type: texture - offset: 0xDCD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_044_wheel_0 -toad_kart_frame045: - symbol: gKartToad045 - type: texture - offset: 0xE184 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_045_wheel_0 -toad_kart_frame046: - symbol: gKartToad046 - type: texture - offset: 0xE64C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_046_wheel_0 -toad_kart_frame047: - symbol: gKartToad047 - type: texture - offset: 0xEB14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_047_wheel_0 -toad_kart_frame048: - symbol: gKartToad048 - type: texture - offset: 0xEFF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_048_wheel_0 -toad_kart_frame049: - symbol: gKartToad049 - type: texture - offset: 0xF4E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_049_wheel_0 -toad_kart_frame050: - symbol: gKartToad050 - type: texture - offset: 0xF9F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_050_wheel_0 -toad_kart_frame051: - symbol: gKartToad051 - type: texture - offset: 0xFF0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_051_wheel_0 -toad_kart_frame052: - symbol: gKartToad052 - type: texture - offset: 0x10448 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_052_wheel_0 -toad_kart_frame053: - symbol: gKartToad053 - type: texture - offset: 0x1097C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_053_wheel_0 -toad_kart_frame054: - symbol: gKartToad054 - type: texture - offset: 0x10ED4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_054_wheel_0 -toad_kart_frame055: - symbol: gKartToad055 - type: texture - offset: 0x1142C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_055_wheel_0 -toad_kart_frame056: - symbol: gKartToad056 - type: texture - offset: 0x11980 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_056_wheel_0 -toad_kart_frame057: - symbol: gKartToad057 - type: texture - offset: 0x11EC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_057_wheel_0 -toad_kart_frame058: - symbol: gKartToad058 - type: texture - offset: 0x1241C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_058_wheel_0 -toad_kart_frame059: - symbol: gKartToad059 - type: texture - offset: 0x12994 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_059_wheel_0 -toad_kart_frame060: - symbol: gKartToad060 - type: texture - offset: 0x12F18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_060_wheel_0 -toad_kart_frame061: - symbol: gKartToad061 - type: texture - offset: 0x134B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_061_wheel_0 -toad_kart_frame062: - symbol: gKartToad062 - type: texture - offset: 0x13A40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_062_wheel_0 -toad_kart_frame063: - symbol: gKartToad063 - type: texture - offset: 0x14000 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_063_wheel_0 -toad_kart_frame064: - symbol: gKartToad064 - type: texture - offset: 0x14490 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_064_wheel_0 -toad_kart_frame065: - symbol: gKartToad065 - type: texture - offset: 0x14934 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_065_wheel_0 -toad_kart_frame066: - symbol: gKartToad066 - type: texture - offset: 0x14DDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_066_wheel_0 -toad_kart_frame067: - symbol: gKartToad067 - type: texture - offset: 0x15298 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_067_wheel_0 -toad_kart_frame068: - symbol: gKartToad068 - type: texture - offset: 0x15780 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_068_wheel_0 -toad_kart_frame069: - symbol: gKartToad069 - type: texture - offset: 0x15C6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_069_wheel_0 -toad_kart_frame070: - symbol: gKartToad070 - type: texture - offset: 0x16178 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_070_wheel_0 -toad_kart_frame071: - symbol: gKartToad071 - type: texture - offset: 0x16698 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_071_wheel_0 -toad_kart_frame072: - symbol: gKartToad072 - type: texture - offset: 0x16BCC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_072_wheel_0 -toad_kart_frame073: - symbol: gKartToad073 - type: texture - offset: 0x1711C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_073_wheel_0 -toad_kart_frame074: - symbol: gKartToad074 - type: texture - offset: 0x17668 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_074_wheel_0 -toad_kart_frame075: - symbol: gKartToad075 - type: texture - offset: 0x17BC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_075_wheel_0 -toad_kart_frame076: - symbol: gKartToad076 - type: texture - offset: 0x1811C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_076_wheel_0 -toad_kart_frame077: - symbol: gKartToad077 - type: texture - offset: 0x18690 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_077_wheel_0 -toad_kart_frame078: - symbol: gKartToad078 - type: texture - offset: 0x18C04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_078_wheel_0 -toad_kart_frame079: - symbol: gKartToad079 - type: texture - offset: 0x1918C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_079_wheel_0 -toad_kart_frame080: - symbol: gKartToad080 - type: texture - offset: 0x19724 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_080_wheel_0 -toad_kart_frame081: - symbol: gKartToad081 - type: texture - offset: 0x19CB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_081_wheel_0 -toad_kart_frame082: - symbol: gKartToad082 - type: texture - offset: 0x1A254 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_082_wheel_0 -toad_kart_frame083: - symbol: gKartToad083 - type: texture - offset: 0x1A7F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_083_wheel_0 -toad_kart_frame084: - symbol: gKartToad084 - type: texture - offset: 0x1ADA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_084_wheel_0 -toad_kart_frame085: - symbol: gKartToad085 - type: texture - offset: 0x1B25C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_085_wheel_0 -toad_kart_frame086: - symbol: gKartToad086 - type: texture - offset: 0x1B724 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_086_wheel_0 -toad_kart_frame087: - symbol: gKartToad087 - type: texture - offset: 0x1BC00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_087_wheel_0 -toad_kart_frame088: - symbol: gKartToad088 - type: texture - offset: 0x1C100 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_088_wheel_0 -toad_kart_frame089: - symbol: gKartToad089 - type: texture - offset: 0x1C600 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_089_wheel_0 -toad_kart_frame090: - symbol: gKartToad090 - type: texture - offset: 0x1CAFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_090_wheel_0 -toad_kart_frame091: - symbol: gKartToad091 - type: texture - offset: 0x1D000 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_091_wheel_0 -toad_kart_frame092: - symbol: gKartToad092 - type: texture - offset: 0x1D530 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_092_wheel_0 -toad_kart_frame093: - symbol: gKartToad093 - type: texture - offset: 0x1DA78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_093_wheel_0 -toad_kart_frame094: - symbol: gKartToad094 - type: texture - offset: 0x1DFC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_094_wheel_0 -toad_kart_frame095: - symbol: gKartToad095 - type: texture - offset: 0x1E530 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_095_wheel_0 -toad_kart_frame096: - symbol: gKartToad096 - type: texture - offset: 0x1EAA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_096_wheel_0 -toad_kart_frame097: - symbol: gKartToad097 - type: texture - offset: 0x1F008 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_097_wheel_0 -toad_kart_frame098: - symbol: gKartToad098 - type: texture - offset: 0x1F570 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_098_wheel_0 -toad_kart_frame099: - symbol: gKartToad099 - type: texture - offset: 0x1FAF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_099_wheel_0 -toad_kart_frame100: - symbol: gKartToad100 - type: texture - offset: 0x20078 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_100_wheel_0 -toad_kart_frame101: - symbol: gKartToad101 - type: texture - offset: 0x20618 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_101_wheel_0 -toad_kart_frame102: - symbol: gKartToad102 - type: texture - offset: 0x20BB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_102_wheel_0 -toad_kart_frame103: - symbol: gKartToad103 - type: texture - offset: 0x2116C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_103_wheel_0 -toad_kart_frame104: - symbol: gKartToad104 - type: texture - offset: 0x21728 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_104_wheel_0 -toad_kart_frame105: - symbol: gKartToad105 - type: texture - offset: 0x21CF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_105_wheel_0 -toad_kart_frame106: - symbol: gKartToad106 - type: texture - offset: 0x221B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_106_wheel_0 -toad_kart_frame107: - symbol: gKartToad107 - type: texture - offset: 0x226A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_107_wheel_0 -toad_kart_frame108: - symbol: gKartToad108 - type: texture - offset: 0x22B9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_108_wheel_0 -toad_kart_frame109: - symbol: gKartToad109 - type: texture - offset: 0x230BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_109_wheel_0 -toad_kart_frame110: - symbol: gKartToad110 - type: texture - offset: 0x235D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_110_wheel_0 -toad_kart_frame111: - symbol: gKartToad111 - type: texture - offset: 0x23B00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_111_wheel_0 -toad_kart_frame112: - symbol: gKartToad112 - type: texture - offset: 0x2402C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_112_wheel_0 -toad_kart_frame113: - symbol: gKartToad113 - type: texture - offset: 0x24570 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_113_wheel_0 -toad_kart_frame114: - symbol: gKartToad114 - type: texture - offset: 0x24ABC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_114_wheel_0 -toad_kart_frame115: - symbol: gKartToad115 - type: texture - offset: 0x2501C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_115_wheel_0 -toad_kart_frame116: - symbol: gKartToad116 - type: texture - offset: 0x25590 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_116_wheel_0 -toad_kart_frame117: - symbol: gKartToad117 - type: texture - offset: 0x25B04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_117_wheel_0 -toad_kart_frame118: - symbol: gKartToad118 - type: texture - offset: 0x26084 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_118_wheel_0 -toad_kart_frame119: - symbol: gKartToad119 - type: texture - offset: 0x26600 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_119_wheel_0 -toad_kart_frame120: - symbol: gKartToad120 - type: texture - offset: 0x26BAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_120_wheel_0 -toad_kart_frame121: - symbol: gKartToad121 - type: texture - offset: 0x2713C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_121_wheel_0 -toad_kart_frame122: - symbol: gKartToad122 - type: texture - offset: 0x276DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_122_wheel_0 -toad_kart_frame123: - symbol: gKartToad123 - type: texture - offset: 0x27C90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_123_wheel_0 -toad_kart_frame124: - symbol: gKartToad124 - type: texture - offset: 0x28254 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_124_wheel_0 -toad_kart_frame125: - symbol: gKartToad125 - type: texture - offset: 0x28828 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_125_wheel_0 -toad_kart_frame126: - symbol: gKartToad126 - type: texture - offset: 0x28E0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_126_wheel_0 -toad_kart_frame127: - symbol: gKartToad127 - type: texture - offset: 0x292E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_127_wheel_0 -toad_kart_frame128: - symbol: gKartToad128 - type: texture - offset: 0x297C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_128_wheel_0 -toad_kart_frame129: - symbol: gKartToad129 - type: texture - offset: 0x29CBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_129_wheel_0 -toad_kart_frame130: - symbol: gKartToad130 - type: texture - offset: 0x2A1CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_130_wheel_0 -toad_kart_frame131: - symbol: gKartToad131 - type: texture - offset: 0x2A6E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_131_wheel_0 -toad_kart_frame132: - symbol: gKartToad132 - type: texture - offset: 0x2AC0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_132_wheel_0 -toad_kart_frame133: - symbol: gKartToad133 - type: texture - offset: 0x2B148 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_133_wheel_0 -toad_kart_frame134: - symbol: gKartToad134 - type: texture - offset: 0x2B6A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_134_wheel_0 -toad_kart_frame135: - symbol: gKartToad135 - type: texture - offset: 0x2BBFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_135_wheel_0 -toad_kart_frame136: - symbol: gKartToad136 - type: texture - offset: 0x2C17C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_136_wheel_0 -toad_kart_frame137: - symbol: gKartToad137 - type: texture - offset: 0x2C6F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_137_wheel_0 -toad_kart_frame138: - symbol: gKartToad138 - type: texture - offset: 0x2CC90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_138_wheel_0 -toad_kart_frame139: - symbol: gKartToad139 - type: texture - offset: 0x2D22C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_139_wheel_0 -toad_kart_frame140: - symbol: gKartToad140 - type: texture - offset: 0x2D7C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_140_wheel_0 -toad_kart_frame141: - symbol: gKartToad141 - type: texture - offset: 0x2DD60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_141_wheel_0 -toad_kart_frame142: - symbol: gKartToad142 - type: texture - offset: 0x2E2E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_142_wheel_0 -toad_kart_frame143: - symbol: gKartToad143 - type: texture - offset: 0x2E89C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_143_wheel_0 -toad_kart_frame144: - symbol: gKartToad144 - type: texture - offset: 0x2EE80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_144_wheel_0 -toad_kart_frame145: - symbol: gKartToad145 - type: texture - offset: 0x2F450 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_145_wheel_0 -toad_kart_frame146: - symbol: gKartToad146 - type: texture - offset: 0x2FA24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_146_wheel_0 -toad_kart_frame147: - symbol: gKartToad147 - type: texture - offset: 0x3000C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_147_wheel_0 -toad_kart_frame148: - symbol: gKartToad148 - type: texture - offset: 0x30504 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_148_wheel_0 -toad_kart_frame149: - symbol: gKartToad149 - type: texture - offset: 0x30A20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_149_wheel_0 -toad_kart_frame150: - symbol: gKartToad150 - type: texture - offset: 0x30F50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_150_wheel_0 -toad_kart_frame151: - symbol: gKartToad151 - type: texture - offset: 0x31474 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_151_wheel_0 -toad_kart_frame152: - symbol: gKartToad152 - type: texture - offset: 0x319A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_152_wheel_0 -toad_kart_frame153: - symbol: gKartToad153 - type: texture - offset: 0x31EEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_153_wheel_0 -toad_kart_frame154: - symbol: gKartToad154 - type: texture - offset: 0x3244C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_154_wheel_0 -toad_kart_frame155: - symbol: gKartToad155 - type: texture - offset: 0x329BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_155_wheel_0 -toad_kart_frame156: - symbol: gKartToad156 - type: texture - offset: 0x32F28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_156_wheel_0 -toad_kart_frame157: - symbol: gKartToad157 - type: texture - offset: 0x334AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_157_wheel_0 -toad_kart_frame158: - symbol: gKartToad158 - type: texture - offset: 0x33A40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_158_wheel_0 -toad_kart_frame159: - symbol: gKartToad159 - type: texture - offset: 0x33FC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_159_wheel_0 -toad_kart_frame160: - symbol: gKartToad160 - type: texture - offset: 0x3454C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_160_wheel_0 -toad_kart_frame161: - symbol: gKartToad161 - type: texture - offset: 0x34AE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_161_wheel_0 -toad_kart_frame162: - symbol: gKartToad162 - type: texture - offset: 0x350A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_162_wheel_0 -toad_kart_frame163: - symbol: gKartToad163 - type: texture - offset: 0x3566C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_163_wheel_0 -toad_kart_frame164: - symbol: gKartToad164 - type: texture - offset: 0x35C2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_164_wheel_0 -toad_kart_frame165: - symbol: gKartToad165 - type: texture - offset: 0x36218 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_165_wheel_0 -toad_kart_frame166: - symbol: gKartToad166 - type: texture - offset: 0x36804 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_166_wheel_0 -toad_kart_frame167: - symbol: gKartToad167 - type: texture - offset: 0x36DF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_167_wheel_0 -toad_kart_frame168: - symbol: gKartToad168 - type: texture - offset: 0x373E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_168_wheel_0 -toad_kart_frame169: - symbol: gKartToad169 - type: texture - offset: 0x378F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_169_wheel_0 -toad_kart_frame170: - symbol: gKartToad170 - type: texture - offset: 0x37E24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_170_wheel_0 -toad_kart_frame171: - symbol: gKartToad171 - type: texture - offset: 0x3836C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_171_wheel_0 -toad_kart_frame172: - symbol: gKartToad172 - type: texture - offset: 0x388B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_172_wheel_0 -toad_kart_frame173: - symbol: gKartToad173 - type: texture - offset: 0x38E1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_173_wheel_0 -toad_kart_frame174: - symbol: gKartToad174 - type: texture - offset: 0x39384 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_174_wheel_0 -toad_kart_frame175: - symbol: gKartToad175 - type: texture - offset: 0x398F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_175_wheel_0 -toad_kart_frame176: - symbol: gKartToad176 - type: texture - offset: 0x39E6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_176_wheel_0 -toad_kart_frame177: - symbol: gKartToad177 - type: texture - offset: 0x3A3E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_177_wheel_0 -toad_kart_frame178: - symbol: gKartToad178 - type: texture - offset: 0x3A970 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_178_wheel_0 -toad_kart_frame179: - symbol: gKartToad179 - type: texture - offset: 0x3AF00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_179_wheel_0 -toad_kart_frame180: - symbol: gKartToad180 - type: texture - offset: 0x3B498 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_180_wheel_0 -toad_kart_frame181: - symbol: gKartToad181 - type: texture - offset: 0x3BA4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_181_wheel_0 -toad_kart_frame182: - symbol: gKartToad182 - type: texture - offset: 0x3BFF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_182_wheel_0 -toad_kart_frame183: - symbol: gKartToad183 - type: texture - offset: 0x3C5A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_183_wheel_0 -toad_kart_frame184: - symbol: gKartToad184 - type: texture - offset: 0x3CB58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_184_wheel_0 -toad_kart_frame185: - symbol: gKartToad185 - type: texture - offset: 0x3D124 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_185_wheel_0 -toad_kart_frame186: - symbol: gKartToad186 - type: texture - offset: 0x3D720 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_186_wheel_0 -toad_kart_frame187: - symbol: gKartToad187 - type: texture - offset: 0x3DD18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_187_wheel_0 -toad_kart_frame188: - symbol: gKartToad188 - type: texture - offset: 0x3E330 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_188_wheel_0 -toad_kart_frame189: - symbol: gKartToad189 - type: texture - offset: 0x3E938 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_189_wheel_0 -toad_kart_frame190: - symbol: gKartToad190 - type: texture - offset: 0x3EDD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_190_wheel_0 -toad_kart_frame191: - symbol: gKartToad191 - type: texture - offset: 0x3F29C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_191_wheel_0 -toad_kart_frame192: - symbol: gKartToad192 - type: texture - offset: 0x3F778 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_192_wheel_0 -toad_kart_frame193: - symbol: gKartToad193 - type: texture - offset: 0x3FC90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_193_wheel_0 -toad_kart_frame194: - symbol: gKartToad194 - type: texture - offset: 0x401E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_194_wheel_0 -toad_kart_frame195: - symbol: gKartToad195 - type: texture - offset: 0x40758 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_195_wheel_0 -toad_kart_frame196: - symbol: gKartToad196 - type: texture - offset: 0x40CF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_196_wheel_0 -toad_kart_frame197: - symbol: gKartToad197 - type: texture - offset: 0x412B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_197_wheel_0 -toad_kart_frame198: - symbol: gKartToad198 - type: texture - offset: 0x41898 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_198_wheel_0 -toad_kart_frame199: - symbol: gKartToad199 - type: texture - offset: 0x41EA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_199_wheel_0 -toad_kart_frame200: - symbol: gKartToad200 - type: texture - offset: 0x424CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_200_wheel_0 -toad_kart_frame201: - symbol: gKartToad201 - type: texture - offset: 0x42AF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_201_wheel_0 -toad_kart_frame202: - symbol: gKartToad202 - type: texture - offset: 0x43108 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_202_wheel_0 -toad_kart_frame203: - symbol: gKartToad203 - type: texture - offset: 0x4370C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_203_wheel_0 -toad_kart_frame204: - symbol: gKartToad204 - type: texture - offset: 0x43D0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_204_wheel_0 -toad_kart_frame205: - symbol: gKartToad205 - type: texture - offset: 0x442E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_205_wheel_0 -toad_kart_frame206: - symbol: gKartToad206 - type: texture - offset: 0x448B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_206_wheel_0 -toad_kart_frame207: - symbol: gKartToad207 - type: texture - offset: 0x44E74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_207_wheel_0 -toad_kart_frame208: - symbol: gKartToad208 - type: texture - offset: 0x45424 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_208_wheel_0 -toad_kart_frame209: - symbol: gKartToad209 - type: texture - offset: 0x459D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_209_wheel_0 -toad_kart_frame210: - symbol: gKartToad210 - type: texture - offset: 0x45E7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_210_wheel_0 -toad_kart_frame211: - symbol: gKartToad211 - type: texture - offset: 0x4636C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_211_wheel_0 -toad_kart_frame212: - symbol: gKartToad212 - type: texture - offset: 0x46890 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_212_wheel_0 -toad_kart_frame213: - symbol: gKartToad213 - type: texture - offset: 0x46DE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_213_wheel_0 -toad_kart_frame214: - symbol: gKartToad214 - type: texture - offset: 0x47344 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_214_wheel_0 -toad_kart_frame215: - symbol: gKartToad215 - type: texture - offset: 0x478D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_215_wheel_0 -toad_kart_frame216: - symbol: gKartToad216 - type: texture - offset: 0x47E78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_216_wheel_0 -toad_kart_frame217: - symbol: gKartToad217 - type: texture - offset: 0x48440 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_217_wheel_0 -toad_kart_frame218: - symbol: gKartToad218 - type: texture - offset: 0x48A34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_218_wheel_0 -toad_kart_frame219: - symbol: gKartToad219 - type: texture - offset: 0x49048 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_219_wheel_0 -toad_kart_frame220: - symbol: gKartToad220 - type: texture - offset: 0x49648 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_220_wheel_0 -toad_kart_frame221: - symbol: gKartToad221 - type: texture - offset: 0x49C54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_221_wheel_0 -toad_kart_frame222: - symbol: gKartToad222 - type: texture - offset: 0x4A250 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_222_wheel_0 -toad_kart_frame223: - symbol: gKartToad223 - type: texture - offset: 0x4A824 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_223_wheel_0 -toad_kart_frame224: - symbol: gKartToad224 - type: texture - offset: 0x4ADD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_224_wheel_0 -toad_kart_frame225: - symbol: gKartToad225 - type: texture - offset: 0x4B374 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_225_wheel_0 -toad_kart_frame226: - symbol: gKartToad226 - type: texture - offset: 0x4B914 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_226_wheel_0 -toad_kart_frame227: - symbol: gKartToad227 - type: texture - offset: 0x4BEAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_227_wheel_0 -toad_kart_frame228: - symbol: gKartToad228 - type: texture - offset: 0x4C42C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_228_wheel_0 -toad_kart_frame229: - symbol: gKartToad229 - type: texture - offset: 0x4C998 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_229_wheel_0 -toad_kart_frame230: - symbol: gKartToad230 - type: texture - offset: 0x4CE6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_230_wheel_0 -toad_kart_frame231: - symbol: gKartToad231 - type: texture - offset: 0x4D384 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_231_wheel_0 -toad_kart_frame232: - symbol: gKartToad232 - type: texture - offset: 0x4D8C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_232_wheel_0 -toad_kart_frame233: - symbol: gKartToad233 - type: texture - offset: 0x4DE48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_233_wheel_0 -toad_kart_frame234: - symbol: gKartToad234 - type: texture - offset: 0x4E3E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_234_wheel_0 -toad_kart_frame235: - symbol: gKartToad235 - type: texture - offset: 0x4E988 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_235_wheel_0 -toad_kart_frame236: - symbol: gKartToad236 - type: texture - offset: 0x4EF6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_236_wheel_0 -toad_kart_frame237: - symbol: gKartToad237 - type: texture - offset: 0x4F544 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_237_wheel_0 -toad_kart_frame238: - symbol: gKartToad238 - type: texture - offset: 0x4FB30 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_238_wheel_0 -toad_kart_frame239: - symbol: gKartToad239 - type: texture - offset: 0x50144 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_239_wheel_0 -toad_kart_frame240: - symbol: gKartToad240 - type: texture - offset: 0x5073C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_240_wheel_0 -toad_kart_frame241: - symbol: gKartToad241 - type: texture - offset: 0x50D30 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_241_wheel_0 -toad_kart_frame242: - symbol: gKartToad242 - type: texture - offset: 0x512FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_242_wheel_0 -toad_kart_frame243: - symbol: gKartToad243 - type: texture - offset: 0x518BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_243_wheel_0 -toad_kart_frame244: - symbol: gKartToad244 - type: texture - offset: 0x51E68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_244_wheel_0 -toad_kart_frame245: - symbol: gKartToad245 - type: texture - offset: 0x523F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_245_wheel_0 -toad_kart_frame246: - symbol: gKartToad246 - type: texture - offset: 0x52978 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_246_wheel_0 -toad_kart_frame247: - symbol: gKartToad247 - type: texture - offset: 0x52EF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_247_wheel_0 -toad_kart_frame248: - symbol: gKartToad248 - type: texture - offset: 0x53458 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_248_wheel_0 -toad_kart_frame249: - symbol: gKartToad249 - type: texture - offset: 0x53978 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_249_wheel_0 -toad_kart_frame250: - symbol: gKartToad250 - type: texture - offset: 0x53E8C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_250_wheel_0 -toad_kart_frame251: - symbol: gKartToad251 - type: texture - offset: 0x543B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_251_wheel_0 -toad_kart_frame252: - symbol: gKartToad252 - type: texture - offset: 0x54920 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_252_wheel_0 -toad_kart_frame253: - symbol: gKartToad253 - type: texture - offset: 0x54EA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_253_wheel_0 -toad_kart_frame254: - symbol: gKartToad254 - type: texture - offset: 0x55448 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_254_wheel_0 -toad_kart_frame255: - symbol: gKartToad255 - type: texture - offset: 0x55A14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_255_wheel_0 -toad_kart_frame256: - symbol: gKartToad256 - type: texture - offset: 0x56004 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_256_wheel_0 -toad_kart_frame257: - symbol: gKartToad257 - type: texture - offset: 0x565F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_257_wheel_0 -toad_kart_frame258: - symbol: gKartToad258 - type: texture - offset: 0x56BF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_258_wheel_0 -toad_kart_frame259: - symbol: gKartToad259 - type: texture - offset: 0x571FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_259_wheel_0 -toad_kart_frame260: - symbol: gKartToad260 - type: texture - offset: 0x57800 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_260_wheel_0 -toad_kart_frame261: - symbol: gKartToad261 - type: texture - offset: 0x57DD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_261_wheel_0 -toad_kart_frame262: - symbol: gKartToad262 - type: texture - offset: 0x583A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_262_wheel_0 -toad_kart_frame263: - symbol: gKartToad263 - type: texture - offset: 0x5893C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_263_wheel_0 -toad_kart_frame264: - symbol: gKartToad264 - type: texture - offset: 0x58EA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_264_wheel_0 -toad_kart_frame265: - symbol: gKartToad265 - type: texture - offset: 0x5940C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_265_wheel_0 -toad_kart_frame266: - symbol: gKartToad266 - type: texture - offset: 0x5996C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_266_wheel_0 -toad_kart_frame267: - symbol: gKartToad267 - type: texture - offset: 0x59EB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_267_wheel_0 -toad_kart_frame268: - symbol: gKartToad268 - type: texture - offset: 0x5A3CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_268_wheel_0 -toad_kart_frame269: - symbol: gKartToad269 - type: texture - offset: 0x5A8A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_269_wheel_0 -toad_kart_frame270: - symbol: gKartToad270 - type: texture - offset: 0x5ADE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_270_wheel_0 -toad_kart_frame271: - symbol: gKartToad271 - type: texture - offset: 0x5B368 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_271_wheel_0 -toad_kart_frame272: - symbol: gKartToad272 - type: texture - offset: 0x5B8F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_272_wheel_0 -toad_kart_frame273: - symbol: gKartToad273 - type: texture - offset: 0x5BE98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_273_wheel_0 -toad_kart_frame274: - symbol: gKartToad274 - type: texture - offset: 0x5C468 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_274_wheel_0 -toad_kart_frame275: - symbol: gKartToad275 - type: texture - offset: 0x5CA5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_275_wheel_0 -toad_kart_frame276: - symbol: gKartToad276 - type: texture - offset: 0x5D074 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_276_wheel_0 -toad_kart_frame277: - symbol: gKartToad277 - type: texture - offset: 0x5D684 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_277_wheel_0 -toad_kart_frame278: - symbol: gKartToad278 - type: texture - offset: 0x5DC98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_278_wheel_0 -toad_kart_frame279: - symbol: gKartToad279 - type: texture - offset: 0x5E29C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_279_wheel_0 -toad_kart_frame280: - symbol: gKartToad280 - type: texture - offset: 0x5E898 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_280_wheel_0 -toad_kart_frame281: - symbol: gKartToad281 - type: texture - offset: 0x5EE74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_281_wheel_0 -toad_kart_frame282: - symbol: gKartToad282 - type: texture - offset: 0x5F420 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_282_wheel_0 -toad_kart_frame283: - symbol: gKartToad283 - type: texture - offset: 0x5F994 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_283_wheel_0 -toad_kart_frame284: - symbol: gKartToad284 - type: texture - offset: 0x5FEE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_284_wheel_0 -toad_kart_frame285: - symbol: gKartToad285 - type: texture - offset: 0x6041C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_285_wheel_0 -toad_kart_frame286: - symbol: gKartToad286 - type: texture - offset: 0x6092C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_286_wheel_0 -toad_kart_frame287: - symbol: gKartToad287 - type: texture - offset: 0x60E30 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_287_wheel_0 -toad_kart_frame288: - symbol: gKartToad288 - type: texture - offset: 0x61300 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_288_wheel_0 -toad_kart_frame289: - symbol: gKartToad289 - type: texture - offset: 0x617A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame290: - symbol: gKartToad290 - type: texture - offset: 0x61C34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame291: - symbol: gKartToad291 - type: texture - offset: 0x62180 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame292: - symbol: gKartToad292 - type: texture - offset: 0x62748 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame293: - symbol: gKartToad293 - type: texture - offset: 0x62DB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame294: - symbol: gKartToad294 - type: texture - offset: 0x633BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame295: - symbol: gKartToad295 - type: texture - offset: 0x639C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame296: - symbol: gKartToad296 - type: texture - offset: 0x63F64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame297: - symbol: gKartToad297 - type: texture - offset: 0x6447C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame298: - symbol: gKartToad298 - type: texture - offset: 0x64918 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame299: - symbol: gKartToad299 - type: texture - offset: 0x64E54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame300: - symbol: gKartToad300 - type: texture - offset: 0x653BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame301: - symbol: gKartToad301 - type: texture - offset: 0x65934 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame302: - symbol: gKartToad302 - type: texture - offset: 0x65E8C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame303: - symbol: gKartToad303 - type: texture - offset: 0x66418 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame304: - symbol: gKartToad304 - type: texture - offset: 0x669B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame305: - symbol: gKartToad305 - type: texture - offset: 0x66EF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame306: - symbol: gKartToad306 - type: texture - offset: 0x6734C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame307: - symbol: gKartToad307 - type: texture - offset: 0x678EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame308: - symbol: gKartToad308 - type: texture - offset: 0x67F2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame309: - symbol: gKartToad309 - type: texture - offset: 0x6859C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame310: - symbol: gKartToad310 - type: texture - offset: 0x68B80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame311: - symbol: gKartToad311 - type: texture - offset: 0x69160 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame312: - symbol: gKartToad312 - type: texture - offset: 0x69728 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame313: - symbol: gKartToad313 - type: texture - offset: 0x69C10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame314: - symbol: gKartToad314 - type: texture - offset: 0x6A0AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame315: - symbol: gKartToad315 - type: texture - offset: 0x6A5E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame316: - symbol: gKartToad316 - type: texture - offset: 0x6AB2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame317: - symbol: gKartToad317 - type: texture - offset: 0x6B0B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame318: - symbol: gKartToad318 - type: texture - offset: 0x6B658 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame319: - symbol: gKartToad319 - type: texture - offset: 0x6BBE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -toad_kart_frame320: - symbol: gKartToad320 - type: texture - offset: 0x6C190 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: toad_kart_palette - tlut_wheel: kart_000_wheel_0 -kart_000_wheel_0: - symbol: gKartToad000Wheel0 - type: texture - offset: 0x6C6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_1: - symbol: gKartToad000Wheel1 - type: texture - offset: 0x6C768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_2: - symbol: gKartToad000Wheel2 - type: texture - offset: 0x6C7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_3: - symbol: gKartToad000Wheel3 - type: texture - offset: 0x6C868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_0: - symbol: gKartToad001Wheel0 - type: texture - offset: 0x6C8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_1: - symbol: gKartToad001Wheel1 - type: texture - offset: 0x6C968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_2: - symbol: gKartToad001Wheel2 - type: texture - offset: 0x6C9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_3: - symbol: gKartToad001Wheel3 - type: texture - offset: 0x6CA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_0: - symbol: gKartToad002Wheel0 - type: texture - offset: 0x6CAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_1: - symbol: gKartToad002Wheel1 - type: texture - offset: 0x6CB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_2: - symbol: gKartToad002Wheel2 - type: texture - offset: 0x6CBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_3: - symbol: gKartToad002Wheel3 - type: texture - offset: 0x6CC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_0: - symbol: gKartToad003Wheel0 - type: texture - offset: 0x6CCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_1: - symbol: gKartToad003Wheel1 - type: texture - offset: 0x6CD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_2: - symbol: gKartToad003Wheel2 - type: texture - offset: 0x6CDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_3: - symbol: gKartToad003Wheel3 - type: texture - offset: 0x6CE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_0: - symbol: gKartToad004Wheel0 - type: texture - offset: 0x6CEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_1: - symbol: gKartToad004Wheel1 - type: texture - offset: 0x6CF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_2: - symbol: gKartToad004Wheel2 - type: texture - offset: 0x6CFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_3: - symbol: gKartToad004Wheel3 - type: texture - offset: 0x6D068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_0: - symbol: gKartToad005Wheel0 - type: texture - offset: 0x6D0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_1: - symbol: gKartToad005Wheel1 - type: texture - offset: 0x6D168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_2: - symbol: gKartToad005Wheel2 - type: texture - offset: 0x6D1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_3: - symbol: gKartToad005Wheel3 - type: texture - offset: 0x6D268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_0: - symbol: gKartToad006Wheel0 - type: texture - offset: 0x6D2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_1: - symbol: gKartToad006Wheel1 - type: texture - offset: 0x6D368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_2: - symbol: gKartToad006Wheel2 - type: texture - offset: 0x6D3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_3: - symbol: gKartToad006Wheel3 - type: texture - offset: 0x6D468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_0: - symbol: gKartToad007Wheel0 - type: texture - offset: 0x6D4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_1: - symbol: gKartToad007Wheel1 - type: texture - offset: 0x6D568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_2: - symbol: gKartToad007Wheel2 - type: texture - offset: 0x6D5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_3: - symbol: gKartToad007Wheel3 - type: texture - offset: 0x6D668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_0: - symbol: gKartToad008Wheel0 - type: texture - offset: 0x6D6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_1: - symbol: gKartToad008Wheel1 - type: texture - offset: 0x6D768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_2: - symbol: gKartToad008Wheel2 - type: texture - offset: 0x6D7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_3: - symbol: gKartToad008Wheel3 - type: texture - offset: 0x6D868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_0: - symbol: gKartToad009Wheel0 - type: texture - offset: 0x6D8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_1: - symbol: gKartToad009Wheel1 - type: texture - offset: 0x6D968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_2: - symbol: gKartToad009Wheel2 - type: texture - offset: 0x6D9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_3: - symbol: gKartToad009Wheel3 - type: texture - offset: 0x6DA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_0: - symbol: gKartToad010Wheel0 - type: texture - offset: 0x6DAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_1: - symbol: gKartToad010Wheel1 - type: texture - offset: 0x6DB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_2: - symbol: gKartToad010Wheel2 - type: texture - offset: 0x6DBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_3: - symbol: gKartToad010Wheel3 - type: texture - offset: 0x6DC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_0: - symbol: gKartToad011Wheel0 - type: texture - offset: 0x6DCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_1: - symbol: gKartToad011Wheel1 - type: texture - offset: 0x6DD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_2: - symbol: gKartToad011Wheel2 - type: texture - offset: 0x6DDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_3: - symbol: gKartToad011Wheel3 - type: texture - offset: 0x6DE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_0: - symbol: gKartToad012Wheel0 - type: texture - offset: 0x6DEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_1: - symbol: gKartToad012Wheel1 - type: texture - offset: 0x6DF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_2: - symbol: gKartToad012Wheel2 - type: texture - offset: 0x6DFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_3: - symbol: gKartToad012Wheel3 - type: texture - offset: 0x6E068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_0: - symbol: gKartToad013Wheel0 - type: texture - offset: 0x6E0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_1: - symbol: gKartToad013Wheel1 - type: texture - offset: 0x6E168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_2: - symbol: gKartToad013Wheel2 - type: texture - offset: 0x6E1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_3: - symbol: gKartToad013Wheel3 - type: texture - offset: 0x6E268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_0: - symbol: gKartToad014Wheel0 - type: texture - offset: 0x6E2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_1: - symbol: gKartToad014Wheel1 - type: texture - offset: 0x6E368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_2: - symbol: gKartToad014Wheel2 - type: texture - offset: 0x6E3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_3: - symbol: gKartToad014Wheel3 - type: texture - offset: 0x6E468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_0: - symbol: gKartToad015Wheel0 - type: texture - offset: 0x6E4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_1: - symbol: gKartToad015Wheel1 - type: texture - offset: 0x6E568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_2: - symbol: gKartToad015Wheel2 - type: texture - offset: 0x6E5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_3: - symbol: gKartToad015Wheel3 - type: texture - offset: 0x6E668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_0: - symbol: gKartToad016Wheel0 - type: texture - offset: 0x6E6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_1: - symbol: gKartToad016Wheel1 - type: texture - offset: 0x6E768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_2: - symbol: gKartToad016Wheel2 - type: texture - offset: 0x6E7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_3: - symbol: gKartToad016Wheel3 - type: texture - offset: 0x6E868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_0: - symbol: gKartToad017Wheel0 - type: texture - offset: 0x6E8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_1: - symbol: gKartToad017Wheel1 - type: texture - offset: 0x6E968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_2: - symbol: gKartToad017Wheel2 - type: texture - offset: 0x6E9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_3: - symbol: gKartToad017Wheel3 - type: texture - offset: 0x6EA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_0: - symbol: gKartToad018Wheel0 - type: texture - offset: 0x6EAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_1: - symbol: gKartToad018Wheel1 - type: texture - offset: 0x6EB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_2: - symbol: gKartToad018Wheel2 - type: texture - offset: 0x6EBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_3: - symbol: gKartToad018Wheel3 - type: texture - offset: 0x6EC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_0: - symbol: gKartToad019Wheel0 - type: texture - offset: 0x6ECE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_1: - symbol: gKartToad019Wheel1 - type: texture - offset: 0x6ED68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_2: - symbol: gKartToad019Wheel2 - type: texture - offset: 0x6EDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_3: - symbol: gKartToad019Wheel3 - type: texture - offset: 0x6EE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_0: - symbol: gKartToad020Wheel0 - type: texture - offset: 0x6EEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_1: - symbol: gKartToad020Wheel1 - type: texture - offset: 0x6EF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_2: - symbol: gKartToad020Wheel2 - type: texture - offset: 0x6EFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_3: - symbol: gKartToad020Wheel3 - type: texture - offset: 0x6F068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_0: - symbol: gKartToad021Wheel0 - type: texture - offset: 0x6F0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_1: - symbol: gKartToad021Wheel1 - type: texture - offset: 0x6F168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_2: - symbol: gKartToad021Wheel2 - type: texture - offset: 0x6F1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_3: - symbol: gKartToad021Wheel3 - type: texture - offset: 0x6F268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_0: - symbol: gKartToad022Wheel0 - type: texture - offset: 0x6F2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_1: - symbol: gKartToad022Wheel1 - type: texture - offset: 0x6F368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_2: - symbol: gKartToad022Wheel2 - type: texture - offset: 0x6F3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_3: - symbol: gKartToad022Wheel3 - type: texture - offset: 0x6F468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_0: - symbol: gKartToad023Wheel0 - type: texture - offset: 0x6F4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_1: - symbol: gKartToad023Wheel1 - type: texture - offset: 0x6F568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_2: - symbol: gKartToad023Wheel2 - type: texture - offset: 0x6F5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_3: - symbol: gKartToad023Wheel3 - type: texture - offset: 0x6F668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_0: - symbol: gKartToad024Wheel0 - type: texture - offset: 0x6F6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_1: - symbol: gKartToad024Wheel1 - type: texture - offset: 0x6F768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_2: - symbol: gKartToad024Wheel2 - type: texture - offset: 0x6F7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_3: - symbol: gKartToad024Wheel3 - type: texture - offset: 0x6F868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_0: - symbol: gKartToad025Wheel0 - type: texture - offset: 0x6F8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_1: - symbol: gKartToad025Wheel1 - type: texture - offset: 0x6F968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_2: - symbol: gKartToad025Wheel2 - type: texture - offset: 0x6F9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_3: - symbol: gKartToad025Wheel3 - type: texture - offset: 0x6FA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_0: - symbol: gKartToad026Wheel0 - type: texture - offset: 0x6FAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_1: - symbol: gKartToad026Wheel1 - type: texture - offset: 0x6FB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_2: - symbol: gKartToad026Wheel2 - type: texture - offset: 0x6FBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_3: - symbol: gKartToad026Wheel3 - type: texture - offset: 0x6FC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_0: - symbol: gKartToad027Wheel0 - type: texture - offset: 0x6FCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_1: - symbol: gKartToad027Wheel1 - type: texture - offset: 0x6FD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_2: - symbol: gKartToad027Wheel2 - type: texture - offset: 0x6FDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_3: - symbol: gKartToad027Wheel3 - type: texture - offset: 0x6FE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_0: - symbol: gKartToad028Wheel0 - type: texture - offset: 0x6FEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_1: - symbol: gKartToad028Wheel1 - type: texture - offset: 0x6FF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_2: - symbol: gKartToad028Wheel2 - type: texture - offset: 0x6FFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_3: - symbol: gKartToad028Wheel3 - type: texture - offset: 0x70068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_0: - symbol: gKartToad029Wheel0 - type: texture - offset: 0x700E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_1: - symbol: gKartToad029Wheel1 - type: texture - offset: 0x70168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_2: - symbol: gKartToad029Wheel2 - type: texture - offset: 0x701E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_3: - symbol: gKartToad029Wheel3 - type: texture - offset: 0x70268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_0: - symbol: gKartToad030Wheel0 - type: texture - offset: 0x702E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_1: - symbol: gKartToad030Wheel1 - type: texture - offset: 0x70368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_2: - symbol: gKartToad030Wheel2 - type: texture - offset: 0x703E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_3: - symbol: gKartToad030Wheel3 - type: texture - offset: 0x70468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_0: - symbol: gKartToad031Wheel0 - type: texture - offset: 0x704E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_1: - symbol: gKartToad031Wheel1 - type: texture - offset: 0x70568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_2: - symbol: gKartToad031Wheel2 - type: texture - offset: 0x705E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_3: - symbol: gKartToad031Wheel3 - type: texture - offset: 0x70668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_0: - symbol: gKartToad032Wheel0 - type: texture - offset: 0x706E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_1: - symbol: gKartToad032Wheel1 - type: texture - offset: 0x70768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_2: - symbol: gKartToad032Wheel2 - type: texture - offset: 0x707E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_3: - symbol: gKartToad032Wheel3 - type: texture - offset: 0x70868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_0: - symbol: gKartToad033Wheel0 - type: texture - offset: 0x708E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_1: - symbol: gKartToad033Wheel1 - type: texture - offset: 0x70968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_2: - symbol: gKartToad033Wheel2 - type: texture - offset: 0x709E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_3: - symbol: gKartToad033Wheel3 - type: texture - offset: 0x70A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_0: - symbol: gKartToad034Wheel0 - type: texture - offset: 0x70AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_1: - symbol: gKartToad034Wheel1 - type: texture - offset: 0x70B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_2: - symbol: gKartToad034Wheel2 - type: texture - offset: 0x70BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_3: - symbol: gKartToad034Wheel3 - type: texture - offset: 0x70C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_0: - symbol: gKartToad035Wheel0 - type: texture - offset: 0x70CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_1: - symbol: gKartToad035Wheel1 - type: texture - offset: 0x70D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_2: - symbol: gKartToad035Wheel2 - type: texture - offset: 0x70DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_3: - symbol: gKartToad035Wheel3 - type: texture - offset: 0x70E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_0: - symbol: gKartToad036Wheel0 - type: texture - offset: 0x70EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_1: - symbol: gKartToad036Wheel1 - type: texture - offset: 0x70F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_2: - symbol: gKartToad036Wheel2 - type: texture - offset: 0x70FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_3: - symbol: gKartToad036Wheel3 - type: texture - offset: 0x71068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_0: - symbol: gKartToad037Wheel0 - type: texture - offset: 0x710E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_1: - symbol: gKartToad037Wheel1 - type: texture - offset: 0x71168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_2: - symbol: gKartToad037Wheel2 - type: texture - offset: 0x711E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_3: - symbol: gKartToad037Wheel3 - type: texture - offset: 0x71268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_0: - symbol: gKartToad038Wheel0 - type: texture - offset: 0x712E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_1: - symbol: gKartToad038Wheel1 - type: texture - offset: 0x71368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_2: - symbol: gKartToad038Wheel2 - type: texture - offset: 0x713E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_3: - symbol: gKartToad038Wheel3 - type: texture - offset: 0x71468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_0: - symbol: gKartToad039Wheel0 - type: texture - offset: 0x714E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_1: - symbol: gKartToad039Wheel1 - type: texture - offset: 0x71568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_2: - symbol: gKartToad039Wheel2 - type: texture - offset: 0x715E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_3: - symbol: gKartToad039Wheel3 - type: texture - offset: 0x71668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_0: - symbol: gKartToad040Wheel0 - type: texture - offset: 0x716E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_1: - symbol: gKartToad040Wheel1 - type: texture - offset: 0x71768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_2: - symbol: gKartToad040Wheel2 - type: texture - offset: 0x717E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_3: - symbol: gKartToad040Wheel3 - type: texture - offset: 0x71868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_0: - symbol: gKartToad041Wheel0 - type: texture - offset: 0x718E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_1: - symbol: gKartToad041Wheel1 - type: texture - offset: 0x71968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_2: - symbol: gKartToad041Wheel2 - type: texture - offset: 0x719E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_3: - symbol: gKartToad041Wheel3 - type: texture - offset: 0x71A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_0: - symbol: gKartToad042Wheel0 - type: texture - offset: 0x71AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_1: - symbol: gKartToad042Wheel1 - type: texture - offset: 0x71B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_2: - symbol: gKartToad042Wheel2 - type: texture - offset: 0x71BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_3: - symbol: gKartToad042Wheel3 - type: texture - offset: 0x71C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_0: - symbol: gKartToad043Wheel0 - type: texture - offset: 0x71CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_1: - symbol: gKartToad043Wheel1 - type: texture - offset: 0x71D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_2: - symbol: gKartToad043Wheel2 - type: texture - offset: 0x71DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_3: - symbol: gKartToad043Wheel3 - type: texture - offset: 0x71E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_0: - symbol: gKartToad044Wheel0 - type: texture - offset: 0x71EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_1: - symbol: gKartToad044Wheel1 - type: texture - offset: 0x71F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_2: - symbol: gKartToad044Wheel2 - type: texture - offset: 0x71FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_3: - symbol: gKartToad044Wheel3 - type: texture - offset: 0x72068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_0: - symbol: gKartToad045Wheel0 - type: texture - offset: 0x720E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_1: - symbol: gKartToad045Wheel1 - type: texture - offset: 0x72168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_2: - symbol: gKartToad045Wheel2 - type: texture - offset: 0x721E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_3: - symbol: gKartToad045Wheel3 - type: texture - offset: 0x72268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_0: - symbol: gKartToad046Wheel0 - type: texture - offset: 0x722E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_1: - symbol: gKartToad046Wheel1 - type: texture - offset: 0x72368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_2: - symbol: gKartToad046Wheel2 - type: texture - offset: 0x723E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_3: - symbol: gKartToad046Wheel3 - type: texture - offset: 0x72468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_0: - symbol: gKartToad047Wheel0 - type: texture - offset: 0x724E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_1: - symbol: gKartToad047Wheel1 - type: texture - offset: 0x72568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_2: - symbol: gKartToad047Wheel2 - type: texture - offset: 0x725E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_3: - symbol: gKartToad047Wheel3 - type: texture - offset: 0x72668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_0: - symbol: gKartToad048Wheel0 - type: texture - offset: 0x726E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_1: - symbol: gKartToad048Wheel1 - type: texture - offset: 0x72768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_2: - symbol: gKartToad048Wheel2 - type: texture - offset: 0x727E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_3: - symbol: gKartToad048Wheel3 - type: texture - offset: 0x72868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_0: - symbol: gKartToad049Wheel0 - type: texture - offset: 0x728E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_1: - symbol: gKartToad049Wheel1 - type: texture - offset: 0x72968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_2: - symbol: gKartToad049Wheel2 - type: texture - offset: 0x729E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_3: - symbol: gKartToad049Wheel3 - type: texture - offset: 0x72A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_0: - symbol: gKartToad050Wheel0 - type: texture - offset: 0x72AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_1: - symbol: gKartToad050Wheel1 - type: texture - offset: 0x72B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_2: - symbol: gKartToad050Wheel2 - type: texture - offset: 0x72BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_3: - symbol: gKartToad050Wheel3 - type: texture - offset: 0x72C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_0: - symbol: gKartToad051Wheel0 - type: texture - offset: 0x72CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_1: - symbol: gKartToad051Wheel1 - type: texture - offset: 0x72D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_2: - symbol: gKartToad051Wheel2 - type: texture - offset: 0x72DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_3: - symbol: gKartToad051Wheel3 - type: texture - offset: 0x72E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_0: - symbol: gKartToad052Wheel0 - type: texture - offset: 0x72EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_1: - symbol: gKartToad052Wheel1 - type: texture - offset: 0x72F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_2: - symbol: gKartToad052Wheel2 - type: texture - offset: 0x72FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_3: - symbol: gKartToad052Wheel3 - type: texture - offset: 0x73068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_0: - symbol: gKartToad053Wheel0 - type: texture - offset: 0x730E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_1: - symbol: gKartToad053Wheel1 - type: texture - offset: 0x73168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_2: - symbol: gKartToad053Wheel2 - type: texture - offset: 0x731E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_3: - symbol: gKartToad053Wheel3 - type: texture - offset: 0x73268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_0: - symbol: gKartToad054Wheel0 - type: texture - offset: 0x732E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_1: - symbol: gKartToad054Wheel1 - type: texture - offset: 0x73368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_2: - symbol: gKartToad054Wheel2 - type: texture - offset: 0x733E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_3: - symbol: gKartToad054Wheel3 - type: texture - offset: 0x73468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_0: - symbol: gKartToad055Wheel0 - type: texture - offset: 0x734E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_1: - symbol: gKartToad055Wheel1 - type: texture - offset: 0x73568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_2: - symbol: gKartToad055Wheel2 - type: texture - offset: 0x735E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_3: - symbol: gKartToad055Wheel3 - type: texture - offset: 0x73668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_0: - symbol: gKartToad056Wheel0 - type: texture - offset: 0x736E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_1: - symbol: gKartToad056Wheel1 - type: texture - offset: 0x73768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_2: - symbol: gKartToad056Wheel2 - type: texture - offset: 0x737E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_3: - symbol: gKartToad056Wheel3 - type: texture - offset: 0x73868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_0: - symbol: gKartToad057Wheel0 - type: texture - offset: 0x738E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_1: - symbol: gKartToad057Wheel1 - type: texture - offset: 0x73968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_2: - symbol: gKartToad057Wheel2 - type: texture - offset: 0x739E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_3: - symbol: gKartToad057Wheel3 - type: texture - offset: 0x73A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_0: - symbol: gKartToad058Wheel0 - type: texture - offset: 0x73AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_1: - symbol: gKartToad058Wheel1 - type: texture - offset: 0x73B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_2: - symbol: gKartToad058Wheel2 - type: texture - offset: 0x73BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_3: - symbol: gKartToad058Wheel3 - type: texture - offset: 0x73C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_0: - symbol: gKartToad059Wheel0 - type: texture - offset: 0x73CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_1: - symbol: gKartToad059Wheel1 - type: texture - offset: 0x73D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_2: - symbol: gKartToad059Wheel2 - type: texture - offset: 0x73DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_3: - symbol: gKartToad059Wheel3 - type: texture - offset: 0x73E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_0: - symbol: gKartToad060Wheel0 - type: texture - offset: 0x73EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_1: - symbol: gKartToad060Wheel1 - type: texture - offset: 0x73F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_2: - symbol: gKartToad060Wheel2 - type: texture - offset: 0x73FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_3: - symbol: gKartToad060Wheel3 - type: texture - offset: 0x74068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_0: - symbol: gKartToad061Wheel0 - type: texture - offset: 0x740E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_1: - symbol: gKartToad061Wheel1 - type: texture - offset: 0x74168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_2: - symbol: gKartToad061Wheel2 - type: texture - offset: 0x741E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_3: - symbol: gKartToad061Wheel3 - type: texture - offset: 0x74268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_0: - symbol: gKartToad062Wheel0 - type: texture - offset: 0x742E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_1: - symbol: gKartToad062Wheel1 - type: texture - offset: 0x74368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_2: - symbol: gKartToad062Wheel2 - type: texture - offset: 0x743E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_3: - symbol: gKartToad062Wheel3 - type: texture - offset: 0x74468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_0: - symbol: gKartToad063Wheel0 - type: texture - offset: 0x744E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_1: - symbol: gKartToad063Wheel1 - type: texture - offset: 0x74568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_2: - symbol: gKartToad063Wheel2 - type: texture - offset: 0x745E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_3: - symbol: gKartToad063Wheel3 - type: texture - offset: 0x74668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_0: - symbol: gKartToad064Wheel0 - type: texture - offset: 0x746E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_1: - symbol: gKartToad064Wheel1 - type: texture - offset: 0x74768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_2: - symbol: gKartToad064Wheel2 - type: texture - offset: 0x747E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_3: - symbol: gKartToad064Wheel3 - type: texture - offset: 0x74868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_0: - symbol: gKartToad065Wheel0 - type: texture - offset: 0x748E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_1: - symbol: gKartToad065Wheel1 - type: texture - offset: 0x74968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_2: - symbol: gKartToad065Wheel2 - type: texture - offset: 0x749E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_3: - symbol: gKartToad065Wheel3 - type: texture - offset: 0x74A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_0: - symbol: gKartToad066Wheel0 - type: texture - offset: 0x74AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_1: - symbol: gKartToad066Wheel1 - type: texture - offset: 0x74B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_2: - symbol: gKartToad066Wheel2 - type: texture - offset: 0x74BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_3: - symbol: gKartToad066Wheel3 - type: texture - offset: 0x74C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_0: - symbol: gKartToad067Wheel0 - type: texture - offset: 0x74CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_1: - symbol: gKartToad067Wheel1 - type: texture - offset: 0x74D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_2: - symbol: gKartToad067Wheel2 - type: texture - offset: 0x74DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_3: - symbol: gKartToad067Wheel3 - type: texture - offset: 0x74E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_0: - symbol: gKartToad068Wheel0 - type: texture - offset: 0x74EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_1: - symbol: gKartToad068Wheel1 - type: texture - offset: 0x74F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_2: - symbol: gKartToad068Wheel2 - type: texture - offset: 0x74FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_3: - symbol: gKartToad068Wheel3 - type: texture - offset: 0x75068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_0: - symbol: gKartToad069Wheel0 - type: texture - offset: 0x750E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_1: - symbol: gKartToad069Wheel1 - type: texture - offset: 0x75168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_2: - symbol: gKartToad069Wheel2 - type: texture - offset: 0x751E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_3: - symbol: gKartToad069Wheel3 - type: texture - offset: 0x75268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_0: - symbol: gKartToad070Wheel0 - type: texture - offset: 0x752E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_1: - symbol: gKartToad070Wheel1 - type: texture - offset: 0x75368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_2: - symbol: gKartToad070Wheel2 - type: texture - offset: 0x753E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_3: - symbol: gKartToad070Wheel3 - type: texture - offset: 0x75468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_0: - symbol: gKartToad071Wheel0 - type: texture - offset: 0x754E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_1: - symbol: gKartToad071Wheel1 - type: texture - offset: 0x75568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_2: - symbol: gKartToad071Wheel2 - type: texture - offset: 0x755E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_3: - symbol: gKartToad071Wheel3 - type: texture - offset: 0x75668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_0: - symbol: gKartToad072Wheel0 - type: texture - offset: 0x756E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_1: - symbol: gKartToad072Wheel1 - type: texture - offset: 0x75768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_2: - symbol: gKartToad072Wheel2 - type: texture - offset: 0x757E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_3: - symbol: gKartToad072Wheel3 - type: texture - offset: 0x75868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_0: - symbol: gKartToad073Wheel0 - type: texture - offset: 0x758E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_1: - symbol: gKartToad073Wheel1 - type: texture - offset: 0x75968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_2: - symbol: gKartToad073Wheel2 - type: texture - offset: 0x759E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_3: - symbol: gKartToad073Wheel3 - type: texture - offset: 0x75A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_0: - symbol: gKartToad074Wheel0 - type: texture - offset: 0x75AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_1: - symbol: gKartToad074Wheel1 - type: texture - offset: 0x75B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_2: - symbol: gKartToad074Wheel2 - type: texture - offset: 0x75BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_3: - symbol: gKartToad074Wheel3 - type: texture - offset: 0x75C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_0: - symbol: gKartToad075Wheel0 - type: texture - offset: 0x75CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_1: - symbol: gKartToad075Wheel1 - type: texture - offset: 0x75D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_2: - symbol: gKartToad075Wheel2 - type: texture - offset: 0x75DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_3: - symbol: gKartToad075Wheel3 - type: texture - offset: 0x75E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_0: - symbol: gKartToad076Wheel0 - type: texture - offset: 0x75EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_1: - symbol: gKartToad076Wheel1 - type: texture - offset: 0x75F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_2: - symbol: gKartToad076Wheel2 - type: texture - offset: 0x75FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_3: - symbol: gKartToad076Wheel3 - type: texture - offset: 0x76068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_0: - symbol: gKartToad077Wheel0 - type: texture - offset: 0x760E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_1: - symbol: gKartToad077Wheel1 - type: texture - offset: 0x76168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_2: - symbol: gKartToad077Wheel2 - type: texture - offset: 0x761E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_3: - symbol: gKartToad077Wheel3 - type: texture - offset: 0x76268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_0: - symbol: gKartToad078Wheel0 - type: texture - offset: 0x762E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_1: - symbol: gKartToad078Wheel1 - type: texture - offset: 0x76368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_2: - symbol: gKartToad078Wheel2 - type: texture - offset: 0x763E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_3: - symbol: gKartToad078Wheel3 - type: texture - offset: 0x76468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_0: - symbol: gKartToad079Wheel0 - type: texture - offset: 0x764E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_1: - symbol: gKartToad079Wheel1 - type: texture - offset: 0x76568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_2: - symbol: gKartToad079Wheel2 - type: texture - offset: 0x765E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_3: - symbol: gKartToad079Wheel3 - type: texture - offset: 0x76668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_0: - symbol: gKartToad080Wheel0 - type: texture - offset: 0x766E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_1: - symbol: gKartToad080Wheel1 - type: texture - offset: 0x76768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_2: - symbol: gKartToad080Wheel2 - type: texture - offset: 0x767E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_3: - symbol: gKartToad080Wheel3 - type: texture - offset: 0x76868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_0: - symbol: gKartToad081Wheel0 - type: texture - offset: 0x768E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_1: - symbol: gKartToad081Wheel1 - type: texture - offset: 0x76968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_2: - symbol: gKartToad081Wheel2 - type: texture - offset: 0x769E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_3: - symbol: gKartToad081Wheel3 - type: texture - offset: 0x76A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_0: - symbol: gKartToad082Wheel0 - type: texture - offset: 0x76AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_1: - symbol: gKartToad082Wheel1 - type: texture - offset: 0x76B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_2: - symbol: gKartToad082Wheel2 - type: texture - offset: 0x76BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_3: - symbol: gKartToad082Wheel3 - type: texture - offset: 0x76C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_0: - symbol: gKartToad083Wheel0 - type: texture - offset: 0x76CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_1: - symbol: gKartToad083Wheel1 - type: texture - offset: 0x76D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_2: - symbol: gKartToad083Wheel2 - type: texture - offset: 0x76DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_3: - symbol: gKartToad083Wheel3 - type: texture - offset: 0x76E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_0: - symbol: gKartToad084Wheel0 - type: texture - offset: 0x76EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_1: - symbol: gKartToad084Wheel1 - type: texture - offset: 0x76F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_2: - symbol: gKartToad084Wheel2 - type: texture - offset: 0x76FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_3: - symbol: gKartToad084Wheel3 - type: texture - offset: 0x77068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_0: - symbol: gKartToad085Wheel0 - type: texture - offset: 0x770E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_1: - symbol: gKartToad085Wheel1 - type: texture - offset: 0x77168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_2: - symbol: gKartToad085Wheel2 - type: texture - offset: 0x771E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_3: - symbol: gKartToad085Wheel3 - type: texture - offset: 0x77268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_0: - symbol: gKartToad086Wheel0 - type: texture - offset: 0x772E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_1: - symbol: gKartToad086Wheel1 - type: texture - offset: 0x77368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_2: - symbol: gKartToad086Wheel2 - type: texture - offset: 0x773E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_3: - symbol: gKartToad086Wheel3 - type: texture - offset: 0x77468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_0: - symbol: gKartToad087Wheel0 - type: texture - offset: 0x774E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_1: - symbol: gKartToad087Wheel1 - type: texture - offset: 0x77568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_2: - symbol: gKartToad087Wheel2 - type: texture - offset: 0x775E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_3: - symbol: gKartToad087Wheel3 - type: texture - offset: 0x77668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_0: - symbol: gKartToad088Wheel0 - type: texture - offset: 0x776E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_1: - symbol: gKartToad088Wheel1 - type: texture - offset: 0x77768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_2: - symbol: gKartToad088Wheel2 - type: texture - offset: 0x777E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_3: - symbol: gKartToad088Wheel3 - type: texture - offset: 0x77868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_0: - symbol: gKartToad089Wheel0 - type: texture - offset: 0x778E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_1: - symbol: gKartToad089Wheel1 - type: texture - offset: 0x77968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_2: - symbol: gKartToad089Wheel2 - type: texture - offset: 0x779E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_3: - symbol: gKartToad089Wheel3 - type: texture - offset: 0x77A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_0: - symbol: gKartToad090Wheel0 - type: texture - offset: 0x77AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_1: - symbol: gKartToad090Wheel1 - type: texture - offset: 0x77B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_2: - symbol: gKartToad090Wheel2 - type: texture - offset: 0x77BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_3: - symbol: gKartToad090Wheel3 - type: texture - offset: 0x77C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_0: - symbol: gKartToad091Wheel0 - type: texture - offset: 0x77CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_1: - symbol: gKartToad091Wheel1 - type: texture - offset: 0x77D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_2: - symbol: gKartToad091Wheel2 - type: texture - offset: 0x77DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_3: - symbol: gKartToad091Wheel3 - type: texture - offset: 0x77E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_0: - symbol: gKartToad092Wheel0 - type: texture - offset: 0x77EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_1: - symbol: gKartToad092Wheel1 - type: texture - offset: 0x77F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_2: - symbol: gKartToad092Wheel2 - type: texture - offset: 0x77FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_3: - symbol: gKartToad092Wheel3 - type: texture - offset: 0x78068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_0: - symbol: gKartToad093Wheel0 - type: texture - offset: 0x780E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_1: - symbol: gKartToad093Wheel1 - type: texture - offset: 0x78168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_2: - symbol: gKartToad093Wheel2 - type: texture - offset: 0x781E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_3: - symbol: gKartToad093Wheel3 - type: texture - offset: 0x78268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_0: - symbol: gKartToad094Wheel0 - type: texture - offset: 0x782E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_1: - symbol: gKartToad094Wheel1 - type: texture - offset: 0x78368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_2: - symbol: gKartToad094Wheel2 - type: texture - offset: 0x783E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_3: - symbol: gKartToad094Wheel3 - type: texture - offset: 0x78468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_0: - symbol: gKartToad095Wheel0 - type: texture - offset: 0x784E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_1: - symbol: gKartToad095Wheel1 - type: texture - offset: 0x78568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_2: - symbol: gKartToad095Wheel2 - type: texture - offset: 0x785E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_3: - symbol: gKartToad095Wheel3 - type: texture - offset: 0x78668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_0: - symbol: gKartToad096Wheel0 - type: texture - offset: 0x786E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_1: - symbol: gKartToad096Wheel1 - type: texture - offset: 0x78768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_2: - symbol: gKartToad096Wheel2 - type: texture - offset: 0x787E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_3: - symbol: gKartToad096Wheel3 - type: texture - offset: 0x78868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_0: - symbol: gKartToad097Wheel0 - type: texture - offset: 0x788E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_1: - symbol: gKartToad097Wheel1 - type: texture - offset: 0x78968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_2: - symbol: gKartToad097Wheel2 - type: texture - offset: 0x789E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_3: - symbol: gKartToad097Wheel3 - type: texture - offset: 0x78A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_0: - symbol: gKartToad098Wheel0 - type: texture - offset: 0x78AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_1: - symbol: gKartToad098Wheel1 - type: texture - offset: 0x78B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_2: - symbol: gKartToad098Wheel2 - type: texture - offset: 0x78BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_3: - symbol: gKartToad098Wheel3 - type: texture - offset: 0x78C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_0: - symbol: gKartToad099Wheel0 - type: texture - offset: 0x78CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_1: - symbol: gKartToad099Wheel1 - type: texture - offset: 0x78D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_2: - symbol: gKartToad099Wheel2 - type: texture - offset: 0x78DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_3: - symbol: gKartToad099Wheel3 - type: texture - offset: 0x78E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_0: - symbol: gKartToad100Wheel0 - type: texture - offset: 0x78EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_1: - symbol: gKartToad100Wheel1 - type: texture - offset: 0x78F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_2: - symbol: gKartToad100Wheel2 - type: texture - offset: 0x78FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_3: - symbol: gKartToad100Wheel3 - type: texture - offset: 0x79068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_0: - symbol: gKartToad101Wheel0 - type: texture - offset: 0x790E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_1: - symbol: gKartToad101Wheel1 - type: texture - offset: 0x79168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_2: - symbol: gKartToad101Wheel2 - type: texture - offset: 0x791E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_3: - symbol: gKartToad101Wheel3 - type: texture - offset: 0x79268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_0: - symbol: gKartToad102Wheel0 - type: texture - offset: 0x792E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_1: - symbol: gKartToad102Wheel1 - type: texture - offset: 0x79368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_2: - symbol: gKartToad102Wheel2 - type: texture - offset: 0x793E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_3: - symbol: gKartToad102Wheel3 - type: texture - offset: 0x79468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_0: - symbol: gKartToad103Wheel0 - type: texture - offset: 0x794E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_1: - symbol: gKartToad103Wheel1 - type: texture - offset: 0x79568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_2: - symbol: gKartToad103Wheel2 - type: texture - offset: 0x795E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_3: - symbol: gKartToad103Wheel3 - type: texture - offset: 0x79668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_0: - symbol: gKartToad104Wheel0 - type: texture - offset: 0x796E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_1: - symbol: gKartToad104Wheel1 - type: texture - offset: 0x79768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_2: - symbol: gKartToad104Wheel2 - type: texture - offset: 0x797E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_3: - symbol: gKartToad104Wheel3 - type: texture - offset: 0x79868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_0: - symbol: gKartToad105Wheel0 - type: texture - offset: 0x798E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_1: - symbol: gKartToad105Wheel1 - type: texture - offset: 0x79968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_2: - symbol: gKartToad105Wheel2 - type: texture - offset: 0x799E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_3: - symbol: gKartToad105Wheel3 - type: texture - offset: 0x79A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_0: - symbol: gKartToad106Wheel0 - type: texture - offset: 0x79AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_1: - symbol: gKartToad106Wheel1 - type: texture - offset: 0x79B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_2: - symbol: gKartToad106Wheel2 - type: texture - offset: 0x79BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_3: - symbol: gKartToad106Wheel3 - type: texture - offset: 0x79C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_0: - symbol: gKartToad107Wheel0 - type: texture - offset: 0x79CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_1: - symbol: gKartToad107Wheel1 - type: texture - offset: 0x79D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_2: - symbol: gKartToad107Wheel2 - type: texture - offset: 0x79DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_3: - symbol: gKartToad107Wheel3 - type: texture - offset: 0x79E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_0: - symbol: gKartToad108Wheel0 - type: texture - offset: 0x79EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_1: - symbol: gKartToad108Wheel1 - type: texture - offset: 0x79F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_2: - symbol: gKartToad108Wheel2 - type: texture - offset: 0x79FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_3: - symbol: gKartToad108Wheel3 - type: texture - offset: 0x7A068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_0: - symbol: gKartToad109Wheel0 - type: texture - offset: 0x7A0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_1: - symbol: gKartToad109Wheel1 - type: texture - offset: 0x7A168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_2: - symbol: gKartToad109Wheel2 - type: texture - offset: 0x7A1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_3: - symbol: gKartToad109Wheel3 - type: texture - offset: 0x7A268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_0: - symbol: gKartToad110Wheel0 - type: texture - offset: 0x7A2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_1: - symbol: gKartToad110Wheel1 - type: texture - offset: 0x7A368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_2: - symbol: gKartToad110Wheel2 - type: texture - offset: 0x7A3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_3: - symbol: gKartToad110Wheel3 - type: texture - offset: 0x7A468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_0: - symbol: gKartToad111Wheel0 - type: texture - offset: 0x7A4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_1: - symbol: gKartToad111Wheel1 - type: texture - offset: 0x7A568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_2: - symbol: gKartToad111Wheel2 - type: texture - offset: 0x7A5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_3: - symbol: gKartToad111Wheel3 - type: texture - offset: 0x7A668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_0: - symbol: gKartToad112Wheel0 - type: texture - offset: 0x7A6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_1: - symbol: gKartToad112Wheel1 - type: texture - offset: 0x7A768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_2: - symbol: gKartToad112Wheel2 - type: texture - offset: 0x7A7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_3: - symbol: gKartToad112Wheel3 - type: texture - offset: 0x7A868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_0: - symbol: gKartToad113Wheel0 - type: texture - offset: 0x7A8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_1: - symbol: gKartToad113Wheel1 - type: texture - offset: 0x7A968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_2: - symbol: gKartToad113Wheel2 - type: texture - offset: 0x7A9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_3: - symbol: gKartToad113Wheel3 - type: texture - offset: 0x7AA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_0: - symbol: gKartToad114Wheel0 - type: texture - offset: 0x7AAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_1: - symbol: gKartToad114Wheel1 - type: texture - offset: 0x7AB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_2: - symbol: gKartToad114Wheel2 - type: texture - offset: 0x7ABE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_3: - symbol: gKartToad114Wheel3 - type: texture - offset: 0x7AC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_0: - symbol: gKartToad115Wheel0 - type: texture - offset: 0x7ACE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_1: - symbol: gKartToad115Wheel1 - type: texture - offset: 0x7AD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_2: - symbol: gKartToad115Wheel2 - type: texture - offset: 0x7ADE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_3: - symbol: gKartToad115Wheel3 - type: texture - offset: 0x7AE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_0: - symbol: gKartToad116Wheel0 - type: texture - offset: 0x7AEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_1: - symbol: gKartToad116Wheel1 - type: texture - offset: 0x7AF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_2: - symbol: gKartToad116Wheel2 - type: texture - offset: 0x7AFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_3: - symbol: gKartToad116Wheel3 - type: texture - offset: 0x7B068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_0: - symbol: gKartToad117Wheel0 - type: texture - offset: 0x7B0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_1: - symbol: gKartToad117Wheel1 - type: texture - offset: 0x7B168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_2: - symbol: gKartToad117Wheel2 - type: texture - offset: 0x7B1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_3: - symbol: gKartToad117Wheel3 - type: texture - offset: 0x7B268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_0: - symbol: gKartToad118Wheel0 - type: texture - offset: 0x7B2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_1: - symbol: gKartToad118Wheel1 - type: texture - offset: 0x7B368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_2: - symbol: gKartToad118Wheel2 - type: texture - offset: 0x7B3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_3: - symbol: gKartToad118Wheel3 - type: texture - offset: 0x7B468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_0: - symbol: gKartToad119Wheel0 - type: texture - offset: 0x7B4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_1: - symbol: gKartToad119Wheel1 - type: texture - offset: 0x7B568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_2: - symbol: gKartToad119Wheel2 - type: texture - offset: 0x7B5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_3: - symbol: gKartToad119Wheel3 - type: texture - offset: 0x7B668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_0: - symbol: gKartToad120Wheel0 - type: texture - offset: 0x7B6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_1: - symbol: gKartToad120Wheel1 - type: texture - offset: 0x7B768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_2: - symbol: gKartToad120Wheel2 - type: texture - offset: 0x7B7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_3: - symbol: gKartToad120Wheel3 - type: texture - offset: 0x7B868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_0: - symbol: gKartToad121Wheel0 - type: texture - offset: 0x7B8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_1: - symbol: gKartToad121Wheel1 - type: texture - offset: 0x7B968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_2: - symbol: gKartToad121Wheel2 - type: texture - offset: 0x7B9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_3: - symbol: gKartToad121Wheel3 - type: texture - offset: 0x7BA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_0: - symbol: gKartToad122Wheel0 - type: texture - offset: 0x7BAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_1: - symbol: gKartToad122Wheel1 - type: texture - offset: 0x7BB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_2: - symbol: gKartToad122Wheel2 - type: texture - offset: 0x7BBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_3: - symbol: gKartToad122Wheel3 - type: texture - offset: 0x7BC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_0: - symbol: gKartToad123Wheel0 - type: texture - offset: 0x7BCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_1: - symbol: gKartToad123Wheel1 - type: texture - offset: 0x7BD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_2: - symbol: gKartToad123Wheel2 - type: texture - offset: 0x7BDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_3: - symbol: gKartToad123Wheel3 - type: texture - offset: 0x7BE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_0: - symbol: gKartToad124Wheel0 - type: texture - offset: 0x7BEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_1: - symbol: gKartToad124Wheel1 - type: texture - offset: 0x7BF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_2: - symbol: gKartToad124Wheel2 - type: texture - offset: 0x7BFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_3: - symbol: gKartToad124Wheel3 - type: texture - offset: 0x7C068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_0: - symbol: gKartToad125Wheel0 - type: texture - offset: 0x7C0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_1: - symbol: gKartToad125Wheel1 - type: texture - offset: 0x7C168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_2: - symbol: gKartToad125Wheel2 - type: texture - offset: 0x7C1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_3: - symbol: gKartToad125Wheel3 - type: texture - offset: 0x7C268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_0: - symbol: gKartToad126Wheel0 - type: texture - offset: 0x7C2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_1: - symbol: gKartToad126Wheel1 - type: texture - offset: 0x7C368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_2: - symbol: gKartToad126Wheel2 - type: texture - offset: 0x7C3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_3: - symbol: gKartToad126Wheel3 - type: texture - offset: 0x7C468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_0: - symbol: gKartToad127Wheel0 - type: texture - offset: 0x7C4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_1: - symbol: gKartToad127Wheel1 - type: texture - offset: 0x7C568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_2: - symbol: gKartToad127Wheel2 - type: texture - offset: 0x7C5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_3: - symbol: gKartToad127Wheel3 - type: texture - offset: 0x7C668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_0: - symbol: gKartToad128Wheel0 - type: texture - offset: 0x7C6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_1: - symbol: gKartToad128Wheel1 - type: texture - offset: 0x7C768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_2: - symbol: gKartToad128Wheel2 - type: texture - offset: 0x7C7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_3: - symbol: gKartToad128Wheel3 - type: texture - offset: 0x7C868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_0: - symbol: gKartToad129Wheel0 - type: texture - offset: 0x7C8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_1: - symbol: gKartToad129Wheel1 - type: texture - offset: 0x7C968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_2: - symbol: gKartToad129Wheel2 - type: texture - offset: 0x7C9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_3: - symbol: gKartToad129Wheel3 - type: texture - offset: 0x7CA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_0: - symbol: gKartToad130Wheel0 - type: texture - offset: 0x7CAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_1: - symbol: gKartToad130Wheel1 - type: texture - offset: 0x7CB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_2: - symbol: gKartToad130Wheel2 - type: texture - offset: 0x7CBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_3: - symbol: gKartToad130Wheel3 - type: texture - offset: 0x7CC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_0: - symbol: gKartToad131Wheel0 - type: texture - offset: 0x7CCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_1: - symbol: gKartToad131Wheel1 - type: texture - offset: 0x7CD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_2: - symbol: gKartToad131Wheel2 - type: texture - offset: 0x7CDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_3: - symbol: gKartToad131Wheel3 - type: texture - offset: 0x7CE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_0: - symbol: gKartToad132Wheel0 - type: texture - offset: 0x7CEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_1: - symbol: gKartToad132Wheel1 - type: texture - offset: 0x7CF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_2: - symbol: gKartToad132Wheel2 - type: texture - offset: 0x7CFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_3: - symbol: gKartToad132Wheel3 - type: texture - offset: 0x7D068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_0: - symbol: gKartToad133Wheel0 - type: texture - offset: 0x7D0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_1: - symbol: gKartToad133Wheel1 - type: texture - offset: 0x7D168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_2: - symbol: gKartToad133Wheel2 - type: texture - offset: 0x7D1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_3: - symbol: gKartToad133Wheel3 - type: texture - offset: 0x7D268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_0: - symbol: gKartToad134Wheel0 - type: texture - offset: 0x7D2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_1: - symbol: gKartToad134Wheel1 - type: texture - offset: 0x7D368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_2: - symbol: gKartToad134Wheel2 - type: texture - offset: 0x7D3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_3: - symbol: gKartToad134Wheel3 - type: texture - offset: 0x7D468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_0: - symbol: gKartToad135Wheel0 - type: texture - offset: 0x7D4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_1: - symbol: gKartToad135Wheel1 - type: texture - offset: 0x7D568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_2: - symbol: gKartToad135Wheel2 - type: texture - offset: 0x7D5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_3: - symbol: gKartToad135Wheel3 - type: texture - offset: 0x7D668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_0: - symbol: gKartToad136Wheel0 - type: texture - offset: 0x7D6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_1: - symbol: gKartToad136Wheel1 - type: texture - offset: 0x7D768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_2: - symbol: gKartToad136Wheel2 - type: texture - offset: 0x7D7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_3: - symbol: gKartToad136Wheel3 - type: texture - offset: 0x7D868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_0: - symbol: gKartToad137Wheel0 - type: texture - offset: 0x7D8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_1: - symbol: gKartToad137Wheel1 - type: texture - offset: 0x7D968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_2: - symbol: gKartToad137Wheel2 - type: texture - offset: 0x7D9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_3: - symbol: gKartToad137Wheel3 - type: texture - offset: 0x7DA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_0: - symbol: gKartToad138Wheel0 - type: texture - offset: 0x7DAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_1: - symbol: gKartToad138Wheel1 - type: texture - offset: 0x7DB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_2: - symbol: gKartToad138Wheel2 - type: texture - offset: 0x7DBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_3: - symbol: gKartToad138Wheel3 - type: texture - offset: 0x7DC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_0: - symbol: gKartToad139Wheel0 - type: texture - offset: 0x7DCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_1: - symbol: gKartToad139Wheel1 - type: texture - offset: 0x7DD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_2: - symbol: gKartToad139Wheel2 - type: texture - offset: 0x7DDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_3: - symbol: gKartToad139Wheel3 - type: texture - offset: 0x7DE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_0: - symbol: gKartToad140Wheel0 - type: texture - offset: 0x7DEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_1: - symbol: gKartToad140Wheel1 - type: texture - offset: 0x7DF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_2: - symbol: gKartToad140Wheel2 - type: texture - offset: 0x7DFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_3: - symbol: gKartToad140Wheel3 - type: texture - offset: 0x7E068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_0: - symbol: gKartToad141Wheel0 - type: texture - offset: 0x7E0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_1: - symbol: gKartToad141Wheel1 - type: texture - offset: 0x7E168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_2: - symbol: gKartToad141Wheel2 - type: texture - offset: 0x7E1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_3: - symbol: gKartToad141Wheel3 - type: texture - offset: 0x7E268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_0: - symbol: gKartToad142Wheel0 - type: texture - offset: 0x7E2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_1: - symbol: gKartToad142Wheel1 - type: texture - offset: 0x7E368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_2: - symbol: gKartToad142Wheel2 - type: texture - offset: 0x7E3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_3: - symbol: gKartToad142Wheel3 - type: texture - offset: 0x7E468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_0: - symbol: gKartToad143Wheel0 - type: texture - offset: 0x7E4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_1: - symbol: gKartToad143Wheel1 - type: texture - offset: 0x7E568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_2: - symbol: gKartToad143Wheel2 - type: texture - offset: 0x7E5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_3: - symbol: gKartToad143Wheel3 - type: texture - offset: 0x7E668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_0: - symbol: gKartToad144Wheel0 - type: texture - offset: 0x7E6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_1: - symbol: gKartToad144Wheel1 - type: texture - offset: 0x7E768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_2: - symbol: gKartToad144Wheel2 - type: texture - offset: 0x7E7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_3: - symbol: gKartToad144Wheel3 - type: texture - offset: 0x7E868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_0: - symbol: gKartToad145Wheel0 - type: texture - offset: 0x7E8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_1: - symbol: gKartToad145Wheel1 - type: texture - offset: 0x7E968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_2: - symbol: gKartToad145Wheel2 - type: texture - offset: 0x7E9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_3: - symbol: gKartToad145Wheel3 - type: texture - offset: 0x7EA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_0: - symbol: gKartToad146Wheel0 - type: texture - offset: 0x7EAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_1: - symbol: gKartToad146Wheel1 - type: texture - offset: 0x7EB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_2: - symbol: gKartToad146Wheel2 - type: texture - offset: 0x7EBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_3: - symbol: gKartToad146Wheel3 - type: texture - offset: 0x7EC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_0: - symbol: gKartToad147Wheel0 - type: texture - offset: 0x7ECE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_1: - symbol: gKartToad147Wheel1 - type: texture - offset: 0x7ED68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_2: - symbol: gKartToad147Wheel2 - type: texture - offset: 0x7EDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_3: - symbol: gKartToad147Wheel3 - type: texture - offset: 0x7EE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_0: - symbol: gKartToad148Wheel0 - type: texture - offset: 0x7EEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_1: - symbol: gKartToad148Wheel1 - type: texture - offset: 0x7EF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_2: - symbol: gKartToad148Wheel2 - type: texture - offset: 0x7EFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_3: - symbol: gKartToad148Wheel3 - type: texture - offset: 0x7F068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_0: - symbol: gKartToad149Wheel0 - type: texture - offset: 0x7F0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_1: - symbol: gKartToad149Wheel1 - type: texture - offset: 0x7F168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_2: - symbol: gKartToad149Wheel2 - type: texture - offset: 0x7F1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_3: - symbol: gKartToad149Wheel3 - type: texture - offset: 0x7F268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_0: - symbol: gKartToad150Wheel0 - type: texture - offset: 0x7F2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_1: - symbol: gKartToad150Wheel1 - type: texture - offset: 0x7F368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_2: - symbol: gKartToad150Wheel2 - type: texture - offset: 0x7F3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_3: - symbol: gKartToad150Wheel3 - type: texture - offset: 0x7F468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_0: - symbol: gKartToad151Wheel0 - type: texture - offset: 0x7F4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_1: - symbol: gKartToad151Wheel1 - type: texture - offset: 0x7F568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_2: - symbol: gKartToad151Wheel2 - type: texture - offset: 0x7F5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_3: - symbol: gKartToad151Wheel3 - type: texture - offset: 0x7F668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_0: - symbol: gKartToad152Wheel0 - type: texture - offset: 0x7F6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_1: - symbol: gKartToad152Wheel1 - type: texture - offset: 0x7F768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_2: - symbol: gKartToad152Wheel2 - type: texture - offset: 0x7F7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_3: - symbol: gKartToad152Wheel3 - type: texture - offset: 0x7F868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_0: - symbol: gKartToad153Wheel0 - type: texture - offset: 0x7F8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_1: - symbol: gKartToad153Wheel1 - type: texture - offset: 0x7F968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_2: - symbol: gKartToad153Wheel2 - type: texture - offset: 0x7F9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_3: - symbol: gKartToad153Wheel3 - type: texture - offset: 0x7FA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_0: - symbol: gKartToad154Wheel0 - type: texture - offset: 0x7FAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_1: - symbol: gKartToad154Wheel1 - type: texture - offset: 0x7FB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_2: - symbol: gKartToad154Wheel2 - type: texture - offset: 0x7FBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_3: - symbol: gKartToad154Wheel3 - type: texture - offset: 0x7FC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_0: - symbol: gKartToad155Wheel0 - type: texture - offset: 0x7FCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_1: - symbol: gKartToad155Wheel1 - type: texture - offset: 0x7FD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_2: - symbol: gKartToad155Wheel2 - type: texture - offset: 0x7FDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_3: - symbol: gKartToad155Wheel3 - type: texture - offset: 0x7FE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_0: - symbol: gKartToad156Wheel0 - type: texture - offset: 0x7FEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_1: - symbol: gKartToad156Wheel1 - type: texture - offset: 0x7FF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_2: - symbol: gKartToad156Wheel2 - type: texture - offset: 0x7FFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_3: - symbol: gKartToad156Wheel3 - type: texture - offset: 0x80068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_0: - symbol: gKartToad157Wheel0 - type: texture - offset: 0x800E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_1: - symbol: gKartToad157Wheel1 - type: texture - offset: 0x80168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_2: - symbol: gKartToad157Wheel2 - type: texture - offset: 0x801E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_3: - symbol: gKartToad157Wheel3 - type: texture - offset: 0x80268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_0: - symbol: gKartToad158Wheel0 - type: texture - offset: 0x802E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_1: - symbol: gKartToad158Wheel1 - type: texture - offset: 0x80368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_2: - symbol: gKartToad158Wheel2 - type: texture - offset: 0x803E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_3: - symbol: gKartToad158Wheel3 - type: texture - offset: 0x80468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_0: - symbol: gKartToad159Wheel0 - type: texture - offset: 0x804E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_1: - symbol: gKartToad159Wheel1 - type: texture - offset: 0x80568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_2: - symbol: gKartToad159Wheel2 - type: texture - offset: 0x805E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_3: - symbol: gKartToad159Wheel3 - type: texture - offset: 0x80668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_0: - symbol: gKartToad160Wheel0 - type: texture - offset: 0x806E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_1: - symbol: gKartToad160Wheel1 - type: texture - offset: 0x80768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_2: - symbol: gKartToad160Wheel2 - type: texture - offset: 0x807E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_3: - symbol: gKartToad160Wheel3 - type: texture - offset: 0x80868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_0: - symbol: gKartToad161Wheel0 - type: texture - offset: 0x808E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_1: - symbol: gKartToad161Wheel1 - type: texture - offset: 0x80968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_2: - symbol: gKartToad161Wheel2 - type: texture - offset: 0x809E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_3: - symbol: gKartToad161Wheel3 - type: texture - offset: 0x80A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_0: - symbol: gKartToad162Wheel0 - type: texture - offset: 0x80AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_1: - symbol: gKartToad162Wheel1 - type: texture - offset: 0x80B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_2: - symbol: gKartToad162Wheel2 - type: texture - offset: 0x80BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_3: - symbol: gKartToad162Wheel3 - type: texture - offset: 0x80C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_0: - symbol: gKartToad163Wheel0 - type: texture - offset: 0x80CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_1: - symbol: gKartToad163Wheel1 - type: texture - offset: 0x80D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_2: - symbol: gKartToad163Wheel2 - type: texture - offset: 0x80DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_3: - symbol: gKartToad163Wheel3 - type: texture - offset: 0x80E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_0: - symbol: gKartToad164Wheel0 - type: texture - offset: 0x80EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_1: - symbol: gKartToad164Wheel1 - type: texture - offset: 0x80F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_2: - symbol: gKartToad164Wheel2 - type: texture - offset: 0x80FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_3: - symbol: gKartToad164Wheel3 - type: texture - offset: 0x81068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_0: - symbol: gKartToad165Wheel0 - type: texture - offset: 0x810E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_1: - symbol: gKartToad165Wheel1 - type: texture - offset: 0x81168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_2: - symbol: gKartToad165Wheel2 - type: texture - offset: 0x811E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_3: - symbol: gKartToad165Wheel3 - type: texture - offset: 0x81268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_0: - symbol: gKartToad166Wheel0 - type: texture - offset: 0x812E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_1: - symbol: gKartToad166Wheel1 - type: texture - offset: 0x81368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_2: - symbol: gKartToad166Wheel2 - type: texture - offset: 0x813E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_3: - symbol: gKartToad166Wheel3 - type: texture - offset: 0x81468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_0: - symbol: gKartToad167Wheel0 - type: texture - offset: 0x814E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_1: - symbol: gKartToad167Wheel1 - type: texture - offset: 0x81568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_2: - symbol: gKartToad167Wheel2 - type: texture - offset: 0x815E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_3: - symbol: gKartToad167Wheel3 - type: texture - offset: 0x81668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_0: - symbol: gKartToad168Wheel0 - type: texture - offset: 0x816E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_1: - symbol: gKartToad168Wheel1 - type: texture - offset: 0x81768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_2: - symbol: gKartToad168Wheel2 - type: texture - offset: 0x817E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_3: - symbol: gKartToad168Wheel3 - type: texture - offset: 0x81868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_0: - symbol: gKartToad169Wheel0 - type: texture - offset: 0x818E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_1: - symbol: gKartToad169Wheel1 - type: texture - offset: 0x81968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_2: - symbol: gKartToad169Wheel2 - type: texture - offset: 0x819E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_3: - symbol: gKartToad169Wheel3 - type: texture - offset: 0x81A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_0: - symbol: gKartToad170Wheel0 - type: texture - offset: 0x81AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_1: - symbol: gKartToad170Wheel1 - type: texture - offset: 0x81B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_2: - symbol: gKartToad170Wheel2 - type: texture - offset: 0x81BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_3: - symbol: gKartToad170Wheel3 - type: texture - offset: 0x81C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_0: - symbol: gKartToad171Wheel0 - type: texture - offset: 0x81CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_1: - symbol: gKartToad171Wheel1 - type: texture - offset: 0x81D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_2: - symbol: gKartToad171Wheel2 - type: texture - offset: 0x81DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_3: - symbol: gKartToad171Wheel3 - type: texture - offset: 0x81E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_0: - symbol: gKartToad172Wheel0 - type: texture - offset: 0x81EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_1: - symbol: gKartToad172Wheel1 - type: texture - offset: 0x81F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_2: - symbol: gKartToad172Wheel2 - type: texture - offset: 0x81FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_3: - symbol: gKartToad172Wheel3 - type: texture - offset: 0x82068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_0: - symbol: gKartToad173Wheel0 - type: texture - offset: 0x820E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_1: - symbol: gKartToad173Wheel1 - type: texture - offset: 0x82168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_2: - symbol: gKartToad173Wheel2 - type: texture - offset: 0x821E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_3: - symbol: gKartToad173Wheel3 - type: texture - offset: 0x82268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_0: - symbol: gKartToad174Wheel0 - type: texture - offset: 0x822E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_1: - symbol: gKartToad174Wheel1 - type: texture - offset: 0x82368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_2: - symbol: gKartToad174Wheel2 - type: texture - offset: 0x823E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_3: - symbol: gKartToad174Wheel3 - type: texture - offset: 0x82468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_0: - symbol: gKartToad175Wheel0 - type: texture - offset: 0x824E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_1: - symbol: gKartToad175Wheel1 - type: texture - offset: 0x82568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_2: - symbol: gKartToad175Wheel2 - type: texture - offset: 0x825E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_3: - symbol: gKartToad175Wheel3 - type: texture - offset: 0x82668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_0: - symbol: gKartToad176Wheel0 - type: texture - offset: 0x826E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_1: - symbol: gKartToad176Wheel1 - type: texture - offset: 0x82768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_2: - symbol: gKartToad176Wheel2 - type: texture - offset: 0x827E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_3: - symbol: gKartToad176Wheel3 - type: texture - offset: 0x82868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_0: - symbol: gKartToad177Wheel0 - type: texture - offset: 0x828E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_1: - symbol: gKartToad177Wheel1 - type: texture - offset: 0x82968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_2: - symbol: gKartToad177Wheel2 - type: texture - offset: 0x829E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_3: - symbol: gKartToad177Wheel3 - type: texture - offset: 0x82A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_0: - symbol: gKartToad178Wheel0 - type: texture - offset: 0x82AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_1: - symbol: gKartToad178Wheel1 - type: texture - offset: 0x82B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_2: - symbol: gKartToad178Wheel2 - type: texture - offset: 0x82BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_3: - symbol: gKartToad178Wheel3 - type: texture - offset: 0x82C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_0: - symbol: gKartToad179Wheel0 - type: texture - offset: 0x82CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_1: - symbol: gKartToad179Wheel1 - type: texture - offset: 0x82D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_2: - symbol: gKartToad179Wheel2 - type: texture - offset: 0x82DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_3: - symbol: gKartToad179Wheel3 - type: texture - offset: 0x82E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_0: - symbol: gKartToad180Wheel0 - type: texture - offset: 0x82EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_1: - symbol: gKartToad180Wheel1 - type: texture - offset: 0x82F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_2: - symbol: gKartToad180Wheel2 - type: texture - offset: 0x82FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_3: - symbol: gKartToad180Wheel3 - type: texture - offset: 0x83068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_0: - symbol: gKartToad181Wheel0 - type: texture - offset: 0x830E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_1: - symbol: gKartToad181Wheel1 - type: texture - offset: 0x83168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_2: - symbol: gKartToad181Wheel2 - type: texture - offset: 0x831E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_3: - symbol: gKartToad181Wheel3 - type: texture - offset: 0x83268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_0: - symbol: gKartToad182Wheel0 - type: texture - offset: 0x832E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_1: - symbol: gKartToad182Wheel1 - type: texture - offset: 0x83368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_2: - symbol: gKartToad182Wheel2 - type: texture - offset: 0x833E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_3: - symbol: gKartToad182Wheel3 - type: texture - offset: 0x83468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_0: - symbol: gKartToad183Wheel0 - type: texture - offset: 0x834E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_1: - symbol: gKartToad183Wheel1 - type: texture - offset: 0x83568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_2: - symbol: gKartToad183Wheel2 - type: texture - offset: 0x835E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_3: - symbol: gKartToad183Wheel3 - type: texture - offset: 0x83668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_0: - symbol: gKartToad184Wheel0 - type: texture - offset: 0x836E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_1: - symbol: gKartToad184Wheel1 - type: texture - offset: 0x83768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_2: - symbol: gKartToad184Wheel2 - type: texture - offset: 0x837E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_3: - symbol: gKartToad184Wheel3 - type: texture - offset: 0x83868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_0: - symbol: gKartToad185Wheel0 - type: texture - offset: 0x838E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_1: - symbol: gKartToad185Wheel1 - type: texture - offset: 0x83968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_2: - symbol: gKartToad185Wheel2 - type: texture - offset: 0x839E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_3: - symbol: gKartToad185Wheel3 - type: texture - offset: 0x83A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_0: - symbol: gKartToad186Wheel0 - type: texture - offset: 0x83AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_1: - symbol: gKartToad186Wheel1 - type: texture - offset: 0x83B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_2: - symbol: gKartToad186Wheel2 - type: texture - offset: 0x83BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_3: - symbol: gKartToad186Wheel3 - type: texture - offset: 0x83C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_0: - symbol: gKartToad187Wheel0 - type: texture - offset: 0x83CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_1: - symbol: gKartToad187Wheel1 - type: texture - offset: 0x83D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_2: - symbol: gKartToad187Wheel2 - type: texture - offset: 0x83DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_3: - symbol: gKartToad187Wheel3 - type: texture - offset: 0x83E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_0: - symbol: gKartToad188Wheel0 - type: texture - offset: 0x83EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_1: - symbol: gKartToad188Wheel1 - type: texture - offset: 0x83F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_2: - symbol: gKartToad188Wheel2 - type: texture - offset: 0x83FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_3: - symbol: gKartToad188Wheel3 - type: texture - offset: 0x84068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_0: - symbol: gKartToad189Wheel0 - type: texture - offset: 0x840E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_1: - symbol: gKartToad189Wheel1 - type: texture - offset: 0x84168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_2: - symbol: gKartToad189Wheel2 - type: texture - offset: 0x841E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_3: - symbol: gKartToad189Wheel3 - type: texture - offset: 0x84268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_0: - symbol: gKartToad190Wheel0 - type: texture - offset: 0x842E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_1: - symbol: gKartToad190Wheel1 - type: texture - offset: 0x84368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_2: - symbol: gKartToad190Wheel2 - type: texture - offset: 0x843E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_3: - symbol: gKartToad190Wheel3 - type: texture - offset: 0x84468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_0: - symbol: gKartToad191Wheel0 - type: texture - offset: 0x844E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_1: - symbol: gKartToad191Wheel1 - type: texture - offset: 0x84568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_2: - symbol: gKartToad191Wheel2 - type: texture - offset: 0x845E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_3: - symbol: gKartToad191Wheel3 - type: texture - offset: 0x84668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_0: - symbol: gKartToad192Wheel0 - type: texture - offset: 0x846E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_1: - symbol: gKartToad192Wheel1 - type: texture - offset: 0x84768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_2: - symbol: gKartToad192Wheel2 - type: texture - offset: 0x847E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_3: - symbol: gKartToad192Wheel3 - type: texture - offset: 0x84868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_0: - symbol: gKartToad193Wheel0 - type: texture - offset: 0x848E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_1: - symbol: gKartToad193Wheel1 - type: texture - offset: 0x84968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_2: - symbol: gKartToad193Wheel2 - type: texture - offset: 0x849E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_3: - symbol: gKartToad193Wheel3 - type: texture - offset: 0x84A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_0: - symbol: gKartToad194Wheel0 - type: texture - offset: 0x84AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_1: - symbol: gKartToad194Wheel1 - type: texture - offset: 0x84B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_2: - symbol: gKartToad194Wheel2 - type: texture - offset: 0x84BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_3: - symbol: gKartToad194Wheel3 - type: texture - offset: 0x84C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_0: - symbol: gKartToad195Wheel0 - type: texture - offset: 0x84CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_1: - symbol: gKartToad195Wheel1 - type: texture - offset: 0x84D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_2: - symbol: gKartToad195Wheel2 - type: texture - offset: 0x84DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_3: - symbol: gKartToad195Wheel3 - type: texture - offset: 0x84E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_0: - symbol: gKartToad196Wheel0 - type: texture - offset: 0x84EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_1: - symbol: gKartToad196Wheel1 - type: texture - offset: 0x84F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_2: - symbol: gKartToad196Wheel2 - type: texture - offset: 0x84FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_3: - symbol: gKartToad196Wheel3 - type: texture - offset: 0x85068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_0: - symbol: gKartToad197Wheel0 - type: texture - offset: 0x850E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_1: - symbol: gKartToad197Wheel1 - type: texture - offset: 0x85168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_2: - symbol: gKartToad197Wheel2 - type: texture - offset: 0x851E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_3: - symbol: gKartToad197Wheel3 - type: texture - offset: 0x85268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_0: - symbol: gKartToad198Wheel0 - type: texture - offset: 0x852E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_1: - symbol: gKartToad198Wheel1 - type: texture - offset: 0x85368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_2: - symbol: gKartToad198Wheel2 - type: texture - offset: 0x853E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_3: - symbol: gKartToad198Wheel3 - type: texture - offset: 0x85468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_0: - symbol: gKartToad199Wheel0 - type: texture - offset: 0x854E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_1: - symbol: gKartToad199Wheel1 - type: texture - offset: 0x85568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_2: - symbol: gKartToad199Wheel2 - type: texture - offset: 0x855E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_3: - symbol: gKartToad199Wheel3 - type: texture - offset: 0x85668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_0: - symbol: gKartToad200Wheel0 - type: texture - offset: 0x856E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_1: - symbol: gKartToad200Wheel1 - type: texture - offset: 0x85768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_2: - symbol: gKartToad200Wheel2 - type: texture - offset: 0x857E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_3: - symbol: gKartToad200Wheel3 - type: texture - offset: 0x85868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_0: - symbol: gKartToad201Wheel0 - type: texture - offset: 0x858E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_1: - symbol: gKartToad201Wheel1 - type: texture - offset: 0x85968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_2: - symbol: gKartToad201Wheel2 - type: texture - offset: 0x859E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_3: - symbol: gKartToad201Wheel3 - type: texture - offset: 0x85A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_0: - symbol: gKartToad202Wheel0 - type: texture - offset: 0x85AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_1: - symbol: gKartToad202Wheel1 - type: texture - offset: 0x85B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_2: - symbol: gKartToad202Wheel2 - type: texture - offset: 0x85BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_3: - symbol: gKartToad202Wheel3 - type: texture - offset: 0x85C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_0: - symbol: gKartToad203Wheel0 - type: texture - offset: 0x85CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_1: - symbol: gKartToad203Wheel1 - type: texture - offset: 0x85D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_2: - symbol: gKartToad203Wheel2 - type: texture - offset: 0x85DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_3: - symbol: gKartToad203Wheel3 - type: texture - offset: 0x85E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_0: - symbol: gKartToad204Wheel0 - type: texture - offset: 0x85EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_1: - symbol: gKartToad204Wheel1 - type: texture - offset: 0x85F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_2: - symbol: gKartToad204Wheel2 - type: texture - offset: 0x85FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_3: - symbol: gKartToad204Wheel3 - type: texture - offset: 0x86068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_0: - symbol: gKartToad205Wheel0 - type: texture - offset: 0x860E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_1: - symbol: gKartToad205Wheel1 - type: texture - offset: 0x86168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_2: - symbol: gKartToad205Wheel2 - type: texture - offset: 0x861E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_3: - symbol: gKartToad205Wheel3 - type: texture - offset: 0x86268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_0: - symbol: gKartToad206Wheel0 - type: texture - offset: 0x862E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_1: - symbol: gKartToad206Wheel1 - type: texture - offset: 0x86368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_2: - symbol: gKartToad206Wheel2 - type: texture - offset: 0x863E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_3: - symbol: gKartToad206Wheel3 - type: texture - offset: 0x86468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_0: - symbol: gKartToad207Wheel0 - type: texture - offset: 0x864E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_1: - symbol: gKartToad207Wheel1 - type: texture - offset: 0x86568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_2: - symbol: gKartToad207Wheel2 - type: texture - offset: 0x865E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_3: - symbol: gKartToad207Wheel3 - type: texture - offset: 0x86668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_0: - symbol: gKartToad208Wheel0 - type: texture - offset: 0x866E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_1: - symbol: gKartToad208Wheel1 - type: texture - offset: 0x86768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_2: - symbol: gKartToad208Wheel2 - type: texture - offset: 0x867E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_3: - symbol: gKartToad208Wheel3 - type: texture - offset: 0x86868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_0: - symbol: gKartToad209Wheel0 - type: texture - offset: 0x868E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_1: - symbol: gKartToad209Wheel1 - type: texture - offset: 0x86968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_2: - symbol: gKartToad209Wheel2 - type: texture - offset: 0x869E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_3: - symbol: gKartToad209Wheel3 - type: texture - offset: 0x86A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_0: - symbol: gKartToad210Wheel0 - type: texture - offset: 0x86AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_1: - symbol: gKartToad210Wheel1 - type: texture - offset: 0x86B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_2: - symbol: gKartToad210Wheel2 - type: texture - offset: 0x86BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_3: - symbol: gKartToad210Wheel3 - type: texture - offset: 0x86C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_0: - symbol: gKartToad211Wheel0 - type: texture - offset: 0x86CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_1: - symbol: gKartToad211Wheel1 - type: texture - offset: 0x86D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_2: - symbol: gKartToad211Wheel2 - type: texture - offset: 0x86DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_3: - symbol: gKartToad211Wheel3 - type: texture - offset: 0x86E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_0: - symbol: gKartToad212Wheel0 - type: texture - offset: 0x86EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_1: - symbol: gKartToad212Wheel1 - type: texture - offset: 0x86F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_2: - symbol: gKartToad212Wheel2 - type: texture - offset: 0x86FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_3: - symbol: gKartToad212Wheel3 - type: texture - offset: 0x87068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_0: - symbol: gKartToad213Wheel0 - type: texture - offset: 0x870E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_1: - symbol: gKartToad213Wheel1 - type: texture - offset: 0x87168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_2: - symbol: gKartToad213Wheel2 - type: texture - offset: 0x871E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_3: - symbol: gKartToad213Wheel3 - type: texture - offset: 0x87268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_0: - symbol: gKartToad214Wheel0 - type: texture - offset: 0x872E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_1: - symbol: gKartToad214Wheel1 - type: texture - offset: 0x87368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_2: - symbol: gKartToad214Wheel2 - type: texture - offset: 0x873E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_3: - symbol: gKartToad214Wheel3 - type: texture - offset: 0x87468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_0: - symbol: gKartToad215Wheel0 - type: texture - offset: 0x874E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_1: - symbol: gKartToad215Wheel1 - type: texture - offset: 0x87568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_2: - symbol: gKartToad215Wheel2 - type: texture - offset: 0x875E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_3: - symbol: gKartToad215Wheel3 - type: texture - offset: 0x87668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_0: - symbol: gKartToad216Wheel0 - type: texture - offset: 0x876E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_1: - symbol: gKartToad216Wheel1 - type: texture - offset: 0x87768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_2: - symbol: gKartToad216Wheel2 - type: texture - offset: 0x877E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_3: - symbol: gKartToad216Wheel3 - type: texture - offset: 0x87868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_0: - symbol: gKartToad217Wheel0 - type: texture - offset: 0x878E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_1: - symbol: gKartToad217Wheel1 - type: texture - offset: 0x87968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_2: - symbol: gKartToad217Wheel2 - type: texture - offset: 0x879E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_3: - symbol: gKartToad217Wheel3 - type: texture - offset: 0x87A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_0: - symbol: gKartToad218Wheel0 - type: texture - offset: 0x87AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_1: - symbol: gKartToad218Wheel1 - type: texture - offset: 0x87B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_2: - symbol: gKartToad218Wheel2 - type: texture - offset: 0x87BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_3: - symbol: gKartToad218Wheel3 - type: texture - offset: 0x87C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_0: - symbol: gKartToad219Wheel0 - type: texture - offset: 0x87CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_1: - symbol: gKartToad219Wheel1 - type: texture - offset: 0x87D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_2: - symbol: gKartToad219Wheel2 - type: texture - offset: 0x87DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_3: - symbol: gKartToad219Wheel3 - type: texture - offset: 0x87E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_0: - symbol: gKartToad220Wheel0 - type: texture - offset: 0x87EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_1: - symbol: gKartToad220Wheel1 - type: texture - offset: 0x87F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_2: - symbol: gKartToad220Wheel2 - type: texture - offset: 0x87FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_3: - symbol: gKartToad220Wheel3 - type: texture - offset: 0x88068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_0: - symbol: gKartToad221Wheel0 - type: texture - offset: 0x880E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_1: - symbol: gKartToad221Wheel1 - type: texture - offset: 0x88168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_2: - symbol: gKartToad221Wheel2 - type: texture - offset: 0x881E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_3: - symbol: gKartToad221Wheel3 - type: texture - offset: 0x88268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_0: - symbol: gKartToad222Wheel0 - type: texture - offset: 0x882E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_1: - symbol: gKartToad222Wheel1 - type: texture - offset: 0x88368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_2: - symbol: gKartToad222Wheel2 - type: texture - offset: 0x883E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_3: - symbol: gKartToad222Wheel3 - type: texture - offset: 0x88468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_0: - symbol: gKartToad223Wheel0 - type: texture - offset: 0x884E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_1: - symbol: gKartToad223Wheel1 - type: texture - offset: 0x88568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_2: - symbol: gKartToad223Wheel2 - type: texture - offset: 0x885E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_3: - symbol: gKartToad223Wheel3 - type: texture - offset: 0x88668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_0: - symbol: gKartToad224Wheel0 - type: texture - offset: 0x886E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_1: - symbol: gKartToad224Wheel1 - type: texture - offset: 0x88768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_2: - symbol: gKartToad224Wheel2 - type: texture - offset: 0x887E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_3: - symbol: gKartToad224Wheel3 - type: texture - offset: 0x88868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_0: - symbol: gKartToad225Wheel0 - type: texture - offset: 0x888E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_1: - symbol: gKartToad225Wheel1 - type: texture - offset: 0x88968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_2: - symbol: gKartToad225Wheel2 - type: texture - offset: 0x889E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_3: - symbol: gKartToad225Wheel3 - type: texture - offset: 0x88A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_0: - symbol: gKartToad226Wheel0 - type: texture - offset: 0x88AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_1: - symbol: gKartToad226Wheel1 - type: texture - offset: 0x88B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_2: - symbol: gKartToad226Wheel2 - type: texture - offset: 0x88BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_3: - symbol: gKartToad226Wheel3 - type: texture - offset: 0x88C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_0: - symbol: gKartToad227Wheel0 - type: texture - offset: 0x88CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_1: - symbol: gKartToad227Wheel1 - type: texture - offset: 0x88D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_2: - symbol: gKartToad227Wheel2 - type: texture - offset: 0x88DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_3: - symbol: gKartToad227Wheel3 - type: texture - offset: 0x88E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_0: - symbol: gKartToad228Wheel0 - type: texture - offset: 0x88EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_1: - symbol: gKartToad228Wheel1 - type: texture - offset: 0x88F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_2: - symbol: gKartToad228Wheel2 - type: texture - offset: 0x88FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_3: - symbol: gKartToad228Wheel3 - type: texture - offset: 0x89068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_0: - symbol: gKartToad229Wheel0 - type: texture - offset: 0x890E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_1: - symbol: gKartToad229Wheel1 - type: texture - offset: 0x89168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_2: - symbol: gKartToad229Wheel2 - type: texture - offset: 0x891E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_3: - symbol: gKartToad229Wheel3 - type: texture - offset: 0x89268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_0: - symbol: gKartToad230Wheel0 - type: texture - offset: 0x892E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_1: - symbol: gKartToad230Wheel1 - type: texture - offset: 0x89368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_2: - symbol: gKartToad230Wheel2 - type: texture - offset: 0x893E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_3: - symbol: gKartToad230Wheel3 - type: texture - offset: 0x89468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_0: - symbol: gKartToad231Wheel0 - type: texture - offset: 0x894E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_1: - symbol: gKartToad231Wheel1 - type: texture - offset: 0x89568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_2: - symbol: gKartToad231Wheel2 - type: texture - offset: 0x895E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_3: - symbol: gKartToad231Wheel3 - type: texture - offset: 0x89668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_0: - symbol: gKartToad232Wheel0 - type: texture - offset: 0x896E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_1: - symbol: gKartToad232Wheel1 - type: texture - offset: 0x89768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_2: - symbol: gKartToad232Wheel2 - type: texture - offset: 0x897E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_3: - symbol: gKartToad232Wheel3 - type: texture - offset: 0x89868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_0: - symbol: gKartToad233Wheel0 - type: texture - offset: 0x898E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_1: - symbol: gKartToad233Wheel1 - type: texture - offset: 0x89968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_2: - symbol: gKartToad233Wheel2 - type: texture - offset: 0x899E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_3: - symbol: gKartToad233Wheel3 - type: texture - offset: 0x89A68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_0: - symbol: gKartToad234Wheel0 - type: texture - offset: 0x89AE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_1: - symbol: gKartToad234Wheel1 - type: texture - offset: 0x89B68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_2: - symbol: gKartToad234Wheel2 - type: texture - offset: 0x89BE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_3: - symbol: gKartToad234Wheel3 - type: texture - offset: 0x89C68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_0: - symbol: gKartToad235Wheel0 - type: texture - offset: 0x89CE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_1: - symbol: gKartToad235Wheel1 - type: texture - offset: 0x89D68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_2: - symbol: gKartToad235Wheel2 - type: texture - offset: 0x89DE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_3: - symbol: gKartToad235Wheel3 - type: texture - offset: 0x89E68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_0: - symbol: gKartToad236Wheel0 - type: texture - offset: 0x89EE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_1: - symbol: gKartToad236Wheel1 - type: texture - offset: 0x89F68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_2: - symbol: gKartToad236Wheel2 - type: texture - offset: 0x89FE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_3: - symbol: gKartToad236Wheel3 - type: texture - offset: 0x8A068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_0: - symbol: gKartToad237Wheel0 - type: texture - offset: 0x8A0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_1: - symbol: gKartToad237Wheel1 - type: texture - offset: 0x8A168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_2: - symbol: gKartToad237Wheel2 - type: texture - offset: 0x8A1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_3: - symbol: gKartToad237Wheel3 - type: texture - offset: 0x8A268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_0: - symbol: gKartToad238Wheel0 - type: texture - offset: 0x8A2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_1: - symbol: gKartToad238Wheel1 - type: texture - offset: 0x8A368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_2: - symbol: gKartToad238Wheel2 - type: texture - offset: 0x8A3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_3: - symbol: gKartToad238Wheel3 - type: texture - offset: 0x8A468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_0: - symbol: gKartToad239Wheel0 - type: texture - offset: 0x8A4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_1: - symbol: gKartToad239Wheel1 - type: texture - offset: 0x8A568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_2: - symbol: gKartToad239Wheel2 - type: texture - offset: 0x8A5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_3: - symbol: gKartToad239Wheel3 - type: texture - offset: 0x8A668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_0: - symbol: gKartToad240Wheel0 - type: texture - offset: 0x8A6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_1: - symbol: gKartToad240Wheel1 - type: texture - offset: 0x8A768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_2: - symbol: gKartToad240Wheel2 - type: texture - offset: 0x8A7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_3: - symbol: gKartToad240Wheel3 - type: texture - offset: 0x8A868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_0: - symbol: gKartToad241Wheel0 - type: texture - offset: 0x8A8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_1: - symbol: gKartToad241Wheel1 - type: texture - offset: 0x8A968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_2: - symbol: gKartToad241Wheel2 - type: texture - offset: 0x8A9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_3: - symbol: gKartToad241Wheel3 - type: texture - offset: 0x8AA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_0: - symbol: gKartToad242Wheel0 - type: texture - offset: 0x8AAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_1: - symbol: gKartToad242Wheel1 - type: texture - offset: 0x8AB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_2: - symbol: gKartToad242Wheel2 - type: texture - offset: 0x8ABE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_3: - symbol: gKartToad242Wheel3 - type: texture - offset: 0x8AC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_0: - symbol: gKartToad243Wheel0 - type: texture - offset: 0x8ACE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_1: - symbol: gKartToad243Wheel1 - type: texture - offset: 0x8AD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_2: - symbol: gKartToad243Wheel2 - type: texture - offset: 0x8ADE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_3: - symbol: gKartToad243Wheel3 - type: texture - offset: 0x8AE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_0: - symbol: gKartToad244Wheel0 - type: texture - offset: 0x8AEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_1: - symbol: gKartToad244Wheel1 - type: texture - offset: 0x8AF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_2: - symbol: gKartToad244Wheel2 - type: texture - offset: 0x8AFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_3: - symbol: gKartToad244Wheel3 - type: texture - offset: 0x8B068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_0: - symbol: gKartToad245Wheel0 - type: texture - offset: 0x8B0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_1: - symbol: gKartToad245Wheel1 - type: texture - offset: 0x8B168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_2: - symbol: gKartToad245Wheel2 - type: texture - offset: 0x8B1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_3: - symbol: gKartToad245Wheel3 - type: texture - offset: 0x8B268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_0: - symbol: gKartToad246Wheel0 - type: texture - offset: 0x8B2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_1: - symbol: gKartToad246Wheel1 - type: texture - offset: 0x8B368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_2: - symbol: gKartToad246Wheel2 - type: texture - offset: 0x8B3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_3: - symbol: gKartToad246Wheel3 - type: texture - offset: 0x8B468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_0: - symbol: gKartToad247Wheel0 - type: texture - offset: 0x8B4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_1: - symbol: gKartToad247Wheel1 - type: texture - offset: 0x8B568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_2: - symbol: gKartToad247Wheel2 - type: texture - offset: 0x8B5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_3: - symbol: gKartToad247Wheel3 - type: texture - offset: 0x8B668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_0: - symbol: gKartToad248Wheel0 - type: texture - offset: 0x8B6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_1: - symbol: gKartToad248Wheel1 - type: texture - offset: 0x8B768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_2: - symbol: gKartToad248Wheel2 - type: texture - offset: 0x8B7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_3: - symbol: gKartToad248Wheel3 - type: texture - offset: 0x8B868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_0: - symbol: gKartToad249Wheel0 - type: texture - offset: 0x8B8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_1: - symbol: gKartToad249Wheel1 - type: texture - offset: 0x8B968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_2: - symbol: gKartToad249Wheel2 - type: texture - offset: 0x8B9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_3: - symbol: gKartToad249Wheel3 - type: texture - offset: 0x8BA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_0: - symbol: gKartToad250Wheel0 - type: texture - offset: 0x8BAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_1: - symbol: gKartToad250Wheel1 - type: texture - offset: 0x8BB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_2: - symbol: gKartToad250Wheel2 - type: texture - offset: 0x8BBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_3: - symbol: gKartToad250Wheel3 - type: texture - offset: 0x8BC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_0: - symbol: gKartToad251Wheel0 - type: texture - offset: 0x8BCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_1: - symbol: gKartToad251Wheel1 - type: texture - offset: 0x8BD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_2: - symbol: gKartToad251Wheel2 - type: texture - offset: 0x8BDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_3: - symbol: gKartToad251Wheel3 - type: texture - offset: 0x8BE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_0: - symbol: gKartToad252Wheel0 - type: texture - offset: 0x8BEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_1: - symbol: gKartToad252Wheel1 - type: texture - offset: 0x8BF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_2: - symbol: gKartToad252Wheel2 - type: texture - offset: 0x8BFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_3: - symbol: gKartToad252Wheel3 - type: texture - offset: 0x8C068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_0: - symbol: gKartToad253Wheel0 - type: texture - offset: 0x8C0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_1: - symbol: gKartToad253Wheel1 - type: texture - offset: 0x8C168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_2: - symbol: gKartToad253Wheel2 - type: texture - offset: 0x8C1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_3: - symbol: gKartToad253Wheel3 - type: texture - offset: 0x8C268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_0: - symbol: gKartToad254Wheel0 - type: texture - offset: 0x8C2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_1: - symbol: gKartToad254Wheel1 - type: texture - offset: 0x8C368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_2: - symbol: gKartToad254Wheel2 - type: texture - offset: 0x8C3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_3: - symbol: gKartToad254Wheel3 - type: texture - offset: 0x8C468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_0: - symbol: gKartToad255Wheel0 - type: texture - offset: 0x8C4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_1: - symbol: gKartToad255Wheel1 - type: texture - offset: 0x8C568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_2: - symbol: gKartToad255Wheel2 - type: texture - offset: 0x8C5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_3: - symbol: gKartToad255Wheel3 - type: texture - offset: 0x8C668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_0: - symbol: gKartToad256Wheel0 - type: texture - offset: 0x8C6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_1: - symbol: gKartToad256Wheel1 - type: texture - offset: 0x8C768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_2: - symbol: gKartToad256Wheel2 - type: texture - offset: 0x8C7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_3: - symbol: gKartToad256Wheel3 - type: texture - offset: 0x8C868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_0: - symbol: gKartToad257Wheel0 - type: texture - offset: 0x8C8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_1: - symbol: gKartToad257Wheel1 - type: texture - offset: 0x8C968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_2: - symbol: gKartToad257Wheel2 - type: texture - offset: 0x8C9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_3: - symbol: gKartToad257Wheel3 - type: texture - offset: 0x8CA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_0: - symbol: gKartToad258Wheel0 - type: texture - offset: 0x8CAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_1: - symbol: gKartToad258Wheel1 - type: texture - offset: 0x8CB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_2: - symbol: gKartToad258Wheel2 - type: texture - offset: 0x8CBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_3: - symbol: gKartToad258Wheel3 - type: texture - offset: 0x8CC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_0: - symbol: gKartToad259Wheel0 - type: texture - offset: 0x8CCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_1: - symbol: gKartToad259Wheel1 - type: texture - offset: 0x8CD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_2: - symbol: gKartToad259Wheel2 - type: texture - offset: 0x8CDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_3: - symbol: gKartToad259Wheel3 - type: texture - offset: 0x8CE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_0: - symbol: gKartToad260Wheel0 - type: texture - offset: 0x8CEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_1: - symbol: gKartToad260Wheel1 - type: texture - offset: 0x8CF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_2: - symbol: gKartToad260Wheel2 - type: texture - offset: 0x8CFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_3: - symbol: gKartToad260Wheel3 - type: texture - offset: 0x8D068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_0: - symbol: gKartToad261Wheel0 - type: texture - offset: 0x8D0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_1: - symbol: gKartToad261Wheel1 - type: texture - offset: 0x8D168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_2: - symbol: gKartToad261Wheel2 - type: texture - offset: 0x8D1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_3: - symbol: gKartToad261Wheel3 - type: texture - offset: 0x8D268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_0: - symbol: gKartToad262Wheel0 - type: texture - offset: 0x8D2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_1: - symbol: gKartToad262Wheel1 - type: texture - offset: 0x8D368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_2: - symbol: gKartToad262Wheel2 - type: texture - offset: 0x8D3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_3: - symbol: gKartToad262Wheel3 - type: texture - offset: 0x8D468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_0: - symbol: gKartToad263Wheel0 - type: texture - offset: 0x8D4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_1: - symbol: gKartToad263Wheel1 - type: texture - offset: 0x8D568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_2: - symbol: gKartToad263Wheel2 - type: texture - offset: 0x8D5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_3: - symbol: gKartToad263Wheel3 - type: texture - offset: 0x8D668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_0: - symbol: gKartToad264Wheel0 - type: texture - offset: 0x8D6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_1: - symbol: gKartToad264Wheel1 - type: texture - offset: 0x8D768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_2: - symbol: gKartToad264Wheel2 - type: texture - offset: 0x8D7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_3: - symbol: gKartToad264Wheel3 - type: texture - offset: 0x8D868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_0: - symbol: gKartToad265Wheel0 - type: texture - offset: 0x8D8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_1: - symbol: gKartToad265Wheel1 - type: texture - offset: 0x8D968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_2: - symbol: gKartToad265Wheel2 - type: texture - offset: 0x8D9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_3: - symbol: gKartToad265Wheel3 - type: texture - offset: 0x8DA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_0: - symbol: gKartToad266Wheel0 - type: texture - offset: 0x8DAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_1: - symbol: gKartToad266Wheel1 - type: texture - offset: 0x8DB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_2: - symbol: gKartToad266Wheel2 - type: texture - offset: 0x8DBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_3: - symbol: gKartToad266Wheel3 - type: texture - offset: 0x8DC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_0: - symbol: gKartToad267Wheel0 - type: texture - offset: 0x8DCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_1: - symbol: gKartToad267Wheel1 - type: texture - offset: 0x8DD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_2: - symbol: gKartToad267Wheel2 - type: texture - offset: 0x8DDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_3: - symbol: gKartToad267Wheel3 - type: texture - offset: 0x8DE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_0: - symbol: gKartToad268Wheel0 - type: texture - offset: 0x8DEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_1: - symbol: gKartToad268Wheel1 - type: texture - offset: 0x8DF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_2: - symbol: gKartToad268Wheel2 - type: texture - offset: 0x8DFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_3: - symbol: gKartToad268Wheel3 - type: texture - offset: 0x8E068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_0: - symbol: gKartToad269Wheel0 - type: texture - offset: 0x8E0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_1: - symbol: gKartToad269Wheel1 - type: texture - offset: 0x8E168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_2: - symbol: gKartToad269Wheel2 - type: texture - offset: 0x8E1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_3: - symbol: gKartToad269Wheel3 - type: texture - offset: 0x8E268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_0: - symbol: gKartToad270Wheel0 - type: texture - offset: 0x8E2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_1: - symbol: gKartToad270Wheel1 - type: texture - offset: 0x8E368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_2: - symbol: gKartToad270Wheel2 - type: texture - offset: 0x8E3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_3: - symbol: gKartToad270Wheel3 - type: texture - offset: 0x8E468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_0: - symbol: gKartToad271Wheel0 - type: texture - offset: 0x8E4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_1: - symbol: gKartToad271Wheel1 - type: texture - offset: 0x8E568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_2: - symbol: gKartToad271Wheel2 - type: texture - offset: 0x8E5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_3: - symbol: gKartToad271Wheel3 - type: texture - offset: 0x8E668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_0: - symbol: gKartToad272Wheel0 - type: texture - offset: 0x8E6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_1: - symbol: gKartToad272Wheel1 - type: texture - offset: 0x8E768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_2: - symbol: gKartToad272Wheel2 - type: texture - offset: 0x8E7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_3: - symbol: gKartToad272Wheel3 - type: texture - offset: 0x8E868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_0: - symbol: gKartToad273Wheel0 - type: texture - offset: 0x8E8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_1: - symbol: gKartToad273Wheel1 - type: texture - offset: 0x8E968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_2: - symbol: gKartToad273Wheel2 - type: texture - offset: 0x8E9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_3: - symbol: gKartToad273Wheel3 - type: texture - offset: 0x8EA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_0: - symbol: gKartToad274Wheel0 - type: texture - offset: 0x8EAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_1: - symbol: gKartToad274Wheel1 - type: texture - offset: 0x8EB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_2: - symbol: gKartToad274Wheel2 - type: texture - offset: 0x8EBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_3: - symbol: gKartToad274Wheel3 - type: texture - offset: 0x8EC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_0: - symbol: gKartToad275Wheel0 - type: texture - offset: 0x8ECE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_1: - symbol: gKartToad275Wheel1 - type: texture - offset: 0x8ED68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_2: - symbol: gKartToad275Wheel2 - type: texture - offset: 0x8EDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_3: - symbol: gKartToad275Wheel3 - type: texture - offset: 0x8EE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_0: - symbol: gKartToad276Wheel0 - type: texture - offset: 0x8EEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_1: - symbol: gKartToad276Wheel1 - type: texture - offset: 0x8EF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_2: - symbol: gKartToad276Wheel2 - type: texture - offset: 0x8EFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_3: - symbol: gKartToad276Wheel3 - type: texture - offset: 0x8F068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_0: - symbol: gKartToad277Wheel0 - type: texture - offset: 0x8F0E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_1: - symbol: gKartToad277Wheel1 - type: texture - offset: 0x8F168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_2: - symbol: gKartToad277Wheel2 - type: texture - offset: 0x8F1E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_3: - symbol: gKartToad277Wheel3 - type: texture - offset: 0x8F268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_0: - symbol: gKartToad278Wheel0 - type: texture - offset: 0x8F2E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_1: - symbol: gKartToad278Wheel1 - type: texture - offset: 0x8F368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_2: - symbol: gKartToad278Wheel2 - type: texture - offset: 0x8F3E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_3: - symbol: gKartToad278Wheel3 - type: texture - offset: 0x8F468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_0: - symbol: gKartToad279Wheel0 - type: texture - offset: 0x8F4E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_1: - symbol: gKartToad279Wheel1 - type: texture - offset: 0x8F568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_2: - symbol: gKartToad279Wheel2 - type: texture - offset: 0x8F5E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_3: - symbol: gKartToad279Wheel3 - type: texture - offset: 0x8F668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_0: - symbol: gKartToad280Wheel0 - type: texture - offset: 0x8F6E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_1: - symbol: gKartToad280Wheel1 - type: texture - offset: 0x8F768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_2: - symbol: gKartToad280Wheel2 - type: texture - offset: 0x8F7E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_3: - symbol: gKartToad280Wheel3 - type: texture - offset: 0x8F868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_0: - symbol: gKartToad281Wheel0 - type: texture - offset: 0x8F8E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_1: - symbol: gKartToad281Wheel1 - type: texture - offset: 0x8F968 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_2: - symbol: gKartToad281Wheel2 - type: texture - offset: 0x8F9E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_3: - symbol: gKartToad281Wheel3 - type: texture - offset: 0x8FA68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_0: - symbol: gKartToad282Wheel0 - type: texture - offset: 0x8FAE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_1: - symbol: gKartToad282Wheel1 - type: texture - offset: 0x8FB68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_2: - symbol: gKartToad282Wheel2 - type: texture - offset: 0x8FBE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_3: - symbol: gKartToad282Wheel3 - type: texture - offset: 0x8FC68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_0: - symbol: gKartToad283Wheel0 - type: texture - offset: 0x8FCE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_1: - symbol: gKartToad283Wheel1 - type: texture - offset: 0x8FD68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_2: - symbol: gKartToad283Wheel2 - type: texture - offset: 0x8FDE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_3: - symbol: gKartToad283Wheel3 - type: texture - offset: 0x8FE68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_0: - symbol: gKartToad284Wheel0 - type: texture - offset: 0x8FEE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_1: - symbol: gKartToad284Wheel1 - type: texture - offset: 0x8FF68 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_2: - symbol: gKartToad284Wheel2 - type: texture - offset: 0x8FFE8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_3: - symbol: gKartToad284Wheel3 - type: texture - offset: 0x90068 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_0: - symbol: gKartToad285Wheel0 - type: texture - offset: 0x900E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_1: - symbol: gKartToad285Wheel1 - type: texture - offset: 0x90168 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_2: - symbol: gKartToad285Wheel2 - type: texture - offset: 0x901E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_3: - symbol: gKartToad285Wheel3 - type: texture - offset: 0x90268 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_0: - symbol: gKartToad286Wheel0 - type: texture - offset: 0x902E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_1: - symbol: gKartToad286Wheel1 - type: texture - offset: 0x90368 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_2: - symbol: gKartToad286Wheel2 - type: texture - offset: 0x903E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_3: - symbol: gKartToad286Wheel3 - type: texture - offset: 0x90468 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_0: - symbol: gKartToad287Wheel0 - type: texture - offset: 0x904E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_1: - symbol: gKartToad287Wheel1 - type: texture - offset: 0x90568 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_2: - symbol: gKartToad287Wheel2 - type: texture - offset: 0x905E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_3: - symbol: gKartToad287Wheel3 - type: texture - offset: 0x90668 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_0: - symbol: gKartToad288Wheel0 - type: texture - offset: 0x906E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_1: - symbol: gKartToad288Wheel1 - type: texture - offset: 0x90768 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_2: - symbol: gKartToad288Wheel2 - type: texture - offset: 0x907E8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_3: - symbol: gKartToad288Wheel3 - type: texture - offset: 0x90868 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -toad_kart_palette: - symbol: gKartToadPalette - type: texture - offset: 0x908E8 - ctype: u16 - width: 16 - height: 12 - format: RGBA16 diff --git a/yamls/us/toads_turnpike_data.yml b/yamls/us/toads_turnpike_data.yml deleted file mode 100644 index c6f9df9f2..000000000 --- a/yamls/us/toads_turnpike_data.yml +++ /dev/null @@ -1,1828 +0,0 @@ -:config: - segments: - - [0x06, 0x857E80] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_toads_turnpike_dl_0: - symbol: d_course_toads_turnpike_dl_0 - type: gfx - offset: 0x0 -d_course_toads_turnpike_dl_60: - symbol: d_course_toads_turnpike_dl_60 - type: gfx - offset: 0x60 -d_course_toads_turnpike_dl_80: - symbol: d_course_toads_turnpike_dl_80 - type: gfx - offset: 0x80 -d_course_toads_turnpike_dl_158: - symbol: d_course_toads_turnpike_dl_158 - type: gfx - offset: 0x158 -d_course_toads_turnpike_dl_1F8: - symbol: d_course_toads_turnpike_dl_1F8 - type: gfx - offset: 0x1F8 -d_course_toads_turnpike_dl_2D0: - symbol: d_course_toads_turnpike_dl_2D0 - type: gfx - offset: 0x2D0 -d_course_toads_turnpike_dl_380: - symbol: d_course_toads_turnpike_dl_380 - type: gfx - offset: 0x380 -d_course_toads_turnpike_dl_438: - symbol: d_course_toads_turnpike_dl_438 - type: gfx - offset: 0x438 -d_course_toads_turnpike_dl_4E8: - symbol: d_course_toads_turnpike_dl_4E8 - type: gfx - offset: 0x4E8 -d_course_toads_turnpike_dl_5B8: - symbol: d_course_toads_turnpike_dl_5B8 - type: gfx - offset: 0x5B8 -d_course_toads_turnpike_dl_668: - symbol: d_course_toads_turnpike_dl_668 - type: gfx - offset: 0x668 -d_course_toads_turnpike_dl_718: - symbol: d_course_toads_turnpike_dl_718 - type: gfx - offset: 0x718 -d_course_toads_turnpike_dl_7D8: - symbol: d_course_toads_turnpike_dl_7D8 - type: gfx - offset: 0x7D8 -d_course_toads_turnpike_dl_878: - symbol: d_course_toads_turnpike_dl_878 - type: gfx - offset: 0x878 -d_course_toads_turnpike_dl_948: - symbol: d_course_toads_turnpike_dl_948 - type: gfx - offset: 0x948 -d_course_toads_turnpike_dl_9F0: - symbol: d_course_toads_turnpike_dl_9F0 - type: gfx - offset: 0x9F0 -d_course_toads_turnpike_dl_AC8: - symbol: d_course_toads_turnpike_dl_AC8 - type: gfx - offset: 0xAC8 -d_course_toads_turnpike_dl_B88: - symbol: d_course_toads_turnpike_dl_B88 - type: gfx - offset: 0xB88 -d_course_toads_turnpike_dl_C70: - symbol: d_course_toads_turnpike_dl_C70 - type: gfx - offset: 0xC70 -d_course_toads_turnpike_dl_D00: - symbol: d_course_toads_turnpike_dl_D00 - type: gfx - offset: 0xD00 -d_course_toads_turnpike_dl_DD0: - symbol: d_course_toads_turnpike_dl_DD0 - type: gfx - offset: 0xDD0 -d_course_toads_turnpike_dl_E70: - symbol: d_course_toads_turnpike_dl_E70 - type: gfx - offset: 0xE70 -d_course_toads_turnpike_dl_F18: - symbol: d_course_toads_turnpike_dl_F18 - type: gfx - offset: 0xF18 -d_course_toads_turnpike_dl_FA8: - symbol: d_course_toads_turnpike_dl_FA8 - type: gfx - offset: 0xFA8 -d_course_toads_turnpike_dl_1070: - symbol: d_course_toads_turnpike_dl_1070 - type: gfx - offset: 0x1070 -d_course_toads_turnpike_dl_1118: - symbol: d_course_toads_turnpike_dl_1118 - type: gfx - offset: 0x1118 -d_course_toads_turnpike_dl_11C0: - symbol: d_course_toads_turnpike_dl_11C0 - type: gfx - offset: 0x11C0 -d_course_toads_turnpike_dl_1250: - symbol: d_course_toads_turnpike_dl_1250 - type: gfx - offset: 0x1250 -d_course_toads_turnpike_dl_1310: - symbol: d_course_toads_turnpike_dl_1310 - type: gfx - offset: 0x1310 -d_course_toads_turnpike_dl_13E0: - symbol: d_course_toads_turnpike_dl_13E0 - type: gfx - offset: 0x13E0 -d_course_toads_turnpike_dl_1468: - symbol: d_course_toads_turnpike_dl_1468 - type: gfx - offset: 0x1468 -d_course_toads_turnpike_dl_1510: - symbol: d_course_toads_turnpike_dl_1510 - type: gfx - offset: 0x1510 -d_course_toads_turnpike_dl_15A8: - symbol: d_course_toads_turnpike_dl_15A8 - type: gfx - offset: 0x15A8 -d_course_toads_turnpike_dl_1678: - symbol: d_course_toads_turnpike_dl_1678 - type: gfx - offset: 0x1678 -d_course_toads_turnpike_dl_1708: - symbol: d_course_toads_turnpike_dl_1708 - type: gfx - offset: 0x1708 -d_course_toads_turnpike_dl_17F8: - symbol: d_course_toads_turnpike_dl_17F8 - type: gfx - offset: 0x17F8 -d_course_toads_turnpike_dl_18C0: - symbol: d_course_toads_turnpike_dl_18C0 - type: gfx - offset: 0x18C0 -d_course_toads_turnpike_dl_19C0: - symbol: d_course_toads_turnpike_dl_19C0 - type: gfx - offset: 0x19C0 -d_course_toads_turnpike_dl_1A60: - symbol: d_course_toads_turnpike_dl_1A60 - type: gfx - offset: 0x1A60 -d_course_toads_turnpike_dl_1B50: - symbol: d_course_toads_turnpike_dl_1B50 - type: gfx - offset: 0x1B50 -d_course_toads_turnpike_dl_1C10: - symbol: d_course_toads_turnpike_dl_1C10 - type: gfx - offset: 0x1C10 -d_course_toads_turnpike_dl_1D18: - symbol: d_course_toads_turnpike_dl_1D18 - type: gfx - offset: 0x1D18 -d_course_toads_turnpike_dl_1DC0: - symbol: d_course_toads_turnpike_dl_1DC0 - type: gfx - offset: 0x1DC0 -d_course_toads_turnpike_dl_1E80: - symbol: d_course_toads_turnpike_dl_1E80 - type: gfx - offset: 0x1E80 -d_course_toads_turnpike_dl_1F40: - symbol: d_course_toads_turnpike_dl_1F40 - type: gfx - offset: 0x1F40 -d_course_toads_turnpike_dl_2030: - symbol: d_course_toads_turnpike_dl_2030 - type: gfx - offset: 0x2030 -d_course_toads_turnpike_dl_20F8: - symbol: d_course_toads_turnpike_dl_20F8 - type: gfx - offset: 0x20F8 -d_course_toads_turnpike_dl_21C8: - symbol: d_course_toads_turnpike_dl_21C8 - type: gfx - offset: 0x21C8 -d_course_toads_turnpike_dl_22A8: - symbol: d_course_toads_turnpike_dl_22A8 - type: gfx - offset: 0x22A8 -d_course_toads_turnpike_dl_2358: - symbol: d_course_toads_turnpike_dl_2358 - type: gfx - offset: 0x2358 -d_course_toads_turnpike_dl_2440: - symbol: d_course_toads_turnpike_dl_2440 - type: gfx - offset: 0x2440 -d_course_toads_turnpike_dl_2530: - symbol: d_course_toads_turnpike_dl_2530 - type: gfx - offset: 0x2530 -d_course_toads_turnpike_dl_2628: - symbol: d_course_toads_turnpike_dl_2628 - type: gfx - offset: 0x2628 -d_course_toads_turnpike_dl_26D8: - symbol: d_course_toads_turnpike_dl_26D8 - type: gfx - offset: 0x26D8 -d_course_toads_turnpike_dl_27D0: - symbol: d_course_toads_turnpike_dl_27D0 - type: gfx - offset: 0x27D0 -d_course_toads_turnpike_dl_2898: - symbol: d_course_toads_turnpike_dl_2898 - type: gfx - offset: 0x2898 -d_course_toads_turnpike_dl_2960: - symbol: d_course_toads_turnpike_dl_2960 - type: gfx - offset: 0x2960 -d_course_toads_turnpike_dl_2A00: - symbol: d_course_toads_turnpike_dl_2A00 - type: gfx - offset: 0x2A00 -d_course_toads_turnpike_dl_2AF0: - symbol: d_course_toads_turnpike_dl_2AF0 - type: gfx - offset: 0x2AF0 -d_course_toads_turnpike_dl_2B88: - symbol: d_course_toads_turnpike_dl_2B88 - type: gfx - offset: 0x2B88 -d_course_toads_turnpike_dl_2C38: - symbol: d_course_toads_turnpike_dl_2C38 - type: gfx - offset: 0x2C38 -d_course_toads_turnpike_dl_2CC0: - symbol: d_course_toads_turnpike_dl_2CC0 - type: gfx - offset: 0x2CC0 -d_course_toads_turnpike_dl_2DB8: - symbol: d_course_toads_turnpike_dl_2DB8 - type: gfx - offset: 0x2DB8 -d_course_toads_turnpike_dl_2E50: - symbol: d_course_toads_turnpike_dl_2E50 - type: gfx - offset: 0x2E50 -d_course_toads_turnpike_dl_2EF0: - symbol: d_course_toads_turnpike_dl_2EF0 - type: gfx - offset: 0x2EF0 -d_course_toads_turnpike_dl_2F78: - symbol: d_course_toads_turnpike_dl_2F78 - type: gfx - offset: 0x2F78 -d_course_toads_turnpike_dl_3030: - symbol: d_course_toads_turnpike_dl_3030 - type: gfx - offset: 0x3030 -d_course_toads_turnpike_dl_30F8: - symbol: d_course_toads_turnpike_dl_30F8 - type: gfx - offset: 0x30F8 -d_course_toads_turnpike_dl_3190: - symbol: d_course_toads_turnpike_dl_3190 - type: gfx - offset: 0x3190 -d_course_toads_turnpike_dl_3228: - symbol: d_course_toads_turnpike_dl_3228 - type: gfx - offset: 0x3228 -d_course_toads_turnpike_dl_32F0: - symbol: d_course_toads_turnpike_dl_32F0 - type: gfx - offset: 0x32F0 -d_course_toads_turnpike_dl_33A0: - symbol: d_course_toads_turnpike_dl_33A0 - type: gfx - offset: 0x33A0 -d_course_toads_turnpike_dl_3438: - symbol: d_course_toads_turnpike_dl_3438 - type: gfx - offset: 0x3438 -d_course_toads_turnpike_dl_34D0: - symbol: d_course_toads_turnpike_dl_34D0 - type: gfx - offset: 0x34D0 -d_course_toads_turnpike_dl_3570: - symbol: d_course_toads_turnpike_dl_3570 - type: gfx - offset: 0x3570 -d_course_toads_turnpike_dl_3618: - symbol: d_course_toads_turnpike_dl_3618 - type: gfx - offset: 0x3618 -d_course_toads_turnpike_dl_36A8: - symbol: d_course_toads_turnpike_dl_36A8 - type: gfx - offset: 0x36A8 -d_course_toads_turnpike_dl_3758: - symbol: d_course_toads_turnpike_dl_3758 - type: gfx - offset: 0x3758 -d_course_toads_turnpike_dl_37F0: - symbol: d_course_toads_turnpike_dl_37F0 - type: gfx - offset: 0x37F0 -d_course_toads_turnpike_dl_3910: - symbol: d_course_toads_turnpike_dl_3910 - type: gfx - offset: 0x3910 -d_course_toads_turnpike_dl_39C8: - symbol: d_course_toads_turnpike_dl_39C8 - type: gfx - offset: 0x39C8 -d_course_toads_turnpike_dl_3AD8: - symbol: d_course_toads_turnpike_dl_3AD8 - type: gfx - offset: 0x3AD8 -d_course_toads_turnpike_unknown_waypoints: - symbol: d_course_toads_turnpike_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x3B80 - count: 54 -d_course_toads_turnpike_track_waypoints: - symbol: d_course_toads_turnpike_track_waypoints - type: mk64:TRACK_PATH - offset: 0x3D30 - count: 913 -d_course_toads_turnpike_unk_windshield1: - symbol: d_course_toads_turnpike_unk_windshield1 - type: texture - offset: 0x59B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_unk_windshield2: - symbol: d_course_toads_turnpike_unk_windshield2 - type: texture - offset: 0x61B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_truck_box1: - symbol: d_course_toads_turnpike_truck_box1 - type: texture - offset: 0x69B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_truck1_headlights: - symbol: d_course_toads_turnpike_truck1_headlights - type: texture - offset: 0x71B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_truck1_tyre: - symbol: d_course_toads_turnpike_truck1_tyre - type: texture - offset: 0x79B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_truck1_cab: - symbol: d_course_toads_turnpike_truck1_cab - type: texture - offset: 0x81B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_truck1_cab_side: - symbol: d_course_toads_turnpike_truck1_cab_side - type: texture - offset: 0x89B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_back_lod0: - symbol: d_course_toads_turnpike_bus_back_lod0 - type: texture - offset: 0x91B8 - width: 64 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_side: - symbol: d_course_toads_turnpike_bus_side - type: texture - offset: 0xA1B8 - width: 64 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_door_lod0: - symbol: d_course_toads_turnpike_bus_door_lod0 - type: texture - offset: 0xB1B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_window: - symbol: d_course_toads_turnpike_bus_window - type: texture - offset: 0xB9B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_front_lod0: - symbol: d_course_toads_turnpike_bus_front_lod0 - type: texture - offset: 0xC1B8 - width: 64 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_black: - symbol: d_course_toads_turnpike_black - type: texture - offset: 0xD1B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_driver_window: - symbol: d_course_toads_turnpike_bus_driver_window - type: texture - offset: 0xD9B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_door_lod1: - symbol: d_course_toads_turnpike_bus_door_lod1 - type: texture - offset: 0xE1B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_side_lod1: - symbol: d_course_toads_turnpike_bus_side_lod1 - type: texture - offset: 0xE9B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_front_lod1: - symbol: d_course_toads_turnpike_bus_front_lod1 - type: texture - offset: 0xF1B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_bus_back_lod1: - symbol: d_course_toads_turnpike_bus_back_lod1 - type: texture - offset: 0xF9B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_stripe: - symbol: d_course_toads_turnpike_tanker_truck_stripe - type: texture - offset: 0x101B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_windshield: - symbol: d_course_toads_turnpike_tanker_truck_windshield - type: texture - offset: 0x109B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_front: - symbol: d_course_toads_turnpike_tanker_truck_front - type: texture - offset: 0x111B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_headlights: - symbol: d_course_toads_turnpike_tanker_truck_headlights - type: texture - offset: 0x119B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_bumper: - symbol: d_course_toads_turnpike_tanker_truck_bumper - type: texture - offset: 0x121B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_side_back_lod1: - symbol: d_course_toads_turnpike_tanker_truck_side_back_lod1 - type: texture - offset: 0x129B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_back_lod1: - symbol: d_course_toads_turnpike_tanker_truck_back_lod1 - type: texture - offset: 0x131B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_side_front_lod1: - symbol: d_course_toads_turnpike_tanker_truck_side_front_lod1 - type: texture - offset: 0x139B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_tanker_truck_front_lod1: - symbol: d_course_toads_turnpike_tanker_truck_front_lod1 - type: texture - offset: 0x141B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_truck_box2: - symbol: d_course_toads_turnpike_truck_box2 - type: texture - offset: 0x149B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_truck_box3: - symbol: d_course_toads_turnpike_truck_box3 - type: texture - offset: 0x151B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_car_headlights: - symbol: d_course_toads_turnpike_car_headlights - type: texture - offset: 0x159B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_car_taillights: - symbol: d_course_toads_turnpike_car_taillights - type: texture - offset: 0x161B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_car_front_lod1: - symbol: d_course_toads_turnpike_car_front_lod1 - type: texture - offset: 0x169B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_car_back_lod1: - symbol: d_course_toads_turnpike_car_back_lod1 - type: texture - offset: 0x171B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_car_side_lod1: - symbol: d_course_toads_turnpike_car_side_lod1 - type: texture - offset: 0x179B8 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_toads_turnpike_truck_model_lod0: - symbol: d_course_toads_turnpike_truck_model_lod0 - type: vtx - offset: 0x181B8 - count: 8 -d_course_toads_turnpike_truck_unknown_model1: - symbol: d_course_toads_turnpike_truck_unknown_model1 - type: vtx - offset: 0x18238 - count: 8 -d_course_toads_turnpike_truck_unknown_model2: - symbol: d_course_toads_turnpike_truck_unknown_model2 - type: vtx - offset: 0x182B8 - count: 12 -d_course_toads_turnpike_truck_unknown_model3: - symbol: d_course_toads_turnpike_truck_unknown_model3 - type: vtx - offset: 0x18378 - count: 12 -d_course_toads_turnpike_truck_unknown_model4: - symbol: d_course_toads_turnpike_truck_unknown_model4 - type: vtx - offset: 0x18438 - count: 28 -d_course_toads_turnpike_truck_unknown_model5: - symbol: d_course_toads_turnpike_truck_unknown_model5 - type: vtx - offset: 0x185F8 - count: 10 -d_course_toads_turnpike_truck_unknown_model6: - symbol: d_course_toads_turnpike_truck_unknown_model6 - type: vtx - offset: 0x18698 - count: 31 -d_course_toads_turnpike_truck_unknown_model7: - symbol: d_course_toads_turnpike_truck_unknown_model7 - type: vtx - offset: 0x18888 - count: 10 -d_course_toads_turnpike_truck_unknown_model8: - symbol: d_course_toads_turnpike_truck_unknown_model8 - type: vtx - offset: 0x18928 - count: 14 -d_course_toads_turnpike_truck_unknown_model9: - symbol: d_course_toads_turnpike_truck_unknown_model9 - type: vtx - offset: 0x18A08 - count: 4 -d_course_toads_turnpike_truck_unknown_model10: - symbol: d_course_toads_turnpike_truck_unknown_model10 - type: vtx - offset: 0x18A48 - count: 8 -d_course_toads_turnpike_truck_unknown_model11: - symbol: d_course_toads_turnpike_truck_unknown_model11 - type: vtx - offset: 0x18AC8 - count: 20 -d_course_toads_turnpike_truck_unknown_model12: - symbol: d_course_toads_turnpike_truck_unknown_model12 - type: vtx - offset: 0x18C08 - count: 15 -d_course_toads_turnpike_truck_unknown_model13: - symbol: d_course_toads_turnpike_truck_unknown_model13 - type: vtx - offset: 0x18CF8 - count: 12 -d_course_toads_turnpike_dl_18DB8: - symbol: d_course_toads_turnpike_dl_18DB8 - type: gfx - offset: 0x18DB8 -d_course_toads_turnpike_dl_18E38: - symbol: d_course_toads_turnpike_dl_18E38 - type: gfx - offset: 0x18E38 -d_course_toads_turnpike_dl_18EB8: - symbol: d_course_toads_turnpike_dl_18EB8 - type: gfx - offset: 0x18EB8 -d_course_toads_turnpike_dl_18F58: - symbol: d_course_toads_turnpike_dl_18F58 - type: gfx - offset: 0x18F58 -d_course_toads_turnpike_dl_18FF8: - symbol: d_course_toads_turnpike_dl_18FF8 - type: gfx - offset: 0x18FF8 -d_course_toads_turnpike_dl_19020: - symbol: d_course_toads_turnpike_dl_19020 - type: gfx - offset: 0x19020 -d_course_toads_turnpike_dl_19030: - symbol: d_course_toads_turnpike_dl_19030 - type: gfx - offset: 0x19030 -d_course_toads_turnpike_dl_190E8: - symbol: d_course_toads_turnpike_dl_190E8 - type: gfx - offset: 0x190E8 -d_course_toads_turnpike_dl_19168: - symbol: d_course_toads_turnpike_dl_19168 - type: gfx - offset: 0x19168 -d_course_toads_turnpike_dl_192B0: - symbol: d_course_toads_turnpike_dl_192B0 - type: gfx - offset: 0x192B0 -d_course_toads_turnpike_dl_19390: - symbol: d_course_toads_turnpike_dl_19390 - type: gfx - offset: 0x19390 -d_course_toads_turnpike_dl_19450: - symbol: d_course_toads_turnpike_dl_19450 - type: gfx - offset: 0x19450 -d_course_toads_turnpike_dl_194E0: - symbol: d_course_toads_turnpike_dl_194E0 - type: gfx - offset: 0x194E0 -d_course_toads_turnpike_dl_19518: - symbol: d_course_toads_turnpike_dl_19518 - type: gfx - offset: 0x19518 -d_course_toads_turnpike_truck_model_lod1: - symbol: d_course_toads_turnpike_truck_model_lod1 - type: vtx - offset: 0x19528 - count: 16 -d_course_toads_turnpike_truck_unknown_model14: - symbol: d_course_toads_turnpike_truck_unknown_model14 - type: vtx - offset: 0x19628 - count: 16 -d_course_toads_turnpike_truck_unknown_model15: - symbol: d_course_toads_turnpike_truck_unknown_model15 - type: vtx - offset: 0x19728 - count: 20 -d_course_toads_turnpike_truck_unknown_model16: - symbol: d_course_toads_turnpike_truck_unknown_model16 - type: vtx - offset: 0x19868 - count: 12 -d_course_toads_turnpike_truck_unknown_model17: - symbol: d_course_toads_turnpike_truck_unknown_model17 - type: vtx - offset: 0x19928 - count: 12 -d_course_toads_turnpike_truck_unknown_model18: - symbol: d_course_toads_turnpike_truck_unknown_model18 - type: vtx - offset: 0x199E8 - count: 27 -d_course_toads_turnpike_truck_unknown_model19: - symbol: d_course_toads_turnpike_truck_unknown_model19 - type: vtx - offset: 0x19B98 - count: 18 -d_course_toads_turnpike_truck_unknown_model20: - symbol: d_course_toads_turnpike_truck_unknown_model20 - type: vtx - offset: 0x19CB8 - count: 4 -d_course_toads_turnpike_dl_19CF8: - symbol: d_course_toads_turnpike_dl_19CF8 - type: gfx - offset: 0x19CF8 -d_course_toads_turnpike_dl_19D68: - symbol: d_course_toads_turnpike_dl_19D68 - type: gfx - offset: 0x19D68 -d_course_toads_turnpike_dl_19DD8: - symbol: d_course_toads_turnpike_dl_19DD8 - type: gfx - offset: 0x19DD8 -d_course_toads_turnpike_dl_19DF0: - symbol: d_course_toads_turnpike_dl_19DF0 - type: gfx - offset: 0x19DF0 -d_course_toads_turnpike_dl_19E00: - symbol: d_course_toads_turnpike_dl_19E00 - type: gfx - offset: 0x19E00 -d_course_toads_turnpike_dl_19E38: - symbol: d_course_toads_turnpike_dl_19E38 - type: gfx - offset: 0x19E38 -d_course_toads_turnpike_dl_19EA0: - symbol: d_course_toads_turnpike_dl_19EA0 - type: gfx - offset: 0x19EA0 -d_course_toads_turnpike_dl_19F08: - symbol: d_course_toads_turnpike_dl_19F08 - type: gfx - offset: 0x19F08 -d_course_toads_turnpike_dl_1A040: - symbol: d_course_toads_turnpike_dl_1A040 - type: gfx - offset: 0x1A040 -d_course_toads_turnpike_dl_1A068: - symbol: d_course_toads_turnpike_dl_1A068 - type: gfx - offset: 0x1A068 -d_course_toads_turnpike_truck_model_lod2: - symbol: d_course_toads_turnpike_truck_model_lod2 - type: vtx - offset: 0x1A078 - count: 16 -d_course_toads_turnpike_truck_unknown_model21: - symbol: d_course_toads_turnpike_truck_unknown_model21 - type: vtx - offset: 0x1A178 - count: 4 -d_course_toads_turnpike_truck_unknown_model22: - symbol: d_course_toads_turnpike_truck_unknown_model22 - type: vtx - offset: 0x1A1B8 - count: 12 -d_course_toads_turnpike_truck_unknown_model23: - symbol: d_course_toads_turnpike_truck_unknown_model23 - type: vtx - offset: 0x1A278 - count: 20 -d_course_toads_turnpike_truck_unknown_model24: - symbol: d_course_toads_turnpike_truck_unknown_model24 - type: vtx - offset: 0x1A3B8 - count: 16 -d_course_toads_turnpike_dl_1A4B8: - symbol: d_course_toads_turnpike_dl_1A4B8 - type: gfx - offset: 0x1A4B8 -d_course_toads_turnpike_dl_1A528: - symbol: d_course_toads_turnpike_dl_1A528 - type: gfx - offset: 0x1A528 -d_course_toads_turnpike_dl_1A5E0: - symbol: d_course_toads_turnpike_dl_1A5E0 - type: gfx - offset: 0x1A5E0 -d_course_toads_turnpike_dl_1A5F8: - symbol: d_course_toads_turnpike_dl_1A5F8 - type: gfx - offset: 0x1A5F8 -d_course_toads_turnpike_dl_1A608: - symbol: d_course_toads_turnpike_dl_1A608 - type: gfx - offset: 0x1A608 -d_course_toads_turnpike_dl_1A640: - symbol: d_course_toads_turnpike_dl_1A640 - type: gfx - offset: 0x1A640 -d_course_toads_turnpike_dl_1A6B0: - symbol: d_course_toads_turnpike_dl_1A6B0 - type: gfx - offset: 0x1A6B0 -d_course_toads_turnpike_dl_1A6C8: - symbol: d_course_toads_turnpike_dl_1A6C8 - type: gfx - offset: 0x1A6C8 -d_course_toads_turnpike_bus_model_lod0: - symbol: d_course_toads_turnpike_bus_model_lod0 - type: vtx - offset: 0x1A6D8 - count: 16 -d_course_toads_turnpike_bus_unknown_model1: - symbol: d_course_toads_turnpike_bus_unknown_model1 - type: vtx - offset: 0x1A7D8 - count: 8 -d_course_toads_turnpike_bus_unknown_model2: - symbol: d_course_toads_turnpike_bus_unknown_model2 - type: vtx - offset: 0x1A858 - count: 8 -d_course_toads_turnpike_bus_unknown_model3: - symbol: d_course_toads_turnpike_bus_unknown_model3 - type: vtx - offset: 0x1A8D8 - count: 8 -d_course_toads_turnpike_bus_unknown_model4: - symbol: d_course_toads_turnpike_bus_unknown_model4 - type: vtx - offset: 0x1A958 - count: 10 -d_course_toads_turnpike_bus_unknown_model5: - symbol: d_course_toads_turnpike_bus_unknown_model5 - type: vtx - offset: 0x1A9F8 - count: 6 -d_course_toads_turnpike_bus_unknown_model6: - symbol: d_course_toads_turnpike_bus_unknown_model6 - type: vtx - offset: 0x1AA58 - count: 4 -d_course_toads_turnpike_bus_unknown_model7: - symbol: d_course_toads_turnpike_bus_unknown_model7 - type: vtx - offset: 0x1AA98 - count: 20 -d_course_toads_turnpike_bus_unknown_model8: - symbol: d_course_toads_turnpike_bus_unknown_model8 - type: vtx - offset: 0x1ABD8 - count: 21 -d_course_toads_turnpike_bus_unknown_model9: - symbol: d_course_toads_turnpike_bus_unknown_model9 - type: vtx - offset: 0x1AD28 - count: 8 -d_course_toads_turnpike_bus_unknown_model10: - symbol: d_course_toads_turnpike_bus_unknown_model10 - type: vtx - offset: 0x1ADA8 - count: 32 -d_course_toads_turnpike_bus_unknown_model11: - symbol: d_course_toads_turnpike_bus_unknown_model11 - type: vtx - offset: 0x1AFA8 - count: 32 -d_course_toads_turnpike_bus_unknown_model12: - symbol: d_course_toads_turnpike_bus_unknown_model12 - type: vtx - offset: 0x1B1A8 - count: 10 -d_course_toads_turnpike_bus_unknown_model13: - symbol: d_course_toads_turnpike_bus_unknown_model13 - type: vtx - offset: 0x1B248 - count: 8 -d_course_toads_turnpike_bus_unknown_model14: - symbol: d_course_toads_turnpike_bus_unknown_model14 - type: vtx - offset: 0x1B2C8 - count: 24 -d_course_toads_turnpike_bus_unknown_model15: - symbol: d_course_toads_turnpike_bus_unknown_model15 - type: vtx - offset: 0x1B448 - count: 24 -d_course_toads_turnpike_dl_1B5C8: - symbol: d_course_toads_turnpike_dl_1B5C8 - type: gfx - offset: 0x1B5C8 -d_course_toads_turnpike_dl_1B658: - symbol: d_course_toads_turnpike_dl_1B658 - type: gfx - offset: 0x1B658 -d_course_toads_turnpike_dl_1B6D8: - symbol: d_course_toads_turnpike_dl_1B6D8 - type: gfx - offset: 0x1B6D8 -d_course_toads_turnpike_dl_1B758: - symbol: d_course_toads_turnpike_dl_1B758 - type: gfx - offset: 0x1B758 -d_course_toads_turnpike_dl_1B778: - symbol: d_course_toads_turnpike_dl_1B778 - type: gfx - offset: 0x1B778 -d_course_toads_turnpike_dl_1B788: - symbol: d_course_toads_turnpike_dl_1B788 - type: gfx - offset: 0x1B788 -d_course_toads_turnpike_dl_1B810: - symbol: d_course_toads_turnpike_dl_1B810 - type: gfx - offset: 0x1B810 -d_course_toads_turnpike_dl_1B8A0: - symbol: d_course_toads_turnpike_dl_1B8A0 - type: gfx - offset: 0x1B8A0 -d_course_toads_turnpike_dl_1BC78: - symbol: d_course_toads_turnpike_dl_1BC78 - type: gfx - offset: 0x1BC78 -d_course_toads_turnpike_dl_1BD48: - symbol: d_course_toads_turnpike_dl_1BD48 - type: gfx - offset: 0x1BD48 -d_course_toads_turnpike_dl_1BE18: - symbol: d_course_toads_turnpike_dl_1BE18 - type: gfx - offset: 0x1BE18 -d_course_toads_turnpike_dl_1BE48: - symbol: d_course_toads_turnpike_dl_1BE48 - type: gfx - offset: 0x1BE48 -d_course_toads_turnpike_bus_model_lod1: - symbol: d_course_toads_turnpike_bus_model_lod1 - type: vtx - offset: 0x1BE58 - count: 8 -d_course_toads_turnpike_bus_unknown_model16: - symbol: d_course_toads_turnpike_bus_unknown_model16 - type: vtx - offset: 0x1BED8 - count: 8 -d_course_toads_turnpike_bus_unknown_model17: - symbol: d_course_toads_turnpike_bus_unknown_model17 - type: vtx - offset: 0x1BF58 - count: 8 -d_course_toads_turnpike_bus_unknown_model18: - symbol: d_course_toads_turnpike_bus_unknown_model18 - type: vtx - offset: 0x1BFD8 - count: 8 -d_course_toads_turnpike_bus_unknown_model19: - symbol: d_course_toads_turnpike_bus_unknown_model19 - type: vtx - offset: 0x1C058 - count: 4 -d_course_toads_turnpike_bus_unknown_model20: - symbol: d_course_toads_turnpike_bus_unknown_model20 - type: vtx - offset: 0x1C098 - count: 4 -d_course_toads_turnpike_bus_unknown_model21: - symbol: d_course_toads_turnpike_bus_unknown_model21 - type: vtx - offset: 0x1C0D8 - count: 4 -d_course_toads_turnpike_bus_unknown_model22: - symbol: d_course_toads_turnpike_bus_unknown_model22 - type: vtx - offset: 0x1C118 - count: 6 -d_course_toads_turnpike_bus_unknown_model23: - symbol: d_course_toads_turnpike_bus_unknown_model23 - type: vtx - offset: 0x1C178 - count: 32 -d_course_toads_turnpike_bus_unknown_model24: - symbol: d_course_toads_turnpike_bus_unknown_model24 - type: vtx - offset: 0x1C378 - count: 31 -d_course_toads_turnpike_bus_unknown_model25: - symbol: d_course_toads_turnpike_bus_unknown_model25 - type: vtx - offset: 0x1C568 - count: 12 -d_course_toads_turnpike_dl_1C628: - symbol: d_course_toads_turnpike_dl_1C628 - type: gfx - offset: 0x1C628 -d_course_toads_turnpike_dl_1C688: - symbol: d_course_toads_turnpike_dl_1C688 - type: gfx - offset: 0x1C688 -d_course_toads_turnpike_dl_1C6E8: - symbol: d_course_toads_turnpike_dl_1C6E8 - type: gfx - offset: 0x1C6E8 -d_course_toads_turnpike_dl_1C700: - symbol: d_course_toads_turnpike_dl_1C700 - type: gfx - offset: 0x1C700 -d_course_toads_turnpike_dl_1C710: - symbol: d_course_toads_turnpike_dl_1C710 - type: gfx - offset: 0x1C710 -d_course_toads_turnpike_dl_1C770: - symbol: d_course_toads_turnpike_dl_1C770 - type: gfx - offset: 0x1C770 -d_course_toads_turnpike_dl_1C7D0: - symbol: d_course_toads_turnpike_dl_1C7D0 - type: gfx - offset: 0x1C7D0 -d_course_toads_turnpike_dl_1CA88: - symbol: d_course_toads_turnpike_dl_1CA88 - type: gfx - offset: 0x1CA88 -d_course_toads_turnpike_dl_1CAA8: - symbol: d_course_toads_turnpike_dl_1CAA8 - type: gfx - offset: 0x1CAA8 -d_course_toads_turnpike_bus_model_lod2: - symbol: d_course_toads_turnpike_bus_model_lod2 - type: vtx - offset: 0x1CAB8 - count: 8 -d_course_toads_turnpike_bus_unknown_model26: - symbol: d_course_toads_turnpike_bus_unknown_model26 - type: vtx - offset: 0x1CB38 - count: 8 -d_course_toads_turnpike_bus_unknown_model27: - symbol: d_course_toads_turnpike_bus_unknown_model27 - type: vtx - offset: 0x1CBB8 - count: 4 -d_course_toads_turnpike_bus_unknown_model28: - symbol: d_course_toads_turnpike_bus_unknown_model28 - type: vtx - offset: 0x1CBF8 - count: 4 -d_course_toads_turnpike_bus_unknown_model29: - symbol: d_course_toads_turnpike_bus_unknown_model29 - type: vtx - offset: 0x1CC38 - count: 4 -d_course_toads_turnpike_bus_unknown_model30: - symbol: d_course_toads_turnpike_bus_unknown_model30 - type: vtx - offset: 0x1CC78 - count: 8 -d_course_toads_turnpike_bus_unknown_model31: - symbol: d_course_toads_turnpike_bus_unknown_model31 - type: vtx - offset: 0x1CCF8 - count: 10 -d_course_toads_turnpike_dl_1CD98: - symbol: d_course_toads_turnpike_dl_1CD98 - type: gfx - offset: 0x1CD98 -d_course_toads_turnpike_dl_1CDF8: - symbol: d_course_toads_turnpike_dl_1CDF8 - type: gfx - offset: 0x1CDF8 -d_course_toads_turnpike_dl_1CE58: - symbol: d_course_toads_turnpike_dl_1CE58 - type: gfx - offset: 0x1CE58 -d_course_toads_turnpike_dl_1CE70: - symbol: d_course_toads_turnpike_dl_1CE70 - type: gfx - offset: 0x1CE70 -d_course_toads_turnpike_dl_1CE80: - symbol: d_course_toads_turnpike_dl_1CE80 - type: gfx - offset: 0x1CE80 -d_course_toads_turnpike_dl_1D008: - symbol: d_course_toads_turnpike_dl_1D008 - type: gfx - offset: 0x1D008 -d_course_toads_turnpike_dl_1D018: - symbol: d_course_toads_turnpike_dl_1D018 - type: gfx - offset: 0x1D018 -d_course_toads_turnpike_tanker_truck_model_lod0: - symbol: d_course_toads_turnpike_tanker_truck_model_lod0 - type: vtx - offset: 0x1D028 - count: 16 -d_course_toads_turnpike_tanker_truck_unknown_model1: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model1 - type: vtx - offset: 0x1D128 - count: 16 -d_course_toads_turnpike_tanker_truck_unknown_model2: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model2 - type: vtx - offset: 0x1D228 - count: 16 -d_course_toads_turnpike_tanker_truck_unknown_model3: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model3 - type: vtx - offset: 0x1D328 - count: 20 -d_course_toads_turnpike_tanker_truck_unknown_model4: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model4 - type: vtx - offset: 0x1D468 - count: 20 -d_course_toads_turnpike_tanker_truck_unknown_model5: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model5 - type: vtx - offset: 0x1D5A8 - count: 32 -d_course_toads_turnpike_tanker_truck_unknown_model6: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model6 - type: vtx - offset: 0x1D7A8 - count: 24 -d_course_toads_turnpike_tanker_truck_unknown_model7: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model7 - type: vtx - offset: 0x1D928 - count: 18 -d_course_toads_turnpike_tanker_truck_unknown_model8: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model8 - type: vtx - offset: 0x1DA48 - count: 12 -d_course_toads_turnpike_tanker_truck_unknown_model9: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model9 - type: vtx - offset: 0x1DB08 - count: 32 -d_course_toads_turnpike_tanker_truck_unknown_model10: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model10 - type: vtx - offset: 0x1DD08 - count: 4 -d_course_toads_turnpike_tanker_truck_unknown_model11: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model11 - type: vtx - offset: 0x1DD48 - count: 12 -d_course_toads_turnpike_tanker_truck_unknown_model12: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model12 - type: vtx - offset: 0x1DE08 - count: 24 -d_course_toads_turnpike_tanker_truck_unknown_model13: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model13 - type: vtx - offset: 0x1DF88 - count: 24 -d_course_toads_turnpike_tanker_truck_unknown_model14: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model14 - type: vtx - offset: 0x1E108 - count: 24 -d_course_toads_turnpike_dl_1E288: - symbol: d_course_toads_turnpike_dl_1E288 - type: gfx - offset: 0x1E288 -d_course_toads_turnpike_dl_1E318: - symbol: d_course_toads_turnpike_dl_1E318 - type: gfx - offset: 0x1E318 -d_course_toads_turnpike_dl_1E3A8: - symbol: d_course_toads_turnpike_dl_1E3A8 - type: gfx - offset: 0x1E3A8 -d_course_toads_turnpike_dl_1E438: - symbol: d_course_toads_turnpike_dl_1E438 - type: gfx - offset: 0x1E438 -d_course_toads_turnpike_dl_1E458: - symbol: d_course_toads_turnpike_dl_1E458 - type: gfx - offset: 0x1E458 -d_course_toads_turnpike_dl_1E468: - symbol: d_course_toads_turnpike_dl_1E468 - type: gfx - offset: 0x1E468 -d_course_toads_turnpike_dl_1E508: - symbol: d_course_toads_turnpike_dl_1E508 - type: gfx - offset: 0x1E508 -d_course_toads_turnpike_dl_1E810: - symbol: d_course_toads_turnpike_dl_1E810 - type: gfx - offset: 0x1E810 -d_course_toads_turnpike_dl_1E8A0: - symbol: d_course_toads_turnpike_dl_1E8A0 - type: gfx - offset: 0x1E8A0 -d_course_toads_turnpike_dl_1E970: - symbol: d_course_toads_turnpike_dl_1E970 - type: gfx - offset: 0x1E970 -d_course_toads_turnpike_dl_1EA40: - symbol: d_course_toads_turnpike_dl_1EA40 - type: gfx - offset: 0x1EA40 -d_course_toads_turnpike_dl_1EB10: - symbol: d_course_toads_turnpike_dl_1EB10 - type: gfx - offset: 0x1EB10 -d_course_toads_turnpike_dl_1EB48: - symbol: d_course_toads_turnpike_dl_1EB48 - type: gfx - offset: 0x1EB48 -d_course_toads_turnpike_tanker_truck_model_lod1: - symbol: d_course_toads_turnpike_tanker_truck_model_lod1 - type: vtx - offset: 0x1EB58 - count: 8 -d_course_toads_turnpike_tanker_truck_unknown_model15: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model15 - type: vtx - offset: 0x1EBD8 - count: 4 -d_course_toads_turnpike_tanker_truck_unknown_model16: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model16 - type: vtx - offset: 0x1EC18 - count: 8 -d_course_toads_turnpike_tanker_truck_unknown_model17: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model17 - type: vtx - offset: 0x1EC98 - count: 4 -d_course_toads_turnpike_tanker_truck_unknown_model18: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model18 - type: vtx - offset: 0x1ECD8 - count: 16 -d_course_toads_turnpike_tanker_truck_unknown_model19: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model19 - type: vtx - offset: 0x1EDD8 - count: 32 -d_course_toads_turnpike_tanker_truck_unknown_model20: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model20 - type: vtx - offset: 0x1EFD8 - count: 24 -d_course_toads_turnpike_tanker_truck_unknown_model21: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model21 - type: vtx - offset: 0x1F158 - count: 18 -d_course_toads_turnpike_tanker_truck_unknown_model22: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model22 - type: vtx - offset: 0x1F278 - count: 12 -d_course_toads_turnpike_tanker_truck_unknown_model23: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model23 - type: vtx - offset: 0x1F338 - count: 30 -d_course_toads_turnpike_tanker_truck_unknown_model24: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model24 - type: vtx - offset: 0x1F518 - count: 4 -d_course_toads_turnpike_tanker_truck_unknown_model25: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model25 - type: vtx - offset: 0x1F558 - count: 8 -d_course_toads_turnpike_tanker_truck_unknown_model26: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model26 - type: vtx - offset: 0x1F5D8 - count: 4 -d_course_toads_turnpike_tanker_truck_unknown_model27: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model27 - type: vtx - offset: 0x1F618 - count: 8 -d_course_toads_turnpike_tanker_truck_unknown_model28: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model28 - type: vtx - offset: 0x1F698 - count: 4 -d_course_toads_turnpike_tanker_truck_unknown_model29: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model29 - type: vtx - offset: 0x1F6D8 - count: 12 -d_course_toads_turnpike_tanker_truck_unknown_model30: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model30 - type: vtx - offset: 0x1F798 - count: 4 -d_course_toads_turnpike_dl_1F7D8: - symbol: d_course_toads_turnpike_dl_1F7D8 - type: gfx - offset: 0x1F7D8 -d_course_toads_turnpike_dl_1F850: - symbol: d_course_toads_turnpike_dl_1F850 - type: gfx - offset: 0x1F850 -d_course_toads_turnpike_dl_1F8C0: - symbol: d_course_toads_turnpike_dl_1F8C0 - type: gfx - offset: 0x1F8C0 -d_course_toads_turnpike_dl_1F938: - symbol: d_course_toads_turnpike_dl_1F938 - type: gfx - offset: 0x1F938 -d_course_toads_turnpike_dl_1F9A8: - symbol: d_course_toads_turnpike_dl_1F9A8 - type: gfx - offset: 0x1F9A8 -d_course_toads_turnpike_dl_1F9D0: - symbol: d_course_toads_turnpike_dl_1F9D0 - type: gfx - offset: 0x1F9D0 -d_course_toads_turnpike_dl_1F9E0: - symbol: d_course_toads_turnpike_dl_1F9E0 - type: gfx - offset: 0x1F9E0 -d_course_toads_turnpike_dl_1FCD8: - symbol: d_course_toads_turnpike_dl_1FCD8 - type: gfx - offset: 0x1FCD8 -d_course_toads_turnpike_dl_1FD58: - symbol: d_course_toads_turnpike_dl_1FD58 - type: gfx - offset: 0x1FD58 -d_course_toads_turnpike_dl_1FDD0: - symbol: d_course_toads_turnpike_dl_1FDD0 - type: gfx - offset: 0x1FDD0 -d_course_toads_turnpike_dl_1FE50: - symbol: d_course_toads_turnpike_dl_1FE50 - type: gfx - offset: 0x1FE50 -d_course_toads_turnpike_dl_1FEC8: - symbol: d_course_toads_turnpike_dl_1FEC8 - type: gfx - offset: 0x1FEC8 -d_course_toads_turnpike_dl_1FF50: - symbol: d_course_toads_turnpike_dl_1FF50 - type: gfx - offset: 0x1FF50 -d_course_toads_turnpike_dl_1FFC8: - symbol: d_course_toads_turnpike_dl_1FFC8 - type: gfx - offset: 0x1FFC8 -d_course_toads_turnpike_dl_20008: - symbol: d_course_toads_turnpike_dl_20008 - type: gfx - offset: 0x20008 -d_course_toads_turnpike_tanker_truck_model_lod2: - symbol: d_course_toads_turnpike_tanker_truck_model_lod2 - type: vtx - offset: 0x20018 - count: 14 -d_course_toads_turnpike_tanker_truck_unknown_model31: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model31 - type: vtx - offset: 0x200F8 - count: 12 -d_course_toads_turnpike_tanker_truck_unknown_model32: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model32 - type: vtx - offset: 0x201B8 - count: 21 -d_course_toads_turnpike_tanker_truck_unknown_model33: - symbol: d_course_toads_turnpike_tanker_truck_unknown_model33 - type: vtx - offset: 0x20308 - count: 4 -d_course_toads_turnpike_dl_20348: - symbol: d_course_toads_turnpike_dl_20348 - type: gfx - offset: 0x20348 -d_course_toads_turnpike_dl_20450: - symbol: d_course_toads_turnpike_dl_20450 - type: gfx - offset: 0x20450 -d_course_toads_turnpike_dl_204F8: - symbol: d_course_toads_turnpike_dl_204F8 - type: gfx - offset: 0x204F8 -d_course_toads_turnpike_dl_20510: - symbol: d_course_toads_turnpike_dl_20510 - type: gfx - offset: 0x20510 -d_course_toads_turnpike_dl_20520: - symbol: d_course_toads_turnpike_dl_20520 - type: gfx - offset: 0x20520 -d_course_toads_turnpike_dl_20598: - symbol: d_course_toads_turnpike_dl_20598 - type: gfx - offset: 0x20598 -d_course_toads_turnpike_dl_205A8: - symbol: d_course_toads_turnpike_dl_205A8 - type: gfx - offset: 0x205A8 -d_course_toads_turnpike_car_model_lod0: - symbol: d_course_toads_turnpike_car_model_lod0 - type: vtx - offset: 0x205B8 - count: 16 -d_course_toads_turnpike_car_unknown_model1: - symbol: d_course_toads_turnpike_car_unknown_model1 - type: vtx - offset: 0x206B8 - count: 16 -d_course_toads_turnpike_car_unknown_model2: - symbol: d_course_toads_turnpike_car_unknown_model2 - type: vtx - offset: 0x207B8 - count: 10 -d_course_toads_turnpike_car_unknown_model3: - symbol: d_course_toads_turnpike_car_unknown_model3 - type: vtx - offset: 0x20858 - count: 10 -d_course_toads_turnpike_car_unknown_model4: - symbol: d_course_toads_turnpike_car_unknown_model4 - type: vtx - offset: 0x208F8 - count: 24 -d_course_toads_turnpike_car_unknown_model5: - symbol: d_course_toads_turnpike_car_unknown_model5 - type: vtx - offset: 0x20A78 - count: 8 -d_course_toads_turnpike_car_unknown_model6: - symbol: d_course_toads_turnpike_car_unknown_model6 - type: vtx - offset: 0x20AF8 - count: 4 -d_course_toads_turnpike_car_unknown_model7: - symbol: d_course_toads_turnpike_car_unknown_model7 - type: vtx - offset: 0x20B38 - count: 32 -d_course_toads_turnpike_car_unknown_model8: - symbol: d_course_toads_turnpike_car_unknown_model8 - type: vtx - offset: 0x20D38 - count: 32 -d_course_toads_turnpike_car_unknown_model9: - symbol: d_course_toads_turnpike_car_unknown_model9 - type: vtx - offset: 0x20F38 - count: 32 -d_course_toads_turnpike_car_unknown_model10: - symbol: d_course_toads_turnpike_car_unknown_model10 - type: vtx - offset: 0x21138 - count: 23 -d_course_toads_turnpike_car_unknown_model11: - symbol: d_course_toads_turnpike_car_unknown_model11 - type: vtx - offset: 0x212A8 - count: 10 -d_course_toads_turnpike_car_unknown_model12: - symbol: d_course_toads_turnpike_car_unknown_model12 - type: vtx - offset: 0x21348 - count: 12 -d_course_toads_turnpike_car_unknown_model13: - symbol: d_course_toads_turnpike_car_unknown_model13 - type: vtx - offset: 0x21408 - count: 12 -d_course_toads_turnpike_car_unknown_model14: - symbol: d_course_toads_turnpike_car_unknown_model14 - type: vtx - offset: 0x214C8 - count: 12 -d_course_toads_turnpike_car_unknown_model15: - symbol: d_course_toads_turnpike_car_unknown_model15 - type: vtx - offset: 0x21588 - count: 12 -d_course_toads_turnpike_dl_21648: - symbol: d_course_toads_turnpike_dl_21648 - type: gfx - offset: 0x21648 -d_course_toads_turnpike_dl_216D8: - symbol: d_course_toads_turnpike_dl_216D8 - type: gfx - offset: 0x216D8 -d_course_toads_turnpike_dl_21768: - symbol: d_course_toads_turnpike_dl_21768 - type: gfx - offset: 0x21768 -d_course_toads_turnpike_dl_21780: - symbol: d_course_toads_turnpike_dl_21780 - type: gfx - offset: 0x21780 -d_course_toads_turnpike_dl_21790: - symbol: d_course_toads_turnpike_dl_21790 - type: gfx - offset: 0x21790 -d_course_toads_turnpike_dl_21820: - symbol: d_course_toads_turnpike_dl_21820 - type: gfx - offset: 0x21820 -d_course_toads_turnpike_dl_218B0: - symbol: d_course_toads_turnpike_dl_218B0 - type: gfx - offset: 0x218B0 -d_course_toads_turnpike_dl_21950: - symbol: d_course_toads_turnpike_dl_21950 - type: gfx - offset: 0x21950 -d_course_toads_turnpike_dl_21A28: - symbol: d_course_toads_turnpike_dl_21A28 - type: gfx - offset: 0x21A28 -d_course_toads_turnpike_dl_21C78: - symbol: d_course_toads_turnpike_dl_21C78 - type: gfx - offset: 0x21C78 -d_course_toads_turnpike_dl_21CD0: - symbol: d_course_toads_turnpike_dl_21CD0 - type: gfx - offset: 0x21CD0 -d_course_toads_turnpike_dl_21D28: - symbol: d_course_toads_turnpike_dl_21D28 - type: gfx - offset: 0x21D28 -d_course_toads_turnpike_dl_21D80: - symbol: d_course_toads_turnpike_dl_21D80 - type: gfx - offset: 0x21D80 -d_course_toads_turnpike_dl_21DD8: - symbol: d_course_toads_turnpike_dl_21DD8 - type: gfx - offset: 0x21DD8 -d_course_toads_turnpike_dl_21E28: - symbol: d_course_toads_turnpike_dl_21E28 - type: gfx - offset: 0x21E28 -d_course_toads_turnpike_car_model_lod1: - symbol: d_course_toads_turnpike_car_model_lod1 - type: vtx - offset: 0x21E38 - count: 16 -d_course_toads_turnpike_car_unknown_model16: - symbol: d_course_toads_turnpike_car_unknown_model16 - type: vtx - offset: 0x21F38 - count: 16 -d_course_toads_turnpike_car_unknown_model17: - symbol: d_course_toads_turnpike_car_unknown_model17 - type: vtx - offset: 0x22038 - count: 16 -d_course_toads_turnpike_car_unknown_model18: - symbol: d_course_toads_turnpike_car_unknown_model18 - type: vtx - offset: 0x22138 - count: 8 -d_course_toads_turnpike_car_unknown_model19: - symbol: d_course_toads_turnpike_car_unknown_model19 - type: vtx - offset: 0x221B8 - count: 8 -d_course_toads_turnpike_car_unknown_model20: - symbol: d_course_toads_turnpike_car_unknown_model20 - type: vtx - offset: 0x22238 - count: 24 -d_course_toads_turnpike_car_unknown_model21: - symbol: d_course_toads_turnpike_car_unknown_model21 - type: vtx - offset: 0x223B8 - count: 8 -d_course_toads_turnpike_car_unknown_model22: - symbol: d_course_toads_turnpike_car_unknown_model22 - type: vtx - offset: 0x22438 - count: 4 -d_course_toads_turnpike_car_unknown_model23: - symbol: d_course_toads_turnpike_car_unknown_model23 - type: vtx - offset: 0x22478 - count: 31 -d_course_toads_turnpike_car_unknown_model24: - symbol: d_course_toads_turnpike_car_unknown_model24 - type: vtx - offset: 0x22668 - count: 32 -d_course_toads_turnpike_car_unknown_model25: - symbol: d_course_toads_turnpike_car_unknown_model25 - type: vtx - offset: 0x22868 - count: 22 -d_course_toads_turnpike_car_unknown_model26: - symbol: d_course_toads_turnpike_car_unknown_model26 - type: vtx - offset: 0x229C8 - count: 10 -d_course_toads_turnpike_dl_22A68: - symbol: d_course_toads_turnpike_dl_22A68 - type: gfx - offset: 0x22A68 -d_course_toads_turnpike_dl_22AF8: - symbol: d_course_toads_turnpike_dl_22AF8 - type: gfx - offset: 0x22AF8 -d_course_toads_turnpike_dl_22B88: - symbol: d_course_toads_turnpike_dl_22B88 - type: gfx - offset: 0x22B88 -d_course_toads_turnpike_dl_22BA0: - symbol: d_course_toads_turnpike_dl_22BA0 - type: gfx - offset: 0x22BA0 -d_course_toads_turnpike_dl_22BB0: - symbol: d_course_toads_turnpike_dl_22BB0 - type: gfx - offset: 0x22BB0 -d_course_toads_turnpike_dl_22C50: - symbol: d_course_toads_turnpike_dl_22C50 - type: gfx - offset: 0x22C50 -d_course_toads_turnpike_dl_22C88: - symbol: d_course_toads_turnpike_dl_22C88 - type: gfx - offset: 0x22C88 -d_course_toads_turnpike_dl_22CC0: - symbol: d_course_toads_turnpike_dl_22CC0 - type: gfx - offset: 0x22CC0 -d_course_toads_turnpike_dl_22D60: - symbol: d_course_toads_turnpike_dl_22D60 - type: gfx - offset: 0x22D60 -d_course_toads_turnpike_dl_22E38: - symbol: d_course_toads_turnpike_dl_22E38 - type: gfx - offset: 0x22E38 -d_course_toads_turnpike_dl_23040: - symbol: d_course_toads_turnpike_dl_23040 - type: gfx - offset: 0x23040 -d_course_toads_turnpike_dl_23078: - symbol: d_course_toads_turnpike_dl_23078 - type: gfx - offset: 0x23078 -d_course_toads_turnpike_car_model_lod2: - symbol: d_course_toads_turnpike_car_model_lod2 - type: vtx - offset: 0x23088 - count: 8 -d_course_toads_turnpike_car_unknown_model27: - symbol: d_course_toads_turnpike_car_unknown_model27 - type: vtx - offset: 0x23108 - count: 8 -d_course_toads_turnpike_car_unknown_model28: - symbol: d_course_toads_turnpike_car_unknown_model28 - type: vtx - offset: 0x23188 - count: 4 -d_course_toads_turnpike_car_unknown_model29: - symbol: d_course_toads_turnpike_car_unknown_model29 - type: vtx - offset: 0x231C8 - count: 16 -d_course_toads_turnpike_car_unknown_model30: - symbol: d_course_toads_turnpike_car_unknown_model30 - type: vtx - offset: 0x232C8 - count: 8 -d_course_toads_turnpike_car_unknown_model31: - symbol: d_course_toads_turnpike_car_unknown_model31 - type: vtx - offset: 0x23348 - count: 27 -d_course_toads_turnpike_car_unknown_model32: - symbol: d_course_toads_turnpike_car_unknown_model32 - type: vtx - offset: 0x234F8 - count: 4 -d_course_toads_turnpike_dl_23538: - symbol: d_course_toads_turnpike_dl_23538 - type: gfx - offset: 0x23538 -d_course_toads_turnpike_dl_23600: - symbol: d_course_toads_turnpike_dl_23600 - type: gfx - offset: 0x23600 -d_course_toads_turnpike_dl_23678: - symbol: d_course_toads_turnpike_dl_23678 - type: gfx - offset: 0x23678 -d_course_toads_turnpike_dl_237D8: - symbol: d_course_toads_turnpike_dl_237D8 - type: gfx - offset: 0x237D8 -d_course_toads_turnpike_dl_237F8: - symbol: d_course_toads_turnpike_dl_237F8 - type: gfx - offset: 0x237F8 -d_course_toads_turnpike_dl_23808: - symbol: d_course_toads_turnpike_dl_23808 - type: gfx - offset: 0x23808 -d_course_toads_turnpike_dl_23838: - symbol: d_course_toads_turnpike_dl_23838 - type: gfx - offset: 0x23838 -d_course_toads_turnpike_dl_23848: - symbol: d_course_toads_turnpike_dl_23848 - type: gfx - offset: 0x23848 -d_course_toads_turnpike_dl_23858: - symbol: d_course_toads_turnpike_dl_23858 - type: gfx - offset: 0x23858 -d_course_toads_turnpike_dl_238A0: - symbol: d_course_toads_turnpike_dl_238A0 - type: gfx - offset: 0x238A0 -d_course_toads_turnpike_dl_238E8: - symbol: d_course_toads_turnpike_dl_238E8 - type: gfx - offset: 0x238E8 -d_course_toads_turnpike_dl_23930: - symbol: d_course_toads_turnpike_dl_23930 - type: gfx - offset: 0x23930 -d_course_toads_turnpike_item_box_spawns: - symbol: d_course_toads_turnpike_item_box_spawns - type: mk64:spawn_data - offset: 0x23AE0 - count: 17 -d_course_toads_turnpike_addr: - symbol: d_course_toads_turnpike_addr - type: mk64:track_sections - offset: 0x23B68 - count: 23 diff --git a/yamls/us/toads_turnpike_displaylists.yml b/yamls/us/toads_turnpike_displaylists.yml deleted file mode 100644 index 3bcf58434..000000000 --- a/yamls/us/toads_turnpike_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x925F50 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_toads_turnpike_packed_dls: - symbol: d_course_toads_turnpike_packed_dls - type: blob - offset: 0x925F50 - size: 0x2D16 diff --git a/yamls/us/toads_turnpike_offsets.yml b/yamls/us/toads_turnpike_offsets.yml deleted file mode 100644 index 0498ade7f..000000000 --- a/yamls/us/toads_turnpike_offsets.yml +++ /dev/null @@ -1,65 +0,0 @@ -:config: - segments: - - [0x09, 0x88E8D0] - - [0x06, 0x857E80] - - [0x0D, 0x132B50] - external_files: - - "yamls/us/common_data.yml" - - "yamls/us/toads_turnpike_data.yml" - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -toads_turnpike_dl_0: - symbol: toads_turnpike_dl_0 - type: gfx - offset: 0x140 -toads_turnpike_dl_1: - symbol: toads_turnpike_dl_1 - type: gfx - offset: 0x178 -toads_turnpike_dl_2: - symbol: toads_turnpike_dl_2 - type: gfx - offset: 0x1B0 -toads_turnpike_dl_3: - symbol: toads_turnpike_dl_3 - type: gfx - offset: 0x1F0 -toads_turnpike_dl_4: - symbol: toads_turnpike_dl_4 - type: gfx - offset: 0x228 -toads_turnpike_dl_5: - symbol: toads_turnpike_dl_5 - type: gfx - offset: 0x260 -toads_turnpike_dl_6: - symbol: toads_turnpike_dl_6 - type: gfx - offset: 0x2A0 -toads_turnpike_dl_7: - symbol: toads_turnpike_dl_7 - type: gfx - offset: 0x2D8 -toads_turnpike_dl_8: - symbol: toads_turnpike_dl_8 - type: gfx - offset: 0x310 -toads_turnpike_dl_9: - symbol: toads_turnpike_dl_9 - type: gfx - offset: 0x350 -toads_turnpike_dl_10: - symbol: toads_turnpike_dl_10 - type: gfx - offset: 0x388 -toads_turnpike_dl_11: - symbol: toads_turnpike_dl_11 - type: gfx - offset: 0x3C0 - \ No newline at end of file diff --git a/yamls/us/toads_turnpike_vertices.yml b/yamls/us/toads_turnpike_vertices.yml deleted file mode 100644 index 4508a9fc9..000000000 --- a/yamls/us/toads_turnpike_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x91B980] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_toads_turnpike_vertex: - symbol: d_course_toads_turnpike_vertex - type: mk64:course_vtx - count: 6359 - offset: 0x0 diff --git a/yamls/us/wario_kart.yml b/yamls/us/wario_kart.yml deleted file mode 100644 index a4fbecc69..000000000 --- a/yamls/us/wario_kart.yml +++ /dev/null @@ -1,12803 +0,0 @@ -:config: - segments: - - [0x0F, 0x39E0C0] - no_compression: true - header: - code: - - '#include ' - - '#include ' - - '#include ' - header: - - '#include ' - - '#include ' - tables: - wario_kart_wheels: - range: [0x78F9C, 0x9D11C] - mode: APPEND -wario_kart_frame000: - symbol: gKartWario000 - type: texture - offset: 0x0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame001: - symbol: gKartWario001 - type: texture - offset: 0x54C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_001_wheel_0 -wario_kart_frame002: - symbol: gKartWario002 - type: texture - offset: 0xAB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_002_wheel_0 -wario_kart_frame003: - symbol: gKartWario003 - type: texture - offset: 0x1004 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_003_wheel_0 -wario_kart_frame004: - symbol: gKartWario004 - type: texture - offset: 0x1558 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_004_wheel_0 -wario_kart_frame005: - symbol: gKartWario005 - type: texture - offset: 0x1AE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_005_wheel_0 -wario_kart_frame006: - symbol: gKartWario006 - type: texture - offset: 0x2060 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_006_wheel_0 -wario_kart_frame007: - symbol: gKartWario007 - type: texture - offset: 0x260C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_007_wheel_0 -wario_kart_frame008: - symbol: gKartWario008 - type: texture - offset: 0x2BB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_008_wheel_0 -wario_kart_frame009: - symbol: gKartWario009 - type: texture - offset: 0x3164 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_009_wheel_0 -wario_kart_frame010: - symbol: gKartWario010 - type: texture - offset: 0x3724 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_010_wheel_0 -wario_kart_frame011: - symbol: gKartWario011 - type: texture - offset: 0x3CF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_011_wheel_0 -wario_kart_frame012: - symbol: gKartWario012 - type: texture - offset: 0x42CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_012_wheel_0 -wario_kart_frame013: - symbol: gKartWario013 - type: texture - offset: 0x48C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_013_wheel_0 -wario_kart_frame014: - symbol: gKartWario014 - type: texture - offset: 0x4EB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_014_wheel_0 -wario_kart_frame015: - symbol: gKartWario015 - type: texture - offset: 0x54B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_015_wheel_0 -wario_kart_frame016: - symbol: gKartWario016 - type: texture - offset: 0x5AC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_016_wheel_0 -wario_kart_frame017: - symbol: gKartWario017 - type: texture - offset: 0x60E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_017_wheel_0 -wario_kart_frame018: - symbol: gKartWario018 - type: texture - offset: 0x66F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_018_wheel_0 -wario_kart_frame019: - symbol: gKartWario019 - type: texture - offset: 0x6D24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_019_wheel_0 -wario_kart_frame020: - symbol: gKartWario020 - type: texture - offset: 0x7350 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_020_wheel_0 -wario_kart_frame021: - symbol: gKartWario021 - type: texture - offset: 0x7974 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_021_wheel_0 -wario_kart_frame022: - symbol: gKartWario022 - type: texture - offset: 0x7EC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_022_wheel_0 -wario_kart_frame023: - symbol: gKartWario023 - type: texture - offset: 0x8430 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_023_wheel_0 -wario_kart_frame024: - symbol: gKartWario024 - type: texture - offset: 0x89B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_024_wheel_0 -wario_kart_frame025: - symbol: gKartWario025 - type: texture - offset: 0x8F50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_025_wheel_0 -wario_kart_frame026: - symbol: gKartWario026 - type: texture - offset: 0x94C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_026_wheel_0 -wario_kart_frame027: - symbol: gKartWario027 - type: texture - offset: 0x9A60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_027_wheel_0 -wario_kart_frame028: - symbol: gKartWario028 - type: texture - offset: 0x9FFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_028_wheel_0 -wario_kart_frame029: - symbol: gKartWario029 - type: texture - offset: 0xA5BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_029_wheel_0 -wario_kart_frame030: - symbol: gKartWario030 - type: texture - offset: 0xAB78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_030_wheel_0 -wario_kart_frame031: - symbol: gKartWario031 - type: texture - offset: 0xB160 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_031_wheel_0 -wario_kart_frame032: - symbol: gKartWario032 - type: texture - offset: 0xB740 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_032_wheel_0 -wario_kart_frame033: - symbol: gKartWario033 - type: texture - offset: 0xBD18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_033_wheel_0 -wario_kart_frame034: - symbol: gKartWario034 - type: texture - offset: 0xC31C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_034_wheel_0 -wario_kart_frame035: - symbol: gKartWario035 - type: texture - offset: 0xC934 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_035_wheel_0 -wario_kart_frame036: - symbol: gKartWario036 - type: texture - offset: 0xCF40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_036_wheel_0 -wario_kart_frame037: - symbol: gKartWario037 - type: texture - offset: 0xD548 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_037_wheel_0 -wario_kart_frame038: - symbol: gKartWario038 - type: texture - offset: 0xDB74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_038_wheel_0 -wario_kart_frame039: - symbol: gKartWario039 - type: texture - offset: 0xE198 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_039_wheel_0 -wario_kart_frame040: - symbol: gKartWario040 - type: texture - offset: 0xE7BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_040_wheel_0 -wario_kart_frame041: - symbol: gKartWario041 - type: texture - offset: 0xEDF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_041_wheel_0 -wario_kart_frame042: - symbol: gKartWario042 - type: texture - offset: 0xF448 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_042_wheel_0 -wario_kart_frame043: - symbol: gKartWario043 - type: texture - offset: 0xF9B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_043_wheel_0 -wario_kart_frame044: - symbol: gKartWario044 - type: texture - offset: 0xFF34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_044_wheel_0 -wario_kart_frame045: - symbol: gKartWario045 - type: texture - offset: 0x104C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_045_wheel_0 -wario_kart_frame046: - symbol: gKartWario046 - type: texture - offset: 0x10A5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_046_wheel_0 -wario_kart_frame047: - symbol: gKartWario047 - type: texture - offset: 0x10FF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_047_wheel_0 -wario_kart_frame048: - symbol: gKartWario048 - type: texture - offset: 0x11588 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_048_wheel_0 -wario_kart_frame049: - symbol: gKartWario049 - type: texture - offset: 0x11B48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_049_wheel_0 -wario_kart_frame050: - symbol: gKartWario050 - type: texture - offset: 0x12128 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_050_wheel_0 -wario_kart_frame051: - symbol: gKartWario051 - type: texture - offset: 0x126FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_051_wheel_0 -wario_kart_frame052: - symbol: gKartWario052 - type: texture - offset: 0x12CEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_052_wheel_0 -wario_kart_frame053: - symbol: gKartWario053 - type: texture - offset: 0x132C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_053_wheel_0 -wario_kart_frame054: - symbol: gKartWario054 - type: texture - offset: 0x138BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_054_wheel_0 -wario_kart_frame055: - symbol: gKartWario055 - type: texture - offset: 0x13EB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_055_wheel_0 -wario_kart_frame056: - symbol: gKartWario056 - type: texture - offset: 0x144BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_056_wheel_0 -wario_kart_frame057: - symbol: gKartWario057 - type: texture - offset: 0x14AD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_057_wheel_0 -wario_kart_frame058: - symbol: gKartWario058 - type: texture - offset: 0x15108 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_058_wheel_0 -wario_kart_frame059: - symbol: gKartWario059 - type: texture - offset: 0x15730 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_059_wheel_0 -wario_kart_frame060: - symbol: gKartWario060 - type: texture - offset: 0x15D60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_060_wheel_0 -wario_kart_frame061: - symbol: gKartWario061 - type: texture - offset: 0x163A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_061_wheel_0 -wario_kart_frame062: - symbol: gKartWario062 - type: texture - offset: 0x169E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_062_wheel_0 -wario_kart_frame063: - symbol: gKartWario063 - type: texture - offset: 0x17034 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_063_wheel_0 -wario_kart_frame064: - symbol: gKartWario064 - type: texture - offset: 0x175A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_064_wheel_0 -wario_kart_frame065: - symbol: gKartWario065 - type: texture - offset: 0x17B38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_065_wheel_0 -wario_kart_frame066: - symbol: gKartWario066 - type: texture - offset: 0x180D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_066_wheel_0 -wario_kart_frame067: - symbol: gKartWario067 - type: texture - offset: 0x18670 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_067_wheel_0 -wario_kart_frame068: - symbol: gKartWario068 - type: texture - offset: 0x18C10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_068_wheel_0 -wario_kart_frame069: - symbol: gKartWario069 - type: texture - offset: 0x191CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_069_wheel_0 -wario_kart_frame070: - symbol: gKartWario070 - type: texture - offset: 0x19784 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_070_wheel_0 -wario_kart_frame071: - symbol: gKartWario071 - type: texture - offset: 0x19D58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_071_wheel_0 -wario_kart_frame072: - symbol: gKartWario072 - type: texture - offset: 0x1A350 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_072_wheel_0 -wario_kart_frame073: - symbol: gKartWario073 - type: texture - offset: 0x1A944 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_073_wheel_0 -wario_kart_frame074: - symbol: gKartWario074 - type: texture - offset: 0x1AF50 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_074_wheel_0 -wario_kart_frame075: - symbol: gKartWario075 - type: texture - offset: 0x1B548 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_075_wheel_0 -wario_kart_frame076: - symbol: gKartWario076 - type: texture - offset: 0x1BB5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_076_wheel_0 -wario_kart_frame077: - symbol: gKartWario077 - type: texture - offset: 0x1C154 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_077_wheel_0 -wario_kart_frame078: - symbol: gKartWario078 - type: texture - offset: 0x1C768 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_078_wheel_0 -wario_kart_frame079: - symbol: gKartWario079 - type: texture - offset: 0x1CD98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_079_wheel_0 -wario_kart_frame080: - symbol: gKartWario080 - type: texture - offset: 0x1D3C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_080_wheel_0 -wario_kart_frame081: - symbol: gKartWario081 - type: texture - offset: 0x1D9F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_081_wheel_0 -wario_kart_frame082: - symbol: gKartWario082 - type: texture - offset: 0x1E038 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_082_wheel_0 -wario_kart_frame083: - symbol: gKartWario083 - type: texture - offset: 0x1E67C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_083_wheel_0 -wario_kart_frame084: - symbol: gKartWario084 - type: texture - offset: 0x1ECD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_084_wheel_0 -wario_kart_frame085: - symbol: gKartWario085 - type: texture - offset: 0x1F25C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_085_wheel_0 -wario_kart_frame086: - symbol: gKartWario086 - type: texture - offset: 0x1F7E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_086_wheel_0 -wario_kart_frame087: - symbol: gKartWario087 - type: texture - offset: 0x1FD6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_087_wheel_0 -wario_kart_frame088: - symbol: gKartWario088 - type: texture - offset: 0x20330 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_088_wheel_0 -wario_kart_frame089: - symbol: gKartWario089 - type: texture - offset: 0x208E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_089_wheel_0 -wario_kart_frame090: - symbol: gKartWario090 - type: texture - offset: 0x20E9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_090_wheel_0 -wario_kart_frame091: - symbol: gKartWario091 - type: texture - offset: 0x21474 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_091_wheel_0 -wario_kart_frame092: - symbol: gKartWario092 - type: texture - offset: 0x21A64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_092_wheel_0 -wario_kart_frame093: - symbol: gKartWario093 - type: texture - offset: 0x22048 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_093_wheel_0 -wario_kart_frame094: - symbol: gKartWario094 - type: texture - offset: 0x2262C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_094_wheel_0 -wario_kart_frame095: - symbol: gKartWario095 - type: texture - offset: 0x22C18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_095_wheel_0 -wario_kart_frame096: - symbol: gKartWario096 - type: texture - offset: 0x23224 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_096_wheel_0 -wario_kart_frame097: - symbol: gKartWario097 - type: texture - offset: 0x23824 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_097_wheel_0 -wario_kart_frame098: - symbol: gKartWario098 - type: texture - offset: 0x23E28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_098_wheel_0 -wario_kart_frame099: - symbol: gKartWario099 - type: texture - offset: 0x24430 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_099_wheel_0 -wario_kart_frame100: - symbol: gKartWario100 - type: texture - offset: 0x24A64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_100_wheel_0 -wario_kart_frame101: - symbol: gKartWario101 - type: texture - offset: 0x250A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_101_wheel_0 -wario_kart_frame102: - symbol: gKartWario102 - type: texture - offset: 0x256E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_102_wheel_0 -wario_kart_frame103: - symbol: gKartWario103 - type: texture - offset: 0x25D28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_103_wheel_0 -wario_kart_frame104: - symbol: gKartWario104 - type: texture - offset: 0x26380 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_104_wheel_0 -wario_kart_frame105: - symbol: gKartWario105 - type: texture - offset: 0x269E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_105_wheel_0 -wario_kart_frame106: - symbol: gKartWario106 - type: texture - offset: 0x26F78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_106_wheel_0 -wario_kart_frame107: - symbol: gKartWario107 - type: texture - offset: 0x2751C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_107_wheel_0 -wario_kart_frame108: - symbol: gKartWario108 - type: texture - offset: 0x27AA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_108_wheel_0 -wario_kart_frame109: - symbol: gKartWario109 - type: texture - offset: 0x28050 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_109_wheel_0 -wario_kart_frame110: - symbol: gKartWario110 - type: texture - offset: 0x28618 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_110_wheel_0 -wario_kart_frame111: - symbol: gKartWario111 - type: texture - offset: 0x28BEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_111_wheel_0 -wario_kart_frame112: - symbol: gKartWario112 - type: texture - offset: 0x291D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_112_wheel_0 -wario_kart_frame113: - symbol: gKartWario113 - type: texture - offset: 0x297B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_113_wheel_0 -wario_kart_frame114: - symbol: gKartWario114 - type: texture - offset: 0x29DA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_114_wheel_0 -wario_kart_frame115: - symbol: gKartWario115 - type: texture - offset: 0x2A3AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_115_wheel_0 -wario_kart_frame116: - symbol: gKartWario116 - type: texture - offset: 0x2A9A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_116_wheel_0 -wario_kart_frame117: - symbol: gKartWario117 - type: texture - offset: 0x2AFB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_117_wheel_0 -wario_kart_frame118: - symbol: gKartWario118 - type: texture - offset: 0x2B5BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_118_wheel_0 -wario_kart_frame119: - symbol: gKartWario119 - type: texture - offset: 0x2BBC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_119_wheel_0 -wario_kart_frame120: - symbol: gKartWario120 - type: texture - offset: 0x2C1E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_120_wheel_0 -wario_kart_frame121: - symbol: gKartWario121 - type: texture - offset: 0x2C820 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_121_wheel_0 -wario_kart_frame122: - symbol: gKartWario122 - type: texture - offset: 0x2CE68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_122_wheel_0 -wario_kart_frame123: - symbol: gKartWario123 - type: texture - offset: 0x2D4C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_123_wheel_0 -wario_kart_frame124: - symbol: gKartWario124 - type: texture - offset: 0x2DB28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_124_wheel_0 -wario_kart_frame125: - symbol: gKartWario125 - type: texture - offset: 0x2E190 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_125_wheel_0 -wario_kart_frame126: - symbol: gKartWario126 - type: texture - offset: 0x2E80C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_126_wheel_0 -wario_kart_frame127: - symbol: gKartWario127 - type: texture - offset: 0x2ED9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_127_wheel_0 -wario_kart_frame128: - symbol: gKartWario128 - type: texture - offset: 0x2F338 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_128_wheel_0 -wario_kart_frame129: - symbol: gKartWario129 - type: texture - offset: 0x2F8F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_129_wheel_0 -wario_kart_frame130: - symbol: gKartWario130 - type: texture - offset: 0x2FEB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_130_wheel_0 -wario_kart_frame131: - symbol: gKartWario131 - type: texture - offset: 0x30474 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_131_wheel_0 -wario_kart_frame132: - symbol: gKartWario132 - type: texture - offset: 0x30A40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_132_wheel_0 -wario_kart_frame133: - symbol: gKartWario133 - type: texture - offset: 0x31024 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_133_wheel_0 -wario_kart_frame134: - symbol: gKartWario134 - type: texture - offset: 0x31618 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_134_wheel_0 -wario_kart_frame135: - symbol: gKartWario135 - type: texture - offset: 0x31C0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_135_wheel_0 -wario_kart_frame136: - symbol: gKartWario136 - type: texture - offset: 0x321F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_136_wheel_0 -wario_kart_frame137: - symbol: gKartWario137 - type: texture - offset: 0x327F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_137_wheel_0 -wario_kart_frame138: - symbol: gKartWario138 - type: texture - offset: 0x32DF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_138_wheel_0 -wario_kart_frame139: - symbol: gKartWario139 - type: texture - offset: 0x333F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_139_wheel_0 -wario_kart_frame140: - symbol: gKartWario140 - type: texture - offset: 0x339FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_140_wheel_0 -wario_kart_frame141: - symbol: gKartWario141 - type: texture - offset: 0x34038 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_141_wheel_0 -wario_kart_frame142: - symbol: gKartWario142 - type: texture - offset: 0x34670 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_142_wheel_0 -wario_kart_frame143: - symbol: gKartWario143 - type: texture - offset: 0x34CC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_143_wheel_0 -wario_kart_frame144: - symbol: gKartWario144 - type: texture - offset: 0x3530C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_144_wheel_0 -wario_kart_frame145: - symbol: gKartWario145 - type: texture - offset: 0x35964 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_145_wheel_0 -wario_kart_frame146: - symbol: gKartWario146 - type: texture - offset: 0x35FC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_146_wheel_0 -wario_kart_frame147: - symbol: gKartWario147 - type: texture - offset: 0x36654 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_147_wheel_0 -wario_kart_frame148: - symbol: gKartWario148 - type: texture - offset: 0x36BD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_148_wheel_0 -wario_kart_frame149: - symbol: gKartWario149 - type: texture - offset: 0x37198 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_149_wheel_0 -wario_kart_frame150: - symbol: gKartWario150 - type: texture - offset: 0x3773C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_150_wheel_0 -wario_kart_frame151: - symbol: gKartWario151 - type: texture - offset: 0x37D08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_151_wheel_0 -wario_kart_frame152: - symbol: gKartWario152 - type: texture - offset: 0x382D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_152_wheel_0 -wario_kart_frame153: - symbol: gKartWario153 - type: texture - offset: 0x38890 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_153_wheel_0 -wario_kart_frame154: - symbol: gKartWario154 - type: texture - offset: 0x38E74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_154_wheel_0 -wario_kart_frame155: - symbol: gKartWario155 - type: texture - offset: 0x39464 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_155_wheel_0 -wario_kart_frame156: - symbol: gKartWario156 - type: texture - offset: 0x39A64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_156_wheel_0 -wario_kart_frame157: - symbol: gKartWario157 - type: texture - offset: 0x3A050 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_157_wheel_0 -wario_kart_frame158: - symbol: gKartWario158 - type: texture - offset: 0x3A66C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_158_wheel_0 -wario_kart_frame159: - symbol: gKartWario159 - type: texture - offset: 0x3AC7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_159_wheel_0 -wario_kart_frame160: - symbol: gKartWario160 - type: texture - offset: 0x3B284 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_160_wheel_0 -wario_kart_frame161: - symbol: gKartWario161 - type: texture - offset: 0x3B88C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_161_wheel_0 -wario_kart_frame162: - symbol: gKartWario162 - type: texture - offset: 0x3BEB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_162_wheel_0 -wario_kart_frame163: - symbol: gKartWario163 - type: texture - offset: 0x3C500 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_163_wheel_0 -wario_kart_frame164: - symbol: gKartWario164 - type: texture - offset: 0x3CB58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_164_wheel_0 -wario_kart_frame165: - symbol: gKartWario165 - type: texture - offset: 0x3D1C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_165_wheel_0 -wario_kart_frame166: - symbol: gKartWario166 - type: texture - offset: 0x3D83C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_166_wheel_0 -wario_kart_frame167: - symbol: gKartWario167 - type: texture - offset: 0x3DEC8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_167_wheel_0 -wario_kart_frame168: - symbol: gKartWario168 - type: texture - offset: 0x3E548 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_168_wheel_0 -wario_kart_frame169: - symbol: gKartWario169 - type: texture - offset: 0x3EAEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_169_wheel_0 -wario_kart_frame170: - symbol: gKartWario170 - type: texture - offset: 0x3F0AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_170_wheel_0 -wario_kart_frame171: - symbol: gKartWario171 - type: texture - offset: 0x3F650 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_171_wheel_0 -wario_kart_frame172: - symbol: gKartWario172 - type: texture - offset: 0x3FC28 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_172_wheel_0 -wario_kart_frame173: - symbol: gKartWario173 - type: texture - offset: 0x401F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_173_wheel_0 -wario_kart_frame174: - symbol: gKartWario174 - type: texture - offset: 0x407B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_174_wheel_0 -wario_kart_frame175: - symbol: gKartWario175 - type: texture - offset: 0x40D88 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_175_wheel_0 -wario_kart_frame176: - symbol: gKartWario176 - type: texture - offset: 0x41374 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_176_wheel_0 -wario_kart_frame177: - symbol: gKartWario177 - type: texture - offset: 0x41978 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_177_wheel_0 -wario_kart_frame178: - symbol: gKartWario178 - type: texture - offset: 0x41F74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_178_wheel_0 -wario_kart_frame179: - symbol: gKartWario179 - type: texture - offset: 0x42590 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_179_wheel_0 -wario_kart_frame180: - symbol: gKartWario180 - type: texture - offset: 0x42BA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_180_wheel_0 -wario_kart_frame181: - symbol: gKartWario181 - type: texture - offset: 0x431A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_181_wheel_0 -wario_kart_frame182: - symbol: gKartWario182 - type: texture - offset: 0x437B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_182_wheel_0 -wario_kart_frame183: - symbol: gKartWario183 - type: texture - offset: 0x43DEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_183_wheel_0 -wario_kart_frame184: - symbol: gKartWario184 - type: texture - offset: 0x44420 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_184_wheel_0 -wario_kart_frame185: - symbol: gKartWario185 - type: texture - offset: 0x44A74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_185_wheel_0 -wario_kart_frame186: - symbol: gKartWario186 - type: texture - offset: 0x450E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_186_wheel_0 -wario_kart_frame187: - symbol: gKartWario187 - type: texture - offset: 0x45750 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_187_wheel_0 -wario_kart_frame188: - symbol: gKartWario188 - type: texture - offset: 0x45DE8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_188_wheel_0 -wario_kart_frame189: - symbol: gKartWario189 - type: texture - offset: 0x4647C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_189_wheel_0 -wario_kart_frame190: - symbol: gKartWario190 - type: texture - offset: 0x469D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_190_wheel_0 -wario_kart_frame191: - symbol: gKartWario191 - type: texture - offset: 0x46F70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_191_wheel_0 -wario_kart_frame192: - symbol: gKartWario192 - type: texture - offset: 0x47528 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_192_wheel_0 -wario_kart_frame193: - symbol: gKartWario193 - type: texture - offset: 0x47B0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_193_wheel_0 -wario_kart_frame194: - symbol: gKartWario194 - type: texture - offset: 0x480F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_194_wheel_0 -wario_kart_frame195: - symbol: gKartWario195 - type: texture - offset: 0x48708 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_195_wheel_0 -wario_kart_frame196: - symbol: gKartWario196 - type: texture - offset: 0x48D40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_196_wheel_0 -wario_kart_frame197: - symbol: gKartWario197 - type: texture - offset: 0x49388 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_197_wheel_0 -wario_kart_frame198: - symbol: gKartWario198 - type: texture - offset: 0x499D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_198_wheel_0 -wario_kart_frame199: - symbol: gKartWario199 - type: texture - offset: 0x4A05C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_199_wheel_0 -wario_kart_frame200: - symbol: gKartWario200 - type: texture - offset: 0x4A6E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_200_wheel_0 -wario_kart_frame201: - symbol: gKartWario201 - type: texture - offset: 0x4ADA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_201_wheel_0 -wario_kart_frame202: - symbol: gKartWario202 - type: texture - offset: 0x4B460 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_202_wheel_0 -wario_kart_frame203: - symbol: gKartWario203 - type: texture - offset: 0x4BAFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_203_wheel_0 -wario_kart_frame204: - symbol: gKartWario204 - type: texture - offset: 0x4C1A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_204_wheel_0 -wario_kart_frame205: - symbol: gKartWario205 - type: texture - offset: 0x4C868 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_205_wheel_0 -wario_kart_frame206: - symbol: gKartWario206 - type: texture - offset: 0x4CF08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_206_wheel_0 -wario_kart_frame207: - symbol: gKartWario207 - type: texture - offset: 0x4D5AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_207_wheel_0 -wario_kart_frame208: - symbol: gKartWario208 - type: texture - offset: 0x4DC4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_208_wheel_0 -wario_kart_frame209: - symbol: gKartWario209 - type: texture - offset: 0x4E2D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_209_wheel_0 -wario_kart_frame210: - symbol: gKartWario210 - type: texture - offset: 0x4E864 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_210_wheel_0 -wario_kart_frame211: - symbol: gKartWario211 - type: texture - offset: 0x4EE14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_211_wheel_0 -wario_kart_frame212: - symbol: gKartWario212 - type: texture - offset: 0x4F3F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_212_wheel_0 -wario_kart_frame213: - symbol: gKartWario213 - type: texture - offset: 0x4F9F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_213_wheel_0 -wario_kart_frame214: - symbol: gKartWario214 - type: texture - offset: 0x50020 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_214_wheel_0 -wario_kart_frame215: - symbol: gKartWario215 - type: texture - offset: 0x5065C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_215_wheel_0 -wario_kart_frame216: - symbol: gKartWario216 - type: texture - offset: 0x50CB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_216_wheel_0 -wario_kart_frame217: - symbol: gKartWario217 - type: texture - offset: 0x5130C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_217_wheel_0 -wario_kart_frame218: - symbol: gKartWario218 - type: texture - offset: 0x51964 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_218_wheel_0 -wario_kart_frame219: - symbol: gKartWario219 - type: texture - offset: 0x51FE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_219_wheel_0 -wario_kart_frame220: - symbol: gKartWario220 - type: texture - offset: 0x5264C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_220_wheel_0 -wario_kart_frame221: - symbol: gKartWario221 - type: texture - offset: 0x52CD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_221_wheel_0 -wario_kart_frame222: - symbol: gKartWario222 - type: texture - offset: 0x53350 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_222_wheel_0 -wario_kart_frame223: - symbol: gKartWario223 - type: texture - offset: 0x539CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_223_wheel_0 -wario_kart_frame224: - symbol: gKartWario224 - type: texture - offset: 0x54038 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_224_wheel_0 -wario_kart_frame225: - symbol: gKartWario225 - type: texture - offset: 0x546B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_225_wheel_0 -wario_kart_frame226: - symbol: gKartWario226 - type: texture - offset: 0x54D0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_226_wheel_0 -wario_kart_frame227: - symbol: gKartWario227 - type: texture - offset: 0x55360 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_227_wheel_0 -wario_kart_frame228: - symbol: gKartWario228 - type: texture - offset: 0x559AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_228_wheel_0 -wario_kart_frame229: - symbol: gKartWario229 - type: texture - offset: 0x56014 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_229_wheel_0 -wario_kart_frame230: - symbol: gKartWario230 - type: texture - offset: 0x565AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_230_wheel_0 -wario_kart_frame231: - symbol: gKartWario231 - type: texture - offset: 0x56B64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_231_wheel_0 -wario_kart_frame232: - symbol: gKartWario232 - type: texture - offset: 0x57148 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_232_wheel_0 -wario_kart_frame233: - symbol: gKartWario233 - type: texture - offset: 0x57764 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_233_wheel_0 -wario_kart_frame234: - symbol: gKartWario234 - type: texture - offset: 0x57D98 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_234_wheel_0 -wario_kart_frame235: - symbol: gKartWario235 - type: texture - offset: 0x583E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_235_wheel_0 -wario_kart_frame236: - symbol: gKartWario236 - type: texture - offset: 0x58A64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_236_wheel_0 -wario_kart_frame237: - symbol: gKartWario237 - type: texture - offset: 0x590D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_237_wheel_0 -wario_kart_frame238: - symbol: gKartWario238 - type: texture - offset: 0x59748 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_238_wheel_0 -wario_kart_frame239: - symbol: gKartWario239 - type: texture - offset: 0x59DA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_239_wheel_0 -wario_kart_frame240: - symbol: gKartWario240 - type: texture - offset: 0x5A410 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_240_wheel_0 -wario_kart_frame241: - symbol: gKartWario241 - type: texture - offset: 0x5AA80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_241_wheel_0 -wario_kart_frame242: - symbol: gKartWario242 - type: texture - offset: 0x5B0EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_242_wheel_0 -wario_kart_frame243: - symbol: gKartWario243 - type: texture - offset: 0x5B748 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_243_wheel_0 -wario_kart_frame244: - symbol: gKartWario244 - type: texture - offset: 0x5BD90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_244_wheel_0 -wario_kart_frame245: - symbol: gKartWario245 - type: texture - offset: 0x5C3D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_245_wheel_0 -wario_kart_frame246: - symbol: gKartWario246 - type: texture - offset: 0x5CA14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_246_wheel_0 -wario_kart_frame247: - symbol: gKartWario247 - type: texture - offset: 0x5D04C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_247_wheel_0 -wario_kart_frame248: - symbol: gKartWario248 - type: texture - offset: 0x5D660 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_248_wheel_0 -wario_kart_frame249: - symbol: gKartWario249 - type: texture - offset: 0x5DC68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_249_wheel_0 -wario_kart_frame250: - symbol: gKartWario250 - type: texture - offset: 0x5E21C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_250_wheel_0 -wario_kart_frame251: - symbol: gKartWario251 - type: texture - offset: 0x5E7FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_251_wheel_0 -wario_kart_frame252: - symbol: gKartWario252 - type: texture - offset: 0x5EDF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_252_wheel_0 -wario_kart_frame253: - symbol: gKartWario253 - type: texture - offset: 0x5F414 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_253_wheel_0 -wario_kart_frame254: - symbol: gKartWario254 - type: texture - offset: 0x5FA64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_254_wheel_0 -wario_kart_frame255: - symbol: gKartWario255 - type: texture - offset: 0x600D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_255_wheel_0 -wario_kart_frame256: - symbol: gKartWario256 - type: texture - offset: 0x60748 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_256_wheel_0 -wario_kart_frame257: - symbol: gKartWario257 - type: texture - offset: 0x60DD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_257_wheel_0 -wario_kart_frame258: - symbol: gKartWario258 - type: texture - offset: 0x61460 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_258_wheel_0 -wario_kart_frame259: - symbol: gKartWario259 - type: texture - offset: 0x61AC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_259_wheel_0 -wario_kart_frame260: - symbol: gKartWario260 - type: texture - offset: 0x62120 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_260_wheel_0 -wario_kart_frame261: - symbol: gKartWario261 - type: texture - offset: 0x6277C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_261_wheel_0 -wario_kart_frame262: - symbol: gKartWario262 - type: texture - offset: 0x62DB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_262_wheel_0 -wario_kart_frame263: - symbol: gKartWario263 - type: texture - offset: 0x633D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_263_wheel_0 -wario_kart_frame264: - symbol: gKartWario264 - type: texture - offset: 0x639E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_264_wheel_0 -wario_kart_frame265: - symbol: gKartWario265 - type: texture - offset: 0x64004 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_265_wheel_0 -wario_kart_frame266: - symbol: gKartWario266 - type: texture - offset: 0x64610 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_266_wheel_0 -wario_kart_frame267: - symbol: gKartWario267 - type: texture - offset: 0x64C18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_267_wheel_0 -wario_kart_frame268: - symbol: gKartWario268 - type: texture - offset: 0x651F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_268_wheel_0 -wario_kart_frame269: - symbol: gKartWario269 - type: texture - offset: 0x657D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_269_wheel_0 -wario_kart_frame270: - symbol: gKartWario270 - type: texture - offset: 0x65D90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_270_wheel_0 -wario_kart_frame271: - symbol: gKartWario271 - type: texture - offset: 0x66368 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_271_wheel_0 -wario_kart_frame272: - symbol: gKartWario272 - type: texture - offset: 0x66984 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_272_wheel_0 -wario_kart_frame273: - symbol: gKartWario273 - type: texture - offset: 0x66FD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_273_wheel_0 -wario_kart_frame274: - symbol: gKartWario274 - type: texture - offset: 0x67630 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_274_wheel_0 -wario_kart_frame275: - symbol: gKartWario275 - type: texture - offset: 0x67CAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_275_wheel_0 -wario_kart_frame276: - symbol: gKartWario276 - type: texture - offset: 0x68354 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_276_wheel_0 -wario_kart_frame277: - symbol: gKartWario277 - type: texture - offset: 0x689E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_277_wheel_0 -wario_kart_frame278: - symbol: gKartWario278 - type: texture - offset: 0x69070 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_278_wheel_0 -wario_kart_frame279: - symbol: gKartWario279 - type: texture - offset: 0x696D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_279_wheel_0 -wario_kart_frame280: - symbol: gKartWario280 - type: texture - offset: 0x69D34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_280_wheel_0 -wario_kart_frame281: - symbol: gKartWario281 - type: texture - offset: 0x6A378 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_281_wheel_0 -wario_kart_frame282: - symbol: gKartWario282 - type: texture - offset: 0x6A98C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_282_wheel_0 -wario_kart_frame283: - symbol: gKartWario283 - type: texture - offset: 0x6AF9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_283_wheel_0 -wario_kart_frame284: - symbol: gKartWario284 - type: texture - offset: 0x6B57C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_284_wheel_0 -wario_kart_frame285: - symbol: gKartWario285 - type: texture - offset: 0x6BB54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_285_wheel_0 -wario_kart_frame286: - symbol: gKartWario286 - type: texture - offset: 0x6C120 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_286_wheel_0 -wario_kart_frame287: - symbol: gKartWario287 - type: texture - offset: 0x6C6CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_287_wheel_0 -wario_kart_frame288: - symbol: gKartWario288 - type: texture - offset: 0x6CC68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_288_wheel_0 -wario_kart_frame289: - symbol: gKartWario289 - type: texture - offset: 0x6D1CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame290: - symbol: gKartWario290 - type: texture - offset: 0x6D790 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame291: - symbol: gKartWario291 - type: texture - offset: 0x6DD94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame292: - symbol: gKartWario292 - type: texture - offset: 0x6E3AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame293: - symbol: gKartWario293 - type: texture - offset: 0x6EA14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame294: - symbol: gKartWario294 - type: texture - offset: 0x6EFD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame295: - symbol: gKartWario295 - type: texture - offset: 0x6F5D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame296: - symbol: gKartWario296 - type: texture - offset: 0x6FBEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame297: - symbol: gKartWario297 - type: texture - offset: 0x70220 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame298: - symbol: gKartWario298 - type: texture - offset: 0x707EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame299: - symbol: gKartWario299 - type: texture - offset: 0x70E24 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame300: - symbol: gKartWario300 - type: texture - offset: 0x71438 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame301: - symbol: gKartWario301 - type: texture - offset: 0x719D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame302: - symbol: gKartWario302 - type: texture - offset: 0x71F40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame303: - symbol: gKartWario303 - type: texture - offset: 0x72504 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame304: - symbol: gKartWario304 - type: texture - offset: 0x72B1C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame305: - symbol: gKartWario305 - type: texture - offset: 0x73148 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame306: - symbol: gKartWario306 - type: texture - offset: 0x73694 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame307: - symbol: gKartWario307 - type: texture - offset: 0x73CA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame308: - symbol: gKartWario308 - type: texture - offset: 0x742F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame309: - symbol: gKartWario309 - type: texture - offset: 0x74924 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame310: - symbol: gKartWario310 - type: texture - offset: 0x74F04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame311: - symbol: gKartWario311 - type: texture - offset: 0x75500 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame312: - symbol: gKartWario312 - type: texture - offset: 0x75B04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame313: - symbol: gKartWario313 - type: texture - offset: 0x760F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame314: - symbol: gKartWario314 - type: texture - offset: 0x766C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame315: - symbol: gKartWario315 - type: texture - offset: 0x76CF8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame316: - symbol: gKartWario316 - type: texture - offset: 0x7731C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame317: - symbol: gKartWario317 - type: texture - offset: 0x778D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame318: - symbol: gKartWario318 - type: texture - offset: 0x77E3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame319: - symbol: gKartWario319 - type: texture - offset: 0x783C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -wario_kart_frame320: - symbol: gKartWario320 - type: texture - offset: 0x78990 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: wario_kart_palette - tlut_wheel: kart_000_wheel_0 -kart_000_wheel_0: - symbol: gKartWario000Wheel0 - type: texture - offset: 0x78F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_1: - symbol: gKartWario000Wheel1 - type: texture - offset: 0x7901C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_2: - symbol: gKartWario000Wheel2 - type: texture - offset: 0x7909C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_3: - symbol: gKartWario000Wheel3 - type: texture - offset: 0x7911C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_0: - symbol: gKartWario001Wheel0 - type: texture - offset: 0x7919C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_1: - symbol: gKartWario001Wheel1 - type: texture - offset: 0x7921C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_2: - symbol: gKartWario001Wheel2 - type: texture - offset: 0x7929C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_3: - symbol: gKartWario001Wheel3 - type: texture - offset: 0x7931C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_0: - symbol: gKartWario002Wheel0 - type: texture - offset: 0x7939C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_1: - symbol: gKartWario002Wheel1 - type: texture - offset: 0x7941C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_2: - symbol: gKartWario002Wheel2 - type: texture - offset: 0x7949C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_3: - symbol: gKartWario002Wheel3 - type: texture - offset: 0x7951C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_0: - symbol: gKartWario003Wheel0 - type: texture - offset: 0x7959C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_1: - symbol: gKartWario003Wheel1 - type: texture - offset: 0x7961C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_2: - symbol: gKartWario003Wheel2 - type: texture - offset: 0x7969C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_3: - symbol: gKartWario003Wheel3 - type: texture - offset: 0x7971C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_0: - symbol: gKartWario004Wheel0 - type: texture - offset: 0x7979C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_1: - symbol: gKartWario004Wheel1 - type: texture - offset: 0x7981C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_2: - symbol: gKartWario004Wheel2 - type: texture - offset: 0x7989C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_3: - symbol: gKartWario004Wheel3 - type: texture - offset: 0x7991C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_0: - symbol: gKartWario005Wheel0 - type: texture - offset: 0x7999C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_1: - symbol: gKartWario005Wheel1 - type: texture - offset: 0x79A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_2: - symbol: gKartWario005Wheel2 - type: texture - offset: 0x79A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_3: - symbol: gKartWario005Wheel3 - type: texture - offset: 0x79B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_0: - symbol: gKartWario006Wheel0 - type: texture - offset: 0x79B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_1: - symbol: gKartWario006Wheel1 - type: texture - offset: 0x79C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_2: - symbol: gKartWario006Wheel2 - type: texture - offset: 0x79C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_3: - symbol: gKartWario006Wheel3 - type: texture - offset: 0x79D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_0: - symbol: gKartWario007Wheel0 - type: texture - offset: 0x79D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_1: - symbol: gKartWario007Wheel1 - type: texture - offset: 0x79E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_2: - symbol: gKartWario007Wheel2 - type: texture - offset: 0x79E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_3: - symbol: gKartWario007Wheel3 - type: texture - offset: 0x79F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_0: - symbol: gKartWario008Wheel0 - type: texture - offset: 0x79F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_1: - symbol: gKartWario008Wheel1 - type: texture - offset: 0x7A01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_2: - symbol: gKartWario008Wheel2 - type: texture - offset: 0x7A09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_3: - symbol: gKartWario008Wheel3 - type: texture - offset: 0x7A11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_0: - symbol: gKartWario009Wheel0 - type: texture - offset: 0x7A19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_1: - symbol: gKartWario009Wheel1 - type: texture - offset: 0x7A21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_2: - symbol: gKartWario009Wheel2 - type: texture - offset: 0x7A29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_3: - symbol: gKartWario009Wheel3 - type: texture - offset: 0x7A31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_0: - symbol: gKartWario010Wheel0 - type: texture - offset: 0x7A39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_1: - symbol: gKartWario010Wheel1 - type: texture - offset: 0x7A41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_2: - symbol: gKartWario010Wheel2 - type: texture - offset: 0x7A49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_3: - symbol: gKartWario010Wheel3 - type: texture - offset: 0x7A51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_0: - symbol: gKartWario011Wheel0 - type: texture - offset: 0x7A59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_1: - symbol: gKartWario011Wheel1 - type: texture - offset: 0x7A61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_2: - symbol: gKartWario011Wheel2 - type: texture - offset: 0x7A69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_3: - symbol: gKartWario011Wheel3 - type: texture - offset: 0x7A71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_0: - symbol: gKartWario012Wheel0 - type: texture - offset: 0x7A79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_1: - symbol: gKartWario012Wheel1 - type: texture - offset: 0x7A81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_2: - symbol: gKartWario012Wheel2 - type: texture - offset: 0x7A89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_3: - symbol: gKartWario012Wheel3 - type: texture - offset: 0x7A91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_0: - symbol: gKartWario013Wheel0 - type: texture - offset: 0x7A99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_1: - symbol: gKartWario013Wheel1 - type: texture - offset: 0x7AA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_2: - symbol: gKartWario013Wheel2 - type: texture - offset: 0x7AA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_3: - symbol: gKartWario013Wheel3 - type: texture - offset: 0x7AB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_0: - symbol: gKartWario014Wheel0 - type: texture - offset: 0x7AB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_1: - symbol: gKartWario014Wheel1 - type: texture - offset: 0x7AC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_2: - symbol: gKartWario014Wheel2 - type: texture - offset: 0x7AC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_3: - symbol: gKartWario014Wheel3 - type: texture - offset: 0x7AD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_0: - symbol: gKartWario015Wheel0 - type: texture - offset: 0x7AD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_1: - symbol: gKartWario015Wheel1 - type: texture - offset: 0x7AE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_2: - symbol: gKartWario015Wheel2 - type: texture - offset: 0x7AE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_3: - symbol: gKartWario015Wheel3 - type: texture - offset: 0x7AF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_0: - symbol: gKartWario016Wheel0 - type: texture - offset: 0x7AF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_1: - symbol: gKartWario016Wheel1 - type: texture - offset: 0x7B01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_2: - symbol: gKartWario016Wheel2 - type: texture - offset: 0x7B09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_3: - symbol: gKartWario016Wheel3 - type: texture - offset: 0x7B11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_0: - symbol: gKartWario017Wheel0 - type: texture - offset: 0x7B19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_1: - symbol: gKartWario017Wheel1 - type: texture - offset: 0x7B21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_2: - symbol: gKartWario017Wheel2 - type: texture - offset: 0x7B29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_3: - symbol: gKartWario017Wheel3 - type: texture - offset: 0x7B31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_0: - symbol: gKartWario018Wheel0 - type: texture - offset: 0x7B39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_1: - symbol: gKartWario018Wheel1 - type: texture - offset: 0x7B41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_2: - symbol: gKartWario018Wheel2 - type: texture - offset: 0x7B49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_3: - symbol: gKartWario018Wheel3 - type: texture - offset: 0x7B51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_0: - symbol: gKartWario019Wheel0 - type: texture - offset: 0x7B59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_1: - symbol: gKartWario019Wheel1 - type: texture - offset: 0x7B61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_2: - symbol: gKartWario019Wheel2 - type: texture - offset: 0x7B69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_3: - symbol: gKartWario019Wheel3 - type: texture - offset: 0x7B71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_0: - symbol: gKartWario020Wheel0 - type: texture - offset: 0x7B79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_1: - symbol: gKartWario020Wheel1 - type: texture - offset: 0x7B81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_2: - symbol: gKartWario020Wheel2 - type: texture - offset: 0x7B89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_3: - symbol: gKartWario020Wheel3 - type: texture - offset: 0x7B91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_0: - symbol: gKartWario021Wheel0 - type: texture - offset: 0x7B99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_1: - symbol: gKartWario021Wheel1 - type: texture - offset: 0x7BA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_2: - symbol: gKartWario021Wheel2 - type: texture - offset: 0x7BA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_3: - symbol: gKartWario021Wheel3 - type: texture - offset: 0x7BB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_0: - symbol: gKartWario022Wheel0 - type: texture - offset: 0x7BB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_1: - symbol: gKartWario022Wheel1 - type: texture - offset: 0x7BC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_2: - symbol: gKartWario022Wheel2 - type: texture - offset: 0x7BC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_3: - symbol: gKartWario022Wheel3 - type: texture - offset: 0x7BD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_0: - symbol: gKartWario023Wheel0 - type: texture - offset: 0x7BD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_1: - symbol: gKartWario023Wheel1 - type: texture - offset: 0x7BE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_2: - symbol: gKartWario023Wheel2 - type: texture - offset: 0x7BE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_3: - symbol: gKartWario023Wheel3 - type: texture - offset: 0x7BF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_0: - symbol: gKartWario024Wheel0 - type: texture - offset: 0x7BF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_1: - symbol: gKartWario024Wheel1 - type: texture - offset: 0x7C01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_2: - symbol: gKartWario024Wheel2 - type: texture - offset: 0x7C09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_3: - symbol: gKartWario024Wheel3 - type: texture - offset: 0x7C11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_0: - symbol: gKartWario025Wheel0 - type: texture - offset: 0x7C19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_1: - symbol: gKartWario025Wheel1 - type: texture - offset: 0x7C21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_2: - symbol: gKartWario025Wheel2 - type: texture - offset: 0x7C29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_3: - symbol: gKartWario025Wheel3 - type: texture - offset: 0x7C31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_0: - symbol: gKartWario026Wheel0 - type: texture - offset: 0x7C39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_1: - symbol: gKartWario026Wheel1 - type: texture - offset: 0x7C41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_2: - symbol: gKartWario026Wheel2 - type: texture - offset: 0x7C49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_3: - symbol: gKartWario026Wheel3 - type: texture - offset: 0x7C51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_0: - symbol: gKartWario027Wheel0 - type: texture - offset: 0x7C59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_1: - symbol: gKartWario027Wheel1 - type: texture - offset: 0x7C61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_2: - symbol: gKartWario027Wheel2 - type: texture - offset: 0x7C69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_3: - symbol: gKartWario027Wheel3 - type: texture - offset: 0x7C71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_0: - symbol: gKartWario028Wheel0 - type: texture - offset: 0x7C79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_1: - symbol: gKartWario028Wheel1 - type: texture - offset: 0x7C81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_2: - symbol: gKartWario028Wheel2 - type: texture - offset: 0x7C89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_3: - symbol: gKartWario028Wheel3 - type: texture - offset: 0x7C91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_0: - symbol: gKartWario029Wheel0 - type: texture - offset: 0x7C99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_1: - symbol: gKartWario029Wheel1 - type: texture - offset: 0x7CA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_2: - symbol: gKartWario029Wheel2 - type: texture - offset: 0x7CA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_3: - symbol: gKartWario029Wheel3 - type: texture - offset: 0x7CB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_0: - symbol: gKartWario030Wheel0 - type: texture - offset: 0x7CB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_1: - symbol: gKartWario030Wheel1 - type: texture - offset: 0x7CC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_2: - symbol: gKartWario030Wheel2 - type: texture - offset: 0x7CC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_3: - symbol: gKartWario030Wheel3 - type: texture - offset: 0x7CD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_0: - symbol: gKartWario031Wheel0 - type: texture - offset: 0x7CD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_1: - symbol: gKartWario031Wheel1 - type: texture - offset: 0x7CE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_2: - symbol: gKartWario031Wheel2 - type: texture - offset: 0x7CE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_3: - symbol: gKartWario031Wheel3 - type: texture - offset: 0x7CF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_0: - symbol: gKartWario032Wheel0 - type: texture - offset: 0x7CF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_1: - symbol: gKartWario032Wheel1 - type: texture - offset: 0x7D01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_2: - symbol: gKartWario032Wheel2 - type: texture - offset: 0x7D09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_3: - symbol: gKartWario032Wheel3 - type: texture - offset: 0x7D11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_0: - symbol: gKartWario033Wheel0 - type: texture - offset: 0x7D19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_1: - symbol: gKartWario033Wheel1 - type: texture - offset: 0x7D21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_2: - symbol: gKartWario033Wheel2 - type: texture - offset: 0x7D29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_3: - symbol: gKartWario033Wheel3 - type: texture - offset: 0x7D31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_0: - symbol: gKartWario034Wheel0 - type: texture - offset: 0x7D39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_1: - symbol: gKartWario034Wheel1 - type: texture - offset: 0x7D41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_2: - symbol: gKartWario034Wheel2 - type: texture - offset: 0x7D49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_3: - symbol: gKartWario034Wheel3 - type: texture - offset: 0x7D51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_0: - symbol: gKartWario035Wheel0 - type: texture - offset: 0x7D59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_1: - symbol: gKartWario035Wheel1 - type: texture - offset: 0x7D61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_2: - symbol: gKartWario035Wheel2 - type: texture - offset: 0x7D69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_3: - symbol: gKartWario035Wheel3 - type: texture - offset: 0x7D71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_0: - symbol: gKartWario036Wheel0 - type: texture - offset: 0x7D79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_1: - symbol: gKartWario036Wheel1 - type: texture - offset: 0x7D81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_2: - symbol: gKartWario036Wheel2 - type: texture - offset: 0x7D89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_3: - symbol: gKartWario036Wheel3 - type: texture - offset: 0x7D91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_0: - symbol: gKartWario037Wheel0 - type: texture - offset: 0x7D99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_1: - symbol: gKartWario037Wheel1 - type: texture - offset: 0x7DA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_2: - symbol: gKartWario037Wheel2 - type: texture - offset: 0x7DA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_3: - symbol: gKartWario037Wheel3 - type: texture - offset: 0x7DB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_0: - symbol: gKartWario038Wheel0 - type: texture - offset: 0x7DB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_1: - symbol: gKartWario038Wheel1 - type: texture - offset: 0x7DC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_2: - symbol: gKartWario038Wheel2 - type: texture - offset: 0x7DC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_3: - symbol: gKartWario038Wheel3 - type: texture - offset: 0x7DD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_0: - symbol: gKartWario039Wheel0 - type: texture - offset: 0x7DD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_1: - symbol: gKartWario039Wheel1 - type: texture - offset: 0x7DE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_2: - symbol: gKartWario039Wheel2 - type: texture - offset: 0x7DE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_3: - symbol: gKartWario039Wheel3 - type: texture - offset: 0x7DF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_0: - symbol: gKartWario040Wheel0 - type: texture - offset: 0x7DF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_1: - symbol: gKartWario040Wheel1 - type: texture - offset: 0x7E01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_2: - symbol: gKartWario040Wheel2 - type: texture - offset: 0x7E09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_3: - symbol: gKartWario040Wheel3 - type: texture - offset: 0x7E11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_0: - symbol: gKartWario041Wheel0 - type: texture - offset: 0x7E19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_1: - symbol: gKartWario041Wheel1 - type: texture - offset: 0x7E21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_2: - symbol: gKartWario041Wheel2 - type: texture - offset: 0x7E29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_3: - symbol: gKartWario041Wheel3 - type: texture - offset: 0x7E31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_0: - symbol: gKartWario042Wheel0 - type: texture - offset: 0x7E39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_1: - symbol: gKartWario042Wheel1 - type: texture - offset: 0x7E41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_2: - symbol: gKartWario042Wheel2 - type: texture - offset: 0x7E49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_3: - symbol: gKartWario042Wheel3 - type: texture - offset: 0x7E51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_0: - symbol: gKartWario043Wheel0 - type: texture - offset: 0x7E59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_1: - symbol: gKartWario043Wheel1 - type: texture - offset: 0x7E61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_2: - symbol: gKartWario043Wheel2 - type: texture - offset: 0x7E69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_3: - symbol: gKartWario043Wheel3 - type: texture - offset: 0x7E71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_0: - symbol: gKartWario044Wheel0 - type: texture - offset: 0x7E79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_1: - symbol: gKartWario044Wheel1 - type: texture - offset: 0x7E81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_2: - symbol: gKartWario044Wheel2 - type: texture - offset: 0x7E89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_3: - symbol: gKartWario044Wheel3 - type: texture - offset: 0x7E91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_0: - symbol: gKartWario045Wheel0 - type: texture - offset: 0x7E99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_1: - symbol: gKartWario045Wheel1 - type: texture - offset: 0x7EA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_2: - symbol: gKartWario045Wheel2 - type: texture - offset: 0x7EA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_3: - symbol: gKartWario045Wheel3 - type: texture - offset: 0x7EB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_0: - symbol: gKartWario046Wheel0 - type: texture - offset: 0x7EB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_1: - symbol: gKartWario046Wheel1 - type: texture - offset: 0x7EC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_2: - symbol: gKartWario046Wheel2 - type: texture - offset: 0x7EC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_3: - symbol: gKartWario046Wheel3 - type: texture - offset: 0x7ED1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_0: - symbol: gKartWario047Wheel0 - type: texture - offset: 0x7ED9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_1: - symbol: gKartWario047Wheel1 - type: texture - offset: 0x7EE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_2: - symbol: gKartWario047Wheel2 - type: texture - offset: 0x7EE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_3: - symbol: gKartWario047Wheel3 - type: texture - offset: 0x7EF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_0: - symbol: gKartWario048Wheel0 - type: texture - offset: 0x7EF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_1: - symbol: gKartWario048Wheel1 - type: texture - offset: 0x7F01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_2: - symbol: gKartWario048Wheel2 - type: texture - offset: 0x7F09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_3: - symbol: gKartWario048Wheel3 - type: texture - offset: 0x7F11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_0: - symbol: gKartWario049Wheel0 - type: texture - offset: 0x7F19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_1: - symbol: gKartWario049Wheel1 - type: texture - offset: 0x7F21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_2: - symbol: gKartWario049Wheel2 - type: texture - offset: 0x7F29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_3: - symbol: gKartWario049Wheel3 - type: texture - offset: 0x7F31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_0: - symbol: gKartWario050Wheel0 - type: texture - offset: 0x7F39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_1: - symbol: gKartWario050Wheel1 - type: texture - offset: 0x7F41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_2: - symbol: gKartWario050Wheel2 - type: texture - offset: 0x7F49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_3: - symbol: gKartWario050Wheel3 - type: texture - offset: 0x7F51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_0: - symbol: gKartWario051Wheel0 - type: texture - offset: 0x7F59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_1: - symbol: gKartWario051Wheel1 - type: texture - offset: 0x7F61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_2: - symbol: gKartWario051Wheel2 - type: texture - offset: 0x7F69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_3: - symbol: gKartWario051Wheel3 - type: texture - offset: 0x7F71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_0: - symbol: gKartWario052Wheel0 - type: texture - offset: 0x7F79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_1: - symbol: gKartWario052Wheel1 - type: texture - offset: 0x7F81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_2: - symbol: gKartWario052Wheel2 - type: texture - offset: 0x7F89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_3: - symbol: gKartWario052Wheel3 - type: texture - offset: 0x7F91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_0: - symbol: gKartWario053Wheel0 - type: texture - offset: 0x7F99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_1: - symbol: gKartWario053Wheel1 - type: texture - offset: 0x7FA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_2: - symbol: gKartWario053Wheel2 - type: texture - offset: 0x7FA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_3: - symbol: gKartWario053Wheel3 - type: texture - offset: 0x7FB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_0: - symbol: gKartWario054Wheel0 - type: texture - offset: 0x7FB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_1: - symbol: gKartWario054Wheel1 - type: texture - offset: 0x7FC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_2: - symbol: gKartWario054Wheel2 - type: texture - offset: 0x7FC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_3: - symbol: gKartWario054Wheel3 - type: texture - offset: 0x7FD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_0: - symbol: gKartWario055Wheel0 - type: texture - offset: 0x7FD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_1: - symbol: gKartWario055Wheel1 - type: texture - offset: 0x7FE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_2: - symbol: gKartWario055Wheel2 - type: texture - offset: 0x7FE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_3: - symbol: gKartWario055Wheel3 - type: texture - offset: 0x7FF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_0: - symbol: gKartWario056Wheel0 - type: texture - offset: 0x7FF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_1: - symbol: gKartWario056Wheel1 - type: texture - offset: 0x8001C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_2: - symbol: gKartWario056Wheel2 - type: texture - offset: 0x8009C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_3: - symbol: gKartWario056Wheel3 - type: texture - offset: 0x8011C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_0: - symbol: gKartWario057Wheel0 - type: texture - offset: 0x8019C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_1: - symbol: gKartWario057Wheel1 - type: texture - offset: 0x8021C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_2: - symbol: gKartWario057Wheel2 - type: texture - offset: 0x8029C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_3: - symbol: gKartWario057Wheel3 - type: texture - offset: 0x8031C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_0: - symbol: gKartWario058Wheel0 - type: texture - offset: 0x8039C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_1: - symbol: gKartWario058Wheel1 - type: texture - offset: 0x8041C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_2: - symbol: gKartWario058Wheel2 - type: texture - offset: 0x8049C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_3: - symbol: gKartWario058Wheel3 - type: texture - offset: 0x8051C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_0: - symbol: gKartWario059Wheel0 - type: texture - offset: 0x8059C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_1: - symbol: gKartWario059Wheel1 - type: texture - offset: 0x8061C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_2: - symbol: gKartWario059Wheel2 - type: texture - offset: 0x8069C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_3: - symbol: gKartWario059Wheel3 - type: texture - offset: 0x8071C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_0: - symbol: gKartWario060Wheel0 - type: texture - offset: 0x8079C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_1: - symbol: gKartWario060Wheel1 - type: texture - offset: 0x8081C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_2: - symbol: gKartWario060Wheel2 - type: texture - offset: 0x8089C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_3: - symbol: gKartWario060Wheel3 - type: texture - offset: 0x8091C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_0: - symbol: gKartWario061Wheel0 - type: texture - offset: 0x8099C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_1: - symbol: gKartWario061Wheel1 - type: texture - offset: 0x80A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_2: - symbol: gKartWario061Wheel2 - type: texture - offset: 0x80A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_3: - symbol: gKartWario061Wheel3 - type: texture - offset: 0x80B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_0: - symbol: gKartWario062Wheel0 - type: texture - offset: 0x80B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_1: - symbol: gKartWario062Wheel1 - type: texture - offset: 0x80C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_2: - symbol: gKartWario062Wheel2 - type: texture - offset: 0x80C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_3: - symbol: gKartWario062Wheel3 - type: texture - offset: 0x80D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_0: - symbol: gKartWario063Wheel0 - type: texture - offset: 0x80D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_1: - symbol: gKartWario063Wheel1 - type: texture - offset: 0x80E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_2: - symbol: gKartWario063Wheel2 - type: texture - offset: 0x80E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_3: - symbol: gKartWario063Wheel3 - type: texture - offset: 0x80F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_0: - symbol: gKartWario064Wheel0 - type: texture - offset: 0x80F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_1: - symbol: gKartWario064Wheel1 - type: texture - offset: 0x8101C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_2: - symbol: gKartWario064Wheel2 - type: texture - offset: 0x8109C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_3: - symbol: gKartWario064Wheel3 - type: texture - offset: 0x8111C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_0: - symbol: gKartWario065Wheel0 - type: texture - offset: 0x8119C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_1: - symbol: gKartWario065Wheel1 - type: texture - offset: 0x8121C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_2: - symbol: gKartWario065Wheel2 - type: texture - offset: 0x8129C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_3: - symbol: gKartWario065Wheel3 - type: texture - offset: 0x8131C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_0: - symbol: gKartWario066Wheel0 - type: texture - offset: 0x8139C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_1: - symbol: gKartWario066Wheel1 - type: texture - offset: 0x8141C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_2: - symbol: gKartWario066Wheel2 - type: texture - offset: 0x8149C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_3: - symbol: gKartWario066Wheel3 - type: texture - offset: 0x8151C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_0: - symbol: gKartWario067Wheel0 - type: texture - offset: 0x8159C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_1: - symbol: gKartWario067Wheel1 - type: texture - offset: 0x8161C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_2: - symbol: gKartWario067Wheel2 - type: texture - offset: 0x8169C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_3: - symbol: gKartWario067Wheel3 - type: texture - offset: 0x8171C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_0: - symbol: gKartWario068Wheel0 - type: texture - offset: 0x8179C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_1: - symbol: gKartWario068Wheel1 - type: texture - offset: 0x8181C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_2: - symbol: gKartWario068Wheel2 - type: texture - offset: 0x8189C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_3: - symbol: gKartWario068Wheel3 - type: texture - offset: 0x8191C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_0: - symbol: gKartWario069Wheel0 - type: texture - offset: 0x8199C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_1: - symbol: gKartWario069Wheel1 - type: texture - offset: 0x81A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_2: - symbol: gKartWario069Wheel2 - type: texture - offset: 0x81A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_3: - symbol: gKartWario069Wheel3 - type: texture - offset: 0x81B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_0: - symbol: gKartWario070Wheel0 - type: texture - offset: 0x81B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_1: - symbol: gKartWario070Wheel1 - type: texture - offset: 0x81C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_2: - symbol: gKartWario070Wheel2 - type: texture - offset: 0x81C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_3: - symbol: gKartWario070Wheel3 - type: texture - offset: 0x81D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_0: - symbol: gKartWario071Wheel0 - type: texture - offset: 0x81D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_1: - symbol: gKartWario071Wheel1 - type: texture - offset: 0x81E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_2: - symbol: gKartWario071Wheel2 - type: texture - offset: 0x81E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_3: - symbol: gKartWario071Wheel3 - type: texture - offset: 0x81F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_0: - symbol: gKartWario072Wheel0 - type: texture - offset: 0x81F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_1: - symbol: gKartWario072Wheel1 - type: texture - offset: 0x8201C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_2: - symbol: gKartWario072Wheel2 - type: texture - offset: 0x8209C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_3: - symbol: gKartWario072Wheel3 - type: texture - offset: 0x8211C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_0: - symbol: gKartWario073Wheel0 - type: texture - offset: 0x8219C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_1: - symbol: gKartWario073Wheel1 - type: texture - offset: 0x8221C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_2: - symbol: gKartWario073Wheel2 - type: texture - offset: 0x8229C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_3: - symbol: gKartWario073Wheel3 - type: texture - offset: 0x8231C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_0: - symbol: gKartWario074Wheel0 - type: texture - offset: 0x8239C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_1: - symbol: gKartWario074Wheel1 - type: texture - offset: 0x8241C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_2: - symbol: gKartWario074Wheel2 - type: texture - offset: 0x8249C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_3: - symbol: gKartWario074Wheel3 - type: texture - offset: 0x8251C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_0: - symbol: gKartWario075Wheel0 - type: texture - offset: 0x8259C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_1: - symbol: gKartWario075Wheel1 - type: texture - offset: 0x8261C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_2: - symbol: gKartWario075Wheel2 - type: texture - offset: 0x8269C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_3: - symbol: gKartWario075Wheel3 - type: texture - offset: 0x8271C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_0: - symbol: gKartWario076Wheel0 - type: texture - offset: 0x8279C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_1: - symbol: gKartWario076Wheel1 - type: texture - offset: 0x8281C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_2: - symbol: gKartWario076Wheel2 - type: texture - offset: 0x8289C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_3: - symbol: gKartWario076Wheel3 - type: texture - offset: 0x8291C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_0: - symbol: gKartWario077Wheel0 - type: texture - offset: 0x8299C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_1: - symbol: gKartWario077Wheel1 - type: texture - offset: 0x82A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_2: - symbol: gKartWario077Wheel2 - type: texture - offset: 0x82A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_3: - symbol: gKartWario077Wheel3 - type: texture - offset: 0x82B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_0: - symbol: gKartWario078Wheel0 - type: texture - offset: 0x82B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_1: - symbol: gKartWario078Wheel1 - type: texture - offset: 0x82C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_2: - symbol: gKartWario078Wheel2 - type: texture - offset: 0x82C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_3: - symbol: gKartWario078Wheel3 - type: texture - offset: 0x82D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_0: - symbol: gKartWario079Wheel0 - type: texture - offset: 0x82D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_1: - symbol: gKartWario079Wheel1 - type: texture - offset: 0x82E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_2: - symbol: gKartWario079Wheel2 - type: texture - offset: 0x82E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_3: - symbol: gKartWario079Wheel3 - type: texture - offset: 0x82F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_0: - symbol: gKartWario080Wheel0 - type: texture - offset: 0x82F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_1: - symbol: gKartWario080Wheel1 - type: texture - offset: 0x8301C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_2: - symbol: gKartWario080Wheel2 - type: texture - offset: 0x8309C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_3: - symbol: gKartWario080Wheel3 - type: texture - offset: 0x8311C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_0: - symbol: gKartWario081Wheel0 - type: texture - offset: 0x8319C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_1: - symbol: gKartWario081Wheel1 - type: texture - offset: 0x8321C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_2: - symbol: gKartWario081Wheel2 - type: texture - offset: 0x8329C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_3: - symbol: gKartWario081Wheel3 - type: texture - offset: 0x8331C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_0: - symbol: gKartWario082Wheel0 - type: texture - offset: 0x8339C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_1: - symbol: gKartWario082Wheel1 - type: texture - offset: 0x8341C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_2: - symbol: gKartWario082Wheel2 - type: texture - offset: 0x8349C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_3: - symbol: gKartWario082Wheel3 - type: texture - offset: 0x8351C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_0: - symbol: gKartWario083Wheel0 - type: texture - offset: 0x8359C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_1: - symbol: gKartWario083Wheel1 - type: texture - offset: 0x8361C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_2: - symbol: gKartWario083Wheel2 - type: texture - offset: 0x8369C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_3: - symbol: gKartWario083Wheel3 - type: texture - offset: 0x8371C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_0: - symbol: gKartWario084Wheel0 - type: texture - offset: 0x8379C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_1: - symbol: gKartWario084Wheel1 - type: texture - offset: 0x8381C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_2: - symbol: gKartWario084Wheel2 - type: texture - offset: 0x8389C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_3: - symbol: gKartWario084Wheel3 - type: texture - offset: 0x8391C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_0: - symbol: gKartWario085Wheel0 - type: texture - offset: 0x8399C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_1: - symbol: gKartWario085Wheel1 - type: texture - offset: 0x83A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_2: - symbol: gKartWario085Wheel2 - type: texture - offset: 0x83A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_3: - symbol: gKartWario085Wheel3 - type: texture - offset: 0x83B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_0: - symbol: gKartWario086Wheel0 - type: texture - offset: 0x83B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_1: - symbol: gKartWario086Wheel1 - type: texture - offset: 0x83C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_2: - symbol: gKartWario086Wheel2 - type: texture - offset: 0x83C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_3: - symbol: gKartWario086Wheel3 - type: texture - offset: 0x83D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_0: - symbol: gKartWario087Wheel0 - type: texture - offset: 0x83D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_1: - symbol: gKartWario087Wheel1 - type: texture - offset: 0x83E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_2: - symbol: gKartWario087Wheel2 - type: texture - offset: 0x83E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_3: - symbol: gKartWario087Wheel3 - type: texture - offset: 0x83F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_0: - symbol: gKartWario088Wheel0 - type: texture - offset: 0x83F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_1: - symbol: gKartWario088Wheel1 - type: texture - offset: 0x8401C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_2: - symbol: gKartWario088Wheel2 - type: texture - offset: 0x8409C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_3: - symbol: gKartWario088Wheel3 - type: texture - offset: 0x8411C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_0: - symbol: gKartWario089Wheel0 - type: texture - offset: 0x8419C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_1: - symbol: gKartWario089Wheel1 - type: texture - offset: 0x8421C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_2: - symbol: gKartWario089Wheel2 - type: texture - offset: 0x8429C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_3: - symbol: gKartWario089Wheel3 - type: texture - offset: 0x8431C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_0: - symbol: gKartWario090Wheel0 - type: texture - offset: 0x8439C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_1: - symbol: gKartWario090Wheel1 - type: texture - offset: 0x8441C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_2: - symbol: gKartWario090Wheel2 - type: texture - offset: 0x8449C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_3: - symbol: gKartWario090Wheel3 - type: texture - offset: 0x8451C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_0: - symbol: gKartWario091Wheel0 - type: texture - offset: 0x8459C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_1: - symbol: gKartWario091Wheel1 - type: texture - offset: 0x8461C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_2: - symbol: gKartWario091Wheel2 - type: texture - offset: 0x8469C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_3: - symbol: gKartWario091Wheel3 - type: texture - offset: 0x8471C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_0: - symbol: gKartWario092Wheel0 - type: texture - offset: 0x8479C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_1: - symbol: gKartWario092Wheel1 - type: texture - offset: 0x8481C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_2: - symbol: gKartWario092Wheel2 - type: texture - offset: 0x8489C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_3: - symbol: gKartWario092Wheel3 - type: texture - offset: 0x8491C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_0: - symbol: gKartWario093Wheel0 - type: texture - offset: 0x8499C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_1: - symbol: gKartWario093Wheel1 - type: texture - offset: 0x84A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_2: - symbol: gKartWario093Wheel2 - type: texture - offset: 0x84A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_3: - symbol: gKartWario093Wheel3 - type: texture - offset: 0x84B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_0: - symbol: gKartWario094Wheel0 - type: texture - offset: 0x84B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_1: - symbol: gKartWario094Wheel1 - type: texture - offset: 0x84C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_2: - symbol: gKartWario094Wheel2 - type: texture - offset: 0x84C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_3: - symbol: gKartWario094Wheel3 - type: texture - offset: 0x84D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_0: - symbol: gKartWario095Wheel0 - type: texture - offset: 0x84D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_1: - symbol: gKartWario095Wheel1 - type: texture - offset: 0x84E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_2: - symbol: gKartWario095Wheel2 - type: texture - offset: 0x84E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_3: - symbol: gKartWario095Wheel3 - type: texture - offset: 0x84F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_0: - symbol: gKartWario096Wheel0 - type: texture - offset: 0x84F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_1: - symbol: gKartWario096Wheel1 - type: texture - offset: 0x8501C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_2: - symbol: gKartWario096Wheel2 - type: texture - offset: 0x8509C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_3: - symbol: gKartWario096Wheel3 - type: texture - offset: 0x8511C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_0: - symbol: gKartWario097Wheel0 - type: texture - offset: 0x8519C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_1: - symbol: gKartWario097Wheel1 - type: texture - offset: 0x8521C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_2: - symbol: gKartWario097Wheel2 - type: texture - offset: 0x8529C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_3: - symbol: gKartWario097Wheel3 - type: texture - offset: 0x8531C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_0: - symbol: gKartWario098Wheel0 - type: texture - offset: 0x8539C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_1: - symbol: gKartWario098Wheel1 - type: texture - offset: 0x8541C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_2: - symbol: gKartWario098Wheel2 - type: texture - offset: 0x8549C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_3: - symbol: gKartWario098Wheel3 - type: texture - offset: 0x8551C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_0: - symbol: gKartWario099Wheel0 - type: texture - offset: 0x8559C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_1: - symbol: gKartWario099Wheel1 - type: texture - offset: 0x8561C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_2: - symbol: gKartWario099Wheel2 - type: texture - offset: 0x8569C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_3: - symbol: gKartWario099Wheel3 - type: texture - offset: 0x8571C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_0: - symbol: gKartWario100Wheel0 - type: texture - offset: 0x8579C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_1: - symbol: gKartWario100Wheel1 - type: texture - offset: 0x8581C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_2: - symbol: gKartWario100Wheel2 - type: texture - offset: 0x8589C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_3: - symbol: gKartWario100Wheel3 - type: texture - offset: 0x8591C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_0: - symbol: gKartWario101Wheel0 - type: texture - offset: 0x8599C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_1: - symbol: gKartWario101Wheel1 - type: texture - offset: 0x85A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_2: - symbol: gKartWario101Wheel2 - type: texture - offset: 0x85A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_3: - symbol: gKartWario101Wheel3 - type: texture - offset: 0x85B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_0: - symbol: gKartWario102Wheel0 - type: texture - offset: 0x85B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_1: - symbol: gKartWario102Wheel1 - type: texture - offset: 0x85C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_2: - symbol: gKartWario102Wheel2 - type: texture - offset: 0x85C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_3: - symbol: gKartWario102Wheel3 - type: texture - offset: 0x85D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_0: - symbol: gKartWario103Wheel0 - type: texture - offset: 0x85D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_1: - symbol: gKartWario103Wheel1 - type: texture - offset: 0x85E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_2: - symbol: gKartWario103Wheel2 - type: texture - offset: 0x85E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_3: - symbol: gKartWario103Wheel3 - type: texture - offset: 0x85F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_0: - symbol: gKartWario104Wheel0 - type: texture - offset: 0x85F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_1: - symbol: gKartWario104Wheel1 - type: texture - offset: 0x8601C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_2: - symbol: gKartWario104Wheel2 - type: texture - offset: 0x8609C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_3: - symbol: gKartWario104Wheel3 - type: texture - offset: 0x8611C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_0: - symbol: gKartWario105Wheel0 - type: texture - offset: 0x8619C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_1: - symbol: gKartWario105Wheel1 - type: texture - offset: 0x8621C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_2: - symbol: gKartWario105Wheel2 - type: texture - offset: 0x8629C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_3: - symbol: gKartWario105Wheel3 - type: texture - offset: 0x8631C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_0: - symbol: gKartWario106Wheel0 - type: texture - offset: 0x8639C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_1: - symbol: gKartWario106Wheel1 - type: texture - offset: 0x8641C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_2: - symbol: gKartWario106Wheel2 - type: texture - offset: 0x8649C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_3: - symbol: gKartWario106Wheel3 - type: texture - offset: 0x8651C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_0: - symbol: gKartWario107Wheel0 - type: texture - offset: 0x8659C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_1: - symbol: gKartWario107Wheel1 - type: texture - offset: 0x8661C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_2: - symbol: gKartWario107Wheel2 - type: texture - offset: 0x8669C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_3: - symbol: gKartWario107Wheel3 - type: texture - offset: 0x8671C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_0: - symbol: gKartWario108Wheel0 - type: texture - offset: 0x8679C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_1: - symbol: gKartWario108Wheel1 - type: texture - offset: 0x8681C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_2: - symbol: gKartWario108Wheel2 - type: texture - offset: 0x8689C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_3: - symbol: gKartWario108Wheel3 - type: texture - offset: 0x8691C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_0: - symbol: gKartWario109Wheel0 - type: texture - offset: 0x8699C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_1: - symbol: gKartWario109Wheel1 - type: texture - offset: 0x86A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_2: - symbol: gKartWario109Wheel2 - type: texture - offset: 0x86A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_3: - symbol: gKartWario109Wheel3 - type: texture - offset: 0x86B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_0: - symbol: gKartWario110Wheel0 - type: texture - offset: 0x86B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_1: - symbol: gKartWario110Wheel1 - type: texture - offset: 0x86C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_2: - symbol: gKartWario110Wheel2 - type: texture - offset: 0x86C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_3: - symbol: gKartWario110Wheel3 - type: texture - offset: 0x86D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_0: - symbol: gKartWario111Wheel0 - type: texture - offset: 0x86D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_1: - symbol: gKartWario111Wheel1 - type: texture - offset: 0x86E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_2: - symbol: gKartWario111Wheel2 - type: texture - offset: 0x86E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_3: - symbol: gKartWario111Wheel3 - type: texture - offset: 0x86F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_0: - symbol: gKartWario112Wheel0 - type: texture - offset: 0x86F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_1: - symbol: gKartWario112Wheel1 - type: texture - offset: 0x8701C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_2: - symbol: gKartWario112Wheel2 - type: texture - offset: 0x8709C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_3: - symbol: gKartWario112Wheel3 - type: texture - offset: 0x8711C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_0: - symbol: gKartWario113Wheel0 - type: texture - offset: 0x8719C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_1: - symbol: gKartWario113Wheel1 - type: texture - offset: 0x8721C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_2: - symbol: gKartWario113Wheel2 - type: texture - offset: 0x8729C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_3: - symbol: gKartWario113Wheel3 - type: texture - offset: 0x8731C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_0: - symbol: gKartWario114Wheel0 - type: texture - offset: 0x8739C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_1: - symbol: gKartWario114Wheel1 - type: texture - offset: 0x8741C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_2: - symbol: gKartWario114Wheel2 - type: texture - offset: 0x8749C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_3: - symbol: gKartWario114Wheel3 - type: texture - offset: 0x8751C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_0: - symbol: gKartWario115Wheel0 - type: texture - offset: 0x8759C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_1: - symbol: gKartWario115Wheel1 - type: texture - offset: 0x8761C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_2: - symbol: gKartWario115Wheel2 - type: texture - offset: 0x8769C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_3: - symbol: gKartWario115Wheel3 - type: texture - offset: 0x8771C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_0: - symbol: gKartWario116Wheel0 - type: texture - offset: 0x8779C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_1: - symbol: gKartWario116Wheel1 - type: texture - offset: 0x8781C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_2: - symbol: gKartWario116Wheel2 - type: texture - offset: 0x8789C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_3: - symbol: gKartWario116Wheel3 - type: texture - offset: 0x8791C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_0: - symbol: gKartWario117Wheel0 - type: texture - offset: 0x8799C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_1: - symbol: gKartWario117Wheel1 - type: texture - offset: 0x87A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_2: - symbol: gKartWario117Wheel2 - type: texture - offset: 0x87A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_3: - symbol: gKartWario117Wheel3 - type: texture - offset: 0x87B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_0: - symbol: gKartWario118Wheel0 - type: texture - offset: 0x87B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_1: - symbol: gKartWario118Wheel1 - type: texture - offset: 0x87C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_2: - symbol: gKartWario118Wheel2 - type: texture - offset: 0x87C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_3: - symbol: gKartWario118Wheel3 - type: texture - offset: 0x87D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_0: - symbol: gKartWario119Wheel0 - type: texture - offset: 0x87D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_1: - symbol: gKartWario119Wheel1 - type: texture - offset: 0x87E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_2: - symbol: gKartWario119Wheel2 - type: texture - offset: 0x87E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_3: - symbol: gKartWario119Wheel3 - type: texture - offset: 0x87F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_0: - symbol: gKartWario120Wheel0 - type: texture - offset: 0x87F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_1: - symbol: gKartWario120Wheel1 - type: texture - offset: 0x8801C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_2: - symbol: gKartWario120Wheel2 - type: texture - offset: 0x8809C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_3: - symbol: gKartWario120Wheel3 - type: texture - offset: 0x8811C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_0: - symbol: gKartWario121Wheel0 - type: texture - offset: 0x8819C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_1: - symbol: gKartWario121Wheel1 - type: texture - offset: 0x8821C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_2: - symbol: gKartWario121Wheel2 - type: texture - offset: 0x8829C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_3: - symbol: gKartWario121Wheel3 - type: texture - offset: 0x8831C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_0: - symbol: gKartWario122Wheel0 - type: texture - offset: 0x8839C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_1: - symbol: gKartWario122Wheel1 - type: texture - offset: 0x8841C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_2: - symbol: gKartWario122Wheel2 - type: texture - offset: 0x8849C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_3: - symbol: gKartWario122Wheel3 - type: texture - offset: 0x8851C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_0: - symbol: gKartWario123Wheel0 - type: texture - offset: 0x8859C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_1: - symbol: gKartWario123Wheel1 - type: texture - offset: 0x8861C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_2: - symbol: gKartWario123Wheel2 - type: texture - offset: 0x8869C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_3: - symbol: gKartWario123Wheel3 - type: texture - offset: 0x8871C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_0: - symbol: gKartWario124Wheel0 - type: texture - offset: 0x8879C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_1: - symbol: gKartWario124Wheel1 - type: texture - offset: 0x8881C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_2: - symbol: gKartWario124Wheel2 - type: texture - offset: 0x8889C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_3: - symbol: gKartWario124Wheel3 - type: texture - offset: 0x8891C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_0: - symbol: gKartWario125Wheel0 - type: texture - offset: 0x8899C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_1: - symbol: gKartWario125Wheel1 - type: texture - offset: 0x88A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_2: - symbol: gKartWario125Wheel2 - type: texture - offset: 0x88A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_3: - symbol: gKartWario125Wheel3 - type: texture - offset: 0x88B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_0: - symbol: gKartWario126Wheel0 - type: texture - offset: 0x88B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_1: - symbol: gKartWario126Wheel1 - type: texture - offset: 0x88C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_2: - symbol: gKartWario126Wheel2 - type: texture - offset: 0x88C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_3: - symbol: gKartWario126Wheel3 - type: texture - offset: 0x88D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_0: - symbol: gKartWario127Wheel0 - type: texture - offset: 0x88D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_1: - symbol: gKartWario127Wheel1 - type: texture - offset: 0x88E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_2: - symbol: gKartWario127Wheel2 - type: texture - offset: 0x88E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_3: - symbol: gKartWario127Wheel3 - type: texture - offset: 0x88F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_0: - symbol: gKartWario128Wheel0 - type: texture - offset: 0x88F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_1: - symbol: gKartWario128Wheel1 - type: texture - offset: 0x8901C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_2: - symbol: gKartWario128Wheel2 - type: texture - offset: 0x8909C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_3: - symbol: gKartWario128Wheel3 - type: texture - offset: 0x8911C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_0: - symbol: gKartWario129Wheel0 - type: texture - offset: 0x8919C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_1: - symbol: gKartWario129Wheel1 - type: texture - offset: 0x8921C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_2: - symbol: gKartWario129Wheel2 - type: texture - offset: 0x8929C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_3: - symbol: gKartWario129Wheel3 - type: texture - offset: 0x8931C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_0: - symbol: gKartWario130Wheel0 - type: texture - offset: 0x8939C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_1: - symbol: gKartWario130Wheel1 - type: texture - offset: 0x8941C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_2: - symbol: gKartWario130Wheel2 - type: texture - offset: 0x8949C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_3: - symbol: gKartWario130Wheel3 - type: texture - offset: 0x8951C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_0: - symbol: gKartWario131Wheel0 - type: texture - offset: 0x8959C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_1: - symbol: gKartWario131Wheel1 - type: texture - offset: 0x8961C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_2: - symbol: gKartWario131Wheel2 - type: texture - offset: 0x8969C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_3: - symbol: gKartWario131Wheel3 - type: texture - offset: 0x8971C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_0: - symbol: gKartWario132Wheel0 - type: texture - offset: 0x8979C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_1: - symbol: gKartWario132Wheel1 - type: texture - offset: 0x8981C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_2: - symbol: gKartWario132Wheel2 - type: texture - offset: 0x8989C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_3: - symbol: gKartWario132Wheel3 - type: texture - offset: 0x8991C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_0: - symbol: gKartWario133Wheel0 - type: texture - offset: 0x8999C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_1: - symbol: gKartWario133Wheel1 - type: texture - offset: 0x89A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_2: - symbol: gKartWario133Wheel2 - type: texture - offset: 0x89A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_3: - symbol: gKartWario133Wheel3 - type: texture - offset: 0x89B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_0: - symbol: gKartWario134Wheel0 - type: texture - offset: 0x89B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_1: - symbol: gKartWario134Wheel1 - type: texture - offset: 0x89C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_2: - symbol: gKartWario134Wheel2 - type: texture - offset: 0x89C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_3: - symbol: gKartWario134Wheel3 - type: texture - offset: 0x89D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_0: - symbol: gKartWario135Wheel0 - type: texture - offset: 0x89D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_1: - symbol: gKartWario135Wheel1 - type: texture - offset: 0x89E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_2: - symbol: gKartWario135Wheel2 - type: texture - offset: 0x89E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_3: - symbol: gKartWario135Wheel3 - type: texture - offset: 0x89F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_0: - symbol: gKartWario136Wheel0 - type: texture - offset: 0x89F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_1: - symbol: gKartWario136Wheel1 - type: texture - offset: 0x8A01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_2: - symbol: gKartWario136Wheel2 - type: texture - offset: 0x8A09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_3: - symbol: gKartWario136Wheel3 - type: texture - offset: 0x8A11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_0: - symbol: gKartWario137Wheel0 - type: texture - offset: 0x8A19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_1: - symbol: gKartWario137Wheel1 - type: texture - offset: 0x8A21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_2: - symbol: gKartWario137Wheel2 - type: texture - offset: 0x8A29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_3: - symbol: gKartWario137Wheel3 - type: texture - offset: 0x8A31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_0: - symbol: gKartWario138Wheel0 - type: texture - offset: 0x8A39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_1: - symbol: gKartWario138Wheel1 - type: texture - offset: 0x8A41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_2: - symbol: gKartWario138Wheel2 - type: texture - offset: 0x8A49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_3: - symbol: gKartWario138Wheel3 - type: texture - offset: 0x8A51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_0: - symbol: gKartWario139Wheel0 - type: texture - offset: 0x8A59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_1: - symbol: gKartWario139Wheel1 - type: texture - offset: 0x8A61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_2: - symbol: gKartWario139Wheel2 - type: texture - offset: 0x8A69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_3: - symbol: gKartWario139Wheel3 - type: texture - offset: 0x8A71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_0: - symbol: gKartWario140Wheel0 - type: texture - offset: 0x8A79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_1: - symbol: gKartWario140Wheel1 - type: texture - offset: 0x8A81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_2: - symbol: gKartWario140Wheel2 - type: texture - offset: 0x8A89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_3: - symbol: gKartWario140Wheel3 - type: texture - offset: 0x8A91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_0: - symbol: gKartWario141Wheel0 - type: texture - offset: 0x8A99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_1: - symbol: gKartWario141Wheel1 - type: texture - offset: 0x8AA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_2: - symbol: gKartWario141Wheel2 - type: texture - offset: 0x8AA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_3: - symbol: gKartWario141Wheel3 - type: texture - offset: 0x8AB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_0: - symbol: gKartWario142Wheel0 - type: texture - offset: 0x8AB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_1: - symbol: gKartWario142Wheel1 - type: texture - offset: 0x8AC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_2: - symbol: gKartWario142Wheel2 - type: texture - offset: 0x8AC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_3: - symbol: gKartWario142Wheel3 - type: texture - offset: 0x8AD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_0: - symbol: gKartWario143Wheel0 - type: texture - offset: 0x8AD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_1: - symbol: gKartWario143Wheel1 - type: texture - offset: 0x8AE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_2: - symbol: gKartWario143Wheel2 - type: texture - offset: 0x8AE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_3: - symbol: gKartWario143Wheel3 - type: texture - offset: 0x8AF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_0: - symbol: gKartWario144Wheel0 - type: texture - offset: 0x8AF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_1: - symbol: gKartWario144Wheel1 - type: texture - offset: 0x8B01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_2: - symbol: gKartWario144Wheel2 - type: texture - offset: 0x8B09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_3: - symbol: gKartWario144Wheel3 - type: texture - offset: 0x8B11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_0: - symbol: gKartWario145Wheel0 - type: texture - offset: 0x8B19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_1: - symbol: gKartWario145Wheel1 - type: texture - offset: 0x8B21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_2: - symbol: gKartWario145Wheel2 - type: texture - offset: 0x8B29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_3: - symbol: gKartWario145Wheel3 - type: texture - offset: 0x8B31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_0: - symbol: gKartWario146Wheel0 - type: texture - offset: 0x8B39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_1: - symbol: gKartWario146Wheel1 - type: texture - offset: 0x8B41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_2: - symbol: gKartWario146Wheel2 - type: texture - offset: 0x8B49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_3: - symbol: gKartWario146Wheel3 - type: texture - offset: 0x8B51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_0: - symbol: gKartWario147Wheel0 - type: texture - offset: 0x8B59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_1: - symbol: gKartWario147Wheel1 - type: texture - offset: 0x8B61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_2: - symbol: gKartWario147Wheel2 - type: texture - offset: 0x8B69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_3: - symbol: gKartWario147Wheel3 - type: texture - offset: 0x8B71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_0: - symbol: gKartWario148Wheel0 - type: texture - offset: 0x8B79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_1: - symbol: gKartWario148Wheel1 - type: texture - offset: 0x8B81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_2: - symbol: gKartWario148Wheel2 - type: texture - offset: 0x8B89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_3: - symbol: gKartWario148Wheel3 - type: texture - offset: 0x8B91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_0: - symbol: gKartWario149Wheel0 - type: texture - offset: 0x8B99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_1: - symbol: gKartWario149Wheel1 - type: texture - offset: 0x8BA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_2: - symbol: gKartWario149Wheel2 - type: texture - offset: 0x8BA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_3: - symbol: gKartWario149Wheel3 - type: texture - offset: 0x8BB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_0: - symbol: gKartWario150Wheel0 - type: texture - offset: 0x8BB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_1: - symbol: gKartWario150Wheel1 - type: texture - offset: 0x8BC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_2: - symbol: gKartWario150Wheel2 - type: texture - offset: 0x8BC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_3: - symbol: gKartWario150Wheel3 - type: texture - offset: 0x8BD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_0: - symbol: gKartWario151Wheel0 - type: texture - offset: 0x8BD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_1: - symbol: gKartWario151Wheel1 - type: texture - offset: 0x8BE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_2: - symbol: gKartWario151Wheel2 - type: texture - offset: 0x8BE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_3: - symbol: gKartWario151Wheel3 - type: texture - offset: 0x8BF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_0: - symbol: gKartWario152Wheel0 - type: texture - offset: 0x8BF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_1: - symbol: gKartWario152Wheel1 - type: texture - offset: 0x8C01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_2: - symbol: gKartWario152Wheel2 - type: texture - offset: 0x8C09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_3: - symbol: gKartWario152Wheel3 - type: texture - offset: 0x8C11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_0: - symbol: gKartWario153Wheel0 - type: texture - offset: 0x8C19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_1: - symbol: gKartWario153Wheel1 - type: texture - offset: 0x8C21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_2: - symbol: gKartWario153Wheel2 - type: texture - offset: 0x8C29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_3: - symbol: gKartWario153Wheel3 - type: texture - offset: 0x8C31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_0: - symbol: gKartWario154Wheel0 - type: texture - offset: 0x8C39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_1: - symbol: gKartWario154Wheel1 - type: texture - offset: 0x8C41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_2: - symbol: gKartWario154Wheel2 - type: texture - offset: 0x8C49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_3: - symbol: gKartWario154Wheel3 - type: texture - offset: 0x8C51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_0: - symbol: gKartWario155Wheel0 - type: texture - offset: 0x8C59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_1: - symbol: gKartWario155Wheel1 - type: texture - offset: 0x8C61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_2: - symbol: gKartWario155Wheel2 - type: texture - offset: 0x8C69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_3: - symbol: gKartWario155Wheel3 - type: texture - offset: 0x8C71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_0: - symbol: gKartWario156Wheel0 - type: texture - offset: 0x8C79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_1: - symbol: gKartWario156Wheel1 - type: texture - offset: 0x8C81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_2: - symbol: gKartWario156Wheel2 - type: texture - offset: 0x8C89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_3: - symbol: gKartWario156Wheel3 - type: texture - offset: 0x8C91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_0: - symbol: gKartWario157Wheel0 - type: texture - offset: 0x8C99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_1: - symbol: gKartWario157Wheel1 - type: texture - offset: 0x8CA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_2: - symbol: gKartWario157Wheel2 - type: texture - offset: 0x8CA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_3: - symbol: gKartWario157Wheel3 - type: texture - offset: 0x8CB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_0: - symbol: gKartWario158Wheel0 - type: texture - offset: 0x8CB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_1: - symbol: gKartWario158Wheel1 - type: texture - offset: 0x8CC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_2: - symbol: gKartWario158Wheel2 - type: texture - offset: 0x8CC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_3: - symbol: gKartWario158Wheel3 - type: texture - offset: 0x8CD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_0: - symbol: gKartWario159Wheel0 - type: texture - offset: 0x8CD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_1: - symbol: gKartWario159Wheel1 - type: texture - offset: 0x8CE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_2: - symbol: gKartWario159Wheel2 - type: texture - offset: 0x8CE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_3: - symbol: gKartWario159Wheel3 - type: texture - offset: 0x8CF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_0: - symbol: gKartWario160Wheel0 - type: texture - offset: 0x8CF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_1: - symbol: gKartWario160Wheel1 - type: texture - offset: 0x8D01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_2: - symbol: gKartWario160Wheel2 - type: texture - offset: 0x8D09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_3: - symbol: gKartWario160Wheel3 - type: texture - offset: 0x8D11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_0: - symbol: gKartWario161Wheel0 - type: texture - offset: 0x8D19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_1: - symbol: gKartWario161Wheel1 - type: texture - offset: 0x8D21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_2: - symbol: gKartWario161Wheel2 - type: texture - offset: 0x8D29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_3: - symbol: gKartWario161Wheel3 - type: texture - offset: 0x8D31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_0: - symbol: gKartWario162Wheel0 - type: texture - offset: 0x8D39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_1: - symbol: gKartWario162Wheel1 - type: texture - offset: 0x8D41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_2: - symbol: gKartWario162Wheel2 - type: texture - offset: 0x8D49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_3: - symbol: gKartWario162Wheel3 - type: texture - offset: 0x8D51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_0: - symbol: gKartWario163Wheel0 - type: texture - offset: 0x8D59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_1: - symbol: gKartWario163Wheel1 - type: texture - offset: 0x8D61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_2: - symbol: gKartWario163Wheel2 - type: texture - offset: 0x8D69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_3: - symbol: gKartWario163Wheel3 - type: texture - offset: 0x8D71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_0: - symbol: gKartWario164Wheel0 - type: texture - offset: 0x8D79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_1: - symbol: gKartWario164Wheel1 - type: texture - offset: 0x8D81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_2: - symbol: gKartWario164Wheel2 - type: texture - offset: 0x8D89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_3: - symbol: gKartWario164Wheel3 - type: texture - offset: 0x8D91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_0: - symbol: gKartWario165Wheel0 - type: texture - offset: 0x8D99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_1: - symbol: gKartWario165Wheel1 - type: texture - offset: 0x8DA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_2: - symbol: gKartWario165Wheel2 - type: texture - offset: 0x8DA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_3: - symbol: gKartWario165Wheel3 - type: texture - offset: 0x8DB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_0: - symbol: gKartWario166Wheel0 - type: texture - offset: 0x8DB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_1: - symbol: gKartWario166Wheel1 - type: texture - offset: 0x8DC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_2: - symbol: gKartWario166Wheel2 - type: texture - offset: 0x8DC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_3: - symbol: gKartWario166Wheel3 - type: texture - offset: 0x8DD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_0: - symbol: gKartWario167Wheel0 - type: texture - offset: 0x8DD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_1: - symbol: gKartWario167Wheel1 - type: texture - offset: 0x8DE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_2: - symbol: gKartWario167Wheel2 - type: texture - offset: 0x8DE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_3: - symbol: gKartWario167Wheel3 - type: texture - offset: 0x8DF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_0: - symbol: gKartWario168Wheel0 - type: texture - offset: 0x8DF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_1: - symbol: gKartWario168Wheel1 - type: texture - offset: 0x8E01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_2: - symbol: gKartWario168Wheel2 - type: texture - offset: 0x8E09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_3: - symbol: gKartWario168Wheel3 - type: texture - offset: 0x8E11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_0: - symbol: gKartWario169Wheel0 - type: texture - offset: 0x8E19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_1: - symbol: gKartWario169Wheel1 - type: texture - offset: 0x8E21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_2: - symbol: gKartWario169Wheel2 - type: texture - offset: 0x8E29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_3: - symbol: gKartWario169Wheel3 - type: texture - offset: 0x8E31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_0: - symbol: gKartWario170Wheel0 - type: texture - offset: 0x8E39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_1: - symbol: gKartWario170Wheel1 - type: texture - offset: 0x8E41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_2: - symbol: gKartWario170Wheel2 - type: texture - offset: 0x8E49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_3: - symbol: gKartWario170Wheel3 - type: texture - offset: 0x8E51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_0: - symbol: gKartWario171Wheel0 - type: texture - offset: 0x8E59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_1: - symbol: gKartWario171Wheel1 - type: texture - offset: 0x8E61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_2: - symbol: gKartWario171Wheel2 - type: texture - offset: 0x8E69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_3: - symbol: gKartWario171Wheel3 - type: texture - offset: 0x8E71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_0: - symbol: gKartWario172Wheel0 - type: texture - offset: 0x8E79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_1: - symbol: gKartWario172Wheel1 - type: texture - offset: 0x8E81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_2: - symbol: gKartWario172Wheel2 - type: texture - offset: 0x8E89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_3: - symbol: gKartWario172Wheel3 - type: texture - offset: 0x8E91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_0: - symbol: gKartWario173Wheel0 - type: texture - offset: 0x8E99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_1: - symbol: gKartWario173Wheel1 - type: texture - offset: 0x8EA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_2: - symbol: gKartWario173Wheel2 - type: texture - offset: 0x8EA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_3: - symbol: gKartWario173Wheel3 - type: texture - offset: 0x8EB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_0: - symbol: gKartWario174Wheel0 - type: texture - offset: 0x8EB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_1: - symbol: gKartWario174Wheel1 - type: texture - offset: 0x8EC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_2: - symbol: gKartWario174Wheel2 - type: texture - offset: 0x8EC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_3: - symbol: gKartWario174Wheel3 - type: texture - offset: 0x8ED1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_0: - symbol: gKartWario175Wheel0 - type: texture - offset: 0x8ED9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_1: - symbol: gKartWario175Wheel1 - type: texture - offset: 0x8EE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_2: - symbol: gKartWario175Wheel2 - type: texture - offset: 0x8EE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_3: - symbol: gKartWario175Wheel3 - type: texture - offset: 0x8EF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_0: - symbol: gKartWario176Wheel0 - type: texture - offset: 0x8EF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_1: - symbol: gKartWario176Wheel1 - type: texture - offset: 0x8F01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_2: - symbol: gKartWario176Wheel2 - type: texture - offset: 0x8F09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_3: - symbol: gKartWario176Wheel3 - type: texture - offset: 0x8F11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_0: - symbol: gKartWario177Wheel0 - type: texture - offset: 0x8F19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_1: - symbol: gKartWario177Wheel1 - type: texture - offset: 0x8F21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_2: - symbol: gKartWario177Wheel2 - type: texture - offset: 0x8F29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_3: - symbol: gKartWario177Wheel3 - type: texture - offset: 0x8F31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_0: - symbol: gKartWario178Wheel0 - type: texture - offset: 0x8F39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_1: - symbol: gKartWario178Wheel1 - type: texture - offset: 0x8F41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_2: - symbol: gKartWario178Wheel2 - type: texture - offset: 0x8F49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_3: - symbol: gKartWario178Wheel3 - type: texture - offset: 0x8F51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_0: - symbol: gKartWario179Wheel0 - type: texture - offset: 0x8F59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_1: - symbol: gKartWario179Wheel1 - type: texture - offset: 0x8F61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_2: - symbol: gKartWario179Wheel2 - type: texture - offset: 0x8F69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_3: - symbol: gKartWario179Wheel3 - type: texture - offset: 0x8F71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_0: - symbol: gKartWario180Wheel0 - type: texture - offset: 0x8F79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_1: - symbol: gKartWario180Wheel1 - type: texture - offset: 0x8F81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_2: - symbol: gKartWario180Wheel2 - type: texture - offset: 0x8F89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_3: - symbol: gKartWario180Wheel3 - type: texture - offset: 0x8F91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_0: - symbol: gKartWario181Wheel0 - type: texture - offset: 0x8F99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_1: - symbol: gKartWario181Wheel1 - type: texture - offset: 0x8FA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_2: - symbol: gKartWario181Wheel2 - type: texture - offset: 0x8FA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_3: - symbol: gKartWario181Wheel3 - type: texture - offset: 0x8FB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_0: - symbol: gKartWario182Wheel0 - type: texture - offset: 0x8FB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_1: - symbol: gKartWario182Wheel1 - type: texture - offset: 0x8FC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_2: - symbol: gKartWario182Wheel2 - type: texture - offset: 0x8FC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_3: - symbol: gKartWario182Wheel3 - type: texture - offset: 0x8FD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_0: - symbol: gKartWario183Wheel0 - type: texture - offset: 0x8FD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_1: - symbol: gKartWario183Wheel1 - type: texture - offset: 0x8FE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_2: - symbol: gKartWario183Wheel2 - type: texture - offset: 0x8FE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_3: - symbol: gKartWario183Wheel3 - type: texture - offset: 0x8FF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_0: - symbol: gKartWario184Wheel0 - type: texture - offset: 0x8FF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_1: - symbol: gKartWario184Wheel1 - type: texture - offset: 0x9001C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_2: - symbol: gKartWario184Wheel2 - type: texture - offset: 0x9009C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_3: - symbol: gKartWario184Wheel3 - type: texture - offset: 0x9011C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_0: - symbol: gKartWario185Wheel0 - type: texture - offset: 0x9019C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_1: - symbol: gKartWario185Wheel1 - type: texture - offset: 0x9021C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_2: - symbol: gKartWario185Wheel2 - type: texture - offset: 0x9029C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_3: - symbol: gKartWario185Wheel3 - type: texture - offset: 0x9031C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_0: - symbol: gKartWario186Wheel0 - type: texture - offset: 0x9039C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_1: - symbol: gKartWario186Wheel1 - type: texture - offset: 0x9041C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_2: - symbol: gKartWario186Wheel2 - type: texture - offset: 0x9049C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_3: - symbol: gKartWario186Wheel3 - type: texture - offset: 0x9051C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_0: - symbol: gKartWario187Wheel0 - type: texture - offset: 0x9059C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_1: - symbol: gKartWario187Wheel1 - type: texture - offset: 0x9061C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_2: - symbol: gKartWario187Wheel2 - type: texture - offset: 0x9069C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_3: - symbol: gKartWario187Wheel3 - type: texture - offset: 0x9071C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_0: - symbol: gKartWario188Wheel0 - type: texture - offset: 0x9079C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_1: - symbol: gKartWario188Wheel1 - type: texture - offset: 0x9081C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_2: - symbol: gKartWario188Wheel2 - type: texture - offset: 0x9089C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_3: - symbol: gKartWario188Wheel3 - type: texture - offset: 0x9091C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_0: - symbol: gKartWario189Wheel0 - type: texture - offset: 0x9099C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_1: - symbol: gKartWario189Wheel1 - type: texture - offset: 0x90A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_2: - symbol: gKartWario189Wheel2 - type: texture - offset: 0x90A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_3: - symbol: gKartWario189Wheel3 - type: texture - offset: 0x90B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_0: - symbol: gKartWario190Wheel0 - type: texture - offset: 0x90B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_1: - symbol: gKartWario190Wheel1 - type: texture - offset: 0x90C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_2: - symbol: gKartWario190Wheel2 - type: texture - offset: 0x90C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_3: - symbol: gKartWario190Wheel3 - type: texture - offset: 0x90D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_0: - symbol: gKartWario191Wheel0 - type: texture - offset: 0x90D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_1: - symbol: gKartWario191Wheel1 - type: texture - offset: 0x90E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_2: - symbol: gKartWario191Wheel2 - type: texture - offset: 0x90E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_3: - symbol: gKartWario191Wheel3 - type: texture - offset: 0x90F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_0: - symbol: gKartWario192Wheel0 - type: texture - offset: 0x90F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_1: - symbol: gKartWario192Wheel1 - type: texture - offset: 0x9101C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_2: - symbol: gKartWario192Wheel2 - type: texture - offset: 0x9109C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_3: - symbol: gKartWario192Wheel3 - type: texture - offset: 0x9111C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_0: - symbol: gKartWario193Wheel0 - type: texture - offset: 0x9119C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_1: - symbol: gKartWario193Wheel1 - type: texture - offset: 0x9121C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_2: - symbol: gKartWario193Wheel2 - type: texture - offset: 0x9129C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_3: - symbol: gKartWario193Wheel3 - type: texture - offset: 0x9131C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_0: - symbol: gKartWario194Wheel0 - type: texture - offset: 0x9139C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_1: - symbol: gKartWario194Wheel1 - type: texture - offset: 0x9141C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_2: - symbol: gKartWario194Wheel2 - type: texture - offset: 0x9149C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_3: - symbol: gKartWario194Wheel3 - type: texture - offset: 0x9151C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_0: - symbol: gKartWario195Wheel0 - type: texture - offset: 0x9159C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_1: - symbol: gKartWario195Wheel1 - type: texture - offset: 0x9161C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_2: - symbol: gKartWario195Wheel2 - type: texture - offset: 0x9169C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_3: - symbol: gKartWario195Wheel3 - type: texture - offset: 0x9171C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_0: - symbol: gKartWario196Wheel0 - type: texture - offset: 0x9179C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_1: - symbol: gKartWario196Wheel1 - type: texture - offset: 0x9181C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_2: - symbol: gKartWario196Wheel2 - type: texture - offset: 0x9189C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_3: - symbol: gKartWario196Wheel3 - type: texture - offset: 0x9191C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_0: - symbol: gKartWario197Wheel0 - type: texture - offset: 0x9199C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_1: - symbol: gKartWario197Wheel1 - type: texture - offset: 0x91A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_2: - symbol: gKartWario197Wheel2 - type: texture - offset: 0x91A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_3: - symbol: gKartWario197Wheel3 - type: texture - offset: 0x91B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_0: - symbol: gKartWario198Wheel0 - type: texture - offset: 0x91B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_1: - symbol: gKartWario198Wheel1 - type: texture - offset: 0x91C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_2: - symbol: gKartWario198Wheel2 - type: texture - offset: 0x91C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_3: - symbol: gKartWario198Wheel3 - type: texture - offset: 0x91D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_0: - symbol: gKartWario199Wheel0 - type: texture - offset: 0x91D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_1: - symbol: gKartWario199Wheel1 - type: texture - offset: 0x91E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_2: - symbol: gKartWario199Wheel2 - type: texture - offset: 0x91E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_3: - symbol: gKartWario199Wheel3 - type: texture - offset: 0x91F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_0: - symbol: gKartWario200Wheel0 - type: texture - offset: 0x91F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_1: - symbol: gKartWario200Wheel1 - type: texture - offset: 0x9201C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_2: - symbol: gKartWario200Wheel2 - type: texture - offset: 0x9209C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_3: - symbol: gKartWario200Wheel3 - type: texture - offset: 0x9211C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_0: - symbol: gKartWario201Wheel0 - type: texture - offset: 0x9219C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_1: - symbol: gKartWario201Wheel1 - type: texture - offset: 0x9221C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_2: - symbol: gKartWario201Wheel2 - type: texture - offset: 0x9229C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_3: - symbol: gKartWario201Wheel3 - type: texture - offset: 0x9231C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_0: - symbol: gKartWario202Wheel0 - type: texture - offset: 0x9239C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_1: - symbol: gKartWario202Wheel1 - type: texture - offset: 0x9241C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_2: - symbol: gKartWario202Wheel2 - type: texture - offset: 0x9249C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_3: - symbol: gKartWario202Wheel3 - type: texture - offset: 0x9251C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_0: - symbol: gKartWario203Wheel0 - type: texture - offset: 0x9259C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_1: - symbol: gKartWario203Wheel1 - type: texture - offset: 0x9261C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_2: - symbol: gKartWario203Wheel2 - type: texture - offset: 0x9269C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_3: - symbol: gKartWario203Wheel3 - type: texture - offset: 0x9271C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_0: - symbol: gKartWario204Wheel0 - type: texture - offset: 0x9279C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_1: - symbol: gKartWario204Wheel1 - type: texture - offset: 0x9281C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_2: - symbol: gKartWario204Wheel2 - type: texture - offset: 0x9289C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_3: - symbol: gKartWario204Wheel3 - type: texture - offset: 0x9291C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_0: - symbol: gKartWario205Wheel0 - type: texture - offset: 0x9299C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_1: - symbol: gKartWario205Wheel1 - type: texture - offset: 0x92A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_2: - symbol: gKartWario205Wheel2 - type: texture - offset: 0x92A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_3: - symbol: gKartWario205Wheel3 - type: texture - offset: 0x92B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_0: - symbol: gKartWario206Wheel0 - type: texture - offset: 0x92B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_1: - symbol: gKartWario206Wheel1 - type: texture - offset: 0x92C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_2: - symbol: gKartWario206Wheel2 - type: texture - offset: 0x92C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_3: - symbol: gKartWario206Wheel3 - type: texture - offset: 0x92D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_0: - symbol: gKartWario207Wheel0 - type: texture - offset: 0x92D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_1: - symbol: gKartWario207Wheel1 - type: texture - offset: 0x92E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_2: - symbol: gKartWario207Wheel2 - type: texture - offset: 0x92E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_3: - symbol: gKartWario207Wheel3 - type: texture - offset: 0x92F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_0: - symbol: gKartWario208Wheel0 - type: texture - offset: 0x92F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_1: - symbol: gKartWario208Wheel1 - type: texture - offset: 0x9301C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_2: - symbol: gKartWario208Wheel2 - type: texture - offset: 0x9309C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_3: - symbol: gKartWario208Wheel3 - type: texture - offset: 0x9311C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_0: - symbol: gKartWario209Wheel0 - type: texture - offset: 0x9319C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_1: - symbol: gKartWario209Wheel1 - type: texture - offset: 0x9321C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_2: - symbol: gKartWario209Wheel2 - type: texture - offset: 0x9329C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_3: - symbol: gKartWario209Wheel3 - type: texture - offset: 0x9331C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_0: - symbol: gKartWario210Wheel0 - type: texture - offset: 0x9339C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_1: - symbol: gKartWario210Wheel1 - type: texture - offset: 0x9341C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_2: - symbol: gKartWario210Wheel2 - type: texture - offset: 0x9349C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_3: - symbol: gKartWario210Wheel3 - type: texture - offset: 0x9351C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_0: - symbol: gKartWario211Wheel0 - type: texture - offset: 0x9359C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_1: - symbol: gKartWario211Wheel1 - type: texture - offset: 0x9361C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_2: - symbol: gKartWario211Wheel2 - type: texture - offset: 0x9369C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_3: - symbol: gKartWario211Wheel3 - type: texture - offset: 0x9371C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_0: - symbol: gKartWario212Wheel0 - type: texture - offset: 0x9379C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_1: - symbol: gKartWario212Wheel1 - type: texture - offset: 0x9381C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_2: - symbol: gKartWario212Wheel2 - type: texture - offset: 0x9389C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_3: - symbol: gKartWario212Wheel3 - type: texture - offset: 0x9391C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_0: - symbol: gKartWario213Wheel0 - type: texture - offset: 0x9399C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_1: - symbol: gKartWario213Wheel1 - type: texture - offset: 0x93A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_2: - symbol: gKartWario213Wheel2 - type: texture - offset: 0x93A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_3: - symbol: gKartWario213Wheel3 - type: texture - offset: 0x93B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_0: - symbol: gKartWario214Wheel0 - type: texture - offset: 0x93B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_1: - symbol: gKartWario214Wheel1 - type: texture - offset: 0x93C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_2: - symbol: gKartWario214Wheel2 - type: texture - offset: 0x93C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_3: - symbol: gKartWario214Wheel3 - type: texture - offset: 0x93D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_0: - symbol: gKartWario215Wheel0 - type: texture - offset: 0x93D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_1: - symbol: gKartWario215Wheel1 - type: texture - offset: 0x93E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_2: - symbol: gKartWario215Wheel2 - type: texture - offset: 0x93E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_3: - symbol: gKartWario215Wheel3 - type: texture - offset: 0x93F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_0: - symbol: gKartWario216Wheel0 - type: texture - offset: 0x93F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_1: - symbol: gKartWario216Wheel1 - type: texture - offset: 0x9401C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_2: - symbol: gKartWario216Wheel2 - type: texture - offset: 0x9409C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_3: - symbol: gKartWario216Wheel3 - type: texture - offset: 0x9411C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_0: - symbol: gKartWario217Wheel0 - type: texture - offset: 0x9419C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_1: - symbol: gKartWario217Wheel1 - type: texture - offset: 0x9421C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_2: - symbol: gKartWario217Wheel2 - type: texture - offset: 0x9429C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_3: - symbol: gKartWario217Wheel3 - type: texture - offset: 0x9431C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_0: - symbol: gKartWario218Wheel0 - type: texture - offset: 0x9439C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_1: - symbol: gKartWario218Wheel1 - type: texture - offset: 0x9441C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_2: - symbol: gKartWario218Wheel2 - type: texture - offset: 0x9449C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_3: - symbol: gKartWario218Wheel3 - type: texture - offset: 0x9451C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_0: - symbol: gKartWario219Wheel0 - type: texture - offset: 0x9459C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_1: - symbol: gKartWario219Wheel1 - type: texture - offset: 0x9461C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_2: - symbol: gKartWario219Wheel2 - type: texture - offset: 0x9469C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_3: - symbol: gKartWario219Wheel3 - type: texture - offset: 0x9471C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_0: - symbol: gKartWario220Wheel0 - type: texture - offset: 0x9479C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_1: - symbol: gKartWario220Wheel1 - type: texture - offset: 0x9481C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_2: - symbol: gKartWario220Wheel2 - type: texture - offset: 0x9489C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_3: - symbol: gKartWario220Wheel3 - type: texture - offset: 0x9491C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_0: - symbol: gKartWario221Wheel0 - type: texture - offset: 0x9499C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_1: - symbol: gKartWario221Wheel1 - type: texture - offset: 0x94A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_2: - symbol: gKartWario221Wheel2 - type: texture - offset: 0x94A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_3: - symbol: gKartWario221Wheel3 - type: texture - offset: 0x94B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_0: - symbol: gKartWario222Wheel0 - type: texture - offset: 0x94B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_1: - symbol: gKartWario222Wheel1 - type: texture - offset: 0x94C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_2: - symbol: gKartWario222Wheel2 - type: texture - offset: 0x94C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_3: - symbol: gKartWario222Wheel3 - type: texture - offset: 0x94D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_0: - symbol: gKartWario223Wheel0 - type: texture - offset: 0x94D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_1: - symbol: gKartWario223Wheel1 - type: texture - offset: 0x94E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_2: - symbol: gKartWario223Wheel2 - type: texture - offset: 0x94E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_3: - symbol: gKartWario223Wheel3 - type: texture - offset: 0x94F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_0: - symbol: gKartWario224Wheel0 - type: texture - offset: 0x94F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_1: - symbol: gKartWario224Wheel1 - type: texture - offset: 0x9501C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_2: - symbol: gKartWario224Wheel2 - type: texture - offset: 0x9509C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_3: - symbol: gKartWario224Wheel3 - type: texture - offset: 0x9511C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_0: - symbol: gKartWario225Wheel0 - type: texture - offset: 0x9519C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_1: - symbol: gKartWario225Wheel1 - type: texture - offset: 0x9521C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_2: - symbol: gKartWario225Wheel2 - type: texture - offset: 0x9529C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_3: - symbol: gKartWario225Wheel3 - type: texture - offset: 0x9531C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_0: - symbol: gKartWario226Wheel0 - type: texture - offset: 0x9539C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_1: - symbol: gKartWario226Wheel1 - type: texture - offset: 0x9541C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_2: - symbol: gKartWario226Wheel2 - type: texture - offset: 0x9549C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_3: - symbol: gKartWario226Wheel3 - type: texture - offset: 0x9551C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_0: - symbol: gKartWario227Wheel0 - type: texture - offset: 0x9559C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_1: - symbol: gKartWario227Wheel1 - type: texture - offset: 0x9561C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_2: - symbol: gKartWario227Wheel2 - type: texture - offset: 0x9569C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_3: - symbol: gKartWario227Wheel3 - type: texture - offset: 0x9571C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_0: - symbol: gKartWario228Wheel0 - type: texture - offset: 0x9579C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_1: - symbol: gKartWario228Wheel1 - type: texture - offset: 0x9581C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_2: - symbol: gKartWario228Wheel2 - type: texture - offset: 0x9589C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_3: - symbol: gKartWario228Wheel3 - type: texture - offset: 0x9591C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_0: - symbol: gKartWario229Wheel0 - type: texture - offset: 0x9599C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_1: - symbol: gKartWario229Wheel1 - type: texture - offset: 0x95A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_2: - symbol: gKartWario229Wheel2 - type: texture - offset: 0x95A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_3: - symbol: gKartWario229Wheel3 - type: texture - offset: 0x95B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_0: - symbol: gKartWario230Wheel0 - type: texture - offset: 0x95B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_1: - symbol: gKartWario230Wheel1 - type: texture - offset: 0x95C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_2: - symbol: gKartWario230Wheel2 - type: texture - offset: 0x95C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_3: - symbol: gKartWario230Wheel3 - type: texture - offset: 0x95D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_0: - symbol: gKartWario231Wheel0 - type: texture - offset: 0x95D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_1: - symbol: gKartWario231Wheel1 - type: texture - offset: 0x95E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_2: - symbol: gKartWario231Wheel2 - type: texture - offset: 0x95E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_3: - symbol: gKartWario231Wheel3 - type: texture - offset: 0x95F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_0: - symbol: gKartWario232Wheel0 - type: texture - offset: 0x95F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_1: - symbol: gKartWario232Wheel1 - type: texture - offset: 0x9601C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_2: - symbol: gKartWario232Wheel2 - type: texture - offset: 0x9609C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_3: - symbol: gKartWario232Wheel3 - type: texture - offset: 0x9611C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_0: - symbol: gKartWario233Wheel0 - type: texture - offset: 0x9619C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_1: - symbol: gKartWario233Wheel1 - type: texture - offset: 0x9621C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_2: - symbol: gKartWario233Wheel2 - type: texture - offset: 0x9629C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_3: - symbol: gKartWario233Wheel3 - type: texture - offset: 0x9631C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_0: - symbol: gKartWario234Wheel0 - type: texture - offset: 0x9639C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_1: - symbol: gKartWario234Wheel1 - type: texture - offset: 0x9641C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_2: - symbol: gKartWario234Wheel2 - type: texture - offset: 0x9649C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_3: - symbol: gKartWario234Wheel3 - type: texture - offset: 0x9651C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_0: - symbol: gKartWario235Wheel0 - type: texture - offset: 0x9659C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_1: - symbol: gKartWario235Wheel1 - type: texture - offset: 0x9661C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_2: - symbol: gKartWario235Wheel2 - type: texture - offset: 0x9669C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_3: - symbol: gKartWario235Wheel3 - type: texture - offset: 0x9671C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_0: - symbol: gKartWario236Wheel0 - type: texture - offset: 0x9679C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_1: - symbol: gKartWario236Wheel1 - type: texture - offset: 0x9681C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_2: - symbol: gKartWario236Wheel2 - type: texture - offset: 0x9689C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_3: - symbol: gKartWario236Wheel3 - type: texture - offset: 0x9691C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_0: - symbol: gKartWario237Wheel0 - type: texture - offset: 0x9699C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_1: - symbol: gKartWario237Wheel1 - type: texture - offset: 0x96A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_2: - symbol: gKartWario237Wheel2 - type: texture - offset: 0x96A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_3: - symbol: gKartWario237Wheel3 - type: texture - offset: 0x96B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_0: - symbol: gKartWario238Wheel0 - type: texture - offset: 0x96B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_1: - symbol: gKartWario238Wheel1 - type: texture - offset: 0x96C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_2: - symbol: gKartWario238Wheel2 - type: texture - offset: 0x96C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_3: - symbol: gKartWario238Wheel3 - type: texture - offset: 0x96D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_0: - symbol: gKartWario239Wheel0 - type: texture - offset: 0x96D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_1: - symbol: gKartWario239Wheel1 - type: texture - offset: 0x96E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_2: - symbol: gKartWario239Wheel2 - type: texture - offset: 0x96E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_3: - symbol: gKartWario239Wheel3 - type: texture - offset: 0x96F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_0: - symbol: gKartWario240Wheel0 - type: texture - offset: 0x96F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_1: - symbol: gKartWario240Wheel1 - type: texture - offset: 0x9701C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_2: - symbol: gKartWario240Wheel2 - type: texture - offset: 0x9709C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_3: - symbol: gKartWario240Wheel3 - type: texture - offset: 0x9711C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_0: - symbol: gKartWario241Wheel0 - type: texture - offset: 0x9719C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_1: - symbol: gKartWario241Wheel1 - type: texture - offset: 0x9721C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_2: - symbol: gKartWario241Wheel2 - type: texture - offset: 0x9729C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_3: - symbol: gKartWario241Wheel3 - type: texture - offset: 0x9731C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_0: - symbol: gKartWario242Wheel0 - type: texture - offset: 0x9739C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_1: - symbol: gKartWario242Wheel1 - type: texture - offset: 0x9741C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_2: - symbol: gKartWario242Wheel2 - type: texture - offset: 0x9749C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_3: - symbol: gKartWario242Wheel3 - type: texture - offset: 0x9751C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_0: - symbol: gKartWario243Wheel0 - type: texture - offset: 0x9759C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_1: - symbol: gKartWario243Wheel1 - type: texture - offset: 0x9761C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_2: - symbol: gKartWario243Wheel2 - type: texture - offset: 0x9769C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_3: - symbol: gKartWario243Wheel3 - type: texture - offset: 0x9771C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_0: - symbol: gKartWario244Wheel0 - type: texture - offset: 0x9779C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_1: - symbol: gKartWario244Wheel1 - type: texture - offset: 0x9781C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_2: - symbol: gKartWario244Wheel2 - type: texture - offset: 0x9789C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_3: - symbol: gKartWario244Wheel3 - type: texture - offset: 0x9791C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_0: - symbol: gKartWario245Wheel0 - type: texture - offset: 0x9799C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_1: - symbol: gKartWario245Wheel1 - type: texture - offset: 0x97A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_2: - symbol: gKartWario245Wheel2 - type: texture - offset: 0x97A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_3: - symbol: gKartWario245Wheel3 - type: texture - offset: 0x97B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_0: - symbol: gKartWario246Wheel0 - type: texture - offset: 0x97B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_1: - symbol: gKartWario246Wheel1 - type: texture - offset: 0x97C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_2: - symbol: gKartWario246Wheel2 - type: texture - offset: 0x97C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_3: - symbol: gKartWario246Wheel3 - type: texture - offset: 0x97D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_0: - symbol: gKartWario247Wheel0 - type: texture - offset: 0x97D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_1: - symbol: gKartWario247Wheel1 - type: texture - offset: 0x97E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_2: - symbol: gKartWario247Wheel2 - type: texture - offset: 0x97E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_3: - symbol: gKartWario247Wheel3 - type: texture - offset: 0x97F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_0: - symbol: gKartWario248Wheel0 - type: texture - offset: 0x97F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_1: - symbol: gKartWario248Wheel1 - type: texture - offset: 0x9801C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_2: - symbol: gKartWario248Wheel2 - type: texture - offset: 0x9809C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_3: - symbol: gKartWario248Wheel3 - type: texture - offset: 0x9811C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_0: - symbol: gKartWario249Wheel0 - type: texture - offset: 0x9819C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_1: - symbol: gKartWario249Wheel1 - type: texture - offset: 0x9821C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_2: - symbol: gKartWario249Wheel2 - type: texture - offset: 0x9829C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_3: - symbol: gKartWario249Wheel3 - type: texture - offset: 0x9831C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_0: - symbol: gKartWario250Wheel0 - type: texture - offset: 0x9839C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_1: - symbol: gKartWario250Wheel1 - type: texture - offset: 0x9841C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_2: - symbol: gKartWario250Wheel2 - type: texture - offset: 0x9849C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_3: - symbol: gKartWario250Wheel3 - type: texture - offset: 0x9851C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_0: - symbol: gKartWario251Wheel0 - type: texture - offset: 0x9859C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_1: - symbol: gKartWario251Wheel1 - type: texture - offset: 0x9861C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_2: - symbol: gKartWario251Wheel2 - type: texture - offset: 0x9869C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_3: - symbol: gKartWario251Wheel3 - type: texture - offset: 0x9871C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_0: - symbol: gKartWario252Wheel0 - type: texture - offset: 0x9879C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_1: - symbol: gKartWario252Wheel1 - type: texture - offset: 0x9881C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_2: - symbol: gKartWario252Wheel2 - type: texture - offset: 0x9889C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_3: - symbol: gKartWario252Wheel3 - type: texture - offset: 0x9891C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_0: - symbol: gKartWario253Wheel0 - type: texture - offset: 0x9899C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_1: - symbol: gKartWario253Wheel1 - type: texture - offset: 0x98A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_2: - symbol: gKartWario253Wheel2 - type: texture - offset: 0x98A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_3: - symbol: gKartWario253Wheel3 - type: texture - offset: 0x98B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_0: - symbol: gKartWario254Wheel0 - type: texture - offset: 0x98B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_1: - symbol: gKartWario254Wheel1 - type: texture - offset: 0x98C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_2: - symbol: gKartWario254Wheel2 - type: texture - offset: 0x98C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_3: - symbol: gKartWario254Wheel3 - type: texture - offset: 0x98D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_0: - symbol: gKartWario255Wheel0 - type: texture - offset: 0x98D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_1: - symbol: gKartWario255Wheel1 - type: texture - offset: 0x98E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_2: - symbol: gKartWario255Wheel2 - type: texture - offset: 0x98E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_3: - symbol: gKartWario255Wheel3 - type: texture - offset: 0x98F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_0: - symbol: gKartWario256Wheel0 - type: texture - offset: 0x98F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_1: - symbol: gKartWario256Wheel1 - type: texture - offset: 0x9901C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_2: - symbol: gKartWario256Wheel2 - type: texture - offset: 0x9909C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_3: - symbol: gKartWario256Wheel3 - type: texture - offset: 0x9911C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_0: - symbol: gKartWario257Wheel0 - type: texture - offset: 0x9919C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_1: - symbol: gKartWario257Wheel1 - type: texture - offset: 0x9921C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_2: - symbol: gKartWario257Wheel2 - type: texture - offset: 0x9929C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_3: - symbol: gKartWario257Wheel3 - type: texture - offset: 0x9931C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_0: - symbol: gKartWario258Wheel0 - type: texture - offset: 0x9939C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_1: - symbol: gKartWario258Wheel1 - type: texture - offset: 0x9941C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_2: - symbol: gKartWario258Wheel2 - type: texture - offset: 0x9949C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_3: - symbol: gKartWario258Wheel3 - type: texture - offset: 0x9951C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_0: - symbol: gKartWario259Wheel0 - type: texture - offset: 0x9959C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_1: - symbol: gKartWario259Wheel1 - type: texture - offset: 0x9961C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_2: - symbol: gKartWario259Wheel2 - type: texture - offset: 0x9969C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_3: - symbol: gKartWario259Wheel3 - type: texture - offset: 0x9971C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_0: - symbol: gKartWario260Wheel0 - type: texture - offset: 0x9979C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_1: - symbol: gKartWario260Wheel1 - type: texture - offset: 0x9981C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_2: - symbol: gKartWario260Wheel2 - type: texture - offset: 0x9989C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_3: - symbol: gKartWario260Wheel3 - type: texture - offset: 0x9991C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_0: - symbol: gKartWario261Wheel0 - type: texture - offset: 0x9999C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_1: - symbol: gKartWario261Wheel1 - type: texture - offset: 0x99A1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_2: - symbol: gKartWario261Wheel2 - type: texture - offset: 0x99A9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_3: - symbol: gKartWario261Wheel3 - type: texture - offset: 0x99B1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_0: - symbol: gKartWario262Wheel0 - type: texture - offset: 0x99B9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_1: - symbol: gKartWario262Wheel1 - type: texture - offset: 0x99C1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_2: - symbol: gKartWario262Wheel2 - type: texture - offset: 0x99C9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_3: - symbol: gKartWario262Wheel3 - type: texture - offset: 0x99D1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_0: - symbol: gKartWario263Wheel0 - type: texture - offset: 0x99D9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_1: - symbol: gKartWario263Wheel1 - type: texture - offset: 0x99E1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_2: - symbol: gKartWario263Wheel2 - type: texture - offset: 0x99E9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_3: - symbol: gKartWario263Wheel3 - type: texture - offset: 0x99F1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_0: - symbol: gKartWario264Wheel0 - type: texture - offset: 0x99F9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_1: - symbol: gKartWario264Wheel1 - type: texture - offset: 0x9A01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_2: - symbol: gKartWario264Wheel2 - type: texture - offset: 0x9A09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_3: - symbol: gKartWario264Wheel3 - type: texture - offset: 0x9A11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_0: - symbol: gKartWario265Wheel0 - type: texture - offset: 0x9A19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_1: - symbol: gKartWario265Wheel1 - type: texture - offset: 0x9A21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_2: - symbol: gKartWario265Wheel2 - type: texture - offset: 0x9A29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_3: - symbol: gKartWario265Wheel3 - type: texture - offset: 0x9A31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_0: - symbol: gKartWario266Wheel0 - type: texture - offset: 0x9A39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_1: - symbol: gKartWario266Wheel1 - type: texture - offset: 0x9A41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_2: - symbol: gKartWario266Wheel2 - type: texture - offset: 0x9A49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_3: - symbol: gKartWario266Wheel3 - type: texture - offset: 0x9A51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_0: - symbol: gKartWario267Wheel0 - type: texture - offset: 0x9A59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_1: - symbol: gKartWario267Wheel1 - type: texture - offset: 0x9A61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_2: - symbol: gKartWario267Wheel2 - type: texture - offset: 0x9A69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_3: - symbol: gKartWario267Wheel3 - type: texture - offset: 0x9A71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_0: - symbol: gKartWario268Wheel0 - type: texture - offset: 0x9A79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_1: - symbol: gKartWario268Wheel1 - type: texture - offset: 0x9A81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_2: - symbol: gKartWario268Wheel2 - type: texture - offset: 0x9A89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_3: - symbol: gKartWario268Wheel3 - type: texture - offset: 0x9A91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_0: - symbol: gKartWario269Wheel0 - type: texture - offset: 0x9A99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_1: - symbol: gKartWario269Wheel1 - type: texture - offset: 0x9AA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_2: - symbol: gKartWario269Wheel2 - type: texture - offset: 0x9AA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_3: - symbol: gKartWario269Wheel3 - type: texture - offset: 0x9AB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_0: - symbol: gKartWario270Wheel0 - type: texture - offset: 0x9AB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_1: - symbol: gKartWario270Wheel1 - type: texture - offset: 0x9AC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_2: - symbol: gKartWario270Wheel2 - type: texture - offset: 0x9AC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_3: - symbol: gKartWario270Wheel3 - type: texture - offset: 0x9AD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_0: - symbol: gKartWario271Wheel0 - type: texture - offset: 0x9AD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_1: - symbol: gKartWario271Wheel1 - type: texture - offset: 0x9AE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_2: - symbol: gKartWario271Wheel2 - type: texture - offset: 0x9AE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_3: - symbol: gKartWario271Wheel3 - type: texture - offset: 0x9AF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_0: - symbol: gKartWario272Wheel0 - type: texture - offset: 0x9AF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_1: - symbol: gKartWario272Wheel1 - type: texture - offset: 0x9B01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_2: - symbol: gKartWario272Wheel2 - type: texture - offset: 0x9B09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_3: - symbol: gKartWario272Wheel3 - type: texture - offset: 0x9B11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_0: - symbol: gKartWario273Wheel0 - type: texture - offset: 0x9B19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_1: - symbol: gKartWario273Wheel1 - type: texture - offset: 0x9B21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_2: - symbol: gKartWario273Wheel2 - type: texture - offset: 0x9B29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_3: - symbol: gKartWario273Wheel3 - type: texture - offset: 0x9B31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_0: - symbol: gKartWario274Wheel0 - type: texture - offset: 0x9B39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_1: - symbol: gKartWario274Wheel1 - type: texture - offset: 0x9B41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_2: - symbol: gKartWario274Wheel2 - type: texture - offset: 0x9B49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_3: - symbol: gKartWario274Wheel3 - type: texture - offset: 0x9B51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_0: - symbol: gKartWario275Wheel0 - type: texture - offset: 0x9B59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_1: - symbol: gKartWario275Wheel1 - type: texture - offset: 0x9B61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_2: - symbol: gKartWario275Wheel2 - type: texture - offset: 0x9B69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_3: - symbol: gKartWario275Wheel3 - type: texture - offset: 0x9B71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_0: - symbol: gKartWario276Wheel0 - type: texture - offset: 0x9B79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_1: - symbol: gKartWario276Wheel1 - type: texture - offset: 0x9B81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_2: - symbol: gKartWario276Wheel2 - type: texture - offset: 0x9B89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_3: - symbol: gKartWario276Wheel3 - type: texture - offset: 0x9B91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_0: - symbol: gKartWario277Wheel0 - type: texture - offset: 0x9B99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_1: - symbol: gKartWario277Wheel1 - type: texture - offset: 0x9BA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_2: - symbol: gKartWario277Wheel2 - type: texture - offset: 0x9BA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_3: - symbol: gKartWario277Wheel3 - type: texture - offset: 0x9BB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_0: - symbol: gKartWario278Wheel0 - type: texture - offset: 0x9BB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_1: - symbol: gKartWario278Wheel1 - type: texture - offset: 0x9BC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_2: - symbol: gKartWario278Wheel2 - type: texture - offset: 0x9BC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_3: - symbol: gKartWario278Wheel3 - type: texture - offset: 0x9BD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_0: - symbol: gKartWario279Wheel0 - type: texture - offset: 0x9BD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_1: - symbol: gKartWario279Wheel1 - type: texture - offset: 0x9BE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_2: - symbol: gKartWario279Wheel2 - type: texture - offset: 0x9BE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_3: - symbol: gKartWario279Wheel3 - type: texture - offset: 0x9BF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_0: - symbol: gKartWario280Wheel0 - type: texture - offset: 0x9BF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_1: - symbol: gKartWario280Wheel1 - type: texture - offset: 0x9C01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_2: - symbol: gKartWario280Wheel2 - type: texture - offset: 0x9C09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_3: - symbol: gKartWario280Wheel3 - type: texture - offset: 0x9C11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_0: - symbol: gKartWario281Wheel0 - type: texture - offset: 0x9C19C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_1: - symbol: gKartWario281Wheel1 - type: texture - offset: 0x9C21C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_2: - symbol: gKartWario281Wheel2 - type: texture - offset: 0x9C29C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_3: - symbol: gKartWario281Wheel3 - type: texture - offset: 0x9C31C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_0: - symbol: gKartWario282Wheel0 - type: texture - offset: 0x9C39C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_1: - symbol: gKartWario282Wheel1 - type: texture - offset: 0x9C41C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_2: - symbol: gKartWario282Wheel2 - type: texture - offset: 0x9C49C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_3: - symbol: gKartWario282Wheel3 - type: texture - offset: 0x9C51C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_0: - symbol: gKartWario283Wheel0 - type: texture - offset: 0x9C59C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_1: - symbol: gKartWario283Wheel1 - type: texture - offset: 0x9C61C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_2: - symbol: gKartWario283Wheel2 - type: texture - offset: 0x9C69C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_3: - symbol: gKartWario283Wheel3 - type: texture - offset: 0x9C71C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_0: - symbol: gKartWario284Wheel0 - type: texture - offset: 0x9C79C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_1: - symbol: gKartWario284Wheel1 - type: texture - offset: 0x9C81C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_2: - symbol: gKartWario284Wheel2 - type: texture - offset: 0x9C89C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_3: - symbol: gKartWario284Wheel3 - type: texture - offset: 0x9C91C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_0: - symbol: gKartWario285Wheel0 - type: texture - offset: 0x9C99C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_1: - symbol: gKartWario285Wheel1 - type: texture - offset: 0x9CA1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_2: - symbol: gKartWario285Wheel2 - type: texture - offset: 0x9CA9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_3: - symbol: gKartWario285Wheel3 - type: texture - offset: 0x9CB1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_0: - symbol: gKartWario286Wheel0 - type: texture - offset: 0x9CB9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_1: - symbol: gKartWario286Wheel1 - type: texture - offset: 0x9CC1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_2: - symbol: gKartWario286Wheel2 - type: texture - offset: 0x9CC9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_3: - symbol: gKartWario286Wheel3 - type: texture - offset: 0x9CD1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_0: - symbol: gKartWario287Wheel0 - type: texture - offset: 0x9CD9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_1: - symbol: gKartWario287Wheel1 - type: texture - offset: 0x9CE1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_2: - symbol: gKartWario287Wheel2 - type: texture - offset: 0x9CE9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_3: - symbol: gKartWario287Wheel3 - type: texture - offset: 0x9CF1C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_0: - symbol: gKartWario288Wheel0 - type: texture - offset: 0x9CF9C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_1: - symbol: gKartWario288Wheel1 - type: texture - offset: 0x9D01C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_2: - symbol: gKartWario288Wheel2 - type: texture - offset: 0x9D09C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_3: - symbol: gKartWario288Wheel3 - type: texture - offset: 0x9D11C - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -wario_kart_palette: - symbol: gKartWarioPalette - type: texture - offset: 0x9D19C - ctype: u16 - width: 16 - height: 12 - format: RGBA16 diff --git a/yamls/us/wario_stadium_data.yml b/yamls/us/wario_stadium_data.yml deleted file mode 100644 index a3f464ae6..000000000 --- a/yamls/us/wario_stadium_data.yml +++ /dev/null @@ -1,536 +0,0 @@ -:config: - segments: - - [0x06, 0x8804A0] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_wario_stadium_dl_0: - symbol: d_course_wario_stadium_dl_0 - type: gfx - offset: 0x0 -d_course_wario_stadium_dl_B8: - symbol: d_course_wario_stadium_dl_B8 - type: gfx - offset: 0xB8 -d_course_wario_stadium_dl_158: - symbol: d_course_wario_stadium_dl_158 - type: gfx - offset: 0x158 -d_course_wario_stadium_dl_1B8: - symbol: d_course_wario_stadium_dl_1B8 - type: gfx - offset: 0x1B8 -d_course_wario_stadium_dl_2A0: - symbol: d_course_wario_stadium_dl_2A0 - type: gfx - offset: 0x2A0 -d_course_wario_stadium_dl_350: - symbol: d_course_wario_stadium_dl_350 - type: gfx - offset: 0x350 -d_course_wario_stadium_dl_440: - symbol: d_course_wario_stadium_dl_440 - type: gfx - offset: 0x440 -d_course_wario_stadium_dl_4C0: - symbol: d_course_wario_stadium_dl_4C0 - type: gfx - offset: 0x4C0 -d_course_wario_stadium_dl_5E8: - symbol: d_course_wario_stadium_dl_5E8 - type: gfx - offset: 0x5E8 -d_course_wario_stadium_dl_668: - symbol: d_course_wario_stadium_dl_668 - type: gfx - offset: 0x668 -d_course_wario_stadium_dl_798: - symbol: d_course_wario_stadium_dl_798 - type: gfx - offset: 0x798 -d_course_wario_stadium_dl_830: - symbol: d_course_wario_stadium_dl_830 - type: gfx - offset: 0x830 -d_course_wario_stadium_dl_940: - symbol: d_course_wario_stadium_dl_940 - type: gfx - offset: 0x940 -d_course_wario_stadium_dl_990: - symbol: d_course_wario_stadium_dl_990 - type: gfx - offset: 0x990 -d_course_wario_stadium_dl_AB0: - symbol: d_course_wario_stadium_dl_AB0 - type: gfx - offset: 0xAB0 -d_course_wario_stadium_dl_B60: - symbol: d_course_wario_stadium_dl_B60 - type: gfx - offset: 0xB60 -d_course_wario_stadium_dl_C08: - symbol: d_course_wario_stadium_dl_C08 - type: gfx - offset: 0xC08 -d_course_wario_stadium_dl_C70: - symbol: d_course_wario_stadium_dl_C70 - type: gfx - offset: 0xC70 -d_course_wario_stadium_dl_D60: - symbol: d_course_wario_stadium_dl_D60 - type: gfx - offset: 0xD60 -d_course_wario_stadium_dl_E30: - symbol: d_course_wario_stadium_dl_E30 - type: gfx - offset: 0xE30 -d_course_wario_stadium_dl_ED0: - symbol: d_course_wario_stadium_dl_ED0 - type: gfx - offset: 0xED0 -d_course_wario_stadium_dl_F70: - symbol: d_course_wario_stadium_dl_F70 - type: gfx - offset: 0xF70 -d_course_wario_stadium_dl_1068: - symbol: d_course_wario_stadium_dl_1068 - type: gfx - offset: 0x1068 -d_course_wario_stadium_dl_1158: - symbol: d_course_wario_stadium_dl_1158 - type: gfx - offset: 0x1158 -d_course_wario_stadium_dl_11F8: - symbol: d_course_wario_stadium_dl_11F8 - type: gfx - offset: 0x11F8 -d_course_wario_stadium_dl_12E0: - symbol: d_course_wario_stadium_dl_12E0 - type: gfx - offset: 0x12E0 -d_course_wario_stadium_dl_13C0: - symbol: d_course_wario_stadium_dl_13C0 - type: gfx - offset: 0x13C0 -d_course_wario_stadium_dl_14A0: - symbol: d_course_wario_stadium_dl_14A0 - type: gfx - offset: 0x14A0 -d_course_wario_stadium_dl_1590: - symbol: d_course_wario_stadium_dl_1590 - type: gfx - offset: 0x1590 -d_course_wario_stadium_dl_1630: - symbol: d_course_wario_stadium_dl_1630 - type: gfx - offset: 0x1630 -d_course_wario_stadium_dl_1708: - symbol: d_course_wario_stadium_dl_1708 - type: gfx - offset: 0x1708 -d_course_wario_stadium_dl_17A8: - symbol: d_course_wario_stadium_dl_17A8 - type: gfx - offset: 0x17A8 -d_course_wario_stadium_dl_1868: - symbol: d_course_wario_stadium_dl_1868 - type: gfx - offset: 0x1868 -d_course_wario_stadium_dl_1908: - symbol: d_course_wario_stadium_dl_1908 - type: gfx - offset: 0x1908 -d_course_wario_stadium_dl_19E0: - symbol: d_course_wario_stadium_dl_19E0 - type: gfx - offset: 0x19E0 -d_course_wario_stadium_dl_1AB8: - symbol: d_course_wario_stadium_dl_1AB8 - type: gfx - offset: 0x1AB8 -d_course_wario_stadium_dl_1B48: - symbol: d_course_wario_stadium_dl_1B48 - type: gfx - offset: 0x1B48 -d_course_wario_stadium_dl_1BB0: - symbol: d_course_wario_stadium_dl_1BB0 - type: gfx - offset: 0x1BB0 -d_course_wario_stadium_dl_1CA8: - symbol: d_course_wario_stadium_dl_1CA8 - type: gfx - offset: 0x1CA8 -d_course_wario_stadium_dl_1D68: - symbol: d_course_wario_stadium_dl_1D68 - type: gfx - offset: 0x1D68 -d_course_wario_stadium_dl_1DF8: - symbol: d_course_wario_stadium_dl_1DF8 - type: gfx - offset: 0x1DF8 -d_course_wario_stadium_dl_1E70: - symbol: d_course_wario_stadium_dl_1E70 - type: gfx - offset: 0x1E70 -d_course_wario_stadium_dl_1FD8: - symbol: d_course_wario_stadium_dl_1FD8 - type: gfx - offset: 0x1FD8 -d_course_wario_stadium_dl_20A8: - symbol: d_course_wario_stadium_dl_20A8 - type: gfx - offset: 0x20A8 -d_course_wario_stadium_dl_21A8: - symbol: d_course_wario_stadium_dl_21A8 - type: gfx - offset: 0x21A8 -d_course_wario_stadium_dl_2218: - symbol: d_course_wario_stadium_dl_2218 - type: gfx - offset: 0x2218 -d_course_wario_stadium_dl_2308: - symbol: d_course_wario_stadium_dl_2308 - type: gfx - offset: 0x2308 -d_course_wario_stadium_dl_23B0: - symbol: d_course_wario_stadium_dl_23B0 - type: gfx - offset: 0x23B0 -d_course_wario_stadium_dl_2490: - symbol: d_course_wario_stadium_dl_2490 - type: gfx - offset: 0x2490 -d_course_wario_stadium_dl_2530: - symbol: d_course_wario_stadium_dl_2530 - type: gfx - offset: 0x2530 -d_course_wario_stadium_dl_2610: - symbol: d_course_wario_stadium_dl_2610 - type: gfx - offset: 0x2610 -d_course_wario_stadium_dl_2698: - symbol: d_course_wario_stadium_dl_2698 - type: gfx - offset: 0x2698 -d_course_wario_stadium_dl_2798: - symbol: d_course_wario_stadium_dl_2798 - type: gfx - offset: 0x2798 -d_course_wario_stadium_dl_2870: - symbol: d_course_wario_stadium_dl_2870 - type: gfx - offset: 0x2870 -d_course_wario_stadium_dl_2928: - symbol: d_course_wario_stadium_dl_2928 - type: gfx - offset: 0x2928 -d_course_wario_stadium_dl_29D0: - symbol: d_course_wario_stadium_dl_29D0 - type: gfx - offset: 0x29D0 -d_course_wario_stadium_dl_2AB0: - symbol: d_course_wario_stadium_dl_2AB0 - type: gfx - offset: 0x2AB0 -d_course_wario_stadium_dl_2B60: - symbol: d_course_wario_stadium_dl_2B60 - type: gfx - offset: 0x2B60 -d_course_wario_stadium_dl_2C30: - symbol: d_course_wario_stadium_dl_2C30 - type: gfx - offset: 0x2C30 -d_course_wario_stadium_dl_2CE0: - symbol: d_course_wario_stadium_dl_2CE0 - type: gfx - offset: 0x2CE0 -d_course_wario_stadium_dl_2DC0: - symbol: d_course_wario_stadium_dl_2DC0 - type: gfx - offset: 0x2DC0 -d_course_wario_stadium_dl_2E70: - symbol: d_course_wario_stadium_dl_2E70 - type: gfx - offset: 0x2E70 -d_course_wario_stadium_dl_2FB8: - symbol: d_course_wario_stadium_dl_2FB8 - type: gfx - offset: 0x2FB8 -d_course_wario_stadium_dl_3098: - symbol: d_course_wario_stadium_dl_3098 - type: gfx - offset: 0x3098 -d_course_wario_stadium_dl_31B0: - symbol: d_course_wario_stadium_dl_31B0 - type: gfx - offset: 0x31B0 -d_course_wario_stadium_dl_3260: - symbol: d_course_wario_stadium_dl_3260 - type: gfx - offset: 0x3260 -d_course_wario_stadium_dl_3368: - symbol: d_course_wario_stadium_dl_3368 - type: gfx - offset: 0x3368 -d_course_wario_stadium_dl_3450: - symbol: d_course_wario_stadium_dl_3450 - type: gfx - offset: 0x3450 -d_course_wario_stadium_dl_3550: - symbol: d_course_wario_stadium_dl_3550 - type: gfx - offset: 0x3550 -d_course_wario_stadium_dl_3600: - symbol: d_course_wario_stadium_dl_3600 - type: gfx - offset: 0x3600 -d_course_wario_stadium_dl_36D8: - symbol: d_course_wario_stadium_dl_36D8 - type: gfx - offset: 0x36D8 -d_course_wario_stadium_dl_37A8: - symbol: d_course_wario_stadium_dl_37A8 - type: gfx - offset: 0x37A8 -d_course_wario_stadium_dl_3890: - symbol: d_course_wario_stadium_dl_3890 - type: gfx - offset: 0x3890 -d_course_wario_stadium_dl_3980: - symbol: d_course_wario_stadium_dl_3980 - type: gfx - offset: 0x3980 -d_course_wario_stadium_dl_3A10: - symbol: d_course_wario_stadium_dl_3A10 - type: gfx - offset: 0x3A10 -d_course_wario_stadium_dl_3AD0: - symbol: d_course_wario_stadium_dl_3AD0 - type: gfx - offset: 0x3AD0 -d_course_wario_stadium_dl_3BB0: - symbol: d_course_wario_stadium_dl_3BB0 - type: gfx - offset: 0x3BB0 -d_course_wario_stadium_dl_3CF8: - symbol: d_course_wario_stadium_dl_3CF8 - type: gfx - offset: 0x3CF8 -d_course_wario_stadium_dl_3D90: - symbol: d_course_wario_stadium_dl_3D90 - type: gfx - offset: 0x3D90 -d_course_wario_stadium_dl_3E80: - symbol: d_course_wario_stadium_dl_3E80 - type: gfx - offset: 0x3E80 -d_course_wario_stadium_dl_3F78: - symbol: d_course_wario_stadium_dl_3F78 - type: gfx - offset: 0x3F78 -d_course_wario_stadium_dl_4060: - symbol: d_course_wario_stadium_dl_4060 - type: gfx - offset: 0x4060 -d_course_wario_stadium_dl_40F0: - symbol: d_course_wario_stadium_dl_40F0 - type: gfx - offset: 0x40F0 -d_course_wario_stadium_dl_41D0: - symbol: d_course_wario_stadium_dl_41D0 - type: gfx - offset: 0x41D0 -d_course_wario_stadium_dl_4270: - symbol: d_course_wario_stadium_dl_4270 - type: gfx - offset: 0x4270 -d_course_wario_stadium_dl_4340: - symbol: d_course_wario_stadium_dl_4340 - type: gfx - offset: 0x4340 -d_course_wario_stadium_dl_43E0: - symbol: d_course_wario_stadium_dl_43E0 - type: gfx - offset: 0x43E0 -d_course_wario_stadium_dl_44B0: - symbol: d_course_wario_stadium_dl_44B0 - type: gfx - offset: 0x44B0 -d_course_wario_stadium_dl_4550: - symbol: d_course_wario_stadium_dl_4550 - type: gfx - offset: 0x4550 -d_course_wario_stadium_dl_46E0: - symbol: d_course_wario_stadium_dl_46E0 - type: gfx - offset: 0x46E0 -d_course_wario_stadium_dl_47F0: - symbol: d_course_wario_stadium_dl_47F0 - type: gfx - offset: 0x47F0 -d_course_wario_stadium_dl_4948: - symbol: d_course_wario_stadium_dl_4948 - type: gfx - offset: 0x4948 -d_course_wario_stadium_dl_4A78: - symbol: d_course_wario_stadium_dl_4A78 - type: gfx - offset: 0x4A78 -d_course_wario_stadium_dl_4B30: - symbol: d_course_wario_stadium_dl_4B30 - type: gfx - offset: 0x4B30 -d_course_wario_stadium_dl_4BE8: - symbol: d_course_wario_stadium_dl_4BE8 - type: gfx - offset: 0x4BE8 -d_course_wario_stadium_dl_4C60: - symbol: d_course_wario_stadium_dl_4C60 - type: gfx - offset: 0x4C60 -d_course_wario_stadium_dl_4D40: - symbol: d_course_wario_stadium_dl_4D40 - type: gfx - offset: 0x4D40 -d_course_wario_stadium_dl_4E30: - symbol: d_course_wario_stadium_dl_4E30 - type: gfx - offset: 0x4E30 -d_course_wario_stadium_dl_4EF0: - symbol: d_course_wario_stadium_dl_4EF0 - type: gfx - offset: 0x4EF0 -d_course_wario_stadium_dl_4F80: - symbol: d_course_wario_stadium_dl_4F80 - type: gfx - offset: 0x4F80 -d_course_wario_stadium_dl_5090: - symbol: d_course_wario_stadium_dl_5090 - type: gfx - offset: 0x5090 -d_course_wario_stadium_dl_5168: - symbol: d_course_wario_stadium_dl_5168 - type: gfx - offset: 0x5168 -d_course_wario_stadium_dl_51E8: - symbol: d_course_wario_stadium_dl_51E8 - type: gfx - offset: 0x51E8 -d_course_wario_stadium_dl_5270: - symbol: d_course_wario_stadium_dl_5270 - type: gfx - offset: 0x5270 -d_course_wario_stadium_dl_5338: - symbol: d_course_wario_stadium_dl_5338 - type: gfx - offset: 0x5338 -d_course_wario_stadium_dl_5460: - symbol: d_course_wario_stadium_dl_5460 - type: gfx - offset: 0x5460 -d_course_wario_stadium_dl_54E8: - symbol: d_course_wario_stadium_dl_54E8 - type: gfx - offset: 0x54E8 -d_course_wario_stadium_dl_5588: - symbol: d_course_wario_stadium_dl_5588 - type: gfx - offset: 0x5588 -d_course_wario_stadium_unknown_waypoints: - symbol: d_course_wario_stadium_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0x56A0 - count: 77 -d_course_wario_stadium_track_waypoints: - symbol: d_course_wario_stadium_track_waypoints - type: mk64:TRACK_PATH - offset: 0x5908 - count: 1401 -d_course_wario_stadium_sign_head_model1: - symbol: d_course_wario_stadium_sign_head_model1 - type: vtx - offset: 0x84D0 - count: 13 -d_course_wario_stadium_sign_head_model2: - symbol: d_course_wario_stadium_sign_head_model2 - type: vtx - offset: 0x85A0 - count: 17 -d_course_wario_stadium_sign_head_model3: - symbol: d_course_wario_stadium_sign_head_model3 - type: vtx - offset: 0x86B0 - count: 13 -d_course_wario_stadium_sign_head_model4: - symbol: d_course_wario_stadium_sign_head_model4 - type: vtx - offset: 0x8780 - count: 17 -d_course_wario_stadium_sign_top_left: - symbol: d_course_wario_stadium_sign_top_left - type: texture - offset: 0x8890 - width: 64 - height: 32 - format: rgba16 - ctype: u8 -d_course_wario_stadium_sign_bottom_left: - symbol: d_course_wario_stadium_sign_bottom_left - type: texture - offset: 0x9890 - width: 64 - height: 32 - format: rgba16 - ctype: u8 -d_course_wario_stadium_sign_top_right: - symbol: d_course_wario_stadium_sign_top_right - type: texture - offset: 0xA890 - width: 64 - height: 32 - format: rgba16 - ctype: u8 -d_course_wario_stadium_sign_bottom_right: - symbol: d_course_wario_stadium_sign_bottom_right - type: texture - offset: 0xB890 - width: 64 - height: 32 - format: rgba16 - ctype: u8 -d_course_wario_stadium_dl_C890: - symbol: d_course_wario_stadium_dl_C890 - type: gfx - offset: 0xC890 -d_course_wario_stadium_dl_CA50: - symbol: d_course_wario_stadium_dl_CA50 - type: gfx - offset: 0xCA50 -d_course_wario_stadium_dl_sign: - symbol: d_course_wario_stadium_dl_sign - type: gfx - offset: 0xCA60 -d_course_wario_stadium_dl_CA70: - symbol: d_course_wario_stadium_dl_CA70 - type: gfx - offset: 0xCA70 -d_course_wario_stadium_dl_CA78: - symbol: d_course_wario_stadium_dl_CA78 - type: gfx - offset: 0xCA78 -d_course_wario_stadium_item_box_spawns: - symbol: d_course_wario_stadium_item_box_spawns - type: mk64:spawn_data - offset: 0xCB40 - count: 31 -d_course_wario_stadium_addr: - symbol: d_course_wario_stadium_addr - type: mk64:track_sections - offset: 0xCC38 - count: 32 diff --git a/yamls/us/wario_stadium_displaylists.yml b/yamls/us/wario_stadium_displaylists.yml deleted file mode 100644 index 2f10bfc51..000000000 --- a/yamls/us/wario_stadium_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x94E28C - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_wario_stadium_packed_dls: - symbol: d_course_wario_stadium_packed_dls - type: blob - offset: 0x94E28C - size: 0x34E5 diff --git a/yamls/us/wario_stadium_vertices.yml b/yamls/us/wario_stadium_vertices.yml deleted file mode 100644 index 9b355071c..000000000 --- a/yamls/us/wario_stadium_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x9438C0] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_wario_stadium_vertex: - symbol: d_course_wario_stadium_vertex - type: mk64:course_vtx - count: 6067 - offset: 0x0 diff --git a/yamls/us/yoshi_kart.yml b/yamls/us/yoshi_kart.yml deleted file mode 100644 index fa9aeda04..000000000 --- a/yamls/us/yoshi_kart.yml +++ /dev/null @@ -1,12804 +0,0 @@ -:config: - segments: - - [0x0F, 0x272A20] - no_compression: true - header: - code: - - '#include ' - - '#include ' - - '#include ' - header: - - '#include ' - - '#include ' - tables: - yoshi_kart_wheels: - range: [0x731A8, 0x97328] - mode: APPEND -yoshi_kart_frame000: - symbol: gKartYoshi000 - type: texture - offset: 0x0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame001: - symbol: gKartYoshi001 - type: texture - offset: 0x4D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_001_wheel_0 -yoshi_kart_frame002: - symbol: gKartYoshi002 - type: texture - offset: 0x9C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_002_wheel_0 -yoshi_kart_frame003: - symbol: gKartYoshi003 - type: texture - offset: 0xEB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_003_wheel_0 -yoshi_kart_frame004: - symbol: gKartYoshi004 - type: texture - offset: 0x13A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_004_wheel_0 -yoshi_kart_frame005: - symbol: gKartYoshi005 - type: texture - offset: 0x18A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_005_wheel_0 -yoshi_kart_frame006: - symbol: gKartYoshi006 - type: texture - offset: 0x1DB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_006_wheel_0 -yoshi_kart_frame007: - symbol: gKartYoshi007 - type: texture - offset: 0x22DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_007_wheel_0 -yoshi_kart_frame008: - symbol: gKartYoshi008 - type: texture - offset: 0x2814 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_008_wheel_0 -yoshi_kart_frame009: - symbol: gKartYoshi009 - type: texture - offset: 0x2D5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_009_wheel_0 -yoshi_kart_frame010: - symbol: gKartYoshi010 - type: texture - offset: 0x32C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_010_wheel_0 -yoshi_kart_frame011: - symbol: gKartYoshi011 - type: texture - offset: 0x3838 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_011_wheel_0 -yoshi_kart_frame012: - symbol: gKartYoshi012 - type: texture - offset: 0x3DBC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_012_wheel_0 -yoshi_kart_frame013: - symbol: gKartYoshi013 - type: texture - offset: 0x432C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_013_wheel_0 -yoshi_kart_frame014: - symbol: gKartYoshi014 - type: texture - offset: 0x48C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_014_wheel_0 -yoshi_kart_frame015: - symbol: gKartYoshi015 - type: texture - offset: 0x4E60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_015_wheel_0 -yoshi_kart_frame016: - symbol: gKartYoshi016 - type: texture - offset: 0x5418 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_016_wheel_0 -yoshi_kart_frame017: - symbol: gKartYoshi017 - type: texture - offset: 0x5A04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_017_wheel_0 -yoshi_kart_frame018: - symbol: gKartYoshi018 - type: texture - offset: 0x5FFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_018_wheel_0 -yoshi_kart_frame019: - symbol: gKartYoshi019 - type: texture - offset: 0x6600 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_019_wheel_0 -yoshi_kart_frame020: - symbol: gKartYoshi020 - type: texture - offset: 0x6C14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_020_wheel_0 -yoshi_kart_frame021: - symbol: gKartYoshi021 - type: texture - offset: 0x7238 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_021_wheel_0 -yoshi_kart_frame022: - symbol: gKartYoshi022 - type: texture - offset: 0x7718 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_022_wheel_0 -yoshi_kart_frame023: - symbol: gKartYoshi023 - type: texture - offset: 0x7BF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_023_wheel_0 -yoshi_kart_frame024: - symbol: gKartYoshi024 - type: texture - offset: 0x80D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_024_wheel_0 -yoshi_kart_frame025: - symbol: gKartYoshi025 - type: texture - offset: 0x85E8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_025_wheel_0 -yoshi_kart_frame026: - symbol: gKartYoshi026 - type: texture - offset: 0x8B08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_026_wheel_0 -yoshi_kart_frame027: - symbol: gKartYoshi027 - type: texture - offset: 0x901C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_027_wheel_0 -yoshi_kart_frame028: - symbol: gKartYoshi028 - type: texture - offset: 0x955C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_028_wheel_0 -yoshi_kart_frame029: - symbol: gKartYoshi029 - type: texture - offset: 0x9AA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_029_wheel_0 -yoshi_kart_frame030: - symbol: gKartYoshi030 - type: texture - offset: 0xA000 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_030_wheel_0 -yoshi_kart_frame031: - symbol: gKartYoshi031 - type: texture - offset: 0xA57C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_031_wheel_0 -yoshi_kart_frame032: - symbol: gKartYoshi032 - type: texture - offset: 0xAB0C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_032_wheel_0 -yoshi_kart_frame033: - symbol: gKartYoshi033 - type: texture - offset: 0xB088 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_033_wheel_0 -yoshi_kart_frame034: - symbol: gKartYoshi034 - type: texture - offset: 0xB620 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_034_wheel_0 -yoshi_kart_frame035: - symbol: gKartYoshi035 - type: texture - offset: 0xBBC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_035_wheel_0 -yoshi_kart_frame036: - symbol: gKartYoshi036 - type: texture - offset: 0xC178 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_036_wheel_0 -yoshi_kart_frame037: - symbol: gKartYoshi037 - type: texture - offset: 0xC74C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_037_wheel_0 -yoshi_kart_frame038: - symbol: gKartYoshi038 - type: texture - offset: 0xCD2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_038_wheel_0 -yoshi_kart_frame039: - symbol: gKartYoshi039 - type: texture - offset: 0xD328 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_039_wheel_0 -yoshi_kart_frame040: - symbol: gKartYoshi040 - type: texture - offset: 0xD934 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_040_wheel_0 -yoshi_kart_frame041: - symbol: gKartYoshi041 - type: texture - offset: 0xDF54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_041_wheel_0 -yoshi_kart_frame042: - symbol: gKartYoshi042 - type: texture - offset: 0xE568 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_042_wheel_0 -yoshi_kart_frame043: - symbol: gKartYoshi043 - type: texture - offset: 0xEA4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_043_wheel_0 -yoshi_kart_frame044: - symbol: gKartYoshi044 - type: texture - offset: 0xEF38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_044_wheel_0 -yoshi_kart_frame045: - symbol: gKartYoshi045 - type: texture - offset: 0xF454 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_045_wheel_0 -yoshi_kart_frame046: - symbol: gKartYoshi046 - type: texture - offset: 0xF968 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_046_wheel_0 -yoshi_kart_frame047: - symbol: gKartYoshi047 - type: texture - offset: 0xFEA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_047_wheel_0 -yoshi_kart_frame048: - symbol: gKartYoshi048 - type: texture - offset: 0x103D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_048_wheel_0 -yoshi_kart_frame049: - symbol: gKartYoshi049 - type: texture - offset: 0x1092C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_049_wheel_0 -yoshi_kart_frame050: - symbol: gKartYoshi050 - type: texture - offset: 0x10E94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_050_wheel_0 -yoshi_kart_frame051: - symbol: gKartYoshi051 - type: texture - offset: 0x11408 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_051_wheel_0 -yoshi_kart_frame052: - symbol: gKartYoshi052 - type: texture - offset: 0x119A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_052_wheel_0 -yoshi_kart_frame053: - symbol: gKartYoshi053 - type: texture - offset: 0x11F38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_053_wheel_0 -yoshi_kart_frame054: - symbol: gKartYoshi054 - type: texture - offset: 0x124D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_054_wheel_0 -yoshi_kart_frame055: - symbol: gKartYoshi055 - type: texture - offset: 0x12A6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_055_wheel_0 -yoshi_kart_frame056: - symbol: gKartYoshi056 - type: texture - offset: 0x13010 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_056_wheel_0 -yoshi_kart_frame057: - symbol: gKartYoshi057 - type: texture - offset: 0x135C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_057_wheel_0 -yoshi_kart_frame058: - symbol: gKartYoshi058 - type: texture - offset: 0x13B90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_058_wheel_0 -yoshi_kart_frame059: - symbol: gKartYoshi059 - type: texture - offset: 0x14178 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_059_wheel_0 -yoshi_kart_frame060: - symbol: gKartYoshi060 - type: texture - offset: 0x14778 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_060_wheel_0 -yoshi_kart_frame061: - symbol: gKartYoshi061 - type: texture - offset: 0x14D9C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_061_wheel_0 -yoshi_kart_frame062: - symbol: gKartYoshi062 - type: texture - offset: 0x153DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_062_wheel_0 -yoshi_kart_frame063: - symbol: gKartYoshi063 - type: texture - offset: 0x15A14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_063_wheel_0 -yoshi_kart_frame064: - symbol: gKartYoshi064 - type: texture - offset: 0x15F20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_064_wheel_0 -yoshi_kart_frame065: - symbol: gKartYoshi065 - type: texture - offset: 0x1642C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_065_wheel_0 -yoshi_kart_frame066: - symbol: gKartYoshi066 - type: texture - offset: 0x16940 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_066_wheel_0 -yoshi_kart_frame067: - symbol: gKartYoshi067 - type: texture - offset: 0x16E70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_067_wheel_0 -yoshi_kart_frame068: - symbol: gKartYoshi068 - type: texture - offset: 0x173C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_068_wheel_0 -yoshi_kart_frame069: - symbol: gKartYoshi069 - type: texture - offset: 0x17910 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_069_wheel_0 -yoshi_kart_frame070: - symbol: gKartYoshi070 - type: texture - offset: 0x17E68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_070_wheel_0 -yoshi_kart_frame071: - symbol: gKartYoshi071 - type: texture - offset: 0x183D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_071_wheel_0 -yoshi_kart_frame072: - symbol: gKartYoshi072 - type: texture - offset: 0x18954 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_072_wheel_0 -yoshi_kart_frame073: - symbol: gKartYoshi073 - type: texture - offset: 0x18EF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_073_wheel_0 -yoshi_kart_frame074: - symbol: gKartYoshi074 - type: texture - offset: 0x19484 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_074_wheel_0 -yoshi_kart_frame075: - symbol: gKartYoshi075 - type: texture - offset: 0x19A10 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_075_wheel_0 -yoshi_kart_frame076: - symbol: gKartYoshi076 - type: texture - offset: 0x19FA8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_076_wheel_0 -yoshi_kart_frame077: - symbol: gKartYoshi077 - type: texture - offset: 0x1A54C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_077_wheel_0 -yoshi_kart_frame078: - symbol: gKartYoshi078 - type: texture - offset: 0x1AB04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_078_wheel_0 -yoshi_kart_frame079: - symbol: gKartYoshi079 - type: texture - offset: 0x1B0D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_079_wheel_0 -yoshi_kart_frame080: - symbol: gKartYoshi080 - type: texture - offset: 0x1B6C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_080_wheel_0 -yoshi_kart_frame081: - symbol: gKartYoshi081 - type: texture - offset: 0x1BCDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_081_wheel_0 -yoshi_kart_frame082: - symbol: gKartYoshi082 - type: texture - offset: 0x1C2F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_082_wheel_0 -yoshi_kart_frame083: - symbol: gKartYoshi083 - type: texture - offset: 0x1C92C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_083_wheel_0 -yoshi_kart_frame084: - symbol: gKartYoshi084 - type: texture - offset: 0x1CF74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_084_wheel_0 -yoshi_kart_frame085: - symbol: gKartYoshi085 - type: texture - offset: 0x1D488 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_085_wheel_0 -yoshi_kart_frame086: - symbol: gKartYoshi086 - type: texture - offset: 0x1D9B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_086_wheel_0 -yoshi_kart_frame087: - symbol: gKartYoshi087 - type: texture - offset: 0x1DEE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_087_wheel_0 -yoshi_kart_frame088: - symbol: gKartYoshi088 - type: texture - offset: 0x1E420 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_088_wheel_0 -yoshi_kart_frame089: - symbol: gKartYoshi089 - type: texture - offset: 0x1E97C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_089_wheel_0 -yoshi_kart_frame090: - symbol: gKartYoshi090 - type: texture - offset: 0x1EEF0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_090_wheel_0 -yoshi_kart_frame091: - symbol: gKartYoshi091 - type: texture - offset: 0x1F450 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_091_wheel_0 -yoshi_kart_frame092: - symbol: gKartYoshi092 - type: texture - offset: 0x1F9D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_092_wheel_0 -yoshi_kart_frame093: - symbol: gKartYoshi093 - type: texture - offset: 0x1FF48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_093_wheel_0 -yoshi_kart_frame094: - symbol: gKartYoshi094 - type: texture - offset: 0x204B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_094_wheel_0 -yoshi_kart_frame095: - symbol: gKartYoshi095 - type: texture - offset: 0x20A48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_095_wheel_0 -yoshi_kart_frame096: - symbol: gKartYoshi096 - type: texture - offset: 0x20FE4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_096_wheel_0 -yoshi_kart_frame097: - symbol: gKartYoshi097 - type: texture - offset: 0x2157C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_097_wheel_0 -yoshi_kart_frame098: - symbol: gKartYoshi098 - type: texture - offset: 0x21B18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_098_wheel_0 -yoshi_kart_frame099: - symbol: gKartYoshi099 - type: texture - offset: 0x220CC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_099_wheel_0 -yoshi_kart_frame100: - symbol: gKartYoshi100 - type: texture - offset: 0x226BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_100_wheel_0 -yoshi_kart_frame101: - symbol: gKartYoshi101 - type: texture - offset: 0x22CB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_101_wheel_0 -yoshi_kart_frame102: - symbol: gKartYoshi102 - type: texture - offset: 0x232D0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_102_wheel_0 -yoshi_kart_frame103: - symbol: gKartYoshi103 - type: texture - offset: 0x23900 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_103_wheel_0 -yoshi_kart_frame104: - symbol: gKartYoshi104 - type: texture - offset: 0x23F3C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_104_wheel_0 -yoshi_kart_frame105: - symbol: gKartYoshi105 - type: texture - offset: 0x24594 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_105_wheel_0 -yoshi_kart_frame106: - symbol: gKartYoshi106 - type: texture - offset: 0x24AD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_106_wheel_0 -yoshi_kart_frame107: - symbol: gKartYoshi107 - type: texture - offset: 0x25014 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_107_wheel_0 -yoshi_kart_frame108: - symbol: gKartYoshi108 - type: texture - offset: 0x25564 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_108_wheel_0 -yoshi_kart_frame109: - symbol: gKartYoshi109 - type: texture - offset: 0x25AB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_109_wheel_0 -yoshi_kart_frame110: - symbol: gKartYoshi110 - type: texture - offset: 0x2600C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_110_wheel_0 -yoshi_kart_frame111: - symbol: gKartYoshi111 - type: texture - offset: 0x2657C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_111_wheel_0 -yoshi_kart_frame112: - symbol: gKartYoshi112 - type: texture - offset: 0x26B04 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_112_wheel_0 -yoshi_kart_frame113: - symbol: gKartYoshi113 - type: texture - offset: 0x27088 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_113_wheel_0 -yoshi_kart_frame114: - symbol: gKartYoshi114 - type: texture - offset: 0x27608 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_114_wheel_0 -yoshi_kart_frame115: - symbol: gKartYoshi115 - type: texture - offset: 0x27B88 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_115_wheel_0 -yoshi_kart_frame116: - symbol: gKartYoshi116 - type: texture - offset: 0x2812C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_116_wheel_0 -yoshi_kart_frame117: - symbol: gKartYoshi117 - type: texture - offset: 0x286C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_117_wheel_0 -yoshi_kart_frame118: - symbol: gKartYoshi118 - type: texture - offset: 0x28C68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_118_wheel_0 -yoshi_kart_frame119: - symbol: gKartYoshi119 - type: texture - offset: 0x29214 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_119_wheel_0 -yoshi_kart_frame120: - symbol: gKartYoshi120 - type: texture - offset: 0x297D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_120_wheel_0 -yoshi_kart_frame121: - symbol: gKartYoshi121 - type: texture - offset: 0x29DB0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_121_wheel_0 -yoshi_kart_frame122: - symbol: gKartYoshi122 - type: texture - offset: 0x2A3A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_122_wheel_0 -yoshi_kart_frame123: - symbol: gKartYoshi123 - type: texture - offset: 0x2A9B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_123_wheel_0 -yoshi_kart_frame124: - symbol: gKartYoshi124 - type: texture - offset: 0x2B008 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_124_wheel_0 -yoshi_kart_frame125: - symbol: gKartYoshi125 - type: texture - offset: 0x2B664 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_125_wheel_0 -yoshi_kart_frame126: - symbol: gKartYoshi126 - type: texture - offset: 0x2BCD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_126_wheel_0 -yoshi_kart_frame127: - symbol: gKartYoshi127 - type: texture - offset: 0x2C220 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_127_wheel_0 -yoshi_kart_frame128: - symbol: gKartYoshi128 - type: texture - offset: 0x2C76C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_128_wheel_0 -yoshi_kart_frame129: - symbol: gKartYoshi129 - type: texture - offset: 0x2CCE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_129_wheel_0 -yoshi_kart_frame130: - symbol: gKartYoshi130 - type: texture - offset: 0x2D25C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_130_wheel_0 -yoshi_kart_frame131: - symbol: gKartYoshi131 - type: texture - offset: 0x2D7F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_131_wheel_0 -yoshi_kart_frame132: - symbol: gKartYoshi132 - type: texture - offset: 0x2DD68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_132_wheel_0 -yoshi_kart_frame133: - symbol: gKartYoshi133 - type: texture - offset: 0x2E2DC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_133_wheel_0 -yoshi_kart_frame134: - symbol: gKartYoshi134 - type: texture - offset: 0x2E848 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_134_wheel_0 -yoshi_kart_frame135: - symbol: gKartYoshi135 - type: texture - offset: 0x2EDB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_135_wheel_0 -yoshi_kart_frame136: - symbol: gKartYoshi136 - type: texture - offset: 0x2F354 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_136_wheel_0 -yoshi_kart_frame137: - symbol: gKartYoshi137 - type: texture - offset: 0x2F8E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_137_wheel_0 -yoshi_kart_frame138: - symbol: gKartYoshi138 - type: texture - offset: 0x2FE70 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_138_wheel_0 -yoshi_kart_frame139: - symbol: gKartYoshi139 - type: texture - offset: 0x30408 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_139_wheel_0 -yoshi_kart_frame140: - symbol: gKartYoshi140 - type: texture - offset: 0x309B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_140_wheel_0 -yoshi_kart_frame141: - symbol: gKartYoshi141 - type: texture - offset: 0x30F78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_141_wheel_0 -yoshi_kart_frame142: - symbol: gKartYoshi142 - type: texture - offset: 0x31550 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_142_wheel_0 -yoshi_kart_frame143: - symbol: gKartYoshi143 - type: texture - offset: 0x31B44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_143_wheel_0 -yoshi_kart_frame144: - symbol: gKartYoshi144 - type: texture - offset: 0x32158 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_144_wheel_0 -yoshi_kart_frame145: - symbol: gKartYoshi145 - type: texture - offset: 0x32790 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_145_wheel_0 -yoshi_kart_frame146: - symbol: gKartYoshi146 - type: texture - offset: 0x32DF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_146_wheel_0 -yoshi_kart_frame147: - symbol: gKartYoshi147 - type: texture - offset: 0x3345C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_147_wheel_0 -yoshi_kart_frame148: - symbol: gKartYoshi148 - type: texture - offset: 0x339BC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_148_wheel_0 -yoshi_kart_frame149: - symbol: gKartYoshi149 - type: texture - offset: 0x33F34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_149_wheel_0 -yoshi_kart_frame150: - symbol: gKartYoshi150 - type: texture - offset: 0x344C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_150_wheel_0 -yoshi_kart_frame151: - symbol: gKartYoshi151 - type: texture - offset: 0x34A44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_151_wheel_0 -yoshi_kart_frame152: - symbol: gKartYoshi152 - type: texture - offset: 0x34FDC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_152_wheel_0 -yoshi_kart_frame153: - symbol: gKartYoshi153 - type: texture - offset: 0x3555C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_153_wheel_0 -yoshi_kart_frame154: - symbol: gKartYoshi154 - type: texture - offset: 0x35AD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_154_wheel_0 -yoshi_kart_frame155: - symbol: gKartYoshi155 - type: texture - offset: 0x36070 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_155_wheel_0 -yoshi_kart_frame156: - symbol: gKartYoshi156 - type: texture - offset: 0x36608 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_156_wheel_0 -yoshi_kart_frame157: - symbol: gKartYoshi157 - type: texture - offset: 0x36B78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_157_wheel_0 -yoshi_kart_frame158: - symbol: gKartYoshi158 - type: texture - offset: 0x37114 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_158_wheel_0 -yoshi_kart_frame159: - symbol: gKartYoshi159 - type: texture - offset: 0x376A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_159_wheel_0 -yoshi_kart_frame160: - symbol: gKartYoshi160 - type: texture - offset: 0x37C48 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_160_wheel_0 -yoshi_kart_frame161: - symbol: gKartYoshi161 - type: texture - offset: 0x381F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_161_wheel_0 -yoshi_kart_frame162: - symbol: gKartYoshi162 - type: texture - offset: 0x387B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_162_wheel_0 -yoshi_kart_frame163: - symbol: gKartYoshi163 - type: texture - offset: 0x38D84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_163_wheel_0 -yoshi_kart_frame164: - symbol: gKartYoshi164 - type: texture - offset: 0x39374 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_164_wheel_0 -yoshi_kart_frame165: - symbol: gKartYoshi165 - type: texture - offset: 0x3998C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_165_wheel_0 -yoshi_kart_frame166: - symbol: gKartYoshi166 - type: texture - offset: 0x39FD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_166_wheel_0 -yoshi_kart_frame167: - symbol: gKartYoshi167 - type: texture - offset: 0x3A634 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_167_wheel_0 -yoshi_kart_frame168: - symbol: gKartYoshi168 - type: texture - offset: 0x3ACAC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_168_wheel_0 -yoshi_kart_frame169: - symbol: gKartYoshi169 - type: texture - offset: 0x3B220 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_169_wheel_0 -yoshi_kart_frame170: - symbol: gKartYoshi170 - type: texture - offset: 0x3B7B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_170_wheel_0 -yoshi_kart_frame171: - symbol: gKartYoshi171 - type: texture - offset: 0x3BD58 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_171_wheel_0 -yoshi_kart_frame172: - symbol: gKartYoshi172 - type: texture - offset: 0x3C2F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_172_wheel_0 -yoshi_kart_frame173: - symbol: gKartYoshi173 - type: texture - offset: 0x3C890 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_173_wheel_0 -yoshi_kart_frame174: - symbol: gKartYoshi174 - type: texture - offset: 0x3CE30 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_174_wheel_0 -yoshi_kart_frame175: - symbol: gKartYoshi175 - type: texture - offset: 0x3D3C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_175_wheel_0 -yoshi_kart_frame176: - symbol: gKartYoshi176 - type: texture - offset: 0x3D938 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_176_wheel_0 -yoshi_kart_frame177: - symbol: gKartYoshi177 - type: texture - offset: 0x3DEC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_177_wheel_0 -yoshi_kart_frame178: - symbol: gKartYoshi178 - type: texture - offset: 0x3E454 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_178_wheel_0 -yoshi_kart_frame179: - symbol: gKartYoshi179 - type: texture - offset: 0x3E9F0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_179_wheel_0 -yoshi_kart_frame180: - symbol: gKartYoshi180 - type: texture - offset: 0x3EF7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_180_wheel_0 -yoshi_kart_frame181: - symbol: gKartYoshi181 - type: texture - offset: 0x3F514 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_181_wheel_0 -yoshi_kart_frame182: - symbol: gKartYoshi182 - type: texture - offset: 0x3FAB8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_182_wheel_0 -yoshi_kart_frame183: - symbol: gKartYoshi183 - type: texture - offset: 0x40068 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_183_wheel_0 -yoshi_kart_frame184: - symbol: gKartYoshi184 - type: texture - offset: 0x4064C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_184_wheel_0 -yoshi_kart_frame185: - symbol: gKartYoshi185 - type: texture - offset: 0x40C38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_185_wheel_0 -yoshi_kart_frame186: - symbol: gKartYoshi186 - type: texture - offset: 0x41264 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_186_wheel_0 -yoshi_kart_frame187: - symbol: gKartYoshi187 - type: texture - offset: 0x418C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_187_wheel_0 -yoshi_kart_frame188: - symbol: gKartYoshi188 - type: texture - offset: 0x41F40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_188_wheel_0 -yoshi_kart_frame189: - symbol: gKartYoshi189 - type: texture - offset: 0x425B4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_189_wheel_0 -yoshi_kart_frame190: - symbol: gKartYoshi190 - type: texture - offset: 0x42AB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_190_wheel_0 -yoshi_kart_frame191: - symbol: gKartYoshi191 - type: texture - offset: 0x42FD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_191_wheel_0 -yoshi_kart_frame192: - symbol: gKartYoshi192 - type: texture - offset: 0x43544 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_192_wheel_0 -yoshi_kart_frame193: - symbol: gKartYoshi193 - type: texture - offset: 0x43AD8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_193_wheel_0 -yoshi_kart_frame194: - symbol: gKartYoshi194 - type: texture - offset: 0x4409C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_194_wheel_0 -yoshi_kart_frame195: - symbol: gKartYoshi195 - type: texture - offset: 0x44694 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_195_wheel_0 -yoshi_kart_frame196: - symbol: gKartYoshi196 - type: texture - offset: 0x44CB4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_196_wheel_0 -yoshi_kart_frame197: - symbol: gKartYoshi197 - type: texture - offset: 0x45300 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_197_wheel_0 -yoshi_kart_frame198: - symbol: gKartYoshi198 - type: texture - offset: 0x4596C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_198_wheel_0 -yoshi_kart_frame199: - symbol: gKartYoshi199 - type: texture - offset: 0x45FEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_199_wheel_0 -yoshi_kart_frame200: - symbol: gKartYoshi200 - type: texture - offset: 0x46674 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_200_wheel_0 -yoshi_kart_frame201: - symbol: gKartYoshi201 - type: texture - offset: 0x46D18 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_201_wheel_0 -yoshi_kart_frame202: - symbol: gKartYoshi202 - type: texture - offset: 0x473D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_202_wheel_0 -yoshi_kart_frame203: - symbol: gKartYoshi203 - type: texture - offset: 0x47A74 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_203_wheel_0 -yoshi_kart_frame204: - symbol: gKartYoshi204 - type: texture - offset: 0x48108 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_204_wheel_0 -yoshi_kart_frame205: - symbol: gKartYoshi205 - type: texture - offset: 0x4877C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_205_wheel_0 -yoshi_kart_frame206: - symbol: gKartYoshi206 - type: texture - offset: 0x48DC0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_206_wheel_0 -yoshi_kart_frame207: - symbol: gKartYoshi207 - type: texture - offset: 0x493C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_207_wheel_0 -yoshi_kart_frame208: - symbol: gKartYoshi208 - type: texture - offset: 0x499A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_208_wheel_0 -yoshi_kart_frame209: - symbol: gKartYoshi209 - type: texture - offset: 0x49F5C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_209_wheel_0 -yoshi_kart_frame210: - symbol: gKartYoshi210 - type: texture - offset: 0x4A484 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_210_wheel_0 -yoshi_kart_frame211: - symbol: gKartYoshi211 - type: texture - offset: 0x4A9EC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_211_wheel_0 -yoshi_kart_frame212: - symbol: gKartYoshi212 - type: texture - offset: 0x4AFA0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_212_wheel_0 -yoshi_kart_frame213: - symbol: gKartYoshi213 - type: texture - offset: 0x4B574 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_213_wheel_0 -yoshi_kart_frame214: - symbol: gKartYoshi214 - type: texture - offset: 0x4BB7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_214_wheel_0 -yoshi_kart_frame215: - symbol: gKartYoshi215 - type: texture - offset: 0x4C1A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_215_wheel_0 -yoshi_kart_frame216: - symbol: gKartYoshi216 - type: texture - offset: 0x4C7F8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_216_wheel_0 -yoshi_kart_frame217: - symbol: gKartYoshi217 - type: texture - offset: 0x4CE40 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_217_wheel_0 -yoshi_kart_frame218: - symbol: gKartYoshi218 - type: texture - offset: 0x4D4B0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_218_wheel_0 -yoshi_kart_frame219: - symbol: gKartYoshi219 - type: texture - offset: 0x4DB2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_219_wheel_0 -yoshi_kart_frame220: - symbol: gKartYoshi220 - type: texture - offset: 0x4E1AC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_220_wheel_0 -yoshi_kart_frame221: - symbol: gKartYoshi221 - type: texture - offset: 0x4E83C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_221_wheel_0 -yoshi_kart_frame222: - symbol: gKartYoshi222 - type: texture - offset: 0x4EED4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_222_wheel_0 -yoshi_kart_frame223: - symbol: gKartYoshi223 - type: texture - offset: 0x4F54C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_223_wheel_0 -yoshi_kart_frame224: - symbol: gKartYoshi224 - type: texture - offset: 0x4FB94 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_224_wheel_0 -yoshi_kart_frame225: - symbol: gKartYoshi225 - type: texture - offset: 0x501C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_225_wheel_0 -yoshi_kart_frame226: - symbol: gKartYoshi226 - type: texture - offset: 0x507B8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_226_wheel_0 -yoshi_kart_frame227: - symbol: gKartYoshi227 - type: texture - offset: 0x50D78 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_227_wheel_0 -yoshi_kart_frame228: - symbol: gKartYoshi228 - type: texture - offset: 0x51300 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_228_wheel_0 -yoshi_kart_frame229: - symbol: gKartYoshi229 - type: texture - offset: 0x51858 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_229_wheel_0 -yoshi_kart_frame230: - symbol: gKartYoshi230 - type: texture - offset: 0x51DA4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_230_wheel_0 -yoshi_kart_frame231: - symbol: gKartYoshi231 - type: texture - offset: 0x52334 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_231_wheel_0 -yoshi_kart_frame232: - symbol: gKartYoshi232 - type: texture - offset: 0x528F4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_232_wheel_0 -yoshi_kart_frame233: - symbol: gKartYoshi233 - type: texture - offset: 0x52EFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_233_wheel_0 -yoshi_kart_frame234: - symbol: gKartYoshi234 - type: texture - offset: 0x53508 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_234_wheel_0 -yoshi_kart_frame235: - symbol: gKartYoshi235 - type: texture - offset: 0x53B34 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_235_wheel_0 -yoshi_kart_frame236: - symbol: gKartYoshi236 - type: texture - offset: 0x541A0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_236_wheel_0 -yoshi_kart_frame237: - symbol: gKartYoshi237 - type: texture - offset: 0x54814 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_237_wheel_0 -yoshi_kart_frame238: - symbol: gKartYoshi238 - type: texture - offset: 0x54E90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_238_wheel_0 -yoshi_kart_frame239: - symbol: gKartYoshi239 - type: texture - offset: 0x55514 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_239_wheel_0 -yoshi_kart_frame240: - symbol: gKartYoshi240 - type: texture - offset: 0x55B90 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_240_wheel_0 -yoshi_kart_frame241: - symbol: gKartYoshi241 - type: texture - offset: 0x5621C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_241_wheel_0 -yoshi_kart_frame242: - symbol: gKartYoshi242 - type: texture - offset: 0x56880 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_242_wheel_0 -yoshi_kart_frame243: - symbol: gKartYoshi243 - type: texture - offset: 0x56EE0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_243_wheel_0 -yoshi_kart_frame244: - symbol: gKartYoshi244 - type: texture - offset: 0x57510 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_244_wheel_0 -yoshi_kart_frame245: - symbol: gKartYoshi245 - type: texture - offset: 0x57B00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_245_wheel_0 -yoshi_kart_frame246: - symbol: gKartYoshi246 - type: texture - offset: 0x580D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_246_wheel_0 -yoshi_kart_frame247: - symbol: gKartYoshi247 - type: texture - offset: 0x58680 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_247_wheel_0 -yoshi_kart_frame248: - symbol: gKartYoshi248 - type: texture - offset: 0x58BD0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_248_wheel_0 -yoshi_kart_frame249: - symbol: gKartYoshi249 - type: texture - offset: 0x590E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_249_wheel_0 -yoshi_kart_frame250: - symbol: gKartYoshi250 - type: texture - offset: 0x5965C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_250_wheel_0 -yoshi_kart_frame251: - symbol: gKartYoshi251 - type: texture - offset: 0x59BFC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_251_wheel_0 -yoshi_kart_frame252: - symbol: gKartYoshi252 - type: texture - offset: 0x5A1C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_252_wheel_0 -yoshi_kart_frame253: - symbol: gKartYoshi253 - type: texture - offset: 0x5A7D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_253_wheel_0 -yoshi_kart_frame254: - symbol: gKartYoshi254 - type: texture - offset: 0x5AE00 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_254_wheel_0 -yoshi_kart_frame255: - symbol: gKartYoshi255 - type: texture - offset: 0x5B458 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_255_wheel_0 -yoshi_kart_frame256: - symbol: gKartYoshi256 - type: texture - offset: 0x5BACC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_256_wheel_0 -yoshi_kart_frame257: - symbol: gKartYoshi257 - type: texture - offset: 0x5C150 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_257_wheel_0 -yoshi_kart_frame258: - symbol: gKartYoshi258 - type: texture - offset: 0x5C7E0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_258_wheel_0 -yoshi_kart_frame259: - symbol: gKartYoshi259 - type: texture - offset: 0x5CE6C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_259_wheel_0 -yoshi_kart_frame260: - symbol: gKartYoshi260 - type: texture - offset: 0x5D500 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_260_wheel_0 -yoshi_kart_frame261: - symbol: gKartYoshi261 - type: texture - offset: 0x5DB64 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_261_wheel_0 -yoshi_kart_frame262: - symbol: gKartYoshi262 - type: texture - offset: 0x5E1D4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_262_wheel_0 -yoshi_kart_frame263: - symbol: gKartYoshi263 - type: texture - offset: 0x5E80C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_263_wheel_0 -yoshi_kart_frame264: - symbol: gKartYoshi264 - type: texture - offset: 0x5EDF4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_264_wheel_0 -yoshi_kart_frame265: - symbol: gKartYoshi265 - type: texture - offset: 0x5F3C4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_265_wheel_0 -yoshi_kart_frame266: - symbol: gKartYoshi266 - type: texture - offset: 0x5F938 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_266_wheel_0 -yoshi_kart_frame267: - symbol: gKartYoshi267 - type: texture - offset: 0x5FE7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_267_wheel_0 -yoshi_kart_frame268: - symbol: gKartYoshi268 - type: texture - offset: 0x603A8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_268_wheel_0 -yoshi_kart_frame269: - symbol: gKartYoshi269 - type: texture - offset: 0x60890 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_269_wheel_0 -yoshi_kart_frame270: - symbol: gKartYoshi270 - type: texture - offset: 0x60E44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_270_wheel_0 -yoshi_kart_frame271: - symbol: gKartYoshi271 - type: texture - offset: 0x61418 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_271_wheel_0 -yoshi_kart_frame272: - symbol: gKartYoshi272 - type: texture - offset: 0x61A14 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_272_wheel_0 -yoshi_kart_frame273: - symbol: gKartYoshi273 - type: texture - offset: 0x62030 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_273_wheel_0 -yoshi_kart_frame274: - symbol: gKartYoshi274 - type: texture - offset: 0x62684 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_274_wheel_0 -yoshi_kart_frame275: - symbol: gKartYoshi275 - type: texture - offset: 0x62CEC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_275_wheel_0 -yoshi_kart_frame276: - symbol: gKartYoshi276 - type: texture - offset: 0x63380 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_276_wheel_0 -yoshi_kart_frame277: - symbol: gKartYoshi277 - type: texture - offset: 0x639FC - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_277_wheel_0 -yoshi_kart_frame278: - symbol: gKartYoshi278 - type: texture - offset: 0x64064 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_278_wheel_0 -yoshi_kart_frame279: - symbol: gKartYoshi279 - type: texture - offset: 0x646E4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_279_wheel_0 -yoshi_kart_frame280: - symbol: gKartYoshi280 - type: texture - offset: 0x64D4C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_280_wheel_0 -yoshi_kart_frame281: - symbol: gKartYoshi281 - type: texture - offset: 0x6539C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_281_wheel_0 -yoshi_kart_frame282: - symbol: gKartYoshi282 - type: texture - offset: 0x659D8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_282_wheel_0 -yoshi_kart_frame283: - symbol: gKartYoshi283 - type: texture - offset: 0x65FD4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_283_wheel_0 -yoshi_kart_frame284: - symbol: gKartYoshi284 - type: texture - offset: 0x665A4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_284_wheel_0 -yoshi_kart_frame285: - symbol: gKartYoshi285 - type: texture - offset: 0x66B38 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_285_wheel_0 -yoshi_kart_frame286: - symbol: gKartYoshi286 - type: texture - offset: 0x67084 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_286_wheel_0 -yoshi_kart_frame287: - symbol: gKartYoshi287 - type: texture - offset: 0x67578 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_287_wheel_0 -yoshi_kart_frame288: - symbol: gKartYoshi288 - type: texture - offset: 0x67A44 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_288_wheel_0 -yoshi_kart_frame289: - symbol: gKartYoshi289 - type: texture - offset: 0x67ED0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame290: - symbol: gKartYoshi290 - type: texture - offset: 0x683C8 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame291: - symbol: gKartYoshi291 - type: texture - offset: 0x6890C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame292: - symbol: gKartYoshi292 - type: texture - offset: 0x68ED4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame293: - symbol: gKartYoshi293 - type: texture - offset: 0x69560 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame294: - symbol: gKartYoshi294 - type: texture - offset: 0x69B54 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame295: - symbol: gKartYoshi295 - type: texture - offset: 0x6A158 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame296: - symbol: gKartYoshi296 - type: texture - offset: 0x6A71C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame297: - symbol: gKartYoshi297 - type: texture - offset: 0x6AC60 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame298: - symbol: gKartYoshi298 - type: texture - offset: 0x6B11C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame299: - symbol: gKartYoshi299 - type: texture - offset: 0x6B678 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame300: - symbol: gKartYoshi300 - type: texture - offset: 0x6BC2C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame301: - symbol: gKartYoshi301 - type: texture - offset: 0x6C20C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame302: - symbol: gKartYoshi302 - type: texture - offset: 0x6C7C0 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame303: - symbol: gKartYoshi303 - type: texture - offset: 0x6CD68 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame304: - symbol: gKartYoshi304 - type: texture - offset: 0x6D310 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame305: - symbol: gKartYoshi305 - type: texture - offset: 0x6D864 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame306: - symbol: gKartYoshi306 - type: texture - offset: 0x6DCC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame307: - symbol: gKartYoshi307 - type: texture - offset: 0x6E21C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame308: - symbol: gKartYoshi308 - type: texture - offset: 0x6E830 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame309: - symbol: gKartYoshi309 - type: texture - offset: 0x6EE7C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame310: - symbol: gKartYoshi310 - type: texture - offset: 0x6F470 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame311: - symbol: gKartYoshi311 - type: texture - offset: 0x6FA84 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame312: - symbol: gKartYoshi312 - type: texture - offset: 0x7003C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame313: - symbol: gKartYoshi313 - type: texture - offset: 0x70550 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame314: - symbol: gKartYoshi314 - type: texture - offset: 0x70A20 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame315: - symbol: gKartYoshi315 - type: texture - offset: 0x70F80 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame316: - symbol: gKartYoshi316 - type: texture - offset: 0x7150C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame317: - symbol: gKartYoshi317 - type: texture - offset: 0x71AC4 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame318: - symbol: gKartYoshi318 - type: texture - offset: 0x7208C - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame319: - symbol: gKartYoshi319 - type: texture - offset: 0x72634 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -yoshi_kart_frame320: - symbol: gKartYoshi320 - type: texture - offset: 0x72C08 - ctype: u8 - mio0: true - width: 64 - height: 64 - format: CI8 - tlut_symbol: yoshi_kart_palette - tlut_wheel: kart_000_wheel_0 -kart_000_wheel_0: - symbol: gKartYoshi000Wheel0 - type: texture - offset: 0x731A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_1: - symbol: gKartYoshi000Wheel1 - type: texture - offset: 0x73228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_2: - symbol: gKartYoshi000Wheel2 - type: texture - offset: 0x732A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_000_wheel_3: - symbol: gKartYoshi000Wheel3 - type: texture - offset: 0x73328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_0: - symbol: gKartYoshi001Wheel0 - type: texture - offset: 0x733A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_1: - symbol: gKartYoshi001Wheel1 - type: texture - offset: 0x73428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_2: - symbol: gKartYoshi001Wheel2 - type: texture - offset: 0x734A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_001_wheel_3: - symbol: gKartYoshi001Wheel3 - type: texture - offset: 0x73528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_0: - symbol: gKartYoshi002Wheel0 - type: texture - offset: 0x735A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_1: - symbol: gKartYoshi002Wheel1 - type: texture - offset: 0x73628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_2: - symbol: gKartYoshi002Wheel2 - type: texture - offset: 0x736A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_002_wheel_3: - symbol: gKartYoshi002Wheel3 - type: texture - offset: 0x73728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_0: - symbol: gKartYoshi003Wheel0 - type: texture - offset: 0x737A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_1: - symbol: gKartYoshi003Wheel1 - type: texture - offset: 0x73828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_2: - symbol: gKartYoshi003Wheel2 - type: texture - offset: 0x738A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_003_wheel_3: - symbol: gKartYoshi003Wheel3 - type: texture - offset: 0x73928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_0: - symbol: gKartYoshi004Wheel0 - type: texture - offset: 0x739A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_1: - symbol: gKartYoshi004Wheel1 - type: texture - offset: 0x73A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_2: - symbol: gKartYoshi004Wheel2 - type: texture - offset: 0x73AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_004_wheel_3: - symbol: gKartYoshi004Wheel3 - type: texture - offset: 0x73B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_0: - symbol: gKartYoshi005Wheel0 - type: texture - offset: 0x73BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_1: - symbol: gKartYoshi005Wheel1 - type: texture - offset: 0x73C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_2: - symbol: gKartYoshi005Wheel2 - type: texture - offset: 0x73CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_005_wheel_3: - symbol: gKartYoshi005Wheel3 - type: texture - offset: 0x73D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_0: - symbol: gKartYoshi006Wheel0 - type: texture - offset: 0x73DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_1: - symbol: gKartYoshi006Wheel1 - type: texture - offset: 0x73E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_2: - symbol: gKartYoshi006Wheel2 - type: texture - offset: 0x73EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_006_wheel_3: - symbol: gKartYoshi006Wheel3 - type: texture - offset: 0x73F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_0: - symbol: gKartYoshi007Wheel0 - type: texture - offset: 0x73FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_1: - symbol: gKartYoshi007Wheel1 - type: texture - offset: 0x74028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_2: - symbol: gKartYoshi007Wheel2 - type: texture - offset: 0x740A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_007_wheel_3: - symbol: gKartYoshi007Wheel3 - type: texture - offset: 0x74128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_0: - symbol: gKartYoshi008Wheel0 - type: texture - offset: 0x741A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_1: - symbol: gKartYoshi008Wheel1 - type: texture - offset: 0x74228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_2: - symbol: gKartYoshi008Wheel2 - type: texture - offset: 0x742A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_008_wheel_3: - symbol: gKartYoshi008Wheel3 - type: texture - offset: 0x74328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_0: - symbol: gKartYoshi009Wheel0 - type: texture - offset: 0x743A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_1: - symbol: gKartYoshi009Wheel1 - type: texture - offset: 0x74428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_2: - symbol: gKartYoshi009Wheel2 - type: texture - offset: 0x744A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_009_wheel_3: - symbol: gKartYoshi009Wheel3 - type: texture - offset: 0x74528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_0: - symbol: gKartYoshi010Wheel0 - type: texture - offset: 0x745A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_1: - symbol: gKartYoshi010Wheel1 - type: texture - offset: 0x74628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_2: - symbol: gKartYoshi010Wheel2 - type: texture - offset: 0x746A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_010_wheel_3: - symbol: gKartYoshi010Wheel3 - type: texture - offset: 0x74728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_0: - symbol: gKartYoshi011Wheel0 - type: texture - offset: 0x747A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_1: - symbol: gKartYoshi011Wheel1 - type: texture - offset: 0x74828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_2: - symbol: gKartYoshi011Wheel2 - type: texture - offset: 0x748A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_011_wheel_3: - symbol: gKartYoshi011Wheel3 - type: texture - offset: 0x74928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_0: - symbol: gKartYoshi012Wheel0 - type: texture - offset: 0x749A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_1: - symbol: gKartYoshi012Wheel1 - type: texture - offset: 0x74A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_2: - symbol: gKartYoshi012Wheel2 - type: texture - offset: 0x74AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_012_wheel_3: - symbol: gKartYoshi012Wheel3 - type: texture - offset: 0x74B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_0: - symbol: gKartYoshi013Wheel0 - type: texture - offset: 0x74BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_1: - symbol: gKartYoshi013Wheel1 - type: texture - offset: 0x74C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_2: - symbol: gKartYoshi013Wheel2 - type: texture - offset: 0x74CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_013_wheel_3: - symbol: gKartYoshi013Wheel3 - type: texture - offset: 0x74D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_0: - symbol: gKartYoshi014Wheel0 - type: texture - offset: 0x74DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_1: - symbol: gKartYoshi014Wheel1 - type: texture - offset: 0x74E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_2: - symbol: gKartYoshi014Wheel2 - type: texture - offset: 0x74EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_014_wheel_3: - symbol: gKartYoshi014Wheel3 - type: texture - offset: 0x74F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_0: - symbol: gKartYoshi015Wheel0 - type: texture - offset: 0x74FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_1: - symbol: gKartYoshi015Wheel1 - type: texture - offset: 0x75028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_2: - symbol: gKartYoshi015Wheel2 - type: texture - offset: 0x750A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_015_wheel_3: - symbol: gKartYoshi015Wheel3 - type: texture - offset: 0x75128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_0: - symbol: gKartYoshi016Wheel0 - type: texture - offset: 0x751A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_1: - symbol: gKartYoshi016Wheel1 - type: texture - offset: 0x75228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_2: - symbol: gKartYoshi016Wheel2 - type: texture - offset: 0x752A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_016_wheel_3: - symbol: gKartYoshi016Wheel3 - type: texture - offset: 0x75328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_0: - symbol: gKartYoshi017Wheel0 - type: texture - offset: 0x753A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_1: - symbol: gKartYoshi017Wheel1 - type: texture - offset: 0x75428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_2: - symbol: gKartYoshi017Wheel2 - type: texture - offset: 0x754A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_017_wheel_3: - symbol: gKartYoshi017Wheel3 - type: texture - offset: 0x75528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_0: - symbol: gKartYoshi018Wheel0 - type: texture - offset: 0x755A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_1: - symbol: gKartYoshi018Wheel1 - type: texture - offset: 0x75628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_2: - symbol: gKartYoshi018Wheel2 - type: texture - offset: 0x756A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_018_wheel_3: - symbol: gKartYoshi018Wheel3 - type: texture - offset: 0x75728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_0: - symbol: gKartYoshi019Wheel0 - type: texture - offset: 0x757A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_1: - symbol: gKartYoshi019Wheel1 - type: texture - offset: 0x75828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_2: - symbol: gKartYoshi019Wheel2 - type: texture - offset: 0x758A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_019_wheel_3: - symbol: gKartYoshi019Wheel3 - type: texture - offset: 0x75928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_0: - symbol: gKartYoshi020Wheel0 - type: texture - offset: 0x759A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_1: - symbol: gKartYoshi020Wheel1 - type: texture - offset: 0x75A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_2: - symbol: gKartYoshi020Wheel2 - type: texture - offset: 0x75AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_020_wheel_3: - symbol: gKartYoshi020Wheel3 - type: texture - offset: 0x75B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_0: - symbol: gKartYoshi021Wheel0 - type: texture - offset: 0x75BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_1: - symbol: gKartYoshi021Wheel1 - type: texture - offset: 0x75C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_2: - symbol: gKartYoshi021Wheel2 - type: texture - offset: 0x75CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_021_wheel_3: - symbol: gKartYoshi021Wheel3 - type: texture - offset: 0x75D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_0: - symbol: gKartYoshi022Wheel0 - type: texture - offset: 0x75DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_1: - symbol: gKartYoshi022Wheel1 - type: texture - offset: 0x75E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_2: - symbol: gKartYoshi022Wheel2 - type: texture - offset: 0x75EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_022_wheel_3: - symbol: gKartYoshi022Wheel3 - type: texture - offset: 0x75F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_0: - symbol: gKartYoshi023Wheel0 - type: texture - offset: 0x75FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_1: - symbol: gKartYoshi023Wheel1 - type: texture - offset: 0x76028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_2: - symbol: gKartYoshi023Wheel2 - type: texture - offset: 0x760A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_023_wheel_3: - symbol: gKartYoshi023Wheel3 - type: texture - offset: 0x76128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_0: - symbol: gKartYoshi024Wheel0 - type: texture - offset: 0x761A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_1: - symbol: gKartYoshi024Wheel1 - type: texture - offset: 0x76228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_2: - symbol: gKartYoshi024Wheel2 - type: texture - offset: 0x762A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_024_wheel_3: - symbol: gKartYoshi024Wheel3 - type: texture - offset: 0x76328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_0: - symbol: gKartYoshi025Wheel0 - type: texture - offset: 0x763A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_1: - symbol: gKartYoshi025Wheel1 - type: texture - offset: 0x76428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_2: - symbol: gKartYoshi025Wheel2 - type: texture - offset: 0x764A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_025_wheel_3: - symbol: gKartYoshi025Wheel3 - type: texture - offset: 0x76528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_0: - symbol: gKartYoshi026Wheel0 - type: texture - offset: 0x765A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_1: - symbol: gKartYoshi026Wheel1 - type: texture - offset: 0x76628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_2: - symbol: gKartYoshi026Wheel2 - type: texture - offset: 0x766A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_026_wheel_3: - symbol: gKartYoshi026Wheel3 - type: texture - offset: 0x76728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_0: - symbol: gKartYoshi027Wheel0 - type: texture - offset: 0x767A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_1: - symbol: gKartYoshi027Wheel1 - type: texture - offset: 0x76828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_2: - symbol: gKartYoshi027Wheel2 - type: texture - offset: 0x768A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_027_wheel_3: - symbol: gKartYoshi027Wheel3 - type: texture - offset: 0x76928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_0: - symbol: gKartYoshi028Wheel0 - type: texture - offset: 0x769A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_1: - symbol: gKartYoshi028Wheel1 - type: texture - offset: 0x76A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_2: - symbol: gKartYoshi028Wheel2 - type: texture - offset: 0x76AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_028_wheel_3: - symbol: gKartYoshi028Wheel3 - type: texture - offset: 0x76B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_0: - symbol: gKartYoshi029Wheel0 - type: texture - offset: 0x76BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_1: - symbol: gKartYoshi029Wheel1 - type: texture - offset: 0x76C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_2: - symbol: gKartYoshi029Wheel2 - type: texture - offset: 0x76CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_029_wheel_3: - symbol: gKartYoshi029Wheel3 - type: texture - offset: 0x76D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_0: - symbol: gKartYoshi030Wheel0 - type: texture - offset: 0x76DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_1: - symbol: gKartYoshi030Wheel1 - type: texture - offset: 0x76E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_2: - symbol: gKartYoshi030Wheel2 - type: texture - offset: 0x76EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_030_wheel_3: - symbol: gKartYoshi030Wheel3 - type: texture - offset: 0x76F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_0: - symbol: gKartYoshi031Wheel0 - type: texture - offset: 0x76FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_1: - symbol: gKartYoshi031Wheel1 - type: texture - offset: 0x77028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_2: - symbol: gKartYoshi031Wheel2 - type: texture - offset: 0x770A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_031_wheel_3: - symbol: gKartYoshi031Wheel3 - type: texture - offset: 0x77128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_0: - symbol: gKartYoshi032Wheel0 - type: texture - offset: 0x771A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_1: - symbol: gKartYoshi032Wheel1 - type: texture - offset: 0x77228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_2: - symbol: gKartYoshi032Wheel2 - type: texture - offset: 0x772A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_032_wheel_3: - symbol: gKartYoshi032Wheel3 - type: texture - offset: 0x77328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_0: - symbol: gKartYoshi033Wheel0 - type: texture - offset: 0x773A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_1: - symbol: gKartYoshi033Wheel1 - type: texture - offset: 0x77428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_2: - symbol: gKartYoshi033Wheel2 - type: texture - offset: 0x774A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_033_wheel_3: - symbol: gKartYoshi033Wheel3 - type: texture - offset: 0x77528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_0: - symbol: gKartYoshi034Wheel0 - type: texture - offset: 0x775A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_1: - symbol: gKartYoshi034Wheel1 - type: texture - offset: 0x77628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_2: - symbol: gKartYoshi034Wheel2 - type: texture - offset: 0x776A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_034_wheel_3: - symbol: gKartYoshi034Wheel3 - type: texture - offset: 0x77728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_0: - symbol: gKartYoshi035Wheel0 - type: texture - offset: 0x777A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_1: - symbol: gKartYoshi035Wheel1 - type: texture - offset: 0x77828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_2: - symbol: gKartYoshi035Wheel2 - type: texture - offset: 0x778A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_035_wheel_3: - symbol: gKartYoshi035Wheel3 - type: texture - offset: 0x77928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_0: - symbol: gKartYoshi036Wheel0 - type: texture - offset: 0x779A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_1: - symbol: gKartYoshi036Wheel1 - type: texture - offset: 0x77A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_2: - symbol: gKartYoshi036Wheel2 - type: texture - offset: 0x77AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_036_wheel_3: - symbol: gKartYoshi036Wheel3 - type: texture - offset: 0x77B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_0: - symbol: gKartYoshi037Wheel0 - type: texture - offset: 0x77BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_1: - symbol: gKartYoshi037Wheel1 - type: texture - offset: 0x77C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_2: - symbol: gKartYoshi037Wheel2 - type: texture - offset: 0x77CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_037_wheel_3: - symbol: gKartYoshi037Wheel3 - type: texture - offset: 0x77D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_0: - symbol: gKartYoshi038Wheel0 - type: texture - offset: 0x77DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_1: - symbol: gKartYoshi038Wheel1 - type: texture - offset: 0x77E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_2: - symbol: gKartYoshi038Wheel2 - type: texture - offset: 0x77EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_038_wheel_3: - symbol: gKartYoshi038Wheel3 - type: texture - offset: 0x77F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_0: - symbol: gKartYoshi039Wheel0 - type: texture - offset: 0x77FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_1: - symbol: gKartYoshi039Wheel1 - type: texture - offset: 0x78028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_2: - symbol: gKartYoshi039Wheel2 - type: texture - offset: 0x780A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_039_wheel_3: - symbol: gKartYoshi039Wheel3 - type: texture - offset: 0x78128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_0: - symbol: gKartYoshi040Wheel0 - type: texture - offset: 0x781A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_1: - symbol: gKartYoshi040Wheel1 - type: texture - offset: 0x78228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_2: - symbol: gKartYoshi040Wheel2 - type: texture - offset: 0x782A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_040_wheel_3: - symbol: gKartYoshi040Wheel3 - type: texture - offset: 0x78328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_0: - symbol: gKartYoshi041Wheel0 - type: texture - offset: 0x783A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_1: - symbol: gKartYoshi041Wheel1 - type: texture - offset: 0x78428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_2: - symbol: gKartYoshi041Wheel2 - type: texture - offset: 0x784A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_041_wheel_3: - symbol: gKartYoshi041Wheel3 - type: texture - offset: 0x78528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_0: - symbol: gKartYoshi042Wheel0 - type: texture - offset: 0x785A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_1: - symbol: gKartYoshi042Wheel1 - type: texture - offset: 0x78628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_2: - symbol: gKartYoshi042Wheel2 - type: texture - offset: 0x786A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_042_wheel_3: - symbol: gKartYoshi042Wheel3 - type: texture - offset: 0x78728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_0: - symbol: gKartYoshi043Wheel0 - type: texture - offset: 0x787A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_1: - symbol: gKartYoshi043Wheel1 - type: texture - offset: 0x78828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_2: - symbol: gKartYoshi043Wheel2 - type: texture - offset: 0x788A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_043_wheel_3: - symbol: gKartYoshi043Wheel3 - type: texture - offset: 0x78928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_0: - symbol: gKartYoshi044Wheel0 - type: texture - offset: 0x789A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_1: - symbol: gKartYoshi044Wheel1 - type: texture - offset: 0x78A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_2: - symbol: gKartYoshi044Wheel2 - type: texture - offset: 0x78AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_044_wheel_3: - symbol: gKartYoshi044Wheel3 - type: texture - offset: 0x78B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_0: - symbol: gKartYoshi045Wheel0 - type: texture - offset: 0x78BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_1: - symbol: gKartYoshi045Wheel1 - type: texture - offset: 0x78C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_2: - symbol: gKartYoshi045Wheel2 - type: texture - offset: 0x78CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_045_wheel_3: - symbol: gKartYoshi045Wheel3 - type: texture - offset: 0x78D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_0: - symbol: gKartYoshi046Wheel0 - type: texture - offset: 0x78DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_1: - symbol: gKartYoshi046Wheel1 - type: texture - offset: 0x78E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_2: - symbol: gKartYoshi046Wheel2 - type: texture - offset: 0x78EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_046_wheel_3: - symbol: gKartYoshi046Wheel3 - type: texture - offset: 0x78F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_0: - symbol: gKartYoshi047Wheel0 - type: texture - offset: 0x78FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_1: - symbol: gKartYoshi047Wheel1 - type: texture - offset: 0x79028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_2: - symbol: gKartYoshi047Wheel2 - type: texture - offset: 0x790A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_047_wheel_3: - symbol: gKartYoshi047Wheel3 - type: texture - offset: 0x79128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_0: - symbol: gKartYoshi048Wheel0 - type: texture - offset: 0x791A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_1: - symbol: gKartYoshi048Wheel1 - type: texture - offset: 0x79228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_2: - symbol: gKartYoshi048Wheel2 - type: texture - offset: 0x792A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_048_wheel_3: - symbol: gKartYoshi048Wheel3 - type: texture - offset: 0x79328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_0: - symbol: gKartYoshi049Wheel0 - type: texture - offset: 0x793A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_1: - symbol: gKartYoshi049Wheel1 - type: texture - offset: 0x79428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_2: - symbol: gKartYoshi049Wheel2 - type: texture - offset: 0x794A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_049_wheel_3: - symbol: gKartYoshi049Wheel3 - type: texture - offset: 0x79528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_0: - symbol: gKartYoshi050Wheel0 - type: texture - offset: 0x795A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_1: - symbol: gKartYoshi050Wheel1 - type: texture - offset: 0x79628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_2: - symbol: gKartYoshi050Wheel2 - type: texture - offset: 0x796A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_050_wheel_3: - symbol: gKartYoshi050Wheel3 - type: texture - offset: 0x79728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_0: - symbol: gKartYoshi051Wheel0 - type: texture - offset: 0x797A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_1: - symbol: gKartYoshi051Wheel1 - type: texture - offset: 0x79828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_2: - symbol: gKartYoshi051Wheel2 - type: texture - offset: 0x798A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_051_wheel_3: - symbol: gKartYoshi051Wheel3 - type: texture - offset: 0x79928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_0: - symbol: gKartYoshi052Wheel0 - type: texture - offset: 0x799A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_1: - symbol: gKartYoshi052Wheel1 - type: texture - offset: 0x79A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_2: - symbol: gKartYoshi052Wheel2 - type: texture - offset: 0x79AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_052_wheel_3: - symbol: gKartYoshi052Wheel3 - type: texture - offset: 0x79B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_0: - symbol: gKartYoshi053Wheel0 - type: texture - offset: 0x79BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_1: - symbol: gKartYoshi053Wheel1 - type: texture - offset: 0x79C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_2: - symbol: gKartYoshi053Wheel2 - type: texture - offset: 0x79CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_053_wheel_3: - symbol: gKartYoshi053Wheel3 - type: texture - offset: 0x79D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_0: - symbol: gKartYoshi054Wheel0 - type: texture - offset: 0x79DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_1: - symbol: gKartYoshi054Wheel1 - type: texture - offset: 0x79E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_2: - symbol: gKartYoshi054Wheel2 - type: texture - offset: 0x79EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_054_wheel_3: - symbol: gKartYoshi054Wheel3 - type: texture - offset: 0x79F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_0: - symbol: gKartYoshi055Wheel0 - type: texture - offset: 0x79FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_1: - symbol: gKartYoshi055Wheel1 - type: texture - offset: 0x7A028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_2: - symbol: gKartYoshi055Wheel2 - type: texture - offset: 0x7A0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_055_wheel_3: - symbol: gKartYoshi055Wheel3 - type: texture - offset: 0x7A128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_0: - symbol: gKartYoshi056Wheel0 - type: texture - offset: 0x7A1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_1: - symbol: gKartYoshi056Wheel1 - type: texture - offset: 0x7A228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_2: - symbol: gKartYoshi056Wheel2 - type: texture - offset: 0x7A2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_056_wheel_3: - symbol: gKartYoshi056Wheel3 - type: texture - offset: 0x7A328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_0: - symbol: gKartYoshi057Wheel0 - type: texture - offset: 0x7A3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_1: - symbol: gKartYoshi057Wheel1 - type: texture - offset: 0x7A428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_2: - symbol: gKartYoshi057Wheel2 - type: texture - offset: 0x7A4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_057_wheel_3: - symbol: gKartYoshi057Wheel3 - type: texture - offset: 0x7A528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_0: - symbol: gKartYoshi058Wheel0 - type: texture - offset: 0x7A5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_1: - symbol: gKartYoshi058Wheel1 - type: texture - offset: 0x7A628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_2: - symbol: gKartYoshi058Wheel2 - type: texture - offset: 0x7A6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_058_wheel_3: - symbol: gKartYoshi058Wheel3 - type: texture - offset: 0x7A728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_0: - symbol: gKartYoshi059Wheel0 - type: texture - offset: 0x7A7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_1: - symbol: gKartYoshi059Wheel1 - type: texture - offset: 0x7A828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_2: - symbol: gKartYoshi059Wheel2 - type: texture - offset: 0x7A8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_059_wheel_3: - symbol: gKartYoshi059Wheel3 - type: texture - offset: 0x7A928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_0: - symbol: gKartYoshi060Wheel0 - type: texture - offset: 0x7A9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_1: - symbol: gKartYoshi060Wheel1 - type: texture - offset: 0x7AA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_2: - symbol: gKartYoshi060Wheel2 - type: texture - offset: 0x7AAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_060_wheel_3: - symbol: gKartYoshi060Wheel3 - type: texture - offset: 0x7AB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_0: - symbol: gKartYoshi061Wheel0 - type: texture - offset: 0x7ABA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_1: - symbol: gKartYoshi061Wheel1 - type: texture - offset: 0x7AC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_2: - symbol: gKartYoshi061Wheel2 - type: texture - offset: 0x7ACA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_061_wheel_3: - symbol: gKartYoshi061Wheel3 - type: texture - offset: 0x7AD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_0: - symbol: gKartYoshi062Wheel0 - type: texture - offset: 0x7ADA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_1: - symbol: gKartYoshi062Wheel1 - type: texture - offset: 0x7AE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_2: - symbol: gKartYoshi062Wheel2 - type: texture - offset: 0x7AEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_062_wheel_3: - symbol: gKartYoshi062Wheel3 - type: texture - offset: 0x7AF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_0: - symbol: gKartYoshi063Wheel0 - type: texture - offset: 0x7AFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_1: - symbol: gKartYoshi063Wheel1 - type: texture - offset: 0x7B028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_2: - symbol: gKartYoshi063Wheel2 - type: texture - offset: 0x7B0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_063_wheel_3: - symbol: gKartYoshi063Wheel3 - type: texture - offset: 0x7B128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_0: - symbol: gKartYoshi064Wheel0 - type: texture - offset: 0x7B1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_1: - symbol: gKartYoshi064Wheel1 - type: texture - offset: 0x7B228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_2: - symbol: gKartYoshi064Wheel2 - type: texture - offset: 0x7B2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_064_wheel_3: - symbol: gKartYoshi064Wheel3 - type: texture - offset: 0x7B328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_0: - symbol: gKartYoshi065Wheel0 - type: texture - offset: 0x7B3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_1: - symbol: gKartYoshi065Wheel1 - type: texture - offset: 0x7B428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_2: - symbol: gKartYoshi065Wheel2 - type: texture - offset: 0x7B4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_065_wheel_3: - symbol: gKartYoshi065Wheel3 - type: texture - offset: 0x7B528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_0: - symbol: gKartYoshi066Wheel0 - type: texture - offset: 0x7B5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_1: - symbol: gKartYoshi066Wheel1 - type: texture - offset: 0x7B628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_2: - symbol: gKartYoshi066Wheel2 - type: texture - offset: 0x7B6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_066_wheel_3: - symbol: gKartYoshi066Wheel3 - type: texture - offset: 0x7B728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_0: - symbol: gKartYoshi067Wheel0 - type: texture - offset: 0x7B7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_1: - symbol: gKartYoshi067Wheel1 - type: texture - offset: 0x7B828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_2: - symbol: gKartYoshi067Wheel2 - type: texture - offset: 0x7B8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_067_wheel_3: - symbol: gKartYoshi067Wheel3 - type: texture - offset: 0x7B928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_0: - symbol: gKartYoshi068Wheel0 - type: texture - offset: 0x7B9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_1: - symbol: gKartYoshi068Wheel1 - type: texture - offset: 0x7BA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_2: - symbol: gKartYoshi068Wheel2 - type: texture - offset: 0x7BAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_068_wheel_3: - symbol: gKartYoshi068Wheel3 - type: texture - offset: 0x7BB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_0: - symbol: gKartYoshi069Wheel0 - type: texture - offset: 0x7BBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_1: - symbol: gKartYoshi069Wheel1 - type: texture - offset: 0x7BC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_2: - symbol: gKartYoshi069Wheel2 - type: texture - offset: 0x7BCA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_069_wheel_3: - symbol: gKartYoshi069Wheel3 - type: texture - offset: 0x7BD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_0: - symbol: gKartYoshi070Wheel0 - type: texture - offset: 0x7BDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_1: - symbol: gKartYoshi070Wheel1 - type: texture - offset: 0x7BE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_2: - symbol: gKartYoshi070Wheel2 - type: texture - offset: 0x7BEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_070_wheel_3: - symbol: gKartYoshi070Wheel3 - type: texture - offset: 0x7BF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_0: - symbol: gKartYoshi071Wheel0 - type: texture - offset: 0x7BFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_1: - symbol: gKartYoshi071Wheel1 - type: texture - offset: 0x7C028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_2: - symbol: gKartYoshi071Wheel2 - type: texture - offset: 0x7C0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_071_wheel_3: - symbol: gKartYoshi071Wheel3 - type: texture - offset: 0x7C128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_0: - symbol: gKartYoshi072Wheel0 - type: texture - offset: 0x7C1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_1: - symbol: gKartYoshi072Wheel1 - type: texture - offset: 0x7C228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_2: - symbol: gKartYoshi072Wheel2 - type: texture - offset: 0x7C2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_072_wheel_3: - symbol: gKartYoshi072Wheel3 - type: texture - offset: 0x7C328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_0: - symbol: gKartYoshi073Wheel0 - type: texture - offset: 0x7C3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_1: - symbol: gKartYoshi073Wheel1 - type: texture - offset: 0x7C428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_2: - symbol: gKartYoshi073Wheel2 - type: texture - offset: 0x7C4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_073_wheel_3: - symbol: gKartYoshi073Wheel3 - type: texture - offset: 0x7C528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_0: - symbol: gKartYoshi074Wheel0 - type: texture - offset: 0x7C5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_1: - symbol: gKartYoshi074Wheel1 - type: texture - offset: 0x7C628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_2: - symbol: gKartYoshi074Wheel2 - type: texture - offset: 0x7C6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_074_wheel_3: - symbol: gKartYoshi074Wheel3 - type: texture - offset: 0x7C728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_0: - symbol: gKartYoshi075Wheel0 - type: texture - offset: 0x7C7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_1: - symbol: gKartYoshi075Wheel1 - type: texture - offset: 0x7C828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_2: - symbol: gKartYoshi075Wheel2 - type: texture - offset: 0x7C8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_075_wheel_3: - symbol: gKartYoshi075Wheel3 - type: texture - offset: 0x7C928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_0: - symbol: gKartYoshi076Wheel0 - type: texture - offset: 0x7C9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_1: - symbol: gKartYoshi076Wheel1 - type: texture - offset: 0x7CA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_2: - symbol: gKartYoshi076Wheel2 - type: texture - offset: 0x7CAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_076_wheel_3: - symbol: gKartYoshi076Wheel3 - type: texture - offset: 0x7CB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_0: - symbol: gKartYoshi077Wheel0 - type: texture - offset: 0x7CBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_1: - symbol: gKartYoshi077Wheel1 - type: texture - offset: 0x7CC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_2: - symbol: gKartYoshi077Wheel2 - type: texture - offset: 0x7CCA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_077_wheel_3: - symbol: gKartYoshi077Wheel3 - type: texture - offset: 0x7CD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_0: - symbol: gKartYoshi078Wheel0 - type: texture - offset: 0x7CDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_1: - symbol: gKartYoshi078Wheel1 - type: texture - offset: 0x7CE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_2: - symbol: gKartYoshi078Wheel2 - type: texture - offset: 0x7CEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_078_wheel_3: - symbol: gKartYoshi078Wheel3 - type: texture - offset: 0x7CF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_0: - symbol: gKartYoshi079Wheel0 - type: texture - offset: 0x7CFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_1: - symbol: gKartYoshi079Wheel1 - type: texture - offset: 0x7D028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_2: - symbol: gKartYoshi079Wheel2 - type: texture - offset: 0x7D0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_079_wheel_3: - symbol: gKartYoshi079Wheel3 - type: texture - offset: 0x7D128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_0: - symbol: gKartYoshi080Wheel0 - type: texture - offset: 0x7D1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_1: - symbol: gKartYoshi080Wheel1 - type: texture - offset: 0x7D228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_2: - symbol: gKartYoshi080Wheel2 - type: texture - offset: 0x7D2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_080_wheel_3: - symbol: gKartYoshi080Wheel3 - type: texture - offset: 0x7D328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_0: - symbol: gKartYoshi081Wheel0 - type: texture - offset: 0x7D3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_1: - symbol: gKartYoshi081Wheel1 - type: texture - offset: 0x7D428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_2: - symbol: gKartYoshi081Wheel2 - type: texture - offset: 0x7D4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_081_wheel_3: - symbol: gKartYoshi081Wheel3 - type: texture - offset: 0x7D528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_0: - symbol: gKartYoshi082Wheel0 - type: texture - offset: 0x7D5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_1: - symbol: gKartYoshi082Wheel1 - type: texture - offset: 0x7D628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_2: - symbol: gKartYoshi082Wheel2 - type: texture - offset: 0x7D6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_082_wheel_3: - symbol: gKartYoshi082Wheel3 - type: texture - offset: 0x7D728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_0: - symbol: gKartYoshi083Wheel0 - type: texture - offset: 0x7D7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_1: - symbol: gKartYoshi083Wheel1 - type: texture - offset: 0x7D828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_2: - symbol: gKartYoshi083Wheel2 - type: texture - offset: 0x7D8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_083_wheel_3: - symbol: gKartYoshi083Wheel3 - type: texture - offset: 0x7D928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_0: - symbol: gKartYoshi084Wheel0 - type: texture - offset: 0x7D9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_1: - symbol: gKartYoshi084Wheel1 - type: texture - offset: 0x7DA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_2: - symbol: gKartYoshi084Wheel2 - type: texture - offset: 0x7DAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_084_wheel_3: - symbol: gKartYoshi084Wheel3 - type: texture - offset: 0x7DB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_0: - symbol: gKartYoshi085Wheel0 - type: texture - offset: 0x7DBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_1: - symbol: gKartYoshi085Wheel1 - type: texture - offset: 0x7DC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_2: - symbol: gKartYoshi085Wheel2 - type: texture - offset: 0x7DCA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_085_wheel_3: - symbol: gKartYoshi085Wheel3 - type: texture - offset: 0x7DD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_0: - symbol: gKartYoshi086Wheel0 - type: texture - offset: 0x7DDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_1: - symbol: gKartYoshi086Wheel1 - type: texture - offset: 0x7DE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_2: - symbol: gKartYoshi086Wheel2 - type: texture - offset: 0x7DEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_086_wheel_3: - symbol: gKartYoshi086Wheel3 - type: texture - offset: 0x7DF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_0: - symbol: gKartYoshi087Wheel0 - type: texture - offset: 0x7DFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_1: - symbol: gKartYoshi087Wheel1 - type: texture - offset: 0x7E028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_2: - symbol: gKartYoshi087Wheel2 - type: texture - offset: 0x7E0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_087_wheel_3: - symbol: gKartYoshi087Wheel3 - type: texture - offset: 0x7E128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_0: - symbol: gKartYoshi088Wheel0 - type: texture - offset: 0x7E1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_1: - symbol: gKartYoshi088Wheel1 - type: texture - offset: 0x7E228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_2: - symbol: gKartYoshi088Wheel2 - type: texture - offset: 0x7E2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_088_wheel_3: - symbol: gKartYoshi088Wheel3 - type: texture - offset: 0x7E328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_0: - symbol: gKartYoshi089Wheel0 - type: texture - offset: 0x7E3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_1: - symbol: gKartYoshi089Wheel1 - type: texture - offset: 0x7E428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_2: - symbol: gKartYoshi089Wheel2 - type: texture - offset: 0x7E4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_089_wheel_3: - symbol: gKartYoshi089Wheel3 - type: texture - offset: 0x7E528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_0: - symbol: gKartYoshi090Wheel0 - type: texture - offset: 0x7E5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_1: - symbol: gKartYoshi090Wheel1 - type: texture - offset: 0x7E628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_2: - symbol: gKartYoshi090Wheel2 - type: texture - offset: 0x7E6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_090_wheel_3: - symbol: gKartYoshi090Wheel3 - type: texture - offset: 0x7E728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_0: - symbol: gKartYoshi091Wheel0 - type: texture - offset: 0x7E7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_1: - symbol: gKartYoshi091Wheel1 - type: texture - offset: 0x7E828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_2: - symbol: gKartYoshi091Wheel2 - type: texture - offset: 0x7E8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_091_wheel_3: - symbol: gKartYoshi091Wheel3 - type: texture - offset: 0x7E928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_0: - symbol: gKartYoshi092Wheel0 - type: texture - offset: 0x7E9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_1: - symbol: gKartYoshi092Wheel1 - type: texture - offset: 0x7EA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_2: - symbol: gKartYoshi092Wheel2 - type: texture - offset: 0x7EAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_092_wheel_3: - symbol: gKartYoshi092Wheel3 - type: texture - offset: 0x7EB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_0: - symbol: gKartYoshi093Wheel0 - type: texture - offset: 0x7EBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_1: - symbol: gKartYoshi093Wheel1 - type: texture - offset: 0x7EC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_2: - symbol: gKartYoshi093Wheel2 - type: texture - offset: 0x7ECA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_093_wheel_3: - symbol: gKartYoshi093Wheel3 - type: texture - offset: 0x7ED28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_0: - symbol: gKartYoshi094Wheel0 - type: texture - offset: 0x7EDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_1: - symbol: gKartYoshi094Wheel1 - type: texture - offset: 0x7EE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_2: - symbol: gKartYoshi094Wheel2 - type: texture - offset: 0x7EEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_094_wheel_3: - symbol: gKartYoshi094Wheel3 - type: texture - offset: 0x7EF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_0: - symbol: gKartYoshi095Wheel0 - type: texture - offset: 0x7EFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_1: - symbol: gKartYoshi095Wheel1 - type: texture - offset: 0x7F028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_2: - symbol: gKartYoshi095Wheel2 - type: texture - offset: 0x7F0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_095_wheel_3: - symbol: gKartYoshi095Wheel3 - type: texture - offset: 0x7F128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_0: - symbol: gKartYoshi096Wheel0 - type: texture - offset: 0x7F1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_1: - symbol: gKartYoshi096Wheel1 - type: texture - offset: 0x7F228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_2: - symbol: gKartYoshi096Wheel2 - type: texture - offset: 0x7F2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_096_wheel_3: - symbol: gKartYoshi096Wheel3 - type: texture - offset: 0x7F328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_0: - symbol: gKartYoshi097Wheel0 - type: texture - offset: 0x7F3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_1: - symbol: gKartYoshi097Wheel1 - type: texture - offset: 0x7F428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_2: - symbol: gKartYoshi097Wheel2 - type: texture - offset: 0x7F4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_097_wheel_3: - symbol: gKartYoshi097Wheel3 - type: texture - offset: 0x7F528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_0: - symbol: gKartYoshi098Wheel0 - type: texture - offset: 0x7F5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_1: - symbol: gKartYoshi098Wheel1 - type: texture - offset: 0x7F628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_2: - symbol: gKartYoshi098Wheel2 - type: texture - offset: 0x7F6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_098_wheel_3: - symbol: gKartYoshi098Wheel3 - type: texture - offset: 0x7F728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_0: - symbol: gKartYoshi099Wheel0 - type: texture - offset: 0x7F7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_1: - symbol: gKartYoshi099Wheel1 - type: texture - offset: 0x7F828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_2: - symbol: gKartYoshi099Wheel2 - type: texture - offset: 0x7F8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_099_wheel_3: - symbol: gKartYoshi099Wheel3 - type: texture - offset: 0x7F928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_0: - symbol: gKartYoshi100Wheel0 - type: texture - offset: 0x7F9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_1: - symbol: gKartYoshi100Wheel1 - type: texture - offset: 0x7FA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_2: - symbol: gKartYoshi100Wheel2 - type: texture - offset: 0x7FAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_100_wheel_3: - symbol: gKartYoshi100Wheel3 - type: texture - offset: 0x7FB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_0: - symbol: gKartYoshi101Wheel0 - type: texture - offset: 0x7FBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_1: - symbol: gKartYoshi101Wheel1 - type: texture - offset: 0x7FC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_2: - symbol: gKartYoshi101Wheel2 - type: texture - offset: 0x7FCA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_101_wheel_3: - symbol: gKartYoshi101Wheel3 - type: texture - offset: 0x7FD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_0: - symbol: gKartYoshi102Wheel0 - type: texture - offset: 0x7FDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_1: - symbol: gKartYoshi102Wheel1 - type: texture - offset: 0x7FE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_2: - symbol: gKartYoshi102Wheel2 - type: texture - offset: 0x7FEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_102_wheel_3: - symbol: gKartYoshi102Wheel3 - type: texture - offset: 0x7FF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_0: - symbol: gKartYoshi103Wheel0 - type: texture - offset: 0x7FFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_1: - symbol: gKartYoshi103Wheel1 - type: texture - offset: 0x80028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_2: - symbol: gKartYoshi103Wheel2 - type: texture - offset: 0x800A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_103_wheel_3: - symbol: gKartYoshi103Wheel3 - type: texture - offset: 0x80128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_0: - symbol: gKartYoshi104Wheel0 - type: texture - offset: 0x801A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_1: - symbol: gKartYoshi104Wheel1 - type: texture - offset: 0x80228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_2: - symbol: gKartYoshi104Wheel2 - type: texture - offset: 0x802A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_104_wheel_3: - symbol: gKartYoshi104Wheel3 - type: texture - offset: 0x80328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_0: - symbol: gKartYoshi105Wheel0 - type: texture - offset: 0x803A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_1: - symbol: gKartYoshi105Wheel1 - type: texture - offset: 0x80428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_2: - symbol: gKartYoshi105Wheel2 - type: texture - offset: 0x804A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_105_wheel_3: - symbol: gKartYoshi105Wheel3 - type: texture - offset: 0x80528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_0: - symbol: gKartYoshi106Wheel0 - type: texture - offset: 0x805A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_1: - symbol: gKartYoshi106Wheel1 - type: texture - offset: 0x80628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_2: - symbol: gKartYoshi106Wheel2 - type: texture - offset: 0x806A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_106_wheel_3: - symbol: gKartYoshi106Wheel3 - type: texture - offset: 0x80728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_0: - symbol: gKartYoshi107Wheel0 - type: texture - offset: 0x807A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_1: - symbol: gKartYoshi107Wheel1 - type: texture - offset: 0x80828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_2: - symbol: gKartYoshi107Wheel2 - type: texture - offset: 0x808A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_107_wheel_3: - symbol: gKartYoshi107Wheel3 - type: texture - offset: 0x80928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_0: - symbol: gKartYoshi108Wheel0 - type: texture - offset: 0x809A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_1: - symbol: gKartYoshi108Wheel1 - type: texture - offset: 0x80A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_2: - symbol: gKartYoshi108Wheel2 - type: texture - offset: 0x80AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_108_wheel_3: - symbol: gKartYoshi108Wheel3 - type: texture - offset: 0x80B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_0: - symbol: gKartYoshi109Wheel0 - type: texture - offset: 0x80BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_1: - symbol: gKartYoshi109Wheel1 - type: texture - offset: 0x80C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_2: - symbol: gKartYoshi109Wheel2 - type: texture - offset: 0x80CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_109_wheel_3: - symbol: gKartYoshi109Wheel3 - type: texture - offset: 0x80D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_0: - symbol: gKartYoshi110Wheel0 - type: texture - offset: 0x80DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_1: - symbol: gKartYoshi110Wheel1 - type: texture - offset: 0x80E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_2: - symbol: gKartYoshi110Wheel2 - type: texture - offset: 0x80EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_110_wheel_3: - symbol: gKartYoshi110Wheel3 - type: texture - offset: 0x80F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_0: - symbol: gKartYoshi111Wheel0 - type: texture - offset: 0x80FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_1: - symbol: gKartYoshi111Wheel1 - type: texture - offset: 0x81028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_2: - symbol: gKartYoshi111Wheel2 - type: texture - offset: 0x810A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_111_wheel_3: - symbol: gKartYoshi111Wheel3 - type: texture - offset: 0x81128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_0: - symbol: gKartYoshi112Wheel0 - type: texture - offset: 0x811A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_1: - symbol: gKartYoshi112Wheel1 - type: texture - offset: 0x81228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_2: - symbol: gKartYoshi112Wheel2 - type: texture - offset: 0x812A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_112_wheel_3: - symbol: gKartYoshi112Wheel3 - type: texture - offset: 0x81328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_0: - symbol: gKartYoshi113Wheel0 - type: texture - offset: 0x813A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_1: - symbol: gKartYoshi113Wheel1 - type: texture - offset: 0x81428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_2: - symbol: gKartYoshi113Wheel2 - type: texture - offset: 0x814A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_113_wheel_3: - symbol: gKartYoshi113Wheel3 - type: texture - offset: 0x81528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_0: - symbol: gKartYoshi114Wheel0 - type: texture - offset: 0x815A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_1: - symbol: gKartYoshi114Wheel1 - type: texture - offset: 0x81628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_2: - symbol: gKartYoshi114Wheel2 - type: texture - offset: 0x816A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_114_wheel_3: - symbol: gKartYoshi114Wheel3 - type: texture - offset: 0x81728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_0: - symbol: gKartYoshi115Wheel0 - type: texture - offset: 0x817A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_1: - symbol: gKartYoshi115Wheel1 - type: texture - offset: 0x81828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_2: - symbol: gKartYoshi115Wheel2 - type: texture - offset: 0x818A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_115_wheel_3: - symbol: gKartYoshi115Wheel3 - type: texture - offset: 0x81928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_0: - symbol: gKartYoshi116Wheel0 - type: texture - offset: 0x819A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_1: - symbol: gKartYoshi116Wheel1 - type: texture - offset: 0x81A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_2: - symbol: gKartYoshi116Wheel2 - type: texture - offset: 0x81AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_116_wheel_3: - symbol: gKartYoshi116Wheel3 - type: texture - offset: 0x81B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_0: - symbol: gKartYoshi117Wheel0 - type: texture - offset: 0x81BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_1: - symbol: gKartYoshi117Wheel1 - type: texture - offset: 0x81C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_2: - symbol: gKartYoshi117Wheel2 - type: texture - offset: 0x81CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_117_wheel_3: - symbol: gKartYoshi117Wheel3 - type: texture - offset: 0x81D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_0: - symbol: gKartYoshi118Wheel0 - type: texture - offset: 0x81DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_1: - symbol: gKartYoshi118Wheel1 - type: texture - offset: 0x81E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_2: - symbol: gKartYoshi118Wheel2 - type: texture - offset: 0x81EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_118_wheel_3: - symbol: gKartYoshi118Wheel3 - type: texture - offset: 0x81F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_0: - symbol: gKartYoshi119Wheel0 - type: texture - offset: 0x81FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_1: - symbol: gKartYoshi119Wheel1 - type: texture - offset: 0x82028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_2: - symbol: gKartYoshi119Wheel2 - type: texture - offset: 0x820A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_119_wheel_3: - symbol: gKartYoshi119Wheel3 - type: texture - offset: 0x82128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_0: - symbol: gKartYoshi120Wheel0 - type: texture - offset: 0x821A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_1: - symbol: gKartYoshi120Wheel1 - type: texture - offset: 0x82228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_2: - symbol: gKartYoshi120Wheel2 - type: texture - offset: 0x822A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_120_wheel_3: - symbol: gKartYoshi120Wheel3 - type: texture - offset: 0x82328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_0: - symbol: gKartYoshi121Wheel0 - type: texture - offset: 0x823A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_1: - symbol: gKartYoshi121Wheel1 - type: texture - offset: 0x82428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_2: - symbol: gKartYoshi121Wheel2 - type: texture - offset: 0x824A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_121_wheel_3: - symbol: gKartYoshi121Wheel3 - type: texture - offset: 0x82528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_0: - symbol: gKartYoshi122Wheel0 - type: texture - offset: 0x825A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_1: - symbol: gKartYoshi122Wheel1 - type: texture - offset: 0x82628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_2: - symbol: gKartYoshi122Wheel2 - type: texture - offset: 0x826A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_122_wheel_3: - symbol: gKartYoshi122Wheel3 - type: texture - offset: 0x82728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_0: - symbol: gKartYoshi123Wheel0 - type: texture - offset: 0x827A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_1: - symbol: gKartYoshi123Wheel1 - type: texture - offset: 0x82828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_2: - symbol: gKartYoshi123Wheel2 - type: texture - offset: 0x828A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_123_wheel_3: - symbol: gKartYoshi123Wheel3 - type: texture - offset: 0x82928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_0: - symbol: gKartYoshi124Wheel0 - type: texture - offset: 0x829A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_1: - symbol: gKartYoshi124Wheel1 - type: texture - offset: 0x82A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_2: - symbol: gKartYoshi124Wheel2 - type: texture - offset: 0x82AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_124_wheel_3: - symbol: gKartYoshi124Wheel3 - type: texture - offset: 0x82B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_0: - symbol: gKartYoshi125Wheel0 - type: texture - offset: 0x82BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_1: - symbol: gKartYoshi125Wheel1 - type: texture - offset: 0x82C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_2: - symbol: gKartYoshi125Wheel2 - type: texture - offset: 0x82CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_125_wheel_3: - symbol: gKartYoshi125Wheel3 - type: texture - offset: 0x82D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_0: - symbol: gKartYoshi126Wheel0 - type: texture - offset: 0x82DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_1: - symbol: gKartYoshi126Wheel1 - type: texture - offset: 0x82E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_2: - symbol: gKartYoshi126Wheel2 - type: texture - offset: 0x82EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_126_wheel_3: - symbol: gKartYoshi126Wheel3 - type: texture - offset: 0x82F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_0: - symbol: gKartYoshi127Wheel0 - type: texture - offset: 0x82FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_1: - symbol: gKartYoshi127Wheel1 - type: texture - offset: 0x83028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_2: - symbol: gKartYoshi127Wheel2 - type: texture - offset: 0x830A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_127_wheel_3: - symbol: gKartYoshi127Wheel3 - type: texture - offset: 0x83128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_0: - symbol: gKartYoshi128Wheel0 - type: texture - offset: 0x831A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_1: - symbol: gKartYoshi128Wheel1 - type: texture - offset: 0x83228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_2: - symbol: gKartYoshi128Wheel2 - type: texture - offset: 0x832A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_128_wheel_3: - symbol: gKartYoshi128Wheel3 - type: texture - offset: 0x83328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_0: - symbol: gKartYoshi129Wheel0 - type: texture - offset: 0x833A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_1: - symbol: gKartYoshi129Wheel1 - type: texture - offset: 0x83428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_2: - symbol: gKartYoshi129Wheel2 - type: texture - offset: 0x834A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_129_wheel_3: - symbol: gKartYoshi129Wheel3 - type: texture - offset: 0x83528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_0: - symbol: gKartYoshi130Wheel0 - type: texture - offset: 0x835A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_1: - symbol: gKartYoshi130Wheel1 - type: texture - offset: 0x83628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_2: - symbol: gKartYoshi130Wheel2 - type: texture - offset: 0x836A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_130_wheel_3: - symbol: gKartYoshi130Wheel3 - type: texture - offset: 0x83728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_0: - symbol: gKartYoshi131Wheel0 - type: texture - offset: 0x837A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_1: - symbol: gKartYoshi131Wheel1 - type: texture - offset: 0x83828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_2: - symbol: gKartYoshi131Wheel2 - type: texture - offset: 0x838A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_131_wheel_3: - symbol: gKartYoshi131Wheel3 - type: texture - offset: 0x83928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_0: - symbol: gKartYoshi132Wheel0 - type: texture - offset: 0x839A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_1: - symbol: gKartYoshi132Wheel1 - type: texture - offset: 0x83A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_2: - symbol: gKartYoshi132Wheel2 - type: texture - offset: 0x83AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_132_wheel_3: - symbol: gKartYoshi132Wheel3 - type: texture - offset: 0x83B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_0: - symbol: gKartYoshi133Wheel0 - type: texture - offset: 0x83BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_1: - symbol: gKartYoshi133Wheel1 - type: texture - offset: 0x83C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_2: - symbol: gKartYoshi133Wheel2 - type: texture - offset: 0x83CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_133_wheel_3: - symbol: gKartYoshi133Wheel3 - type: texture - offset: 0x83D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_0: - symbol: gKartYoshi134Wheel0 - type: texture - offset: 0x83DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_1: - symbol: gKartYoshi134Wheel1 - type: texture - offset: 0x83E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_2: - symbol: gKartYoshi134Wheel2 - type: texture - offset: 0x83EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_134_wheel_3: - symbol: gKartYoshi134Wheel3 - type: texture - offset: 0x83F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_0: - symbol: gKartYoshi135Wheel0 - type: texture - offset: 0x83FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_1: - symbol: gKartYoshi135Wheel1 - type: texture - offset: 0x84028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_2: - symbol: gKartYoshi135Wheel2 - type: texture - offset: 0x840A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_135_wheel_3: - symbol: gKartYoshi135Wheel3 - type: texture - offset: 0x84128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_0: - symbol: gKartYoshi136Wheel0 - type: texture - offset: 0x841A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_1: - symbol: gKartYoshi136Wheel1 - type: texture - offset: 0x84228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_2: - symbol: gKartYoshi136Wheel2 - type: texture - offset: 0x842A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_136_wheel_3: - symbol: gKartYoshi136Wheel3 - type: texture - offset: 0x84328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_0: - symbol: gKartYoshi137Wheel0 - type: texture - offset: 0x843A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_1: - symbol: gKartYoshi137Wheel1 - type: texture - offset: 0x84428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_2: - symbol: gKartYoshi137Wheel2 - type: texture - offset: 0x844A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_137_wheel_3: - symbol: gKartYoshi137Wheel3 - type: texture - offset: 0x84528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_0: - symbol: gKartYoshi138Wheel0 - type: texture - offset: 0x845A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_1: - symbol: gKartYoshi138Wheel1 - type: texture - offset: 0x84628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_2: - symbol: gKartYoshi138Wheel2 - type: texture - offset: 0x846A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_138_wheel_3: - symbol: gKartYoshi138Wheel3 - type: texture - offset: 0x84728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_0: - symbol: gKartYoshi139Wheel0 - type: texture - offset: 0x847A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_1: - symbol: gKartYoshi139Wheel1 - type: texture - offset: 0x84828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_2: - symbol: gKartYoshi139Wheel2 - type: texture - offset: 0x848A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_139_wheel_3: - symbol: gKartYoshi139Wheel3 - type: texture - offset: 0x84928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_0: - symbol: gKartYoshi140Wheel0 - type: texture - offset: 0x849A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_1: - symbol: gKartYoshi140Wheel1 - type: texture - offset: 0x84A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_2: - symbol: gKartYoshi140Wheel2 - type: texture - offset: 0x84AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_140_wheel_3: - symbol: gKartYoshi140Wheel3 - type: texture - offset: 0x84B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_0: - symbol: gKartYoshi141Wheel0 - type: texture - offset: 0x84BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_1: - symbol: gKartYoshi141Wheel1 - type: texture - offset: 0x84C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_2: - symbol: gKartYoshi141Wheel2 - type: texture - offset: 0x84CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_141_wheel_3: - symbol: gKartYoshi141Wheel3 - type: texture - offset: 0x84D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_0: - symbol: gKartYoshi142Wheel0 - type: texture - offset: 0x84DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_1: - symbol: gKartYoshi142Wheel1 - type: texture - offset: 0x84E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_2: - symbol: gKartYoshi142Wheel2 - type: texture - offset: 0x84EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_142_wheel_3: - symbol: gKartYoshi142Wheel3 - type: texture - offset: 0x84F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_0: - symbol: gKartYoshi143Wheel0 - type: texture - offset: 0x84FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_1: - symbol: gKartYoshi143Wheel1 - type: texture - offset: 0x85028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_2: - symbol: gKartYoshi143Wheel2 - type: texture - offset: 0x850A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_143_wheel_3: - symbol: gKartYoshi143Wheel3 - type: texture - offset: 0x85128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_0: - symbol: gKartYoshi144Wheel0 - type: texture - offset: 0x851A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_1: - symbol: gKartYoshi144Wheel1 - type: texture - offset: 0x85228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_2: - symbol: gKartYoshi144Wheel2 - type: texture - offset: 0x852A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_144_wheel_3: - symbol: gKartYoshi144Wheel3 - type: texture - offset: 0x85328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_0: - symbol: gKartYoshi145Wheel0 - type: texture - offset: 0x853A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_1: - symbol: gKartYoshi145Wheel1 - type: texture - offset: 0x85428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_2: - symbol: gKartYoshi145Wheel2 - type: texture - offset: 0x854A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_145_wheel_3: - symbol: gKartYoshi145Wheel3 - type: texture - offset: 0x85528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_0: - symbol: gKartYoshi146Wheel0 - type: texture - offset: 0x855A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_1: - symbol: gKartYoshi146Wheel1 - type: texture - offset: 0x85628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_2: - symbol: gKartYoshi146Wheel2 - type: texture - offset: 0x856A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_146_wheel_3: - symbol: gKartYoshi146Wheel3 - type: texture - offset: 0x85728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_0: - symbol: gKartYoshi147Wheel0 - type: texture - offset: 0x857A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_1: - symbol: gKartYoshi147Wheel1 - type: texture - offset: 0x85828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_2: - symbol: gKartYoshi147Wheel2 - type: texture - offset: 0x858A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_147_wheel_3: - symbol: gKartYoshi147Wheel3 - type: texture - offset: 0x85928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_0: - symbol: gKartYoshi148Wheel0 - type: texture - offset: 0x859A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_1: - symbol: gKartYoshi148Wheel1 - type: texture - offset: 0x85A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_2: - symbol: gKartYoshi148Wheel2 - type: texture - offset: 0x85AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_148_wheel_3: - symbol: gKartYoshi148Wheel3 - type: texture - offset: 0x85B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_0: - symbol: gKartYoshi149Wheel0 - type: texture - offset: 0x85BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_1: - symbol: gKartYoshi149Wheel1 - type: texture - offset: 0x85C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_2: - symbol: gKartYoshi149Wheel2 - type: texture - offset: 0x85CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_149_wheel_3: - symbol: gKartYoshi149Wheel3 - type: texture - offset: 0x85D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_0: - symbol: gKartYoshi150Wheel0 - type: texture - offset: 0x85DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_1: - symbol: gKartYoshi150Wheel1 - type: texture - offset: 0x85E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_2: - symbol: gKartYoshi150Wheel2 - type: texture - offset: 0x85EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_150_wheel_3: - symbol: gKartYoshi150Wheel3 - type: texture - offset: 0x85F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_0: - symbol: gKartYoshi151Wheel0 - type: texture - offset: 0x85FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_1: - symbol: gKartYoshi151Wheel1 - type: texture - offset: 0x86028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_2: - symbol: gKartYoshi151Wheel2 - type: texture - offset: 0x860A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_151_wheel_3: - symbol: gKartYoshi151Wheel3 - type: texture - offset: 0x86128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_0: - symbol: gKartYoshi152Wheel0 - type: texture - offset: 0x861A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_1: - symbol: gKartYoshi152Wheel1 - type: texture - offset: 0x86228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_2: - symbol: gKartYoshi152Wheel2 - type: texture - offset: 0x862A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_152_wheel_3: - symbol: gKartYoshi152Wheel3 - type: texture - offset: 0x86328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_0: - symbol: gKartYoshi153Wheel0 - type: texture - offset: 0x863A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_1: - symbol: gKartYoshi153Wheel1 - type: texture - offset: 0x86428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_2: - symbol: gKartYoshi153Wheel2 - type: texture - offset: 0x864A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_153_wheel_3: - symbol: gKartYoshi153Wheel3 - type: texture - offset: 0x86528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_0: - symbol: gKartYoshi154Wheel0 - type: texture - offset: 0x865A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_1: - symbol: gKartYoshi154Wheel1 - type: texture - offset: 0x86628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_2: - symbol: gKartYoshi154Wheel2 - type: texture - offset: 0x866A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_154_wheel_3: - symbol: gKartYoshi154Wheel3 - type: texture - offset: 0x86728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_0: - symbol: gKartYoshi155Wheel0 - type: texture - offset: 0x867A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_1: - symbol: gKartYoshi155Wheel1 - type: texture - offset: 0x86828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_2: - symbol: gKartYoshi155Wheel2 - type: texture - offset: 0x868A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_155_wheel_3: - symbol: gKartYoshi155Wheel3 - type: texture - offset: 0x86928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_0: - symbol: gKartYoshi156Wheel0 - type: texture - offset: 0x869A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_1: - symbol: gKartYoshi156Wheel1 - type: texture - offset: 0x86A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_2: - symbol: gKartYoshi156Wheel2 - type: texture - offset: 0x86AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_156_wheel_3: - symbol: gKartYoshi156Wheel3 - type: texture - offset: 0x86B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_0: - symbol: gKartYoshi157Wheel0 - type: texture - offset: 0x86BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_1: - symbol: gKartYoshi157Wheel1 - type: texture - offset: 0x86C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_2: - symbol: gKartYoshi157Wheel2 - type: texture - offset: 0x86CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_157_wheel_3: - symbol: gKartYoshi157Wheel3 - type: texture - offset: 0x86D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_0: - symbol: gKartYoshi158Wheel0 - type: texture - offset: 0x86DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_1: - symbol: gKartYoshi158Wheel1 - type: texture - offset: 0x86E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_2: - symbol: gKartYoshi158Wheel2 - type: texture - offset: 0x86EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_158_wheel_3: - symbol: gKartYoshi158Wheel3 - type: texture - offset: 0x86F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_0: - symbol: gKartYoshi159Wheel0 - type: texture - offset: 0x86FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_1: - symbol: gKartYoshi159Wheel1 - type: texture - offset: 0x87028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_2: - symbol: gKartYoshi159Wheel2 - type: texture - offset: 0x870A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_159_wheel_3: - symbol: gKartYoshi159Wheel3 - type: texture - offset: 0x87128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_0: - symbol: gKartYoshi160Wheel0 - type: texture - offset: 0x871A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_1: - symbol: gKartYoshi160Wheel1 - type: texture - offset: 0x87228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_2: - symbol: gKartYoshi160Wheel2 - type: texture - offset: 0x872A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_160_wheel_3: - symbol: gKartYoshi160Wheel3 - type: texture - offset: 0x87328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_0: - symbol: gKartYoshi161Wheel0 - type: texture - offset: 0x873A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_1: - symbol: gKartYoshi161Wheel1 - type: texture - offset: 0x87428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_2: - symbol: gKartYoshi161Wheel2 - type: texture - offset: 0x874A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_161_wheel_3: - symbol: gKartYoshi161Wheel3 - type: texture - offset: 0x87528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_0: - symbol: gKartYoshi162Wheel0 - type: texture - offset: 0x875A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_1: - symbol: gKartYoshi162Wheel1 - type: texture - offset: 0x87628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_2: - symbol: gKartYoshi162Wheel2 - type: texture - offset: 0x876A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_162_wheel_3: - symbol: gKartYoshi162Wheel3 - type: texture - offset: 0x87728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_0: - symbol: gKartYoshi163Wheel0 - type: texture - offset: 0x877A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_1: - symbol: gKartYoshi163Wheel1 - type: texture - offset: 0x87828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_2: - symbol: gKartYoshi163Wheel2 - type: texture - offset: 0x878A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_163_wheel_3: - symbol: gKartYoshi163Wheel3 - type: texture - offset: 0x87928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_0: - symbol: gKartYoshi164Wheel0 - type: texture - offset: 0x879A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_1: - symbol: gKartYoshi164Wheel1 - type: texture - offset: 0x87A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_2: - symbol: gKartYoshi164Wheel2 - type: texture - offset: 0x87AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_164_wheel_3: - symbol: gKartYoshi164Wheel3 - type: texture - offset: 0x87B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_0: - symbol: gKartYoshi165Wheel0 - type: texture - offset: 0x87BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_1: - symbol: gKartYoshi165Wheel1 - type: texture - offset: 0x87C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_2: - symbol: gKartYoshi165Wheel2 - type: texture - offset: 0x87CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_165_wheel_3: - symbol: gKartYoshi165Wheel3 - type: texture - offset: 0x87D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_0: - symbol: gKartYoshi166Wheel0 - type: texture - offset: 0x87DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_1: - symbol: gKartYoshi166Wheel1 - type: texture - offset: 0x87E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_2: - symbol: gKartYoshi166Wheel2 - type: texture - offset: 0x87EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_166_wheel_3: - symbol: gKartYoshi166Wheel3 - type: texture - offset: 0x87F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_0: - symbol: gKartYoshi167Wheel0 - type: texture - offset: 0x87FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_1: - symbol: gKartYoshi167Wheel1 - type: texture - offset: 0x88028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_2: - symbol: gKartYoshi167Wheel2 - type: texture - offset: 0x880A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_167_wheel_3: - symbol: gKartYoshi167Wheel3 - type: texture - offset: 0x88128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_0: - symbol: gKartYoshi168Wheel0 - type: texture - offset: 0x881A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_1: - symbol: gKartYoshi168Wheel1 - type: texture - offset: 0x88228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_2: - symbol: gKartYoshi168Wheel2 - type: texture - offset: 0x882A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_168_wheel_3: - symbol: gKartYoshi168Wheel3 - type: texture - offset: 0x88328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_0: - symbol: gKartYoshi169Wheel0 - type: texture - offset: 0x883A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_1: - symbol: gKartYoshi169Wheel1 - type: texture - offset: 0x88428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_2: - symbol: gKartYoshi169Wheel2 - type: texture - offset: 0x884A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_169_wheel_3: - symbol: gKartYoshi169Wheel3 - type: texture - offset: 0x88528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_0: - symbol: gKartYoshi170Wheel0 - type: texture - offset: 0x885A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_1: - symbol: gKartYoshi170Wheel1 - type: texture - offset: 0x88628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_2: - symbol: gKartYoshi170Wheel2 - type: texture - offset: 0x886A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_170_wheel_3: - symbol: gKartYoshi170Wheel3 - type: texture - offset: 0x88728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_0: - symbol: gKartYoshi171Wheel0 - type: texture - offset: 0x887A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_1: - symbol: gKartYoshi171Wheel1 - type: texture - offset: 0x88828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_2: - symbol: gKartYoshi171Wheel2 - type: texture - offset: 0x888A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_171_wheel_3: - symbol: gKartYoshi171Wheel3 - type: texture - offset: 0x88928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_0: - symbol: gKartYoshi172Wheel0 - type: texture - offset: 0x889A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_1: - symbol: gKartYoshi172Wheel1 - type: texture - offset: 0x88A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_2: - symbol: gKartYoshi172Wheel2 - type: texture - offset: 0x88AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_172_wheel_3: - symbol: gKartYoshi172Wheel3 - type: texture - offset: 0x88B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_0: - symbol: gKartYoshi173Wheel0 - type: texture - offset: 0x88BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_1: - symbol: gKartYoshi173Wheel1 - type: texture - offset: 0x88C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_2: - symbol: gKartYoshi173Wheel2 - type: texture - offset: 0x88CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_173_wheel_3: - symbol: gKartYoshi173Wheel3 - type: texture - offset: 0x88D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_0: - symbol: gKartYoshi174Wheel0 - type: texture - offset: 0x88DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_1: - symbol: gKartYoshi174Wheel1 - type: texture - offset: 0x88E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_2: - symbol: gKartYoshi174Wheel2 - type: texture - offset: 0x88EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_174_wheel_3: - symbol: gKartYoshi174Wheel3 - type: texture - offset: 0x88F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_0: - symbol: gKartYoshi175Wheel0 - type: texture - offset: 0x88FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_1: - symbol: gKartYoshi175Wheel1 - type: texture - offset: 0x89028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_2: - symbol: gKartYoshi175Wheel2 - type: texture - offset: 0x890A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_175_wheel_3: - symbol: gKartYoshi175Wheel3 - type: texture - offset: 0x89128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_0: - symbol: gKartYoshi176Wheel0 - type: texture - offset: 0x891A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_1: - symbol: gKartYoshi176Wheel1 - type: texture - offset: 0x89228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_2: - symbol: gKartYoshi176Wheel2 - type: texture - offset: 0x892A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_176_wheel_3: - symbol: gKartYoshi176Wheel3 - type: texture - offset: 0x89328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_0: - symbol: gKartYoshi177Wheel0 - type: texture - offset: 0x893A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_1: - symbol: gKartYoshi177Wheel1 - type: texture - offset: 0x89428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_2: - symbol: gKartYoshi177Wheel2 - type: texture - offset: 0x894A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_177_wheel_3: - symbol: gKartYoshi177Wheel3 - type: texture - offset: 0x89528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_0: - symbol: gKartYoshi178Wheel0 - type: texture - offset: 0x895A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_1: - symbol: gKartYoshi178Wheel1 - type: texture - offset: 0x89628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_2: - symbol: gKartYoshi178Wheel2 - type: texture - offset: 0x896A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_178_wheel_3: - symbol: gKartYoshi178Wheel3 - type: texture - offset: 0x89728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_0: - symbol: gKartYoshi179Wheel0 - type: texture - offset: 0x897A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_1: - symbol: gKartYoshi179Wheel1 - type: texture - offset: 0x89828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_2: - symbol: gKartYoshi179Wheel2 - type: texture - offset: 0x898A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_179_wheel_3: - symbol: gKartYoshi179Wheel3 - type: texture - offset: 0x89928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_0: - symbol: gKartYoshi180Wheel0 - type: texture - offset: 0x899A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_1: - symbol: gKartYoshi180Wheel1 - type: texture - offset: 0x89A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_2: - symbol: gKartYoshi180Wheel2 - type: texture - offset: 0x89AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_180_wheel_3: - symbol: gKartYoshi180Wheel3 - type: texture - offset: 0x89B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_0: - symbol: gKartYoshi181Wheel0 - type: texture - offset: 0x89BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_1: - symbol: gKartYoshi181Wheel1 - type: texture - offset: 0x89C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_2: - symbol: gKartYoshi181Wheel2 - type: texture - offset: 0x89CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_181_wheel_3: - symbol: gKartYoshi181Wheel3 - type: texture - offset: 0x89D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_0: - symbol: gKartYoshi182Wheel0 - type: texture - offset: 0x89DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_1: - symbol: gKartYoshi182Wheel1 - type: texture - offset: 0x89E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_2: - symbol: gKartYoshi182Wheel2 - type: texture - offset: 0x89EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_182_wheel_3: - symbol: gKartYoshi182Wheel3 - type: texture - offset: 0x89F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_0: - symbol: gKartYoshi183Wheel0 - type: texture - offset: 0x89FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_1: - symbol: gKartYoshi183Wheel1 - type: texture - offset: 0x8A028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_2: - symbol: gKartYoshi183Wheel2 - type: texture - offset: 0x8A0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_183_wheel_3: - symbol: gKartYoshi183Wheel3 - type: texture - offset: 0x8A128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_0: - symbol: gKartYoshi184Wheel0 - type: texture - offset: 0x8A1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_1: - symbol: gKartYoshi184Wheel1 - type: texture - offset: 0x8A228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_2: - symbol: gKartYoshi184Wheel2 - type: texture - offset: 0x8A2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_184_wheel_3: - symbol: gKartYoshi184Wheel3 - type: texture - offset: 0x8A328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_0: - symbol: gKartYoshi185Wheel0 - type: texture - offset: 0x8A3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_1: - symbol: gKartYoshi185Wheel1 - type: texture - offset: 0x8A428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_2: - symbol: gKartYoshi185Wheel2 - type: texture - offset: 0x8A4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_185_wheel_3: - symbol: gKartYoshi185Wheel3 - type: texture - offset: 0x8A528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_0: - symbol: gKartYoshi186Wheel0 - type: texture - offset: 0x8A5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_1: - symbol: gKartYoshi186Wheel1 - type: texture - offset: 0x8A628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_2: - symbol: gKartYoshi186Wheel2 - type: texture - offset: 0x8A6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_186_wheel_3: - symbol: gKartYoshi186Wheel3 - type: texture - offset: 0x8A728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_0: - symbol: gKartYoshi187Wheel0 - type: texture - offset: 0x8A7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_1: - symbol: gKartYoshi187Wheel1 - type: texture - offset: 0x8A828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_2: - symbol: gKartYoshi187Wheel2 - type: texture - offset: 0x8A8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_187_wheel_3: - symbol: gKartYoshi187Wheel3 - type: texture - offset: 0x8A928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_0: - symbol: gKartYoshi188Wheel0 - type: texture - offset: 0x8A9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_1: - symbol: gKartYoshi188Wheel1 - type: texture - offset: 0x8AA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_2: - symbol: gKartYoshi188Wheel2 - type: texture - offset: 0x8AAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_188_wheel_3: - symbol: gKartYoshi188Wheel3 - type: texture - offset: 0x8AB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_0: - symbol: gKartYoshi189Wheel0 - type: texture - offset: 0x8ABA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_1: - symbol: gKartYoshi189Wheel1 - type: texture - offset: 0x8AC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_2: - symbol: gKartYoshi189Wheel2 - type: texture - offset: 0x8ACA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_189_wheel_3: - symbol: gKartYoshi189Wheel3 - type: texture - offset: 0x8AD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_0: - symbol: gKartYoshi190Wheel0 - type: texture - offset: 0x8ADA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_1: - symbol: gKartYoshi190Wheel1 - type: texture - offset: 0x8AE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_2: - symbol: gKartYoshi190Wheel2 - type: texture - offset: 0x8AEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_190_wheel_3: - symbol: gKartYoshi190Wheel3 - type: texture - offset: 0x8AF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_0: - symbol: gKartYoshi191Wheel0 - type: texture - offset: 0x8AFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_1: - symbol: gKartYoshi191Wheel1 - type: texture - offset: 0x8B028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_2: - symbol: gKartYoshi191Wheel2 - type: texture - offset: 0x8B0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_191_wheel_3: - symbol: gKartYoshi191Wheel3 - type: texture - offset: 0x8B128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_0: - symbol: gKartYoshi192Wheel0 - type: texture - offset: 0x8B1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_1: - symbol: gKartYoshi192Wheel1 - type: texture - offset: 0x8B228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_2: - symbol: gKartYoshi192Wheel2 - type: texture - offset: 0x8B2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_192_wheel_3: - symbol: gKartYoshi192Wheel3 - type: texture - offset: 0x8B328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_0: - symbol: gKartYoshi193Wheel0 - type: texture - offset: 0x8B3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_1: - symbol: gKartYoshi193Wheel1 - type: texture - offset: 0x8B428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_2: - symbol: gKartYoshi193Wheel2 - type: texture - offset: 0x8B4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_193_wheel_3: - symbol: gKartYoshi193Wheel3 - type: texture - offset: 0x8B528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_0: - symbol: gKartYoshi194Wheel0 - type: texture - offset: 0x8B5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_1: - symbol: gKartYoshi194Wheel1 - type: texture - offset: 0x8B628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_2: - symbol: gKartYoshi194Wheel2 - type: texture - offset: 0x8B6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_194_wheel_3: - symbol: gKartYoshi194Wheel3 - type: texture - offset: 0x8B728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_0: - symbol: gKartYoshi195Wheel0 - type: texture - offset: 0x8B7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_1: - symbol: gKartYoshi195Wheel1 - type: texture - offset: 0x8B828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_2: - symbol: gKartYoshi195Wheel2 - type: texture - offset: 0x8B8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_195_wheel_3: - symbol: gKartYoshi195Wheel3 - type: texture - offset: 0x8B928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_0: - symbol: gKartYoshi196Wheel0 - type: texture - offset: 0x8B9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_1: - symbol: gKartYoshi196Wheel1 - type: texture - offset: 0x8BA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_2: - symbol: gKartYoshi196Wheel2 - type: texture - offset: 0x8BAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_196_wheel_3: - symbol: gKartYoshi196Wheel3 - type: texture - offset: 0x8BB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_0: - symbol: gKartYoshi197Wheel0 - type: texture - offset: 0x8BBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_1: - symbol: gKartYoshi197Wheel1 - type: texture - offset: 0x8BC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_2: - symbol: gKartYoshi197Wheel2 - type: texture - offset: 0x8BCA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_197_wheel_3: - symbol: gKartYoshi197Wheel3 - type: texture - offset: 0x8BD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_0: - symbol: gKartYoshi198Wheel0 - type: texture - offset: 0x8BDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_1: - symbol: gKartYoshi198Wheel1 - type: texture - offset: 0x8BE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_2: - symbol: gKartYoshi198Wheel2 - type: texture - offset: 0x8BEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_198_wheel_3: - symbol: gKartYoshi198Wheel3 - type: texture - offset: 0x8BF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_0: - symbol: gKartYoshi199Wheel0 - type: texture - offset: 0x8BFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_1: - symbol: gKartYoshi199Wheel1 - type: texture - offset: 0x8C028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_2: - symbol: gKartYoshi199Wheel2 - type: texture - offset: 0x8C0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_199_wheel_3: - symbol: gKartYoshi199Wheel3 - type: texture - offset: 0x8C128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_0: - symbol: gKartYoshi200Wheel0 - type: texture - offset: 0x8C1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_1: - symbol: gKartYoshi200Wheel1 - type: texture - offset: 0x8C228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_2: - symbol: gKartYoshi200Wheel2 - type: texture - offset: 0x8C2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_200_wheel_3: - symbol: gKartYoshi200Wheel3 - type: texture - offset: 0x8C328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_0: - symbol: gKartYoshi201Wheel0 - type: texture - offset: 0x8C3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_1: - symbol: gKartYoshi201Wheel1 - type: texture - offset: 0x8C428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_2: - symbol: gKartYoshi201Wheel2 - type: texture - offset: 0x8C4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_201_wheel_3: - symbol: gKartYoshi201Wheel3 - type: texture - offset: 0x8C528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_0: - symbol: gKartYoshi202Wheel0 - type: texture - offset: 0x8C5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_1: - symbol: gKartYoshi202Wheel1 - type: texture - offset: 0x8C628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_2: - symbol: gKartYoshi202Wheel2 - type: texture - offset: 0x8C6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_202_wheel_3: - symbol: gKartYoshi202Wheel3 - type: texture - offset: 0x8C728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_0: - symbol: gKartYoshi203Wheel0 - type: texture - offset: 0x8C7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_1: - symbol: gKartYoshi203Wheel1 - type: texture - offset: 0x8C828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_2: - symbol: gKartYoshi203Wheel2 - type: texture - offset: 0x8C8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_203_wheel_3: - symbol: gKartYoshi203Wheel3 - type: texture - offset: 0x8C928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_0: - symbol: gKartYoshi204Wheel0 - type: texture - offset: 0x8C9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_1: - symbol: gKartYoshi204Wheel1 - type: texture - offset: 0x8CA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_2: - symbol: gKartYoshi204Wheel2 - type: texture - offset: 0x8CAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_204_wheel_3: - symbol: gKartYoshi204Wheel3 - type: texture - offset: 0x8CB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_0: - symbol: gKartYoshi205Wheel0 - type: texture - offset: 0x8CBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_1: - symbol: gKartYoshi205Wheel1 - type: texture - offset: 0x8CC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_2: - symbol: gKartYoshi205Wheel2 - type: texture - offset: 0x8CCA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_205_wheel_3: - symbol: gKartYoshi205Wheel3 - type: texture - offset: 0x8CD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_0: - symbol: gKartYoshi206Wheel0 - type: texture - offset: 0x8CDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_1: - symbol: gKartYoshi206Wheel1 - type: texture - offset: 0x8CE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_2: - symbol: gKartYoshi206Wheel2 - type: texture - offset: 0x8CEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_206_wheel_3: - symbol: gKartYoshi206Wheel3 - type: texture - offset: 0x8CF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_0: - symbol: gKartYoshi207Wheel0 - type: texture - offset: 0x8CFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_1: - symbol: gKartYoshi207Wheel1 - type: texture - offset: 0x8D028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_2: - symbol: gKartYoshi207Wheel2 - type: texture - offset: 0x8D0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_207_wheel_3: - symbol: gKartYoshi207Wheel3 - type: texture - offset: 0x8D128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_0: - symbol: gKartYoshi208Wheel0 - type: texture - offset: 0x8D1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_1: - symbol: gKartYoshi208Wheel1 - type: texture - offset: 0x8D228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_2: - symbol: gKartYoshi208Wheel2 - type: texture - offset: 0x8D2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_208_wheel_3: - symbol: gKartYoshi208Wheel3 - type: texture - offset: 0x8D328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_0: - symbol: gKartYoshi209Wheel0 - type: texture - offset: 0x8D3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_1: - symbol: gKartYoshi209Wheel1 - type: texture - offset: 0x8D428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_2: - symbol: gKartYoshi209Wheel2 - type: texture - offset: 0x8D4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_209_wheel_3: - symbol: gKartYoshi209Wheel3 - type: texture - offset: 0x8D528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_0: - symbol: gKartYoshi210Wheel0 - type: texture - offset: 0x8D5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_1: - symbol: gKartYoshi210Wheel1 - type: texture - offset: 0x8D628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_2: - symbol: gKartYoshi210Wheel2 - type: texture - offset: 0x8D6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_210_wheel_3: - symbol: gKartYoshi210Wheel3 - type: texture - offset: 0x8D728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_0: - symbol: gKartYoshi211Wheel0 - type: texture - offset: 0x8D7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_1: - symbol: gKartYoshi211Wheel1 - type: texture - offset: 0x8D828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_2: - symbol: gKartYoshi211Wheel2 - type: texture - offset: 0x8D8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_211_wheel_3: - symbol: gKartYoshi211Wheel3 - type: texture - offset: 0x8D928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_0: - symbol: gKartYoshi212Wheel0 - type: texture - offset: 0x8D9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_1: - symbol: gKartYoshi212Wheel1 - type: texture - offset: 0x8DA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_2: - symbol: gKartYoshi212Wheel2 - type: texture - offset: 0x8DAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_212_wheel_3: - symbol: gKartYoshi212Wheel3 - type: texture - offset: 0x8DB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_0: - symbol: gKartYoshi213Wheel0 - type: texture - offset: 0x8DBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_1: - symbol: gKartYoshi213Wheel1 - type: texture - offset: 0x8DC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_2: - symbol: gKartYoshi213Wheel2 - type: texture - offset: 0x8DCA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_213_wheel_3: - symbol: gKartYoshi213Wheel3 - type: texture - offset: 0x8DD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_0: - symbol: gKartYoshi214Wheel0 - type: texture - offset: 0x8DDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_1: - symbol: gKartYoshi214Wheel1 - type: texture - offset: 0x8DE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_2: - symbol: gKartYoshi214Wheel2 - type: texture - offset: 0x8DEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_214_wheel_3: - symbol: gKartYoshi214Wheel3 - type: texture - offset: 0x8DF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_0: - symbol: gKartYoshi215Wheel0 - type: texture - offset: 0x8DFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_1: - symbol: gKartYoshi215Wheel1 - type: texture - offset: 0x8E028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_2: - symbol: gKartYoshi215Wheel2 - type: texture - offset: 0x8E0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_215_wheel_3: - symbol: gKartYoshi215Wheel3 - type: texture - offset: 0x8E128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_0: - symbol: gKartYoshi216Wheel0 - type: texture - offset: 0x8E1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_1: - symbol: gKartYoshi216Wheel1 - type: texture - offset: 0x8E228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_2: - symbol: gKartYoshi216Wheel2 - type: texture - offset: 0x8E2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_216_wheel_3: - symbol: gKartYoshi216Wheel3 - type: texture - offset: 0x8E328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_0: - symbol: gKartYoshi217Wheel0 - type: texture - offset: 0x8E3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_1: - symbol: gKartYoshi217Wheel1 - type: texture - offset: 0x8E428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_2: - symbol: gKartYoshi217Wheel2 - type: texture - offset: 0x8E4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_217_wheel_3: - symbol: gKartYoshi217Wheel3 - type: texture - offset: 0x8E528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_0: - symbol: gKartYoshi218Wheel0 - type: texture - offset: 0x8E5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_1: - symbol: gKartYoshi218Wheel1 - type: texture - offset: 0x8E628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_2: - symbol: gKartYoshi218Wheel2 - type: texture - offset: 0x8E6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_218_wheel_3: - symbol: gKartYoshi218Wheel3 - type: texture - offset: 0x8E728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_0: - symbol: gKartYoshi219Wheel0 - type: texture - offset: 0x8E7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_1: - symbol: gKartYoshi219Wheel1 - type: texture - offset: 0x8E828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_2: - symbol: gKartYoshi219Wheel2 - type: texture - offset: 0x8E8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_219_wheel_3: - symbol: gKartYoshi219Wheel3 - type: texture - offset: 0x8E928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_0: - symbol: gKartYoshi220Wheel0 - type: texture - offset: 0x8E9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_1: - symbol: gKartYoshi220Wheel1 - type: texture - offset: 0x8EA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_2: - symbol: gKartYoshi220Wheel2 - type: texture - offset: 0x8EAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_220_wheel_3: - symbol: gKartYoshi220Wheel3 - type: texture - offset: 0x8EB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_0: - symbol: gKartYoshi221Wheel0 - type: texture - offset: 0x8EBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_1: - symbol: gKartYoshi221Wheel1 - type: texture - offset: 0x8EC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_2: - symbol: gKartYoshi221Wheel2 - type: texture - offset: 0x8ECA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_221_wheel_3: - symbol: gKartYoshi221Wheel3 - type: texture - offset: 0x8ED28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_0: - symbol: gKartYoshi222Wheel0 - type: texture - offset: 0x8EDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_1: - symbol: gKartYoshi222Wheel1 - type: texture - offset: 0x8EE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_2: - symbol: gKartYoshi222Wheel2 - type: texture - offset: 0x8EEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_222_wheel_3: - symbol: gKartYoshi222Wheel3 - type: texture - offset: 0x8EF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_0: - symbol: gKartYoshi223Wheel0 - type: texture - offset: 0x8EFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_1: - symbol: gKartYoshi223Wheel1 - type: texture - offset: 0x8F028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_2: - symbol: gKartYoshi223Wheel2 - type: texture - offset: 0x8F0A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_223_wheel_3: - symbol: gKartYoshi223Wheel3 - type: texture - offset: 0x8F128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_0: - symbol: gKartYoshi224Wheel0 - type: texture - offset: 0x8F1A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_1: - symbol: gKartYoshi224Wheel1 - type: texture - offset: 0x8F228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_2: - symbol: gKartYoshi224Wheel2 - type: texture - offset: 0x8F2A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_224_wheel_3: - symbol: gKartYoshi224Wheel3 - type: texture - offset: 0x8F328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_0: - symbol: gKartYoshi225Wheel0 - type: texture - offset: 0x8F3A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_1: - symbol: gKartYoshi225Wheel1 - type: texture - offset: 0x8F428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_2: - symbol: gKartYoshi225Wheel2 - type: texture - offset: 0x8F4A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_225_wheel_3: - symbol: gKartYoshi225Wheel3 - type: texture - offset: 0x8F528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_0: - symbol: gKartYoshi226Wheel0 - type: texture - offset: 0x8F5A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_1: - symbol: gKartYoshi226Wheel1 - type: texture - offset: 0x8F628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_2: - symbol: gKartYoshi226Wheel2 - type: texture - offset: 0x8F6A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_226_wheel_3: - symbol: gKartYoshi226Wheel3 - type: texture - offset: 0x8F728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_0: - symbol: gKartYoshi227Wheel0 - type: texture - offset: 0x8F7A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_1: - symbol: gKartYoshi227Wheel1 - type: texture - offset: 0x8F828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_2: - symbol: gKartYoshi227Wheel2 - type: texture - offset: 0x8F8A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_227_wheel_3: - symbol: gKartYoshi227Wheel3 - type: texture - offset: 0x8F928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_0: - symbol: gKartYoshi228Wheel0 - type: texture - offset: 0x8F9A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_1: - symbol: gKartYoshi228Wheel1 - type: texture - offset: 0x8FA28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_2: - symbol: gKartYoshi228Wheel2 - type: texture - offset: 0x8FAA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_228_wheel_3: - symbol: gKartYoshi228Wheel3 - type: texture - offset: 0x8FB28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_0: - symbol: gKartYoshi229Wheel0 - type: texture - offset: 0x8FBA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_1: - symbol: gKartYoshi229Wheel1 - type: texture - offset: 0x8FC28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_2: - symbol: gKartYoshi229Wheel2 - type: texture - offset: 0x8FCA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_229_wheel_3: - symbol: gKartYoshi229Wheel3 - type: texture - offset: 0x8FD28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_0: - symbol: gKartYoshi230Wheel0 - type: texture - offset: 0x8FDA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_1: - symbol: gKartYoshi230Wheel1 - type: texture - offset: 0x8FE28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_2: - symbol: gKartYoshi230Wheel2 - type: texture - offset: 0x8FEA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_230_wheel_3: - symbol: gKartYoshi230Wheel3 - type: texture - offset: 0x8FF28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_0: - symbol: gKartYoshi231Wheel0 - type: texture - offset: 0x8FFA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_1: - symbol: gKartYoshi231Wheel1 - type: texture - offset: 0x90028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_2: - symbol: gKartYoshi231Wheel2 - type: texture - offset: 0x900A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_231_wheel_3: - symbol: gKartYoshi231Wheel3 - type: texture - offset: 0x90128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_0: - symbol: gKartYoshi232Wheel0 - type: texture - offset: 0x901A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_1: - symbol: gKartYoshi232Wheel1 - type: texture - offset: 0x90228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_2: - symbol: gKartYoshi232Wheel2 - type: texture - offset: 0x902A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_232_wheel_3: - symbol: gKartYoshi232Wheel3 - type: texture - offset: 0x90328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_0: - symbol: gKartYoshi233Wheel0 - type: texture - offset: 0x903A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_1: - symbol: gKartYoshi233Wheel1 - type: texture - offset: 0x90428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_2: - symbol: gKartYoshi233Wheel2 - type: texture - offset: 0x904A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_233_wheel_3: - symbol: gKartYoshi233Wheel3 - type: texture - offset: 0x90528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_0: - symbol: gKartYoshi234Wheel0 - type: texture - offset: 0x905A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_1: - symbol: gKartYoshi234Wheel1 - type: texture - offset: 0x90628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_2: - symbol: gKartYoshi234Wheel2 - type: texture - offset: 0x906A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_234_wheel_3: - symbol: gKartYoshi234Wheel3 - type: texture - offset: 0x90728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_0: - symbol: gKartYoshi235Wheel0 - type: texture - offset: 0x907A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_1: - symbol: gKartYoshi235Wheel1 - type: texture - offset: 0x90828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_2: - symbol: gKartYoshi235Wheel2 - type: texture - offset: 0x908A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_235_wheel_3: - symbol: gKartYoshi235Wheel3 - type: texture - offset: 0x90928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_0: - symbol: gKartYoshi236Wheel0 - type: texture - offset: 0x909A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_1: - symbol: gKartYoshi236Wheel1 - type: texture - offset: 0x90A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_2: - symbol: gKartYoshi236Wheel2 - type: texture - offset: 0x90AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_236_wheel_3: - symbol: gKartYoshi236Wheel3 - type: texture - offset: 0x90B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_0: - symbol: gKartYoshi237Wheel0 - type: texture - offset: 0x90BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_1: - symbol: gKartYoshi237Wheel1 - type: texture - offset: 0x90C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_2: - symbol: gKartYoshi237Wheel2 - type: texture - offset: 0x90CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_237_wheel_3: - symbol: gKartYoshi237Wheel3 - type: texture - offset: 0x90D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_0: - symbol: gKartYoshi238Wheel0 - type: texture - offset: 0x90DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_1: - symbol: gKartYoshi238Wheel1 - type: texture - offset: 0x90E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_2: - symbol: gKartYoshi238Wheel2 - type: texture - offset: 0x90EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_238_wheel_3: - symbol: gKartYoshi238Wheel3 - type: texture - offset: 0x90F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_0: - symbol: gKartYoshi239Wheel0 - type: texture - offset: 0x90FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_1: - symbol: gKartYoshi239Wheel1 - type: texture - offset: 0x91028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_2: - symbol: gKartYoshi239Wheel2 - type: texture - offset: 0x910A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_239_wheel_3: - symbol: gKartYoshi239Wheel3 - type: texture - offset: 0x91128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_0: - symbol: gKartYoshi240Wheel0 - type: texture - offset: 0x911A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_1: - symbol: gKartYoshi240Wheel1 - type: texture - offset: 0x91228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_2: - symbol: gKartYoshi240Wheel2 - type: texture - offset: 0x912A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_240_wheel_3: - symbol: gKartYoshi240Wheel3 - type: texture - offset: 0x91328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_0: - symbol: gKartYoshi241Wheel0 - type: texture - offset: 0x913A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_1: - symbol: gKartYoshi241Wheel1 - type: texture - offset: 0x91428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_2: - symbol: gKartYoshi241Wheel2 - type: texture - offset: 0x914A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_241_wheel_3: - symbol: gKartYoshi241Wheel3 - type: texture - offset: 0x91528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_0: - symbol: gKartYoshi242Wheel0 - type: texture - offset: 0x915A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_1: - symbol: gKartYoshi242Wheel1 - type: texture - offset: 0x91628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_2: - symbol: gKartYoshi242Wheel2 - type: texture - offset: 0x916A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_242_wheel_3: - symbol: gKartYoshi242Wheel3 - type: texture - offset: 0x91728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_0: - symbol: gKartYoshi243Wheel0 - type: texture - offset: 0x917A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_1: - symbol: gKartYoshi243Wheel1 - type: texture - offset: 0x91828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_2: - symbol: gKartYoshi243Wheel2 - type: texture - offset: 0x918A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_243_wheel_3: - symbol: gKartYoshi243Wheel3 - type: texture - offset: 0x91928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_0: - symbol: gKartYoshi244Wheel0 - type: texture - offset: 0x919A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_1: - symbol: gKartYoshi244Wheel1 - type: texture - offset: 0x91A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_2: - symbol: gKartYoshi244Wheel2 - type: texture - offset: 0x91AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_244_wheel_3: - symbol: gKartYoshi244Wheel3 - type: texture - offset: 0x91B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_0: - symbol: gKartYoshi245Wheel0 - type: texture - offset: 0x91BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_1: - symbol: gKartYoshi245Wheel1 - type: texture - offset: 0x91C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_2: - symbol: gKartYoshi245Wheel2 - type: texture - offset: 0x91CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_245_wheel_3: - symbol: gKartYoshi245Wheel3 - type: texture - offset: 0x91D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_0: - symbol: gKartYoshi246Wheel0 - type: texture - offset: 0x91DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_1: - symbol: gKartYoshi246Wheel1 - type: texture - offset: 0x91E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_2: - symbol: gKartYoshi246Wheel2 - type: texture - offset: 0x91EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_246_wheel_3: - symbol: gKartYoshi246Wheel3 - type: texture - offset: 0x91F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_0: - symbol: gKartYoshi247Wheel0 - type: texture - offset: 0x91FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_1: - symbol: gKartYoshi247Wheel1 - type: texture - offset: 0x92028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_2: - symbol: gKartYoshi247Wheel2 - type: texture - offset: 0x920A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_247_wheel_3: - symbol: gKartYoshi247Wheel3 - type: texture - offset: 0x92128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_0: - symbol: gKartYoshi248Wheel0 - type: texture - offset: 0x921A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_1: - symbol: gKartYoshi248Wheel1 - type: texture - offset: 0x92228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_2: - symbol: gKartYoshi248Wheel2 - type: texture - offset: 0x922A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_248_wheel_3: - symbol: gKartYoshi248Wheel3 - type: texture - offset: 0x92328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_0: - symbol: gKartYoshi249Wheel0 - type: texture - offset: 0x923A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_1: - symbol: gKartYoshi249Wheel1 - type: texture - offset: 0x92428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_2: - symbol: gKartYoshi249Wheel2 - type: texture - offset: 0x924A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_249_wheel_3: - symbol: gKartYoshi249Wheel3 - type: texture - offset: 0x92528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_0: - symbol: gKartYoshi250Wheel0 - type: texture - offset: 0x925A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_1: - symbol: gKartYoshi250Wheel1 - type: texture - offset: 0x92628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_2: - symbol: gKartYoshi250Wheel2 - type: texture - offset: 0x926A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_250_wheel_3: - symbol: gKartYoshi250Wheel3 - type: texture - offset: 0x92728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_0: - symbol: gKartYoshi251Wheel0 - type: texture - offset: 0x927A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_1: - symbol: gKartYoshi251Wheel1 - type: texture - offset: 0x92828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_2: - symbol: gKartYoshi251Wheel2 - type: texture - offset: 0x928A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_251_wheel_3: - symbol: gKartYoshi251Wheel3 - type: texture - offset: 0x92928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_0: - symbol: gKartYoshi252Wheel0 - type: texture - offset: 0x929A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_1: - symbol: gKartYoshi252Wheel1 - type: texture - offset: 0x92A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_2: - symbol: gKartYoshi252Wheel2 - type: texture - offset: 0x92AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_252_wheel_3: - symbol: gKartYoshi252Wheel3 - type: texture - offset: 0x92B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_0: - symbol: gKartYoshi253Wheel0 - type: texture - offset: 0x92BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_1: - symbol: gKartYoshi253Wheel1 - type: texture - offset: 0x92C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_2: - symbol: gKartYoshi253Wheel2 - type: texture - offset: 0x92CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_253_wheel_3: - symbol: gKartYoshi253Wheel3 - type: texture - offset: 0x92D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_0: - symbol: gKartYoshi254Wheel0 - type: texture - offset: 0x92DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_1: - symbol: gKartYoshi254Wheel1 - type: texture - offset: 0x92E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_2: - symbol: gKartYoshi254Wheel2 - type: texture - offset: 0x92EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_254_wheel_3: - symbol: gKartYoshi254Wheel3 - type: texture - offset: 0x92F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_0: - symbol: gKartYoshi255Wheel0 - type: texture - offset: 0x92FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_1: - symbol: gKartYoshi255Wheel1 - type: texture - offset: 0x93028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_2: - symbol: gKartYoshi255Wheel2 - type: texture - offset: 0x930A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_255_wheel_3: - symbol: gKartYoshi255Wheel3 - type: texture - offset: 0x93128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_0: - symbol: gKartYoshi256Wheel0 - type: texture - offset: 0x931A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_1: - symbol: gKartYoshi256Wheel1 - type: texture - offset: 0x93228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_2: - symbol: gKartYoshi256Wheel2 - type: texture - offset: 0x932A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_256_wheel_3: - symbol: gKartYoshi256Wheel3 - type: texture - offset: 0x93328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_0: - symbol: gKartYoshi257Wheel0 - type: texture - offset: 0x933A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_1: - symbol: gKartYoshi257Wheel1 - type: texture - offset: 0x93428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_2: - symbol: gKartYoshi257Wheel2 - type: texture - offset: 0x934A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_257_wheel_3: - symbol: gKartYoshi257Wheel3 - type: texture - offset: 0x93528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_0: - symbol: gKartYoshi258Wheel0 - type: texture - offset: 0x935A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_1: - symbol: gKartYoshi258Wheel1 - type: texture - offset: 0x93628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_2: - symbol: gKartYoshi258Wheel2 - type: texture - offset: 0x936A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_258_wheel_3: - symbol: gKartYoshi258Wheel3 - type: texture - offset: 0x93728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_0: - symbol: gKartYoshi259Wheel0 - type: texture - offset: 0x937A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_1: - symbol: gKartYoshi259Wheel1 - type: texture - offset: 0x93828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_2: - symbol: gKartYoshi259Wheel2 - type: texture - offset: 0x938A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_259_wheel_3: - symbol: gKartYoshi259Wheel3 - type: texture - offset: 0x93928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_0: - symbol: gKartYoshi260Wheel0 - type: texture - offset: 0x939A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_1: - symbol: gKartYoshi260Wheel1 - type: texture - offset: 0x93A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_2: - symbol: gKartYoshi260Wheel2 - type: texture - offset: 0x93AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_260_wheel_3: - symbol: gKartYoshi260Wheel3 - type: texture - offset: 0x93B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_0: - symbol: gKartYoshi261Wheel0 - type: texture - offset: 0x93BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_1: - symbol: gKartYoshi261Wheel1 - type: texture - offset: 0x93C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_2: - symbol: gKartYoshi261Wheel2 - type: texture - offset: 0x93CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_261_wheel_3: - symbol: gKartYoshi261Wheel3 - type: texture - offset: 0x93D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_0: - symbol: gKartYoshi262Wheel0 - type: texture - offset: 0x93DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_1: - symbol: gKartYoshi262Wheel1 - type: texture - offset: 0x93E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_2: - symbol: gKartYoshi262Wheel2 - type: texture - offset: 0x93EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_262_wheel_3: - symbol: gKartYoshi262Wheel3 - type: texture - offset: 0x93F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_0: - symbol: gKartYoshi263Wheel0 - type: texture - offset: 0x93FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_1: - symbol: gKartYoshi263Wheel1 - type: texture - offset: 0x94028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_2: - symbol: gKartYoshi263Wheel2 - type: texture - offset: 0x940A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_263_wheel_3: - symbol: gKartYoshi263Wheel3 - type: texture - offset: 0x94128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_0: - symbol: gKartYoshi264Wheel0 - type: texture - offset: 0x941A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_1: - symbol: gKartYoshi264Wheel1 - type: texture - offset: 0x94228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_2: - symbol: gKartYoshi264Wheel2 - type: texture - offset: 0x942A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_264_wheel_3: - symbol: gKartYoshi264Wheel3 - type: texture - offset: 0x94328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_0: - symbol: gKartYoshi265Wheel0 - type: texture - offset: 0x943A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_1: - symbol: gKartYoshi265Wheel1 - type: texture - offset: 0x94428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_2: - symbol: gKartYoshi265Wheel2 - type: texture - offset: 0x944A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_265_wheel_3: - symbol: gKartYoshi265Wheel3 - type: texture - offset: 0x94528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_0: - symbol: gKartYoshi266Wheel0 - type: texture - offset: 0x945A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_1: - symbol: gKartYoshi266Wheel1 - type: texture - offset: 0x94628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_2: - symbol: gKartYoshi266Wheel2 - type: texture - offset: 0x946A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_266_wheel_3: - symbol: gKartYoshi266Wheel3 - type: texture - offset: 0x94728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_0: - symbol: gKartYoshi267Wheel0 - type: texture - offset: 0x947A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_1: - symbol: gKartYoshi267Wheel1 - type: texture - offset: 0x94828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_2: - symbol: gKartYoshi267Wheel2 - type: texture - offset: 0x948A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_267_wheel_3: - symbol: gKartYoshi267Wheel3 - type: texture - offset: 0x94928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_0: - symbol: gKartYoshi268Wheel0 - type: texture - offset: 0x949A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_1: - symbol: gKartYoshi268Wheel1 - type: texture - offset: 0x94A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_2: - symbol: gKartYoshi268Wheel2 - type: texture - offset: 0x94AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_268_wheel_3: - symbol: gKartYoshi268Wheel3 - type: texture - offset: 0x94B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_0: - symbol: gKartYoshi269Wheel0 - type: texture - offset: 0x94BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_1: - symbol: gKartYoshi269Wheel1 - type: texture - offset: 0x94C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_2: - symbol: gKartYoshi269Wheel2 - type: texture - offset: 0x94CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_269_wheel_3: - symbol: gKartYoshi269Wheel3 - type: texture - offset: 0x94D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_0: - symbol: gKartYoshi270Wheel0 - type: texture - offset: 0x94DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_1: - symbol: gKartYoshi270Wheel1 - type: texture - offset: 0x94E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_2: - symbol: gKartYoshi270Wheel2 - type: texture - offset: 0x94EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_270_wheel_3: - symbol: gKartYoshi270Wheel3 - type: texture - offset: 0x94F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_0: - symbol: gKartYoshi271Wheel0 - type: texture - offset: 0x94FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_1: - symbol: gKartYoshi271Wheel1 - type: texture - offset: 0x95028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_2: - symbol: gKartYoshi271Wheel2 - type: texture - offset: 0x950A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_271_wheel_3: - symbol: gKartYoshi271Wheel3 - type: texture - offset: 0x95128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_0: - symbol: gKartYoshi272Wheel0 - type: texture - offset: 0x951A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_1: - symbol: gKartYoshi272Wheel1 - type: texture - offset: 0x95228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_2: - symbol: gKartYoshi272Wheel2 - type: texture - offset: 0x952A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_272_wheel_3: - symbol: gKartYoshi272Wheel3 - type: texture - offset: 0x95328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_0: - symbol: gKartYoshi273Wheel0 - type: texture - offset: 0x953A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_1: - symbol: gKartYoshi273Wheel1 - type: texture - offset: 0x95428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_2: - symbol: gKartYoshi273Wheel2 - type: texture - offset: 0x954A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_273_wheel_3: - symbol: gKartYoshi273Wheel3 - type: texture - offset: 0x95528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_0: - symbol: gKartYoshi274Wheel0 - type: texture - offset: 0x955A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_1: - symbol: gKartYoshi274Wheel1 - type: texture - offset: 0x95628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_2: - symbol: gKartYoshi274Wheel2 - type: texture - offset: 0x956A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_274_wheel_3: - symbol: gKartYoshi274Wheel3 - type: texture - offset: 0x95728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_0: - symbol: gKartYoshi275Wheel0 - type: texture - offset: 0x957A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_1: - symbol: gKartYoshi275Wheel1 - type: texture - offset: 0x95828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_2: - symbol: gKartYoshi275Wheel2 - type: texture - offset: 0x958A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_275_wheel_3: - symbol: gKartYoshi275Wheel3 - type: texture - offset: 0x95928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_0: - symbol: gKartYoshi276Wheel0 - type: texture - offset: 0x959A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_1: - symbol: gKartYoshi276Wheel1 - type: texture - offset: 0x95A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_2: - symbol: gKartYoshi276Wheel2 - type: texture - offset: 0x95AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_276_wheel_3: - symbol: gKartYoshi276Wheel3 - type: texture - offset: 0x95B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_0: - symbol: gKartYoshi277Wheel0 - type: texture - offset: 0x95BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_1: - symbol: gKartYoshi277Wheel1 - type: texture - offset: 0x95C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_2: - symbol: gKartYoshi277Wheel2 - type: texture - offset: 0x95CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_277_wheel_3: - symbol: gKartYoshi277Wheel3 - type: texture - offset: 0x95D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_0: - symbol: gKartYoshi278Wheel0 - type: texture - offset: 0x95DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_1: - symbol: gKartYoshi278Wheel1 - type: texture - offset: 0x95E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_2: - symbol: gKartYoshi278Wheel2 - type: texture - offset: 0x95EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_278_wheel_3: - symbol: gKartYoshi278Wheel3 - type: texture - offset: 0x95F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_0: - symbol: gKartYoshi279Wheel0 - type: texture - offset: 0x95FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_1: - symbol: gKartYoshi279Wheel1 - type: texture - offset: 0x96028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_2: - symbol: gKartYoshi279Wheel2 - type: texture - offset: 0x960A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_279_wheel_3: - symbol: gKartYoshi279Wheel3 - type: texture - offset: 0x96128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_0: - symbol: gKartYoshi280Wheel0 - type: texture - offset: 0x961A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_1: - symbol: gKartYoshi280Wheel1 - type: texture - offset: 0x96228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_2: - symbol: gKartYoshi280Wheel2 - type: texture - offset: 0x962A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_280_wheel_3: - symbol: gKartYoshi280Wheel3 - type: texture - offset: 0x96328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_0: - symbol: gKartYoshi281Wheel0 - type: texture - offset: 0x963A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_1: - symbol: gKartYoshi281Wheel1 - type: texture - offset: 0x96428 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_2: - symbol: gKartYoshi281Wheel2 - type: texture - offset: 0x964A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_281_wheel_3: - symbol: gKartYoshi281Wheel3 - type: texture - offset: 0x96528 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_0: - symbol: gKartYoshi282Wheel0 - type: texture - offset: 0x965A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_1: - symbol: gKartYoshi282Wheel1 - type: texture - offset: 0x96628 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_2: - symbol: gKartYoshi282Wheel2 - type: texture - offset: 0x966A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_282_wheel_3: - symbol: gKartYoshi282Wheel3 - type: texture - offset: 0x96728 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_0: - symbol: gKartYoshi283Wheel0 - type: texture - offset: 0x967A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_1: - symbol: gKartYoshi283Wheel1 - type: texture - offset: 0x96828 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_2: - symbol: gKartYoshi283Wheel2 - type: texture - offset: 0x968A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_283_wheel_3: - symbol: gKartYoshi283Wheel3 - type: texture - offset: 0x96928 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_0: - symbol: gKartYoshi284Wheel0 - type: texture - offset: 0x969A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_1: - symbol: gKartYoshi284Wheel1 - type: texture - offset: 0x96A28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_2: - symbol: gKartYoshi284Wheel2 - type: texture - offset: 0x96AA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_284_wheel_3: - symbol: gKartYoshi284Wheel3 - type: texture - offset: 0x96B28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_0: - symbol: gKartYoshi285Wheel0 - type: texture - offset: 0x96BA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_1: - symbol: gKartYoshi285Wheel1 - type: texture - offset: 0x96C28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_2: - symbol: gKartYoshi285Wheel2 - type: texture - offset: 0x96CA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_285_wheel_3: - symbol: gKartYoshi285Wheel3 - type: texture - offset: 0x96D28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_0: - symbol: gKartYoshi286Wheel0 - type: texture - offset: 0x96DA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_1: - symbol: gKartYoshi286Wheel1 - type: texture - offset: 0x96E28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_2: - symbol: gKartYoshi286Wheel2 - type: texture - offset: 0x96EA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_286_wheel_3: - symbol: gKartYoshi286Wheel3 - type: texture - offset: 0x96F28 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_0: - symbol: gKartYoshi287Wheel0 - type: texture - offset: 0x96FA8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_1: - symbol: gKartYoshi287Wheel1 - type: texture - offset: 0x97028 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_2: - symbol: gKartYoshi287Wheel2 - type: texture - offset: 0x970A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_287_wheel_3: - symbol: gKartYoshi287Wheel3 - type: texture - offset: 0x97128 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_0: - symbol: gKartYoshi288Wheel0 - type: texture - offset: 0x971A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_1: - symbol: gKartYoshi288Wheel1 - type: texture - offset: 0x97228 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_2: - symbol: gKartYoshi288Wheel2 - type: texture - offset: 0x972A8 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -kart_288_wheel_3: - symbol: gKartYoshi288Wheel3 - type: texture - offset: 0x97328 - ctype: u16 - width: 16 - height: 4 - format: RGBA16 -yoshi_kart_palette: - symbol: gKartYoshiPalette - type: texture - offset: 0x973A8 - ctype: u16 - width: 16 - height: 12 - format: RGBA16 - diff --git a/yamls/us/yoshi_valley_data.yml b/yamls/us/yoshi_valley_data.yml deleted file mode 100644 index 71dfcfa01..000000000 --- a/yamls/us/yoshi_valley_data.yml +++ /dev/null @@ -1,750 +0,0 @@ -:config: - segments: - - [0x06, 0x835BA0] - - [0x07, 0x800000] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' - references_packed_displaylists: true -d_course_yoshi_valley_dl_0: - symbol: d_course_yoshi_valley_dl_0 - type: gfx - offset: 0x0 -d_course_yoshi_valley_dl_20: - symbol: d_course_yoshi_valley_dl_20 - type: gfx - offset: 0x20 -d_course_yoshi_valley_dl_40: - symbol: d_course_yoshi_valley_dl_40 - type: gfx - offset: 0x40 -d_course_yoshi_valley_dl_290: - symbol: d_course_yoshi_valley_dl_290 - type: gfx - offset: 0x290 -d_course_yoshi_valley_dl_3F0: - symbol: d_course_yoshi_valley_dl_3F0 - type: gfx - offset: 0x3F0 -d_course_yoshi_valley_dl_4E8: - symbol: d_course_yoshi_valley_dl_4E8 - type: gfx - offset: 0x4E8 -d_course_yoshi_valley_dl_7A0: - symbol: d_course_yoshi_valley_dl_7A0 - type: gfx - offset: 0x7A0 -d_course_yoshi_valley_dl_9C8: - symbol: d_course_yoshi_valley_dl_9C8 - type: gfx - offset: 0x9C8 -d_course_yoshi_valley_dl_BC0: - symbol: d_course_yoshi_valley_dl_BC0 - type: gfx - offset: 0xBC0 -d_course_yoshi_valley_dl_CC0: - symbol: d_course_yoshi_valley_dl_CC0 - type: gfx - offset: 0xCC0 -d_course_yoshi_valley_dl_FA0: - symbol: d_course_yoshi_valley_dl_FA0 - type: gfx - offset: 0xFA0 -d_course_yoshi_valley_dl_1178: - symbol: d_course_yoshi_valley_dl_1178 - type: gfx - offset: 0x1178 -d_course_yoshi_valley_dl_13F8: - symbol: d_course_yoshi_valley_dl_13F8 - type: gfx - offset: 0x13F8 -d_course_yoshi_valley_dl_14D0: - symbol: d_course_yoshi_valley_dl_14D0 - type: gfx - offset: 0x14D0 -d_course_yoshi_valley_dl_17A8: - symbol: d_course_yoshi_valley_dl_17A8 - type: gfx - offset: 0x17A8 -d_course_yoshi_valley_dl_1968: - symbol: d_course_yoshi_valley_dl_1968 - type: gfx - offset: 0x1968 -d_course_yoshi_valley_dl_1C38: - symbol: d_course_yoshi_valley_dl_1C38 - type: gfx - offset: 0x1C38 -d_course_yoshi_valley_dl_1D48: - symbol: d_course_yoshi_valley_dl_1D48 - type: gfx - offset: 0x1D48 -d_course_yoshi_valley_dl_2000: - symbol: d_course_yoshi_valley_dl_2000 - type: gfx - offset: 0x2000 -d_course_yoshi_valley_dl_21B0: - symbol: d_course_yoshi_valley_dl_21B0 - type: gfx - offset: 0x21B0 -d_course_yoshi_valley_dl_2408: - symbol: d_course_yoshi_valley_dl_2408 - type: gfx - offset: 0x2408 -d_course_yoshi_valley_dl_25E8: - symbol: d_course_yoshi_valley_dl_25E8 - type: gfx - offset: 0x25E8 -d_course_yoshi_valley_dl_2840: - symbol: d_course_yoshi_valley_dl_2840 - type: gfx - offset: 0x2840 -d_course_yoshi_valley_dl_2978: - symbol: d_course_yoshi_valley_dl_2978 - type: gfx - offset: 0x2978 -d_course_yoshi_valley_dl_2BC0: - symbol: d_course_yoshi_valley_dl_2BC0 - type: gfx - offset: 0x2BC0 -d_course_yoshi_valley_dl_2D70: - symbol: d_course_yoshi_valley_dl_2D70 - type: gfx - offset: 0x2D70 -d_course_yoshi_valley_dl_2F48: - symbol: d_course_yoshi_valley_dl_2F48 - type: gfx - offset: 0x2F48 -d_course_yoshi_valley_dl_3078: - symbol: d_course_yoshi_valley_dl_3078 - type: gfx - offset: 0x3078 -d_course_yoshi_valley_dl_3258: - symbol: d_course_yoshi_valley_dl_3258 - type: gfx - offset: 0x3258 -d_course_yoshi_valley_dl_3420: - symbol: d_course_yoshi_valley_dl_3420 - type: gfx - offset: 0x3420 -d_course_yoshi_valley_dl_3560: - symbol: d_course_yoshi_valley_dl_3560 - type: gfx - offset: 0x3560 -d_course_yoshi_valley_dl_36D0: - symbol: d_course_yoshi_valley_dl_36D0 - type: gfx - offset: 0x36D0 -d_course_yoshi_valley_dl_3880: - symbol: d_course_yoshi_valley_dl_3880 - type: gfx - offset: 0x3880 -d_course_yoshi_valley_dl_3A38: - symbol: d_course_yoshi_valley_dl_3A38 - type: gfx - offset: 0x3A38 -d_course_yoshi_valley_dl_3BA0: - symbol: d_course_yoshi_valley_dl_3BA0 - type: gfx - offset: 0x3BA0 -d_course_yoshi_valley_dl_3D20: - symbol: d_course_yoshi_valley_dl_3D20 - type: gfx - offset: 0x3D20 -d_course_yoshi_valley_dl_3E30: - symbol: d_course_yoshi_valley_dl_3E30 - type: gfx - offset: 0x3E30 -d_course_yoshi_valley_dl_3F88: - symbol: d_course_yoshi_valley_dl_3F88 - type: gfx - offset: 0x3F88 -d_course_yoshi_valley_dl_40B8: - symbol: d_course_yoshi_valley_dl_40B8 - type: gfx - offset: 0x40B8 -d_course_yoshi_valley_dl_4320: - symbol: d_course_yoshi_valley_dl_4320 - type: gfx - offset: 0x4320 -d_course_yoshi_valley_dl_44C8: - symbol: d_course_yoshi_valley_dl_44C8 - type: gfx - offset: 0x44C8 -d_course_yoshi_valley_dl_4718: - symbol: d_course_yoshi_valley_dl_4718 - type: gfx - offset: 0x4718 -d_course_yoshi_valley_dl_48C0: - symbol: d_course_yoshi_valley_dl_48C0 - type: gfx - offset: 0x48C0 -d_course_yoshi_valley_dl_4A98: - symbol: d_course_yoshi_valley_dl_4A98 - type: gfx - offset: 0x4A98 -d_course_yoshi_valley_dl_4C28: - symbol: d_course_yoshi_valley_dl_4C28 - type: gfx - offset: 0x4C28 -d_course_yoshi_valley_dl_4E60: - symbol: d_course_yoshi_valley_dl_4E60 - type: gfx - offset: 0x4E60 -d_course_yoshi_valley_dl_5018: - symbol: d_course_yoshi_valley_dl_5018 - type: gfx - offset: 0x5018 -d_course_yoshi_valley_dl_51D0: - symbol: d_course_yoshi_valley_dl_51D0 - type: gfx - offset: 0x51D0 -d_course_yoshi_valley_dl_53E0: - symbol: d_course_yoshi_valley_dl_53E0 - type: gfx - offset: 0x53E0 -d_course_yoshi_valley_dl_5638: - symbol: d_course_yoshi_valley_dl_5638 - type: gfx - offset: 0x5638 -d_course_yoshi_valley_dl_5778: - symbol: d_course_yoshi_valley_dl_5778 - type: gfx - offset: 0x5778 -d_course_yoshi_valley_dl_5890: - symbol: d_course_yoshi_valley_dl_5890 - type: gfx - offset: 0x5890 -d_course_yoshi_valley_dl_5A80: - symbol: d_course_yoshi_valley_dl_5A80 - type: gfx - offset: 0x5A80 -d_course_yoshi_valley_dl_5C70: - symbol: d_course_yoshi_valley_dl_5C70 - type: gfx - offset: 0x5C70 -d_course_yoshi_valley_dl_5D60: - symbol: d_course_yoshi_valley_dl_5D60 - type: gfx - offset: 0x5D60 -d_course_yoshi_valley_dl_5ED8: - symbol: d_course_yoshi_valley_dl_5ED8 - type: gfx - offset: 0x5ED8 -d_course_yoshi_valley_dl_6070: - symbol: d_course_yoshi_valley_dl_6070 - type: gfx - offset: 0x6070 -d_course_yoshi_valley_dl_6268: - symbol: d_course_yoshi_valley_dl_6268 - type: gfx - offset: 0x6268 -d_course_yoshi_valley_dl_6358: - symbol: d_course_yoshi_valley_dl_6358 - type: gfx - offset: 0x6358 -d_course_yoshi_valley_dl_6530: - symbol: d_course_yoshi_valley_dl_6530 - type: gfx - offset: 0x6530 -d_course_yoshi_valley_dl_66B0: - symbol: d_course_yoshi_valley_dl_66B0 - type: gfx - offset: 0x66B0 -d_course_yoshi_valley_dl_68C8: - symbol: d_course_yoshi_valley_dl_68C8 - type: gfx - offset: 0x68C8 -d_course_yoshi_valley_dl_69C0: - symbol: d_course_yoshi_valley_dl_69C0 - type: gfx - offset: 0x69C0 -d_course_yoshi_valley_dl_6BF0: - symbol: d_course_yoshi_valley_dl_6BF0 - type: gfx - offset: 0x6BF0 -d_course_yoshi_valley_dl_6D78: - symbol: d_course_yoshi_valley_dl_6D78 - type: gfx - offset: 0x6D78 -d_course_yoshi_valley_dl_6FB8: - symbol: d_course_yoshi_valley_dl_6FB8 - type: gfx - offset: 0x6FB8 -d_course_yoshi_valley_dl_7100: - symbol: d_course_yoshi_valley_dl_7100 - type: gfx - offset: 0x7100 -d_course_yoshi_valley_dl_7310: - symbol: d_course_yoshi_valley_dl_7310 - type: gfx - offset: 0x7310 -d_course_yoshi_valley_dl_7400: - symbol: d_course_yoshi_valley_dl_7400 - type: gfx - offset: 0x7400 -d_course_yoshi_valley_dl_75C8: - symbol: d_course_yoshi_valley_dl_75C8 - type: gfx - offset: 0x75C8 -d_course_yoshi_valley_dl_7770: - symbol: d_course_yoshi_valley_dl_7770 - type: gfx - offset: 0x7770 -d_course_yoshi_valley_dl_7938: - symbol: d_course_yoshi_valley_dl_7938 - type: gfx - offset: 0x7938 -d_course_yoshi_valley_dl_7A08: - symbol: d_course_yoshi_valley_dl_7A08 - type: gfx - offset: 0x7A08 -d_course_yoshi_valley_dl_7BB8: - symbol: d_course_yoshi_valley_dl_7BB8 - type: gfx - offset: 0x7BB8 -d_course_yoshi_valley_dl_7CE8: - symbol: d_course_yoshi_valley_dl_7CE8 - type: gfx - offset: 0x7CE8 -d_course_yoshi_valley_dl_7F80: - symbol: d_course_yoshi_valley_dl_7F80 - type: gfx - offset: 0x7F80 -d_course_yoshi_valley_dl_8030: - symbol: d_course_yoshi_valley_dl_8030 - type: gfx - offset: 0x8030 -d_course_yoshi_valley_dl_8218: - symbol: d_course_yoshi_valley_dl_8218 - type: gfx - offset: 0x8218 -d_course_yoshi_valley_dl_8420: - symbol: d_course_yoshi_valley_dl_8420 - type: gfx - offset: 0x8420 -d_course_yoshi_valley_dl_8710: - symbol: d_course_yoshi_valley_dl_8710 - type: gfx - offset: 0x8710 -d_course_yoshi_valley_dl_8830: - symbol: d_course_yoshi_valley_dl_8830 - type: gfx - offset: 0x8830 -d_course_yoshi_valley_dl_8958: - symbol: d_course_yoshi_valley_dl_8958 - type: gfx - offset: 0x8958 -d_course_yoshi_valley_dl_8C30: - symbol: d_course_yoshi_valley_dl_8C30 - type: gfx - offset: 0x8C30 -d_course_yoshi_valley_dl_8D58: - symbol: d_course_yoshi_valley_dl_8D58 - type: gfx - offset: 0x8D58 -d_course_yoshi_valley_dl_8FD8: - symbol: d_course_yoshi_valley_dl_8FD8 - type: gfx - offset: 0x8FD8 -d_course_yoshi_valley_dl_91D8: - symbol: d_course_yoshi_valley_dl_91D8 - type: gfx - offset: 0x91D8 -d_course_yoshi_valley_dl_9340: - symbol: d_course_yoshi_valley_dl_9340 - type: gfx - offset: 0x9340 -d_course_yoshi_valley_dl_9548: - symbol: d_course_yoshi_valley_dl_9548 - type: gfx - offset: 0x9548 -d_course_yoshi_valley_dl_9780: - symbol: d_course_yoshi_valley_dl_9780 - type: gfx - offset: 0x9780 -d_course_yoshi_valley_dl_9A00: - symbol: d_course_yoshi_valley_dl_9A00 - type: gfx - offset: 0x9A00 -d_course_yoshi_valley_dl_9BB0: - symbol: d_course_yoshi_valley_dl_9BB0 - type: gfx - offset: 0x9BB0 -d_course_yoshi_valley_dl_9DB8: - symbol: d_course_yoshi_valley_dl_9DB8 - type: gfx - offset: 0x9DB8 -d_course_yoshi_valley_dl_9F70: - symbol: d_course_yoshi_valley_dl_9F70 - type: gfx - offset: 0x9F70 -d_course_yoshi_valley_dl_A188: - symbol: d_course_yoshi_valley_dl_A188 - type: gfx - offset: 0xA188 -d_course_yoshi_valley_dl_A328: - symbol: d_course_yoshi_valley_dl_A328 - type: gfx - offset: 0xA328 -d_course_yoshi_valley_dl_A518: - symbol: d_course_yoshi_valley_dl_A518 - type: gfx - offset: 0xA518 -d_course_yoshi_valley_dl_A6B8: - symbol: d_course_yoshi_valley_dl_A6B8 - type: gfx - offset: 0xA6B8 -d_course_yoshi_valley_dl_A8A0: - symbol: d_course_yoshi_valley_dl_A8A0 - type: gfx - offset: 0xA8A0 -d_course_yoshi_valley_dl_AAC0: - symbol: d_course_yoshi_valley_dl_AAC0 - type: gfx - offset: 0xAAC0 -d_course_yoshi_valley_dl_ACF0: - symbol: d_course_yoshi_valley_dl_ACF0 - type: gfx - offset: 0xACF0 -d_course_yoshi_valley_dl_AE78: - symbol: d_course_yoshi_valley_dl_AE78 - type: gfx - offset: 0xAE78 -d_course_yoshi_valley_dl_AFF8: - symbol: d_course_yoshi_valley_dl_AFF8 - type: gfx - offset: 0xAFF8 -d_course_yoshi_valley_dl_B220: - symbol: d_course_yoshi_valley_dl_B220 - type: gfx - offset: 0xB220 -d_course_yoshi_valley_dl_B428: - symbol: d_course_yoshi_valley_dl_B428 - type: gfx - offset: 0xB428 -d_course_yoshi_valley_dl_B578: - symbol: d_course_yoshi_valley_dl_B578 - type: gfx - offset: 0xB578 -d_course_yoshi_valley_dl_B778: - symbol: d_course_yoshi_valley_dl_B778 - type: gfx - offset: 0xB778 -d_course_yoshi_valley_dl_B970: - symbol: d_course_yoshi_valley_dl_B970 - type: gfx - offset: 0xB970 -d_course_yoshi_valley_dl_BAF8: - symbol: d_course_yoshi_valley_dl_BAF8 - type: gfx - offset: 0xBAF8 -d_course_yoshi_valley_dl_BC98: - symbol: d_course_yoshi_valley_dl_BC98 - type: gfx - offset: 0xBC98 -d_course_yoshi_valley_dl_BE18: - symbol: d_course_yoshi_valley_dl_BE18 - type: gfx - offset: 0xBE18 -d_course_yoshi_valley_dl_BFC8: - symbol: d_course_yoshi_valley_dl_BFC8 - type: gfx - offset: 0xBFC8 -d_course_yoshi_valley_dl_C140: - symbol: d_course_yoshi_valley_dl_C140 - type: gfx - offset: 0xC140 -d_course_yoshi_valley_dl_C2D8: - symbol: d_course_yoshi_valley_dl_C2D8 - type: gfx - offset: 0xC2D8 -d_course_yoshi_valley_dl_C470: - symbol: d_course_yoshi_valley_dl_C470 - type: gfx - offset: 0xC470 -d_course_yoshi_valley_dl_C580: - symbol: d_course_yoshi_valley_dl_C580 - type: gfx - offset: 0xC580 -d_course_yoshi_valley_dl_C668: - symbol: d_course_yoshi_valley_dl_C668 - type: gfx - offset: 0xC668 -d_course_yoshi_valley_dl_C728: - symbol: d_course_yoshi_valley_dl_C728 - type: gfx - offset: 0xC728 -d_course_yoshi_valley_dl_C838: - symbol: d_course_yoshi_valley_dl_C838 - type: gfx - offset: 0xC838 -d_course_yoshi_valley_dl_C8F8: - symbol: d_course_yoshi_valley_dl_C8F8 - type: gfx - offset: 0xC8F8 -d_course_yoshi_valley_dl_CAD8: - symbol: d_course_yoshi_valley_dl_CAD8 - type: gfx - offset: 0xCAD8 -d_course_yoshi_valley_dl_CC80: - symbol: d_course_yoshi_valley_dl_CC80 - type: gfx - offset: 0xCC80 -d_course_yoshi_valley_dl_CEC8: - symbol: d_course_yoshi_valley_dl_CEC8 - type: gfx - offset: 0xCEC8 -d_course_yoshi_valley_dl_D018: - symbol: d_course_yoshi_valley_dl_D018 - type: gfx - offset: 0xD018 -d_course_yoshi_valley_dl_D1E8: - symbol: d_course_yoshi_valley_dl_D1E8 - type: gfx - offset: 0xD1E8 -d_course_yoshi_valley_dl_D3D0: - symbol: d_course_yoshi_valley_dl_D3D0 - type: gfx - offset: 0xD3D0 -d_course_yoshi_valley_dl_D540: - symbol: d_course_yoshi_valley_dl_D540 - type: gfx - offset: 0xD540 -d_course_yoshi_valley_unknown_waypoints: - symbol: d_course_yoshi_valley_unknown_waypoints - type: mk64:TRACK_PATH - offset: 0xD780 - count: 73 -d_course_yoshi_valley_unknown_waypoints_2: - symbol: d_course_yoshi_valley_unknown_waypoints_2 - type: mk64:TRACK_PATH - offset: 0xD9C8 - count: 74 -d_course_yoshi_valley_unknown_waypoints_3: - symbol: d_course_yoshi_valley_unknown_waypoints_3 - type: mk64:TRACK_PATH - offset: 0xDC18 - count: 82 -d_course_yoshi_valley_unknown_waypoints_4: - symbol: d_course_yoshi_valley_unknown_waypoints_4 - type: mk64:TRACK_PATH - offset: 0xDEA8 - count: 85 -d_course_yoshi_valley_track_waypoints: - symbol: d_course_yoshi_valley_track_waypoints - type: mk64:TRACK_PATH - offset: 0xE150 - count: 678 -d_course_yoshi_valley_track_waypoints_2: - symbol: d_course_yoshi_valley_track_waypoints_2 - type: mk64:TRACK_PATH - offset: 0xF680 - count: 667 -d_course_yoshi_valley_track_waypoints_3: - symbol: d_course_yoshi_valley_track_waypoints_3 - type: mk64:TRACK_PATH - offset: 0x10B58 - count: 679 -d_course_yoshi_valley_track_waypoints_4: - symbol: d_course_yoshi_valley_track_waypoints_4 - type: mk64:TRACK_PATH - offset: 0x12090 - count: 793 -d_course_yoshi_valley_unknown_light1: - symbol: d_course_yoshi_valley_unknown_light1 - type: lights - offset: 0x13958 -d_course_yoshi_valley_unknown_light2: - symbol: d_course_yoshi_valley_unknown_light2 - type: lights - offset: 0x13970 -d_course_yoshi_valley_unknown_light3: - symbol: d_course_yoshi_valley_unknown_light3 - type: lights - offset: 0x13988 -d_course_yoshi_valley_yoshi_flag: - symbol: d_course_yoshi_valley_yoshi_flag - type: texture - offset: 0x139A0 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_yoshi_valley_unknown_light4: - symbol: d_course_yoshi_valley_unknown_light4 - type: lights - offset: 0x141A0 -d_course_yoshi_valley_unknown_light5: - symbol: d_course_yoshi_valley_unknown_light5 - type: lights - offset: 0x141B8 -d_course_yoshi_valley_flag_pole_model1: - symbol: d_course_yoshi_valley_flag_pole_model1 - type: vtx - offset: 0x141D0 - count: 5 -d_course_yoshi_valley_flag_pole_model2: - symbol: d_course_yoshi_valley_flag_pole_model2 - type: vtx - offset: 0x14220 - count: 10 -d_course_yoshi_valley_dl_142C0: - symbol: d_course_yoshi_valley_dl_142C0 - type: gfx - offset: 0x142C0 -d_course_yoshi_valley_flag_1_model1: - symbol: d_course_yoshi_valley_flag_1_model1 - type: vtx - offset: 0x14348 - count: 3 -d_course_yoshi_valley_flag_1_model2: - symbol: d_course_yoshi_valley_flag_1_model2 - type: vtx - offset: 0x14378 - count: 5 -d_course_yoshi_valley_dl_143C8: - symbol: d_course_yoshi_valley_dl_143C8 - type: gfx - offset: 0x143C8 -d_course_yoshi_valley_flag_2_model: - symbol: d_course_yoshi_valley_flag_2_model - type: vtx - offset: 0x14468 - count: 4 -d_course_yoshi_valley_dl_144A8: - symbol: d_course_yoshi_valley_dl_144A8 - type: gfx - offset: 0x144A8 -d_course_yoshi_valley_flag_3_model: - symbol: d_course_yoshi_valley_flag_3_model - type: vtx - offset: 0x144C0 - count: 4 -d_course_yoshi_valley_dl_14500: - symbol: d_course_yoshi_valley_dl_14500 - type: gfx - offset: 0x14500 -d_course_yoshi_valley_flag_4_model: - symbol: d_course_yoshi_valley_flag_4_model - type: vtx - offset: 0x14518 - count: 4 -d_course_yoshi_valley_dl_14558: - symbol: d_course_yoshi_valley_dl_14558 - type: gfx - offset: 0x14558 -d_course_yoshi_valley_flag_5_model: - symbol: d_course_yoshi_valley_flag_5_model - type: vtx - offset: 0x145A0 - count: 3 -d_course_yoshi_valley_dl_145D0: - symbol: d_course_yoshi_valley_dl_145D0 - type: gfx - offset: 0x145D0 -d_course_yoshi_valley_hedgehog_tlut: - symbol: d_course_yoshi_valley_hedgehog_tlut - type: texture - offset: 0x14908 - width: 16 - height: 16 - format: rgba16 - ctype: u16 -d_course_yoshi_valley_hedgehog: - symbol: d_course_yoshi_valley_hedgehog - type: texture - offset: 0x14B08 - width: 64 - height: 64 - format: ci8 - ctype: u8 -d_course_yoshi_valley_tree_model: - symbol: d_course_yoshi_valley_tree_model - type: vtx - offset: 0x15B08 - count: 4 -d_course_yoshi_valley_dl_tree: - symbol: d_course_yoshi_valley_dl_tree - type: gfx - offset: 0x15B48 -d_course_yoshi_valley_egg_model1: - symbol: d_course_yoshi_valley_egg_model1 - type: vtx - offset: 0x15BD8 - count: 31 -d_course_yoshi_valley_egg_model2: - symbol: d_course_yoshi_valley_egg_model2 - type: vtx - offset: 0x15DC8 - count: 31 -d_course_yoshi_valley_egg_model3: - symbol: d_course_yoshi_valley_egg_model3 - type: vtx - offset: 0x15FB8 - count: 32 -d_course_yoshi_valley_egg_model4: - symbol: d_course_yoshi_valley_egg_model4 - type: vtx - offset: 0x161B8 - count: 32 -d_course_yoshi_valley_egg_model5: - symbol: d_course_yoshi_valley_egg_model5 - type: vtx - offset: 0x163B8 - count: 26 -d_course_yoshi_valley_lights4: - symbol: d_course_yoshi_valley_lights4 - type: lights - offset: 0x16558 -d_course_yoshi_valley_egg_spot: - symbol: d_course_yoshi_valley_egg_spot - type: texture - offset: 0x16570 - width: 32 - height: 32 - format: rgba16 - ctype: u16 -d_course_yoshi_valley_dl_16D70: - symbol: d_course_yoshi_valley_dl_16D70 - type: gfx - offset: 0x16D70 -d_course_yoshi_valley_egg_model_lod0: - symbol: d_course_yoshi_valley_egg_model_lod0 - type: vtx - offset: 0x16F68 - count: 4 -d_course_yoshi_valley_egg: - symbol: d_course_yoshi_valley_egg - type: texture - offset: 0x16FA8 - ctype: u16 - width: 64 - height: 32 - format: rgba16 -d_course_yoshi_valley_dl_egg_lod0: - symbol: d_course_yoshi_valley_dl_egg_lod0 - type: gfx - offset: 0x17FA8 -d_course_yoshi_valley_dl_18020: - symbol: d_course_yoshi_valley_dl_18020 - type: gfx - offset: 0x18020 -d_course_yoshi_valley_tree_spawn: - symbol: d_course_yoshi_valley_tree_spawn - type: mk64:spawn_data - offset: 0x180A0 - count: 14 -d_course_yoshi_valley_item_box_spawns: - symbol: d_course_yoshi_valley_item_box_spawns - type: mk64:spawn_data - offset: 0x18110 - count: 38 -d_course_yoshi_valley_addr: - symbol: d_course_yoshi_valley_addr - type: mk64:track_sections - offset: 0x18240 - count: 54 diff --git a/yamls/us/yoshi_valley_displaylists.yml b/yamls/us/yoshi_valley_displaylists.yml deleted file mode 100644 index 69bcdde4a..000000000 --- a/yamls/us/yoshi_valley_displaylists.yml +++ /dev/null @@ -1,17 +0,0 @@ -:config: - vram: - addr: 0x800E8700 # not used for anything - offset: 0x8CA2A0 - no_compression: true - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_yoshi_valley_packed_dls: - symbol: d_course_yoshi_valley_packed_dls - type: blob - offset: 0x8CA2A0 - size: 0x2651 diff --git a/yamls/us/yoshi_valley_vertices.yml b/yamls/us/yoshi_valley_vertices.yml deleted file mode 100644 index aeacb1d1a..000000000 --- a/yamls/us/yoshi_valley_vertices.yml +++ /dev/null @@ -1,15 +0,0 @@ -:config: - segments: - - [0x0F, 0x8C2510] - header: - code: - - '#include ' - header: - - '#include ' - - '#include ' - - '#include ' -d_course_yoshi_valley_vertex: - symbol: d_course_yoshi_valley_vertex - type: mk64:course_vtx - count: 3720 - offset: 0x0